From a2ad8baf035aa9163c8e8cbb27220d1c554c3b9c Mon Sep 17 00:00:00 2001 From: Will Bradley Date: Thu, 26 Jun 2025 15:24:25 -0700 Subject: [PATCH] Initial commit --- main.py | 305 + sumter-roads-12-15-23.geojson | 15804 ++++++++++++++++++++++++++++++ sumter-roads-9-22-23.geojson | 16506 ++++++++++++++++++++++++++++++++ 3 files changed, 32615 insertions(+) create mode 100755 main.py create mode 100755 sumter-roads-12-15-23.geojson create mode 100755 sumter-roads-9-22-23.geojson diff --git a/main.py b/main.py new file mode 100755 index 0000000..b3d39a0 --- /dev/null +++ b/main.py @@ -0,0 +1,305 @@ +#!/usr/bin/env python3 +""" +GeoJSON Road Comparison Script + +Compares two GeoJSON files containing road data and identifies: +1. Roads in file1 that don't have corresponding coverage in file2 (gaps in file2) +2. Roads in file2 that don't have corresponding coverage in file1 (extra in file2) + +Only reports differences that are significant (above minimum length threshold). +""" + +import json +import argparse +from pathlib import Path +from typing import List, Dict, Any, Tuple +import geopandas as gpd +from shapely.geometry import LineString, MultiLineString, Point +from shapely.ops import unary_union +import pandas as pd +import warnings + +# Suppress warnings for cleaner output +warnings.filterwarnings('ignore') + +class RoadComparator: + def __init__(self, tolerance_feet: float = 50.0, min_gap_length_feet: float = 100.0): + """ + Initialize the road comparator. + + Args: + tolerance_feet: Distance tolerance for considering roads as overlapping (default: 50 feet) + min_gap_length_feet: Minimum length of gap/extra to be considered significant (default: 100 feet) + """ + self.tolerance_feet = tolerance_feet + self.min_gap_length_feet = min_gap_length_feet + + # Convert feet to degrees (approximate conversion for continental US) + # 1 degree latitude ā‰ˆ 364,000 feet + # 1 degree longitude ā‰ˆ 288,000 feet (at 40° latitude) + self.tolerance_deg = tolerance_feet / 364000.0 + self.min_gap_length_deg = min_gap_length_feet / 364000.0 + + def load_geojson(self, filepath: str) -> gpd.GeoDataFrame: + """Load and validate GeoJSON file.""" + try: + gdf = gpd.read_file(filepath) + + # Filter only LineString and MultiLineString geometries + line_types = ['LineString', 'MultiLineString'] + gdf = gdf[gdf.geometry.type.isin(line_types)] + + if len(gdf) == 0: + raise ValueError(f"No line geometries found in {filepath}") + + print(f"Loaded {len(gdf)} road features from {filepath}") + return gdf + + except Exception as e: + raise Exception(f"Error loading {filepath}: {str(e)}") + + def create_buffer_union(self, gdf: gpd.GeoDataFrame) -> Any: + """Create a buffered union of all geometries in the GeoDataFrame.""" + # Buffer all geometries + buffered_geoms = gdf.geometry.buffer(self.tolerance_deg) + + # Create union of all buffered geometries + union_geom = unary_union(buffered_geoms.tolist()) + + return union_geom + + def find_uncovered_segments(self, source_gdf: gpd.GeoDataFrame, + target_union: Any, + label: str) -> List[Dict[str, Any]]: + """ + Find segments in source_gdf that are not covered by target_union. + + Args: + source_gdf: GeoDataFrame with roads to check for coverage + target_union: Buffered union geometry from the other dataset + label: Label for the type of difference (e.g., "gap_in_file2", "extra_in_file2") + + Returns: + List of uncovered segments with metadata + """ + uncovered_segments = [] + + for idx, row in source_gdf.iterrows(): + geom = row.geometry + + # Handle MultiLineString by processing each component + if isinstance(geom, MultiLineString): + lines = list(geom.geoms) + else: + lines = [geom] + + for line in lines: + # Find parts of the line that don't intersect with target_union + try: + uncovered = line.difference(target_union) + + # Skip if no uncovered area + if uncovered.is_empty: + continue + + # Handle different geometry types returned by difference + uncovered_lines = [] + if hasattr(uncovered, 'geoms'): + # MultiLineString or GeometryCollection + for geom_part in uncovered.geoms: + if isinstance(geom_part, LineString): + uncovered_lines.append(geom_part) + elif isinstance(uncovered, LineString): + uncovered_lines.append(uncovered) + + # Check each uncovered line segment + for uncovered_line in uncovered_lines: + # Calculate length in degrees, then convert to feet + length_deg = uncovered_line.length + length_feet = length_deg * 364000.0 # Approximate conversion + + # Only include if above minimum threshold + if length_feet >= self.min_gap_length_feet: + # Get road name/identifier if available + road_name = "Unknown" + name_fields = ['name', 'NAME', 'road_name', 'street_name', 'FULLNAME'] + for field in name_fields: + if field in row and pd.notna(row[field]): + road_name = str(row[field]) + break + + uncovered_segments.append({ + 'type': label, + 'road_name': road_name, + 'length_feet': round(length_feet, 1), + 'geometry': uncovered_line, + 'original_index': idx, + 'original_properties': dict(row.drop('geometry')) + }) + + except Exception as e: + print(f"Warning: Error processing geometry at index {idx}: {str(e)}") + continue + + return uncovered_segments + + def compare_roads(self, file1_path: str, file2_path: str) -> Tuple[List[Dict], List[Dict]]: + """ + Compare two GeoJSON files and find significant differences. + + Returns: + Tuple of (gaps_in_file2, extras_in_file2) + """ + print(f"Comparing {file1_path} and {file2_path}") + print(f"Tolerance: {self.tolerance_feet} feet") + print(f"Minimum significant length: {self.min_gap_length_feet} feet") + print("-" * 50) + + # Load both files + gdf1 = self.load_geojson(file1_path) + gdf2 = self.load_geojson(file2_path) + + # Ensure both are in the same CRS + if gdf1.crs != gdf2.crs: + print(f"Warning: CRS mismatch. Converting {file2_path} to match {file1_path}") + gdf2 = gdf2.to_crs(gdf1.crs) + + print("Creating spatial unions...") + + # Create buffered unions + union1 = self.create_buffer_union(gdf1) + union2 = self.create_buffer_union(gdf2) + + print("Finding gaps and extras...") + + # Find roads in file1 not covered by file2 (gaps in file2) + gaps_in_file2 = self.find_uncovered_segments(gdf1, union2, "gap_in_file2") + + # Find roads in file2 not covered by file1 (extras in file2) + extras_in_file2 = self.find_uncovered_segments(gdf2, union1, "extra_in_file2") + + return gaps_in_file2, extras_in_file2 + + def save_results(self, gaps: List[Dict], extras: List[Dict], output_path: str): + """Save results to GeoJSON file.""" + all_results = gaps + extras + + if not all_results: + print("No significant differences found!") + return + + # Create GeoDataFrame + results_gdf = gpd.GeoDataFrame(all_results) + + # Save to file + results_gdf.to_file(output_path, driver='GeoJSON') + print(f"Results saved to: {output_path}") + + def print_summary(self, gaps: List[Dict], extras: List[Dict], file1_name: str, file2_name: str): + """Print a summary of the comparison results.""" + print("\n" + "="*60) + print("COMPARISON SUMMARY") + print("="*60) + + print(f"\nFile 1: {file1_name}") + print(f"File 2: {file2_name}") + print(f"Tolerance: {self.tolerance_feet} feet") + print(f"Minimum significant length: {self.min_gap_length_feet} feet") + + if gaps: + print(f"\nšŸ”“ GAPS IN FILE 2 ({len(gaps)} segments):") + print("These road segments exist in File 1 but are missing or incomplete in File 2:") + total_gap_length = sum(g['length_feet'] for g in gaps) + print(f"Total gap length: {total_gap_length:,.1f} feet ({total_gap_length/5280:.2f} miles)") + + # Group by road name + gap_by_road = {} + for gap in gaps: + road = gap['road_name'] + if road not in gap_by_road: + gap_by_road[road] = [] + gap_by_road[road].append(gap) + + for road, road_gaps in sorted(gap_by_road.items()): + road_total = sum(g['length_feet'] for g in road_gaps) + print(f" • {road}: {len(road_gaps)} segment(s), {road_total:,.1f} feet") + + if extras: + print(f"\nšŸ”µ EXTRAS IN FILE 2 ({len(extras)} segments):") + print("These road segments exist in File 2 but are missing or incomplete in File 1:") + total_extra_length = sum(e['length_feet'] for e in extras) + print(f"Total extra length: {total_extra_length:,.1f} feet ({total_extra_length/5280:.2f} miles)") + + # Group by road name + extra_by_road = {} + for extra in extras: + road = extra['road_name'] + if road not in extra_by_road: + extra_by_road[road] = [] + extra_by_road[road].append(extra) + + for road, road_extras in sorted(extra_by_road.items()): + road_total = sum(e['length_feet'] for e in road_extras) + print(f" • {road}: {len(road_extras)} segment(s), {road_total:,.1f} feet") + + if not gaps and not extras: + print("\nāœ… No significant differences found!") + print("The road networks have good coverage overlap within the specified tolerance.") + + +def main(): + parser = argparse.ArgumentParser( + description="Compare two GeoJSON files containing roads and find significant gaps or extras", + formatter_class=argparse.RawDescriptionHelpFormatter, + epilog=""" +Examples: + python compare_roads.py roads1.geojson roads2.geojson + python compare_roads.py roads1.geojson roads2.geojson --tolerance 100 --min-length 200 + python compare_roads.py roads1.geojson roads2.geojson --output differences.geojson + """ + ) + + parser.add_argument('file1', help='First GeoJSON file') + parser.add_argument('file2', help='Second GeoJSON file') + parser.add_argument('--tolerance', '-t', type=float, default=50.0, + help='Distance tolerance in feet for considering roads as overlapping (default: 50)') + parser.add_argument('--min-length', '-m', type=float, default=100.0, + help='Minimum length in feet for gaps/extras to be considered significant (default: 100)') + parser.add_argument('--output', '-o', help='Output GeoJSON file for results (optional)') + + args = parser.parse_args() + + # Validate input files + if not Path(args.file1).exists(): + print(f"Error: File {args.file1} does not exist") + return 1 + + if not Path(args.file2).exists(): + print(f"Error: File {args.file2} does not exist") + return 1 + + try: + # Create comparator and run comparison + comparator = RoadComparator( + tolerance_feet=args.tolerance, + min_gap_length_feet=args.min_length + ) + + gaps, extras = comparator.compare_roads(args.file1, args.file2) + + # Print summary + comparator.print_summary(gaps, extras, args.file1, args.file2) + + # Save results if output file specified + if args.output: + comparator.save_results(gaps, extras, args.output) + + return 0 + + except Exception as e: + print(f"Error: {str(e)}") + return 1 + + +if __name__ == "__main__": + exit(main()) \ No newline at end of file diff --git a/sumter-roads-12-15-23.geojson b/sumter-roads-12-15-23.geojson new file mode 100755 index 0000000..531f06a --- /dev/null +++ b/sumter-roads-12-15-23.geojson @@ -0,0 +1,15804 @@ +{ +"type": "FeatureCollection", +"name": "sumter-roads-12-15-23", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.234968883999954, 28.724394724000035 ], [ -82.234160236999969, 28.723182907000023 ], [ -82.23360884899995, 28.722339180000063 ], [ -82.233517006999989, 28.72216503900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.198267782999949, 28.581679482000027 ], [ -82.200249415999963, 28.581661101000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.192564450999953, 28.581683226000052 ], [ -82.192700388999981, 28.581688190000079 ], [ -82.194234354999935, 28.581690473000037 ], [ -82.194611558999952, 28.581686494000053 ], [ -82.194964421999941, 28.58168358100005 ], [ -82.195242510999947, 28.581684556000027 ], [ -82.196818482999959, 28.581655119000061 ], [ -82.198177419999979, 28.581678239000041 ], [ -82.198267782999949, 28.581679482000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200328252999952, 28.585343694000073 ], [ -82.200318282999945, 28.585118180000052 ], [ -82.200276969999948, 28.584795419000045 ], [ -82.200239628999952, 28.584616702000062 ], [ -82.200279199999954, 28.584429965000027 ], [ -82.200243280999985, 28.584179049000056 ], [ -82.200274993999983, 28.58395828700003 ], [ -82.200254031999975, 28.583686378000039 ], [ -82.200257588999989, 28.583405837000043 ], [ -82.200257591999957, 28.583098831000029 ], [ -82.200258158999986, 28.582781165000029 ], [ -82.200233510999965, 28.582414717000063 ], [ -82.200224890999948, 28.582182326000066 ], [ -82.200231276999943, 28.581954382000049 ], [ -82.200246239999956, 28.581834720000074 ], [ -82.200249415999963, 28.581661101000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.198230763999959, 28.585409344000027 ], [ -82.198201751999989, 28.585099974000059 ], [ -82.198215283999957, 28.584527883000078 ], [ -82.198235877999934, 28.583774602000062 ], [ -82.198239765999972, 28.583459339000058 ], [ -82.198245740999937, 28.583115193000026 ], [ -82.198220148999951, 28.582656267000061 ], [ -82.198192137999968, 28.582257851000065 ], [ -82.198174727999969, 28.581800289000057 ], [ -82.198267782999949, 28.581679482000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174954254999989, 28.590573156000062 ], [ -82.175361878999979, 28.590572630000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.175364786999978, 28.592324939000036 ], [ -82.175361878999979, 28.590572630000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.168291876999945, 28.579829454000048 ], [ -82.16828407099996, 28.579575057000056 ], [ -82.168254536999939, 28.579249521000065 ], [ -82.168257022999967, 28.578975170000035 ], [ -82.16826711899995, 28.578467031000059 ], [ -82.168284229999983, 28.577961977000029 ], [ -82.168295126999965, 28.577835105000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.21288679099996, 28.585119323000072 ], [ -82.212910105999981, 28.585092127000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158864483999935, 28.569840889000034 ], [ -82.159468887999935, 28.569840181000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139776487999939, 28.619466056000078 ], [ -82.139183487999958, 28.619466666000051 ], [ -82.139149375999978, 28.618565279000052 ], [ -82.138556224999945, 28.618595109000069 ], [ -82.138537746999987, 28.617577505000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006917654999938, 28.936523796000074 ], [ -82.006760315999941, 28.935887130000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074340382999935, 28.898224575000029 ], [ -82.074357350999946, 28.898737481000069 ], [ -82.074324185999956, 28.899618602000032 ], [ -82.074346876999982, 28.900209888000063 ], [ -82.07433532999994, 28.901276637000024 ], [ -82.074293270999988, 28.901738010000031 ], [ -82.074295864999954, 28.901812608000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050865313999964, 28.860604408000029 ], [ -82.049838260999934, 28.860609261000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140575187999957, 28.810043121000035 ], [ -82.140683840999941, 28.810147173000075 ], [ -82.141184305999957, 28.810776804000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126553436999984, 28.791731321000043 ], [ -82.126778728999966, 28.791825307000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140685407999968, 28.811168892000069 ], [ -82.140684912999973, 28.810800702000051 ], [ -82.141184305999957, 28.810776804000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010287691999963, 28.924425058000054 ], [ -82.010989877999975, 28.924427752000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010989877999975, 28.924427752000042 ], [ -82.012828182999954, 28.924434809000047 ], [ -82.013173606999942, 28.924422743000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004099150999934, 28.92018937000006 ], [ -82.004821626999956, 28.920196910000072 ], [ -82.00539542599995, 28.920202389000053 ], [ -82.005953596999973, 28.920213366000041 ], [ -82.006431274999954, 28.920221594000054 ], [ -82.006797397999946, 28.92022982800006 ], [ -82.006947050999941, 28.920237038000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003379223999957, 28.920416283000066 ], [ -82.00337413699998, 28.920215174000077 ], [ -82.003371590999961, 28.919980374000033 ], [ -82.003366506999953, 28.919883429000038 ], [ -82.00335868999997, 28.919791297000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001046849999966, 28.915328078000073 ], [ -82.001083773999937, 28.91539030000007 ], [ -82.001150197999948, 28.915497214000027 ], [ -82.001231076999943, 28.91561684900006 ], [ -82.001297696999984, 28.915726170000028 ], [ -82.001338137999937, 28.915797330000032 ], [ -82.001372912999955, 28.915881555000055 ], [ -82.001376430999983, 28.915891181000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004298984999934, 28.914753561000055 ], [ -82.00443456499994, 28.91475355700004 ], [ -82.004959493999934, 28.91475353900006 ], [ -82.005015952999941, 28.914753537000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00502226499998, 28.916017260000046 ], [ -82.005022233999966, 28.915377148000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005022233999966, 28.915377148000061 ], [ -82.005022232999977, 28.915323863000026 ], [ -82.00501810999998, 28.914932988000032 ], [ -82.005015952999941, 28.914753537000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018505109999978, 28.922513468000034 ], [ -82.01875284099998, 28.922501745000034 ], [ -82.019017766, 28.922491051000065 ], [ -82.019264324999938, 28.92248207800003 ], [ -82.019455985999969, 28.922476550000056 ], [ -82.019647449999979, 28.922471022000025 ], [ -82.019894009999973, 28.922462047000067 ], [ -82.020081565999988, 28.922453081000072 ], [ -82.020228290999967, 28.922447902000044 ], [ -82.020240598999976, 28.922447214000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018505109999978, 28.922513468000034 ], [ -82.018491972999982, 28.922249105000049 ], [ -82.018487850999975, 28.922136003000048 ], [ -82.018491938999944, 28.922058997000079 ], [ -82.018514201999949, 28.922006739000039 ], [ -82.01855502799998, 28.92196582400004 ], [ -82.018603865999978, 28.921936940000023 ], [ -82.018677322999963, 28.921920773000068 ], [ -82.018815840999935, 28.921911815000044 ], [ -82.019040126999982, 28.921908346000066 ], [ -82.019307004999973, 28.921901088000027 ], [ -82.019577982999976, 28.921886610000058 ], [ -82.019891943999937, 28.92187418900005 ], [ -82.020181288999936, 28.921866927000053 ], [ -82.020355366999979, 28.921870338000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02262587499996, 28.922271163000062 ], [ -82.022813069999984, 28.922397985000032 ], [ -82.023232598999982, 28.922679810000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024099990999957, 28.921535225000071 ], [ -82.024209914999972, 28.92123612000006 ], [ -82.024234896999985, 28.921126450000031 ], [ -82.024251473999982, 28.920999937000033 ], [ -82.024262376999957, 28.920836985000051 ], [ -82.024268004999954, 28.920676440000079 ], [ -82.024262304, 28.920523117000073 ], [ -82.024251333999985, 28.920399015000044 ], [ -82.02422083099998, 28.920286950000047 ], [ -82.02417371699994, 28.920162855000058 ], [ -82.024096317999977, 28.920017107000035 ], [ -82.024007782999945, 28.919878237000034 ], [ -82.023970063999968, 28.919820146000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026657765999971, 28.922178638000048 ], [ -82.02673826299997, 28.92219202900003 ], [ -82.026892998999983, 28.922201623000035 ], [ -82.026981699999965, 28.922201605000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02521311199996, 28.921904925000035 ], [ -82.025559914999974, 28.92197567900007 ], [ -82.026174000999958, 28.922092100000043 ], [ -82.026561246999961, 28.922162843000024 ], [ -82.026657765999971, 28.922178638000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025025640999957, 28.920635048000065 ], [ -82.025506272999962, 28.92072605900006 ], [ -82.025731153999971, 28.920768645000066 ], [ -82.025750105999975, 28.920772080000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02521311199996, 28.921904925000035 ], [ -82.025354811999989, 28.921330104000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025354811999989, 28.921330104000049 ], [ -82.025360666999973, 28.921306383000058 ], [ -82.025419416999966, 28.921071916000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026657765999971, 28.922178638000048 ], [ -82.026785587999939, 28.921608974000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026785587999939, 28.921608974000037 ], [ -82.026853498999969, 28.921306436000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019042113999944, 28.916744816000062 ], [ -82.019102675999989, 28.916743432000032 ], [ -82.01915112599994, 28.916742051000028 ], [ -82.019336329999987, 28.91674202400003 ], [ -82.019459797999957, 28.91674200600005 ], [ -82.019583268999952, 28.916741988000069 ], [ -82.019712011999957, 28.916741970000032 ], [ -82.019762024999977, 28.91674196200006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005911763999961, 28.912894695000034 ], [ -82.005874807999987, 28.912299619000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005874807999987, 28.912299619000066 ], [ -82.005854276999969, 28.911969594000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006505127999958, 28.910876696000059 ], [ -82.006505316999949, 28.910790065000072 ], [ -82.00649883799997, 28.910258929000065 ], [ -82.006498640999951, 28.910242427000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006516108999961, 28.911523340000031 ], [ -82.006502219999959, 28.911237318000076 ], [ -82.006505127999958, 28.910876696000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006498640999951, 28.910242427000071 ], [ -82.006492561999949, 28.909845365000024 ], [ -82.006487270999969, 28.909606095000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971623730999966, 28.910804764000034 ], [ -81.97166729099996, 28.910818869000025 ], [ -81.971809103999988, 28.91086393300003 ], [ -81.971933929999977, 28.910878741000033 ], [ -81.972024573999988, 28.910873948000074 ], [ -81.972109752999984, 28.910854027000028 ], [ -81.972206073999985, 28.91080419900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970382758999961, 28.910461407000071 ], [ -81.970487664999951, 28.910459368000033 ], [ -81.970595299999957, 28.910469362000072 ], [ -81.97074844499997, 28.910504459000038 ], [ -81.970927758999949, 28.910568441000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970927758999949, 28.910568441000066 ], [ -81.971264511999948, 28.91068917900003 ], [ -81.971620800999972, 28.910804077000023 ], [ -81.971623730999966, 28.910804764000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975553488999935, 28.897189187000038 ], [ -81.975814477999961, 28.897043127000074 ], [ -81.97594946199996, 28.896984709000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967059818999985, 28.906199514000036 ], [ -81.967077217999986, 28.906158952000055 ], [ -81.967097557999978, 28.906082294000043 ], [ -81.967107548999934, 28.905990509000048 ], [ -81.967107575999989, 28.905904565000071 ], [ -81.967087485999969, 28.905806927000071 ], [ -81.967063876999987, 28.905721320000055 ], [ -81.967026991999944, 28.905614740000033 ], [ -81.966986778999967, 28.905528786000048 ], [ -81.966953006999972, 28.905454866000071 ], [ -81.966929586999981, 28.905389885000034 ], [ -81.966909490999967, 28.90531287500005 ], [ -81.966872407999972, 28.905215232000046 ], [ -81.966825367999945, 28.905099711000048 ], [ -81.966791799999953, 28.905002070000023 ], [ -81.966764864999959, 28.904933996000068 ], [ -81.966727976999948, 28.904836355000043 ], [ -81.966701050999973, 28.904735620000054 ], [ -81.966677635999986, 28.904652765000037 ], [ -81.966647382999952, 28.904576094000049 ], [ -81.96663061199996, 28.904490146000057 ], [ -81.966630627999962, 28.904439954000054 ], [ -81.966630661999943, 28.904334414000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967059818999985, 28.906199514000036 ], [ -81.967292447999966, 28.906277609000028 ], [ -81.967383278999989, 28.906295162000049 ], [ -81.967463954999971, 28.906292432000043 ], [ -81.967615356999943, 28.90625671600003 ], [ -81.967961533999983, 28.90616054000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967961533999983, 28.90616054000003 ], [ -81.968008810999947, 28.906147488000045 ], [ -81.968304779999983, 28.906067802000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967961533999983, 28.90616054000003 ], [ -81.967575274999945, 28.90511777100005 ], [ -81.967414058999964, 28.904682509000054 ], [ -81.967363713999987, 28.904514046000031 ], [ -81.967346944999974, 28.904419160000032 ], [ -81.967343636999942, 28.904379281000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954100772999936, 28.899976095000056 ], [ -81.954100865999976, 28.899765015000071 ], [ -81.954098218999945, 28.899565623000058 ], [ -81.954095777999953, 28.899342510000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954107521999958, 28.900618617000077 ], [ -81.954105822999963, 28.90048282500004 ], [ -81.954100642999947, 28.900271399000076 ], [ -81.954100772999936, 28.899976095000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954003132999958, 28.895042846000024 ], [ -81.954003280999984, 28.894706975000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954002881999941, 28.895613518000062 ], [ -81.954003132999958, 28.895042846000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95400276099997, 28.89588682200008 ], [ -81.954002881999941, 28.895613518000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955632655999977, 28.892862808000075 ], [ -81.955630365, 28.892278040000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955630365, 28.892278040000065 ], [ -81.955630225999982, 28.891687428000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955630225999982, 28.891687428000068 ], [ -81.955630345999964, 28.891405188000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954002134999939, 28.892876356000045 ], [ -81.954002399, 28.892277494000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954002399, 28.892277494000041 ], [ -81.954002658999968, 28.891686882000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954002658999968, 28.891686882000045 ], [ -81.954002773999946, 28.891427330000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954002001999982, 28.893178882000029 ], [ -81.954002134999939, 28.892876356000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957943881999938, 28.895213617000024 ], [ -81.958162099999981, 28.895593216000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958023877999949, 28.896399676000044 ], [ -81.958128005999981, 28.896348142000079 ], [ -81.95835892499997, 28.896233735000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961495671999955, 28.896672297000066 ], [ -81.961737690999939, 28.896641426000031 ], [ -81.962214119999942, 28.896556304000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962214119999942, 28.896556304000057 ], [ -81.96248524799995, 28.896507907000057 ], [ -81.962930025999981, 28.896442713000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960981566999976, 28.89931099000006 ], [ -81.960689759, 28.898748484000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96515021, 28.899580967000077 ], [ -81.965136006999955, 28.899411826000062 ], [ -81.96515674799997, 28.899302508000062 ], [ -81.965225939999982, 28.899168797000073 ], [ -81.965301777999969, 28.899017210000068 ], [ -81.965309399999967, 28.899001056000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965309399999967, 28.899001056000031 ], [ -81.965350058999945, 28.898914090000062 ], [ -81.965419295999936, 28.89864080500007 ], [ -81.965419297999972, 28.898634616000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964203606999945, 28.891130996000072 ], [ -81.964308766999977, 28.890891754000052 ], [ -81.964316581999981, 28.890884537000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963715323999963, 28.892242301000067 ], [ -81.963951451999947, 28.891704694000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963951451999947, 28.891704694000055 ], [ -81.964203606999945, 28.891130996000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964687967999964, 28.891765052000039 ], [ -81.96495009399996, 28.89114666200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960272526999972, 28.892104162000066 ], [ -81.960239058999946, 28.891772063000076 ], [ -81.960226816999977, 28.891608420000068 ], [ -81.960214372999985, 28.891459217000033 ], [ -81.960203864999983, 28.891359862000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960203864999983, 28.891359862000058 ], [ -81.960198027, 28.891302793000079 ], [ -81.960185591999959, 28.891131931000075 ], [ -81.960173365999935, 28.890920847000075 ], [ -81.96015682999996, 28.890753422000046 ], [ -81.960151571999972, 28.890711137000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958795472999952, 28.888326968000058 ], [ -81.959570805999988, 28.888298346000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963762882999958, 28.888027246000036 ], [ -81.963804284999981, 28.888032414000065 ], [ -81.964076923999983, 28.888070646000074 ], [ -81.964300933999937, 28.888095801000077 ], [ -81.964430027999981, 28.888113368000063 ], [ -81.96448178199995, 28.888120944000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96448178199995, 28.888120944000036 ], [ -81.964570839999965, 28.888133689000028 ], [ -81.964786059999938, 28.888159185000063 ], [ -81.965001476999987, 28.888189493000027 ], [ -81.965164940999955, 28.888217381000061 ], [ -81.965198727999962, 28.888225985000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968525056999965, 28.883633576000079 ], [ -81.968626447999952, 28.883533560000046 ], [ -81.968699515999958, 28.883451414000035 ], [ -81.968784698999968, 28.883340737000026 ], [ -81.968857777999972, 28.883219401000076 ], [ -81.968909561999965, 28.883118684000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968909561999965, 28.883118684000067 ], [ -81.968934965999949, 28.883069186000057 ], [ -81.968983628999979, 28.882958501000076 ], [ -81.969028394999953, 28.882812062000028 ], [ -81.969077075999962, 28.882640871000035 ], [ -81.969086068999957, 28.882611308000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995195500999955, 28.888242769000044 ], [ -81.995111153999972, 28.887685845000078 ], [ -81.995100609999952, 28.887607806000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985160570999938, 28.882299823000039 ], [ -81.985707461999937, 28.881895254000028 ], [ -81.985721328999944, 28.881885630000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985721328999944, 28.881885630000056 ], [ -81.98594516199995, 28.881731640000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99111299599997, 28.885404668000035 ], [ -81.991216523999981, 28.88520287800003 ], [ -81.991294851999953, 28.885065027000053 ], [ -81.991334504999941, 28.884999368000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989361405999944, 28.88450074800005 ], [ -81.98947900099995, 28.884268707000047 ], [ -81.989510450999944, 28.884209923000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991526534999934, 28.88440704900006 ], [ -81.991551345999937, 28.884322138000073 ], [ -81.991611902999978, 28.884146815000065 ], [ -81.991611903999967, 28.884143720000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989510450999944, 28.884209923000071 ], [ -81.989532329999975, 28.884168671000054 ], [ -81.989614364999966, 28.884077576000038 ], [ -81.989696202999937, 28.884011920000034 ], [ -81.989867101999948, 28.88391155000005 ], [ -81.990134282999975, 28.883801904000052 ], [ -81.990166313999964, 28.883786780000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990166313999964, 28.883786780000037 ], [ -81.990319436999982, 28.88371425400004 ], [ -81.990465334999953, 28.88362660100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993924460999949, 28.884309890000054 ], [ -81.994112730999973, 28.884326399000031 ], [ -81.994445329999962, 28.884351165000055 ], [ -81.994621685999959, 28.884388300000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991776982999966, 28.878570043000025 ], [ -81.991615497999987, 28.878290885000069 ], [ -81.991563753999969, 28.878207343000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991507609999985, 28.879387189000056 ], [ -81.991286177999939, 28.879027581000059 ], [ -81.99115476299994, 28.878820962000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981668398999943, 28.883665226000062 ], [ -81.981790682999986, 28.883519823000029 ], [ -81.98188210099994, 28.883417734000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98816912999996, 28.887553058000037 ], [ -81.988498398, 28.887742166000066 ], [ -81.988702094999951, 28.887838097000042 ], [ -81.988960284999962, 28.887909625000077 ], [ -81.989367884999979, 28.888017259000037 ], [ -81.989844817999938, 28.888123867000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99217134099996, 28.888099271000044 ], [ -81.992773662, 28.888292853000053 ], [ -81.992835573999969, 28.888309701000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99201170799995, 28.888954583000043 ], [ -81.992639412999949, 28.88929495900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992639412999949, 28.88929495900004 ], [ -81.992870067999945, 28.889419763000035 ], [ -81.993225717999962, 28.88960164100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993225717999962, 28.88960164100007 ], [ -81.99349660699994, 28.889740884000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012599300999966, 28.910729471000025 ], [ -82.013287524999953, 28.910729405000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013287524999953, 28.910729405000041 ], [ -82.015670812999986, 28.910729149000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013287524999953, 28.910729405000041 ], [ -82.013291942999956, 28.910146357000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011196135999967, 28.922044331000052 ], [ -82.011321570999939, 28.922100013000033 ], [ -82.011640630999977, 28.922240934000058 ], [ -82.011767040999985, 28.922286989000042 ], [ -82.011863166999944, 28.922299699000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011859169, 28.923222053000075 ], [ -82.012215067999989, 28.923220919000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010515185999964, 28.923222853000027 ], [ -82.011194307999972, 28.92322279800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011194307999972, 28.92322279800004 ], [ -82.011662816999944, 28.923222758000065 ], [ -82.011859169, 28.923222053000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010989815999949, 28.923840582000025 ], [ -82.012738042999956, 28.923854179000045 ], [ -82.013055332999954, 28.923856211000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013055332999954, 28.923856211000043 ], [ -82.013366176999966, 28.92385824400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010989877999975, 28.924427752000042 ], [ -82.010989815999949, 28.923840582000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010989815999949, 28.923840582000025 ], [ -82.010989784999936, 28.923544590000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013869037999939, 28.925046284000075 ], [ -82.013869030999956, 28.924996781000061 ], [ -82.01387077399994, 28.924874396000064 ], [ -82.013872318999972, 28.924742730000048 ], [ -82.013873289999935, 28.924697695000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983462777999989, 28.912287731000049 ], [ -81.98412037199995, 28.912444984000047 ], [ -81.984217956999942, 28.912468320000073 ], [ -81.984303072999978, 28.912463459000037 ], [ -81.984367317999954, 28.912432050000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985224401999972, 28.911485216000074 ], [ -81.985157244999982, 28.911172028000067 ], [ -81.985116435999942, 28.911036575000026 ], [ -81.98505862899998, 28.910917965000067 ], [ -81.984979333999945, 28.910799354000062 ], [ -81.984885580999958, 28.910691396000061 ], [ -81.98476057299996, 28.910566591000077 ], [ -81.984684593999987, 28.910491639000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967875510999988, 28.908934462000047 ], [ -81.968647430999965, 28.908603929000037 ], [ -81.968744988999958, 28.908604747000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961559470999987, 28.903761361000079 ], [ -81.961535067999989, 28.903721131000054 ], [ -81.961467318999951, 28.903630355000075 ], [ -81.961399761999985, 28.903548860000058 ], [ -81.961324975999958, 28.903473552000037 ], [ -81.961253898999985, 28.903401337000048 ], [ -81.961175400999934, 28.90332946500007 ], [ -81.961138491999975, 28.903302296000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963667966999935, 28.903720348000036 ], [ -81.963907100999961, 28.90360455900003 ], [ -81.963997952999989, 28.903545455000028 ], [ -81.964072200999965, 28.903490126000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974163855999961, 28.891213373000028 ], [ -81.974293737999972, 28.891223711000066 ], [ -81.974471479999977, 28.891197962000035 ], [ -81.974750202999985, 28.891161231000069 ], [ -81.975028731999942, 28.891124842000067 ], [ -81.975342996999984, 28.891109430000029 ], [ -81.975698666999961, 28.891098837000072 ], [ -81.976226400999963, 28.891125059000046 ], [ -81.976582062999967, 28.891156405000061 ], [ -81.976777759999948, 28.891190129000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10334295399997, 28.901863932000026 ], [ -82.10312554799998, 28.901865473000043 ], [ -82.102820427999973, 28.901858143000027 ], [ -82.102545539999937, 28.901806442000066 ], [ -82.102249108999956, 28.901694597000073 ], [ -82.102074434999963, 28.901647976000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187132153999983, 28.573300894000056 ], [ -82.187140345999978, 28.572978404000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.186604070999977, 28.578381857000068 ], [ -82.186806591999982, 28.578380891000052 ], [ -82.187036798999941, 28.578399826000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178601672999946, 28.583905007000055 ], [ -82.178600897999956, 28.58379155700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.257234658999948, 28.666252428000064 ], [ -82.258909273999961, 28.666031759000077 ], [ -82.259679739999967, 28.665903580000077 ], [ -82.260097164999934, 28.66589536500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256530547999944, 28.66548133200007 ], [ -82.256356599999947, 28.66535611300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974313452999979, 28.934010577000038 ], [ -81.974324763999959, 28.934090042000037 ], [ -81.974341334999963, 28.93412326300006 ], [ -81.974355143999958, 28.934145141000045 ], [ -81.974363429999983, 28.934156485000074 ], [ -81.97437171699994, 28.934165398000061 ], [ -81.97438460799998, 28.934175124000035 ], [ -81.974390133999975, 28.934181607000028 ], [ -81.974398420999989, 28.934186470000043 ], [ -81.974404865999986, 28.934192142000029 ], [ -81.97441407499997, 28.934197816000051 ], [ -81.974421442999983, 28.93420186700007 ], [ -81.974426045999962, 28.934205919000078 ], [ -81.974433412999986, 28.934209972000076 ], [ -81.974440779999952, 28.934214024000028 ], [ -81.974452751999934, 28.934218888000032 ], [ -81.974461960999975, 28.934223750000058 ], [ -81.974470248999978, 28.934227803000056 ], [ -81.974480377999953, 28.93423266700006 ], [ -81.974492350999981, 28.934236719000069 ], [ -81.974504321999973, 28.934240773000056 ], [ -81.974519976999943, 28.934248877000073 ], [ -81.976214479999953, 28.934883575000072 ], [ -81.976746080999987, 28.935093504000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972948979999956, 28.934687304000079 ], [ -81.972970412999985, 28.934671349000041 ], [ -81.972984700999973, 28.934661298000037 ], [ -81.973015183999962, 28.934639521000065 ], [ -81.973054237999975, 28.934611043000075 ], [ -81.973344764999979, 28.934431810000035 ], [ -81.973571463999974, 28.934312047000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967298244999938, 28.940300809000064 ], [ -81.967573005999952, 28.940116852000074 ], [ -81.967715796999983, 28.940025778000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013291942999956, 28.910146357000031 ], [ -82.013290997999945, 28.909922408000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014758399999948, 28.912636184000064 ], [ -82.014752057999942, 28.911989540000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013319391999971, 28.912447257000053 ], [ -82.013319249999938, 28.91133995000007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011912113999983, 28.909528375000036 ], [ -82.012202597999988, 28.909528349000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009814899999981, 28.910105402000056 ], [ -82.010135078999951, 28.91010159700005 ], [ -82.010929957999963, 28.910106004000056 ], [ -82.01163556399996, 28.910108351000076 ], [ -82.011912179999968, 28.910108327000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011253497999974, 28.912276932000054 ], [ -82.011570564999943, 28.912343254000064 ], [ -82.011782332999985, 28.912383802000079 ], [ -82.011903846999985, 28.912399261000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011903846999985, 28.912399261000076 ], [ -82.011966750999989, 28.912407506000079 ], [ -82.012140421999959, 28.912417115000039 ], [ -82.012219148999975, 28.91241229600007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011903846999985, 28.912399261000076 ], [ -82.011907100999963, 28.911820340000077 ], [ -82.011907012999984, 28.911053715000037 ], [ -82.011906971999963, 28.910695844000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011253497999974, 28.912276932000054 ], [ -82.011253103999934, 28.912245304000066 ], [ -82.011247542999968, 28.911402363000036 ], [ -82.01125039599998, 28.910695900000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015500616999987, 28.916397366000069 ], [ -82.015500635999956, 28.916397086000075 ], [ -82.01550500999997, 28.916331362000051 ], [ -82.01553566299998, 28.916202786000042 ], [ -82.015587216999961, 28.91605426700005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015587216999961, 28.91605426700005 ], [ -82.015623928999958, 28.915948724000032 ], [ -82.015739344999986, 28.915662001000044 ], [ -82.015820775999941, 28.915443693000043 ], [ -82.015846160999956, 28.915370465000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021327629999973, 28.913722671000073 ], [ -82.021754483999985, 28.913713666000035 ], [ -82.022969997999951, 28.91372343300003 ], [ -82.023567594999975, 28.913728487000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023567594999975, 28.913728487000071 ], [ -82.02387215899995, 28.913731183000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02072994599996, 28.914267651000046 ], [ -82.021408427999972, 28.914282671000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021408427999972, 28.914282671000024 ], [ -82.021783907999975, 28.914290863000076 ], [ -82.022914446999948, 28.914303395000047 ], [ -82.023555612999985, 28.914305347000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021327629999973, 28.913722671000073 ], [ -82.021300457999985, 28.913631232000057 ], [ -82.021244741999965, 28.913437694000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023465304999945, 28.914937913000074 ], [ -82.023542277, 28.914938243000051 ], [ -82.023775732, 28.914939920000052 ], [ -82.02410393599996, 28.914942269000051 ], [ -82.024275265999961, 28.914944988000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014611626999965, 28.923338667000053 ], [ -82.015721550999956, 28.923340949000078 ], [ -82.016055839999979, 28.923345034000079 ], [ -82.016167400999962, 28.92336117900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012255723999942, 28.923220377000064 ], [ -82.012619958999949, 28.923221984000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012619958999949, 28.923221984000065 ], [ -82.013285990999975, 28.923224327000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013285990999975, 28.923224327000071 ], [ -82.01394225599995, 28.923226667000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01394225599995, 28.923226667000051 ], [ -82.014229066999974, 28.923227668000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01394225599995, 28.923226667000051 ], [ -82.013945844999967, 28.922306719000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013945844999967, 28.922306719000062 ], [ -82.013946004, 28.922034449000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013285990999975, 28.923224327000071 ], [ -82.013285881999934, 28.922371417000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012619958999949, 28.923221984000065 ], [ -82.012619859999973, 28.922405170000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011863166999944, 28.922299699000064 ], [ -82.011863529999971, 28.922050462000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011859169, 28.923222053000075 ], [ -82.011859167999944, 28.923219303000053 ], [ -82.011863166999944, 28.922299699000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011194307999972, 28.92322279800004 ], [ -82.011196135999967, 28.922044331000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010356807999983, 28.921970829000031 ], [ -82.010607270999969, 28.921935744000052 ], [ -82.010737777999964, 28.921918202000029 ], [ -82.010825890999968, 28.921916476000035 ], [ -82.010894270999984, 28.921923346000028 ], [ -82.011010522999982, 28.921962183000062 ], [ -82.011196135999967, 28.922044331000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118790344, 28.661277936000033 ], [ -82.11879477399998, 28.660367921000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116211360999955, 28.664182604000075 ], [ -82.116183838999973, 28.664903467000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068308029999969, 28.736595824000062 ], [ -82.06833693599998, 28.736542246000056 ], [ -82.068374516999938, 28.736481266000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062658342999953, 28.741496246000054 ], [ -82.062236829999961, 28.741476740000053 ], [ -82.061914313999978, 28.741471259000036 ], [ -82.061575821999952, 28.741448900000023 ], [ -82.061237336999966, 28.741434982000044 ], [ -82.060764738999978, 28.741426753000042 ], [ -82.060522050999964, 28.741418418000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060522050999964, 28.741418418000023 ], [ -82.059963234999941, 28.741404596000052 ], [ -82.059426774999963, 28.74139920500005 ], [ -82.058845613999949, 28.741396644000076 ], [ -82.058433688999969, 28.741391194000073 ], [ -82.057504470999959, 28.74139159300006 ], [ -82.056722138999987, 28.741391923000037 ], [ -82.055661995999969, 28.741383920000033 ], [ -82.054375137999955, 28.741381630000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.150638188999949, 28.658120790000055 ], [ -82.150723119999952, 28.658094912000024 ], [ -82.150792087999946, 28.65808108300007 ], [ -82.152343359999975, 28.658062704000031 ], [ -82.153094965999969, 28.658071762000077 ], [ -82.153543381999953, 28.658075541000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105920748999949, 28.699562724000032 ], [ -82.105917708999982, 28.699237608000033 ], [ -82.105917400999942, 28.698931615000049 ], [ -82.105917724999983, 28.698714791000043 ], [ -82.105919592999953, 28.698414534000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105920748999949, 28.699562724000032 ], [ -82.105999375999943, 28.699562662000062 ], [ -82.106395229999976, 28.699562352000044 ], [ -82.106801928999971, 28.699562031000028 ], [ -82.107327925999982, 28.69956161500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104003373999944, 28.70719013400003 ], [ -82.103846073999989, 28.707156786000041 ], [ -82.103357986999981, 28.707142818000079 ], [ -82.102246234999939, 28.707139870000049 ], [ -82.101961697999968, 28.707139115000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10313722799998, 28.708759009000062 ], [ -82.103245533999939, 28.70860115000005 ], [ -82.103424258999951, 28.70835717600005 ], [ -82.10359210699994, 28.708086913000045 ], [ -82.103749094999955, 28.707799925000074 ], [ -82.103857323999989, 28.707565566000028 ], [ -82.103906020999943, 28.707455562000064 ], [ -82.103935769999964, 28.707374260000051 ], [ -82.103965518999985, 28.707295348000059 ], [ -82.104003373999944, 28.70719013400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100121650999938, 28.711273762000076 ], [ -82.101099818999955, 28.710512835000031 ], [ -82.101627234999967, 28.710099253000067 ], [ -82.101942489999942, 28.709854795000069 ], [ -82.102178226999968, 28.709677715000055 ], [ -82.102351625999972, 28.709531760000061 ], [ -82.102535859999989, 28.709373843000037 ], [ -82.102728206999984, 28.709194405000062 ], [ -82.102866364999954, 28.709060428000043 ], [ -82.103009923999934, 28.708902541000043 ], [ -82.10313722799998, 28.708759009000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08775028499997, 28.721187142000076 ], [ -82.087938874999963, 28.721015056000056 ], [ -82.088408009999966, 28.720585794000044 ], [ -82.088828884999941, 28.720209415000056 ], [ -82.08908159799995, 28.719976849000034 ], [ -82.089317171999937, 28.719770765000078 ], [ -82.089510921999988, 28.719600701000047 ], [ -82.089767276999964, 28.719379583000034 ], [ -82.090017443999955, 28.719173389000048 ], [ -82.090267468999969, 28.718961205000028 ], [ -82.090572241999951, 28.718732382000042 ], [ -82.092353640999988, 28.717330590000074 ], [ -82.094014393999942, 28.716040932000055 ], [ -82.094902721999972, 28.715351018000035 ], [ -82.097408864999977, 28.713394157000039 ], [ -82.09809544899997, 28.712867386000028 ], [ -82.098755751999988, 28.71235056300003 ], [ -82.099937397999952, 28.711417332000053 ], [ -82.100121650999938, 28.711273762000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08503200399997, 28.723659450000071 ], [ -82.084952023999961, 28.723427808000054 ], [ -82.084970661999989, 28.723258163000025 ], [ -82.084988448999979, 28.722037630000045 ], [ -82.084991409999986, 28.719894473000068 ], [ -82.084995958999968, 28.719716563000077 ], [ -82.085042806, 28.719608963000042 ], [ -82.085113173999957, 28.719567545000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054375137999955, 28.741381630000035 ], [ -82.052404933999981, 28.741371150000077 ], [ -82.050996732999977, 28.741360432000079 ], [ -82.048818971999935, 28.741349980000052 ], [ -82.048484787999939, 28.741343611000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048484787999939, 28.741343611000048 ], [ -82.04713615999998, 28.741347762000032 ], [ -82.046302737999952, 28.741350865000072 ], [ -82.045510813999954, 28.741322990000072 ], [ -82.044897721999973, 28.741320380000047 ], [ -82.044447478999984, 28.741312088000029 ], [ -82.04398766199995, 28.741317866000031 ], [ -82.043281971999988, 28.741332165000074 ], [ -82.042640136999978, 28.741321111000047 ], [ -82.041902504999939, 28.741310085000066 ], [ -82.040507080999987, 28.741304882000065 ], [ -82.039351149999959, 28.741316481000069 ], [ -82.038118577999967, 28.741311205000045 ], [ -82.037636403999954, 28.741305712000042 ], [ -82.03699138099995, 28.741305890000035 ], [ -82.035832248999952, 28.741292130000033 ], [ -82.034788075999984, 28.741295217000072 ], [ -82.03360020599996, 28.741281446000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048484787999939, 28.741343611000048 ], [ -82.048415275999957, 28.741202391000058 ], [ -82.047309431999963, 28.738701746000061 ], [ -82.045659302999979, 28.734913701000039 ], [ -82.042736780999974, 28.728313305000029 ], [ -82.041659846999949, 28.725848059000043 ], [ -82.040410763999944, 28.72306444000003 ], [ -82.03865288999998, 28.71906253700007 ], [ -82.037285265999969, 28.715963973000044 ], [ -82.037138525999978, 28.715626384000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055138217999968, 28.745045400000038 ], [ -82.055109891999962, 28.74498058100005 ], [ -82.055047564999938, 28.744825074000062 ], [ -82.054962573999944, 28.744610044000069 ], [ -82.054898819999949, 28.744429289000038 ], [ -82.054835064999963, 28.744245421000073 ], [ -82.054774841999972, 28.744052198000077 ], [ -82.054714290999982, 28.743858695000029 ], [ -82.054669751999938, 28.743683945000043 ], [ -82.054628629999968, 28.743503169000064 ], [ -82.054580661999978, 28.743304314000056 ], [ -82.054548952999937, 28.743145002000063 ], [ -82.054514663999953, 28.742952923000075 ], [ -82.054480363999971, 28.742738243000076 ], [ -82.054450333999966, 28.742519796000067 ], [ -82.054424593999954, 28.742331480000075 ], [ -82.054394618999936, 28.742003581000063 ], [ -82.054388146999941, 28.741837541000052 ], [ -82.054375246999939, 28.741592703000038 ], [ -82.054375137999955, 28.741381630000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060674542999948, 28.752451800000074 ], [ -82.060924757999942, 28.752003028000047 ], [ -82.061086512999964, 28.751688012000045 ], [ -82.061283602999936, 28.751320489000079 ], [ -82.061411933999977, 28.751144916000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059501902999955, 28.752999099000078 ], [ -82.059460204999937, 28.752910569000051 ], [ -82.058820084999979, 28.751753864000079 ], [ -82.058259286999942, 28.750749227000028 ], [ -82.057803290999971, 28.749929060000056 ], [ -82.057253842999955, 28.748946853000064 ], [ -82.056647765999969, 28.74786742200007 ], [ -82.056313577999958, 28.747271615000045 ], [ -82.056129493999947, 28.746945043000039 ], [ -82.056007711999939, 28.746720677000042 ], [ -82.055900092999934, 28.74652622900004 ], [ -82.055741499999954, 28.746247022000034 ], [ -82.055633879999959, 28.746047585000042 ], [ -82.055523429999937, 28.745848151000075 ], [ -82.055412977999936, 28.745641235000051 ], [ -82.055311006999943, 28.745424342000035 ], [ -82.055200541999966, 28.745192491000068 ], [ -82.055138217999968, 28.745045400000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08140582599998, 28.725984351000079 ], [ -82.081854784999962, 28.725783230000047 ], [ -82.08206936199997, 28.72568995000006 ], [ -82.082244321999951, 28.725611250000043 ], [ -82.082425880999949, 28.72552672300003 ], [ -82.082587628999988, 28.725445119000028 ], [ -82.082755979999945, 28.725360600000045 ], [ -82.082911119999949, 28.725273178000066 ], [ -82.083049755, 28.725197410000078 ], [ -82.083227990999944, 28.725086686000054 ], [ -82.08335174399997, 28.725009717000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.081298831999959, 28.739611841000055 ], [ -82.081300715999987, 28.738660491000076 ], [ -82.081310450999979, 28.737584620000064 ], [ -82.081317515999956, 28.736471490000042 ], [ -82.081329834999963, 28.735321097000053 ], [ -82.081347466999944, 28.734205631000066 ], [ -82.08134684099997, 28.733397567000054 ], [ -82.081356537999966, 28.73227279200006 ], [ -82.081369222999967, 28.731595128000038 ], [ -82.081376271999943, 28.730461038000044 ], [ -82.081380725999963, 28.729392154000038 ], [ -82.081390381999938, 28.728213818000029 ], [ -82.081400282999937, 28.727354515000059 ], [ -82.081405251999968, 28.72694698600003 ], [ -82.081410310999956, 28.726658222000026 ], [ -82.08140582599998, 28.725984351000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.079379830999983, 28.726875563000078 ], [ -82.079942359999961, 28.726626059000068 ], [ -82.081159841999977, 28.72608739900005 ], [ -82.08140582599998, 28.725984351000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.077264373999981, 28.727803618000053 ], [ -82.077811069999939, 28.727565776000063 ], [ -82.079023293999967, 28.727029467000079 ], [ -82.079379830999983, 28.726875563000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075110390999953, 28.734080110000036 ], [ -82.07169448999997, 28.73408196500003 ], [ -82.071266212999944, 28.733997569000053 ], [ -82.070818493, 28.733939662000068 ], [ -82.070235863999983, 28.733989942000051 ], [ -82.069906980999974, 28.733933404000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060705462999977, 28.621977138000034 ], [ -82.06078566399998, 28.621916911000028 ], [ -82.060881223999957, 28.621849387000054 ], [ -82.060919410999986, 28.621760198000061 ], [ -82.060924726999986, 28.621504729000037 ], [ -82.060924583999963, 28.621256493000033 ], [ -82.060927148999951, 28.620969695000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060896604999982, 28.620104497000057 ], [ -82.060888584999987, 28.620405758000061 ], [ -82.060886080999978, 28.620801010000037 ], [ -82.060886177999976, 28.620969713000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060896604999982, 28.620104497000057 ], [ -82.061885340999936, 28.620091998000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060896063999962, 28.619166983000071 ], [ -82.060896451999952, 28.619839389000049 ], [ -82.060896604999982, 28.620104497000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060896063999962, 28.619166983000071 ], [ -82.061775551999972, 28.619176225000047 ], [ -82.061873885999944, 28.619185821000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060901021999939, 28.618294539000033 ], [ -82.060896063999962, 28.619166983000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060901021999939, 28.618294539000033 ], [ -82.06123970699997, 28.618301616000053 ], [ -82.061876101999985, 28.618306147000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969094840999958, 28.939493120000066 ], [ -81.969102933999977, 28.939585222000062 ], [ -81.969403990999979, 28.94017124800007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97451994499994, 28.937283849000039 ], [ -81.974500352999939, 28.937344542000062 ], [ -81.974483918999965, 28.937394444000063 ], [ -81.974473459999956, 28.93742990100003 ], [ -81.974465988999953, 28.937453539000046 ], [ -81.974454035999941, 28.937491623000028 ], [ -81.974446563999948, 28.937523141000042 ], [ -81.974440583999979, 28.937553345000026 ], [ -81.974431619999962, 28.937583549000067 ], [ -81.974424146, 28.937616381000055 ], [ -81.974418166999953, 28.937649212000053 ], [ -81.974413680999987, 28.937676791000058 ], [ -81.974410689999957, 28.937697803000049 ], [ -81.974406204, 28.937720128000024 ], [ -81.974399115999972, 28.937743432000048 ], [ -81.974389310999982, 28.937761576000071 ], [ -81.97438053999997, 28.937776548000045 ], [ -81.974367641999947, 28.937792424000065 ], [ -81.974357839999982, 28.937803765000069 ], [ -81.97434855399996, 28.93781238400004 ], [ -81.974334624999983, 28.937824176000049 ], [ -81.97432482399995, 28.937831888000062 ], [ -81.974315537999985, 28.937838237000051 ], [ -81.974305220999952, 28.937845496000079 ], [ -81.974293873999954, 28.937852298000053 ], [ -81.974280976999978, 28.937859101000072 ], [ -81.974272208999935, 28.937863637000078 ], [ -81.974265822999939, 28.937865678000037 ], [ -81.974251574999982, 28.937872253000023 ], [ -81.974242806999939, 28.93787678800004 ], [ -81.974228363999941, 28.937881322000067 ], [ -81.974218048999944, 28.937884043000054 ], [ -81.974205152999957, 28.937887216000036 ], [ -81.974191743999938, 28.937888121000071 ], [ -81.974180396999941, 28.93788902700004 ], [ -81.974164407999979, 28.937889024000071 ], [ -81.97414996599997, 28.937889473000041 ], [ -81.974135010999987, 28.937889470000073 ], [ -81.974117988999978, 28.937889467000048 ], [ -81.97410457999996, 28.937889919000042 ], [ -81.974084464999976, 28.937889915000028 ], [ -81.974061254999981, 28.93788991100007 ], [ -81.974037529999976, 28.937889906000066 ], [ -81.974011742999949, 28.937889901000062 ], [ -81.973979248999967, 28.937889895000069 ], [ -81.97394984999994, 28.937889889000076 ], [ -81.973926641999981, 28.937889885000061 ], [ -81.973329619999959, 28.937890674000073 ], [ -81.972540114999958, 28.937891812000032 ], [ -81.972439372999986, 28.937903195000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972655562999989, 28.938587871000038 ], [ -81.972721519999936, 28.938572559000079 ], [ -81.973396701999945, 28.938569980000068 ], [ -81.973840504999941, 28.938570067000057 ], [ -81.973899091999954, 28.938570078000055 ], [ -81.973943033999944, 28.938570087000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975199572999941, 28.941760212000077 ], [ -81.975206219999961, 28.941783620000024 ], [ -81.975228828999946, 28.941819903000066 ], [ -81.975329921999958, 28.941917058000058 ], [ -81.975476241999957, 28.942050502000029 ], [ -81.975574675999951, 28.942142976000071 ], [ -81.975638524999965, 28.942201503000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975199572999941, 28.941760212000077 ], [ -81.97519957999998, 28.941730954000036 ], [ -81.975204907999967, 28.941704037000079 ], [ -81.975222212999938, 28.941668931000038 ], [ -81.975255480999976, 28.94163850800004 ], [ -81.975295400999983, 28.941615110000043 ], [ -81.975706551999963, 28.941465383000036 ], [ -81.976068469999973, 28.94132852000007 ], [ -81.976230799999939, 28.941273543000079 ], [ -81.976292005999937, 28.941250147000062 ], [ -81.976322612999979, 28.941233768000075 ], [ -81.97636119799995, 28.941224413000043 ], [ -81.976387806999981, 28.941224417000058 ], [ -81.97641574499994, 28.941230274000077 ], [ -81.976442352999982, 28.941239641000038 ], [ -81.976480926999955, 28.941275928000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976788169999963, 28.941707830000041 ], [ -81.976770883999961, 28.941662185000041 ], [ -81.976746944999945, 28.94161770900007 ], [ -81.976696401999959, 28.941553331000023 ], [ -81.97660994599994, 28.941438625000046 ], [ -81.976542110999958, 28.941350839000052 ], [ -81.976508860999957, 28.941305191000026 ], [ -81.976480926999955, 28.941275928000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978749855, 28.941881251000041 ], [ -81.978755214999978, 28.94199013900004 ], [ -81.97875331399996, 28.942510900000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976504313999953, 28.942889083000068 ], [ -81.97659899699994, 28.942804389000059 ], [ -81.976838525999938, 28.942613668000035 ], [ -81.976871793999976, 28.942584416000045 ], [ -81.976895746999958, 28.942562184000053 ], [ -81.976923693999936, 28.942536442000062 ], [ -81.976951638999935, 28.942511870000033 ], [ -81.976970269999981, 28.942494318000058 ], [ -81.976991562999956, 28.942472086000066 ], [ -81.977015515999938, 28.942449854000074 ], [ -81.977035477999948, 28.942425280000066 ], [ -81.977059433999955, 28.942398368000056 ], [ -81.977079395999965, 28.942374964000066 ], [ -81.977103350999982, 28.94234337000006 ], [ -81.977127307999979, 28.942308263000029 ], [ -81.977148603999979, 28.942270817000065 ], [ -81.977167237999936, 28.942238051000061 ], [ -81.977189864999957, 28.942200605000039 ], [ -81.977205838999964, 28.942158476000031 ], [ -81.977223144999982, 28.942116346000034 ], [ -81.977235128999951, 28.942075389000024 ], [ -81.977243118, 28.942042620000052 ], [ -81.977248444999987, 28.942020385000035 ], [ -81.977252441999951, 28.941995809000048 ], [ -81.977256436999937, 28.941972404000069 ], [ -81.977259104999973, 28.941946656000027 ], [ -81.977263101999938, 28.94191973900007 ], [ -81.977263107999988, 28.941892823000046 ], [ -81.97726178399995, 28.941865905000043 ], [ -81.977261789999943, 28.941841328000066 ], [ -81.977261793999958, 28.941820262000078 ], [ -81.977260466999951, 28.941795685000045 ], [ -81.977260471999955, 28.941774619000057 ], [ -81.977256487999966, 28.941740680000066 ], [ -81.977249842999981, 28.941707909000058 ], [ -81.977240538, 28.941673968000032 ], [ -81.977225912999984, 28.941624812000043 ], [ -81.977217935999988, 28.941599063000069 ], [ -81.977208627999971, 28.941574485000046 ], [ -81.977199318999965, 28.941554588000031 ], [ -81.977190010999948, 28.941533520000064 ], [ -81.977178041999935, 28.941506601000071 ], [ -81.977166072999978, 28.941483193000067 ], [ -81.977150111999947, 28.941457443000047 ], [ -81.977123512999981, 28.941414137000038 ], [ -81.977102232999982, 28.94138487400005 ], [ -81.977017107999984, 28.941267829000026 ], [ -81.976763993999953, 28.940940493000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974617507999938, 28.94402076800003 ], [ -81.974704817999964, 28.944011475000025 ], [ -81.974737889999972, 28.944004500000062 ], [ -81.974780223999971, 28.943996364000043 ], [ -81.974814617999982, 28.943988225000055 ], [ -81.974854306999987, 28.943977760000053 ], [ -81.974884733999943, 28.943969621000065 ], [ -81.974915160999956, 28.943961481000031 ], [ -81.974945587999969, 28.943952179000064 ], [ -81.974977338999963, 28.943942876000051 ], [ -81.975015701999951, 28.943932410000059 ], [ -81.975058037999986, 28.943917292000037 ], [ -81.975093755999978, 28.943905662000077 ], [ -81.975128151999968, 28.94389287000007 ], [ -81.975182393999944, 28.943868444000032 ], [ -81.975251187999959, 28.943839368000056 ], [ -81.975522401999967, 28.94369978800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972426208999934, 28.943053492000047 ], [ -81.972465521999936, 28.943028979000076 ], [ -81.97249859599998, 28.943011530000035 ], [ -81.972529024999972, 28.942995247000056 ], [ -81.972571362999986, 28.942973148000078 ], [ -81.972612375999972, 28.942949885000075 ], [ -81.972660003999977, 28.942924295000068 ], [ -81.972708956999952, 28.942891726000028 ], [ -81.972759233999966, 28.942854501000056 ], [ -81.97323025999998, 28.942454325000028 ], [ -81.973353304999989, 28.94234448900005 ], [ -81.973397870999975, 28.942274590000068 ], [ -81.973453187999951, 28.942135799000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976189166999973, 28.948968580000042 ], [ -81.976177346999975, 28.948932164000041 ], [ -81.976160800999935, 28.948872860000051 ], [ -81.976039070999946, 28.948439002000043 ], [ -81.976020157999983, 28.948378658000024 ], [ -81.976010704999965, 28.948337041000059 ], [ -81.976002432999962, 28.948306869000078 ], [ -81.975991796999949, 28.948269414000038 ], [ -81.975981158999957, 28.948229878000063 ], [ -81.97597406899996, 28.948202827000046 ], [ -81.975974073999964, 28.948180978000039 ], [ -81.975976443999969, 28.948164333000079 ], [ -81.975981176999937, 28.948152891000063 ], [ -81.975988278999978, 28.948137286000076 ], [ -81.976001292999968, 28.948121683000068 ], [ -81.976021403999937, 28.948107121000078 ], [ -81.976054525999984, 28.948092562000056 ], [ -81.976137327999936, 28.948070728000062 ], [ -81.976274540999952, 28.948040582000033 ], [ -81.976597464999941, 28.947970934000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976597464999941, 28.947970934000068 ], [ -81.976838567999948, 28.948828243000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976838567999948, 28.948828243000037 ], [ -81.977193430999989, 28.948753396000029 ], [ -81.977259672999935, 28.948739882000041 ], [ -81.977317632999984, 28.948726367000063 ], [ -81.977509258999987, 28.948680624000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977244484999972, 28.947829429000024 ], [ -81.977329405999967, 28.948097651000069 ], [ -81.977509258999987, 28.948680624000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977509258999987, 28.948680624000076 ], [ -81.977571952999938, 28.948663987000032 ], [ -81.977609804999986, 28.94865358900006 ], [ -81.977654754999946, 28.948641114000054 ], [ -81.977707985999984, 28.948623435000059 ], [ -81.977763581999966, 28.94860471800007 ], [ -81.977822726999989, 28.948583920000033 ], [ -81.977881872999944, 28.94856208300007 ], [ -81.977946933999988, 28.948539205000031 ], [ -81.978011993999985, 28.948512166000057 ], [ -81.978088883999988, 28.948480968000069 ], [ -81.978175237999949, 28.948440407000078 ], [ -81.978237933999935, 28.948410246000037 ], [ -81.978350312999964, 28.948350963000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978350312999964, 28.948350963000053 ], [ -81.97837988699996, 28.948335363000069 ], [ -81.978411826999945, 28.948318721000078 ], [ -81.978448498999967, 28.948298961000035 ], [ -81.978499365999937, 28.948266717000024 ], [ -81.978550232999964, 28.948235514000032 ], [ -81.978586904999986, 28.948212631000047 ], [ -81.978624760999935, 28.948188709000078 ], [ -81.978676810999957, 28.948152304000075 ], [ -81.978734777999989, 28.948111739000069 ], [ -81.97878919599998, 28.948072214000035 ], [ -81.978857809999965, 28.948019165000062 ], [ -81.979123398999945, 28.947800751000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976992199999984, 28.951963742000032 ], [ -81.977168104999976, 28.951963772000056 ], [ -81.977339380999979, 28.951963801000034 ], [ -81.977496770999949, 28.951963828000032 ], [ -81.97758472299995, 28.951961808000078 ], [ -81.977651849999972, 28.951935353000067 ], [ -81.977698147999945, 28.951904825000042 ], [ -81.977737504999936, 28.951858010000024 ], [ -81.977756032999935, 28.951798976000077 ], [ -81.977758374999951, 28.951670725000042 ], [ -81.977756093999972, 28.951513974000079 ], [ -81.977751502999979, 28.951340935000076 ], [ -81.977730701999974, 28.951196395000068 ], [ -81.977712206999968, 28.951100713000073 ], [ -81.977677515999972, 28.950970420000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97254738099997, 28.95087780800003 ], [ -81.97254544599997, 28.951473729000043 ], [ -81.97254202299996, 28.95195913200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971821657999953, 28.950887887000079 ], [ -81.971819184999958, 28.951013031000059 ], [ -81.971819080999978, 28.951397967000048 ], [ -81.97182264099996, 28.951957097000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97110861799996, 28.950867322000079 ], [ -81.971101942999951, 28.951316945000031 ], [ -81.971101877999956, 28.951549847000024 ], [ -81.971102346999942, 28.95195691300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969578018999982, 28.950839377000079 ], [ -81.969577572999981, 28.951000959000055 ], [ -81.969588741999985, 28.95117859800007 ], [ -81.969622345999937, 28.951372690000028 ], [ -81.969644725999956, 28.951579938000066 ], [ -81.969663354999966, 28.951823371000046 ], [ -81.969671099999971, 28.952005631000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979216733999976, 28.951346648000026 ], [ -81.979237985999987, 28.951707187000068 ], [ -81.979242672999987, 28.951971858000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978247726999939, 28.949314698000023 ], [ -81.978437625999959, 28.949250001000053 ], [ -81.978620084999989, 28.949170837000054 ], [ -81.978812021999943, 28.94907917200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978812021999943, 28.94907917200004 ], [ -81.978883112999938, 28.949037501000078 ], [ -81.979020553999987, 28.948952079000037 ], [ -81.979155623999986, 28.948868738000044 ], [ -81.979264627999953, 28.948804150000058 ], [ -81.979338083999949, 28.948779154000079 ], [ -81.979403329999968, 28.948778005000065 ], [ -81.979458919999956, 28.94878542400005 ], [ -81.979503933, 28.948812524000061 ], [ -81.979567895999935, 28.948860466000042 ], [ -81.979721879999943, 28.948987614000032 ], [ -81.979954041999974, 28.949177295000027 ], [ -81.980089074999967, 28.949287768000033 ], [ -81.980245430999958, 28.949410749000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039389245999985, 28.890210629000023 ], [ -82.038883909999981, 28.89020455900004 ], [ -82.03855293099997, 28.890183342000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039389202999985, 28.890095539000072 ], [ -82.039389245999985, 28.890210629000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040364358999966, 28.890109460000076 ], [ -82.040026927999975, 28.890102456000079 ], [ -82.039477997999938, 28.890091250000069 ], [ -82.039389202999985, 28.890095539000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039382554999975, 28.889589714000067 ], [ -82.039389202999985, 28.890095539000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039391911999985, 28.888718721000032 ], [ -82.039382231, 28.88873009100007 ], [ -82.039375778999954, 28.888745723000056 ], [ -82.039382362999959, 28.889079624000033 ], [ -82.039382554999975, 28.889589714000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039382554999975, 28.889589714000067 ], [ -82.037099677999947, 28.889581836000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03382070899994, 28.926593228000058 ], [ -82.033835515999954, 28.926666503000035 ], [ -82.033943354999963, 28.927026169000044 ], [ -82.034001512999964, 28.927406425000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015947232999963, 28.927254033000054 ], [ -82.015796315999978, 28.927250087000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978613358999951, 28.894324547000053 ], [ -81.978696799999966, 28.894351081000025 ], [ -81.978865078999945, 28.89438718200006 ], [ -81.978970795999942, 28.894402389000049 ], [ -81.979051929999969, 28.894412937000027 ], [ -81.979052148999983, 28.894412966000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978653599999973, 28.89421782900007 ], [ -81.978619156999969, 28.894208666000054 ], [ -81.978527198999984, 28.894179459000043 ], [ -81.978373483999974, 28.894134340000051 ], [ -81.978249425999934, 28.894136693000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979645214999948, 28.887855527000056 ], [ -81.979645222999977, 28.887851967000074 ], [ -81.979647514999954, 28.887164638000058 ], [ -81.979648920999978, 28.886839190000046 ], [ -81.979662465999979, 28.88652828000005 ], [ -81.979692187999945, 28.886229238000055 ], [ -81.97974617999995, 28.885932574000037 ], [ -81.979810954999948, 28.885647778000077 ], [ -81.979891904999988, 28.885389091000036 ], [ -81.979943172999981, 28.885234829000069 ], [ -81.979997132999983, 28.885094808000076 ], [ -81.980105047999984, 28.884838499000068 ], [ -81.980264209999973, 28.88452998200006 ], [ -81.980509345999963, 28.884119721000047 ], [ -81.980785819999937, 28.883745953000073 ], [ -81.98079205099998, 28.883738513000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981926862999956, 28.895087428000068 ], [ -81.981758382999942, 28.895011087000057 ], [ -81.981572559999961, 28.894926019000025 ], [ -81.981213299999979, 28.894777691000058 ], [ -81.980834224999967, 28.894603192000034 ], [ -81.980564159999972, 28.894511569000031 ], [ -81.980435406999959, 28.894475082000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974854721999975, 28.953411346000053 ], [ -81.973239034999949, 28.95340746100004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973239034999949, 28.95340746100004 ], [ -81.973018587999945, 28.953407417000051 ], [ -81.972726202, 28.953413481000041 ], [ -81.972635697999976, 28.95342774900007 ], [ -81.972561437999957, 28.953446104000079 ], [ -81.972480211999937, 28.95347466000004 ], [ -81.97240826999996, 28.953503218000037 ], [ -81.972333998999943, 28.953552186000024 ], [ -81.971667031999971, 28.95406510600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999969775999944, 28.954732756000055 ], [ -81.999971923999965, 28.954623179000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999969775999944, 28.953963821000059 ], [ -81.999968831, 28.953855151000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999969775999944, 28.953963821000059 ], [ -82.000165249999952, 28.953961932000027 ], [ -82.000468127999966, 28.953960042000062 ], [ -82.000566937999963, 28.953961931000038 ], [ -82.000614195999958, 28.953960041000073 ], [ -82.000642120999942, 28.953946816000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001164926999934, 28.917640100000028 ], [ -82.000942061999979, 28.917632258000026 ], [ -82.000806113999943, 28.917636182000024 ], [ -82.000679080999987, 28.917640103000053 ], [ -82.00050079, 28.917659713000035 ], [ -82.00038834999998, 28.917672080000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013959290999935, 28.891432243000054 ], [ -82.013946496999949, 28.891994434000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106663911999988, 28.656785543000069 ], [ -82.106663612999967, 28.656490366000071 ], [ -82.106665599999985, 28.656398694000075 ], [ -82.10666963999995, 28.656283187000042 ], [ -82.106661243999952, 28.656202524000037 ], [ -82.106609990999971, 28.656122313000026 ], [ -82.106553427999984, 28.656073883000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107551456999943, 28.656795840000029 ], [ -82.107279166999945, 28.656794223000077 ], [ -82.106663911999988, 28.656785543000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108489949999978, 28.656847361000075 ], [ -82.107551456999943, 28.656795840000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108484462999968, 28.657617264000066 ], [ -82.107552278999947, 28.657600701000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107552278999947, 28.657600701000035 ], [ -82.107551456999943, 28.656795840000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107552278999947, 28.657600701000035 ], [ -82.106660580999971, 28.657601407000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106660580999971, 28.657601407000072 ], [ -82.106663911999988, 28.656785543000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153543381999953, 28.658075541000073 ], [ -82.153536633999977, 28.657938533000049 ], [ -82.153525824999974, 28.657809758000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153509511999971, 28.665071001000058 ], [ -82.153523865999944, 28.662571340000056 ], [ -82.153528446999985, 28.661309974000062 ], [ -82.153531580999982, 28.660060205000036 ], [ -82.153543381999953, 28.658075541000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153509511999971, 28.665071001000058 ], [ -82.155054673999985, 28.665089513000055 ], [ -82.156817345999968, 28.665110809000055 ], [ -82.157574393999937, 28.665113426000062 ], [ -82.158010349999984, 28.665088448000063 ], [ -82.158392821999939, 28.665079261000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149153896999962, 28.665035565000039 ], [ -82.150475745999984, 28.66503235600004 ], [ -82.15119911499994, 28.665042037000035 ], [ -82.15152971599997, 28.665051992000031 ], [ -82.151916534999941, 28.665051723000033 ], [ -82.153328822999981, 28.665060892000042 ], [ -82.153509511999971, 28.665071001000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.151044345999935, 28.668689957000026 ], [ -82.152217675999964, 28.668710417000057 ], [ -82.15350144699994, 28.668728449000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.15350144699994, 28.668728449000071 ], [ -82.153500518999977, 28.667644043000053 ], [ -82.153502209999942, 28.665404515000034 ], [ -82.153509511999971, 28.665071001000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979745402999981, 28.94986915800007 ], [ -81.979778578999969, 28.949842072000024 ], [ -81.979825974999983, 28.949800397000047 ], [ -81.979887590999965, 28.949742055000058 ], [ -81.979963425999983, 28.949669125000071 ], [ -81.980072437, 28.949564940000073 ], [ -81.980245430999958, 28.949410749000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979006830999936, 28.950567091000039 ], [ -81.979069970999944, 28.950638059000028 ], [ -81.979100762999963, 28.950692248000053 ], [ -81.979122070999949, 28.950769360000038 ], [ -81.979159933999938, 28.951009028000044 ], [ -81.979195429999947, 28.951232023000046 ], [ -81.979216733999976, 28.951346648000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982169043999988, 28.950867260000052 ], [ -81.981985707999968, 28.95101825200004 ], [ -81.981813897999984, 28.951184951000073 ], [ -81.981692444999965, 28.951291739000055 ], [ -81.981568028999959, 28.951414159000024 ], [ -81.981419915999936, 28.951544390000038 ], [ -81.981304386999966, 28.951651180000056 ], [ -81.98117997199995, 28.951765784000031 ], [ -81.981111835999968, 28.951846530000068 ], [ -81.981049623, 28.951932488000068 ], [ -81.981012551999981, 28.952052655000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972505592999937, 28.944188525000072 ], [ -81.972524483999962, 28.944423607000033 ], [ -81.972541486999944, 28.944637014000079 ], [ -81.972562277999941, 28.944860426000048 ], [ -81.97258495799997, 28.945105511000065 ], [ -81.972600056999966, 28.945348928000044 ], [ -81.972634099999937, 28.945635696000068 ], [ -81.972653016999971, 28.94577741300003 ], [ -81.972671946999981, 28.945869114000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973847576999958, 28.946253156000068 ], [ -81.973763616999975, 28.946284469000034 ], [ -81.973657460999959, 28.946324461000074 ], [ -81.973568369999953, 28.946342783000034 ], [ -81.973471700999937, 28.946347765000041 ], [ -81.973363656999936, 28.946366083000044 ], [ -81.973244234999981, 28.946396070000048 ], [ -81.973113435999949, 28.946442726000043 ], [ -81.972997803999988, 28.946487717000025 ], [ -81.972876477999989, 28.946551047000071 ], [ -81.972779792999972, 28.946611047000033 ], [ -81.972688793999964, 28.946681052000031 ], [ -81.972612956999967, 28.946751059000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972612956999967, 28.946751059000064 ], [ -81.972529531999953, 28.946842739000033 ], [ -81.972379737999972, 28.947041108000064 ], [ -81.972296301999961, 28.947174468000071 ], [ -81.972197697999945, 28.947332834000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971913771999937, 28.945863957000029 ], [ -81.971870143, 28.945992322000052 ], [ -81.971839792999958, 28.946077345000049 ], [ -81.971809452999935, 28.946122353000078 ], [ -81.971733605999987, 28.946230707000041 ], [ -81.971612249999964, 28.946405738000067 ], [ -81.97148330999994, 28.946582437000075 ], [ -81.97136764399994, 28.946742465000057 ], [ -81.971272835999969, 28.946872487000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971792906999951, 28.944228391000024 ], [ -81.971815571999969, 28.944525160000069 ], [ -81.971838219999938, 28.944881949000035 ], [ -81.971862788999942, 28.945148710000069 ], [ -81.971885467999982, 28.945392128000037 ], [ -81.971908148999944, 28.945632212000078 ], [ -81.971915683999953, 28.945807271000035 ], [ -81.971913771999937, 28.945863957000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97179878999998, 28.943506487000036 ], [ -81.971781692999969, 28.943649864000065 ], [ -81.971768376999989, 28.943824919000065 ], [ -81.971762654999964, 28.943954960000042 ], [ -81.971775879999939, 28.944115016000069 ], [ -81.971792906999951, 28.944228391000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968425044999947, 28.947288016000073 ], [ -81.968417684999963, 28.947480688000041 ], [ -81.968390854999939, 28.947669075000078 ], [ -81.968368905999967, 28.947812505000059 ], [ -81.968368856999973, 28.947975208000059 ], [ -81.96834688399997, 28.948193567000033 ], [ -81.968307891999984, 28.948356261000072 ], [ -81.968225067999981, 28.948585310000055 ], [ -81.968203138999968, 28.948662374000037 ], [ -81.968190944999947, 28.948741583000071 ], [ -81.968195789999982, 28.948814372000072 ], [ -81.968212801999982, 28.948900009000056 ], [ -81.968253017999984, 28.949039938000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967736244999969, 28.947289993000027 ], [ -81.967709451999951, 28.947356353000032 ], [ -81.96767289099995, 28.947521187000063 ], [ -81.967646069999944, 28.947677461000069 ], [ -81.967628973999979, 28.947863709000046 ], [ -81.967626496999969, 28.948005003000048 ], [ -81.967621591999944, 28.948124888000052 ], [ -81.967589910999948, 28.948251189000075 ], [ -81.967531443999974, 28.948420301000056 ], [ -81.967487587999983, 28.948561584000061 ], [ -81.96742667999996, 28.948749963000068 ], [ -81.967380393999974, 28.948882683000079 ], [ -81.967343844999959, 28.949008983000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967343844999959, 28.949008983000056 ], [ -81.967202685999951, 28.948976837000032 ], [ -81.966891164999936, 28.948897549000037 ], [ -81.966530970999941, 28.948801123000067 ], [ -81.966136716999983, 28.948661870000024 ], [ -81.965854418999982, 28.94853549100003 ], [ -81.965732740999954, 28.94847551600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967821626999978, 28.946664891000069 ], [ -81.967816703999972, 28.946838298000046 ], [ -81.967804494999939, 28.946964604000073 ], [ -81.967765492999945, 28.947161550000033 ], [ -81.967736244999969, 28.947289993000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96708171399996, 28.946679698000025 ], [ -81.96723018199998, 28.946679735000032 ], [ -81.967458970999985, 28.946675509000045 ], [ -81.967821626999978, 28.946664891000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966358840999987, 28.946694506000028 ], [ -81.966500007999969, 28.946692400000074 ], [ -81.966677684999979, 28.946683880000023 ], [ -81.96708171399996, 28.946679698000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966358840999987, 28.946694506000028 ], [ -81.96632225899998, 28.946919283000057 ], [ -81.966285693999964, 28.947092681000072 ], [ -81.966239399999949, 28.947246809000035 ], [ -81.96620042099994, 28.947360263000064 ], [ -81.966151691999983, 28.947516531000076 ], [ -81.966085909999947, 28.947722035000027 ], [ -81.966010395999945, 28.947908268000049 ], [ -81.965949501999944, 28.948047406000057 ], [ -81.965878868999937, 28.948197246000063 ], [ -81.965808242999969, 28.94832567800006 ], [ -81.965732740999954, 28.94847551600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965726070999949, 28.946557332000054 ], [ -81.965833151999959, 28.946591614000056 ], [ -81.965930497999977, 28.946621610000079 ], [ -81.966064349999954, 28.946660178000059 ], [ -81.966173865999963, 28.946688037000058 ], [ -81.966242012999942, 28.946694476000062 ], [ -81.966358840999987, 28.946694506000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964581775999989, 28.947623169000053 ], [ -81.964581792999979, 28.947573929000043 ], [ -81.964596418999975, 28.947505428000056 ], [ -81.964625647999981, 28.947441210000079 ], [ -81.964664622999976, 28.947349165000048 ], [ -81.964693857999976, 28.947261398000023 ], [ -81.964757198999962, 28.947090150000065 ], [ -81.964818097999967, 28.946933884000032 ], [ -81.964871693999953, 28.946792603000063 ], [ -81.964932596999972, 28.946625635000032 ], [ -81.964966703999949, 28.946529307000048 ], [ -81.964995924999982, 28.94648649800007 ], [ -81.965034880999951, 28.946445833000041 ], [ -81.965100607999943, 28.946411595000029 ], [ -81.965185796999947, 28.946403054000029 ], [ -81.965283146, 28.946420206000028 ], [ -81.965395094999963, 28.946454488000029 ], [ -81.965504608999936, 28.946486629000049 ], [ -81.965726070999949, 28.946557332000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965065978999974, 28.948062165000067 ], [ -81.964730184999951, 28.947798756000054 ], [ -81.964671788999965, 28.94774736100004 ], [ -81.964625557999966, 28.947704532000046 ], [ -81.964593930999968, 28.947663847000058 ], [ -81.964581775999989, 28.947623169000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965732740999954, 28.94847551600003 ], [ -81.965567262999969, 28.948385560000077 ], [ -81.965316614999949, 28.948239919000059 ], [ -81.965185212999984, 28.948152110000024 ], [ -81.965065978999974, 28.948062165000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965726070999949, 28.946557332000054 ], [ -81.965611586999955, 28.946831330000066 ], [ -81.965509269999984, 28.947109612000077 ], [ -81.965409388999944, 28.947385753000049 ], [ -81.965307077999967, 28.947644767000043 ], [ -81.965224255999942, 28.947850265000056 ], [ -81.965173110999956, 28.947944448000044 ], [ -81.965119544999936, 28.948004377000075 ], [ -81.965065978999974, 28.948062165000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996250531999976, 28.945722199000045 ], [ -81.996036021999942, 28.945854268000062 ], [ -81.99590374099995, 28.945926589000067 ], [ -81.995792910999967, 28.945989479000048 ], [ -81.995682083999952, 28.946024066000064 ], [ -81.995596279999972, 28.94603349700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996053053999958, 28.942797597000038 ], [ -81.99641891899995, 28.942792977000067 ], [ -81.996884147999936, 28.942793856000037 ], [ -81.997380960999976, 28.942793866000045 ], [ -81.997805390999986, 28.942793874000074 ], [ -81.99820086699998, 28.942797642000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996053053999958, 28.942797597000038 ], [ -81.996045143999936, 28.943154148000076 ], [ -81.996045138999989, 28.943293064000045 ], [ -81.996045135999964, 28.943376414000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999622210999974, 28.943781643000079 ], [ -81.999406375999968, 28.943793219000042 ], [ -81.999256341999967, 28.943811740000058 ], [ -81.999095780999937, 28.943825631000038 ], [ -81.998953644999972, 28.943839522000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999622210999974, 28.943781643000079 ], [ -81.999672221999958, 28.944133565000072 ], [ -81.999735391999934, 28.944478540000034 ], [ -81.999819620999972, 28.944865189000041 ], [ -81.999885425999935, 28.945129130000055 ], [ -81.999872264999965, 28.945198588000039 ], [ -81.999838045, 28.945237948000056 ], [ -81.999785474999953, 28.945257481000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011586200999943, 28.950624381000068 ], [ -82.011540099999934, 28.950701835000075 ], [ -82.011522318999937, 28.950734151000063 ], [ -82.011505319999969, 28.950767155000051 ], [ -82.011488908999979, 28.950799815000039 ], [ -82.011473081999952, 28.950833164000073 ], [ -82.011458039, 28.950866511000072 ], [ -82.011434202999965, 28.950923235000062 ], [ -82.011420917999942, 28.95095727000006 ], [ -82.011408217999985, 28.95099164800007 ], [ -82.011396300999934, 28.951026027000069 ], [ -82.011384969999938, 28.951060405000078 ], [ -82.011374420999971, 28.951095128000077 ], [ -82.011364457999946, 28.951130194000029 ], [ -82.011355274999971, 28.951165259000049 ], [ -82.011346876999937, 28.951200669000059 ], [ -82.011339063999969, 28.951235734000079 ], [ -82.011331835999954, 28.951271488000032 ], [ -82.011325586999988, 28.951306898000041 ], [ -82.011319922999974, 28.951342651000061 ], [ -82.011314845999948, 28.951378404000025 ], [ -82.011310549999962, 28.951414157000045 ], [ -82.011307036999938, 28.951449910000065 ], [ -82.01130410899998, 28.951486007000028 ], [ -82.011301963999983, 28.951521760000048 ], [ -82.011300597999934, 28.951557856000079 ], [ -82.011299821999955, 28.951594983000064 ], [ -82.011299810999958, 28.951729495000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992392577999965, 28.954400636000059 ], [ -81.992465716999959, 28.954424032000077 ], [ -81.992568778999953, 28.954432810000071 ], [ -81.992784879999988, 28.954432822000058 ], [ -81.993010955999978, 28.954432834000045 ], [ -81.993270275999976, 28.954432847000078 ], [ -81.993532921999986, 28.954432860000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994348087999981, 28.955054848000032 ], [ -81.994651626999939, 28.955052814000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993680497999947, 28.955052480000063 ], [ -81.993686823999951, 28.955456704000028 ], [ -81.993685780999954, 28.955656009000052 ], [ -81.99368310899996, 28.955847827000071 ], [ -81.993685759999948, 28.956002219000027 ], [ -81.993686479999951, 28.956151784000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993020888, 28.955057126000042 ], [ -81.993020848999947, 28.955641940000078 ], [ -81.993026134, 28.956154239000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987296805999961, 28.953232952000064 ], [ -81.987393031999943, 28.953166286000055 ], [ -81.987538830999938, 28.953050899000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012527023999951, 28.939852174000066 ], [ -82.012527027999965, 28.939880707000043 ], [ -82.012527078999938, 28.940308364000032 ], [ -82.012523280999972, 28.941224527000031 ], [ -82.012518762999946, 28.941587520000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000983046999977, 28.959229031000064 ], [ -82.001105969999969, 28.959078332000047 ], [ -82.001171154999952, 28.958937462000051 ], [ -82.001199089999943, 28.958832629000028 ], [ -82.001193502999968, 28.958717966000052 ], [ -82.001178600999935, 28.958636065000064 ], [ -82.001130175999947, 28.958495197000047 ], [ -82.001066849999972, 28.958293721000075 ], [ -82.001001661999965, 28.958100435000063 ], [ -82.000949510999988, 28.957938272000035 ], [ -82.000891772999978, 28.957769555000027 ], [ -82.000813716999971, 28.957500478000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960807938999949, 28.935301491000075 ], [ -81.961070825999968, 28.934856234000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966349822999973, 28.92522378700005 ], [ -81.966694951999955, 28.925006042000064 ], [ -81.966929428999947, 28.924857789000043 ], [ -81.967263437999975, 28.924639425000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033075290999989, 28.927399933000061 ], [ -82.032485949999966, 28.927396318000035 ], [ -82.031561401999966, 28.927394437000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03636543999994, 28.926603365000062 ], [ -82.03637047999996, 28.927407936000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036374691999981, 28.925785395000048 ], [ -82.036370013999942, 28.926071232000027 ], [ -82.036365304999947, 28.926270898000041 ], [ -82.03636543999994, 28.926603365000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021028805999947, 28.921532470000045 ], [ -82.021021538999946, 28.921633460000066 ], [ -82.021025202999965, 28.921739255000034 ], [ -82.021039796999958, 28.921819403000029 ], [ -82.021067139999957, 28.921888325000054 ], [ -82.021094481999967, 28.921954045000064 ], [ -82.021140048999939, 28.922034187000065 ], [ -82.021175315999983, 28.922077198000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021175315999983, 28.922077198000068 ], [ -82.021197183999959, 28.922099637000031 ], [ -82.021279187999937, 28.922171759000037 ], [ -82.021383055999934, 28.922245478000036 ], [ -82.021497858999965, 28.922320801000069 ], [ -82.021596257999988, 28.922383302000071 ], [ -82.021672793999983, 28.922436187000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021672793999983, 28.922436187000073 ], [ -82.021762083999988, 28.922497087000067 ], [ -82.021890566999957, 28.922580968000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021741829999939, 28.921479196000064 ], [ -82.021847549999961, 28.921695582000041 ], [ -82.021887643999946, 28.921745267000063 ], [ -82.021966004999967, 28.92182219700004 ], [ -82.022033430999954, 28.921876688000054 ], [ -82.02210996499997, 28.921927971000059 ], [ -82.022312234999958, 28.922069 ], [ -82.02262587499996, 28.922271163000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023232598999982, 28.922679810000034 ], [ -82.023433473999944, 28.922814880000033 ], [ -82.023798294999949, 28.923065773000076 ], [ -82.023868646999972, 28.923137266000026 ], [ -82.023890937999965, 28.923220456000024 ], [ -82.023892221999972, 28.92347133800007 ], [ -82.023884977999955, 28.923665299000049 ], [ -82.023874052999986, 28.923698965000028 ], [ -82.023855841999989, 28.923734233000062 ], [ -82.023824874999946, 28.923767901000076 ], [ -82.023775685999965, 28.923795161000044 ], [ -82.023741069999971, 28.923803183000075 ], [ -82.023697341999934, 28.923804792000055 ], [ -82.023448544999951, 28.923801861000072 ], [ -82.022837408999976, 28.923800591000031 ], [ -82.022409173999961, 28.923800203000042 ], [ -82.022349041999973, 28.923782581000069 ], [ -82.022303487999977, 28.923758543000076 ], [ -82.022276148999936, 28.923728092000033 ], [ -82.022256098999947, 28.923686417000056 ], [ -82.02224870799995, 28.923647364000033 ], [ -82.022244932999968, 28.923357562000035 ], [ -82.022246625999969, 28.923046444000079 ], [ -82.022254024999938, 28.922925777000046 ], [ -82.022274322999976, 28.922829515000046 ], [ -82.022315133999939, 28.92272362600005 ], [ -82.022372546999975, 28.922598482000069 ], [ -82.02245574899996, 28.922472990000074 ], [ -82.022566886999982, 28.922339241000032 ], [ -82.02262587499996, 28.922271163000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956777129999978, 28.951840351000044 ], [ -81.956114124999942, 28.952363134000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009019317999957, 28.91780435000004 ], [ -82.00900156199998, 28.916872630000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007625290999954, 28.916443422000043 ], [ -82.007625270999938, 28.916164276000075 ], [ -82.007625263999955, 28.916065955000079 ], [ -82.007626426999934, 28.916019885000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009826682999972, 28.910760985000024 ], [ -82.009635823999986, 28.910767532000079 ], [ -82.009417671999984, 28.910803565000037 ], [ -82.009326865999981, 28.910814838000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009326865999981, 28.910814838000078 ], [ -82.009328019999941, 28.910706255000036 ], [ -82.00932801099998, 28.910609964000059 ], [ -82.009329162999961, 28.910470650000036 ], [ -82.009331475999943, 28.910310848000051 ], [ -82.009331466999981, 28.910207386000025 ], [ -82.00932897499996, 28.910146733000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001376430999983, 28.915891181000063 ], [ -82.001410423999971, 28.915985720000037 ], [ -82.001432364999971, 28.916068800000062 ], [ -82.001450557999988, 28.91619204400007 ], [ -82.001450558999977, 28.916296080000052 ], [ -82.001445202999946, 28.916382782000028 ], [ -82.001456731999951, 28.916497259000039 ], [ -82.001468259999967, 28.916588705000038 ], [ -82.001479786999937, 28.916647147000049 ], [ -82.001488578999954, 28.916698025000073 ], [ -82.001488578999954, 28.916738934000023 ], [ -82.001477052999974, 28.916789814000026 ], [ -82.001453805999972, 28.916827973000068 ], [ -82.001412363999975, 28.916867488000037 ], [ -82.001366885999971, 28.916891497000051 ], [ -82.001301395999974, 28.916915506000066 ], [ -82.001228682999965, 28.916937950000033 ], [ -82.00114444999997, 28.916955796000025 ], [ -82.001068782999937, 28.916965076000054 ], [ -82.001016672999981, 28.916970073000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998474158999954, 28.913220412000044 ], [ -81.998440073999973, 28.913212250000072 ], [ -81.998391939999976, 28.913191544000028 ], [ -81.998344875999976, 28.913166132000072 ], [ -81.998295672999973, 28.913136956000073 ], [ -81.99823149499997, 28.913084251000043 ], [ -81.99813736599998, 28.912992958000075 ], [ -81.997942695999939, 28.912792489000026 ], [ -81.997813272999963, 28.912651314000072 ], [ -81.997678501999985, 28.912495081000031 ], [ -81.997447467999962, 28.912212730000078 ], [ -81.997381151999946, 28.912128026000062 ], [ -81.99723354799994, 28.911923792000039 ], [ -81.996999307999943, 28.911571798000068 ], [ -81.996814271999938, 28.911285683000074 ], [ -81.996737261999954, 28.911190623000039 ], [ -81.996504093999988, 28.91090545000003 ], [ -81.99625488199996, 28.91064097900005 ], [ -81.996101930999941, 28.910502625000049 ], [ -81.995890152999948, 28.910320976000037 ], [ -81.995658053999989, 28.910149679000028 ], [ -81.995421676999968, 28.909985910000046 ], [ -81.995166046999941, 28.909837199000037 ], [ -81.99491362599997, 28.909704370000043 ], [ -81.994703719999961, 28.909605541000076 ], [ -81.994543548999957, 28.909536948000039 ], [ -81.994484722999971, 28.90951059300005 ], [ -81.994432312999947, 28.909481415000073 ], [ -81.994384181999976, 28.909445649000077 ], [ -81.994326924999939, 28.909392073000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99969486599997, 28.917575288000023 ], [ -81.999668763999978, 28.917511065000042 ], [ -81.999649960999989, 28.917446729000062 ], [ -81.999645782999949, 28.917380554000033 ], [ -81.999660407999954, 28.917218793000075 ], [ -81.999687568999946, 28.917001888000073 ], [ -81.999706371999935, 28.916766600000074 ], [ -81.999716818999957, 28.916533150000078 ], [ -81.999716819999946, 28.916314405000037 ], [ -81.99970846399998, 28.916114044000039 ], [ -81.999695928999984, 28.915878756000041 ], [ -81.999672948999944, 28.915671040000063 ], [ -81.999647877999962, 28.915465163000079 ], [ -81.999610274999952, 28.915239066000026 ], [ -81.999568490999934, 28.915011130000039 ], [ -81.999518350999949, 28.914797901000043 ], [ -81.999447318999955, 28.914569966000045 ], [ -81.99937837899995, 28.91439717600008 ], [ -81.999282277999953, 28.914211518000059 ], [ -81.999207068999965, 28.914095712000062 ], [ -81.999131859999977, 28.913983581000025 ], [ -81.999021134999964, 28.913853070000073 ], [ -81.998904142999947, 28.913726233000034 ], [ -81.998858183999971, 28.913656383000045 ], [ -81.998827027999937, 28.913546232000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006875021999974, 28.90908108800005 ], [ -82.006820836999964, 28.909064206000039 ], [ -82.006718792999948, 28.909052979000023 ], [ -82.006223539999951, 28.909013862000052 ], [ -82.005894044999934, 28.908983884000065 ], [ -82.005723616999944, 28.908981392000044 ], [ -82.005510582999989, 28.908983900000067 ], [ -82.005049949999943, 28.908988773000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005049949999943, 28.908988773000033 ], [ -82.004361241999959, 28.908981639000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010112472999936, 28.923730393000028 ], [ -82.010163146999957, 28.923795231000042 ], [ -82.010232934999976, 28.923895646000062 ], [ -82.010264502999974, 28.923963402000027 ], [ -82.010280632999979, 28.924044451000043 ], [ -82.010284539999986, 28.924157943000068 ], [ -82.010287682999945, 28.924337051000066 ], [ -82.010287691999963, 28.924425058000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007260073999987, 28.923641787000065 ], [ -82.007355601999961, 28.923478832000058 ], [ -82.007435892999979, 28.923355069000024 ], [ -82.007527708999987, 28.923215489000029 ], [ -82.007594321999989, 28.923096883000028 ], [ -82.007633387999988, 28.922988591000035 ], [ -82.007672452999941, 28.922838702000035 ], [ -82.007701747999988, 28.922678501000064 ], [ -82.007717122999964, 28.922555320000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014726776999964, 28.907918120000033 ], [ -82.014599985999951, 28.907839198000033 ], [ -82.01455077199995, 28.907809342000064 ], [ -82.014496467999948, 28.907783965000078 ], [ -82.014447255999983, 28.907766053000046 ], [ -82.014394649999986, 28.907749634000027 ], [ -82.014348834999964, 28.907745160000047 ], [ -82.014287745, 28.907739194000044 ], [ -82.014207991999967, 28.907743682000046 ], [ -82.014118057999951, 28.90774966400005 ], [ -82.014028124999982, 28.907757138000079 ], [ -82.013951765999934, 28.907769091000034 ], [ -82.013878802999955, 28.907792989000029 ], [ -82.013819416999979, 28.907825843000069 ], [ -82.013778695999974, 28.907860190000065 ], [ -82.013734582999973, 28.907909467000025 ], [ -82.013707438999973, 28.907952770000065 ], [ -82.013683689999937, 28.908000553000079 ], [ -82.013670120999961, 28.908048333000067 ], [ -82.013663340999983, 28.908115525000028 ], [ -82.013670136999963, 28.908170770000027 ], [ -82.013698997999938, 28.908281258000045 ], [ -82.013809306999974, 28.908624343000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972174585999937, 28.942700848000072 ], [ -81.971941738999988, 28.942824081000026 ], [ -81.971884254999964, 28.942866293000066 ], [ -81.971859602999984, 28.94290630100005 ], [ -81.97184442799994, 28.94295298000003 ], [ -81.971831136999981, 28.943038006000052 ], [ -81.97182352599998, 28.943149707000032 ], [ -81.97180261799997, 28.943368109000062 ], [ -81.97179878999998, 28.943506487000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021408427999972, 28.914282671000024 ], [ -82.021417777999943, 28.91415144900003 ], [ -82.021423624999954, 28.914084412000079 ], [ -82.02141482199994, 28.914025285000037 ], [ -82.021382564999954, 28.913911843000051 ], [ -82.021327629999973, 28.913722671000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965978074999953, 28.924787224000056 ], [ -81.965652226999964, 28.924997956000027 ], [ -81.965461026999947, 28.925118710000049 ], [ -81.965268479999963, 28.925239464000072 ], [ -81.96494381499997, 28.92544665500003 ], [ -81.964583114999982, 28.925676310000028 ], [ -81.964332664999972, 28.925837315000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996401382999977, 28.924972847000049 ], [ -81.996343544999945, 28.92506078100007 ], [ -81.996274501999949, 28.925177157000064 ], [ -81.996201012999961, 28.925296687000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996201012999961, 28.925296687000071 ], [ -81.99616249099995, 28.925383454000041 ], [ -81.996091661999969, 28.925503698000057 ], [ -81.996055625999986, 28.925558355000078 ], [ -81.996018346999961, 28.925608639000075 ], [ -81.995972369999947, 28.92566329400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995972369999947, 28.92566329400006 ], [ -81.996122715999945, 28.925770427000032 ], [ -81.996184840999945, 28.925816343000065 ], [ -81.996243238999966, 28.925862256000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995972369999947, 28.92566329400006 ], [ -81.995912725999972, 28.925725603000046 ], [ -81.995818289999988, 28.925798841000073 ], [ -81.995711427999936, 28.925872078000054 ], [ -81.995649298999979, 28.925904870000068 ], [ -81.99558841399994, 28.925935478000042 ], [ -81.995527527999968, 28.925959524000064 ], [ -81.995470369999964, 28.925980292000077 ], [ -81.995303864999983, 28.926029479000078 ], [ -81.995112509999956, 28.92608412800007 ], [ -81.994946005999964, 28.926133315000072 ], [ -81.994798141, 28.926181407000058 ], [ -81.994706189999988, 28.92621857000006 ], [ -81.994609268999966, 28.926269945000058 ], [ -81.994501162999939, 28.926336622000065 ], [ -81.994430334999947, 28.92639018400007 ], [ -81.994370689999982, 28.926441559000068 ], [ -81.994313528999953, 28.926497308000023 ], [ -81.994276248999938, 28.926542125000026 ], [ -81.994236484999988, 28.926595688000077 ], [ -81.994190505999939, 28.926667834000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993943145999935, 28.928718400000037 ], [ -81.993944339999985, 28.929088055000079 ], [ -81.993944328999987, 28.929270611000049 ], [ -81.99394306399995, 28.92963353600004 ], [ -81.993943054999988, 28.92978985700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993943054999988, 28.92978985700006 ], [ -81.993954235999979, 28.929853260000073 ], [ -81.993977841999936, 28.929906825000046 ], [ -81.994010145999937, 28.929954925000061 ], [ -81.994047421999937, 28.929989907000049 ], [ -81.994074757999954, 28.930015051000055 ], [ -81.994107063999934, 28.930038009000043 ], [ -81.99413937099996, 28.930056594000064 ], [ -81.994175405999954, 28.93007190000003 ], [ -81.994211440999948, 28.930082833000029 ], [ -81.994244988999981, 28.930091579000077 ], [ -81.994278538999936, 28.930098139000052 ], [ -81.994334456999979, 28.930101421000074 ], [ -81.994410253999945, 28.930102517000023 ], [ -81.994535834999965, 28.930102079000051 ], [ -81.994607671999972, 28.930095249000033 ], [ -81.994687277999958, 28.930066215000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994190505999939, 28.926667834000057 ], [ -81.994476285999951, 28.926811049000037 ], [ -81.994804803999955, 28.926981842000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996201012999961, 28.925296687000071 ], [ -81.996010679999983, 28.92522086200006 ], [ -81.995869997999989, 28.925164818000042 ], [ -81.995546102999981, 28.924968185000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968721749999986, 28.92016678300007 ], [ -81.968720356999938, 28.920778821000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016285420999964, 28.905533782000077 ], [ -82.016193870999984, 28.905538599000067 ], [ -82.016081198999984, 28.905551833000061 ], [ -82.01596101399997, 28.905558456000051 ], [ -82.015859605999935, 28.905558468000038 ], [ -82.015765707999947, 28.905558479000035 ], [ -82.015683079999974, 28.905555184000036 ], [ -82.015574159999971, 28.905548588000045 ], [ -82.015499040999941, 28.905545290000077 ], [ -82.01542767899997, 28.905535385000064 ], [ -82.015350030999969, 28.90551993400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018898494999974, 28.902999960000045 ], [ -82.018697778999979, 28.902957356000059 ], [ -82.018630297999948, 28.902945186000068 ], [ -82.018543783999974, 28.902933018000056 ], [ -82.018457270999988, 28.902925417000063 ], [ -82.018353456999989, 28.902925431000028 ], [ -82.01825310299995, 28.902933058000031 ], [ -82.018189850999988, 28.902943205000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016018542999973, 28.903613734000032 ], [ -82.016058101999988, 28.903556309000066 ], [ -82.016107544999954, 28.903472703000034 ], [ -82.016179634999958, 28.903340497000045 ], [ -82.016221688999963, 28.903274393000061 ], [ -82.016273417999969, 28.903199246000042 ], [ -82.01633878399997, 28.903112940000028 ], [ -82.016401927999937, 28.903025841000044 ], [ -82.016459001999976, 28.902938584000026 ], [ -82.016490660999978, 28.902879409000036 ], [ -82.01650658799997, 28.902850907000072 ], [ -82.016525080999941, 28.902798447000066 ], [ -82.016543097999943, 28.902729703000034 ], [ -82.01655810699998, 28.902653027000042 ], [ -82.016567109999983, 28.902578996000045 ], [ -82.016570103999982, 28.902512896000076 ], [ -82.016571357999965, 28.902466521000065 ], [ -82.016563657999939, 28.90241237500004 ], [ -82.016546044999984, 28.902370126000051 ], [ -82.016518993999966, 28.902311963000045 ], [ -82.016473917999974, 28.902264378000041 ], [ -82.016423255999939, 28.902234719000035 ], [ -82.016354028999956, 28.902219498000079 ], [ -82.016281615999958, 28.902216810000027 ], [ -82.016212509999946, 28.902216818000056 ], [ -82.016149414999973, 28.902219470000034 ], [ -82.016080310999939, 28.902227410000023 ], [ -82.016005982999957, 28.90225676700004 ], [ -82.01595214699995, 28.902299076000077 ], [ -82.015892544999986, 28.90236 ], [ -82.01583095999996, 28.902420448000044 ], [ -82.015752192999969, 28.902508923000028 ], [ -82.015692593999972, 28.902586768000049 ], [ -82.015641707999976, 28.902669 ], [ -82.015588780999963, 28.902761068000075 ], [ -82.015531109999984, 28.902881215000036 ], [ -82.015479511999956, 28.903025951000075 ], [ -82.015407424999978, 28.903181950000032 ], [ -82.015348585999959, 28.903287386000045 ], [ -82.015266271999963, 28.903407174000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015684944999975, 28.907097339000074 ], [ -82.01559743699994, 28.907028414000024 ], [ -82.015535204999935, 28.906986159000041 ], [ -82.01549787099998, 28.906968246000076 ], [ -82.015445264999983, 28.906939883000064 ], [ -82.015354031999948, 28.906905412000071 ], [ -82.015246720999983, 28.906872714000031 ], [ -82.015138115999946, 28.906841372000031 ], [ -82.015029504999973, 28.906816040000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020153993999941, 28.904342714000052 ], [ -82.020041380999942, 28.904351231000078 ], [ -82.019951803999959, 28.904342800000052 ], [ -82.019884619999971, 28.904331549000062 ], [ -82.019798241, 28.904314672000055 ], [ -82.019724656999983, 28.904294977000063 ], [ -82.019654341999967, 28.904265431000056 ], [ -82.019584947999988, 28.904232136000076 ], [ -82.019517207999968, 28.90418620500003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008308735999947, 28.928463005000026 ], [ -82.00842210899998, 28.928550034000068 ], [ -82.008515375999934, 28.928591533000031 ], [ -82.00858021099998, 28.928601036000032 ], [ -82.009467403999963, 28.928607591000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958606531999976, 28.905643544000043 ], [ -81.957869143999972, 28.905654085000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970143686999961, 28.910467428000061 ], [ -81.970336461999977, 28.910462429000063 ], [ -81.970382758999961, 28.910461407000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974614403999965, 28.90526724700004 ], [ -81.974636543999964, 28.905191699000056 ], [ -81.974638374999984, 28.90516119800003 ], [ -81.974642040999981, 28.905087353000056 ], [ -81.97464524999998, 28.905027956000026 ], [ -81.974649830999965, 28.904941668000049 ], [ -81.974661247999961, 28.904879464000032 ], [ -81.97471894499995, 28.904763674000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969131218999962, 28.906676628000071 ], [ -81.969165736999969, 28.90663922300007 ], [ -81.969200407999949, 28.906611939000072 ], [ -81.969242376999944, 28.906587869000077 ], [ -81.969300693999969, 28.906560246000026 ], [ -81.969382872999972, 28.906530108000027 ], [ -81.969465801999945, 28.906505088000074 ], [ -81.969568977999984, 28.906473963000053 ], [ -81.969678451999982, 28.906440276000069 ], [ -81.96980799399995, 28.90640498700003 ], [ -81.969902872999967, 28.906374506000077 ], [ -81.970030593999979, 28.906326375000049 ], [ -81.970140069999957, 28.906281450000051 ], [ -81.970244074999982, 28.906234917000063 ], [ -81.970359026999972, 28.906177150000076 ], [ -81.970479456999954, 28.906109752000077 ], [ -81.970581639999978, 28.906053587000031 ], [ -81.970687473999988, 28.90598297400004 ], [ -81.970787835999943, 28.905912362000038 ], [ -81.970890023999971, 28.905833721000079 ], [ -81.971061554999949, 28.905695698000045 ], [ -81.971236732999955, 28.90556409800007 ], [ -81.971357163999983, 28.905483855000057 ], [ -81.971554232999949, 28.905353863000073 ], [ -81.971771366999974, 28.905238324000038 ], [ -81.971902741999941, 28.905166111000028 ], [ -81.972010391999959, 28.905116367000062 ], [ -81.972121692999963, 28.905066624000028 ], [ -81.972197715999982, 28.905035203000068 ], [ -81.972304150999946, 28.904991211000038 ], [ -81.972424571999966, 28.904944680000028 ], [ -81.972508501999982, 28.904915801000072 ], [ -81.972643517999984, 28.904869273000031 ], [ -81.972880703999977, 28.904800292000061 ], [ -81.973090519999971, 28.904748962000042 ], [ -81.973303982999937, 28.904704056000071 ], [ -81.973491901999978, 28.90467198500005 ], [ -81.973736374999987, 28.904641531000038 ], [ -81.973915166999973, 28.904625513000042 ], [ -81.974034582999934, 28.904617482000049 ], [ -81.974071878999951, 28.904616462000035 ], [ -81.974117534999948, 28.904616673000078 ], [ -81.974170945999958, 28.904619558000036 ], [ -81.97421071399998, 28.904627176000076 ], [ -81.974265441999989, 28.904644845000064 ], [ -81.974315455999943, 28.904666763000023 ], [ -81.974361851999959, 28.904694065000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969270632999951, 28.894632672000057 ], [ -81.969323876999965, 28.894597100000055 ], [ -81.969375099999979, 28.894566738000037 ], [ -81.969428217999962, 28.894543380000073 ], [ -81.969483104999938, 28.894529370000043 ], [ -81.969587932999957, 28.894517037000071 ], [ -81.969731336999985, 28.894499041000074 ], [ -81.969761302999984, 28.894496188000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969746661999977, 28.894386098000041 ], [ -81.969735920999938, 28.894386870000062 ], [ -81.969649423999954, 28.894396866000079 ], [ -81.969515125999976, 28.894418869000049 ], [ -81.969419526999957, 28.894424857000047 ], [ -81.969352127999969, 28.89441716400006 ], [ -81.969307873999981, 28.894400016000077 ], [ -81.96923654699998, 28.894373702000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966830313999935, 28.906553786000075 ], [ -81.966979678999962, 28.906354194000073 ], [ -81.967030105999982, 28.906268606000026 ], [ -81.967059818999985, 28.906199514000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020332992999954, 28.924190126000042 ], [ -82.020332935999988, 28.923898049000059 ], [ -82.020332924999934, 28.923840324000025 ], [ -82.020318332999977, 28.923789014000079 ], [ -82.020281867999984, 28.923724879000076 ], [ -82.020223526999985, 28.92363509200004 ], [ -82.020157567999945, 28.92354017100007 ], [ -82.020139581999956, 28.923491175000038 ], [ -82.020114106999984, 28.923301582000079 ], [ -82.02009219599995, 28.92309633800005 ], [ -82.020077594999975, 28.922993716000065 ], [ -82.02005933199996, 28.922949453000058 ], [ -82.020026546999986, 28.922910341000033 ], [ -82.019985038999948, 28.922885831000031 ], [ -82.019945939999957, 28.922872079000058 ], [ -82.019900977999953, 28.922863487000029 ], [ -82.019809105999968, 28.922866940000063 ], [ -82.019510027999956, 28.922885901000029 ], [ -82.018337169999938, 28.922913583000025 ], [ -82.018245294999986, 28.922920474000023 ], [ -82.018153425999969, 28.922942843000044 ], [ -82.01794427599998, 28.923009944000057 ], [ -82.017742944999952, 28.923075323000035 ], [ -82.017512292999982, 28.923142424000048 ], [ -82.017389267999988, 28.923168726000029 ], [ -82.01726354699997, 28.923192939000046 ], [ -82.017179992999957, 28.923218138000038 ], [ -82.01711549099997, 28.923247383000046 ], [ -82.017052943999943, 28.923285226000075 ], [ -82.017001114999971, 28.923327666000034 ], [ -82.016920035999988, 28.923393590000046 ], [ -82.016863350999984, 28.923421113000074 ], [ -82.016818393999984, 28.923433158000023 ], [ -82.016781252999976, 28.923431443000027 ], [ -82.016641793999952, 28.923406059000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01549979899994, 28.916751802000078 ], [ -82.015528515999961, 28.916751798000064 ], [ -82.01566954599997, 28.91675499300004 ], [ -82.015841966999972, 28.91675310100004 ], [ -82.015959040999974, 28.916754959000059 ], [ -82.016043102999959, 28.916756208000038 ], [ -82.016081393999968, 28.916757578000045 ], [ -82.016142933999959, 28.916759634000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016142933999959, 28.916759634000073 ], [ -82.016210221999984, 28.91675867500004 ], [ -82.01628685299994, 28.916756792000058 ], [ -82.016367740999954, 28.91675678200005 ], [ -82.016469914999959, 28.916751152000074 ], [ -82.01656995899998, 28.916739903000064 ], [ -82.016665719999935, 28.916724504000058 ], [ -82.016763591999961, 28.916701803000024 ], [ -82.016848799999934, 28.916676190000032 ], [ -82.016953098999977, 28.916642465000052 ], [ -82.017076553999971, 28.916610612000056 ], [ -82.017206396999939, 28.91658250200004 ], [ -82.017319211999961, 28.916565632000072 ], [ -82.017427768999937, 28.916558125000051 ], [ -82.01750440099994, 28.916556243000059 ], [ -82.017581031999953, 28.916550614000073 ], [ -82.017678948999958, 28.916552474000071 ], [ -82.017772610999941, 28.916558080000073 ], [ -82.017857755999955, 28.916565561000027 ], [ -82.01794929, 28.916578658000049 ], [ -82.01807062599994, 28.916601116000038 ], [ -82.018151516999978, 28.916619835000063 ], [ -82.018247310999982, 28.916646042000025 ], [ -82.018351620999965, 28.916677866000043 ], [ -82.018443155999989, 28.916704075000041 ], [ -82.018551720999938, 28.916724661000046 ], [ -82.018634739999982, 28.916737760000046 ], [ -82.018726271999981, 28.916743366000048 ], [ -82.018847605999952, 28.916745221000042 ], [ -82.018955569999946, 28.916746891000059 ], [ -82.019042113999944, 28.916744816000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012481710999964, 28.916510862000052 ], [ -82.01256753499996, 28.916210658000068 ], [ -82.012595741999974, 28.916125075000025 ], [ -82.012617321999983, 28.91603483800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012617321999983, 28.91603483800003 ], [ -82.012655084999949, 28.915849617000049 ], [ -82.012688784999966, 28.915644445000055 ], [ -82.012692815999969, 28.91542931400005 ], [ -82.012695486999974, 28.915189481000027 ], [ -82.012695454999971, 28.914933028000064 ], [ -82.012697263999939, 28.914689432000046 ], [ -82.012694516999943, 28.914586987000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011277709999945, 28.915346643000078 ], [ -82.011510716999965, 28.915315441000075 ], [ -82.011748212999976, 28.915296424000076 ], [ -82.012033343999974, 28.915279483000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01193565799997, 28.913840028000038 ], [ -82.011955397999941, 28.913917377000075 ], [ -82.011984130999963, 28.914044228000023 ], [ -82.012001775999977, 28.914206471000057 ], [ -82.012004493999939, 28.914367942000069 ], [ -82.012001807, 28.914477173000023 ], [ -82.011999124999988, 28.914552942000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013423830999955, 28.914671036000072 ], [ -82.01341727199997, 28.914773764000074 ], [ -82.01341933599997, 28.914882222000074 ], [ -82.013416065999934, 28.91528581700004 ], [ -82.013416073999963, 28.915345633000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016252348999956, 28.914011310000035 ], [ -82.016317137999977, 28.914122907000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010555862999979, 28.912622820000024 ], [ -82.010561030999952, 28.910987135000028 ], [ -82.010553014999971, 28.910918037000044 ], [ -82.010514913999941, 28.910846190000029 ], [ -82.010468805999949, 28.910796002000041 ], [ -82.010428170999944, 28.910772285000064 ], [ -82.010373859999959, 28.910760257000049 ], [ -82.010219141999983, 28.910757862000025 ], [ -82.009907165999948, 28.910757885000066 ], [ -82.009826682999972, 28.910760985000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009836845999985, 28.909533940000074 ], [ -82.010747046999938, 28.909534828000062 ], [ -82.011741183999959, 28.909528390000048 ], [ -82.011912113999983, 28.909528375000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974854721999975, 28.953411346000053 ], [ -81.974843465999982, 28.954543855000054 ], [ -81.974821474999942, 28.954652514000031 ], [ -81.974791253999967, 28.954734608000024 ], [ -81.974761036999951, 28.954807045000052 ], [ -81.974708851999935, 28.954884306000054 ], [ -81.974670402999948, 28.954937424000036 ], [ -81.974609982999937, 28.955007440000031 ], [ -81.974549568999976, 28.95506296700006 ], [ -81.974511120999978, 28.955101596000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974511120999978, 28.955101596000077 ], [ -81.974318895999943, 28.955256102000078 ], [ -81.973953669999958, 28.955536141000039 ], [ -81.973500564999938, 28.955888603000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971667031999971, 28.95406510600003 ], [ -81.971213926999951, 28.954415146000031 ], [ -81.970738849999975, 28.954782084000044 ], [ -81.970571336999967, 28.954912442000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048903726999981, 28.926087684000038 ], [ -82.048869092999951, 28.926057238000055 ], [ -82.048841754999955, 28.926046027000041 ], [ -82.048777979999954, 28.926039638000077 ], [ -82.048123832999977, 28.926033462000078 ], [ -82.048089216999983, 28.926043093000033 ], [ -82.048067354999944, 28.926051115000064 ], [ -82.048047315999952, 28.926060741000072 ], [ -82.048025457999984, 28.926076779000027 ], [ -82.048010886999975, 28.926089608000041 ], [ -82.047998138999958, 28.926104039000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974636829999952, 28.90578084200007 ], [ -81.974625753999987, 28.905480459000046 ], [ -81.974614403999965, 28.90526724700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974702477999983, 28.908270466000033 ], [ -81.974646302999986, 28.90804004000006 ], [ -81.974636829999952, 28.90578084200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975018021999972, 28.909117072000072 ], [ -81.974841611999977, 28.908650643000044 ], [ -81.974702477999983, 28.908270466000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971520205, 28.908628037000028 ], [ -81.971282813999949, 28.908717068000044 ], [ -81.97080374899997, 28.908899230000031 ], [ -81.97049300599997, 28.909015926000052 ], [ -81.970373241999937, 28.909054061000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974702477999983, 28.908270466000033 ], [ -81.974932536999972, 28.908205972000076 ], [ -81.975105869999936, 28.908155838000027 ], [ -81.975169727999969, 28.908141803000035 ], [ -81.975238148999949, 28.908127769000032 ], [ -81.975315689999945, 28.908117749000041 ], [ -81.975557429999981, 28.908103747000041 ], [ -81.975666893999971, 28.908111794000035 ], [ -81.975753551999958, 28.908119835000036 ], [ -81.975867574999938, 28.908135909000066 ], [ -81.97600896199998, 28.908170049000034 ], [ -81.976289442999985, 28.908274445000075 ], [ -81.976583611999956, 28.908372825000072 ], [ -81.976782004999961, 28.908441087000028 ], [ -81.976891461999969, 28.90847722500007 ], [ -81.976987237999936, 28.908509350000031 ], [ -81.977067051999938, 28.908533442000078 ], [ -81.977149146999977, 28.90855352400007 ], [ -81.977276851999989, 28.908581638000044 ], [ -81.977381750999939, 28.908605737000073 ], [ -81.977529982999954, 28.908627835000061 ], [ -81.977689178999981, 28.908651242000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971683840999958, 28.90957955500005 ], [ -81.971866315999989, 28.909514275000049 ], [ -81.972082753999985, 28.909443983000074 ], [ -81.972187910999935, 28.909422852000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039457176999974, 28.890532968000059 ], [ -82.039410772999986, 28.890566727000078 ], [ -82.039340142999947, 28.890575629000068 ], [ -82.039221142999963, 28.890580290000059 ], [ -82.039126132999968, 28.890578306000066 ], [ -82.038777695999954, 28.890584938000075 ], [ -82.03830686699996, 28.890581255000029 ], [ -82.037646946999985, 28.890590320000058 ], [ -82.037426976999939, 28.890608142000076 ], [ -82.037269556999945, 28.890586874000064 ], [ -82.037081870999941, 28.890583373000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039389245999985, 28.890210629000023 ], [ -82.03939252899994, 28.890351826000028 ], [ -82.039390534999939, 28.890417542000023 ], [ -82.039400643999954, 28.890463716000056 ], [ -82.039426893999973, 28.890502783000045 ], [ -82.039457176999974, 28.890532968000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011260127999947, 28.893755114000044 ], [ -82.011151676999987, 28.893839967000076 ], [ -82.011063307999962, 28.893900073000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956465810999987, 28.940752942000074 ], [ -81.956306100999939, 28.940811567000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096116811999934, 28.631961678000039 ], [ -82.096132694999937, 28.629327444000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100130901999989, 28.686747237000077 ], [ -82.100116777999972, 28.683142202000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100116777999972, 28.683142202000056 ], [ -82.099087209999936, 28.683131999000068 ], [ -82.097684765999986, 28.683123884000054 ], [ -82.096905847999949, 28.683104350000065 ], [ -82.095923927999934, 28.683097742000029 ], [ -82.094355751999956, 28.68307875000005 ], [ -82.094281176999971, 28.683078802000068 ], [ -82.094171384999981, 28.68307887800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093947276999984, 28.684973391000028 ], [ -82.094013353999969, 28.684734040000023 ], [ -82.094027583999946, 28.684430786000064 ], [ -82.094029448999947, 28.684198785000035 ], [ -82.094035402999964, 28.683908325000061 ], [ -82.094033034999939, 28.683575855000072 ], [ -82.094049361999964, 28.683300001000077 ], [ -82.094082434999962, 28.683221428000024 ], [ -82.094121725999969, 28.683144675000051 ], [ -82.094171384999981, 28.68307887800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.092053517999943, 28.693996150000032 ], [ -82.092583252999987, 28.69402100700006 ], [ -82.09291817899998, 28.694020777000048 ], [ -82.093162731999939, 28.694025297000053 ], [ -82.093768786999988, 28.69402487800005 ], [ -82.093873127999984, 28.694025520000025 ], [ -82.093944853999972, 28.693984645000057 ], [ -82.093977220999989, 28.693935633000024 ], [ -82.094002634999981, 28.693793167000024 ], [ -82.093996931999982, 28.693502764000073 ], [ -82.093993902999955, 28.693159558000048 ], [ -82.093999115999964, 28.692900348000023 ], [ -82.093990653999981, 28.692569146000039 ], [ -82.093990451999957, 28.692343541000071 ], [ -82.093982008999944, 28.692031539000027 ], [ -82.093981697999936, 28.691683531000024 ], [ -82.094000501999972, 28.691405111000051 ], [ -82.093986783999981, 28.691282719000071 ], [ -82.093964813999946, 28.691064328000039 ], [ -82.09397002999998, 28.690809920000049 ], [ -82.093967006999947, 28.690471512000045 ], [ -82.093939592999959, 28.690253126000073 ], [ -82.09387196199998, 28.689948592000064 ], [ -82.093871629999967, 28.689575931000036 ], [ -82.093842318999975, 28.68923069300007 ], [ -82.093846241999984, 28.688984078000033 ], [ -82.093866829999968, 28.688839748000078 ], [ -82.09387494799995, 28.688649759000043 ], [ -82.093868500999974, 28.688390363000053 ], [ -82.093857930999945, 28.688152890000026 ], [ -82.093853502999934, 28.687833209000075 ], [ -82.093859559999942, 28.687656009000079 ], [ -82.093859387999942, 28.687462371000038 ], [ -82.093850808999946, 28.68713538600008 ], [ -82.093844330999957, 28.686841281000056 ], [ -82.093849985999952, 28.686212870000077 ], [ -82.093870270999957, 28.685728762000053 ], [ -82.093891775999964, 28.685277160000055 ], [ -82.093911107999986, 28.685061963000066 ], [ -82.093947276999984, 28.684973391000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.079633137999963, 28.690297575000045 ], [ -82.079550622999989, 28.690351430000078 ], [ -82.079468088999988, 28.690379963000055 ], [ -82.079360421, 28.690399016000072 ], [ -82.079015824999942, 28.690377064000074 ], [ -82.07875379099994, 28.690364555000031 ], [ -82.078488167999978, 28.690352050000058 ], [ -82.078251288999979, 28.69038067200006 ], [ -82.073484424999947, 28.690328342000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.083612670999969, 28.686674381000046 ], [ -82.083551641999975, 28.686658593000061 ], [ -82.083437486999969, 28.686670280000044 ], [ -82.083271704999959, 28.68668725200007 ], [ -82.083102957999984, 28.686688696000033 ], [ -82.082873298999971, 28.686690660000068 ], [ -82.082517970999959, 28.686700373000065 ], [ -82.082428234999952, 28.686694098000032 ], [ -82.082223614999975, 28.686653076000027 ], [ -82.082112337999945, 28.686640484000065 ], [ -82.081954412999949, 28.686643745000026 ], [ -82.081706787999963, 28.686688206000042 ], [ -82.081419649999987, 28.686688379000032 ], [ -82.081182736999949, 28.686660034000056 ], [ -82.080870512, 28.686674364000055 ], [ -82.080332101999943, 28.686682698000027 ], [ -82.079635776999964, 28.686670449000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.079633137999963, 28.690297575000045 ], [ -82.07966718199998, 28.690224760000035 ], [ -82.07968148599997, 28.690155120000043 ], [ -82.079674201999978, 28.690015863000042 ], [ -82.079641796999965, 28.689882951000072 ], [ -82.079623750999986, 28.689753196000026 ], [ -82.07961292899995, 28.689680407000026 ], [ -82.079648732999942, 28.689560114000074 ], [ -82.079673741999954, 28.689408179000054 ], [ -82.07966635799994, 28.689135989000079 ], [ -82.079637421999962, 28.688844825000047 ], [ -82.07961402799998, 28.688509431000057 ], [ -82.079597558999978, 28.688341607000041 ], [ -82.079611750999959, 28.68812321200005 ], [ -82.07958653999998, 28.688009285000078 ], [ -82.079615179999962, 28.687911153000073 ], [ -82.079635776999964, 28.686670449000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.085749592999946, 28.683002558000055 ], [ -82.085743752999974, 28.682883555000046 ], [ -82.085777915999984, 28.682523986000035 ], [ -82.085757460999957, 28.682085959000062 ], [ -82.085751462999951, 28.681773574000033 ], [ -82.08575805299995, 28.681051942000067 ], [ -82.085739858999943, 28.680744945000072 ], [ -82.085753868999973, 28.680320822000056 ], [ -82.085746541999981, 28.680137254000044 ], [ -82.085735642999964, 28.679975845000058 ], [ -82.085735463999981, 28.679754291000052 ], [ -82.085778338999944, 28.679520053000033 ], [ -82.085835235, 28.678871184000059 ], [ -82.085840466999969, 28.678684444000055 ], [ -82.08580808499994, 28.678586349000057 ], [ -82.085777934999953, 28.678319101000056 ], [ -82.085777157999985, 28.678070468000044 ], [ -82.085755462999941, 28.677871085000049 ], [ -82.085737303999963, 28.677608397000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093291287999989, 28.683063007000044 ], [ -82.092159634999973, 28.683061524000038 ], [ -82.090463673999977, 28.683054234000053 ], [ -82.088841048999939, 28.683060931000057 ], [ -82.087776284999961, 28.683047571000031 ], [ -82.086711510999976, 28.683022956000059 ], [ -82.086166369999944, 28.683006436000028 ], [ -82.085749592999946, 28.683002558000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.094171384999981, 28.68307887800006 ], [ -82.093291287999989, 28.683063007000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959638469999959, 28.930063770000061 ], [ -81.959887020999986, 28.930240001000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104267128999936, 28.677705693000064 ], [ -82.104272897999977, 28.676810068000066 ], [ -82.104279764999944, 28.675768247000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104279764999944, 28.675768247000065 ], [ -82.104284596999946, 28.675146083000072 ], [ -82.104292413999985, 28.673963494000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104668965999963, 28.666686331000051 ], [ -82.104620029999978, 28.666777652000064 ], [ -82.104565679999951, 28.666900204000058 ], [ -82.104492316999938, 28.667075619000059 ], [ -82.10443528199994, 28.66723901000006 ], [ -82.104397291999987, 28.667380768000044 ], [ -82.104367479999951, 28.667529724000076 ], [ -82.104362079999987, 28.667577772000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106940473999941, 28.66670377500003 ], [ -82.106126104999987, 28.666694806000066 ], [ -82.104761559999986, 28.666679053000053 ], [ -82.104668965999963, 28.666686331000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106946918999938, 28.665005439000026 ], [ -82.106940473999941, 28.66670377500003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106946918999938, 28.665005439000026 ], [ -82.106690979999939, 28.66508010900003 ], [ -82.106535789999953, 28.665133078000054 ], [ -82.10639966399998, 28.665183630000058 ], [ -82.106282600999975, 28.66523416800004 ], [ -82.106170987999974, 28.665287103000026 ], [ -82.106026708999934, 28.665356878000068 ], [ -82.105896048999966, 28.665429045000053 ], [ -82.105765403999953, 28.665515626000058 ], [ -82.105642768999985, 28.665600324000025 ], [ -82.105513837, 28.66568946700005 ], [ -82.105389832999947, 28.665796972000066 ], [ -82.105278262999946, 28.665895547000048 ], [ -82.105177590999972, 28.665996518000043 ], [ -82.10504156199994, 28.666147958000067 ], [ -82.104902825999943, 28.666316217000031 ], [ -82.104823953999983, 28.666429181000069 ], [ -82.10474781399995, 28.666549348000046 ], [ -82.104704304999984, 28.666619044000072 ], [ -82.104668965999963, 28.666686331000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107521498999972, 28.664913702000035 ], [ -82.107404348999978, 28.66487776300005 ], [ -82.106317660999935, 28.664890630000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107521498999972, 28.664913702000035 ], [ -82.107319976999975, 28.664935482000033 ], [ -82.107202881999967, 28.664952390000053 ], [ -82.107083069999987, 28.664976506000073 ], [ -82.106946918999938, 28.665005439000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107949619999943, 28.664891234000038 ], [ -82.107817456999953, 28.66489376800007 ], [ -82.107660516999943, 28.664901178000036 ], [ -82.107521498999972, 28.664913702000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109505766999973, 28.664890194000066 ], [ -82.109475033999956, 28.664890010000079 ], [ -82.108861012999967, 28.664890505000074 ], [ -82.108611400999962, 28.664890705000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106317660999935, 28.664890630000059 ], [ -82.104393568999967, 28.664889075000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104353964999973, 28.664889042000027 ], [ -82.103015649999975, 28.664890067000044 ], [ -82.102281105999964, 28.66488817000004 ], [ -82.101276668999958, 28.664884017000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.101276668999958, 28.664884017000077 ], [ -82.100687428999947, 28.664881720000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100219367999955, 28.664879896000059 ], [ -82.099340136999956, 28.664875635000044 ], [ -82.097846006999987, 28.664871814000037 ], [ -82.096376911999982, 28.664863052000044 ], [ -82.094835475999957, 28.664854324000032 ], [ -82.093997984999987, 28.664852455000073 ], [ -82.092495490999966, 28.664831403000051 ], [ -82.090753722999978, 28.664820311000028 ], [ -82.089919010999949, 28.664813505000041 ], [ -82.08795743099995, 28.664795162000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067178745999968, 28.664755528000057 ], [ -82.065423075999945, 28.664753933000043 ], [ -82.063611758999969, 28.664752343000032 ], [ -82.062838265999972, 28.664755157000059 ], [ -82.061408134999965, 28.664758268000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061408134999965, 28.664758268000071 ], [ -82.060484389999942, 28.664756229000034 ], [ -82.05912938299997, 28.664759282000034 ], [ -82.057354238999949, 28.664760045000037 ], [ -82.055765514999962, 28.664765617000057 ], [ -82.054825079999944, 28.664770910000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087920295999936, 28.668430330000035 ], [ -82.087916031999953, 28.667644379000023 ], [ -82.087933045999989, 28.666416120000065 ], [ -82.087944498999946, 28.665968193000026 ], [ -82.08795743099995, 28.664795162000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.092044649999934, 28.668441295000036 ], [ -82.090514350999968, 28.668441348000044 ], [ -82.087920295999936, 28.668430330000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096089347999964, 28.668468138000037 ], [ -82.096001931999979, 28.668468200000063 ], [ -82.095047073999979, 28.668462943000065 ], [ -82.093954365999934, 28.668454810000071 ], [ -82.093039851999947, 28.668446545000052 ], [ -82.092044649999934, 28.668441295000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104305389, 28.670322857000031 ], [ -82.104304759999934, 28.670203381000078 ], [ -82.104298774999961, 28.669660496000063 ], [ -82.104308928999956, 28.668913415000077 ], [ -82.104313571999967, 28.668518096000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104292413999985, 28.673963494000077 ], [ -82.104296184999953, 28.672545494000076 ], [ -82.104295820999937, 28.67217796400007 ], [ -82.104300608999949, 28.671512561000043 ], [ -82.104303958999935, 28.671075442000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104305389, 28.670322857000031 ], [ -82.102936157999977, 28.670321140000055 ], [ -82.100147554999978, 28.670306652000079 ], [ -82.100056688999985, 28.670306719000052 ], [ -82.099987757999941, 28.670306770000025 ], [ -82.099928214999977, 28.670295761000034 ], [ -82.099884337999981, 28.670281977000059 ], [ -82.099849863999964, 28.67027371100005 ], [ -82.099815384999943, 28.670259921000024 ], [ -82.099777770999935, 28.670243368000058 ], [ -82.099755826999967, 28.670232331000079 ], [ -82.099724472999981, 28.670210247000057 ], [ -82.099686856999938, 28.670190931000036 ], [ -82.098824698999977, 28.669641654000031 ], [ -82.098783941999955, 28.669614051000053 ], [ -82.098749449999957, 28.669586442000025 ], [ -82.098727486999962, 28.669553299000029 ], [ -82.098711790999971, 28.669522913000037 ], [ -82.098702368999966, 28.669498049000026 ], [ -82.098692937999942, 28.669464895000033 ], [ -82.098683512999969, 28.669437268000024 ], [ -82.098680355999988, 28.669412401000045 ], [ -82.098677160999955, 28.66934608300005 ], [ -82.098681905999968, 28.66918417200003 ], [ -82.098686627999939, 28.668481985000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.095432847999973, 28.674631711000075 ], [ -82.095388838999952, 28.674474231000033 ], [ -82.095385625999938, 28.67438856800004 ], [ -82.095366721999937, 28.674272521000034 ], [ -82.095329040999957, 28.674184120000064 ], [ -82.095206746999963, 28.674081962000059 ], [ -82.095031216999985, 28.674013 ], [ -82.094890199999952, 28.673993757000062 ], [ -82.094736644999955, 28.673971757000061 ], [ -82.094636389999948, 28.673985644000027 ], [ -82.094498534999957, 28.673999557000059 ], [ -82.094398283999965, 28.674018970000077 ], [ -82.094282365999959, 28.674035631000038 ], [ -82.09416955599994, 28.674027420000073 ], [ -82.094050469999956, 28.674005396000041 ], [ -82.093915709999976, 28.673977856000079 ], [ -82.093176242999959, 28.67398389300007 ], [ -82.092007494999962, 28.67397640300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.092007494999962, 28.67397640300004 ], [ -82.092004315999986, 28.673923901000023 ], [ -82.092001135999965, 28.673871399000063 ], [ -82.091997963999972, 28.673827188000075 ], [ -82.091994603999979, 28.673567435000052 ], [ -82.091990795999948, 28.673356298000044 ], [ -82.091990596999949, 28.673127458000067 ], [ -82.091990332999956, 28.672825218000071 ], [ -82.091999859999987, 28.672522968000067 ], [ -82.091994778999947, 28.672311402000048 ], [ -82.091999527999974, 28.672143006000056 ], [ -82.092000281999958, 28.672029862000045 ], [ -82.092006260999938, 28.671957662000068 ], [ -82.092003627999986, 28.671231959000067 ], [ -82.092009329999939, 28.670501500000057 ], [ -82.092014525999957, 28.669443648000026 ], [ -82.092025231999969, 28.669087397000055 ], [ -82.092056801999945, 28.668801355000028 ], [ -82.092044649999934, 28.668441295000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.084773153999947, 28.664783369000077 ], [ -82.083060462999981, 28.664773713000045 ], [ -82.081240790999971, 28.664762547000066 ], [ -82.079771703999938, 28.664758513000038 ], [ -82.078502943999979, 28.664754346000052 ], [ -82.076805700999955, 28.664747956000042 ], [ -82.075387316, 28.664739347000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08795743099995, 28.664795162000075 ], [ -82.086262971999986, 28.664791343000047 ], [ -82.084773153999947, 28.664783369000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.084773153999947, 28.664783369000077 ], [ -82.084769035999955, 28.664534669000034 ], [ -82.084819258999971, 28.663677995000057 ], [ -82.084799260999944, 28.663159878000045 ], [ -82.084770698999989, 28.661733309000056 ], [ -82.084770318999972, 28.661260084000048 ], [ -82.084711478999964, 28.661142677000043 ], [ -82.084609604999969, 28.661077111000054 ], [ -82.083841793999966, 28.660783981000066 ], [ -82.083265983999979, 28.660566312000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000943414999938, 28.654552326000044 ], [ -82.004157785999951, 28.65454363200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000914087999945, 28.671698714000058 ], [ -81.999265826999988, 28.671686625000063 ], [ -81.996854840999958, 28.671689095000033 ], [ -81.996157670999935, 28.671692714000073 ], [ -81.994062112999984, 28.671701173000031 ], [ -81.992710002999956, 28.671688322000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00497824699994, 28.671713576000059 ], [ -82.002969165999957, 28.671702451000044 ], [ -82.000914087999945, 28.671698714000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98863492199996, 28.649886926000079 ], [ -81.98753910399995, 28.649884725000049 ], [ -81.98680311399994, 28.649879623000061 ], [ -81.986261105999972, 28.649877053000068 ], [ -81.984505369999965, 28.649861414000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967870601999948, 28.621953622000035 ], [ -81.967031385999974, 28.620114516000058 ], [ -81.96652288699994, 28.618996365000044 ], [ -81.966131957999949, 28.618149598000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113322685999947, 28.66673589800007 ], [ -82.114842513999974, 28.666734691000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11331882099995, 28.66762204500003 ], [ -82.114839452999945, 28.667625531000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113322685999947, 28.66673589800007 ], [ -82.11331882099995, 28.66762204500003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113335524999968, 28.664907285000027 ], [ -82.113322685999947, 28.66673589800007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116693267999949, 28.664910263000024 ], [ -82.116702874999987, 28.666736765000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069792753999934, 28.734125567000035 ], [ -82.069906980999974, 28.733933404000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03360020599996, 28.741281446000073 ], [ -82.033255336999957, 28.741267461000064 ], [ -82.032782328999986, 28.741264064000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106275456999981, 28.668521025000075 ], [ -82.105534702999989, 28.668514777000041 ], [ -82.104313571999967, 28.668518096000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106261445999962, 28.66986263900003 ], [ -82.107343605999972, 28.669857913000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106226078999953, 28.673972653000078 ], [ -82.106238197999971, 28.672929176000025 ], [ -82.106242230999953, 28.672574897000061 ], [ -82.106243582, 28.671738572000038 ], [ -82.106245236999939, 28.671198398000058 ], [ -82.10625581499994, 28.670809314000053 ], [ -82.106259675999979, 28.670284673000026 ], [ -82.106261445999962, 28.66986263900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106216918999962, 28.675771142000031 ], [ -82.106229920999965, 28.675604641000064 ], [ -82.106224809999958, 28.67489028600005 ], [ -82.106226078999953, 28.673972653000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10527297699997, 28.67575832700004 ], [ -82.106216918999962, 28.675771142000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106216918999962, 28.675771142000031 ], [ -82.106708669999989, 28.675801730000046 ], [ -82.107250921999935, 28.675842682000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104279764999944, 28.675768247000065 ], [ -82.10527297699997, 28.67575832700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10527297699997, 28.67575832700004 ], [ -82.105283346999954, 28.675013953000075 ], [ -82.105291295999962, 28.674183431000074 ], [ -82.105293277999976, 28.673970478000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104292413999985, 28.673963494000077 ], [ -82.105293277999976, 28.673970478000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105293277999976, 28.673970478000058 ], [ -82.106226078999953, 28.673972653000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106261445999962, 28.66986263900003 ], [ -82.106263351999985, 28.669440217000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106263351999985, 28.669440217000044 ], [ -82.106275456999981, 28.668521025000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105293277999976, 28.673970478000058 ], [ -82.105294964999985, 28.673461326000051 ], [ -82.105298235999953, 28.673050510000053 ], [ -82.105297164999968, 28.672589574000028 ], [ -82.105298698999945, 28.672366553000074 ], [ -82.10530203199994, 28.672186896000028 ], [ -82.105308472, 28.671603013000038 ], [ -82.105313002999935, 28.670865806000052 ], [ -82.10531277299998, 28.670635043000061 ], [ -82.105315941999947, 28.670292768000024 ], [ -82.105320757999948, 28.669840529000055 ], [ -82.105325611999945, 28.669427010000049 ], [ -82.106263351999985, 28.669440217000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108426903999941, 28.670191931000033 ], [ -82.108434968999973, 28.670093498000028 ], [ -82.108431576999976, 28.669442918000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108431576999976, 28.669442918000072 ], [ -82.108442320999984, 28.669303671000023 ], [ -82.108439330999943, 28.669044400000075 ], [ -82.108440703999975, 28.668535628000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111702258999969, 28.668556513000055 ], [ -82.110520937999979, 28.668549243000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111896471999955, 28.666735372000062 ], [ -82.111702258999969, 28.668556513000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110521351999978, 28.667664975000037 ], [ -82.110518782999975, 28.668069962000061 ], [ -82.110520937999979, 28.668549243000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110521351999978, 28.667664975000037 ], [ -82.10958603499995, 28.667647525000064 ], [ -82.108469026999956, 28.66762839300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108469026999956, 28.66762839300003 ], [ -82.108459570999969, 28.668535678000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110527615999956, 28.666719862000036 ], [ -82.109203095999987, 28.666708208000045 ], [ -82.108457752999982, 28.666705165000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108457752999982, 28.666705165000053 ], [ -82.108478786999967, 28.667082091000054 ], [ -82.108469026999956, 28.66762839300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108457752999982, 28.666705165000053 ], [ -82.107953972999951, 28.666701924000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107953972999951, 28.666701924000051 ], [ -82.106940473999941, 28.66670377500003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107949619999943, 28.664891234000038 ], [ -82.107955273999949, 28.665624398000034 ], [ -82.107953972999951, 28.666701924000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10424805599996, 28.686844499000074 ], [ -82.103339374999962, 28.686811716000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104252169999938, 28.690450678000047 ], [ -82.104248822999978, 28.689807616000053 ], [ -82.104250408999974, 28.688672092000047 ], [ -82.104249382999967, 28.687636974000043 ], [ -82.10424805599996, 28.686844499000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10425539299996, 28.691074568000033 ], [ -82.104252169999938, 28.690450678000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105601805999981, 28.691044454000064 ], [ -82.105662505999987, 28.691016150000053 ], [ -82.105739369999981, 28.690995417000067 ], [ -82.105813419999947, 28.690975441000035 ], [ -82.105884540999966, 28.690957025000046 ], [ -82.105969554999945, 28.690950839000038 ], [ -82.10602335699997, 28.690964566000048 ], [ -82.10605114699996, 28.690992083000026 ], [ -82.106066788999954, 28.691018081000038 ], [ -82.10606682599996, 28.691054801000064 ], [ -82.106049506999966, 28.691086943000073 ], [ -82.106014832999961, 28.691114510000034 ], [ -82.105964522999955, 28.691123729000026 ], [ -82.105901190999987, 28.691123539000046 ], [ -82.105601805999981, 28.691044454000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10425539299996, 28.691074568000033 ], [ -82.104966758999979, 28.691046479000079 ], [ -82.105601805999981, 28.691044454000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104255317999957, 28.692751340000029 ], [ -82.104255128999966, 28.692560167000067 ], [ -82.104254481999988, 28.691906871000072 ], [ -82.104255767999973, 28.691344751000031 ], [ -82.10425539299996, 28.691074568000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104256721999946, 28.694168160000061 ], [ -82.103448151999942, 28.69418408100006 ], [ -82.101816824999958, 28.694173028000023 ], [ -82.10151690899994, 28.694173303000071 ], [ -82.100225970999986, 28.694194155000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104255388999945, 28.697857389000035 ], [ -82.104255182999964, 28.697102207000057 ], [ -82.104254933999982, 28.696851198000047 ], [ -82.104254095999977, 28.696004936000065 ], [ -82.104256215999953, 28.695220988000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104255936999948, 28.69841008800006 ], [ -82.104253574999973, 28.698215019000031 ], [ -82.104255388999945, 28.697857389000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104255936999948, 28.69841008800006 ], [ -82.105088844999955, 28.698407531000043 ], [ -82.10575257499994, 28.698412752000024 ], [ -82.105919592999953, 28.698414534000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105919592999953, 28.698414534000051 ], [ -82.106390270999952, 28.698412252000026 ], [ -82.10694988399996, 28.698413724000034 ], [ -82.10751817199997, 28.698413274000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105017876999966, 28.699563428000033 ], [ -82.105497781999986, 28.699563054000066 ], [ -82.105752646999974, 28.699562855000067 ], [ -82.105920748999949, 28.699562724000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062463922999939, 28.748861337000051 ], [ -82.062863227999969, 28.747826409000027 ], [ -82.063283000999945, 28.746737249000034 ], [ -82.063646460999962, 28.745799482000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063646460999962, 28.745799482000052 ], [ -82.063925449999942, 28.74508316400005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063925449999942, 28.74508316400005 ], [ -82.064224908999961, 28.744308094000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06450087099995, 28.743581992000031 ], [ -82.064611372999934, 28.743291241000065 ], [ -82.064693278999982, 28.743087868000032 ], [ -82.064752149999947, 28.742940986000065 ], [ -82.064808454999934, 28.742794107000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065049072999955, 28.742231435000065 ], [ -82.065165305999983, 28.741990375000057 ], [ -82.065270541999951, 28.741765181000062 ], [ -82.065363040999955, 28.741596279000078 ], [ -82.065436399999953, 28.74146115800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064808454999934, 28.742794107000066 ], [ -82.064926195999988, 28.742504865000058 ], [ -82.065049072999955, 28.742231435000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071203693999962, 28.731791091000048 ], [ -82.07128187099994, 28.731674321000071 ], [ -82.071407256999976, 28.73151415600006 ], [ -82.071493045999944, 28.731403497000031 ], [ -82.071592038999938, 28.73128409800006 ], [ -82.071654734999981, 28.731208381000044 ], [ -82.071726989999945, 28.731123757000034 ], [ -82.071796141999982, 28.731046906000074 ], [ -82.071901155999967, 28.730931627000075 ], [ -82.072014434999971, 28.730815219000078 ], [ -82.072126637999986, 28.730698724000035 ], [ -82.072245448999979, 28.730585135000069 ], [ -82.072362214999941, 28.730477268000072 ], [ -82.072477482999943, 28.730368761000079 ], [ -82.072575487999984, 28.730285135000031 ], [ -82.072700907999945, 28.730180276000056 ], [ -82.072799922999934, 28.730095807000055 ], [ -82.072912149, 28.730014242000038 ], [ -82.073021067999946, 28.729926856000077 ], [ -82.073136596999973, 28.729845288000035 ], [ -82.073277178999945, 28.729741971000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053365148999944, 28.608701758000052 ], [ -82.052432186999965, 28.608697994000067 ], [ -82.05199259799997, 28.608698164000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05199259799997, 28.608698164000032 ], [ -82.051990175999947, 28.608526900000072 ], [ -82.051992430999974, 28.607520165000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050608352999973, 28.608688370000039 ], [ -82.050618107999981, 28.607515873000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050608352999973, 28.608688370000039 ], [ -82.049996802999942, 28.608688333000032 ], [ -82.04983705799998, 28.608690781000064 ], [ -82.049674606999986, 28.608700399000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049674606999986, 28.608700399000043 ], [ -82.049671836999948, 28.608568985000034 ], [ -82.049667776999968, 28.608390394000025 ], [ -82.04966766299998, 28.608148586000027 ], [ -82.04967206799995, 28.607801991000031 ], [ -82.049667279999937, 28.607334498000057 ], [ -82.049667901999953, 28.607056225000065 ], [ -82.049667801999988, 28.606844275000071 ], [ -82.049667744999965, 28.606722716000036 ], [ -82.049668577999967, 28.606520254000031 ], [ -82.049671119999971, 28.606386090000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049674606999986, 28.608700399000043 ], [ -82.04953110799994, 28.608707619000029 ], [ -82.049420102999989, 28.608721997000032 ], [ -82.049292855999965, 28.608743547000074 ], [ -82.049146660999952, 28.60877466200003 ], [ -82.048884053999984, 28.608834491000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048884053999984, 28.608834491000039 ], [ -82.048890880999977, 28.608677356000044 ], [ -82.048890804999985, 28.608513780000067 ], [ -82.048889244999941, 28.608351837000043 ], [ -82.048889175999989, 28.608203696000032 ], [ -82.048888357999942, 28.608112825000035 ], [ -82.048888287999944, 28.607961218000071 ], [ -82.048888207999937, 28.607787669000061 ], [ -82.048888118999969, 28.607596167000054 ], [ -82.048883516999979, 28.607420625000032 ], [ -82.048887928999989, 28.607187230000079 ], [ -82.048887821999983, 28.60695583100005 ], [ -82.048885491999954, 28.606806222000046 ], [ -82.048885439999935, 28.606692518000045 ], [ -82.04888538299997, 28.606570833000035 ], [ -82.048883513999954, 28.606423779000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059840763999944, 28.617381597000076 ], [ -82.059854730999973, 28.61792867500003 ], [ -82.059876789999976, 28.618297404000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058890274999953, 28.617367552000076 ], [ -82.059840763999944, 28.617381597000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056754628999954, 28.622829663000061 ], [ -82.056219483999939, 28.622831105000046 ], [ -82.055632463999984, 28.622838566000041 ], [ -82.054740679999952, 28.622838929000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058841412999982, 28.622807082000065 ], [ -82.056940364999946, 28.622829585000034 ], [ -82.056754628999954, 28.622829663000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058880182999985, 28.620085806000077 ], [ -82.058894129999942, 28.620606975000044 ], [ -82.058856695999964, 28.620823596000037 ], [ -82.05885951199997, 28.620977838000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058893354999952, 28.61921817800004 ], [ -82.058893440999952, 28.619371819000037 ], [ -82.058880182999985, 28.620085806000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058893354999952, 28.61921817800004 ], [ -82.059434832999955, 28.619206192000036 ], [ -82.059746196999981, 28.619196415000033 ], [ -82.059874558, 28.619177078000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058882602999972, 28.61830266000004 ], [ -82.05888618299997, 28.618600602000072 ], [ -82.058893354999952, 28.61921817800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058890274999953, 28.617367552000076 ], [ -82.058895850999988, 28.617570296000054 ], [ -82.058882413999982, 28.617964950000044 ], [ -82.058882602999972, 28.61830266000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063708764999944, 28.613705992000064 ], [ -82.062628574999962, 28.613706498000056 ], [ -82.061380394999958, 28.613703862000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057562244999986, 28.613699706000034 ], [ -82.058880036999938, 28.613702153000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.20924112299997, 28.601668929000027 ], [ -82.209144069999979, 28.601645904000065 ], [ -82.209042956999951, 28.60162312500006 ], [ -82.208924501999945, 28.601601742000071 ], [ -82.208802079999941, 28.601594392000038 ], [ -82.208688201999962, 28.601589544000035 ], [ -82.208585878999941, 28.601595575000033 ], [ -82.208454055999937, 28.601603954000041 ], [ -82.208344616999966, 28.601617912000052 ], [ -82.20824123999995, 28.601631119000047 ], [ -82.208017906999942, 28.601659476000066 ], [ -82.207849048999947, 28.601680029000079 ], [ -82.207716092999988, 28.601695534000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210377925999978, 28.603253754000036 ], [ -82.210389503999977, 28.603157476000035 ], [ -82.210385919999965, 28.603036491000069 ], [ -82.210375640999985, 28.602912566000043 ], [ -82.210348667999938, 28.602800471000023 ], [ -82.210318331999986, 28.602679528000067 ], [ -82.21028132899994, 28.602567448000059 ], [ -82.210217537999938, 28.602437705000057 ], [ -82.210147099999972, 28.602328627000077 ], [ -82.210076663999985, 28.602219551000076 ], [ -82.209979488999977, 28.602116417000047 ], [ -82.209895742999947, 28.602039821000062 ], [ -82.209828749999986, 28.601980906000051 ], [ -82.209781866999947, 28.60194556600004 ], [ -82.209694805999959, 28.601883730000054 ], [ -82.209587681999949, 28.601821926000071 ], [ -82.20950733799998, 28.601774834000025 ], [ -82.209410293999952, 28.601736622000033 ], [ -82.209309892999954, 28.601692512000056 ], [ -82.20924112299997, 28.601668929000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210643482999956, 28.603317295000068 ], [ -82.210690513999964, 28.603325036000058 ], [ -82.210758991999967, 28.603323042000056 ], [ -82.210814613999958, 28.603313512000057 ], [ -82.210863796999945, 28.603294550000044 ], [ -82.210917237999979, 28.603264249000063 ], [ -82.210959955999954, 28.60322263200004 ], [ -82.210998105999977, 28.603171284000041 ], [ -82.211026096999944, 28.603122432000077 ], [ -82.211043103999941, 28.603065747000073 ], [ -82.211089946999948, 28.602946690000067 ], [ -82.211151671999971, 28.602778507000039 ], [ -82.211213380999936, 28.602602769000043 ], [ -82.211260256999935, 28.602500710000072 ], [ -82.211298629999987, 28.602426994000041 ], [ -82.211343415999977, 28.602349491000041 ], [ -82.211396763999971, 28.60227386300005 ], [ -82.211461722999957, 28.602190839000059 ], [ -82.211527040999954, 28.602127136000036 ], [ -82.211604030999979, 28.602056538000056 ], [ -82.211709448999954, 28.601981084000045 ], [ -82.211770585999943, 28.60193332700004 ], [ -82.211856065999939, 28.60187275800007 ], [ -82.211973637999961, 28.601808360000064 ], [ -82.212091226999974, 28.601753407000047 ], [ -82.212206715999969, 28.601717342000029 ], [ -82.212335046999954, 28.601683146000028 ], [ -82.21245700999998, 28.601673512000048 ], [ -82.212559732999978, 28.601675240000077 ], [ -82.212660324999945, 28.601680748000035 ], [ -82.212773770999945, 28.601693791000059 ], [ -82.212852989999988, 28.601712552000038 ], [ -82.212923651999972, 28.601733216000071 ], [ -82.213007180999966, 28.601767080000059 ], [ -82.213118596999948, 28.601834895000025 ], [ -82.213497890999975, 28.602087375000053 ], [ -82.213553599999955, 28.602121282000041 ], [ -82.21360290299998, 28.602162755000052 ], [ -82.213615813999979, 28.60219672900007 ], [ -82.213615877999985, 28.602228836000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210109780999971, 28.607703626000045 ], [ -82.210148518999972, 28.607663982000076 ], [ -82.210262377999982, 28.607559993000052 ], [ -82.210584413999982, 28.607254193000074 ], [ -82.210660044999941, 28.607183598000063 ], [ -82.210717386999988, 28.607140013000048 ], [ -82.210768669999936, 28.607100271000036 ], [ -82.210854179999956, 28.607052924000072 ], [ -82.210939694, 28.607007464000048 ], [ -82.211042328999952, 28.606961977000026 ], [ -82.211123599999951, 28.606935410000062 ], [ -82.211219855999957, 28.606910708000044 ], [ -82.211316134999947, 28.606897337000078 ], [ -82.211425264999946, 28.606889613000078 ], [ -82.211521589999961, 28.606898906000026 ], [ -82.211607207999975, 28.606906326000058 ], [ -82.211814871999934, 28.606941887000062 ], [ -82.212069619999966, 28.606979261000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210109780999971, 28.607703626000045 ], [ -82.209990694999988, 28.607617073000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.212099296999952, 28.606837567000071 ], [ -82.211992253999938, 28.606818849000035 ], [ -82.211752492999949, 28.606785228000035 ], [ -82.211521294999955, 28.606751594000059 ], [ -82.211390736999988, 28.606746132000069 ], [ -82.21129229099995, 28.606746286000032 ], [ -82.211187454999958, 28.606761558000073 ], [ -82.211080507999952, 28.606790053000054 ], [ -82.210990690999949, 28.606824188000076 ], [ -82.210903010999971, 28.60685643100004 ], [ -82.210806798999954, 28.60690379600004 ], [ -82.210742675999938, 28.606943558000069 ], [ -82.210691388999976, 28.606979681000041 ], [ -82.21063109399995, 28.607024125000066 ], [ -82.210565317999965, 28.607079813000041 ], [ -82.210479027999952, 28.60715328200007 ], [ -82.210373064999942, 28.607259530000078 ], [ -82.210027003999983, 28.607581132000064 ], [ -82.209990694999988, 28.607617073000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.208813979999945, 28.607731027000057 ], [ -82.208886835999976, 28.607506227000044 ], [ -82.209332495999945, 28.606280886000036 ], [ -82.209694906999971, 28.605235683000046 ], [ -82.210010849999946, 28.604367607000029 ], [ -82.210267422999948, 28.603644870000039 ], [ -82.210295091999967, 28.60356928300007 ], [ -82.210318497999936, 28.603501256000072 ], [ -82.210333383999966, 28.603454017000047 ], [ -82.210348258999943, 28.603401112000029 ], [ -82.210360977999983, 28.603340656000057 ], [ -82.210377925999978, 28.603253754000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.208752277999963, 28.607914319000031 ], [ -82.208813979999945, 28.607731027000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.208752277999963, 28.607914319000031 ], [ -82.208837811999956, 28.607945585000039 ], [ -82.208889209999938, 28.607962504000056 ], [ -82.208951312999943, 28.607983183000044 ], [ -82.209030544999962, 28.608005724000066 ], [ -82.209101206999946, 28.608024501000045 ], [ -82.209169715999963, 28.608037616000047 ], [ -82.209231797999962, 28.608046963000049 ], [ -82.209308854999961, 28.60805251000005 ], [ -82.209383755999966, 28.608050506000041 ], [ -82.209456512999964, 28.608046616000024 ], [ -82.209557072999985, 28.608033240000054 ], [ -82.20963835699996, 28.608012340000073 ], [ -82.209713215999955, 28.607989561000068 ], [ -82.209783779999952, 28.607959233000031 ], [ -82.209847908999961, 28.60792136200007 ], [ -82.209912033999956, 28.607881602000077 ], [ -82.209984685999984, 28.607824830000027 ], [ -82.210053045999985, 28.60776240000007 ], [ -82.210109780999971, 28.607703626000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.209990694999988, 28.607617073000029 ], [ -82.209849618999954, 28.607704168000055 ], [ -82.209770507999963, 28.607742063000046 ], [ -82.209655027999986, 28.607785680000063 ], [ -82.209537376999947, 28.607814191000045 ], [ -82.209484026999974, 28.607824425000047 ], [ -82.209411285999977, 28.607835868000052 ], [ -82.209344806999979, 28.607835263000027 ], [ -82.209242076999942, 28.607833533000075 ], [ -82.209175721999941, 28.607827970000073 ], [ -82.209081520999973, 28.60781111700004 ], [ -82.208987310999987, 28.60778859900006 ], [ -82.20891236999995, 28.607769828000073 ], [ -82.208813979999945, 28.607731027000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.207412213999987, 28.611009938000052 ], [ -82.207459193999966, 28.61095698400004 ], [ -82.207506169999988, 28.610902143000033 ], [ -82.207565962, 28.610834061000048 ], [ -82.207664123999962, 28.610688485000026 ], [ -82.207747347999941, 28.610563709000076 ], [ -82.207794258999968, 28.610476761000029 ], [ -82.207862488999979, 28.610346342000071 ], [ -82.207902980999961, 28.610259403000043 ], [ -82.207958332999965, 28.610110118000023 ], [ -82.208039230999987, 28.609892802000047 ], [ -82.208343560999936, 28.609023568000055 ], [ -82.208535114999961, 28.608486906000053 ], [ -82.208752277999963, 28.607914319000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.205278039999939, 28.610807325000053 ], [ -82.20543429199995, 28.610816531000069 ], [ -82.205654727999956, 28.610814309000034 ], [ -82.205845204999946, 28.610814020000078 ], [ -82.206275374999962, 28.610809589000041 ], [ -82.206675600999972, 28.610814645000062 ], [ -82.206958131999954, 28.610827435000033 ], [ -82.20713154799995, 28.610857388000056 ], [ -82.207210760999942, 28.610870487000057 ], [ -82.207275011999968, 28.610893053000041 ], [ -82.207335, 28.610925068000029 ], [ -82.207375728999978, 28.610959001000026 ], [ -82.207412213999987, 28.611009938000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16766781299998, 28.575887464000061 ], [ -82.168216737999956, 28.57590095200004 ], [ -82.16837405299998, 28.575917759000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16766781299998, 28.575887464000061 ], [ -82.167438641, 28.574764454000046 ], [ -82.167442577999964, 28.57465564000006 ], [ -82.167435902999955, 28.574332845000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.167435902999955, 28.574332845000072 ], [ -82.167760493999936, 28.57433648500006 ], [ -82.16845991699995, 28.57429686200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.167435902999955, 28.574332845000072 ], [ -82.167429665999975, 28.574285702000054 ], [ -82.167427535999934, 28.574238554000033 ], [ -82.167421321999939, 28.574205918000075 ], [ -82.167398652999964, 28.574160609000046 ], [ -82.167382185999941, 28.574140681000074 ], [ -82.167366767999965, 28.574119876000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16539544699998, 28.574099809000074 ], [ -82.165531752999982, 28.574087902000031 ], [ -82.165612205999935, 28.574080465000065 ], [ -82.165721252999958, 28.574073288000079 ], [ -82.165870192999989, 28.574061366000024 ], [ -82.165971283999966, 28.574068286000056 ], [ -82.166136219999942, 28.574079825000069 ], [ -82.166277217999948, 28.57409139300006 ], [ -82.166496723999956, 28.574114568000027 ], [ -82.166683667999962, 28.574114338000072 ], [ -82.166829531999952, 28.574117786000045 ], [ -82.166998006999961, 28.574130273000037 ], [ -82.167127435999987, 28.574133740000036 ], [ -82.167230145999952, 28.574128173000076 ], [ -82.167366767999965, 28.574119876000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165258500999983, 28.57582878900007 ], [ -82.165281597999979, 28.575714289000075 ], [ -82.165304770999967, 28.575649686000077 ], [ -82.165341162999937, 28.575532235000026 ], [ -82.165370954999958, 28.57544708000006 ], [ -82.165433882999935, 28.575288504000071 ], [ -82.165490172999966, 28.575138742000036 ], [ -82.165519881999955, 28.575000752000051 ], [ -82.165549373999966, 28.574724811000067 ], [ -82.165555835999953, 28.574604461000035 ], [ -82.165535738999949, 28.574510561000068 ], [ -82.165478924999945, 28.574325715000043 ], [ -82.16539544699998, 28.574099809000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165258500999983, 28.57582878900007 ], [ -82.165579075999972, 28.575836701000071 ], [ -82.165928342999962, 28.575852595000072 ], [ -82.166339265999966, 28.575882922000062 ], [ -82.166813857999955, 28.57590228600003 ], [ -82.16723090499994, 28.57590721400004 ], [ -82.167479458999935, 28.575892400000043 ], [ -82.16766781299998, 28.575887464000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16451690699995, 28.575756310000031 ], [ -82.165058943999952, 28.57579381000005 ], [ -82.165258500999983, 28.57582878900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165250637999975, 28.577775575000032 ], [ -82.165250476999972, 28.577672258000064 ], [ -82.165247269999952, 28.577152562000038 ], [ -82.165246737999951, 28.576812084000039 ], [ -82.165242564999971, 28.576269082000067 ], [ -82.165258500999983, 28.57582878900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165250637999975, 28.577775575000032 ], [ -82.168295126999965, 28.577835105000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165224624999951, 28.581557038000028 ], [ -82.166180202999954, 28.581585928000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165224624999951, 28.581557038000028 ], [ -82.165228754999987, 28.581476257000077 ], [ -82.165228658999979, 28.58141426800006 ], [ -82.165232639999942, 28.58123768300004 ], [ -82.165241929999979, 28.580373559000066 ], [ -82.165240572999949, 28.579505691000065 ], [ -82.165257062999956, 28.57916378300007 ], [ -82.16524517199997, 28.578363555000067 ], [ -82.165250637999975, 28.577775575000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165187806999938, 28.585233316000028 ], [ -82.165194019999944, 28.585122476000038 ], [ -82.165195977999986, 28.585013521000064 ], [ -82.165216721999968, 28.584669729000041 ], [ -82.165226916999984, 28.584384185000033 ], [ -82.165232880999952, 28.584115551000025 ], [ -82.165225715999952, 28.583615877000057 ], [ -82.165210360999936, 28.583322850000059 ], [ -82.16519944099997, 28.583144405000041 ], [ -82.165205560999937, 28.582975332000046 ], [ -82.165208741999948, 28.582652005000057 ], [ -82.165213245999951, 28.582445584000027 ], [ -82.165248724999969, 28.581998457000054 ], [ -82.165224624999951, 28.581557038000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110561175999976, 28.663096713000073 ], [ -82.110558475999937, 28.663394320000066 ], [ -82.110553752999976, 28.663793652000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110583347999977, 28.661257918000047 ], [ -82.110569319999968, 28.662243748000037 ], [ -82.110561175999976, 28.663096713000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110583347999977, 28.661257918000047 ], [ -82.110582205999947, 28.660330558000055 ], [ -82.110598365999977, 28.659314761000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110607399999935, 28.657624519000024 ], [ -82.110607301999949, 28.657531517000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110557780999955, 28.664167895000048 ], [ -82.110540627999967, 28.664896429000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112267635999956, 28.66380153800003 ], [ -82.112259343999938, 28.663876145000074 ], [ -82.112247105999984, 28.663986282000053 ], [ -82.112230428999965, 28.664169111000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112383749999935, 28.663092348000077 ], [ -82.112359676999972, 28.663325292000025 ], [ -82.112317016999953, 28.663796454000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112753943999962, 28.66126941400006 ], [ -82.112627053999972, 28.661627926000051 ], [ -82.112542685999983, 28.662065052000059 ], [ -82.112454525999965, 28.662563402000046 ], [ -82.112391307999985, 28.662946090000048 ], [ -82.112383677999958, 28.663024324000048 ], [ -82.112383749999935, 28.663092348000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111681901999987, 28.661254577000079 ], [ -82.110583347999977, 28.661257918000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112753943999962, 28.66126941400006 ], [ -82.111681901999987, 28.661254577000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111681901999987, 28.661254577000079 ], [ -82.111669254999981, 28.662057273000073 ], [ -82.111668765, 28.662958379000031 ], [ -82.111666498999966, 28.663094429000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111666498999966, 28.663094429000068 ], [ -82.111669878999976, 28.663795199000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111666498999966, 28.663094429000068 ], [ -82.110561175999976, 28.663096713000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112383749999935, 28.663092348000077 ], [ -82.111666498999966, 28.663094429000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112230428999965, 28.664169111000035 ], [ -82.111662815999978, 28.664167938000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111662815999978, 28.664167938000048 ], [ -82.110557780999955, 28.664167895000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111669878999976, 28.663795199000049 ], [ -82.111667496999985, 28.664036137000039 ], [ -82.111662815999978, 28.664167938000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111658772999988, 28.664901326000063 ], [ -82.111055523999937, 28.664896008000028 ], [ -82.110540627999967, 28.664896429000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111662815999978, 28.664167938000048 ], [ -82.111658772999988, 28.664901326000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110553752999976, 28.663793652000038 ], [ -82.110557780999955, 28.664167895000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112267635999956, 28.66380153800003 ], [ -82.112013121999951, 28.663799409000035 ], [ -82.111669878999976, 28.663795199000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111669878999976, 28.663795199000049 ], [ -82.110553752999976, 28.663793652000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107921157999954, 28.664152021000064 ], [ -82.106947483999988, 28.664150652000046 ], [ -82.10691735499995, 28.664148019000038 ], [ -82.106890232999945, 28.664140069000041 ], [ -82.106857081999976, 28.664129467000066 ], [ -82.106823930999951, 28.664116206000074 ], [ -82.106770275999963, 28.664089412000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106770275999963, 28.664089412000067 ], [ -82.106755834999944, 28.664108554000052 ], [ -82.106729351999945, 28.664136210000038 ], [ -82.106705270999953, 28.664157486000079 ], [ -82.106678783999939, 28.664180891000058 ], [ -82.106654699999979, 28.664197915000045 ], [ -82.106623387999946, 28.664219198000069 ], [ -82.106585142999961, 28.66424571500005 ], [ -82.106560767999952, 28.664261762000024 ], [ -82.10652964999997, 28.66428385200004 ], [ -82.106507784999962, 28.664302193000026 ], [ -82.106484956999964, 28.664321980000068 ], [ -82.106468006999989, 28.664339679000079 ], [ -82.106452599999955, 28.664356018000035 ], [ -82.106437192999977, 28.664375077000045 ], [ -82.106420245999971, 28.664395498000033 ], [ -82.106409466999935, 28.66441319200004 ], [ -82.106400226999938, 28.66442952500006 ], [ -82.106389447999959, 28.664447220000056 ], [ -82.106378670999959, 28.66446763600004 ], [ -82.10636789199998, 28.664485330000048 ], [ -82.106360195999969, 28.664501662000077 ], [ -82.10635095799995, 28.66451799500004 ], [ -82.106343263999975, 28.664537048000057 ], [ -82.106335571999978, 28.664558821000071 ], [ -82.106329423999966, 28.66457923400003 ], [ -82.106324824999945, 28.664607807000039 ], [ -82.106321761999936, 28.664629577000028 ], [ -82.106318700999964, 28.664654069000051 ], [ -82.106317180999952, 28.664674477000062 ], [ -82.106317200999968, 28.664694884000028 ], [ -82.10631876399998, 28.664716650000059 ], [ -82.106317831999945, 28.664746795000042 ], [ -82.106317290999982, 28.664783316000069 ], [ -82.106317335999961, 28.664828212000032 ], [ -82.106317660999935, 28.664890630000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106880398999976, 28.663355313000068 ], [ -82.106880817, 28.663768069000071 ], [ -82.106880878999959, 28.663829185000054 ], [ -82.106874901999959, 28.66387701900004 ], [ -82.10686590499995, 28.66391688300007 ], [ -82.106850882999936, 28.663956754000026 ], [ -82.106832846999964, 28.663996626000028 ], [ -82.106811189999974, 28.664031983000029 ], [ -82.106791942999962, 28.664063885000076 ], [ -82.106770275999963, 28.664089412000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109294703999979, 28.663378735000038 ], [ -82.109076653999978, 28.663374818000079 ], [ -82.108760317999952, 28.663369758000044 ], [ -82.108212013999946, 28.663370197000063 ], [ -82.107920345999958, 28.663367117000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106880398999976, 28.663355313000068 ], [ -82.106239604999985, 28.663345820000075 ], [ -82.105704301999936, 28.663343947000044 ], [ -82.105478227999981, 28.663341832000071 ], [ -82.105161192999958, 28.663329472000044 ], [ -82.104940313999975, 28.663326206000079 ], [ -82.104887050999935, 28.663333123000029 ], [ -82.104849380999951, 28.663342320000027 ], [ -82.104798732999939, 28.663365278000072 ], [ -82.104751990999944, 28.663397401000054 ], [ -82.104700066999953, 28.663444426000069 ], [ -82.104637754999942, 28.663499480000041 ], [ -82.104576744999974, 28.663555680000059 ], [ -82.104526122999971, 28.663604995000071 ], [ -82.104507965999971, 28.663638242000047 ], [ -82.104498921999948, 28.663689818000023 ], [ -82.104494943999953, 28.664208940000037 ], [ -82.104491928999948, 28.664422097000056 ], [ -82.104488069999945, 28.664537841000026 ], [ -82.10447383099995, 28.66459171200006 ], [ -82.104456987999981, 28.664639856000065 ], [ -82.104431050999949, 28.664689152000051 ], [ -82.104410315999985, 28.664743028000032 ], [ -82.104394787999979, 28.664807214000064 ], [ -82.104393568999967, 28.664889075000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106894219999958, 28.662130336000075 ], [ -82.106882793999944, 28.662746813000069 ], [ -82.106880263999983, 28.66322245300006 ], [ -82.106880398999976, 28.663355313000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110607399999935, 28.657624519000024 ], [ -82.109991542999978, 28.657624358000078 ], [ -82.109523722999938, 28.657624737000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109523722999938, 28.657624737000049 ], [ -82.108484462999968, 28.657617264000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108484462999968, 28.657617264000066 ], [ -82.108489949999978, 28.656847361000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108489949999978, 28.656847361000075 ], [ -82.108492515999956, 28.65629070600005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110607301999949, 28.657531517000052 ], [ -82.110603257999969, 28.657265801000051 ], [ -82.110591755999963, 28.657069842000055 ], [ -82.110565207999969, 28.656890504000046 ], [ -82.110521157999983, 28.656671245000041 ], [ -82.110467582999945, 28.656480199000043 ], [ -82.110407749, 28.656308544000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109528638999961, 28.65631202700007 ], [ -82.108492515999956, 28.65629070600005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110407749, 28.656308544000069 ], [ -82.110357522999948, 28.656316894000042 ], [ -82.11030415099998, 28.656319706000033 ], [ -82.109528638999961, 28.65631202700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110407749, 28.656308544000069 ], [ -82.110477942999978, 28.656298352000078 ], [ -82.110522123999942, 28.656273501000044 ], [ -82.110562284999958, 28.656248654000024 ], [ -82.110594395999954, 28.656211407000058 ], [ -82.110610437999981, 28.656179490000056 ], [ -82.110622454999941, 28.656142260000024 ], [ -82.110626431999947, 28.656101490000026 ], [ -82.110632372999987, 28.656018182000025 ], [ -82.110637655999938, 28.655309205000037 ], [ -82.110639388999971, 28.655045112000039 ], [ -82.110642881999979, 28.654545284000051 ], [ -82.110644668999953, 28.65443364500004 ], [ -82.110646653999936, 28.654309548000072 ], [ -82.110638492999954, 28.654190802000073 ], [ -82.110626353999976, 28.654112825000027 ], [ -82.110604202, 28.654066760000035 ], [ -82.110570008999957, 28.654033112000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108497702999955, 28.649411840000027 ], [ -82.10849778499994, 28.649002630000041 ], [ -82.108505079999986, 28.648281245000078 ], [ -82.108504232999962, 28.647458839000024 ], [ -82.108493291999935, 28.646590355000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108497702999955, 28.649411840000027 ], [ -82.109852466999939, 28.649421604000054 ], [ -82.110418651999964, 28.649430977000065 ], [ -82.111040234999962, 28.649424873000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10386909999994, 28.646626302000072 ], [ -82.103649907999966, 28.646633632000032 ], [ -82.10352407299996, 28.64663372900003 ], [ -82.103414464999958, 28.64662665000003 ], [ -82.103272380999954, 28.646616016000053 ], [ -82.103053149999937, 28.64658395500004 ], [ -82.102915122999946, 28.64656973600006 ], [ -82.102492936999965, 28.646544991000042 ], [ -82.102354900999956, 28.646523610000031 ], [ -82.102257430999941, 28.646473551000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110407749, 28.656308544000069 ], [ -82.11032593799996, 28.656136907000075 ], [ -82.110266152999941, 28.656012331000056 ], [ -82.110190655999986, 28.655873922000069 ], [ -82.110102590999986, 28.655727214000024 ], [ -82.110015285999964, 28.655599103000043 ], [ -82.109921791999966, 28.655481011000063 ], [ -82.109852685999954, 28.655391545000043 ], [ -82.109772364999969, 28.655292278000047 ], [ -82.109704732999944, 28.655214414000056 ], [ -82.109621507999975, 28.65513426900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109528638999961, 28.65631202700007 ], [ -82.109530938999967, 28.655484981000029 ], [ -82.109530852999967, 28.655402477000052 ], [ -82.109533386999942, 28.655340598000066 ], [ -82.109533324999973, 28.655281013000035 ], [ -82.109556647999966, 28.655223700000079 ], [ -82.109572199999945, 28.655187019000039 ], [ -82.109621507999975, 28.65513426900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109621507999975, 28.65513426900003 ], [ -82.109527880999963, 28.655042676000051 ], [ -82.109439456999951, 28.654957953000064 ], [ -82.109348443999977, 28.654882398000041 ], [ -82.109254833999955, 28.654806847000032 ], [ -82.109137830999941, 28.65472214600004 ], [ -82.109013034999975, 28.654637452000031 ], [ -82.108888240999988, 28.654557341000043 ], [ -82.108747861999973, 28.654479535000064 ], [ -82.108628281999984, 28.654413170000055 ], [ -82.108558098999936, 28.654381142000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108558098999936, 28.654381142000034 ], [ -82.108459318999962, 28.654330802000061 ], [ -82.108391734999941, 28.654298772000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108391734999941, 28.654298772000061 ], [ -82.108238383999947, 28.654237017000071 ], [ -82.108082439999976, 28.654182140000046 ], [ -82.107931698999948, 28.654131842000027 ], [ -82.107793957999945, 28.65409070100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108391734999941, 28.654298772000061 ], [ -82.108432561999962, 28.654206647000024 ], [ -82.108467, 28.654112460000078 ], [ -82.108498741999938, 28.653959174000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108498741999938, 28.653959174000079 ], [ -82.108388221999974, 28.653953946000058 ], [ -82.108169201999942, 28.653954121000027 ], [ -82.107988361999958, 28.653956037000057 ], [ -82.107901965999986, 28.653963196000063 ], [ -82.107875856999954, 28.653975624000054 ], [ -82.107831304999934, 28.654027188000043 ], [ -82.107793957999945, 28.65409070100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107793957999945, 28.65409070100003 ], [ -82.107671295999978, 28.654060317000074 ], [ -82.107538243999954, 28.654031089000057 ], [ -82.107394803999966, 28.654007368000066 ], [ -82.107247209999969, 28.653985485000078 ], [ -82.107064279999975, 28.653961795000043 ], [ -82.106829397999945, 28.653949146000059 ], [ -82.106652724999947, 28.653945620000059 ], [ -82.106469815999958, 28.653943930000025 ], [ -82.106155749999971, 28.653940734000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105840072999968, 28.656049162000045 ], [ -82.105817170999956, 28.656010680000065 ], [ -82.105790033999938, 28.655895197000063 ], [ -82.105782329999954, 28.655788942000072 ], [ -82.105775278999943, 28.655691701000023 ], [ -82.10577512499998, 28.655537697000057 ], [ -82.105774158999964, 28.65457516400005 ], [ -82.10577144399997, 28.653940810000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106553427999984, 28.656073883000033 ], [ -82.106417873999987, 28.656021210000063 ], [ -82.10602503399997, 28.656021518000045 ], [ -82.105933587999971, 28.656030756000064 ], [ -82.105840072999968, 28.656049162000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10588030699995, 28.656787990000055 ], [ -82.105863248999981, 28.656358989000069 ], [ -82.105863064999937, 28.656175649000033 ], [ -82.105840072999968, 28.656049162000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106663911999988, 28.656785543000069 ], [ -82.10588030699995, 28.656787990000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106660580999971, 28.657601407000072 ], [ -82.105895668999949, 28.657596506000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105895668999949, 28.657596506000061 ], [ -82.10588030699995, 28.656787990000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105895668999949, 28.657596506000061 ], [ -82.104480163999938, 28.657584772000064 ], [ -82.104286859999945, 28.657584921000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104286859999945, 28.657584921000023 ], [ -82.103674196999975, 28.657573702000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103646586999957, 28.658561467000027 ], [ -82.103674196999975, 28.657573702000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103674196999975, 28.657573702000036 ], [ -82.103300054999977, 28.657571697000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103300054999977, 28.657571697000037 ], [ -82.102262171999939, 28.657550517000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100211372999979, 28.659464263000075 ], [ -82.100211175999959, 28.659257731000025 ], [ -82.100210637999965, 28.658691432000069 ], [ -82.100188854999942, 28.657524015000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100248006999948, 28.661192777000053 ], [ -82.100211372999979, 28.659464263000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100248059999956, 28.661247765000041 ], [ -82.100248007999937, 28.661192773000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09600104499998, 28.65931340000003 ], [ -82.09599917099996, 28.65754146300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100188854999942, 28.657524015000035 ], [ -82.09618932799998, 28.657540087000029 ], [ -82.09599917099996, 28.65754146300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.101274107999984, 28.663544371000057 ], [ -82.101275777999945, 28.664091804000066 ], [ -82.101276021, 28.664344871000026 ], [ -82.10127098199996, 28.664756412000031 ], [ -82.101276668999958, 28.664884017000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.101274107999984, 28.663544371000057 ], [ -82.100244276999945, 28.663572756000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102055726999936, 28.663559528000064 ], [ -82.101274107999984, 28.663544371000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10577144399997, 28.653940810000051 ], [ -82.104301843999963, 28.653930165000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104301843999963, 28.653930165000077 ], [ -82.103316119999988, 28.653921814000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103316119999988, 28.653921814000057 ], [ -82.102281344999938, 28.653915377000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058803055999988, 28.577194011000074 ], [ -82.054717930999971, 28.577212862000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054717930999971, 28.577212862000067 ], [ -82.054163794999965, 28.577210639000043 ], [ -82.052641535999953, 28.577217656000073 ], [ -82.051390186999981, 28.577218136000056 ], [ -82.048511490999942, 28.577203638000071 ], [ -82.047025147999989, 28.577204161000054 ], [ -82.046725524999943, 28.577193892000025 ], [ -82.046470945999943, 28.577173008000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046538017999978, 28.599169352000047 ], [ -82.04653897999998, 28.599013580000076 ], [ -82.046530296999947, 28.59730083900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046521355999971, 28.600887300000068 ], [ -82.046521233999954, 28.600610586000073 ], [ -82.046525322999969, 28.600007190000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045362366999939, 28.602729148000037 ], [ -82.045342026999947, 28.602337523000074 ], [ -82.045436953999967, 28.601775332000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044373997999969, 28.602757956000062 ], [ -82.04240127199995, 28.602769269000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042395057999954, 28.597336288000065 ], [ -82.042386936999947, 28.597208120000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046530296999947, 28.59730083900007 ], [ -82.042395057999954, 28.597336288000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042386936999947, 28.597208120000062 ], [ -82.042371593999974, 28.595379441000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042371593999974, 28.595379441000034 ], [ -82.041173503999971, 28.59537928900005 ], [ -82.04054950799997, 28.595385040000053 ], [ -82.039925496999956, 28.595351849000053 ], [ -82.038498986999969, 28.595358289000046 ], [ -82.03736192599996, 28.595349400000032 ], [ -82.036386559999983, 28.595349665000072 ], [ -82.035819289999949, 28.595366112000079 ], [ -82.035268489999964, 28.595357418000049 ], [ -82.035035673999971, 28.595414469000048 ], [ -82.034816617, 28.595442146000039 ], [ -82.034670578999965, 28.595460597000056 ], [ -82.034547487999987, 28.595469559000037 ], [ -82.034403946999987, 28.595469596000044 ], [ -82.034273754999958, 28.595460790000061 ], [ -82.034096827999974, 28.595443157000034 ], [ -82.033893193999972, 28.595419639000056 ], [ -82.033702910999978, 28.595396116000074 ], [ -82.033572719999938, 28.59538436400004 ], [ -82.03339912499996, 28.595354945000054 ], [ -82.033218859999977, 28.595337311000037 ], [ -82.032921765999959, 28.595337384000061 ], [ -82.032698105999941, 28.595331545000079 ], [ -82.032431054999961, 28.595334556000068 ], [ -82.031706679999957, 28.595343565000064 ], [ -82.031079107999972, 28.595346658000039 ], [ -82.030561693999971, 28.595343828000068 ], [ -82.029970844, 28.595349854000062 ], [ -82.028071432, 28.595332582000026 ], [ -82.027063310999949, 28.595332787000075 ], [ -82.026432403999934, 28.595344696000041 ], [ -82.026038503999985, 28.595356558000049 ], [ -82.025921671999981, 28.59536836500007 ], [ -82.02584490299995, 28.595403734000058 ], [ -82.025804852999954, 28.595430257000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046388413999978, 28.588099349000061 ], [ -82.042308982999941, 28.588112429000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042371593999974, 28.595379441000034 ], [ -82.042379269999969, 28.59487303800006 ], [ -82.04232725199995, 28.591405031000079 ], [ -82.042290127999934, 28.591054123000049 ], [ -82.04232013799998, 28.589923302000045 ], [ -82.042306608, 28.588694764000024 ], [ -82.042308982999941, 28.588112429000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054723579999973, 28.588125923000064 ], [ -82.05353483, 28.588111723000054 ], [ -82.050419082999952, 28.588100451000059 ], [ -82.048630165999953, 28.588101104000032 ], [ -82.046388413999978, 28.588099349000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040274685999975, 28.587454756000056 ], [ -82.040314621999983, 28.585800103000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03606358899998, 28.58811173600003 ], [ -82.036083833999953, 28.586559216000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029964781999979, 28.584421686000042 ], [ -82.027262416999974, 28.584402300000079 ], [ -82.025791054999956, 28.584390851000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025791054999956, 28.584390851000023 ], [ -82.022746395999945, 28.584364014000073 ], [ -82.021766966999962, 28.584356350000064 ], [ -82.021097764, 28.584352544000069 ], [ -82.020060721999982, 28.584356613000068 ], [ -82.018558337999934, 28.584345092000035 ], [ -82.017286407999961, 28.584337436000055 ], [ -82.01525664199994, 28.584337679000043 ], [ -82.013457328999948, 28.584333958000059 ], [ -82.011449723999988, 28.584349790000033 ], [ -82.009326886999986, 28.584330393000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000962089999973, 28.609974200000067 ], [ -82.000495251999951, 28.610011487000065 ], [ -82.000090751999949, 28.610016378000068 ], [ -81.999653003999981, 28.610016377000079 ], [ -81.999309456999981, 28.610011487000065 ], [ -81.999065646999952, 28.609996815000045 ], [ -81.996876911999948, 28.610001672000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009326886999986, 28.584330393000073 ], [ -82.009322320999956, 28.582804770000052 ], [ -82.009310127999981, 28.581268599000055 ], [ -82.009313616999975, 28.580788594000069 ], [ -82.00931709799994, 28.580233784000029 ], [ -82.009313467999959, 28.57910234600007 ], [ -82.009316940999952, 28.578450911000061 ], [ -82.009306272999936, 28.577596877000076 ], [ -82.009306255999945, 28.577403629000059 ], [ -82.009306248999962, 28.577319473000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012741865999942, 28.577210101000048 ], [ -82.012424083999974, 28.577253767000059 ], [ -82.012063929999954, 28.577297437000027 ], [ -82.011664934999942, 28.577331757000024 ], [ -82.011463670999944, 28.577353593000055 ], [ -82.011280062999958, 28.577369193000038 ], [ -82.011184728999979, 28.577381669000033 ], [ -82.011064676999979, 28.577387912000063 ], [ -82.010835164999946, 28.577391048000038 ], [ -82.010573870999963, 28.577378601000078 ], [ -82.010196054999938, 28.577359929000067 ], [ -82.009733498999935, 28.577338144000066 ], [ -82.009465010999975, 28.57732462000007 ], [ -82.009306248999962, 28.577319473000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009306248999962, 28.577319473000045 ], [ -82.009280023999963, 28.576822846000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025813458999949, 28.576899672000025 ], [ -82.025809900999946, 28.576787464000063 ], [ -82.025823976999959, 28.576587979000067 ], [ -82.025827442999969, 28.57632615700004 ], [ -82.025834007999947, 28.576093654000033 ], [ -82.025806376999981, 28.575908592000076 ], [ -82.025773185999981, 28.575543336000067 ], [ -82.025740021, 28.575290092000046 ], [ -82.025723426999946, 28.57510989900004 ], [ -82.025755183999934, 28.574911637000071 ], [ -82.025764298999945, 28.574755209000045 ], [ -82.025767418999976, 28.574520599000039 ], [ -82.025783903999979, 28.574247866000064 ], [ -82.025789346999943, 28.573945914000035 ], [ -82.025783794999938, 28.573799810000025 ], [ -82.025783726999975, 28.573522210000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028587224999967, 28.57683823900004 ], [ -82.028289275999953, 28.576745767000034 ], [ -82.028151348999984, 28.57674092700006 ], [ -82.027914119999934, 28.576765326000043 ], [ -82.027682408999965, 28.576794594000035 ], [ -82.027395527999943, 28.57682387400007 ], [ -82.027180364999936, 28.576848268000049 ], [ -82.026876928999968, 28.576862939000023 ], [ -82.026512801999957, 28.576872751000053 ], [ -82.026154196999983, 28.576897171000041 ], [ -82.02597764799998, 28.576897205000023 ], [ -82.025813458999949, 28.576899672000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025791054999956, 28.584390851000023 ], [ -82.02577993999995, 28.584236886000042 ], [ -82.025808145999974, 28.58405921700006 ], [ -82.025815122999973, 28.583713239000076 ], [ -82.025828937999961, 28.582444653000039 ], [ -82.025835638, 28.580961003000027 ], [ -82.025842599999976, 28.580549569000027 ], [ -82.025852937999957, 28.579505403000041 ], [ -82.025852873999952, 28.579246699000066 ], [ -82.02584221799998, 28.57898799700007 ], [ -82.025820935999946, 28.578592154000034 ], [ -82.025813810999978, 28.57833968500006 ], [ -82.025789044999954, 28.578137090000041 ], [ -82.025774885999965, 28.577990598000042 ], [ -82.025785436999968, 28.577825400000052 ], [ -82.025810101, 28.577604095000027 ], [ -82.025820645999943, 28.577404610000031 ], [ -82.025810004999983, 28.577214481000055 ], [ -82.025809966999987, 28.577055518000066 ], [ -82.025813458999949, 28.576899672000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046470945999943, 28.577173008000045 ], [ -82.046466689999988, 28.576552819000028 ], [ -82.046493361999978, 28.574905572000034 ], [ -82.046500141999957, 28.574260368000068 ], [ -82.046510418999958, 28.573546591000024 ], [ -82.046517104999964, 28.57269255500006 ], [ -82.046506253999951, 28.57210346200003 ], [ -82.046487967999951, 28.570666570000071 ], [ -82.046477111999934, 28.570065010000064 ], [ -82.046473388999971, 28.569625526000038 ], [ -82.046465713999964, 28.568229149000047 ], [ -82.046454528999959, 28.566879529000062 ], [ -82.046454221999966, 28.566181340000071 ], [ -82.046443346, 28.565536141000052 ], [ -82.046439606999968, 28.565059254000062 ], [ -82.046425048999936, 28.564064963000078 ], [ -82.046420874999967, 28.562600012000075 ], [ -82.046420641999987, 28.562535840000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048883513999954, 28.606423779000067 ], [ -82.049607556999945, 28.606414165000047 ], [ -82.049671119999971, 28.606386090000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046573687999967, 28.606320611000058 ], [ -82.046542025999941, 28.60628272200006 ], [ -82.046517027999982, 28.606222013000036 ], [ -82.046499315999938, 28.606103576000066 ], [ -82.046506325999985, 28.605982015000052 ], [ -82.046493705999978, 28.604757423000024 ], [ -82.046482287999936, 28.603716038000073 ], [ -82.046484163999935, 28.603380297000058 ], [ -82.046484006999947, 28.603024270000049 ], [ -82.046491928999956, 28.602693162000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046707066999943, 28.60635248400007 ], [ -82.046740979999981, 28.60636643600003 ], [ -82.046781674999977, 28.606378390000032 ], [ -82.046838505999972, 28.606387098000027 ], [ -82.046993915999963, 28.606396394000058 ], [ -82.047393417999956, 28.60640778800007 ], [ -82.047843247999936, 28.606411619000028 ], [ -82.048747424999988, 28.606415287000061 ], [ -82.048883513999954, 28.606423779000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046707066999943, 28.60635248400007 ], [ -82.046632468999974, 28.606340540000076 ], [ -82.046573687999967, 28.606320611000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048885883999958, 28.606340824000029 ], [ -82.048648670999967, 28.606337010000061 ], [ -82.047505202999957, 28.606325728000058 ], [ -82.047152005999976, 28.606318059000046 ], [ -82.046822340999938, 28.606332495000061 ], [ -82.046707066999943, 28.60635248400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049671119999971, 28.606386090000058 ], [ -82.049607778999984, 28.606359183000052 ], [ -82.049260230999948, 28.60634684200005 ], [ -82.048885883999958, 28.606340824000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051992430999974, 28.607520165000039 ], [ -82.051989900999956, 28.607199906000062 ], [ -82.052001279999956, 28.606562817000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051992430999974, 28.607520165000039 ], [ -82.051018234999958, 28.607513337000057 ], [ -82.050618107999981, 28.607515873000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054699071999949, 28.606351284000027 ], [ -82.053568317999975, 28.606340974000034 ], [ -82.053371938999987, 28.606348204000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054716868999947, 28.607536742000036 ], [ -82.054112000999964, 28.607534385000065 ], [ -82.053366456999981, 28.607528643000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053366456999981, 28.607528643000023 ], [ -82.052837665999959, 28.607521990000066 ], [ -82.051992430999974, 28.607520165000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054696686999989, 28.608703688000048 ], [ -82.054353711999966, 28.608697712000037 ], [ -82.053795945, 28.608697934000077 ], [ -82.053546512999958, 28.608701089000078 ], [ -82.053365148999944, 28.608701758000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053365148999944, 28.608701758000052 ], [ -82.053361195999969, 28.60822526100003 ], [ -82.053366456999981, 28.607528643000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.079517400999976, 28.635604618000059 ], [ -82.079264255999988, 28.635607023000034 ], [ -82.078850011999975, 28.635600497000041 ], [ -82.077501178999967, 28.635600147000048 ], [ -82.076619007999966, 28.635605160000068 ], [ -82.075371175999976, 28.635603604000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075371175999976, 28.635603604000039 ], [ -82.075389579999978, 28.634520752000071 ], [ -82.075393900999984, 28.633410837000042 ], [ -82.075400748999982, 28.632260314000064 ], [ -82.075400532999936, 28.631958021000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058995571999958, 28.652474565000034 ], [ -82.058995424999978, 28.652212315000043 ], [ -82.058995036999988, 28.651518621000037 ], [ -82.058969284999989, 28.651199983000026 ], [ -82.058956387999956, 28.651005417000079 ], [ -82.058962691999966, 28.650844680000034 ], [ -82.058975414999964, 28.65072906000006 ], [ -82.058984781999982, 28.650331450000067 ], [ -82.058968708999942, 28.650170723000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058968708999942, 28.650170723000031 ], [ -82.058338952999975, 28.650170996000043 ], [ -82.056996326999979, 28.650171567000029 ], [ -82.05479812699997, 28.650171685000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05479812699997, 28.650171685000032 ], [ -82.05479489399994, 28.648871602000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05479489399994, 28.648871602000042 ], [ -82.054795075999948, 28.648237013000028 ], [ -82.054796062999969, 28.647184177000042 ], [ -82.054792151999948, 28.646548237000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054792151999948, 28.646548237000047 ], [ -82.054793447999941, 28.646522356000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054768654999975, 28.635604390000026 ], [ -82.054766222999945, 28.634860840000044 ], [ -82.054767811999966, 28.63398193300003 ], [ -82.054761245999941, 28.633153561000029 ], [ -82.054760813999962, 28.632321578000074 ], [ -82.054760621999947, 28.631951607000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054760621999947, 28.631951607000076 ], [ -82.05476024099994, 28.631217982000067 ], [ -82.054759657999966, 28.630833234000079 ], [ -82.054756629999986, 28.629926355000066 ], [ -82.054756055999974, 28.628820953000059 ], [ -82.054752919999942, 28.627704274000052 ], [ -82.054752419999943, 28.626740995000034 ], [ -82.05474929199994, 28.625640106000048 ], [ -82.054746503, 28.625191178000023 ], [ -82.054743667999958, 28.624656299000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054743667999958, 28.624656299000037 ], [ -82.05474066499994, 28.623794764000024 ], [ -82.054740760999948, 28.622994137000035 ], [ -82.054740679999952, 28.622838929000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054740679999952, 28.622838929000068 ], [ -82.054740248999963, 28.622006944000077 ], [ -82.054737752999984, 28.621138865000034 ], [ -82.054737671999987, 28.620981854000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054728224999963, 28.617350319000025 ], [ -82.054737671999987, 28.620981854000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053340507999962, 28.613685157000077 ], [ -82.051966906999951, 28.613685878000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054715405999957, 28.611400140000057 ], [ -82.054720177999968, 28.612585419000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05471476799994, 28.610168085000055 ], [ -82.054715405999957, 28.611400140000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054718118999972, 28.609947964000071 ], [ -82.05471476799994, 28.610168085000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054718118999972, 28.609947964000071 ], [ -82.054717935999975, 28.609596385000032 ], [ -82.054703894999989, 28.609241755000028 ], [ -82.054696686999989, 28.608703688000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054696686999989, 28.608703688000048 ], [ -82.054699993999975, 28.608397965000051 ], [ -82.054717207999943, 28.608190067000066 ], [ -82.054716868999947, 28.607536742000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054716868999947, 28.607536742000036 ], [ -82.054716703999986, 28.607218792000026 ], [ -82.054699838999966, 28.606763885000078 ], [ -82.054699658999937, 28.606416586000023 ], [ -82.054699071999949, 28.606351284000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054717919999973, 28.597260894000044 ], [ -82.054717621999941, 28.596686138000052 ], [ -82.054717445999984, 28.596346786000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054717445999984, 28.596346786000026 ], [ -82.054719054999964, 28.595441239000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054723579999973, 28.588125923000064 ], [ -82.054720065999959, 28.586690253000029 ], [ -82.054716698999982, 28.58553951600004 ], [ -82.05471887799996, 28.584394892000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05471887799996, 28.584394892000034 ], [ -82.054715582999961, 28.583384787000057 ], [ -82.054717614999959, 28.581955229000073 ], [ -82.05471966999994, 28.580794716000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054717930999971, 28.577212862000067 ], [ -82.054714815999944, 28.57654761200007 ], [ -82.054717370999981, 28.57613182800003 ], [ -82.054717149999988, 28.575703816000043 ], [ -82.05471946199998, 28.574817220000057 ], [ -82.054721720999964, 28.573829123000053 ], [ -82.054721535999988, 28.573472038000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049660542999959, 28.61000092300003 ], [ -82.049639839999941, 28.609155693000048 ], [ -82.049639762999959, 28.608993516000055 ], [ -82.04964986799996, 28.608892859000036 ], [ -82.049670126999956, 28.608788318000052 ], [ -82.049674606999986, 28.608700399000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050598728999944, 28.609991915000023 ], [ -82.050614682999935, 28.609380231000046 ], [ -82.05060616999998, 28.609020230000056 ], [ -82.050608352999973, 28.608688370000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050598728999944, 28.609991915000023 ], [ -82.049660542999959, 28.61000092300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05198797099996, 28.609938525000075 ], [ -82.051983370999949, 28.608951970000078 ], [ -82.05199259799997, 28.608698164000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05198797099996, 28.609938525000075 ], [ -82.051982838999947, 28.610073287000034 ], [ -82.051975949999985, 28.610163321000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051975949999985, 28.610163321000073 ], [ -82.050740612999959, 28.610140900000033 ], [ -82.050597104999952, 28.610133785000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054718118999972, 28.609947964000071 ], [ -82.053897047999953, 28.60994217800004 ], [ -82.053355426999985, 28.609941339000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053355426999985, 28.609941339000045 ], [ -82.052622313999962, 28.609941865000053 ], [ -82.05198797099996, 28.609938525000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053355426999985, 28.609941339000045 ], [ -82.053355683999939, 28.609377210000048 ], [ -82.053365148999944, 28.608701758000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053355426999985, 28.609941339000045 ], [ -82.053351155999962, 28.610057941000036 ], [ -82.053346879999935, 28.610172633000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053346879999935, 28.610172633000047 ], [ -82.051975949999985, 28.610163321000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05471476799994, 28.610168085000055 ], [ -82.053713549999941, 28.610168485000031 ], [ -82.053346879999935, 28.610172633000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054715405999957, 28.611400140000057 ], [ -82.053343165999934, 28.611395990000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053346879999935, 28.610172633000047 ], [ -82.053347163999945, 28.610734612000044 ], [ -82.053343048999977, 28.611164699000028 ], [ -82.053343165999934, 28.611395990000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051975949999985, 28.610163321000073 ], [ -82.051972378999949, 28.610828330000061 ], [ -82.05196983899998, 28.611388877000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053343165999934, 28.611395990000062 ], [ -82.052929434999953, 28.611394240000038 ], [ -82.05196983899998, 28.611388877000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05196983899998, 28.611388877000024 ], [ -82.050603013999989, 28.611389394000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050597104999952, 28.610133785000073 ], [ -82.050599936999959, 28.610391836000076 ], [ -82.050600309999936, 28.611170768000079 ], [ -82.050603013999989, 28.611389394000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050603013999989, 28.611389394000071 ], [ -82.050494705999938, 28.611383700000033 ], [ -82.049810205999961, 28.611374395000041 ], [ -82.049680235999972, 28.611370620000059 ], [ -82.049569763999955, 28.611368749000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050603013999989, 28.611389394000071 ], [ -82.050602314999935, 28.611624925000058 ], [ -82.050605933999975, 28.612114744000053 ], [ -82.050603452999951, 28.612586345000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050607364999962, 28.613686348000044 ], [ -82.049585203999982, 28.613689712000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051966906999951, 28.613685878000069 ], [ -82.050607364999962, 28.613686348000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050603452999951, 28.612586345000068 ], [ -82.050607364999962, 28.613686348000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05196983899998, 28.611388877000024 ], [ -82.051967446999981, 28.612580454000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051967446999981, 28.612580454000067 ], [ -82.051966906999951, 28.613685878000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053344901999935, 28.612580078000065 ], [ -82.053345011999966, 28.612797805000071 ], [ -82.053340507999962, 28.613685157000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053343165999934, 28.611395990000062 ], [ -82.053345971999988, 28.611983446000067 ], [ -82.053339342999948, 28.612430998000036 ], [ -82.053344901999935, 28.612580078000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046521355999971, 28.600887300000068 ], [ -82.046168614999942, 28.600883578000037 ], [ -82.045950880999953, 28.600899024000057 ], [ -82.04577233599997, 28.600902929000029 ], [ -82.045576367999956, 28.600895308000077 ], [ -82.045477204999941, 28.600883271000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045436953999967, 28.601775332000045 ], [ -82.045477204999941, 28.600883271000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04240127199995, 28.602769269000078 ], [ -82.04239262699997, 28.601330920000066 ], [ -82.042403535999938, 28.600019005000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044358952999971, 28.600013111000067 ], [ -82.043340118999936, 28.600027559000068 ], [ -82.042403535999938, 28.600019005000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009280023999963, 28.576822846000027 ], [ -82.009033558999988, 28.576782030000061 ], [ -82.008864072999984, 28.576769573000036 ], [ -82.008260286999985, 28.576831950000042 ], [ -82.007931909999968, 28.576853788000051 ], [ -82.007667089999984, 28.576866272000075 ], [ -82.007459073999939, 28.576904978000073 ], [ -82.007278688999975, 28.576934865000055 ], [ -82.007137454999963, 28.576981626000077 ], [ -82.006957381999939, 28.577072026000053 ], [ -82.006681647999983, 28.57723532600005 ], [ -82.00632290599998, 28.577389405000076 ], [ -82.005983556, 28.577509246000034 ], [ -82.005721769, 28.577611965000074 ], [ -82.00553754799995, 28.577663326000049 ], [ -82.005401809999967, 28.577757480000059 ], [ -82.005285466999965, 28.577928664000069 ], [ -82.005256401999986, 28.578390850000062 ], [ -82.005207936999966, 28.578698974000076 ], [ -82.005188570999962, 28.579263868000055 ], [ -82.005178900999965, 28.579785966000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021903945999952, 28.568331543000056 ], [ -82.021863651, 28.568232503000047 ], [ -82.021855008999978, 28.568174092000049 ], [ -82.021849226999962, 28.56804457100003 ], [ -82.02184921099996, 28.567963301000077 ], [ -82.021846239999945, 28.56750362300005 ], [ -82.021837461999951, 28.566792519000046 ], [ -82.021848941999963, 28.566662995000058 ], [ -82.021825869999986, 28.566376017000039 ], [ -82.021779788999936, 28.56611951800005 ], [ -82.021771109999975, 28.565878251000072 ], [ -82.021788303999983, 28.565560792000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024911030999988, 28.564599500000043 ], [ -82.024581962999946, 28.564699115000053 ], [ -82.023182837999968, 28.565132119000054 ], [ -82.022570716999951, 28.565321174000076 ], [ -82.021788303999983, 28.565560792000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026824952999959, 28.564011759000039 ], [ -82.02674901499995, 28.564032092000048 ], [ -82.025888381999948, 28.564300447000051 ], [ -82.024911030999988, 28.564599500000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03369547799997, 28.561890881000068 ], [ -82.033640340999966, 28.561908709000079 ], [ -82.032819347999975, 28.56215953700007 ], [ -82.032050787999935, 28.56239540100006 ], [ -82.030377893999969, 28.562913877000028 ], [ -82.029273359999934, 28.563251387000037 ], [ -82.027913393999938, 28.563674273000061 ], [ -82.026824952999959, 28.564011759000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034173386999953, 28.561746495000079 ], [ -82.03369547799997, 28.561890881000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033544770999981, 28.561501536000037 ], [ -82.033513811999967, 28.561461612000073 ], [ -82.033456675999957, 28.561442713000076 ], [ -82.033399544999952, 28.56143852200006 ], [ -82.033320991999972, 28.561442747000058 ], [ -82.033251963999987, 28.561463779000064 ], [ -82.033092496999984, 28.561533172000054 ], [ -82.032854484999973, 28.561632006000025 ], [ -82.032679978999965, 28.561705734000043 ], [ -82.03248935299996, 28.561784525000064 ], [ -82.032076538999945, 28.561929110000051 ], [ -82.031864547999987, 28.56198826800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031864547999987, 28.56198826800005 ], [ -82.031864494999979, 28.56181422700007 ], [ -82.031860742999982, 28.561705863000043 ], [ -82.031860711999968, 28.561600783000074 ], [ -82.031860653999956, 28.561410324000065 ], [ -82.031875469999989, 28.561200158000076 ], [ -82.031886539999959, 28.56091118300003 ], [ -82.031879009999955, 28.560605793000036 ], [ -82.031886367999959, 28.560343089000071 ], [ -82.031893735999972, 28.560106656000073 ], [ -82.031875082999989, 28.559916201000078 ], [ -82.031856429999948, 28.559732315000076 ], [ -82.031815474999974, 28.559594405000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031864547999987, 28.56198826800005 ], [ -82.031421974999944, 28.562126289000048 ], [ -82.031087255999978, 28.562234730000057 ], [ -82.030789725999966, 28.56233002700003 ], [ -82.030514510999978, 28.562412185000028 ], [ -82.030179793999935, 28.562537043000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030179793999935, 28.562537043000077 ], [ -82.029952934999983, 28.562635606000072 ], [ -82.029168194999954, 28.562885345000041 ], [ -82.028301627999952, 28.563154798000028 ], [ -82.02809558499996, 28.563216904000058 ], [ -82.028015249999953, 28.563243190000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026824952999959, 28.564011759000039 ], [ -82.026723866999987, 28.563628516000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028015249999953, 28.563243190000037 ], [ -82.026723866999987, 28.563628516000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026723866999987, 28.563628516000051 ], [ -82.026605502999985, 28.563664016000075 ], [ -82.025768238999945, 28.563923790000047 ], [ -82.024607024999966, 28.564273823000065 ], [ -82.022850240999958, 28.564815357000043 ], [ -82.021674054999949, 28.565171967000026 ], [ -82.02119842999997, 28.565324327000042 ], [ -82.020098886999961, 28.565655476000074 ], [ -82.01925356299995, 28.565915261000043 ], [ -82.018961303999959, 28.566003490000071 ], [ -82.018755981999959, 28.566059043000052 ], [ -82.018556205999971, 28.566094999000029 ], [ -82.018373075999989, 28.566114621000054 ], [ -82.018201042999976, 28.566126075000057 ], [ -82.017958713999974, 28.56612937400007 ], [ -82.017699736999987, 28.566129408000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033544770999981, 28.561501536000037 ], [ -82.033709716999965, 28.561438817000067 ], [ -82.033807510999964, 28.561405777000061 ], [ -82.033913932999951, 28.561370195000052 ], [ -82.033988714999964, 28.561339700000076 ], [ -82.034049108999966, 28.561293972000044 ], [ -82.034089364999943, 28.561245708000058 ], [ -82.034112360999984, 28.561192369000025 ], [ -82.034112340999968, 28.561128877000044 ], [ -82.034109442999977, 28.561065386000053 ], [ -82.034101677999956, 28.560960504000036 ], [ -82.034095998999987, 28.560855844000059 ], [ -82.034084668999981, 28.560731252000039 ], [ -82.034118499999977, 28.560611632000075 ], [ -82.034146653999983, 28.560392337000053 ], [ -82.034152232999986, 28.56018799900005 ], [ -82.034157809999954, 28.559973694000064 ], [ -82.03415765799997, 28.559505215000058 ], [ -82.034157431999972, 28.558802497000045 ], [ -82.034162798999944, 28.557945278000034 ], [ -82.03415651499995, 28.555961720000028 ], [ -82.034153465999964, 28.555263487000047 ], [ -82.034148386999959, 28.553513170000031 ], [ -82.034138850999966, 28.551958221000064 ], [ -82.034134219999942, 28.551595399000064 ], [ -82.034129579999956, 28.551208655000039 ], [ -82.03411572899995, 28.550263726000026 ], [ -82.034111174999964, 28.550144115000023 ], [ -82.034112746999938, 28.550058961000047 ], [ -82.034112707999952, 28.549937076000049 ], [ -82.034141962999968, 28.549859506000075 ], [ -82.034196322999946, 28.549796704000073 ], [ -82.034263238999984, 28.549759753000046 ], [ -82.034351074999961, 28.549741263000044 ], [ -82.034459829999946, 28.549726460000045 ], [ -82.034618129999956, 28.549720961000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034618129999956, 28.549720961000048 ], [ -82.034888777999981, 28.548862875000054 ], [ -82.03496372799998, 28.548676084000078 ], [ -82.034890620999988, 28.548506051000061 ], [ -82.03481749599996, 28.548277381000048 ], [ -82.034717804999957, 28.548042853000027 ], [ -82.034657975999949, 28.547861089000037 ], [ -82.034525081999959, 28.547626570000034 ], [ -82.034398866999936, 28.547509325000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034398866999936, 28.547509325000078 ], [ -82.034206252, 28.547421416000077 ], [ -82.033933952999973, 28.547351118000051 ], [ -82.033714811999971, 28.547374628000057 ], [ -82.033581976999983, 28.547321887000066 ], [ -82.033369444999948, 28.547245709000038 ], [ -82.033050645999936, 28.54712851000005 ], [ -82.032758396999952, 28.546964394000042 ], [ -82.03252592299998, 28.54681785300005 ], [ -82.032246964999956, 28.546683052000049 ], [ -82.03196135099995, 28.546489613000062 ], [ -82.031742120999979, 28.546214064000026 ], [ -82.031655687999944, 28.545873981000057 ], [ -82.031688827999972, 28.54565701100006 ], [ -82.031735282999989, 28.545557315000053 ], [ -82.031841537999981, 28.545563155000025 ], [ -82.032067362999953, 28.545692106000047 ], [ -82.032386165999981, 28.545844490000036 ], [ -82.032671751999942, 28.545944107000025 ], [ -82.032884254999942, 28.545938192000051 ], [ -82.033076844999982, 28.545961601000045 ], [ -82.033249512999987, 28.545985013000063 ], [ -82.03384062899994, 28.546248740000067 ], [ -82.034000050999964, 28.546383569000056 ], [ -82.034119634999968, 28.546535999000071 ], [ -82.034274917999937, 28.546686928000042 ], [ -82.034306184999934, 28.546747117000052 ], [ -82.034294836999948, 28.546791015000053 ], [ -82.034162475999949, 28.546911434000037 ], [ -82.034077588999935, 28.54697040700006 ], [ -82.034069073999945, 28.546995492000065 ], [ -82.034067664999952, 28.547026845000062 ], [ -82.034179612999935, 28.547186869000029 ], [ -82.034312488999944, 28.547368615000039 ], [ -82.034398866999936, 28.547509325000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062960980999947, 28.560719564000067 ], [ -82.062960785999962, 28.560391477000053 ], [ -82.062929496999971, 28.558787884000026 ], [ -82.062904166999942, 28.557639175000077 ], [ -82.062894441999958, 28.557224885000039 ], [ -82.062889378999955, 28.556680866000079 ], [ -82.062882736999939, 28.55630833400005 ], [ -82.062858275999986, 28.555399917000045 ], [ -82.062857573999963, 28.555251266000027 ], [ -82.062867345999962, 28.555183298000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062867345999962, 28.555183298000031 ], [ -82.06287029799995, 28.554988344000037 ], [ -82.062866299999939, 28.554627947000029 ], [ -82.062843269999973, 28.554064144000051 ], [ -82.062838791, 28.553029147000075 ], [ -82.062819117999936, 28.55182393900003 ], [ -82.062817395999957, 28.551476100000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06696378099997, 28.551522059000035 ], [ -82.066835156999957, 28.551500696000062 ], [ -82.066490574999989, 28.551503008000054 ], [ -82.064741265999942, 28.551484904000063 ], [ -82.062817395999957, 28.551476100000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069812645999946, 28.551516339000045 ], [ -82.069108922999987, 28.551518841000075 ], [ -82.068638156999953, 28.551519079000059 ], [ -82.068281443999979, 28.551521402000049 ], [ -82.06696378099997, 28.551522059000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06696378099997, 28.551522059000035 ], [ -82.066963684999962, 28.551369934000036 ], [ -82.066960434999942, 28.550067229000035 ], [ -82.066969981999989, 28.549816540000052 ], [ -82.066967039999952, 28.549002348000045 ], [ -82.066961706999962, 28.548243866000064 ], [ -82.066959202999954, 28.548119596000049 ], [ -82.066956718999961, 28.548029608000036 ], [ -82.066971218999981, 28.547935326000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075245712999958, 28.547871 ], [ -82.074825916999941, 28.547866947000045 ], [ -82.074071265999976, 28.54787378900005 ], [ -82.073670884999956, 28.547874007000075 ], [ -82.073134610999944, 28.547865725000065 ], [ -82.072663859999977, 28.547863836000033 ], [ -82.071343812999942, 28.547858108000071 ], [ -82.070892474999937, 28.547858344000076 ], [ -82.070506654999974, 28.547862830000042 ], [ -82.06979568099996, 28.547867483000061 ], [ -82.069191467999985, 28.547865650000062 ], [ -82.06778649599994, 28.547866359000068 ], [ -82.067175001999942, 28.547862378000048 ], [ -82.067075516999978, 28.54786671200003 ], [ -82.067014859999972, 28.547877455000048 ], [ -82.066990606, 28.547896750000064 ], [ -82.066971218999981, 28.547935326000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075256219999972, 28.555184255000029 ], [ -82.075251158999947, 28.55489071900007 ], [ -82.075253024999938, 28.554102238000041 ], [ -82.075252284999976, 28.553060932000051 ], [ -82.075249244999952, 28.552199605000055 ], [ -82.075248705999968, 28.551441121000039 ], [ -82.075245597999981, 28.550481234000074 ], [ -82.075247639999986, 28.549941295000053 ], [ -82.075247316999935, 28.549487062000026 ], [ -82.075253865999969, 28.548458606000054 ], [ -82.075245712999958, 28.547871 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075256219999972, 28.555184255000029 ], [ -82.07401131599994, 28.555184939000071 ], [ -82.073346394999987, 28.555185300000062 ], [ -82.071611290999954, 28.555184083000029 ], [ -82.071125946999985, 28.555184338000061 ], [ -82.070266888999981, 28.555182643000023 ], [ -82.069682049999983, 28.555182944000023 ], [ -82.068708937999986, 28.555185583000025 ], [ -82.067888709999977, 28.555188139000052 ], [ -82.066948203999971, 28.55518766800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066948203999971, 28.55518766800003 ], [ -82.06502138899998, 28.555186462000052 ], [ -82.064800557999945, 28.555186568000067 ], [ -82.064587776999986, 28.55518249000005 ], [ -82.062867345999962, 28.555183298000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066948203999971, 28.55518766800003 ], [ -82.066964731999974, 28.554703095000036 ], [ -82.066952876999949, 28.553943145000062 ], [ -82.066947974999948, 28.552909338000063 ], [ -82.066951121999978, 28.551888250000047 ], [ -82.06696378099997, 28.551522059000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.083741378999946, 28.555169509000052 ], [ -82.083510083999954, 28.55517132500006 ], [ -82.083168826999952, 28.555171535000056 ], [ -82.082664527999952, 28.555175191000046 ], [ -82.081746921999979, 28.555172398000025 ], [ -82.080681442999946, 28.555173036000042 ], [ -82.079316414999937, 28.555173840000066 ], [ -82.078159930999959, 28.555171163000068 ], [ -82.076631865999957, 28.555182079000076 ], [ -82.075256219999972, 28.555184255000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086529197999937, 28.554499566000061 ], [ -82.086480161999987, 28.554527086000064 ], [ -82.086383137999974, 28.554580285000043 ], [ -82.086249237999937, 28.55464721900006 ], [ -82.086138625, 28.554702140000074 ], [ -82.086026067999967, 28.554753634000065 ], [ -82.085917390999953, 28.554801697000073 ], [ -82.085781537999935, 28.554854920000025 ], [ -82.085653445999981, 28.554902994000031 ], [ -82.085550581999939, 28.554939056000023 ], [ -82.085389484999951, 28.554983723000078 ], [ -82.085265263999986, 28.555017227000064 ], [ -82.085111923999989, 28.555051604000028 ], [ -82.084991577999972, 28.555076534000079 ], [ -82.084861522999972, 28.555096328000047 ], [ -82.084719821999954, 28.555120413000054 ], [ -82.084609179999973, 28.555140194000046 ], [ -82.084473292999974, 28.555153134000079 ], [ -82.084362640999984, 28.555160059000059 ], [ -82.084255871999972, 28.55516698200006 ], [ -82.084149095999976, 28.555167048000044 ], [ -82.084024846999966, 28.555167125000025 ], [ -82.083966607999969, 28.555168875000049 ], [ -82.083875364999983, 28.555170646000079 ], [ -82.083741378999946, 28.555169509000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087981565999939, 28.553070862000027 ], [ -82.087810943999955, 28.553331513000046 ], [ -82.087764407999941, 28.553398393000066 ], [ -82.087750832999973, 28.553415543000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096594247999974, 28.524819380000054 ], [ -82.096425582999984, 28.525023476000058 ], [ -82.09603009999995, 28.525513986000078 ], [ -82.095518735999974, 28.526101425000036 ], [ -82.094853744999966, 28.526902371000062 ], [ -82.094318653999949, 28.527559242000052 ], [ -82.093845601999988, 28.528145789000064 ], [ -82.093139882999935, 28.529011892000028 ], [ -82.092738550999968, 28.529505825000058 ], [ -82.092598946999942, 28.52966875900006 ], [ -82.092474873999947, 28.529833397000061 ], [ -82.092391501999941, 28.529934584000046 ], [ -82.092275183999959, 28.53009064500003 ], [ -82.092156921999958, 28.530244995000032 ], [ -82.09205031099998, 28.530404477000047 ], [ -82.091976648999946, 28.530510801000048 ], [ -82.091903004999949, 28.530641122000077 ], [ -82.091798344999972, 28.530812601000036 ], [ -82.09170919099995, 28.53096178800007 ], [ -82.091614236999987, 28.531136688000061 ], [ -82.09154448399994, 28.531275578000077 ], [ -82.091470861999937, 28.531429895000031 ], [ -82.091399188999958, 28.531594496000025 ], [ -82.091335264999941, 28.531741951000072 ], [ -82.091257021, 28.531935450000049 ], [ -82.091202851999981, 28.532095694000077 ], [ -82.091141621999952, 28.532266593000031 ], [ -82.091093251999951, 28.532444892000058 ], [ -82.091023573999962, 28.532672913000056 ], [ -82.09098105299995, 28.532883775000073 ], [ -82.090936581999983, 28.533084353000049 ], [ -82.090899882999963, 28.533293496000056 ], [ -82.090870935999988, 28.53348892200006 ], [ -82.090847801999985, 28.53367234500007 ], [ -82.090830495999967, 28.533862620000036 ], [ -82.090817025999968, 28.533998043000054 ], [ -82.090809484999966, 28.534258591000025 ], [ -82.090805811999985, 28.534501993000049 ], [ -82.090809969999953, 28.534824240000034 ], [ -82.09081615599996, 28.535245902000042 ], [ -82.090818468999942, 28.535681280000063 ], [ -82.090830898999968, 28.536594881000042 ], [ -82.090839093999989, 28.537097104000054 ], [ -82.090837361999945, 28.537340506000078 ], [ -82.090843908999943, 28.538185548000058 ], [ -82.090862140999945, 28.539073435000034 ], [ -82.090864709999948, 28.539805350000051 ], [ -82.090878860999965, 28.540669757000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087981565999939, 28.553070862000027 ], [ -82.08789999399994, 28.553028062000067 ], [ -82.087865029999989, 28.553004088000023 ], [ -82.087820354999963, 28.552973263000069 ], [ -82.087791207999942, 28.552942429000041 ], [ -82.087775650999959, 28.552909872000043 ], [ -82.087767851999956, 28.552870452000036 ], [ -82.08776004799995, 28.552822463000041 ], [ -82.087760003999961, 28.552769327000078 ], [ -82.087759952999988, 28.552707620000035 ], [ -82.087759386999949, 28.552621324000029 ], [ -82.087759302999984, 28.55252007100006 ], [ -82.08775617799995, 28.552392175000023 ], [ -82.087740963999977, 28.552240305000055 ], [ -82.087719685999957, 28.552056464000032 ], [ -82.087686338999958, 28.551872632000027 ], [ -82.087662101999967, 28.551758072000041 ], [ -82.087631828999974, 28.551643514000034 ], [ -82.087595522999948, 28.551531627000031 ], [ -82.087562248999973, 28.551435725000033 ], [ -82.087522920999959, 28.551318509000055 ], [ -82.087477565999961, 28.551211957000078 ], [ -82.087417096999957, 28.551073440000039 ], [ -82.087341526999978, 28.550921608000067 ], [ -82.08723271599996, 28.550711178000029 ], [ -82.087072513999942, 28.550394199000038 ], [ -82.086927437999975, 28.550119843000061 ], [ -82.086812575999943, 28.549890765000043 ], [ -82.086682610999958, 28.549643044000049 ], [ -82.086579848999975, 28.549447265000026 ], [ -82.086464998999986, 28.549231508000048 ], [ -82.086398498999984, 28.549095659000045 ], [ -82.086335024999983, 28.548970465000025 ], [ -82.086247377999939, 28.548805319000053 ], [ -82.086195989999965, 28.548698769000055 ], [ -82.086150650999969, 28.548608203000072 ], [ -82.086099253999976, 28.548490995000066 ], [ -82.086044843999957, 28.548376454000049 ], [ -82.085996457999954, 28.548251251000067 ], [ -82.085942004999936, 28.548083418000033 ], [ -82.085899642999948, 28.547942223000064 ], [ -82.085866365999948, 28.547840991000044 ], [ -82.085824013999968, 28.547713119000036 ], [ -82.085784634999982, 28.547526626000035 ], [ -82.08575433599998, 28.547374765000029 ], [ -82.085730069999954, 28.547222900000065 ], [ -82.08570580199995, 28.547065707000058 ], [ -82.085693588999959, 28.546889854000028 ], [ -82.085684404999938, 28.546727322000038 ], [ -82.08568125499994, 28.546562122000068 ], [ -82.085681075999958, 28.546340964000024 ], [ -82.085686846999977, 28.546015884000042 ], [ -82.085683607999954, 28.545741437000061 ], [ -82.085680408999963, 28.545517616000041 ], [ -82.085680212999989, 28.545275142000037 ], [ -82.085686080999949, 28.545069967000074 ], [ -82.085685936999937, 28.544891441000061 ], [ -82.085673739999947, 28.544734241000072 ], [ -82.085661579999964, 28.544625002000032 ], [ -82.08564340099997, 28.544531753000058 ], [ -82.085628232999966, 28.544433175000052 ], [ -82.08560400999994, 28.544331936000049 ], [ -82.085567705999949, 28.544217383000046 ], [ -82.085528393999937, 28.544113490000029 ], [ -82.085495124999966, 28.544020252000053 ], [ -82.085455826999976, 28.543932346000076 ], [ -82.085398400999964, 28.54381780600005 ], [ -82.08498736599995, 28.54301070300005 ], [ -82.084660977999988, 28.542390065000063 ], [ -82.084594488999983, 28.542259543000057 ], [ -82.084552146999954, 28.542139664000047 ], [ -82.084494710999934, 28.542009137000036 ], [ -82.084461428999987, 28.541897247000065 ], [ -82.084446278999962, 28.541819984000028 ], [ -82.084428066999976, 28.541684102000033 ], [ -82.084412874999941, 28.541553548000024 ], [ -82.084409759999971, 28.541433645000041 ], [ -82.084403628999951, 28.541311079000025 ], [ -82.084403514999963, 28.541167193000035 ], [ -82.084409431999973, 28.541020639000067 ], [ -82.08441828399998, 28.540770165000026 ], [ -82.08442112299997, 28.540543675000038 ], [ -82.084450344999937, 28.539349935000075 ], [ -82.084456022999973, 28.538902286000052 ], [ -82.084476550999966, 28.538158861000056 ], [ -82.084482450999985, 28.537988326000061 ], [ -82.084488369999974, 28.537844435000068 ], [ -82.084503358999939, 28.537721856000076 ], [ -82.084517196999968, 28.537601262000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062685535999947, 28.739915954000026 ], [ -82.062677683999937, 28.738828323000064 ], [ -82.062690002999943, 28.738754219000043 ], [ -82.062709730999984, 28.73866485800005 ], [ -82.062741829999936, 28.738586387000055 ], [ -82.062814546999959, 28.738516667000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031311252999956, 28.89831705000006 ], [ -82.030310596999982, 28.898328827000057 ], [ -82.030251015999966, 28.89835505800005 ], [ -82.030207992999976, 28.898395853000068 ], [ -82.03020096399996, 28.898416489000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045731291999971, 28.901126023000074 ], [ -82.045646404999957, 28.901128946000028 ], [ -82.045558828999958, 28.901125185000069 ], [ -82.045514322999963, 28.901125200000024 ], [ -82.045485610999947, 28.901126473000033 ], [ -82.045459771999958, 28.901132799000038 ], [ -82.045438239999953, 28.901140386000066 ], [ -82.04542532499994, 28.901154287000054 ], [ -82.045419966999987, 28.901168834000032 ], [ -82.045419977999984, 28.901194391000047 ], [ -82.04541999199995, 28.901225326000031 ], [ -82.045420023999952, 28.901299305000066 ], [ -82.045422568999982, 28.901913180000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062867345999962, 28.555183298000031 ], [ -82.060769706999963, 28.555178839000064 ], [ -82.05909834299996, 28.555179577000047 ], [ -82.057632455999965, 28.555185621000078 ], [ -82.056295058999979, 28.55518281600007 ], [ -82.055425497999977, 28.555171363000056 ], [ -82.054703784999958, 28.555171420000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054703784999958, 28.555171420000079 ], [ -82.053405743999974, 28.55517317400006 ], [ -82.053041518999976, 28.555173316000037 ], [ -82.052725501999987, 28.555175129000077 ], [ -82.052381183999955, 28.555198907000033 ], [ -82.052082781999957, 28.555232803000024 ], [ -82.051792038999963, 28.555283583000062 ], [ -82.051554863999968, 28.555344477000062 ], [ -82.051302395999983, 28.555429022000055 ], [ -82.051095819999944, 28.55547639100007 ], [ -82.050890595999988, 28.555551054000034 ], [ -82.050664697999935, 28.555629062000037 ], [ -82.050435277999952, 28.555725771000027 ], [ -82.050216448999947, 28.555825593000066 ], [ -82.049965861999965, 28.555953481000074 ], [ -82.048896453999987, 28.556511799000077 ], [ -82.047138789999963, 28.557431912000027 ], [ -82.046750545999942, 28.557634646000054 ], [ -82.046330540999975, 28.557865443000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054721535999988, 28.573472038000034 ], [ -82.054724132999979, 28.573134519000064 ], [ -82.05472628299998, 28.571936085000061 ], [ -82.054726005999953, 28.571400459000074 ], [ -82.054731196999967, 28.57072297600007 ], [ -82.054730812999935, 28.569980681000061 ], [ -82.054727790999948, 28.569493971000043 ], [ -82.054716623, 28.567991423000024 ], [ -82.054720176999979, 28.566493379000065 ], [ -82.05471483499997, 28.564532932000077 ], [ -82.05471442299995, 28.563738053000066 ], [ -82.054714001999969, 28.562924064000072 ], [ -82.054713811999989, 28.562555602000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054578738999965, 28.481288645000063 ], [ -82.054629856999952, 28.479966343000058 ], [ -82.054646975999958, 28.479521710000029 ], [ -82.054654031999974, 28.47848824700003 ], [ -82.05467323299996, 28.475727873000039 ], [ -82.054678717999934, 28.47466965600006 ], [ -82.054694223999945, 28.472667019000028 ], [ -82.054701240999975, 28.469990453000037 ], [ -82.054701240999975, 28.469913120000058 ], [ -82.05475477899995, 28.464648563000026 ], [ -82.054784521999977, 28.458717756000055 ], [ -82.054826161999983, 28.453845810000075 ], [ -82.054826161999983, 28.452043368000034 ], [ -82.054849956999988, 28.449949442000047 ], [ -82.054861853999967, 28.44793284900004 ], [ -82.054879699999958, 28.446142305000023 ], [ -82.05489754599995, 28.443649819000029 ], [ -82.054903494999962, 28.442049632000078 ], [ -82.054915391999941, 28.439569044000052 ], [ -82.054933238, 28.437344248000045 ], [ -82.054945134999969, 28.434435357000041 ], [ -82.054945134999969, 28.434078438000029 ], [ -82.054957032999937, 28.43183579600003 ], [ -82.055004621999956, 28.426404676000061 ], [ -82.055046262999952, 28.419896850000043 ], [ -82.055070056999966, 28.417404365000039 ], [ -82.055111697999962, 28.412776313000052 ], [ -82.055153337999968, 28.406667047000042 ], [ -82.055183081999985, 28.404204305000064 ], [ -82.055224721999934, 28.398868363000076 ], [ -82.055242567999983, 28.396786335000058 ], [ -82.055272310999953, 28.392015516000072 ], [ -82.055266362999987, 28.390635428000053 ], [ -82.055284208999979, 28.387667051000051 ], [ -82.055296105999957, 28.384591597000053 ], [ -82.055319900999962, 28.375305751000042 ], [ -82.055367489999981, 28.373782896000023 ], [ -82.055361540999968, 28.373717460000023 ], [ -82.055397232999951, 28.367233429000066 ], [ -82.055397232999951, 28.364508946000058 ], [ -82.055403181999964, 28.36032704400003 ], [ -82.055432924999934, 28.354455724000047 ], [ -82.05544482199997, 28.350279770000043 ], [ -82.055462667999961, 28.346799808000071 ], [ -82.055456719999938, 28.346722475000036 ], [ -82.05544482199997, 28.34581828000006 ], [ -82.055492410999989, 28.339703065000037 ], [ -82.055498359999945, 28.334152973000073 ], [ -82.055522154999949, 28.332189917000051 ], [ -82.055593538999972, 28.329340513000034 ], [ -82.055694665999965, 28.323213401000032 ], [ -82.055694665999965, 28.322392487000059 ], [ -82.055712511999957, 28.32059599400003 ], [ -82.055724408999936, 28.317615719000059 ], [ -82.055730357999948, 28.315777585000035 ], [ -82.055741069999954, 28.314343902000076 ], [ -82.05574820399994, 28.31349330200004 ], [ -82.05576870699997, 28.312989565000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054589186999976, 28.501722292000068 ], [ -82.054606061999948, 28.500822319000065 ], [ -82.054612010999961, 28.500489194000068 ], [ -82.05462390799994, 28.499864586000058 ], [ -82.054629856999952, 28.498686752000026 ], [ -82.054641753999988, 28.497074668000039 ], [ -82.054629856999952, 28.495462583000062 ], [ -82.054629856999952, 28.494391825000037 ], [ -82.05462390799994, 28.492529897000054 ], [ -82.054635805999965, 28.490959453000073 ], [ -82.05462390799994, 28.489537725000048 ], [ -82.054617959999973, 28.488449122000077 ], [ -82.054612010999961, 28.487259391000066 ], [ -82.054588215999956, 28.485920944000043 ], [ -82.054582268, 28.485010800000055 ], [ -82.054600113999982, 28.483107232000066 ], [ -82.054578738999965, 28.481288645000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091889833999971, 28.557399669000063 ], [ -82.092905103999954, 28.557841390000078 ], [ -82.093482623999989, 28.558089878000033 ], [ -82.094894567999972, 28.558700879000071 ], [ -82.095462441999985, 28.558947658000079 ], [ -82.09591635299995, 28.559141672000067 ], [ -82.096895654999969, 28.559567146000063 ], [ -82.097847921999971, 28.559978996000041 ], [ -82.099227079999935, 28.560576338000033 ], [ -82.099988131999964, 28.560903078000024 ], [ -82.100852534999945, 28.561278534000053 ], [ -82.101924593999968, 28.561742257000049 ], [ -82.102158805999977, 28.561844362000045 ], [ -82.102320584999973, 28.561916690000032 ], [ -82.102501676999964, 28.561995395000054 ], [ -82.102663459999974, 28.562069853000025 ], [ -82.102827662999971, 28.562154962000079 ], [ -82.102958069999943, 28.562231574000066 ], [ -82.103110221999941, 28.562331608000079 ], [ -82.103218905999938, 28.562406105000036 ], [ -82.103371084999935, 28.562533840000071 ], [ -82.103513603999943, 28.562655190000044 ], [ -82.103644070999962, 28.562791464000043 ], [ -82.103769706999969, 28.562923481000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103769706999969, 28.562923481000041 ], [ -82.104054479999945, 28.562895563000041 ], [ -82.104657872999951, 28.562892967000039 ], [ -82.106023944999947, 28.562881254000047 ], [ -82.107329705999973, 28.562895143000048 ], [ -82.108105740999974, 28.562923517000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103769706999969, 28.562923481000041 ], [ -82.103825290999964, 28.56299801800003 ], [ -82.103881590999947, 28.563069093000024 ], [ -82.103968441999939, 28.563185557000054 ], [ -82.104055314999982, 28.563321998000049 ], [ -82.104127096999946, 28.563451792000023 ], [ -82.104206455999986, 28.563618204000079 ], [ -82.104270714999984, 28.563767979000033 ], [ -82.10433876899998, 28.563941057000079 ], [ -82.104384173999961, 28.564094178000062 ], [ -82.104422051999961, 28.564260621000074 ], [ -82.104448600999945, 28.564413756000079 ], [ -82.104467581999984, 28.564540261000047 ], [ -82.104475251999986, 28.564670103000026 ], [ -82.104474474999961, 28.564836160000027 ], [ -82.104467394999972, 28.565305618000025 ], [ -82.104448717999958, 28.566584374000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108115891999944, 28.566549769000062 ], [ -82.108432309999955, 28.566551052000079 ], [ -82.109031935999951, 28.566533924000055 ], [ -82.111162744999945, 28.566532196000026 ], [ -82.112331852999944, 28.566524574000027 ], [ -82.112788163999937, 28.566504219000024 ], [ -82.114349507999975, 28.566511235000064 ], [ -82.115518622999957, 28.566510245000075 ], [ -82.116193701999975, 28.566517993000048 ], [ -82.116786218999948, 28.566551364000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.097151125999972, 28.573713487000077 ], [ -82.096862675999944, 28.573675116000061 ], [ -82.096741389999977, 28.573653987000057 ], [ -82.096643269999959, 28.573646779000057 ], [ -82.096394092999958, 28.573638496000058 ], [ -82.096132138999963, 28.57363304200004 ], [ -82.095806290999974, 28.573619172000065 ], [ -82.095483639999941, 28.573610940000037 ], [ -82.095218493999937, 28.573605487000066 ], [ -82.094950156999971, 28.573605675000067 ], [ -82.094643481999981, 28.573600249000037 ], [ -82.094426255999963, 28.573597581000058 ], [ -82.094292087999975, 28.573597674000041 ], [ -82.093927896999958, 28.573575366000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104448717999958, 28.566584374000058 ], [ -82.104441744999974, 28.567933350000033 ], [ -82.104429523999954, 28.568497356000023 ], [ -82.104420381999944, 28.56894292100003 ], [ -82.104401476999954, 28.569208014000026 ], [ -82.104366552999977, 28.569425181000042 ], [ -82.104302907999966, 28.569670568000049 ], [ -82.104239204999942, 28.56985673500003 ], [ -82.104159537999976, 28.570051376000038 ], [ -82.104066908999982, 28.570226078000076 ], [ -82.10398410199997, 28.570369847000052 ], [ -82.103920720999952, 28.570469253000056 ], [ -82.103823305999981, 28.570611659000065 ], [ -82.103706618, 28.570758547000025 ], [ -82.103591757999936, 28.570886527000027 ], [ -82.103435377999972, 28.571036105000076 ], [ -82.103298138999946, 28.571160289000034 ], [ -82.103151305999972, 28.571273200000064 ], [ -82.102937435999934, 28.571431282000049 ], [ -82.102729959999976, 28.571597818000043 ], [ -82.102560781999955, 28.571727665000026 ], [ -82.102397984999982, 28.571849048000047 ], [ -82.102247948999945, 28.571956321000073 ], [ -82.102056432999973, 28.572111564000068 ], [ -82.101890458999947, 28.572252688000049 ], [ -82.101791515999935, 28.572340181000072 ], [ -82.101647890999971, 28.572470008000039 ], [ -82.101520228999959, 28.572591363000072 ], [ -82.101395761999981, 28.572712716000069 ], [ -82.101255338999977, 28.572851 ], [ -82.101111728999967, 28.572997746000055 ], [ -82.100955344999988, 28.573150142000031 ], [ -82.100805352999942, 28.573305352000034 ], [ -82.100629828999956, 28.573485962000063 ], [ -82.100498989999949, 28.573627058000056 ], [ -82.100371816999939, 28.573759363000079 ], [ -82.100221332, 28.573903623000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100221332, 28.573903623000035 ], [ -82.100116279999952, 28.573869494000064 ], [ -82.09988464199995, 28.57383687600003 ], [ -82.098599809999939, 28.573764519000065 ], [ -82.097898436999969, 28.573766957000032 ], [ -82.097572883999987, 28.573776835000047 ], [ -82.097400261999951, 28.573765386000048 ], [ -82.097299741999961, 28.573753885000031 ], [ -82.097227621999934, 28.573736578000023 ], [ -82.097151125999972, 28.573713487000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100221332, 28.573903623000035 ], [ -82.100168801999985, 28.573958182000069 ], [ -82.099950521999972, 28.574187873000028 ], [ -82.099752282999987, 28.57438240700003 ], [ -82.099356639999939, 28.574792572000035 ], [ -82.09887230399994, 28.575284172000067 ], [ -82.098520988999951, 28.575643068000034 ], [ -82.098186734999956, 28.575992908000046 ], [ -82.097978669999975, 28.576204023000059 ], [ -82.097814951999965, 28.576375927000072 ], [ -82.097623313999975, 28.576599311000052 ], [ -82.097486180999965, 28.576763744000061 ], [ -82.097335628999986, 28.576950532000069 ], [ -82.097202004999986, 28.577118743000028 ], [ -82.097093490999953, 28.577279374000057 ], [ -82.096957533999955, 28.577452399000038 ], [ -82.096849020999969, 28.577614403000041 ], [ -82.096733984999958, 28.577799206000066 ], [ -82.096619953999948, 28.577973832000055 ], [ -82.09649535899996, 28.578198702000066 ], [ -82.096362406999958, 28.578418803000034 ], [ -82.096273794999945, 28.578590650000024 ], [ -82.096161335999966, 28.578819777000035 ], [ -82.096082960999979, 28.578985591000048 ], [ -82.095977316999949, 28.579202659000032 ], [ -82.095875088999946, 28.579419722000068 ], [ -82.095776278999949, 28.579642811000042 ], [ -82.095711528999971, 28.579775464000079 ], [ -82.095674053999971, 28.579865903000041 ], [ -82.095643389999964, 28.579935242000033 ], [ -82.095609315, 28.580010611000034 ], [ -82.095524112999954, 28.580179442000031 ], [ -82.095425272999989, 28.580372394000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090291590999982, 28.57831998000006 ], [ -82.090164614999935, 28.578590777000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.095425272999989, 28.580372394000051 ], [ -82.095254479999937, 28.580281159000037 ], [ -82.09498119899996, 28.580121621000046 ], [ -82.094772808999949, 28.579986145000078 ], [ -82.094439203999968, 28.579784825000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.094439203999968, 28.579784825000047 ], [ -82.093142263999937, 28.579787426000053 ], [ -82.092031901999974, 28.579784188000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.094439203999968, 28.579784825000047 ], [ -82.094205748999968, 28.579648998000039 ], [ -82.093929055999979, 28.579489459000058 ], [ -82.093707003999953, 28.579343444000074 ], [ -82.093484968999974, 28.579217018000065 ], [ -82.09332782599995, 28.579114658000037 ], [ -82.093184362999978, 28.579039412000043 ], [ -82.093054577999965, 28.578988267000057 ], [ -82.092904307999959, 28.578934121000032 ], [ -82.092661839999948, 28.57886497100003 ], [ -82.092364742999962, 28.578792843000031 ], [ -82.092026669999939, 28.578714714000057 ], [ -82.091688603999955, 28.578642612000067 ], [ -82.091265162999946, 28.578546457000073 ], [ -82.090937337999947, 28.578471333000039 ], [ -82.090291590999982, 28.57831998000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.095425272999989, 28.580372394000051 ], [ -82.095242854999981, 28.580766002000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.095242854999981, 28.580766002000075 ], [ -82.095154945, 28.580735342000025 ], [ -82.095063207999942, 28.580722624000032 ], [ -82.094985956999949, 28.580714154000077 ], [ -82.094884576999959, 28.580716357000028 ], [ -82.094718015999945, 28.580710080000074 ], [ -82.094505611999978, 28.580725144000041 ], [ -82.094242513999973, 28.580735979000053 ], [ -82.093588376999946, 28.580753478000076 ], [ -82.09348459399996, 28.580766335000078 ], [ -82.09333976299996, 28.580766435000044 ], [ -82.093091118999951, 28.580745298000068 ], [ -82.092905237999958, 28.58072837900005 ], [ -82.09236939699997, 28.58076496800004 ], [ -82.092106289999947, 28.580767278000053 ], [ -82.091910766999945, 28.580765280000037 ], [ -82.091732158999946, 28.580784576000042 ], [ -82.091541480999979, 28.580801751000024 ], [ -82.091396655999972, 28.580808241000057 ], [ -82.091227686999957, 28.580808355000045 ], [ -82.091044228999976, 28.580802085000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091478625999969, 28.584090112000069 ], [ -82.091017951999959, 28.583270757000037 ], [ -82.090807712999947, 28.582975444000056 ], [ -82.090648462, 28.582708511000078 ], [ -82.090353449999952, 28.582427973000051 ], [ -82.090062433999947, 28.582284375000029 ], [ -82.089744274999987, 28.582147643000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055565309999963, 28.597261297000045 ], [ -82.055395401999988, 28.597263014000077 ], [ -82.055216735999977, 28.597260692000077 ], [ -82.054717919999973, 28.597260894000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055575094999938, 28.596342401000072 ], [ -82.055223184999988, 28.596343525000066 ], [ -82.054717445999984, 28.596346786000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055565309999963, 28.597261297000045 ], [ -82.055575094999938, 28.596342401000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062956673999963, 28.588004702000035 ], [ -82.062892051999938, 28.588043789000039 ], [ -82.062840029999961, 28.588074792000043 ], [ -82.062779362999947, 28.588091298000052 ], [ -82.062716358999978, 28.588101626000025 ], [ -82.06264168499996, 28.588109900000063 ], [ -82.062279974999967, 28.588134785000079 ], [ -82.061271805999979, 28.588120825000033 ], [ -82.059435176999955, 28.588119582000047 ], [ -82.058709390999979, 28.588113718000045 ], [ -82.056145793999974, 28.588113305000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062956673999963, 28.588004702000035 ], [ -82.062962011999957, 28.587172526000074 ], [ -82.062961764999955, 28.58675850000003 ], [ -82.062977754999963, 28.586179679000054 ], [ -82.062982290999969, 28.58595927500005 ], [ -82.062979918999986, 28.585893360000057 ], [ -82.062984527999959, 28.58579654600004 ], [ -82.062984483999969, 28.585722391000047 ], [ -82.063003094999942, 28.585625571000037 ], [ -82.063045052999939, 28.585545219000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090565587999947, 28.58462952900004 ], [ -82.090489547999937, 28.584573831000057 ], [ -82.090382551999937, 28.584538274000067 ], [ -82.09020088799997, 28.584509892000028 ], [ -82.089977702999988, 28.584495357000037 ], [ -82.089635145999978, 28.584495583000034 ], [ -82.088722402999963, 28.584437421000075 ], [ -82.088047815999971, 28.584409699000048 ], [ -82.087637605999987, 28.584405941000057 ], [ -82.087295769999969, 28.584410185000024 ], [ -82.085331371999985, 28.584459711000079 ], [ -82.084169113999963, 28.584456415000034 ], [ -82.082819997999934, 28.584469314000046 ], [ -82.081302223999955, 28.584462185000064 ], [ -82.079583882999941, 28.584426998000026 ], [ -82.077414385999987, 28.584488598000064 ], [ -82.076065269999958, 28.584505454000066 ], [ -82.073800138999957, 28.584532534000061 ], [ -82.072287958999937, 28.584545707000075 ], [ -82.071352168999965, 28.584540023000045 ], [ -82.070768759999964, 28.584536209000078 ], [ -82.069559936999951, 28.584530656000027 ], [ -82.069361577999985, 28.584530757000039 ], [ -82.069072198999947, 28.584516485000051 ], [ -82.067844697999988, 28.584494447000054 ], [ -82.067468985999938, 28.584496694000052 ], [ -82.06733363799998, 28.58450294000005 ], [ -82.067247302999988, 28.584517402000074 ], [ -82.067232198999989, 28.584520002000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071256102999939, 28.60636192000004 ], [ -82.071259961999942, 28.605767654000033 ], [ -82.071247596999967, 28.605224569000029 ], [ -82.071245103999956, 28.603492342000038 ], [ -82.071258356999977, 28.602891292000038 ], [ -82.071242624999968, 28.602713917000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062900665999962, 28.610042539000062 ], [ -82.062951703999943, 28.609907184000065 ], [ -82.062980048999975, 28.609816951000028 ], [ -82.06300835899998, 28.609666570000059 ], [ -82.063013848999958, 28.609348289000025 ], [ -82.06300790399996, 28.608904709000058 ], [ -82.063010542999962, 28.60856638100006 ], [ -82.063013208999962, 28.608275669000079 ], [ -82.062998839999977, 28.607992484000079 ], [ -82.06299865799997, 28.607686737000051 ], [ -82.062998396999944, 28.607250671000031 ], [ -82.062997906999954, 28.606428662000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064581017999956, 28.608590703000061 ], [ -82.06458379999998, 28.608495469000047 ], [ -82.064572409999982, 28.608445352000047 ], [ -82.064546818999986, 28.608395241000039 ], [ -82.064489977999983, 28.608325097000034 ], [ -82.064444504999983, 28.608267477000027 ], [ -82.064413227999978, 28.608202334000055 ], [ -82.064410344999942, 28.60813216400004 ], [ -82.064410234999968, 28.607951723000042 ], [ -82.064404272, 28.607488093000029 ], [ -82.064409602999945, 28.606916694000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063764009999943, 28.610049404000051 ], [ -82.063584524999953, 28.610049488000072 ], [ -82.063335178999978, 28.610049855000057 ], [ -82.062900665999962, 28.610042539000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063764009999943, 28.610049404000051 ], [ -82.063763914999981, 28.609893022000051 ], [ -82.063763807999976, 28.609714586000052 ], [ -82.063767889999951, 28.608952722000026 ], [ -82.063767814999949, 28.608828417000041 ], [ -82.063770056999942, 28.608778295000036 ], [ -82.063783656999988, 28.608724156000051 ], [ -82.063815931999955, 28.608682334000036 ], [ -82.063856305999934, 28.608637911000073 ], [ -82.063906268999972, 28.608607813000049 ], [ -82.06395624299995, 28.608593756000062 ], [ -82.064078925999979, 28.608591693000051 ], [ -82.064222055999949, 28.608591625000031 ], [ -82.064415168999972, 28.608591533000038 ], [ -82.064581017999956, 28.608590703000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064572831999953, 28.610065060000068 ], [ -82.063764009999943, 28.610049404000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064572831999953, 28.610065060000068 ], [ -82.064572771999963, 28.609964815000069 ], [ -82.064572708999947, 28.609864569000024 ], [ -82.064574861999972, 28.609670093000034 ], [ -82.064576932999955, 28.609341289000042 ], [ -82.064578995999966, 28.608998450000058 ], [ -82.064581017999956, 28.608590703000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065043128999946, 28.610070850000056 ], [ -82.064572831999953, 28.610065060000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065043128999946, 28.610070850000056 ], [ -82.065051649999987, 28.609152602000052 ], [ -82.065060278999965, 28.608406776000038 ], [ -82.065062422999972, 28.608200269000065 ], [ -82.065078288999985, 28.608138109000038 ], [ -82.065112322999937, 28.608067921000043 ], [ -82.065155444999959, 28.607995725000023 ], [ -82.065209918999983, 28.607911493000074 ], [ -82.065266642999973, 28.607795181000029 ], [ -82.065282457999956, 28.607648816000051 ], [ -82.065284614999939, 28.607466369000065 ], [ -82.065282244999935, 28.607303973000057 ], [ -82.065279890999989, 28.607171651000044 ], [ -82.065282094999986, 28.607061381000051 ], [ -82.065286604999983, 28.607009251000079 ], [ -82.065309281999987, 28.60694107300003 ], [ -82.06533077399996, 28.606909661000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067885580999985, 28.606921764000049 ], [ -82.067733330999943, 28.606867708000038 ], [ -82.067615176999936, 28.606843708000042 ], [ -82.067517489999943, 28.606849771000043 ], [ -82.067437982999934, 28.606861840000079 ], [ -82.067344849999984, 28.606883941000035 ], [ -82.067100334999964, 28.606954403000032 ], [ -82.067038201999935, 28.606972308000024 ], [ -82.066997308999987, 28.60697232800004 ], [ -82.066949593999936, 28.606964332000075 ], [ -82.066872334999971, 28.606940311000074 ], [ -82.066767805999973, 28.606906280000032 ], [ -82.066679190999935, 28.606886275000079 ], [ -82.066608757999973, 28.606880294000064 ], [ -82.06655423899997, 28.606890346000057 ], [ -82.066429314999937, 28.606936519000044 ], [ -82.066367986999978, 28.606956598000068 ], [ -82.066299837999964, 28.606966657000044 ], [ -82.066240764999975, 28.606960671000024 ], [ -82.066177141999958, 28.606944663000036 ], [ -82.066106693999984, 28.606912618000024 ], [ -82.066043054999966, 28.606870547000028 ], [ -82.065961238999989, 28.606824473000074 ], [ -82.06588170699996, 28.606798448000063 ], [ -82.065808998999955, 28.60678645400003 ], [ -82.06566586799994, 28.606784520000076 ], [ -82.065538644999947, 28.606784581000056 ], [ -82.065445516999944, 28.60681469900004 ], [ -82.065391007999949, 28.606840788000056 ], [ -82.065352410999935, 28.606880906000072 ], [ -82.06533077399996, 28.606909661000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067233274999978, 28.610055747000047 ], [ -82.065043128999946, 28.610070850000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067233274999978, 28.610055747000047 ], [ -82.067235264999965, 28.609612663000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067235264999965, 28.609612663000064 ], [ -82.067028515999937, 28.609608756000057 ], [ -82.06681722899998, 28.609612870000035 ], [ -82.06666273999997, 28.609616956000025 ], [ -82.066528693999942, 28.609615016000078 ], [ -82.06648325599997, 28.609617044000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067235264999965, 28.609612663000064 ], [ -82.067234851999956, 28.608963076000066 ], [ -82.067239162999954, 28.608598182000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06797589699994, 28.60958222000005 ], [ -82.067982691999987, 28.609550139000078 ], [ -82.067982657999949, 28.609498012000074 ], [ -82.06798480499998, 28.609303536000027 ], [ -82.067988894999985, 28.608599814000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06797589699994, 28.60958222000005 ], [ -82.067944099999977, 28.609598275000053 ], [ -82.067853225999954, 28.60959789900005 ], [ -82.067623755999989, 28.609596431000057 ], [ -82.067235264999965, 28.609612663000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069692588999942, 28.610039702000051 ], [ -82.068673672999978, 28.610030967000057 ], [ -82.067233274999978, 28.610055747000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071284165999941, 28.610071722000043 ], [ -82.071272099999987, 28.609025923000047 ], [ -82.071268803999942, 28.608349270000076 ], [ -82.071259598999973, 28.607334295000044 ], [ -82.071256400999971, 28.606802998000035 ], [ -82.071256246999951, 28.606574941000076 ], [ -82.07125902599995, 28.606484719000036 ], [ -82.071256102999939, 28.60636192000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075375956999949, 28.610091563000026 ], [ -82.074503529999959, 28.610094050000043 ], [ -82.07341071899998, 28.610086626000054 ], [ -82.072020279999947, 28.610077348000061 ], [ -82.071284165999941, 28.610071722000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013549009999963, 28.758949935000032 ], [ -82.013578023999969, 28.758669862000033 ], [ -82.013607653999941, 28.758448093000027 ], [ -82.01363801499997, 28.75823039900007 ], [ -82.01364760599995, 28.758113226000035 ], [ -82.013646086999984, 28.757882532000053 ], [ -82.013645828999984, 28.757526671000051 ], [ -82.013638343999958, 28.757467870000028 ], [ -82.013602018999961, 28.757182563000072 ], [ -82.013567110999986, 28.75688555000005 ], [ -82.013541631999942, 28.756691388000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013541631999942, 28.756691388000036 ], [ -82.013514487999942, 28.756857989000025 ], [ -82.013467524999953, 28.757214244000068 ], [ -82.013439503999962, 28.757426815000031 ], [ -82.013424397999984, 28.757604943000047 ], [ -82.01342974399995, 28.758018052000068 ], [ -82.013429530999986, 28.75812882200006 ], [ -82.013442097999985, 28.758250420000024 ], [ -82.013471521999975, 28.758455940000033 ], [ -82.013520778999975, 28.758835113000032 ], [ -82.013549009999963, 28.758949935000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013549009999963, 28.758949935000032 ], [ -82.01354943299998, 28.759163516000058 ], [ -82.013551094999968, 28.760000138000066 ], [ -82.013552630999982, 28.760774192000042 ], [ -82.013554047999946, 28.76148700400006 ], [ -82.013555121999957, 28.762027806000049 ], [ -82.013558031999935, 28.763491220000049 ], [ -82.013558480999961, 28.763891293000029 ], [ -82.01355123999997, 28.764030568000067 ], [ -82.013539242999968, 28.764145725000049 ], [ -82.013520810999978, 28.764266131000056 ], [ -82.013497344999962, 28.764381760000049 ], [ -82.013468719999935, 28.764495154000031 ], [ -82.013446095999939, 28.764571964000027 ], [ -82.013414370999953, 28.764667046000056 ], [ -82.013383579999982, 28.764749123000058 ], [ -82.013339950999978, 28.764852950000034 ], [ -82.013292419999971, 28.764953673000036 ], [ -82.013240825999958, 28.765052006000076 ], [ -82.013188927999977, 28.765141904000075 ], [ -82.013131137999949, 28.765233481000053 ], [ -82.013080826999953, 28.765307153000037 ], [ -82.012995639999986, 28.765421314000037 ], [ -82.012913162999951, 28.765521340000078 ], [ -82.012839835999955, 28.765603028000044 ], [ -82.012721063999948, 28.765723205000029 ], [ -82.012252468999975, 28.766135409000071 ], [ -82.011721188999957, 28.766600304000065 ], [ -82.011500533999936, 28.766794210000057 ], [ -82.011371549999978, 28.766907557000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075343874999987, 28.615909792000025 ], [ -82.075120251999977, 28.615903891000073 ], [ -82.074751508999952, 28.615864931000033 ], [ -82.074297421999972, 28.615838069000063 ], [ -82.073915031999945, 28.615811164000036 ], [ -82.073600918999944, 28.615781209000033 ], [ -82.073450684999955, 28.615757190000068 ], [ -82.073245820999944, 28.615724162000049 ], [ -82.073023883999952, 28.61568813100007 ], [ -82.07270976999996, 28.615655161000063 ], [ -82.072523634999982, 28.615652791000059 ], [ -82.072392545999946, 28.615664429000049 ], [ -82.072278924999978, 28.615662562000068 ], [ -82.071774169999969, 28.615628125000057 ], [ -82.071581886999979, 28.615618587000029 ], [ -82.071459512, 28.615595515000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075418849999949, 28.620957560000079 ], [ -82.075401116999956, 28.619284532000052 ], [ -82.07538679299995, 28.617901814000049 ], [ -82.075356561999968, 28.616943099000025 ], [ -82.075343874999987, 28.615909792000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075418849999949, 28.620957560000079 ], [ -82.073848318999978, 28.620958425000026 ], [ -82.072982817999957, 28.620959270000071 ], [ -82.072101953999947, 28.620956730000046 ], [ -82.071221507999951, 28.620950910000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071221507999951, 28.620950910000033 ], [ -82.071226856999942, 28.61996110900003 ], [ -82.071223217999943, 28.619626716000027 ], [ -82.071216159999949, 28.619286299000066 ], [ -82.071212340999978, 28.618686798000056 ], [ -82.071211720999941, 28.617767962000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06296094399994, 28.619178089000059 ], [ -82.062958462999973, 28.619597442000043 ], [ -82.062945103999937, 28.62009633100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063015038999936, 28.617404084000043 ], [ -82.063014037999949, 28.618060595000031 ], [ -82.062971354999945, 28.618315283000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062971354999945, 28.618315283000072 ], [ -82.062955251999938, 28.61879248300005 ], [ -82.06296094399994, 28.619178089000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061874274, 28.617398170000058 ], [ -82.061875589999943, 28.617431295000074 ], [ -82.061881083999936, 28.617486724000059 ], [ -82.061876101999985, 28.618306147000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061876101999985, 28.618306147000055 ], [ -82.062567120999972, 28.618310649000023 ], [ -82.062971354999945, 28.618315283000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061876101999985, 28.618306147000055 ], [ -82.061878940999975, 28.618491721000055 ], [ -82.061873885999944, 28.619185821000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061873885999944, 28.619185821000031 ], [ -82.062032297999963, 28.619180928000048 ], [ -82.062198907999971, 28.619180851000067 ], [ -82.062319081999988, 28.619173566000029 ], [ -82.062515739999981, 28.61917829500004 ], [ -82.062728779999986, 28.619175788000064 ], [ -82.06296094399994, 28.619178089000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061873885999944, 28.619185821000031 ], [ -82.06188237799995, 28.619694340000024 ], [ -82.061885340999936, 28.620091998000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061885340999936, 28.620091998000078 ], [ -82.062158477999958, 28.620094284000061 ], [ -82.062945103999937, 28.62009633100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062945103999937, 28.62009633100007 ], [ -82.062950662999981, 28.620257802000026 ], [ -82.062954224999942, 28.620506338000041 ], [ -82.06295771899994, 28.620638890000066 ], [ -82.062978341999951, 28.620870848000038 ], [ -82.062981816999979, 28.62097327500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060927148999951, 28.620969695000042 ], [ -82.062981816999979, 28.62097327500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060895035999977, 28.617385948000049 ], [ -82.061151775999974, 28.617385833000071 ], [ -82.061790891999976, 28.617385543000069 ], [ -82.061874274, 28.617398170000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060895035999977, 28.617385948000049 ], [ -82.060892422999984, 28.617588394000052 ], [ -82.060898123999948, 28.618002922000073 ], [ -82.060898233999978, 28.618193317000078 ], [ -82.060901021999939, 28.618294539000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059874558, 28.619177078000064 ], [ -82.06043447199994, 28.619167189000052 ], [ -82.060896063999962, 28.619166983000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059876789999976, 28.618297404000032 ], [ -82.060901021999939, 28.618294539000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059876789999976, 28.618297404000032 ], [ -82.059868727999969, 28.618531184000062 ], [ -82.059874558, 28.619177078000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058882602999972, 28.61830266000004 ], [ -82.059729307999987, 28.618309520000025 ], [ -82.059876789999976, 28.618297404000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059840763999944, 28.617381597000076 ], [ -82.060895035999977, 28.617385948000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182601114999954, 28.581650296000078 ], [ -82.18268292099998, 28.581601996000074 ], [ -82.182718360999957, 28.581575444000066 ], [ -82.18276194799995, 28.581524786000045 ], [ -82.182786418999967, 28.581469334000076 ], [ -82.182808164999983, 28.581416297000033 ], [ -82.182819004999942, 28.581370502000027 ], [ -82.182827060999955, 28.581293388000063 ], [ -82.182834598999989, 28.580917498000076 ], [ -82.182841144999941, 28.579702371000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.186175404999972, 28.581681821000075 ], [ -82.186335274999976, 28.581630762000032 ], [ -82.186750135999944, 28.58160368700004 ], [ -82.187094065999986, 28.581598394000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.186175404999972, 28.581681821000075 ], [ -82.18627368999995, 28.581691324000076 ], [ -82.186352321999948, 28.581700854000076 ], [ -82.186424398999975, 28.581708466000066 ], [ -82.186603494999986, 28.581725568000024 ], [ -82.186782584999946, 28.581738814000062 ], [ -82.186900513999944, 28.581742508000048 ], [ -82.187075232999973, 28.581753832000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187075232999973, 28.581753832000061 ], [ -82.187077848999934, 28.581689977000053 ], [ -82.187088686999971, 28.581644182000048 ], [ -82.187094065999986, 28.581598394000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182844054999975, 28.581649969000068 ], [ -82.184001441999953, 28.581653223000046 ], [ -82.184653308999941, 28.581664626000077 ], [ -82.18534337899996, 28.58166946800003 ], [ -82.185854371999937, 28.581668769000032 ], [ -82.186175404999972, 28.581681821000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.17866765499997, 28.581650714000034 ], [ -82.179425132999938, 28.581647003000057 ], [ -82.180523842999946, 28.581656690000045 ], [ -82.181462863999968, 28.581663870000057 ], [ -82.182601114999954, 28.581650296000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187094065999986, 28.581598394000025 ], [ -82.187118418999944, 28.581477887000062 ], [ -82.187126313999954, 28.581311622000044 ], [ -82.187097874999949, 28.580975055000067 ], [ -82.187075843999935, 28.580865214000028 ], [ -82.187058423999986, 28.580385546000059 ], [ -82.187060070999962, 28.579884982000067 ], [ -82.187046780999935, 28.579528486000072 ], [ -82.187045248999937, 28.579432570000051 ], [ -82.187043901999971, 28.579233745000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187075232999973, 28.581753832000061 ], [ -82.187252438999963, 28.58162709000004 ], [ -82.187366933999954, 28.581542600000034 ], [ -82.18741873, 28.581503976000079 ], [ -82.187462326999935, 28.581460545000027 ], [ -82.187505898999973, 28.581402658000059 ], [ -82.187549461999936, 28.581339951000075 ], [ -82.187603917999979, 28.581262772000059 ], [ -82.18764201, 28.581192845000032 ], [ -82.187674650999952, 28.581127743000025 ], [ -82.187701821999951, 28.581057831000066 ], [ -82.187724651999986, 28.580966120000028 ], [ -82.187746976999961, 28.580806436000046 ], [ -82.18776481499998, 28.580666715000064 ], [ -82.187791497999967, 28.580415222000056 ], [ -82.187818259999972, 28.580207636000068 ], [ -82.187858614999982, 28.580015996000043 ], [ -82.187910839999972, 28.579863824000029 ], [ -82.188002789999985, 28.579724428000077 ], [ -82.188183222999953, 28.579480705000037 ], [ -82.188286928999958, 28.579316917000028 ], [ -82.188377062999962, 28.579149155000039 ], [ -82.188453545999948, 28.578933517000053 ], [ -82.188502941999957, 28.578741864000051 ], [ -82.188516207999953, 28.578574210000056 ], [ -82.188515873999961, 28.578386616000046 ], [ -82.188524638999979, 28.578230942000062 ], [ -82.18856957099996, 28.578071225000031 ], [ -82.188646159999962, 28.577915456000028 ], [ -82.188753012999939, 28.577759369000034 ], [ -82.188894304999963, 28.577611768000054 ], [ -82.189029700999981, 28.577471884000033 ], [ -82.189133482999978, 28.57735199800004 ], [ -82.189232684999979, 28.577200189000052 ], [ -82.189367951999941, 28.576988460000052 ], [ -82.189489632999937, 28.576764774000026 ], [ -82.189597763999984, 28.576549090000071 ], [ -82.189678921999985, 28.576421255000071 ], [ -82.189759309999943, 28.576304751000066 ], [ -82.189861205999989, 28.576225535000049 ], [ -82.189940709999973, 28.576165442000047 ], [ -82.19004463999994, 28.576129374000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187075232999973, 28.581753832000061 ], [ -82.187159849999944, 28.581752511000047 ], [ -82.187225362999982, 28.581752420000043 ], [ -82.187479221999979, 28.58175207000005 ], [ -82.187841861999971, 28.581753254000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187841861999971, 28.581753254000034 ], [ -82.189588304999972, 28.581751066000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189588304999972, 28.581751066000038 ], [ -82.189777179999965, 28.58174092400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189582861999952, 28.584499570000048 ], [ -82.188141558999973, 28.584502059000044 ], [ -82.18803236499997, 28.58449980000006 ], [ -82.18796681799995, 28.584480615000075 ], [ -82.187920360999954, 28.584451766000029 ], [ -82.187887556999954, 28.584425306000071 ], [ -82.187854714999958, 28.584377162000067 ], [ -82.187840961999939, 28.584319354000058 ], [ -82.187829909999948, 28.584244675000036 ], [ -82.187837415, 28.583859148000045 ], [ -82.18783813999994, 28.582731510000031 ], [ -82.187841861999971, 28.581753254000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182872267999983, 28.584290271000043 ], [ -82.182847609999953, 28.584237295000037 ], [ -82.182847505999973, 28.584177060000059 ], [ -82.182852726999954, 28.584039712000049 ], [ -82.182868483999982, 28.583680678000064 ], [ -82.182877772999973, 28.582738558000074 ], [ -82.182872482999983, 28.582343183000035 ], [ -82.182897819999937, 28.582196322000073 ], [ -82.182871550999948, 28.581804817000034 ], [ -82.182844054999975, 28.581649969000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182872267999983, 28.584290271000043 ], [ -82.182899612999961, 28.584316740000077 ], [ -82.182956977999936, 28.584340756000074 ], [ -82.182997932999967, 28.584345520000056 ], [ -82.18309074299998, 28.584345395000071 ], [ -82.183227217999956, 28.584337982000079 ], [ -82.183590289999984, 28.584347129000037 ], [ -82.183931464999944, 28.584322572000076 ], [ -82.184343666999951, 28.584329241000034 ], [ -82.18468213899996, 28.584319143000073 ], [ -82.184933298999965, 28.584333258000072 ], [ -82.18503160299997, 28.584352400000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.17142727099997, 28.581637503000024 ], [ -82.172516814999938, 28.581632228000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.171324648999985, 28.592129114000045 ], [ -82.171337225999935, 28.591664379000065 ], [ -82.171350231999952, 28.591464356000074 ], [ -82.171349458999941, 28.590987873000074 ], [ -82.171348380999973, 28.590323150000074 ], [ -82.171361022999974, 28.589899592000052 ], [ -82.171360040999957, 28.589293694000048 ], [ -82.171366256999988, 28.58901720800003 ], [ -82.17136581799997, 28.588746612000079 ], [ -82.17136537, 28.588470135000023 ], [ -82.171364644999983, 28.588023062000048 ], [ -82.171383866999975, 28.587546554000028 ], [ -82.171403096999938, 28.587075928000047 ], [ -82.171388947999958, 28.586570049000045 ], [ -82.17138831799997, 28.586181802000056 ], [ -82.171400406999965, 28.585417060000054 ], [ -82.171392645999958, 28.584740579000027 ], [ -82.171402701999966, 28.584365849000051 ], [ -82.171402014999956, 28.583942308000076 ], [ -82.171395683999947, 28.583325827000067 ], [ -82.171373852999977, 28.583015257000056 ], [ -82.171378704999938, 28.582718773000067 ], [ -82.171394119999945, 28.582361095000067 ], [ -82.171417545999986, 28.581974825000032 ], [ -82.17142727099997, 28.581637503000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170429590999959, 28.581617436000045 ], [ -82.17142727099997, 28.581637503000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.168295126999965, 28.577835105000077 ], [ -82.169802463999986, 28.577902325000025 ], [ -82.170444448999945, 28.577890185000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158846510999979, 28.570253165000054 ], [ -82.158864483999935, 28.569840889000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.160516156999961, 28.570283999000026 ], [ -82.160520394999935, 28.569698198000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.161623275999943, 28.570283231000076 ], [ -82.161574764999955, 28.570240521000073 ], [ -82.16154563799995, 28.570202064000057 ], [ -82.161528612999973, 28.570157179000034 ], [ -82.161526134999974, 28.570120828000029 ], [ -82.161540573999957, 28.570058797000058 ], [ -82.161557419999951, 28.569986072000063 ], [ -82.161564532999989, 28.569885558000067 ], [ -82.161557073999973, 28.569759401000056 ], [ -82.161656146999974, 28.569071621000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149091646999977, 28.588315955000041 ], [ -82.149092416999963, 28.588314461000039 ], [ -82.149094149999939, 28.588310923000051 ], [ -82.149096138999937, 28.58830686400006 ], [ -82.149098394999953, 28.588302260000034 ], [ -82.149101245999987, 28.588296440000079 ], [ -82.14910525199997, 28.588288263000038 ], [ -82.149108285999944, 28.588282071000037 ], [ -82.149112511999988, 28.588273447000063 ], [ -82.149129444999971, 28.588238884000077 ], [ -82.149424236999948, 28.587637203000043 ], [ -82.14943298299994, 28.587619353000036 ], [ -82.149445210999943, 28.587594395000053 ], [ -82.149465006999947, 28.58755399100005 ], [ -82.149472442999979, 28.587538813000037 ], [ -82.14948680699996, 28.587509496000052 ], [ -82.149511920999942, 28.587458237000078 ], [ -82.149526697999988, 28.587428077000027 ], [ -82.149547088999952, 28.587386022000032 ], [ -82.149562003999961, 28.587354789000074 ], [ -82.149581664999971, 28.587315886000056 ], [ -82.149592636999955, 28.587291630000038 ], [ -82.149627549999934, 28.587222233000034 ], [ -82.149660427999947, 28.587155128000063 ], [ -82.149677957999984, 28.587119348000044 ], [ -82.149696610999968, 28.587081277000038 ], [ -82.149715205999939, 28.587043324000035 ], [ -82.149734928999976, 28.587003068000058 ], [ -82.149749575999977, 28.586973172000057 ], [ -82.149772368999948, 28.586926651000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183758957999942, 28.596118061000027 ], [ -82.185365267999941, 28.596139438000023 ], [ -82.185627319999981, 28.596132668000052 ], [ -82.185698986999967, 28.596142908000047 ], [ -82.185751539999956, 28.596158591000062 ], [ -82.185795929999983, 28.596182015000068 ], [ -82.185822612999971, 28.59622372900003 ], [ -82.185828608999941, 28.596270691000029 ], [ -82.185842310999988, 28.596676788000025 ], [ -82.185829625999986, 28.597053801000072 ], [ -82.186775584999964, 28.597045826000056 ], [ -82.187849061999941, 28.597065266000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043217614999946, 28.609996110000054 ], [ -82.043214205999959, 28.61015868000004 ], [ -82.043214279999972, 28.610339655000075 ], [ -82.043210879999947, 28.610526764000042 ], [ -82.043210972999987, 28.610753749000025 ], [ -82.043211038999971, 28.610916319000069 ], [ -82.043207661999986, 28.611155574000065 ], [ -82.04320774699994, 28.611364153000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044688562999966, 28.611492503000079 ], [ -82.044473000999972, 28.611372947000064 ], [ -82.044372193999948, 28.611360710000042 ], [ -82.04320774699994, 28.611364153000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.213301187999946, 28.712555932000043 ], [ -82.213937932999954, 28.712544811000043 ], [ -82.21459475599994, 28.712533657000051 ], [ -82.215111026999978, 28.712520193000046 ], [ -82.215346176999958, 28.71249453300004 ], [ -82.215394901999957, 28.712476754000079 ], [ -82.215434959999982, 28.712428646000035 ], [ -82.215457814, 28.712383093000028 ], [ -82.215469161999977, 28.712322387000029 ], [ -82.215474717999939, 28.712233874000049 ], [ -82.215465743999971, 28.712054352000052 ], [ -82.215474214999972, 28.711988592000068 ], [ -82.215505444999962, 28.711831764000067 ], [ -82.215548121999973, 28.711662275000037 ], [ -82.215590694999946, 28.711442213000055 ], [ -82.215607406999936, 28.711199432000058 ], [ -82.215595704999942, 28.711088190000055 ], [ -82.21557798799995, 28.710840407000035 ], [ -82.215583604999949, 28.710782239000025 ], [ -82.215609320999988, 28.710734153000033 ], [ -82.215640803999975, 28.710701230000041 ], [ -82.216111168999987, 28.710685307000062 ], [ -82.21645824899997, 28.710694867000029 ], [ -82.217275708999978, 28.710696085000052 ], [ -82.217381834999969, 28.710695915000031 ], [ -82.217430589999935, 28.710693307000042 ], [ -82.217490787999964, 28.710675510000044 ], [ -82.217513670999949, 28.710645129000056 ], [ -82.217519297999957, 28.710592018000057 ], [ -82.217513460999953, 28.710543983000036 ], [ -82.217551199999946, 28.709375671000032 ], [ -82.217556125999977, 28.70898371800007 ], [ -82.219497818999969, 28.708937595000066 ], [ -82.219566665999935, 28.708942540000066 ], [ -82.219609652999964, 28.708924770000067 ], [ -82.219629635, 28.708879221000075 ], [ -82.219634035999945, 28.708239458000037 ], [ -82.219651529999965, 28.707002905000024 ], [ -82.219657432999952, 28.706948245000035 ], [ -82.219669496999984, 28.706893722000075 ], [ -82.219683464999946, 28.706854887000077 ], [ -82.219702750999943, 28.706808114000069 ], [ -82.219725584999935, 28.706754974000035 ], [ -82.219745002999957, 28.70671935200005 ], [ -82.219767434999937, 28.706696194000074 ], [ -82.219782406999968, 28.706688738000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.224046314999953, 28.705249645000038 ], [ -82.226185622999935, 28.707474425000044 ], [ -82.227719216999958, 28.709059125000067 ], [ -82.22785920299998, 28.709205274000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.226267456999949, 28.716303303000075 ], [ -82.226275116999943, 28.716232107000053 ], [ -82.226282858, 28.716197650000026 ], [ -82.226306245999979, 28.716172353000047 ], [ -82.226353148999976, 28.716161156000055 ], [ -82.227494000999968, 28.716168064000044 ], [ -82.227587770999946, 28.716167907000056 ], [ -82.227671122999936, 28.716167766000069 ], [ -82.227720586999965, 28.716156202000036 ], [ -82.227751735999959, 28.716105633000041 ], [ -82.227762009999935, 28.716039024000054 ], [ -82.227767015999973, 28.715944871000033 ], [ -82.227768562999984, 28.71425484100007 ], [ -82.227766428999985, 28.713269762000039 ], [ -82.22776416499994, 28.71222498000003 ], [ -82.227771649999966, 28.710870190000037 ], [ -82.22776842199994, 28.709379941000066 ], [ -82.227778724999951, 28.70932711100005 ], [ -82.227801094999961, 28.709282869000049 ], [ -82.22785920299998, 28.709205274000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.228762532999951, 28.710122021000075 ], [ -82.228837730999942, 28.710059276000038 ], [ -82.228930228999957, 28.709985620000054 ], [ -82.228959348999979, 28.709944510000071 ], [ -82.228998746999935, 28.709867428000052 ], [ -82.229014162999988, 28.709792059000051 ], [ -82.229024440999979, 28.709278179000023 ], [ -82.229039768999939, 28.708776468000053 ], [ -82.229023906999942, 28.708668572000079 ], [ -82.228999139999985, 28.708060113000045 ], [ -82.228996449999954, 28.708021080000037 ], [ -82.228998994999984, 28.707993522000038 ], [ -82.229006737999953, 28.707961361000059 ], [ -82.229022316999988, 28.707938372000058 ], [ -82.229061343999945, 28.707919936000053 ], [ -82.229110809999952, 28.707910668000068 ], [ -82.229160310999987, 28.707917472000076 ], [ -82.229998989999956, 28.707925235000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.22785920299998, 28.709205274000055 ], [ -82.22793130499997, 28.709274040000025 ], [ -82.228762532999951, 28.710122021000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.228762532999951, 28.710122021000075 ], [ -82.230249174999983, 28.711680987000079 ], [ -82.230913280999971, 28.712357702000077 ], [ -82.231299688999968, 28.712775875000034 ], [ -82.231673512999976, 28.713155491000066 ], [ -82.232041083999945, 28.713533281000025 ], [ -82.232676007999942, 28.71419534100005 ], [ -82.233440401999985, 28.714978417000054 ], [ -82.234413696999979, 28.715990749000071 ], [ -82.234791722999944, 28.716375860000028 ], [ -82.236174432999974, 28.717815485000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056783863999954, 28.613706059000037 ], [ -82.057562244999986, 28.613699706000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056751683999948, 28.61735129300007 ], [ -82.058890274999953, 28.617367552000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054728224999963, 28.617350319000025 ], [ -82.056431174999943, 28.617347664000079 ], [ -82.056751683999948, 28.61735129300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056783863999954, 28.613706059000037 ], [ -82.056780905999972, 28.614555608000046 ], [ -82.056811827, 28.614917104000028 ], [ -82.056801869999958, 28.615447322000023 ], [ -82.056737388999977, 28.616164343000037 ], [ -82.056741001999967, 28.616534889000036 ], [ -82.056751683999948, 28.61735129300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056114070999968, 28.609950666000032 ], [ -82.056126847999963, 28.610091209000075 ], [ -82.056147129999943, 28.610126673000025 ], [ -82.056184925999958, 28.610148555000023 ], [ -82.056260515999952, 28.610166458000037 ], [ -82.056606641999963, 28.610170436000033 ], [ -82.057226486, 28.610182335000047 ], [ -82.05760033699994, 28.610188857000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05757092999994, 28.609952073000045 ], [ -82.057598644999985, 28.610032294000064 ], [ -82.05760033699994, 28.610188857000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057717190999938, 28.609945033000031 ], [ -82.058460372999946, 28.609948203000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05757092999994, 28.609952073000045 ], [ -82.057717190999938, 28.609945033000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057717190999938, 28.609945033000031 ], [ -82.057712847999937, 28.609233393000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056973623999966, 28.609230217000061 ], [ -82.057187089999957, 28.609230128000036 ], [ -82.057712847999937, 28.609233393000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058460372999946, 28.609948203000044 ], [ -82.058464181999966, 28.609690058000069 ], [ -82.058475649999934, 28.608981899000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056373144999952, 28.609952576000069 ], [ -82.056495826999935, 28.609951327000033 ], [ -82.057356116999983, 28.609950966000042 ], [ -82.05757092999994, 28.609952073000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054718118999972, 28.609947964000071 ], [ -82.056086565999976, 28.609950463000075 ], [ -82.056114070999968, 28.609950666000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056373144999952, 28.609952576000069 ], [ -82.05637631999997, 28.608494406000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057712847999937, 28.609233393000068 ], [ -82.057712716999959, 28.608992691000026 ], [ -82.057716520999975, 28.608720591000065 ], [ -82.057720363999977, 28.60851825900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057720363999977, 28.60851825900005 ], [ -82.057720223, 28.608260115000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05637631999997, 28.608494406000034 ], [ -82.056566061999945, 28.608490838000023 ], [ -82.057060197999988, 28.608501096000055 ], [ -82.057720363999977, 28.60851825900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05637631999997, 28.608494406000034 ], [ -82.05638758799995, 28.607388565000065 ], [ -82.05638709599998, 28.606467616000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065132393999988, 28.631928984000069 ], [ -82.063107251999952, 28.631931578000035 ], [ -82.059165588999974, 28.631942820000063 ], [ -82.057145730999935, 28.631938891000061 ], [ -82.055625887999952, 28.631944938000061 ], [ -82.054760621999947, 28.631951607000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065131059999942, 28.637772101000053 ], [ -82.065129965999972, 28.636001726000075 ], [ -82.065128619999939, 28.633821460000036 ], [ -82.065132393999988, 28.631928984000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067206222999971, 28.631933641000046 ], [ -82.065132393999988, 28.631928984000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075400532999936, 28.631958021000059 ], [ -82.071314340999947, 28.631942006000031 ], [ -82.067720235999957, 28.631940362000023 ], [ -82.067206222999971, 28.631933641000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096026154999947, 28.613697114000047 ], [ -82.096044745999961, 28.613219741000023 ], [ -82.096044119999988, 28.612531664000073 ], [ -82.096024587999977, 28.611974027000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096024587999977, 28.611974027000031 ], [ -82.09598738699998, 28.611729582000066 ], [ -82.095992746999968, 28.611421611000026 ], [ -82.09599790599998, 28.611125227000059 ], [ -82.096022528999981, 28.609710500000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.089820075999967, 28.610220678000076 ], [ -82.089791231999982, 28.607963538000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.089731767999979, 28.61604138000007 ], [ -82.089747963999969, 28.615025980000041 ], [ -82.089747762999934, 28.614790286000073 ], [ -82.08972173799998, 28.614581219000058 ], [ -82.089665292999939, 28.614064248000034 ], [ -82.089702629999977, 28.613876613000059 ], [ -82.089720412999952, 28.61381364500005 ], [ -82.089736230999961, 28.613771664000069 ], [ -82.089744125999971, 28.613733186000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.089744125999971, 28.613733186000047 ], [ -82.089809194999987, 28.613255971000058 ], [ -82.089834921999966, 28.611848200000054 ], [ -82.089827255999978, 28.610749324000039 ], [ -82.089820075999967, 28.610220678000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100140373999977, 28.620962803000054 ], [ -82.100166114999979, 28.62099605700007 ], [ -82.100208610999971, 28.621016206000036 ], [ -82.100257635999981, 28.621030585000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100096596999947, 28.617398856000079 ], [ -82.09988950199994, 28.617430689000059 ], [ -82.099710594999976, 28.617457737000052 ], [ -82.09951671999994, 28.617479700000047 ], [ -82.099317901999939, 28.617504216000043 ], [ -82.099158735999936, 28.617518514000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100140373999977, 28.620962803000054 ], [ -82.100109616999987, 28.620892932000061 ], [ -82.100097056999971, 28.620768521000059 ], [ -82.100092568999969, 28.620409902000063 ], [ -82.10007507399996, 28.619453440000029 ], [ -82.100089601999969, 28.618373904000066 ], [ -82.100094039999988, 28.617587129000071 ], [ -82.100096596999947, 28.617398856000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107083883999962, 28.616274372000078 ], [ -82.107270269999958, 28.616249551000067 ], [ -82.107418004999943, 28.616235117000031 ], [ -82.107580928999937, 28.616222804000074 ], [ -82.107741101999977, 28.616220240000075 ], [ -82.107901283999979, 28.616227424000044 ], [ -82.108094611999945, 28.616239453000048 ], [ -82.10828242599996, 28.616261236000071 ], [ -82.108495108999989, 28.616295182000044 ], [ -82.108699520999949, 28.616343757000038 ], [ -82.108829355999944, 28.616380207000077 ], [ -82.108997870999985, 28.616433683000025 ], [ -82.109210602999951, 28.616516366000042 ], [ -82.109415062999972, 28.616608803000076 ], [ -82.10966648699997, 28.616718260000027 ], [ -82.109937253999988, 28.616837449000059 ], [ -82.11015828799998, 28.616934745000037 ], [ -82.110393131999956, 28.617032030000075 ], [ -82.110641771999951, 28.617117119000056 ], [ -82.110884874999954, 28.61719002600006 ], [ -82.111122437999938, 28.617245881000031 ], [ -82.111307504999957, 28.617279845000041 ], [ -82.111545045999947, 28.617313766000052 ], [ -82.111771527999963, 28.617337950000035 ], [ -82.112113996999938, 28.617357162000076 ], [ -82.112406752999959, 28.617373977000057 ], [ -82.112561417999984, 28.617383597000071 ], [ -82.112658077999981, 28.617385953000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112658077999981, 28.617385953000053 ], [ -82.112903876999951, 28.617395497000075 ], [ -82.113243583999974, 28.617414708000069 ], [ -82.11362195199996, 28.617431450000026 ], [ -82.113967173999981, 28.617443344000037 ], [ -82.11421297399994, 28.617452885000034 ], [ -82.114525048999951, 28.617457497000032 ], [ -82.11540602499997, 28.617456750000031 ], [ -82.116820012999938, 28.617464067000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116783267999949, 28.620577906000051 ], [ -82.116783975999965, 28.620149936000075 ], [ -82.116800275999935, 28.619281778000072 ], [ -82.116799748999938, 28.618805823000059 ], [ -82.116772621999985, 28.618493968000053 ], [ -82.116760070999987, 28.618044328000053 ], [ -82.116776227999935, 28.617827201000068 ], [ -82.116820012999938, 28.617464067000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116820012999938, 28.617464067000071 ], [ -82.117303308999965, 28.617466087000025 ], [ -82.118309837999959, 28.617465133000053 ], [ -82.119467584999938, 28.61746557500004 ], [ -82.120623683999952, 28.617470381000032 ], [ -82.121269444999939, 28.617469805000042 ], [ -82.122450320999974, 28.617476029000045 ], [ -82.123712116999968, 28.617477798000039 ], [ -82.124765817999958, 28.617481205000047 ], [ -82.125700600999949, 28.617480341000032 ], [ -82.126924412999983, 28.61748211500003 ], [ -82.128172998999958, 28.617485314000078 ], [ -82.129388563999953, 28.617498732000058 ], [ -82.130668521999951, 28.617496047000031 ], [ -82.131933625999977, 28.617500651000057 ], [ -82.133236710999938, 28.61750229200004 ], [ -82.134310960999983, 28.617510794000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133325612999954, 28.619566196000051 ], [ -82.133431146999953, 28.619352046000074 ], [ -82.133933079999963, 28.618338251000068 ], [ -82.134310960999983, 28.617510794000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134310960999983, 28.617510794000054 ], [ -82.134431524999968, 28.617510675000062 ], [ -82.134529382999972, 28.617512582000074 ], [ -82.134772989999988, 28.617514162000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05471887799996, 28.584394892000034 ], [ -82.053297406999945, 28.584361218000026 ], [ -82.049596239999971, 28.584290855000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009326886999986, 28.584330393000073 ], [ -82.008843817999946, 28.584310866000067 ], [ -82.007274959999961, 28.584322694000036 ], [ -82.005307239, 28.584307139000032 ], [ -82.004497402999959, 28.584308689000068 ], [ -82.003197037999939, 28.584312097000065 ], [ -82.00119211599997, 28.584299797000028 ], [ -82.001085137999951, 28.584293589000026 ], [ -82.001039310999943, 28.584295276000034 ], [ -82.001001119999955, 28.584302018000074 ], [ -82.000944985, 28.584332838000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000942180999971, 28.606316137000078 ], [ -82.000941648999969, 28.606211947000077 ], [ -82.000938104999989, 28.604768823000029 ], [ -82.00095315599998, 28.603579272000047 ], [ -82.00095509199997, 28.602077173000055 ], [ -82.000946755999962, 28.600337928000044 ], [ -82.000947063999945, 28.598957011000039 ], [ -82.000934270999949, 28.597126246000073 ], [ -82.000920404999988, 28.59559818200006 ], [ -82.000921351999978, 28.595234821000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046388413999978, 28.588099349000061 ], [ -82.046384712999952, 28.587601261000032 ], [ -82.046408418999988, 28.586060867000072 ], [ -82.046407740999939, 28.584517405000042 ], [ -82.046407494999983, 28.583957822000059 ], [ -82.046427821999941, 28.582651099000032 ], [ -82.046434391999981, 28.581747158000042 ], [ -82.046441186999971, 28.581356678000077 ], [ -82.046454807999964, 28.580649509000068 ], [ -82.046461602999955, 28.580259028000057 ], [ -82.046457894999946, 28.579748641000037 ], [ -82.046460783999976, 28.578395804000024 ], [ -82.046474892999981, 28.577438206000068 ], [ -82.046470945999943, 28.577173008000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116843032999952, 28.598684367000033 ], [ -82.117372769999974, 28.59868977800005 ], [ -82.118605128999945, 28.598704355000052 ], [ -82.119850215999975, 28.598703993000072 ], [ -82.120983381999963, 28.598712768000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120974894999961, 28.602602245000071 ], [ -82.120967433999965, 28.602483297000049 ], [ -82.120966844999941, 28.602417287000037 ], [ -82.120967206999978, 28.602284176000069 ], [ -82.120968440999945, 28.602156412000056 ], [ -82.120970469999975, 28.601802172000077 ], [ -82.120978597999965, 28.601339875000065 ], [ -82.120978187999981, 28.600980742000047 ], [ -82.120977692999986, 28.600549017000048 ], [ -82.120977342999936, 28.600243372000079 ], [ -82.120981226999959, 28.599853670000073 ], [ -82.120980814999939, 28.599494536000066 ], [ -82.120980521999968, 28.599238175000039 ], [ -82.120983573999979, 28.598880568000027 ], [ -82.120983381999963, 28.598712768000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120974894999961, 28.602602245000071 ], [ -82.121201986999949, 28.602602043000047 ], [ -82.122401919999959, 28.602611309000054 ], [ -82.123604306999937, 28.602619318000052 ], [ -82.124162877999936, 28.602615667000066 ], [ -82.124628949999988, 28.602615240000034 ], [ -82.124789051999983, 28.602615092000065 ], [ -82.124906458999988, 28.60261498400007 ], [ -82.124963402999981, 28.602630630000078 ], [ -82.125016520999964, 28.602663360000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129228998999963, 28.604635740000049 ], [ -82.129235986999959, 28.604209405000063 ], [ -82.129243355999961, 28.603831581000065 ], [ -82.129240550999953, 28.603672624000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129231431999983, 28.605553223000072 ], [ -82.129229559999942, 28.605356685000061 ], [ -82.12923559799998, 28.604958129000067 ], [ -82.12923793899995, 28.604736965000029 ], [ -82.129228998999963, 28.604635740000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125024909999979, 28.60456780800007 ], [ -82.125025186999949, 28.603729519000069 ], [ -82.125020952999989, 28.603158071000053 ], [ -82.125024135, 28.602840945000025 ], [ -82.125026558999934, 28.602699614000073 ], [ -82.125016520999964, 28.602663360000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125024909999979, 28.60456780800007 ], [ -82.125492300999952, 28.60460196300005 ], [ -82.125865593999947, 28.604614594000054 ], [ -82.126157637999938, 28.604613906000054 ], [ -82.126680628999964, 28.604600859000072 ], [ -82.127060890999985, 28.604619971000034 ], [ -82.127559445999964, 28.604618874000039 ], [ -82.12791079699997, 28.604638909000073 ], [ -82.128186113999959, 28.604633250000063 ], [ -82.128448935999984, 28.604636873000061 ], [ -82.129228998999963, 28.604635740000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125076310999987, 28.610138631000041 ], [ -82.125053347999938, 28.610122904000036 ], [ -82.125038019999977, 28.610095920000049 ], [ -82.125014074999967, 28.61005847000007 ], [ -82.124998056999971, 28.609988179000027 ], [ -82.125013143, 28.609271053000043 ], [ -82.125018675999968, 28.608561316000078 ], [ -82.125030017999961, 28.607374556000025 ], [ -82.125030079999988, 28.606351193000023 ], [ -82.125023891999945, 28.605431045000046 ], [ -82.125017230999958, 28.604909185000054 ], [ -82.125024909999979, 28.60456780800007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125076310999987, 28.610138631000041 ], [ -82.125117121999949, 28.610154341000055 ], [ -82.125201256999958, 28.610158764000062 ], [ -82.126343606999967, 28.610163539000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126343606999967, 28.610163539000041 ], [ -82.127360630999988, 28.610163501000045 ], [ -82.128582003999952, 28.610161435000066 ], [ -82.129227030999971, 28.610178820000044 ], [ -82.130466054999943, 28.610179882000068 ], [ -82.13167703299996, 28.610178712000049 ], [ -82.132916064999961, 28.610186503000079 ], [ -82.134226509999962, 28.610216708000053 ], [ -82.135437502999935, 28.610226752000074 ], [ -82.136921295999969, 28.610245511000073 ], [ -82.137127798999984, 28.610245302000067 ], [ -82.137234889999945, 28.610256441000047 ], [ -82.13729608999995, 28.610267629000077 ], [ -82.137344576999965, 28.610303577000025 ], [ -82.137382879999961, 28.610350782000069 ], [ -82.137464677999958, 28.610517182000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137469356999986, 28.612086973000032 ], [ -82.137572047999981, 28.611891454000045 ], [ -82.137686367999947, 28.611650447000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137062714999956, 28.611955862000059 ], [ -82.137142286999961, 28.611977380000042 ], [ -82.137236150999968, 28.612011482000071 ], [ -82.137469356999986, 28.612086973000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.212018994999937, 28.631613077000054 ], [ -82.212157628999989, 28.631360236000035 ], [ -82.212196872999982, 28.631293454000058 ], [ -82.212244645999988, 28.631231244000048 ], [ -82.212291130999972, 28.631176289000052 ], [ -82.212357473999987, 28.631129085000055 ], [ -82.212427268999988, 28.631079158000034 ], [ -82.212507899999935, 28.631037255000024 ], [ -82.21256029999995, 28.631015819000027 ], [ -82.212639793999983, 28.630990853000071 ], [ -82.212730412999974, 28.630972392000047 ], [ -82.21283485899994, 28.630960254000058 ], [ -82.212938536999957, 28.630949495000038 ], [ -82.213025713999969, 28.630938301000072 ], [ -82.213102577999962, 28.630919667000057 ], [ -82.213176199999964, 28.630893312000069 ], [ -82.213239143999942, 28.63086320900004 ], [ -82.213300229999959, 28.630825758000071 ], [ -82.213364229999968, 28.630776319000063 ], [ -82.213409462999948, 28.630732321000039 ], [ -82.213453577999985, 28.630679175000068 ], [ -82.213490530999934, 28.630620709000027 ], [ -82.213518695999937, 28.630554973000073 ], [ -82.213535297999954, 28.630496747000052 ], [ -82.213546233999978, 28.630442708000032 ], [ -82.213549839999985, 28.630378657000051 ], [ -82.213545531999955, 28.630314904000045 ], [ -82.213539884999989, 28.630271417000074 ], [ -82.213528683999982, 28.630217685000048 ], [ -82.213512370999979, 28.630156658000033 ], [ -82.213494993999973, 28.630091693000054 ], [ -82.21347643699994, 28.630029904000025 ], [ -82.213456021999946, 28.629968597000072 ], [ -82.213429959999985, 28.629897931000073 ], [ -82.213406427999985, 28.629834323000068 ], [ -82.213388610999971, 28.629791958000055 ], [ -82.213352590999989, 28.629719087000069 ], [ -82.213315937999937, 28.629658661000065 ], [ -82.21317666799996, 28.629455994000068 ], [ -82.213109164999935, 28.629361415000062 ], [ -82.213068938999982, 28.629294540000046 ], [ -82.213031051999963, 28.629217137000069 ], [ -82.213004288999969, 28.629147904000035 ], [ -82.212982117999957, 28.629072185000041 ], [ -82.212967494999987, 28.628993072000071 ], [ -82.212962404999985, 28.628921934000061 ], [ -82.212965827999938, 28.628837760000067 ], [ -82.21298901199998, 28.628696220000052 ], [ -82.213019159999988, 28.628526557000043 ], [ -82.213050061, 28.628399419000061 ], [ -82.213066150999964, 28.628221072000031 ], [ -82.213068476999979, 28.628168892000076 ], [ -82.213064867999947, 28.628106784000067 ], [ -82.213056475999963, 28.628056226000069 ], [ -82.21303992199995, 28.627996324000037 ], [ -82.213015512999959, 28.627936139000042 ], [ -82.212985792999973, 28.627882354000064 ], [ -82.212958, 28.627835359000073 ], [ -82.212914269999942, 28.627785208000034 ], [ -82.212868953999987, 28.627743558000077 ], [ -82.212811675999944, 28.627701476000027 ], [ -82.212740415999974, 28.627661379000074 ], [ -82.212675303999958, 28.627634122000075 ], [ -82.212604175999957, 28.627612916000032 ], [ -82.212535566999975, 28.627600002000065 ], [ -82.211984936999954, 28.627548304000072 ], [ -82.211868791999962, 28.627533417000052 ], [ -82.211726730999942, 28.627502440000058 ], [ -82.211635528999977, 28.627475808000042 ], [ -82.211533235, 28.627441799000053 ], [ -82.211434922999956, 28.627397097000028 ], [ -82.21135639299996, 28.627351375000046 ], [ -82.211291745999972, 28.62730560500006 ], [ -82.211232115999962, 28.627255293000076 ], [ -82.21116292499994, 28.627185977000067 ], [ -82.211082702999988, 28.627116086000058 ], [ -82.210999923999964, 28.627040270000066 ], [ -82.210886641999934, 28.626933898000061 ], [ -82.210822399999984, 28.626881383000068 ], [ -82.210750185999984, 28.626831229000061 ], [ -82.210668744999964, 28.626783948000025 ], [ -82.210584088999951, 28.626743575000035 ], [ -82.210515386999987, 28.62671246900004 ], [ -82.210441995999986, 28.626685185000042 ], [ -82.210356351999962, 28.626659991000054 ], [ -82.210279125999989, 28.626642963000052 ], [ -82.21020995899994, 28.626632047000044 ], [ -82.21012101599996, 28.626623804000076 ], [ -82.209303644999977, 28.626612565000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183758957999942, 28.596118061000027 ], [ -82.183774749999941, 28.594963492000034 ], [ -82.183771441999966, 28.594293704000052 ], [ -82.183783447999986, 28.593371704000049 ], [ -82.183781689999989, 28.592752144000031 ], [ -82.183781450999959, 28.592615199000079 ], [ -82.183784023999976, 28.592528703000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181731051999975, 28.596071391000066 ], [ -82.181747721999955, 28.595829778000052 ], [ -82.181703790999961, 28.595122970000034 ], [ -82.181724841999937, 28.594943869000076 ], [ -82.181709797999986, 28.594475788000068 ], [ -82.181709246999958, 28.594155342000079 ], [ -82.181719330999954, 28.593809750000048 ], [ -82.181718584999942, 28.593376206000073 ], [ -82.181717725999988, 28.592876688000047 ], [ -82.181713689999981, 28.592600231000063 ], [ -82.181719777999945, 28.592509144000076 ], [ -82.181728073999977, 28.592470999000057 ], [ -82.181753107999953, 28.592440213000032 ], [ -82.181779544999984, 28.592414345000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182154573999981, 28.592482729000039 ], [ -82.182341268999949, 28.592511430000059 ], [ -82.182572652999966, 28.592513521000058 ], [ -82.182994588999975, 28.592517758000042 ], [ -82.183579853999959, 28.592521772000055 ], [ -82.183784023999976, 28.592528703000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.188931705999948, 28.592555267000023 ], [ -82.189548979999984, 28.592556724000076 ], [ -82.189722203999963, 28.592552061000049 ], [ -82.189837816999955, 28.592520360000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181779544999984, 28.592414345000066 ], [ -82.181757191999964, 28.592383622000057 ], [ -82.181743188999974, 28.592344277000052 ], [ -82.181743357999949, 28.592296826000052 ], [ -82.181738767999946, 28.592122663000055 ], [ -82.181750724999972, 28.591592572000025 ], [ -82.181745445, 28.591017069000031 ], [ -82.181745035999938, 28.590330317000053 ], [ -82.18175002299995, 28.590037103000043 ], [ -82.181747114999951, 28.589942602000065 ], [ -82.181740167999976, 28.589894147000052 ], [ -82.181729110999981, 28.589850544000058 ], [ -82.181698860999973, 28.589821506000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179708207999965, 28.589695728000038 ], [ -82.179775693999943, 28.589725175000069 ], [ -82.179874382999969, 28.589734053000029 ], [ -82.179962843999988, 28.589730933000055 ], [ -82.180469824999989, 28.589730260000067 ], [ -82.180951960999948, 28.589737692000028 ], [ -82.181435154999974, 28.589737047000028 ], [ -82.181514793999952, 28.589749055000027 ], [ -82.181599930999937, 28.589765905000036 ], [ -82.181654872999957, 28.589785216000053 ], [ -82.181698860999973, 28.589821506000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.17963337599997, 28.596077146000027 ], [ -82.179619499999944, 28.595920998000054 ], [ -82.179632517999949, 28.595572609000044 ], [ -82.179638731999944, 28.595224229000053 ], [ -82.179662079999957, 28.594947902000058 ], [ -82.179668191999951, 28.594539458000042 ], [ -82.179612961999965, 28.594077038000023 ], [ -82.179596803999971, 28.593608138000036 ], [ -82.179582309999944, 28.593157443000052 ], [ -82.179587178999952, 28.592791532000035 ], [ -82.179589281999938, 28.592413510000029 ], [ -82.179610606999972, 28.592037884000035 ], [ -82.179620829999976, 28.591590790000055 ], [ -82.179614353999966, 28.591011652000077 ], [ -82.179620742999987, 28.590647365000052 ], [ -82.179650839999965, 28.590337994000038 ], [ -82.179671010999982, 28.590193814000031 ], [ -82.179670837999936, 28.590091705000077 ], [ -82.179667219999942, 28.589965575000065 ], [ -82.179663622999954, 28.589851459000045 ], [ -82.179672671999981, 28.589786645000061 ], [ -82.179686333999939, 28.589749067000071 ], [ -82.179708207999965, 28.589695728000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179708207999965, 28.589695728000038 ], [ -82.179675209999971, 28.589664271000061 ], [ -82.179655911999987, 28.589618254000072 ], [ -82.179653071999951, 28.589562525000076 ], [ -82.179661070999941, 28.58942317900005 ], [ -82.179677033999951, 28.589122682000038 ], [ -82.179676724999979, 28.588940941000033 ], [ -82.179668426999967, 28.588904604000049 ], [ -82.179638169999976, 28.588870719000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178125364999971, 28.588821826000071 ], [ -82.179303159999961, 28.588829968000027 ], [ -82.17952553899994, 28.588829674000067 ], [ -82.179588706999937, 28.588844130000041 ], [ -82.179638169999976, 28.588870719000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178103044999943, 28.591096736000054 ], [ -82.178103262999969, 28.590911063000078 ], [ -82.178109354999947, 28.590180862000068 ], [ -82.178120923999984, 28.589444597000067 ], [ -82.178125364999971, 28.588821826000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177177462999964, 28.59102490500004 ], [ -82.177174890999936, 28.591517767000028 ], [ -82.177429630999939, 28.591516747000071 ], [ -82.177888160999942, 28.591518180000037 ], [ -82.177942042999973, 28.591516042000023 ], [ -82.177998259999981, 28.591509764000079 ], [ -82.178033366999955, 28.591489040000056 ], [ -82.178056735999974, 28.591453857000033 ], [ -82.178080083999987, 28.591406267000025 ], [ -82.178089359999944, 28.591350424000041 ], [ -82.178091546999951, 28.591257370000051 ], [ -82.178100764999954, 28.591166375000057 ], [ -82.178103044999943, 28.591096736000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.172921242999962, 28.588339734000044 ], [ -82.173350299999981, 28.58835122000005 ], [ -82.173423157999935, 28.58836384600005 ], [ -82.173505546999934, 28.588369242000056 ], [ -82.17362723399998, 28.588346151000053 ], [ -82.173743678999983, 28.588350896000065 ], [ -82.173904471999947, 28.588350690000027 ], [ -82.174087432999954, 28.588343113000064 ], [ -82.174248223999939, 28.58834046000004 ], [ -82.174436759999935, 28.588352453000027 ], [ -82.174550420999935, 28.588349860000051 ], [ -82.174719535999941, 28.588352089000068 ], [ -82.175014892999968, 28.588352520000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174954254999989, 28.590573156000062 ], [ -82.174964539999962, 28.590056508000032 ], [ -82.175045226999941, 28.589684971000054 ], [ -82.175017080999964, 28.589528288000054 ], [ -82.174983304999955, 28.589323755000066 ], [ -82.174996439999973, 28.588976613000057 ], [ -82.174995501999945, 28.588714849000041 ], [ -82.174998315999972, 28.588425876000031 ], [ -82.175014892999968, 28.588352520000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.172516814999938, 28.581632228000046 ], [ -82.173488410999937, 28.581632649000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174602567999955, 28.574269511000068 ], [ -82.17455167199995, 28.574216183000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174723307999955, 28.569736178000028 ], [ -82.174761959999955, 28.569701956000074 ], [ -82.17480547599996, 28.569682678000049 ], [ -82.174902233999944, 28.569674010000028 ], [ -82.175083657999949, 28.569658826000079 ], [ -82.175354658999936, 28.569681970000033 ], [ -82.175615943999958, 28.569681632000027 ], [ -82.175719981999976, 28.569685768000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.17455167199995, 28.574216183000033 ], [ -82.17457507599994, 28.57373774000007 ], [ -82.174547323999946, 28.573047920000079 ], [ -82.174551275999988, 28.572509701000058 ], [ -82.174553099999969, 28.572149821000039 ], [ -82.174584329999959, 28.572015227000065 ], [ -82.174588554999957, 28.571643598000037 ], [ -82.174578549999978, 28.571444983000049 ], [ -82.174645511999984, 28.570972891000054 ], [ -82.174681354999962, 28.570701601000053 ], [ -82.174697760999948, 28.570381214000065 ], [ -82.17469491099996, 28.57012065400005 ], [ -82.174692138999944, 28.569907080000064 ], [ -82.174708924999948, 28.569817357000034 ], [ -82.174723307999955, 28.569736178000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.175719981999976, 28.569685768000056 ], [ -82.176315155999987, 28.569699947000061 ], [ -82.176788948999956, 28.569700638000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182913709, 28.570677026000055 ], [ -82.182922528999939, 28.570555845000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.180540404999988, 28.570662556000059 ], [ -82.180555025, 28.570664242000078 ], [ -82.180697699999939, 28.570664052000041 ], [ -82.180936102999965, 28.570668518000048 ], [ -82.181264800999941, 28.570669673000054 ], [ -82.181539313999963, 28.57066930600007 ], [ -82.181718118999981, 28.570673850000048 ], [ -82.181972773999973, 28.570678291000036 ], [ -82.182249094999975, 28.570677920000037 ], [ -82.182534441999962, 28.570675942000037 ], [ -82.182698789999961, 28.570675721000043 ], [ -82.182913709, 28.570677026000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153499822999947, 28.645019409000042 ], [ -82.153517775999944, 28.643810507000069 ], [ -82.153529129999981, 28.642932988000041 ], [ -82.153530385999943, 28.641626477000045 ], [ -82.153532963999965, 28.641228113000068 ], [ -82.153538589999982, 28.640754532000074 ], [ -82.15354704899994, 28.640058089000036 ], [ -82.153549439999949, 28.639531581000028 ], [ -82.153548579999949, 28.638941007000028 ], [ -82.153550742999983, 28.638258499000074 ], [ -82.15355214799996, 28.637580322000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149787893999985, 28.645009901000037 ], [ -82.151184920999981, 28.645006120000062 ], [ -82.152029019999986, 28.645010051000042 ], [ -82.152420591999942, 28.645009611000035 ], [ -82.152745852999942, 28.645012031000078 ], [ -82.152957432999983, 28.64501457800003 ], [ -82.153339531999961, 28.645014146000051 ], [ -82.153499822999947, 28.645019409000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153520601999958, 28.646791879000034 ], [ -82.153502256999957, 28.64668492800007 ], [ -82.153481835999969, 28.646540538000067 ], [ -82.15349252599998, 28.645213304000038 ], [ -82.153499822999947, 28.645019409000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124962277999941, 28.63758027800003 ], [ -82.126759299999947, 28.633930023000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124962277999941, 28.63758027800003 ], [ -82.126580869999941, 28.637582721000058 ], [ -82.128603111999951, 28.637573373000066 ], [ -82.12915688399994, 28.637594982000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124061927999946, 28.639427426000054 ], [ -82.124345552999955, 28.638855510000042 ], [ -82.124764875999972, 28.63800033900003 ], [ -82.124962277999941, 28.63758027800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124061927999946, 28.639427426000054 ], [ -82.12531751399996, 28.639426566000054 ], [ -82.125775849999968, 28.639428236000072 ], [ -82.127236341999946, 28.639426873000048 ], [ -82.127765919999945, 28.639426374000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12404861999994, 28.639459055000032 ], [ -82.124061927999946, 28.639427426000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120024136999973, 28.647664477000035 ], [ -82.120349803999943, 28.647001618000047 ], [ -82.120665455999983, 28.646355916000061 ], [ -82.120904165999946, 28.645869021000067 ], [ -82.121288857999957, 28.645085449000078 ], [ -82.12167749799994, 28.644298383000034 ], [ -82.122048359999951, 28.643532266000079 ], [ -82.122401477999972, 28.642816749000076 ], [ -82.123121495999953, 28.641347326000073 ], [ -82.123849881999945, 28.639863717000026 ], [ -82.12404861999994, 28.639459055000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137348434999979, 28.648614924000071 ], [ -82.13734435799995, 28.647699731000046 ], [ -82.137339991999966, 28.646772086000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133274820999986, 28.648581924000041 ], [ -82.134100417999946, 28.648587651000071 ], [ -82.135338807999972, 28.648590780000063 ], [ -82.137219892999951, 28.648608512000067 ], [ -82.137348434999979, 28.648614924000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137257812999962, 28.65586158800005 ], [ -82.140236953999988, 28.655871455000067 ], [ -82.140419263999945, 28.655871267000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137250370999936, 28.657740292000028 ], [ -82.137252148999949, 28.657586786000024 ], [ -82.137262394999937, 28.65672216300004 ], [ -82.137257812999962, 28.65586158800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.193698174999952, 28.676611567000066 ], [ -82.19384628399996, 28.676545485000076 ], [ -82.194764056999986, 28.676514188000056 ], [ -82.196075210999936, 28.676498021000043 ], [ -82.196875340999952, 28.676500938000061 ], [ -82.197143581999967, 28.676496469000028 ], [ -82.197189836999939, 28.676498441000035 ], [ -82.19722683599997, 28.676498387000038 ], [ -82.197270749999973, 28.676486086000068 ], [ -82.197303098999953, 28.676471763000052 ], [ -82.197328480999943, 28.676443174000042 ], [ -82.197337651999987, 28.676400335000039 ], [ -82.197344500999975, 28.676353419000066 ], [ -82.197345203999987, 28.675494840000056 ], [ -82.197351280999953, 28.675035972000046 ], [ -82.197351139999967, 28.674960514000077 ], [ -82.197348704999968, 28.674895258000049 ], [ -82.197357859999954, 28.674844261000032 ], [ -82.197392448999949, 28.67479118600005 ], [ -82.197427095999956, 28.674770742000078 ], [ -82.197459450999986, 28.674760498000069 ], [ -82.197526504999985, 28.674756321000075 ], [ -82.197935835999942, 28.674769999000034 ], [ -82.198412227999938, 28.674783578000074 ], [ -82.199232349999988, 28.674819591000073 ], [ -82.199284347999935, 28.674801670000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.184529243999975, 28.669137815000056 ], [ -82.184760574999984, 28.669193263000068 ], [ -82.184860705999938, 28.669220977000066 ], [ -82.184943998999984, 28.669249414000035 ], [ -82.185064242999943, 28.669291631000078 ], [ -82.185203140999988, 28.669340832000046 ], [ -82.185367442999961, 28.669411986000057 ], [ -82.185536382999942, 28.669491290000053 ], [ -82.185700728999961, 28.669586915000025 ], [ -82.185853511999937, 28.669682557000044 ], [ -82.186001691999934, 28.669790441000032 ], [ -82.186147579999954, 28.66990852400005 ], [ -82.186388427999987, 28.670114171000023 ], [ -82.186921118999976, 28.670592690000035 ], [ -82.18775256899994, 28.671327756000039 ], [ -82.188454353999987, 28.671961028000055 ], [ -82.189781492999941, 28.673146093000071 ], [ -82.190858488999936, 28.674094929000034 ], [ -82.191854456999977, 28.674982691000025 ], [ -82.193075118999957, 28.676069983000048 ], [ -82.193698174999952, 28.676611567000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.193698174999952, 28.676611567000066 ], [ -82.193950668999946, 28.676845735000029 ], [ -82.194140329999982, 28.677021869000043 ], [ -82.194318714999952, 28.677196999000046 ], [ -82.194439229999944, 28.677339583000048 ], [ -82.194548170999951, 28.677476065000064 ], [ -82.19464785699995, 28.677610521000076 ], [ -82.194740643999978, 28.67776537900005 ], [ -82.19481258899998, 28.677903954000044 ], [ -82.19488453699995, 28.678044567000029 ], [ -82.19494956799997, 28.678195387000073 ], [ -82.195000744999959, 28.678358464000041 ], [ -82.195044981999956, 28.678519511000047 ], [ -82.195084603999987, 28.678686682000034 ], [ -82.19510801399997, 28.678839602000039 ], [ -82.195122201999936, 28.679008850000059 ], [ -82.195127149999962, 28.679182190000063 ], [ -82.195147039999938, 28.679932653000037 ], [ -82.195171836999975, 28.680834021000067 ], [ -82.195206818999964, 28.682239100000061 ], [ -82.195244963999983, 28.683683612000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.193143928999973, 28.689033497000025 ], [ -82.193247351999958, 28.689050599000041 ], [ -82.193313806999981, 28.689060246000054 ], [ -82.193386156999964, 28.689072036000027 ], [ -82.193621428999961, 28.689089186000047 ], [ -82.193851876999986, 28.68909883300006 ], [ -82.194011582999963, 28.689100440000061 ], [ -82.19432134799996, 28.689097225000069 ], [ -82.194517496999936, 28.689070428000036 ], [ -82.194570017999979, 28.689023267000039 ], [ -82.194664340999964, 28.688953061000063 ], [ -82.194759199999964, 28.688944486000025 ], [ -82.195070572999953, 28.688966995000044 ], [ -82.195150961999957, 28.68896056400007 ], [ -82.195223847999955, 28.688943950000066 ], [ -82.195296197999937, 28.688946630000032 ], [ -82.195379548999938, 28.688954919000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187071608999986, 28.69090243100004 ], [ -82.187915804999989, 28.690913497000054 ], [ -82.189167026999939, 28.690907676000052 ], [ -82.190200851999975, 28.690906227000028 ], [ -82.193300046, 28.690920190000043 ], [ -82.194352384999945, 28.690924801000051 ], [ -82.19538388899997, 28.690919238000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.19538388899997, 28.690919238000049 ], [ -82.196817713999963, 28.690929845000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.209248174999971, 28.631546821000029 ], [ -82.209276504999934, 28.628987786000039 ], [ -82.209303644999977, 28.626612565000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.209248174999971, 28.631546821000029 ], [ -82.209743430999936, 28.631550098000048 ], [ -82.209820770999954, 28.631550609000044 ], [ -82.209894229999975, 28.631548855000062 ], [ -82.209975923999934, 28.63154309500004 ], [ -82.21007188699997, 28.631531944000074 ], [ -82.210199650999982, 28.631509569000059 ], [ -82.210760221999976, 28.631378850000033 ], [ -82.210829162999971, 28.631362743000068 ], [ -82.210912913999948, 28.631345777000035 ], [ -82.211018649999971, 28.63133158100004 ], [ -82.211123271999952, 28.631326022000053 ], [ -82.211223964999988, 28.631331204000048 ], [ -82.211290509999969, 28.631339293000053 ], [ -82.211388166999939, 28.631358120000073 ], [ -82.211465234999935, 28.631379129000038 ], [ -82.211555315999988, 28.631411139000079 ], [ -82.211673315999974, 28.631462163000037 ], [ -82.212018994999937, 28.631613077000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136833710999952, 28.613293529000032 ], [ -82.136964755999941, 28.613038350000068 ], [ -82.137078650999968, 28.612816606000024 ], [ -82.137469356999986, 28.612086973000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140837868999938, 28.616170607000072 ], [ -82.140836586999967, 28.615209819000029 ], [ -82.140821326999969, 28.615169578000064 ], [ -82.140784800999938, 28.615148146000024 ], [ -82.14073005399996, 28.615145519000066 ], [ -82.140097469999944, 28.615164961000062 ], [ -82.140051813999946, 28.615138169000033 ], [ -82.14003960499997, 28.615105977000042 ], [ -82.140039547999947, 28.615063037000027 ], [ -82.140039337999951, 28.614904695000064 ], [ -82.140045110999949, 28.614551776000042 ], [ -82.140044548999981, 28.614128218000076 ], [ -82.14001994399996, 28.614040541000065 ], [ -82.139980335999951, 28.613965919000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138176227999963, 28.613830415000052 ], [ -82.138200587999961, 28.613854545000038 ], [ -82.138218858999949, 28.613870628000029 ], [ -82.138261450999948, 28.613881319000029 ], [ -82.138377018999961, 28.613878518000035 ], [ -82.13860817799997, 28.613891701000057 ], [ -82.138754177999942, 28.61390228700003 ], [ -82.13973387599998, 28.613903964000031 ], [ -82.139828256999976, 28.613906072000077 ], [ -82.139913347999936, 28.613927932000024 ], [ -82.139980335999951, 28.613965919000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136833710999952, 28.613293529000032 ], [ -82.137474845999975, 28.613309111000035 ], [ -82.137880905999964, 28.613302012000077 ], [ -82.137984314999983, 28.613304592000077 ], [ -82.138047643999982, 28.613308529000051 ], [ -82.138087737999967, 28.613317905000031 ], [ -82.138139080999963, 28.61333395500003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138078511999936, 28.61567333000005 ], [ -82.138095401999976, 28.614884929000027 ], [ -82.138083018999964, 28.614651744000071 ], [ -82.138079710999989, 28.614447781000024 ], [ -82.138109705999966, 28.614128381000057 ], [ -82.138104436999981, 28.613965514000029 ], [ -82.13812457299997, 28.613868041000046 ], [ -82.138176227999963, 28.613830415000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137686367999947, 28.611650447000045 ], [ -82.13776807499994, 28.611675277000074 ], [ -82.137821603999953, 28.611668474000055 ], [ -82.138328161999937, 28.611517731000049 ], [ -82.139862441999981, 28.61105069000007 ], [ -82.140741177999985, 28.610764631000052 ], [ -82.142014134999954, 28.610339770000053 ], [ -82.142137635999973, 28.610301900000024 ], [ -82.142270638999946, 28.610264020000045 ], [ -82.142403658999967, 28.61023872100003 ], [ -82.142517688999988, 28.610226020000027 ], [ -82.142641239999989, 28.610225890000038 ], [ -82.142788542999938, 28.610221543000023 ], [ -82.144779680999989, 28.610273945000074 ], [ -82.145763361999968, 28.610293858000034 ], [ -82.146604479999951, 28.610309725000036 ], [ -82.14693902099998, 28.610312298000053 ], [ -82.14712530099996, 28.610315451000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14712530099996, 28.610315451000076 ], [ -82.147226989999979, 28.610313243000064 ], [ -82.14730302199996, 28.610313160000032 ], [ -82.147379041999955, 28.610304691000067 ], [ -82.147459811999965, 28.610296216000052 ], [ -82.147550064999962, 28.610270959000047 ], [ -82.147659310999984, 28.610237292000079 ], [ -82.147763807999979, 28.610203631000047 ], [ -82.148229214999958, 28.610001841000042 ], [ -82.148504614999979, 28.609850996000034 ], [ -82.148633768999957, 28.609780406000027 ], [ -82.148747714999956, 28.609709832000078 ], [ -82.148880654999971, 28.609629174000077 ], [ -82.148998408999944, 28.609561950000057 ], [ -82.149089568999955, 28.609508174000041 ], [ -82.149192128999971, 28.609451031000049 ], [ -82.149306090999971, 28.609390520000034 ], [ -82.149458055999958, 28.609323259000064 ], [ -82.149727792999954, 28.609202192000055 ], [ -82.149913951999963, 28.609121473000073 ], [ -82.150149517999978, 28.609030634000078 ], [ -82.150282493999953, 28.608976812000037 ], [ -82.150457262999964, 28.608906169000079 ], [ -82.150727016999952, 28.60879852000005 ], [ -82.151114553999946, 28.608647126000051 ], [ -82.151821269999971, 28.608394732000079 ], [ -82.152330406999965, 28.608213007000074 ], [ -82.152482392999957, 28.60816251600005 ], [ -82.152581183999985, 28.608128858000043 ], [ -82.152660966999974, 28.608095220000052 ], [ -82.152748341999938, 28.608054865000042 ], [ -82.152843320999978, 28.60801450200006 ], [ -82.15293829899997, 28.607974138000031 ], [ -82.153014259999964, 28.607927086000075 ], [ -82.153720800999963, 28.60756062300004 ], [ -82.154374153999981, 28.607219378000025 ], [ -82.15451090199997, 28.607148773000063 ], [ -82.154598271999987, 28.607105062000073 ], [ -82.154689452999946, 28.60706805600006 ], [ -82.154788224999947, 28.607024332000037 ], [ -82.154898412999955, 28.606987304000029 ], [ -82.154989598999975, 28.606953653000062 ], [ -82.15511119599995, 28.606919966000078 ], [ -82.15525179399998, 28.606882904000031 ], [ -82.155457016999947, 28.606845768000028 ], [ -82.155745855999953, 28.606798469000069 ], [ -82.155992893999951, 28.606761284000072 ], [ -82.156277946999978, 28.60672405400004 ], [ -82.156547782999951, 28.606680131000076 ], [ -82.156855623999945, 28.606629454000029 ], [ -82.157486523999978, 28.606538146000048 ], [ -82.158550654999942, 28.60635910700006 ], [ -82.160116433999974, 28.606092244000024 ], [ -82.161115931999973, 28.605913261000069 ], [ -82.162795713999969, 28.605629458000067 ], [ -82.164110641999969, 28.605403107000029 ], [ -82.165087312999958, 28.605220767000048 ], [ -82.16535713199994, 28.605170118000046 ], [ -82.165493938999987, 28.605143113000054 ], [ -82.165661129999989, 28.605099298000027 ], [ -82.165752315999953, 28.605068994000078 ], [ -82.165870104999954, 28.605035302000033 ], [ -82.166003068999942, 28.604981465000037 ], [ -82.166192987999978, 28.60488730000003 ], [ -82.166458877999958, 28.604756140000063 ], [ -82.166838720999976, 28.604571164000049 ], [ -82.167119802999935, 28.60443327400003 ], [ -82.167260341999963, 28.604362652000077 ], [ -82.167412293999973, 28.604298726000025 ], [ -82.167537651999965, 28.604244895000079 ], [ -82.16767822099996, 28.604194401000029 ], [ -82.167875804999937, 28.604140481000059 ], [ -82.168183601999942, 28.604069651000032 ], [ -82.16851801599995, 28.604005495000024 ], [ -82.168966410999985, 28.603904296000053 ], [ -82.169650411999953, 28.603755835000072 ], [ -82.170307812999965, 28.603614113000049 ], [ -82.171117215999971, 28.603442003000055 ], [ -82.172131822999972, 28.603232727000034 ], [ -82.172553640999979, 28.603155033000064 ], [ -82.173108453999987, 28.603046975000041 ], [ -82.17390648099996, 28.602898346000075 ], [ -82.17442708599998, 28.602793682000026 ], [ -82.174871679999967, 28.602699177000034 ], [ -82.175377060999949, 28.602584464000074 ], [ -82.175738069999966, 28.602516903000037 ], [ -82.176311876999989, 28.602405452000028 ], [ -82.176813491999951, 28.602314221000029 ], [ -82.177394959999958, 28.60223965800003 ], [ -82.177923193999959, 28.602155098000026 ], [ -82.178751595999984, 28.601992983000059 ], [ -82.179560976999937, 28.601824178000072 ], [ -82.180362786999979, 28.601675507000039 ], [ -82.181274755999937, 28.601483073000054 ], [ -82.181711724999957, 28.601381845000049 ], [ -82.182144925999978, 28.601300752000043 ], [ -82.182581932999938, 28.601223006000055 ], [ -82.183729568999979, 28.601030237000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183729568999979, 28.601030237000032 ], [ -82.184310990999961, 28.60093551600005 ], [ -82.184645415999967, 28.600888095000073 ], [ -82.184903850999945, 28.600860905000047 ], [ -82.185090069999944, 28.600837168000055 ], [ -82.185226870999941, 28.600813499000026 ], [ -82.18535228099995, 28.600796554000055 ], [ -82.18550427699995, 28.600766153000052 ], [ -82.185698072999969, 28.600728986000036 ], [ -82.185888066999951, 28.600691824000023 ], [ -82.186116033999951, 28.600631126000053 ], [ -82.186780940999938, 28.600459122000075 ], [ -82.18770419599997, 28.600212953000039 ], [ -82.188266519999956, 28.600071276000051 ], [ -82.188828715999989, 28.599948357000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.188828710999985, 28.599948358000063 ], [ -82.188924656999973, 28.599926519000064 ], [ -82.188999865999961, 28.599912584000037 ], [ -82.189224104999937, 28.599895497000034 ], [ -82.189452181999968, 28.599898534000033 ], [ -82.189589034999983, 28.599905053000043 ], [ -82.189763931999948, 28.599928291000026 ], [ -82.189927417999968, 28.599948189000031 ], [ -82.191303903999938, 28.600201214000037 ], [ -82.191809613999965, 28.600284367000029 ], [ -82.192989509999961, 28.600537048000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200442922999969, 28.602546109000059 ], [ -82.200444101999949, 28.602509777000023 ], [ -82.200449211999967, 28.602464695000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200495152999963, 28.602838748000067 ], [ -82.200480010999968, 28.602728756000033 ], [ -82.200466847999962, 28.602613371000075 ], [ -82.200442922999969, 28.602546109000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200442922999969, 28.602546109000059 ], [ -82.200410753999961, 28.602580710000041 ], [ -82.200393772999973, 28.602606498000057 ], [ -82.200384089999943, 28.602632278000044 ], [ -82.200374411999974, 28.602660203000028 ], [ -82.200369594999984, 28.602685975000043 ], [ -82.200364802999957, 28.602724628000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.201554079999937, 28.605301428000075 ], [ -82.201795458999982, 28.60501709600004 ], [ -82.202021646999981, 28.604736226000057 ], [ -82.202249974999972, 28.604453633000048 ], [ -82.202382514999954, 28.604297010000039 ], [ -82.20249950699997, 28.604157255000075 ], [ -82.202622357999985, 28.604026775000079 ], [ -82.202729475999945, 28.603919351000059 ], [ -82.202810743999976, 28.603841190000026 ], [ -82.202942209999946, 28.603734417000055 ], [ -82.203086140999972, 28.603627626000048 ], [ -82.203202947999955, 28.60354155400006 ], [ -82.203284948999965, 28.603485072000069 ], [ -82.203382141999953, 28.603423201000055 ], [ -82.203473263999967, 28.603366704000052 ], [ -82.203591734999975, 28.603299433000075 ], [ -82.203752759999986, 28.603221361000067 ], [ -82.203965418999985, 28.603111007000052 ], [ -82.204965000999948, 28.602637156000071 ], [ -82.20561517699997, 28.602327538000054 ], [ -82.205751902999964, 28.602265604000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.205751902999964, 28.602265604000024 ], [ -82.205789147999951, 28.602226409000025 ], [ -82.20580943899995, 28.602199639000048 ], [ -82.205819344999952, 28.602174413000057 ], [ -82.205823769999938, 28.602119391000031 ], [ -82.205822219999959, 28.602094572000055 ], [ -82.205817409999952, 28.602069368000059 ], [ -82.205808030999947, 28.602039197000067 ], [ -82.205788298999948, 28.60201287700005 ], [ -82.205770082999948, 28.601993806000053 ], [ -82.205734547999953, 28.601972086000046 ], [ -82.205672794999941, 28.601940847000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.20665046299996, 28.601822004000041 ], [ -82.206401869999979, 28.601851316000079 ], [ -82.206043115999989, 28.60189480300005 ], [ -82.205672794999941, 28.601940847000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.206925255999977, 28.60179198000003 ], [ -82.20665046299996, 28.601822004000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.205751902999964, 28.602265604000024 ], [ -82.205806577999965, 28.602233317000071 ], [ -82.205885559999956, 28.602190257000075 ], [ -82.20604050999998, 28.602117559000078 ], [ -82.206165081999984, 28.602061010000057 ], [ -82.206283574999986, 28.602007155000024 ], [ -82.206395341999951, 28.601951314000075 ], [ -82.206520764999937, 28.601900509000075 ], [ -82.206657029999974, 28.601860192000061 ], [ -82.206925255999977, 28.60179198000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.204663661999973, 28.60406269300006 ], [ -82.204648179999936, 28.603920476000042 ], [ -82.204647961999967, 28.603807759000063 ], [ -82.204647747999957, 28.603697724000028 ], [ -82.204656710999984, 28.603614515000061 ], [ -82.204662625999958, 28.603528624000035 ], [ -82.204665485999953, 28.60343468800005 ], [ -82.204671422999979, 28.603359533000059 ], [ -82.204662162999966, 28.603289769000071 ], [ -82.204619391999984, 28.60318785000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.204663661999973, 28.60406269300006 ], [ -82.204757924999967, 28.604057182000076 ], [ -82.204925233999973, 28.604083768000066 ], [ -82.205031691999977, 28.604094342000053 ], [ -82.205211170999974, 28.604123592000064 ], [ -82.205284181999957, 28.604136900000071 ], [ -82.205354168999975, 28.604158264000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.204698319999977, 28.604685276000055 ], [ -82.204689003999988, 28.604585989000043 ], [ -82.204676614999983, 28.604470606000064 ], [ -82.204667165999979, 28.604301543000076 ], [ -82.204663661999973, 28.60406269300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.204723808999972, 28.605283717000077 ], [ -82.204723595999951, 28.605173682000043 ], [ -82.204716971999972, 28.604894581000053 ], [ -82.204698319999977, 28.604685276000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.204744351999977, 28.607811174000062 ], [ -82.204704005999986, 28.607618624000054 ], [ -82.204706817999977, 28.607500535000042 ], [ -82.204700293999963, 28.60727242400003 ], [ -82.204669267999975, 28.606955786000071 ], [ -82.204671398999949, 28.606486124000071 ], [ -82.204643627999985, 28.60627951500004 ], [ -82.204631083999971, 28.60608361900006 ], [ -82.20463043899997, 28.605750833000059 ], [ -82.204651097999943, 28.605426065000074 ], [ -82.20469653899994, 28.605334749000065 ], [ -82.204723808999972, 28.605283717000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.204723808999972, 28.605283717000077 ], [ -82.20521561299995, 28.605251301000067 ], [ -82.205359833999978, 28.605224436000071 ], [ -82.205477189999954, 28.605198985000072 ], [ -82.20555778399995, 28.605177776000062 ], [ -82.205673726999976, 28.605138186000033 ], [ -82.205755733999979, 28.605101424000054 ], [ -82.205812291999962, 28.605064662000075 ], [ -82.205867191999971, 28.60502376200003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.202465981999978, 28.605481595000072 ], [ -82.202860300999987, 28.605443266000066 ], [ -82.202979005999964, 28.605396961000054 ], [ -82.203050272999974, 28.605392660000064 ], [ -82.203264101999935, 28.605392340000037 ], [ -82.203325855999935, 28.605383861000064 ], [ -82.203378052999938, 28.605346042000065 ], [ -82.203425011999968, 28.605056628000057 ], [ -82.203532027999984, 28.60496018300006 ], [ -82.203662225999949, 28.604901885000061 ], [ -82.203807802999961, 28.604839441000024 ], [ -82.203987691999941, 28.604792759000077 ], [ -82.204099136999957, 28.604736917000025 ], [ -82.204208360999985, 28.604703206000067 ], [ -82.20434611099995, 28.604677839000033 ], [ -82.204467192999971, 28.604682940000032 ], [ -82.204698319999977, 28.604685276000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.236999664999985, 28.625238311000032 ], [ -82.236927456999979, 28.625178377000054 ], [ -82.236891678999939, 28.625096006000035 ], [ -82.236860396999987, 28.625033254000073 ], [ -82.236842455999977, 28.624968514000045 ], [ -82.236841384999934, 28.624491574000047 ], [ -82.236738842999955, 28.623783490000051 ], [ -82.236583907999943, 28.622756977000051 ], [ -82.23651571399995, 28.622105472000044 ], [ -82.236497531999987, 28.621932784000023 ], [ -82.236475068999937, 28.621834686000057 ], [ -82.236425929999939, 28.621744488000047 ], [ -82.236122419999958, 28.621301441000071 ], [ -82.235979574999988, 28.621085789000063 ], [ -82.235818551999955, 28.620697451000069 ], [ -82.235390080999935, 28.620074049000038 ], [ -82.234975020999968, 28.619478101000027 ], [ -82.234549587999936, 28.618742857000029 ], [ -82.234353409999983, 28.618018908000067 ], [ -82.234093344999962, 28.617096877000051 ], [ -82.234012642999971, 28.616814384000065 ], [ -82.233874127999968, 28.616539842000066 ], [ -82.233721650999939, 28.615986616000043 ], [ -82.23349221899997, 28.615222693000078 ], [ -82.233443765999937, 28.615048913000066 ], [ -82.233349940999972, 28.614864578000038 ], [ -82.233027874999948, 28.614474912000048 ], [ -82.232761282999945, 28.614206113000023 ], [ -82.232230835999985, 28.613716341000043 ], [ -82.231785171999945, 28.613344186000063 ], [ -82.231210471999987, 28.612956547000067 ], [ -82.229646848999948, 28.611934661000078 ], [ -82.228665287999945, 28.611306054000067 ], [ -82.228029340999967, 28.610880136000048 ], [ -82.227671942999962, 28.609955637000041 ], [ -82.227337289, 28.609477293000054 ], [ -82.227057800999944, 28.609200284000053 ], [ -82.226847059999955, 28.609050239000055 ], [ -82.226508612999964, 28.608874158000049 ], [ -82.225907384999971, 28.608541498000079 ], [ -82.225537595999981, 28.608267332000025 ], [ -82.225296962999948, 28.608067534000043 ], [ -82.224860251999985, 28.607699266000054 ], [ -82.224677433999943, 28.607491519000064 ], [ -82.223972911999965, 28.606687966000038 ], [ -82.223870130999956, 28.606464385000038 ], [ -82.223785257999964, 28.606295729000067 ], [ -82.223450899999989, 28.605942989000027 ], [ -82.223250201999974, 28.605692091000037 ], [ -82.22297373899994, 28.605370658000027 ], [ -82.222929043999955, 28.605268669000054 ], [ -82.222857707999935, 28.605190277000077 ], [ -82.222470136999959, 28.604912206000051 ], [ -82.221668351999938, 28.604375731000061 ], [ -82.221499070999982, 28.604254320000052 ], [ -82.221409928999947, 28.604168105000042 ], [ -82.221334088999981, 28.604062241000065 ], [ -82.221133450999957, 28.603834891000076 ], [ -82.22095066199995, 28.603634991000035 ], [ -82.220586109999942, 28.603192498000055 ], [ -82.220463492999954, 28.603050400000029 ], [ -82.220073218999971, 28.602535816000056 ], [ -82.220000724999977, 28.602432890000046 ], [ -82.21995598999996, 28.602310293000073 ], [ -82.21992228199997, 28.602143514000034 ], [ -82.219970042999989, 28.601049216000035 ], [ -82.219989132999956, 28.600006523000047 ], [ -82.219971194999971, 28.599594535000051 ], [ -82.219993788999943, 28.599509080000075 ], [ -82.220039147999955, 28.599418564000075 ], [ -82.220073223999975, 28.599378312000056 ], [ -82.220209583999974, 28.599244939000073 ], [ -82.220462246999944, 28.598915418000047 ], [ -82.220893512999965, 28.598236396000061 ], [ -82.221194216999947, 28.597740982000062 ], [ -82.221418547999974, 28.597479338000028 ], [ -82.221486686999981, 28.597393808000049 ], [ -82.221526275999963, 28.597268129000042 ], [ -82.221505948999948, 28.597077228000046 ], [ -82.221466920999944, 28.596931698000049 ], [ -82.22122404299995, 28.596558394000056 ], [ -82.220758217999958, 28.596153922000042 ], [ -82.220703944999968, 28.596063567000044 ], [ -82.220689564999986, 28.595993246000035 ], [ -82.220683702999963, 28.595912862000034 ], [ -82.220689250999953, 28.595842509000079 ], [ -82.220697363999989, 28.595638999000073 ], [ -82.220561768999971, 28.594772477000049 ], [ -82.220441113999982, 28.594245091000062 ], [ -82.220522684999935, 28.593757286000027 ], [ -82.220521959999985, 28.593410057000028 ], [ -82.220484644999942, 28.593280297000035 ], [ -82.220433157999935, 28.593159791000062 ], [ -82.220279287999972, 28.593036750000067 ], [ -82.21989169699998, 28.592856682000047 ], [ -82.219350454999983, 28.592656574000046 ], [ -82.218561729999976, 28.592532232000053 ], [ -82.217738869999948, 28.592417990000058 ], [ -82.217274931999953, 28.592433808000067 ], [ -82.216862125999967, 28.592399296000053 ], [ -82.216736804999982, 28.592361811000046 ], [ -82.216365817999986, 28.592202133000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.240363033999984, 28.640069874000062 ], [ -82.240373559999966, 28.638919176000059 ], [ -82.240381879999973, 28.637954075000039 ], [ -82.240387282999961, 28.636863705000053 ], [ -82.240390067999954, 28.635777979000068 ], [ -82.240393946999973, 28.635172474000058 ], [ -82.240410165999947, 28.634211999000058 ], [ -82.240415879999944, 28.633258501000057 ], [ -82.240419622, 28.632592678000037 ], [ -82.240418834999957, 28.632247011000061 ], [ -82.24043189799994, 28.631056869000076 ], [ -82.240436203999934, 28.630350157000066 ], [ -82.240448166999954, 28.629102802000034 ], [ -82.240447945999961, 28.629006133000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.217480786999943, 28.621521871000027 ], [ -82.217510771999969, 28.621466493000071 ], [ -82.217560715, 28.621357963000037 ], [ -82.217620599999975, 28.621205153000062 ], [ -82.217675517999965, 28.621076696000046 ], [ -82.217765372999963, 28.620861868000077 ], [ -82.217842742999949, 28.620673618000069 ], [ -82.217912612999953, 28.620498660000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203526986999975, 28.620393190000073 ], [ -82.204761106999968, 28.620383469000046 ], [ -82.204771004999941, 28.620616799000061 ], [ -82.204770627999949, 28.620697958000051 ], [ -82.204775824999956, 28.620749638000063 ], [ -82.204789635999987, 28.62081402900003 ], [ -82.204819404999967, 28.620872355000074 ], [ -82.204846860999965, 28.620914582000069 ], [ -82.204890284999976, 28.620956786000079 ], [ -82.20492685399995, 28.620992962000059 ], [ -82.20497938699998, 28.621027099000059 ], [ -82.205022774999975, 28.621051188000024 ], [ -82.205066152999962, 28.621069238000075 ], [ -82.205123208999964, 28.621083242000054 ], [ -82.205162000999962, 28.621089221000034 ], [ -82.205216760999974, 28.621095177000029 ], [ -82.20526694299997, 28.621093087000077 ], [ -82.205319392999968, 28.621084957000051 ], [ -82.205390080999962, 28.621070760000066 ], [ -82.205460776999985, 28.621060589000024 ], [ -82.20557023799995, 28.621042308000028 ], [ -82.205688815999963, 28.621019987000068 ], [ -82.205784591999986, 28.621003739000059 ], [ -82.205864416999987, 28.620995566000033 ], [ -82.205989844999976, 28.620977261000064 ], [ -82.206085628999972, 28.620965038000065 ], [ -82.206220189999954, 28.620950743000037 ], [ -82.206338787999982, 28.620938486000057 ], [ -82.206455097999935, 28.620924219000074 ], [ -82.206553159999942, 28.620909981000068 ], [ -82.206667197999934, 28.620899742000063 ], [ -82.20673562199994, 28.620893599000055 ], [ -82.206845095999938, 28.620883369000069 ], [ -82.206938612999977, 28.620877187000076 ], [ -82.20702528399994, 28.62087101700007 ], [ -82.207123353999975, 28.620860802000038 ], [ -82.207214591999957, 28.620856638000078 ], [ -82.207342320999942, 28.620848390000049 ], [ -82.207433557999934, 28.620844225000042 ], [ -82.207529351999938, 28.620836028000042 ], [ -82.207638841999938, 28.620833848000075 ], [ -82.207778000999951, 28.620837660000063 ], [ -82.207871523999984, 28.620835503000023 ], [ -82.207976472999974, 28.62084339300003 ], [ -82.208083691999946, 28.62084524200003 ], [ -82.208202329999949, 28.620855124000059 ], [ -82.208314114999951, 28.620858977000069 ], [ -82.208439602999988, 28.620870862000061 ], [ -82.208555961999934, 28.620880747000058 ], [ -82.208683725999947, 28.620890614000075 ], [ -82.208841164999967, 28.620910501000026 ], [ -82.209014009999976, 28.620934136000074 ], [ -82.209145220999972, 28.620956578000062 ], [ -82.209302100999935, 28.62098149600007 ], [ -82.209444731999952, 28.621011468000063 ], [ -82.20960162199998, 28.621041418000061 ], [ -82.209732843999973, 28.621068892000039 ], [ -82.209829856999988, 28.621101449000037 ], [ -82.209912619999955, 28.621136546000059 ], [ -82.209992550999971, 28.62118171000003 ], [ -82.210049648999984, 28.621216846000038 ], [ -82.210103917999959, 28.621262050000041 ], [ -82.210161060999951, 28.621319830000061 ], [ -82.21021250299998, 28.621377620000032 ], [ -82.210264003999953, 28.621465600000079 ], [ -82.210432731999958, 28.621711909000055 ], [ -82.210521378999942, 28.621837572000061 ], [ -82.210593788999972, 28.621944409000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210593788999972, 28.621944409000037 ], [ -82.210792277999985, 28.621842184000059 ], [ -82.210911922999969, 28.621784129000048 ], [ -82.211025871999936, 28.621728599000051 ], [ -82.211156923999965, 28.621670527000049 ], [ -82.211276578999957, 28.621617503000039 ], [ -82.211413363999952, 28.621574518000045 ], [ -82.211567245999959, 28.621526473000074 ], [ -82.211755355999969, 28.621483407000028 ], [ -82.211923531999958, 28.621452952000027 ], [ -82.212117364999983, 28.621419941000056 ], [ -82.212305483999955, 28.621381906000067 ], [ -82.21249931899996, 28.62134889400005 ], [ -82.212724506999962, 28.62131080000006 ], [ -82.212921206999965, 28.621285331000024 ], [ -82.213103648999947, 28.621259885000029 ], [ -82.213243328999965, 28.621239536000076 ], [ -82.21342008299996, 28.621221647000027 ], [ -82.213599694999971, 28.621206268000037 ], [ -82.213770765999982, 28.621198449000076 ], [ -82.213947534999988, 28.621188106000034 ], [ -82.214135715999987, 28.621180260000074 ], [ -82.214295390999951, 28.621177493000062 ], [ -82.214426542999945, 28.621169737000059 ], [ -82.214597629999957, 28.621169467000072 ], [ -82.21472879099997, 28.621166742000071 ], [ -82.214879917999951, 28.62116650300004 ], [ -82.215008242999943, 28.621171331000028 ], [ -82.215153661999977, 28.621168585000078 ], [ -82.21531906599995, 28.621178386000054 ], [ -82.215475905999938, 28.621183169000062 ], [ -82.215627048999977, 28.621190477000027 ], [ -82.215772502999982, 28.621205342000053 ], [ -82.215963579999936, 28.621220134000055 ], [ -82.216134713999963, 28.621242505000055 ], [ -82.216277317999982, 28.621257374000038 ], [ -82.216468436999946, 28.621292293000067 ], [ -82.216613923999944, 28.621322253000073 ], [ -82.216776527999968, 28.621357217000025 ], [ -82.216939132999983, 28.621392182000079 ], [ -82.217118857999935, 28.621432150000032 ], [ -82.217292873999952, 28.621469611000066 ], [ -82.217480786999943, 28.621521871000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210593788999972, 28.621944409000037 ], [ -82.211383689999934, 28.623085214000071 ], [ -82.211464164999938, 28.623189111000045 ], [ -82.211539534999986, 28.623248750000073 ], [ -82.211619889999952, 28.623292890000073 ], [ -82.211700228999973, 28.623328177000076 ], [ -82.211790569999948, 28.623347955000042 ], [ -82.211898454999982, 28.62336106500004 ], [ -82.211991264999938, 28.623360920000039 ], [ -82.212106613999936, 28.623343033000026 ], [ -82.212277119999953, 28.623311781000041 ], [ -82.21243008, 28.623287196000035 ], [ -82.212578023999981, 28.623262619000059 ], [ -82.212725966999983, 28.623238040000047 ], [ -82.212838811999973, 28.623222370000065 ], [ -82.212936615, 28.623211150000031 ], [ -82.213054480999972, 28.623197686000026 ], [ -82.213199938999935, 28.623184177000041 ], [ -82.213322824999977, 28.623172918000023 ], [ -82.213468291999959, 28.62316383600006 ], [ -82.213563595999972, 28.623157046000074 ], [ -82.213638836999962, 28.62315250100005 ], [ -82.213724107999951, 28.623145727000065 ], [ -82.213872094999942, 28.623143280000079 ], [ -82.214000006999981, 28.623136438000074 ], [ -82.214125420999949, 28.623134029000028 ], [ -82.214233279999974, 28.623133858000074 ], [ -82.214311037999948, 28.623133735000067 ], [ -82.214448992999962, 28.623131303000036 ], [ -82.214566893999972, 28.623135542000057 ], [ -82.214684790999968, 28.62313757000004 ], [ -82.214857884999958, 28.623146147000057 ], [ -82.215023440999971, 28.623148099000048 ], [ -82.215156400999945, 28.623156741000059 ], [ -82.215259246999949, 28.623158791000037 ], [ -82.215392208999958, 28.623167433000049 ], [ -82.215582874999939, 28.623182623000048 ], [ -82.215771027999949, 28.623195602000067 ], [ -82.215924077999944, 28.623215278000032 ], [ -82.216182497999966, 28.623243638000076 ], [ -82.216385731999935, 28.623272086000043 ], [ -82.216558863999978, 28.623298368000064 ], [ -82.216619077999951, 28.623304912000037 ], [ -82.216674273999956, 28.62331146300005 ], [ -82.216711895999936, 28.623309190000043 ], [ -82.216741962999947, 28.623293649000061 ], [ -82.216774513999951, 28.623264826000025 ], [ -82.216814509999949, 28.623198363000029 ], [ -82.216866875999983, 28.623047779000046 ], [ -82.216939254999943, 28.62287060400007 ], [ -82.217024114999958, 28.622664637000071 ], [ -82.217108956999937, 28.622449816000028 ], [ -82.217188848999967, 28.622268202000043 ], [ -82.217266243999973, 28.622091019000038 ], [ -82.217341050999948, 28.621876215000043 ], [ -82.217438422999976, 28.621656947000076 ], [ -82.217480786999943, 28.621521871000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203236213999958, 28.602311758000042 ], [ -82.203337114999954, 28.602099262000024 ], [ -82.203636124999946, 28.601439878000065 ], [ -82.20393785899995, 28.600792427000044 ], [ -82.204118327999936, 28.600388678000058 ], [ -82.204314283999963, 28.600014976000068 ], [ -82.204568495999979, 28.59947392600003 ], [ -82.204717611999968, 28.599146297000061 ], [ -82.204890463999959, 28.598773576000042 ], [ -82.205212421999988, 28.598070223000036 ], [ -82.205510682999943, 28.597432987000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.205554322999944, 28.596692885000039 ], [ -82.20526880999995, 28.597313204000045 ], [ -82.20446216299996, 28.599047560000031 ], [ -82.204231718999949, 28.599558537000064 ], [ -82.203688211999975, 28.600743700000066 ], [ -82.20294365999996, 28.602356996000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.205554322999944, 28.596692885000039 ], [ -82.20544763099997, 28.596825636000062 ], [ -82.20536313599996, 28.596987110000043 ], [ -82.20494999899995, 28.597884234000048 ], [ -82.204706460999944, 28.598401023000065 ], [ -82.204450858999962, 28.598952573000076 ], [ -82.204267981999976, 28.599290617000065 ], [ -82.203885040999978, 28.600013832000059 ], [ -82.20372765999997, 28.600342411000042 ], [ -82.20317244499995, 28.601525252000044 ], [ -82.20277028199996, 28.602383661000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.205736917999957, 28.601689218000047 ], [ -82.205693529999962, 28.601634851000028 ], [ -82.205632261999938, 28.601568572000076 ], [ -82.205589269999962, 28.601516072000038 ], [ -82.205529776999981, 28.601451265000037 ], [ -82.205450609999957, 28.601361617000066 ], [ -82.205370359999961, 28.601271971000074 ], [ -82.205307447999985, 28.601193759000068 ], [ -82.205244525999944, 28.601110770000048 ], [ -82.205192444999966, 28.60103827100005 ], [ -82.205145786999935, 28.600972447000061 ], [ -82.205104543999937, 28.600908527000058 ], [ -82.205066538999972, 28.600840781000045 ], [ -82.205030691, 28.600769212000046 ], [ -82.204994682999939, 28.600695069000039 ], [ -82.204967676999956, 28.600638475000039 ], [ -82.20493615099997, 28.600563080000029 ], [ -82.204905694999979, 28.600481952000052 ], [ -82.204863254999964, 28.600358825000058 ], [ -82.204849449999983, 28.600289369000052 ], [ -82.204830307999941, 28.600218949000066 ], [ -82.204814965999958, 28.60014852200004 ], [ -82.204799593999951, 28.600061324000023 ], [ -82.204788039999983, 28.599984182000071 ], [ -82.204776440999979, 28.599883558000045 ], [ -82.204772464999962, 28.599792987000058 ], [ -82.204768501999979, 28.599709125000061 ], [ -82.204768357999967, 28.59963532200004 ], [ -82.204772048999985, 28.599578285000064 ], [ -82.204779513999938, 28.599507825000046 ], [ -82.204783185999986, 28.599440726000068 ], [ -82.204786849999948, 28.599370271000055 ], [ -82.204801911999937, 28.599296444000061 ], [ -82.204820747999975, 28.599209194000025 ], [ -82.204835789999947, 28.59912530400004 ], [ -82.20486981199997, 28.599027965000062 ], [ -82.204900038999938, 28.598933988000056 ], [ -82.204941674999986, 28.598843348000059 ], [ -82.205290630999968, 28.598034061000078 ], [ -82.205510682999943, 28.597432987000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.205510682999943, 28.597432987000047 ], [ -82.205636068999979, 28.597156455000061 ], [ -82.206080027999974, 28.596191592000025 ], [ -82.206147807999969, 28.596044308000046 ], [ -82.206412152999974, 28.595473202000051 ], [ -82.206635853999956, 28.595004283000037 ], [ -82.206798533999972, 28.594658609000078 ], [ -82.20706622199998, 28.594060463000062 ], [ -82.207371248999948, 28.593414200000041 ], [ -82.207679613999971, 28.592737895000027 ], [ -82.207767719999936, 28.592545522000023 ], [ -82.207835476999946, 28.592389226000023 ], [ -82.207906635999962, 28.59223292300004 ], [ -82.208309929999984, 28.591376249000064 ], [ -82.208445499999982, 28.591093692000072 ], [ -82.208560708999983, 28.590841204000071 ], [ -82.208628498999985, 28.590702929000031 ], [ -82.208696283999984, 28.590561650000041 ], [ -82.208760694999967, 28.590435396000032 ], [ -82.208855636999942, 28.590261035000026 ], [ -82.208916656999975, 28.590140792000057 ], [ -82.208998028999986, 28.589987477000079 ], [ -82.209093012999972, 28.589834143000076 ], [ -82.209167632999936, 28.58970787100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.209167632999936, 28.58970787100003 ], [ -82.20988037099994, 28.58874258000003 ], [ -82.210019671999987, 28.588628224000047 ], [ -82.210148862999972, 28.588564946000076 ], [ -82.21024407699997, 28.588528753000048 ], [ -82.210318897999969, 28.588504608000051 ], [ -82.210407329999953, 28.588480441000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210507213999961, 28.587371918000031 ], [ -82.210378197999944, 28.587522304000061 ], [ -82.210232207, 28.587693741000066 ], [ -82.21008965599998, 28.587883196000064 ], [ -82.209936893999952, 28.588072667000063 ], [ -82.209824914999956, 28.588235040000029 ], [ -82.209699333999936, 28.588403441000025 ], [ -82.209617869999988, 28.588508697000066 ], [ -82.209533036999972, 28.588631980000059 ], [ -82.209454979999975, 28.588740234000056 ], [ -82.209390517999964, 28.588839455000027 ], [ -82.209298901999944, 28.588974764000056 ], [ -82.209237842999983, 28.589073980000023 ], [ -82.209142841999949, 28.589218305000031 ], [ -82.209051258999978, 28.589371636000067 ], [ -82.208966443999941, 28.589503929000045 ], [ -82.20889862599995, 28.58962718600003 ], [ -82.208790099999987, 28.58981658600004 ], [ -82.208691765999959, 28.589996961000054 ], [ -82.208586652999941, 28.590192363000028 ], [ -82.208478150999952, 28.590393779000067 ], [ -82.208362899999941, 28.590625241000055 ], [ -82.208264640999971, 28.590844662000052 ], [ -82.208071447999941, 28.591244452000069 ], [ -82.207905394999955, 28.59160214800005 ], [ -82.207630935999987, 28.592212320000044 ], [ -82.207525872999952, 28.592434755000056 ], [ -82.20745470199995, 28.592585050000025 ], [ -82.207339475999959, 28.592831530000069 ], [ -82.206963311999971, 28.59364610800003 ], [ -82.206346519999954, 28.594977690000064 ], [ -82.205773774999955, 28.596216086000027 ], [ -82.205554322999944, 28.596692885000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.209167632999936, 28.58970787100003 ], [ -82.209669695999935, 28.588902102000077 ], [ -82.209832567999968, 28.588661554000055 ], [ -82.209983505999958, 28.588444198000047 ], [ -82.210110849999978, 28.588273645000072 ], [ -82.210263598999973, 28.588078167000049 ], [ -82.210429924999971, 28.587864646000071 ], [ -82.210609855999962, 28.587648100000024 ], [ -82.210778041999959, 28.587442185000043 ], [ -82.210993506999955, 28.587199952000049 ], [ -82.211205727999982, 28.58696227300004 ], [ -82.211748464999971, 28.58636460300005 ], [ -82.212090670999942, 28.585993116000054 ], [ -82.212452292999956, 28.585593407000033 ], [ -82.212645037999948, 28.585373078000032 ], [ -82.21288679099996, 28.585119323000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.215410180999982, 28.581954542000062 ], [ -82.214720930999988, 28.582709564000027 ], [ -82.213878884999986, 28.583636037000076 ], [ -82.213488422999944, 28.584069187000068 ], [ -82.213155686999983, 28.584442170000045 ], [ -82.212788966999938, 28.584839235000061 ], [ -82.212320400999943, 28.585359611000058 ], [ -82.212028391, 28.585681464000061 ], [ -82.211807677999957, 28.585922106000055 ], [ -82.211440971999934, 28.586331182000038 ], [ -82.210907849999955, 28.586908724000068 ], [ -82.210507213999961, 28.587371918000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.212910105999981, 28.585092127000053 ], [ -82.213043409999955, 28.584947087000046 ], [ -82.213462048999986, 28.584489310000038 ], [ -82.213930621999964, 28.583977941000057 ], [ -82.214397934999965, 28.583445674000075 ], [ -82.214843912999982, 28.582975003000058 ], [ -82.215384422999989, 28.582356007000044 ], [ -82.215967796999962, 28.581730942000036 ], [ -82.217047451999974, 28.580533742000057 ], [ -82.217244089999951, 28.580320318000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.217095572999938, 28.580082865000065 ], [ -82.216842425999971, 28.580352123000068 ], [ -82.216493258999947, 28.580762910000033 ], [ -82.215644450999946, 28.581695412000045 ], [ -82.215410180999982, 28.581954542000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210407329999953, 28.588480441000058 ], [ -82.210502621999979, 28.588483298000028 ], [ -82.210587704999966, 28.588486169000078 ], [ -82.210676190999948, 28.588489035000066 ], [ -82.21076470099996, 28.588503916000036 ], [ -82.210853222999958, 28.588524805000077 ], [ -82.210917929999937, 28.588548734000028 ], [ -82.210986138999942, 28.588583318000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210986138999942, 28.588583318000076 ], [ -82.211077951999982, 28.588587532000076 ], [ -82.211156216999939, 28.588584408000031 ], [ -82.211207245999958, 28.58857531700005 ], [ -82.211288865999961, 28.588548156000058 ], [ -82.211383977999958, 28.588460901000076 ], [ -82.211611471999959, 28.588205231000074 ], [ -82.212375495999936, 28.587375014000031 ], [ -82.212456971999984, 28.587294555000028 ], [ -82.212482198999965, 28.587256417000049 ], [ -82.212502961999974, 28.587219599000036 ], [ -82.212513296999987, 28.587177543000053 ], [ -82.212513151999985, 28.587105286000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210986138999942, 28.588583318000076 ], [ -82.211067964999984, 28.588698686000043 ], [ -82.211115764999988, 28.588776707000079 ], [ -82.211166917999947, 28.588830696000059 ], [ -82.211235015999989, 28.588848612000049 ], [ -82.211292879999974, 28.588854529000059 ], [ -82.211360905999982, 28.588836400000048 ], [ -82.211442477999981, 28.588785210000026 ], [ -82.21177235, 28.588670555000078 ], [ -82.211999873999957, 28.588429903000076 ], [ -82.212077963999945, 28.58833966900005 ], [ -82.212152668999977, 28.588258453000037 ], [ -82.212244358999953, 28.588162190000048 ], [ -82.212312267999948, 28.588086991000068 ], [ -82.212363193999977, 28.588026837000029 ], [ -82.212420913999949, 28.587960666000072 ], [ -82.212465049999935, 28.587909533000072 ], [ -82.212526166999965, 28.587840352000057 ], [ -82.212580481999964, 28.587774186000047 ], [ -82.212668786999984, 28.587686940000026 ], [ -82.212756836999972, 28.587592401000052 ], [ -82.212809003999951, 28.58751277600004 ], [ -82.212823384999979, 28.587435775000074 ], [ -82.212814496999954, 28.587353679000046 ], [ -82.212780313999986, 28.587302290000025 ], [ -82.21267463099997, 28.587209341000062 ], [ -82.212513151999985, 28.587105286000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.211940951999964, 28.58664428000003 ], [ -82.211940848999973, 28.586592963000044 ], [ -82.211958572999947, 28.586501586000054 ], [ -82.211988958999939, 28.586381391000032 ], [ -82.212019391999945, 28.58628522500004 ], [ -82.212056637999979, 28.586192051000069 ], [ -82.212100703999965, 28.586104874000057 ], [ -82.21216519799998, 28.586023674000046 ], [ -82.21288679099996, 28.585119323000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.212513151999985, 28.587105286000053 ], [ -82.212383458999966, 28.587005644000044 ], [ -82.212186715999962, 28.586870633000046 ], [ -82.212086865999936, 28.586807729000043 ], [ -82.212034218999975, 28.586764735000031 ], [ -82.211987608999948, 28.586716055000068 ], [ -82.211940951999964, 28.58664428000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210407329999953, 28.588480441000058 ], [ -82.210641932999977, 28.588374948000023 ], [ -82.210750633999965, 28.588275657000054 ], [ -82.210903514999984, 28.588146259000041 ], [ -82.211827095, 28.587120556000059 ], [ -82.211880226999938, 28.587041364000072 ], [ -82.211918343999969, 28.586967625000057 ], [ -82.211932713999943, 28.586885493000068 ], [ -82.211935446999973, 28.586798247000047 ], [ -82.211940951999964, 28.58664428000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.211223296999947, 28.584801772000048 ], [ -82.211264243999949, 28.584793546000071 ], [ -82.21132376199995, 28.584778436000079 ], [ -82.211370535999947, 28.584770854000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.211439562999942, 28.585957392000068 ], [ -82.211511863999988, 28.585769966000043 ], [ -82.211549419999983, 28.585651874000064 ], [ -82.211567842999955, 28.585569811000028 ], [ -82.211570451999989, 28.585538992000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.213545512999985, 28.583394644000066 ], [ -82.213396502999956, 28.583378992000064 ], [ -82.213313396999979, 28.583362012000066 ], [ -82.213210875999948, 28.583330398000044 ], [ -82.213097234999964, 28.583276804000036 ], [ -82.21296141199997, 28.58320857800004 ], [ -82.21290046699994, 28.583196453000028 ], [ -82.212836788999937, 28.583201441000028 ], [ -82.21279162899998, 28.583216184000037 ], [ -82.212742727999967, 28.583245584000053 ], [ -82.212712351999983, 28.583287185000074 ], [ -82.212244844999987, 28.583797052000079 ], [ -82.211524761999954, 28.584588907000068 ], [ -82.211452253999937, 28.584672414000067 ], [ -82.211370535999947, 28.584770854000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.215410180999982, 28.581954542000062 ], [ -82.215043312999967, 28.582270512000036 ], [ -82.214605324, 28.582754803000057 ], [ -82.214357442999983, 28.583016518000079 ], [ -82.214188258999968, 28.583187911000039 ], [ -82.21408022199995, 28.583255703000077 ], [ -82.213994472999957, 28.583302278000076 ], [ -82.21389487, 28.583343987000035 ], [ -82.213806310999985, 28.583368570000061 ], [ -82.21370942599998, 28.583385832000033 ], [ -82.21363467499998, 28.583393281000042 ], [ -82.213545512999985, 28.583394644000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.213545512999985, 28.583394644000066 ], [ -82.213432612999952, 28.583433929000023 ], [ -82.213355751999984, 28.583482876000062 ], [ -82.213293240999974, 28.58352800800003 ], [ -82.212944006999976, 28.583915725000054 ], [ -82.212825724999959, 28.584032745000059 ], [ -82.212401328999988, 28.584500748000039 ], [ -82.211996273999944, 28.584948924000059 ], [ -82.211786279999956, 28.585179011000037 ], [ -82.211694037999962, 28.585301611000034 ], [ -82.211660907999942, 28.585352502000035 ], [ -82.211620634999974, 28.585431026000037 ], [ -82.211570451999989, 28.585538992000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203656554999952, 28.581429786000058 ], [ -82.203661773999954, 28.581205265000051 ], [ -82.203637646999937, 28.580417012000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200249415999963, 28.581661101000066 ], [ -82.201952717999973, 28.581582009000044 ], [ -82.202822287999936, 28.581562295000026 ], [ -82.202965054999936, 28.581562295000026 ], [ -82.203156559999968, 28.58154528700004 ], [ -82.203286567999953, 28.581550082000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203654350999955, 28.581752589000075 ], [ -82.203654134999965, 28.581640832000062 ], [ -82.203658426999937, 28.581521086000066 ], [ -82.203656554999952, 28.581429786000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203656554999952, 28.581429786000058 ], [ -82.203558870999984, 28.581481321000069 ], [ -82.203459462999945, 28.581517392000023 ], [ -82.203286567999953, 28.581550082000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203286567999953, 28.581550082000035 ], [ -82.203396249999969, 28.581565384000044 ], [ -82.203513758999975, 28.581591324000044 ], [ -82.203592756999967, 28.581646528000078 ], [ -82.203654350999955, 28.581752589000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.191137103999949, 28.57616695400003 ], [ -82.191295369999978, 28.576174715000036 ], [ -82.191489823999973, 28.576190405000034 ], [ -82.191661647999979, 28.576194154000063 ], [ -82.191801827999939, 28.576201939000043 ], [ -82.191928430999951, 28.576201759000071 ], [ -82.192145462999974, 28.576201452000078 ], [ -82.19237155199994, 28.57620911500004 ], [ -82.192669992999981, 28.57622066600004 ], [ -82.192900594999969, 28.57622432900007 ], [ -82.193162894999944, 28.576251896000031 ], [ -82.193366353999977, 28.576247614000067 ], [ -82.19359699499995, 28.576271234000046 ], [ -82.193746232999956, 28.57628698700006 ], [ -82.193872893999981, 28.576318736000076 ], [ -82.193986004999942, 28.576358489000029 ], [ -82.194126280999967, 28.576418157000035 ], [ -82.194302655999934, 28.576437862000034 ], [ -82.194501632999959, 28.576453542000024 ], [ -82.194682543999988, 28.576481221000051 ], [ -82.194800139999984, 28.576501010000072 ], [ -82.195207193999977, 28.576564286000064 ], [ -82.195781653999973, 28.57668719000003 ], [ -82.195908331999988, 28.576726921000045 ], [ -82.196012437999968, 28.576786640000023 ], [ -82.196089412999982, 28.576846400000079 ], [ -82.196189198999946, 28.577013893000071 ], [ -82.196302569999943, 28.577193339000075 ], [ -82.196370578999961, 28.577293024000028 ], [ -82.196420426999964, 28.577352821000034 ], [ -82.19648381899998, 28.577400625000053 ], [ -82.196551744999965, 28.577456407000057 ], [ -82.196642212999961, 28.577476232000038 ], [ -82.196705536999957, 28.577488115000051 ], [ -82.196773352999969, 28.577484024000057 ], [ -82.196877296999958, 28.577455935000046 ], [ -82.196963139, 28.577419888000065 ], [ -82.197053524999944, 28.577395809000052 ], [ -82.197184597999978, 28.577367679000076 ], [ -82.197324720999973, 28.577343528000029 ], [ -82.197541726999987, 28.577327246000038 ], [ -82.197699994999937, 28.577334998000026 ], [ -82.19783567099995, 28.577350765000062 ], [ -82.198061912999947, 28.577438245000053 ], [ -82.198414877999937, 28.577589401000068 ], [ -82.198618415999988, 28.577625025000032 ], [ -82.198858064999968, 28.577628665000077 ], [ -82.199107096999967, 28.577811902000064 ], [ -82.199645817999965, 28.578158357000063 ], [ -82.200437987999976, 28.578628168000023 ], [ -82.200804675999962, 28.578859123000029 ], [ -82.201184856999987, 28.579050144000064 ], [ -82.201397363999945, 28.579045837000024 ], [ -82.201542048999954, 28.579041632000042 ], [ -82.201790851999988, 28.579101132000062 ], [ -82.202003475999959, 28.579156695000052 ], [ -82.202270487999954, 28.579280028000028 ], [ -82.202555778999965, 28.579503118000048 ], [ -82.202877380999951, 28.579797996000025 ], [ -82.203035891999946, 28.57992947300005 ], [ -82.203330190999964, 28.580132590000062 ], [ -82.203637646999937, 28.580417012000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.191137103999949, 28.57616695400003 ], [ -82.19115054599996, 28.576099084000077 ], [ -82.191162197999972, 28.576041991000068 ], [ -82.191176476999942, 28.575936598000055 ], [ -82.191194395999958, 28.575843975000055 ], [ -82.191223112999978, 28.575722597000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.191223112999978, 28.575722597000038 ], [ -82.191193938999959, 28.57559172200007 ], [ -82.191182867999942, 28.575470400000029 ], [ -82.191164596999954, 28.575368248000075 ], [ -82.191185969999935, 28.575186213000052 ], [ -82.191203930999961, 28.575115939000057 ], [ -82.19123635699998, 28.575045646000035 ], [ -82.191268836999939, 28.57500409000005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.191223112999978, 28.575722597000038 ], [ -82.192008047999934, 28.575724682000043 ], [ -82.192796580999982, 28.575717177000058 ], [ -82.194695617999969, 28.575724046000062 ], [ -82.19497776999998, 28.575730026000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.191268836999939, 28.57500409000005 ], [ -82.19147501499998, 28.575003800000047 ], [ -82.191804216999969, 28.57502568600006 ], [ -82.192162285999984, 28.575009214000033 ], [ -82.192397442999948, 28.575031232000072 ], [ -82.192596374999937, 28.575024564000046 ], [ -82.192712104999941, 28.575014821000025 ], [ -82.192954436999969, 28.575004897000042 ], [ -82.193160615999943, 28.575004604000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.19004463999994, 28.576129374000061 ], [ -82.190115144999936, 28.576112512000066 ], [ -82.190273368999954, 28.576096325000037 ], [ -82.190440685999988, 28.576108064000039 ], [ -82.19073463999996, 28.576139582000053 ], [ -82.191137103999949, 28.57616695400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.199688566999953, 28.606599939000034 ], [ -82.199546956999939, 28.606749597000032 ], [ -82.199436122999941, 28.606872849000069 ], [ -82.199273730999948, 28.607050884000046 ], [ -82.199041748999946, 28.607308802000034 ], [ -82.198796879999975, 28.60758269300004 ], [ -82.198652546999938, 28.607749303000048 ], [ -82.198495313999956, 28.607925051000052 ], [ -82.198320034999938, 28.608119059000046 ], [ -82.198124099999973, 28.608317656000054 ], [ -82.197946201999969, 28.608493433000035 ], [ -82.197719314999972, 28.608696515000076 ], [ -82.19755227099995, 28.608846653000057 ], [ -82.197329031999971, 28.609049815000049 ], [ -82.19698346399997, 28.60935697900004 ], [ -82.196486736999987, 28.609769906000054 ], [ -82.195898541999952, 28.610247015000027 ], [ -82.19530272999998, 28.610719717000052 ], [ -82.194131726999956, 28.611649129000057 ], [ -82.193174953999971, 28.612405157000069 ], [ -82.192202372999986, 28.613185938000072 ], [ -82.191526566999983, 28.613722562000078 ], [ -82.190453522999974, 28.61457886200003 ], [ -82.188379595999947, 28.616222953000033 ], [ -82.187827574999972, 28.616663649000031 ], [ -82.186607429999981, 28.617634094000039 ], [ -82.186300456999959, 28.617878416000053 ], [ -82.185167998999987, 28.618782624000062 ], [ -82.184401829999956, 28.619389998000031 ], [ -82.183390569999972, 28.620186892000049 ], [ -82.18286173599995, 28.620616140000038 ], [ -82.181455738999944, 28.621725834000074 ], [ -82.180011032999971, 28.622876595000037 ], [ -82.179397023999968, 28.623365208000052 ], [ -82.178037403999951, 28.624445172000037 ], [ -82.177111166999964, 28.625175766000041 ], [ -82.176949295999975, 28.625305586000025 ], [ -82.176931775999947, 28.625319603000037 ], [ -82.176673409999978, 28.625526317000038 ], [ -82.175932140999976, 28.626121024000042 ], [ -82.175393765999956, 28.626543193000032 ], [ -82.175036850999959, 28.626824249000038 ], [ -82.174569867999935, 28.627200957000071 ], [ -82.174429890999988, 28.627314822000073 ], [ -82.174154485999964, 28.627538848000029 ], [ -82.173919682999951, 28.627716945000032 ], [ -82.17345235099998, 28.628078656000071 ], [ -82.173063077999984, 28.628395032000071 ], [ -82.172611555999936, 28.628755759000057 ], [ -82.172376754999959, 28.628938412000025 ], [ -82.172049086999948, 28.629207801000064 ], [ -82.171775585999967, 28.629424694000079 ], [ -82.171502085999975, 28.629641587000037 ], [ -82.171272443999953, 28.629821952000043 ], [ -82.17104022999996, 28.630009158000064 ], [ -82.170766724999964, 28.630226049000044 ], [ -82.170175861999951, 28.630703195000024 ], [ -82.169995259999951, 28.630856142000027 ], [ -82.16973982899998, 28.631068450000043 ], [ -82.169515377999971, 28.631267041000058 ], [ -82.169244482999943, 28.631504440000072 ], [ -82.168952952999973, 28.631762380000055 ], [ -82.168736259999946, 28.631967799000051 ], [ -82.168493765999983, 28.632196044000068 ], [ -82.168207421999966, 28.632467652000059 ], [ -82.167933975999972, 28.632730125000023 ], [ -82.167701825999984, 28.632965194000064 ], [ -82.167438731999937, 28.633239051000032 ], [ -82.167185956999958, 28.633503777000044 ], [ -82.166964139999948, 28.633741111000063 ], [ -82.166729429999975, 28.633994417000054 ], [ -82.166499895999948, 28.634254554000051 ], [ -82.166278098999953, 28.634505564000051 ], [ -82.166035680999983, 28.634788510000078 ], [ -82.165837116999967, 28.635028094000063 ], [ -82.165664328999981, 28.635231175000058 ], [ -82.165522513999974, 28.635413702000051 ], [ -82.165360052999972, 28.635612212000069 ], [ -82.165153755999938, 28.635865479000074 ], [ -82.164921712999956, 28.636178043000029 ], [ -82.164656141999956, 28.63652939900004 ], [ -82.164452461999986, 28.636807737000026 ], [ -82.164215290999948, 28.63714765900005 ], [ -82.16401936799997, 28.637430545000029 ], [ -82.163826023999945, 28.63771114900004 ], [ -82.16364557299994, 28.637975781000023 ], [ -82.16344707199994, 28.638263230000064 ], [ -82.163093899999978, 28.638781085000062 ], [ -82.162714939999944, 28.63933316300006 ], [ -82.162423629999978, 28.639759765000065 ], [ -82.162272939, 28.639978920000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183750656999962, 28.598913984000035 ], [ -82.184119777999967, 28.59890576500004 ], [ -82.184698178999952, 28.598877490000064 ], [ -82.185592565999968, 28.598884123000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183750656999962, 28.598913984000035 ], [ -82.183752504999973, 28.59752394800006 ], [ -82.183758957999942, 28.596118061000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187846119999961, 28.597972069000036 ], [ -82.187844791999964, 28.597785773000055 ], [ -82.187849061999941, 28.597065266000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187849061999941, 28.597065266000072 ], [ -82.190594211999951, 28.597090603000026 ], [ -82.190711064999959, 28.597119891000034 ], [ -82.190872476999971, 28.597183478000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181731051999975, 28.596071391000066 ], [ -82.182765533999941, 28.596106759000065 ], [ -82.183758957999942, 28.596118061000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181678064999971, 28.598792425000056 ], [ -82.18169530199998, 28.598465672000032 ], [ -82.181711758999938, 28.597686527000064 ], [ -82.181689143999961, 28.596954559000039 ], [ -82.181659963999948, 28.596546186000069 ], [ -82.181641754999987, 28.596307448000061 ], [ -82.181655853999985, 28.596225746000073 ], [ -82.181698443999949, 28.596153431000062 ], [ -82.181731051999975, 28.596071391000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.17963337599997, 28.596077146000027 ], [ -82.181731051999975, 28.596071391000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179494193999972, 28.599045494000052 ], [ -82.179635100999974, 28.598065499000029 ], [ -82.179616109999984, 28.597930146000067 ], [ -82.179595478999943, 28.597804038000049 ], [ -82.179652518999944, 28.597329458000047 ], [ -82.179624480999962, 28.596848981000051 ], [ -82.179617081999936, 28.596500619000039 ], [ -82.17963337599997, 28.596077146000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183784023999976, 28.592528703000028 ], [ -82.183944623999935, 28.592526083000052 ], [ -82.18426040199995, 28.592532862000041 ], [ -82.184706828999936, 28.592532255000037 ], [ -82.185044375999951, 28.592534197000077 ], [ -82.185509869999976, 28.592540769000038 ], [ -82.185886067999945, 28.592540976000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185823553999967, 28.594142130000023 ], [ -82.185823113999959, 28.593892263000043 ], [ -82.18583123999997, 28.593559737000078 ], [ -82.185832811999944, 28.593215688000043 ], [ -82.185849773999962, 28.592954266000049 ], [ -82.185872117999963, 28.592657999000039 ], [ -82.185886067999945, 28.592540976000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185886067999945, 28.592540976000066 ], [ -82.186691279999934, 28.592546356000071 ], [ -82.186821941999938, 28.592546177000031 ], [ -82.187708826999938, 28.592555763000064 ], [ -82.18789512099994, 28.592554785000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18789512099994, 28.592554785000061 ], [ -82.188931705999948, 28.592555267000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.188815463999958, 28.595749878000049 ], [ -82.188832610999953, 28.595596090000072 ], [ -82.188858426999957, 28.595419226000047 ], [ -82.188862472999972, 28.595246236000037 ], [ -82.188875412999948, 28.595175101000052 ], [ -82.188901235999936, 28.595002082000065 ], [ -82.188907381999968, 28.594784880000077 ], [ -82.18892643099997, 28.59447732700005 ], [ -82.188939002999973, 28.594200533000048 ], [ -82.188953716999947, 28.593904517000055 ], [ -82.188935890999971, 28.593677739000043 ], [ -82.18892662899998, 28.593370224000068 ], [ -82.188920719999942, 28.593224102000079 ], [ -82.188928283999985, 28.593078070000047 ], [ -82.188927703, 28.59275324400005 ], [ -82.188931705999948, 28.592555267000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.191856306999966, 28.592530019000037 ], [ -82.191897605999941, 28.592487676000076 ], [ -82.191928003999976, 28.592437659000041 ], [ -82.191945289999978, 28.59236267600005 ], [ -82.191925626999989, 28.592042954000078 ], [ -82.191940148999947, 28.591567468000051 ], [ -82.191963364999935, 28.591053465000073 ], [ -82.19197029999998, 28.590904937000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.191849287999958, 28.595973249000053 ], [ -82.191861727999935, 28.595796793000034 ], [ -82.191907036999964, 28.594982110000046 ], [ -82.191906432999986, 28.593750451000062 ], [ -82.19189963499997, 28.593604385000049 ], [ -82.191924691999986, 28.593012357000077 ], [ -82.191930683999942, 28.592714431000047 ], [ -82.191913104999969, 28.59262796400003 ], [ -82.191893428999947, 28.592585706000079 ], [ -82.191856306999966, 28.592530019000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189937738999959, 28.592521006000027 ], [ -82.190046633999941, 28.592526620000058 ], [ -82.190133745999958, 28.592528420000065 ], [ -82.190264410999987, 28.592530159000034 ], [ -82.190386357999955, 28.592528246000029 ], [ -82.190634625999962, 28.59253366300004 ], [ -82.190871983999955, 28.592527563000033 ], [ -82.191233483999952, 28.59252897600004 ], [ -82.191679913999963, 28.592530268000075 ], [ -82.191856306999966, 28.592530019000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174602567999955, 28.574269511000068 ], [ -82.174728387999949, 28.574275757000066 ], [ -82.175151781999944, 28.574273075000065 ], [ -82.175897677999956, 28.574272065000059 ], [ -82.176842949, 28.57426874600003 ], [ -82.17760022799996, 28.574269893000064 ], [ -82.178013327999963, 28.574272946000065 ], [ -82.17838050499995, 28.57427440500004 ], [ -82.178743274999988, 28.574270045000048 ], [ -82.179165426999987, 28.574277251000069 ], [ -82.180506599999944, 28.574275474000046 ], [ -82.181377271999963, 28.574280136000027 ], [ -82.182353454999941, 28.574271064000072 ], [ -82.182900363999977, 28.574267660000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174623307, 28.575200104000032 ], [ -82.174606004999987, 28.575124311000025 ], [ -82.174571877999938, 28.57496440500006 ], [ -82.17459390199997, 28.574882489000061 ], [ -82.174605749999955, 28.574730834000036 ], [ -82.174605526999983, 28.574596281000026 ], [ -82.174612509999974, 28.574429681000026 ], [ -82.174602567999955, 28.574269511000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182894231999967, 28.575291180000079 ], [ -82.182895932999941, 28.575201959000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174623307, 28.575200104000032 ], [ -82.175005483999939, 28.575192030000039 ], [ -82.175460682999983, 28.575195233000045 ], [ -82.175731207999945, 28.575187302000074 ], [ -82.176109108999981, 28.575190602000077 ], [ -82.17649559299997, 28.575190100000043 ], [ -82.176882083999942, 28.575193388000059 ], [ -82.177470396999979, 28.575192620000053 ], [ -82.178651325999965, 28.575194861000057 ], [ -82.178754393999952, 28.575198516000057 ], [ -82.179462954999963, 28.575201372000038 ], [ -82.179986846999952, 28.575196887000061 ], [ -82.180837124999982, 28.575203338000051 ], [ -82.181399671999941, 28.575202587000035 ], [ -82.182895932999941, 28.575201959000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182894231999967, 28.575291180000079 ], [ -82.183087461999946, 28.575283718000037 ], [ -82.183233447999953, 28.575272148000067 ], [ -82.183413813999948, 28.575275695000073 ], [ -82.183637067999939, 28.575248858000066 ], [ -82.183929097999965, 28.575259835000054 ], [ -82.184199629999966, 28.57525567700003 ], [ -82.18456036799995, 28.575266560000046 ], [ -82.185006978, 28.575269742000046 ], [ -82.185337695999976, 28.575303408000025 ], [ -82.185518087999981, 28.575322115000063 ], [ -82.185646875999964, 28.575299194000024 ], [ -82.185771343999988, 28.575261116000036 ], [ -82.185986022999941, 28.575241868000035 ], [ -82.186123447999989, 28.575245470000027 ], [ -82.186269451999976, 28.575245270000039 ], [ -82.186527066999986, 28.575222171000064 ], [ -82.186844821999955, 28.575210362000064 ], [ -82.187079551999943, 28.575206303000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182875025999977, 28.57610395100005 ], [ -82.182894231999967, 28.575291180000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182878628999958, 28.576200990000075 ], [ -82.182875025999977, 28.57610395100005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182862856999975, 28.577013756000042 ], [ -82.182878628999958, 28.576200990000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182862794999949, 28.578343376000078 ], [ -82.182877018999989, 28.577256348000049 ], [ -82.182862856999975, 28.577013756000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187036798999941, 28.578399826000066 ], [ -82.187063531999968, 28.578318316000036 ], [ -82.187109846999988, 28.57808777200006 ], [ -82.187121898999976, 28.577898591000064 ], [ -82.187136587999987, 28.577668020000033 ], [ -82.18712241299994, 28.577423003000035 ], [ -82.187146992999942, 28.577335629000061 ], [ -82.187149358999989, 28.577119702000061 ], [ -82.187165668999967, 28.577017784000077 ], [ -82.187170994999974, 28.576920733000065 ], [ -82.187165217999961, 28.576763043000028 ], [ -82.187134680999975, 28.576590832000079 ], [ -82.187092341999971, 28.576332520000051 ], [ -82.187095606999947, 28.576253354000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.186605704999977, 28.576249480000058 ], [ -82.186842058999957, 28.576246729000047 ], [ -82.187095606999947, 28.576253354000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.186604070999977, 28.578381857000068 ], [ -82.186605704999977, 28.576249480000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185503580999978, 28.576231583000038 ], [ -82.185602512999935, 28.576226594000047 ], [ -82.185720683999989, 28.576221581000027 ], [ -82.185962554999946, 28.576230955000028 ], [ -82.18625938699995, 28.576235399000041 ], [ -82.186476526999968, 28.576247231000025 ], [ -82.186605704999977, 28.576249480000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185485940999968, 28.578318055000068 ], [ -82.185516031999953, 28.578237953000041 ], [ -82.185490455999968, 28.578051709000079 ], [ -82.18542107899998, 28.577769844000045 ], [ -82.18543458299996, 28.577633965000075 ], [ -82.18543716399995, 28.577539343000069 ], [ -82.185437010999976, 28.577452004000065 ], [ -82.185434076999968, 28.577345260000072 ], [ -82.185442111999976, 28.577169172000026 ], [ -82.185436393999964, 28.577100220000034 ], [ -82.185463691999985, 28.576993433000041 ], [ -82.185474369999952, 28.576813888000061 ], [ -82.185482228999945, 28.576593101000071 ], [ -82.185498419999988, 28.576423252000041 ], [ -82.185503580999978, 28.576231583000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182878628999958, 28.576200990000075 ], [ -82.183019517999981, 28.576222029000064 ], [ -82.183208520999983, 28.576252101000023 ], [ -82.183363114999963, 28.576251892000073 ], [ -82.183507397999961, 28.576248664000047 ], [ -82.183783119999987, 28.576238775000036 ], [ -82.183970002999956, 28.576236096000059 ], [ -82.184297069999957, 28.576242931000024 ], [ -82.184558764999963, 28.576251073000037 ], [ -82.184860017999938, 28.576254787000039 ], [ -82.185129312999948, 28.576245482000047 ], [ -82.185503580999978, 28.576231583000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18186630699995, 28.577008152000076 ], [ -82.182862856999975, 28.577013756000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.180867206999949, 28.577003277000074 ], [ -82.18186630699995, 28.577008152000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.180811506999987, 28.57940383600004 ], [ -82.180891605999989, 28.578927048000025 ], [ -82.180894902999967, 28.578798169000038 ], [ -82.180880413999944, 28.578554413000063 ], [ -82.180848189999949, 28.578225283000052 ], [ -82.180812537999941, 28.577948948000028 ], [ -82.180789264999987, 28.577711415000067 ], [ -82.180783660999964, 28.577520440000058 ], [ -82.180799277999938, 28.577394650000031 ], [ -82.180777912999986, 28.577244066000048 ], [ -82.18078133399996, 28.577188165000052 ], [ -82.180788228999972, 28.577105862000053 ], [ -82.180811021999943, 28.577062355000066 ], [ -82.180867206999949, 28.577003277000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178772936999962, 28.577001249000034 ], [ -82.180867206999949, 28.577003277000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178720823999981, 28.578689886000063 ], [ -82.178683733999947, 28.578532787000029 ], [ -82.178709115999936, 28.57811126200005 ], [ -82.17876879399995, 28.577801868000051 ], [ -82.178785120999976, 28.577704803000074 ], [ -82.178779500999951, 28.577632028000039 ], [ -82.178757374999975, 28.577549569000041 ], [ -82.178773773999978, 28.577496174000032 ], [ -82.178754338999966, 28.57737974500003 ], [ -82.178743201999964, 28.577294847000076 ], [ -82.178762180999968, 28.577141978000043 ], [ -82.178775796999957, 28.577066751000075 ], [ -82.178772936999962, 28.577001249000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177819246999945, 28.577000076000047 ], [ -82.178772936999962, 28.577001249000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177782610999941, 28.579729491000023 ], [ -82.177796030999957, 28.579537811000023 ], [ -82.177792502999978, 28.579074430000048 ], [ -82.177767184999936, 28.578727530000037 ], [ -82.177753054999982, 28.578497069000036 ], [ -82.17776099699995, 28.578317527000024 ], [ -82.17774977199997, 28.57817925300003 ], [ -82.177743846999988, 28.578041068000061 ], [ -82.177738328999965, 28.577912397000034 ], [ -82.17776549599995, 28.577723125000034 ], [ -82.177734895999947, 28.577504816000044 ], [ -82.177745501999937, 28.577274322000051 ], [ -82.177764561999936, 28.577167549000023 ], [ -82.177786418999972, 28.577089885000078 ], [ -82.177819246999945, 28.577000076000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.17670835399997, 28.577001770000038 ], [ -82.177819246999945, 28.577000076000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.176631068999939, 28.579764960000034 ], [ -82.176652699999977, 28.579551435000042 ], [ -82.17668532, 28.579335469000057 ], [ -82.176687609999988, 28.579061316000036 ], [ -82.17664782199995, 28.578784359000053 ], [ -82.17667586999994, 28.578614929000025 ], [ -82.176652236999985, 28.57846646400003 ], [ -82.176628324999967, 28.578122492000034 ], [ -82.176635962999967, 28.577758565000067 ], [ -82.176665615, 28.577411594000068 ], [ -82.176698270999964, 28.577217464000057 ], [ -82.176720035999949, 28.577084 ], [ -82.17670835399997, 28.577001770000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.175634278999951, 28.57699685700004 ], [ -82.17670835399997, 28.577001770000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.175571187999935, 28.577526096000042 ], [ -82.175634278999951, 28.57699685700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174631677999969, 28.577002032000053 ], [ -82.175634278999951, 28.57699685700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174676459999944, 28.576094634000071 ], [ -82.175915221999958, 28.576090409000074 ], [ -82.176638038999954, 28.576089470000056 ], [ -82.177470101999972, 28.576088082000069 ], [ -82.178770766999946, 28.576091529000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187043901999971, 28.579233745000067 ], [ -82.187039409999954, 28.579112950000024 ], [ -82.187039102999961, 28.578939298000023 ], [ -82.187035059999971, 28.578737090000061 ], [ -82.187036544999955, 28.57847580400005 ], [ -82.187036798999941, 28.578399826000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182857002999981, 28.579376185000058 ], [ -82.183015545999979, 28.579356265000058 ], [ -82.183212282999989, 28.579363550000039 ], [ -82.18334908099996, 28.579333165000037 ], [ -82.183601381999949, 28.579321499000059 ], [ -82.183738225999946, 28.579317538000055 ], [ -82.184020533999956, 28.579347356000028 ], [ -82.18431133699994, 28.579343187000063 ], [ -82.184614955999962, 28.579331449000051 ], [ -82.184927141999935, 28.579327248000027 ], [ -82.185222239999973, 28.579334395000046 ], [ -82.185495955999954, 28.579341573000079 ], [ -82.185632821999945, 28.579348935000041 ], [ -82.18577823399994, 28.579352511000025 ], [ -82.185949290999986, 28.579348501000027 ], [ -82.186244348999935, 28.579332996000062 ], [ -82.186505129999944, 28.579279788000065 ], [ -82.186736039999971, 28.579264369000043 ], [ -82.186868593999975, 28.579252862000033 ], [ -82.187043901999971, 28.579233745000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182841144999941, 28.579702371000053 ], [ -82.182857002999981, 28.579376185000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174676459999944, 28.576094634000071 ], [ -82.174638338999955, 28.576081560000034 ], [ -82.174614146999943, 28.576061903000038 ], [ -82.174583445999986, 28.576039795000042 ], [ -82.174561066999956, 28.575992248000034 ], [ -82.174560132999943, 28.575779414000067 ], [ -82.174572617999956, 28.575648897000065 ], [ -82.174613400999988, 28.575463883000054 ], [ -82.174623307, 28.575200104000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182862794999949, 28.578343376000078 ], [ -82.183111850999978, 28.578331666000054 ], [ -82.183313685999963, 28.578331394000031 ], [ -82.183637927999939, 28.578339959000061 ], [ -82.183804319999979, 28.578330256000072 ], [ -82.184018, 28.578349395000032 ], [ -82.184249881999961, 28.578341500000079 ], [ -82.184473189999949, 28.578341196000054 ], [ -82.184722178999948, 28.578291576000026 ], [ -82.184903155999962, 28.578248494000036 ], [ -82.185031640999966, 28.578262691000077 ], [ -82.185120343999984, 28.578284589000077 ], [ -82.18527983599995, 28.578332894000027 ], [ -82.185485940999968, 28.578318055000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178772936999962, 28.577001249000034 ], [ -82.178772653999943, 28.576833849000025 ], [ -82.17875874799995, 28.576736822000044 ], [ -82.178758070999947, 28.576336517000072 ], [ -82.17877376499996, 28.576239518000079 ], [ -82.178770766999946, 28.576091529000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182857002999981, 28.579376185000058 ], [ -82.182843357999957, 28.578707189000056 ], [ -82.182862794999949, 28.578343376000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178770766999946, 28.576091529000053 ], [ -82.179755544999978, 28.576096067000037 ], [ -82.180694931999938, 28.576099084000077 ], [ -82.181665740999961, 28.576099511000052 ], [ -82.182875025999977, 28.57610395100005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.172533480999959, 28.574180682000076 ], [ -82.172618498999952, 28.574180212000044 ], [ -82.172959638999941, 28.574181912000029 ], [ -82.173361247999935, 28.574172858000054 ], [ -82.173670910999988, 28.574159646000055 ], [ -82.174009629999944, 28.57415921200004 ], [ -82.174278176999962, 28.574154596000028 ], [ -82.17443306499996, 28.574182162000056 ], [ -82.17455167199995, 28.574216183000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170440255999949, 28.574135468000065 ], [ -82.170605260999935, 28.574137341000039 ], [ -82.170857488999957, 28.574145347000069 ], [ -82.171321863999935, 28.574155165000036 ], [ -82.171828686999959, 28.574177414000076 ], [ -82.172223533999954, 28.574191479000035 ], [ -82.172533480999959, 28.574180682000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16845991699995, 28.57429686200004 ], [ -82.168585416999974, 28.574285523000071 ], [ -82.16908508299997, 28.574253688000056 ], [ -82.169523442999946, 28.574209444000076 ], [ -82.169912298999975, 28.574163181000074 ], [ -82.17023990499996, 28.574139881000065 ], [ -82.170440255999949, 28.574135468000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.167107470999952, 28.566353421000031 ], [ -82.167173656999978, 28.56628831300003 ], [ -82.167195620999962, 28.566203753000025 ], [ -82.167213838999942, 28.566080183000054 ], [ -82.167209944999968, 28.565946886000063 ], [ -82.16719133099997, 28.565820109000072 ], [ -82.167146963999983, 28.565709621000053 ], [ -82.167036321999944, 28.565608968000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.166481444999988, 28.566383451000036 ], [ -82.166610330999958, 28.566376790000049 ], [ -82.166846027999952, 28.566376501000036 ], [ -82.167022791999955, 28.566369781000049 ], [ -82.167107470999952, 28.566353421000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165048653999975, 28.566261653000026 ], [ -82.165280758999984, 28.56631989300007 ], [ -82.165571763999935, 28.566361804000053 ], [ -82.16578538999994, 28.566377800000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165048653999975, 28.566261653000026 ], [ -82.164973735, 28.566192332000071 ], [ -82.164931024999987, 28.566100999000071 ], [ -82.164933653999981, 28.565880879000076 ], [ -82.164914597999939, 28.56571266900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16578538999994, 28.566377800000055 ], [ -82.165777806999984, 28.566238005000059 ], [ -82.165840101999947, 28.566039601000057 ], [ -82.165872934999982, 28.56584123500005 ], [ -82.165894772999934, 28.565675393000049 ], [ -82.165945979999947, 28.565450994000059 ], [ -82.166015613999946, 28.565236324000068 ], [ -82.166029619999961, 28.564774628000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.166105812999945, 28.566390414000068 ], [ -82.166216284999962, 28.566383776000066 ], [ -82.166293623999934, 28.566383681000048 ], [ -82.166481444999988, 28.566383451000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16578538999994, 28.566377800000055 ], [ -82.165906941999935, 28.566390657000056 ], [ -82.166105812999945, 28.566390414000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.172921242999962, 28.588339734000044 ], [ -82.172906970999975, 28.588067813000066 ], [ -82.172915333999981, 28.587942661000056 ], [ -82.17292806599994, 28.587153984000054 ], [ -82.172930038999937, 28.586217145000035 ], [ -82.172928028999934, 28.58617898600005 ], [ -82.172927190999985, 28.58614220100003 ], [ -82.172931625, 28.586115380000024 ], [ -82.172935984999981, 28.58607624900003 ], [ -82.172950912999966, 28.586050537000062 ], [ -82.172979719999944, 28.586034840000025 ], [ -82.173015181999972, 28.586021092000067 ], [ -82.173274119999974, 28.58602687900003 ], [ -82.173340649999943, 28.586024348000024 ], [ -82.173371096999972, 28.585994944000049 ], [ -82.173424186999966, 28.585622140000055 ], [ -82.173442422999983, 28.585537271000078 ], [ -82.173464544999945, 28.585502985000062 ], [ -82.173497767999947, 28.585476026000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.173497767999947, 28.585476026000038 ], [ -82.173536631, 28.58550778700004 ], [ -82.173586560999979, 28.585524852000049 ], [ -82.173666970999989, 28.585534537000058 ], [ -82.173808378999979, 28.585549037000078 ], [ -82.174044026999979, 28.58555362900006 ], [ -82.174526428999968, 28.585572586000069 ], [ -82.174966427999948, 28.585571970000046 ], [ -82.175420222999946, 28.585553314000038 ], [ -82.17580923099996, 28.585561845000029 ], [ -82.176136817999975, 28.585570456000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178125364999971, 28.588821826000071 ], [ -82.177848082999958, 28.588824613000043 ], [ -82.177782058999981, 28.588814844000069 ], [ -82.177734118999979, 28.588794548000067 ], [ -82.17769150099997, 28.588774245000025 ], [ -82.177659510999945, 28.588742966000041 ], [ -82.177638164999962, 28.588710106000065 ], [ -82.17762922299994, 28.588667834000034 ], [ -82.177632524999979, 28.588288510000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177595400999962, 28.585690173000046 ], [ -82.177662998999949, 28.585630330000072 ], [ -82.177719726999953, 28.585599414000058 ], [ -82.17778154399997, 28.585592405000057 ], [ -82.177885670999956, 28.585583776000078 ], [ -82.178077862999942, 28.585593162000066 ], [ -82.178307182999959, 28.585604426000032 ], [ -82.178473174999965, 28.585617700000057 ], [ -82.178628268999944, 28.585642555000049 ], [ -82.178973373999952, 28.585678724000047 ], [ -82.179163427999981, 28.585715098000037 ], [ -82.179303208999954, 28.585724552000045 ], [ -82.179873168999961, 28.585714159000077 ], [ -82.180338335999977, 28.585721251000052 ], [ -82.180893088999937, 28.585757136000041 ], [ -82.181419391999952, 28.585758362000036 ], [ -82.181755730999953, 28.585775259000059 ], [ -82.181825618999937, 28.585779021000064 ], [ -82.181862769999952, 28.585794392000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177632524999979, 28.588288510000041 ], [ -82.177633667999942, 28.587618375000034 ], [ -82.177641282999957, 28.587408736000043 ], [ -82.177660377999985, 28.586669302000075 ], [ -82.177661343999944, 28.585944528000027 ], [ -82.177654555999936, 28.585803824000038 ], [ -82.177643561999957, 28.585759504000066 ], [ -82.177623849999975, 28.585724832000039 ], [ -82.177595400999962, 28.585690173000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.175014892999968, 28.588352520000058 ], [ -82.175140993999946, 28.588345136000044 ], [ -82.175251863999961, 28.588338683000075 ], [ -82.175421980999943, 28.588317565000068 ], [ -82.175603243999944, 28.588299380000024 ], [ -82.175777467999978, 28.588300553000067 ], [ -82.175987474999943, 28.588295274000075 ], [ -82.176074922999987, 28.58826281100005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.176074922999987, 28.58826281100005 ], [ -82.176172256999962, 28.588299380000024 ], [ -82.176288649999947, 28.588342473000068 ], [ -82.176388488999976, 28.588363877000063 ], [ -82.176472765999961, 28.588363767000033 ], [ -82.176632438999945, 28.588355729000057 ], [ -82.176804940999943, 28.588351273000058 ], [ -82.176925026999982, 28.588335696000058 ], [ -82.177053724999951, 28.588292537000029 ], [ -82.177173472999982, 28.588282593000031 ], [ -82.177262188999975, 28.588284435000048 ], [ -82.177399717999947, 28.588297957000066 ], [ -82.177499521999948, 28.588297827000076 ], [ -82.177632524999979, 28.588288510000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.176074922999987, 28.58826281100005 ], [ -82.176081763999946, 28.588163310000027 ], [ -82.176092445999984, 28.588020655000037 ], [ -82.176076882999951, 28.58785490300005 ], [ -82.176076548999959, 28.587654435000047 ], [ -82.176074079999978, 28.587482883000064 ], [ -82.176080356999989, 28.58731903000006 ], [ -82.176091032999977, 28.587172520000024 ], [ -82.176086404999978, 28.587016392000066 ], [ -82.176072805, 28.586717632000045 ], [ -82.176078982999968, 28.586494025000036 ], [ -82.176078677999953, 28.586310905000062 ], [ -82.176111184999968, 28.586160512000049 ], [ -82.176108830999965, 28.586058353000055 ], [ -82.176097699999957, 28.585931146000064 ], [ -82.176106293999965, 28.585846321000076 ], [ -82.176121457999955, 28.585773053000025 ], [ -82.176136817999975, 28.585570456000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.176136817999975, 28.585570456000028 ], [ -82.17627671799994, 28.585570274000077 ], [ -82.17639614999996, 28.585573132000036 ], [ -82.176604299999951, 28.58557587100006 ], [ -82.176815892999969, 28.585596679000048 ], [ -82.177044540999987, 28.585614452000073 ], [ -82.177239052999937, 28.585623233000035 ], [ -82.177378953999948, 28.585623050000038 ], [ -82.177471107999963, 28.585637990000066 ], [ -82.177556463999963, 28.58566799700003 ], [ -82.177595400999962, 28.585690173000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.173497767999947, 28.585476026000038 ], [ -82.17346443699995, 28.585436917000038 ], [ -82.173450507999974, 28.58539533700008 ], [ -82.173444878999987, 28.585343958000067 ], [ -82.173446142999978, 28.58519370700003 ], [ -82.17344585099994, 28.585016008000025 ], [ -82.173465525999973, 28.58453107400004 ], [ -82.173451666999938, 28.583736782000074 ], [ -82.17346222599997, 28.58341376900006 ], [ -82.173480530999939, 28.582743277000077 ], [ -82.173490639999955, 28.582146204000026 ], [ -82.173488410999937, 28.581632649000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178600897999956, 28.58379155700004 ], [ -82.179483223999966, 28.583707034000042 ], [ -82.180605800999956, 28.58369349700007 ], [ -82.181284766999966, 28.583662473000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.173488410999937, 28.581632649000028 ], [ -82.17546618199998, 28.581646546000059 ], [ -82.17596526899996, 28.581645511000033 ], [ -82.176784168999973, 28.581644447000031 ], [ -82.17866765499997, 28.581650714000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178600897999956, 28.58379155700004 ], [ -82.178600836999976, 28.583755459000031 ], [ -82.178620730999967, 28.583658484000068 ], [ -82.178646966999963, 28.583542486000056 ], [ -82.17865003299994, 28.583337676000042 ], [ -82.178656597999975, 28.583184063000033 ], [ -82.178669925999941, 28.582994299000063 ], [ -82.178672960999961, 28.58277141700006 ], [ -82.178665850999948, 28.582602764000058 ], [ -82.178651802, 28.582364845000029 ], [ -82.178647996999985, 28.58213293700004 ], [ -82.178664629999957, 28.581879920000063 ], [ -82.17866765499997, 28.581650714000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182601114999954, 28.581650296000078 ], [ -82.182844054999975, 28.581649969000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170371028999966, 28.576153288000057 ], [ -82.170390225999938, 28.576113593000059 ], [ -82.170417394999959, 28.57603943600003 ], [ -82.170435947999977, 28.575850059000061 ], [ -82.170428486999981, 28.575608695000028 ], [ -82.170460988999935, 28.575298613000029 ], [ -82.170477296999934, 28.57517998700007 ], [ -82.170479452999984, 28.57505513600006 ], [ -82.17048850599997, 28.574822074000053 ], [ -82.170459539999968, 28.574399707000055 ], [ -82.170440255999949, 28.574135468000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170444448999945, 28.577890185000058 ], [ -82.170444247999967, 28.577765509000074 ], [ -82.170431044999987, 28.577540608000049 ], [ -82.170426387999953, 28.577140370000052 ], [ -82.170433840999976, 28.576786162000076 ], [ -82.170448658999987, 28.576518723000049 ], [ -82.170458059999987, 28.576377032000039 ], [ -82.170441826999934, 28.576263709000045 ], [ -82.17041926099995, 28.576204232000066 ], [ -82.170371028999966, 28.576153288000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.192960597999956, 28.606917495000062 ], [ -82.192950645999986, 28.606320562000064 ], [ -82.192946529999972, 28.605684519000079 ], [ -82.192957301999968, 28.605113623000079 ], [ -82.192988626999977, 28.604474924000044 ], [ -82.192981466999981, 28.60378935600005 ], [ -82.192983614999946, 28.603348812000036 ], [ -82.192997817999981, 28.603038587000071 ], [ -82.192982605999987, 28.602796180000041 ], [ -82.192970438999964, 28.602603298000076 ], [ -82.192986910999934, 28.602302617000078 ], [ -82.192991112999948, 28.60215099900006 ], [ -82.192980662999958, 28.601732626000057 ], [ -82.192993835999971, 28.601406516000054 ], [ -82.19298166599998, 28.600987195000073 ], [ -82.192977478999978, 28.600775854000062 ], [ -82.192989509999961, 28.600537048000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.188783081999986, 28.61066244500006 ], [ -82.188789806999978, 28.610605594000049 ], [ -82.188791221999963, 28.610548916000027 ], [ -82.188794181999981, 28.610438796000039 ], [ -82.188798757999962, 28.610123905000023 ], [ -82.18879114799995, 28.609901171000047 ], [ -82.188811064999982, 28.608940156000074 ], [ -82.188809539999966, 28.608087362000049 ], [ -82.188815386999977, 28.607323656000062 ], [ -82.188840613999957, 28.605299820000027 ], [ -82.188824790999945, 28.604517051000073 ], [ -82.18881627199994, 28.603785186000039 ], [ -82.188850438999964, 28.60272868800007 ], [ -82.188883604999944, 28.601112145000059 ], [ -82.188871147999976, 28.600204624000071 ], [ -82.188855642999954, 28.600036910000028 ], [ -82.188828715999989, 28.599948357000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183729568999979, 28.601030237000032 ], [ -82.183721330999958, 28.600664584000071 ], [ -82.183728028999951, 28.600144595000074 ], [ -82.183731076999948, 28.599711831000036 ], [ -82.183746574999986, 28.599329429000079 ], [ -82.18374916199997, 28.599090441000044 ], [ -82.183750656999962, 28.598913984000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16837405299998, 28.575917759000049 ], [ -82.16836753299998, 28.575855427000079 ], [ -82.168367986999954, 28.575776951000023 ], [ -82.168376386999967, 28.575501234000058 ], [ -82.168373009999982, 28.575230733000069 ], [ -82.168390477999935, 28.575098061000062 ], [ -82.168405010999948, 28.574973193000062 ], [ -82.168413601999987, 28.57481712200007 ], [ -82.16841319599996, 28.574562224000033 ], [ -82.16845991699995, 28.57429686200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.164183263999973, 28.581531417000065 ], [ -82.165224624999951, 28.581557038000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16407628199994, 28.583128158000079 ], [ -82.164099176999969, 28.581888985000035 ], [ -82.164103271999977, 28.581667352000068 ], [ -82.164132991999963, 28.581620354000052 ], [ -82.164183263999973, 28.581531417000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.163125467999976, 28.581456613000057 ], [ -82.163483030999942, 28.581481542000063 ], [ -82.163730576999967, 28.581493102000024 ], [ -82.164183263999973, 28.581531417000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.163125467999976, 28.581456613000057 ], [ -82.163125323999964, 28.581363626000041 ], [ -82.16313587999997, 28.581309138000051 ], [ -82.16314854999996, 28.581245254000066 ], [ -82.163161161999938, 28.581143798000028 ], [ -82.163184472999944, 28.581079901000066 ], [ -82.163192900999945, 28.581025415000056 ], [ -82.163174955999978, 28.58096174800005 ], [ -82.163154345999942, 28.580863910000062 ], [ -82.163149692, 28.580606560000035 ], [ -82.163164243999972, 28.58038300100003 ], [ -82.163146751999989, 28.58008058300004 ], [ -82.163135807999936, 28.579883352000024 ], [ -82.163143960999946, 28.579650408000077 ], [ -82.163126709999972, 28.579503905000024 ], [ -82.163113676999956, 28.579332977000035 ], [ -82.163104831999988, 28.579116960000079 ], [ -82.163100049999969, 28.57877695600007 ], [ -82.163097714999935, 28.578641706000042 ], [ -82.163080344999969, 28.578418185000032 ], [ -82.163127009999982, 28.578318568000043 ], [ -82.163173655999969, 28.578207680000048 ], [ -82.163147810999988, 28.578008590000024 ], [ -82.163089681999963, 28.577572847000056 ], [ -82.163085311999964, 28.577499590000059 ], [ -82.163085166999963, 28.577405665000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.163140795999936, 28.58256416100005 ], [ -82.163120277999951, 28.582507079000038 ], [ -82.163111711999989, 28.582472524000025 ], [ -82.163135272999966, 28.582295165000062 ], [ -82.163160063999953, 28.581811232000064 ], [ -82.163146042999983, 28.58155126500003 ], [ -82.163125467999976, 28.581456613000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158966316999965, 28.581276554000056 ], [ -82.159665750999977, 28.581307441000035 ], [ -82.161026104999962, 28.581343405000041 ], [ -82.162083425999981, 28.581387229000029 ], [ -82.163125467999976, 28.581456613000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156767981999963, 28.581233427000029 ], [ -82.157922984999971, 28.58125132400005 ], [ -82.158247149999966, 28.581256957000051 ], [ -82.158966316999965, 28.581276554000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.155885407999961, 28.58123684800006 ], [ -82.156767981999963, 28.581233427000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.159968760999959, 28.587134356000035 ], [ -82.160125401999949, 28.587135673000034 ], [ -82.160452307999947, 28.587139795000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158889300999988, 28.587125104000052 ], [ -82.159035719999963, 28.587121927000055 ], [ -82.159308134999947, 28.587121607000029 ], [ -82.159968760999959, 28.587134356000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158896036999977, 28.589340228000026 ], [ -82.158890070999973, 28.588769170000035 ], [ -82.158884755999964, 28.588632422000046 ], [ -82.158860607999941, 28.588425062000056 ], [ -82.158849894999946, 28.588094459000047 ], [ -82.15887164999998, 28.587841963000074 ], [ -82.15890010399994, 28.587515820000078 ], [ -82.158892986999945, 28.587311448000037 ], [ -82.158889300999988, 28.587125104000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156399945999965, 28.589319084000067 ], [ -82.156493586999943, 28.58931597000003 ], [ -82.156748969999967, 28.589308162000066 ], [ -82.157026497999937, 28.58930784100005 ], [ -82.157252957999958, 28.589313588000039 ], [ -82.157452164999938, 28.589313357000037 ], [ -82.157676863999939, 28.589281538000023 ], [ -82.157848782999963, 28.589249780000046 ], [ -82.158044597999947, 28.589258568000048 ], [ -82.158315338999955, 28.589273281000033 ], [ -82.158896036999977, 28.589340228000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.243243528999983, 28.63255384200005 ], [ -82.243283903999952, 28.632574699000031 ], [ -82.243381210999985, 28.632593362000023 ], [ -82.244154561999949, 28.632587785000055 ], [ -82.245632488999945, 28.63258511500004 ], [ -82.246189973999947, 28.632584103000056 ], [ -82.247193459999949, 28.632588555000041 ], [ -82.24802138299998, 28.632587043000058 ], [ -82.248612225999977, 28.632583474000057 ], [ -82.24869565399996, 28.632569345000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.24869565399996, 28.632569345000036 ], [ -82.248766477999936, 28.632671489000074 ], [ -82.248790333999978, 28.632727956000053 ], [ -82.248797579999973, 28.632782360000078 ], [ -82.248771716999954, 28.63313246000007 ], [ -82.248783676999949, 28.633174298000029 ], [ -82.248813398999971, 28.633203023000078 ], [ -82.248860912999987, 28.633231713000043 ], [ -82.248949935999974, 28.633257712000045 ], [ -82.249658655999951, 28.633256408000079 ], [ -82.250053054999967, 28.633258298000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.250184097999977, 28.63624788900006 ], [ -82.250143698999977, 28.636218661000044 ], [ -82.250124635999953, 28.636183115000051 ], [ -82.250112679999972, 28.63614337000007 ], [ -82.250105453999936, 28.636097339000059 ], [ -82.250105314999985, 28.636038736000046 ], [ -82.250094022999974, 28.635279001000072 ], [ -82.250082186999975, 28.634289040000056 ], [ -82.250053054999967, 28.633258298000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.250053054999967, 28.633258298000044 ], [ -82.250595703999977, 28.633252063000043 ], [ -82.251179908999973, 28.63326406300007 ], [ -82.251235679, 28.633272331000057 ], [ -82.251266533999967, 28.633278553000025 ], [ -82.251299790999951, 28.633297328000026 ], [ -82.25131883399996, 28.633324501000061 ], [ -82.251335498999936, 28.633349586000065 ], [ -82.251347469999985, 28.633395610000036 ], [ -82.251354676999938, 28.633433271000058 ], [ -82.251359555999954, 28.633489772000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252823246999981, 28.635460737000074 ], [ -82.252797300999987, 28.635523575000036 ], [ -82.252800232999959, 28.63600443200005 ], [ -82.252795934999938, 28.636190716000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.253944347999948, 28.634052152000038 ], [ -82.253717579999943, 28.633470727000031 ], [ -82.25367687399995, 28.633313830000077 ], [ -82.253652783999939, 28.63316108600003 ], [ -82.253655226999967, 28.633121627000037 ], [ -82.253704122999977, 28.632807275000062 ], [ -82.253706379999983, 28.632759132000047 ], [ -82.253699085999983, 28.632685891000051 ], [ -82.253682344999959, 28.632629412000028 ], [ -82.25363699899998, 28.632516475000045 ], [ -82.253608405999955, 28.63246420400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.251359555999954, 28.633489772000075 ], [ -82.251435364999963, 28.633445679000033 ], [ -82.251520677999963, 28.633407846000068 ], [ -82.252139194999984, 28.633134609000024 ], [ -82.252605993999964, 28.632907698000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133140824999941, 28.657721718000062 ], [ -82.133158217999949, 28.656890576000023 ], [ -82.133163090999972, 28.656348928000057 ], [ -82.133168104999982, 28.655920021000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133168104999982, 28.655920021000043 ], [ -82.133170466999957, 28.655589152000061 ], [ -82.133169775999988, 28.655042609000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131294431999947, 28.655916832000059 ], [ -82.131541634999962, 28.655919318000031 ], [ -82.132334794999963, 28.655927762000033 ], [ -82.132645038999954, 28.655927459000054 ], [ -82.133168104999982, 28.655920021000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133177934999935, 28.654532259000064 ], [ -82.133175150999989, 28.654141098000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131307034999963, 28.654135155000063 ], [ -82.131634899999938, 28.654137289000062 ], [ -82.131984991999957, 28.65413694800003 ], [ -82.13232396799998, 28.654136617000063 ], [ -82.132832431999987, 28.654136120000032 ], [ -82.133032483999955, 28.654135923000069 ], [ -82.133175150999989, 28.654141098000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121596470999975, 28.667060125000035 ], [ -82.121594419999951, 28.667689807000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121596470999975, 28.667060125000035 ], [ -82.120824195999944, 28.667065717000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120824195999944, 28.667065717000071 ], [ -82.120824524999989, 28.667352380000068 ], [ -82.120818149999934, 28.667975501000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120818149999934, 28.667975501000058 ], [ -82.120820392999974, 28.668594593000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120818149999934, 28.667975501000058 ], [ -82.12087885699998, 28.668037520000041 ], [ -82.120926551999958, 28.668084271000055 ], [ -82.121017578999954, 28.668149127000049 ], [ -82.121098863999975, 28.668215903000032 ], [ -82.121146561999979, 28.668263608000075 ], [ -82.121180926999955, 28.66830211000007 ], [ -82.121188875999962, 28.668338059000064 ], [ -82.12119000399997, 28.668377211000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124147147999963, 28.667469431000029 ], [ -82.12351376099997, 28.667467559000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12351376099997, 28.667467559000045 ], [ -82.122819250999953, 28.667458390000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12351376099997, 28.667467559000045 ], [ -82.123510422999971, 28.668009054000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124926340999934, 28.668610467000065 ], [ -82.126154231999976, 28.668611780000049 ], [ -82.127909957999975, 28.668619933000059 ], [ -82.128466257999946, 28.668620700000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133117255999935, 28.670416341000077 ], [ -82.133122512999989, 28.669386695000071 ], [ -82.13311381799997, 28.669100041000036 ], [ -82.133071564999966, 28.668639460000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137358574999951, 28.668604005000077 ], [ -82.136812834999944, 28.668588323000051 ], [ -82.136402445999977, 28.668577277000054 ], [ -82.135596096999961, 28.668637201000024 ], [ -82.13531385899995, 28.668645324000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135291214999938, 28.675594896000064 ], [ -82.135291525999946, 28.675480186000073 ], [ -82.135282281999935, 28.675205781000045 ], [ -82.135282065999945, 28.675037215000032 ], [ -82.135279690999937, 28.674917650000054 ], [ -82.135281667999948, 28.674727521000079 ], [ -82.135301501999948, 28.674596174000044 ], [ -82.135314727999969, 28.674509917000023 ], [ -82.135323539999945, 28.674449146000029 ], [ -82.13532566799995, 28.674376620000032 ], [ -82.135312246999945, 28.67430999000004 ], [ -82.135285481999972, 28.674235534000047 ], [ -82.135285408999948, 28.674178691000066 ], [ -82.135282661999952, 28.673770995000041 ], [ -82.13528165699995, 28.672988547000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137358574999951, 28.668604005000077 ], [ -82.137353423999969, 28.668211378000024 ], [ -82.137371096999971, 28.666641060000075 ], [ -82.137372125999946, 28.665467901000056 ], [ -82.137371897999969, 28.665293452000071 ], [ -82.137374038999951, 28.665230727000051 ], [ -82.13737840999994, 28.665173880000054 ], [ -82.137389475999953, 28.665138587000058 ], [ -82.137422759999936, 28.665099352000027 ], [ -82.137456071999964, 28.665081677000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14186945299997, 28.668616543000041 ], [ -82.140337312999975, 28.668612410000037 ], [ -82.140018556999962, 28.668611394000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120820392999974, 28.668594593000023 ], [ -82.120803781999939, 28.668643610000061 ], [ -82.120798298999944, 28.668707317000042 ], [ -82.120797257999982, 28.669513076000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118784845999983, 28.668584220000071 ], [ -82.118799786999944, 28.669507693000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118799786999944, 28.669507693000071 ], [ -82.119545721999941, 28.669507036000027 ], [ -82.120797257999982, 28.669513076000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118799786999944, 28.669507693000071 ], [ -82.118798420999951, 28.670351498000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120797257999982, 28.669513076000044 ], [ -82.120799974999954, 28.670368115000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119680755, 28.670358823000072 ], [ -82.120799974999954, 28.670368115000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120802951999963, 28.672241662000033 ], [ -82.120804688999954, 28.672458213000027 ], [ -82.12078579599995, 28.674164224000037 ], [ -82.120789588999969, 28.675451380000027 ], [ -82.120786219999957, 28.676552619000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156454107999934, 28.590250758000025 ], [ -82.156418300999974, 28.59021623600006 ], [ -82.156394396999985, 28.590171179000038 ], [ -82.15638241299996, 28.59012761200006 ], [ -82.156373827999971, 28.59007802900004 ], [ -82.156399945999965, 28.589319084000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156454107999934, 28.590250758000025 ], [ -82.156500093999966, 28.590261224000074 ], [ -82.15657159899996, 28.59025663400007 ], [ -82.156726542999934, 28.590259461000073 ], [ -82.157593179999935, 28.590252446000079 ], [ -82.158744203999959, 28.590273645000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158857694999938, 28.589884286000029 ], [ -82.158896036999977, 28.589340228000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158744203999959, 28.590273645000025 ], [ -82.158776546999945, 28.590270602000032 ], [ -82.158810554999945, 28.590240506000043 ], [ -82.158825814999943, 28.590198411000074 ], [ -82.158857694999938, 28.589884286000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158857694999938, 28.589884286000029 ], [ -82.159663038999952, 28.589881838000053 ], [ -82.159950779999974, 28.589878494000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.159950779999974, 28.589878494000061 ], [ -82.160476909999943, 28.589886890000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156399945999965, 28.589319084000067 ], [ -82.156438280999964, 28.588761499000043 ], [ -82.15643308999995, 28.588704399000051 ], [ -82.156419377999953, 28.588644302000034 ], [ -82.156398875999969, 28.588596237000047 ], [ -82.156363068999951, 28.588560210000026 ], [ -82.156301198999984, 28.588531024000076 ], [ -82.156165500999975, 28.588517093000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.150879304999989, 28.588450283000043 ], [ -82.152366469999947, 28.588474450000035 ], [ -82.153763151999954, 28.588475222000056 ], [ -82.153853604999938, 28.588477468000065 ], [ -82.155133278999983, 28.58851123200003 ], [ -82.155957973999989, 28.588503241000069 ], [ -82.156165500999975, 28.588517093000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.150990995999962, 28.590281698000069 ], [ -82.150959044, 28.590262949000078 ], [ -82.150927072999934, 28.59023011000005 ], [ -82.150908362999985, 28.590169081000056 ], [ -82.150892131999967, 28.589981248000072 ], [ -82.150881286999947, 28.589838025000063 ], [ -82.150870382999983, 28.589654883000037 ], [ -82.150862103999941, 28.589445909000062 ], [ -82.150859023999942, 28.589152396000031 ], [ -82.150853357999949, 28.588910545000033 ], [ -82.150866334999989, 28.58868276100003 ], [ -82.150879304999989, 28.588450283000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.155627016999972, 28.598486408000042 ], [ -82.155822500999989, 28.598294501000055 ], [ -82.155835259999947, 28.597924657000078 ], [ -82.155824983999935, 28.597722143000055 ], [ -82.15582802299997, 28.597528419000071 ], [ -82.155817964999983, 28.59747266200003 ], [ -82.155821188999937, 28.597405150000043 ], [ -82.155824394999968, 28.597322962000078 ], [ -82.155827637999948, 28.597267191000071 ], [ -82.155834207999987, 28.597211415000061 ], [ -82.155840758999943, 28.597143899000059 ], [ -82.155847211999969, 28.597008874000039 ], [ -82.155846925999981, 28.596815155000058 ], [ -82.155843438999966, 28.596706558000051 ], [ -82.155839940999954, 28.596589155000061 ], [ -82.155808875999981, 28.596466761000045 ], [ -82.155821414999934, 28.596383892000063 ], [ -82.15578897599994, 28.596047013000032 ], [ -82.155848796999976, 28.595828939000057 ], [ -82.155854788999989, 28.595382787000062 ], [ -82.155840325999975, 28.594596182000032 ], [ -82.155829074999986, 28.593882895000036 ], [ -82.155854941999962, 28.593231316000072 ], [ -82.155838191999976, 28.593149151000034 ], [ -82.155863229999966, 28.592086595000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140872125999977, 28.605096078000031 ], [ -82.140765826999939, 28.605046635000065 ], [ -82.140668644999948, 28.605003878000048 ], [ -82.140590086999964, 28.604968729000063 ], [ -82.140561408999986, 28.604943903000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140561408999986, 28.604943903000049 ], [ -82.140532201999974, 28.604892505000066 ], [ -82.140524581999955, 28.604841727000064 ], [ -82.14053695399997, 28.604796456000031 ], [ -82.140606696999953, 28.604653754000026 ], [ -82.141065512999944, 28.603774016000045 ], [ -82.141358044999947, 28.603185708000069 ], [ -82.141620899999964, 28.602649074000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139161677999937, 28.604107057000078 ], [ -82.139394962999972, 28.604245675000072 ], [ -82.13957964399998, 28.60435177200003 ], [ -82.139748790999988, 28.604463026000076 ], [ -82.140007391999973, 28.604647904000046 ], [ -82.140096839999956, 28.604716383000039 ], [ -82.140170728999976, 28.604771163000066 ], [ -82.140240725999945, 28.604820806000077 ], [ -82.140318487999934, 28.604867012000057 ], [ -82.140384580999978, 28.604901230000053 ], [ -82.140464265999981, 28.604932004000034 ], [ -82.140512835999971, 28.604937096000072 ], [ -82.140561408999986, 28.604943903000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145740068999942, 28.606520321000062 ], [ -82.145775669999978, 28.606474413000058 ], [ -82.14578163699997, 28.606399741000075 ], [ -82.145781516999989, 28.60631268700007 ], [ -82.145795159999977, 28.605201059000024 ], [ -82.145794954999985, 28.605053737000048 ], [ -82.145790925999961, 28.604882983000039 ], [ -82.145790835999946, 28.604791148000061 ], [ -82.145805921999965, 28.604752384000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145805921999965, 28.604752384000051 ], [ -82.145866590999958, 28.604726790000029 ], [ -82.145989884999949, 28.604718286000036 ], [ -82.146255480999969, 28.60473055500006 ], [ -82.146777168999961, 28.604738362000035 ], [ -82.147599730999957, 28.60475245300006 ], [ -82.147751500999959, 28.604758985000046 ], [ -82.14782661199996, 28.604751603000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14782661199996, 28.604751603000068 ], [ -82.147843546999979, 28.604706585000031 ], [ -82.14784590499994, 28.604657297000074 ], [ -82.147846060999939, 28.604551291000064 ], [ -82.14784199099995, 28.60435375000003 ], [ -82.147847480999985, 28.604048720000037 ], [ -82.147851764999984, 28.603639428000065 ], [ -82.147855730999936, 28.603329176000045 ], [ -82.14785595799998, 28.60316584900005 ], [ -82.147853212999962, 28.602938708000067 ], [ -82.147852918999945, 28.602728708000029 ], [ -82.147859856999958, 28.602482270000053 ], [ -82.147868854999956, 28.601972257000057 ], [ -82.147875341999963, 28.601402247000067 ], [ -82.147872499999949, 28.601106534000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140121338999961, 28.606630944000074 ], [ -82.140312126999959, 28.606237735000036 ], [ -82.140872125999977, 28.605096078000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137686367999947, 28.611650447000045 ], [ -82.137724595999941, 28.611569582000072 ], [ -82.137784975999978, 28.61143931600003 ], [ -82.138067841999941, 28.610856901000034 ], [ -82.13830293999996, 28.610302658000023 ], [ -82.13844914699996, 28.610010040000077 ], [ -82.138887787999977, 28.609146244000044 ], [ -82.139743554999939, 28.60739847900004 ], [ -82.140121338999961, 28.606630944000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133150314999966, 28.62086615000004 ], [ -82.133162402999972, 28.620841406000068 ], [ -82.133588739999936, 28.619983842000067 ], [ -82.133780091999938, 28.619589366000071 ], [ -82.134068273999958, 28.618950508000069 ], [ -82.134468244999937, 28.618137474000036 ], [ -82.134772989999988, 28.617514162000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129211134999935, 28.622797379000076 ], [ -82.129242763999969, 28.62284449200007 ], [ -82.129286546999936, 28.622900164000043 ], [ -82.129323014999954, 28.62293227300006 ], [ -82.129369189999977, 28.622957943000074 ], [ -82.129425066999943, 28.622972890000028 ], [ -82.130248448999964, 28.623047102000044 ], [ -82.131222416999947, 28.623131876000059 ], [ -82.131654754999943, 28.62317002900005 ], [ -82.13187579199996, 28.623197671000071 ], [ -82.131992415999946, 28.623238273000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129077930999983, 28.621113215000037 ], [ -82.129116805999956, 28.621128178000049 ], [ -82.129158123999957, 28.621153853000067 ], [ -82.129221314999938, 28.621194508000031 ], [ -82.129257796, 28.621237331000032 ], [ -82.12927969499998, 28.621271594000063 ], [ -82.129304030999947, 28.621312286000034 ], [ -82.129316241999959, 28.621367989000078 ], [ -82.129314334999947, 28.621794421000061 ], [ -82.129251626999974, 28.622148053000046 ], [ -82.129171937999956, 28.62252098700003 ], [ -82.129159926999989, 28.622628142000053 ], [ -82.129169707999949, 28.622681704000058 ], [ -82.129184338999949, 28.622730976000071 ], [ -82.12919409899996, 28.622767395000039 ], [ -82.129211134999935, 28.622797379000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126759299999947, 28.633930023000062 ], [ -82.128133954999953, 28.633970602000034 ], [ -82.128612066999949, 28.633960844000057 ], [ -82.129332774999966, 28.633966361000034 ], [ -82.130285509999965, 28.633968550000077 ], [ -82.131252315999973, 28.633976923000034 ], [ -82.131614443999979, 28.633992079000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137350373999936, 28.637654118000057 ], [ -82.137391350999962, 28.63672357300004 ], [ -82.137381606999952, 28.635721123000053 ], [ -82.137400272999969, 28.634937 ], [ -82.137359341999968, 28.634172139000043 ], [ -82.137359815999957, 28.63410579300006 ], [ -82.137365350999971, 28.634036310000056 ], [ -82.137404672999935, 28.633996568000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141604231999963, 28.633847708000076 ], [ -82.141596983999989, 28.633686428000033 ], [ -82.141575513999953, 28.63340574800003 ], [ -82.14354756299997, 28.633257896000032 ], [ -82.144658386999936, 28.633182274000035 ], [ -82.146788611999966, 28.633021798000073 ], [ -82.148440784999934, 28.632914541000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137404672999935, 28.633996568000043 ], [ -82.137494643999958, 28.633974145000025 ], [ -82.137587442999973, 28.633964125000034 ], [ -82.13813588499994, 28.633968530000061 ], [ -82.139727780999976, 28.63398674900003 ], [ -82.140310695999972, 28.634005687000069 ], [ -82.141263468999966, 28.634035714000049 ], [ -82.141411119999987, 28.634032459000025 ], [ -82.141520063999963, 28.634001328000068 ], [ -82.141583294999975, 28.633965593000028 ], [ -82.141611348999959, 28.633912835000046 ], [ -82.141604231999963, 28.633847708000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12915688399994, 28.637594982000053 ], [ -82.129588835999982, 28.637604193000072 ], [ -82.130042617999948, 28.637626854000075 ], [ -82.130526998999983, 28.637633566000034 ], [ -82.130661996999947, 28.637628473000063 ], [ -82.131750481999973, 28.63763734500003 ], [ -82.132192060999955, 28.637639397000044 ], [ -82.132450820999964, 28.637641625000072 ], [ -82.132678637999959, 28.637638921000075 ], [ -82.132957087999955, 28.637641130000077 ], [ -82.133227087999956, 28.637633420000043 ], [ -82.13347738799996, 28.63761828500003 ], [ -82.133685497999977, 28.637600711000061 ], [ -82.133986419999985, 28.637580564000075 ], [ -82.134298616999956, 28.637580255000046 ], [ -82.134641789999989, 28.637609689000044 ], [ -82.134900577999986, 28.637631764000048 ], [ -82.135119965999934, 28.63763650900006 ], [ -82.135291529999961, 28.637633856000036 ], [ -82.135927175999939, 28.637633220000055 ], [ -82.137350373999936, 28.637654118000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137346603999958, 28.639507668000078 ], [ -82.137344083999949, 28.63924785100005 ], [ -82.137335133999954, 28.639076571000032 ], [ -82.13733214399997, 28.63877321800004 ], [ -82.13735646799995, 28.638013904000047 ], [ -82.137376009999969, 28.637902225000062 ], [ -82.137350373999936, 28.637654118000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137346603999958, 28.639507668000078 ], [ -82.137475283999947, 28.639484443000072 ], [ -82.137560359999952, 28.63948050700003 ], [ -82.137673787999972, 28.639470768000024 ], [ -82.138389313999937, 28.63945271800003 ], [ -82.138967427999944, 28.63945405100003 ], [ -82.139473548999945, 28.639453531000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.132175268999958, 28.643186140000068 ], [ -82.133166888999938, 28.643185997000046 ], [ -82.135168548999957, 28.643196043000046 ], [ -82.135648519999961, 28.643205186000046 ], [ -82.136576940999987, 28.64320557700006 ], [ -82.137362328999984, 28.643206707000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137339991999966, 28.646772086000055 ], [ -82.137344042999985, 28.645916542000066 ], [ -82.137351641999942, 28.645050472000037 ], [ -82.137359780999986, 28.644600109000066 ], [ -82.137362328999984, 28.643206707000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137339991999966, 28.646772086000055 ], [ -82.139350018999949, 28.646789186000035 ], [ -82.14136936999995, 28.646788811000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153537485999948, 28.648671003000061 ], [ -82.153546883, 28.648184269000069 ], [ -82.153545625999982, 28.64732136300006 ], [ -82.153543110999976, 28.646982620000074 ], [ -82.153520601999958, 28.646791879000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149735161999956, 28.646792550000043 ], [ -82.150741653999944, 28.646794999000065 ], [ -82.151366158999963, 28.646794303000036 ], [ -82.153142664999962, 28.646792306000066 ], [ -82.153520601999958, 28.646791879000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14136936999995, 28.646788811000079 ], [ -82.143201083999941, 28.646791089000033 ], [ -82.145187408999959, 28.64679454700007 ], [ -82.145630400999949, 28.646795241000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145630400999949, 28.646795241000063 ], [ -82.14688143099994, 28.646792107000067 ], [ -82.148185004999959, 28.646787123000024 ], [ -82.149735161999956, 28.646792550000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143382929999973, 28.644933422000065 ], [ -82.146559268999965, 28.644980003000057 ], [ -82.149358394999979, 28.644988090000027 ], [ -82.149787893999985, 28.645009901000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148089568999978, 28.637565079000069 ], [ -82.148195145999978, 28.637195017000067 ], [ -82.148245384999939, 28.636994389000051 ], [ -82.148310583999944, 28.636653343000035 ], [ -82.148398226999973, 28.636107244000073 ], [ -82.148413141999981, 28.635935625000059 ], [ -82.148428053999965, 28.635761779000063 ], [ -82.148430018999989, 28.635362859000054 ], [ -82.148434666999947, 28.635075365000034 ], [ -82.148433377999936, 28.634159416000045 ], [ -82.148440784999934, 28.632914541000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148464657999966, 28.624077230000069 ], [ -82.148446933999935, 28.624046049000071 ], [ -82.148421653999947, 28.62403047600003 ], [ -82.148355955999989, 28.624010492000025 ], [ -82.14825996999997, 28.624006139000073 ], [ -82.147234503999982, 28.624005028000056 ], [ -82.147181449999948, 28.623996172000034 ], [ -82.147141003999934, 28.623971700000027 ], [ -82.147108124999988, 28.623940536000077 ], [ -82.147087862999967, 28.623900444000071 ], [ -82.147080212999981, 28.623849194000059 ], [ -82.147075072999939, 28.623784570000055 ], [ -82.147081480999987, 28.622946612000078 ], [ -82.147099343999969, 28.621264004000068 ], [ -82.147098262999975, 28.620488454000053 ], [ -82.147101846999988, 28.619436553000071 ], [ -82.147112977999939, 28.61836235800007 ], [ -82.147114372999965, 28.617551147000029 ], [ -82.147120318999953, 28.616381127000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.151718964999986, 28.621332456000061 ], [ -82.151681049999979, 28.621312441000043 ], [ -82.151653234999969, 28.621290185000078 ], [ -82.151638035999952, 28.621259003000034 ], [ -82.15163268699996, 28.621051750000049 ], [ -82.15163384899995, 28.620102367000072 ], [ -82.151625021999962, 28.619233224000027 ], [ -82.151624090999974, 28.618584704000057 ], [ -82.151632717999973, 28.617557311000041 ], [ -82.151639037999985, 28.616681466000045 ], [ -82.151636332999942, 28.616556667000054 ], [ -82.151638752999986, 28.616483121000044 ], [ -82.151631107999947, 28.616436329000067 ], [ -82.151600758999962, 28.616407392000042 ], [ -82.151535064999962, 28.616387408000037 ], [ -82.151459294999938, 28.616385263000041 ], [ -82.150845576999984, 28.616385948000072 ], [ -82.149110484999937, 28.616378953000037 ], [ -82.148534642999948, 28.616375128000072 ], [ -82.147120318999953, 28.616381127000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.157724209999969, 28.624930634000066 ], [ -82.157727763999958, 28.62479997500003 ], [ -82.157726880999974, 28.624209399000051 ], [ -82.157721632999937, 28.624077918000069 ], [ -82.157729139999958, 28.624031108000054 ], [ -82.15774928899998, 28.62399319900004 ], [ -82.157804818999978, 28.623968620000028 ], [ -82.157890691999967, 28.623966291000045 ], [ -82.158171062999941, 28.623972650000042 ], [ -82.158789892999948, 28.623983070000065 ], [ -82.158974280999985, 28.623987311000064 ], [ -82.15903991, 28.623960490000059 ], [ -82.159075180999935, 28.623900278000065 ], [ -82.159092713999939, 28.623802198000078 ], [ -82.159095093999952, 28.623706367000068 ], [ -82.159094932999949, 28.623599395000042 ], [ -82.15909186, 28.62323613600006 ], [ -82.15909848299998, 28.622603209000033 ], [ -82.159104934999959, 28.621856621000063 ], [ -82.159102186999974, 28.621709538000061 ], [ -82.159099512999944, 28.621611483000038 ], [ -82.159104450999962, 28.621535706000031 ], [ -82.159096765999948, 28.621464398000057 ], [ -82.159063875999948, 28.62142655100007 ], [ -82.159015838999949, 28.621395407000023 ], [ -82.158940033999954, 28.621373210000058 ], [ -82.158793553999942, 28.621380068000065 ], [ -82.15861928399994, 28.621382500000038 ], [ -82.158465214999978, 28.621382680000067 ], [ -82.158250522999936, 28.621378475000029 ], [ -82.158073719999948, 28.62137645200005 ], [ -82.15788176999996, 28.621378905000029 ], [ -82.157662025999969, 28.621374703000072 ], [ -82.15739935299996, 28.62137500800003 ], [ -82.157028079999975, 28.621379896000064 ], [ -82.156639114999962, 28.621375889000035 ], [ -82.156116293999958, 28.621376492000024 ], [ -82.155517697999983, 28.621374951000064 ], [ -82.155004961999964, 28.621364396000047 ], [ -82.154426581999985, 28.621369513000047 ], [ -82.154009832999975, 28.621365530000048 ], [ -82.153595609999968, 28.621361542000045 ], [ -82.153209172999937, 28.621359751000057 ], [ -82.152246860999981, 28.621347463000063 ], [ -82.152014494999946, 28.621347724000032 ], [ -82.151787174999981, 28.621343523000064 ], [ -82.151718964999986, 28.621332456000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148089568999978, 28.637565079000069 ], [ -82.148675622999974, 28.637564437000037 ], [ -82.14896106599997, 28.637559667000062 ], [ -82.150014447999979, 28.637558505000072 ], [ -82.150901100999988, 28.637553063000041 ], [ -82.151555353999981, 28.637547875000052 ], [ -82.15174353499998, 28.637539029000038 ], [ -82.151914034999947, 28.637530480000066 ], [ -82.152027736999969, 28.637549853000053 ], [ -82.15214773799994, 28.637558075000072 ], [ -82.152615070999957, 28.637560336000035 ], [ -82.152943434999941, 28.637540465000029 ], [ -82.153230777999966, 28.637540140000056 ], [ -82.153423395999937, 28.637542710000048 ], [ -82.15355214799996, 28.637580322000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.15355214799996, 28.637580322000076 ], [ -82.153556393999963, 28.637027627000066 ], [ -82.153553199999976, 28.636568542000077 ], [ -82.15355270699996, 28.636229796000066 ], [ -82.153556950999985, 28.635674873000028 ], [ -82.153563395999981, 28.634897088000059 ], [ -82.153562120999936, 28.634021253000071 ], [ -82.153556069, 28.633371122000028 ], [ -82.153555078999943, 28.632691475000058 ], [ -82.153564750999976, 28.632208614000035 ], [ -82.153576812999972, 28.63158616100003 ], [ -82.153584063999972, 28.631222300000047 ], [ -82.153580254999952, 28.630387045000077 ], [ -82.153584282999986, 28.62959068300006 ], [ -82.153598988999988, 28.628888612000026 ], [ -82.153598767999938, 28.628737070000057 ], [ -82.15360366799996, 28.628632320000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127011681999988, 28.655907288000037 ], [ -82.12701057299995, 28.654987402000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12701057299995, 28.654987402000074 ], [ -82.12700730399996, 28.654326720000029 ], [ -82.127001907999954, 28.654137404000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124957356999971, 28.655024440000034 ], [ -82.125089367999976, 28.655019304000064 ], [ -82.125658577999957, 28.655029604000049 ], [ -82.126466445999938, 28.654982944000039 ], [ -82.12701057299995, 28.654987402000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127001907999954, 28.654137404000039 ], [ -82.127735352999935, 28.654148872000064 ], [ -82.128241672999934, 28.654180710000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124958628999934, 28.654127414000072 ], [ -82.125104831999977, 28.654114162000042 ], [ -82.126888403999942, 28.654121867000072 ], [ -82.127001907999954, 28.654137404000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124957356999971, 28.655024440000034 ], [ -82.124957732999974, 28.654322221000029 ], [ -82.124955187999944, 28.654261170000041 ], [ -82.124955102999934, 28.654189215000031 ], [ -82.124958628999934, 28.654127414000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124954682999942, 28.655920512000023 ], [ -82.126770654999973, 28.655902063000042 ], [ -82.127011681999988, 28.655907288000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124954682999942, 28.655920512000023 ], [ -82.124957356999971, 28.655024440000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11875932099997, 28.657644301000062 ], [ -82.120853155999953, 28.657657712000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117936122999936, 28.657636298000057 ], [ -82.11875932099997, 28.657644301000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129183634999947, 28.639440735000051 ], [ -82.129233458999977, 28.639459909000038 ], [ -82.129280147999964, 28.639462611000056 ], [ -82.130680177999977, 28.639471135000065 ], [ -82.131409651999945, 28.639466139000035 ], [ -82.13165283799998, 28.639487356000075 ], [ -82.131891160999942, 28.639508576000026 ], [ -82.132698440999945, 28.639499206000039 ], [ -82.133160450999981, 28.639503044000037 ], [ -82.133593268999959, 28.639498327000069 ], [ -82.134094178999987, 28.639497832000075 ], [ -82.135499703999983, 28.639543627000023 ], [ -82.136345275999986, 28.639512528000068 ], [ -82.137163338999983, 28.639496306000069 ], [ -82.137268066, 28.639505822000046 ], [ -82.137346603999958, 28.639507668000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129183634999947, 28.639440735000051 ], [ -82.129158697999969, 28.63941055600003 ], [ -82.129155474999948, 28.639319946000057 ], [ -82.129170619999968, 28.638979449000033 ], [ -82.129170210999973, 28.637789353000073 ], [ -82.129167869999947, 28.637658483000052 ], [ -82.12915688399994, 28.637594982000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12915688399994, 28.637594982000053 ], [ -82.129154326999981, 28.637530666000032 ], [ -82.129151451999974, 28.637478560000034 ], [ -82.129151214, 28.637285016000078 ], [ -82.129136974999938, 28.636920107000037 ], [ -82.129148993999934, 28.636568628000077 ], [ -82.129129733999946, 28.636090872000068 ], [ -82.129118276999975, 28.635877194000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149091646999977, 28.588315955000041 ], [ -82.149187870999981, 28.588379488000044 ], [ -82.149243668999986, 28.588409121000041 ], [ -82.149305412, 28.588425960000052 ], [ -82.14936500999994, 28.588429651000069 ], [ -82.149552304999986, 28.588435081000057 ], [ -82.150014147999968, 28.58844020600003 ], [ -82.150879304999989, 28.588450283000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.159950779999974, 28.589878494000061 ], [ -82.159974520999981, 28.589815348000059 ], [ -82.159984612999949, 28.589732682000033 ], [ -82.159978149999972, 28.589535653000041 ], [ -82.159977366999954, 28.589017931000058 ], [ -82.159976919999963, 28.588722760000053 ], [ -82.159987241999943, 28.588528309000026 ], [ -82.15998658999996, 28.588097264000055 ], [ -82.16000691499994, 28.587594168000066 ], [ -82.159999690999939, 28.587320667000029 ], [ -82.159968760999959, 28.587134356000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153176852999934, 28.583096559000069 ], [ -82.153139635999935, 28.583054433000029 ], [ -82.153113055999938, 28.583026352000047 ], [ -82.153097063999951, 28.582979515000034 ], [ -82.153099524999959, 28.582845983000027 ], [ -82.153127991999952, 28.582344626000065 ], [ -82.153164221999987, 28.581705043000056 ], [ -82.153187342999956, 28.581177922000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.152579528, 28.581134098000064 ], [ -82.152789211999959, 28.581150260000072 ], [ -82.153187342999956, 28.581177922000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153187342999956, 28.581177922000052 ], [ -82.153864102999989, 28.581181842000035 ], [ -82.15408969799995, 28.581188614000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.15408969799995, 28.581188614000041 ], [ -82.154115933999947, 28.580980089000036 ], [ -82.154157904999977, 28.579423039000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.154077724999979, 28.582078832000036 ], [ -82.15408969799995, 28.581188614000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.15408969799995, 28.581188614000041 ], [ -82.154998658999943, 28.581209029000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.154914150999957, 28.582370709000031 ], [ -82.154929803999948, 28.582185623000044 ], [ -82.154974141999958, 28.581653792000054 ], [ -82.154994884999951, 28.581321114000048 ], [ -82.154998658999943, 28.581209029000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.155830797999954, 28.583067766000056 ], [ -82.155835711999941, 28.582800700000064 ], [ -82.155851052999935, 28.582404776000033 ], [ -82.155876672999966, 28.581781604000071 ], [ -82.155885407999961, 28.58123684800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.154998658999943, 28.581209029000036 ], [ -82.155885407999961, 28.58123684800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158948152999983, 28.583895422000069 ], [ -82.158889617999989, 28.582680868000068 ], [ -82.15894011499995, 28.582300459000066 ], [ -82.15900314199996, 28.581855283000039 ], [ -82.15898701499998, 28.581719428000042 ], [ -82.158984994999969, 28.581470545000059 ], [ -82.158953695999969, 28.581386407000025 ], [ -82.158955848999938, 28.581335326000044 ], [ -82.158966316999965, 28.581276554000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16612289699998, 28.585277469000062 ], [ -82.166178323999986, 28.583743396000045 ], [ -82.166185870999982, 28.582969852000076 ], [ -82.166163590999986, 28.582547013000067 ], [ -82.166259489999959, 28.582237806000023 ], [ -82.166275251999934, 28.582134711000037 ], [ -82.166274827999985, 28.581865308000033 ], [ -82.166277386, 28.581804396000052 ], [ -82.166266673999985, 28.581743501000062 ], [ -82.166180202999954, 28.581585928000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.166180202999954, 28.581585928000038 ], [ -82.167397036999944, 28.581603894000068 ], [ -82.167930482999964, 28.581605578000051 ], [ -82.169323825999982, 28.581617902000062 ], [ -82.170429590999959, 28.581617436000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170429590999959, 28.581617436000045 ], [ -82.170433307999986, 28.581433249000042 ], [ -82.170428951999952, 28.581220735000045 ], [ -82.170432348999952, 28.580838196000059 ], [ -82.170475727999985, 28.580367058000036 ], [ -82.170486585999981, 28.580178064000052 ], [ -82.170465011999966, 28.579964912000037 ], [ -82.170406236999952, 28.579723692000073 ], [ -82.170421903999966, 28.579564374000029 ], [ -82.170469518999937, 28.57946826500006 ], [ -82.170498552999959, 28.579369838000048 ], [ -82.170425211999941, 28.578900739000062 ], [ -82.170436501999973, 28.578436724000028 ], [ -82.170443881999972, 28.578036471000075 ], [ -82.170444448999945, 28.577890185000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.20924112299997, 28.601668929000027 ], [ -82.209277580999981, 28.601580006000063 ], [ -82.209302988, 28.601538351000045 ], [ -82.209342780999975, 28.601508142000057 ], [ -82.209405358999959, 28.60148292100007 ], [ -82.20954194899997, 28.601457588000073 ], [ -82.209644390999983, 28.601437331000056 ], [ -82.20983791499998, 28.601411909000035 ], [ -82.210165217999986, 28.601378743000055 ], [ -82.210401457999978, 28.601360790000058 ], [ -82.210606372999962, 28.601337861000047 ], [ -82.210737280999979, 28.601317559000051 ], [ -82.210842562999972, 28.601294784000061 ], [ -82.210910847999969, 28.601277093000078 ], [ -82.210973413999966, 28.601246847000027 ], [ -82.211030281999967, 28.60121409900006 ], [ -82.211104190999947, 28.601161227000034 ], [ -82.211158157999989, 28.601100847000055 ], [ -82.211189375999936, 28.601053065000031 ], [ -82.211217716999954, 28.600990214000035 ], [ -82.211267796999948, 28.600865128000066 ], [ -82.211305465999942, 28.60074135800005 ], [ -82.211509238999952, 28.600148140000044 ], [ -82.211713068999984, 28.599585066000031 ], [ -82.211826229999986, 28.599233169000058 ], [ -82.212163135999958, 28.598315654000032 ], [ -82.212358333999987, 28.597709884000039 ], [ -82.212627399999974, 28.597033655000075 ], [ -82.212806139999941, 28.596739435000075 ], [ -82.213047346999986, 28.596367236000049 ], [ -82.213390932999971, 28.595947143000046 ], [ -82.213774151999985, 28.59542146900003 ], [ -82.214438360999964, 28.594495895000023 ], [ -82.214801634999958, 28.593965225000034 ], [ -82.215545459999987, 28.59300685900007 ], [ -82.215809518999947, 28.592682352000054 ], [ -82.216218742999956, 28.592357614000036 ], [ -82.216289749999987, 28.592282132000037 ], [ -82.216365817999986, 28.592202133000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.216365817999986, 28.592202133000058 ], [ -82.216126243999952, 28.592063740000071 ], [ -82.21599490899996, 28.592000059000043 ], [ -82.213990798999987, 28.592067125000028 ], [ -82.212183386999982, 28.59208256900007 ], [ -82.210903873999939, 28.59208456500005 ], [ -82.209956745999989, 28.592154666000056 ], [ -82.208307180999952, 28.592346261000046 ], [ -82.207300737999958, 28.592452623000042 ], [ -82.20600021599995, 28.592559425000047 ], [ -82.205443854999942, 28.592623661000061 ], [ -82.205226634999974, 28.592596037000078 ], [ -82.205117974999951, 28.592556270000046 ], [ -82.204565287999969, 28.592181747000041 ], [ -82.203772618999949, 28.59170376000003 ], [ -82.203679860999955, 28.591632060000052 ], [ -82.203565008999988, 28.591496827000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203565008999988, 28.591496827000071 ], [ -82.203564700999948, 28.591337099000043 ], [ -82.203560417999938, 28.590992097000026 ], [ -82.203554990999976, 28.590796796000063 ], [ -82.203551313999981, 28.590683874000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203551313999981, 28.590683874000035 ], [ -82.203557782999951, 28.590451908000034 ], [ -82.203553838999937, 28.590198592000036 ], [ -82.203566763999959, 28.589728554000033 ], [ -82.203576513999963, 28.589405021000061 ], [ -82.20357917299998, 28.588989936000075 ], [ -82.203582164999943, 28.588748817000067 ], [ -82.203585048999969, 28.588449710000077 ], [ -82.203587869999978, 28.588120083000035 ], [ -82.20358013699996, 28.587695858000075 ], [ -82.203572656999938, 28.587402870000062 ], [ -82.203599585999939, 28.587021322000055 ], [ -82.203612611999972, 28.586603168000067 ], [ -82.203583554999966, 28.585879872000078 ], [ -82.203620884999964, 28.585513568000067 ], [ -82.203613670999971, 28.585357923000061 ], [ -82.203595828999937, 28.585071055000071 ], [ -82.20358396499995, 28.584909450000055 ], [ -82.203591192999966, 28.584415752000041 ], [ -82.203638468999941, 28.583871528000032 ], [ -82.203638209999951, 28.583737237000037 ], [ -82.203572183999938, 28.583566420000068 ], [ -82.203601517999971, 28.583103135000044 ], [ -82.203642576999982, 28.582682588000068 ], [ -82.203655257999969, 28.582223566000039 ], [ -82.203654642999936, 28.581904260000044 ], [ -82.203654350999955, 28.581752589000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.195429570999977, 28.590687616000025 ], [ -82.195628415999977, 28.590694959000075 ], [ -82.195822952999947, 28.590709939000078 ], [ -82.196013133999941, 28.590705850000063 ], [ -82.196229247999952, 28.590701722000063 ], [ -82.196497258999955, 28.590712779000057 ], [ -82.196756625999967, 28.590723849000028 ], [ -82.197046234999959, 28.59072724300006 ], [ -82.19733150899998, 28.590723014000048 ], [ -82.197634049999976, 28.590707313000053 ], [ -82.197893373999989, 28.590695489000041 ], [ -82.19820458199996, 28.590691219000064 ], [ -82.198502828999949, 28.59069078300007 ], [ -82.198779458, 28.590686563000077 ], [ -82.198969636999948, 28.590682470000047 ], [ -82.199185801999988, 28.590705043000071 ], [ -82.199354383999946, 28.590708610000036 ], [ -82.199548920999973, 28.590723585000035 ], [ -82.199847161999969, 28.590719331000059 ], [ -82.200119481999934, 28.590722744000061 ], [ -82.200439333999952, 28.590718457000037 ], [ -82.200806674999967, 28.590683578000039 ], [ -82.201212967999936, 28.590675345000079 ], [ -82.201692772999934, 28.590682263000076 ], [ -82.202112046999957, 28.590681639000024 ], [ -82.202442965999978, 28.590672442000027 ], [ -82.202814767999939, 28.590681926000059 ], [ -82.20313982, 28.590684491000047 ], [ -82.203551313999981, 28.590683874000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18191025699997, 28.569353297000077 ], [ -82.181974314999934, 28.569318757000076 ], [ -82.182029332999946, 28.56929561000004 ], [ -82.182133840999938, 28.569277012000043 ], [ -82.182227932999979, 28.569279963000042 ], [ -82.182503118999989, 28.569269776000056 ], [ -82.182692764999956, 28.56927908800003 ], [ -82.182810170999971, 28.569288495000023 ], [ -82.182864349999988, 28.569288422000056 ], [ -82.182898691999981, 28.569304319000025 ], [ -82.182920415999945, 28.569334583000057 ], [ -82.182938563999983, 28.569385577000048 ], [ -82.182950164999966, 28.569446307000078 ], [ -82.182958603999964, 28.569541247000075 ], [ -82.182960664999939, 28.569632670000033 ], [ -82.18295932999996, 28.569905305000077 ], [ -82.182938280999963, 28.570265653000035 ], [ -82.182922326999972, 28.570439458000067 ], [ -82.182922528999939, 28.570555845000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.176788948999956, 28.569700638000029 ], [ -82.177324988999942, 28.569711418000054 ], [ -82.177636707999966, 28.569713083000067 ], [ -82.177847982999936, 28.569696863000047 ], [ -82.177882232999934, 28.569658553000068 ], [ -82.177905617999954, 28.569602721000024 ], [ -82.177905512999985, 28.569540542000027 ], [ -82.177898123999967, 28.569443297000078 ], [ -82.177905297999985, 28.56941299500005 ], [ -82.177930550999974, 28.569395424000049 ], [ -82.177972086999944, 28.569393775000037 ], [ -82.178548228999944, 28.569410556000037 ], [ -82.17864758199994, 28.569424775000073 ], [ -82.178705448999949, 28.569469340000069 ], [ -82.17877602599998, 28.569553747000043 ], [ -82.17883207899996, 28.569593532000056 ], [ -82.17934678499995, 28.569591258000059 ], [ -82.18007999799994, 28.569577532000039 ], [ -82.180322007999962, 28.569580400000063 ], [ -82.180553228999941, 28.569611979000058 ], [ -82.181431386999975, 28.569715710000025 ], [ -82.181501024999989, 28.56968362300006 ], [ -82.181548331999977, 28.569634339000061 ], [ -82.181595626999979, 28.569577673000026 ], [ -82.181815532999963, 28.569387878000043 ], [ -82.18191025699997, 28.569353297000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.176788948999956, 28.569700638000029 ], [ -82.176787389999959, 28.569631764000064 ], [ -82.176781868999967, 28.569571194000048 ], [ -82.17676238599995, 28.569494331000044 ], [ -82.176754916999982, 28.569368331000078 ], [ -82.176749885999982, 28.569253004000075 ], [ -82.176752055999941, 28.569103498000061 ], [ -82.176785587999973, 28.568875246000061 ], [ -82.176796465999985, 28.568712804000029 ], [ -82.17682115599996, 28.568474052000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.17053048799994, 28.567497689000049 ], [ -82.172127852999949, 28.567507977000048 ], [ -82.172186438999972, 28.567534974000068 ], [ -82.172231106999959, 28.567574295000043 ], [ -82.172256242999936, 28.567603796000071 ], [ -82.172273061999988, 28.567660378000028 ], [ -82.172270357999935, 28.567712062000055 ], [ -82.172234481999965, 28.567936062000058 ], [ -82.172240149999936, 28.567992659000026 ], [ -82.172265314999947, 28.568039386000066 ], [ -82.172282094999957, 28.568071359000044 ], [ -82.172318373999985, 28.568095923000044 ], [ -82.17237694399995, 28.568113076000031 ], [ -82.172457822999945, 28.568135122000058 ], [ -82.172552617999941, 28.568142385000044 ], [ -82.172619530999953, 28.56814722200005 ], [ -82.172678056999985, 28.568137303000071 ], [ -82.17272262399996, 28.568115097000032 ], [ -82.172764394999945, 28.568087973000047 ], [ -82.172964847999936, 28.567927750000024 ], [ -82.17306511299995, 28.567871019000052 ], [ -82.173237864999976, 28.567819117000056 ], [ -82.173416209999971, 28.567777051000064 ], [ -82.173594584999989, 28.567754673000024 ], [ -82.174099210999941, 28.567786021000074 ], [ -82.174246957999969, 28.567785831000037 ], [ -82.174520120999944, 28.567765792000046 ], [ -82.174900721999961, 28.567811498000026 ], [ -82.174977423999962, 28.567839034000031 ], [ -82.175094568999953, 28.567875799000035 ], [ -82.175245119999943, 28.567885448000027 ], [ -82.175401223999984, 28.567880326000079 ], [ -82.175560150999956, 28.567897346000052 ], [ -82.175654985999984, 28.567929217000028 ], [ -82.175922841999977, 28.56807161100005 ], [ -82.176070685999946, 28.568128022000053 ], [ -82.17682115599996, 28.568474052000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170530463999967, 28.568606815000066 ], [ -82.17053048799994, 28.567497689000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170530463999967, 28.568606815000066 ], [ -82.171926984999971, 28.568603352000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170527164999953, 28.569586617000027 ], [ -82.170499219999954, 28.569544814000039 ], [ -82.170485213999939, 28.56950299500005 ], [ -82.170479477999947, 28.56940363700005 ], [ -82.170530463999967, 28.568606815000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170527164999953, 28.569586617000027 ], [ -82.170641477999936, 28.569596317000048 ], [ -82.17155588199995, 28.56960993000007 ], [ -82.171792849999974, 28.569614553000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.17048387799997, 28.570403734000024 ], [ -82.170493876999956, 28.569660485000043 ], [ -82.170527164999953, 28.569586617000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043472212999973, 28.613763663000043 ], [ -82.043326961999981, 28.61388241700007 ], [ -82.043139314999962, 28.614026642000056 ], [ -82.04297599399996, 28.614155522000033 ], [ -82.042861316999961, 28.614238378000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04320774699994, 28.611364153000068 ], [ -82.043200883999987, 28.611581939000075 ], [ -82.043187048999982, 28.611747580000042 ], [ -82.043141938999952, 28.611940838000066 ], [ -82.043110720999948, 28.612100350000048 ], [ -82.043110781999985, 28.612250652000057 ], [ -82.043124773999978, 28.612465362000023 ], [ -82.043117894999966, 28.612646338000047 ], [ -82.043086681999966, 28.612821187000065 ], [ -82.043055457999969, 28.61296843100007 ], [ -82.043041612999957, 28.613112600000079 ], [ -82.043055567999943, 28.613238358000046 ], [ -82.043093846999966, 28.613342635000038 ], [ -82.043180794999955, 28.613456100000064 ], [ -82.043278164999947, 28.613557292000053 ], [ -82.043363713999952, 28.613650819000043 ], [ -82.043472212999973, 28.613763663000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044663459999981, 28.612544719000027 ], [ -82.044347769999945, 28.612796548000063 ], [ -82.044136494999975, 28.612956119000046 ], [ -82.043936336999934, 28.613100965000058 ], [ -82.043866844999968, 28.613169696000057 ], [ -82.04381682099995, 28.613245782000035 ], [ -82.043761796999945, 28.613346229000058 ], [ -82.043686243999957, 28.61354029000006 ], [ -82.043633442999976, 28.613623739000047 ], [ -82.043558387999951, 28.613690019000046 ], [ -82.043472212999973, 28.613763663000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025762027999974, 28.606278922000058 ], [ -82.025789391999979, 28.604465493000077 ], [ -82.025791892999962, 28.603326888000026 ], [ -82.025786040999947, 28.602134299000056 ], [ -82.025799782999968, 28.601481561000071 ], [ -82.025805724999941, 28.600193574000059 ], [ -82.025794104999989, 28.599753698000029 ], [ -82.025783133999937, 28.599303180000049 ], [ -82.025783089999948, 28.599121056000058 ], [ -82.025810177999972, 28.598857450000025 ], [ -82.025815536999971, 28.598565091000069 ], [ -82.02575842899995, 28.596705969000027 ], [ -82.025718135999966, 28.595745517000069 ], [ -82.025711437999973, 28.595657132000042 ], [ -82.025718089999941, 28.595556960000067 ], [ -82.025751452999941, 28.595474461000038 ], [ -82.025804852999954, 28.595430257000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025762027999974, 28.606278922000058 ], [ -82.024185398999975, 28.60625467400007 ], [ -82.02193918599994, 28.606250053000053 ], [ -82.020040533999975, 28.606254182000043 ], [ -82.018337391999978, 28.606254423000053 ], [ -82.016408324999986, 28.606262339000068 ], [ -82.015439445999959, 28.606254784000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015439445999959, 28.606254784000043 ], [ -82.013267073999941, 28.606262683000068 ], [ -82.009231322999938, 28.606243770000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029927956999984, 28.609926443000063 ], [ -82.029928068999936, 28.60856018100003 ], [ -82.029913834999945, 28.607389681000029 ], [ -82.029899624999985, 28.606309973000066 ], [ -82.028406421999989, 28.606305387000077 ], [ -82.025762027999974, 28.606278922000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009194105999939, 28.609923300000048 ], [ -82.009220426999946, 28.608832622000079 ], [ -82.009234222999964, 28.607613039000057 ], [ -82.009231322999938, 28.606243770000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009194105999939, 28.609923300000048 ], [ -82.007744646999981, 28.609926458000075 ], [ -82.006246527999963, 28.609932669000045 ], [ -82.00515508899997, 28.60993271500007 ], [ -82.004108837999979, 28.609929684000065 ], [ -82.002847078999935, 28.609923582000079 ], [ -82.002669806999961, 28.609926653000059 ], [ -82.002513390999979, 28.609932790000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002023289999954, 28.61004629100006 ], [ -82.001978795999946, 28.609999975000051 ], [ -82.001842355999941, 28.609961567000028 ], [ -82.001730915999985, 28.609947910000074 ], [ -82.001570388999937, 28.609933518000048 ], [ -82.001323144999958, 28.609949105000055 ], [ -82.001099231999945, 28.609952806000024 ], [ -82.000962089999973, 28.609974200000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002023289999954, 28.61004629100006 ], [ -82.001897043999975, 28.610092487000031 ], [ -82.00179805099998, 28.610137395000038 ], [ -82.001656234999984, 28.61022082900007 ], [ -82.001564470999938, 28.610284632000059 ], [ -82.001486610999962, 28.610343525000076 ], [ -82.001407638999979, 28.610414444000071 ], [ -82.001343125999938, 28.610475300000076 ], [ -82.001254142999983, 28.610575420000032 ], [ -82.001176662999967, 28.610683394000034 ], [ -82.001091748999954, 28.610814921000042 ], [ -82.001040584999942, 28.610913077000077 ], [ -82.001013889999967, 28.610968043000071 ], [ -82.000991644999942, 28.611026937000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000991644999942, 28.611026937000076 ], [ -82.000966414999937, 28.610887294000065 ], [ -82.000949627999944, 28.610725395000031 ], [ -82.00094168399994, 28.61010807100007 ], [ -82.000948747999985, 28.610039498000049 ], [ -82.000962089999973, 28.609974200000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000991644999942, 28.611026937000076 ], [ -82.000944929999946, 28.61120165400007 ], [ -82.000920459999975, 28.611344961000043 ], [ -82.000909336999939, 28.611494158000028 ], [ -82.000913788999981, 28.611841627000047 ], [ -82.000916017999941, 28.612253881000072 ], [ -82.000913799999978, 28.613131391000024 ], [ -82.000913802999946, 28.613472972000068 ], [ -82.000913326999978, 28.613518406000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000922734999961, 28.617036012000028 ], [ -82.00092757699997, 28.616923917000065 ], [ -82.00095165099998, 28.616566829000078 ], [ -82.000964994999947, 28.616064275000042 ], [ -82.000969436999981, 28.615280994000045 ], [ -82.000969430999987, 28.614593906000039 ], [ -82.000969429999941, 28.614505566000048 ], [ -82.00095608099997, 28.614417227000047 ], [ -82.000931608999963, 28.614336739000066 ], [ -82.000875991999976, 28.614260178000052 ], [ -82.000769206999962, 28.614218953000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000769206999962, 28.614218953000034 ], [ -82.000700241999937, 28.614346556000044 ], [ -82.000641847999987, 28.614431861000071 ], [ -82.000584559999936, 28.614503606000028 ], [ -82.000500021999983, 28.614599798000029 ], [ -82.000419933999979, 28.614680286000066 ], [ -82.000330945999963, 28.614762736000046 ], [ -82.00021303799997, 28.614856966000048 ], [ -82.000079555999946, 28.614970826000047 ], [ -81.999928276999981, 28.615090576000057 ], [ -81.999828165999986, 28.615176953000059 ], [ -81.998640164999983, 28.61615850000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998640164999983, 28.61615850000004 ], [ -81.99855340199997, 28.61606230700005 ], [ -81.998491110999964, 28.615991634000068 ], [ -81.998453289999986, 28.615977892000046 ], [ -81.998384323999971, 28.615985744000056 ], [ -81.998270862999959, 28.615997521000054 ], [ -81.998164077999945, 28.616009298000051 ], [ -81.998050617, 28.616019111000071 ], [ -81.997939379999934, 28.616026963000024 ], [ -81.997823694999965, 28.616032850000067 ], [ -81.997692435999966, 28.616038737000054 ], [ -81.997445493999976, 28.616048549000027 ], [ -81.997216347999938, 28.616048544000023 ], [ -81.996602324999969, 28.616044604000024 ], [ -81.995601201999989, 28.616048502000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996791290999965, 28.638802388000045 ], [ -81.996806890999949, 28.638019111000062 ], [ -81.996818035, 28.637388956000052 ], [ -81.996833638999988, 28.636495746000037 ], [ -81.996849238999971, 28.635694801000056 ], [ -81.996855920999963, 28.63545726500007 ], [ -81.996860378999941, 28.635209914000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996804560999976, 28.641454539000051 ], [ -81.996804573999952, 28.641010877000042 ], [ -81.99679570099994, 28.64012944600006 ], [ -81.996791275999954, 28.639279423000062 ], [ -81.996791290999965, 28.638802388000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996804560999976, 28.641454539000051 ], [ -81.995249108999985, 28.641476087000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996813429999975, 28.642546024000069 ], [ -81.996813438999936, 28.642269226000053 ], [ -81.996804560999976, 28.641454539000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996813429999975, 28.642546024000069 ], [ -81.99568521499998, 28.642553844000076 ], [ -81.99475949899994, 28.642579332000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99475949899994, 28.642579332000025 ], [ -81.993764798999962, 28.64258910500007 ], [ -81.992879137999978, 28.642598877000069 ], [ -81.992794576999984, 28.642606724000075 ], [ -81.99274784499994, 28.642622427000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993449979, 28.646173434000048 ], [ -81.99272896399998, 28.646175361000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99272896399998, 28.646175361000076 ], [ -81.992727589999959, 28.645922397000049 ], [ -81.992738776999943, 28.645072375000041 ], [ -81.992721016999951, 28.644438293000064 ], [ -81.992714374999935, 28.64395733300006 ], [ -81.992714428999989, 28.643176020000055 ], [ -81.992710010999986, 28.642706839000027 ], [ -81.992718915999944, 28.642655798000078 ], [ -81.99274784499994, 28.642622427000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046525322999969, 28.600007190000042 ], [ -82.045490104999942, 28.600015142000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045477204999941, 28.600883271000043 ], [ -82.045490104999942, 28.600015142000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045490104999942, 28.600015142000075 ], [ -82.04470588199996, 28.600016778000054 ], [ -82.044358952999971, 28.600013111000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046491400999969, 28.601775288000056 ], [ -82.046521355999971, 28.600887300000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046491400999969, 28.601775288000056 ], [ -82.045436953999967, 28.601775332000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046525322999969, 28.600007190000042 ], [ -82.046532454999976, 28.599516062000077 ], [ -82.046538017999978, 28.599169352000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046530296999947, 28.59730083900007 ], [ -82.046505416999935, 28.596064381000076 ], [ -82.046508595999967, 28.595452668000064 ], [ -82.046501439999986, 28.594862263000039 ], [ -82.046494176999943, 28.594031434000044 ], [ -82.046497250999948, 28.593182342000034 ], [ -82.04648063999997, 28.591865731000041 ], [ -82.046477054999968, 28.591638211000031 ], [ -82.046448494999936, 28.590064013000074 ], [ -82.046416669999985, 28.588984832000051 ], [ -82.046388413999978, 28.588099349000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042386936999947, 28.597208120000062 ], [ -82.040728584999954, 28.597189955000033 ], [ -82.039702894999948, 28.59718321400004 ], [ -82.039490282999964, 28.597262387000058 ], [ -82.039033094999979, 28.597321131000058 ], [ -82.03879556399994, 28.597355014000073 ], [ -82.03851459699996, 28.59735960200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017699736999987, 28.566129408000052 ], [ -82.017703342999937, 28.565570889000071 ], [ -82.017741787999967, 28.56432624100006 ], [ -82.017713510999954, 28.563263277000033 ], [ -82.017686973999957, 28.562436649000063 ], [ -82.01755372699995, 28.56205032400004 ], [ -82.017504755999937, 28.561767171000042 ], [ -82.017510146999939, 28.561493612000049 ], [ -82.01751283699997, 28.561325636000049 ], [ -82.017496506999976, 28.561188859000026 ], [ -82.017404040999963, 28.560862520000057 ], [ -82.01737140299997, 28.560725744000024 ], [ -82.017346907999979, 28.560521777000076 ], [ -82.01733866099994, 28.559955462000062 ], [ -82.017322302999958, 28.559645910000029 ], [ -82.017344027999968, 28.559540323000078 ], [ -82.017398361999938, 28.559381939000048 ], [ -82.017534212999976, 28.559105963000036 ], [ -82.017604855999934, 28.558964375000073 ], [ -82.017629295999939, 28.558839589000058 ], [ -82.017612874999941, 28.558160493000059 ], [ -82.017612776999954, 28.557567781000046 ], [ -82.017618059999961, 28.556646316000069 ], [ -82.017634247999979, 28.555936019000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009280023999963, 28.576822846000027 ], [ -82.009277184999974, 28.576648299000055 ], [ -82.009292037999955, 28.576325179000037 ], [ -82.009278376999987, 28.575760788000025 ], [ -82.009281887999975, 28.575545721000026 ], [ -82.009292473999949, 28.575458448000063 ], [ -82.009303059999979, 28.575374289000024 ], [ -82.009317174999978, 28.575274548000039 ], [ -82.009348935999981, 28.575090647000025 ], [ -82.009405411999978, 28.574884928000074 ], [ -82.009476006999989, 28.57463245200006 ], [ -82.009560728999986, 28.574426729000038 ], [ -82.009733708999988, 28.574071390000029 ], [ -82.009841985999969, 28.573849204000055 ], [ -82.009956719999934, 28.573634908000031 ], [ -82.010018499999944, 28.573541396000053 ], [ -82.010142064999968, 28.57339333300007 ], [ -82.010239150999951, 28.573268649000056 ], [ -82.010353893999934, 28.573179029000073 ], [ -82.010459809999986, 28.57308551400007 ], [ -82.010556898999937, 28.573003687000039 ], [ -82.010724597999968, 28.572851725000078 ], [ -82.010857509999937, 28.572694797000054 ], [ -82.010958483999957, 28.572563391000074 ], [ -82.011046738999937, 28.572415331000059 ], [ -82.011121752999941, 28.572267271000044 ], [ -82.011179106999975, 28.572064667000063 ], [ -82.01122763799998, 28.571893232000036 ], [ -82.011254095999959, 28.571682839000061 ], [ -82.011258492999957, 28.571523096000078 ], [ -82.011249648999978, 28.571367251000026 ], [ -82.011218738999958, 28.57121920000003 ], [ -82.01115693099996, 28.57102829400003 ], [ -82.011011247999988, 28.570654276000027 ], [ -82.010900883999966, 28.57038545100005 ], [ -82.010825828999941, 28.570108832000074 ], [ -82.010755183999947, 28.569816626000033 ], [ -82.010688949999974, 28.56949325000005 ], [ -82.010680096999977, 28.569243899000071 ], [ -82.010612461999983, 28.569002595000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005376174999981, 28.570609292000029 ], [ -82.005077058999973, 28.570702880000056 ], [ -82.003047941999966, 28.571329644000059 ], [ -82.001125144999946, 28.571918317000041 ], [ -81.999877757999968, 28.572306523000066 ], [ -81.99916783599997, 28.572519650000061 ], [ -81.997828459999937, 28.572933209000041 ], [ -81.995710154999983, 28.573585235000053 ], [ -81.993669429999954, 28.57421439500007 ], [ -81.992031083999962, 28.574721759000056 ], [ -81.990506546999939, 28.575183696000067 ], [ -81.989487880999945, 28.575500271000067 ], [ -81.988673861999985, 28.575757991000046 ], [ -81.987889735999943, 28.575995411000065 ], [ -81.98681126799994, 28.576324139000064 ], [ -81.985597118999976, 28.576699530000042 ], [ -81.984336974999962, 28.577078963000076 ], [ -81.983419450999975, 28.577369117000046 ], [ -81.981929331999936, 28.577821574000041 ], [ -81.98067145899995, 28.578207063000036 ], [ -81.98028282599995, 28.57832879700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061009324999986, 28.624674434000042 ], [ -82.060617674999946, 28.624666255000079 ], [ -82.058792016999973, 28.624653691000049 ], [ -82.055572060999964, 28.624655962000077 ], [ -82.054743667999958, 28.624656299000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067199093999989, 28.639205257000071 ], [ -82.067203890999963, 28.637445495000065 ], [ -82.067208216999973, 28.634944231000077 ], [ -82.067202866999935, 28.632872030000044 ], [ -82.067206222999971, 28.631933641000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087626950999947, 28.631929648000039 ], [ -82.087252522999961, 28.63190826400006 ], [ -82.086611992999963, 28.631912163000038 ], [ -82.085805402999938, 28.631919653000068 ], [ -82.085042292999958, 28.631913157000042 ], [ -82.083741471999986, 28.63193141000005 ], [ -82.082970469999964, 28.631945837000046 ], [ -82.081147718999944, 28.631946941000024 ], [ -82.08051508799997, 28.631940341000075 ], [ -82.079498943999965, 28.631954895000035 ], [ -82.078897950999988, 28.631955246000075 ], [ -82.077324291999957, 28.631952665000028 ], [ -82.075400532999936, 28.631958021000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104371814, 28.624722536000036 ], [ -82.104311367999969, 28.624756625000032 ], [ -82.104268155999989, 28.624793787000044 ], [ -82.104095371999961, 28.624815922000039 ], [ -82.103650364999964, 28.624776040000029 ], [ -82.102480302999936, 28.624800307000044 ], [ -82.102154756999937, 28.624798147000035 ], [ -82.101831948999973, 28.624805609000077 ], [ -82.101593841999943, 28.624767284000029 ], [ -82.101379529999974, 28.624755755000024 ], [ -82.10110777899996, 28.624778992000074 ], [ -82.100765299999978, 28.624793686000032 ], [ -82.100484747999985, 28.624780830000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103369980999958, 28.62779289100007 ], [ -82.103321439999945, 28.62664789400003 ], [ -82.103267187999961, 28.626099667000062 ], [ -82.103280037, 28.625989735000076 ], [ -82.103354275999948, 28.625862672000039 ], [ -82.103457068999944, 28.625795571000026 ], [ -82.103518458999986, 28.625779867000062 ], [ -82.104094378999946, 28.625728743000025 ], [ -82.104211447999944, 28.625695906000033 ], [ -82.104294253999967, 28.625661642000068 ], [ -82.104317096999978, 28.625605963000055 ], [ -82.104371814, 28.624722536000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100257635999981, 28.621030585000028 ], [ -82.100336055999946, 28.621033410000052 ], [ -82.100483087999976, 28.621036184000047 ], [ -82.101917457999946, 28.621032230000026 ], [ -82.102372498999955, 28.62104056000004 ], [ -82.104318922999937, 28.621050857000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104371814, 28.624722536000036 ], [ -82.104387232999954, 28.624594500000057 ], [ -82.104386931999954, 28.624290441000028 ], [ -82.10438150799996, 28.624045827000032 ], [ -82.104368134999959, 28.623622897000075 ], [ -82.104378116999953, 28.623236529000053 ], [ -82.104404925999972, 28.623101666000025 ], [ -82.104392960999974, 28.622952230000067 ], [ -82.104367365999963, 28.622845604000076 ], [ -82.104377246999945, 28.622356359000037 ], [ -82.104376902999945, 28.622008863000076 ], [ -82.104371398999945, 28.621684232000064 ], [ -82.104306469999983, 28.621526537000079 ], [ -82.10430893299997, 28.621398511000052 ], [ -82.10431652799997, 28.621217897000065 ], [ -82.104318922999937, 28.621050857000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104318922999937, 28.621050857000057 ], [ -82.106181831999947, 28.621060532000058 ], [ -82.107747269999948, 28.621057072000042 ], [ -82.108932065999966, 28.621058350000055 ], [ -82.110459703999936, 28.621068235000052 ], [ -82.11166468, 28.621080594000034 ], [ -82.112504132999959, 28.621093246000044 ], [ -82.112582269999962, 28.621086508000076 ], [ -82.112622587999965, 28.621070905000067 ], [ -82.112642716999972, 28.621035299000027 ], [ -82.112650230999975, 28.620990806000066 ], [ -82.11265016699997, 28.62093075000007 ], [ -82.112662416999967, 28.618777600000044 ], [ -82.112664664999954, 28.618382638000071 ], [ -82.112658077999981, 28.617385953000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107083883999962, 28.616274372000078 ], [ -82.107117381999956, 28.615265775000069 ], [ -82.107110549999959, 28.614547875000028 ], [ -82.107118526999955, 28.614252031000035 ], [ -82.10711827199998, 28.614000022000027 ], [ -82.107101655999941, 28.613941597000064 ], [ -82.107064376999972, 28.613912409000079 ], [ -82.107002245, 28.613864978000038 ], [ -82.106923575999986, 28.613835821000066 ], [ -82.106820101999972, 28.613835903000052 ], [ -82.106637995999961, 28.613843351000071 ], [ -82.106431059999977, 28.613854471000025 ], [ -82.106311019999964, 28.613843607000035 ], [ -82.106257685999935, 28.61382945500003 ], [ -82.106200079999951, 28.613800085000037 ], [ -82.106157802999974, 28.613767030000076 ], [ -82.106125763999955, 28.61373195300007 ], [ -82.106104501999937, 28.613682499000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100147488999937, 28.613666285000079 ], [ -82.101270858999953, 28.613573881000036 ], [ -82.102405741999974, 28.613559658000042 ], [ -82.103543669999965, 28.613562805000072 ], [ -82.104299766999986, 28.613568910000026 ], [ -82.105051357999969, 28.613613791000034 ], [ -82.105834736999952, 28.613615345000028 ], [ -82.105963533999955, 28.61363046300005 ], [ -82.106104501999937, 28.613682499000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106104501999937, 28.613682499000049 ], [ -82.106107742999939, 28.613376272000039 ], [ -82.10609918199998, 28.613095051000073 ], [ -82.106115661, 28.613018339000064 ], [ -82.10615697999998, 28.612948914000071 ], [ -82.106219022999937, 28.612908688000061 ], [ -82.106318337999937, 28.612890349000054 ], [ -82.106405243999973, 28.612879325000051 ], [ -82.10647972199996, 28.612857353000038 ], [ -82.10654591399998, 28.612828082000078 ], [ -82.106567972999983, 28.612771789000078 ], [ -82.106553260999988, 28.610079360000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099158735999936, 28.617518514000039 ], [ -82.099276337999981, 28.615734707000058 ], [ -82.099286275999987, 28.615111368000044 ], [ -82.099284418999957, 28.615069591000065 ], [ -82.099275302999956, 28.615032330000076 ], [ -82.099260916999981, 28.615006687000061 ], [ -82.099243309999963, 28.614979979000054 ], [ -82.099218863999965, 28.614952416000051 ], [ -82.099185635999959, 28.614934339000058 ], [ -82.099149486999977, 28.61492488500005 ], [ -82.099110406999955, 28.614923067000063 ], [ -82.098572302999969, 28.614947304000054 ], [ -82.097157132999939, 28.614948324000068 ], [ -82.097006803999989, 28.614948432000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.186575116999961, 28.641518706000056 ], [ -82.186565387999963, 28.641005155000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179439497999965, 28.641575032000048 ], [ -82.180303785999968, 28.641509041000063 ], [ -82.181562162999967, 28.641507360000048 ], [ -82.18331743899995, 28.641515371000025 ], [ -82.185319670999945, 28.641515242000025 ], [ -82.186575116999961, 28.641518706000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203597912999953, 28.625246982000078 ], [ -82.203597395999964, 28.624979016000054 ], [ -82.203582111999935, 28.624528114000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203582111999935, 28.624528114000043 ], [ -82.203713784999934, 28.624524500000064 ], [ -82.203808651999964, 28.62451410500006 ], [ -82.203913188999934, 28.624496861000068 ], [ -82.204040948999989, 28.624472749000063 ], [ -82.20419579299994, 28.624434927000038 ], [ -82.204368077999959, 28.624403911000059 ], [ -82.20452294599994, 28.624378049000029 ], [ -82.204677798999967, 28.624345351000045 ], [ -82.204834545999972, 28.624290439000049 ], [ -82.204948721999983, 28.624246459000062 ], [ -82.205031884999983, 28.62419787500005 ], [ -82.205101701999979, 28.624170946000049 ], [ -82.20521187199995, 28.62414463600004 ], [ -82.205378393999979, 28.624137549000068 ], [ -82.205543025999987, 28.624154386000043 ], [ -82.205707615999984, 28.624149010000053 ], [ -82.205854758999976, 28.624135118000027 ], [ -82.206038657999954, 28.624102375000064 ], [ -82.206230233999975, 28.624033740000073 ], [ -82.20629409999998, 28.624014848000058 ], [ -82.206445179999946, 28.624033412000074 ], [ -82.206791841999973, 28.624051679000047 ], [ -82.206983552999986, 28.624053094000033 ], [ -82.207128899999987, 28.624032401000079 ], [ -82.207268088999967, 28.623989441000049 ], [ -82.20741254099994, 28.623926767000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203582111999935, 28.624528114000043 ], [ -82.203581228999951, 28.624070207000045 ], [ -82.203570576999937, 28.623567890000061 ], [ -82.203565896999976, 28.623149287000047 ], [ -82.203546504999963, 28.622130980000065 ], [ -82.203527005999945, 28.62105629000007 ], [ -82.203526986999975, 28.620393190000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203526986999975, 28.620393190000073 ], [ -82.203509678999978, 28.619734882000046 ], [ -82.203459585999951, 28.618226923000066 ], [ -82.20345085699995, 28.618030985000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.190985209999951, 28.617933876000052 ], [ -82.193894718999957, 28.617936689000032 ], [ -82.194573591999983, 28.617926863000037 ], [ -82.195122100999981, 28.617952634000062 ], [ -82.195416407999971, 28.617958112000053 ], [ -82.195774184999948, 28.617925134000075 ], [ -82.196720609999943, 28.617920814000058 ], [ -82.197238960999982, 28.617914159000065 ], [ -82.197436272999937, 28.617913872000031 ], [ -82.197667077999938, 28.617940094000062 ], [ -82.197807548999947, 28.617945791000068 ], [ -82.198095155999965, 28.617945371000076 ], [ -82.198205494999968, 28.617933405000031 ], [ -82.198295739999935, 28.617906715000061 ], [ -82.198439515999951, 28.617891749000023 ], [ -82.198844200999986, 28.617905912000026 ], [ -82.199111730999959, 28.617895370000042 ], [ -82.19961336199998, 28.617892978000043 ], [ -82.199900957999944, 28.617886652000038 ], [ -82.200713615999973, 28.617885451000063 ], [ -82.201342304999969, 28.617866814000024 ], [ -82.201915611999937, 28.617860170000029 ], [ -82.202329493999969, 28.617849642000067 ], [ -82.202516780999986, 28.617848244000072 ], [ -82.202696037999942, 28.61785033600006 ], [ -82.202808423999954, 28.617859611000029 ], [ -82.202915486999984, 28.617883058000075 ], [ -82.203003814999988, 28.617904174000046 ], [ -82.203078780999988, 28.617932391000068 ], [ -82.203127947999974, 28.617952133000074 ], [ -82.203167143999963, 28.617970030000038 ], [ -82.203210013999978, 28.618003017000035 ], [ -82.203242317, 28.61802050700004 ], [ -82.203306388999977, 28.618027917000063 ], [ -82.20345085699995, 28.618030985000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.20345085699995, 28.618030985000075 ], [ -82.203450541999985, 28.617868092000037 ], [ -82.20344201599994, 28.617608420000067 ], [ -82.203439513999967, 28.61685493300007 ], [ -82.203442823999978, 28.616562756000064 ], [ -82.203435290999948, 28.615667451000036 ], [ -82.203431291999948, 28.614820359000078 ], [ -82.203433651999944, 28.614657462000025 ], [ -82.203436164999971, 28.614572471000031 ], [ -82.203444052999942, 28.614501636000057 ], [ -82.203451966999978, 28.614442605000079 ], [ -82.203459869999961, 28.614378852000073 ], [ -82.20347839599998, 28.614274951000027 ], [ -82.203494297999953, 28.614197020000063 ], [ -82.203515540999945, 28.614114361000077 ], [ -82.203544801999954, 28.614026969000065 ], [ -82.203574062999962, 28.613939576000064 ], [ -82.203611347999981, 28.613852172000065 ], [ -82.203645972999936, 28.61377185300006 ], [ -82.203683262999959, 28.613686810000047 ], [ -82.203720579999981, 28.613615930000037 ], [ -82.203776588999972, 28.613526137000065 ], [ -82.203824592999979, 28.61344815800004 ], [ -82.203861924999956, 28.613384362000033 ], [ -82.203936637999959, 28.613282735000041 ], [ -82.20400068899994, 28.613202373000036 ], [ -82.204062083999986, 28.613131458000055 ], [ -82.204126158999941, 28.613062898000067 ], [ -82.204206253999985, 28.61297778900007 ], [ -82.204297044999976, 28.612890304000075 ], [ -82.204379854999956, 28.61282643800007 ], [ -82.204492042999959, 28.61273656000003 ], [ -82.204609600999959, 28.612656116000039 ], [ -82.204727161999983, 28.612578033000034 ], [ -82.204874145999952, 28.612497544000064 ], [ -82.205023797999957, 28.612412330000041 ], [ -82.205919130999973, 28.611957704000076 ], [ -82.206464349999976, 28.611683025000048 ], [ -82.206614016999936, 28.611607253000045 ], [ -82.206728927999961, 28.611543337000057 ], [ -82.206825135999964, 28.611491251000075 ], [ -82.206966385999976, 28.611396263000074 ], [ -82.207080749999989, 28.611307390000036 ], [ -82.207151048999947, 28.611252316000048 ], [ -82.207217822999951, 28.611197208000078 ], [ -82.207275511999967, 28.611148016000072 ], [ -82.207328919999952, 28.61109883000006 ], [ -82.207367365999971, 28.611059110000042 ], [ -82.207412213999987, 28.611009938000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203582233999953, 28.626560391000055 ], [ -82.203592175999972, 28.625880218000077 ], [ -82.203597912999953, 28.625246982000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203582233999953, 28.626560391000055 ], [ -82.20451067099998, 28.626565612000036 ], [ -82.206140620999975, 28.626587966000045 ], [ -82.206635775999985, 28.626585558000045 ], [ -82.209303644999977, 28.626612565000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203532113999984, 28.630776255000058 ], [ -82.203545007999935, 28.629627544000073 ], [ -82.203557768999985, 28.628409955000052 ], [ -82.203569025999968, 28.627718945000026 ], [ -82.203577865999989, 28.627212422000071 ], [ -82.203582233999953, 28.626560391000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203469391999988, 28.63611987400003 ], [ -82.203469223999946, 28.636033224000073 ], [ -82.203486661999989, 28.634628994000025 ], [ -82.203499413999964, 28.633406964000073 ], [ -82.203508107999937, 28.632691518000058 ], [ -82.203519562999986, 28.632102712000062 ], [ -82.203532113999984, 28.630776255000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203461395999966, 28.637197478000076 ], [ -82.203462958999978, 28.636702006000064 ], [ -82.203469391999988, 28.63611987400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203469391999988, 28.63611987400003 ], [ -82.20470342699997, 28.636126904000037 ], [ -82.206249749999984, 28.636135668000065 ], [ -82.206657736999944, 28.636137269000074 ], [ -82.207058162999942, 28.636136657000065 ], [ -82.208075633999954, 28.636152873000071 ], [ -82.208954561999974, 28.636153743000079 ], [ -82.209123295999973, 28.636153483000044 ], [ -82.209231618, 28.636168867000038 ], [ -82.209319810999943, 28.636193172000048 ], [ -82.209362650999935, 28.636206437000055 ], [ -82.209395429999972, 28.636226382000075 ], [ -82.209435775999964, 28.63625298200003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.209486079999976, 28.640023364000058 ], [ -82.209487630999945, 28.639536779000025 ], [ -82.209502805999989, 28.638301414000068 ], [ -82.209513000999948, 28.637094941000043 ], [ -82.209516815999962, 28.636479484000063 ], [ -82.209506595999983, 28.636406181000041 ], [ -82.209493890999966, 28.636348432000034 ], [ -82.209471118999943, 28.636295142000051 ], [ -82.209435775999964, 28.63625298200003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203422222999961, 28.640521630000023 ], [ -82.204378967999958, 28.640240016000064 ], [ -82.204691118999961, 28.64016622500003 ], [ -82.205005810999978, 28.640103538000062 ], [ -82.205244995999976, 28.64006540400004 ], [ -82.205547154999977, 28.640033840000058 ], [ -82.205877051999948, 28.640020008000079 ], [ -82.207398221999938, 28.640015467000069 ], [ -82.208352745999946, 28.640020667000044 ], [ -82.209486079999976, 28.640023364000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203422222999961, 28.640521630000023 ], [ -82.20343166899994, 28.63915118500006 ], [ -82.203447648999941, 28.638034910000044 ], [ -82.203461395999966, 28.637197478000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.194988738999939, 28.642988715000058 ], [ -82.19509749599996, 28.642963674000043 ], [ -82.195200203999946, 28.642936863000045 ], [ -82.195528472999968, 28.642854627000077 ], [ -82.195947358999945, 28.642743819000032 ], [ -82.19639643499994, 28.642616968000027 ], [ -82.197669119999944, 28.642241849000072 ], [ -82.199131074999968, 28.641804227000023 ], [ -82.199996964999968, 28.641545219000079 ], [ -82.201402524999935, 28.641128987000059 ], [ -82.202207988999987, 28.640886051000052 ], [ -82.203422222999961, 28.640521630000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.195088294999948, 28.648880882000071 ], [ -82.195950724999989, 28.648892080000053 ], [ -82.197062992999975, 28.648892244000024 ], [ -82.198124908999944, 28.648904916000049 ], [ -82.199142485999971, 28.648912311000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.186638622999965, 28.644258368000067 ], [ -82.186598393999986, 28.643226270000071 ], [ -82.186577985999975, 28.642509894000057 ], [ -82.186576551999963, 28.641699419000076 ], [ -82.186575318999985, 28.641632832000028 ], [ -82.186575116999961, 28.641518706000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18566569799998, 28.64440901200004 ], [ -82.186157191999939, 28.644330129000025 ], [ -82.186392873999978, 28.644296033000046 ], [ -82.186638622999965, 28.644258368000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185675298999968, 28.646428205000063 ], [ -82.185674760999973, 28.646122482000067 ], [ -82.185675657, 28.645487923000076 ], [ -82.185672669999974, 28.644935134000036 ], [ -82.18566569799998, 28.64440901200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.184626271999946, 28.644556186000045 ], [ -82.18566569799998, 28.64440901200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18463455899996, 28.648137776000056 ], [ -82.184649931999957, 28.647711162000064 ], [ -82.184649106999984, 28.647240135000061 ], [ -82.184640473999934, 28.646913092000034 ], [ -82.184635503999971, 28.646376302000078 ], [ -82.184637401999964, 28.645158733000073 ], [ -82.184626271999946, 28.644556186000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18372386599998, 28.648177230000044 ], [ -82.184074408999948, 28.648142982000024 ], [ -82.184380666999971, 28.648133677000033 ], [ -82.18463455899996, 28.648137776000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183606877999978, 28.650373488000071 ], [ -82.18363151799997, 28.649528075000035 ], [ -82.183655861999966, 28.648467049000033 ], [ -82.183653570999979, 28.648308857000075 ], [ -82.183659529999943, 28.648259080000059 ], [ -82.183685643, 28.648212830000034 ], [ -82.18372386599998, 28.648177230000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182639730999938, 28.648128926000027 ], [ -82.183083071999988, 28.648156767000046 ], [ -82.183586842999944, 28.648173860000043 ], [ -82.18372386599998, 28.648177230000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183601007999982, 28.644709736000038 ], [ -82.184626271999946, 28.644556186000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183629876999987, 28.646532323000031 ], [ -82.183616551999989, 28.645824356000048 ], [ -82.183609851999961, 28.645448374000068 ], [ -82.183645349999949, 28.645003002000067 ], [ -82.183621163999987, 28.644838957000047 ], [ -82.183601007999982, 28.644709736000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182618853999941, 28.644857726000055 ], [ -82.18282131999996, 28.644821454000066 ], [ -82.18332599699994, 28.64474610700006 ], [ -82.183601007999982, 28.644709736000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182639730999938, 28.648128926000027 ], [ -82.182637519999957, 28.648015171000054 ], [ -82.182640067999955, 28.647160205000034 ], [ -82.182641158999957, 28.646626963000074 ], [ -82.182638706999967, 28.646374565000031 ], [ -82.182632629999944, 28.645192555000051 ], [ -82.182618853999941, 28.644857726000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178573698999969, 28.645663772000034 ], [ -82.179015360999983, 28.645565187000045 ], [ -82.17991281999997, 28.645377336000024 ], [ -82.180736235999973, 28.645201576000034 ], [ -82.181484116999968, 28.645047247000036 ], [ -82.182180657999936, 28.644920981000041 ], [ -82.182618853999941, 28.644857726000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178526622999982, 28.648809760000063 ], [ -82.178542228999959, 28.64820708600007 ], [ -82.178544121999948, 28.647540431000039 ], [ -82.178555585999959, 28.647169758000075 ], [ -82.178561091999939, 28.64685109100003 ], [ -82.178566201999956, 28.646299098000043 ], [ -82.178575930999955, 28.64579642800004 ], [ -82.178573698999969, 28.645663772000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.176351649999958, 28.646138027000063 ], [ -82.178573698999969, 28.645663772000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.173225086999935, 28.646792828000059 ], [ -82.174185621999982, 28.646583528000065 ], [ -82.176351649999958, 28.646138027000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174172905999967, 28.652822856000057 ], [ -82.174196446999986, 28.652776994000078 ], [ -82.174203328999965, 28.652654072000075 ], [ -82.174203194999961, 28.65257282400006 ], [ -82.17419833699995, 28.652491582000039 ], [ -82.174188762999961, 28.652414512000064 ], [ -82.174179223999943, 28.652358276000029 ], [ -82.174165933999973, 28.652304075000075 ], [ -82.17416252299995, 28.652256217000058 ], [ -82.174162427999988, 28.652197885000078 ], [ -82.174176450999937, 28.65211036900007 ], [ -82.174188153999978, 28.652045772000065 ], [ -82.174188074999961, 28.651997856000037 ], [ -82.174185642999987, 28.651956194000036 ], [ -82.174185539999939, 28.651893695000069 ], [ -82.174168874999964, 28.651812469000049 ], [ -82.174158801999965, 28.651737489000027 ], [ -82.174155435999978, 28.65154061800007 ], [ -82.174162877999947, 28.651470610000047 ], [ -82.174179782999943, 28.651410588000033 ], [ -82.174187176999965, 28.651312248000067 ], [ -82.174197667999977, 28.650800580000066 ], [ -82.17419379599994, 28.650743920000025 ], [ -82.174180515999979, 28.65071060300005 ], [ -82.174152120999963, 28.65067730800007 ], [ -82.174110515999985, 28.650654029000066 ], [ -82.174067043999969, 28.650644085000067 ], [ -82.174012252999944, 28.650644155000066 ], [ -82.173458685999947, 28.650653198000043 ], [ -82.173325316999978, 28.650657796000075 ], [ -82.173286903999951, 28.650637011000072 ], [ -82.173260288999984, 28.650608401000056 ], [ -82.173242511999945, 28.650569362000056 ], [ -82.173245344999941, 28.650496444000055 ], [ -82.173248159999957, 28.650413109000056 ], [ -82.173249538999983, 28.649851817000069 ], [ -82.173239930999955, 28.649753497000063 ], [ -82.173233837999987, 28.648884515000077 ], [ -82.173257027999966, 28.648624074000054 ], [ -82.173247879999963, 28.648447007000073 ], [ -82.173247558999947, 28.64825169900007 ], [ -82.173264021999955, 28.647491278000075 ], [ -82.173266340999987, 28.64710586700005 ], [ -82.173254318999966, 28.646975677000057 ], [ -82.173245337999958, 28.646900169000048 ], [ -82.173225086999935, 28.646792828000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.171964429999946, 28.647063178000053 ], [ -82.17248587499995, 28.646955486000024 ], [ -82.173225086999935, 28.646792828000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.169153902999938, 28.646937553000043 ], [ -82.169772661999957, 28.646947194000063 ], [ -82.170254419999935, 28.646940340000072 ], [ -82.171097490999955, 28.646924696000042 ], [ -82.171855576999974, 28.646929985000043 ], [ -82.17190519899998, 28.646946588000048 ], [ -82.171933577999937, 28.646971553000071 ], [ -82.171950166999977, 28.647006947000079 ], [ -82.171964429999946, 28.647063178000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.168107430999953, 28.646763858000043 ], [ -82.168161794999946, 28.646792957000059 ], [ -82.168237398999963, 28.646813696000038 ], [ -82.168400376999955, 28.646830160000036 ], [ -82.168591677999984, 28.646836173000054 ], [ -82.168714460999979, 28.646823519000066 ], [ -82.168820719999985, 28.646815054000058 ], [ -82.168919912999968, 28.646819097000048 ], [ -82.16898840999994, 28.64682526200005 ], [ -82.169049835999942, 28.646839767000074 ], [ -82.169094751999978, 28.646868878000078 ], [ -82.169153902999938, 28.646937553000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.169144607999954, 28.647767754000029 ], [ -82.169159452999963, 28.647452117000057 ], [ -82.169165975999988, 28.647102117000031 ], [ -82.169153902999938, 28.646937553000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.169144607999954, 28.647767754000029 ], [ -82.169226036999987, 28.647737445000075 ], [ -82.169395971999961, 28.647674734000077 ], [ -82.169587152999952, 28.647605746000067 ], [ -82.169773389999989, 28.647545305000051 ], [ -82.169915023999977, 28.647506796000073 ], [ -82.170083100999989, 28.647463252000023 ], [ -82.170296511999936, 28.647412985000074 ], [ -82.170607048999955, 28.647345482000048 ], [ -82.170864282999958, 28.647289565000051 ], [ -82.17178028099994, 28.647098827000036 ], [ -82.171964429999946, 28.647063178000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.161878764999983, 28.654198154000028 ], [ -82.161880251999946, 28.653936492000071 ], [ -82.161891959999934, 28.652948166000044 ], [ -82.161900384999967, 28.652283172000068 ], [ -82.16190439199994, 28.651201525000033 ], [ -82.161894223, 28.650731547000078 ], [ -82.161862869999936, 28.64999993400005 ], [ -82.161855225999943, 28.648713305000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.161855225999943, 28.648713305000058 ], [ -82.161857957999985, 28.648031650000064 ], [ -82.161866430999964, 28.647396654000033 ], [ -82.16187711699996, 28.646973317000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.161865363999937, 28.659979349000025 ], [ -82.161847463999948, 28.659623514000032 ], [ -82.161842854999975, 28.65944750500006 ], [ -82.161824574999969, 28.658842954000079 ], [ -82.161847587999944, 28.658291922000046 ], [ -82.16183879099998, 28.658213492000073 ], [ -82.161786420999988, 28.658008841000026 ], [ -82.161773126999947, 28.657827102000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153525824999974, 28.657809758000042 ], [ -82.153681883, 28.657811765000076 ], [ -82.154405187999942, 28.657813128000043 ], [ -82.154813907999937, 28.657814847000054 ], [ -82.155497583999988, 28.657818433000045 ], [ -82.15569574899996, 28.657818206000059 ], [ -82.155784915999959, 28.657813734000058 ], [ -82.156025175999957, 28.657802532000062 ], [ -82.156246346999978, 28.657780020000075 ], [ -82.156419839999955, 28.657760688000053 ], [ -82.156617180999945, 28.657731762000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156617180999945, 28.657731762000026 ], [ -82.156732241999975, 28.657800504000079 ], [ -82.156834214999947, 28.657819518000053 ], [ -82.156953521999981, 28.657827033000046 ], [ -82.158703964999972, 28.657846038000059 ], [ -82.159619304999978, 28.65784878900007 ], [ -82.160747260999983, 28.657885720000024 ], [ -82.161530274999961, 28.657879048000041 ], [ -82.161645215999954, 28.657867431000057 ], [ -82.161710254999946, 28.657846309000035 ], [ -82.161773126999947, 28.657827102000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.152032566999935, 28.657583868000074 ], [ -82.152049556999941, 28.657608258000039 ], [ -82.152081577, 28.657629790000044 ], [ -82.152124971999967, 28.657639308000057 ], [ -82.15335771599996, 28.657645549000051 ], [ -82.153431467999951, 28.657652552000059 ], [ -82.153485993999936, 28.657674339000039 ], [ -82.153519141999936, 28.657715782000025 ], [ -82.153525824999974, 28.657809758000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156617180999945, 28.657731762000026 ], [ -82.156842697999934, 28.657689410000046 ], [ -82.157074706999936, 28.657637485000066 ], [ -82.157241649999946, 28.657589461000043 ], [ -82.157402091999984, 28.65754527100006 ], [ -82.157551692999959, 28.65750300600007 ], [ -82.157787996999957, 28.657422376000056 ], [ -82.158024282999975, 28.657330267000077 ], [ -82.158249708999961, 28.657228604000068 ], [ -82.158470790999957, 28.657123119000062 ], [ -82.158683178, 28.657004252000036 ], [ -82.158893392999971, 28.656885386000056 ], [ -82.159099246999972, 28.656751220000046 ], [ -82.159296430999973, 28.656620890000056 ], [ -82.159521734999942, 28.65644078400004 ], [ -82.159660374999987, 28.656323914000041 ], [ -82.159860437999953, 28.656146256000056 ], [ -82.160523620999982, 28.655517367000073 ], [ -82.161769557999946, 28.654309527000066 ], [ -82.161841037999977, 28.65423819800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18263331199995, 28.66903459200006 ], [ -82.18263251999997, 28.668578281000066 ], [ -82.182639670999947, 28.667200925000031 ], [ -82.182645169999944, 28.666204935000053 ], [ -82.182655134999948, 28.665284650000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18263331199995, 28.66903459200006 ], [ -82.18353512799996, 28.669038471000079 ], [ -82.183922109999969, 28.669054197000037 ], [ -82.184261788999947, 28.669085601000063 ], [ -82.184370211999976, 28.669104573000027 ], [ -82.184529243999975, 28.669137815000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.184529243999975, 28.669137815000056 ], [ -82.184640466999952, 28.669068028000027 ], [ -82.185002076999979, 28.668867907000049 ], [ -82.185832350999988, 28.668460487000061 ], [ -82.18639554899994, 28.668217537000032 ], [ -82.186648271999957, 28.668112034000046 ], [ -82.186807157999965, 28.668064016000073 ], [ -82.186919108999973, 28.668035183000029 ], [ -82.187103296999965, 28.667993504000037 ], [ -82.187431987999958, 28.667942064000044 ], [ -82.187800420999963, 28.667890570000054 ], [ -82.188100086999953, 28.667772252000077 ], [ -82.189421349999975, 28.667168156000059 ], [ -82.190905173999965, 28.666560631000038 ], [ -82.191398451999987, 28.666380187000073 ], [ -82.191445202999944, 28.66636705600007 ], [ -82.191548041999965, 28.666331157000059 ], [ -82.191646774999981, 28.666287700000055 ], [ -82.191738824999959, 28.666244623000068 ], [ -82.191825427999959, 28.66618586900006 ], [ -82.191917778999937, 28.666109261000031 ], [ -82.191987003999941, 28.666041753000059 ], [ -82.192139939999947, 28.665892262000057 ], [ -82.192275434999942, 28.665700878000052 ], [ -82.192367603999969, 28.665524851000043 ], [ -82.192390656999976, 28.66548657900006 ], [ -82.192422371999953, 28.665443198000048 ], [ -82.192462778999982, 28.665412549000052 ], [ -82.192511859999968, 28.665381889000059 ], [ -82.192560975999982, 28.665371622000066 ], [ -82.192612991999965, 28.665366450000079 ], [ -82.193364522999957, 28.665393420000044 ], [ -82.194376234999936, 28.66544805500007 ], [ -82.19473753799997, 28.665455183000063 ], [ -82.194998004999945, 28.665444072000071 ], [ -82.195150760999979, 28.665406153000049 ], [ -82.195332760999975, 28.665357456000038 ], [ -82.195763142999965, 28.665208980000045 ], [ -82.195950859999982, 28.665127133000055 ], [ -82.196285801999977, 28.664948202000062 ], [ -82.196487942999966, 28.664851038000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.199284347999935, 28.674801670000079 ], [ -82.199304811, 28.674770030000047 ], [ -82.199316321999959, 28.674743502000069 ], [ -82.199324650999984, 28.674714937000033 ], [ -82.199330355999962, 28.674674141000025 ], [ -82.199333081999953, 28.674587464000069 ], [ -82.199343996999971, 28.67424585200007 ], [ -82.199322768999934, 28.673720744000036 ], [ -82.199321653999959, 28.673131875000024 ], [ -82.199337787, 28.672491997000066 ], [ -82.199363092999988, 28.672117223000043 ], [ -82.199396826999987, 28.671614976000058 ], [ -82.199396643999989, 28.671518107000054 ], [ -82.199387827999942, 28.671441643000037 ], [ -82.199367468999981, 28.671375393000062 ], [ -82.199347109999962, 28.67130914300003 ], [ -82.199315212999977, 28.671255657000074 ], [ -82.199271784999951, 28.671217482000031 ], [ -82.199112519999971, 28.671064763000061 ], [ -82.198848990999977, 28.670802580000043 ], [ -82.198698384999943, 28.670642200000032 ], [ -82.198556396999948, 28.670453766000037 ], [ -82.198273278999977, 28.670026489000065 ], [ -82.198191178999934, 28.669911316000025 ], [ -82.198141863999979, 28.669817066000064 ], [ -82.198101225999949, 28.669725354000036 ], [ -82.19807790699997, 28.669620870000074 ], [ -82.198060381999937, 28.669524026000033 ], [ -82.198051517999943, 28.669422069000063 ], [ -82.198048435999965, 28.669320105000054 ], [ -82.198054077999984, 28.669246170000065 ], [ -82.198094127, 28.669024328000035 ], [ -82.198122459999979, 28.668720929000074 ], [ -82.198125109999978, 28.668593464000026 ], [ -82.198116180999989, 28.66845581900003 ], [ -82.198101497999971, 28.668333478000079 ], [ -82.198072339999953, 28.668198411000049 ], [ -82.19800227199994, 28.667826328000046 ], [ -82.197888254999953, 28.667138203000036 ], [ -82.197768992999954, 28.666735600000038 ], [ -82.197728307999967, 28.666618394000068 ], [ -82.197678975999963, 28.666513948000045 ], [ -82.197597798999936, 28.66638150700004 ], [ -82.197528238999951, 28.666279640000027 ], [ -82.197105187999966, 28.665711779000048 ], [ -82.196783518999951, 28.665261034000025 ], [ -82.196554552999942, 28.664922319000027 ], [ -82.196487942999966, 28.664851038000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.199296527999934, 28.675127953000072 ], [ -82.199467356999946, 28.675126681000052 ], [ -82.20132659899997, 28.675136166000073 ], [ -82.20257070599996, 28.675136350000059 ], [ -82.20350493899997, 28.675134949000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.220183593999934, 28.701245624000023 ], [ -82.220243685999947, 28.701223093000067 ], [ -82.220294558999967, 28.701216892000048 ], [ -82.220428732999949, 28.701224831000047 ], [ -82.221055743999955, 28.70130946200004 ], [ -82.221543942999972, 28.70138004100005 ], [ -82.222469410999963, 28.70149884500006 ], [ -82.223908539999968, 28.701694291000024 ], [ -82.225197299999934, 28.70187773400005 ], [ -82.22705753799994, 28.702129546000037 ], [ -82.227485582999975, 28.702190008000059 ], [ -82.227649853999935, 28.702210126000068 ], [ -82.227814101999968, 28.702220047000026 ], [ -82.228015342999981, 28.702221747000067 ], [ -82.228216564999968, 28.702215290000026 ], [ -82.228935772999989, 28.702144737000026 ], [ -82.229792869999983, 28.702042811000069 ], [ -82.229834240999935, 28.70204466000007 ], [ -82.229875641999968, 28.702059947000066 ], [ -82.229943196999955, 28.702086707000035 ], [ -82.230034712999952, 28.702119185000072 ], [ -82.230158868999979, 28.702143930000034 ], [ -82.230283068999938, 28.702187869000056 ], [ -82.230320095999957, 28.702193565000073 ], [ -82.230459388999975, 28.702170293000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.220183593999934, 28.701245624000023 ], [ -82.221775482999988, 28.702905506000036 ], [ -82.222846168999979, 28.704006884000023 ], [ -82.223621174999948, 28.704805301000079 ], [ -82.224046314999953, 28.705249645000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.221999701999948, 28.70528740900005 ], [ -82.222722436999959, 28.705272060000027 ], [ -82.224046314999953, 28.705249645000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.219600186999969, 28.705267555000034 ], [ -82.219703480999954, 28.705287616000078 ], [ -82.219767743999967, 28.70529560500006 ], [ -82.221056669999939, 28.705290975000025 ], [ -82.221999701999948, 28.70528740900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.219782406999968, 28.706688738000025 ], [ -82.220192949999955, 28.706685940000057 ], [ -82.220244562999937, 28.706678269000065 ], [ -82.220293272999982, 28.706655432000048 ], [ -82.220339104999937, 28.706627542000035 ], [ -82.220868143999951, 28.70620363200004 ], [ -82.221452513999964, 28.705727547000038 ], [ -82.221999701999948, 28.70528740900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.239132941999969, 28.654581449000034 ], [ -82.238574369999981, 28.654582434000076 ], [ -82.237845251999943, 28.654587565000043 ], [ -82.23768709899997, 28.654592255000068 ], [ -82.237503748999984, 28.654573410000069 ], [ -82.237425168999948, 28.654560716000049 ], [ -82.237337840999942, 28.654537773000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.237337840999942, 28.654537773000072 ], [ -82.237238845999968, 28.654502020000052 ], [ -82.237149183999975, 28.654463408000026 ], [ -82.237075523999977, 28.654423602000065 ], [ -82.236999018999938, 28.654376313000057 ], [ -82.236913978999951, 28.654309071000057 ], [ -82.236830964999967, 28.654240983000079 ], [ -82.236766806999981, 28.654171808000058 ], [ -82.236699721999969, 28.654094939000061 ], [ -82.236650107999935, 28.65402573800003 ], [ -82.236597535999977, 28.653933448000032 ], [ -82.236556622999956, 28.653851402000043 ], [ -82.236515600999951, 28.653720597000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.254277986999966, 28.666479122000055 ], [ -82.25435291499997, 28.666081217000055 ], [ -82.254384627999968, 28.665960548000044 ], [ -82.254410566, 28.665857850000066 ], [ -82.254407526999955, 28.665803967000045 ], [ -82.254384125999934, 28.665752687000065 ], [ -82.254360748999943, 28.665711672000043 ], [ -82.254314079999972, 28.665663002000031 ], [ -82.254247091999957, 28.665634900000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.254099520999944, 28.667300117000025 ], [ -82.254131901999983, 28.667213832000073 ], [ -82.254150179999954, 28.667072144000031 ], [ -82.254277986999966, 28.666479122000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.25229182299995, 28.666706088000069 ], [ -82.252429080999946, 28.66667504000003 ], [ -82.252552402999981, 28.666656332000059 ], [ -82.253187295999965, 28.666545314000075 ], [ -82.253390974999945, 28.666546975000074 ], [ -82.253985819999968, 28.666472578000025 ], [ -82.254277986999966, 28.666479122000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.257443998999975, 28.667139829000064 ], [ -82.257394208999983, 28.667184786000064 ], [ -82.257351508999989, 28.667260514000077 ], [ -82.257319569999936, 28.667352769000047 ], [ -82.257282369999984, 28.667485221000049 ], [ -82.257221114999936, 28.667646088000026 ], [ -82.25714125899998, 28.667873179000026 ], [ -82.25709121899996, 28.66810005800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.223975996999968, 28.634480628000063 ], [ -82.223969112999953, 28.634417124000038 ], [ -82.223966492999978, 28.634309697000049 ], [ -82.223944723999978, 28.633990298000072 ], [ -82.223961996999947, 28.633847608000053 ], [ -82.223972363999962, 28.633763855000041 ], [ -82.223996694999983, 28.633633560000078 ], [ -82.224006955999982, 28.633500186000049 ], [ -82.224002512999959, 28.633062906000077 ], [ -82.223983400999941, 28.632670434000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.212018994999937, 28.631613077000054 ], [ -82.212203702999943, 28.631695820000061 ], [ -82.212424485999975, 28.631794721000063 ], [ -82.212549904999946, 28.631850903000043 ], [ -82.212641702999974, 28.63189509700004 ], [ -82.212717509999948, 28.631937733000029 ], [ -82.212805931999981, 28.631995097000072 ], [ -82.212885666999966, 28.632055022000031 ], [ -82.212957297999935, 28.632116777000078 ], [ -82.213044202999981, 28.632204267000077 ], [ -82.213143805999948, 28.632330016000026 ], [ -82.213589733999981, 28.63296243700006 ], [ -82.214065321999954, 28.633640151000066 ], [ -82.214271520999944, 28.634015507000072 ], [ -82.214294094999957, 28.63409456100004 ], [ -82.21432042899994, 28.634186792000037 ], [ -82.214328079999973, 28.634275758000058 ], [ -82.214332000999946, 28.634368023000036 ], [ -82.214317281999968, 28.634476797000048 ], [ -82.214302528999951, 28.634569093000039 ], [ -82.214276622999989, 28.634687770000028 ], [ -82.214217132999977, 28.634822977000056 ], [ -82.213830100999985, 28.635532108000064 ], [ -82.213778027999979, 28.635640941000077 ], [ -82.213733457999979, 28.635766238000031 ], [ -82.213698442999942, 28.635883487000058 ], [ -82.213669522999965, 28.636012261000076 ], [ -82.213659465999967, 28.636118967000073 ], [ -82.213644851999959, 28.636280467000063 ], [ -82.213641377999977, 28.636408995000068 ], [ -82.213641799999948, 28.637355445000026 ], [ -82.213632318999942, 28.63857609300004 ], [ -82.213635694999937, 28.640025741000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.213635694999937, 28.640025741000045 ], [ -82.215084622999939, 28.640029064000032 ], [ -82.215795857999979, 28.640030570000079 ], [ -82.217853330999958, 28.640029105000053 ], [ -82.219333063999954, 28.640038968000056 ], [ -82.219846320999977, 28.640041238000038 ], [ -82.220731642999965, 28.640040667000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.224008995999952, 28.638167425000063 ], [ -82.224019323999983, 28.638065064000045 ], [ -82.224025998999934, 28.637897581000061 ], [ -82.22404149099998, 28.637777349000032 ], [ -82.224044417999949, 28.637525827000047 ], [ -82.224039126999969, 28.636663854000062 ], [ -82.224037992999968, 28.636129932000074 ], [ -82.224037574999954, 28.635933434000037 ], [ -82.224030601999971, 28.635828248000053 ], [ -82.22403036999998, 28.635719082000037 ], [ -82.223995855999988, 28.635357896000073 ], [ -82.223972343999947, 28.634879587000057 ], [ -82.223975996999968, 28.634480628000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.219836665999935, 28.630831318000048 ], [ -82.221646723999982, 28.630818844000032 ], [ -82.221960414999955, 28.630818330000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.219836665999935, 28.630831318000048 ], [ -82.219802481999977, 28.630110494000064 ], [ -82.219833852999955, 28.629929193000066 ], [ -82.219859696999947, 28.629784151000024 ], [ -82.219859304999943, 28.629596312000047 ], [ -82.219877444999952, 28.629339238000057 ], [ -82.219914100999972, 28.629006337000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.219914100999972, 28.629006337000078 ], [ -82.219932501999949, 28.628874490000044 ], [ -82.219947064999985, 28.628693216000045 ], [ -82.219946672999981, 28.628505377000067 ], [ -82.21992757299995, 28.628301091000026 ], [ -82.219897210999989, 28.628070458000025 ], [ -82.219870756999967, 28.627922206000051 ], [ -82.219881054999973, 28.627487190000068 ], [ -82.219904500999974, 28.626192041000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.219843171999969, 28.632608376000064 ], [ -82.219832808999968, 28.631221010000047 ], [ -82.219836665999935, 28.630831318000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189898801999959, 28.648811883000064 ], [ -82.190778056999989, 28.648811368000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189898801999959, 28.648811883000064 ], [ -82.189861290999943, 28.648393653000028 ], [ -82.189842269999986, 28.648037005000049 ], [ -82.18983973099995, 28.647647909000057 ], [ -82.189843573999951, 28.647230432000072 ], [ -82.189856998999971, 28.647031811000033 ], [ -82.189870419999977, 28.646829136000065 ], [ -82.189855225999963, 28.646046904000059 ], [ -82.189817149999953, 28.645313341000076 ], [ -82.189826236999977, 28.645256585000027 ], [ -82.189857855999946, 28.645210087000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187948828999936, 28.648821897000062 ], [ -82.188307214999952, 28.648821400000031 ], [ -82.188803428999961, 28.64881357400003 ], [ -82.188996460999988, 28.648844759000042 ], [ -82.18923082699996, 28.648864697000079 ], [ -82.189474359999963, 28.648872463000032 ], [ -82.189637910999977, 28.64886088600008 ], [ -82.189799131999962, 28.648821360000056 ], [ -82.189898801999959, 28.648811883000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18463455899996, 28.648137776000056 ], [ -82.184629074999975, 28.648458616000028 ], [ -82.184639225999945, 28.648501262000025 ], [ -82.184689686999945, 28.648550963000048 ], [ -82.185115115999963, 28.648693741000045 ], [ -82.185288450999963, 28.648731446000056 ], [ -82.185519604999968, 28.64877741600003 ], [ -82.185665829999948, 28.648775408000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.184108444999936, 28.650599171000067 ], [ -82.184655333999956, 28.650583870000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.184655333999956, 28.650583870000048 ], [ -82.185119750999945, 28.650589474000071 ], [ -82.185725582999964, 28.650578248000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170067005999954, 28.679838391000033 ], [ -82.170068646999937, 28.67913679000003 ], [ -82.170066987999974, 28.678109412000026 ], [ -82.170060967999973, 28.677504555000041 ], [ -82.170058884999946, 28.676214774000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170067005999954, 28.679838391000033 ], [ -82.171315470999957, 28.67983348000007 ], [ -82.172639369999956, 28.679849589000071 ], [ -82.173635418999936, 28.679845536000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170326895999949, 28.688975065000079 ], [ -82.17036477399995, 28.689006151000058 ], [ -82.170410206999975, 28.689030555000045 ], [ -82.170470756999975, 28.689046045000055 ], [ -82.170579222999947, 28.689061474000027 ], [ -82.170745691999969, 28.689076831000079 ], [ -82.170897044999947, 28.689101101000062 ], [ -82.171134205999977, 28.689165290000062 ], [ -82.171459592999952, 28.689204906000043 ], [ -82.171822798999983, 28.689237803000026 ], [ -82.172256637999965, 28.68928395000006 ], [ -82.172708090999947, 28.689305613000045 ], [ -82.173225075999937, 28.689304952000043 ], [ -82.173510048999958, 28.689304587000038 ], [ -82.173711813999944, 28.689313223000056 ], [ -82.173996823999971, 28.689335095000047 ], [ -82.174163263999958, 28.689332656000033 ], [ -82.174317104999943, 28.68933690700004 ], [ -82.174382659999935, 28.689327927000079 ], [ -82.174438110999972, 28.689310065000029 ], [ -82.174496063999982, 28.689278857000033 ], [ -82.174538880999989, 28.68924544500004 ], [ -82.174589243999947, 28.689200906000053 ], [ -82.174652131999949, 28.689105204000043 ], [ -82.174692404999973, 28.68905845200004 ], [ -82.174727699999949, 28.689051735000078 ], [ -82.174871476999954, 28.689069339000071 ], [ -82.175035405999949, 28.689073575000066 ], [ -82.175466646999951, 28.689073017000055 ], [ -82.175771758999986, 28.689052607000065 ], [ -82.176033985999936, 28.689023358000043 ], [ -82.176538349999987, 28.689016029000072 ], [ -82.176992305999988, 28.689026555000055 ], [ -82.177118418999953, 28.689037509000059 ], [ -82.177292460999979, 28.689057295000055 ], [ -82.177453894999985, 28.689077097000052 ], [ -82.177640516999986, 28.689079077000031 ], [ -82.177842274999989, 28.689083259000029 ], [ -82.177973392999945, 28.689071968000064 ], [ -82.178144846999942, 28.689051728000038 ], [ -82.178351610999982, 28.689033666000057 ], [ -82.17851804299994, 28.689026775000059 ], [ -82.178742500999988, 28.689033150000057 ], [ -82.179100595999955, 28.689026005000073 ], [ -82.179529313999979, 28.689025437000055 ], [ -82.179773964999981, 28.689042903000029 ], [ -82.180437240999936, 28.689055364000069 ], [ -82.180540637999968, 28.68905522600005 ], [ -82.180575937999947, 28.689050730000076 ], [ -82.180613742999981, 28.689037338000048 ], [ -82.180633874999955, 28.68901285000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.180633874999955, 28.68901285000004 ], [ -82.180651481999973, 28.688986140000054 ], [ -82.180664035999939, 28.688952768000036 ], [ -82.180666472999974, 28.688903841000069 ], [ -82.180663737999964, 28.688779315000033 ], [ -82.180646853999974, 28.687758630000076 ], [ -82.180646475999936, 28.687538478000079 ], [ -82.180646311999965, 28.687442856000075 ], [ -82.180651232999935, 28.687371690000077 ], [ -82.180661229999941, 28.687318306000066 ], [ -82.180688892999967, 28.687273794000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133175150999989, 28.654141098000025 ], [ -82.133176651999975, 28.654040464000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135880335999957, 28.655870132000075 ], [ -82.136002906999977, 28.655871510000054 ], [ -82.136326384999961, 28.655878228000063 ], [ -82.13683485599995, 28.655864032000068 ], [ -82.137257812999962, 28.65586158800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12701057299995, 28.654987402000074 ], [ -82.127601392999964, 28.655002109000066 ], [ -82.127868349999972, 28.654988775000049 ], [ -82.128085857999963, 28.654966764000051 ], [ -82.128286100999958, 28.654977477000045 ], [ -82.128320719999977, 28.654986167000061 ], [ -82.12837725199995, 28.655016125000031 ], [ -82.128446661999988, 28.655031360000066 ], [ -82.128521015999979, 28.655035663000035 ], [ -82.128649866999979, 28.65501805100007 ], [ -82.129065848999971, 28.655016571000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112197905999949, 28.75616614300003 ], [ -82.112208400999975, 28.755255043000034 ], [ -82.112220198999978, 28.752497215000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107795599999974, 28.756168475000038 ], [ -82.107897587999958, 28.756149887000049 ], [ -82.108137603999978, 28.756149695000033 ], [ -82.110567777999961, 28.756155660000047 ], [ -82.112197905999949, 28.75616614300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106077629999959, 28.755524211000079 ], [ -82.106934211999942, 28.755846612000028 ], [ -82.107252359999961, 28.755970619000038 ], [ -82.107513472999983, 28.756062947000032 ], [ -82.107795599999974, 28.756168475000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106078423999975, 28.756113674000062 ], [ -82.106075787999941, 28.756076244000042 ], [ -82.106082507999986, 28.755600350000066 ], [ -82.106077629999959, 28.755524211000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105071592999934, 28.75515063000006 ], [ -82.105854329999943, 28.755439784000032 ], [ -82.106077629999959, 28.755524211000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105071592999934, 28.75515063000006 ], [ -82.105062664999934, 28.755823228000054 ], [ -82.105065252999964, 28.756011466000075 ], [ -82.105072488999951, 28.756045302000075 ], [ -82.105101327999989, 28.756083351000029 ], [ -82.105144553999935, 28.756106582000029 ], [ -82.105192563999935, 28.756112890000054 ], [ -82.105350980999958, 28.756119111000032 ], [ -82.106078423999975, 28.756113674000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10507591399994, 28.753472588000079 ], [ -82.105807443999936, 28.753422299000079 ], [ -82.10592350099995, 28.753418034000049 ], [ -82.105979657999967, 28.753428919000044 ], [ -82.106029114999956, 28.753452130000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104059585999948, 28.753440326000032 ], [ -82.104968629999973, 28.753444911000031 ], [ -82.105031637999957, 28.753450150000049 ], [ -82.10507591399994, 28.753472588000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104075482999974, 28.754344503000027 ], [ -82.104084299999954, 28.754159429000026 ], [ -82.104083977999949, 28.753834237000035 ], [ -82.104059585999948, 28.753440326000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10458313099997, 28.754968056000052 ], [ -82.105071592999934, 28.75515063000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10458313099997, 28.754968056000052 ], [ -82.10444565499995, 28.755502216000025 ], [ -82.104368146999946, 28.756001960000049 ], [ -82.104389486999935, 28.756342997000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104054898999948, 28.754764888000068 ], [ -82.10458313099997, 28.754968056000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97663874999995, 28.578524531000028 ], [ -81.97655697, 28.578581229000065 ], [ -81.975631645999954, 28.579255982000063 ], [ -81.975438904999976, 28.57941132600007 ], [ -81.975369864999948, 28.579462768000042 ], [ -81.975280882999982, 28.579510144000039 ], [ -81.97521031399998, 28.579541274000064 ], [ -81.974892759999989, 28.579634647000034 ], [ -81.974484694999944, 28.579749665000065 ], [ -81.973989187999962, 28.579887686000063 ], [ -81.973861856999974, 28.579930991000026 ], [ -81.973811229999967, 28.579954 ], [ -81.973775942999964, 28.579977013000075 ], [ -81.973748318999981, 28.580027109000071 ], [ -81.973739100999978, 28.58007856100005 ], [ -81.973740019, 28.580141183000023 ], [ -81.973750784999936, 28.580195102000062 ], [ -81.973779504999982, 28.580293426000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98028282599995, 28.57832879700004 ], [ -81.980248364999966, 28.578160317000027 ], [ -81.980236884999954, 28.578064914000038 ], [ -81.980230074999952, 28.577591969000025 ], [ -81.980250892999948, 28.576932285000055 ], [ -81.980250939999962, 28.576680589000034 ], [ -81.980269990999943, 28.576614195000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030179793999935, 28.562537043000077 ], [ -82.030106642999954, 28.56241787600004 ], [ -82.030097006999938, 28.562238042000047 ], [ -82.03008977199994, 28.562081479000028 ], [ -82.030084946999978, 28.561971462000031 ], [ -82.030087311999978, 28.561859327000036 ], [ -82.030082852999954, 28.561706269000069 ], [ -82.030094419999955, 28.561569471000041 ], [ -82.030108786999961, 28.561351616000024 ], [ -82.030119884999976, 28.561138167000024 ], [ -82.030119825999975, 28.560931289000052 ], [ -82.030086256999937, 28.560602919000075 ], [ -82.030075028999988, 28.560359921000043 ], [ -82.030074954999975, 28.560097220000046 ], [ -82.030065168999954, 28.559832464000067 ], [ -82.030067497999937, 28.559595501000047 ], [ -82.030074618999947, 28.559358539000073 ], [ -82.030072185999984, 28.559227364000037 ], [ -82.030062581999971, 28.55915966200007 ], [ -82.03004339599994, 28.559113121000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961797579999939, 28.594631865000053 ], [ -81.961355935999961, 28.593016191000061 ], [ -81.961302172999979, 28.592815930000029 ], [ -81.961248412999964, 28.592612274000032 ], [ -81.961206178999987, 28.592432378000069 ], [ -81.961167784999986, 28.592266061000032 ], [ -81.961114035999969, 28.592028464000066 ], [ -81.961067974999935, 28.591801052000051 ], [ -81.961021929999959, 28.591529518000073 ], [ -81.960975889999986, 28.591247802000055 ], [ -81.960929852999982, 28.590955903000065 ], [ -81.960899196999947, 28.590667404000044 ], [ -81.960845498999959, 28.590297441000075 ], [ -81.960807190999958, 28.589903724000067 ], [ -81.960730540999975, 28.589214717000061 ], [ -81.960604061999959, 28.588094657000056 ], [ -81.960550395999974, 28.587646631000041 ], [ -81.959836022, 28.581306107000046 ], [ -81.959769972999936, 28.580723675000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970323966999956, 28.591487750000056 ], [ -81.969943269999987, 28.591491061000056 ], [ -81.969281871999954, 28.591456971000071 ], [ -81.968485883999961, 28.591426243000058 ], [ -81.968324375999941, 28.591429599000037 ], [ -81.96818209199995, 28.59144314200006 ], [ -81.96804364999997, 28.59147026200003 ], [ -81.967909042999963, 28.591527928000062 ], [ -81.967828272999952, 28.591578819000063 ], [ -81.967693657999973, 28.591670426000064 ], [ -81.967585955999937, 28.591768827000067 ], [ -81.967482092999944, 28.591887592000035 ], [ -81.967382072999953, 28.592013146000056 ], [ -81.967289739999956, 28.592152279000061 ], [ -81.96720509499994, 28.592301595000038 ], [ -81.967128135999985, 28.592461095000033 ], [ -81.967074270999944, 28.592559509000068 ], [ -81.967001173999961, 28.592668098000047 ], [ -81.966897295999956, 28.592827592000049 ], [ -81.966808811999954, 28.592949755000063 ], [ -81.966691466999976, 28.59308775900007 ], [ -81.966568141999971, 28.593217682000045 ], [ -81.966462934999981, 28.59333145100004 ], [ -81.966224107999949, 28.593560532000026 ], [ -81.965897150999979, 28.593845548000047 ], [ -81.965693287999954, 28.59400501500005 ], [ -81.965597131999971, 28.594062689000054 ], [ -81.965516363999939, 28.594100002000062 ], [ -81.965420215999984, 28.594133918000068 ], [ -81.965324070999941, 28.594161045000078 ], [ -81.965220227999964, 28.594205141000032 ], [ -81.965127920999976, 28.594249239000078 ], [ -81.965058686999953, 28.594293343000061 ], [ -81.964970213999948, 28.594371383000066 ], [ -81.964877896999951, 28.594449421000036 ], [ -81.964800965999984, 28.594513888000051 ], [ -81.964708648999988, 28.59458513800007 ], [ -81.964631721999979, 28.594636028000025 ], [ -81.964520184999969, 28.594686910000064 ], [ -81.964400961999957, 28.594720818000042 ], [ -81.964274054999976, 28.59473775400005 ], [ -81.964143304999936, 28.594741115000033 ], [ -81.963985639999976, 28.594741073000023 ], [ -81.963870275999966, 28.59473425300007 ], [ -81.963697230999969, 28.594724025000062 ], [ -81.963170412999943, 28.594676368000023 ], [ -81.962051394999946, 28.594601391000026 ], [ -81.961797579999939, 28.594631865000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980186172999936, 28.591556737000076 ], [ -81.975462186999948, 28.591492713000036 ], [ -81.973650849999956, 28.591490202000045 ], [ -81.973116808999976, 28.591464031000044 ], [ -81.972676271999944, 28.591498698000066 ], [ -81.971830381999951, 28.591527829000029 ], [ -81.971511304999979, 28.591510564000032 ], [ -81.971026590999941, 28.591521211000043 ], [ -81.970515098999954, 28.591478104000032 ], [ -81.970323966999956, 28.591487750000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966131957999949, 28.618149598000059 ], [ -81.965475973999958, 28.616690894000044 ], [ -81.965086330999952, 28.615831122000031 ], [ -81.964831971999956, 28.615269849000072 ], [ -81.964552951999963, 28.61465415400005 ], [ -81.964386286999968, 28.614286385000071 ], [ -81.964296603999969, 28.614088483000046 ], [ -81.964231784999981, 28.613918888000057 ], [ -81.964166860999967, 28.613716047000025 ], [ -81.964113973999986, 28.613514526000074 ], [ -81.964074872999959, 28.61332725300008 ], [ -81.964036466999971, 28.613069594000024 ], [ -81.964015358999973, 28.612808395000059 ], [ -81.964009387999965, 28.612527753000052 ], [ -81.963962440999978, 28.611131368000031 ], [ -81.963919991999944, 28.609868774000063 ], [ -81.96389656499997, 28.609250142000064 ], [ -81.963811643999975, 28.606803117000027 ], [ -81.963722622999967, 28.604413751000038 ], [ -81.963678180999977, 28.603026263000061 ], [ -81.96366197499998, 28.602651460000061 ], [ -81.963658451999947, 28.602546235000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.236174432999974, 28.717815485000074 ], [ -82.236264238999979, 28.717905341000062 ], [ -82.23729396899995, 28.718968989000075 ], [ -82.238229719999936, 28.719933596000033 ], [ -82.238670449999972, 28.720388392000075 ], [ -82.240211705999968, 28.721985665000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.233517006999989, 28.72216503900006 ], [ -82.233562802999984, 28.72215224100006 ], [ -82.234421142999963, 28.721921524000038 ], [ -82.235564107999949, 28.721589455000071 ], [ -82.236196123999946, 28.721395465000057 ], [ -82.236504622999973, 28.721314136000046 ], [ -82.236647871999935, 28.721281913000041 ], [ -82.236837135999963, 28.721246859000075 ], [ -82.237027977999958, 28.721220398000071 ], [ -82.237211501, 28.721185328000047 ], [ -82.237478279999948, 28.721174742000073 ], [ -82.237639193999939, 28.721172625000065 ], [ -82.237825515999987, 28.72118109400003 ], [ -82.238136757999939, 28.721212853000054 ], [ -82.238674550999974, 28.721356829000058 ], [ -82.239015434999942, 28.721505040000068 ], [ -82.239252571999941, 28.721682892000047 ], [ -82.239720493999982, 28.722203747000037 ], [ -82.239792481999984, 28.722227037000039 ], [ -82.239879290999966, 28.722210099000051 ], [ -82.240016914999956, 28.72212329000007 ], [ -82.240211705999968, 28.721985665000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.240211705999968, 28.721985665000034 ], [ -82.240270217999978, 28.722047597000028 ], [ -82.240629251999962, 28.722423684000034 ], [ -82.240906694999978, 28.722717395000075 ], [ -82.241306910999981, 28.723123544000032 ], [ -82.241636584999981, 28.723473130000059 ], [ -82.241731237999943, 28.723570551000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.223559676999969, 28.727117784000029 ], [ -82.223997080999936, 28.726870482000038 ], [ -82.224890082999934, 28.726385874000073 ], [ -82.225824663999958, 28.725857103000067 ], [ -82.226272192999943, 28.725612038000065 ], [ -82.227573121999967, 28.724891594000042 ], [ -82.228422181999974, 28.724339068000063 ], [ -82.230145611999944, 28.723208018000037 ], [ -82.230174624999961, 28.723188718000074 ], [ -82.230278811999938, 28.723125627000059 ], [ -82.230388282999968, 28.723070091000068 ], [ -82.230502250999962, 28.723022111000034 ], [ -82.230620139999985, 28.722982375000072 ], [ -82.233517006999989, 28.72216503900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.236174432999974, 28.717815485000074 ], [ -82.23622426299994, 28.717734571000051 ], [ -82.236288625999975, 28.717629751000061 ], [ -82.236655910999957, 28.716940240000042 ], [ -82.236856416999956, 28.71657626700005 ], [ -82.237379228999941, 28.715620667000053 ], [ -82.237869093999961, 28.714700048000054 ], [ -82.238769900999955, 28.713007388000051 ], [ -82.238960610999982, 28.712663598000063 ], [ -82.239088761999938, 28.712395594000043 ], [ -82.239210296999943, 28.712121780000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.239210296999943, 28.712121780000075 ], [ -82.239365502999988, 28.712136059000045 ], [ -82.24008183899997, 28.712091130000033 ], [ -82.240745402999949, 28.712069576000033 ], [ -82.241448485999967, 28.712004290000039 ], [ -82.242181245999973, 28.711924393000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.239210296999943, 28.712121780000075 ], [ -82.239262850999978, 28.71200235200007 ], [ -82.239335093999955, 28.711830497000051 ], [ -82.239377727999965, 28.711705265000035 ], [ -82.239463004999948, 28.711457711000037 ], [ -82.239541671999973, 28.711207258000059 ], [ -82.240010200999961, 28.70963469000003 ], [ -82.240092112999946, 28.709360946000061 ], [ -82.240144603999966, 28.709215321000045 ], [ -82.240200442999935, 28.709090064000065 ], [ -82.240262843999972, 28.708947333000026 ], [ -82.240341753999985, 28.708804573000066 ], [ -82.240420667999956, 28.708664721000048 ], [ -82.240585193999948, 28.708425758000033 ], [ -82.241266499999938, 28.707513518000042 ], [ -82.24212222999995, 28.706368114000043 ], [ -82.242444750999937, 28.705928031000042 ], [ -82.242925275999937, 28.705289742000048 ], [ -82.243359717999965, 28.704712656000027 ], [ -82.244001501999946, 28.703861597000071 ], [ -82.244110079999984, 28.70370422700006 ], [ -82.244179155999973, 28.703596410000046 ], [ -82.244211966999956, 28.70353534000003 ], [ -82.244258055999978, 28.703453646000071 ], [ -82.244294173999947, 28.703369173000056 ], [ -82.244326895999961, 28.703243957000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.161878764999983, 28.654198154000028 ], [ -82.162159882999958, 28.65393449100003 ], [ -82.163113539999983, 28.653009766000025 ], [ -82.164674686999945, 28.651509845000078 ], [ -82.165016149999985, 28.651181103000056 ], [ -82.165425521999964, 28.650785613000039 ], [ -82.166127305999964, 28.650114769000027 ], [ -82.16694793399995, 28.649332111000035 ], [ -82.167096967999953, 28.649191931000075 ], [ -82.167259196999964, 28.649031734000062 ], [ -82.167395018999969, 28.648899902000039 ], [ -82.167578023999965, 28.648736346000078 ], [ -82.167706319999979, 28.648624523000024 ], [ -82.167862937999985, 28.648500999000078 ], [ -82.168029014999945, 28.648387462000073 ], [ -82.168187552999939, 28.648283934000062 ], [ -82.168334770999934, 28.648190420000049 ], [ -82.168485772999986, 28.648101901000075 ], [ -82.168678315999955, 28.647996664000061 ], [ -82.168797243999961, 28.64793485000007 ], [ -82.168867097999964, 28.647903097000039 ], [ -82.169003025999984, 28.64783959600004 ], [ -82.169144607999954, 28.647767754000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.169153902999938, 28.646937553000043 ], [ -82.169141793999984, 28.646750072000032 ], [ -82.169135281999957, 28.646664457000043 ], [ -82.169106002999968, 28.646520954000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.240363033999984, 28.640069874000062 ], [ -82.240728559, 28.640069225000047 ], [ -82.241132836999952, 28.640085855000052 ], [ -82.241554669999971, 28.640107557000078 ], [ -82.241980173999934, 28.640145292000057 ], [ -82.242391787999964, 28.640186991000064 ], [ -82.242762590999973, 28.640233419000026 ], [ -82.243186796999964, 28.64029021500005 ], [ -82.243489582999985, 28.640338260000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.245816974999968, 28.646688206000078 ], [ -82.245881593999968, 28.646577716000024 ], [ -82.246047930999964, 28.646368933000076 ], [ -82.246265133999941, 28.646115092000059 ], [ -82.24638071399994, 28.646000422000043 ], [ -82.246547239999984, 28.645873394000034 ], [ -82.246667387999935, 28.645730101000026 ], [ -82.246764451, 28.645623639000064 ], [ -82.246833777999939, 28.645545844000026 ], [ -82.246902581999962, 28.645485994000069 ], [ -82.246981602999938, 28.645349357000043 ], [ -82.247064265999938, 28.645030353000038 ], [ -82.247179720999952, 28.644862540000076 ], [ -82.247290607999958, 28.644723350000049 ], [ -82.247350559999973, 28.644600605000051 ], [ -82.247359310999968, 28.644379846000049 ], [ -82.24749699299997, 28.643811381000035 ], [ -82.24758941999994, 28.643704928000034 ], [ -82.247732386999985, 28.643414428000028 ], [ -82.247889359999988, 28.643168869000078 ], [ -82.24806480999996, 28.64289874900004 ], [ -82.248101601999963, 28.642780133000031 ], [ -82.248101331999976, 28.642665674000057 ], [ -82.24797106799997, 28.642445168000052 ], [ -82.24693216299994, 28.64204645500007 ], [ -82.246598225999946, 28.641916251000055 ], [ -82.24650533199997, 28.641822400000024 ], [ -82.246472665999988, 28.641724350000061 ], [ -82.246449248999966, 28.641618108000046 ], [ -82.246384079999984, 28.641491503000054 ], [ -82.246272612999974, 28.641381334000073 ], [ -82.24602677699994, 28.641275497000038 ], [ -82.245780997999987, 28.641194185000074 ], [ -82.245593479999968, 28.641196851000075 ], [ -82.245410178999975, 28.641219530000058 ], [ -82.245215034999944, 28.64125941900005 ], [ -82.244977152999979, 28.641271882000069 ], [ -82.244819302999986, 28.64126219700006 ], [ -82.244702820999976, 28.64127890900005 ], [ -82.24450374099996, 28.641386875000023 ], [ -82.244197223999947, 28.641546602000062 ], [ -82.244029177999948, 28.641594005000059 ], [ -82.243859063999935, 28.641590185000041 ], [ -82.24374183599997, 28.641536421000069 ], [ -82.243605325999965, 28.641402245000052 ], [ -82.243489298999975, 28.641307332000054 ], [ -82.243445971999961, 28.641112362000058 ], [ -82.243421419999947, 28.640936167000064 ], [ -82.243403503999957, 28.640851653000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.243489582999985, 28.640338260000078 ], [ -82.243718744999967, 28.640376340000046 ], [ -82.244011579999949, 28.640443090000076 ], [ -82.244415096999944, 28.640528699000072 ], [ -82.244830500999967, 28.64062474900004 ], [ -82.245242963999942, 28.640731269000071 ], [ -82.24565544099994, 28.640843019000044 ], [ -82.246044198999982, 28.640957429000025 ], [ -82.246406255999943, 28.641066652000063 ], [ -82.247087263999958, 28.64127527200003 ], [ -82.248803671999951, 28.641818199000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.24684588599996, 28.654500571000028 ], [ -82.246838203999971, 28.653705066000043 ], [ -82.246806767999942, 28.652704311000036 ], [ -82.246799278999958, 28.651990925000064 ], [ -82.24677397499994, 28.651123599000073 ], [ -82.24677673399998, 28.65105944000004 ], [ -82.246788256999935, 28.651010661000043 ], [ -82.246805620999965, 28.650972136000064 ], [ -82.246831731999976, 28.650941294000063 ], [ -82.246869494999942, 28.650918129000047 ], [ -82.246921835999956, 28.650907769000071 ], [ -82.246971290999966, 28.650907679000056 ], [ -82.247020752999958, 28.650910156000066 ], [ -82.247192391999988, 28.650909842000033 ], [ -82.247445485999947, 28.65090938000003 ], [ -82.248774932999936, 28.650896681000063 ], [ -82.248821436999947, 28.650878632000058 ], [ -82.248859170999935, 28.65084263600005 ], [ -82.248879430999978, 28.650798973000065 ], [ -82.248885127999984, 28.650747639000031 ], [ -82.248890758999949, 28.650668077000034 ], [ -82.248874286999978, 28.649852059000068 ], [ -82.248869384999978, 28.649007792000077 ], [ -82.248837106999986, 28.647658037000042 ], [ -82.248836216999962, 28.647280807000072 ], [ -82.248878374999947, 28.646654579000028 ], [ -82.248880048999979, 28.646131074000039 ], [ -82.248873885999956, 28.645977113000072 ], [ -82.248832149999942, 28.644324563000055 ], [ -82.248812862999955, 28.642964419000066 ], [ -82.248790658999951, 28.641997104000041 ], [ -82.248803671999951, 28.641818199000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.248803671999951, 28.641818199000056 ], [ -82.248999381999965, 28.641888151000046 ], [ -82.249748753999938, 28.642122232000077 ], [ -82.251197648999948, 28.642595381000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.251273520999973, 28.647210435000034 ], [ -82.251258216999986, 28.646621810000056 ], [ -82.251200550999954, 28.643813558000033 ], [ -82.251197648999948, 28.642595381000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252795934999938, 28.636190716000044 ], [ -82.252792903999989, 28.636404737000078 ], [ -82.252747427999964, 28.636596047000069 ], [ -82.25263687599994, 28.636868900000024 ], [ -82.252803096999969, 28.636829697000053 ], [ -82.252869741999973, 28.636823424000056 ], [ -82.252921489999949, 28.636819504000073 ], [ -82.252973237999981, 28.636818720000065 ], [ -82.253041450999945, 28.636817936000057 ], [ -82.253101106999964, 28.63682013500005 ], [ -82.253186527999958, 28.636826255000074 ], [ -82.253252968999959, 28.636832411000057 ], [ -82.253340786999956, 28.636848990000033 ], [ -82.253390632999981, 28.636859361000063 ], [ -82.253449991999958, 28.636880181000038 ], [ -82.253511714999945, 28.636896809000064 ], [ -82.253568709999968, 28.636921818000076 ], [ -82.253635207999935, 28.636950996000053 ], [ -82.253701729999989, 28.636990638000043 ], [ -82.253768247999972, 28.637028187000055 ], [ -82.253841916999988, 28.63708037300006 ], [ -82.25390134099996, 28.637128401000041 ], [ -82.253944160999936, 28.637176459000045 ], [ -82.25399419699994, 28.637266363000037 ], [ -82.254010913999934, 28.637312378000047 ], [ -82.254032490999975, 28.63735629100006 ], [ -82.254056265999964, 28.637427408000065 ], [ -82.25407058199994, 28.637460869000051 ], [ -82.254084921999947, 28.637504795000041 ], [ -82.254103995999969, 28.637544526000056 ], [ -82.25412782099994, 28.637586340000041 ], [ -82.254156405999936, 28.637634425000044 ], [ -82.254184969999983, 28.637674139000069 ], [ -82.254215917999943, 28.637718034000045 ], [ -82.254249210999944, 28.637751458000025 ], [ -82.254291995999949, 28.637784866000061 ], [ -82.254345412999953, 28.637800986000059 ], [ -82.254438139999934, 28.637823704000027 ], [ -82.254578991999949, 28.637832509000077 ], [ -82.25489261599995, 28.637818396000057 ], [ -82.255187208999985, 28.637794172000042 ], [ -82.25577468299997, 28.637699219000069 ], [ -82.256294940999965, 28.637682853000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249626624999962, 28.636261475000026 ], [ -82.250136675999954, 28.636258441000052 ], [ -82.250184097999977, 28.63624788900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.243210578999935, 28.631639265000047 ], [ -82.244199890999937, 28.631673066000076 ], [ -82.245556858999976, 28.631687360000058 ], [ -82.246880614999952, 28.631701699000075 ], [ -82.247582790999957, 28.631696232000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.243243528999983, 28.63255384200005 ], [ -82.243224495999982, 28.632530853000048 ], [ -82.243205435999982, 28.632495306000067 ], [ -82.243195864999961, 28.632459743000027 ], [ -82.243195768999954, 28.632417884000063 ], [ -82.24319563399996, 28.63235928000006 ], [ -82.243202113999985, 28.632082994000029 ], [ -82.243210578999935, 28.631639265000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252605993999964, 28.632907698000054 ], [ -82.252493980999986, 28.632692328000076 ], [ -82.252451118999943, 28.632625432000054 ], [ -82.252396196999939, 28.632474839000054 ], [ -82.252345963999971, 28.632301214000051 ], [ -82.252259254999956, 28.63175510700006 ], [ -82.252244556999983, 28.631560485000023 ], [ -82.252272637999965, 28.631399274000046 ], [ -82.252308736999964, 28.63133356700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.24869565399996, 28.632569345000036 ], [ -82.248642740999969, 28.632428731000061 ], [ -82.248648902999946, 28.631853870000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.248648902999946, 28.631853870000043 ], [ -82.248069240999939, 28.631839544000059 ], [ -82.247936512999956, 28.631804420000037 ], [ -82.247794079999949, 28.631762821000052 ], [ -82.247720480999988, 28.631737840000028 ], [ -82.247582790999957, 28.631696232000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.247582790999957, 28.631696232000024 ], [ -82.247221729999978, 28.631491777000065 ], [ -82.247008457999982, 28.631337808000069 ], [ -82.246977016999949, 28.63131154000007 ], [ -82.246556464999969, 28.630796547000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.243210578999935, 28.631639265000047 ], [ -82.243211518999942, 28.631017646000032 ], [ -82.243216360999952, 28.630802583000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.243216360999952, 28.630802583000047 ], [ -82.244585128999972, 28.630795934000048 ], [ -82.245225631999972, 28.630794776000073 ], [ -82.246556464999969, 28.630796547000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.243216360999952, 28.630802583000047 ], [ -82.243214256999977, 28.629890043000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.246556464999969, 28.630796547000045 ], [ -82.245897292999985, 28.629912411000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.243214256999977, 28.629890043000046 ], [ -82.243748018999952, 28.62989536200007 ], [ -82.245154760999981, 28.629901198000027 ], [ -82.245897292999985, 28.629912411000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98028282599995, 28.57832879700004 ], [ -81.979938595999954, 28.578436253000064 ], [ -81.979513168999972, 28.57856812700004 ], [ -81.977200246999985, 28.579279141000029 ], [ -81.976902011999982, 28.579374237000025 ], [ -81.976542691999953, 28.579478838000057 ], [ -81.975982150999982, 28.579653177000068 ], [ -81.975295845999938, 28.57986237700004 ], [ -81.974720927999954, 28.580039879000026 ], [ -81.974268179999967, 28.580173 ], [ -81.973995096999943, 28.580242722000037 ], [ -81.973779504999982, 28.580293426000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.244326895999961, 28.703243957000041 ], [ -82.244343191999974, 28.703153698000051 ], [ -82.244349646999979, 28.703089652000074 ], [ -82.244362648999982, 28.703002311000034 ], [ -82.244369000999939, 28.702894606000029 ], [ -82.244377233999955, 28.701748967000071 ], [ -82.244365252999955, 28.70000261000007 ], [ -82.244368862999977, 28.699283097000034 ], [ -82.24435602899996, 28.698305149000078 ], [ -82.244358112999976, 28.697896124000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.244358112999976, 28.697896124000067 ], [ -82.243888528999946, 28.697896474000061 ], [ -82.243654159999949, 28.697896896000032 ], [ -82.243200078999962, 28.697738754000056 ], [ -82.242872512999952, 28.697718147000046 ], [ -82.242573672999981, 28.697712448000061 ], [ -82.242253459999972, 28.697684816000049 ], [ -82.242154255999935, 28.697663799000054 ], [ -82.242049016999943, 28.69763219500004 ], [ -82.241979833999949, 28.697600527000077 ], [ -82.241904613999964, 28.697555623000028 ], [ -82.241281578999974, 28.697095753000042 ], [ -82.240760896999973, 28.696717828000033 ], [ -82.240429804999962, 28.696466731000044 ], [ -82.240344483999934, 28.696384069000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.240344483999934, 28.696384069000032 ], [ -82.239370694999934, 28.695492797000043 ], [ -82.239249944999983, 28.695386755000072 ], [ -82.239044411999942, 28.695203997000078 ], [ -82.238390615999947, 28.694646745000057 ], [ -82.238349468999957, 28.694592558000068 ], [ -82.238305686999979, 28.694506727000032 ], [ -82.238282437999942, 28.694429902000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.238282437999942, 28.694429902000024 ], [ -82.238259223999989, 28.694368902000065 ], [ -82.238241075999952, 28.69428076500003 ], [ -82.238238343999967, 28.694206165000026 ], [ -82.238238194999951, 28.694140603000051 ], [ -82.238243132999969, 28.694056947000036 ], [ -82.238242963999937, 28.693982343000073 ], [ -82.238203914999985, 28.693807573000072 ], [ -82.238174907999962, 28.693653609000023 ], [ -82.238087642999972, 28.69342583100007 ], [ -82.238056907999976, 28.693340616000057 ], [ -82.238000255999964, 28.693232198000032 ], [ -82.237959002999958, 28.693130537000059 ], [ -82.237912586999983, 28.693013059000066 ], [ -82.237871374999941, 28.692929483000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.237871374999941, 28.692929483000057 ], [ -82.237750344999938, 28.692696838000074 ], [ -82.237626211999952, 28.692478478000055 ], [ -82.237499008999976, 28.692261772000052 ], [ -82.23739410099995, 28.691990364000048 ], [ -82.237203716999943, 28.691591217000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.237871374999941, 28.692929483000057 ], [ -82.237865909999982, 28.692780283000047 ], [ -82.237847712999951, 28.692669538000075 ], [ -82.237857757999961, 28.692576830000064 ], [ -82.237872977999984, 28.692504459000077 ], [ -82.237911339999982, 28.692461437000077 ], [ -82.237967683999955, 28.692434209000055 ], [ -82.238018921999981, 28.692416033000029 ], [ -82.238095801999975, 28.692400072000055 ], [ -82.238208619999966, 28.692402134000076 ], [ -82.238452154999948, 28.692385880000074 ], [ -82.238570073999938, 28.692376629000023 ], [ -82.238634124999976, 28.692356170000039 ], [ -82.238695576999987, 28.692319889000032 ], [ -82.238897776999977, 28.692165801000044 ], [ -82.239197172, 28.691909807000059 ], [ -82.239450477999981, 28.691681022000068 ], [ -82.239619385999958, 28.691545077000058 ], [ -82.239770360999955, 28.691415948000042 ], [ -82.239880426999946, 28.691336627000055 ], [ -82.24033875899994, 28.691071304000047 ], [ -82.24046939699997, 28.691019075000042 ], [ -82.240528370999982, 28.691021230000047 ], [ -82.240574576999961, 28.691046017000076 ], [ -82.240605431999938, 28.691084395000075 ], [ -82.24060812, 28.691138648000049 ], [ -82.240560698999957, 28.691703921000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.244358112999976, 28.697896124000067 ], [ -82.244353129, 28.697569107000049 ], [ -82.244352489999983, 28.697294241000066 ], [ -82.244354698999985, 28.696882850000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.244354698999985, 28.696882850000065 ], [ -82.244510687999934, 28.696878462000029 ], [ -82.244762744999946, 28.696848009000064 ], [ -82.245154110999977, 28.696806046000063 ], [ -82.245446782999977, 28.696743634000029 ], [ -82.245976803999952, 28.696565812000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.245976803999952, 28.696565812000074 ], [ -82.246490956999935, 28.69639243000006 ], [ -82.247416885999939, 28.696076641000047 ], [ -82.24758673499997, 28.696027060000063 ], [ -82.247649551999984, 28.696006415000056 ], [ -82.247700730999952, 28.695987845000047 ], [ -82.247733903999972, 28.695975917000055 ], [ -82.247805381999967, 28.695936331000041 ], [ -82.247847204999971, 28.695899302000043 ], [ -82.247875042999965, 28.695856137000078 ], [ -82.247888843999988, 28.695784260000039 ], [ -82.247872394999945, 28.695720649000066 ], [ -82.247753241999987, 28.695546368000066 ], [ -82.247278928999947, 28.694836919000068 ], [ -82.247241556999938, 28.694785663000062 ], [ -82.247211173999972, 28.694736448000072 ], [ -82.247180852999975, 28.694713922000062 ], [ -82.247143557999948, 28.694695514000045 ], [ -82.247087662999945, 28.694689456000049 ], [ -82.247041107999962, 28.694693648000055 ], [ -82.246955067999977, 28.69473896900007 ], [ -82.246907620999934, 28.694783190000066 ], [ -82.246866786999988, 28.694821248000039 ], [ -82.246569393999948, 28.695088672000054 ], [ -82.246127908999938, 28.695469269000057 ], [ -82.246067530999937, 28.695537125000044 ], [ -82.246025740999983, 28.695588526000051 ], [ -82.246007187999965, 28.695619352000051 ], [ -82.245995655999934, 28.695666591000077 ], [ -82.245984273999966, 28.695777471000042 ], [ -82.245978114999957, 28.696130587000027 ], [ -82.245976803999952, 28.696565812000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.244354698999985, 28.696882850000065 ], [ -82.244353354999987, 28.696303923000073 ], [ -82.244349372999977, 28.695059081000068 ], [ -82.244336156999964, 28.694067921000055 ], [ -82.244344612999953, 28.69300935900003 ], [ -82.244358894999948, 28.692893856000069 ], [ -82.244387692999965, 28.69276228800004 ], [ -82.244420201999958, 28.692662789000053 ], [ -82.244459957999936, 28.692550448000077 ], [ -82.244496105999986, 28.69245094300004 ], [ -82.244546766999974, 28.692335374000038 ], [ -82.244633724999971, 28.692184454000028 ], [ -82.244793192999964, 28.69192754900007 ], [ -82.245278859999985, 28.691153610000072 ], [ -82.245568827999989, 28.690700795000055 ], [ -82.246101633999956, 28.689865821000069 ], [ -82.246206789999974, 28.68972128300004 ], [ -82.246301033999941, 28.689576763000048 ], [ -82.246413436999944, 28.68941938100005 ], [ -82.246518637999941, 28.689294088000054 ], [ -82.246660161999955, 28.689146276000031 ], [ -82.246779930999935, 28.689027372000055 ], [ -82.246928790999959, 28.688905207000062 ], [ -82.247763971999973, 28.688268553000057 ], [ -82.248933226999952, 28.687384284000075 ], [ -82.249790177999955, 28.68673474700006 ], [ -82.249993512999936, 28.686577193000062 ], [ -82.25025489799998, 28.68635537800003 ], [ -82.250367365999978, 28.686230068000043 ], [ -82.250439889999939, 28.686133703000053 ], [ -82.250523219999934, 28.685992408000061 ], [ -82.250584753999988, 28.685863987000062 ], [ -82.25062808399997, 28.685729182000046 ], [ -82.250653295999939, 28.685623281000062 ], [ -82.250671184999987, 28.685498147000033 ], [ -82.25068181499995, 28.685379441000066 ], [ -82.250681524999948, 28.685257548000038 ], [ -82.250662962999968, 28.685100404000025 ], [ -82.250629575999938, 28.684827810000058 ], [ -82.250540792999971, 28.68420567700008 ], [ -82.250482174999945, 28.683754433000047 ], [ -82.250482114999954, 28.683753972000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.242620966999937, 28.676431112000046 ], [ -82.24283625399994, 28.67641276300003 ], [ -82.243313341999965, 28.676358016000052 ], [ -82.243962204999946, 28.676344017000076 ], [ -82.244427741999971, 28.676327781000055 ], [ -82.244820610999966, 28.676345035000054 ], [ -82.245085459999984, 28.676367651000078 ], [ -82.245664558999977, 28.676384564000045 ], [ -82.246028251999974, 28.676368508000053 ], [ -82.246537472999989, 28.676367581000079 ], [ -82.247230023999975, 28.676371451000023 ], [ -82.247765055999935, 28.676364699000032 ], [ -82.248790786999962, 28.676369233000059 ], [ -82.249281836999955, 28.676374746000079 ], [ -82.249500027999943, 28.676355097000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249500027999943, 28.676355097000055 ], [ -82.249761964999948, 28.676377067000033 ], [ -82.251282102999937, 28.676361473000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.24901245999996, 28.670899654000038 ], [ -82.249154765999947, 28.670905874000027 ], [ -82.249221980999948, 28.670909533000042 ], [ -82.249381976999985, 28.670893842000055 ], [ -82.249576895999951, 28.670880652000051 ], [ -82.249745698999959, 28.670898304000048 ], [ -82.250112331999958, 28.670902759000057 ], [ -82.250572018999947, 28.67088394600006 ], [ -82.251031729999966, 28.670875397000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.24901245999996, 28.670899654000038 ], [ -82.249014723999949, 28.669764885000063 ], [ -82.249022509999975, 28.669120246000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249022509999975, 28.669120246000034 ], [ -82.249021402999972, 28.668652176000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249021402999972, 28.668652176000023 ], [ -82.249759282999946, 28.668650817000071 ], [ -82.250243492999971, 28.668667027000026 ], [ -82.251819286999989, 28.668644948000065 ], [ -82.251822724999954, 28.66813581200006 ], [ -82.251821983999946, 28.66782581800004 ], [ -82.251779877, 28.667737620000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249021402999972, 28.668652176000023 ], [ -82.249019286999953, 28.667757096000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249019286999953, 28.667757096000059 ], [ -82.249398721999967, 28.667766662000076 ], [ -82.249582604999944, 28.667764270000077 ], [ -82.249738537999974, 28.667755771000031 ], [ -82.25021339999995, 28.667761053000049 ], [ -82.251035072999969, 28.667761585000051 ], [ -82.25132139699997, 28.66776926600005 ], [ -82.25139821099998, 28.667769124000074 ], [ -82.251491317999978, 28.667768951000028 ], [ -82.251600727999971, 28.667772853000031 ], [ -82.251663574999952, 28.667772737000064 ], [ -82.251703154999973, 28.667776769000056 ], [ -82.251740368999947, 28.66776438100004 ], [ -82.251779877, 28.667737620000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.25229339699996, 28.667363030000047 ], [ -82.252292176999958, 28.666853901000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.251779877, 28.667737620000025 ], [ -82.251828663999959, 28.66769852300007 ], [ -82.251869068999952, 28.667653963000078 ], [ -82.251910832999954, 28.667596130000049 ], [ -82.251962154999944, 28.667541028000073 ], [ -82.252020701999982, 28.66749210100005 ], [ -82.252084092999951, 28.667441430000054 ], [ -82.252158480999981, 28.667400232000034 ], [ -82.252232905999961, 28.667375459000027 ], [ -82.25229339699996, 28.667363030000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.25229339699996, 28.667363030000047 ], [ -82.252523756999949, 28.667329752000057 ], [ -82.253240479999988, 28.66724629600003 ], [ -82.253794329999948, 28.667189829000051 ], [ -82.253875773999937, 28.667179412000053 ], [ -82.253919995999979, 28.667177277000064 ], [ -82.253964230999941, 28.667181299000049 ], [ -82.254017815999987, 28.667201728000066 ], [ -82.254055112999936, 28.667224241000042 ], [ -82.254083113999968, 28.667252929000028 ], [ -82.254099520999944, 28.667300117000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.259496559999945, 28.66775837800003 ], [ -82.259610007999981, 28.667657141000063 ], [ -82.259827128999973, 28.66739207300003 ], [ -82.259858035999969, 28.667354733000025 ], [ -82.259916343999976, 28.667284970000026 ], [ -82.259981300999982, 28.667196569000055 ], [ -82.260020905999966, 28.667120789000023 ], [ -82.260048894999954, 28.667043687000046 ], [ -82.260068369999942, 28.666941747000067 ], [ -82.260084496, 28.666797540000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.260097164999934, 28.66589536500004 ], [ -82.260106311999948, 28.666330257000027 ], [ -82.260098692999975, 28.666662579000047 ], [ -82.260084496, 28.666797540000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252292176999958, 28.666853901000025 ], [ -82.252291935999949, 28.666753306000032 ], [ -82.25229182299995, 28.666706088000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249019286999953, 28.667757096000059 ], [ -82.249014852999949, 28.666866126000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249014852999949, 28.666866126000059 ], [ -82.249759693999977, 28.666860648000068 ], [ -82.250460321999981, 28.666861407000056 ], [ -82.251410006999947, 28.666859647000024 ], [ -82.251989596999977, 28.666860623000048 ], [ -82.252172567999935, 28.666857531000062 ], [ -82.252292176999958, 28.666853901000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249014852999949, 28.666866126000059 ], [ -82.249019918999977, 28.666055203000042 ], [ -82.249019505999968, 28.665880702000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249019505999968, 28.665880702000038 ], [ -82.249019009999984, 28.664685888000065 ], [ -82.249018024999941, 28.664269142000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.242541425999946, 28.66387749200004 ], [ -82.243521899999962, 28.66386546800004 ], [ -82.244211452999934, 28.663866793000068 ], [ -82.244260933999954, 28.663874402000033 ], [ -82.24431624999994, 28.663889699000038 ], [ -82.244362871999954, 28.66392041000006 ], [ -82.244392068999957, 28.663963982000041 ], [ -82.244403806999969, 28.664007586000025 ], [ -82.24440120099996, 28.664138466000054 ], [ -82.244407174999935, 28.664205175000063 ], [ -82.244427619999954, 28.664238500000067 ], [ -82.24445678099994, 28.664266674000032 ], [ -82.244494643999985, 28.664284569000074 ], [ -82.244558695999956, 28.664302418000034 ], [ -82.244643088999965, 28.664309963000051 ], [ -82.245821448999948, 28.664312963000043 ], [ -82.246575002999975, 28.664309027000058 ], [ -82.246958143999962, 28.664291391000063 ], [ -82.24779138599996, 28.664273445000049 ], [ -82.247970600999963, 28.664269012000034 ], [ -82.248117205999961, 28.664254372000073 ], [ -82.24826851499995, 28.664260253000066 ], [ -82.248552508999978, 28.664271863000067 ], [ -82.249018024999941, 28.664269142000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249021635999952, 28.662975060000065 ], [ -82.249021636999942, 28.662974115000054 ], [ -82.249023080999962, 28.662346549000063 ], [ -82.24903229399996, 28.661320057000069 ], [ -82.24903212199996, 28.660016435000045 ], [ -82.249023222999938, 28.658712831000059 ], [ -82.249018728999943, 28.656811295000068 ], [ -82.249020746999975, 28.656434061000027 ], [ -82.24902555999995, 28.656008065000037 ], [ -82.249016600999937, 28.655910567000035 ], [ -82.248998879999988, 28.655797687000074 ], [ -82.248975361999953, 28.655695084000058 ], [ -82.248934335999934, 28.655569416000048 ], [ -82.248893380999959, 28.655474542000036 ], [ -82.24884074199997, 28.655359160000046 ], [ -82.248773593999942, 28.655259201000035 ], [ -82.248703534999947, 28.655159249000064 ], [ -82.248595638999973, 28.655051667000066 ], [ -82.24854023599994, 28.654997879000064 ], [ -82.248464437999985, 28.654931298000065 ], [ -82.248379924999938, 28.654869864000034 ], [ -82.248277926999947, 28.65479563100007 ], [ -82.248161412999934, 28.65473425600004 ], [ -82.24803615899998, 28.654667765000056 ], [ -82.247910940999986, 28.654616671000042 ], [ -82.247794480999971, 28.654578392000076 ], [ -82.247657673999981, 28.65454784700006 ], [ -82.247529613999973, 28.654524986000069 ], [ -82.247395753999967, 28.654509833000077 ], [ -82.247133892999955, 28.654497480000032 ], [ -82.24684588599996, 28.654500571000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.24684588599996, 28.654500571000028 ], [ -82.245801477999976, 28.654505036000046 ], [ -82.244552744999964, 28.654530713000042 ], [ -82.241922853999938, 28.654558532000067 ], [ -82.239895137999952, 28.654569837000054 ], [ -82.239132941999969, 28.654581449000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.239201088999948, 28.657688982000025 ], [ -82.239155702999938, 28.656919206000055 ], [ -82.239142026999957, 28.656021065000061 ], [ -82.239132941999969, 28.654581449000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.237337840999942, 28.654537773000072 ], [ -82.237081902999989, 28.654571583000063 ], [ -82.236991750999948, 28.654587136000032 ], [ -82.236889979999944, 28.654610411000078 ], [ -82.236709670999971, 28.654638953000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.236515600999951, 28.653720597000074 ], [ -82.236536504999947, 28.653961783000057 ], [ -82.236562947999971, 28.654077215000029 ], [ -82.236671435999938, 28.654454255000076 ], [ -82.236709670999971, 28.654638953000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.236709670999971, 28.654638953000074 ], [ -82.236576271, 28.654662616000053 ], [ -82.236506151999947, 28.654695765000042 ], [ -82.236410157999956, 28.65470106500004 ], [ -82.236322892999965, 28.654706350000026 ], [ -82.236247211999967, 28.654688519000047 ], [ -82.236183128999983, 28.654652703000068 ], [ -82.235665277999942, 28.654651039000044 ], [ -82.235406356999988, 28.654651489000059 ], [ -82.235153247999961, 28.654649363000033 ], [ -82.234818673999939, 28.654644810000036 ], [ -82.234481202999973, 28.654645395000045 ], [ -82.233998270999962, 28.654646230000026 ], [ -82.233535700999937, 28.654647028000056 ], [ -82.232607660999975, 28.654651192000074 ], [ -82.232118896999964, 28.654646898000067 ], [ -82.231763959999967, 28.654642375000037 ], [ -82.231455575999973, 28.654640335000067 ], [ -82.231100647999938, 28.654640941000025 ], [ -82.230620613999974, 28.654636627000059 ], [ -82.230123128999935, 28.654634907000059 ], [ -82.229637285999956, 28.654635731000042 ], [ -82.228991451999946, 28.654644523000059 ], [ -82.228622039999948, 28.654673375000073 ], [ -82.227915277999955, 28.65475925100003 ], [ -82.227615699999944, 28.654793114000029 ], [ -82.227554593999969, 28.654788085000064 ], [ -82.227513819999956, 28.654767623000055 ], [ -82.227467210999976, 28.654739474000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.236515600999951, 28.653720597000074 ], [ -82.236494998999945, 28.653615420000051 ], [ -82.236486041999967, 28.653512788000057 ], [ -82.236485695999988, 28.653358817000026 ], [ -82.236485269999946, 28.653168919000052 ], [ -82.236468019999961, 28.650666915000045 ], [ -82.236466738, 28.648798731000056 ], [ -82.236459785999955, 28.648293203000037 ], [ -82.236451958999965, 28.647397616000035 ], [ -82.236442998999962, 28.645996492000052 ], [ -82.236436018999939, 28.645478132000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.236436018999939, 28.645478132000051 ], [ -82.237308706999954, 28.645474040000067 ], [ -82.238645390999977, 28.645474258000036 ], [ -82.239161156999955, 28.645475403000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.239191977999951, 28.646622949000061 ], [ -82.239189566999983, 28.645560550000027 ], [ -82.239161156999955, 28.645475403000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.243403503999957, 28.640851653000027 ], [ -82.243421497999975, 28.640771426000072 ], [ -82.243489582999985, 28.640338260000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.245897292999985, 28.629912411000078 ], [ -82.245485661999965, 28.629381537000029 ], [ -82.245193006999955, 28.629005328000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.243219370999952, 28.629021443000056 ], [ -82.245193006999955, 28.629005328000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.243214256999977, 28.629890043000046 ], [ -82.243219370999952, 28.629021443000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.240447945999961, 28.629006133000075 ], [ -82.241315345999965, 28.629009962000055 ], [ -82.242356168999947, 28.62898930800003 ], [ -82.242877735999969, 28.629005311000071 ], [ -82.243219370999952, 28.629021443000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.248648902999946, 28.631853870000043 ], [ -82.248651283999948, 28.630851324000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.245193006999955, 28.629005328000062 ], [ -82.245418364999978, 28.629004920000057 ], [ -82.24603514599994, 28.629007988000069 ], [ -82.246184631999938, 28.629024462000075 ], [ -82.246296192999978, 28.629053560000045 ], [ -82.246417257999951, 28.629088921000061 ], [ -82.246526506999942, 28.629143140000053 ], [ -82.246593034999989, 28.629189065000048 ], [ -82.246716657999968, 28.629303954000079 ], [ -82.246821270999988, 28.629404227000066 ], [ -82.246918789999938, 28.629514978000032 ], [ -82.24737575599994, 28.630154599000036 ], [ -82.247718416999987, 28.630606059000058 ], [ -82.247799268999984, 28.630689631000052 ], [ -82.247872930999961, 28.630741822000061 ], [ -82.247927569999945, 28.630775209000035 ], [ -82.247994067999969, 28.630806483000072 ], [ -82.248072409999963, 28.630831454000031 ], [ -82.248126992999971, 28.63084212800004 ], [ -82.248200554999983, 28.630850057000032 ], [ -82.248651283999948, 28.630851324000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.248651283999948, 28.630851324000048 ], [ -82.249052206999977, 28.630856866000045 ], [ -82.249740193999969, 28.630872345000057 ], [ -82.250404424999942, 28.63087321200004 ], [ -82.250888354999972, 28.630870225000024 ], [ -82.251557344999981, 28.630877356000042 ], [ -82.251652247999971, 28.630883458000028 ], [ -82.251742444999934, 28.630904221000037 ], [ -82.25185404299998, 28.630947966000065 ], [ -82.252058300999977, 28.631050143000039 ], [ -82.25217717299995, 28.631158758000026 ], [ -82.252308736999964, 28.63133356700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252605993999964, 28.632907698000054 ], [ -82.253191322999953, 28.632647074000033 ], [ -82.253608405999955, 28.63246420400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.253512871999988, 28.635651087000042 ], [ -82.25386212899997, 28.634389278000071 ], [ -82.253944347999948, 28.634052152000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252823246999981, 28.635460737000074 ], [ -82.253512871999988, 28.635651087000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256294940999965, 28.637682853000058 ], [ -82.256294733999937, 28.637597826000047 ], [ -82.256289803999948, 28.637094210000043 ], [ -82.256292923, 28.636852203000046 ], [ -82.25628360099995, 28.63637188000007 ], [ -82.256283274999987, 28.636237798000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.253512871999988, 28.635651087000042 ], [ -82.25398759899997, 28.635758117000023 ], [ -82.254655207999974, 28.635917109000047 ], [ -82.255378419999943, 28.636075993000077 ], [ -82.256283274999987, 28.636237798000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256283274999987, 28.636237798000025 ], [ -82.256274923999968, 28.63585192000005 ], [ -82.25627031199997, 28.635479115000066 ], [ -82.256284621999953, 28.635266519000027 ], [ -82.256269636999946, 28.635201142000028 ], [ -82.25623244999997, 28.635152158000039 ], [ -82.256187887999943, 28.635119539000073 ], [ -82.256121080999947, 28.63508369300007 ], [ -82.256072827999958, 28.635057621000044 ], [ -82.256028322999953, 28.635047894000024 ], [ -82.255957846999934, 28.63502840600006 ], [ -82.255642590999969, 28.634953784000061 ], [ -82.254848980999952, 28.634804845000076 ], [ -82.25440761699997, 28.634697756000037 ], [ -82.254320655999948, 28.634666785000036 ], [ -82.25426601099997, 28.634633401000031 ], [ -82.254220861999954, 28.634602090000044 ], [ -82.254166187999942, 28.634556146000079 ], [ -82.254116222999983, 28.634495543000071 ], [ -82.254094760999976, 28.634449538000069 ], [ -82.253944347999948, 28.634052152000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.251197648999948, 28.642595381000035 ], [ -82.251846875999945, 28.642802657000061 ], [ -82.252732607999974, 28.643083070000046 ], [ -82.253480164999985, 28.643326127000023 ], [ -82.254262942999958, 28.643569932000048 ], [ -82.255946747999985, 28.644114443000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.253146252999954, 28.645273382000028 ], [ -82.255043226999987, 28.645034015000078 ], [ -82.255940582999983, 28.644924608000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256158057999983, 28.646146905000023 ], [ -82.256131239999945, 28.645975194000073 ], [ -82.25601405499998, 28.645282549000058 ], [ -82.255940582999983, 28.644924608000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.253122871999949, 28.646531066000023 ], [ -82.253945802999965, 28.646425270000066 ], [ -82.254990138999972, 28.646280112000056 ], [ -82.256158057999983, 28.646146905000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256091848999972, 28.647419810000031 ], [ -82.256058024999959, 28.647081591000074 ], [ -82.256067677999965, 28.646979680000072 ], [ -82.25608068799994, 28.646901053000079 ], [ -82.256123340999977, 28.64679908100004 ], [ -82.256185569999957, 28.646603912000046 ], [ -82.256201758999964, 28.646475789000078 ], [ -82.25620149699995, 28.646368075000055 ], [ -82.256158057999983, 28.646146905000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.255480458999955, 28.652239591000068 ], [ -82.255137996999963, 28.651467020000041 ], [ -82.25505574999994, 28.651301819000025 ], [ -82.255018538999934, 28.651199414000075 ], [ -82.254991855999947, 28.651083017000076 ], [ -82.254991590999964, 28.650973555000064 ], [ -82.255001835999963, 28.650843114000054 ], [ -82.255174493999959, 28.650183693000031 ], [ -82.255281714999967, 28.649759618000076 ], [ -82.255318434999936, 28.649582799000029 ], [ -82.255396144999963, 28.649042082000051 ], [ -82.25542564899996, 28.648984042000052 ], [ -82.255472421999968, 28.648923161000027 ], [ -82.255646253999942, 28.648750490000054 ], [ -82.25573319199998, 28.648673470000062 ], [ -82.255820724999978, 28.648569666000071 ], [ -82.255876608999984, 28.648479313000053 ], [ -82.255932428999984, 28.648362758000076 ], [ -82.255975097999965, 28.648266609000075 ], [ -82.25601116699994, 28.648170472000061 ], [ -82.256047199999955, 28.648059778000061 ], [ -82.256073282999978, 28.647928723000064 ], [ -82.256089563999979, 28.647838446000037 ], [ -82.256095917999971, 28.647736542000075 ], [ -82.256098947999988, 28.647625910000045 ], [ -82.256091848999972, 28.647419810000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.25311809699997, 28.65251418500003 ], [ -82.253173575999938, 28.652528055000062 ], [ -82.253239586999939, 28.652530261000038 ], [ -82.254102671999988, 28.65241452600003 ], [ -82.255253448999952, 28.652260979000062 ], [ -82.255480458999955, 28.652239591000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.25306270599998, 28.647806204000062 ], [ -82.253071653999939, 28.647799656000075 ], [ -82.253146319999985, 28.647774690000062 ], [ -82.253231426999946, 28.647759392000069 ], [ -82.253571264999948, 28.647726734000059 ], [ -82.254471947999946, 28.64761733000006 ], [ -82.255530963999945, 28.647478510000042 ], [ -82.256091848999972, 28.647419810000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.25311809699997, 28.65251418500003 ], [ -82.253070494999974, 28.652481668000064 ], [ -82.253046639, 28.652442121000036 ], [ -82.253030381999963, 28.652269808000028 ], [ -82.253032446999953, 28.652029921000064 ], [ -82.253032110999982, 28.651890184000024 ], [ -82.253034337999964, 28.651717836000046 ], [ -82.253033923999965, 28.651545494000061 ], [ -82.253024342999936, 28.650853810000058 ], [ -82.253028024999935, 28.65018771900003 ], [ -82.253014663999977, 28.649020933000031 ], [ -82.253002241, 28.648245410000072 ], [ -82.253017298999964, 28.647919328000057 ], [ -82.253022467999983, 28.647872737000057 ], [ -82.253038224999955, 28.647837774000038 ], [ -82.25306270599998, 28.647806204000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256396127999949, 28.653120538000053 ], [ -82.256298369999968, 28.653092776000051 ], [ -82.256216459999962, 28.653067311000029 ], [ -82.256126622999943, 28.653039534000072 ], [ -82.256042037999975, 28.653000102000078 ], [ -82.255970661999982, 28.652962972000068 ], [ -82.255899266999961, 28.652918857000031 ], [ -82.255833102999986, 28.652853772000071 ], [ -82.255772228999945, 28.652793334000023 ], [ -82.255721894999965, 28.652723560000027 ], [ -82.255679504999989, 28.652663087000064 ], [ -82.255480458999955, 28.652239591000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252983867999944, 28.653790708000031 ], [ -82.253023488999986, 28.653797621000024 ], [ -82.253131700999973, 28.653781116000062 ], [ -82.25371238799994, 28.653707831000077 ], [ -82.254712751999989, 28.653582520000043 ], [ -82.255018938999967, 28.653547009000079 ], [ -82.255895241999951, 28.653435896000076 ], [ -82.256109052999989, 28.653414530000077 ], [ -82.25618824299994, 28.653407393000066 ], [ -82.256256862999976, 28.653395619000037 ], [ -82.256320165999966, 28.65336988100006 ], [ -82.256359719999978, 28.653348845000039 ], [ -82.256381077999947, 28.653315345000067 ], [ -82.256391219999955, 28.653274258000067 ], [ -82.256396127999949, 28.653120538000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256396127999949, 28.653120538000053 ], [ -82.256797706999976, 28.653226909000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.257874958999935, 28.651077559000043 ], [ -82.257816482999942, 28.650916972000061 ], [ -82.257797636999953, 28.650767954000059 ], [ -82.257775881999976, 28.650509480000039 ], [ -82.257762424999953, 28.65040470200006 ], [ -82.257743796999989, 28.650344185000051 ], [ -82.257709398999964, 28.650313974000028 ], [ -82.257656578999956, 28.650307087000044 ], [ -82.257519289999948, 28.650307348000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256797706999976, 28.653226909000068 ], [ -82.256805629999974, 28.652143927000054 ], [ -82.256795404999934, 28.651198387000079 ], [ -82.256778258999987, 28.650662757000077 ], [ -82.256788688999961, 28.650609172000031 ], [ -82.256801782999958, 28.650564897000038 ], [ -82.256829296999967, 28.650521311000034 ], [ -82.256854399999952, 28.650487941000051 ], [ -82.25689654599995, 28.650448269000037 ], [ -82.256943978999971, 28.650410915000066 ], [ -82.256994084999974, 28.650387531000035 ], [ -82.25704419799996, 28.650366475000055 ], [ -82.257123368999942, 28.650352351000038 ], [ -82.257271161999938, 28.650328780000052 ], [ -82.257519289999948, 28.650307348000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.27024365699998, 28.659806848000073 ], [ -82.270146723999972, 28.659332516000063 ], [ -82.270120133999967, 28.659259790000078 ], [ -82.270083663999969, 28.659195815000032 ], [ -82.270030587999941, 28.659091119000038 ], [ -82.269961046999981, 28.659001010000054 ], [ -82.269888196999943, 28.658907996000039 ], [ -82.269673246999957, 28.658745397000075 ], [ -82.269389047999937, 28.658606226000074 ], [ -82.269015726999953, 28.658464318000028 ], [ -82.268932122999956, 28.658036538000033 ], [ -82.268862463999938, 28.657899850000035 ], [ -82.268809471999987, 28.657827175000079 ], [ -82.268749921999984, 28.657771980000064 ], [ -82.268732142999966, 28.657618006000064 ], [ -82.268720461999976, 28.657090818000029 ], [ -82.268726706999985, 28.656434038000043 ], [ -82.268719240999985, 28.655576996000036 ], [ -82.26872132699998, 28.654324010000039 ], [ -82.268694257999982, 28.653026833000069 ], [ -82.268688162999979, 28.652707777000046 ], [ -82.268682793999972, 28.65267285300007 ], [ -82.268669136999961, 28.652634982000052 ], [ -82.26865352599998, 28.652584411000078 ], [ -82.268641488999947, 28.652558309000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.271177157999944, 28.659878382000045 ], [ -82.271205559999942, 28.659935786000062 ], [ -82.271204696999973, 28.660189396000078 ], [ -82.271506434999935, 28.660328616000072 ], [ -82.271850980999943, 28.660471384000061 ], [ -82.271940447999953, 28.660541816000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.27024365699998, 28.659806848000073 ], [ -82.270286638999949, 28.659835874000066 ], [ -82.270438506999938, 28.659853038000051 ], [ -82.270563941999967, 28.659858610000072 ], [ -82.270712465999964, 28.659858313000029 ], [ -82.271052465999958, 28.659875101000068 ], [ -82.271177157999944, 28.659878382000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256561354999974, 28.654511416000048 ], [ -82.256560193999974, 28.654356906000032 ], [ -82.256562675999987, 28.654291690000036 ], [ -82.256586261999985, 28.654219449000038 ], [ -82.256628346999946, 28.65415415800004 ], [ -82.256733708999946, 28.654051484000036 ], [ -82.256781091999983, 28.653993169000046 ], [ -82.256799466999951, 28.653948884000044 ], [ -82.256804576999969, 28.653879006000068 ], [ -82.256797706999976, 28.653226909000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256797706999976, 28.653226909000068 ], [ -82.257521490999977, 28.653369930000054 ], [ -82.257604835999985, 28.653391534000036 ], [ -82.257713789999968, 28.65340879300004 ], [ -82.257802890999983, 28.65340571400003 ], [ -82.257885385999941, 28.653399733000072 ], [ -82.25800417499994, 28.653390774000059 ], [ -82.258165862999988, 28.653378821000047 ], [ -82.258301134999954, 28.653361096000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.258274721999953, 28.652010348000033 ], [ -82.258406511999965, 28.651919849000024 ], [ -82.258541615999945, 28.651835166000069 ], [ -82.258739239999954, 28.651674673000059 ], [ -82.259078503999945, 28.651403282000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.258301134999954, 28.653361096000026 ], [ -82.258295722999947, 28.65249939000006 ], [ -82.258274721999953, 28.652010348000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.259078503999945, 28.651403282000047 ], [ -82.259127834999958, 28.651333319000059 ], [ -82.25919373399995, 28.651289525000038 ], [ -82.25973143899995, 28.651192425000033 ], [ -82.259870036999985, 28.65118633700007 ], [ -82.25999541799996, 28.651174452000078 ], [ -82.260077988999967, 28.651200495000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.260010136999938, 28.653127841000071 ], [ -82.260029887999963, 28.65310742500003 ], [ -82.260056212999984, 28.653075351000041 ], [ -82.260075920999952, 28.653037468000036 ], [ -82.260089020999942, 28.652996686000051 ], [ -82.260092184999962, 28.652941367000039 ], [ -82.260097017999954, 28.652225201000078 ], [ -82.260108113999934, 28.651372197000057 ], [ -82.260111249999966, 28.651305233000073 ], [ -82.260104475999981, 28.651235378000024 ], [ -82.260077988999967, 28.651200495000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.259208444999956, 28.653245826000045 ], [ -82.259736388999954, 28.653201147000061 ], [ -82.259835362999979, 28.653186400000038 ], [ -82.25989143299995, 28.653171737000037 ], [ -82.25993760199998, 28.653157093000061 ], [ -82.259977183, 28.653148283000064 ], [ -82.260010136999938, 28.653127841000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.259208444999956, 28.653245826000045 ], [ -82.259207199999935, 28.652739280000048 ], [ -82.259204271999977, 28.651548601000059 ], [ -82.259164416999965, 28.651446786000065 ], [ -82.259078503999945, 28.651403282000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.258301134999954, 28.653361096000026 ], [ -82.258703666999963, 28.65331666000003 ], [ -82.259030305999943, 28.653278190000037 ], [ -82.259208444999956, 28.653245826000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.184655333999956, 28.650583870000048 ], [ -82.184626887999968, 28.650494491000075 ], [ -82.184603231999972, 28.650446695000028 ], [ -82.184593735999954, 28.650409277000051 ], [ -82.184593433999964, 28.650236679000045 ], [ -82.184605103999957, 28.650170119000052 ], [ -82.184635454999977, 28.650001638000049 ], [ -82.184644644999935, 28.649864379000064 ], [ -82.184611856999936, 28.649617761000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185725582999964, 28.650578248000045 ], [ -82.186194732999979, 28.650594240000032 ], [ -82.186687346999975, 28.65054781300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185725582999964, 28.650578248000045 ], [ -82.185705784999982, 28.65004592400004 ], [ -82.185691066999937, 28.649719465000032 ], [ -82.185707057999934, 28.649430393000046 ], [ -82.185701446999985, 28.648920924000038 ], [ -82.185665829999948, 28.648775408000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.224002427999949, 28.640040633000069 ], [ -82.229713415999981, 28.640046275000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.229556292999973, 28.642479607000041 ], [ -82.229588598999953, 28.642052298000067 ], [ -82.22961632199997, 28.641700394000054 ], [ -82.229694531999939, 28.640548351000064 ], [ -82.229713415999981, 28.640046275000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.236411109999949, 28.640059172000065 ], [ -82.237056353999947, 28.640055959000051 ], [ -82.240363033999984, 28.640069874000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.230198308999945, 28.640046320000067 ], [ -82.231698143999949, 28.640046462000043 ], [ -82.232196853999938, 28.640045609000026 ], [ -82.233934072999944, 28.640046790000042 ], [ -82.235607479999942, 28.640050146000078 ], [ -82.236335476999955, 28.640059304000033 ], [ -82.236411109999949, 28.640059172000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.236436018999939, 28.645478132000051 ], [ -82.236427225999989, 28.644151426000064 ], [ -82.236433383999952, 28.643668513000023 ], [ -82.236430046999942, 28.643234808000045 ], [ -82.236424327999941, 28.641737688000035 ], [ -82.236415109999939, 28.64078896500007 ], [ -82.236411109999949, 28.640059172000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.219858463999969, 28.625259339000024 ], [ -82.220296379999979, 28.625264667000067 ], [ -82.220661864999954, 28.625259908000032 ], [ -82.221243657999935, 28.625257303000069 ], [ -82.221715342999971, 28.625254559000041 ], [ -82.222175896999943, 28.625273530000072 ], [ -82.222484393999935, 28.625273024000023 ], [ -82.222821958999987, 28.625274442000034 ], [ -82.223181835999981, 28.625256097000033 ], [ -82.223559589, 28.625233777000062 ], [ -82.223783115999936, 28.625223546000029 ], [ -82.223977633999937, 28.625237033000076 ], [ -82.22411404099995, 28.625256531000048 ], [ -82.224265962999937, 28.62526736500007 ], [ -82.22441140799998, 28.625277737000033 ], [ -82.224587998999937, 28.625271527000052 ], [ -82.225356961999978, 28.625248553000063 ], [ -82.225766968999949, 28.625273481000079 ], [ -82.226108859999954, 28.62529384000004 ], [ -82.226494909999985, 28.625284133000036 ], [ -82.226856673999976, 28.625263044000064 ], [ -82.227139904999945, 28.625256413000045 ], [ -82.227384099999938, 28.625264622000032 ], [ -82.227650659999938, 28.625282197000047 ], [ -82.227836184999944, 28.625268786000049 ], [ -82.228111123999952, 28.625259726000024 ], [ -82.228261731999964, 28.625259453000069 ], [ -82.228444540999988, 28.625271458000043 ], [ -82.228571502999955, 28.625266318000058 ], [ -82.228801738999948, 28.625272086000052 ], [ -82.228976171999989, 28.625281640000026 ], [ -82.229263579999952, 28.62527007500006 ], [ -82.229745321999985, 28.625280635000024 ], [ -82.229965433999951, 28.625278734000062 ], [ -82.230247540999983, 28.625270397000065 ], [ -82.230433826999956, 28.625267632000032 ], [ -82.230652922, 28.625275148000071 ], [ -82.230863058999944, 28.625274791000038 ], [ -82.231843769999955, 28.625269735000074 ], [ -82.232200792999947, 28.625256770000078 ], [ -82.233272925999984, 28.625272637000023 ], [ -82.234283341999969, 28.625259061000065 ], [ -82.234822081999937, 28.625252211000031 ], [ -82.235951022999984, 28.625258141000074 ], [ -82.236497938999946, 28.625253516000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174144029, 28.668946958000049 ], [ -82.17414942299996, 28.667235945000073 ], [ -82.174160058999973, 28.665675523000061 ], [ -82.17417265499995, 28.664629436000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.173577215999956, 28.668943605000038 ], [ -82.174144029, 28.668946958000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.173592620999955, 28.669867891000024 ], [ -82.173576082999944, 28.669659790000026 ], [ -82.173577215999956, 28.668943605000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145615449, 28.648641402000067 ], [ -82.146649554999954, 28.648637628000074 ], [ -82.146987076999949, 28.648637263000069 ], [ -82.147221545999969, 28.648653055000068 ], [ -82.147563113999979, 28.648656248000066 ], [ -82.148187620999977, 28.648648435000041 ], [ -82.148620133999941, 28.648647961000052 ], [ -82.149020357999973, 28.648681397000075 ], [ -82.149467016999949, 28.648679121000043 ], [ -82.150156182999979, 28.648660531000075 ], [ -82.151348624999969, 28.648659204000069 ], [ -82.15173548599995, 28.648664800000063 ], [ -82.152635495999959, 28.648672003000058 ], [ -82.153153787999941, 28.648682369000028 ], [ -82.153396008999948, 28.648671163000074 ], [ -82.153537485999948, 28.648671003000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145585743999959, 28.65230002900006 ], [ -82.145576719999951, 28.65205803200007 ], [ -82.145613498999978, 28.65172399800008 ], [ -82.145618099999979, 28.650560492000068 ], [ -82.145596050999984, 28.650325078000037 ], [ -82.145582202999947, 28.649287524000044 ], [ -82.14559709699995, 28.648835796000071 ], [ -82.145609369999988, 28.648734489000049 ], [ -82.145615449, 28.648641402000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153324353999949, 28.652352815000029 ], [ -82.153518715999951, 28.652065690000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145585743999959, 28.65230002900006 ], [ -82.146582594999984, 28.652292384000077 ], [ -82.147993122999935, 28.652307934000078 ], [ -82.148479785999939, 28.652326674000051 ], [ -82.149371630999951, 28.652330949000032 ], [ -82.149723218999952, 28.652342826000051 ], [ -82.150148286999979, 28.652345860000025 ], [ -82.150501837999968, 28.652341963000026 ], [ -82.150819613999943, 28.652322337000044 ], [ -82.151695571999937, 28.652328367000052 ], [ -82.152827762999948, 28.65233760700005 ], [ -82.153324353999949, 28.652352815000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141436328999987, 28.652239598000051 ], [ -82.142216945999962, 28.652247541000065 ], [ -82.142689712999982, 28.652271573000064 ], [ -82.143134644999975, 28.652276359000041 ], [ -82.143464366999979, 28.652276011000026 ], [ -82.144471437999982, 28.652297719000046 ], [ -82.14485283199997, 28.652318337000054 ], [ -82.145188514999973, 28.652319728000066 ], [ -82.145460688999947, 28.652305125000055 ], [ -82.145585743999959, 28.65230002900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137257812999962, 28.65586158800005 ], [ -82.137259643999982, 28.654609830000027 ], [ -82.137259401999984, 28.654424490000054 ], [ -82.137258819999943, 28.65397749300007 ], [ -82.137264164999976, 28.653336972000034 ], [ -82.137262329999942, 28.651927842000077 ], [ -82.137311910999983, 28.651088580000078 ], [ -82.13733317699996, 28.650336295000045 ], [ -82.137337115999969, 28.64941299000003 ], [ -82.137348196999937, 28.648659361000057 ], [ -82.137348434999979, 28.648614924000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149787893999985, 28.645009901000037 ], [ -82.149786826999957, 28.644258868000065 ], [ -82.149799794999979, 28.643394732000047 ], [ -82.149794334999967, 28.643300751000027 ], [ -82.149783600999967, 28.643244369000058 ], [ -82.149755127999981, 28.643200540000066 ], [ -82.149708915999952, 28.643169262000072 ], [ -82.149648523999986, 28.643156796000028 ], [ -82.148906297999986, 28.643160747000024 ], [ -82.14879620499994, 28.643160868000052 ], [ -82.148760682999978, 28.64315464200007 ], [ -82.148725155999955, 28.643145282000035 ], [ -82.14868962099996, 28.643129655000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145248419999973, 28.643175996000025 ], [ -82.146541108999941, 28.643172098000036 ], [ -82.148555467999984, 28.643192462000059 ], [ -82.148615105999966, 28.643174853000062 ], [ -82.148652014999982, 28.64315726600006 ], [ -82.14868962099996, 28.643129655000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14868962099996, 28.643129655000052 ], [ -82.148660450999955, 28.643094599000051 ], [ -82.148643343999936, 28.64305200900003 ], [ -82.147956473999955, 28.641506348000064 ], [ -82.147383690999959, 28.640266333000056 ], [ -82.147358040999961, 28.640208715000028 ], [ -82.147338095999942, 28.640166128000033 ], [ -82.147320954999941, 28.640098476000048 ], [ -82.147320866999962, 28.640035817000069 ], [ -82.147334955999952, 28.639953093000031 ], [ -82.14744243399997, 28.639609606000079 ], [ -82.147589516999972, 28.639145773000052 ], [ -82.14781293599998, 28.638418689000048 ], [ -82.148089568999978, 28.637565079000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.150236351999979, 28.657798175000039 ], [ -82.150412656999947, 28.657797371000072 ], [ -82.150605342999938, 28.657797742000071 ], [ -82.151014062999934, 28.657799472000079 ], [ -82.152070975999948, 28.657800078000037 ], [ -82.153525824999974, 28.657809758000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147148736999952, 28.657781159000024 ], [ -82.147247342999947, 28.657714084000077 ], [ -82.147358631999964, 28.657667084000025 ], [ -82.147476401999938, 28.657617010000024 ], [ -82.147552128999962, 28.657587146000026 ], [ -82.147769270999959, 28.657530657000052 ], [ -82.148135693999961, 28.657507593000048 ], [ -82.148779019999949, 28.65753292100004 ], [ -82.149294590999943, 28.657534173000045 ], [ -82.149452212999961, 28.657534627000075 ], [ -82.149575702999982, 28.657535215000053 ], [ -82.149696540999969, 28.657525726000074 ], [ -82.149789414999987, 28.657484441000065 ], [ -82.149872292999987, 28.65739680400003 ], [ -82.149949823999975, 28.657285564000063 ], [ -82.152141680999989, 28.654080374000046 ], [ -82.153170374999945, 28.652575823000063 ], [ -82.153324353999949, 28.652352815000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141851169999939, 28.659554778000029 ], [ -82.141811931999939, 28.658877965000045 ], [ -82.141807003999986, 28.658329748000028 ], [ -82.141834579999966, 28.657760041000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140401138999948, 28.657752606000031 ], [ -82.140909320999981, 28.657753863000039 ], [ -82.141464069999984, 28.657756856000049 ], [ -82.141680704999942, 28.657756630000051 ], [ -82.141834579999966, 28.657760041000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137250370999936, 28.657740292000028 ], [ -82.137628098999983, 28.657739909000043 ], [ -82.138737557999946, 28.657745755000064 ], [ -82.140108063999946, 28.657749577000061 ], [ -82.140401138999948, 28.657752606000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139435027, 28.659545497000067 ], [ -82.140319235999982, 28.659557741000071 ], [ -82.14034554899996, 28.659552356000063 ], [ -82.140371848999962, 28.659536256000024 ], [ -82.140388002999941, 28.659504095000045 ], [ -82.140396044999989, 28.659461227000065 ], [ -82.140401138999948, 28.657752606000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.151044345999935, 28.668689957000026 ], [ -82.151044011999943, 28.668457326000066 ], [ -82.151006036999945, 28.667999498000029 ], [ -82.150993036999978, 28.667710886000066 ], [ -82.151008609999963, 28.666867189000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.180688892999967, 28.687273794000077 ], [ -82.180716590999964, 28.687249295000072 ], [ -82.180756908999967, 28.687231452000049 ], [ -82.180814899999973, 28.687224703000027 ], [ -82.180953630999966, 28.687227764000056 ], [ -82.181261294999956, 28.687241895000057 ], [ -82.182038036999984, 28.68725197200007 ], [ -82.182330553999975, 28.687242684000068 ], [ -82.182476805999954, 28.687233592000041 ], [ -82.18262305199994, 28.687222276000057 ], [ -82.182716401999983, 28.687246611000035 ], [ -82.182908087999976, 28.687261918000047 ], [ -82.183107334999988, 28.687274992000027 ], [ -82.183286405999979, 28.68728586800006 ], [ -82.183692420999989, 28.687285318000079 ], [ -82.183989983999936, 28.687278241000058 ], [ -82.184365697999965, 28.687255493000066 ], [ -82.184809571999949, 28.687272678000056 ], [ -82.18485241999997, 28.687259277000067 ], [ -82.184887677999939, 28.68723254300005 ], [ -82.184910299999956, 28.687190261000069 ], [ -82.184912750999956, 28.687150230000043 ], [ -82.184910155999944, 28.687107982000043 ], [ -82.184892326999943, 28.687007937000033 ], [ -82.184887052999954, 28.686876742000038 ], [ -82.18488924199994, 28.686687720000066 ], [ -82.18489859999994, 28.686271863000059 ], [ -82.184897486999944, 28.685638092000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170082147999949, 28.683466487000032 ], [ -82.170098733999964, 28.683447418000071 ], [ -82.170103565999966, 28.683424833000061 ], [ -82.17010350399994, 28.683387029000073 ], [ -82.170097283999951, 28.682657642000038 ], [ -82.170086063999975, 28.681957170000032 ], [ -82.170074996999972, 28.681350095000028 ], [ -82.170065704999956, 28.680281366000031 ], [ -82.170067005999954, 28.679838391000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.166037074999963, 28.690807591000066 ], [ -82.166017533999934, 28.690764687000069 ], [ -82.166004483999984, 28.690721776000032 ], [ -82.166004384999951, 28.690658816000052 ], [ -82.166010748999952, 28.690578679000055 ], [ -82.16602458899996, 28.689064768000037 ], [ -82.166021112999942, 28.688918821000073 ], [ -82.165985285999966, 28.688838735000047 ], [ -82.165800007999962, 28.688655806000043 ], [ -82.165461838999988, 28.688246982000067 ], [ -82.165295989999947, 28.688035413000023 ], [ -82.165201696999986, 28.687923917000035 ], [ -82.165185348999955, 28.687846668000077 ], [ -82.165191750999952, 28.687789424000073 ], [ -82.16522734299997, 28.687720698000078 ], [ -82.16553507499998, 28.68735115000004 ], [ -82.165651633999971, 28.687176437000062 ], [ -82.165742356999942, 28.687081886000044 ], [ -82.165816819999975, 28.686967323000033 ], [ -82.165878328999952, 28.686869946000058 ], [ -82.165923547999967, 28.686732525000025 ], [ -82.165939607999974, 28.686626618000048 ], [ -82.165949135999938, 28.68649496300003 ], [ -82.165942131999941, 28.686168727000052 ], [ -82.165928580999946, 28.685808156000064 ], [ -82.165912096999989, 28.68564505300003 ], [ -82.165889068999945, 28.685447617000079 ], [ -82.165904885999964, 28.685187173000031 ], [ -82.165917117999982, 28.684712099000023 ], [ -82.16589675299997, 28.684145487000023 ], [ -82.165856906999977, 28.683573175000049 ], [ -82.165872731999968, 28.683527278000042 ], [ -82.165892442999962, 28.683470107000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.166037074999963, 28.690807591000066 ], [ -82.166085793999969, 28.690830424000069 ], [ -82.166150716999937, 28.690838930000041 ], [ -82.166569390999939, 28.69084127800005 ], [ -82.166910168999948, 28.690840858000058 ], [ -82.168094854999936, 28.69088804200004 ], [ -82.168445332999966, 28.690864712000064 ], [ -82.168769888999975, 28.690867169000057 ], [ -82.169370338999954, 28.690886452000029 ], [ -82.169915574999948, 28.690880045000029 ], [ -82.170097335999969, 28.690888402000041 ], [ -82.170181733999982, 28.690896882000061 ], [ -82.170253165999952, 28.690916825000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170293738999987, 28.693927387000031 ], [ -82.170311448999939, 28.692837018000034 ], [ -82.170315034999987, 28.691042665000055 ], [ -82.170308469999952, 28.690996885000061 ], [ -82.170288926999945, 28.690953983000043 ], [ -82.170253165999952, 28.690916825000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.159547895999935, 28.681423753000047 ], [ -82.157919171999936, 28.681295928000054 ], [ -82.156324677999976, 28.681177095000066 ], [ -82.156215183999961, 28.681168170000035 ], [ -82.156112523, 28.681153203000065 ], [ -82.156006422999951, 28.681126173000052 ], [ -82.155910582999979, 28.681096112000034 ], [ -82.155623123999987, 28.680976767000061 ], [ -82.155407367999942, 28.680864729000064 ], [ -82.15530032199996, 28.680810374000032 ], [ -82.155208804999972, 28.680758237000077 ], [ -82.155160550999938, 28.680717748000063 ], [ -82.155110632999936, 28.680657847000077 ], [ -82.155081791999976, 28.680590180000024 ], [ -82.155060160999938, 28.680509202000053 ], [ -82.155055168999979, 28.680459839000036 ], [ -82.155057941999985, 28.680387180000025 ], [ -82.155077354999946, 28.680310640000073 ], [ -82.155121171999951, 28.680239645000029 ], [ -82.155194384999959, 28.680171979000079 ], [ -82.155331381999986, 28.680092110000032 ], [ -82.155771768999955, 28.679831427000067 ], [ -82.155926514999976, 28.679744348000042 ], [ -82.156006937999962, 28.679716061000079 ], [ -82.156084587999942, 28.679707187000076 ], [ -82.156169448999947, 28.679708296000058 ], [ -82.156917662999945, 28.679716061000079 ], [ -82.157368033999944, 28.679734919000055 ], [ -82.157490055999972, 28.679732146000049 ], [ -82.157540845999961, 28.679724545000056 ], [ -82.157557487999952, 28.679709896000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.157557487999952, 28.679709896000077 ], [ -82.157584627999938, 28.679728352000041 ], [ -82.15760628299995, 28.679736011000045 ], [ -82.157794471999978, 28.67975087700006 ], [ -82.158246087999942, 28.679759402000059 ], [ -82.159036405999984, 28.679767526000035 ], [ -82.160473320999984, 28.679765830000065 ], [ -82.161622862999934, 28.67977049700005 ], [ -82.161780276999934, 28.679794447000063 ], [ -82.161883005999982, 28.67985466500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.157606983999983, 28.668774979000034 ], [ -82.158014875999982, 28.668778454000062 ], [ -82.160217145, 28.668796053000051 ], [ -82.163815113999988, 28.668835496000042 ], [ -82.166363608999973, 28.668864923000058 ], [ -82.168418027999962, 28.668886868000072 ], [ -82.170093030999965, 28.668907219000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.15350144699994, 28.668728449000071 ], [ -82.155041184999959, 28.668745030000025 ], [ -82.156034232999957, 28.668751763000046 ], [ -82.156749296999976, 28.668761590000031 ], [ -82.157372985999984, 28.668766215000062 ], [ -82.157606983999983, 28.668774979000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.157557487999952, 28.679709896000077 ], [ -82.157571916999984, 28.679633471000045 ], [ -82.157588890999989, 28.679545955000037 ], [ -82.157588714999974, 28.679428290000033 ], [ -82.157573856999988, 28.678643868000051 ], [ -82.157575795999946, 28.677654267000037 ], [ -82.15757537199994, 28.677370662000044 ], [ -82.157585467, 28.674972078000053 ], [ -82.157567441999959, 28.674356614000033 ], [ -82.157573529999979, 28.673852757000077 ], [ -82.157580631999963, 28.671740795000062 ], [ -82.157592361999946, 28.670434387000057 ], [ -82.157606983999983, 28.668774979000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165892442999962, 28.683470107000062 ], [ -82.165928086999941, 28.683435721000023 ], [ -82.166002696999954, 28.683415597000078 ], [ -82.166629062999959, 28.683431999000049 ], [ -82.167048859999966, 28.683435960000054 ], [ -82.167454944999974, 28.683451794000064 ], [ -82.168576771999938, 28.683463123000024 ], [ -82.169533809999962, 28.683456918000047 ], [ -82.169864476999976, 28.68346383100004 ], [ -82.170082147999949, 28.683466487000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.146742850999942, 28.662668207000024 ], [ -82.146546753999985, 28.662860334000072 ], [ -82.146247293999977, 28.663303295000048 ], [ -82.146058184999958, 28.663568504000068 ], [ -82.145906148999984, 28.663761601000033 ], [ -82.145150269999988, 28.664713057000029 ], [ -82.144747625999969, 28.665205297000057 ], [ -82.144409320999955, 28.665632688000073 ], [ -82.144329952999954, 28.665734247000046 ], [ -82.144080914999961, 28.66604736000005 ], [ -82.143899316999978, 28.666269871000054 ], [ -82.143689192999943, 28.666535957000065 ], [ -82.143471257999977, 28.666792885000064 ], [ -82.143179406999934, 28.667156464000072 ], [ -82.142552886999965, 28.667932943000039 ], [ -82.142293458999973, 28.668256377000034 ], [ -82.142191722999939, 28.668391047000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14186945299997, 28.668616543000041 ], [ -82.141991841999982, 28.668556507000062 ], [ -82.142048097999975, 28.668522069000062 ], [ -82.142100010999968, 28.668476653000027 ], [ -82.142191722999939, 28.668391047000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142201145999934, 28.668668982000042 ], [ -82.142109949999963, 28.668706058000055 ], [ -82.142062339999939, 28.668729983000048 ], [ -82.142012576999946, 28.668763459000047 ], [ -82.141967160999968, 28.668808389000048 ], [ -82.141936258999976, 28.66884899300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14217481999998, 28.668621133000045 ], [ -82.142166538999959, 28.668564202000027 ], [ -82.142169710999951, 28.66850785500003 ], [ -82.142173637999974, 28.668474666000066 ], [ -82.142183686999942, 28.668433353000069 ], [ -82.142191722999939, 28.668391047000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14366258299998, 28.668371509000053 ], [ -82.143764114999954, 28.668189479000034 ], [ -82.143846758999985, 28.668052353000064 ], [ -82.143989471999987, 28.667816516000073 ], [ -82.144240119999949, 28.667411341000047 ], [ -82.144510615999934, 28.666952667000032 ], [ -82.144693810999968, 28.666631602000052 ], [ -82.144852815999968, 28.666356400000041 ], [ -82.144999730999984, 28.666109478000067 ], [ -82.14520278699996, 28.665746372000058 ], [ -82.145525072999988, 28.66516234900007 ], [ -82.145983928999954, 28.664383696000073 ], [ -82.146322531999942, 28.663845235000053 ], [ -82.146500827999944, 28.663589587000047 ], [ -82.146749500999988, 28.663226510000072 ], [ -82.146893455999987, 28.662914664000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143123629999934, 28.668627838000077 ], [ -82.143015704999982, 28.668628006000063 ], [ -82.14262698999994, 28.668629372000055 ], [ -82.142285247999951, 28.668622792000065 ], [ -82.14217481999998, 28.668621133000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143123629999934, 28.668627838000077 ], [ -82.143213430999936, 28.668698982000024 ], [ -82.143246768999973, 28.66872763300006 ], [ -82.143264969999962, 28.668747710000048 ], [ -82.143287546999943, 28.668775720000042 ], [ -82.14329971899997, 28.668793268000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143509026999936, 28.668627236000077 ], [ -82.143549442999984, 28.668574346000071 ], [ -82.143572723999966, 28.668538915000056 ], [ -82.143629745999988, 28.668429988000071 ], [ -82.14366258299998, 28.668371509000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145072561999939, 28.668677251000076 ], [ -82.145369241999958, 28.668675023000048 ], [ -82.145558527999981, 28.668675338000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143510916999958, 28.66884920800004 ], [ -82.143840768999951, 28.668819391000056 ], [ -82.144247830999973, 28.668773120000026 ], [ -82.144576963999953, 28.668748322000056 ], [ -82.14491129399994, 28.668725046000077 ], [ -82.145072561999939, 28.668677251000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143386967999959, 28.668948337000074 ], [ -82.143431684999939, 28.668908501000033 ], [ -82.143510916999958, 28.66884920800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.144821441999966, 28.668626957000072 ], [ -82.144700591999936, 28.668573239000068 ], [ -82.144605722999984, 28.668566397000063 ], [ -82.143818329999988, 28.668562720000068 ], [ -82.143776743999979, 28.66855703400006 ], [ -82.143729929999949, 28.66852958000004 ], [ -82.143701305999969, 28.668500962000053 ], [ -82.143673964999948, 28.668460882000034 ], [ -82.143666117999942, 28.668424220000077 ], [ -82.14366258299998, 28.668371509000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140351617999954, 28.672595749000038 ], [ -82.140469095999947, 28.672396976000073 ], [ -82.140677583999945, 28.672050037000076 ], [ -82.140796784999964, 28.671861080000042 ], [ -82.141005950999954, 28.671532887000069 ], [ -82.141143146, 28.671318070000041 ], [ -82.141316338999957, 28.671057499000028 ], [ -82.141541278999966, 28.670729290000054 ], [ -82.141734721999967, 28.670444844000031 ], [ -82.142236325999988, 28.669710848000079 ], [ -82.142729326999984, 28.668992928000023 ], [ -82.142930167999964, 28.668703525000069 ], [ -82.143035705999978, 28.668550301000039 ], [ -82.143202536999979, 28.668303506000029 ], [ -82.143621137999958, 28.667691880000064 ], [ -82.143860768999957, 28.667340462000027 ], [ -82.144400693999955, 28.666551782000056 ], [ -82.145177199999978, 28.665417044000037 ], [ -82.145619808999982, 28.664766335000024 ], [ -82.145907680999983, 28.664354166000066 ], [ -82.146423531999972, 28.663604399000064 ], [ -82.146893455999987, 28.662914664000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139082449999989, 28.674940542000058 ], [ -82.139131475999989, 28.674910215000068 ], [ -82.13918253199995, 28.674869671000067 ], [ -82.13950786099997, 28.674247079000054 ], [ -82.139707693999981, 28.673920862000045 ], [ -82.13992862799995, 28.673566954000023 ], [ -82.140377892999936, 28.672845431000042 ], [ -82.140594021999959, 28.672518989000025 ], [ -82.140806710999982, 28.672212413000068 ], [ -82.140958884999975, 28.671998342000052 ], [ -82.141178528999944, 28.671712386000024 ], [ -82.141427583999985, 28.671395076000067 ], [ -82.141629082999941, 28.67114504500006 ], [ -82.141841813999974, 28.670874376000029 ], [ -82.142092601999934, 28.670560883000064 ], [ -82.142224939999949, 28.670415588000026 ], [ -82.142337360999989, 28.670274898000059 ], [ -82.142647809999971, 28.669883416000062 ], [ -82.143094023999936, 28.669322187000034 ], [ -82.143386967999959, 28.668948337000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141801609999959, 28.669054308000057 ], [ -82.141773979999982, 28.669120040000053 ], [ -82.141566589999968, 28.669496133000052 ], [ -82.141381665999972, 28.669830947000037 ], [ -82.141238219999934, 28.670090849000076 ], [ -82.141053286999977, 28.67042107900005 ], [ -82.140788878999956, 28.670916411000064 ], [ -82.140654101999985, 28.671182414000043 ], [ -82.14055215999997, 28.671388793000062 ], [ -82.140348244999984, 28.671778632000041 ], [ -82.140156432999959, 28.672150124000041 ], [ -82.140007829999945, 28.672445172000039 ], [ -82.139803579999978, 28.672858248000068 ], [ -82.139594475999957, 28.673258786000076 ], [ -82.139409532999935, 28.673610394000036 ], [ -82.139234852999948, 28.673955489000036 ], [ -82.13919619099994, 28.674034314000039 ], [ -82.139176372999941, 28.674113788000057 ], [ -82.139166993999936, 28.674227629000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105692098999953, 28.748837197000057 ], [ -82.105650956999966, 28.748895729000026 ], [ -82.10556091899997, 28.749013450000064 ], [ -82.105460483999934, 28.749135764000073 ], [ -82.105360026999961, 28.749238213000069 ], [ -82.105261289999987, 28.749325383000041 ], [ -82.105129622999982, 28.749426329000073 ], [ -82.105011804999947, 28.749505874000079 ], [ -82.104887050999935, 28.749583895000058 ], [ -82.10471722799997, 28.749672646000079 ], [ -82.104564718999939, 28.749736938000069 ], [ -82.104374068999959, 28.749802786000032 ], [ -82.104231959999936, 28.749839356000052 ], [ -82.104133371999978, 28.749860442000056 ], [ -82.104013108999936, 28.749878679000062 ], [ -82.103892162999955, 28.749890250000078 ], [ -82.103744390999964, 28.749898939000047 ], [ -82.103590526999938, 28.749908606000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103590526999938, 28.749908606000076 ], [ -82.103500606999944, 28.749928729000032 ], [ -82.103381412999966, 28.749933596000062 ], [ -82.103309899999942, 28.749939380000058 ], [ -82.103200460999972, 28.749946148000049 ], [ -82.103104560999952, 28.749957443000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103590526999938, 28.749908606000076 ], [ -82.103517908999947, 28.749893383000028 ], [ -82.10345939299998, 28.749892473000045 ], [ -82.103420218999986, 28.749886582000045 ], [ -82.10338662099997, 28.749878969000065 ], [ -82.103345579999939, 28.749859137000044 ], [ -82.103295698999943, 28.749823841000079 ], [ -82.10323931399995, 28.749786641000071 ], [ -82.10314336, 28.74972106000007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133169775999988, 28.655042609000077 ], [ -82.133173044999978, 28.654737818000058 ], [ -82.133177934999935, 28.654532259000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131266475999951, 28.655032212000037 ], [ -82.131499874999975, 28.65503443700004 ], [ -82.132120930999974, 28.655035518000034 ], [ -82.132641443999944, 28.655036041000074 ], [ -82.132980339999961, 28.65503725700006 ], [ -82.133055849999948, 28.655037819000029 ], [ -82.133169775999988, 28.655042609000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119375050999963, 28.676304610000045 ], [ -82.119398248999971, 28.676331150000067 ], [ -82.119437661999939, 28.676357675000077 ], [ -82.11951414899994, 28.676388256000052 ], [ -82.119617729999959, 28.676420995000058 ], [ -82.119720411999936, 28.676453452000032 ], [ -82.119850183999972, 28.676483985000061 ], [ -82.120042512999987, 28.676520590000052 ], [ -82.120230188999983, 28.676538812000047 ], [ -82.120399320999979, 28.676548876000027 ], [ -82.12052674499995, 28.676552850000064 ], [ -82.120786219999957, 28.676552619000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119375050999963, 28.676304610000045 ], [ -82.119301113999938, 28.676480383000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119702064999956, 28.674579939000068 ], [ -82.119297017999941, 28.674909237000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119297017999941, 28.674909237000065 ], [ -82.119368944999962, 28.675005200000044 ], [ -82.119447839999964, 28.675117501000045 ], [ -82.119496595999976, 28.675211441000044 ], [ -82.119533769999975, 28.675305391000052 ], [ -82.119554722999965, 28.675395268000045 ], [ -82.119568742999945, 28.675501499000063 ], [ -82.119566544999941, 28.675605699000073 ], [ -82.119550454999967, 28.675718085000028 ], [ -82.119525092999936, 28.675824347000059 ], [ -82.119497401, 28.675920398000073 ], [ -82.119467394999958, 28.676018494000061 ], [ -82.11942815499998, 28.676145202000043 ], [ -82.119391218999965, 28.676261690000047 ], [ -82.119375050999963, 28.676304610000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115529740999989, 28.674601951000056 ], [ -82.117540629999951, 28.674608393000028 ], [ -82.118520593999961, 28.674613668000063 ], [ -82.118708258999959, 28.674625761000073 ], [ -82.11884265599997, 28.674652205000029 ], [ -82.118963175999966, 28.674697046000063 ], [ -82.11906980599997, 28.674752117000025 ], [ -82.119178762999979, 28.674817400000052 ], [ -82.119297017999941, 28.674909237000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115529740999989, 28.674601951000056 ], [ -82.115537472999961, 28.675314989000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114254986999981, 28.674923392000039 ], [ -82.11430913199996, 28.674864505000073 ], [ -82.114356571999963, 28.674804395000024 ], [ -82.114420197999948, 28.674739781000028 ], [ -82.114512790999981, 28.674670238000033 ], [ -82.114593836999973, 28.674635435000027 ], [ -82.114677215999961, 28.674614935000079 ], [ -82.114776814999971, 28.674598506000052 ], [ -82.114867158999971, 28.674592299000039 ], [ -82.115529740999989, 28.674601951000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114199411999948, 28.67494795600004 ], [ -82.114229056999989, 28.67493975800005 ], [ -82.114254986999981, 28.674923392000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114292577999947, 28.675407169000039 ], [ -82.114220300999989, 28.675410499000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113903299999947, 28.675340482000024 ], [ -82.114220300999989, 28.675410499000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114239491999967, 28.676016876000062 ], [ -82.114258011999937, 28.676003785000034 ], [ -82.114276525999969, 28.675985790000027 ], [ -82.114291324999954, 28.675959626000065 ], [ -82.114294989999962, 28.675922029000048 ], [ -82.114289396999936, 28.67589097900003 ], [ -82.114268980999952, 28.675864845000035 ], [ -82.114237449999962, 28.675841988000059 ], [ -82.114207787999987, 28.675835476000032 ], [ -82.114176278999935, 28.675833868000041 ], [ -82.114142926999989, 28.675842068000065 ], [ -82.114107722999961, 28.675851905000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114107722999961, 28.675851905000059 ], [ -82.114096626999981, 28.675873163000063 ], [ -82.114091095999981, 28.675899318000063 ], [ -82.114087415999961, 28.675925474000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114847845999975, 28.669484958000055 ], [ -82.114847721, 28.670336645000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113988386999949, 28.669489283000075 ], [ -82.114847845999975, 28.669484958000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113319542999989, 28.670314682000026 ], [ -82.114847721, 28.670336645000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11331185399996, 28.669492688000048 ], [ -82.113319542999989, 28.670314682000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113324490999958, 28.668589676000067 ], [ -82.11331185399996, 28.669492688000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11331882099995, 28.66762204500003 ], [ -82.113324331999934, 28.668442675000051 ], [ -82.113324490999958, 28.668589676000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113324490999958, 28.668589676000067 ], [ -82.114756511999985, 28.668576470000062 ], [ -82.114832020999984, 28.668572806000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114832020999984, 28.668572806000043 ], [ -82.117594138999948, 28.668585260000043 ], [ -82.118784845999983, 28.668584220000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114893958999971, 28.662050651000072 ], [ -82.114876829999957, 28.662754358000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114893958999971, 28.662050651000072 ], [ -82.115342375999944, 28.662040671000057 ], [ -82.115464861999953, 28.662047460000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114895283999942, 28.661269209000068 ], [ -82.11528058, 28.661268882000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114895283999942, 28.661269209000068 ], [ -82.114893958999971, 28.662050651000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11528058, 28.661268882000059 ], [ -82.116223144999935, 28.661271916000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.259989904999941, 28.665024537000079 ], [ -82.260055138999974, 28.665049047000025 ], [ -82.260083160999955, 28.665085947000023 ], [ -82.260094900999945, 28.665126982000061 ], [ -82.260097547999976, 28.665256313000043 ], [ -82.260097164999934, 28.66589536500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256530547999944, 28.66548133200007 ], [ -82.256611220999957, 28.665445676000047 ], [ -82.256701938999981, 28.665420869000059 ], [ -82.256916845999967, 28.665391880000072 ], [ -82.257541963999984, 28.665318680000041 ], [ -82.25825632699997, 28.665229042000078 ], [ -82.259712988999979, 28.665053809000028 ], [ -82.259843290999981, 28.665035083000078 ], [ -82.259896810999976, 28.665028822000068 ], [ -82.259945680999977, 28.665024622000033 ], [ -82.259989904999941, 28.665024537000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.260084496, 28.666797540000061 ], [ -82.259101697999938, 28.666906318000031 ], [ -82.258667843999945, 28.666956857000059 ], [ -82.25761380299997, 28.667092288000049 ], [ -82.257518417999961, 28.66711299900004 ], [ -82.257443998999975, 28.667139829000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252364222999972, 28.665835505000075 ], [ -82.252706242999977, 28.665775331000077 ], [ -82.253106485999979, 28.665729420000048 ], [ -82.253681222999944, 28.665650333000031 ], [ -82.253845533999936, 28.66561769100008 ], [ -82.254002635999939, 28.665612263000071 ], [ -82.254060820999939, 28.665609588000052 ], [ -82.254119022999987, 28.665614611000024 ], [ -82.254188864999946, 28.665619613000047 ], [ -82.254247091999957, 28.665634900000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252364222999972, 28.665835505000075 ], [ -82.252410617999942, 28.665769724000029 ], [ -82.252433726999982, 28.665699881000023 ], [ -82.25243353999997, 28.665621869000063 ], [ -82.252426429999957, 28.665568506000056 ], [ -82.25241460899997, 28.665492569000037 ], [ -82.252395824999951, 28.663890223000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252273543999934, 28.665876732000072 ], [ -82.252364222999972, 28.665835505000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.25229182299995, 28.666706088000069 ], [ -82.252292400999977, 28.665975239000034 ], [ -82.252287602999957, 28.665915712000071 ], [ -82.252273543999934, 28.665876732000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.223975996999968, 28.634480628000063 ], [ -82.224340473999973, 28.634492331000047 ], [ -82.224722957999973, 28.634501224000076 ], [ -82.224981647999982, 28.63448690000007 ], [ -82.225629683999955, 28.634480908000057 ], [ -82.226026949999948, 28.634477840000045 ], [ -82.226159406999955, 28.634463180000068 ], [ -82.226162135999971, 28.634463175000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.224002427999949, 28.640040633000069 ], [ -82.22401199899997, 28.639581622000037 ], [ -82.224012985999934, 28.638390714000025 ], [ -82.224008995999952, 28.638167425000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.220731642999965, 28.640040667000051 ], [ -82.221776286999955, 28.640041194000048 ], [ -82.223147309999945, 28.640045146000034 ], [ -82.223635945999945, 28.640041239000027 ], [ -82.224002427999949, 28.640040633000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.220793653999976, 28.642793546000064 ], [ -82.220773134999945, 28.642664565000075 ], [ -82.220677790999957, 28.642259812000077 ], [ -82.220677208999973, 28.641981935000047 ], [ -82.220702997999979, 28.641404302000069 ], [ -82.220735268999988, 28.640697645000046 ], [ -82.220736852999948, 28.640380067000024 ], [ -82.220728993999955, 28.640185565000024 ], [ -82.220731642999965, 28.640040667000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.209486079999976, 28.640023364000058 ], [ -82.210123258999943, 28.640022377000037 ], [ -82.213635694999937, 28.640025741000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203532113999984, 28.630776255000058 ], [ -82.204123917999937, 28.630779809000046 ], [ -82.204355604999989, 28.630781680000041 ], [ -82.204521823999983, 28.63078809600006 ], [ -82.204650285999946, 28.630803456000024 ], [ -82.204783797999937, 28.630825472000026 ], [ -82.20493247099995, 28.630874128000073 ], [ -82.205028205999952, 28.630909017000079 ], [ -82.205121679999934, 28.630958307000071 ], [ -82.205245091999984, 28.631037212000024 ], [ -82.205548049999948, 28.631247661000032 ], [ -82.205667740999957, 28.631333161000043 ], [ -82.205772440999965, 28.631392320000032 ], [ -82.205873374999953, 28.631435008000039 ], [ -82.205981770999983, 28.631474388000072 ], [ -82.206093876999944, 28.631500581000068 ], [ -82.206209711999975, 28.631523473000072 ], [ -82.20645626299995, 28.631539576000023 ], [ -82.209248174999971, 28.631546821000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170093030999965, 28.668907219000062 ], [ -82.171099415999947, 28.668916153000055 ], [ -82.17145801099997, 28.66891774000004 ], [ -82.173577215999956, 28.668943605000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174144029, 28.668946958000049 ], [ -82.174882038999954, 28.668950089000077 ], [ -82.175367885999947, 28.66895762200005 ], [ -82.176765268999986, 28.668976208000061 ], [ -82.178558260999978, 28.668994261000023 ], [ -82.179754406999962, 28.669005304000052 ], [ -82.181092692999982, 28.669018817000051 ], [ -82.18263331199995, 28.66903459200006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.162521906999984, 28.640088091000052 ], [ -82.162594965999972, 28.639982119000024 ], [ -82.162763905999952, 28.639734043000033 ], [ -82.163257500999975, 28.639009427000076 ], [ -82.163914389999945, 28.638048082000068 ], [ -82.164322637999987, 28.63745523700004 ], [ -82.164493899999968, 28.63720303100007 ], [ -82.164692934999948, 28.636928255000043 ], [ -82.164862512999946, 28.636685521000061 ], [ -82.165016506999962, 28.636481810000078 ], [ -82.165208587999985, 28.63623240000004 ], [ -82.165406762999964, 28.635978025000043 ], [ -82.16558428999997, 28.635747812000034 ], [ -82.165778354999986, 28.635502797000072 ], [ -82.165905343999952, 28.635349653000048 ], [ -82.166030193999973, 28.63519892100004 ], [ -82.166246835999971, 28.634940813000071 ], [ -82.166488381999955, 28.634659294000073 ], [ -82.166668677999951, 28.634458643000073 ], [ -82.166853640999989, 28.634251797000047 ], [ -82.167015066999966, 28.634069046000036 ], [ -82.167212352999968, 28.633857056000068 ], [ -82.167423851999956, 28.633631131000072 ], [ -82.167599249999967, 28.633448560000033 ], [ -82.167689524999957, 28.633352712000033 ], [ -82.167836547999968, 28.633199808000029 ], [ -82.168097066999962, 28.632932792000076 ], [ -82.168295698999941, 28.632741073000034 ], [ -82.168525279999983, 28.632515125000054 ], [ -82.168760032999955, 28.632293728000036 ], [ -82.16904638799997, 28.632028957000045 ], [ -82.169245026999988, 28.631844074000071 ], [ -82.169497851999949, 28.631615816000078 ], [ -82.169709409999939, 28.631430917000046 ], [ -82.169902908999973, 28.631264276000024 ], [ -82.170031925999979, 28.63116382000004 ], [ -82.170269281999936, 28.630958373000055 ], [ -82.170504072999961, 28.630764326000076 ], [ -82.17069500499997, 28.63060908500006 ], [ -82.170924631999981, 28.630417323000074 ], [ -82.171211045999939, 28.630195856000057 ], [ -82.171494872999972, 28.629972114000054 ], [ -82.172121852999965, 28.629469843000038 ], [ -82.172875251999983, 28.628864835000059 ], [ -82.173651882999934, 28.628252954000061 ], [ -82.173956348, 28.628017783000075 ], [ -82.174646176999943, 28.627466984000023 ], [ -82.174959996999974, 28.627216410000074 ], [ -82.176064260999965, 28.626339678000079 ], [ -82.176559622999946, 28.625944691000029 ], [ -82.177116338999951, 28.625500848000058 ], [ -82.177132379999989, 28.625488059000077 ], [ -82.177387805999956, 28.625289414000065 ], [ -82.177532281999959, 28.625172974000066 ], [ -82.17793992299994, 28.624853319000067 ], [ -82.178360441999985, 28.624510851000025 ], [ -82.179209248999939, 28.623844137000049 ], [ -82.18036245899998, 28.622928555000044 ], [ -82.181556912999952, 28.621971877000078 ], [ -82.182333437999944, 28.62135766800003 ], [ -82.183182183999975, 28.620684090000054 ], [ -82.184033495999984, 28.620005945000059 ], [ -82.18457264999995, 28.619574399000044 ], [ -82.185467804999973, 28.618866553000032 ], [ -82.186515139999983, 28.618033122000043 ], [ -82.186845328999937, 28.617770533000055 ], [ -82.18785137499998, 28.616973620000067 ], [ -82.188852238999971, 28.616176707000079 ], [ -82.189969174999987, 28.615293004000023 ], [ -82.191238271999964, 28.614283710000052 ], [ -82.191865060999987, 28.613779070000078 ], [ -82.193384314999946, 28.612568810000027 ], [ -82.194695724999974, 28.611533136000048 ], [ -82.195517406999954, 28.610872130000075 ], [ -82.195710857999984, 28.610721407000028 ], [ -82.196017793999943, 28.610479345000044 ], [ -82.196569739999973, 28.610034055000028 ], [ -82.197235185999943, 28.609508819000041 ], [ -82.197622052999975, 28.609193692000076 ], [ -82.197887717999947, 28.608988156000066 ], [ -82.198199809999949, 28.60874608000006 ], [ -82.198434505999955, 28.608554264000077 ], [ -82.198689827999942, 28.608344182000053 ], [ -82.198981250999964, 28.608102135000024 ], [ -82.199241691999987, 28.607866970000032 ], [ -82.199471185999982, 28.607659204000072 ], [ -82.199736762999976, 28.607410354000024 ], [ -82.200015201999975, 28.607134133000045 ], [ -82.200187914999958, 28.606951522000031 ], [ -82.200418824999986, 28.606706469000073 ], [ -82.200726120999946, 28.606359815000076 ], [ -82.200992176999989, 28.60604210200006 ], [ -82.201158105, 28.605822860000046 ], [ -82.201330069999983, 28.60560326600006 ], [ -82.201545921, 28.605313129000024 ], [ -82.201554079999937, 28.605301428000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156875682999953, 28.64717240300007 ], [ -82.157021186999941, 28.646934058000056 ], [ -82.157039543999986, 28.646756089000064 ], [ -82.157070457999964, 28.646676661000072 ], [ -82.157166462999953, 28.646542405000048 ], [ -82.157380097999976, 28.646208164000029 ], [ -82.157615409999948, 28.645843782000043 ], [ -82.157668015999946, 28.645742429000052 ], [ -82.157692739999959, 28.645673958000032 ], [ -82.157705046999979, 28.645602765000035 ], [ -82.157693411999958, 28.644047793000027 ], [ -82.157696931999965, 28.642251889000079 ], [ -82.157687539999984, 28.642197147000047 ], [ -82.157675033999965, 28.64213419500004 ], [ -82.157681108999952, 28.64204658400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153518715999951, 28.652065690000029 ], [ -82.153725168999983, 28.651772444000073 ], [ -82.154565478999984, 28.650539628000047 ], [ -82.155404709999971, 28.649306726000077 ], [ -82.156027149999943, 28.648388898000064 ], [ -82.156364716999974, 28.647912159000043 ], [ -82.156875682999953, 28.64717240300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153518715999951, 28.652065690000029 ], [ -82.153515237999954, 28.651808354000025 ], [ -82.153537485999948, 28.648671003000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145615449, 28.648641402000067 ], [ -82.145604495999976, 28.648526435000065 ], [ -82.145607794999989, 28.647988005000059 ], [ -82.145635781999943, 28.647765117000063 ], [ -82.145645706999971, 28.647634957000037 ], [ -82.145651208999936, 28.64722845600005 ], [ -82.145648846999961, 28.646982423000054 ], [ -82.145630400999949, 28.646795241000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148466454999948, 28.668684786000028 ], [ -82.14878089299998, 28.668683295000051 ], [ -82.149737203999962, 28.668683387000044 ], [ -82.150221857999952, 28.668683996000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148466454999948, 28.668684786000028 ], [ -82.148474822999958, 28.667488045000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141342700999985, 28.675985378000064 ], [ -82.142641432999937, 28.675996178000048 ], [ -82.144202183999937, 28.675988444000041 ], [ -82.145294021999973, 28.675985249000064 ], [ -82.145448032, 28.67598711100004 ], [ -82.14556521999998, 28.675956578000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14556521999998, 28.675956578000068 ], [ -82.14564799599998, 28.675974733000032 ], [ -82.146883532999937, 28.675996711000039 ], [ -82.148584492999987, 28.675984718000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145558527999981, 28.668675338000071 ], [ -82.147423087999982, 28.668683634000047 ], [ -82.14806625999995, 28.668684079000059 ], [ -82.148466454999948, 28.668684786000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14555332499998, 28.673298178000039 ], [ -82.145549168999935, 28.672658425000066 ], [ -82.145561785999973, 28.67180903600007 ], [ -82.145559869999943, 28.670422468000027 ], [ -82.145559454999955, 28.670122450000065 ], [ -82.145561439999938, 28.669895408000059 ], [ -82.145558527999981, 28.668675338000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.240905722999969, 28.669125041000029 ], [ -82.241086157999973, 28.669106499000065 ], [ -82.241473107, 28.669136352000066 ], [ -82.241889578999974, 28.669139357000063 ], [ -82.243806174999975, 28.669139667000024 ], [ -82.245089487999962, 28.669103619000055 ], [ -82.247739919999958, 28.669112334000033 ], [ -82.249022509999975, 28.669120246000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.240344483999934, 28.696384069000032 ], [ -82.240328819999945, 28.696262017000038 ], [ -82.240338647999977, 28.696074356000054 ], [ -82.240343460999952, 28.695936442000061 ], [ -82.240435220999984, 28.695698900000025 ], [ -82.240496416999974, 28.695549581000023 ], [ -82.240518845999986, 28.69526694700005 ], [ -82.240647115999934, 28.695098757000039 ], [ -82.240785821999964, 28.694924031000028 ], [ -82.240969560999986, 28.694737133000046 ], [ -82.241059510999946, 28.694660962000057 ], [ -82.241126029999975, 28.694619381000052 ], [ -82.241180831999941, 28.694595099000026 ], [ -82.24124151999996, 28.694574261000071 ], [ -82.241327672999944, 28.694551650000051 ], [ -82.241396228999974, 28.694544617000076 ], [ -82.241476396999985, 28.694535760000065 ], [ -82.241506815999969, 28.694538799000043 ], [ -82.24166463399996, 28.694540683000071 ], [ -82.242038984999965, 28.694602205000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.244326895999961, 28.703243957000041 ], [ -82.244584523999947, 28.703196112000057 ], [ -82.245535616999973, 28.702896906000035 ], [ -82.245700481999961, 28.702806582000051 ], [ -82.245749056999955, 28.702775517000077 ], [ -82.245886912999936, 28.702784798000039 ], [ -82.247021792999988, 28.702802066000061 ], [ -82.247754877999967, 28.702795307000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.196817713999963, 28.690929845000028 ], [ -82.19697144099996, 28.690944165000076 ], [ -82.197137249999969, 28.690956119000077 ], [ -82.198488384999962, 28.690946203000067 ], [ -82.200643080999953, 28.690956792000065 ], [ -82.202900395999961, 28.690961583000046 ], [ -82.203462410999975, 28.690962779000074 ], [ -82.203890276999971, 28.690960096000026 ], [ -82.204919467999957, 28.690954463000025 ], [ -82.206772017999981, 28.690947567000023 ], [ -82.208114592999948, 28.690941431000056 ], [ -82.208232561999978, 28.690949406000072 ], [ -82.208408374999976, 28.690969529000029 ], [ -82.208581884999944, 28.690993736000053 ], [ -82.208773923999956, 28.691032187000076 ], [ -82.208956954999962, 28.691070565000075 ], [ -82.20914695099998, 28.691130068000064 ], [ -82.209335267999961, 28.691195554000046 ], [ -82.209507551999934, 28.691265581000039 ], [ -82.209671915999934, 28.691342822000024 ], [ -82.209836291999977, 28.691426181000054 ], [ -82.209993746999942, 28.691517709000038 ], [ -82.210153537999986, 28.69162146900004 ], [ -82.210294824999949, 28.691723220000029 ], [ -82.210535777999951, 28.691932899000051 ], [ -82.211281859999985, 28.692604730000028 ], [ -82.211508923999986, 28.692806272000041 ], [ -82.211965406, 28.693227708000052 ], [ -82.21218319999997, 28.693419067000036 ], [ -82.212936269999943, 28.694105153000066 ], [ -82.213675438999985, 28.694774940000059 ], [ -82.214691521999953, 28.695695129000057 ], [ -82.215164222999988, 28.696118567000042 ], [ -82.215732000999935, 28.696660135000059 ], [ -82.216907139999989, 28.69786352400007 ], [ -82.21727803899995, 28.698262646000046 ], [ -82.217947867999953, 28.698928442000067 ], [ -82.218602715999964, 28.699616693000053 ], [ -82.219861417999937, 28.700928006000026 ], [ -82.220183593999934, 28.701245624000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170076176999942, 28.671577125000056 ], [ -82.170084666999969, 28.670890506000035 ], [ -82.170091815999967, 28.669586677000041 ], [ -82.170093030999965, 28.668907219000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170057185999951, 28.674259405000043 ], [ -82.17005901999994, 28.673861865000049 ], [ -82.17005624799998, 28.673678389000031 ], [ -82.170076176999942, 28.671577125000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.180129589999979, 28.682265041000051 ], [ -82.180160476999959, 28.682094535000033 ], [ -82.180153888999939, 28.681888336000043 ], [ -82.180184567999959, 28.681596856000056 ], [ -82.180171974999951, 28.681525388000068 ], [ -82.180162498999948, 28.681453916000066 ], [ -82.180124948999946, 28.681374232000053 ], [ -82.180071764, 28.681267074000061 ], [ -82.179984301, 28.681170961000078 ], [ -82.179756337999947, 28.680956808000076 ], [ -82.179609539999944, 28.680803035000054 ], [ -82.179425132999938, 28.680533836000052 ], [ -82.179296911999984, 28.680303053000046 ], [ -82.179265654999938, 28.680256354000051 ], [ -82.179231306999952, 28.68022615700005 ], [ -82.179190752999943, 28.680212463000032 ], [ -82.179115889999935, 28.680190567000068 ], [ -82.179028560999939, 28.680171436000023 ], [ -82.178807111999959, 28.680119489000049 ], [ -82.178763406999963, 28.680086553000024 ], [ -82.178725896999936, 28.680028866000043 ], [ -82.178703968999969, 28.679968407000047 ], [ -82.178675802999976, 28.679905207000047 ], [ -82.178625783999962, 28.679825540000024 ], [ -82.178572581999958, 28.679707385000029 ], [ -82.178525656999966, 28.679613965000044 ], [ -82.178500574999987, 28.679531516000054 ], [ -82.178478559999974, 28.679418818000045 ], [ -82.178473043999986, 28.67876439500003 ], [ -82.178479911999943, 28.678376783000033 ], [ -82.178492167999934, 28.67825029200003 ], [ -82.178504517999954, 28.67817879100005 ], [ -82.17851688099995, 28.678115538000043 ], [ -82.178507438999986, 28.678063311000074 ], [ -82.178470552999954, 28.678034495000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170058884999946, 28.676214774000073 ], [ -82.170055441999978, 28.676168835000055 ], [ -82.170057185999951, 28.674259405000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170058884999946, 28.676214774000073 ], [ -82.171433521999973, 28.676222086000053 ], [ -82.172873902999982, 28.67624225000003 ], [ -82.173675156999934, 28.676254972000038 ], [ -82.174675969999953, 28.676286677000064 ], [ -82.175894288999984, 28.676321294000047 ], [ -82.175968023999985, 28.676324811000029 ], [ -82.176024837999989, 28.676339793000068 ], [ -82.176062305999949, 28.676368036000042 ], [ -82.176095146999955, 28.676411342000051 ], [ -82.176103436999938, 28.676469127000075 ], [ -82.176103521999948, 28.676519700000028 ], [ -82.176098794999973, 28.677881909000064 ], [ -82.176107243999979, 28.677913372000035 ], [ -82.176121989999956, 28.677942976000054 ], [ -82.176140912999983, 28.677959613000041 ], [ -82.176157731999979, 28.677974403000064 ], [ -82.176185038999961, 28.677983624000035 ], [ -82.176218639999945, 28.677990986000054 ], [ -82.17626482999998, 28.677992777000043 ], [ -82.177230559999941, 28.678004476000069 ], [ -82.17833484199997, 28.678012284000033 ], [ -82.178435615999945, 28.678014002000054 ], [ -82.178470552999954, 28.678034495000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129065848999971, 28.655016571000033 ], [ -82.12906570499996, 28.654898954000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128083833999938, 28.665047013000049 ], [ -82.128238847999967, 28.665044397000031 ], [ -82.128578942, 28.665048543000069 ], [ -82.129667134999977, 28.665030263000062 ], [ -82.130298813999957, 28.665026346000047 ], [ -82.13166728899995, 28.665013031000058 ], [ -82.132081204999963, 28.665014814000074 ], [ -82.133042853999939, 28.664998570000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124940416999948, 28.664946999000051 ], [ -82.125166570999966, 28.664953553000032 ], [ -82.125488956999959, 28.664979727000059 ], [ -82.125707474999956, 28.665014247000045 ], [ -82.12595930599997, 28.665039109000077 ], [ -82.126258862999975, 28.665042612000036 ], [ -82.126572256999964, 28.665046444000041 ], [ -82.126885843999958, 28.665048902000024 ], [ -82.12724054499995, 28.665045131000056 ], [ -82.127522165999949, 28.665044178000073 ], [ -82.127851146999944, 28.665043524000055 ], [ -82.127937287999941, 28.66504636600007 ], [ -82.128083833999938, 28.665047013000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122180323999942, 28.66258184000003 ], [ -82.122167909999973, 28.66138588900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119821984999987, 28.662749516000076 ], [ -82.120843202999936, 28.662745943000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118779492999977, 28.662749695000059 ], [ -82.119821984999987, 28.662749516000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116718028999969, 28.662744875000044 ], [ -82.118779492999977, 28.662749695000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121484707999969, 28.666309118000072 ], [ -82.12126601999995, 28.666304609000065 ], [ -82.121189570999945, 28.666304678000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121484707999969, 28.666309118000072 ], [ -82.121483454999975, 28.666765429000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122115864999955, 28.666311686000029 ], [ -82.121484707999969, 28.666309118000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122115864999955, 28.666311686000029 ], [ -82.122118512999975, 28.667062792000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123464488999957, 28.665626782000061 ], [ -82.123458190999941, 28.666319877000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123458190999941, 28.666319877000035 ], [ -82.123458745999983, 28.666793435000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12414446799994, 28.666327089000049 ], [ -82.124147046999951, 28.667006064000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12414446799994, 28.666327089000049 ], [ -82.123458190999941, 28.666319877000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124150379999946, 28.665309404000027 ], [ -82.124836647999985, 28.66531347800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124150379999946, 28.665309404000027 ], [ -82.12415062599996, 28.665517958000066 ], [ -82.124152690999949, 28.665761008000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124152690999949, 28.665761008000061 ], [ -82.124773177999941, 28.665763573000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124152690999949, 28.665761008000061 ], [ -82.12414446799994, 28.666327089000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124783314999945, 28.667473746000042 ], [ -82.124147147999963, 28.667469431000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124147046999951, 28.667006064000077 ], [ -82.124147147999963, 28.667469431000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122819853999943, 28.667975365000075 ], [ -82.122819250999953, 28.667458390000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122119191999957, 28.667456574000028 ], [ -82.122118512999975, 28.667062792000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122819250999953, 28.667458390000036 ], [ -82.122119191999957, 28.667456574000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122119721, 28.667912294000075 ], [ -82.122119191999957, 28.667456574000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122118512999975, 28.667062792000024 ], [ -82.121596470999975, 28.667060125000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116223144999935, 28.661271916000032 ], [ -82.116765171999987, 28.661271449000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11528058, 28.661268882000059 ], [ -82.115277412999944, 28.660364562000041 ], [ -82.115281723999942, 28.659330156000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11671596399998, 28.657624923000071 ], [ -82.117936122999936, 28.657636298000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116764875999934, 28.658548403000054 ], [ -82.116760133999946, 28.658197046000055 ], [ -82.116740024999956, 28.657730503000039 ], [ -82.11671596399998, 28.657624923000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118765339999982, 28.65856778400007 ], [ -82.11875932099997, 28.657644301000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116764875999934, 28.658548403000054 ], [ -82.117907684999977, 28.658557014000053 ], [ -82.118765339999982, 28.65856778400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117936122999936, 28.657636298000057 ], [ -82.117933941, 28.656732985000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994774456999949, 28.651666808000073 ], [ -81.994230540999979, 28.651669576000074 ], [ -81.993740384999967, 28.651655607000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992686603999971, 28.650027074000036 ], [ -81.992738503999988, 28.650090668000075 ], [ -81.992764453999939, 28.650133912000058 ], [ -81.99276733399995, 28.650182241000039 ], [ -81.992767326999967, 28.650276356000063 ], [ -81.992775949999952, 28.65068079200006 ], [ -81.992772780999985, 28.650818714000025 ], [ -81.992769593999981, 28.651181347000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992769593999981, 28.651181347000033 ], [ -81.992766402999962, 28.651574664000066 ], [ -81.992798022999978, 28.651630455000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992686603999971, 28.650027074000036 ], [ -81.992522723999969, 28.65014717300005 ], [ -81.99161397599994, 28.650754530000029 ], [ -81.991011366999942, 28.651158925000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992769593999981, 28.651181347000033 ], [ -81.99120742499997, 28.651186833000054 ], [ -81.991011366999942, 28.651158925000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991011366999942, 28.651158925000061 ], [ -81.990897514999972, 28.651253761000078 ], [ -81.990815278999946, 28.651361886000075 ], [ -81.990761650999957, 28.651456479000046 ], [ -81.990724955999951, 28.651541116000033 ], [ -81.990693903999954, 28.651640689000033 ], [ -81.990679784999941, 28.651747731000057 ], [ -81.990674128999956, 28.651882157000045 ], [ -81.990671290999956, 28.652058903000068 ], [ -81.990671273999965, 28.652250585000047 ], [ -81.990671258999953, 28.652424842000073 ], [ -81.990668400999937, 28.652825632000031 ], [ -81.990671199999952, 28.653087016000029 ], [ -81.990671170999974, 28.653418103000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993784760999972, 28.649901026000066 ], [ -81.993749941999965, 28.650489604000029 ], [ -81.993734105999977, 28.650913604000039 ], [ -81.993740384999967, 28.651655607000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993784760999972, 28.649901026000066 ], [ -81.993012453999938, 28.649897366000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994806166999979, 28.649906647000023 ], [ -81.993784760999972, 28.649901026000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994806166999979, 28.649906647000023 ], [ -81.99479347099998, 28.650843912000028 ], [ -81.994774456999949, 28.651666808000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995846544999949, 28.649909474000026 ], [ -81.994806166999979, 28.649906647000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995846544999949, 28.649909474000026 ], [ -81.995843366999964, 28.6503 ], [ -81.995827531999964, 28.650899737000032 ], [ -81.995789553999941, 28.651666843000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996924869999987, 28.649917870000024 ], [ -81.995846544999949, 28.649909474000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996924869999987, 28.649917870000024 ], [ -81.996909034999987, 28.650763083000072 ], [ -81.996883708999974, 28.651678031000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996924869999987, 28.649917870000024 ], [ -81.99690908599996, 28.64902244700005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99690908599996, 28.64902244700005 ], [ -81.995859228999961, 28.649025207000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995846544999949, 28.649909474000026 ], [ -81.995850727999937, 28.64953569100004 ], [ -81.995859228999961, 28.649025207000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994837831999973, 28.649036331000048 ], [ -81.994841011999938, 28.648654172000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995859228999961, 28.649025207000079 ], [ -81.994837831999973, 28.649036331000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994780846999959, 28.644360598000048 ], [ -81.994768341999986, 28.643735598000035 ], [ -81.99475949899994, 28.642579332000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995794399999966, 28.644350592000023 ], [ -81.994780846999959, 28.644360598000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994801461999941, 28.64524877100007 ], [ -81.994780846999959, 28.644360598000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99684734899995, 28.645131675000073 ], [ -81.998516938999956, 28.645089862000077 ], [ -81.998784316999945, 28.64508451100005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996834724999985, 28.644269724000026 ], [ -81.999615877999986, 28.644257302000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996866291999936, 28.646135890000039 ], [ -81.998127982999961, 28.64613870200003 ], [ -81.998448334999978, 28.646137831000033 ], [ -81.999079003999952, 28.646132188000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996924869999987, 28.649917870000024 ], [ -81.997920976999978, 28.649915099000054 ], [ -81.998918897999943, 28.649916474000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996896465999953, 28.648023812000076 ], [ -81.998177151999982, 28.648012677000054 ], [ -81.999104598999963, 28.648007387000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998918897999943, 28.649916474000065 ], [ -81.999027757999954, 28.648772717000043 ], [ -81.999104598999963, 28.648007387000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996877517999962, 28.647167440000032 ], [ -81.997848301999966, 28.647161880000056 ], [ -81.999085398999966, 28.647151686000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999104598999963, 28.648007387000064 ], [ -81.999085398999966, 28.647151686000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999085398999966, 28.647151686000029 ], [ -81.999088603999951, 28.646688535000067 ], [ -81.999079003999952, 28.646132188000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999104598999963, 28.648007387000064 ], [ -81.999895351999953, 28.647996093000074 ], [ -82.000967829, 28.647990442000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000967829, 28.647990442000037 ], [ -82.000974223999947, 28.647120620000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117933941, 28.656732985000076 ], [ -82.117930781999974, 28.655855546000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116712795999945, 28.656730203000052 ], [ -82.117933941, 28.656732985000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116712795999945, 28.656730203000052 ], [ -82.116711924999947, 28.655943001000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11671596399998, 28.657624923000071 ], [ -82.116712795999945, 28.656730203000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120786219999957, 28.676552619000063 ], [ -82.120786488999954, 28.676787576000038 ], [ -82.120804867999937, 28.679584272000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120813478999935, 28.682123034000028 ], [ -82.120814738999968, 28.683220712000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120804867999937, 28.679584272000056 ], [ -82.121202040999947, 28.679588418000037 ], [ -82.123981360999949, 28.67958290100006 ], [ -82.125118488999988, 28.67958358900006 ], [ -82.126941701999954, 28.679605330000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126941701999954, 28.679605330000072 ], [ -82.127408403999937, 28.679612391000035 ], [ -82.129164663999973, 28.67964822700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120829519999972, 28.685955800000045 ], [ -82.120913034999944, 28.685945078000032 ], [ -82.121130439999945, 28.685976830000072 ], [ -82.121500773999969, 28.685980047000044 ], [ -82.121641616999966, 28.685940875000028 ], [ -82.121854953999957, 28.685937133000039 ], [ -82.122056245999943, 28.685958250000056 ], [ -82.122354145999964, 28.685979279000037 ], [ -82.122575518999952, 28.685961331000044 ], [ -82.122941827999966, 28.685964548000072 ], [ -82.123545664999938, 28.685995944000069 ], [ -82.12391248299997, 28.686035470000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120809923999957, 28.69430802200003 ], [ -82.12082068999996, 28.693165043000079 ], [ -82.120818325999949, 28.691106278000063 ], [ -82.120817657999964, 28.69052414500004 ], [ -82.120811329999981, 28.688518627000064 ], [ -82.120829519999972, 28.685955800000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119215664999956, 28.714129705000062 ], [ -82.119483306999939, 28.713415892000057 ], [ -82.119838142999981, 28.712460704000023 ], [ -82.120076582999957, 28.711814074000074 ], [ -82.120274673999972, 28.711297763000061 ], [ -82.120519757999944, 28.710660962000077 ], [ -82.120647419999955, 28.710342557000047 ], [ -82.120667853999976, 28.710299647000056 ], [ -82.120754686999987, 28.710103177000065 ], [ -82.120946201999971, 28.709647014000041 ], [ -82.121071340999947, 28.709362471000077 ], [ -82.121342097999957, 28.708793368000045 ], [ -82.121617995999941, 28.708242317000042 ], [ -82.121986318999973, 28.707528776000061 ], [ -82.122533756999985, 28.706485918000055 ], [ -82.123431359999984, 28.704789198000071 ], [ -82.123958138999967, 28.70377733600003 ], [ -82.124632560999942, 28.702496777000079 ], [ -82.125071941999977, 28.70165662200003 ], [ -82.125771867999958, 28.700315084000067 ], [ -82.126816634999955, 28.698329863000026 ], [ -82.127003093999974, 28.697966247000068 ], [ -82.127884346999963, 28.696297206000054 ], [ -82.129467949999935, 28.693275310000047 ], [ -82.129988992999984, 28.692286072000059 ], [ -82.130650491999972, 28.691023553000036 ], [ -82.131322185999977, 28.689738447000025 ], [ -82.13175380499996, 28.68891859200005 ], [ -82.132451015999948, 28.687588307000055 ], [ -82.133127782999964, 28.686300927000048 ], [ -82.133595122999964, 28.685408797000036 ], [ -82.134320375999948, 28.684024296000075 ], [ -82.134746832999951, 28.683206695000024 ], [ -82.13507882, 28.68258558000008 ], [ -82.135474614999964, 28.681822185000044 ], [ -82.136041502999944, 28.680740324000055 ], [ -82.136552212999959, 28.679773644000079 ], [ -82.137042469999983, 28.678834072000029 ], [ -82.137430584999947, 28.678090995000048 ], [ -82.137854459999971, 28.677293702000043 ], [ -82.138278305999961, 28.676478350000025 ], [ -82.138564283999983, 28.675938539000072 ], [ -82.138832363999938, 28.675416805000054 ], [ -82.139082449999989, 28.674940542000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122763793999979, 28.664933510000026 ], [ -82.12477955199995, 28.66494963100007 ], [ -82.124940416999948, 28.664946999000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122763793999979, 28.664933510000026 ], [ -82.122761064999963, 28.665189747000056 ], [ -82.122761204999961, 28.665309856000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122761204999961, 28.665309856000079 ], [ -82.124150379999946, 28.665309404000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122761204999961, 28.665309856000079 ], [ -82.122758558999976, 28.665635490000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123458190999941, 28.666319877000035 ], [ -82.122762383999941, 28.66632144700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122762383999941, 28.66632144700003 ], [ -82.122398553999972, 28.666312998000024 ], [ -82.122115864999955, 28.666311686000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122758558999976, 28.665635490000057 ], [ -82.122762383999941, 28.66632144700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122762383999941, 28.66632144700003 ], [ -82.122749885999951, 28.666787935000059 ], [ -82.122749853999949, 28.666789124000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137225340999976, 28.756217707000076 ], [ -82.137228474999972, 28.754496182000025 ], [ -82.137220536999962, 28.752237966000052 ], [ -82.137178063999954, 28.750256571000079 ], [ -82.137166578999938, 28.749096715000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137225340999976, 28.756217707000076 ], [ -82.139379137999981, 28.756215503000078 ], [ -82.141437227999972, 28.756226299000048 ], [ -82.14198605699994, 28.756232472000079 ], [ -82.142333832999952, 28.75621523500007 ], [ -82.14391328399995, 28.756213562000028 ], [ -82.144165365999982, 28.756218919000048 ], [ -82.144216412999981, 28.756216051000024 ], [ -82.144277874999943, 28.75620893200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137225340999976, 28.756217707000076 ], [ -82.137211806999971, 28.758067882000034 ], [ -82.137203721999981, 28.759206667000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137203721999981, 28.759206667000058 ], [ -82.137201439999956, 28.759901182000078 ], [ -82.137190707999935, 28.761455552000029 ], [ -82.137192791999951, 28.763048149000042 ], [ -82.137184361999971, 28.764411316000064 ], [ -82.137184055999967, 28.766129883000076 ], [ -82.137183432999961, 28.767605511000056 ], [ -82.137177933999965, 28.769256600000062 ], [ -82.13718242799996, 28.770741221000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13718242799996, 28.770741221000037 ], [ -82.137185876, 28.771425044000068 ], [ -82.137178942999981, 28.771980660000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137178942999981, 28.771980660000054 ], [ -82.138677578999989, 28.771983629000033 ], [ -82.139415410999959, 28.771987369000044 ], [ -82.140340758999969, 28.771983841000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137178942999981, 28.771980660000054 ], [ -82.137182719999942, 28.772916420000058 ], [ -82.137183000999983, 28.773863149000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137183000999983, 28.773863149000078 ], [ -82.137805895999975, 28.773819776000039 ], [ -82.137946321999948, 28.773824130000037 ], [ -82.138006002999987, 28.773826600000064 ], [ -82.138105580999934, 28.773833248000074 ], [ -82.138320060999945, 28.773848774000044 ], [ -82.138616267999964, 28.773886711000046 ], [ -82.138789906999989, 28.773909027000059 ], [ -82.138879285999963, 28.77392468100004 ], [ -82.139012030999936, 28.773913297000036 ], [ -82.139813653999965, 28.773878729000046 ], [ -82.140137845999959, 28.77384240300006 ], [ -82.140196559999936, 28.773837842000034 ], [ -82.140291030999947, 28.773842244000036 ], [ -82.140548929999966, 28.773871217000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137183000999983, 28.773863149000078 ], [ -82.137183406999952, 28.774173570000073 ], [ -82.137183598999968, 28.774319783000067 ], [ -82.137183759999971, 28.774443501000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137183759999971, 28.774443501000064 ], [ -82.137303770999949, 28.774454625000033 ], [ -82.140111074999936, 28.774467209000079 ], [ -82.141519283999969, 28.774479799000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137206241999934, 28.77796608500006 ], [ -82.137180904, 28.778114573000039 ], [ -82.137150474999942, 28.778274313000054 ], [ -82.137155910999979, 28.778526244000034 ], [ -82.13716693799995, 28.779149325000049 ], [ -82.137176088999979, 28.780289776000075 ], [ -82.137167801999965, 28.78176090900007 ], [ -82.137169120999943, 28.782768652000073 ], [ -82.137161538999976, 28.782829394000032 ], [ -82.137143704999971, 28.782858655000041 ], [ -82.137113115999966, 28.782896927000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137206241999934, 28.77796608500006 ], [ -82.137216513999988, 28.778013312000041 ], [ -82.13724721799997, 28.778062768000041 ], [ -82.137285586999951, 28.778116716000056 ], [ -82.137326504999976, 28.778168411000024 ], [ -82.137382745999957, 28.77822234000007 ], [ -82.138471590999984, 28.779121001000078 ], [ -82.139629498999966, 28.780100560000051 ], [ -82.140378410999972, 28.78070937800004 ], [ -82.141827731999967, 28.781913557000053 ], [ -82.142742846999965, 28.782679648000055 ], [ -82.144317548999936, 28.784038878000047 ], [ -82.145864160999963, 28.78536662700003 ], [ -82.145928096999967, 28.785440790000052 ], [ -82.145984389999967, 28.785526207000032 ], [ -82.146022830999982, 28.785627389000069 ], [ -82.146028031999947, 28.785694866000028 ], [ -82.146035792999953, 28.785766840000065 ], [ -82.14604032799997, 28.787188472000025 ], [ -82.146042439999974, 28.788704582000037 ], [ -82.146031599999958, 28.790087991000064 ], [ -82.146007519999955, 28.791131749000044 ], [ -82.146002346999978, 28.79291779700003 ], [ -82.145994605999988, 28.794692600000076 ], [ -82.145991453999955, 28.796096245000058 ], [ -82.145992939999985, 28.797162468000067 ], [ -82.145993810999983, 28.797787807000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137183759999971, 28.774443501000064 ], [ -82.13718823499994, 28.775912374000029 ], [ -82.137195218999977, 28.777347503000044 ], [ -82.137192436999953, 28.777727171000038 ], [ -82.137187682, 28.777875451000057 ], [ -82.137206241999934, 28.77796608500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149757091999959, 28.800349564000044 ], [ -82.149973526999986, 28.80041105600003 ], [ -82.150046691999989, 28.800435131000029 ], [ -82.150116810999975, 28.800459209000053 ], [ -82.150199124999972, 28.800488641000072 ], [ -82.150290591999976, 28.800526117000061 ], [ -82.150583323999967, 28.800670728000057 ], [ -82.151455526999939, 28.801171663000048 ], [ -82.151601921999941, 28.801262756000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153690944999937, 28.800363931000049 ], [ -82.153538753999953, 28.800476833000062 ], [ -82.153450640999949, 28.800561683000069 ], [ -82.153377497999941, 28.800640742000041 ], [ -82.153330794999988, 28.800736141000073 ], [ -82.153257389999965, 28.800923217000047 ], [ -82.153204544999937, 28.801142850000076 ], [ -82.153168497999957, 28.801497182000048 ], [ -82.153181428999972, 28.802004447000058 ], [ -82.153181549999942, 28.802087652000068 ], [ -82.153163340999981, 28.802138669000044 ], [ -82.153142065999987, 28.802176269000029 ], [ -82.15310249199996, 28.80220315400004 ], [ -82.153056814999957, 28.802224677000027 ], [ -82.152962420999984, 28.802270413000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.152962420999984, 28.802270413000031 ], [ -82.15302047299997, 28.802377708000051 ], [ -82.153075494999939, 28.802495743000065 ], [ -82.153112229999977, 28.802611114000058 ], [ -82.153139818999989, 28.802723811000078 ], [ -82.15316435699998, 28.802833829000065 ], [ -82.153173749999951, 28.803005596000048 ], [ -82.153174271999944, 28.803362570000047 ], [ -82.153174529999944, 28.803693011000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.152645424999946, 28.80368949800004 ], [ -82.152642292999985, 28.803141909000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.151601921999941, 28.801262756000028 ], [ -82.151845894999951, 28.801402052000071 ], [ -82.152038012999981, 28.801503827000033 ], [ -82.152175240999952, 28.801576142000044 ], [ -82.152286075999939, 28.801636261000056 ], [ -82.152400943999965, 28.801706379000052 ], [ -82.152547328999958, 28.801806548000059 ], [ -82.152644950999957, 28.801884273000042 ], [ -82.152751750999983, 28.801986145000058 ], [ -82.152839158999939, 28.802082824000024 ], [ -82.152913539999986, 28.802184580000073 ], [ -82.152962420999984, 28.802270413000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.152642292999985, 28.803141909000033 ], [ -82.152643950999959, 28.802944870000033 ], [ -82.152634116999934, 28.802871206000077 ], [ -82.152612638999983, 28.802814689000058 ], [ -82.15258726999997, 28.802759891000051 ], [ -82.152554131999977, 28.802711953000028 ], [ -82.152507377999939, 28.802664031000063 ], [ -82.152452854999979, 28.802624687000048 ], [ -82.152386655999976, 28.802581926000073 ], [ -82.152279592999946, 28.80252893200003 ], [ -82.15216669199998, 28.802474233000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.15216669199998, 28.802474233000055 ], [ -82.151538024999979, 28.802219647000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.152316075999977, 28.802201639000032 ], [ -82.15216669199998, 28.802474233000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.151395552999986, 28.803237548000027 ], [ -82.151192924999975, 28.803011610000055 ], [ -82.150970914999959, 28.802833670000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.152642292999985, 28.803141909000033 ], [ -82.151753330999952, 28.803141199000038 ], [ -82.151683308999964, 28.803144703000044 ], [ -82.151624959999936, 28.803149909000069 ], [ -82.151576342999988, 28.803158530000076 ], [ -82.151529682999978, 28.803175717000045 ], [ -82.151463587999956, 28.803204917000073 ], [ -82.151426652999987, 28.803222093000045 ], [ -82.151395552999986, 28.803237548000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.151395552999986, 28.803237548000027 ], [ -82.151343097999984, 28.80328386900004 ], [ -82.151292592999937, 28.803331899000057 ], [ -82.151257634, 28.803369632000056 ], [ -82.151224633999959, 28.803417643000046 ], [ -82.151199417999976, 28.803467359000024 ], [ -82.151174234999985, 28.803539349000062 ], [ -82.151164608999977, 28.803609609000034 ], [ -82.151170494999974, 28.803643869000041 ], [ -82.15118414799997, 28.803669555000056 ], [ -82.151211408999984, 28.803688370000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153174529999944, 28.803693011000064 ], [ -82.153185698999948, 28.804924655000036 ], [ -82.153196439999988, 28.805306979000079 ], [ -82.153228647999981, 28.805716009000037 ], [ -82.153270438999982, 28.806026510000038 ], [ -82.153321883999979, 28.806287739000027 ], [ -82.153383035, 28.806533967000064 ], [ -82.153451451999956, 28.806760910000037 ], [ -82.153485662999969, 28.806876524000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148498145999952, 28.809086300000047 ], [ -82.148464067999953, 28.80909543100006 ], [ -82.148203395999985, 28.809106529000076 ], [ -82.147877165999944, 28.809101694000049 ], [ -82.147812316999989, 28.809103496000034 ], [ -82.147765161999985, 28.809110471000054 ], [ -82.147737650999943, 28.809112232000075 ], [ -82.147714901999962, 28.809120694000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148538241999972, 28.806873329000041 ], [ -82.148529090999943, 28.807349331000069 ], [ -82.148534720999976, 28.808893700000056 ], [ -82.148535354999979, 28.80899365700003 ], [ -82.14852168799996, 28.809057715000051 ], [ -82.148498145999952, 28.809086300000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148538241999972, 28.806873329000041 ], [ -82.149817175999942, 28.806925454000066 ], [ -82.150326305999954, 28.806934926000054 ], [ -82.150986407999937, 28.806908255000053 ], [ -82.153055293999955, 28.806892005000066 ], [ -82.153359233999936, 28.806885234000049 ], [ -82.153485662999969, 28.806876524000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145382435999977, 28.806944335000026 ], [ -82.145795748999944, 28.806912167000064 ], [ -82.146470925999949, 28.806894628000066 ], [ -82.147537977999946, 28.806874426000036 ], [ -82.148538241999972, 28.806873329000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147714901999962, 28.809120694000057 ], [ -82.147672797999974, 28.809157868000057 ], [ -82.147643423999966, 28.809185032000073 ], [ -82.147621852999976, 28.809217942000032 ], [ -82.147608157999969, 28.809261229000072 ], [ -82.147596563999969, 28.80940144300007 ], [ -82.147611620999953, 28.810061738000059 ], [ -82.147603550999975, 28.810562765000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.144881599999962, 28.810189421000075 ], [ -82.144917120999935, 28.810160299000074 ], [ -82.144972995999979, 28.810147432000065 ], [ -82.145499796999957, 28.810149829000068 ], [ -82.145698947999961, 28.810156773000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145153730999937, 28.808324064000033 ], [ -82.145091005999973, 28.808310982000023 ], [ -82.145029788999977, 28.808308417000035 ], [ -82.144965612999954, 28.808325582000066 ], [ -82.144908894999958, 28.808337478000055 ], [ -82.14486263699996, 28.808355938000034 ], [ -82.144832808, 28.808378325000035 ], [ -82.144800448999945, 28.808446749000041 ], [ -82.14478631999998, 28.808516565000048 ], [ -82.144786525999962, 28.808665113000075 ], [ -82.144783449999977, 28.809379222000075 ], [ -82.144810215999939, 28.809999338000068 ], [ -82.144881599999962, 28.810189421000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.144881599999962, 28.810189421000075 ], [ -82.144858794999948, 28.810229715000048 ], [ -82.144846166999969, 28.810281183000029 ], [ -82.14480154599994, 28.810573786000077 ], [ -82.144793241999935, 28.810629144000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142866044999948, 28.810623818000067 ], [ -82.144793241999935, 28.810629144000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141184305999957, 28.810776804000056 ], [ -82.142390733999946, 28.810718813000051 ], [ -82.142416097999956, 28.810713629000077 ], [ -82.142435987999988, 28.810701232000042 ], [ -82.14245761899997, 28.810664839000026 ], [ -82.142491055999983, 28.810605764000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142491055999983, 28.810605764000059 ], [ -82.142530877999945, 28.810622328000079 ], [ -82.142570676999981, 28.810620441000026 ], [ -82.142866044999948, 28.810623818000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142850884999973, 28.811795393000068 ], [ -82.143227969999941, 28.811811598000077 ], [ -82.143491928999936, 28.811822388000053 ], [ -82.143747480999934, 28.811812891000045 ], [ -82.143963244999952, 28.811812661000033 ], [ -82.144174816999964, 28.81181059000005 ], [ -82.144528835999949, 28.811810211000079 ], [ -82.144792841999958, 28.811854207000067 ], [ -82.145017034999967, 28.811890866000056 ], [ -82.145052710999948, 28.811936952000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141273773999956, 28.811996309000051 ], [ -82.141429319999986, 28.812389126000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141273773999956, 28.811996309000051 ], [ -82.141466482999988, 28.811986882000042 ], [ -82.141722034999987, 28.811977390000038 ], [ -82.141931510999939, 28.811973480000063 ], [ -82.142132600999958, 28.811965888000032 ], [ -82.142450971999949, 28.811937878000037 ], [ -82.142849000999945, 28.811950372000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142837446999977, 28.813183759000026 ], [ -82.142953327999976, 28.813182704000042 ], [ -82.143223563999982, 28.813184263000039 ], [ -82.144264706999934, 28.813196068000025 ], [ -82.145191645999944, 28.813223209000057 ], [ -82.14533143899996, 28.813223209000057 ], [ -82.145408771999939, 28.813199414000053 ], [ -82.145420668999975, 28.813131005000059 ], [ -82.145405796999967, 28.813041775000045 ], [ -82.145351128999948, 28.812932362000026 ], [ -82.145267477999937, 28.81272821500005 ], [ -82.145210652999936, 28.812536398000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145406744999946, 28.81587782500003 ], [ -82.145364471999983, 28.815901243000042 ], [ -82.145335330999956, 28.815915950000033 ], [ -82.145297856999946, 28.815929932000074 ], [ -82.145266211999967, 28.815941708000025 ], [ -82.14522457299995, 28.815956429000039 ], [ -82.145182929999976, 28.815968214000065 ], [ -82.145143789999963, 28.815978148000056 ], [ -82.145097969999938, 28.815985916000045 ], [ -82.145056317999945, 28.815991831000076 ], [ -82.14501299799997, 28.815996281000025 ], [ -82.144963002999987, 28.815993399000035 ], [ -82.144927172999985, 28.815991603000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.144927172999985, 28.815991603000043 ], [ -82.144845381999971, 28.815987063000023 ], [ -82.144793006999976, 28.815975970000068 ], [ -82.144751328999973, 28.815962808000052 ], [ -82.144726319999961, 28.815952560000028 ], [ -82.144704641999965, 28.815942311000072 ], [ -82.144682962, 28.815929125000025 ], [ -82.144659606999937, 28.815911540000059 ], [ -82.144639588999951, 28.815895417000036 ], [ -82.144621233999942, 28.815877826000076 ], [ -82.144601213999977, 28.815860236000049 ], [ -82.144561153999973, 28.815811848000067 ], [ -82.144506066999952, 28.815741462000062 ], [ -82.144459340999958, 28.815693083000042 ], [ -82.144407610999963, 28.815640305000045 ], [ -82.144349209999973, 28.815584599000033 ], [ -82.144302491999952, 28.815540621000025 ], [ -82.144252437999967, 28.815495179000038 ], [ -82.144115653999961, 28.815392595000048 ], [ -82.144000560999984, 28.815310532000069 ], [ -82.143876451999972, 28.815215622000039 ], [ -82.143612483999959, 28.815004134000048 ], [ -82.143450125999948, 28.814879856000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.146004790999939, 28.815013393000072 ], [ -82.145431092999956, 28.815842733000068 ], [ -82.145419016999938, 28.81586027700007 ], [ -82.145406744999946, 28.81587782500003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153485662999969, 28.806876524000074 ], [ -82.153529589999948, 28.806983559000059 ], [ -82.153553995999971, 28.807045640000069 ], [ -82.153618104999964, 28.807220055000073 ], [ -82.153660078999962, 28.807326174000025 ], [ -82.153692172999968, 28.807404138000038 ], [ -82.153716862999943, 28.807464777000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.144793241999935, 28.810629144000075 ], [ -82.144783890999975, 28.810818815000061 ], [ -82.144797266999944, 28.810868031000041 ], [ -82.144826599999988, 28.81090785300006 ], [ -82.144863907999934, 28.810938289000035 ], [ -82.144903860999989, 28.810959344000025 ], [ -82.144957124999962, 28.810980387000029 ], [ -82.145068956999978, 28.811008397000023 ], [ -82.145883422999987, 28.810995798000079 ], [ -82.14603514099997, 28.810995634000051 ], [ -82.14608571399998, 28.810995580000053 ], [ -82.146154939999974, 28.811011915000051 ], [ -82.146192233999955, 28.811032972000078 ], [ -82.146258835999959, 28.81107509800006 ], [ -82.146306805999984, 28.811117244000059 ], [ -82.14634148, 28.81116878000006 ], [ -82.146370821999938, 28.811213291000058 ], [ -82.146402849999959, 28.811276552000038 ], [ -82.146418895999943, 28.811330454000029 ], [ -82.146434961999944, 28.811398421000035 ], [ -82.146437715, 28.81146405800007 ], [ -82.146440573999939, 28.811604713000065 ], [ -82.146446367999943, 28.811942286000033 ], [ -82.146442343999979, 28.812870632000056 ], [ -82.146437249999963, 28.813034739000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.144928498999946, 28.814241132000063 ], [ -82.144933638999987, 28.814342389000046 ], [ -82.144935567999937, 28.814533176000054 ], [ -82.144933751999986, 28.814723661000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.144933751999986, 28.814723661000073 ], [ -82.144934175999936, 28.815032157000076 ], [ -82.14493465399994, 28.815377042000023 ], [ -82.144930769999974, 28.815580674000046 ], [ -82.144929080999987, 28.815865022000025 ], [ -82.144927075999988, 28.815921893000052 ], [ -82.144927172999985, 28.815991603000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.146286442999951, 28.814735059000043 ], [ -82.146221622999974, 28.81477512500004 ], [ -82.146187597999983, 28.81480087500006 ], [ -82.146144521999986, 28.814838599000041 ], [ -82.146094604999973, 28.814891485000032 ], [ -82.146004790999939, 28.815013393000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147725875999981, 28.814979111000071 ], [ -82.147914729999968, 28.814939962000039 ], [ -82.148169934999942, 28.814886198000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.146004790999939, 28.815013393000072 ], [ -82.146233567999957, 28.815139884000075 ], [ -82.146321786999977, 28.815197598000054 ], [ -82.146359712999981, 28.81521243800006 ], [ -82.146393516999979, 28.815223156000059 ], [ -82.146428144999959, 28.815223981000031 ], [ -82.14652790699995, 28.815209140000036 ], [ -82.147168024999985, 28.815091379000023 ], [ -82.147725875999981, 28.814979111000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147725875999981, 28.814979111000071 ], [ -82.147809147999965, 28.815302307000024 ], [ -82.147821515999965, 28.815418558000033 ], [ -82.147821515999965, 28.815667551000047 ], [ -82.147808621999957, 28.81684331200006 ], [ -82.147798584999975, 28.817596048000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145406744999946, 28.81587782500003 ], [ -82.145323109999936, 28.816040509000061 ], [ -82.144978773999981, 28.816677603000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956584631999988, 28.91111412600003 ], [ -81.956530494999981, 28.911132253000062 ], [ -81.956466054999964, 28.911134501000049 ], [ -81.956258428999945, 28.91111059900004 ], [ -81.955796573999976, 28.911108257000024 ], [ -81.955703095, 28.911113839000052 ], [ -81.955597418999957, 28.911102464000066 ], [ -81.955525255999987, 28.911079761000053 ], [ -81.955362886999978, 28.911036616000047 ], [ -81.955197938999959, 28.910993468000072 ], [ -81.955045878999954, 28.910952593000047 ], [ -81.954535533999945, 28.910909330000038 ], [ -81.954295845, 28.910845745000074 ], [ -81.954078756999934, 28.910809743000073 ], [ -81.953693491999957, 28.910791130000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956584631999988, 28.91111412600003 ], [ -81.956602638999982, 28.911202584000023 ], [ -81.956594868999957, 28.911293302000047 ], [ -81.956561299999976, 28.911436175000063 ], [ -81.956543228999976, 28.911501942000029 ], [ -81.95649162899997, 28.911617593000074 ], [ -81.95645035299998, 28.911699228000032 ], [ -81.956419395999944, 28.911762722000049 ], [ -81.956383285999948, 28.911817142000075 ], [ -81.956331714999976, 28.911862486000075 ], [ -81.956277567999962, 28.911905561000026 ], [ -81.95621310699994, 28.911953168000025 ], [ -81.956037787999946, 28.912048367000068 ], [ -81.95594497899998, 28.912084623000055 ], [ -81.955867640999941, 28.912109547000057 ], [ -81.955751643999974, 28.912118580000026 ], [ -81.955579727999975, 28.912119503000042 ], [ -81.955024760999947, 28.912104733000035 ], [ -81.95490102499997, 28.912127371000054 ], [ -81.954666847999988, 28.912099604000048 ], [ -81.954496365999944, 28.912065999000049 ], [ -81.954354594999984, 28.912070486000061 ], [ -81.95424632299995, 28.912099934000025 ], [ -81.95411710999997, 28.912128295000059 ], [ -81.953703753999946, 28.91216627700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956503079999948, 28.901187841000024 ], [ -81.956272866999939, 28.901351241000043 ], [ -81.956190024999955, 28.901400718000048 ], [ -81.95613246399995, 28.901434149000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954124063999984, 28.902535184000044 ], [ -81.954126342999984, 28.902685417000043 ], [ -81.954128794999974, 28.902882402000046 ], [ -81.954128710999953, 28.903072511000062 ], [ -81.954128668999942, 28.903167947000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954128668999942, 28.903167947000043 ], [ -81.954128632999982, 28.903250588000049 ], [ -81.954128217999937, 28.903463660000057 ], [ -81.954128125999944, 28.903672175000054 ], [ -81.954130221999947, 28.903802971000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954130221999947, 28.903802971000061 ], [ -81.95413019199998, 28.903873108000028 ], [ -81.954130159999977, 28.90394324600004 ], [ -81.954130086999953, 28.904110057000025 ], [ -81.954132182999956, 28.904242749000048 ], [ -81.954138626999963, 28.904284455000038 ], [ -81.954155842999967, 28.904324268000039 ], [ -81.954185984999981, 28.904362190000029 ], [ -81.954235514999937, 28.904400119000059 ], [ -81.954293671999949, 28.904419095000037 ], [ -81.954352167999957, 28.904430853000065 ], [ -81.954560010999955, 28.904428517000042 ], [ -81.95483719899994, 28.904426203000071 ], [ -81.955119855999953, 28.904423892000068 ], [ -81.955487681999955, 28.904419544000064 ], [ -81.955765065999969, 28.904414823000025 ], [ -81.956018225999969, 28.904414906000056 ], [ -81.956263571999955, 28.904417392000028 ], [ -81.956455397999946, 28.904412642000068 ], [ -81.95661264599994, 28.90441269300004 ], [ -81.956708753999976, 28.904412724000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956708753999976, 28.904412724000053 ], [ -81.956719301999954, 28.904412727000079 ], [ -81.95686072999996, 28.904405897000061 ], [ -81.957055288999982, 28.904403552000076 ], [ -81.957321928999988, 28.904401230000076 ], [ -81.957559071999981, 28.904398899000057 ], [ -81.957700305999936, 28.90439206800005 ], [ -81.957801690999986, 28.904380412000023 ], [ -81.957861056999946, 28.904370973000027 ], [ -81.957908452999959, 28.904361509000069 ], [ -81.957982662999939, 28.904341333000048 ], [ -81.958138755999983, 28.904289937000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963462732999972, 28.903404452000075 ], [ -81.963460817999987, 28.90340135100007 ], [ -81.963385087999939, 28.903289375000043 ], [ -81.963325139999938, 28.903187744000036 ], [ -81.963242359999981, 28.903069462000076 ], [ -81.96313575299996, 28.902933984000072 ], [ -81.963009418999945, 28.902794720000031 ], [ -81.96283331099994, 28.902637613000024 ], [ -81.962624678999987, 28.902489463000052 ], [ -81.962419401999966, 28.90237389300006 ], [ -81.962251135999963, 28.902296837000051 ], [ -81.962053842999978, 28.902228252000043 ], [ -81.961793291999982, 28.902154954000025 ], [ -81.961648173999947, 28.902114346000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104353964999973, 28.664889042000027 ], [ -82.104346749999934, 28.666032622000046 ], [ -82.104334143999949, 28.666486048000024 ], [ -82.104337236999982, 28.667243889000076 ], [ -82.104337346999955, 28.667354389000025 ], [ -82.104362079999987, 28.667577772000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112671488999979, 28.657551913000077 ], [ -82.112668164999945, 28.656848027000024 ], [ -82.112671263999971, 28.655195766000077 ], [ -82.112675100999979, 28.654489202000036 ], [ -82.112674721999952, 28.654134910000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10386909999994, 28.646626302000072 ], [ -82.104173522999986, 28.646604584000045 ], [ -82.104333976999953, 28.646580290000031 ], [ -82.104580208999948, 28.646541326000033 ], [ -82.105128234999938, 28.646569548000059 ], [ -82.105915746999983, 28.646586840000055 ], [ -82.108493291999935, 28.646590355000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104252169999938, 28.690450678000047 ], [ -82.102250607999963, 28.690443590000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119124264999982, 28.756186180000043 ], [ -82.120600096999965, 28.75619860200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120600096999965, 28.75619860200004 ], [ -82.122770112999945, 28.756218764000039 ], [ -82.123999905999938, 28.756219343000055 ], [ -82.124812693999957, 28.756223699000032 ], [ -82.125832023999976, 28.756202339000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120600096999965, 28.75619860200004 ], [ -82.12060902199994, 28.75634096400006 ], [ -82.120616249999955, 28.756653657000072 ], [ -82.120604335999985, 28.758239355000057 ], [ -82.120608939999954, 28.760252730000047 ], [ -82.120610601999942, 28.761699214000032 ], [ -82.120619147999946, 28.763159813000073 ], [ -82.12061165199998, 28.764604287000054 ], [ -82.120615706999956, 28.766139534000047 ], [ -82.120607656999937, 28.767103864000035 ], [ -82.120605972999954, 28.767630410000038 ], [ -82.120601944999976, 28.768110556000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120601944999976, 28.768110556000067 ], [ -82.120598159999986, 28.768800515000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120598159999986, 28.768800515000066 ], [ -82.120594507999954, 28.769544375000066 ], [ -82.120599627, 28.77010782800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120600096999965, 28.75619860200004 ], [ -82.120596685999942, 28.754672061000065 ], [ -82.120604036999964, 28.753480763000027 ], [ -82.120611731999986, 28.752586646000054 ], [ -82.120596284999976, 28.751793105000047 ], [ -82.120584748999988, 28.75025475800004 ], [ -82.120586823999986, 28.749884483000073 ], [ -82.120593742999972, 28.749580248000029 ], [ -82.120599852999987, 28.749489427000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112197905999949, 28.75616614300003 ], [ -82.115673202999972, 28.756176207000067 ], [ -82.116140177999966, 28.756175806000044 ], [ -82.117855702999975, 28.756175766000069 ], [ -82.119124264999982, 28.756186180000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978283329999954, 28.611862383000073 ], [ -81.978282981999939, 28.613559788000032 ], [ -81.978271354999947, 28.615306975000067 ], [ -81.976482579999981, 28.615296882000052 ], [ -81.976404196999965, 28.615297052000074 ], [ -81.97629219099997, 28.615297294000072 ], [ -81.976217112999962, 28.615304568000056 ], [ -81.976221888999987, 28.617007801000057 ], [ -81.976209715999971, 28.617117122000025 ], [ -81.976071484999977, 28.617118167000058 ], [ -81.976011718999985, 28.617118618000063 ], [ -81.975813852999977, 28.617120115000034 ], [ -81.974470020999945, 28.617109511000024 ], [ -81.974159693999979, 28.617099335000034 ], [ -81.973950393999985, 28.617083284000046 ], [ -81.973777979999966, 28.617063152000071 ], [ -81.973602497999934, 28.617035308000027 ], [ -81.97256901999998, 28.616872735000072 ], [ -81.972446238999964, 28.616866686000037 ], [ -81.972332218999952, 28.616873178000048 ], [ -81.97225642099994, 28.616892748000055 ], [ -81.972124688999941, 28.61696906800006 ], [ -81.971968904999983, 28.617060795000043 ], [ -81.971807855999941, 28.617109678000077 ], [ -81.971721469999977, 28.617119048000063 ], [ -81.971628446999944, 28.617118291000054 ], [ -81.969357979999984, 28.617091131000052 ], [ -81.969214271999988, 28.617103947000032 ], [ -81.969120694999958, 28.617122064000057 ], [ -81.969027533999963, 28.617149064000046 ], [ -81.968917250999937, 28.617192841000076 ], [ -81.968748007999977, 28.617266656000027 ], [ -81.968486132999942, 28.61738435500007 ], [ -81.968224257999964, 28.617502052000077 ], [ -81.967814909999959, 28.617673748000072 ], [ -81.96764230499997, 28.617728357000033 ], [ -81.967262517999984, 28.617842967000058 ], [ -81.966787298999975, 28.617985202000057 ], [ -81.966131957999949, 28.618149598000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993782412999963, 28.648999502000038 ], [ -81.992709696999952, 28.64969386000007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992375190999951, 28.649899875000074 ], [ -81.991472065999972, 28.649897787000043 ], [ -81.989988771999947, 28.649883442000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992375190999951, 28.649899875000074 ], [ -81.991075215999956, 28.65076259600005 ], [ -81.990023225999948, 28.651446252000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992611641999986, 28.649897345000056 ], [ -81.992375190999951, 28.649899875000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992689497999947, 28.649899893000054 ], [ -81.992611641999986, 28.649897345000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993012453999938, 28.649897366000062 ], [ -81.992850974999953, 28.649897358000032 ], [ -81.992689497999947, 28.649899893000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992689497999947, 28.649899893000054 ], [ -81.992686603999971, 28.650027074000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960141277999981, 28.657325211000057 ], [ -81.959975145999977, 28.65731734600007 ], [ -81.959771356999966, 28.657313378000026 ], [ -81.959494462999942, 28.657321112000034 ], [ -81.95917835299997, 28.657354484000052 ], [ -81.959110740999961, 28.657359052000061 ], [ -81.959035330999939, 28.657359030000066 ], [ -81.958962522999968, 28.657354419000058 ], [ -81.958915720999983, 28.657340643000055 ], [ -81.958866322999938, 28.657319985000072 ], [ -81.958806530999937, 28.657276388000071 ], [ -81.958770146999939, 28.657223621000071 ], [ -81.958715586999972, 28.657104334000053 ], [ -81.958642804999954, 28.657030916000053 ], [ -81.958573098999977, 28.65699649000004 ], [ -81.958477859999959, 28.656969106000076 ], [ -81.958353818999967, 28.656955392000043 ], [ -81.958198765999953, 28.656939713000043 ], [ -81.958079158999965, 28.656916230000036 ], [ -81.957997211999952, 28.656886897000049 ], [ -81.95791748299996, 28.656849747000024 ], [ -81.957817829999954, 28.656783285000074 ], [ -81.957651755999962, 28.656634740000072 ], [ -81.957538826999951, 28.656527242000038 ], [ -81.957470188999935, 28.656452973000057 ], [ -81.957408206999958, 28.656351353000048 ], [ -81.957366158999946, 28.656257553000046 ], [ -81.957346260999941, 28.656161808000036 ], [ -81.957335216, 28.656071757000063 ], [ -81.957330059999947, 28.65596165900007 ], [ -81.957326446999957, 28.655860906000044 ], [ -81.957332727999983, 28.655791929000031 ], [ -81.957353612999952, 28.655587799000045 ], [ -81.957377111999961, 28.655353852000076 ], [ -81.957382393999978, 28.655152011000041 ], [ -81.957371096999964, 28.655001219000042 ], [ -81.957355168999982, 28.654674673000045 ], [ -81.957344808999949, 28.654616665000049 ], [ -81.957313688999989, 28.654545949000067 ], [ -81.957251730999985, 28.654387667000037 ], [ -81.957207496999956, 28.654227435000053 ], [ -81.957185407999987, 28.654071119000037 ], [ -81.957174404999989, 28.653895267000053 ], [ -81.957170032999954, 28.653752634000057 ], [ -81.957167244999937, 28.653486281000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972014083999966, 28.669780656000057 ], [ -81.971304336999935, 28.670262868000066 ], [ -81.970830011999965, 28.670589428000028 ], [ -81.970307437999963, 28.670948878000047 ], [ -81.969278923, 28.671642339000073 ], [ -81.968631469999934, 28.672087916000066 ], [ -81.968007340999975, 28.672527642000034 ], [ -81.967320905999941, 28.67298217900003 ], [ -81.966498649999949, 28.673546696000074 ], [ -81.964940742999943, 28.674621934000072 ], [ -81.964358843999946, 28.675014599000065 ], [ -81.964113543999986, 28.675171437000074 ], [ -81.964062465999973, 28.67520545900004 ], [ -81.963909229999956, 28.675307180000061 ], [ -81.963666515999989, 28.675444287000062 ], [ -81.963500160999956, 28.675530313000024 ], [ -81.963295875999961, 28.675649321000037 ], [ -81.963060437999957, 28.675765267000031 ], [ -81.962776531999964, 28.675887307000039 ], [ -81.962496088999956, 28.676006292000068 ], [ -81.961907504999942, 28.676247308000029 ], [ -81.960044792999952, 28.677006945000073 ], [ -81.957984701999976, 28.677839765000044 ], [ -81.956903390999969, 28.678292373000033 ], [ -81.956779790999974, 28.678330904000063 ], [ -81.956585903999951, 28.678391901000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01323317799995, 28.677267390000054 ], [ -82.013230804999978, 28.677267379000057 ], [ -82.010812533999967, 28.677244552000047 ], [ -82.009096807999981, 28.677216516000044 ], [ -82.00799073099995, 28.677190984000049 ], [ -82.007215606999978, 28.677188468000054 ], [ -82.007160447999979, 28.677167989000054 ], [ -82.007113995999987, 28.67713726900007 ], [ -82.00708205799998, 28.67709118700003 ], [ -82.007070440999939, 28.677016942000023 ], [ -82.007076229999939, 28.676760922000028 ], [ -82.007090705999985, 28.676169516000073 ], [ -82.007096470999954, 28.675567869000076 ], [ -82.007090661999939, 28.675524347000078 ], [ -82.007070337999949, 28.675483384000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000914087999945, 28.671698714000058 ], [ -82.000913450999974, 28.670878879000043 ], [ -82.000908607999975, 28.669459885000038 ], [ -82.000905247999981, 28.668068296000058 ], [ -82.000909444999934, 28.666696608000052 ], [ -82.000897756999962, 28.664412508000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000988372999984, 28.651692011000023 ], [ -82.000966252999945, 28.653485647000025 ], [ -82.000943414999938, 28.654552326000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999669692999987, 28.651683647000027 ], [ -82.000096603999964, 28.651683647000027 ], [ -82.000988372999984, 28.651692011000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998929715999964, 28.65168643100003 ], [ -81.999669692999987, 28.651683647000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996883708999974, 28.651678031000074 ], [ -81.998929715999964, 28.65168643100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996883708999974, 28.651678031000074 ], [ -81.996883696999987, 28.652068559000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996883708999974, 28.651678031000074 ], [ -81.995789553999941, 28.651666843000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995789553999941, 28.651666843000044 ], [ -81.994774456999949, 28.651666808000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993740384999967, 28.651655607000066 ], [ -81.992798022999978, 28.651630455000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994806166999979, 28.649906647000023 ], [ -81.994837831999973, 28.649036331000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99690908599996, 28.64902244700005 ], [ -81.996896465999953, 28.648023812000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996880674999943, 28.647334809000029 ], [ -81.995903541999951, 28.647959626000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996896465999953, 28.648023812000076 ], [ -81.996880674999943, 28.647334809000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996877517999962, 28.647167440000032 ], [ -81.996877520999988, 28.647067019000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996880674999943, 28.647334809000029 ], [ -81.996877517999962, 28.647167440000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996877520999988, 28.647067019000076 ], [ -81.995821332999981, 28.647728098000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995903541999951, 28.647959626000045 ], [ -81.995862435999982, 28.647864784000035 ], [ -81.995821332999981, 28.647728098000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995903541999951, 28.647959626000045 ], [ -81.995843457999968, 28.647998678000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995894051999983, 28.648032154000077 ], [ -81.995903541999951, 28.647959626000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996896465999953, 28.648023812000076 ], [ -81.995894051999983, 28.648032154000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995843457999968, 28.647998678000079 ], [ -81.995767562999958, 28.648048886000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995894051999983, 28.648032154000077 ], [ -81.995767562999958, 28.648048886000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995859228999961, 28.649025207000079 ], [ -81.995875058999957, 28.648514734000059 ], [ -81.995884560999968, 28.648124206000034 ], [ -81.995894051999983, 28.648032154000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995821332999981, 28.647728098000073 ], [ -81.994844187999945, 28.648375224000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995767562999958, 28.648048886000026 ], [ -81.995125619999953, 28.64846170800007 ], [ -81.994841011999938, 28.648654172000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994839750999972, 28.648586666000028 ], [ -81.994839755999976, 28.648484014000076 ], [ -81.994844187999945, 28.648375224000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994839750999972, 28.648586666000028 ], [ -81.99425531199995, 28.648968999000033 ], [ -81.994056341999965, 28.649101259000076 ], [ -81.993070134999982, 28.649742208000077 ], [ -81.993012453999938, 28.649897366000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994841011999938, 28.648654172000079 ], [ -81.994839750999972, 28.648586666000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994844187999945, 28.648375224000063 ], [ -81.994607015999975, 28.648515246000045 ], [ -81.993782412999963, 28.648999502000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994844187999945, 28.648375224000063 ], [ -81.994847370999935, 28.647939507000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994847370999935, 28.647939507000046 ], [ -81.994159279999963, 28.647946174000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993789934999938, 28.647966241000063 ], [ -81.993433239999945, 28.647966224000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994159279999963, 28.647946174000026 ], [ -81.993789934999938, 28.647966241000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993782412999963, 28.648999502000038 ], [ -81.993789934999938, 28.647966241000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993433239999945, 28.647966224000072 ], [ -81.992712261999941, 28.647968420000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992709696999952, 28.64969386000007 ], [ -81.99270970699996, 28.649536154000032 ], [ -81.992712670999936, 28.648376259000031 ], [ -81.992712261999941, 28.647968420000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992725004999954, 28.647055675000047 ], [ -81.992728941999985, 28.646499272000028 ], [ -81.99272896399998, 28.646175361000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992712261999941, 28.647968420000041 ], [ -81.992725004999954, 28.647055675000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993438356999945, 28.647062432000041 ], [ -81.993441056999984, 28.646497345000057 ], [ -81.993449979, 28.646173434000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993438356999945, 28.647062432000041 ], [ -81.992725004999954, 28.647055675000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993433239999945, 28.647966224000072 ], [ -81.993438356999945, 28.647062432000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994154269999967, 28.647044612000059 ], [ -81.993438356999945, 28.647062432000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994159279999963, 28.647946174000026 ], [ -81.994146676999947, 28.647109329000045 ], [ -81.994154269999967, 28.647044612000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994847370999935, 28.647939507000046 ], [ -81.994849931999966, 28.647328053000024 ], [ -81.994852474999959, 28.647026788000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994852474999959, 28.647026788000062 ], [ -81.994154269999967, 28.647044612000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994151788999943, 28.646167599000023 ], [ -81.993449979, 28.646173434000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977463077999971, 28.640051948000064 ], [ -81.977284775999976, 28.63972767000007 ], [ -81.976724224999941, 28.638705421000054 ], [ -81.976493278999953, 28.63827507600007 ], [ -81.975739965999935, 28.636914865000051 ], [ -81.974779416999979, 28.635166630000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97191281399995, 28.629955429000063 ], [ -81.971320959999957, 28.628883251000047 ], [ -81.970561038999961, 28.627501747000053 ], [ -81.970016557999941, 28.626519433000055 ], [ -81.969782399999986, 28.626080898000055 ], [ -81.969644805999963, 28.625822086000028 ], [ -81.969543109999961, 28.625616095000055 ], [ -81.969411507999951, 28.625341442000035 ], [ -81.969309819999978, 28.625109044000055 ], [ -81.969046672, 28.624545988000079 ], [ -81.968996113999935, 28.624437575000059 ], [ -81.968334489999961, 28.622973001000048 ], [ -81.967870601999948, 28.621953622000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99272896399998, 28.646175361000076 ], [ -81.990631281999981, 28.646192699000039 ], [ -81.988619526999969, 28.646217035000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988619526999969, 28.646217035000063 ], [ -81.984402393999972, 28.646186002000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98863492199996, 28.649886926000079 ], [ -81.988633947999972, 28.649789234000025 ], [ -81.988626698999951, 28.648365578000039 ], [ -81.988619526999969, 28.646217035000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984505369999965, 28.649861414000043 ], [ -81.984321251999972, 28.649860575000048 ], [ -81.983642376999967, 28.649857478000058 ], [ -81.983422682999958, 28.649856475000036 ], [ -81.983271508999962, 28.649855784000067 ], [ -81.983131913999955, 28.64985335700004 ], [ -81.983006340999964, 28.649845235000043 ], [ -81.982914222999966, 28.649836316000062 ], [ -81.982774327999948, 28.649817919000043 ], [ -81.982688965999955, 28.649803769000073 ], [ -81.982585491999941, 28.649783589000037 ], [ -81.982491507999953, 28.649762321000026 ], [ -81.982383075999962, 28.64973420900003 ], [ -81.982309277999946, 28.649712828000077 ], [ -81.982206554999948, 28.649679930000048 ], [ -81.982122350999987, 28.64965015100006 ], [ -81.982054162999987, 28.649624111000037 ], [ -81.981976069999973, 28.649591405000024 ], [ -81.981905627999936, 28.649561128000073 ], [ -81.981823531999964, 28.649522435000051 ], [ -81.981737949999967, 28.649478970000075 ], [ -81.981665059999955, 28.649439294000047 ], [ -81.981590998999934, 28.649396335000063 ], [ -81.981520341999953, 28.649352721000071 ], [ -81.981437181999979, 28.649297877000038 ], [ -81.981380279999939, 28.649258018000069 ], [ -81.981319411999948, 28.649213135000025 ], [ -81.981260204999955, 28.64916710500006 ], [ -81.981185908999976, 28.649104272000045 ], [ -81.981136624999976, 28.64905985300004 ], [ -81.981077561999939, 28.649003789000062 ], [ -81.981020273999945, 28.648946196000054 ], [ -81.980965484999956, 28.64888785100004 ], [ -81.980902679999986, 28.648816590000024 ], [ -81.980857148999974, 28.648761654000054 ], [ -81.980816411999967, 28.648709895000025 ], [ -81.980759072999945, 28.648632330000055 ], [ -81.980715122999982, 28.648568621000038 ], [ -81.980668596999976, 28.648496488000035 ], [ -81.980626925999957, 28.648427101000038 ], [ -81.98057937599998, 28.648341302000063 ], [ -81.980541734999974, 28.648267305000047 ], [ -81.98050350799997, 28.648185297000055 ], [ -81.980468573999985, 28.648102717000029 ], [ -81.980438102999983, 28.648022946000026 ], [ -81.980408017999935, 28.647934703000033 ], [ -81.980374818999962, 28.647821495000073 ], [ -81.980348760999959, 28.647714102000066 ], [ -81.980332084999986, 28.647630701000026 ], [ -81.980316383999934, 28.647532640000065 ], [ -81.980307746999983, 28.647462867000058 ], [ -81.980299636999973, 28.647372174000054 ], [ -81.980293145999951, 28.647231422000061 ], [ -81.980242220999969, 28.645896892000053 ], [ -81.980235118999985, 28.645684097000071 ], [ -81.980216590999987, 28.645512311000061 ], [ -81.980204642, 28.645431749000068 ], [ -81.980180037999958, 28.645297494000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003799757999957, 28.646240120000073 ], [ -82.003795614999945, 28.646145154000067 ], [ -82.003485057999967, 28.645553449000033 ], [ -82.003108250999958, 28.644764507000048 ], [ -82.003000593999957, 28.644570926000029 ], [ -82.002938483999969, 28.644472307000058 ], [ -82.002838124999982, 28.644304618000035 ], [ -82.002797702999942, 28.644209327000056 ], [ -82.002731444999938, 28.643785632000061 ], [ -82.002516104999984, 28.642127377000065 ], [ -82.002391876, 28.641338429000029 ], [ -82.002329757999973, 28.640695580000056 ], [ -82.002259362999951, 28.640206139000043 ], [ -82.002126852999936, 28.63917977400007 ], [ -82.002085445999967, 28.638913138000078 ], [ -82.002048180999964, 28.638799909000056 ], [ -82.001033817999939, 28.637638408000043 ], [ -82.000806107999949, 28.637382731000059 ], [ -82.000702602999979, 28.637287765000053 ], [ -82.000516294999954, 28.637028434000058 ], [ -82.000056738999945, 28.636440374000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972027188999959, 28.672567967000077 ], [ -81.972018250999952, 28.672336555000072 ], [ -81.972016990999975, 28.671865796000077 ], [ -81.972014083999966, 28.669780656000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971972147999963, 28.685321417000068 ], [ -81.97169628599994, 28.685336991000042 ], [ -81.971339005999937, 28.685327146000077 ], [ -81.97031977499995, 28.685331811000026 ], [ -81.969450115999962, 28.685307195000064 ], [ -81.968699545999982, 28.685294812000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971977855999967, 28.68621928400006 ], [ -81.971978709999973, 28.685639898000034 ], [ -81.971972147999963, 28.685321417000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971978307999962, 28.682567340000048 ], [ -81.971991667999987, 28.682238091000045 ], [ -81.971994140999982, 28.682050050000043 ], [ -81.972004020999975, 28.681344890000048 ], [ -81.972005061999937, 28.680281442000023 ], [ -81.972024798999939, 28.678960148000044 ], [ -81.972014062999961, 28.677677925000069 ], [ -81.972014384999966, 28.676466531000074 ], [ -81.972017389999962, 28.675575083000069 ], [ -81.972020311999984, 28.675001135000059 ], [ -81.97201634399994, 28.674298965000048 ], [ -81.972027188999959, 28.672567967000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971978307999962, 28.682567340000048 ], [ -81.971858106999946, 28.682594051000024 ], [ -81.971689180999988, 28.682611204000068 ], [ -81.971363962999988, 28.682629003000045 ], [ -81.970993218, 28.682628924000028 ], [ -81.970554624999977, 28.682630967000023 ], [ -81.97038742899997, 28.682624521000037 ], [ -81.97016208399998, 28.682590282000035 ], [ -81.969977932999939, 28.682556051000063 ], [ -81.969563578999953, 28.682532453000078 ], [ -81.969006251999986, 28.682532327000047 ], [ -81.968238114999963, 28.682512917000054 ], [ -81.968114533999938, 28.682506477000061 ], [ -81.968066074999967, 28.682495781000057 ], [ -81.968017617999976, 28.682474402000025 ], [ -81.967976435999958, 28.682435928000075 ], [ -81.967942531999938, 28.682369678000043 ], [ -81.967930454999987, 28.682239327000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981188978999967, 28.664463940000076 ], [ -81.980956496999966, 28.664466186000027 ], [ -81.980739149999977, 28.664468587000044 ], [ -81.980562815999974, 28.664471757000058 ], [ -81.980363454999974, 28.664492018000033 ], [ -81.98004332499994, 28.664549454000053 ], [ -81.979849709999939, 28.664600146000055 ], [ -81.97968868199996, 28.664652532000048 ], [ -81.979496979999965, 28.664726893000079 ], [ -81.979266929999937, 28.664836753000031 ], [ -81.979048378999948, 28.664968592000037 ], [ -81.978768475999971, 28.665152834000025 ], [ -81.978452143999959, 28.665374264000036 ], [ -81.975901764999946, 28.66711493300005 ], [ -81.975185367999984, 28.667610654000043 ], [ -81.974880709, 28.667818197000031 ], [ -81.974686834999943, 28.667949436000072 ], [ -81.974492959999964, 28.668083727000067 ], [ -81.973256994999986, 28.668923040000038 ], [ -81.972014083999966, 28.669780656000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972027188999959, 28.672567967000077 ], [ -81.973382006999941, 28.672013650000054 ], [ -81.974048173999961, 28.67174443600004 ], [ -81.974280958999941, 28.67165502000006 ], [ -81.97443678999997, 28.671595500000024 ], [ -81.974645575999944, 28.671511026000076 ], [ -81.97488354099994, 28.671407950000059 ], [ -81.975295263999953, 28.671236506000071 ], [ -81.976138195999965, 28.670894059000034 ], [ -81.976607915999978, 28.670700833000069 ], [ -81.976831813999979, 28.670610082000053 ], [ -81.977098701999978, 28.670493326000042 ], [ -81.977337424999973, 28.670365996000044 ], [ -81.977438765999977, 28.670296122000025 ], [ -81.977554005999934, 28.670202708000033 ], [ -81.977736149999942, 28.670057339000039 ], [ -81.977949634999959, 28.669903839000028 ], [ -81.978134864999959, 28.669777987000032 ], [ -81.978334544999939, 28.669642886000076 ], [ -81.978545073999953, 28.669472056000075 ], [ -81.978641100999937, 28.669394737000061 ], [ -81.978725462999989, 28.669313598000031 ], [ -81.978844341999945, 28.669185124000023 ], [ -81.978974143999949, 28.669019009000067 ], [ -81.979110863999949, 28.668863936000037 ], [ -81.97930260399994, 28.668639105000068 ], [ -81.979467652999972, 28.668375024000056 ], [ -81.979596888999936, 28.668179520000024 ], [ -81.979684867999936, 28.668046427000036 ], [ -81.979767545999948, 28.667887676000078 ], [ -81.979906966999977, 28.667616942000052 ], [ -81.980020877999948, 28.667373740000073 ], [ -81.980163877999985, 28.667032066000047 ], [ -81.980272988999957, 28.666750839000031 ], [ -81.980445602999964, 28.666322017000027 ], [ -81.980723804999968, 28.665618976000076 ], [ -81.981026168999961, 28.664869456000076 ], [ -81.981188978999967, 28.664463940000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984516685999949, 28.664469488000066 ], [ -81.983053992999942, 28.664463617000024 ], [ -81.981188978999967, 28.664463940000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991723758999967, 28.664454314000068 ], [ -81.990323438999951, 28.664461648000042 ], [ -81.988617372999954, 28.66445761600005 ], [ -81.985763042999963, 28.664463929000078 ], [ -81.984516685999949, 28.664469488000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000897756999962, 28.664412508000055 ], [ -81.996591085999967, 28.664463267000031 ], [ -81.994342399999937, 28.664472960000069 ], [ -81.992619702999946, 28.664460579000036 ], [ -81.991723758999967, 28.664454314000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990671170999974, 28.653418103000035 ], [ -81.990676764999989, 28.653985682000041 ], [ -81.990673880999964, 28.654680218000067 ], [ -81.990676662999988, 28.655138265000062 ], [ -81.990670785999953, 28.656033035000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988660693999975, 28.652331735000075 ], [ -81.987989100999982, 28.652760568000076 ], [ -81.987494242999958, 28.653073966000079 ], [ -81.987217242999975, 28.653248964000056 ], [ -81.98701995, 28.653380220000031 ], [ -81.986891882999942, 28.653456531000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98863492199996, 28.649886926000079 ], [ -81.988637617999984, 28.65007657600006 ], [ -81.988660693999975, 28.652331735000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990023225999948, 28.651446252000028 ], [ -81.989376798999956, 28.651864580000051 ], [ -81.988660693999975, 28.652331735000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989988771999947, 28.649883442000032 ], [ -81.98863492199996, 28.649886926000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989988771999947, 28.649883442000032 ], [ -81.989991057999987, 28.650103210000054 ], [ -81.99000022599995, 28.65071978900005 ], [ -81.989997866999943, 28.651275318000046 ], [ -81.990023225999948, 28.651446252000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99480951299995, 28.646156468000072 ], [ -81.994151788999943, 28.646167599000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994852474999959, 28.647026788000062 ], [ -81.994852494999975, 28.646625103000076 ], [ -81.994854541999985, 28.646160933000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994854541999985, 28.646160933000033 ], [ -81.99480951299995, 28.646156468000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995816462999983, 28.646149809000065 ], [ -81.995333161999952, 28.646156487000042 ], [ -81.994854541999985, 28.646160933000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995821332999981, 28.647728098000073 ], [ -81.995811866999986, 28.647223201000031 ], [ -81.995813274999989, 28.646813706000046 ], [ -81.995816462999983, 28.646149809000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996877520999988, 28.647067019000076 ], [ -81.996868055999983, 28.646322227000041 ], [ -81.996866291999936, 28.646135890000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996866291999936, 28.646135890000039 ], [ -81.995816462999983, 28.646149809000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996866291999936, 28.646135890000039 ], [ -81.996847344999935, 28.645251623000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996847344999935, 28.645251623000036 ], [ -81.99684734899995, 28.645131675000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996834724999985, 28.644269724000026 ], [ -81.996817870999962, 28.642822820000049 ], [ -81.996813429999975, 28.642546024000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996834722999949, 28.644333883000058 ], [ -81.995794399999966, 28.644350592000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99684734899995, 28.645131675000073 ], [ -81.996834722999949, 28.644333883000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996847344999935, 28.645251623000036 ], [ -81.995807011999943, 28.645246016000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995807011999943, 28.645246016000044 ], [ -81.994801461999941, 28.64524877100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995816462999983, 28.646149809000065 ], [ -81.995807011999943, 28.645246016000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995807011999943, 28.645246016000044 ], [ -81.995794399999966, 28.644350592000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99480951299995, 28.646156468000072 ], [ -81.994799433999958, 28.645359791000033 ], [ -81.994801461999941, 28.64524877100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999085398999966, 28.647151686000029 ], [ -81.999860136999985, 28.647154513000032 ], [ -82.000974223999947, 28.647120620000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999079003999952, 28.646132188000024 ], [ -81.999860137999974, 28.646166080000057 ], [ -82.000971013999958, 28.646214086000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000974223999947, 28.647120620000067 ], [ -82.000983825999981, 28.646770432000039 ], [ -82.000971013999958, 28.646214086000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00096784699997, 28.649919298000043 ], [ -82.000967829, 28.647990442000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999588007999989, 28.649916478000023 ], [ -82.000189886999976, 28.649919302000058 ], [ -82.00096784699997, 28.649919298000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998918897999943, 28.649916474000065 ], [ -81.999588007999989, 28.649916478000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998918897999943, 28.649916474000065 ], [ -81.998929715999964, 28.65168643100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00096784699997, 28.649919298000043 ], [ -82.000975709999977, 28.65026937600004 ], [ -82.000988372999984, 28.651692011000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00096784699997, 28.649919298000043 ], [ -82.002839914999981, 28.649923508000029 ], [ -82.004267776999939, 28.649923471000079 ], [ -82.00495353599996, 28.649923448000038 ], [ -82.005632250999952, 28.649930199000039 ], [ -82.006636234999974, 28.649930153000071 ], [ -82.007642781999948, 28.649932359000047 ], [ -82.008034644999952, 28.649934596000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003799757999957, 28.646240120000073 ], [ -82.003878426999961, 28.646240118000037 ], [ -82.00416826299994, 28.646240109000075 ], [ -82.004753276999963, 28.646235893000039 ], [ -82.005265494999946, 28.646246464000058 ], [ -82.00563365499994, 28.646246449000046 ], [ -82.005813731999979, 28.646246442000063 ], [ -82.005885761999934, 28.646246439000038 ], [ -82.005985804999966, 28.646249965000038 ], [ -82.006126345999974, 28.646245299000043 ], [ -82.006210861999989, 28.646261110000069 ], [ -82.006308186999945, 28.646301772000072 ], [ -82.006385021999961, 28.646351473000038 ], [ -82.006443929999989, 28.646396656000036 ], [ -82.006490037999981, 28.646518654000033 ], [ -82.006569441999943, 28.646690356000079 ], [ -82.006648849999976, 28.646882389000041 ], [ -82.006643747999988, 28.647200948000034 ], [ -82.006651031999979, 28.647260981000045 ], [ -82.006728276, 28.647395242000073 ], [ -82.006759019999947, 28.647546612000042 ], [ -82.006776960999957, 28.647752205000074 ], [ -82.006846120999967, 28.647896795000065 ], [ -82.006905032999953, 28.647993941000038 ], [ -82.007004925, 28.648104640000042 ], [ -82.00714579299995, 28.648174671000049 ], [ -82.007245680999972, 28.648233407000077 ], [ -82.007304597999962, 28.648371218000079 ], [ -82.007545383999968, 28.648902135000071 ], [ -82.007798980999951, 28.64946468100004 ], [ -82.008034644999952, 28.649934596000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000971013999958, 28.646214086000043 ], [ -82.002694242999951, 28.646221885000045 ], [ -82.003440713999964, 28.646232402000066 ], [ -82.003700385999934, 28.646262038000032 ], [ -82.003799757999957, 28.646240120000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994340270999942, 28.828537019000066 ], [ -81.993844414999955, 28.829095980000034 ], [ -81.993281740999976, 28.829710652000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992556306999973, 28.829188940000051 ], [ -81.99237255099996, 28.829375839000079 ], [ -81.99233769999995, 28.829417683000031 ], [ -81.992299679999974, 28.829465106000043 ], [ -81.992255324999974, 28.829518108000059 ], [ -81.992233144999943, 28.829579481000053 ], [ -81.992233139999939, 28.829640853000058 ], [ -81.992242635999958, 28.82974407200004 ], [ -81.99226479899994, 28.829911457000037 ], [ -81.992359768999961, 28.830890646000057 ], [ -81.992207673999985, 28.831272828000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994076875999951, 28.830324424000025 ], [ -81.993281740999976, 28.829710652000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995165389999954, 28.829104120000068 ], [ -81.994538532999968, 28.829817782000077 ], [ -81.994076875999951, 28.830324424000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99481816499997, 28.830851708000068 ], [ -81.994548890999965, 28.830667577000042 ], [ -81.994076875999951, 28.830324424000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995909719999986, 28.829621620000069 ], [ -81.995324491999952, 28.830281383000056 ], [ -81.99481816499997, 28.830851708000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995556294999972, 28.831359459000055 ], [ -81.99481816499997, 28.830851708000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996649159999947, 28.830134803000078 ], [ -81.995997819999957, 28.830857096000045 ], [ -81.995556294999972, 28.831359459000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997381262999966, 28.830639358000042 ], [ -81.996810728999947, 28.831286191000061 ], [ -81.996288097, 28.831869997000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996288097, 28.831869997000069 ], [ -81.995556294999972, 28.831359459000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997133952999945, 28.832453065000038 ], [ -81.997190979999971, 28.83239448300003 ], [ -81.997608947999936, 28.831920115000059 ], [ -81.998223553999935, 28.831223689000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997133952999945, 28.832453065000038 ], [ -81.996288097, 28.831869997000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997989323999946, 28.833044498000049 ], [ -81.997133952999945, 28.832453065000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114289264999968, 28.763101348000077 ], [ -82.114449424999975, 28.763101213000027 ], [ -82.114550579999957, 28.763101127000027 ], [ -82.114615906999973, 28.763099215000068 ], [ -82.114687550999975, 28.763093584000046 ], [ -82.114754970999968, 28.763078671000073 ], [ -82.114807626999948, 28.763052629000072 ], [ -82.11510667899995, 28.762874109000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112681333999944, 28.761140849000071 ], [ -82.112804190999952, 28.761234248000051 ], [ -82.113477861999968, 28.762070969000035 ], [ -82.114071364999973, 28.762813244000029 ], [ -82.114289264999968, 28.763101348000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112681333999944, 28.761140849000071 ], [ -82.112676458999942, 28.761507597000048 ], [ -82.112664008999957, 28.762178425000059 ], [ -82.112659450999956, 28.762839961000054 ], [ -82.112689754999963, 28.763095265000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112689754999963, 28.763095265000061 ], [ -82.114289264999968, 28.763101348000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112689754999963, 28.763095265000061 ], [ -82.112685711999973, 28.763254964000055 ], [ -82.112698485999942, 28.763375654000072 ], [ -82.112702870999954, 28.763533489000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110844057999941, 28.763444037000056 ], [ -82.111864028999946, 28.76343948300007 ], [ -82.112062126999945, 28.763443032000055 ], [ -82.112209648999965, 28.763446624000039 ], [ -82.112352976999944, 28.763470645000041 ], [ -82.11251948599994, 28.763494647000073 ], [ -82.112702870999954, 28.763533489000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112702870999954, 28.763533489000054 ], [ -82.112736938999944, 28.763860281000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111072503999935, 28.76424604500005 ], [ -82.112216524999951, 28.763966559000039 ], [ -82.112380839999958, 28.763907002000053 ], [ -82.112469312999963, 28.763871646000041 ], [ -82.112562013999934, 28.763849285000049 ], [ -82.112637881999945, 28.763851078000073 ], [ -82.112736938999944, 28.763860281000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112736938999944, 28.763860281000063 ], [ -82.112827569, 28.763871348000066 ], [ -82.114437622999958, 28.763873708000062 ], [ -82.115240527999958, 28.763861883000061 ], [ -82.115853761999972, 28.763844647000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11510667899995, 28.762874109000052 ], [ -82.115167354999983, 28.762956227000075 ], [ -82.115450663, 28.763312051000071 ], [ -82.115649033999944, 28.763562567000065 ], [ -82.115853761999972, 28.763844647000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11849701899996, 28.768091016000028 ], [ -82.118497507999962, 28.768523681000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115853761999972, 28.763844647000042 ], [ -82.115986711999938, 28.764011656000037 ], [ -82.11620200599998, 28.764317866000056 ], [ -82.116657936999957, 28.76497482700006 ], [ -82.117261639999981, 28.765852633000065 ], [ -82.117544496999983, 28.766264626000066 ], [ -82.117821030999949, 28.766672911000057 ], [ -82.118733321999969, 28.768027821000032 ], [ -82.118783312999938, 28.76810443200003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118783312999938, 28.76810443200003 ], [ -82.118948208999939, 28.768115513000055 ], [ -82.119299153999975, 28.768109696000067 ], [ -82.120601944999976, 28.768110556000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118783312999938, 28.76810443200003 ], [ -82.118924656, 28.768314335000071 ], [ -82.119106185999954, 28.768555159000073 ], [ -82.119316921999939, 28.768840495000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119316921999939, 28.768840495000063 ], [ -82.11939272799998, 28.76880656000003 ], [ -82.119583267999985, 28.768803121000076 ], [ -82.120598159999986, 28.768800515000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117545895999967, 28.768095653000046 ], [ -82.11849701899996, 28.768091016000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114910340999984, 28.76988289600007 ], [ -82.116033114999937, 28.769877294000025 ], [ -82.116720685999951, 28.769872059000079 ], [ -82.117206937999981, 28.769857236000064 ], [ -82.117207024999971, 28.769857233000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115191784, 28.769005256000071 ], [ -82.115843000999973, 28.76900469900005 ], [ -82.116401499999938, 28.769015361000072 ], [ -82.11643943699994, 28.769017186000042 ], [ -82.116471039999965, 28.769007873000078 ], [ -82.116511065999987, 28.768992983000032 ], [ -82.116536326999949, 28.768966965000061 ], [ -82.116555256999959, 28.768933523000044 ], [ -82.116563613999972, 28.768867131000036 ], [ -82.116568260999941, 28.768307725000057 ], [ -82.116569264999953, 28.768263159000071 ], [ -82.11657132199997, 28.768218592000039 ], [ -82.116577594999967, 28.768174019000071 ], [ -82.116594419999956, 28.768142436000062 ], [ -82.116623901999958, 28.768121984000061 ], [ -82.116657600999986, 28.768103386000064 ], [ -82.116700264999963, 28.76809174400006 ], [ -82.117545895999967, 28.768095653000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078649817999974, 28.945572159000051 ], [ -82.078577376999988, 28.945571906000055 ], [ -82.077267103999986, 28.945584202000077 ], [ -82.075902276999955, 28.94558947400003 ], [ -82.074915720999968, 28.945601267000029 ], [ -82.073144517999935, 28.945613483000045 ], [ -82.070354139999949, 28.945626534000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053648147999979, 28.949681263000059 ], [ -82.05365629399995, 28.95021580100007 ], [ -82.053671596999948, 28.952266499000075 ], [ -82.053667154999971, 28.952859576000037 ], [ -82.053676325999959, 28.953771850000066 ], [ -82.053666824999937, 28.955569514000047 ], [ -82.053675222999971, 28.956688462000045 ], [ -82.053673413999945, 28.958238487000074 ], [ -82.053674078999961, 28.959527115000071 ], [ -82.053679647999957, 28.960212700000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.081648015999974, 28.956202209000026 ], [ -82.081638769999984, 28.956604819000063 ], [ -82.081648892999965, 28.95732005900004 ], [ -82.081626582999945, 28.957486645000074 ], [ -82.081600324999954, 28.958341231000077 ], [ -82.081569277999961, 28.959630870000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074850655999967, 28.959883830000024 ], [ -82.075684421999938, 28.959886114000028 ], [ -82.079757816999972, 28.959965563000026 ], [ -82.080197668999972, 28.959981091000031 ], [ -82.08068013999997, 28.959972907000065 ], [ -82.081535131999942, 28.959968444000026 ], [ -82.082075962999966, 28.959977984000034 ], [ -82.085854199999972, 28.959942577000049 ], [ -82.094728506999957, 28.959914621000053 ], [ -82.096024478999936, 28.959897545000047 ], [ -82.096079593999946, 28.959897161000072 ], [ -82.099871777999965, 28.95988133700007 ], [ -82.101533053999958, 28.95988559500006 ], [ -82.103249247999941, 28.959885320000069 ], [ -82.10327758699998, 28.959885298000074 ], [ -82.104388287999939, 28.959879628000067 ], [ -82.106303435999962, 28.959870909000074 ], [ -82.107511471999942, 28.95986891900003 ], [ -82.108561621999968, 28.95989935800003 ], [ -82.111201078999954, 28.959886203000053 ], [ -82.113003462999984, 28.959887451000043 ], [ -82.116126641999983, 28.959874479000064 ], [ -82.117699350999942, 28.959851111000035 ], [ -82.118043492999959, 28.959820558000047 ], [ -82.118106741999952, 28.959825917000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.085999763999951, 28.956295810000029 ], [ -82.085550925999939, 28.956246756000041 ], [ -82.084740288999967, 28.956257136000033 ], [ -82.08408110299996, 28.956242748000079 ], [ -82.082866521999961, 28.956221299000049 ], [ -82.082187726999962, 28.956238984000038 ], [ -82.081782489999966, 28.956235015000061 ], [ -82.081648015999974, 28.956202209000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08274877599996, 28.952772493000055 ], [ -82.082737591999944, 28.952819373000068 ], [ -82.082712380999965, 28.952858861000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08625226099997, 28.952967654000076 ], [ -82.08500688099997, 28.952965979000055 ], [ -82.083239799999944, 28.95297941900003 ], [ -82.082762963999983, 28.952979713000047 ], [ -82.082743284999935, 28.952922984000054 ], [ -82.082712380999965, 28.952858861000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039580025999953, 28.849074660000042 ], [ -82.039544013999944, 28.849074207000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040267535999988, 28.84907766300006 ], [ -82.040136255999982, 28.849079652000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040690721999965, 28.849076903000025 ], [ -82.040267535999988, 28.84907766300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99909282699997, 28.926319340000077 ], [ -81.998760953999977, 28.926099864000037 ], [ -81.99856846199998, 28.925956077000023 ], [ -81.998445281999977, 28.925853433000043 ], [ -81.998269662999974, 28.925702837000074 ], [ -81.997902863999968, 28.925391863000073 ], [ -81.997478270999977, 28.925030039000035 ], [ -81.997067016999949, 28.92467212400004 ], [ -81.99685336999994, 28.924499887000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999872099999948, 28.926711035000039 ], [ -81.999796899999978, 28.926672911000026 ], [ -81.99969686299994, 28.926629883000032 ], [ -81.999585709999963, 28.926579033000053 ], [ -81.999427748999949, 28.926502964000065 ], [ -81.999243355999965, 28.926404968000043 ], [ -81.99909282699997, 28.926319340000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003914292, 28.927139733000047 ], [ -82.003835456, 28.927139735000026 ], [ -82.003188042999966, 28.927134863000049 ], [ -82.002722179999978, 28.927131356000075 ], [ -82.002478501999974, 28.927129258000036 ], [ -82.002230044999976, 28.927127162000033 ], [ -82.001976810999963, 28.927122961000066 ], [ -82.001771002999988, 28.927116860000069 ], [ -82.001602046999949, 28.927109038000026 ], [ -82.001355670999942, 28.927083036000056 ], [ -82.001231441999948, 28.92706832500005 ], [ -82.00110243599994, 28.927047309000045 ], [ -82.000877867999975, 28.927009480000038 ], [ -82.000748380999937, 28.92698192000006 ], [ -82.000607911999964, 28.926946429000054 ], [ -82.000454241999989, 28.926903788000061 ], [ -82.000453474999972, 28.92690357500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000943414999938, 28.654552326000044 ], [ -82.000906287999953, 28.657069576000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118497507999962, 28.768523681000033 ], [ -82.118519171999935, 28.768690414000048 ], [ -82.11850773499998, 28.769760017000067 ], [ -82.118481086999964, 28.770424820000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118481086999964, 28.770424820000073 ], [ -82.11981351299994, 28.770412916000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118497507999962, 28.768523681000033 ], [ -82.119046713999978, 28.769280453000079 ], [ -82.11942668599994, 28.769826056000056 ], [ -82.11981351299994, 28.770412916000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119316921999939, 28.768840495000063 ], [ -82.11964962899998, 28.769336372000055 ], [ -82.120145602999969, 28.770048251000048 ], [ -82.120373595999979, 28.770380439000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11981351299994, 28.770412916000055 ], [ -82.120373595999979, 28.770380439000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125242887999946, 28.770807142000024 ], [ -82.126011923999954, 28.770806426000036 ], [ -82.126272403999963, 28.770806183000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126272403999963, 28.770806183000047 ], [ -82.126929807999943, 28.770807128000058 ], [ -82.127066251999963, 28.77080856200007 ], [ -82.127174343999968, 28.770810021000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062406715999941, 28.914292977000059 ], [ -82.06226195399995, 28.914235438000048 ], [ -82.062123754999959, 28.914168603000064 ], [ -82.062017218999983, 28.914106694000054 ], [ -82.06194138099994, 28.914056703000028 ], [ -82.061862089999977, 28.913997617000064 ], [ -82.06177814199998, 28.91392120200004 ], [ -82.061662111999965, 28.913800633000051 ], [ -82.061564307999959, 28.913680008000028 ], [ -82.06145003499995, 28.913535438000054 ], [ -82.061324178999939, 28.913396028000079 ], [ -82.06120522599997, 28.91327632000008 ], [ -82.061068949999935, 28.913150646000076 ], [ -82.060915628999965, 28.913027835000037 ], [ -82.060734646999947, 28.912897544000032 ], [ -82.060609322999937, 28.912815551000051 ], [ -82.060422690999985, 28.912712738000039 ], [ -82.060315836999962, 28.912656695000067 ], [ -82.060203816999945, 28.912605203000055 ], [ -82.060055613999964, 28.912546145000078 ], [ -82.05993325999998, 28.912502238000059 ], [ -82.059802292999962, 28.912456818000067 ], [ -82.059611874999973, 28.912405488000047 ], [ -82.059381841999937, 28.912352402000067 ], [ -82.059185410999987, 28.912320653000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059185410999987, 28.912320653000052 ], [ -82.058824725999955, 28.912286754000036 ], [ -82.058443648999969, 28.912283787000035 ], [ -82.05824421899996, 28.912305809000031 ], [ -82.058087530999956, 28.912334079000061 ], [ -82.057962903999965, 28.912378004000061 ], [ -82.057866782999952, 28.912446987000067 ], [ -82.057792028999984, 28.912512826000068 ], [ -82.057720854999957, 28.912613133000036 ], [ -82.057681746999947, 28.912735362000035 ], [ -82.057656864999956, 28.912823115000037 ], [ -82.057660498999951, 28.912954727000056 ], [ -82.057685581999976, 28.913230479000049 ], [ -82.057689237999966, 28.913402828000073 ], [ -82.057675070999949, 28.913543849000064 ], [ -82.057646670999986, 28.913709945000051 ], [ -82.057586246999961, 28.913929327000062 ], [ -82.057511745999989, 28.91414356100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057511745999989, 28.91414356100006 ], [ -82.057454649999954, 28.914255284000035 ], [ -82.057383484999946, 28.91437439200007 ], [ -82.057294515999956, 28.914499778000049 ], [ -82.05723459799998, 28.914590886000042 ], [ -82.057193287999951, 28.914663669000049 ], [ -82.057162309999967, 28.914730385000041 ], [ -82.057124448999957, 28.914812262000055 ], [ -82.057098646999975, 28.914888071000064 ], [ -82.057069424999952, 28.915010878000032 ], [ -82.057059141999957, 28.915110933000051 ], [ -82.057052880999947, 28.915502651000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057140696999966, 28.916518413000063 ], [ -82.057131449999986, 28.915897457000028 ], [ -82.057052880999947, 28.915502651000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057052880999947, 28.915502651000054 ], [ -82.056992543999968, 28.915884982000023 ], [ -82.057000703999961, 28.916518472000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057140696999966, 28.916518413000063 ], [ -82.057000703999961, 28.916518472000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148730050999973, 28.908922806000078 ], [ -82.148728518999974, 28.909299765000071 ], [ -82.148735095999939, 28.90955834600004 ], [ -82.148733457999981, 28.909860642000069 ], [ -82.148734101999935, 28.910312262000048 ], [ -82.14874176099994, 28.912779772000079 ], [ -82.148770940999952, 28.914373155000078 ], [ -82.148774633999949, 28.915511305000052 ], [ -82.148773533999986, 28.91619055700005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120005086999981, 28.905391191000035 ], [ -82.121624720999989, 28.905388034000055 ], [ -82.123296872999958, 28.905375589000073 ], [ -82.123547318999954, 28.905404497000063 ], [ -82.123766690999958, 28.905407936000074 ], [ -82.123930189999953, 28.905413249000048 ], [ -82.124087456999973, 28.905400357000076 ], [ -82.124453720999952, 28.905365419000077 ], [ -82.124809669999934, 28.905359627000053 ], [ -82.12546363499996, 28.905359019000059 ], [ -82.126750905999984, 28.90538513000007 ], [ -82.12813747499996, 28.905381997000063 ], [ -82.129027367999981, 28.905382969000073 ], [ -82.130796797999949, 28.905379441000036 ], [ -82.131781888999967, 28.905380302000026 ], [ -82.132146122999984, 28.905379946000039 ], [ -82.132317889999968, 28.905377955000063 ], [ -82.132471016999943, 28.905365059000076 ], [ -82.132617922999941, 28.905341240000041 ], [ -82.132721369999956, 28.905319286000065 ], [ -82.132824812999957, 28.905293689000075 ], [ -82.132922047999955, 28.905268099000068 ], [ -82.133035817999939, 28.905226102000029 ], [ -82.133507418999955, 28.905032604000041 ], [ -82.133668754999974, 28.904966886000068 ], [ -82.133821836999971, 28.904917566000051 ], [ -82.133979066999984, 28.904877347000024 ], [ -82.134084580999968, 28.904853568000078 ], [ -82.134183893999989, 28.904835258000048 ], [ -82.13427907199997, 28.904820595000047 ], [ -82.134459097999979, 28.904804026000079 ], [ -82.134624647999942, 28.90479657700007 ], [ -82.13482124899997, 28.904794559000038 ], [ -82.134990954999978, 28.904799852000053 ], [ -82.135162743999956, 28.904816069000049 ], [ -82.13534696499994, 28.904843200000073 ], [ -82.135560189999978, 28.904893976000039 ], [ -82.135756868999977, 28.904952050000077 ], [ -82.135974258999966, 28.905022852000059 ], [ -82.136100547999945, 28.905060967000054 ], [ -82.136239251999939, 28.905097248000061 ], [ -82.136351035999951, 28.905120809000039 ], [ -82.136469019999936, 28.905137078000052 ], [ -82.136582851999947, 28.905144247000067 ], [ -82.136698742999954, 28.905142308000052 ], [ -82.136791857999981, 28.90513310800003 ], [ -82.136874623999972, 28.905122098000049 ], [ -82.136988410999948, 28.905094667000071 ], [ -82.137067018999971, 28.905069092000076 ], [ -82.137149757999964, 28.90503805000003 ], [ -82.137255228999948, 28.904981490000068 ], [ -82.137356542999953, 28.904912187000036 ], [ -82.137455770999964, 28.904830139000069 ], [ -82.137821620999944, 28.90448740800008 ], [ -82.137929111999938, 28.904394424000031 ], [ -82.138090398999964, 28.904294101000062 ], [ -82.138228946999959, 28.904212012000073 ], [ -82.138344763999953, 28.904155441000057 ], [ -82.138472998999987, 28.904100677000031 ], [ -82.138613658999986, 28.904051363000065 ], [ -82.138758461999942, 28.90400568900003 ], [ -82.138890861999982, 28.903970952000066 ], [ -82.139035694999961, 28.903947129000073 ], [ -82.139176397999961, 28.903930595000077 ], [ -82.139329524999937, 28.903919510000037 ], [ -82.139536466999971, 28.903913833000047 ], [ -82.139747547999946, 28.903909971000076 ], [ -82.13996898399995, 28.903909741000064 ], [ -82.140142835999939, 28.903922309000052 ], [ -82.140316703999986, 28.903945801000077 ], [ -82.140482299999974, 28.903972944000031 ], [ -82.140649983999936, 28.904014654000036 ], [ -82.140809402999935, 28.904065476000028 ], [ -82.140975041, 28.904123576000075 ], [ -82.141136556999982, 28.904194428000039 ], [ -82.141293934999965, 28.904265284000076 ], [ -82.141443038999967, 28.904339791000041 ], [ -82.141554883999959, 28.904407052000067 ], [ -82.141658451999945, 28.904476144000057 ], [ -82.141759956999977, 28.904550699000026 ], [ -82.141888422999955, 28.904665290000025 ], [ -82.142010681999977, 28.904781709000076 ], [ -82.142108098999984, 28.904892691000043 ], [ -82.142209676999983, 28.905018235000057 ], [ -82.14228432799996, 28.905127419000053 ], [ -82.142365198999983, 28.905245701000069 ], [ -82.14245025699995, 28.905396759000041 ], [ -82.142506308999941, 28.905525994000072 ], [ -82.142564468999979, 28.905682542000079 ], [ -82.142603957999938, 28.905804512000032 ], [ -82.14263310299998, 28.905930133000027 ], [ -82.142656012999964, 28.906035730000042 ], [ -82.142674831999955, 28.906177752000076 ], [ -82.142687592999948, 28.90642904300006 ], [ -82.142692035999971, 28.906651206000049 ], [ -82.14268889799996, 28.907383271000072 ], [ -82.142682535999938, 28.908783663000065 ], [ -82.14268259399995, 28.908825548000038 ], [ -82.14268679099996, 28.908867428000065 ], [ -82.142699242999981, 28.908892910000077 ], [ -82.142719972999942, 28.908918382000024 ], [ -82.142755187999967, 28.908942018000062 ], [ -82.142792465999946, 28.908960189000027 ], [ -82.142835936999973, 28.90896742700005 ], [ -82.143558218999942, 28.908964839000078 ], [ -82.145393930999944, 28.90895740600007 ], [ -82.146821919999979, 28.90894129000003 ], [ -82.148512744999948, 28.908923046000041 ], [ -82.148730050999973, 28.908922806000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137633196999957, 28.941019714000049 ], [ -82.140572606999967, 28.94102827100005 ], [ -82.141660046999959, 28.941024232000075 ], [ -82.144932265999955, 28.941020749000074 ], [ -82.146253674999969, 28.941019319000077 ], [ -82.149255674999949, 28.94101312500004 ], [ -82.150425297999959, 28.941013636000037 ], [ -82.150956046999966, 28.941014128000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137635269999976, 28.940095621000069 ], [ -82.137643242999957, 28.940144310000051 ], [ -82.137633196999957, 28.941019714000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133507948999977, 28.940038559000072 ], [ -82.134300391999943, 28.940038697000034 ], [ -82.135747671, 28.940039564000074 ], [ -82.136361910999938, 28.940041263000069 ], [ -82.137503383999956, 28.940037782000047 ], [ -82.137556110999981, 28.940040047000025 ], [ -82.137603583999976, 28.940056696000056 ], [ -82.137635269999976, 28.940095621000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121664668999983, 28.955058460000032 ], [ -82.12170410799996, 28.955115315000057 ], [ -82.121749164999983, 28.955164745000047 ], [ -82.121811070999968, 28.955194370000072 ], [ -82.121878581999965, 28.955206677000035 ], [ -82.122441060999961, 28.955211113000075 ], [ -82.123850050999977, 28.955207352000059 ], [ -82.124811879999982, 28.955206463000025 ], [ -82.128507312999943, 28.955195563000075 ], [ -82.130065370999944, 28.955201488000057 ], [ -82.132540254999981, 28.955204018000074 ], [ -82.132978980999951, 28.955201112000054 ], [ -82.133147717999975, 28.955198473000053 ], [ -82.133229273999973, 28.955195918000072 ], [ -82.133291123999982, 28.955178543000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053725787999952, 28.881884651000064 ], [ -82.053724904999967, 28.882767683000054 ], [ -82.053731612999968, 28.883653679000076 ], [ -82.053731370999969, 28.883860155000036 ], [ -82.053731370999969, 28.883860499000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047559412999988, 28.872827855000025 ], [ -82.047598168999968, 28.872827998000048 ], [ -82.052496463999944, 28.872780028000079 ], [ -82.053107074999957, 28.872783458000072 ], [ -82.053717677999941, 28.872774044000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053734351999935, 28.872774038000045 ], [ -82.053717677999941, 28.872774044000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057749700999977, 28.872771423000074 ], [ -82.057497618999946, 28.872768596000071 ], [ -82.056469289999939, 28.872759640000027 ], [ -82.056197199999986, 28.87275388300003 ], [ -82.055235567999944, 28.87276015100008 ], [ -82.054755501999978, 28.872764455000038 ], [ -82.053734351999935, 28.872774038000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057864320999954, 28.872773209000059 ], [ -82.057749700999977, 28.872771423000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066266076999966, 28.872772671000064 ], [ -82.066136888999949, 28.872765515000026 ], [ -82.064682546999961, 28.872760805000041 ], [ -82.063992032999977, 28.87276294000003 ], [ -82.06292575699996, 28.872761636000064 ], [ -82.061301741999955, 28.87276960500003 ], [ -82.06024982699995, 28.872779104000074 ], [ -82.057864320999954, 28.872773209000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057874800999969, 28.869119139000077 ], [ -82.057866872999966, 28.869854725000039 ], [ -82.057863088999966, 28.870548118000045 ], [ -82.057867677, 28.871305712000037 ], [ -82.057870038999965, 28.871810163000077 ], [ -82.057857453999986, 28.872263623000038 ], [ -82.057864320999954, 28.872773209000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060929820999945, 28.869114123000031 ], [ -82.059548173999985, 28.869096397000078 ], [ -82.058866733999935, 28.869098531000077 ], [ -82.058379063999951, 28.86912684300006 ], [ -82.057874800999969, 28.869119139000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057872783999983, 28.865479746000062 ], [ -82.057875004999971, 28.865725552000072 ], [ -82.057873687999972, 28.867112337000037 ], [ -82.057874584, 28.868728417000057 ], [ -82.057874800999969, 28.869119139000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057872783999983, 28.865479746000062 ], [ -82.056001490999961, 28.865480536000064 ], [ -82.05398641499994, 28.865485026000044 ], [ -82.053763443999969, 28.86548511500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053763443999969, 28.86548511500007 ], [ -82.052171387999977, 28.865491245000044 ], [ -82.051577854999948, 28.865493507000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046063254999979, 28.864625812000043 ], [ -82.047424219999982, 28.865120621000074 ], [ -82.04777435799997, 28.865237896000053 ], [ -82.048076551999941, 28.865320336000025 ], [ -82.048337059999938, 28.865377108000075 ], [ -82.048607978999939, 28.865421036000043 ], [ -82.048885147999954, 28.865455789000066 ], [ -82.049168561999977, 28.86548136600004 ], [ -82.049447803999954, 28.865495939000027 ], [ -82.049649937999959, 28.865499534000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04297872799998, 28.863507863000052 ], [ -82.043539358999965, 28.863714967000078 ], [ -82.04546718499995, 28.864409558000034 ], [ -82.046063254999979, 28.864625812000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062040465999985, 28.865465511000025 ], [ -82.060794589999944, 28.865469288000043 ], [ -82.057872783999983, 28.865479746000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066251909999949, 28.86545250100005 ], [ -82.065326684999945, 28.865454787000033 ], [ -82.064043038999955, 28.865462741000044 ], [ -82.062040465999985, 28.865465511000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066251909999949, 28.86545250100005 ], [ -82.066252744999986, 28.86710839400007 ], [ -82.066259705999983, 28.870003028000042 ], [ -82.066262724999945, 28.870720482000024 ], [ -82.066265770999962, 28.871483058000024 ], [ -82.066266076999966, 28.872772671000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078608230999976, 28.865980451000041 ], [ -82.078541568999981, 28.86594890300006 ], [ -82.078467212999954, 28.865910593000024 ], [ -82.078374906999954, 28.865858755000033 ], [ -82.078262097999982, 28.865809185000046 ], [ -82.07806981899995, 28.865734843000041 ], [ -82.077913430999956, 28.865676274000066 ], [ -82.077762181999958, 28.865631239000038 ], [ -82.077585299999953, 28.865581705000068 ], [ -82.077362278999942, 28.865527686000064 ], [ -82.077123892999964, 28.865487212000062 ], [ -82.076890635999973, 28.865453503000026 ], [ -82.076662518999967, 28.865437839000037 ], [ -82.076416458999972, 28.86541993000003 ], [ -82.07616785099998, 28.865422327000033 ], [ -82.075780840999983, 28.865420289000042 ], [ -82.074401961999968, 28.86542782500004 ], [ -82.072079903999963, 28.865433599000028 ], [ -82.070775347999984, 28.865436546000069 ], [ -82.069796290999989, 28.865439312000035 ], [ -82.06795023899997, 28.865446152000061 ], [ -82.066251909999949, 28.86545250100005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060919301999945, 28.667805496000028 ], [ -82.061121554999943, 28.667230394000057 ], [ -82.061213562999967, 28.667097159000036 ], [ -82.061485996999977, 28.666863133000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061482706999982, 28.667538852000064 ], [ -82.061478848999968, 28.667239979000044 ], [ -82.061485996999977, 28.666863133000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061485996999977, 28.666863133000049 ], [ -82.061464274999935, 28.666283285000077 ], [ -82.06144937199997, 28.665911965000078 ], [ -82.061444794999943, 28.665690391000055 ], [ -82.061440927999968, 28.665375274000041 ], [ -82.061448900999949, 28.665104546000066 ], [ -82.061408134999965, 28.664758268000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067122405999953, 28.672503421000044 ], [ -82.067122246999986, 28.672253801000068 ], [ -82.067138550999971, 28.672041721000028 ], [ -82.067213641999956, 28.671626334000052 ], [ -82.06720573399997, 28.671221549000052 ], [ -82.067097912999941, 28.67008144600004 ], [ -82.067082557999981, 28.669254727000066 ], [ -82.067104354999969, 28.668780414000025 ], [ -82.067112240999961, 28.668556734000049 ], [ -82.06717335899998, 28.668435267000064 ], [ -82.067173156999957, 28.668118181000068 ], [ -82.067176878999987, 28.666983878000053 ], [ -82.067187538999974, 28.66668117200004 ], [ -82.067184980999969, 28.665805848000048 ], [ -82.067178745999968, 28.664755528000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013212516999943, 28.649951216000034 ], [ -82.011588793999977, 28.649948902000062 ], [ -82.009713979999958, 28.649949050000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013868144999947, 28.649956073000055 ], [ -82.013212516999943, 28.649951216000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036868156999958, 28.650141264000069 ], [ -82.034876160999943, 28.650134408000042 ], [ -82.03443535599996, 28.650132060000033 ], [ -82.034192630999939, 28.650124738000045 ], [ -82.033986168999945, 28.650097720000076 ], [ -82.033810401999972, 28.650087919000043 ], [ -82.033609521999949, 28.650065820000066 ], [ -82.033428172999947, 28.650048637000054 ], [ -82.033252404999985, 28.650033915000051 ], [ -82.033090587999936, 28.650026571000069 ], [ -82.032898081999974, 28.650019235000059 ], [ -82.032680465999988, 28.650006982000036 ], [ -82.032437743999935, 28.650004580000029 ], [ -82.032102953999981, 28.649999738000076 ], [ -82.029830111999956, 28.650006178000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036868156999958, 28.650141264000069 ], [ -82.036870913999962, 28.650047744000062 ], [ -82.036823434999974, 28.649902556000029 ], [ -82.036775960999989, 28.649769673000037 ], [ -82.036761989999945, 28.649710614000071 ], [ -82.036756357999934, 28.649550572000066 ], [ -82.036770134999983, 28.649065821000079 ], [ -82.036795153999947, 28.648807407000049 ], [ -82.036795115999951, 28.648699122000039 ], [ -82.036775002999946, 28.648605502000066 ], [ -82.036725265999962, 28.64840381700003 ], [ -82.036720705999983, 28.648290665000047 ], [ -82.036739133999959, 28.64817247600007 ], [ -82.036764201999972, 28.648051879000036 ], [ -82.03677530799996, 28.647896831000025 ], [ -82.036775208999984, 28.647613813000078 ], [ -82.036772279, 28.647217588000046 ], [ -82.03676644799998, 28.646496509000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046474966999938, 28.64645168900006 ], [ -82.046472243999972, 28.646127117000049 ], [ -82.046493778999945, 28.644218041000045 ], [ -82.046503216999952, 28.643876830000067 ], [ -82.046509012999934, 28.642523277000066 ], [ -82.046517965999954, 28.641079488000059 ], [ -82.046520946999976, 28.64059164400004 ], [ -82.046537271999966, 28.639342818000046 ], [ -82.046533138999962, 28.639248296000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052717332999975, 28.646483653000075 ], [ -82.052528863999953, 28.646479009000075 ], [ -82.051644487999965, 28.646464582000078 ], [ -82.050868916999946, 28.64645749400006 ], [ -82.048810384999967, 28.646435638000071 ], [ -82.048493282999971, 28.646440264000034 ], [ -82.047345379999967, 28.646436622000067 ], [ -82.046474966999938, 28.64645168900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042324640999936, 28.65015001300003 ], [ -82.041680746999987, 28.650147252000068 ], [ -82.039923104999957, 28.650145320000036 ], [ -82.038151992999985, 28.650138553000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046453628999984, 28.650158629000032 ], [ -82.046450795999988, 28.648236688000054 ], [ -82.046470794999948, 28.647192192000034 ], [ -82.046474966999938, 28.64645168900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046434924999971, 28.65162960400005 ], [ -82.046434588999944, 28.650867091000066 ], [ -82.046434393999959, 28.65042608400006 ], [ -82.046450447999973, 28.650261058000069 ], [ -82.046453628999984, 28.650158629000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05479812699997, 28.650171685000032 ], [ -82.052955660999942, 28.650173207000023 ], [ -82.052081990999966, 28.650170808000041 ], [ -82.050569268999936, 28.650168536000024 ], [ -82.04894687999996, 28.650163441000075 ], [ -82.048088915999983, 28.650158058000045 ], [ -82.046453628999984, 28.650158629000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054814510999961, 28.657507499000076 ], [ -82.054807509999989, 28.656451934000074 ], [ -82.054806498999938, 28.654508663000058 ], [ -82.054805836999947, 28.653234015000066 ], [ -82.054801732999977, 28.651543967000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054814510999961, 28.657507499000076 ], [ -82.054637095999965, 28.657499035000058 ], [ -82.054491721999966, 28.65748996800005 ], [ -82.054320974999939, 28.65748493500007 ], [ -82.054150015999937, 28.657485004000023 ], [ -82.054033893999986, 28.657487896000077 ], [ -82.053875838999943, 28.657487959000036 ], [ -82.053708104999941, 28.657488025000077 ], [ -82.053579081999942, 28.657493767000062 ], [ -82.053421029999981, 28.657502365000028 ], [ -82.05329523599994, 28.657513796000046 ], [ -82.053162991999955, 28.657528074000027 ], [ -82.053062808999982, 28.657521893000023 ], [ -82.052943638999977, 28.657511089000025 ], [ -82.052801694999971, 28.657479847000047 ], [ -82.052692013999945, 28.657459973000073 ], [ -82.05256942799997, 28.657437259000062 ], [ -82.052479108999989, 28.657437294000033 ], [ -82.05237589799998, 28.657457251000039 ], [ -82.05220172099996, 28.657471543000042 ], [ -82.051982382999938, 28.657483008000042 ], [ -82.051808197999947, 28.657480231000079 ], [ -82.051572725999961, 28.657480320000047 ], [ -82.051495303999957, 28.657468968000046 ], [ -82.051411438999935, 28.657471846000078 ], [ -82.05125660899995, 28.657471904000033 ], [ -82.051072744999942, 28.657469128000059 ], [ -82.050898562999976, 28.657474885000056 ], [ -82.050766320999969, 28.657492006000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054825079999944, 28.664770910000072 ], [ -82.054827354999986, 28.66379666000006 ], [ -82.054818435999948, 28.661579743000061 ], [ -82.05481769499994, 28.66015703000005 ], [ -82.054814173999944, 28.658626172000027 ], [ -82.054814510999961, 28.657507499000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990670785999953, 28.656033035000064 ], [ -81.988681895999946, 28.656034722000072 ], [ -81.987224133999973, 28.656024441000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054825079999944, 28.664770910000072 ], [ -82.054656603999945, 28.66475928400007 ], [ -82.053561243, 28.66475491500006 ], [ -82.051703268999972, 28.664762320000079 ], [ -82.050228617999949, 28.664765330000023 ], [ -82.048319917999947, 28.664761116000079 ], [ -82.046439038999949, 28.664749504000042 ], [ -82.045584853999969, 28.664747341000066 ], [ -82.043495296999936, 28.664735758000063 ], [ -82.041319485999963, 28.664719261000073 ], [ -82.039335651999977, 28.66468795000003 ], [ -82.038822595999989, 28.664679600000056 ], [ -82.038692932999936, 28.664652609000029 ], [ -82.038584484999944, 28.664617294000038 ], [ -82.038509037999972, 28.664581971000075 ], [ -82.038439677999975, 28.664536058000067 ], [ -82.038378446999957, 28.664482086000078 ], [ -82.038336692999962, 28.664430563000053 ], [ -82.038299157999973, 28.664361642000074 ], [ -82.038268486999982, 28.664288881000061 ], [ -82.038244888999941, 28.664222355000049 ], [ -82.038218920999952, 28.664116327000045 ], [ -82.038195302999952, 28.663993665000078 ], [ -82.038166957999977, 28.663833580000073 ], [ -82.038150009999981, 28.663699316000077 ], [ -82.038140918999943, 28.663530033000029 ], [ -82.038138746999948, 28.663331215000028 ], [ -82.038132347999976, 28.663143756000068 ], [ -82.038099766999949, 28.662216165000075 ], [ -82.038096942999971, 28.661266689000058 ], [ -82.038089475999982, 28.661196683000071 ], [ -82.038069617999952, 28.661155122000025 ], [ -82.038042316999963, 28.661106999000026 ], [ -82.03798773799997, 28.661074199000041 ], [ -82.037913317999937, 28.661047967000059 ], [ -82.037821541999961, 28.661039241000026 ], [ -82.037702483999965, 28.661037086000078 ], [ -82.03445143, 28.66101427500007 ], [ -82.033106855999961, 28.660995008000043 ], [ -82.030912216, 28.661015129000077 ], [ -82.029984344999946, 28.660985934000053 ], [ -82.029923221, 28.660961445000055 ], [ -82.029873204999944, 28.660920781000073 ], [ -82.029837634999978, 28.660881584000037 ], [ -82.029810952999981, 28.660834544000068 ], [ -82.029806491999977, 28.66077965900007 ], [ -82.029802005999954, 28.660634602000073 ], [ -82.029788479999979, 28.659952442000076 ], [ -82.029796891, 28.658262715000035 ], [ -82.029805507999981, 28.657298276000063 ], [ -82.029823060999945, 28.656502415000034 ], [ -82.02981829099997, 28.655353715000047 ], [ -82.029817821999984, 28.653695353000046 ], [ -82.029817742999967, 28.653672180000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071254575999944, 28.65018811300007 ], [ -82.069807627999978, 28.650188866000065 ], [ -82.069175109999946, 28.650184253000077 ], [ -82.068164755999987, 28.650172421000036 ], [ -82.067132811999954, 28.650161361000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075438685999984, 28.650178441000037 ], [ -82.075074850999954, 28.650178643000061 ], [ -82.074643843, 28.650176412000064 ], [ -82.074391961999936, 28.650183958000071 ], [ -82.074201649999964, 28.650186531000031 ], [ -82.073930170999972, 28.650186679000058 ], [ -82.073681083999986, 28.65018681500004 ], [ -82.073065360999976, 28.650187149000033 ], [ -82.071254575999944, 28.65018811300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075446535999959, 28.648780655000053 ], [ -82.075452007999957, 28.648510788000067 ], [ -82.075451408999982, 28.647673844000053 ], [ -82.075437728999987, 28.646425203000035 ], [ -82.075439651999943, 28.645538627000064 ], [ -82.075436306999961, 28.644437741000047 ], [ -82.07542787999995, 28.643381978000036 ], [ -82.075417338999955, 28.642944335000038 ], [ -82.075406295999983, 28.64180735900004 ], [ -82.075395417999971, 28.640898230000062 ], [ -82.075381831999948, 28.639779303000068 ], [ -82.075378968999985, 28.639350680000064 ], [ -82.075377866999986, 28.639232686000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087982758999942, 28.651346226000044 ], [ -82.08771382599997, 28.651197953000064 ], [ -82.087489963999985, 28.651090942000053 ], [ -82.087307683999938, 28.651012102000038 ], [ -82.087128596999946, 28.650930441000071 ], [ -82.086971907999953, 28.650871323000047 ], [ -82.086828004999973, 28.650812199000029 ], [ -82.086687308999956, 28.650764350000031 ], [ -82.086591376999934, 28.650727753000069 ], [ -82.086418702999936, 28.650668645000053 ], [ -82.086233240999945, 28.650606725000046 ], [ -82.085971051999934, 28.650536395000074 ], [ -82.08575362299996, 28.650474495000026 ], [ -82.085501036999972, 28.650421077000033 ], [ -82.085299608999946, 28.650378905000025 ], [ -82.085082197999952, 28.650336744000072 ], [ -82.084864791999962, 28.650303042000075 ], [ -82.084660179999958, 28.650274971000044 ], [ -82.084497128999942, 28.650252514000044 ], [ -82.084334078999973, 28.650232875000029 ], [ -82.08412627499996, 28.650213265000048 ], [ -82.083873720999975, 28.650196503000075 ], [ -82.083691499999986, 28.65018815600007 ], [ -82.083419775999971, 28.650185504000035 ], [ -82.083189608999987, 28.650182826000048 ], [ -82.082895507999979, 28.650180186000057 ], [ -82.081795832999944, 28.650180855000031 ], [ -82.079545328999984, 28.650170916000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063024234999943, 28.682896696000057 ], [ -82.063023575999978, 28.681795825000052 ], [ -82.063012500999946, 28.679335804000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090572489999943, 28.873126181000032 ], [ -82.090981017, 28.873257805000037 ], [ -82.091463005999969, 28.873397136000051 ], [ -82.091689305999978, 28.873464224000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090572489999943, 28.873126181000032 ], [ -82.090913450999949, 28.873273368000071 ], [ -82.091162688999987, 28.873363201000075 ], [ -82.091266147999988, 28.873400373000038 ], [ -82.091334340999936, 28.873431362000076 ], [ -82.091397841999935, 28.873472699000047 ], [ -82.091450245999965, 28.873524690000067 ], [ -82.091480782999952, 28.873567818000026 ], [ -82.091501386999937, 28.873609183000042 ], [ -82.091529645999969, 28.873667097000066 ], [ -82.09157096499996, 28.873751638000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091689305999978, 28.873464224000031 ], [ -82.091627636999988, 28.873503061000065 ], [ -82.091597227999955, 28.87354472100003 ], [ -82.091581287999986, 28.873586370000055 ], [ -82.091569564999986, 28.873621551000042 ], [ -82.091564896999955, 28.873658796000029 ], [ -82.09157096499996, 28.873751638000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091769504999945, 28.872939722000069 ], [ -82.091788427999973, 28.872969630000057 ], [ -82.091793884999959, 28.873006869000051 ], [ -82.091793981999956, 28.873117643000057 ], [ -82.091790777999961, 28.873176851000039 ], [ -82.091787575999945, 28.873235105000049 ], [ -82.091780322999966, 28.873261659000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091769504999945, 28.872939722000069 ], [ -82.091743956999949, 28.872982075000039 ], [ -82.091725546999953, 28.873018375000072 ], [ -82.091702796999982, 28.873056589000043 ], [ -82.091669195999941, 28.873090989000048 ], [ -82.091638837999938, 28.873113928000066 ], [ -82.091603053999961, 28.873133052000071 ], [ -82.091564012999982, 28.873151222000047 ], [ -82.091479378999964, 28.873180137000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.094284841, 28.874018997000064 ], [ -82.09384040599997, 28.873824821000028 ], [ -82.093400729999985, 28.873692710000057 ], [ -82.093354176999981, 28.873653885000067 ], [ -82.093325946999983, 28.873629077000032 ], [ -82.093311829999948, 28.873613807000027 ], [ -82.093298794999953, 28.873594718000049 ], [ -82.093275977999951, 28.873556536000024 ], [ -82.093233642999962, 28.873473510000053 ], [ -82.093208600999958, 28.873430530000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107404354999971, 28.877170625000076 ], [ -82.106240566999986, 28.876960509000071 ], [ -82.105184927999971, 28.87676685100007 ], [ -82.10335579499997, 28.876435155000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119954795999945, 28.879462844000045 ], [ -82.118997856999954, 28.879287827000041 ], [ -82.117864587999975, 28.879083991000073 ], [ -82.116491495999981, 28.878830698000058 ], [ -82.115626265999936, 28.878672128000062 ], [ -82.113270408999938, 28.878243776000033 ], [ -82.111321316999977, 28.877889531000051 ], [ -82.108854984999937, 28.877434295000057 ], [ -82.107404354999971, 28.877170625000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.130051211999955, 28.877676206000046 ], [ -82.128169659999969, 28.878762166000058 ], [ -82.127239437999947, 28.879296851000049 ], [ -82.127039752999963, 28.879400489000034 ], [ -82.126868253999987, 28.879485481000074 ], [ -82.126677952999955, 28.879572557000074 ], [ -82.126534629999981, 28.879630623000025 ], [ -82.126337258999968, 28.879703224000025 ], [ -82.12614223199995, 28.879771684000048 ], [ -82.125921349999942, 28.879842238000037 ], [ -82.125721605999956, 28.879898286000071 ], [ -82.125505399999952, 28.879948144000025 ], [ -82.125310334999938, 28.879985567000062 ], [ -82.125171672999954, 28.880010525000046 ], [ -82.125030654999989, 28.880031346000067 ], [ -82.124882578999973, 28.880048035000073 ], [ -82.124687492999954, 28.880066836000026 ], [ -82.12445243999997, 28.880083606000028 ], [ -82.124200924999968, 28.88009418300004 ], [ -82.123944700999971, 28.880098557000053 ], [ -82.123657896999987, 28.880084337000028 ], [ -82.123451018999958, 28.88007211200005 ], [ -82.123208862999945, 28.880045437000035 ], [ -82.122990204999951, 28.880010464000065 ], [ -82.122663390999946, 28.879956968000045 ], [ -82.121581830999958, 28.87975932300003 ], [ -82.119954795999945, 28.879462844000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.130152504999955, 28.877847835000068 ], [ -82.131644098999971, 28.876989818000027 ], [ -82.132325285999968, 28.876593970000044 ], [ -82.133321633999969, 28.876021384000069 ], [ -82.134972489999939, 28.875068558000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134942820999981, 28.874847722000027 ], [ -82.13433564099995, 28.875197472000025 ], [ -82.133431324999947, 28.875721829000042 ], [ -82.131885747999945, 28.876619229000028 ], [ -82.130708915999946, 28.877290733000052 ], [ -82.130051211999955, 28.877676206000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156094587999974, 28.858369546000063 ], [ -82.156027282999958, 28.858705795000049 ], [ -82.15599543899998, 28.858891198000038 ], [ -82.155992138999977, 28.85907028400004 ], [ -82.156024599999967, 28.859299597000074 ], [ -82.156021374999966, 28.859528951000073 ], [ -82.155982594999955, 28.859849459000031 ], [ -82.155932882999934, 28.860019172000079 ], [ -82.155907466999963, 28.860206453000046 ], [ -82.155833585999972, 28.860442800000044 ], [ -82.155779519999953, 28.860563508000041 ], [ -82.155708350999987, 28.860704342000076 ], [ -82.155642881999938, 28.860837630000049 ], [ -82.155594520999955, 28.860955816000057 ], [ -82.155571792999979, 28.861031246000039 ], [ -82.155574793999961, 28.861129266000034 ], [ -82.155597818, 28.861252398000033 ], [ -82.155649382999968, 28.861367956000038 ], [ -82.155723806999958, 28.861496056000078 ], [ -82.155792525999971, 28.861626674000036 ], [ -82.155864101999953, 28.86175980400003 ], [ -82.155927072999987, 28.86186529500003 ], [ -82.156024385999956, 28.862023528000066 ], [ -82.156090218999964, 28.862134043000026 ], [ -82.15615603699996, 28.862234504000071 ], [ -82.156241931999944, 28.862395264000043 ], [ -82.156293498999958, 28.862510822000047 ], [ -82.156325048999975, 28.862606296000024 ], [ -82.156359469999984, 28.862711820000072 ], [ -82.156402506999939, 28.862852522000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013611849999961, 28.796953010000038 ], [ -82.013598216999981, 28.797001070000078 ], [ -82.01358731299996, 28.797061145000043 ], [ -82.013587321999978, 28.797133234000057 ], [ -82.013581880999936, 28.797246174000065 ], [ -82.013565676999974, 28.798505326000054 ], [ -82.013564439999982, 28.798774456000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014632095999957, 28.796914456000025 ], [ -82.013630940999974, 28.796914561000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013630940999974, 28.796914561000051 ], [ -82.013611849999961, 28.796953010000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013704398999948, 28.795411742000056 ], [ -82.013690881999935, 28.796357069000067 ], [ -82.013669107999988, 28.796734334000064 ], [ -82.013630940999974, 28.796914561000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013704398999948, 28.795411742000056 ], [ -82.012820556999941, 28.79540606200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016702855999938, 28.795055766000075 ], [ -82.016702898999938, 28.795322975000033 ], [ -82.016689810999935, 28.795365269000058 ], [ -82.016663629999982, 28.795401797000068 ], [ -82.016611255999976, 28.795421028000078 ], [ -82.016336282999987, 28.795419139000046 ], [ -82.015928188999965, 28.795421110000063 ], [ -82.015351072999977, 28.795415630000036 ], [ -82.014660256999946, 28.795415487000071 ], [ -82.013975005999953, 28.795411714000068 ], [ -82.013704398999948, 28.795411742000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013704312999948, 28.794756215000064 ], [ -82.013704398999948, 28.795411742000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013704312999948, 28.794756215000064 ], [ -82.013392241999952, 28.794752401000039 ], [ -82.012829205999935, 28.794750534000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02087376299994, 28.796030991000066 ], [ -82.020873794999943, 28.796026754000025 ], [ -82.020874739999954, 28.795899618000078 ], [ -82.020883419999961, 28.795447824000064 ], [ -82.020885403999955, 28.795212511000045 ], [ -82.020883606999973, 28.795101031000058 ], [ -82.020879828999966, 28.795094821000077 ], [ -82.020872969999971, 28.79495004000006 ], [ -82.020849915999975, 28.794774331000042 ], [ -82.020792321999977, 28.794369678000066 ], [ -82.020772346999934, 28.79425156800005 ], [ -82.020740256999943, 28.794109190000029 ], [ -82.020715397999936, 28.794019389000027 ], [ -82.020671360999984, 28.79388506600003 ], [ -82.020625566999968, 28.793755383000075 ], [ -82.020574920999934, 28.793611956000063 ], [ -82.020502538999949, 28.793406982000079 ], [ -82.020456287999934, 28.793276 ], [ -82.020404895999945, 28.793130465000047 ], [ -82.020362918999979, 28.79301158800007 ], [ -82.020333597999979, 28.792919287000075 ], [ -82.020315517999961, 28.792846960000077 ], [ -82.020297385999982, 28.792747294000037 ], [ -82.020288229999949, 28.792665576000047 ], [ -82.020284533999984, 28.792599855000049 ], [ -82.020283953999979, 28.792543332000037 ], [ -82.020286966999947, 28.792467171000055 ], [ -82.020292927999947, 28.792402784000046 ], [ -82.020305143999963, 28.792320559000075 ], [ -82.020323947999941, 28.792233026000076 ], [ -82.020351758999936, 28.792136793000054 ], [ -82.020383330999948, 28.792050584000037 ], [ -82.020424100999946, 28.791959205000069 ], [ -82.020474945999979, 28.791864454000063 ], [ -82.020547904999944, 28.791740584000024 ], [ -82.020616513999983, 28.791624108000065 ], [ -82.020687562999967, 28.791503490000025 ], [ -82.020754753999938, 28.791389423000055 ], [ -82.020784099999958, 28.791339291000043 ], [ -82.020805966999944, 28.791302725000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991694947999974, 28.82480010300003 ], [ -81.991455145999964, 28.824637448000033 ], [ -81.990993599999968, 28.82431930100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993690628999957, 28.825183748000029 ], [ -81.993191725999964, 28.824792904000049 ], [ -81.992654234999975, 28.824436040000023 ], [ -81.991546186999983, 28.823690747000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99314755599994, 28.825805150000065 ], [ -81.99243916599994, 28.825309912000023 ], [ -81.991694947999974, 28.82480010300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993690628999957, 28.825183748000029 ], [ -81.99314755599994, 28.825805150000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993922109999971, 28.826329033000036 ], [ -81.99314755599994, 28.825805150000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994699426999944, 28.826851453000074 ], [ -81.994261150999989, 28.826557713000057 ], [ -81.99410127799996, 28.826450898000076 ], [ -81.994032366999988, 28.826402346000066 ], [ -81.993922109999971, 28.826329033000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03811839399998, 28.846022127000026 ], [ -82.038123456999983, 28.845232960000033 ], [ -82.038043131999984, 28.845071381000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038043131999984, 28.845071381000025 ], [ -82.038582375999965, 28.844666043000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038753843999984, 28.845295443000055 ], [ -82.03875590399997, 28.845076831000029 ], [ -82.038753717999953, 28.844954334000079 ], [ -82.038753699999972, 28.844905335000078 ], [ -82.038745119999987, 28.844858224000063 ], [ -82.038708715999974, 28.844813005000049 ], [ -82.038582375999965, 28.844666043000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040939863999938, 28.84659374000006 ], [ -82.040897058999974, 28.846606945000076 ], [ -82.040834983999957, 28.846605078000039 ], [ -82.040794313999982, 28.846603206000054 ], [ -82.040001642999982, 28.846465870000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040939863999938, 28.84659374000006 ], [ -82.040963397999974, 28.846563579000076 ], [ -82.040976228999966, 28.84653342200005 ], [ -82.040982634999978, 28.846493844000065 ], [ -82.040982610999947, 28.846433538000042 ], [ -82.040976060999981, 28.846105623000028 ], [ -82.040976045999969, 28.846067932000039 ], [ -82.040976030999957, 28.846028355000044 ], [ -82.040958888999967, 28.845981246000065 ], [ -82.040926770999988, 28.845956757000067 ], [ -82.040883957999938, 28.84594357900005 ], [ -82.040624959999946, 28.845943657000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040001642999982, 28.846465870000031 ], [ -82.039999159, 28.846130416000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05476183199994, 28.679338890000054 ], [ -82.054826844, 28.668451680000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063012500999946, 28.679335804000061 ], [ -82.058652920999975, 28.679337763000035 ], [ -82.05476183199994, 28.679338890000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071246102999964, 28.679328594000026 ], [ -82.070953204999967, 28.679335877000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070953204999967, 28.679335877000028 ], [ -82.066949560999944, 28.67932968100007 ], [ -82.063012500999946, 28.679335804000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054719052999985, 28.686499251000043 ], [ -82.05476183199994, 28.679338890000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065275392999979, 28.685486303000062 ], [ -82.065175589999967, 28.685443487000043 ], [ -82.065078368999934, 28.685441276000063 ], [ -82.064878817999954, 28.685448141000052 ], [ -82.064717648999988, 28.685464011000079 ], [ -82.064500204999945, 28.685495699000057 ], [ -82.063993650999976, 28.68550947600005 ], [ -82.063615011999957, 28.685516422000035 ], [ -82.063320790999967, 28.685507536000046 ], [ -82.062673527999948, 28.68552588600005 ], [ -82.062399778999975, 28.685523757000055 ], [ -82.062253953999971, 28.685530591000031 ], [ -82.062131166999961, 28.685557720000077 ], [ -82.062008388999971, 28.685600641000065 ], [ -82.061926548999963, 28.685650311000074 ], [ -82.061850183, 28.685716733000049 ], [ -82.061686197999961, 28.685887306000041 ], [ -82.06157236599995, 28.685985014000039 ], [ -82.061448362999954, 28.686052105000044 ], [ -82.061330699999985, 28.686090511000032 ], [ -82.061210468999946, 28.686117637000052 ], [ -82.061085107999986, 28.686119950000034 ], [ -82.06090089099996, 28.686099729000034 ], [ -82.060389172999976, 28.68603678900007 ], [ -82.05981348499995, 28.685955828000033 ], [ -82.059358052999983, 28.685895114000061 ], [ -82.058943564999936, 28.685845662000077 ], [ -82.058695384999965, 28.685818698000048 ], [ -82.058498372999964, 28.685793967000052 ], [ -82.058373031999963, 28.685830118000069 ], [ -82.058293756999944, 28.685895577000053 ], [ -82.058204281999963, 28.686021954000068 ], [ -82.058084084999962, 28.686109991000023 ], [ -82.057928069999946, 28.686195788000077 ], [ -82.057692734999989, 28.686265825000078 ], [ -82.057411353999953, 28.686347162000061 ], [ -82.056917637999959, 28.686455660000036 ], [ -82.056689960999961, 28.686498620000066 ], [ -82.05644691699996, 28.686510002000034 ], [ -82.056183403999967, 28.686516880000056 ], [ -82.055802228999937, 28.686573439000028 ], [ -82.055582208999965, 28.686580298000024 ], [ -82.055426142999977, 28.686578105000024 ], [ -82.055224018999979, 28.68656014000004 ], [ -82.055106737999949, 28.686541990000023 ], [ -82.054865807999988, 28.686499372000071 ], [ -82.054719052999985, 28.686499251000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054696130999957, 28.690310085000078 ], [ -82.054719052999985, 28.686499251000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069172444999936, 28.690314546000025 ], [ -82.06810810099995, 28.690310574000023 ], [ -82.06727912499997, 28.690283916000055 ], [ -82.06579518999996, 28.690286901000036 ], [ -82.065449783999952, 28.690275789000054 ], [ -82.065073683999969, 28.690278226000032 ], [ -82.064324049999982, 28.690294377000043 ], [ -82.063300655999967, 28.690312908000067 ], [ -82.062937333999969, 28.690290516000061 ], [ -82.062637977999941, 28.69027486400006 ], [ -82.06238725299994, 28.690290770000047 ], [ -82.062113494999949, 28.690295409000043 ], [ -82.061169408999945, 28.690304864000041 ], [ -82.060345644999984, 28.690311205000057 ], [ -82.059800620999965, 28.690332547000025 ], [ -82.059652219999975, 28.690319077000026 ], [ -82.059457759999987, 28.690298858000062 ], [ -82.059150727999963, 28.690278689000024 ], [ -82.058628788999954, 28.690274404000036 ], [ -82.057538862999934, 28.690274872000032 ], [ -82.056029337999973, 28.690270992000023 ], [ -82.055384597999989, 28.69028028200006 ], [ -82.054857559999959, 28.690307569000026 ], [ -82.054696130999957, 28.690310085000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054674484999964, 28.693969782000067 ], [ -82.054696130999957, 28.690310085000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058848171999955, 28.693972694000024 ], [ -82.056798629999946, 28.69396714800007 ], [ -82.056629857999951, 28.693964616000073 ], [ -82.05656844799995, 28.693957873000045 ], [ -82.056507031999956, 28.693937594000033 ], [ -82.056448164999949, 28.693903779000038 ], [ -82.056384180999942, 28.693867709000074 ], [ -82.05630740099997, 28.69382713300007 ], [ -82.056233195999937, 28.69381588300007 ], [ -82.056135964999953, 28.693809155000054 ], [ -82.056028503999983, 28.693809199000043 ], [ -82.055941516999951, 28.693818260000057 ], [ -82.055882674999964, 28.693829564000055 ], [ -82.05568316199998, 28.693937935000065 ], [ -82.055629442999987, 28.693960519000029 ], [ -82.055569799999944, 28.693967593000025 ], [ -82.054674484999964, 28.693969782000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061227669999937, 28.69397163800005 ], [ -82.060360300999946, 28.693965259000038 ], [ -82.060293765999972, 28.693944984000041 ], [ -82.060252806999983, 28.693906650000031 ], [ -82.060214387999963, 28.69383898600006 ], [ -82.060165741999981, 28.69378260700006 ], [ -82.060117117999937, 28.69376458000005 ], [ -82.059426296999959, 28.693762629000048 ], [ -82.059346992999963, 28.693785224000067 ], [ -82.059300963999988, 28.69383262100007 ], [ -82.059252396999966, 28.693913860000066 ], [ -82.059201245999986, 28.69395223500004 ], [ -82.059144965999963, 28.693968053000049 ], [ -82.058848171999955, 28.693972694000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069175934999976, 28.69764566300006 ], [ -82.069198335999943, 28.697542639000062 ], [ -82.069193759999962, 28.697415855000031 ], [ -82.069193259999963, 28.69665513800004 ], [ -82.069191580999984, 28.69410356700007 ], [ -82.069167281999967, 28.694050487000027 ], [ -82.069106140999963, 28.69400614400007 ], [ -82.069030637999958, 28.693983994000064 ], [ -82.067650220999951, 28.693989473000045 ], [ -82.065299286999959, 28.693985846000032 ], [ -82.063059749, 28.693971060000024 ], [ -82.061227669999937, 28.69397163800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058896594999965, 28.697615860000042 ], [ -82.058835907999935, 28.697532684000066 ], [ -82.05883565299996, 28.696716299000059 ], [ -82.058843686999978, 28.69510297000005 ], [ -82.058848171999955, 28.693972694000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070987516999935, 28.702289258000064 ], [ -82.067621636999945, 28.70224343700005 ], [ -82.066565602999958, 28.70225584700006 ], [ -82.065419665999968, 28.702224709000063 ], [ -82.064750164999964, 28.702213503000053 ], [ -82.064372611999943, 28.702221249000047 ], [ -82.063159287999952, 28.702221821000023 ], [ -82.06307389899996, 28.702209975000073 ], [ -82.063006476999988, 28.702182272000073 ], [ -82.062948029999973, 28.702138715000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062904033999985, 28.697650975000045 ], [ -82.05897637399994, 28.697647522000068 ], [ -82.058896594999965, 28.697615860000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069175934999976, 28.69764566300006 ], [ -82.069134847999976, 28.697688674000062 ], [ -82.066703346999986, 28.697664536000048 ], [ -82.062904033999985, 28.697650975000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062948029999973, 28.702138715000046 ], [ -82.062912039999958, 28.702071378000028 ], [ -82.062898515999962, 28.702000067000029 ], [ -82.06294195299995, 28.699492059000079 ], [ -82.062960037999972, 28.699105539000072 ], [ -82.062969184999986, 28.698892904000047 ], [ -82.062953344999983, 28.698257746000024 ], [ -82.062966120999988, 28.697827979000067 ], [ -82.062956342999939, 28.697769589000075 ], [ -82.06293889899996, 28.697716559000071 ], [ -82.062904033999985, 28.697650975000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054523704999951, 28.719370603000073 ], [ -82.054537004999986, 28.717181689000029 ], [ -82.054565392999962, 28.71222838400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054565392999962, 28.71222838400007 ], [ -82.054674484999964, 28.693969782000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046238491999986, 28.71391034800007 ], [ -82.046224004999942, 28.714923998000074 ], [ -82.046227561999956, 28.716221989000076 ], [ -82.046231100999989, 28.717475222000076 ], [ -82.046184073999939, 28.719205017000036 ], [ -82.046210985999949, 28.719276095000055 ], [ -82.046255804999987, 28.719320837000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054523704999951, 28.719370603000073 ], [ -82.054412436999939, 28.719362560000036 ], [ -82.054170484999986, 28.719302102000029 ], [ -82.054021158999944, 28.719317959000023 ], [ -82.05347459799998, 28.719320809000067 ], [ -82.05299374699996, 28.719326263000028 ], [ -82.051763238999968, 28.719332006000059 ], [ -82.050885144999938, 28.719308644000023 ], [ -82.049352985999974, 28.719317110000077 ], [ -82.047572942999977, 28.719351974000062 ], [ -82.046482806999961, 28.719352353000033 ], [ -82.04633645499996, 28.71934187200003 ], [ -82.046255804999987, 28.719320837000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054514533999964, 28.720423555000025 ], [ -82.054523704999951, 28.719370603000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054514533999964, 28.720423555000025 ], [ -82.054162103999943, 28.720426329000077 ], [ -82.053666314999987, 28.720434425000064 ], [ -82.052414877999979, 28.720419119000042 ], [ -82.052384907999965, 28.720216401000073 ], [ -82.052375573999939, 28.719463413000028 ], [ -82.052088859999969, 28.719479320000062 ], [ -82.051748393999958, 28.719511045000047 ], [ -82.051455694999959, 28.71950062600007 ], [ -82.050876292999988, 28.719529806000025 ], [ -82.050467093999941, 28.719479934000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046238491999986, 28.71391034800007 ], [ -82.046107071999984, 28.713881431000061 ], [ -82.045996569999943, 28.713878836000049 ], [ -82.04551648599994, 28.713875049000023 ], [ -82.045091649999961, 28.713868610000077 ], [ -82.044566024999938, 28.713876682000034 ], [ -82.042193612999938, 28.713888138000073 ], [ -82.042086264999966, 28.713838806000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104251676, 28.701456094000037 ], [ -82.102245351999954, 28.701455297000052 ], [ -82.10063207099995, 28.701442164000071 ], [ -82.100122328999987, 28.701437760000033 ], [ -82.097771549999948, 28.701420355000039 ], [ -82.096047093999971, 28.701395294000065 ], [ -82.094252648999941, 28.701374182000052 ], [ -82.094121577999942, 28.70138107300005 ], [ -82.094039615999975, 28.701374330000078 ], [ -82.093982792999952, 28.701356839000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.079337643999963, 28.723151656000027 ], [ -82.079332705999946, 28.722529327000075 ], [ -82.079336050999984, 28.719551337000041 ], [ -82.079369009999937, 28.718757516000039 ], [ -82.079379040999981, 28.717229073000055 ], [ -82.079381693999949, 28.716000996000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.077161210999975, 28.740361431000053 ], [ -82.077159882999979, 28.740206418000071 ], [ -82.077170046999981, 28.739656836000051 ], [ -82.077169201999936, 28.738506452000024 ], [ -82.077186836999942, 28.737337427000057 ], [ -82.077191288999984, 28.736203341000078 ], [ -82.077203699999984, 28.735115824000047 ], [ -82.077206033999971, 28.734696653000071 ], [ -82.077205491999962, 28.733958451000035 ], [ -82.07722313499994, 28.732801069000061 ], [ -82.077232906999939, 28.731718210000054 ], [ -82.077247944999954, 28.730612061000045 ], [ -82.077252354999985, 28.729422084000078 ], [ -82.077254318999962, 28.728499910000039 ], [ -82.077264373999981, 28.727803618000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.077161263999983, 28.740433737000046 ], [ -82.077161210999975, 28.740361431000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070571520999977, 28.737564185000053 ], [ -82.070592401999988, 28.736878667000042 ], [ -82.070588429999987, 28.736791676000053 ], [ -82.070582152999975, 28.736750916000062 ], [ -82.070569144, 28.736719518000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066791888999944, 28.742265616000054 ], [ -82.066810873999941, 28.741457946000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066791888999944, 28.742265616000054 ], [ -82.065566891999936, 28.742233444000078 ], [ -82.065049072999955, 28.742231435000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066656740999974, 28.74437075700007 ], [ -82.065798788999984, 28.74433967300007 ], [ -82.065636302999962, 28.74433975200003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066656740999974, 28.74437075700007 ], [ -82.066734720999989, 28.744350670000074 ], [ -82.066780169999959, 28.744276182000078 ], [ -82.066799616999958, 28.744195980000029 ], [ -82.06679956399995, 28.744112923000046 ], [ -82.066795755999976, 28.743233662000023 ], [ -82.066791888999944, 28.742265616000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068648981999957, 28.744604612000046 ], [ -82.068184230999975, 28.744547567000041 ], [ -82.06783323999997, 28.744519103000073 ], [ -82.067451480999978, 28.744549465000034 ], [ -82.067182882999987, 28.744508345000042 ], [ -82.066917797999963, 28.744470660000047 ], [ -82.066656740999974, 28.74437075700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065646517999937, 28.745084399000064 ], [ -82.065643026999965, 28.744700619000071 ], [ -82.065636302999962, 28.74433975200003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064804352999943, 28.74431151400006 ], [ -82.064793507, 28.743496747000052 ], [ -82.064804987999935, 28.743270664000079 ], [ -82.064808454999934, 28.742794107000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065636302999962, 28.74433975200003 ], [ -82.065558306999947, 28.744334062000064 ], [ -82.065282068999977, 28.744319876000077 ], [ -82.064804352999943, 28.74431151400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064811316999965, 28.745064755000044 ], [ -82.064804352999943, 28.74431151400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065646517999937, 28.745084399000064 ], [ -82.064811316999965, 28.745064755000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064811316999965, 28.745064755000044 ], [ -82.063925449999942, 28.74508316400005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064811802999941, 28.745852366000065 ], [ -82.064811316999965, 28.745064755000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064811802999941, 28.745852366000065 ], [ -82.064607211999942, 28.745848301000024 ], [ -82.063791332999983, 28.745786979000059 ], [ -82.063646460999962, 28.745799482000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065606625999976, 28.748853504000067 ], [ -82.064823408999985, 28.748856746000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064823408999985, 28.748856746000058 ], [ -82.064216667999972, 28.748857183000041 ], [ -82.062463922999939, 28.748861337000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064823408999985, 28.748856746000058 ], [ -82.064822946999982, 28.748109230000068 ], [ -82.064822019999951, 28.746608471000059 ], [ -82.064811802999941, 28.745852366000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063925449999942, 28.74508316400005 ], [ -82.062601481999934, 28.745065796000063 ], [ -82.061352940999939, 28.745070970000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064804352999943, 28.74431151400006 ], [ -82.064547614999981, 28.744297316000029 ], [ -82.064224908999961, 28.744308094000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064224908999961, 28.744308094000075 ], [ -82.064112150999961, 28.744297524000046 ], [ -82.063341965999939, 28.744300751000026 ], [ -82.063079531999961, 28.744305300000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06303805899995, 28.74149985300005 ], [ -82.062658342999953, 28.741496246000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063079531999961, 28.744305300000065 ], [ -82.063069220999978, 28.743144608000023 ], [ -82.06304967899996, 28.742619338000054 ], [ -82.06303805899995, 28.74149985300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063646460999962, 28.745799482000052 ], [ -82.06315412899994, 28.745796381000048 ], [ -82.061842937999984, 28.745787974000052 ], [ -82.061353993999944, 28.745785243000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061411933999977, 28.751144916000044 ], [ -82.061291361999963, 28.751086006000037 ], [ -82.061237752999943, 28.751063461000058 ], [ -82.061166257999957, 28.751029374000041 ], [ -82.061133484999971, 28.751005769000074 ], [ -82.061123044999988, 28.750978216000078 ], [ -82.061117068999977, 28.750944099000037 ], [ -82.06111853699997, 28.750908667000033 ], [ -82.061131909999972, 28.750860107000051 ], [ -82.061188424999955, 28.750739355000064 ], [ -82.061259831999962, 28.750623843000028 ], [ -82.061315037999975, 28.750542317000054 ], [ -82.061329545999968, 28.75048464200006 ], [ -82.061330063999947, 28.750409312000045 ], [ -82.061336247999975, 28.749510692000058 ], [ -82.061334089999946, 28.74896970900005 ], [ -82.061338310999986, 28.747623857000065 ], [ -82.061348602999942, 28.747243043000026 ], [ -82.061352108999984, 28.746388757000034 ], [ -82.061353993999944, 28.745785243000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061352940999939, 28.745070970000029 ], [ -82.061233329999936, 28.745060694000074 ], [ -82.059976348999953, 28.745053314000074 ], [ -82.058312715999989, 28.74505902900006 ], [ -82.057158347999973, 28.745044561000043 ], [ -82.055138217999968, 28.745045400000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061411933999977, 28.751144916000044 ], [ -82.061480564999954, 28.751040709000051 ], [ -82.061739169999953, 28.750531282000054 ], [ -82.061858990999951, 28.750307035000048 ], [ -82.061958219999951, 28.750117776000025 ], [ -82.062310202999981, 28.749242151000033 ], [ -82.062463922999939, 28.748861337000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068931246999966, 28.748848986000041 ], [ -82.067615049999972, 28.748852514000077 ], [ -82.066364146999945, 28.748853131000033 ], [ -82.066360871999962, 28.748853133000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068931246999966, 28.748848986000041 ], [ -82.068937105999964, 28.74787520600006 ], [ -82.068933341, 28.747090461000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.073913348999952, 28.748839780000026 ], [ -82.073650060999967, 28.748840768000036 ], [ -82.071206158999985, 28.748847806000072 ], [ -82.070494436, 28.748848180000039 ], [ -82.068931246999966, 28.748848986000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091615403999981, 28.748878474000037 ], [ -82.091449641999986, 28.748858539000025 ], [ -82.091309887999955, 28.748847176000027 ], [ -82.091150634999963, 28.748835829000029 ], [ -82.091007639999987, 28.748835925000037 ], [ -82.090835396999978, 28.748836041000061 ], [ -82.089584194999986, 28.748836876000041 ], [ -82.087455523999949, 28.74883254100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086236823999968, 28.748836188000041 ], [ -82.086248287999979, 28.746965960000068 ], [ -82.086248240999964, 28.74221110700006 ], [ -82.086253056999965, 28.741893373000039 ], [ -82.086258034999958, 28.741772542000035 ], [ -82.086283330999947, 28.741660649000039 ], [ -82.086328943999945, 28.741557693000061 ], [ -82.086360813999988, 28.741523736000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037138525999978, 28.715626384000075 ], [ -82.037017340999967, 28.715646278000065 ], [ -82.036622770999941, 28.715644127000076 ], [ -82.035493590999977, 28.715669200000036 ], [ -82.033779207999942, 28.715660222000054 ], [ -82.032006075999959, 28.715646529000026 ], [ -82.031858134999936, 28.715654889000064 ], [ -82.031726522999975, 28.715634071000068 ], [ -82.031657331999952, 28.715586654000049 ], [ -82.031626557999971, 28.715494055000079 ], [ -82.031618805999983, 28.715277224000033 ], [ -82.031648863999976, 28.713264266000067 ], [ -82.031643152999948, 28.712035427000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056997541999976, 28.725198870000042 ], [ -82.056959529999972, 28.725218998000059 ], [ -82.056894889999967, 28.725225728000055 ], [ -82.056826448999971, 28.72523581400003 ], [ -82.056750403999956, 28.725245901000051 ], [ -82.056670554999982, 28.72525263700004 ], [ -82.056400575999987, 28.72525610200006 ], [ -82.055438538999965, 28.725266556000065 ], [ -82.054719850999959, 28.725250090000031 ], [ -82.054480295999952, 28.725260242000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054467375999934, 28.726777344000027 ], [ -82.054480295999952, 28.725260242000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054495949999989, 28.723182082000051 ], [ -82.054514533999964, 28.720423555000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054495949999989, 28.723182082000051 ], [ -82.054340804999981, 28.723174100000051 ], [ -82.054224448999946, 28.723172136000073 ], [ -82.052330815999937, 28.723159474000056 ], [ -82.051669186999959, 28.723159729000031 ], [ -82.050532232999956, 28.723123288000068 ], [ -82.050482794999937, 28.723109899000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054480295999952, 28.725260242000047 ], [ -82.054495949999989, 28.723182082000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03360020599996, 28.741281446000073 ], [ -82.033628865999958, 28.741039411000031 ], [ -82.033645025999988, 28.740933022000036 ], [ -82.033657543999936, 28.740845217000071 ], [ -82.03367028599996, 28.740752342000064 ], [ -82.033683008999958, 28.740597553000043 ], [ -82.033686127999943, 28.740366780000045 ], [ -82.033650937999937, 28.740155716000061 ], [ -82.033631730999957, 28.740009378000025 ], [ -82.033618914999977, 28.739871481000023 ], [ -82.033631593999985, 28.739581606000058 ], [ -82.033650707999982, 28.739440886000068 ], [ -82.033666618999973, 28.739274838000028 ], [ -82.033673835999934, 28.738576874000046 ], [ -82.03371389199998, 28.737949382000068 ], [ -82.033723749999979, 28.737575606000064 ], [ -82.033688687999984, 28.737149073000069 ], [ -82.033690628999977, 28.736880883000026 ], [ -82.033662771999957, 28.736318710000035 ], [ -82.033656220999944, 28.735509261000061 ], [ -82.033618261999948, 28.73534178500006 ], [ -82.033146361999968, 28.734400551000078 ], [ -82.033020483999962, 28.734167727000056 ], [ -82.032668071999979, 28.733646659000044 ], [ -82.032240169999966, 28.733086799000034 ], [ -82.031956991999948, 28.732682142000044 ], [ -82.031799637999939, 28.732343984000067 ], [ -82.031692609999936, 28.73202244600003 ], [ -82.031107356999939, 28.731080071000065 ], [ -82.031022478999944, 28.730382207000048 ], [ -82.03088762699997, 28.729858955000054 ], [ -82.030468220999978, 28.728671768000027 ], [ -82.02999897899997, 28.727620907000073 ], [ -82.029819257999975, 28.727172419000055 ], [ -82.029579644999956, 28.726618407000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032737621999956, 28.743672509000078 ], [ -82.032741978999979, 28.743433601000049 ], [ -82.032735077999973, 28.743228703000057 ], [ -82.032755517999988, 28.742993666000075 ], [ -82.032731512999987, 28.742764666000028 ], [ -82.032717931999969, 28.74250584300006 ], [ -82.032727942999941, 28.742276524000033 ], [ -82.032727804, 28.741830565000043 ], [ -82.032733768999947, 28.741645738000045 ], [ -82.032740150999985, 28.741458387000023 ], [ -82.032782328999986, 28.741264064000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98250341499994, 28.787706447000062 ], [ -81.98344155999996, 28.78822634200003 ], [ -81.984630082999956, 28.788892486000066 ], [ -81.985407047999956, 28.78929217600006 ], [ -81.985734638999986, 28.789421712000035 ], [ -81.986289020999948, 28.789684470000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982467080999982, 28.788214751000055 ], [ -81.98302991099996, 28.788485292000075 ], [ -81.984000069999979, 28.788881313000047 ], [ -81.985054242999979, 28.789255137000055 ], [ -81.986289020999948, 28.789684470000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982578835999959, 28.785681079000028 ], [ -81.982244997999942, 28.785510370000054 ], [ -81.981862834999959, 28.785314218000053 ], [ -81.981501667999964, 28.785151368000072 ], [ -81.981207692999988, 28.785025526000027 ], [ -81.980909519999955, 28.784899683000049 ], [ -81.980754134999984, 28.784829362000039 ], [ -81.980371967999986, 28.784681305000049 ], [ -81.979834413999981, 28.784481424000035 ], [ -81.978948290999938, 28.784177887000055 ], [ -81.978356144999964, 28.783977992000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987578531999986, 28.789092592000031 ], [ -81.986759569999947, 28.788626310000041 ], [ -81.986125405999985, 28.788248843000076 ], [ -81.985188862999962, 28.787719641000024 ], [ -81.984210330999986, 28.787183026000037 ], [ -81.98257072499996, 28.786249228000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008289115999958, 28.759654096000077 ], [ -82.008243386999936, 28.759677125000053 ], [ -82.008193303999974, 28.759686723000073 ], [ -82.004208381999945, 28.759660775000043 ], [ -81.995901351999976, 28.759626356000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066810873999941, 28.741457946000025 ], [ -82.066521657999942, 28.741460952000068 ], [ -82.066105709999988, 28.741472612000052 ], [ -82.065761255999973, 28.741487100000029 ], [ -82.065583059999938, 28.741482607000023 ], [ -82.065436399999953, 28.74146115800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.092210299999977, 28.749003128000027 ], [ -82.092051150999964, 28.748960560000057 ], [ -82.091900658999975, 28.748928656000032 ], [ -82.091764007999984, 28.748904361000029 ], [ -82.091675789999954, 28.748887656000079 ], [ -82.091615403999981, 28.748878474000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096058189999951, 28.748780971000031 ], [ -82.095968247999963, 28.748771890000057 ], [ -82.095798757999944, 28.748768961000053 ], [ -82.095490906999942, 28.748764608000045 ], [ -82.094081382999946, 28.748764071000039 ], [ -82.092874209999934, 28.748764906000076 ], [ -82.092768714999977, 28.748769551000066 ], [ -82.092689170999961, 28.748781798000039 ], [ -82.092616563999968, 28.748816903000034 ], [ -82.092566443999942, 28.748856566000029 ], [ -82.092531900999973, 28.748908411000059 ], [ -82.092499100999987, 28.748978544000067 ], [ -82.092462875999956, 28.749083735000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.097579604999964, 28.750078458000075 ], [ -82.097551844999941, 28.749983980000025 ], [ -82.097477286999947, 28.74977827400005 ], [ -82.097447820999946, 28.749709707000079 ], [ -82.097406582999952, 28.749631848000035 ], [ -82.097350810999956, 28.749539073000051 ], [ -82.097295387999964, 28.749452236000025 ], [ -82.09724517899997, 28.749394355000049 ], [ -82.097198435999985, 28.749344091000069 ], [ -82.097146506999934, 28.749295356000061 ], [ -82.097073807999948, 28.749229869000033 ], [ -82.096982072999936, 28.749152203000051 ], [ -82.096897271999978, 28.749091299000042 ], [ -82.096800364999979, 28.749030403000063 ], [ -82.096687890999988, 28.748966468000049 ], [ -82.096523523999963, 28.748896475000038 ], [ -82.096379934999959, 28.748849329000052 ], [ -82.096208679999961, 28.748809823000045 ], [ -82.096058189999951, 28.748780971000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.097588820999988, 28.752549098000031 ], [ -82.097598766999965, 28.752085749000059 ], [ -82.097601338999937, 28.751131629000042 ], [ -82.097595336999973, 28.750258296000027 ], [ -82.097588351999946, 28.750185142000078 ], [ -82.097579604999964, 28.750078458000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099927156999968, 28.752550439000061 ], [ -82.098422451999966, 28.75254239800006 ], [ -82.097588820999988, 28.752549098000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.097581709999986, 28.754202806000023 ], [ -82.09757802699994, 28.753961993000075 ], [ -82.097582605999946, 28.753306605000034 ], [ -82.097588820999988, 28.752549098000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.097582833999979, 28.754624205000027 ], [ -82.097589238999944, 28.754859709000073 ], [ -82.097574485999985, 28.755734582000059 ], [ -82.097569612999962, 28.756074469000055 ], [ -82.097569803999988, 28.756280230000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100153971999987, 28.754328693000048 ], [ -82.100251580999952, 28.754377760000068 ], [ -82.100295822999954, 28.754407522000065 ], [ -82.100323160999949, 28.754439015000059 ], [ -82.100345060999985, 28.754471806000026 ], [ -82.100356355999963, 28.754498155000078 ], [ -82.100363752999954, 28.754527563000067 ], [ -82.100368117999949, 28.754559264000079 ], [ -82.100368162999985, 28.754583371000024 ], [ -82.100358892999964, 28.754635711000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100656556999979, 28.754319434000024 ], [ -82.100434115999974, 28.754323975000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100656556999979, 28.754319434000024 ], [ -82.100593566999976, 28.754359552000039 ], [ -82.100548092999986, 28.754400649000047 ], [ -82.100496133999968, 28.754459896000071 ], [ -82.100432263999949, 28.754528701000027 ], [ -82.100358892999964, 28.754635711000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100926707999974, 28.754311613000027 ], [ -82.100874190999946, 28.754312423000044 ], [ -82.100803212999949, 28.754314864000037 ], [ -82.100723565999942, 28.754317310000033 ], [ -82.100656556999979, 28.754319434000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139166993999936, 28.674227629000029 ], [ -82.139082311999971, 28.674388915000065 ], [ -82.138775437999982, 28.674951840000062 ], [ -82.138389895999978, 28.675690404000079 ], [ -82.138217518999966, 28.676015308000046 ], [ -82.137869017999947, 28.676681933000054 ], [ -82.137327703999972, 28.677714113000036 ], [ -82.137118328999975, 28.678116142000079 ], [ -82.13626802899995, 28.679737812000042 ], [ -82.135724126999946, 28.68077224600006 ], [ -82.135418404999939, 28.681356144000063 ], [ -82.134559689999946, 28.682994686000029 ], [ -82.134125561999952, 28.683819066000069 ], [ -82.133558649999941, 28.68490994900003 ], [ -82.132853799999964, 28.686247021000042 ], [ -82.132233208999935, 28.687423729000045 ], [ -82.131717335999952, 28.688415230000032 ], [ -82.13109927499994, 28.689587416000052 ], [ -82.130588477999936, 28.690563105000024 ], [ -82.130356058999951, 28.691003520000038 ], [ -82.12963326299996, 28.692385739000031 ], [ -82.12893087599997, 28.693725043000029 ], [ -82.128371508999976, 28.694793322000066 ], [ -82.127574574999983, 28.696306528000036 ], [ -82.127038170999981, 28.697331889000054 ], [ -82.126683113999945, 28.698007181000037 ], [ -82.12613646799997, 28.699046091000071 ], [ -82.125528516999964, 28.700211470000056 ], [ -82.124815800999954, 28.701564306000023 ], [ -82.12427934599998, 28.702591912000059 ], [ -82.123648345999982, 28.703788906000057 ], [ -82.123175733999972, 28.704692293000051 ], [ -82.12244252399995, 28.706088025000042 ], [ -82.121870247999937, 28.70717660300005 ], [ -82.121645423999951, 28.707605709000063 ], [ -82.121223890999943, 28.70842551800007 ], [ -82.120986329999937, 28.708915585000057 ], [ -82.120756460999985, 28.709416930000032 ], [ -82.120713034999937, 28.70950726500007 ], [ -82.120541940999942, 28.70990923200003 ], [ -82.120457686999941, 28.71012150100006 ], [ -82.120401517999937, 28.710263767000072 ], [ -82.120225312999935, 28.710677025000052 ], [ -82.119990433999988, 28.711282213000061 ], [ -82.119648359999985, 28.712196758000061 ], [ -82.119326704999935, 28.71305936400006 ], [ -82.118946603999973, 28.714071999000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100358892999964, 28.754635711000049 ], [ -82.100297233999981, 28.754750924000064 ], [ -82.100098121999963, 28.755047491000028 ], [ -82.099909398999955, 28.755330299000036 ], [ -82.099672184999974, 28.755674258000056 ], [ -82.099485216999938, 28.755983038000068 ], [ -82.099322487999984, 28.756253603000062 ], [ -82.099190930999953, 28.756484417000024 ], [ -82.099085348999949, 28.756681598000057 ], [ -82.098894930999961, 28.757011771000066 ], [ -82.098792793999962, 28.757184503000076 ], [ -82.098310908999963, 28.757818626000073 ], [ -82.098010736999981, 28.758194166000067 ], [ -82.09763286499998, 28.75871455500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100128077999955, 28.756166955000026 ], [ -82.100388911999971, 28.755862378000074 ], [ -82.101393105999989, 28.754691844000035 ], [ -82.101724244999957, 28.754315244000054 ], [ -82.101950263999981, 28.75404175500006 ], [ -82.102197425999975, 28.75375137900005 ], [ -82.103361615999972, 28.752393813000026 ], [ -82.104006384999934, 28.751641612000071 ], [ -82.105341433999968, 28.749993263000079 ], [ -82.105783484999961, 28.749383537000028 ], [ -82.106635671999982, 28.747720761000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.097808100999941, 28.758832550000079 ], [ -82.098946528999988, 28.75778742500006 ], [ -82.099321686999986, 28.757421487000045 ], [ -82.100007357999971, 28.756780480000032 ], [ -82.100469681999982, 28.756350762000068 ], [ -82.10062953399995, 28.756207754000059 ], [ -82.100826093999956, 28.756018995000034 ], [ -82.101185498999939, 28.755636571000025 ], [ -82.101482571999952, 28.755309681000028 ], [ -82.101775226999962, 28.754988312000023 ], [ -82.10208223799998, 28.754632709000077 ], [ -82.102234639999949, 28.754460429000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102214090999951, 28.754290907000041 ], [ -82.101900347999958, 28.754290230000038 ], [ -82.101820786999951, 28.754290290000029 ], [ -82.101768900999957, 28.754290329000071 ], [ -82.101647828999944, 28.754288895000059 ], [ -82.10125047799994, 28.754306492000069 ], [ -82.100926707999974, 28.754311613000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102214090999951, 28.754290907000041 ], [ -82.102482888999987, 28.753960573000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102234639999949, 28.754460429000062 ], [ -82.102244578999944, 28.754425090000041 ], [ -82.10225672699994, 28.754377602000034 ], [ -82.102260110999964, 28.754339648000041 ], [ -82.102252832999966, 28.754290878000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10262645499995, 28.754327175000071 ], [ -82.102460396999959, 28.754306572000075 ], [ -82.102362144999972, 28.754294453000057 ], [ -82.102252832999966, 28.754290878000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10262645499995, 28.754327175000071 ], [ -82.102550285999939, 28.754256511000051 ], [ -82.102535046999947, 28.754238233000024 ], [ -82.102512879999949, 28.754208987000027 ], [ -82.102499018999936, 28.754183392000073 ], [ -82.102486535999958, 28.754152613000031 ], [ -82.10247783899996, 28.754103847000067 ], [ -82.102474337, 28.754058125000029 ], [ -82.102477745999977, 28.754007825000031 ], [ -82.102482888999987, 28.753960573000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102234639999949, 28.754460429000062 ], [ -82.102290961999984, 28.754428403000077 ], [ -82.102335136999955, 28.754410733000043 ], [ -82.102392562999967, 28.754385333000073 ], [ -82.10243563299997, 28.754367663000039 ], [ -82.102471516999969, 28.754357775000074 ], [ -82.102501944999972, 28.754345558000068 ], [ -82.102554513999962, 28.754335764000075 ], [ -82.10262645499995, 28.754327175000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103121905999956, 28.754432878000046 ], [ -82.102867252999943, 28.754369668000038 ], [ -82.10262645499995, 28.754327175000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104054898999948, 28.754764888000068 ], [ -82.103859807999982, 28.754683080000063 ], [ -82.103658716999973, 28.754603919000033 ], [ -82.103405643999963, 28.754521672000067 ], [ -82.103275536999945, 28.754477875000077 ], [ -82.103192493999984, 28.75445355200003 ], [ -82.103121905999956, 28.754432878000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102741187999982, 28.755626882000058 ], [ -82.102739674999953, 28.755496416000028 ], [ -82.10274727999996, 28.754784327000039 ], [ -82.102750006999941, 28.754741649000039 ], [ -82.102762408999979, 28.75469042800006 ], [ -82.102776225999946, 28.754669689000025 ], [ -82.102803876999985, 28.754647720000037 ], [ -82.102843979999989, 28.754624523000075 ], [ -82.102895153999953, 28.754602537000039 ], [ -82.102946333999967, 28.754586646000064 ], [ -82.10298783099995, 28.754573202000074 ], [ -82.10302655199996, 28.754552444000069 ], [ -82.103062496999939, 28.754521934000024 ], [ -82.103087373999983, 28.754492650000032 ], [ -82.103121905999956, 28.754432878000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103041442999938, 28.755626654000025 ], [ -82.102741187999982, 28.755626882000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102482888999987, 28.753960573000029 ], [ -82.102614182999957, 28.753805009000075 ], [ -82.10268674699995, 28.753724175000059 ], [ -82.102814579999972, 28.753568615000063 ], [ -82.102952096999957, 28.753408953000076 ], [ -82.103086398999949, 28.753243573000077 ], [ -82.103255108999974, 28.753034906000039 ], [ -82.103537032999952, 28.752665203000049 ], [ -82.103643584999986, 28.752524337000068 ], [ -82.103727939999942, 28.752405575000068 ], [ -82.103855581999937, 28.752222436000068 ], [ -82.103923287999976, 28.752129201000059 ], [ -82.103997652999965, 28.752031527000042 ], [ -82.104181901999937, 28.751774023000053 ], [ -82.104520172999969, 28.751345034000053 ], [ -82.10542391599995, 28.750170171000036 ], [ -82.105906736999941, 28.749417637000079 ], [ -82.106430250999949, 28.748395416000051 ], [ -82.106635671999982, 28.747720761000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100153971999987, 28.754328693000048 ], [ -82.09992755899998, 28.754334455000048 ], [ -82.099614734999989, 28.75434954800005 ], [ -82.099315504999936, 28.754373090000058 ], [ -82.099056976999975, 28.754384044000062 ], [ -82.098801538999965, 28.754384108000067 ], [ -82.098600229999988, 28.754376691000061 ], [ -82.098399692999976, 28.754360336000047 ], [ -82.098200320999979, 28.754335728000058 ], [ -82.098002497999971, 28.754302524000025 ], [ -82.097806814999956, 28.754260381000051 ], [ -82.097664748999989, 28.754224084000043 ], [ -82.097581709999986, 28.754202806000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.097581709999986, 28.754202806000023 ], [ -82.097423421999963, 28.754151677000038 ], [ -82.097265259999972, 28.754092931000059 ], [ -82.097084007999968, 28.754015920000029 ], [ -82.096906828999977, 28.753938908000066 ], [ -82.096745928999951, 28.753854707000073 ], [ -82.096589089999952, 28.753759739000031 ], [ -82.096440393999956, 28.753662972000029 ], [ -82.096279465999942, 28.753548275000071 ], [ -82.096128704999956, 28.753419217000044 ], [ -82.095977921999975, 28.753266838000059 ], [ -82.095878078999988, 28.753164654000045 ], [ -82.095759892999979, 28.753039160000071 ], [ -82.095635577999985, 28.752888556000073 ], [ -82.095519401999979, 28.752734358000055 ], [ -82.095411364999961, 28.75257477200006 ], [ -82.09532982199994, 28.752447460000042 ], [ -82.095256413999948, 28.752312964000055 ], [ -82.095199307999962, 28.752196398000024 ], [ -82.094817858999988, 28.751339156000029 ], [ -82.094717905999971, 28.751111394000077 ], [ -82.094624087999989, 28.750915919000079 ], [ -82.094554750999976, 28.75077783200004 ], [ -82.094460976999983, 28.75062900100005 ], [ -82.094363133999934, 28.750481964000073 ], [ -82.094257155999969, 28.750343903000044 ], [ -82.094159336999951, 28.750225571000044 ], [ -82.094069675999947, 28.750121583000066 ], [ -82.093931122999948, 28.749978164000026 ], [ -82.093778320999945, 28.749834753000073 ], [ -82.093666282999948, 28.74974872100006 ], [ -82.093552208999938, 28.749660895000034 ], [ -82.093417766999949, 28.749560528000075 ], [ -82.093311851999943, 28.749490637000065 ], [ -82.093197791999955, 28.749418957000046 ], [ -82.09307559399997, 28.749350871000047 ], [ -82.092974992999984, 28.74929981400004 ], [ -82.092864260999988, 28.749248069000032 ], [ -82.092748337999979, 28.749194803000023 ], [ -82.09264971999994, 28.749153718000059 ], [ -82.092552837999961, 28.749117205000061 ], [ -82.092462875999956, 28.749083735000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119124264999982, 28.756186180000043 ], [ -82.119147475999966, 28.752811041000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060744459999967, 28.756484449000027 ], [ -82.061045930999967, 28.757474085000069 ], [ -82.061322110999981, 28.758409082000071 ], [ -82.061540760999947, 28.759157889000051 ], [ -82.061750253999946, 28.759955278000064 ], [ -82.062107024999989, 28.761197896000056 ], [ -82.062477614999978, 28.762491107000073 ], [ -82.062774545999957, 28.763513126000078 ], [ -82.063154352999959, 28.764826571000071 ], [ -82.063361532999977, 28.76555716300004 ], [ -82.063575614999934, 28.766299897000067 ], [ -82.063946234999946, 28.767580958000053 ], [ -82.064309962999971, 28.768849878000026 ], [ -82.064692107999974, 28.770167364000031 ], [ -82.064956865999989, 28.771098309000024 ], [ -82.065380465999965, 28.772555435000072 ], [ -82.065675154999951, 28.773577448000026 ], [ -82.065810991999967, 28.77404899000004 ], [ -82.066110284999979, 28.775073021000026 ], [ -82.066400396999938, 28.776094224000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066400396999938, 28.776094224000076 ], [ -82.066524723999976, 28.77652205000004 ], [ -82.06688483399995, 28.777781247000064 ], [ -82.067159281999977, 28.778718660000038 ], [ -82.067253228999959, 28.779048940000052 ], [ -82.067476113999987, 28.77981959400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.082957237999949, 28.774389765000024 ], [ -82.082718070999988, 28.774354258000074 ], [ -82.082089881999934, 28.774329932000057 ], [ -82.081322968999984, 28.774346208000054 ], [ -82.080525505999958, 28.774366377000035 ], [ -82.079911513999946, 28.774358451000069 ], [ -82.079194020999978, 28.774363019000077 ], [ -82.078896438999948, 28.774365265000029 ], [ -82.078458882999939, 28.774365519000071 ], [ -82.07779667899996, 28.774375230000032 ], [ -82.076921573999982, 28.774379876000069 ], [ -82.076468720999969, 28.77437184300004 ], [ -82.076075863999961, 28.774373101000037 ], [ -82.075411303999942, 28.77438072800004 ], [ -82.07523251899994, 28.774379791000058 ], [ -82.074878464999983, 28.774366516000043 ], [ -82.07481377199997, 28.774364479000042 ], [ -82.074753789999988, 28.774370730000044 ], [ -82.074693810999975, 28.77438423500007 ], [ -82.074630307999939, 28.774402924000071 ], [ -82.074596209999982, 28.774419524000052 ], [ -82.074571520999939, 28.774436119000029 ], [ -82.074550359999989, 28.774452712000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06883350399994, 28.784521028000029 ], [ -82.068407924999974, 28.784533741000075 ], [ -82.068095837999977, 28.784550564000028 ], [ -82.067604070999948, 28.784584138000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091841089999946, 28.861758371000064 ], [ -82.091754937999951, 28.859940036000069 ], [ -82.091669120999939, 28.858504520000054 ], [ -82.091554633999976, 28.856508972000029 ], [ -82.091395408999972, 28.853995937000036 ], [ -82.091284990999952, 28.852039375000061 ], [ -82.091141979999975, 28.849636212000064 ], [ -82.090978434999954, 28.846761623000077 ], [ -82.090794622999965, 28.843716906000054 ], [ -82.090643487999955, 28.841203858000029 ], [ -82.090406370999972, 28.837014256000032 ], [ -82.090361392999966, 28.836206107000066 ], [ -82.090202181999985, 28.833639894000044 ], [ -82.09003884599997, 28.830946076000032 ], [ -82.089961095999968, 28.829471556000044 ], [ -82.089899866999986, 28.828482641000051 ], [ -82.08974877299994, 28.825966043000051 ], [ -82.089585356999976, 28.823151702000075 ], [ -82.089499642999954, 28.821762257000046 ], [ -82.089348479999956, 28.819139317000065 ], [ -82.089197446999947, 28.816661706000048 ], [ -82.089066966999951, 28.814438883000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.092213152999989, 28.868156166000063 ], [ -82.09209044399995, 28.865994029000035 ], [ -82.092049555999949, 28.865288677000024 ], [ -82.092016913999942, 28.864803084000073 ], [ -82.091914751, 28.863101734000054 ], [ -82.091841089999946, 28.861758371000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020614225999964, 28.874564589000045 ], [ -82.020613247999961, 28.874444783000058 ], [ -82.020615377999945, 28.872731446000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01854076099994, 28.874676752000028 ], [ -82.017965299999958, 28.874676067000053 ], [ -82.017649512999981, 28.874670317000039 ], [ -82.017337015999942, 28.874664568000071 ], [ -82.017206754999961, 28.874666016000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023867172999985, 28.877437335000025 ], [ -82.020610550999947, 28.877446557000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022601750999968, 28.879158338000025 ], [ -82.020610513999941, 28.879159020000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020613023999942, 28.88004843300007 ], [ -82.020610513999941, 28.879159020000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008141554999952, 28.870866002000071 ], [ -82.008136232999959, 28.872755793000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95826733399997, 28.821654196000054 ], [ -81.959533132999979, 28.821945492000054 ], [ -81.960169361999988, 28.822088208000025 ], [ -81.96079451199995, 28.82221529900005 ], [ -81.961242316999972, 28.822303287000068 ], [ -81.962035957999944, 28.822444087000065 ], [ -81.963295159999973, 28.822637726000039 ], [ -81.964110984999934, 28.822757042000035 ], [ -81.965237286, 28.822922345000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975303327999939, 28.824327227000026 ], [ -81.976097979999963, 28.824428241000078 ], [ -81.97637313499996, 28.82445290000004 ], [ -81.976691287999984, 28.824466207000057 ], [ -81.976923452999984, 28.824473820000037 ], [ -81.97718141699994, 28.824473863000037 ], [ -81.977531820999957, 28.824460671000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977531820999957, 28.824460671000054 ], [ -81.977742492999937, 28.82445124000003 ], [ -81.978157392999947, 28.824413446000051 ], [ -81.981913236999958, 28.823922964000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987629336999987, 28.821209636000049 ], [ -81.987699202999977, 28.821183613000073 ], [ -81.988344093999956, 28.821174204000044 ], [ -81.990577021999968, 28.821188577000044 ], [ -81.991033817999948, 28.821190973000057 ], [ -81.99129983399996, 28.821188625000048 ], [ -81.991348200999937, 28.821186261000037 ], [ -81.991393078999977, 28.82117758000004 ], [ -81.991436875999966, 28.821162604000051 ], [ -81.991482555999937, 28.82114131000003 ], [ -81.991525551999985, 28.821108183000035 ], [ -81.991552426999988, 28.821063223000067 ], [ -81.991573925999944, 28.821018264000031 ], [ -81.991590054999961, 28.820940174000043 ], [ -81.991600879999964, 28.819984161000036 ], [ -81.991595511999947, 28.819913170000063 ], [ -81.991584768999985, 28.819856377000065 ], [ -81.99156058899996, 28.819804314000066 ], [ -81.99153103499998, 28.819759352000062 ], [ -81.991482671999961, 28.819716754000069 ], [ -81.990542254, 28.819361736000076 ], [ -81.990491203999966, 28.819333336000057 ], [ -81.990450901999964, 28.819297838000068 ], [ -81.990415973999973, 28.819262339000034 ], [ -81.990381047999961, 28.819219743000076 ], [ -81.990364928999952, 28.819177147000062 ], [ -81.990348813999958, 28.819113254000058 ], [ -81.990343446999987, 28.819035163000024 ], [ -81.990343484999983, 28.818625781000037 ], [ -81.990346183999975, 28.818500363000055 ], [ -81.990360159999966, 28.818448778000061 ], [ -81.990392625999959, 28.81839872300003 ], [ -81.990434007999966, 28.818356784000059 ], [ -81.990502044999971, 28.818306331000031 ], [ -81.990577284999972, 28.818268948000025 ], [ -81.990741190999984, 28.818235357000049 ], [ -81.990822338999976, 28.818217851000043 ], [ -81.990895426999941, 28.818193247000067 ], [ -81.990944868999975, 28.818161067000062 ], [ -81.990998612999988, 28.818113743000026 ], [ -81.991048058, 28.818055060000063 ], [ -81.991099649999967, 28.818015308000042 ], [ -81.991148391999957, 28.81798417300007 ], [ -81.991198535999956, 28.817962308000062 ], [ -81.991258723999977, 28.817947168000046 ], [ -81.992133594999984, 28.817971832000069 ], [ -81.99239154299994, 28.81797374000007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99040778899996, 28.825806447000048 ], [ -81.992107961999977, 28.826988792000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992107961999977, 28.826988792000066 ], [ -81.992869399999961, 28.827514935000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992869399999961, 28.827514935000067 ], [ -81.993601463999937, 28.828023823000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993601463999937, 28.828023823000024 ], [ -81.994199614999957, 28.828439315000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994340270999942, 28.828537019000066 ], [ -81.994829954999943, 28.828872321000063 ], [ -81.995165389999954, 28.829104120000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995165389999954, 28.829104120000068 ], [ -81.995909719999986, 28.829621620000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995909719999986, 28.829621620000069 ], [ -81.996649159999947, 28.830134803000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996649159999947, 28.830134803000078 ], [ -81.997381262999966, 28.830639358000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997381262999966, 28.830639358000042 ], [ -81.998115818999963, 28.831148222000024 ], [ -81.998223553999935, 28.831223689000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998223553999935, 28.831223689000069 ], [ -81.998642256999972, 28.83151046100005 ], [ -81.999075650999941, 28.83181017000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999075650999941, 28.83181017000004 ], [ -81.999805327999979, 28.832316867000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011819670999955, 28.837821533000067 ], [ -82.011807578999935, 28.83915618900005 ], [ -82.011805136999953, 28.839216561000057 ], [ -82.011788000999957, 28.839270466000073 ], [ -82.011751274999938, 28.839309280000066 ], [ -82.011709651, 28.839343783000061 ], [ -82.01166802299997, 28.839367503000062 ], [ -82.011633742999948, 28.839380443000039 ], [ -82.01159456299996, 28.839386915000034 ], [ -82.011548035999965, 28.839389076000032 ], [ -82.011006859999952, 28.839380496000047 ], [ -82.010957884999982, 28.839378343000078 ], [ -82.01092115199998, 28.839367566000078 ], [ -82.010886867999943, 28.839348163000068 ], [ -82.010857481999949, 28.839328760000058 ], [ -82.010835439999937, 28.839307200000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035398750999946, 28.847230299000046 ], [ -82.035249481999983, 28.847263243000043 ], [ -82.034936595999966, 28.847269090000054 ], [ -82.03485608799997, 28.847346461000029 ], [ -82.034853087999977, 28.848107793000054 ], [ -82.034811605999948, 28.848124992000066 ], [ -82.03476767899997, 28.848125004000053 ], [ -82.034707476999984, 28.848110695000059 ], [ -82.034605774999989, 28.848058438000066 ], [ -82.034484562999978, 28.848047009000027 ], [ -82.034402398999987, 28.848037720000036 ], [ -82.034319423999989, 28.848034877000032 ], [ -82.034212911999987, 28.84803676000007 ], [ -82.034075163999944, 28.848055662000036 ], [ -82.033955793999951, 28.848104205000027 ], [ -82.033885564999935, 28.848186608000049 ], [ -82.03364832699998, 28.848266643000045 ], [ -82.03359818399997, 28.848333503000049 ], [ -82.033567030999961, 28.848431392000066 ], [ -82.033536993999974, 28.848480868000024 ], [ -82.033506055999965, 28.848542420000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023257374999957, 28.841599345000077 ], [ -82.022894458999986, 28.841480685000079 ], [ -82.022165131999941, 28.841235749000077 ], [ -82.021513323999955, 28.841024916000038 ], [ -82.020939028999976, 28.840835783000045 ], [ -82.020368256999973, 28.84064354700007 ], [ -82.019910233999951, 28.84049471700007 ], [ -82.019413456999985, 28.840330384000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019413456999985, 28.840330384000026 ], [ -82.018433997999978, 28.840004810000039 ], [ -82.017611251999938, 28.839733240000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017611251999938, 28.839733240000044 ], [ -82.017478465999943, 28.839689840000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976811092999981, 28.820288227000049 ], [ -81.977412648999973, 28.819348222000031 ], [ -81.977663129999939, 28.818898854000054 ], [ -81.977815866999947, 28.818597879000038 ], [ -81.977957327999945, 28.818293083000071 ], [ -81.978058001999955, 28.818061618000058 ], [ -81.978210756999943, 28.817670496000062 ], [ -81.978363699999989, 28.817265166000027 ], [ -81.978515949999974, 28.816840272000036 ], [ -81.978717975999984, 28.81631873300006 ], [ -81.978916033999951, 28.815807970000037 ], [ -81.979144235999968, 28.815211670000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976340961999938, 28.824268705000065 ], [ -81.976121153999941, 28.82421301200003 ], [ -81.974797662999947, 28.824028482000074 ], [ -81.974753702999976, 28.82401143900006 ], [ -81.974713262999956, 28.82398355600003 ], [ -81.974674584999946, 28.823946381000042 ], [ -81.97464821799997, 28.823901466000052 ], [ -81.97463745899995, 28.823844937000047 ], [ -81.974637472999973, 28.823786863000066 ], [ -81.974664085999962, 28.823726471000043 ], [ -81.974764360999984, 28.823566979000077 ], [ -81.974975466999979, 28.823238705000051 ], [ -81.975209447999987, 28.822836099000028 ], [ -81.975385180999979, 28.822515809000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976340961999938, 28.824268705000065 ], [ -81.975849122999989, 28.824227482000026 ], [ -81.975535891999982, 28.824181450000026 ], [ -81.975008340999977, 28.824108760000058 ], [ -81.974618174999989, 28.82405303400003 ], [ -81.974430663999954, 28.824029044000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974430663999954, 28.824029044000042 ], [ -81.974568783999985, 28.823772331000043 ], [ -81.97499483699994, 28.823128755000027 ], [ -81.975148769999976, 28.822872287000052 ], [ -81.975385180999979, 28.822515809000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974277319999942, 28.824004903000059 ], [ -81.974158491999958, 28.823989840000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975135336999983, 28.822648558000026 ], [ -81.974965531999942, 28.822917393000068 ], [ -81.974744234999946, 28.823264953000034 ], [ -81.974438324999937, 28.823742371000037 ], [ -81.974277319999942, 28.824004903000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974430663999954, 28.824029044000042 ], [ -81.974277319999942, 28.824004903000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982102977999944, 28.823719099000073 ], [ -81.981698273999939, 28.823771763000025 ], [ -81.981216429999961, 28.823834748000024 ], [ -81.980678466999962, 28.823906243000067 ], [ -81.980250805999958, 28.823960713000076 ], [ -81.979730256999972, 28.824028800000065 ], [ -81.979254215999958, 28.82409178000006 ], [ -81.978908309999952, 28.824137736000068 ], [ -81.978557568999975, 28.824182413000074 ], [ -81.978182637999964, 28.824231346000033 ], [ -81.977819801999942, 28.82426749900003 ], [ -81.977461807999987, 28.824288741000032 ], [ -81.977098978999948, 28.824297200000046 ], [ -81.976779691, 28.824292886000023 ], [ -81.976670686999967, 28.824288121000052 ], [ -81.97652230999995, 28.824280836000071 ], [ -81.976340961999938, 28.824268705000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990039162999949, 28.825328419000073 ], [ -81.989796411999976, 28.825159753000037 ], [ -81.989362979999953, 28.824861503000079 ], [ -81.989043711999955, 28.824650170000041 ], [ -81.988728312999967, 28.824457580000058 ], [ -81.988441937999937, 28.82430759500005 ], [ -81.988192326999979, 28.824184879000029 ], [ -81.987907882999934, 28.824063863000049 ], [ -81.987565390999976, 28.82392750200006 ], [ -81.987234506999982, 28.823816706000059 ], [ -81.986882337999987, 28.823714427000027 ], [ -81.986580475999972, 28.823644528000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990644299999985, 28.825749600000051 ], [ -81.990039162999949, 28.825328419000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992230379999967, 28.826845355000046 ], [ -81.991853307999975, 28.826587928000038 ], [ -81.991361814999948, 28.826245374000052 ], [ -81.990863586999978, 28.825896174000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992995133999955, 28.827369952000026 ], [ -81.992230379999967, 28.826845355000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99372062499998, 28.827878030000079 ], [ -81.992995133999955, 28.827369952000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994465629999979, 28.828392700000052 ], [ -81.994181172999959, 28.828198421000025 ], [ -81.99372062499998, 28.827878030000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997516165999969, 28.830505857000048 ], [ -81.997070300999951, 28.830197421000037 ], [ -81.996557485999972, 28.829844660000049 ], [ -81.995911152999952, 28.829398169000058 ], [ -81.99549703699995, 28.829108460000043 ], [ -81.994877803999941, 28.828680709000025 ], [ -81.994627737999963, 28.828505974000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998265939999953, 28.831030423000072 ], [ -81.997910783999941, 28.830780552000078 ], [ -81.997516165999969, 28.830505857000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99920175699998, 28.831675784000026 ], [ -81.998866142999987, 28.831443143000058 ], [ -81.998265939999953, 28.831030423000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999936513999955, 28.832182138000064 ], [ -81.999618938999959, 28.831964601000038 ], [ -81.99920175699998, 28.831675784000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95826733399997, 28.821654196000054 ], [ -81.958255516999941, 28.821913883000036 ], [ -81.958252535999975, 28.82454873000006 ], [ -81.958242602999974, 28.825600177000069 ], [ -81.958244391999983, 28.827072626000074 ], [ -81.958236583999962, 28.82876290300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979304344999946, 28.824889239000072 ], [ -81.978853812999944, 28.824814893000053 ], [ -81.978097137999953, 28.824714437000068 ], [ -81.977989656999966, 28.824689811000042 ], [ -81.977925171999971, 28.824667082000076 ], [ -81.97786713499994, 28.824642462000043 ], [ -81.977804800999934, 28.82461216300004 ], [ -81.977746764999949, 28.824574292000079 ], [ -81.977684432999979, 28.824534527000026 ], [ -81.977626396999938, 28.824506120000024 ], [ -81.977531820999957, 28.824460671000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98167891199995, 28.825208725000039 ], [ -81.981207544999961, 28.825148403000071 ], [ -81.979304344999946, 28.824889239000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979304344999946, 28.824889239000072 ], [ -81.97928404299995, 28.825027606000049 ], [ -81.979268825999952, 28.825085630000046 ], [ -81.979248541999937, 28.825132493000069 ], [ -81.979218224999954, 28.82516772300005 ], [ -81.979185170999983, 28.825206131000073 ], [ -81.979149686999961, 28.825223980000032 ], [ -81.979111668999963, 28.825239597000063 ], [ -81.979071117999979, 28.825250750000066 ], [ -81.979022966999935, 28.825257437000062 ], [ -81.978962143, 28.825257428000043 ], [ -81.978883580999934, 28.825250720000042 ], [ -81.978443886999969, 28.82522777500003 ], [ -81.978342893999979, 28.825227870000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978342893999979, 28.825227870000049 ], [ -81.978329650999967, 28.826153938000061 ], [ -81.978331960999981, 28.826628969000069 ], [ -81.978324175999944, 28.827510514000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978342893999979, 28.825227870000049 ], [ -81.97789888899996, 28.82521842500006 ], [ -81.977295727999945, 28.825216093000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977295727999945, 28.825216093000051 ], [ -81.97732595399998, 28.826077559000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977295727999945, 28.825216093000051 ], [ -81.976370712999937, 28.825215935000074 ], [ -81.975387405999982, 28.825222454000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98167891199995, 28.825208725000039 ], [ -81.981681422999941, 28.825333704000059 ], [ -81.981696617999944, 28.825396196000042 ], [ -81.981735884999978, 28.825483938000048 ], [ -81.98185069799996, 28.825616463000074 ], [ -81.981953634999968, 28.825717604000033 ], [ -81.982024606999971, 28.825839467000037 ], [ -81.98205754199995, 28.825901961000056 ], [ -81.982085402999985, 28.825995699000032 ], [ -81.982095525999966, 28.826078276000032 ], [ -81.982098045999976, 28.826169779000054 ], [ -81.982087656999965, 28.827631582000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982087656999965, 28.827631582000038 ], [ -81.982043917999988, 28.827648694000061 ], [ -81.981988812999987, 28.827660580000043 ], [ -81.981276672999968, 28.827593531000048 ], [ -81.981010571999946, 28.827564481000024 ], [ -81.980886389999966, 28.827555537000023 ], [ -81.980840771999965, 28.82755553100003 ], [ -81.980766866999943, 28.827557418000026 ], [ -81.98074031799996, 28.827564290000055 ], [ -81.980713575999971, 28.827570474000026 ], [ -81.980686637999952, 28.827575971000044 ], [ -81.980659309999965, 28.827580437000051 ], [ -81.980631981999977, 28.827583871000058 ], [ -81.980604457999959, 28.827586617000065 ], [ -81.980576935999977, 28.827588675000072 ], [ -81.980549217999965, 28.827589702000068 ], [ -81.97970285599996, 28.827544199000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991804329999979, 28.828685457000063 ], [ -81.989783716999966, 28.827271536000069 ], [ -81.988338459999966, 28.826298509000026 ], [ -81.988251348999938, 28.826246195000067 ], [ -81.988152358999969, 28.826190393000047 ], [ -81.988057325999989, 28.826152025000056 ], [ -81.98795437299998, 28.826124118000052 ], [ -81.987823700999968, 28.826089237000076 ], [ -81.98770886799997, 28.826057842000068 ], [ -81.987590074999957, 28.826036908000049 ], [ -81.987463361999971, 28.82601597300004 ], [ -81.987245573999985, 28.825981082000055 ], [ -81.984984538999981, 28.825677469000027 ], [ -81.982834392999962, 28.82537731900004 ], [ -81.98167891199995, 28.825208725000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992869399999961, 28.827514935000067 ], [ -81.992328290999978, 28.828106523000031 ], [ -81.991804329999979, 28.828685457000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993601463999937, 28.828023823000024 ], [ -81.993155098999978, 28.828525022000065 ], [ -81.992698877999942, 28.829024355000058 ], [ -81.992556306999973, 28.829188940000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992556306999973, 28.829188940000051 ], [ -81.992030448999969, 28.828831828000034 ], [ -81.991804329999979, 28.828685457000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993281740999976, 28.829710652000074 ], [ -81.992556306999973, 28.829188940000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998714811999946, 28.833549441000059 ], [ -81.997989323999946, 28.833044498000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000808918999951, 28.831192148000071 ], [ -81.999971832999961, 28.83213790700006 ], [ -81.999936513999955, 28.832182138000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000808918999951, 28.831192148000071 ], [ -82.000803848999965, 28.831143607000058 ], [ -82.000786107999943, 28.831098973000053 ], [ -82.000753159999988, 28.831063265000068 ], [ -82.000130956999953, 28.830637001000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000130956999953, 28.830637001000071 ], [ -81.999665254999968, 28.831153094000058 ], [ -81.99920175699998, 28.831675784000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999207164999973, 28.829992019000031 ], [ -81.998891707999974, 28.830340401000058 ], [ -81.998265939999953, 28.831030423000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998436713, 28.829503256000066 ], [ -81.997977978999984, 28.82995629800007 ], [ -81.997596739999949, 28.830400030000078 ], [ -81.997516165999969, 28.830505857000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000130956999953, 28.830637001000071 ], [ -81.999843299999952, 28.830420519000029 ], [ -81.999207164999973, 28.829992019000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999207164999973, 28.829992019000031 ], [ -81.998588774999973, 28.829594761000067 ], [ -81.998436713, 28.829503256000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000210786999958, 28.829005582000036 ], [ -82.000035914999955, 28.829168501000026 ], [ -81.999665893999975, 28.829489874000046 ], [ -81.999207164999973, 28.829992019000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013209459999985, 28.843955352000023 ], [ -82.012714048999953, 28.843612087000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013209459999985, 28.843955352000023 ], [ -82.013077675999966, 28.844127210000067 ], [ -82.012910415999954, 28.844401733000041 ], [ -82.012821711999948, 28.844506633000037 ], [ -82.012727938999944, 28.84461153500007 ], [ -82.012672180999971, 28.84466063800005 ], [ -82.012598684999944, 28.844758842000033 ], [ -82.012555600999974, 28.844825799000034 ], [ -82.012527725999973, 28.844879365000054 ], [ -82.012487181999973, 28.844977565000079 ], [ -82.012433960999942, 28.845062376000044 ], [ -82.012372734999985, 28.845153288000063 ], [ -82.012171792999936, 28.845455787000049 ], [ -82.012104585999964, 28.845533387000046 ], [ -82.012052310999934, 28.845579421000025 ], [ -82.011983606999934, 28.845633349000025 ], [ -82.011890191999953, 28.845696505000035 ], [ -82.011479246999954, 28.845911195000042 ], [ -82.011436938999964, 28.845927987000039 ], [ -82.011284126999954, 28.845950353000035 ], [ -82.011254709999946, 28.845954306000067 ], [ -82.010842217999937, 28.845959681000068 ], [ -82.009951379999961, 28.845848613000044 ], [ -82.00987835799998, 28.845791208000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037102565999987, 28.865540277000036 ], [ -82.036218654999971, 28.865527912000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037102565999987, 28.865540277000036 ], [ -82.037100684999984, 28.866398804000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037916171999939, 28.865522861000045 ], [ -82.037513927999953, 28.865536725000027 ], [ -82.037102565999987, 28.865540277000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981684383999948, 28.807302978000052 ], [ -81.981631241999935, 28.807583555000065 ], [ -81.981420704999948, 28.808690471000034 ], [ -81.981370703999971, 28.808940568000025 ], [ -81.981375954999976, 28.808977621000054 ], [ -81.981389097999966, 28.809003096000026 ], [ -81.981404869999949, 28.809023941000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981404869999949, 28.809023941000078 ], [ -81.981475856999964, 28.809044793000055 ], [ -81.98154158799997, 28.809051748000059 ], [ -81.981620465999981, 28.809058707000077 ], [ -81.982104245999949, 28.809102772000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98253845499994, 28.806849573000079 ], [ -81.982375303999959, 28.807671654000046 ], [ -81.982104245999949, 28.809102772000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982104245999949, 28.809102772000074 ], [ -81.982719489999965, 28.809160746000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983277250999947, 28.806960824000043 ], [ -81.983121998999934, 28.80774122300005 ], [ -81.983024637999961, 28.808227525000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983024637999961, 28.808227525000063 ], [ -81.982982516999982, 28.808556361000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983024637999961, 28.808227525000063 ], [ -81.983763443999976, 28.808345721000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984746958999949, 28.807183314000042 ], [ -81.98456803299996, 28.808121184000072 ], [ -81.984339109999951, 28.80930220700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986219305999953, 28.807387260000041 ], [ -81.985964083999988, 28.80876280800004 ], [ -81.985840417999952, 28.809432055000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99239154299994, 28.81797374000007 ], [ -81.992905878999977, 28.81699962700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99239154299994, 28.81797374000007 ], [ -81.992860145999941, 28.817988911000043 ], [ -81.992905287999974, 28.817988913000079 ], [ -81.992950428999961, 28.817985129000078 ], [ -81.993012767999971, 28.817975666000052 ], [ -81.993072955999935, 28.817960525000046 ], [ -81.993129063999959, 28.817935815000055 ], [ -81.993169689999945, 28.817913203000046 ], [ -81.993219131999979, 28.817879129000062 ], [ -81.993259976, 28.817843163000077 ], [ -81.993302969999945, 28.817793944000073 ], [ -81.993361012999969, 28.817706864000058 ], [ -81.993587195999964, 28.817283079000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990145429999984, 28.81181129600003 ], [ -81.990172466999979, 28.812059845000078 ], [ -81.990180190999979, 28.812148367000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99112734299996, 28.811709222000047 ], [ -81.991123444999971, 28.812087147000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994984664999947, 28.813573991000055 ], [ -81.994969334999951, 28.813353908000067 ], [ -81.99487400299995, 28.812452330000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994999001999986, 28.81383852600004 ], [ -81.994993066999939, 28.813770540000064 ], [ -81.994989607999969, 28.81368294300006 ], [ -81.994984664999947, 28.813573991000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995036596999967, 28.814091295000026 ], [ -81.994812926999941, 28.814239460000067 ], [ -81.994761463999964, 28.81426212100007 ], [ -81.994715938999946, 28.814276064000069 ], [ -81.994676351999942, 28.814281293000079 ], [ -81.994490818999964, 28.814261534000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997655207999969, 28.815097207000065 ], [ -81.997676996999985, 28.814366795000069 ], [ -81.997688881999977, 28.813911814000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997688881999977, 28.813911814000051 ], [ -81.996103455999958, 28.813864710000075 ], [ -81.994999001999986, 28.81383852600004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99978299299994, 28.814298830000041 ], [ -81.999733509999942, 28.814229100000034 ], [ -81.999689965999949, 28.814176803000066 ], [ -81.999632565999946, 28.814117534000047 ], [ -81.999585061999937, 28.814080925000042 ], [ -81.999527661999934, 28.81404257500003 ], [ -81.999452448999989, 28.814005966000025 ], [ -81.999385150999956, 28.813976332000038 ], [ -81.999305978999985, 28.813958900000046 ], [ -81.999232743999983, 28.813944953000032 ], [ -81.999155551999934, 28.813939723000033 ], [ -81.998953660999973, 28.813936235000028 ], [ -81.998573633999968, 28.813929259000076 ], [ -81.997688881999977, 28.813911814000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999716759999956, 28.814933391000068 ], [ -81.999682045999975, 28.814987404000078 ], [ -81.999412854999946, 28.815397060000066 ], [ -81.999292113999957, 28.815576612000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997382028999937, 28.816340120000064 ], [ -81.99733056499997, 28.816340119000074 ], [ -81.997296916999971, 28.816340118000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997296916999971, 28.816340118000028 ], [ -81.997294950999958, 28.815787518000036 ], [ -81.997294951999947, 28.81575613800004 ], [ -81.997296932999973, 28.815728247000038 ], [ -81.997302869999942, 28.815702099000077 ], [ -81.997310787999936, 28.815674208000075 ], [ -81.997328602999971, 28.815641086000028 ], [ -81.997356315, 28.815611452000041 ], [ -81.997393922999947, 28.815590534000023 ], [ -81.997423614999946, 28.815583561000039 ], [ -81.99745924299998, 28.815578333000076 ], [ -81.997783853999977, 28.815580082000054 ], [ -81.998013457999946, 28.815578342000038 ], [ -81.998102527999947, 28.815576601000032 ], [ -81.99815399199997, 28.815569628000048 ], [ -81.998189619999948, 28.815559169000039 ], [ -81.998233165999977, 28.815533022000068 ], [ -81.998266815999955, 28.815496414000052 ], [ -81.998296505999974, 28.815452834000041 ], [ -81.998405372999969, 28.815142541000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997296916999971, 28.816340118000028 ], [ -81.997124711999959, 28.81634011500006 ], [ -81.996952507999936, 28.816329652000036 ], [ -81.996752593999986, 28.816310472000055 ], [ -81.996633832999976, 28.816298266000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996633832999976, 28.816298266000047 ], [ -81.995810424999945, 28.816179704000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995810424999945, 28.816179704000035 ], [ -81.995740363999971, 28.816167532000065 ], [ -81.995119633999934, 28.816101236000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990539426999987, 28.815951076000033 ], [ -81.990394929, 28.815992903000051 ], [ -81.989013296999985, 28.816426861000025 ], [ -81.98891234599995, 28.816459973000065 ], [ -81.988847025999974, 28.816473914000028 ], [ -81.988797541999986, 28.816477395000049 ], [ -81.988752016999968, 28.816472162000025 ], [ -81.988712430999954, 28.816463443000032 ], [ -81.988633258999982, 28.816435545000047 ], [ -81.988569923999989, 28.816398932000027 ], [ -81.988522422999949, 28.816358834000027 ], [ -81.988488778999965, 28.816318737000074 ], [ -81.988468989999944, 28.816275154000039 ], [ -81.988453159999949, 28.816236801000059 ], [ -81.988445245999969, 28.816196707000074 ], [ -81.988441290999958, 28.816163585000027 ], [ -81.988443275999941, 28.816116519000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987706935999938, 28.816297749000057 ], [ -81.987691104999953, 28.816266369000061 ], [ -81.987685170999953, 28.81623324800006 ], [ -81.987685174999967, 28.816193154000075 ], [ -81.98771888899995, 28.815638811000042 ], [ -81.987724878999984, 28.815199519000032 ], [ -81.987720946999957, 28.814969413000028 ], [ -81.987701173999938, 28.814793345000055 ], [ -81.987695250999934, 28.814664346000029 ], [ -81.987703181999962, 28.814540578000049 ], [ -81.987721057999977, 28.814439888000038 ], [ -81.987743302999945, 28.814262642000074 ], [ -81.987769343999958, 28.814105077000079 ], [ -81.987764156999958, 28.813956105000045 ], [ -81.987766306999958, 28.813879708000059 ], [ -81.987768510999956, 28.813801402000024 ], [ -81.987759641999958, 28.813626646000046 ], [ -81.98774339299996, 28.813497726000037 ], [ -81.987701118999951, 28.813374533000058 ], [ -81.987658845999988, 28.813268530000073 ], [ -81.987642591999986, 28.813176853000073 ], [ -81.987652369999978, 28.813004963000026 ], [ -81.987694683999962, 28.812778643000058 ], [ -81.987697952999952, 28.812635401000023 ], [ -81.987691471999938, 28.812429131000044 ], [ -81.987662213999954, 28.812283021000042 ], [ -81.987640371999987, 28.812175397000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994984664999947, 28.813573991000055 ], [ -81.994762610999942, 28.813574527000071 ], [ -81.994682201999979, 28.813577248000058 ], [ -81.99461725499998, 28.813590864000048 ], [ -81.994453340999939, 28.81362899100003 ], [ -81.993049246999988, 28.814002085000027 ], [ -81.991868496999984, 28.814287185000069 ], [ -81.991598506999935, 28.814352609000025 ], [ -81.991131375999942, 28.814481577000038 ], [ -81.990133771999979, 28.814758680000068 ], [ -81.988815499999987, 28.815126398000075 ], [ -81.988762055999985, 28.815145569000038 ], [ -81.988696733999973, 28.81518740100006 ], [ -81.988647245999971, 28.815222262000077 ], [ -81.988605676999953, 28.815258866000079 ], [ -81.988560146999987, 28.815305929000033 ], [ -81.988524514999938, 28.815342533000035 ], [ -81.988484922999987, 28.815380881000067 ], [ -81.988114741999937, 28.815776561000064 ], [ -81.988069208999946, 28.815848030000041 ], [ -81.988053368999942, 28.815886379000062 ], [ -81.988035942999943, 28.816038426000034 ], [ -81.988025634999985, 28.816097307000064 ], [ -81.987997915999983, 28.816167033000056 ], [ -81.98797415699994, 28.816222814000071 ], [ -81.987954359999947, 28.816259420000051 ], [ -81.987924665999969, 28.816296026000032 ], [ -81.987881114999936, 28.816329142000029 ], [ -81.987835587999939, 28.816343083000049 ], [ -81.987784124999962, 28.816339593000066 ], [ -81.987740580999969, 28.816323901000032 ], [ -81.987706935999938, 28.816297749000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998133688999985, 28.816334032000043 ], [ -81.997958020999988, 28.816333158000077 ], [ -81.997382028999937, 28.816340120000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999292113999957, 28.815576612000029 ], [ -81.998950175999937, 28.816118316000029 ], [ -81.99890069199995, 28.816174971000066 ], [ -81.998846258999947, 28.816218551000077 ], [ -81.998779095999964, 28.816259359000071 ], [ -81.998725021999974, 28.81628610000007 ], [ -81.998668116999966, 28.816310068000064 ], [ -81.998603786999979, 28.816327500000057 ], [ -81.998559250999961, 28.816331858000069 ], [ -81.998133688999985, 28.816334032000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000595506999957, 28.815004835000025 ], [ -82.00078601499996, 28.814699769000072 ], [ -82.001001263999967, 28.814366376000066 ], [ -82.001038374999951, 28.814287931000024 ], [ -82.001058167999986, 28.814205127000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998178182999936, 28.81876365100004 ], [ -81.99800251299996, 28.818663413000024 ], [ -81.997873852999987, 28.81858496600006 ], [ -81.997789729999965, 28.818521773000043 ], [ -81.997708080999985, 28.818445505000057 ], [ -81.997619011999973, 28.81834526800003 ], [ -81.997567052999955, 28.818277718000047 ], [ -81.997520043999941, 28.818199271000026 ], [ -81.997477983999943, 28.81810121500007 ], [ -81.997443348, 28.818009695000057 ], [ -81.99741365999995, 28.81789638500004 ], [ -81.99740129099996, 28.817820118000043 ], [ -81.997391396999944, 28.817698092000057 ], [ -81.99739139999997, 28.817556456000034 ], [ -81.997387948999972, 28.817039154000042 ], [ -81.997382028999937, 28.816340120000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997804063, 28.819338474000062 ], [ -81.997700639999948, 28.819286611000052 ], [ -81.997602165999979, 28.819239106000055 ], [ -81.997538824999936, 28.819204241000079 ], [ -81.997475484999939, 28.819164581000052 ], [ -81.997410165999952, 28.81911533400006 ], [ -81.997361670999965, 28.819068701000049 ], [ -81.997275073999958, 28.818992434000052 ], [ -81.997193425999967, 28.818911808000053 ], [ -81.99712909699997, 28.818839899000068 ], [ -81.997074664999957, 28.818765811000048 ], [ -81.997002914999939, 28.818678648000059 ], [ -81.996931163999989, 28.818576232000055 ], [ -81.99687425999997, 28.818484711000053 ], [ -81.996824777999961, 28.818384474000027 ], [ -81.996795087999942, 28.818316924000044 ], [ -81.996750555999938, 28.818201434000059 ], [ -81.996701074999976, 28.818059796000057 ], [ -81.996668914999987, 28.817929054000047 ], [ -81.99663675499994, 28.817776521000042 ], [ -81.996612017999951, 28.817606556000044 ], [ -81.996597175999966, 28.817473635000056 ], [ -81.99659718099997, 28.817325461000053 ], [ -81.996609558999978, 28.817127170000049 ], [ -81.996624410999971, 28.816922341000065 ], [ -81.996631841999942, 28.816684827000074 ], [ -81.996633832999976, 28.816298266000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997386390999964, 28.820000890000074 ], [ -81.997584331999974, 28.82006713800007 ], [ -81.997657570999934, 28.820082828000068 ], [ -81.997730808999961, 28.820093288000066 ], [ -81.997794149999947, 28.820098519000055 ], [ -81.99785947099997, 28.820093290000045 ], [ -81.997932709999986, 28.820081089000041 ], [ -81.998011886999961, 28.820060171000023 ], [ -81.998075230999973, 28.820035767000036 ], [ -81.99813659299997, 28.820006133000049 ], [ -81.998192017999941, 28.819969526000079 ], [ -81.998243483999943, 28.819931176000068 ], [ -81.998287030999961, 28.819885852000027 ], [ -81.998330579999958, 28.819830071000069 ], [ -81.998481018999939, 28.81960345300007 ], [ -81.999189658999967, 28.818499999000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001227906999986, 28.815333428000031 ], [ -82.000595506999957, 28.815004835000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999189658999967, 28.818499999000039 ], [ -81.999839894, 28.817484137000065 ], [ -82.000537619999989, 28.816396799000074 ], [ -82.001227906999986, 28.815333428000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993587195999964, 28.817283079000049 ], [ -81.994822152999973, 28.817791281000041 ], [ -81.994888954999965, 28.817826148000051 ], [ -81.994970601999967, 28.817871911000054 ], [ -81.995025034999969, 28.817913314000066 ], [ -81.995094309999956, 28.817974330000027 ], [ -81.995143791999965, 28.818035344000066 ], [ -81.995185850999974, 28.818096358000048 ], [ -81.995220487999973, 28.818161732000078 ], [ -81.995255122999936, 28.818244535000076 ], [ -81.995282333999967, 28.818360025000061 ], [ -81.995410963999973, 28.819083467000041 ], [ -81.995435701999952, 28.819174987000054 ], [ -81.995455493999941, 28.819220748000077 ], [ -81.995487656999956, 28.819270866000068 ], [ -81.995532190999938, 28.819329701000072 ], [ -81.995576725999967, 28.819371104000027 ], [ -81.99563858199997, 28.819412508000028 ], [ -81.995752394999954, 28.819464808000077 ], [ -81.996200233999957, 28.819608638000034 ], [ -81.996238366999989, 28.819620851000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995119633999934, 28.816101236000065 ], [ -81.994990976999986, 28.816094259000067 ], [ -81.994886071999986, 28.816073336000045 ], [ -81.994789085999969, 28.816043697000055 ], [ -81.994700015999967, 28.81600708600007 ], [ -81.994634699999949, 28.815973962000044 ], [ -81.994543651999948, 28.81592166300004 ], [ -81.994480314999976, 28.81588156600003 ], [ -81.994405102999963, 28.815827522000063 ], [ -81.994088423999983, 28.815532904000065 ], [ -81.994005293999976, 28.815484090000041 ], [ -81.993914245999974, 28.815445734000036 ], [ -81.993817260999947, 28.815414352000062 ], [ -81.993730170999982, 28.815395172000024 ], [ -81.993637142999944, 28.815384709000057 ], [ -81.993546092999964, 28.815386447000037 ], [ -81.99341545599998, 28.815395157000069 ], [ -81.992605404999949, 28.815481405000071 ], [ -81.991704797999944, 28.815581589000033 ], [ -81.991390569999965, 28.815668730000027 ], [ -81.990539426999987, 28.815951076000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001874290999979, 28.815656871000044 ], [ -82.001227906999986, 28.815333428000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045408993999956, 28.838218867000023 ], [ -82.045423403999962, 28.839564144000065 ], [ -82.045425866999949, 28.839929377000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045542461999958, 28.83778662900005 ], [ -82.045613943999967, 28.837890087000062 ], [ -82.045662356999969, 28.837936741000078 ], [ -82.045713072999945, 28.83798136200005 ], [ -82.045796057999951, 28.838040178000028 ], [ -82.045862902999943, 28.83807667800005 ], [ -82.045925132999969, 28.838103035000074 ], [ -82.046017321999955, 28.838131412000052 ], [ -82.046164253999962, 28.838186146000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045413335999967, 28.837606084000072 ], [ -82.045413499999938, 28.837983493000024 ], [ -82.045408993999956, 28.838218867000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045066491999989, 28.837534675000029 ], [ -82.045135631999983, 28.837554943000043 ], [ -82.045201897999959, 28.837587893000034 ], [ -82.045249723999973, 28.837608168000031 ], [ -82.045284292999952, 28.837614243000075 ], [ -82.045330380999985, 28.837614228000064 ], [ -82.045367250999959, 28.837614216000077 ], [ -82.045413335999967, 28.837606084000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045066491999989, 28.837534675000029 ], [ -82.045141412999953, 28.837600088000045 ], [ -82.045187515999942, 28.837632538000037 ], [ -82.045233622999945, 28.837675133000062 ], [ -82.045282039999961, 28.837733959000047 ], [ -82.045321242999989, 28.837796849000028 ], [ -82.045348917999945, 28.837849595000023 ], [ -82.045367381999938, 28.837914519000037 ], [ -82.04537892999997, 28.837975389000064 ], [ -82.04538817699995, 28.838042345000076 ], [ -82.045408993999956, 28.838218867000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045411190999971, 28.836646837000046 ], [ -82.04537199899994, 28.836604239000053 ], [ -82.045342029999972, 28.836577870000042 ], [ -82.044878015999984, 28.836316022000062 ], [ -82.044766368999944, 28.83624947800007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045447733999936, 28.835892006000051 ], [ -82.045415501999969, 28.835958977000075 ], [ -82.045385561999979, 28.835999568000034 ], [ -82.045353320999936, 28.83604421900003 ], [ -82.045314164999979, 28.836086842000043 ], [ -82.045270399999936, 28.836132004000035 ], [ -82.045227206999982, 28.836163723000027 ], [ -82.045169614999963, 28.836201788000039 ], [ -82.045109339999954, 28.836229665000076 ], [ -82.045029212999964, 28.836252561000038 ], [ -82.044971607999969, 28.836262092000027 ], [ -82.044906798999989, 28.836265284000035 ], [ -82.044852786999968, 28.836258961000055 ], [ -82.044766368999944, 28.83624947800007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045507684999961, 28.835313951000046 ], [ -82.045447733999936, 28.835892006000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045832291999943, 28.836585187000026 ], [ -82.045763877999946, 28.83657886900005 ], [ -82.045706265999968, 28.836575718000063 ], [ -82.045648658999937, 28.836582080000028 ], [ -82.045607040999982, 28.836591985000041 ], [ -82.04552870699996, 28.836628535000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04552870699996, 28.836628535000045 ], [ -82.045530607999979, 28.835701243000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045832291999943, 28.836585187000026 ], [ -82.045771061999972, 28.836540822000075 ], [ -82.045717033999949, 28.836496455000031 ], [ -82.045670202999986, 28.83644574300007 ], [ -82.04562697199998, 28.836391860000049 ], [ -82.045601741999974, 28.836331630000075 ], [ -82.045591049999985, 28.836297157000047 ], [ -82.045576933999939, 28.836251110000035 ], [ -82.045569268999941, 28.836176290000026 ], [ -82.045530607999979, 28.835701243000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045530607999979, 28.835701243000074 ], [ -82.045507684999961, 28.835313951000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041629131999969, 28.841039494000029 ], [ -82.041324939999981, 28.841037965000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042250420999949, 28.841040924000026 ], [ -82.041693657999986, 28.84103947400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041693657999986, 28.84103947400007 ], [ -82.041629131999969, 28.841039494000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042851431999964, 28.841040735000036 ], [ -82.042250420999949, 28.841040924000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043150092999952, 28.841039016000025 ], [ -82.042851431999964, 28.841040735000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045425866999949, 28.839929377000033 ], [ -82.043851913999958, 28.839915694000069 ], [ -82.043175896999969, 28.839908405000074 ], [ -82.041744822999988, 28.839898709000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074106354999969, 28.860060596000039 ], [ -82.074087077999934, 28.860038578000058 ], [ -82.072538896999959, 28.858273484000051 ], [ -82.071427179999944, 28.857009231000063 ], [ -82.069879082999989, 28.855236025000067 ], [ -82.068735273999948, 28.853931356000032 ], [ -82.068443072999969, 28.853615942000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.089680782999949, 28.872700302000055 ], [ -82.089307531999964, 28.87258416700007 ], [ -82.088608066999939, 28.87237772900005 ], [ -82.087855704999981, 28.872155803000055 ], [ -82.086853533999943, 28.871853860000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091780322999966, 28.873261659000036 ], [ -82.091649838999956, 28.873229160000051 ], [ -82.091479378999964, 28.873180137000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090982701999963, 28.873043402000064 ], [ -82.09065060599994, 28.872953106000068 ], [ -82.090366599999982, 28.872877391000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090367728, 28.872014484000033 ], [ -82.090362342999981, 28.872583464000058 ], [ -82.090366599999982, 28.872877391000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090366599999982, 28.872877391000031 ], [ -82.090012870999942, 28.87278284000007 ], [ -82.089680782999949, 28.872700302000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091479378999964, 28.873180137000077 ], [ -82.091132585999958, 28.873084681000023 ], [ -82.090982701999963, 28.873043402000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090058150999937, 28.872948719000078 ], [ -82.089992575999986, 28.873100964000059 ], [ -82.08997500299995, 28.873165633000042 ], [ -82.089948669999956, 28.873294963000035 ], [ -82.089917136999986, 28.873438622000037 ], [ -82.089916382999945, 28.873471281000036 ], [ -82.089919154999961, 28.874422516000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020954001999939, 28.788655603000052 ], [ -82.020968454999945, 28.787798979000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028999003999957, 28.803227093000032 ], [ -82.028783410999949, 28.803220356000054 ], [ -82.027069456999982, 28.803215737000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027069456999982, 28.803215737000073 ], [ -82.027061053999944, 28.803821721000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027061053999944, 28.803821721000077 ], [ -82.027055389999987, 28.804403948000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028806839999959, 28.804418054000053 ], [ -82.028361278999967, 28.804419956000061 ], [ -82.027365439999983, 28.804416545000038 ], [ -82.027197070999989, 28.804416579000076 ], [ -82.027055389999987, 28.804403948000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031119186999945, 28.808930418000045 ], [ -82.03111641299995, 28.810108995000064 ], [ -82.031096243999968, 28.811340610000059 ], [ -82.031096550999962, 28.812375091000035 ], [ -82.031092802999979, 28.813581382000052 ], [ -82.03108881299994, 28.813972027000034 ], [ -82.031088849999946, 28.814096814000038 ], [ -82.031082878999939, 28.814737037000043 ], [ -82.031097426999963, 28.815322997000067 ], [ -82.031103712999936, 28.815744383000037 ], [ -82.031091510999943, 28.816145880000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035247741999967, 28.810669664000045 ], [ -82.035262311999986, 28.810702631000026 ], [ -82.035264404999964, 28.81074293100005 ], [ -82.035264418999986, 28.810779567000054 ], [ -82.035264448999953, 28.810872989000075 ], [ -82.035264470999948, 28.810939393000069 ], [ -82.035252248999939, 28.811699138000051 ], [ -82.035181204999958, 28.813474198000051 ], [ -82.035195081999973, 28.813755148000041 ], [ -82.035190322999938, 28.813974059000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037348102999943, 28.799759125000037 ], [ -82.037360371999966, 28.800596313000028 ], [ -82.03736040299998, 28.800681823000048 ], [ -82.03736040299998, 28.800681847000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035287711999956, 28.803518071000042 ], [ -82.035273604999986, 28.804290030000061 ], [ -82.035273933999974, 28.805266576000065 ], [ -82.035266991999947, 28.80598158600003 ], [ -82.035272105, 28.806943365000052 ], [ -82.035272161999956, 28.807112099000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035272161999956, 28.807112099000051 ], [ -82.034302324999942, 28.807110240000043 ], [ -82.033253462999937, 28.807104175000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031200840999986, 28.799732109000047 ], [ -82.031198672999949, 28.800647883000067 ], [ -82.031191486999944, 28.801101470000049 ], [ -82.031184420999978, 28.801963503000025 ], [ -82.031182231999935, 28.802806185000065 ], [ -82.031175061999988, 28.803317815000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033252668999978, 28.799741437000023 ], [ -82.033241540999938, 28.800430031000076 ], [ -82.033236538999972, 28.801607845000035 ], [ -82.033239199999969, 28.802464244000078 ], [ -82.033244147999937, 28.802998704000061 ], [ -82.033265790999963, 28.80345109700005 ], [ -82.033292183999947, 28.803810904000045 ], [ -82.033218449999936, 28.804827239000076 ], [ -82.033223386999964, 28.805328031000045 ], [ -82.033249901999966, 28.806077112000025 ], [ -82.033252513999969, 28.806775697000035 ], [ -82.033254952999982, 28.806935614000054 ], [ -82.033253462999937, 28.807104175000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033253462999937, 28.807104175000063 ], [ -82.033262265999952, 28.807396425000036 ], [ -82.033267659999979, 28.808343884000067 ], [ -82.033274988999949, 28.808913460000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033274988999949, 28.808913460000042 ], [ -82.033264912999982, 28.809926681000036 ], [ -82.033256063999943, 28.81043485500004 ], [ -82.033256076999976, 28.810476938000079 ], [ -82.033257302999971, 28.810520876000055 ], [ -82.03325990899998, 28.810550642000067 ], [ -82.033270322999954, 28.810589565000043 ], [ -82.033293726999943, 28.81061016700005 ], [ -82.033332729999984, 28.810628476000034 ], [ -82.033434123999939, 28.810635319000028 ], [ -82.035168696999961, 28.810633047000067 ], [ -82.035212375999947, 28.810644027000023 ], [ -82.035247741999967, 28.810669664000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027027380999982, 28.808904408000046 ], [ -82.027002313999958, 28.813451911000072 ], [ -82.027002226999969, 28.813455114000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030277567999974, 28.814800138000066 ], [ -82.030355008999948, 28.816146791000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033131947999948, 28.819860421000044 ], [ -82.032717175999949, 28.819877356000063 ], [ -82.032361648999938, 28.819870709000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035327675999952, 28.819535454000061 ], [ -82.035327925999979, 28.81806500600004 ], [ -82.035062111999935, 28.818030884000052 ], [ -82.034324433999984, 28.818031073000043 ], [ -82.033583765999936, 28.818012848000023 ], [ -82.033279136999965, 28.81800766300006 ], [ -82.033194729999934, 28.818926154000053 ], [ -82.033168243999967, 28.819791396000028 ], [ -82.033158698999955, 28.819830115000059 ], [ -82.033131947999948, 28.819860421000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026946343999953, 28.819844439000065 ], [ -82.026165642999956, 28.81983722800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030130658999951, 28.819867438000074 ], [ -82.02895573099994, 28.819862960000023 ], [ -82.028372743999967, 28.819854667000072 ], [ -82.026946343999953, 28.819844439000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032361648999938, 28.819870709000043 ], [ -82.031256602999974, 28.819854030000045 ], [ -82.030653312999959, 28.819867320000071 ], [ -82.030130658999951, 28.819867438000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032977990999939, 28.823372845000051 ], [ -82.03212678999995, 28.82339672300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032057832999953, 28.822541920000049 ], [ -82.03207576799997, 28.822589260000029 ], [ -82.032099737999943, 28.82283912500003 ], [ -82.032107743999973, 28.823004157000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03212678999995, 28.82339672300003 ], [ -82.031251681999947, 28.823378517000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026959831999989, 28.817966170000034 ], [ -82.026959801999965, 28.817967587000055 ], [ -82.026958417999936, 28.818032219000031 ], [ -82.026968790999945, 28.818877042000054 ], [ -82.026953987999946, 28.819382046000044 ], [ -82.026946343999953, 28.819844439000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018711684999971, 28.837730578000048 ], [ -82.01929260999998, 28.838341215000071 ], [ -82.019582133999961, 28.838644051000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019607251999957, 28.83726951500006 ], [ -82.020232437999937, 28.838327838000055 ], [ -82.019582133999961, 28.838644051000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018711684999971, 28.837730578000048 ], [ -82.019179673999986, 28.837486803000047 ], [ -82.019461593999949, 28.837348151000072 ], [ -82.019607251999957, 28.83726951500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018575815999952, 28.837368964000063 ], [ -82.018578177999984, 28.837437235000039 ], [ -82.018582887999969, 28.837497232000032 ], [ -82.018592294999962, 28.837548951000031 ], [ -82.018613450999965, 28.837598600000035 ], [ -82.018636952999941, 28.837635836000061 ], [ -82.01866515599994, 28.837681346000068 ], [ -82.018711684999971, 28.837730578000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018575815999952, 28.837368964000063 ], [ -82.01776757, 28.837367004000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01858976699998, 28.836541428000032 ], [ -82.018578124999976, 28.837141392000035 ], [ -82.018575815999952, 28.837368964000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019607251999957, 28.83726951500006 ], [ -82.019673028999989, 28.837213646000066 ], [ -82.019715312999949, 28.83717226400006 ], [ -82.019743500999937, 28.837137090000056 ], [ -82.019771685999956, 28.837093639000045 ], [ -82.019795170999942, 28.837031570000079 ], [ -82.019809254999984, 28.836963297000068 ], [ -82.019820992999939, 28.836911575000045 ], [ -82.019823330999941, 28.836853647000055 ], [ -82.019820969999955, 28.836791582000046 ], [ -82.019806861999939, 28.836727450000069 ], [ -82.019781003999981, 28.83666332100006 ], [ -82.019752800999981, 28.836615742000049 ], [ -82.019715198999961, 28.836566095000023 ], [ -82.019670546999976, 28.836516450000033 ], [ -82.019628248999936, 28.836479217000033 ], [ -82.019562453999981, 28.83643371200003 ], [ -82.019491960999972, 28.836400621000053 ], [ -82.019412071999966, 28.836375806000035 ], [ -82.019327487999988, 28.836361336000039 ], [ -82.019252301999984, 28.83635514100007 ], [ -82.019170067999937, 28.836361359000023 ], [ -82.019080789999975, 28.836379992000047 ], [ -82.01901500799994, 28.836402758000077 ], [ -82.018771092999941, 28.836519320000036 ], [ -82.018700193999962, 28.83653313800005 ], [ -82.01858976699998, 28.836541428000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018584971999985, 28.835995258000025 ], [ -82.018584993, 28.83611318100003 ], [ -82.018585013999939, 28.836233174000029 ], [ -82.01858976699998, 28.836541428000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018589480999935, 28.834933944000056 ], [ -82.017814146999967, 28.834931980000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018589480999935, 28.834933944000056 ], [ -82.018584971999985, 28.835995258000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01776757, 28.837367004000043 ], [ -82.017450380999946, 28.837367045000065 ], [ -82.017123792999939, 28.837369157000069 ], [ -82.017043907999948, 28.837367097000026 ], [ -82.01700161399998, 28.837356759000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017788393999979, 28.835465742000054 ], [ -82.016729270999974, 28.835462193000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017814146999967, 28.834931980000079 ], [ -82.016727161999938, 28.834934822000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018197022999971, 28.834400239000047 ], [ -82.016727161999938, 28.834396904000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018607990999953, 28.833324388000051 ], [ -82.01748964799998, 28.833330744000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018596337999952, 28.833854012000074 ], [ -82.017029239999943, 28.833852149000052 ], [ -82.016982248999966, 28.83385008700003 ], [ -82.016944654999975, 28.83383974700007 ], [ -82.016909409999982, 28.833819063000078 ], [ -82.016881211999987, 28.833796310000025 ], [ -82.016864761999955, 28.833765279000033 ], [ -82.016855357999987, 28.833732179000037 ], [ -82.016853003999984, 28.833694940000044 ], [ -82.016850641999952, 28.833626669000068 ], [ -82.016845844999978, 28.833010157000047 ], [ -82.016845838999984, 28.832972918000053 ], [ -82.016852881999966, 28.832937746000027 ], [ -82.016866971999946, 28.832900506000044 ], [ -82.016893031999984, 28.832871218000037 ], [ -82.016928047999954, 28.832840502000067 ], [ -82.016965635999952, 28.832817739000063 ], [ -82.017010272999983, 28.832811528000036 ], [ -82.017155938999963, 28.832807371000058 ], [ -82.01861024599998, 28.832792698000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018614869999965, 28.832376860000068 ], [ -82.01861024599998, 28.832792698000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01776757, 28.837367004000043 ], [ -82.017772079999986, 28.837418249000052 ], [ -82.017769145999978, 28.837504964000061 ], [ -82.017758887999946, 28.837588735000054 ], [ -82.017719566999972, 28.837722084000063 ], [ -82.017663149999976, 28.837836627000058 ], [ -82.017581088999975, 28.837951170000053 ], [ -82.017415257999971, 28.83817854800003 ], [ -82.017259802999945, 28.838389143000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015933762999964, 28.858192183000028 ], [ -82.013285704999987, 28.858160456000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024325682999972, 28.860445571000071 ], [ -82.024306047999971, 28.860422534000065 ], [ -82.02428641399996, 28.86039949700006 ], [ -82.024255875999984, 28.860380302000067 ], [ -82.024223154999959, 28.860363028000052 ], [ -82.024190438999938, 28.860355354000035 ], [ -82.023444529999949, 28.860359326000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022554370999956, 28.860867322000047 ], [ -82.02255433199997, 28.860682520000069 ], [ -82.022554302999936, 28.860550519000071 ], [ -82.022557017999986, 28.860495318000062 ], [ -82.022565188999977, 28.860456917000079 ], [ -82.022586990999969, 28.860413713000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023444529999949, 28.860359326000037 ], [ -82.022704208999983, 28.860360893000063 ], [ -82.022663314999988, 28.860368099000027 ], [ -82.02261697299997, 28.860389707000024 ], [ -82.022586990999969, 28.860413713000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022554370999956, 28.860867322000047 ], [ -82.022234168999944, 28.860868334000031 ], [ -82.022201452, 28.860860659000025 ], [ -82.022168732999944, 28.860839545000033 ], [ -82.022136011999976, 28.860816510000063 ], [ -82.022107649999953, 28.860778115000073 ], [ -82.022092373999953, 28.860733956000047 ], [ -82.022090178999974, 28.860664836000069 ], [ -82.022090128999935, 28.860428499000079 ], [ -82.022090116999948, 28.860371392000047 ], [ -82.022071598999958, 28.860321900000031 ], [ -82.022035430999949, 28.860270504000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022554577999983, 28.861824927000043 ], [ -82.022554370999956, 28.860867322000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024343043999977, 28.861829416000035 ], [ -82.022554577999983, 28.861824927000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024343043999977, 28.861829416000035 ], [ -82.024346445999981, 28.860634688000061 ], [ -82.024345342999936, 28.860578047000047 ], [ -82.024345332999985, 28.860533887000031 ], [ -82.02434096099995, 28.860495488000026 ], [ -82.024334412999963, 28.860466689000077 ], [ -82.024325682999972, 28.860445571000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02887691799998, 28.861857321000059 ], [ -82.024343043999977, 28.861829416000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028888022, 28.862574923000068 ], [ -82.02887691799998, 28.861857321000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044766368999944, 28.83624947800007 ], [ -82.044694340999968, 28.83621462800005 ], [ -82.04425136499998, 28.835970650000036 ], [ -82.043804794999971, 28.835736184000041 ], [ -82.043624728999987, 28.835647469000037 ], [ -82.043466272999979, 28.835574600000029 ], [ -82.043340230999945, 28.835520744000064 ], [ -82.043188984999972, 28.835466894000035 ], [ -82.042764054999964, 28.835311678000039 ], [ -82.042234675999964, 28.835074062000047 ], [ -82.041755438999985, 28.834833239000034 ], [ -82.041107286999988, 28.834476119000044 ], [ -82.040736028999959, 28.834298957000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040877702999978, 28.83460360600003 ], [ -82.041446121999968, 28.834991875000071 ], [ -82.042195232999973, 28.835479890000045 ], [ -82.042375317999984, 28.835619333000068 ], [ -82.042685074999952, 28.835882383000069 ], [ -82.042984032999982, 28.836148604000073 ], [ -82.043207350999978, 28.836345100000074 ], [ -82.043499096999938, 28.83658279000008 ], [ -82.043848455999978, 28.836820459000023 ], [ -82.044993739999938, 28.837492215000054 ], [ -82.045066491999989, 28.837534675000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041744822999988, 28.839898709000067 ], [ -82.040233087999979, 28.839876850000053 ], [ -82.038788188999945, 28.83987118500005 ], [ -82.037217108999982, 28.839888036000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105070969999986, 28.754338412000038 ], [ -82.10507591399994, 28.753472588000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104075482999974, 28.754344503000027 ], [ -82.105070969999986, 28.754338412000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105070969999986, 28.754338412000038 ], [ -82.106063990999985, 28.75433995700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106077629999959, 28.755524211000079 ], [ -82.106078216999947, 28.754473156000074 ], [ -82.106063990999985, 28.75433995700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106063990999985, 28.75433995700007 ], [ -82.10606624199994, 28.753756026000076 ], [ -82.106066014999953, 28.753531300000077 ], [ -82.106055219999973, 28.753478810000047 ], [ -82.106029114999956, 28.753452130000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107795599999974, 28.756168475000038 ], [ -82.108032710999964, 28.756260820000023 ], [ -82.108149773999969, 28.756313602000034 ], [ -82.108263830999988, 28.75636109900006 ], [ -82.108527982999988, 28.756490436000036 ], [ -82.108735112999966, 28.756601310000065 ], [ -82.108990286999983, 28.756751802000053 ], [ -82.109215450999955, 28.756891744000029 ], [ -82.109418567999967, 28.757028099000024 ], [ -82.109690075999936, 28.757218214000034 ], [ -82.109995855999955, 28.757433835000029 ], [ -82.110288456999967, 28.757642500000031 ], [ -82.110575806999975, 28.75786277800006 ], [ -82.110865787999956, 28.758083051000028 ], [ -82.111145256999976, 28.758321901000045 ], [ -82.111430010999982, 28.758576995000055 ], [ -82.111627762999944, 28.758757884000033 ], [ -82.111796521999963, 28.758922546000065 ], [ -82.11199428599997, 28.75911504100003 ], [ -82.112221062999936, 28.759342326000024 ], [ -82.112434664999967, 28.759562660000029 ], [ -82.112661479999986, 28.759822442000029 ], [ -82.112743245, 28.759922184000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112743245, 28.759922184000061 ], [ -82.112694174999945, 28.760054540000056 ], [ -82.112681333999944, 28.761140849000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112743245, 28.759922184000061 ], [ -82.112877768999965, 28.760091516000045 ], [ -82.113487073999977, 28.760845385000039 ], [ -82.114027808999936, 28.761518070000079 ], [ -82.114792783999974, 28.762487669000052 ], [ -82.11510667899995, 28.762874109000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127174343999968, 28.770810021000045 ], [ -82.129619675999948, 28.770815504000041 ], [ -82.131155966999984, 28.77080621500005 ], [ -82.133397503999959, 28.770796214000029 ], [ -82.134496093999985, 28.770771705000072 ], [ -82.135463579999964, 28.770761372000038 ], [ -82.136128046999943, 28.770743529000072 ], [ -82.13718242799996, 28.770741221000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127229126999964, 28.768862675000037 ], [ -82.12801763899995, 28.768859977000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127229126999964, 28.768862675000037 ], [ -82.12718439799994, 28.770334215000048 ], [ -82.1272, 28.770414216000063 ], [ -82.127215639999974, 28.770525441000075 ], [ -82.127216672999964, 28.77064604800006 ], [ -82.127174343999968, 28.770810021000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126276707999978, 28.768861616000038 ], [ -82.126278619999937, 28.770081747000063 ], [ -82.126272403999963, 28.770806183000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126276707999978, 28.768861616000038 ], [ -82.127229126999964, 28.768862675000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125248989999989, 28.768868427000029 ], [ -82.126276707999978, 28.768861616000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125248989999989, 28.768868427000029 ], [ -82.125247324999975, 28.770071779000034 ], [ -82.125242887999946, 28.770807142000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126286181999944, 28.767532574000029 ], [ -82.125586272999954, 28.767531274000078 ], [ -82.125362577999965, 28.767539289000069 ], [ -82.125322723999943, 28.767551036000043 ], [ -82.125298379999947, 28.767568622000056 ], [ -82.125276256999939, 28.767590110000071 ], [ -82.125260785999956, 28.767617447000077 ], [ -82.125247546999958, 28.767660395000064 ], [ -82.125245402999951, 28.767718944000023 ], [ -82.125245516999939, 28.767814571000031 ], [ -82.125248989999989, 28.768868427000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126286181999944, 28.767532574000029 ], [ -82.126284188999989, 28.767716026000073 ], [ -82.126276707999978, 28.768861616000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126286181999944, 28.767532574000029 ], [ -82.126361481999936, 28.767526649000047 ], [ -82.127132284999959, 28.767541540000025 ], [ -82.127183234999961, 28.767547345000025 ], [ -82.127212034999957, 28.767553173000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127212034999957, 28.767553173000067 ], [ -82.127223147999985, 28.767584389000035 ], [ -82.12722869299995, 28.767623448000052 ], [ -82.127223365999953, 28.767763935000062 ], [ -82.127229126999964, 28.768862675000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127212034999957, 28.767553173000067 ], [ -82.127475631999971, 28.767572441000027 ], [ -82.128033793999975, 28.767577768000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128033793999975, 28.767577768000024 ], [ -82.12801763899995, 28.768859977000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128033793999975, 28.767577768000024 ], [ -82.128191038999944, 28.767567861000032 ], [ -82.128489501999979, 28.767563567000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126289724999936, 28.766794870000069 ], [ -82.126360588999944, 28.766785046000052 ], [ -82.126402663999954, 28.766779152000026 ], [ -82.126460249, 28.766777146000038 ], [ -82.126506758999938, 28.766775152000037 ], [ -82.126570986, 28.766771188000064 ], [ -82.127350650999972, 28.766791923000028 ], [ -82.128192256999967, 28.766752095000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174670898999977, 28.808125415000063 ], [ -82.174624974999972, 28.808026552000058 ], [ -82.174599766999961, 28.807876368000052 ], [ -82.174591189999944, 28.807722499000079 ], [ -82.174590939999973, 28.807572282000024 ], [ -82.174590725999963, 28.807444048000036 ], [ -82.174602704999984, 28.807143600000074 ], [ -82.174610841999936, 28.807033674000024 ], [ -82.174627902999987, 28.806923307000034 ], [ -82.174572914999942, 28.80674061700006 ], [ -82.174581130999968, 28.806678322000039 ], [ -82.174606027999971, 28.806641651000064 ], [ -82.174672853999937, 28.806632526000044 ], [ -82.175636718999954, 28.806626119000043 ], [ -82.175729786999966, 28.806612589000054 ], [ -82.175820886999986, 28.806590469000071 ], [ -82.175908656, 28.806560102000049 ], [ -82.175949805999949, 28.806542860000036 ], [ -82.176101067, 28.806436090000034 ], [ -82.176142580999965, 28.806403377000038 ], [ -82.176190153999983, 28.806377187000066 ], [ -82.176242035999962, 28.806358898000042 ], [ -82.176296857999944, 28.806348857000046 ], [ -82.176329835999979, 28.806347095000035 ], [ -82.176661152999941, 28.806312627000068 ], [ -82.176795028999948, 28.806312452000043 ], [ -82.176836800999979, 28.806317554000032 ], [ -82.176876049999976, 28.806330567000032 ], [ -82.176910822999957, 28.806351492000033 ], [ -82.176939164999965, 28.806378957000049 ], [ -82.176959516999943, 28.806411590000039 ], [ -82.176965200999973, 28.806425334000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174670898999977, 28.808125415000063 ], [ -82.174750318999941, 28.808356134000064 ], [ -82.174744268999973, 28.808496762000061 ], [ -82.174703327999964, 28.808756714000026 ], [ -82.174676330999944, 28.808951673000024 ], [ -82.174702709999963, 28.809439122000072 ], [ -82.174699539999949, 28.809878479000076 ], [ -82.174697477999985, 28.810046935000059 ], [ -82.174676596999973, 28.810164535000069 ], [ -82.17464595499996, 28.810280429000045 ], [ -82.174605743999962, 28.810393929000043 ], [ -82.17459641399995, 28.810416630000077 ], [ -82.174333326999943, 28.810881420000044 ], [ -82.17364841999995, 28.812012312000036 ], [ -82.173418719999972, 28.812372204000042 ], [ -82.173071512999968, 28.812842254000032 ], [ -82.172993494999957, 28.812990180000043 ], [ -82.172966693999967, 28.813069628000051 ], [ -82.172949457999948, 28.813151471000026 ], [ -82.172942178999961, 28.813234331000046 ], [ -82.172941831999935, 28.813260459000048 ], [ -82.172954673999982, 28.813590818000023 ], [ -82.172951661999946, 28.813658546000056 ], [ -82.172941983999976, 28.813707031000035 ], [ -82.172922737999954, 28.813753122000037 ], [ -82.172894509999935, 28.81379578700006 ], [ -82.172855150999965, 28.813836060000028 ], [ -82.172557084999937, 28.814047524000046 ], [ -82.172494684999947, 28.814080607000051 ], [ -82.172427773999971, 28.814100287000031 ], [ -82.172357352999938, 28.814122380000072 ], [ -82.172318133999966, 28.814127930000041 ], [ -82.172022496999944, 28.814156841000056 ], [ -82.170750404999978, 28.814166055000044 ], [ -82.169834335999951, 28.81416721100004 ], [ -82.169777803999978, 28.814177244000064 ], [ -82.169723552999983, 28.814199225000038 ], [ -82.169682877999946, 28.814223181000045 ], [ -82.169628692999936, 28.814285005000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153716862999943, 28.807464777000064 ], [ -82.153825035999944, 28.807657392000067 ], [ -82.153944230999969, 28.807869291000031 ], [ -82.154065960999958, 28.808074215000033 ], [ -82.154202685999962, 28.808285347000037 ], [ -82.15433866799998, 28.808472450000068 ], [ -82.154485977999968, 28.808671493000077 ], [ -82.154651382999987, 28.808870515000024 ], [ -82.154832621999958, 28.809071509000034 ], [ -82.155009308, 28.809250596000027 ], [ -82.155201843999976, 28.809441618000051 ], [ -82.155403403999969, 28.809616692000077 ], [ -82.155623053999989, 28.809787760000063 ], [ -82.155820044999984, 28.809930964000046 ], [ -82.156014770999946, 28.810072180000077 ], [ -82.156216265999944, 28.810201433000032 ], [ -82.156442647999938, 28.810334643000033 ], [ -82.15665996599995, 28.810457902000053 ], [ -82.156881792999968, 28.810569202000067 ], [ -82.15712171399997, 28.810680481000077 ], [ -82.157338986999946, 28.810771865000049 ], [ -82.157572092999942, 28.810863230000052 ], [ -82.157825547999948, 28.81094859500007 ], [ -82.158083515999976, 28.811027977000037 ], [ -82.158327898999971, 28.811097415000063 ], [ -82.159065536999947, 28.811279821000028 ], [ -82.160373370999935, 28.811599004000072 ], [ -82.161925595999946, 28.811983620000035 ], [ -82.163070528999981, 28.812261137000064 ], [ -82.165272178999942, 28.812802305000048 ], [ -82.16739692699997, 28.813331579000078 ], [ -82.167813316999968, 28.813458557000047 ], [ -82.168134689999988, 28.813573700000063 ], [ -82.168404021999947, 28.813676953000027 ], [ -82.168680165999945, 28.813796134000029 ], [ -82.168940482999972, 28.813919321000071 ], [ -82.169146481999974, 28.814022651000073 ], [ -82.169304948, 28.814104129000043 ], [ -82.169449838999981, 28.814183632000038 ], [ -82.169549454999981, 28.814241278000054 ], [ -82.169628692999936, 28.814285005000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.169628692999936, 28.814285005000045 ], [ -82.169735102999937, 28.814346626000031 ], [ -82.169952473999956, 28.814487792000079 ], [ -82.170176646999948, 28.814636918000076 ], [ -82.170425752999961, 28.814817885000025 ], [ -82.17150610799996, 28.815685076000079 ], [ -82.172015722999959, 28.816098786000055 ], [ -82.17280393599998, 28.81673724500007 ], [ -82.17434641899996, 28.817990289000079 ], [ -82.174946665999983, 28.818481563000034 ], [ -82.175164113999983, 28.818658578000054 ], [ -82.175383834999934, 28.81884156700005 ], [ -82.175594516, 28.819028551000031 ], [ -82.175782561999938, 28.819207595000023 ], [ -82.175984226999958, 28.819412519000025 ], [ -82.17617910499996, 28.819617451000056 ], [ -82.176367228999936, 28.819840322000061 ], [ -82.176537246999942, 28.82005723900005 ], [ -82.176689152999984, 28.820264219000023 ], [ -82.176825206999979, 28.820461260000059 ], [ -82.176906848999977, 28.820584663000034 ], [ -82.177031611999951, 28.820791679000024 ], [ -82.177130292999948, 28.820957890000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178800815999978, 28.818308676000072 ], [ -82.178759853999964, 28.819820241000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178800815999978, 28.818308676000072 ], [ -82.180887528999961, 28.818109051000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178857292999965, 28.816942016000041 ], [ -82.178800815999978, 28.818308676000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178857292999965, 28.816942016000041 ], [ -82.179434123999954, 28.816959179000037 ], [ -82.179922731999966, 28.816972474000067 ], [ -82.180266639999957, 28.81697833000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179002179999941, 28.812476185000037 ], [ -82.178995204999978, 28.812933715000042 ], [ -82.178966973999934, 28.813619036000034 ], [ -82.178945510999938, 28.814296382000066 ], [ -82.178857292999965, 28.816942016000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178759853999964, 28.819820241000059 ], [ -82.18033393099995, 28.819371480000029 ], [ -82.180963941999948, 28.819193646000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179647620999958, 28.820812457000045 ], [ -82.179605985999956, 28.820683792000068 ], [ -82.179601057999946, 28.820651619000046 ], [ -82.179601003999949, 28.820619438000051 ], [ -82.179611229999978, 28.820592855000029 ], [ -82.179638660999956, 28.820560392000061 ], [ -82.17966907899995, 28.820541579000064 ], [ -82.18129737299995, 28.820072789000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179647620999958, 28.820812457000045 ], [ -82.17980913599996, 28.821241311000051 ], [ -82.179836009999974, 28.821286327000053 ], [ -82.179879914999958, 28.821318449000046 ], [ -82.179935987999954, 28.82134411800007 ], [ -82.179982287999962, 28.821352637000075 ], [ -82.180031013999951, 28.821354719000055 ], [ -82.180089454999973, 28.821341768000025 ], [ -82.181280105999974, 28.821003355000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177615547999949, 28.820574868000051 ], [ -82.177984765999952, 28.820129530000031 ], [ -82.178013860999954, 28.820100122000042 ], [ -82.178042085999948, 28.820070203000057 ], [ -82.178087257999948, 28.820030301000031 ], [ -82.178140934999988, 28.82000283900004 ], [ -82.178200275999984, 28.819980349000048 ], [ -82.178759853999964, 28.819820241000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177615547999949, 28.820574868000051 ], [ -82.178432627999939, 28.821163761000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178432627999939, 28.821163761000037 ], [ -82.178960983999957, 28.821006450000027 ], [ -82.179647620999958, 28.820812457000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177130292999948, 28.820957890000045 ], [ -82.177238538999973, 28.820916473000068 ], [ -82.177323721999983, 28.820869165000033 ], [ -82.177386967999951, 28.82081544700003 ], [ -82.177615547999949, 28.820574868000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178432627999939, 28.821163761000037 ], [ -82.178649718999964, 28.821328664000077 ], [ -82.178935090999971, 28.821534239000073 ], [ -82.179227781999941, 28.821746240000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179227781999941, 28.821746240000039 ], [ -82.179647314999954, 28.822054611000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179647314999954, 28.822054611000056 ], [ -82.179868917999954, 28.822007119000034 ], [ -82.18011735999994, 28.821985335000079 ], [ -82.180302506999965, 28.821987233000073 ], [ -82.180369107, 28.822013941000023 ], [ -82.180500452999979, 28.822002520000069 ], [ -82.180712955999979, 28.821932324000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179647314999954, 28.822054611000056 ], [ -82.180037575999961, 28.822337277000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.180037575999961, 28.822337277000031 ], [ -82.179995584999972, 28.823418586000059 ], [ -82.179996234999976, 28.823796165000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.180037575999961, 28.822337277000031 ], [ -82.180659504999937, 28.822759079000036 ], [ -82.181052268999963, 28.823078208000027 ], [ -82.181413384999985, 28.823408105000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181413384999985, 28.823408105000055 ], [ -82.181488841999965, 28.823371534000046 ], [ -82.181600834999983, 28.823332768000057 ], [ -82.181695790999981, 28.823302604000048 ], [ -82.181790752999973, 28.823276732000068 ], [ -82.181905221999955, 28.823259415000052 ], [ -82.182107417999987, 28.82325914200004 ], [ -82.182236542999988, 28.823265405000029 ], [ -82.182324264999977, 28.82327815900004 ], [ -82.182351098999959, 28.823299575000078 ], [ -82.182365794999953, 28.823344607000024 ], [ -82.182370767999942, 28.823402525000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181413384999985, 28.823408105000055 ], [ -82.181486627999959, 28.823500258000024 ], [ -82.181645302999982, 28.823688834000052 ], [ -82.181752744999983, 28.823834572000067 ], [ -82.181821124999942, 28.823931022000068 ], [ -82.181840658999988, 28.823956740000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.188212797999938, 28.857458550000047 ], [ -82.186843517999989, 28.857566548000079 ], [ -82.18622830299995, 28.857617553000068 ], [ -82.185656489999985, 28.857662709000067 ], [ -82.183623373999978, 28.857823669000027 ], [ -82.183445462999941, 28.857837610000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.173997672999974, 28.858759537000026 ], [ -82.173954803999948, 28.861297599000068 ], [ -82.177548480999974, 28.861084231000063 ], [ -82.177704659999961, 28.861049044000026 ], [ -82.177788613999951, 28.861052131000065 ], [ -82.17782621799995, 28.861068149000062 ], [ -82.177851725999972, 28.861140737000028 ], [ -82.177931278999949, 28.861277495000024 ], [ -82.178068223999958, 28.861578972000075 ], [ -82.178128922999974, 28.861821893000069 ], [ -82.17811685099997, 28.862185013000044 ], [ -82.178192200999945, 28.863575888000071 ], [ -82.17818331899997, 28.863950177000049 ], [ -82.178184214999987, 28.864475283000047 ], [ -82.178168572999937, 28.864606580000043 ], [ -82.178124390999983, 28.864746294000042 ], [ -82.177906074999953, 28.865109688000075 ], [ -82.177716053999973, 28.865319422000027 ], [ -82.177205878999985, 28.865716717000055 ], [ -82.176920602999985, 28.865890265000075 ], [ -82.176860335999947, 28.865901516000065 ], [ -82.176698465999948, 28.865873797000063 ], [ -82.176514413999939, 28.865862867000033 ], [ -82.176377985999977, 28.865868632000058 ], [ -82.17598785399997, 28.865955727000028 ], [ -82.175131722999936, 28.866300395000053 ], [ -82.174988869999936, 28.866378091000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.175950993999948, 28.837798724000038 ], [ -82.17502585699998, 28.839885326000058 ], [ -82.174491879999948, 28.841093924000063 ], [ -82.174148394999975, 28.841906241000061 ], [ -82.173939644999962, 28.84259957200004 ], [ -82.173887547999982, 28.842827361000047 ], [ -82.17383926399998, 28.843094746000077 ], [ -82.173805922999975, 28.843332411000063 ], [ -82.17379116099994, 28.843471041000043 ], [ -82.173769015999937, 28.843678989000068 ], [ -82.173754335999945, 28.843867124000042 ], [ -82.173747233999961, 28.844104755000046 ], [ -82.173764668, 28.846841174000076 ], [ -82.173790646999976, 28.849679074000051 ], [ -82.173811609999973, 28.852056471000026 ], [ -82.173841228999947, 28.854523714000038 ], [ -82.173852355999941, 28.856099911000058 ], [ -82.173863944999937, 28.857953163000047 ], [ -82.173871748999943, 28.858579256000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178849457999945, 28.858194664000052 ], [ -82.177705810999953, 28.858281052000052 ], [ -82.177320216999988, 28.858312424000076 ], [ -82.177120842999955, 28.858326189000024 ], [ -82.174695522999968, 28.858512606000033 ], [ -82.173871748999943, 28.858579256000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165226749999988, 28.860119453000038 ], [ -82.165005293999968, 28.860218876000033 ], [ -82.164049494999972, 28.860641042000054 ], [ -82.163500258999989, 28.860880484000063 ], [ -82.163168576999965, 28.861025408000046 ], [ -82.162843982999959, 28.861138906000065 ], [ -82.162597859999948, 28.861224031000063 ], [ -82.161902208999948, 28.861410233000072 ], [ -82.16029683499994, 28.861830009000073 ], [ -82.159215886999959, 28.862120334000053 ], [ -82.157988653999951, 28.862442241000053 ], [ -82.156402506999939, 28.862852522000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.169666675999963, 28.858896594000043 ], [ -82.168966290999947, 28.858950071000038 ], [ -82.168738441999949, 28.858971575000055 ], [ -82.168506214, 28.858995013000026 ], [ -82.168269614999986, 28.859026173000075 ], [ -82.168035232999955, 28.85907276100005 ], [ -82.167803048999986, 28.859125133000077 ], [ -82.167581819999953, 28.859175562000075 ], [ -82.167362803999936, 28.859239489000061 ], [ -82.167121891999955, 28.859315019000064 ], [ -82.166894139999954, 28.859398248000048 ], [ -82.166583190999972, 28.859524017000069 ], [ -82.166210946999968, 28.85968844000007 ], [ -82.165956949999952, 28.859802564000063 ], [ -82.165433617999952, 28.860034686000063 ], [ -82.165226749999988, 28.860119453000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165343080999946, 28.860286287000065 ], [ -82.165359719999969, 28.860416474000033 ], [ -82.16536532799995, 28.860498450000023 ], [ -82.165362878999986, 28.860681706000037 ], [ -82.165349580999987, 28.862663758000053 ], [ -82.16535547899997, 28.862928986000043 ], [ -82.165358409999953, 28.863049544000035 ], [ -82.165383431999942, 28.863283404000072 ], [ -82.165416711999967, 28.863543775000039 ], [ -82.165415783999947, 28.864686702000029 ], [ -82.16542183699994, 28.865050790000055 ], [ -82.165427510999962, 28.865173756000047 ], [ -82.165435898999988, 28.865282251000053 ], [ -82.165458003999959, 28.86540278700005 ], [ -82.165480062999961, 28.865494386000023 ], [ -82.165518567999982, 28.865593199000045 ], [ -82.165548831999956, 28.865677555000048 ], [ -82.165700012999935, 28.866010120000055 ], [ -82.166106586999945, 28.866749867000067 ], [ -82.166147778999971, 28.866814921000071 ], [ -82.16618624299997, 28.866887211000062 ], [ -82.166213744999936, 28.866957102000072 ], [ -82.166230302999963, 28.867034241000056 ], [ -82.166244124999935, 28.867113795000023 ], [ -82.166249729999947, 28.867193358000065 ], [ -82.166237103999947, 28.867866108000044 ], [ -82.16623184599996, 28.86800355500003 ], [ -82.166215670999975, 28.868167538000023 ], [ -82.166172356999937, 28.868490697000027 ], [ -82.166123496999944, 28.868770460000064 ], [ -82.166077304999988, 28.869006818000059 ], [ -82.165960113999972, 28.869383114000073 ], [ -82.165410391999956, 28.870796772000062 ], [ -82.165361358999974, 28.870970441000054 ], [ -82.165347834999977, 28.871078963000059 ], [ -82.165342505999945, 28.871173006000049 ], [ -82.165350856999964, 28.871257390000039 ], [ -82.165370161999988, 28.87133934700006 ], [ -82.165403151999953, 28.871414056000049 ], [ -82.165438876999985, 28.871486349000065 ], [ -82.165488306999976, 28.871563448000074 ], [ -82.165826065999966, 28.872081447000028 ], [ -82.166199430999939, 28.872594580000055 ], [ -82.16687346599997, 28.873548595000045 ], [ -82.167095862999986, 28.873866601000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135412808999945, 28.882111055000053 ], [ -82.135906005999971, 28.88230168900003 ], [ -82.135985901999959, 28.882332931000064 ], [ -82.136047549999944, 28.882348912000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134069399999987, 28.881597070000055 ], [ -82.134323766999955, 28.881711213000074 ], [ -82.134562579999965, 28.881802649000065 ], [ -82.134832957999947, 28.881899277000059 ], [ -82.135025328999973, 28.881968332000042 ], [ -82.135412808999945, 28.882111055000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131639390999965, 28.879825697000058 ], [ -82.132005320999951, 28.880192960000045 ], [ -82.132324167999968, 28.880484445000036 ], [ -82.132535833999953, 28.880654263000054 ], [ -82.132752709999977, 28.880817180000065 ], [ -82.132943452999939, 28.880954850000023 ], [ -82.133262205999984, 28.881168215000059 ], [ -82.133507773999952, 28.881310424000048 ], [ -82.133737657999973, 28.881434268000078 ], [ -82.134069399999987, 28.881597070000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131639390999965, 28.879825697000058 ], [ -82.131188198999951, 28.880159293000077 ], [ -82.130909119999956, 28.880352566000056 ], [ -82.130630025999949, 28.880534348000026 ], [ -82.130334233999974, 28.880703680000067 ], [ -82.130056132999982, 28.880865761000052 ], [ -82.129754411999954, 28.881026360000078 ], [ -82.12965178099995, 28.881086724000056 ], [ -82.129338747999952, 28.881270835000066 ], [ -82.129231816999948, 28.88135135400006 ], [ -82.129177076999952, 28.881415740000079 ], [ -82.129122337999945, 28.881482424000069 ], [ -82.12907804699995, 28.881553692000068 ], [ -82.12904681599997, 28.881629545000067 ], [ -82.129023417999974, 28.881707686000027 ], [ -82.129013073999943, 28.881788113000027 ], [ -82.129007943999966, 28.881861642000047 ], [ -82.129008037999938, 28.881937464000032 ], [ -82.129021184999942, 28.882013273000041 ], [ -82.129039559999967, 28.882095970000023 ], [ -82.129073596999945, 28.882176354000023 ], [ -82.129118068999958, 28.882252133000065 ], [ -82.129159916999981, 28.882316427000035 ], [ -82.129220044999954, 28.882385299000077 ], [ -82.129280159999951, 28.88244497900007 ], [ -82.12934809799998, 28.882495461000076 ], [ -82.129413411999963, 28.882536755000046 ], [ -82.129491776999942, 28.882575741000039 ], [ -82.129580575999967, 28.882610119000049 ], [ -82.129664141999967, 28.882633016000057 ], [ -82.129758141999957, 28.882649009000033 ], [ -82.130000938999956, 28.882662560000028 ], [ -82.133044825999946, 28.88266188800003 ], [ -82.134149086999969, 28.882663090000051 ], [ -82.134263951999969, 28.882665273000043 ], [ -82.13435532699998, 28.882669778000036 ], [ -82.134457155999939, 28.882683462000045 ], [ -82.134553771999947, 28.882704043000047 ], [ -82.134645178999961, 28.882733822000034 ], [ -82.134733981999943, 28.882768198000065 ], [ -82.134992570999941, 28.88288052300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136661371999935, 28.88246517500005 ], [ -82.136809837999976, 28.882494819000044 ], [ -82.13690648499994, 28.882520489000058 ], [ -82.137023043999989, 28.882571443000074 ], [ -82.137130322999951, 28.882644228000061 ], [ -82.137373755999988, 28.882802938000054 ], [ -82.137671556999976, 28.883003497000061 ], [ -82.137736698999959, 28.883035516000064 ], [ -82.137792285999979, 28.883062198000061 ], [ -82.137880866999978, 28.883097249000059 ], [ -82.137944261999962, 28.883120102000078 ], [ -82.138240383999971, 28.883222169000078 ], [ -82.138415795999947, 28.883280049000064 ], [ -82.138619870999946, 28.883351651000055 ], [ -82.139026271999967, 28.883484159000034 ], [ -82.139208789999941, 28.883538169000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139208789999941, 28.883538169000076 ], [ -82.13918530899997, 28.883629146000033 ], [ -82.139153305999969, 28.883714742000052 ], [ -82.139108295999961, 28.883808755000075 ], [ -82.139044202999969, 28.883913482000025 ], [ -82.138954947999935, 28.884025111000028 ], [ -82.138863932999982, 28.884119935000058 ], [ -82.138768549999952, 28.884193373000073 ], [ -82.138697438999941, 28.884242338000035 ], [ -82.138599424999938, 28.884295916000042 ], [ -82.13844675699994, 28.884372468000038 ], [ -82.138122330999977, 28.884530175000066 ], [ -82.137414486999944, 28.884873914000025 ], [ -82.137306936999948, 28.884936667000034 ], [ -82.137202874999957, 28.885012404000065 ], [ -82.137131786999987, 28.885080468000069 ], [ -82.137071975999959, 28.885143172000028 ], [ -82.137024311999937, 28.885201282000025 ], [ -82.136970588999986, 28.885273147000078 ], [ -82.136925549999944, 28.885347297000067 ], [ -82.136902281999937, 28.885399074000077 ], [ -82.136548344999937, 28.886280311000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139208789999941, 28.883538169000076 ], [ -82.139677482999957, 28.883641625000052 ], [ -82.140143458999944, 28.883716557000071 ], [ -82.140513333999934, 28.883783481000023 ], [ -82.140681236999967, 28.88381520400003 ], [ -82.140835784999979, 28.883845261000033 ], [ -82.141057130999968, 28.883902111000054 ], [ -82.141211715999987, 28.883959030000028 ], [ -82.141301425999984, 28.88400090600004 ], [ -82.141385416999981, 28.884046147000049 ], [ -82.141444591999971, 28.884077983000054 ], [ -82.141490413999975, 28.884108154000046 ], [ -82.141675628999963, 28.884245624000073 ], [ -82.141811229999973, 28.884369716000037 ], [ -82.141925850999939, 28.884495507000054 ], [ -82.142011863999983, 28.884623009000052 ], [ -82.142074949999937, 28.884723674000043 ], [ -82.142139998999937, 28.88486630500006 ], [ -82.142191921999938, 28.884998460000077 ], [ -82.142230244999951, 28.88512643100006 ], [ -82.142247066999971, 28.885222946000056 ], [ -82.142251936999969, 28.885296391000054 ], [ -82.142247274999988, 28.885376141000052 ], [ -82.142209348999984, 28.885539868000023 ], [ -82.142003091999982, 28.886413082000047 ], [ -82.141948595999963, 28.886667063000061 ], [ -82.141939222999952, 28.886788789000036 ], [ -82.141937001999963, 28.886908408000068 ], [ -82.141941901999985, 28.887004936000039 ], [ -82.141958743999965, 28.887116142000025 ], [ -82.141994684999986, 28.887244116000034 ], [ -82.142049747999977, 28.887405647000037 ], [ -82.142446087999986, 28.888440471000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.146906140999988, 28.875350285000025 ], [ -82.146963769999957, 28.875339251000071 ], [ -82.147021395999957, 28.875325475000068 ], [ -82.147163111999987, 28.875282810000044 ], [ -82.147592914999962, 28.875143836000063 ], [ -82.148117703999958, 28.874969102000023 ], [ -82.14846808599998, 28.87485626800003 ], [ -82.14878731899995, 28.874750324000047 ], [ -82.148913449999952, 28.874704930000064 ], [ -82.14914859199996, 28.874627876000034 ], [ -82.149410194999973, 28.874534336000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149410194999973, 28.874534336000067 ], [ -82.149486487, 28.874499969000055 ], [ -82.149551871999961, 28.874465613000041 ], [ -82.149662402999979, 28.874406524000051 ], [ -82.149842993999982, 28.874314444000049 ], [ -82.149981567999987, 28.874255323000057 ], [ -82.150152852999952, 28.874193423000065 ], [ -82.150316366999959, 28.874143872000047 ], [ -82.150487691999956, 28.87410939800003 ], [ -82.150705749999986, 28.874069386000031 ], [ -82.151085837999972, 28.874033306000058 ], [ -82.151579546999983, 28.873981764000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149410194999973, 28.874534336000067 ], [ -82.149463332999971, 28.874650841000062 ], [ -82.149554493999972, 28.874800214000061 ], [ -82.149615021999978, 28.87490985200003 ], [ -82.149661880999986, 28.874993795000023 ], [ -82.149704815999939, 28.875057170000048 ], [ -82.149788694999984, 28.875153070000067 ], [ -82.149876455999959, 28.875240395000048 ], [ -82.149966148999965, 28.875317432000031 ], [ -82.150027351999938, 28.875381790000063 ], [ -82.15005980799998, 28.875442461000034 ], [ -82.150094979999949, 28.875524702000064 ], [ -82.150143874999969, 28.875668636000057 ], [ -82.150202465999939, 28.875785133000079 ], [ -82.150266861999967, 28.875874198000076 ], [ -82.150370264999935, 28.876004359000035 ], [ -82.150608244999944, 28.876273215000026 ], [ -82.150754574999951, 28.876459895000039 ], [ -82.150895027, 28.876620868000032 ], [ -82.150953582999989, 28.876711653000029 ], [ -82.150984855, 28.876788755000064 ], [ -82.151002497999968, 28.876869300000067 ], [ -82.151000688999943, 28.876965296000037 ], [ -82.150995347999981, 28.877311561000056 ], [ -82.150979973999938, 28.877453853000077 ], [ -82.150948522999954, 28.877662734000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.180308337999975, 28.823958796000056 ], [ -82.18117560099995, 28.823959778000074 ], [ -82.181840658999988, 28.823956740000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181840658999988, 28.823956740000028 ], [ -82.18189192799997, 28.82402103000004 ], [ -82.181928589999984, 28.824089632000039 ], [ -82.181965254999966, 28.824160379000034 ], [ -82.181982403999939, 28.824216134000039 ], [ -82.181994715999963, 28.824291204000076 ], [ -82.182002187999956, 28.824385590000077 ], [ -82.182012423999936, 28.824668761000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179578735999939, 28.82467845900004 ], [ -82.179815036999969, 28.824675998000032 ], [ -82.180263289999971, 28.824677546000032 ], [ -82.18094261799996, 28.824685508000073 ], [ -82.181749321999973, 28.824669116000052 ], [ -82.182012423999936, 28.824668761000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177130292999948, 28.820957890000045 ], [ -82.17719268899998, 28.821069863000048 ], [ -82.177225785999951, 28.82114002000003 ], [ -82.177277862999972, 28.821247351000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.169696727999963, 28.823304545000042 ], [ -82.169676058999983, 28.823359413000048 ], [ -82.169668412999954, 28.823443970000028 ], [ -82.169665649999956, 28.824940712000057 ], [ -82.16967625999996, 28.82668422900008 ], [ -82.16968123099997, 28.82814896900004 ], [ -82.169694361999973, 28.828246069000045 ], [ -82.169714097999986, 28.828414569000074 ], [ -82.169704528999944, 28.828514555000027 ], [ -82.169682082999941, 28.828674539000076 ], [ -82.169675774999973, 28.828785946000039 ], [ -82.169695389999958, 28.828880181000045 ], [ -82.169724764999955, 28.82899154200004 ], [ -82.169721867999954, 28.829205775000048 ], [ -82.169712438999966, 28.82939145000006 ], [ -82.169696696999949, 28.829685676000054 ], [ -82.169687071999988, 28.831750843000066 ], [ -82.169691033999982, 28.83219357400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177277862999972, 28.821247351000068 ], [ -82.177371583999957, 28.821430036000038 ], [ -82.177514856999949, 28.82176118600006 ], [ -82.177663405999965, 28.822142602000042 ], [ -82.177756905999956, 28.822413017000031 ], [ -82.177818645999935, 28.822623472000032 ], [ -82.177883732999987, 28.822902205000048 ], [ -82.177926051999975, 28.823089924000044 ], [ -82.177968476, 28.823340235000046 ], [ -82.178004419999979, 28.823579174000031 ], [ -82.178030714999977, 28.823843732000057 ], [ -82.17805057399994, 28.824122524000074 ], [ -82.178060734999974, 28.824398484000028 ], [ -82.17806212399995, 28.82521502000003 ], [ -82.178053603999956, 28.825903541000059 ], [ -82.178048792999959, 28.826873719000048 ], [ -82.178038904999937, 28.828657597000074 ], [ -82.178036211999938, 28.828973405000056 ], [ -82.178036395999982, 28.829081517000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182012423999936, 28.824668761000055 ], [ -82.182010145999982, 28.82475886800006 ], [ -82.182032110999955, 28.825661755000056 ], [ -82.181966603999967, 28.825930680000056 ], [ -82.181779877999986, 28.826310466000052 ], [ -82.181436988999963, 28.826835797000058 ], [ -82.181357956999989, 28.82691903400007 ], [ -82.181135979999965, 28.827107050000052 ], [ -82.180947419999939, 28.827249432000031 ], [ -82.180886621999946, 28.827311191000035 ], [ -82.180822797999951, 28.827383682000061 ], [ -82.180783300999963, 28.827437369000052 ], [ -82.180722576999983, 28.827542036000068 ], [ -82.180671020999966, 28.827665462000027 ], [ -82.180267664999974, 28.828631405000067 ], [ -82.180173570999955, 28.828811203000043 ], [ -82.180121915999962, 28.828878314000065 ], [ -82.180070242999989, 28.828934698000069 ], [ -82.180009415999962, 28.828980368000032 ], [ -82.179942488999984, 28.829020683000067 ], [ -82.179872500999977, 28.829052956000055 ], [ -82.179750763999948, 28.829096025000069 ], [ -82.179455538999946, 28.829195640000023 ], [ -82.179056727999978, 28.829268575000071 ], [ -82.178787037999939, 28.829260058000045 ], [ -82.178478019999943, 28.829210345000035 ], [ -82.178311830999974, 28.829144065000037 ], [ -82.178141529999948, 28.829092723000031 ], [ -82.17808808999996, 28.829081449000057 ], [ -82.178036395999982, 28.829081517000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178036395999982, 28.829081517000077 ], [ -82.178032252999969, 28.830444315000079 ], [ -82.178026822999982, 28.831050324000046 ], [ -82.178024487999949, 28.831576666000046 ], [ -82.178021743999977, 28.831864022000047 ], [ -82.178009222999947, 28.832100181000044 ], [ -82.177986987999986, 28.832324971000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177986987999986, 28.832324971000048 ], [ -82.177961512999957, 28.832544076000033 ], [ -82.177929604999974, 28.832780258000071 ], [ -82.177878354999962, 28.833042073000058 ], [ -82.177827085, 28.833292508000056 ], [ -82.177759669999944, 28.833548654000026 ], [ -82.177679329999989, 28.833804817000043 ], [ -82.177598944999943, 28.834035374000052 ], [ -82.177508877999969, 28.834271634000061 ], [ -82.176813641999956, 28.835848719000069 ], [ -82.17605720499995, 28.837551063000035 ], [ -82.175950993999948, 28.837798724000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185019607999948, 28.843376008000064 ], [ -82.185441258999958, 28.843504609000036 ], [ -82.185910064999973, 28.843654753000067 ], [ -82.186433908999959, 28.843861720000064 ], [ -82.187475273999951, 28.844352474000061 ], [ -82.187750181999945, 28.844488655000077 ], [ -82.187937705999957, 28.844548140000029 ], [ -82.188105770999982, 28.844567822000045 ], [ -82.188406357999952, 28.844607234000023 ], [ -82.188797430999955, 28.844652207000024 ], [ -82.189026901999966, 28.844677492000073 ], [ -82.189489014999936, 28.844693914000061 ], [ -82.189796006999984, 28.844702017000031 ], [ -82.189915586999973, 28.844713231000071 ], [ -82.190141842999935, 28.844747052000059 ], [ -82.190381029999969, 28.84478370000005 ], [ -82.19070415799996, 28.844780399000058 ], [ -82.19116618299995, 28.844748450000054 ], [ -82.191531277999957, 28.844722325000077 ], [ -82.191880198999968, 28.844687689000068 ], [ -82.191993279999963, 28.844678993000059 ], [ -82.192074052999942, 28.844673188000058 ], [ -82.192164546999948, 28.844681594000065 ], [ -82.192251823999982, 28.844698539000035 ], [ -82.192352042999971, 28.844724003000067 ], [ -82.192840220999983, 28.844857023000031 ], [ -82.19343515199995, 28.845052482000028 ], [ -82.193826461999947, 28.84522262400003 ], [ -82.194324559999984, 28.845475119000071 ], [ -82.195437083999934, 28.845974244000047 ], [ -82.195711984999946, 28.846099028000026 ], [ -82.195925447999969, 28.846201142000041 ], [ -82.196106587999964, 28.846297610000079 ], [ -82.196274810999967, 28.846399788000042 ], [ -82.196436594999966, 28.84651335500007 ], [ -82.196814146999941, 28.846771922000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.197025059999987, 28.843499830000042 ], [ -82.196978396999953, 28.844227974000034 ], [ -82.196928185, 28.845018977000052 ], [ -82.196846365999988, 28.84618557500005 ], [ -82.196814146999941, 28.846771922000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177986987999986, 28.832324971000048 ], [ -82.17875649399997, 28.832336294000072 ], [ -82.180070970999964, 28.832330742000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.207191718999979, 28.847056035000037 ], [ -82.207167359999971, 28.848961365000036 ], [ -82.207157440999936, 28.84987170900007 ], [ -82.207135654999945, 28.850662016000058 ], [ -82.207139189999964, 28.851310512000055 ], [ -82.207117718999939, 28.85230757100004 ], [ -82.207101246999969, 28.853461504000052 ], [ -82.207097898999962, 28.853823352000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.207759434999957, 28.853914093000071 ], [ -82.207923267999945, 28.854347606000033 ], [ -82.208625408999978, 28.856182532000048 ], [ -82.208643247999987, 28.856218601000023 ], [ -82.208712673999969, 28.856372505000024 ], [ -82.208772732999989, 28.856529521000027 ], [ -82.208823621999954, 28.856688955000038 ], [ -82.208864751999954, 28.856850468000061 ], [ -82.208896123999978, 28.857014058000061 ], [ -82.208917929999984, 28.857178350000027 ], [ -82.209027189999972, 28.857634871000073 ], [ -82.209071877999975, 28.857996043000071 ], [ -82.209123917999989, 28.858370104000073 ], [ -82.209164483999984, 28.858502282000075 ], [ -82.209574901999986, 28.859234318000063 ], [ -82.209881022, 28.859549413000025 ], [ -82.209983782999984, 28.85963633800003 ], [ -82.21006123799998, 28.85971040000004 ], [ -82.210141156999953, 28.859807295000053 ], [ -82.210225767999987, 28.859904181000047 ], [ -82.210310392999986, 28.860009326000068 ], [ -82.21038097099995, 28.860124813000027 ], [ -82.210432784999966, 28.860238265000078 ], [ -82.210593345999939, 28.860789165000028 ], [ -82.210686260999978, 28.861219812000058 ], [ -82.210694158999956, 28.861263460000032 ], [ -82.210720536999986, 28.86136895900006 ], [ -82.210756282999967, 28.861472381000056 ], [ -82.210801393999986, 28.861572694000074 ], [ -82.210855480999953, 28.861669898000059 ], [ -82.210918346999961, 28.861762620000036 ], [ -82.211558415999946, 28.862441955000065 ], [ -82.212070435999976, 28.863014158000055 ], [ -82.212126821999959, 28.863067740000076 ], [ -82.212209060999953, 28.863150180000048 ], [ -82.212310101999947, 28.863253232000034 ], [ -82.212404058999937, 28.863331525000035 ], [ -82.212446333999935, 28.863364486000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.212446333999935, 28.863364486000023 ], [ -82.212526139999966, 28.863403581000057 ], [ -82.212634135999963, 28.863467402000026 ], [ -82.212749171999974, 28.863533276000055 ], [ -82.213145946999987, 28.863770036000062 ], [ -82.214136742999983, 28.864373287000035 ], [ -82.214322247999974, 28.864496846000065 ], [ -82.214458472999979, 28.864603969000029 ], [ -82.214587669999958, 28.864713168000037 ], [ -82.214684, 28.864803842000072 ], [ -82.214809128999946, 28.864920959000074 ], [ -82.214927889999956, 28.865034904000026 ], [ -82.215050519999977, 28.865147984000032 ], [ -82.215149241999939, 28.865261359000044 ], [ -82.215245674999949, 28.865401573000042 ], [ -82.215325130999986, 28.865543751000075 ], [ -82.215452780999954, 28.865764548000072 ], [ -82.215523426999937, 28.865908930000046 ], [ -82.21556344399994, 28.865983180000057 ], [ -82.215607579999983, 28.866062061000036 ], [ -82.215671619999966, 28.86613163100003 ], [ -82.215730358999963, 28.866187271000058 ], [ -82.216092194999987, 28.866529355000068 ], [ -82.216240277999987, 28.866698384000074 ], [ -82.216317927999967, 28.866826242000059 ], [ -82.216981684999951, 28.868014174000052 ], [ -82.217360614999961, 28.868678245000069 ], [ -82.217421793999961, 28.868777229000045 ], [ -82.217511166999941, 28.86890300400006 ], [ -82.21761695899994, 28.869030815000031 ], [ -82.217722710999965, 28.869137984000076 ], [ -82.217868390999968, 28.869276053000078 ], [ -82.218335986999989, 28.869721170000048 ], [ -82.218749597999988, 28.870141603000036 ], [ -82.218878848999964, 28.870271439000078 ], [ -82.218982272999938, 28.870386869000072 ], [ -82.219076314999938, 28.870500248000042 ], [ -82.219156298999962, 28.870619844000032 ], [ -82.219231604999948, 28.870745640000052 ], [ -82.219295182999986, 28.870869390000053 ], [ -82.219354091999946, 28.871003469000073 ], [ -82.219406623999987, 28.871140755000056 ], [ -82.219448897999939, 28.871278542000027 ], [ -82.219538273999945, 28.87160592400005 ], [ -82.219571292999944, 28.871694632000072 ], [ -82.219644242999948, 28.871814239000059 ], [ -82.21971715799998, 28.871917332000066 ], [ -82.219799443999989, 28.872016281000072 ], [ -82.219893453999987, 28.87211314700005 ], [ -82.220003916999985, 28.872228563000078 ], [ -82.220086203999983, 28.872327511000037 ], [ -82.220145053999943, 28.872432692000075 ], [ -82.220164015999956, 28.87252761600007 ], [ -82.220232436999936, 28.872723605000033 ], [ -82.220286726999973, 28.872890719000054 ], [ -82.220343650999951, 28.873194067000043 ], [ -82.220372253999983, 28.873412829000074 ], [ -82.220415098999979, 28.873712073000036 ], [ -82.220466949999945, 28.873904031000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.212446333999935, 28.863364486000023 ], [ -82.211541008999973, 28.864431055000068 ], [ -82.211042649999968, 28.865021030000037 ], [ -82.210091746999979, 28.866139529000066 ], [ -82.209669762999965, 28.866634347000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203835457999958, 28.866482006000069 ], [ -82.206648186999985, 28.86648801900003 ], [ -82.206866490999971, 28.866484252000078 ], [ -82.20700878699995, 28.866485750000038 ], [ -82.207112084999949, 28.866480444000047 ], [ -82.207236799999976, 28.866463094000039 ], [ -82.207343960999935, 28.866440623000074 ], [ -82.20745111399998, 28.866413005000027 ], [ -82.207542671999988, 28.866385411000067 ], [ -82.208384188999958, 28.86611300900006 ], [ -82.208450440999968, 28.866102611000031 ], [ -82.208573225999942, 28.86609555800004 ], [ -82.208705785999939, 28.866102216000058 ], [ -82.20881107699995, 28.866119212000058 ], [ -82.208918362999952, 28.866158510000048 ], [ -82.20901981999998, 28.866208112000038 ], [ -82.209109596999951, 28.866264596000065 ], [ -82.209669762999965, 28.866634347000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203834024999935, 28.864749007000057 ], [ -82.203831399999956, 28.865401031000033 ], [ -82.203835457999958, 28.866482006000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203835457999958, 28.866482006000069 ], [ -82.203828253999973, 28.867784341000061 ], [ -82.203825431999974, 28.868836156000043 ], [ -82.203833509999981, 28.868980274000023 ], [ -82.203839507999987, 28.869057477000069 ], [ -82.203851354999983, 28.869134673000076 ], [ -82.20388864399996, 28.869265020000057 ], [ -82.20392001, 28.86935591200006 ], [ -82.203949403999957, 28.869434797000054 ], [ -82.203990558999976, 28.86954798000005 ], [ -82.20402977599997, 28.869666313000039 ], [ -82.204049514999951, 28.869791540000051 ], [ -82.204061724999974, 28.869910752000067 ], [ -82.204070559999934, 28.870034500000031 ], [ -82.204069630999982, 28.870158605000029 ], [ -82.20407030299998, 28.870455540000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.20407030299998, 28.870455540000023 ], [ -82.204992330999971, 28.870462720000035 ], [ -82.206542017999936, 28.870463786000073 ], [ -82.208083906999946, 28.870464846000061 ], [ -82.209766145999936, 28.870465671000034 ], [ -82.210432799999978, 28.870464632000051 ], [ -82.211499058999948, 28.870464679000065 ], [ -82.211754419999977, 28.870465995000075 ], [ -82.21197078299997, 28.870462223000061 ], [ -82.212196854999945, 28.870439561000069 ], [ -82.212383939999938, 28.870416960000057 ], [ -82.212520333999976, 28.870389292000027 ], [ -82.212654764999968, 28.870354763000023 ], [ -82.21278721799996, 28.870306511000024 ], [ -82.21293912799996, 28.870241069000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.209669762999965, 28.866634347000058 ], [ -82.210273853999979, 28.86703663000003 ], [ -82.211087756999973, 28.867568984000059 ], [ -82.211630358999969, 28.867921597000077 ], [ -82.211776765999957, 28.868027749000078 ], [ -82.211911486999952, 28.86813735100003 ], [ -82.212040372999979, 28.868253826000057 ], [ -82.212147793999975, 28.868358323000052 ], [ -82.212257208999972, 28.868485123000028 ], [ -82.212343196999939, 28.868593086000033 ], [ -82.212437014999978, 28.868718195000042 ], [ -82.212517201999958, 28.868850187000078 ], [ -82.212587647999953, 28.868983913000079 ], [ -82.212636601999975, 28.869093649000035 ], [ -82.212701271999947, 28.869261699000049 ], [ -82.212758148999967, 28.869433194000067 ], [ -82.212799407999967, 28.869592702000034 ], [ -82.212832560999971, 28.869761742000037 ], [ -82.212870242999941, 28.869916884000077 ], [ -82.21293912799996, 28.870241069000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.21293912799996, 28.870241069000031 ], [ -82.213026742999944, 28.870419165000044 ], [ -82.21311217899995, 28.870584053000073 ], [ -82.213189338999939, 28.870727806000048 ], [ -82.21327254299996, 28.870857532000059 ], [ -82.21337215799997, 28.870992338000065 ], [ -82.213484713999947, 28.871119521000026 ], [ -82.213601575999974, 28.871239094000032 ], [ -82.213731393999979, 28.871358646000033 ], [ -82.213854694999952, 28.871459199000071 ], [ -82.213975808999976, 28.87154644900005 ], [ -82.214075292999951, 28.871616624000069 ], [ -82.214200729999959, 28.871705769000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.20552685399997, 28.854268580000053 ], [ -82.205738348999944, 28.854234111000039 ], [ -82.206259684999964, 28.854147991000048 ], [ -82.206933462999984, 28.854040487000077 ], [ -82.207759434999957, 28.853914093000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.20552685399997, 28.854268580000053 ], [ -82.205808490999971, 28.855552339000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.196814146999941, 28.846771922000073 ], [ -82.197656344999984, 28.847273126000061 ], [ -82.197755494999967, 28.847350462000065 ], [ -82.197860186999947, 28.847449583000071 ], [ -82.197945620999974, 28.847543889000065 ], [ -82.197998004999988, 28.847614030000045 ], [ -82.198044941999967, 28.847710813000049 ], [ -82.198075338999956, 28.847788251000054 ], [ -82.19810580099994, 28.847899587000029 ], [ -82.198144716999934, 28.84811744700005 ], [ -82.19820581099998, 28.848429706000047 ], [ -82.198368951999953, 28.848894358000052 ], [ -82.198584672999971, 28.849530845000061 ], [ -82.198734112999944, 28.850019729000053 ], [ -82.198850541999946, 28.85067483000006 ], [ -82.198884091999957, 28.85079190600004 ], [ -82.198925519999989, 28.850883855000063 ], [ -82.198953104999987, 28.850927398000067 ], [ -82.19898619099996, 28.850970933000042 ], [ -82.199030267999944, 28.851009608000027 ], [ -82.19907707699997, 28.851038595000034 ], [ -82.199132127999974, 28.851062727000055 ], [ -82.199184417999959, 28.851082020000035 ], [ -82.199445813999944, 28.851147009000044 ], [ -82.200015357999973, 28.851276916000074 ], [ -82.200210720999962, 28.851327474000072 ], [ -82.200318048999975, 28.851363634000052 ], [ -82.200406125999962, 28.851399822000076 ], [ -82.200538284999936, 28.85147710800004 ], [ -82.200648437999973, 28.85155200500003 ], [ -82.200746593999952, 28.851619663000065 ], [ -82.200954490999948, 28.851770343000055 ], [ -82.201175893999959, 28.851903123000056 ], [ -82.201596098999971, 28.852148849000059 ], [ -82.201686557999949, 28.852216317000057 ], [ -82.20176644999998, 28.852286416000027 ], [ -82.201837974999989, 28.852365039000063 ], [ -82.201901515999964, 28.852443598000036 ], [ -82.20197045499998, 28.852537926000025 ], [ -82.202033878999941, 28.852624998000067 ], [ -82.202166185999943, 28.852777343000071 ], [ -82.20231972299996, 28.852926559000025 ], [ -82.20250793699995, 28.853147289000049 ], [ -82.202585149999948, 28.853253711000036 ], [ -82.20266584899997, 28.853371064000044 ], [ -82.202740576999986, 28.85350406200007 ], [ -82.202794997999945, 28.853639077000025 ], [ -82.202847147999989, 28.853766148000034 ], [ -82.202951458999962, 28.85402625100005 ], [ -82.203130598999962, 28.854471007000029 ], [ -82.203163232999941, 28.854570791000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203214504999949, 28.854754520000029 ], [ -82.203397348999943, 28.854709012000058 ], [ -82.203760486999954, 28.854613100000051 ], [ -82.204082765999942, 28.854539602000045 ], [ -82.204418293999936, 28.854462109000053 ], [ -82.204767954999966, 28.854399493000074 ], [ -82.205106318999981, 28.85432944400003 ], [ -82.20552685399997, 28.854268580000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.146906140999988, 28.875350285000025 ], [ -82.146915689999958, 28.875494264000054 ], [ -82.146914821999985, 28.875576556000055 ], [ -82.146907959999965, 28.875653890000024 ], [ -82.146898261999979, 28.875699315000077 ], [ -82.146884391999947, 28.875752107000039 ], [ -82.146862153999962, 28.875804909000067 ], [ -82.146543604999977, 28.876361261000056 ], [ -82.146289139999965, 28.876874587000032 ], [ -82.146254387999988, 28.876953177000075 ], [ -82.146212704999982, 28.877061231000027 ], [ -82.146168265999961, 28.877192610000066 ], [ -82.146139111999958, 28.877285924000034 ], [ -82.14609891899994, 28.877462711000078 ], [ -82.146065648, 28.877602669000055 ], [ -82.146047682999949, 28.877719290000073 ], [ -82.146039451999968, 28.877816263000057 ], [ -82.146036812999967, 28.87792304900006 ], [ -82.146036919999972, 28.877999146000036 ], [ -82.146041221999951, 28.878085058000067 ], [ -82.146048298999972, 28.878159921000076 ], [ -82.146058151999966, 28.878224962000047 ], [ -82.146070815999963, 28.87830595500003 ], [ -82.146087666999961, 28.87838940000006 ], [ -82.14610308999994, 28.878449525000065 ], [ -82.146132511999951, 28.878547684000068 ], [ -82.146177307999949, 28.878671602000054 ], [ -82.146205286999987, 28.878735396000025 ], [ -82.146240248999959, 28.878806546000078 ], [ -82.146280807999972, 28.878891192000026 ], [ -82.146318554999937, 28.878958657000055 ], [ -82.146359083999982, 28.87902243700006 ], [ -82.146389825999961, 28.879067817000077 ], [ -82.146708358999945, 28.879486010000051 ], [ -82.147011487999976, 28.879856350000068 ], [ -82.147060373999977, 28.879912756000067 ], [ -82.147109270999977, 28.879976527000053 ], [ -82.147149797999987, 28.880037852000044 ], [ -82.147187536, 28.880097953000075 ], [ -82.147232259999953, 28.880169093000063 ], [ -82.147253233999947, 28.880209574000048 ], [ -82.147285400999976, 28.880274589000066 ], [ -82.147330193999949, 28.880394825000053 ], [ -82.147370810999973, 28.880519974000038 ], [ -82.147390466, 28.880613234000066 ], [ -82.147407357999953, 28.880724907000058 ], [ -82.147414451999964, 28.880810817000054 ], [ -82.147415987999977, 28.88091146000005 ], [ -82.14741053299997, 28.880997384000068 ], [ -82.14740506399994, 28.881075942000052 ], [ -82.147394012999939, 28.881150825000077 ], [ -82.147377397999946, 28.881234305000078 ], [ -82.14734408399994, 28.881344807000062 ], [ -82.147320472, 28.881412339000065 ], [ -82.147295462999978, 28.881477418000031 ], [ -82.147256533999951, 28.881560922000062 ], [ -82.147206450999988, 28.881645666000054 ], [ -82.147145058999968, 28.881746073000045 ], [ -82.147086770999977, 28.881822541000076 ], [ -82.147011066999937, 28.881910382000058 ], [ -82.146932738999965, 28.881991781000067 ], [ -82.146796259999974, 28.882115498000076 ], [ -82.146687268999983, 28.882217581000077 ], [ -82.146608958999934, 28.882311255000047 ], [ -82.146563728999979, 28.882377276000057 ], [ -82.146522000999937, 28.882454032000055 ], [ -82.146499435999942, 28.882523097000046 ], [ -82.146489059999965, 28.882582944000035 ], [ -82.146480426999972, 28.882641254000077 ], [ -82.146478761999958, 28.882698022000056 ], [ -82.146482339999977, 28.882762456000023 ], [ -82.146498157999986, 28.882854493000025 ], [ -82.146519167999941, 28.882920442000056 ], [ -82.146608336999975, 28.883110590000058 ], [ -82.146725434999951, 28.883326789000023 ], [ -82.147163984999963, 28.884042798000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147163984999963, 28.884042798000053 ], [ -82.147539653999956, 28.884665286000029 ], [ -82.147841988999971, 28.885201935000055 ], [ -82.148133874999985, 28.885743199000046 ], [ -82.148357637999936, 28.886186346000045 ], [ -82.148640901999954, 28.886790521000023 ], [ -82.148815768999953, 28.887170817000026 ], [ -82.148894466999934, 28.88734716700003 ], [ -82.148985431999961, 28.88756799600003 ], [ -82.149055424999972, 28.887752026000044 ], [ -82.149085242999945, 28.887879334000047 ], [ -82.149102793999987, 28.887962163000054 ], [ -82.149118644999987, 28.888075679000053 ], [ -82.149129240999969, 28.888170789000071 ], [ -82.149139887999979, 28.888302721000059 ], [ -82.149138274999984, 28.888393243000053 ], [ -82.14912798499995, 28.888511390000076 ], [ -82.149115913999935, 28.888604992000069 ], [ -82.149095174999957, 28.88873082300006 ], [ -82.149065709999945, 28.888850524000077 ], [ -82.149025774999984, 28.888962568000068 ], [ -82.148971920999941, 28.889094571000044 ], [ -82.148904627999968, 28.889247650000073 ], [ -82.148834654999973, 28.889412308000033 ], [ -82.148765198999968, 28.889605699000072 ], [ -82.148730489999934, 28.889716202000045 ], [ -82.148706234999963, 28.889822090000052 ], [ -82.148681984999939, 28.889931047000061 ], [ -82.148666408999986, 28.890010845000063 ], [ -82.148654318999945, 28.890090637000071 ], [ -82.148642233999965, 28.89017350000006 ], [ -82.148633633999964, 28.890254823000078 ], [ -82.148628515999974, 28.890334609000035 ], [ -82.148625128999981, 28.890403652000032 ], [ -82.148625460999938, 28.890636855000025 ], [ -82.148636134999947, 28.890787199000044 ], [ -82.148655509999969, 28.890926791000027 ], [ -82.148680123999952, 28.891072517000055 ], [ -82.148706437999977, 28.891187555000045 ], [ -82.148736244999952, 28.891307192000056 ], [ -82.148760773999982, 28.891393082000036 ], [ -82.148787045999939, 28.891478970000037 ], [ -82.148899781999944, 28.891838811000071 ], [ -82.148949831999971, 28.891939059000038 ], [ -82.149005738999961, 28.892023381000058 ], [ -82.149061642999982, 28.892104632000041 ], [ -82.149124699999959, 28.892205064000052 ], [ -82.14919618, 28.892316207000079 ], [ -82.149259749999942, 28.892424300000073 ], [ -82.149303010999972, 28.892503649000048 ], [ -82.149338424999939, 28.89258185500006 ], [ -82.149388262999935, 28.892688812000074 ], [ -82.149423688999946, 28.89277392300005 ], [ -82.149457809999944, 28.892862487000059 ], [ -82.149500483999986, 28.892987864000077 ], [ -82.149525457999971, 28.893079889000035 ], [ -82.149553079999976, 28.893193775000043 ], [ -82.149568869999939, 28.893263949000072 ], [ -82.149584680999965, 28.893347930000061 ], [ -82.149597861999951, 28.893421559000046 ], [ -82.149607105999962, 28.893484835000038 ], [ -82.149616390999938, 28.893578030000072 ], [ -82.149621758999956, 28.893673529000068 ], [ -82.149628449999966, 28.89378053400003 ], [ -82.149629883999978, 28.893869134000056 ], [ -82.149629987999958, 28.893941627000061 ], [ -82.149626158999979, 28.894007219000059 ], [ -82.149621040999989, 28.894086621000042 ], [ -82.14961201899996, 28.894175232000066 ], [ -82.149602973999947, 28.894251188000055 ], [ -82.149591311999984, 28.894324843000049 ], [ -82.149579642999981, 28.894393897000043 ], [ -82.149564079999948, 28.894482516000039 ], [ -82.149543272999949, 28.894561936000059 ], [ -82.149525063999988, 28.894629845000054 ], [ -82.149499040999956, 28.894718476000037 ], [ -82.149474304999956, 28.894793297000035 ], [ -82.149445645999947, 28.894868123000037 ], [ -82.149411786999963, 28.894963666000024 ], [ -82.14938146999998, 28.895032623000077 ], [ -82.149347391999981, 28.895110137000074 ], [ -82.149307505999957, 28.895188162000068 ], [ -82.149251437999965, 28.895297538000079 ], [ -82.149182308999968, 28.895417285000065 ], [ -82.149148392999962, 28.895473706000075 ], [ -82.149114472999941, 28.895526674000052 ], [ -82.149074021, 28.895584252000049 ], [ -82.149033568999982, 28.895640680000042 ], [ -82.148985277999941, 28.895702869000047 ], [ -82.148935682999934, 28.895767362000072 ], [ -82.148878251999975, 28.895838767000043 ], [ -82.148695477999979, 28.896036885000058 ], [ -82.148650629999963, 28.896077843000057 ], [ -82.148602769999968, 28.896126739000067 ], [ -82.148546615999976, 28.896176281000066 ], [ -82.148491766999939, 28.896224669000048 ], [ -82.14842411099994, 28.896283514000061 ], [ -82.148375779999981, 28.896330844000033 ], [ -82.148344207999969, 28.896361761000037 ], [ -82.148302434999948, 28.896408985000051 ], [ -82.148259353999947, 28.896458512000038 ], [ -82.148218893999967, 28.896510336000063 ], [ -82.148181051999984, 28.896564459000047 ], [ -82.148140613999942, 28.896632394000051 ], [ -82.148104097999976, 28.896699173000059 ], [ -82.148067601999969, 28.896780911000064 ], [ -82.148045452999952, 28.896837317000063 ], [ -82.148031132999961, 28.896881059000066 ], [ -82.148014208999939, 28.896934009000063 ], [ -82.148002510999959, 28.896983500000033 ], [ -82.147990823999976, 28.897041046000027 ], [ -82.14798435199998, 28.897087081000052 ], [ -82.147979210999949, 28.897149222000053 ], [ -82.147976702999983, 28.89722517000007 ], [ -82.147976795999966, 28.897290759000043 ], [ -82.147983437999983, 28.897364393000032 ], [ -82.147992689999967, 28.897434575000034 ], [ -82.148003249999988, 28.897504754000067 ], [ -82.148020371999962, 28.897591035000062 ], [ -82.14803879699997, 28.897676165000064 ], [ -82.148053285999936, 28.89774979300006 ], [ -82.148069086999953, 28.897826869000028 ], [ -82.148088831999985, 28.897920053000064 ], [ -82.148190406999959, 28.898426549000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147163984999963, 28.884042798000053 ], [ -82.147296369999935, 28.88397361400007 ], [ -82.147406052999941, 28.883927330000063 ], [ -82.147477549999962, 28.88389363400006 ], [ -82.147548990999951, 28.883872077000035 ], [ -82.147616958999947, 28.88385973000004 ], [ -82.147686674999989, 28.883851981000078 ], [ -82.147780804999968, 28.883850343000063 ], [ -82.147960642999976, 28.883855839000034 ], [ -82.148349032999988, 28.883874974000037 ], [ -82.148537254999951, 28.88387773200003 ], [ -82.148650414999963, 28.883877608000034 ], [ -82.148724496999989, 28.883869227000048 ], [ -82.148799918999941, 28.883856101000049 ], [ -82.148891711999966, 28.883831404000034 ], [ -82.14896951999998, 28.883804780000048 ], [ -82.149030176999986, 28.883782336000024 ], [ -82.149097492999942, 28.883753805000026 ], [ -82.149544400999957, 28.883512620000033 ], [ -82.149787397999944, 28.883367973000077 ], [ -82.149850043999948, 28.883328892000065 ], [ -82.14990914699996, 28.883282198000074 ], [ -82.149983154999973, 28.883222832000058 ], [ -82.150047640999958, 28.883163116000048 ], [ -82.150114988999974, 28.883093447000078 ], [ -82.150159368999937, 28.88304123000006 ], [ -82.150215844999934, 28.882968841000036 ], [ -82.150303227999984, 28.882843064000042 ], [ -82.150404016999971, 28.88267221600006 ], [ -82.150570676999962, 28.882405256000027 ], [ -82.150702378999938, 28.882185761000073 ], [ -82.150854859999981, 28.881949847000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.130152504999955, 28.877847835000068 ], [ -82.130675984999982, 28.878548266000053 ], [ -82.131051462999949, 28.879061663000073 ], [ -82.131392527999935, 28.879512134000038 ], [ -82.131639390999965, 28.879825697000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137746945999936, 28.873489863000032 ], [ -82.138762441999972, 28.874861704000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134972489999939, 28.875068558000066 ], [ -82.135431049999966, 28.874798331000079 ], [ -82.137512114999936, 28.873623782000038 ], [ -82.137746945999936, 28.873489863000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135521711999957, 28.878051313000071 ], [ -82.136867528999971, 28.878669777000027 ], [ -82.137120196999945, 28.87877381800007 ], [ -82.137283447999948, 28.878830074000064 ], [ -82.137460299999987, 28.87888973500003 ], [ -82.137617707999937, 28.878935740000031 ], [ -82.13781591999998, 28.878988540000023 ], [ -82.13797330899996, 28.87902086500003 ], [ -82.138111262999985, 28.879044661000023 ], [ -82.13825116299995, 28.879070163000051 ], [ -82.138443506999977, 28.879093903000069 ], [ -82.138626133999935, 28.87911252400005 ], [ -82.138843712999972, 28.87912084900006 ], [ -82.139078758999972, 28.879117187000077 ], [ -82.139224445999957, 28.87911361700003 ], [ -82.139327394999953, 28.879108381000037 ], [ -82.139436170999943, 28.879103139000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139436170999943, 28.879103139000051 ], [ -82.139564360999941, 28.879087617000039 ], [ -82.139706141999966, 28.879068663000055 ], [ -82.139857629999938, 28.879044570000076 ], [ -82.140089473999979, 28.879003879000038 ], [ -82.140319450999982, 28.878946228000075 ], [ -82.140546679999943, 28.878880330000072 ], [ -82.140770384999939, 28.87880584100003 ], [ -82.140902726999968, 28.878757574000076 ], [ -82.141523470999971, 28.878526712000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131984141999965, 28.895438289000026 ], [ -82.132369460999939, 28.895902439000054 ], [ -82.132427575999941, 28.895971124000027 ], [ -82.132470056999978, 28.896030005000057 ], [ -82.132503628999984, 28.896104607000041 ], [ -82.132532529999935, 28.896170817000041 ], [ -82.13255737999998, 28.896251862000042 ], [ -82.132571046999942, 28.896339319000049 ], [ -82.132573402999981, 28.89656610000003 ], [ -82.132576864999976, 28.897534390000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.132576864999976, 28.897534390000033 ], [ -82.132577436999952, 28.897984165000025 ], [ -82.132577969999943, 28.898404480000067 ], [ -82.132569277999949, 28.898589112000025 ], [ -82.132529312999964, 28.898754135000047 ], [ -82.132473716999982, 28.898913280000045 ], [ -82.132435858999941, 28.898980096000059 ], [ -82.132373479999956, 28.899070506000044 ], [ -82.132302164999942, 28.899155031000078 ], [ -82.132215221999957, 28.899235645000033 ], [ -82.132117109999967, 28.899308412000039 ], [ -82.132030137999948, 28.899367419000043 ], [ -82.131900773999973, 28.89943629000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131900773999973, 28.89943629000004 ], [ -82.132059555999945, 28.899685573000056 ], [ -82.132222802999934, 28.899934851000069 ], [ -82.132318963999978, 28.90008206400006 ], [ -82.132421800999964, 28.90021355600004 ], [ -82.132493315999966, 28.900286157000039 ], [ -82.132589398999983, 28.900372482000023 ], [ -82.132672061999983, 28.900435252000079 ], [ -82.132785985999988, 28.900509775000046 ], [ -82.132933390999938, 28.900584264000031 ], [ -82.133089710999968, 28.900648925000041 ], [ -82.133313003999945, 28.900725303000058 ], [ -82.13357244599996, 28.900815084000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131900773999973, 28.89943629000004 ], [ -82.131528239999966, 28.899595744000067 ], [ -82.131271696999988, 28.899698127000079 ], [ -82.130941521999944, 28.899820222000073 ], [ -82.130653736999989, 28.899928526000053 ], [ -82.130459634999966, 28.899991564000061 ], [ -82.130261046999976, 28.900034967000067 ], [ -82.130064656999934, 28.900052833000075 ], [ -82.129714247999971, 28.900059063000072 ], [ -82.129412925999986, 28.900051497000049 ], [ -82.12895760899994, 28.900051934000032 ], [ -82.128149646999987, 28.900054668000053 ], [ -82.127515767999967, 28.900051341000051 ], [ -82.126571223999974, 28.900051024000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123898210999982, 28.892152328000066 ], [ -82.124048614999936, 28.891756311000051 ], [ -82.124197829999957, 28.89149298600006 ], [ -82.124298074999956, 28.891337731000078 ], [ -82.124434016999942, 28.891174585000044 ], [ -82.124603417999936, 28.890995697000051 ], [ -82.124748314999977, 28.890856113000041 ], [ -82.125031455999988, 28.890612303000069 ], [ -82.125370320999934, 28.890311483000062 ], [ -82.125372555999945, 28.890313444000071 ], [ -82.125878590999946, 28.889841592000039 ], [ -82.126299938999978, 28.889469984000073 ], [ -82.126464926999972, 28.889338237000061 ], [ -82.126594264999937, 28.889253659000076 ], [ -82.12673029299998, 28.889167110000074 ], [ -82.126913177999938, 28.889070699000058 ], [ -82.127071544999978, 28.889001806000067 ], [ -82.127234378999958, 28.888934874000029 ], [ -82.127446886999962, 28.888853228000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119940917999941, 28.879659412000024 ], [ -82.119939034999959, 28.880067008000026 ], [ -82.119939340999963, 28.880333909000058 ], [ -82.119939553999984, 28.883864791000065 ], [ -82.119943510999974, 28.884870849000038 ], [ -82.119948996999938, 28.887205993000066 ], [ -82.119947299999978, 28.88816767000003 ], [ -82.119955088999973, 28.890068824000025 ], [ -82.119962982999937, 28.890632291000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119968410999945, 28.894523821000064 ], [ -82.119982525999944, 28.896316682000077 ], [ -82.119993786999942, 28.898202200000071 ], [ -82.120005117999938, 28.900149056000032 ], [ -82.120009960999937, 28.901725213000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120009960999937, 28.901725213000077 ], [ -82.120010063999985, 28.903394184000035 ], [ -82.120011811999973, 28.904913270000065 ], [ -82.120005086999981, 28.905391191000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140658245999987, 28.874924872000065 ], [ -82.140826973999935, 28.874724651000065 ], [ -82.14095449499996, 28.874612139000078 ], [ -82.141312769999956, 28.874366543000065 ], [ -82.141747481999971, 28.874051677000068 ], [ -82.141839310999956, 28.873984386000075 ], [ -82.141932696999959, 28.873917093000045 ], [ -82.142035415999942, 28.873840190000067 ], [ -82.142119478999973, 28.873790734000067 ], [ -82.142200439999954, 28.873752252000031 ], [ -82.142265843999951, 28.873730241000032 ], [ -82.142342160999988, 28.873713705000057 ], [ -82.142421600999967, 28.873702650000041 ], [ -82.142518197999948, 28.873705291000078 ], [ -82.142577406999976, 28.873710714000026 ], [ -82.14264753599997, 28.873725723000064 ], [ -82.142702089999943, 28.873744865000049 ], [ -82.142772244999946, 28.873779074000026 ], [ -82.142840844999967, 28.873816026000043 ], [ -82.142906330999949, 28.873854354000059 ], [ -82.143199479999964, 28.874039173000028 ], [ -82.143425568999987, 28.874174693000043 ], [ -82.143620465999959, 28.874285563000058 ], [ -82.143771689999937, 28.874359453000068 ], [ -82.143921341999942, 28.874423745000058 ], [ -82.144086569999956, 28.874483908000059 ], [ -82.144499606999943, 28.874612370000079 ], [ -82.144954719999987, 28.874747643000035 ], [ -82.145132401999945, 28.874800933000074 ], [ -82.145478425999954, 28.874913009000068 ], [ -82.145790155999975, 28.875010036000049 ], [ -82.145984990999978, 28.87507290700006 ], [ -82.146253083999966, 28.875160381000057 ], [ -82.146533642999941, 28.875247841000032 ], [ -82.146814196999969, 28.875333929000078 ], [ -82.146871860999966, 28.875347580000039 ], [ -82.146906140999988, 28.875350285000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107418091999989, 28.88096119000005 ], [ -82.107440746999941, 28.882375382000077 ], [ -82.107428070999958, 28.882933223000066 ], [ -82.107417356999974, 28.883251993000044 ], [ -82.107419743999969, 28.88342497800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062302194999972, 28.650147921000041 ], [ -82.060974132999945, 28.650153060000036 ], [ -82.060216715999957, 28.650165492000042 ], [ -82.058968708999942, 28.650170723000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062302194999972, 28.650147921000041 ], [ -82.062299717999963, 28.649820907000048 ], [ -82.062308784999971, 28.649697453000044 ], [ -82.062331571999948, 28.649599187000035 ], [ -82.062363490999985, 28.649482274000036 ], [ -82.062394271999949, 28.64937543800005 ], [ -82.062422762999972, 28.649256510000043 ], [ -82.062440976999937, 28.649147666000033 ], [ -82.062454604999971, 28.649010605000058 ], [ -82.062453931999983, 28.648837272000037 ], [ -82.062443569999971, 28.648702742000069 ], [ -82.062426924999954, 28.648567207000042 ], [ -82.062385121999966, 28.648389862000045 ], [ -82.062330186999986, 28.648220586000036 ], [ -82.062259833999974, 28.648058874000071 ], [ -82.062184354999943, 28.647922359000063 ], [ -82.062115742999936, 28.647808011000052 ], [ -82.062042570999949, 28.647708781000063 ], [ -82.061947687999975, 28.647596461000035 ], [ -82.06183966499998, 28.647483137000052 ], [ -82.061695078999946, 28.647358242000053 ], [ -82.061565346999942, 28.647238380000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067132811999954, 28.650161361000073 ], [ -82.065331243999935, 28.650162230000035 ], [ -82.064248888999941, 28.650163640000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06258508999997, 28.653728975000035 ], [ -82.062584056999981, 28.653299186000027 ], [ -82.062583432999986, 28.652248950000057 ], [ -82.062582836, 28.651242380000042 ], [ -82.062582599999985, 28.650844807000055 ], [ -82.062581516999956, 28.650149304000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062581516999956, 28.650149304000024 ], [ -82.062302194999972, 28.650147921000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064248888999941, 28.650163640000073 ], [ -82.063616555999943, 28.650157892000038 ], [ -82.063203564999981, 28.650149015000068 ], [ -82.062581516999956, 28.650149304000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064248888999941, 28.650163640000073 ], [ -82.064250113999947, 28.649362478000057 ], [ -82.064246184999945, 28.648541667000075 ], [ -82.064250694999942, 28.647504690000062 ], [ -82.064248384999985, 28.646526669000025 ], [ -82.064222533999953, 28.646284822000041 ], [ -82.064189674999966, 28.645789024000067 ], [ -82.064187775999983, 28.645483676000026 ], [ -82.064197786999955, 28.64503925300005 ], [ -82.064190662999977, 28.644597862000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059463306999987, 28.645893215000058 ], [ -82.059456578999971, 28.644931070000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06136044699997, 28.644811556000036 ], [ -82.061084135999977, 28.644809791000057 ], [ -82.060935072999939, 28.64483517900004 ], [ -82.060820859999978, 28.644875540000044 ], [ -82.060688385999981, 28.644944126000041 ], [ -82.06059246999996, 28.645016727000041 ], [ -82.060501132999946, 28.645109482000066 ], [ -82.060441772, 28.645182318000025 ], [ -82.060396836999985, 28.645261699000059 ], [ -82.060362613999985, 28.645346742000072 ], [ -82.060327686999983, 28.645448163000026 ], [ -82.060277480999957, 28.645548961000031 ], [ -82.060227827999938, 28.645620785000062 ], [ -82.060193582999943, 28.645664259000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061382500999969, 28.645899917000065 ], [ -82.06114591499994, 28.645951672000024 ], [ -82.061013407999951, 28.645963823000045 ], [ -82.060908308999956, 28.645963871000049 ], [ -82.060787070999936, 28.645956872000056 ], [ -82.060652396999956, 28.645927707000055 ], [ -82.060528996999949, 28.645887453000057 ], [ -82.060391872999958, 28.645818987000041 ], [ -82.060268592999989, 28.645737917000076 ], [ -82.060193582999943, 28.645664259000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041374921999989, 28.887325076000025 ], [ -82.041372986999988, 28.887803873000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043396098999949, 28.887808847000031 ], [ -82.043371867999952, 28.887797632000058 ], [ -82.043196333999958, 28.887797689000024 ], [ -82.04241854299994, 28.887801677000027 ], [ -82.041372986999988, 28.887803873000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04540964499995, 28.887806314000045 ], [ -82.04400388199997, 28.887808650000068 ], [ -82.043396098999949, 28.887808847000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04540964499995, 28.887806314000045 ], [ -82.045417218999944, 28.888707793000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045417218999944, 28.888707793000037 ], [ -82.045421863999934, 28.889614884000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045421863999934, 28.889614884000025 ], [ -82.045438992999948, 28.889904774000058 ], [ -82.04543502699994, 28.890561249000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04543502699994, 28.890561249000029 ], [ -82.04541229299997, 28.892038788000036 ], [ -82.045423238999945, 28.89277521300005 ], [ -82.045437336999953, 28.894647840000061 ], [ -82.045437577999962, 28.895201913000051 ], [ -82.045424732999948, 28.896207201000038 ], [ -82.045417417999943, 28.897710450000034 ], [ -82.045420294999985, 28.898215427000025 ], [ -82.045433599999967, 28.898264518000076 ], [ -82.045454864999954, 28.898292565000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046913379999978, 28.898310768000044 ], [ -82.046512225999948, 28.898313245000054 ], [ -82.046233278999978, 28.898318016000076 ], [ -82.046101087999944, 28.898338611000042 ], [ -82.045566465999968, 28.898341622000032 ], [ -82.045494726999948, 28.898320606000027 ], [ -82.045454864999954, 28.898292565000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070366542999977, 28.938340968000034 ], [ -82.070396525999968, 28.938660993000042 ], [ -82.070393801999955, 28.93952510500003 ], [ -82.070374845999936, 28.940840192000053 ], [ -82.070369050999943, 28.942053440000052 ], [ -82.070363328999974, 28.943377247000058 ], [ -82.07036722099997, 28.944241355000031 ], [ -82.070353131, 28.945483625000065 ], [ -82.070354139999949, 28.945626534000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070354139999949, 28.945626534000041 ], [ -82.069796806999989, 28.945631409000043 ], [ -82.068758781999975, 28.945641115000058 ], [ -82.066730695, 28.945655894000026 ], [ -82.062043653999979, 28.945660429000043 ], [ -82.059934741999939, 28.945656341000074 ], [ -82.058485355999949, 28.945656979000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058485355999949, 28.945656979000034 ], [ -82.058485858999973, 28.946552141000041 ], [ -82.058480533999955, 28.948209478000024 ], [ -82.058480892999967, 28.948849207000023 ], [ -82.058481170999983, 28.949344481000026 ], [ -82.05847874799997, 28.949672372000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05847874799997, 28.949672372000066 ], [ -82.058487046999971, 28.950525341000059 ], [ -82.058477271999948, 28.951685571000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05847874799997, 28.949672372000066 ], [ -82.057060585999977, 28.94966839500006 ], [ -82.054730010999947, 28.949673949000044 ], [ -82.053648147999979, 28.949681263000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053645722999988, 28.927386719000026 ], [ -82.053642175999983, 28.928599229000042 ], [ -82.053640653999935, 28.929690672000049 ], [ -82.053649716999985, 28.931095783000046 ], [ -82.053648271999975, 28.932337641000061 ], [ -82.053648368999973, 28.932526579000069 ], [ -82.053651169999966, 28.933917018000045 ], [ -82.053652797999973, 28.934709531000067 ], [ -82.053652799999952, 28.934710528000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053665151999951, 28.916525485000079 ], [ -82.053665183999954, 28.916587853000067 ], [ -82.053667497999982, 28.917033601000071 ], [ -82.053655697999943, 28.918411209000055 ], [ -82.053652247999935, 28.91981082500007 ], [ -82.053651608999985, 28.919930007000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05668062899997, 28.916518607000057 ], [ -82.056381506999969, 28.916518733000032 ], [ -82.055234645999974, 28.916514471000028 ], [ -82.054962637999949, 28.916517399000043 ], [ -82.054961722999963, 28.916517409000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053682251999987, 28.909244907000073 ], [ -82.053680530999941, 28.909952971000052 ], [ -82.053679188, 28.911392944000056 ], [ -82.053671496999982, 28.912653151000029 ], [ -82.053672196999969, 28.914012412000034 ], [ -82.053674941999986, 28.915294627000037 ], [ -82.053665151999951, 28.916525485000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070227335999959, 28.90176100900004 ], [ -82.069060285999967, 28.901778265000075 ], [ -82.062904344999936, 28.901824597000029 ], [ -82.057675449999977, 28.90186097000003 ], [ -82.053665987999977, 28.90194576500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053665987999977, 28.90194576500005 ], [ -82.053664276999939, 28.90267239800005 ], [ -82.053664992999984, 28.904064679000044 ], [ -82.053671991999977, 28.905511987000068 ], [ -82.053670561999979, 28.906783201000053 ], [ -82.053675422999959, 28.908127784000044 ], [ -82.053682251999987, 28.909244907000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053706560999956, 28.89463721900006 ], [ -82.053696098999978, 28.895644941000057 ], [ -82.053682213999934, 28.897018884000033 ], [ -82.053678722999962, 28.898337794000042 ], [ -82.053676946999985, 28.898935797000036 ], [ -82.053671075999944, 28.899678717000029 ], [ -82.053667700999938, 28.901223251000033 ], [ -82.053665987999977, 28.90194576500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066195308999966, 28.887287833000073 ], [ -82.065940587999989, 28.887295189000042 ], [ -82.059439381999937, 28.887330476000045 ], [ -82.059215675999951, 28.887331707000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05374939099994, 28.869190562000028 ], [ -82.053736066999988, 28.869862656000066 ], [ -82.053722364999942, 28.870558471000038 ], [ -82.053707521999968, 28.871313073000067 ], [ -82.053717677999941, 28.872774044000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119857915999944, 28.949116227000047 ], [ -82.119858402999967, 28.949539197000036 ], [ -82.119868809999957, 28.951250861000062 ], [ -82.119868995, 28.951411639000071 ], [ -82.119877569999971, 28.951530360000049 ], [ -82.119888900999968, 28.951602082000079 ], [ -82.11990584299997, 28.951661431000048 ], [ -82.11993967899997, 28.951738080000041 ], [ -82.120238435999966, 28.95230672200006 ], [ -82.120486452999955, 28.952769047000061 ], [ -82.12133204099996, 28.954398332000039 ], [ -82.121664668999983, 28.955058460000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119850937999956, 28.938165971000046 ], [ -82.119851481999945, 28.938638413000035 ], [ -82.119837047999965, 28.940758232000064 ], [ -82.119830233999949, 28.94216814300006 ], [ -82.119837965999977, 28.943998540000052 ], [ -82.119845350999981, 28.945529640000075 ], [ -82.119852797999954, 28.947112683000057 ], [ -82.119856648999985, 28.948015514000076 ], [ -82.119857915999944, 28.949116227000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119850937999956, 28.938165971000046 ], [ -82.121852994999983, 28.938149333000069 ], [ -82.123905658999945, 28.938127671000075 ], [ -82.124816702999965, 28.938116935000039 ], [ -82.125890836999986, 28.938106040000037 ], [ -82.125958322999963, 28.938105977000077 ], [ -82.12600892599994, 28.938096036000047 ], [ -82.126051082999936, 28.938078682000025 ], [ -82.126087589999941, 28.938039073000027 ], [ -82.126112833999969, 28.937987104000058 ], [ -82.126112764999959, 28.937930214000062 ], [ -82.126118274999953, 28.937836214000072 ], [ -82.126111875999982, 28.937195579000047 ], [ -82.126111114999958, 28.936567306000029 ], [ -82.126111036999987, 28.936502995000069 ], [ -82.126127853999947, 28.936458455000036 ], [ -82.126169985999979, 28.936421313000039 ], [ -82.126231822999955, 28.936401467000053 ], [ -82.12629648799998, 28.936393986000041 ], [ -82.126400523999962, 28.93639141500006 ], [ -82.128115738999952, 28.936377425000046 ], [ -82.129099887999985, 28.936376485000039 ], [ -82.12925452199994, 28.936361496000075 ], [ -82.129400690999944, 28.936324252000077 ], [ -82.129544071999987, 28.936304327000073 ], [ -82.129738085999975, 28.93630166500003 ], [ -82.129993963999937, 28.936301419000074 ], [ -82.130334197999957, 28.936301090000029 ], [ -82.130710988999965, 28.936303199000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120005170999946, 28.912139270000068 ], [ -82.120005342999946, 28.912288733000025 ], [ -82.120002889999967, 28.913590456000065 ], [ -82.120002430999989, 28.914907819000064 ], [ -82.119998109999983, 28.916301654000051 ], [ -82.119987133999985, 28.917062883000028 ], [ -82.119972523999934, 28.918098710000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120005086999981, 28.905391191000035 ], [ -82.120009737999965, 28.907326319000049 ], [ -82.120003852999957, 28.908533912000053 ], [ -82.12000341199996, 28.908894527000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12000341199996, 28.908894527000029 ], [ -82.120006110999952, 28.909523661000037 ], [ -82.120007330999954, 28.910583806000034 ], [ -82.120008216999963, 28.911353716000065 ], [ -82.120005170999946, 28.912139270000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116386677999969, 28.912096906000045 ], [ -82.117069520999962, 28.912106497000025 ], [ -82.11863238899997, 28.912124844000061 ], [ -82.120005170999946, 28.912139270000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113715117999959, 28.91808762900007 ], [ -82.115091691999964, 28.918098561000079 ], [ -82.116310794999947, 28.918079981000062 ], [ -82.117455876999941, 28.918095280000045 ], [ -82.118427825999959, 28.918096602000048 ], [ -82.119972523999934, 28.918098710000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119972523999934, 28.918098710000038 ], [ -82.119964965999941, 28.918397643000048 ], [ -82.119940937999957, 28.919831468000041 ], [ -82.119932557999959, 28.920891730000051 ], [ -82.119913893999978, 28.921838924000042 ], [ -82.119895476999943, 28.923001190000036 ], [ -82.119885976999967, 28.923569832000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119888286999981, 28.931775628000025 ], [ -82.119886796999936, 28.932438545000025 ], [ -82.119876247999969, 28.934002700000065 ], [ -82.11986619299995, 28.935994822000055 ], [ -82.119859671999961, 28.93676603800003 ], [ -82.119850937999956, 28.938165971000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119475865999959, 28.931063886000061 ], [ -82.119544287999986, 28.931128551000029 ], [ -82.119623408999985, 28.931213205000063 ], [ -82.11970006599995, 28.931304379000039 ], [ -82.119752016999939, 28.931384713000057 ], [ -82.11980645999995, 28.931484596000075 ], [ -82.119846069999937, 28.931571458000064 ], [ -82.119870879999951, 28.931671367000035 ], [ -82.119888286999981, 28.931775628000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119475865999959, 28.931063886000061 ], [ -82.119608553999967, 28.930934922000063 ], [ -82.119696501999954, 28.930862696000077 ], [ -82.119807678999962, 28.930820341000071 ], [ -82.119892329999971, 28.930809221000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119885976999967, 28.923569832000055 ], [ -82.119884501999934, 28.924005187000034 ], [ -82.11989626999997, 28.925836207000032 ], [ -82.119902994999961, 28.927389487000028 ], [ -82.119911839999986, 28.92863862400003 ], [ -82.119902587999945, 28.929181739000057 ], [ -82.119892914, 28.929357715000037 ], [ -82.119873341999948, 28.929518490000078 ], [ -82.119838927999979, 28.929655385000046 ], [ -82.119777365999937, 28.929805337000062 ], [ -82.119713314999956, 28.929940083000076 ], [ -82.119639371999938, 28.930061805000037 ], [ -82.119553070999984, 28.930174849000025 ], [ -82.119469225999978, 28.930274854000061 ], [ -82.119382887999961, 28.930355311000028 ], [ -82.119291600999986, 28.930427081000062 ], [ -82.119175631999951, 28.930509736000033 ], [ -82.119081857999959, 28.930566303000035 ], [ -82.119022626999936, 28.930596769000033 ], [ -82.118965861999982, 28.930625061000057 ], [ -82.11888688199997, 28.930662062000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11888688199997, 28.930662062000067 ], [ -82.118919346999974, 28.930710502000068 ], [ -82.118973617999984, 28.930772987000068 ], [ -82.119134600999985, 28.930878897000071 ], [ -82.119328533999976, 28.930969744000038 ], [ -82.119475865999959, 28.931063886000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093168429999935, 28.880557789000079 ], [ -82.093104163999953, 28.880299080000043 ], [ -82.093016458999955, 28.879871304000062 ], [ -82.092949162999957, 28.879479379000031 ], [ -82.09288763099994, 28.879020841000056 ], [ -82.092858321999984, 28.878792852000061 ], [ -82.092825988999948, 28.878439332000028 ], [ -82.092755150999949, 28.877332639000031 ], [ -82.092693144999942, 28.876338664000059 ], [ -82.092636925999955, 28.875306255000055 ], [ -82.092538015999935, 28.873635372000024 ], [ -82.092478835999941, 28.872608029000048 ], [ -82.092376656999988, 28.870906681000065 ], [ -82.092327662999935, 28.870148166000035 ], [ -82.092213152999989, 28.868156166000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093168429999935, 28.880557789000079 ], [ -82.093139033999989, 28.880235009000046 ], [ -82.093042467999965, 28.879658649000078 ], [ -82.093018954999934, 28.879405036000037 ], [ -82.093002961999957, 28.879104941000037 ], [ -82.092953958999942, 28.87832652000003 ], [ -82.092947851999952, 28.878006287000062 ], [ -82.092944487999944, 28.877496471000029 ], [ -82.092946905999952, 28.876943098000027 ], [ -82.092952243999946, 28.876399971000069 ], [ -82.092981914999939, 28.875852739000038 ], [ -82.093108112999971, 28.874240129000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093108112999971, 28.874240129000043 ], [ -82.093142581999984, 28.874160483000026 ], [ -82.093163696999966, 28.87411495200007 ], [ -82.093194217999951, 28.874073550000048 ], [ -82.093215351999959, 28.874050776000047 ], [ -82.093262340999956, 28.87402591700004 ], [ -82.093323442999974, 28.874009321000074 ], [ -82.093431548999945, 28.873986487000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09157096499996, 28.873751638000044 ], [ -82.091624035999985, 28.873961091000069 ], [ -82.091697784999951, 28.874294668000061 ], [ -82.091955884999948, 28.875349762000042 ], [ -82.092096118999962, 28.875946589000023 ], [ -82.092142903999957, 28.876189938000039 ], [ -82.092245268999989, 28.876748363000047 ], [ -82.092300880999971, 28.877099305000058 ], [ -82.092362360999971, 28.877501481000024 ], [ -82.092409268999972, 28.877883173000043 ], [ -82.092475508999939, 28.878633464000075 ], [ -82.09257944899997, 28.879417636000028 ], [ -82.092731423999965, 28.880114369000069 ], [ -82.092833517999964, 28.880360240000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091931484999975, 28.868202570000051 ], [ -82.092021088999957, 28.869542245000048 ], [ -82.09204602899996, 28.869970214000034 ], [ -82.092127423999955, 28.87139955400005 ], [ -82.092205015, 28.872622395000064 ], [ -82.092253516999961, 28.873546600000054 ], [ -82.092360434999989, 28.875323866000031 ], [ -82.092466817999934, 28.877132497000048 ], [ -82.092493345999969, 28.877506516000039 ], [ -82.092522957999961, 28.878077800000028 ], [ -82.092564190999951, 28.87862345700006 ], [ -82.092619977999959, 28.879169104000027 ], [ -82.092710714999953, 28.879737784000042 ], [ -82.092833517999964, 28.880360240000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108706215999973, 28.909105867000051 ], [ -82.108846637999989, 28.909366845000079 ], [ -82.10913551699997, 28.909973778000051 ], [ -82.109316431999957, 28.910352792000026 ], [ -82.10943317899995, 28.910624258000041 ], [ -82.109628708999935, 28.91105705700005 ], [ -82.109847627999955, 28.911576942000067 ], [ -82.110051988999942, 28.912096839000071 ], [ -82.110323543999982, 28.912829317000046 ], [ -82.110653578999973, 28.913789754000049 ], [ -82.110861074999946, 28.91451203400004 ], [ -82.111056914999949, 28.915221517000077 ], [ -82.111176805999946, 28.915700491000052 ], [ -82.111255794999977, 28.916048842000066 ], [ -82.11136991799998, 28.916579058000025 ], [ -82.11148114599996, 28.917122086000063 ], [ -82.111574938, 28.917698433000055 ], [ -82.111645268999951, 28.918115962000059 ], [ -82.111701019999941, 28.918515569000078 ], [ -82.111753893999946, 28.918945922000034 ], [ -82.111815607999972, 28.919473621000066 ], [ -82.111865724999973, 28.920047442000055 ], [ -82.111895291999986, 28.920465003000061 ], [ -82.111924929999986, 28.920949176000079 ], [ -82.11193401099996, 28.921269403000053 ], [ -82.111946047999936, 28.921633181000061 ], [ -82.111952710999958, 28.922414550000042 ], [ -82.111948177999977, 28.923616077000077 ], [ -82.111938393999935, 28.925350481000066 ], [ -82.111934345999941, 28.927005461000078 ], [ -82.11192774899996, 28.928996049000034 ], [ -82.111920786999974, 28.930648467000026 ], [ -82.111915705999934, 28.931340181000053 ], [ -82.111911081999949, 28.932457165000073 ], [ -82.111907205999955, 28.934270979000075 ], [ -82.11190751099997, 28.934555347000071 ], [ -82.111910747999957, 28.934857646000069 ], [ -82.11192859099998, 28.935200924000071 ], [ -82.111955183999953, 28.935557002000053 ], [ -82.111990494999986, 28.935895140000071 ], [ -82.112040388999958, 28.936253762000035 ], [ -82.112090285999955, 28.936614945000031 ], [ -82.112172299999941, 28.937050397000064 ], [ -82.112254233999977, 28.93741155400005 ], [ -82.112350779999986, 28.937818812000046 ], [ -82.112438509999947, 28.938151783000023 ], [ -82.112552484999981, 28.938515473000052 ], [ -82.112672301999964, 28.938894531000074 ], [ -82.112792074999959, 28.939232599000036 ], [ -82.112935179999965, 28.939598829000033 ], [ -82.113089927999965, 28.93995992300006 ], [ -82.11324174899994, 28.940305649000038 ], [ -82.113405209999939, 28.940641117000041 ], [ -82.113519055999973, 28.940881837000063 ], [ -82.114237012, 28.942249272000026 ], [ -82.11513303299995, 28.943962404000047 ], [ -82.11593860399995, 28.945503962000032 ], [ -82.116674137999951, 28.946904672000073 ], [ -82.117722017999938, 28.948902022000027 ], [ -82.118390470999941, 28.950182371000039 ], [ -82.119619407999949, 28.952527960000054 ], [ -82.120086482999966, 28.953424200000029 ], [ -82.120509771999934, 28.954233373000079 ], [ -82.121391408999955, 28.955923415000029 ], [ -82.122007402999941, 28.957103881000023 ], [ -82.122708059, 28.958430293000049 ], [ -82.123251080999978, 28.959459668000079 ], [ -82.12352845199996, 28.959999968000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123819811999965, 28.960053500000072 ], [ -82.123746823999966, 28.959915226000078 ], [ -82.122792113999935, 28.958074116000034 ], [ -82.122079774999975, 28.956719535000047 ], [ -82.121583482999938, 28.955774654000038 ], [ -82.120754395999938, 28.954189602000042 ], [ -82.120021679999979, 28.95279916100003 ], [ -82.119849446999979, 28.952468833000069 ], [ -82.119233507999979, 28.951290918000041 ], [ -82.118964948999974, 28.950776220000023 ], [ -82.118086319999975, 28.949096404000045 ], [ -82.117111387999955, 28.94722452700006 ], [ -82.116221152999969, 28.94553189800007 ], [ -82.115722038999934, 28.944571626000027 ], [ -82.115164560999972, 28.943501239000057 ], [ -82.113486357999989, 28.940274699000042 ], [ -82.113322875999984, 28.939918737000028 ], [ -82.113173954999979, 28.939562762000037 ], [ -82.113036673999943, 28.939193965000072 ], [ -82.112902313999939, 28.938835415000028 ], [ -82.112782513999946, 28.938471729000071 ], [ -82.112671439999986, 28.938097789000039 ], [ -82.112580771999944, 28.937741763000076 ], [ -82.112519327999962, 28.937477941000054 ], [ -82.112460813999974, 28.937229488000071 ], [ -82.112387645999945, 28.93689650400006 ], [ -82.112326116999952, 28.936553264000054 ], [ -82.11229969599998, 28.936358583000072 ], [ -82.112261538999974, 28.936081932000036 ], [ -82.112226294999971, 28.935807840000052 ], [ -82.112202751999973, 28.935579853000036 ], [ -82.112182086999951, 28.935321120000026 ], [ -82.112158270999942, 28.934839507000049 ], [ -82.11214309099995, 28.934265659000062 ], [ -82.112147401999948, 28.932859183000062 ], [ -82.112157087999947, 28.931035628000075 ], [ -82.112156681999977, 28.930659031000062 ], [ -82.112160767999967, 28.929045043000031 ], [ -82.112165625999978, 28.928145818000075 ], [ -82.112175008999941, 28.926042505000055 ], [ -82.112182195999935, 28.924602721000042 ], [ -82.11218986199998, 28.92360870300007 ], [ -82.112196087999962, 28.921277384000064 ], [ -82.112200739999935, 28.920188578000079 ], [ -82.112204547999966, 28.918315837000023 ], [ -82.112201222999943, 28.917931557000031 ], [ -82.112177516999964, 28.917549855000061 ], [ -82.112145065999982, 28.91715791300004 ], [ -82.112103887999979, 28.916773665000051 ], [ -82.112051063999957, 28.916389425000034 ], [ -82.112004149999962, 28.916087162000053 ], [ -82.111933877999945, 28.915720872000065 ], [ -82.111869463999938, 28.915390442000046 ], [ -82.111737861999984, 28.914855117000059 ], [ -82.111612159999936, 28.914388957000028 ], [ -82.111498237999967, 28.914045758000043 ], [ -82.111355117999949, 28.913625726000078 ], [ -82.111255830999937, 28.913354249000065 ], [ -82.111095268999975, 28.912959851000039 ], [ -82.110923064999952, 28.912568024000052 ], [ -82.110750893999978, 28.912206938000054 ], [ -82.110508713999934, 28.91172037900003 ], [ -82.11023742499998, 28.911238966000042 ], [ -82.109957385999962, 28.910739628000044 ], [ -82.109659875999967, 28.910237740000071 ], [ -82.109388610999986, 28.909771697000053 ], [ -82.108999491999953, 28.909100675000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119857915999944, 28.949116227000047 ], [ -82.122567204999939, 28.949104595000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122567204999939, 28.949104595000051 ], [ -82.122571822999987, 28.950370088000057 ], [ -82.122575650999977, 28.950964318000047 ], [ -82.122579292999944, 28.951401737000026 ], [ -82.122582660999967, 28.951605314000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122567204999939, 28.949104595000051 ], [ -82.122879982999962, 28.949104309000063 ], [ -82.123404666999988, 28.949109061000058 ], [ -82.123487390999969, 28.949100451000049 ], [ -82.123539919999985, 28.949084997000057 ], [ -82.123592408999968, 28.949036530000058 ], [ -82.123637388999953, 28.948985868000079 ], [ -82.123669851999978, 28.948930817000075 ], [ -82.123687288999974, 28.948864775000061 ], [ -82.123692819999974, 28.948781687000064 ], [ -82.123692705999986, 28.948685400000045 ], [ -82.123692597999934, 28.948594614000058 ], [ -82.123711292999985, 28.948534073000076 ], [ -82.123741874999951, 28.94847517200003 ], [ -82.123781840999982, 28.948417912000025 ], [ -82.123889287999987, 28.948292364000054 ], [ -82.123976779999964, 28.948221856000032 ], [ -82.124059275999969, 28.948157955000056 ], [ -82.124121786999979, 28.948120481000046 ], [ -82.124189314999967, 28.948094009000044 ], [ -82.12427185699994, 28.94806972300006 ], [ -82.124341913999956, 28.948065257000053 ], [ -82.124812024999983, 28.948065093000025 ], [ -82.12498906999997, 28.948058741000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119885976999967, 28.923569832000055 ], [ -82.120605028999989, 28.923570059000042 ], [ -82.121973005999962, 28.923570998000059 ], [ -82.122775529999956, 28.923578959000054 ], [ -82.123849656999937, 28.923573631000068 ], [ -82.124190404999979, 28.923564627000076 ], [ -82.124533633999988, 28.923564310000074 ], [ -82.124817612999948, 28.923574909000024 ], [ -82.125711495999951, 28.923580595000033 ], [ -82.125881861999972, 28.923569574000055 ], [ -82.126138623999964, 28.923534575000076 ], [ -82.126380612999981, 28.923534348000032 ], [ -82.126634949999982, 28.923536281000054 ], [ -82.126679387999957, 28.923529722000069 ], [ -82.126723815999981, 28.923514474000058 ], [ -82.126862026999959, 28.923457860000042 ], [ -82.127417627999989, 28.923470370000075 ], [ -82.127881855999988, 28.923474276000036 ], [ -82.128370756999971, 28.923462947000075 ], [ -82.128679433999935, 28.923477860000048 ], [ -82.12896091999994, 28.923468901000035 ], [ -82.129439986999955, 28.923492339000063 ], [ -82.129637546999959, 28.923507355000027 ], [ -82.129832643999976, 28.923526718000062 ], [ -82.129936340999961, 28.92351792900007 ], [ -82.130111653999961, 28.923513415000059 ], [ -82.130283977999966, 28.923507106000045 ], [ -82.130677086999981, 28.923488970000051 ], [ -82.130916619999937, 28.923499600000071 ], [ -82.131163546999971, 28.923499360000051 ], [ -82.131435161999946, 28.923496923000073 ], [ -82.131748726999945, 28.923470548000068 ], [ -82.131946251999977, 28.923457320000068 ], [ -82.132089467999947, 28.923457179000025 ], [ -82.132625298999983, 28.923456652000027 ], [ -82.133062375999941, 28.923469256000033 ], [ -82.134121723999954, 28.923494274000063 ], [ -82.134497088999979, 28.923522140000046 ], [ -82.134746446999941, 28.923491478000074 ], [ -82.135272387999976, 28.923482260000071 ], [ -82.135756356999934, 28.923475256000074 ], [ -82.135963770999979, 28.923472875000073 ], [ -82.13621810099994, 28.923468272000036 ], [ -82.136287251999988, 28.923476892000053 ], [ -82.136341597999944, 28.923494217000041 ], [ -82.136388556999975, 28.923526755000069 ], [ -82.136415789999944, 28.923581038000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119892329999971, 28.930809221000061 ], [ -82.121361638999986, 28.930801388000077 ], [ -82.122860579999951, 28.930791338000063 ], [ -82.123677961999988, 28.930788416000041 ], [ -82.124142218999964, 28.930790162000051 ], [ -82.124473130999945, 28.930796374000067 ], [ -82.124566969999989, 28.930796287000078 ], [ -82.124680556999976, 28.930789665000077 ], [ -82.124769441999945, 28.93077654800004 ], [ -82.124843505999934, 28.930761272000041 ], [ -82.124915097999974, 28.93074165400003 ], [ -82.124976806999939, 28.930719873000044 ], [ -82.125050849, 28.930685044000029 ], [ -82.125105140999949, 28.930656753000051 ], [ -82.125189042999978, 28.930606709000074 ], [ -82.125571500999968, 28.930354351000062 ], [ -82.125759035999977, 28.93023686500004 ], [ -82.125919432999979, 28.930141128000059 ], [ -82.126183487999981, 28.929997501000059 ], [ -82.126526537999951, 28.929832076000025 ], [ -82.126889442999982, 28.929692818000035 ], [ -82.126994122999974, 28.929654561000063 ], [ -82.127101659999937, 28.929625153000075 ], [ -82.127193007999949, 28.929607688000033 ], [ -82.127284358999987, 28.929594567000038 ], [ -82.12742510299995, 28.92958357200007 ], [ -82.127805397999964, 28.929587556000058 ], [ -82.128694408999934, 28.92960626200005 ], [ -82.129094493999958, 28.92963846400005 ], [ -82.129264896999985, 28.929649163000079 ], [ -82.129385900999978, 28.92965121900005 ], [ -82.129499489999944, 28.92964676500003 ], [ -82.129620479999971, 28.929637959000047 ], [ -82.129795771999966, 28.929609549000077 ], [ -82.129941430999963, 28.929578994000053 ], [ -82.130054989999962, 28.929552815000079 ], [ -82.130175953999981, 28.929522284000029 ], [ -82.130324046999988, 28.929465658000026 ], [ -82.130449910999971, 28.929404709000039 ], [ -82.13056589699994, 28.929343768000024 ], [ -82.130694209999945, 28.929267608000032 ], [ -82.130812638999942, 28.929184941000074 ], [ -82.13131839, 28.928806447000056 ], [ -82.132014075999962, 28.928267006000056 ], [ -82.133119202999978, 28.927362188000075 ], [ -82.133651979999968, 28.926890244000049 ], [ -82.133745691999934, 28.926794564000033 ], [ -82.133812273, 28.926722808000079 ], [ -82.133883779999962, 28.926642356000059 ], [ -82.133945404999963, 28.926557571000046 ], [ -82.134002088999978, 28.926470617000064 ], [ -82.134043971999972, 28.926396713000031 ], [ -82.134088310999971, 28.926311944000076 ], [ -82.134120282999959, 28.926211982000041 ], [ -82.134134984999946, 28.926122897000027 ], [ -82.134139803999972, 28.926029477000043 ], [ -82.134144627999945, 28.925940403000027 ], [ -82.134151914999961, 28.925846982000053 ], [ -82.134169043999975, 28.925725309000029 ], [ -82.134203476999971, 28.925618825000072 ], [ -82.134247788999971, 28.925512332000039 ], [ -82.134299511999984, 28.92541017700006 ], [ -82.134358631999987, 28.925299324000036 ], [ -82.134410367999976, 28.925205858000027 ], [ -82.134489229999986, 28.925086296000075 ], [ -82.13456563699998, 28.924975425000071 ], [ -82.134659312999986, 28.924853676000055 ], [ -82.134782595, 28.924712345000046 ], [ -82.134891094999944, 28.924597098000049 ], [ -82.135026739999944, 28.92446878800007 ], [ -82.135157478999986, 28.924366553000027 ], [ -82.135300554999958, 28.924255616000039 ], [ -82.135492986999964, 28.924122904000058 ], [ -82.135678052999936, 28.924022786000023 ], [ -82.135917433999964, 28.923916096000028 ], [ -82.13632458099994, 28.923698442000045 ], [ -82.136389544999986, 28.923653634000061 ], [ -82.13640845499998, 28.923623305000035 ], [ -82.136415789999944, 28.923581038000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110585060999938, 28.934514845000024 ], [ -82.110675320999974, 28.934678143000042 ], [ -82.110814179999977, 28.934927963000064 ], [ -82.110946119999937, 28.935186934000058 ], [ -82.111071143999936, 28.935458101000052 ], [ -82.111137131999953, 28.935604350000062 ], [ -82.111376813999982, 28.936171078000029 ], [ -82.111599273999957, 28.936829258000046 ], [ -82.111747417999936, 28.937345366000045 ], [ -82.111873202999959, 28.937862761000076 ], [ -82.111963845999981, 28.938198293000028 ], [ -82.112074926999981, 28.938579920000052 ], [ -82.112197654999989, 28.938958975000048 ], [ -82.112302805999946, 28.939243256000054 ], [ -82.112428414999954, 28.939591566000047 ], [ -82.112548139999944, 28.939886083000033 ], [ -82.112676613999952, 28.940188276000072 ], [ -82.112828407999984, 28.940510946000074 ], [ -82.11353472899998, 28.941901451000035 ], [ -82.114646707999952, 28.944021742000075 ], [ -82.115072840999972, 28.944841179000036 ], [ -82.115431839999985, 28.945522330000074 ], [ -82.11636585499997, 28.947309714000028 ], [ -82.116841627999975, 28.94821620700003 ], [ -82.117308660999981, 28.949115017000054 ], [ -82.118161, 28.950738499000067 ], [ -82.119030880999958, 28.952395265000064 ], [ -82.119208955999966, 28.952743521000059 ], [ -82.119337400999939, 28.952989348000074 ], [ -82.119445431999964, 28.953214696000032 ], [ -82.119524283999965, 28.953396520000069 ], [ -82.119594381999946, 28.953562979000026 ], [ -82.119655757999965, 28.953744817000029 ], [ -82.119708392999939, 28.953921540000067 ], [ -82.119769826999971, 28.954152054000076 ], [ -82.119802057999948, 28.954318547000071 ], [ -82.119834327999968, 28.954515783000033 ], [ -82.119860777999975, 28.954720708000025 ], [ -82.119875567999941, 28.954915397000036 ], [ -82.119887482999957, 28.955145955000035 ], [ -82.119888008999965, 28.955601967000064 ], [ -82.119901811999966, 28.95746955900006 ], [ -82.119903104999935, 28.958591658000046 ], [ -82.119907457999943, 28.959978482000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104475873999945, 28.934531916000026 ], [ -82.105340698999953, 28.934531242000048 ], [ -82.107267148999938, 28.93453216000006 ], [ -82.107402960999934, 28.934522298000047 ], [ -82.108547760999954, 28.934539667000024 ], [ -82.110427083, 28.93453523900007 ], [ -82.110585060999938, 28.934514845000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109024538999961, 28.931904602000031 ], [ -82.109238345999984, 28.932265311000037 ], [ -82.109441038999989, 28.932601643000055 ], [ -82.109793679999939, 28.933189009000046 ], [ -82.11038511199996, 28.93416144300005 ], [ -82.110585060999938, 28.934514845000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108380371999942, 28.930839546000072 ], [ -82.109024538999961, 28.931904602000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109024538999961, 28.931904602000031 ], [ -82.109040958999969, 28.931704641000067 ], [ -82.109046428999989, 28.931633923000049 ], [ -82.10905467799995, 28.931570518000058 ], [ -82.109074005999958, 28.931499789000043 ], [ -82.109098872999937, 28.931424179000032 ], [ -82.109137598999951, 28.931348557000035 ], [ -82.109173566999971, 28.931285130000049 ], [ -82.109223383999961, 28.931214376000071 ], [ -82.109278752999955, 28.931150934000073 ], [ -82.10934244699996, 28.931097237000074 ], [ -82.109417031999953, 28.931042347000073 ], [ -82.109497553999972, 28.930989822000072 ], [ -82.109583435, 28.930948300000068 ], [ -82.10975796799994, 28.930862814000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11888688199997, 28.930662062000067 ], [ -82.118748647999951, 28.930709977000049 ], [ -82.118627690999972, 28.93074918700006 ], [ -82.118516597999985, 28.930777527000032 ], [ -82.118405491999965, 28.930795004000061 ], [ -82.118316604999961, 28.930805943000053 ], [ -82.118227712999953, 28.930812540000034 ], [ -82.117694314999937, 28.930815179000035 ], [ -82.115807675999974, 28.930829850000066 ], [ -82.114081540999962, 28.930835668000043 ], [ -82.112678905999985, 28.930845540000064 ], [ -82.112162798999975, 28.930850315000043 ], [ -82.11199981599998, 28.930850451000026 ], [ -82.111780034999981, 28.930850634000024 ], [ -82.110895980999942, 28.930857882000055 ], [ -82.10975796799994, 28.930862814000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108044392999943, 28.930266794000033 ], [ -82.108197126999983, 28.930542209000066 ], [ -82.108380371999942, 28.930839546000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099219620999975, 28.927236357000027 ], [ -82.099076228999934, 28.927238167000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102074434999963, 28.901647976000049 ], [ -82.102011910999977, 28.90163117700007 ], [ -82.101946077999969, 28.901626070000077 ], [ -82.101689324999938, 28.901571678000039 ], [ -82.101377308999986, 28.901523872000041 ], [ -82.100654342999974, 28.901281917000063 ], [ -82.100513947999957, 28.901272870000071 ], [ -82.100407364999967, 28.901279813000031 ], [ -82.100318990999938, 28.901298179000037 ], [ -82.100238409999974, 28.901309679000065 ], [ -82.100152642999944, 28.901334907000034 ], [ -82.100098067999966, 28.901355537000029 ], [ -82.099533114999986, 28.901625124000077 ], [ -82.099208006999959, 28.901755656000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099208006999959, 28.901755656000034 ], [ -82.099160023999957, 28.901845802000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099160023999957, 28.901845802000025 ], [ -82.098759666999968, 28.901852960000042 ], [ -82.097665700999983, 28.901868397000044 ], [ -82.096197363999977, 28.901878606000025 ], [ -82.09529265499998, 28.901888400000075 ], [ -82.095068038999955, 28.901890388000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.095068038999955, 28.901890388000027 ], [ -82.093004871999938, 28.901897319000057 ], [ -82.090920911999945, 28.901911552000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090920911999945, 28.901911552000058 ], [ -82.088576975999956, 28.901924094000037 ], [ -82.088310760999946, 28.901924269000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.088310760999946, 28.901924269000062 ], [ -82.086798733999956, 28.901921593000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099155130999975, 28.909121174000063 ], [ -82.099154283999951, 28.91049614700006 ], [ -82.099163464999947, 28.911181973000055 ], [ -82.099153311999942, 28.912019773000054 ], [ -82.099159646999965, 28.912600468000051 ], [ -82.099164483999971, 28.913581747000023 ], [ -82.099165883999945, 28.915054228000031 ], [ -82.099169352999979, 28.916153792000046 ], [ -82.099175403999936, 28.917423830000075 ], [ -82.099184116999936, 28.918945317000066 ], [ -82.099189961999969, 28.919995867000068 ], [ -82.099201143999949, 28.921566363000068 ], [ -82.099202589999948, 28.923085723000042 ], [ -82.099210568, 28.923833678000051 ], [ -82.099218698999948, 28.924741453000024 ], [ -82.099222483999938, 28.926172589000032 ], [ -82.099219620999975, 28.927236357000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099076228999934, 28.927238167000041 ], [ -82.09907140699994, 28.928279774000032 ], [ -82.099065004999943, 28.929911142000037 ], [ -82.099068564999982, 28.930938635000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099068564999982, 28.930938635000075 ], [ -82.099068685999953, 28.93106593400006 ], [ -82.099006833999965, 28.93123874500003 ], [ -82.098988920999943, 28.931422889000032 ], [ -82.098917240999981, 28.932132186000047 ], [ -82.098891818999959, 28.932573210000044 ], [ -82.098863822999988, 28.933025602000043 ], [ -82.098691159999987, 28.933521290000044 ], [ -82.098657915999979, 28.933889577000059 ], [ -82.098596153999949, 28.93416013500007 ], [ -82.098602227999947, 28.935117156000047 ], [ -82.098608264999939, 28.936035532000062 ], [ -82.098621223999942, 28.936076440000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103279464999957, 28.930856814000038 ], [ -82.10704678999997, 28.930877520000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103279464999957, 28.930856814000038 ], [ -82.103254254999968, 28.930925265000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099068564999982, 28.930938635000075 ], [ -82.098195164999936, 28.930939275000071 ], [ -82.09754500799994, 28.930946357000039 ], [ -82.096929145999979, 28.930942324000057 ], [ -82.09504891499995, 28.930934975000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099076228999934, 28.927238167000041 ], [ -82.09737488899998, 28.927254750000031 ], [ -82.096891812999957, 28.927262437000024 ], [ -82.095795276999979, 28.927270557000043 ], [ -82.094661215999963, 28.927278695000041 ], [ -82.093024748999937, 28.927290839000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093024748999937, 28.927290839000079 ], [ -82.093033917999946, 28.928220676000024 ], [ -82.093048219999957, 28.929295761000049 ], [ -82.093065871999954, 28.930387350000046 ], [ -82.093064450999975, 28.930664653000065 ], [ -82.093064579999975, 28.930808438000042 ], [ -82.093068384999981, 28.930896103000066 ], [ -82.093379014999982, 28.930895888000066 ], [ -82.094321322999974, 28.930895231000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.092554334999988, 28.920032491000029 ], [ -82.090918251999938, 28.92003393400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093024748999937, 28.927290839000079 ], [ -82.09117684499995, 28.927307441000039 ], [ -82.091002382999989, 28.927308132000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090918251999938, 28.92003393400006 ], [ -82.091003140999987, 28.920865142000025 ], [ -82.090990412999986, 28.921209027000032 ], [ -82.090980900999966, 28.922551987000077 ], [ -82.090994457999955, 28.923753255000065 ], [ -82.090997808999987, 28.925202120000051 ], [ -82.091002800999945, 28.926144797000063 ], [ -82.091007396999942, 28.926632640000037 ], [ -82.091002382999989, 28.927308132000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091002382999989, 28.927308132000064 ], [ -82.089618159999986, 28.927318230000026 ], [ -82.08800254099998, 28.927333968000028 ], [ -82.086964372999944, 28.927340144000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086942007999937, 28.922085264000032 ], [ -82.086946465999972, 28.922431889000052 ], [ -82.086946721999936, 28.92273816900007 ], [ -82.086951751999948, 28.923770714000057 ], [ -82.086954656999978, 28.92475190600004 ], [ -82.086959728999943, 28.926771605000056 ], [ -82.086964372999944, 28.927340144000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086890560999962, 28.912882230000037 ], [ -82.086890677999975, 28.913023449000036 ], [ -82.08689149099996, 28.913999143000069 ], [ -82.086888574999989, 28.915501200000051 ], [ -82.086882771999967, 28.916042237000056 ], [ -82.086885602999985, 28.916937233000056 ], [ -82.086890903999972, 28.918296232000046 ], [ -82.08692349599994, 28.919884463000074 ], [ -82.086939051999934, 28.921039880000023 ], [ -82.086942007999937, 28.922085264000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091928541999948, 28.912871548000055 ], [ -82.091795133999938, 28.912864304000038 ], [ -82.091622122, 28.912857086000031 ], [ -82.091513735999968, 28.912860827000031 ], [ -82.091409048999935, 28.912862775000065 ], [ -82.091073952999977, 28.912888636000048 ], [ -82.090942623999979, 28.912874052000063 ], [ -82.090846718999956, 28.912848441000051 ], [ -82.090438167999935, 28.912839546000043 ], [ -82.089898317999939, 28.912847243000044 ], [ -82.08914376599995, 28.912847744000032 ], [ -82.088170352999953, 28.912850220000053 ], [ -82.087768068999935, 28.912854151000033 ], [ -82.087645091999946, 28.912857899000073 ], [ -82.087590898999963, 28.912857934000044 ], [ -82.08753253499998, 28.91285797200004 ], [ -82.087449158999959, 28.912858026000038 ], [ -82.087332436999986, 28.912861770000063 ], [ -82.087211542999967, 28.912863682000079 ], [ -82.086890560999962, 28.912882230000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086874937999937, 28.909140853000054 ], [ -82.086881585999947, 28.909615858000052 ], [ -82.086888856999963, 28.910837307000065 ], [ -82.086887587999968, 28.911814836000076 ], [ -82.086890560999962, 28.912882230000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086862594999957, 28.906833672000062 ], [ -82.086860823999984, 28.907211480000058 ], [ -82.086867729999938, 28.907994599000062 ], [ -82.086872191999987, 28.908346727000037 ], [ -82.086874937999937, 28.909140853000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086798733999956, 28.901921593000054 ], [ -82.086813290999942, 28.902690665000023 ], [ -82.086831085999961, 28.904036820000044 ], [ -82.08684686099997, 28.905460005000066 ], [ -82.086862594999957, 28.906833672000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103250267999954, 28.927206713000032 ], [ -82.103255901999944, 28.928116824000028 ], [ -82.103270902999952, 28.928529465000054 ], [ -82.103271791999987, 28.929426293000063 ], [ -82.103279464999957, 28.930856814000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103274218999957, 28.923646333000079 ], [ -82.103286551999986, 28.92554724200005 ], [ -82.103279163999957, 28.927204380000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111683402999972, 28.901788311000075 ], [ -82.114256414999943, 28.901790143000028 ], [ -82.11589134899998, 28.901775684000029 ], [ -82.117096166999943, 28.901771204000056 ], [ -82.118660103999957, 28.901744011000062 ], [ -82.119416559999934, 28.901734809000061 ], [ -82.120009960999937, 28.901725213000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108222964999982, 28.899996006000038 ], [ -82.108312631999979, 28.900002795000034 ], [ -82.108513402999961, 28.900014641000041 ], [ -82.10868882699998, 28.900016214000061 ], [ -82.108875944999966, 28.900019492000069 ], [ -82.109000681999987, 28.900014247000058 ], [ -82.110262275999958, 28.899998609000079 ], [ -82.110891243999959, 28.899999812000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108222964999982, 28.899996006000038 ], [ -82.108137133999946, 28.89992918300004 ], [ -82.107821133999948, 28.899694453000052 ], [ -82.107608552999977, 28.899571128000048 ], [ -82.107450617999973, 28.89951465300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107450617999973, 28.89951465300004 ], [ -82.107431670999972, 28.900044665000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107431670999972, 28.900044665000053 ], [ -82.107447693999973, 28.900461446000065 ], [ -82.107462515999941, 28.901605473000075 ], [ -82.107462690999967, 28.901775278000059 ], [ -82.107478318999938, 28.901807853000037 ], [ -82.107499784999959, 28.901831849000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107499784999959, 28.901831849000075 ], [ -82.107530980999968, 28.901842116000068 ], [ -82.107566134999956, 28.901841079000064 ], [ -82.10797927699997, 28.901831466000033 ], [ -82.108518868999965, 28.901803139000037 ], [ -82.109731100999966, 28.901790468000058 ], [ -82.111142318999953, 28.901788758000066 ], [ -82.111683402999972, 28.901788311000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107484127999953, 28.894478536000065 ], [ -82.107463153999959, 28.895559229000071 ], [ -82.107431704999954, 28.896754026000053 ], [ -82.107432657999937, 28.897679463000031 ], [ -82.107453218999979, 28.898255694000056 ], [ -82.107450617999973, 28.89951465300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110891243999959, 28.899999812000033 ], [ -82.110981679999952, 28.90000008100003 ], [ -82.11123999299997, 28.899972799000068 ], [ -82.111561601999938, 28.899984132000043 ], [ -82.111666542999956, 28.900604151000039 ], [ -82.111671451999939, 28.900820947000057 ], [ -82.11167009199994, 28.901007562000075 ], [ -82.111662713999976, 28.901398634000032 ], [ -82.111683402999972, 28.901788311000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103272491999974, 28.89447102400004 ], [ -82.105241651999961, 28.894475176000071 ], [ -82.106278638999981, 28.894475687000067 ], [ -82.107484127999953, 28.894478536000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103275591999989, 28.888157026000044 ], [ -82.103252234999957, 28.888270849000037 ], [ -82.103218856999945, 28.89023334500007 ], [ -82.103249208999955, 28.890492504000065 ], [ -82.103262560999951, 28.890952210000023 ], [ -82.103265818999944, 28.892072176000056 ], [ -82.103271216999985, 28.893182682000031 ], [ -82.103272491999974, 28.89447102400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103272491999974, 28.89447102400004 ], [ -82.102243483999985, 28.894467013000053 ], [ -82.100736048999977, 28.894483941000033 ], [ -82.100456607999945, 28.894486405000066 ], [ -82.100243194999962, 28.894486564000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.098509235999984, 28.894496869000079 ], [ -82.098512195999945, 28.894537856000056 ], [ -82.098520495999935, 28.894572403000041 ], [ -82.098532922999937, 28.894603309000047 ], [ -82.098549473999981, 28.89462330200007 ], [ -82.098580492999986, 28.894645102000027 ], [ -82.098609436999936, 28.894659629000046 ], [ -82.09864251099998, 28.894668699000079 ], [ -82.098677644999952, 28.894674129000066 ], [ -82.098718971999972, 28.894670461000032 ], [ -82.098766495999939, 28.894664971000054 ], [ -82.098832612999956, 28.894652192000024 ], [ -82.098884268999939, 28.894646699000077 ], [ -82.098931798999956, 28.894646664000049 ], [ -82.098969002999979, 28.894653911000034 ], [ -82.099004142999945, 28.894664797000075 ], [ -82.099035156999946, 28.894681140000046 ], [ -82.099062039999978, 28.894701126000029 ], [ -82.099086862999968, 28.894728386000054 ], [ -82.099101361999942, 28.894761110000047 ], [ -82.099113796999973, 28.89480111000006 ], [ -82.099122104999935, 28.894844750000061 ], [ -82.099128365999945, 28.894910215000039 ], [ -82.099140855999963, 28.89500477200005 ], [ -82.099149194999939, 28.895082965000029 ], [ -82.099153457999989, 28.895219356000041 ], [ -82.099155617999941, 28.895317557000055 ], [ -82.099163985999951, 28.895424849000051 ], [ -82.099166123999964, 28.895499409000024 ], [ -82.099170323999942, 28.895570331000044 ], [ -82.099170421999986, 28.895673990000034 ], [ -82.099172560999989, 28.895750369000041 ], [ -82.099172643999964, 28.895837660000041 ], [ -82.099176857999964, 28.895923131000075 ], [ -82.099176940999939, 28.896010424000053 ], [ -82.099177032999989, 28.89610680800007 ], [ -82.099179217999961, 28.896230470000035 ], [ -82.099179272999947, 28.896288665000043 ], [ -82.099179436999975, 28.896461430000045 ], [ -82.099179506999974, 28.896534174000067 ], [ -82.099179559999982, 28.896590551000031 ], [ -82.099179618999983, 28.89665238200007 ], [ -82.099175538999987, 28.89670876200006 ], [ -82.099173524999969, 28.896765139000024 ], [ -82.09917356699998, 28.896808785000076 ], [ -82.099169481, 28.896857890000035 ], [ -82.09916538799996, 28.896899720000079 ], [ -82.099161288999937, 28.896936095000058 ], [ -82.099161333999973, 28.896983379000062 ], [ -82.099165518999939, 28.897037933000036 ], [ -82.099173824, 28.89707975400006 ], [ -82.099198662999981, 28.897121563000042 ], [ -82.099217300999953, 28.89716155900004 ], [ -82.099238008999976, 28.897207008000066 ], [ -82.099262844999942, 28.897245180000027 ], [ -82.099281469999937, 28.897274264000032 ], [ -82.09930628799998, 28.897294250000073 ], [ -82.09933936799996, 28.897310593000043 ], [ -82.099382777999949, 28.897323290000031 ], [ -82.099453063999988, 28.897346881000033 ], [ -82.099537816999941, 28.897372278000034 ], [ -82.099606033999976, 28.897394050000059 ], [ -82.099703187999978, 28.897421258000065 ], [ -82.09975074, 28.897443046000035 ], [ -82.099785887999985, 28.89746120600006 ], [ -82.09983551199997, 28.897488447000057 ], [ -82.099870664999969, 28.897512063000079 ], [ -82.099900132999949, 28.897531591000075 ], [ -82.099928581999961, 28.897567942000023 ], [ -82.099949275999961, 28.897597478000023 ], [ -82.099967402999937, 28.897642929000028 ], [ -82.099975205999954, 28.897699755000076 ], [ -82.099967511999978, 28.897756591000075 ], [ -82.099954638999975, 28.897802065000064 ], [ -82.099941781999974, 28.897863452000024 ], [ -82.099913433999973, 28.897933944000044 ], [ -82.09988354099994, 28.898010346000035 ], [ -82.099864470999989, 28.898056735000068 ], [ -82.099838685999941, 28.898106764000033 ], [ -82.099810311999988, 28.89814997700006 ], [ -82.099787091999985, 28.898179546000051 ], [ -82.099758704999942, 28.898209118000068 ], [ -82.099707063999972, 28.898234163000041 ], [ -82.099645080999949, 28.89824784800004 ], [ -82.099528838999959, 28.898250207000046 ], [ -82.099345423999978, 28.898243523000076 ], [ -82.099260177999952, 28.898243586000035 ], [ -82.099224029999959, 28.898261798000078 ], [ -82.099195626999972, 28.898275459000047 ], [ -82.099177568999949, 28.898300477000078 ], [ -82.099172451999948, 28.898352766000073 ], [ -82.099179385999946, 28.898567484000068 ], [ -82.09917785, 28.898595998000076 ], [ -82.099185659999989, 28.898659641000052 ], [ -82.099189931999945, 28.898907989000065 ], [ -82.099178146999975, 28.899248983000064 ], [ -82.099202706999961, 28.899607709000065 ], [ -82.099182891999988, 28.899994883000033 ], [ -82.099163113999964, 28.900417577000042 ], [ -82.099190150999959, 28.900720224000054 ], [ -82.099216401999968, 28.900987868000072 ], [ -82.099227291999966, 28.901502596000057 ], [ -82.099208006999959, 28.901755656000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.098509235999984, 28.894496869000079 ], [ -82.097143301999949, 28.894501469000033 ], [ -82.095112874999984, 28.894522772000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.095112874999984, 28.894522772000073 ], [ -82.095090981999988, 28.895253776000061 ], [ -82.095079703999943, 28.896381853000037 ], [ -82.095086897999977, 28.897524356000076 ], [ -82.095077885999956, 28.898888874000079 ], [ -82.095070891999967, 28.900215486000036 ], [ -82.095069096999964, 28.900770322000028 ], [ -82.095065910999949, 28.901502390000076 ], [ -82.095068038999955, 28.901890388000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.095068038999955, 28.901890388000027 ], [ -82.095066025999984, 28.903879455000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.095112874999984, 28.894522772000073 ], [ -82.092935295999951, 28.894548433000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.092935295999951, 28.894548433000068 ], [ -82.09300107699994, 28.894718048000072 ], [ -82.093048373999977, 28.894856994000065 ], [ -82.093079285999977, 28.895023025000057 ], [ -82.093069090999961, 28.895089813000027 ], [ -82.092855997999948, 28.895322794000037 ], [ -82.092601939999952, 28.895618974000058 ], [ -82.092554850999989, 28.89571286100005 ], [ -82.092515956999989, 28.895797719000029 ], [ -82.092489388, 28.895902422000063 ], [ -82.09247512099995, 28.896005312000057 ], [ -82.092460987999971, 28.896256204000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.092935295999951, 28.894548433000068 ], [ -82.090931527999942, 28.894567848000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090931527999942, 28.894567848000065 ], [ -82.090924083999937, 28.895439625000051 ], [ -82.090919262999989, 28.896968387000072 ], [ -82.090899797999953, 28.898168665000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090899797999953, 28.898168665000071 ], [ -82.090899929999978, 28.898320278000028 ], [ -82.090894125999966, 28.898720972000035 ], [ -82.090907500999947, 28.899946496000041 ], [ -82.090917987999944, 28.90094156300006 ], [ -82.090920911999945, 28.901911552000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090899797999953, 28.898168665000071 ], [ -82.090344925999943, 28.898177665000048 ], [ -82.089172841999982, 28.898180649000039 ], [ -82.088740076999954, 28.898182740000038 ], [ -82.088374997999949, 28.898186590000023 ], [ -82.087905313999954, 28.898188702000027 ], [ -82.087429473999975, 28.898185402000024 ], [ -82.087069678999967, 28.898188416000039 ], [ -82.08682057599998, 28.898188052000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08682057599998, 28.898188052000023 ], [ -82.086506930999974, 28.898179840000068 ], [ -82.085910177999949, 28.898145501000045 ], [ -82.085256191999974, 28.89811153900007 ], [ -82.082646071999989, 28.89816713700003 ], [ -82.081763973999955, 28.898170769000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.088310760999946, 28.901924269000062 ], [ -82.088308762999986, 28.902023101000054 ], [ -82.088329664999947, 28.902143878000061 ], [ -82.088352739999948, 28.902378125000041 ], [ -82.088355625999952, 28.903466413000046 ], [ -82.08836109899994, 28.903872513000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08682057599998, 28.898188052000023 ], [ -82.086793536999949, 28.899584618000063 ], [ -82.086793674999967, 28.900839963000067 ], [ -82.086798733999956, 28.901921593000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086894489999963, 28.894587208000075 ], [ -82.086884821999945, 28.895291129000043 ], [ -82.086853322999957, 28.896717594000052 ], [ -82.08682057599998, 28.898188052000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086850451999965, 28.890959365000072 ], [ -82.086866657999963, 28.891949799000031 ], [ -82.086893295999971, 28.893152304000068 ], [ -82.086894489999963, 28.894587208000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086852358999977, 28.887090084000079 ], [ -82.086852491999935, 28.887250269000049 ], [ -82.086853736999956, 28.888746090000041 ], [ -82.086846813999955, 28.889666599000066 ], [ -82.086850451999965, 28.890959365000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086852358999977, 28.887090084000079 ], [ -82.085037416999967, 28.887120570000036 ], [ -82.083978701999968, 28.887141541000062 ], [ -82.082902025999942, 28.887139950000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086834751999959, 28.883640455000034 ], [ -82.086831710999945, 28.883838997000055 ], [ -82.086845967999977, 28.885569449000059 ], [ -82.086852358999977, 28.887090084000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.089270003999957, 28.883636607000028 ], [ -82.089144403999967, 28.883645715000057 ], [ -82.088749613999937, 28.883618902000023 ], [ -82.088467637999941, 28.883621344000062 ], [ -82.088093387999947, 28.883635125000069 ], [ -82.086834751999959, 28.883640455000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086828860999958, 28.879642574000059 ], [ -82.086829142999989, 28.879980995000039 ], [ -82.086827194999955, 28.880721011000048 ], [ -82.086828091999962, 28.881799447000049 ], [ -82.086834751999959, 28.883640455000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086833331999969, 28.872686877000035 ], [ -82.086828772999979, 28.873370492000049 ], [ -82.086821535999945, 28.873914227000057 ], [ -82.086822790999975, 28.875423588000046 ], [ -82.086828537999963, 28.876170369000079 ], [ -82.086826497999937, 28.876799834000053 ], [ -82.086832280999943, 28.87758948100003 ], [ -82.086832646999937, 28.878029428000048 ], [ -82.086832997999977, 28.878451326000061 ], [ -82.086828354999966, 28.879033415000038 ], [ -82.086828860999958, 28.879642574000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086843672999976, 28.871964817000048 ], [ -82.086833331999969, 28.872686877000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086833331999969, 28.872686877000035 ], [ -82.084731042999977, 28.872714201000065 ], [ -82.083575580999934, 28.87271826500006 ], [ -82.08254390999997, 28.872721722000051 ], [ -82.081095729999959, 28.872728241000061 ], [ -82.078533863999951, 28.872746679000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078608230999976, 28.865980451000041 ], [ -82.078616450999959, 28.866686620000053 ], [ -82.078594562999967, 28.868254656000033 ], [ -82.078562902999977, 28.870461186000057 ], [ -82.078544136999938, 28.871068665000053 ], [ -82.078530853999951, 28.872151059000032 ], [ -82.078533863999951, 28.872746679000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078910575999942, 28.865862954000079 ], [ -82.078785040999946, 28.865930713000068 ], [ -82.078690241999936, 28.865975890000072 ], [ -82.078644112999939, 28.865980430000036 ], [ -82.078608230999976, 28.865980451000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086853533999943, 28.871853860000044 ], [ -82.085604488999934, 28.871461546000035 ], [ -82.085160694999956, 28.871301479000067 ], [ -82.084925565999981, 28.871205936000024 ], [ -82.084616948999951, 28.871069058000046 ], [ -82.084384741999941, 28.870955409000032 ], [ -82.084161350999977, 28.870841752000047 ], [ -82.084002620999968, 28.870753919000038 ], [ -82.08379391699998, 28.870635080000056 ], [ -82.083558752999977, 28.87049298200003 ], [ -82.083270662999951, 28.870301777000066 ], [ -82.083076629999937, 28.870154480000053 ], [ -82.082873765999977, 28.86998649800006 ], [ -82.082644423999966, 28.869774566000046 ], [ -82.082391542999972, 28.869516093000072 ], [ -82.082050417999938, 28.869128363000073 ], [ -82.08100871399995, 28.867940555000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070690594999974, 28.872753277000072 ], [ -82.070293302999971, 28.872751227000037 ], [ -82.066433194999945, 28.872771236000062 ], [ -82.066266076999966, 28.872772671000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06875273199995, 28.887374993000037 ], [ -82.068670682999937, 28.887351570000078 ], [ -82.068549668999935, 28.887326364000046 ], [ -82.068414301999951, 28.887304774000029 ], [ -82.068229716999952, 28.887288623000074 ], [ -82.068061545999967, 28.887281488000042 ], [ -82.067915937999942, 28.887281561000066 ], [ -82.066195308999966, 28.887287833000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.072352434999971, 28.883686234000038 ], [ -82.072198629999946, 28.883686316000023 ], [ -82.070524709999972, 28.883688894000045 ], [ -82.070463193999956, 28.883697952000034 ], [ -82.070419630999936, 28.883720535000066 ], [ -82.070391450999978, 28.883747624000023 ], [ -82.070368411999937, 28.883792759000073 ], [ -82.070363312999973, 28.883835629000032 ], [ -82.070368592999955, 28.887105226000074 ], [ -82.070356321999952, 28.887153966000028 ], [ -82.070333781999977, 28.887182856000038 ], [ -82.070309185999974, 28.887204528000041 ], [ -82.070272287999956, 28.887229816000058 ], [ -82.070239480999987, 28.887237052000046 ], [ -82.068974132999983, 28.887243120000051 ], [ -82.068922862999955, 28.887243147000049 ], [ -82.068877752999981, 28.887257610000063 ], [ -82.068840852999983, 28.887277482000059 ], [ -82.068814204999967, 28.88729735000004 ], [ -82.06875273199995, 28.887374993000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070303189999947, 28.890907394000067 ], [ -82.070310316999951, 28.890072617000044 ], [ -82.070314888999974, 28.889246867000054 ], [ -82.070309669999972, 28.889111502000048 ], [ -82.070289053999943, 28.888951327000029 ], [ -82.070258180999986, 28.888786645000039 ], [ -82.070217065999941, 28.888642273000073 ], [ -82.070165710999959, 28.888518213000054 ], [ -82.07009383999997, 28.888380625000025 ], [ -82.070011716999943, 28.888247556000067 ], [ -82.069924478999951, 28.888132538000036 ], [ -82.069798769999977, 28.88798821000006 ], [ -82.069703851999975, 28.887888989000032 ], [ -82.069570475999967, 28.887778506000075 ], [ -82.069448168999941, 28.887690495000072 ], [ -82.069353791999959, 28.887630983000065 ], [ -82.069265571999949, 28.88757868600004 ], [ -82.069158890999972, 28.887520983000059 ], [ -82.069056318999969, 28.88747591200007 ], [ -82.068943496999964, 28.88743445700004 ], [ -82.068865548999952, 28.887409228000024 ], [ -82.068795808999937, 28.887389410000026 ], [ -82.06875273199995, 28.887374993000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074524790999988, 28.886392843000067 ], [ -82.074515076999944, 28.887148657000068 ], [ -82.074505155999987, 28.887615682000046 ], [ -82.074501206999969, 28.889267180000047 ], [ -82.074494019999975, 28.889973356000041 ], [ -82.074484057999939, 28.890381724000065 ], [ -82.074502354999936, 28.890915562000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078542632999984, 28.890918636000038 ], [ -82.077742786999977, 28.890919100000076 ], [ -82.075745734999941, 28.89091798100003 ], [ -82.074502354999936, 28.890915562000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086850451999965, 28.890959365000072 ], [ -82.086127506999958, 28.890950805000045 ], [ -82.084874764999938, 28.890946382000038 ], [ -82.084418442999947, 28.890946669000073 ], [ -82.082172712999977, 28.89093452000003 ], [ -82.081195970999943, 28.890926087000025 ], [ -82.078542632999984, 28.890918636000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074502354999936, 28.890915562000032 ], [ -82.07431524499998, 28.890921033000041 ], [ -82.072254093999959, 28.890906362000067 ], [ -82.070303189999947, 28.890907394000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074295864999954, 28.901812608000057 ], [ -82.072394662999955, 28.901798173000032 ], [ -82.070227335999959, 28.90176100900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070227335999959, 28.90176100900004 ], [ -82.070241753999937, 28.903180675000044 ], [ -82.070249960999945, 28.903947757000026 ], [ -82.070264128999952, 28.905948942000066 ], [ -82.07026609899998, 28.906708461000051 ], [ -82.070273830999952, 28.907537447000038 ], [ -82.070274238999957, 28.908142712000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086874937999937, 28.909140853000054 ], [ -82.085967538999967, 28.90915347300006 ], [ -82.083891690999963, 28.909165612000038 ], [ -82.082804528999986, 28.909164479000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.082804528999986, 28.909164479000026 ], [ -82.081760950999978, 28.909155189000046 ], [ -82.080432761999987, 28.909144708000042 ], [ -82.078548177999949, 28.909139052000057 ], [ -82.076737950999984, 28.909133327000063 ], [ -82.073227232999955, 28.909115879000069 ], [ -82.072430318999977, 28.909106382000061 ], [ -82.070277026999975, 28.909103604000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070277026999975, 28.909103604000052 ], [ -82.070292681999945, 28.91027077800004 ], [ -82.070291555999972, 28.911644312000078 ], [ -82.070303044999946, 28.912441461000071 ], [ -82.070288738999977, 28.913552100000061 ], [ -82.070281332999969, 28.914736121000033 ], [ -82.070282992999978, 28.915631341000051 ], [ -82.070270212999958, 28.916499520000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070270212999958, 28.916499520000059 ], [ -82.06674578999997, 28.916464913000027 ], [ -82.066073355999947, 28.916467996000051 ], [ -82.064094519999969, 28.916477384000075 ], [ -82.061773842999969, 28.916497195000034 ], [ -82.06015862299995, 28.916506277000053 ], [ -82.059119429999953, 28.916510453000058 ], [ -82.058158332999938, 28.916517977000069 ], [ -82.057140696999966, 28.916518413000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070270212999958, 28.916499520000059 ], [ -82.070291027999986, 28.918140251000068 ], [ -82.070302750999986, 28.919120225000029 ], [ -82.070317436999972, 28.919602127000076 ], [ -82.070330846, 28.92074124100003 ], [ -82.070331459999977, 28.921651036000071 ], [ -82.070325968999953, 28.92291526300005 ], [ -82.070329704999949, 28.923749706000024 ], [ -82.070327216999942, 28.924977124000065 ], [ -82.070305212999983, 28.925811001000056 ], [ -82.070303471999978, 28.92627305700006 ], [ -82.070302136999942, 28.927334340000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070302136999942, 28.927334340000073 ], [ -82.070313311999939, 28.928691621000041 ], [ -82.070320373999948, 28.930036270000073 ], [ -82.070324824999943, 28.93055246800003 ], [ -82.070325124999954, 28.930996475000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070325124999954, 28.930996475000029 ], [ -82.066088237999963, 28.931005614000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070325124999954, 28.930996475000029 ], [ -82.070331942999985, 28.931980142000043 ], [ -82.070339996999962, 28.933316338000054 ], [ -82.070347529999935, 28.93467796300007 ], [ -82.070347567999988, 28.934733244000029 ], [ -82.070348425999953, 28.936004678000074 ], [ -82.070359262999943, 28.937357574000032 ], [ -82.070366542999977, 28.938340968000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107419743999969, 28.88342497800005 ], [ -82.107420751999939, 28.884404584000038 ], [ -82.107419808999964, 28.885634924000044 ], [ -82.107416778999948, 28.886981885000068 ], [ -82.10741931299998, 28.887298701000077 ], [ -82.10741339499998, 28.887984817000074 ], [ -82.107407917999979, 28.889102428000058 ], [ -82.107444722999958, 28.890529048000076 ], [ -82.107448129999966, 28.891693298000064 ], [ -82.107473759999948, 28.893056447000049 ], [ -82.107485794999945, 28.893953747000069 ], [ -82.107484127999953, 28.894478536000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.092685532999951, 28.890863939000042 ], [ -82.092360022999969, 28.890867748000062 ], [ -82.092059258999939, 28.890862035000055 ], [ -82.091859383999974, 28.890859180000064 ], [ -82.091675689999988, 28.890859180000064 ], [ -82.091496753999934, 28.890871553000068 ], [ -82.091356841999982, 28.890866794000033 ], [ -82.091128413999968, 28.890846807000059 ], [ -82.090981838999937, 28.890852517000042 ], [ -82.090912012999979, 28.890869224000028 ], [ -82.090869527999985, 28.89088868500005 ], [ -82.090826915999969, 28.890928605000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090826915999969, 28.890928605000056 ], [ -82.087921670999947, 28.890970242000037 ], [ -82.086850451999965, 28.890959365000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090826915999969, 28.890928605000056 ], [ -82.090837664999981, 28.891050369000027 ], [ -82.090837868999984, 28.89128454400003 ], [ -82.090863654999964, 28.892377345000057 ], [ -82.090834618999963, 28.893256614000052 ], [ -82.090803922999953, 28.893861119000064 ], [ -82.090850785999976, 28.894318417000079 ], [ -82.090931527999942, 28.894567848000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090931527999942, 28.894567848000065 ], [ -82.090397233999965, 28.894572035000067 ], [ -82.08889007099998, 28.894590523000033 ], [ -82.086894489999963, 28.894587208000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.088678310999967, 28.930939468000076 ], [ -82.086989062999976, 28.93093807300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086964372999944, 28.927340144000027 ], [ -82.086966854999957, 28.927816985000049 ], [ -82.08696452099997, 28.928745203000062 ], [ -82.086989062999976, 28.93093807300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086942007999937, 28.922085264000032 ], [ -82.086475058999952, 28.922081897000055 ], [ -82.085780470999964, 28.922091923000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.085800137999968, 28.920521432000044 ], [ -82.085809310999934, 28.921056699000076 ], [ -82.085795021999957, 28.921379411000032 ], [ -82.085780470999964, 28.922091923000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.085780470999964, 28.922091923000039 ], [ -82.084790712999961, 28.922084355000038 ], [ -82.084690574999968, 28.922084418000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.084745446999989, 28.920830458000069 ], [ -82.084690574999968, 28.922084418000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046164253999962, 28.838186146000055 ], [ -82.047161761999973, 28.838461629000051 ], [ -82.048014431999945, 28.838705167000057 ], [ -82.048876496999981, 28.839052848000051 ], [ -82.049355889999958, 28.83924147700003 ], [ -82.049709100999962, 28.839322792000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040877702999978, 28.83460360600003 ], [ -82.041950287999953, 28.835213649000025 ], [ -82.043027108, 28.835828376000052 ], [ -82.043650156999945, 28.836186436000048 ], [ -82.044860251999978, 28.836874024000053 ], [ -82.045497719999958, 28.837238411000044 ], [ -82.046635807999962, 28.837887963000071 ], [ -82.047428146999948, 28.838322037000069 ], [ -82.048140549999971, 28.838675505000026 ], [ -82.04837183799998, 28.838775378000037 ], [ -82.048804981999979, 28.838967727000067 ], [ -82.049166631999981, 28.839115677000052 ], [ -82.049709100999962, 28.839322792000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049936088999971, 28.839215349000028 ], [ -82.049448287999951, 28.839030428000058 ], [ -82.048947869999949, 28.838834403000078 ], [ -82.048443239999983, 28.838616165000076 ], [ -82.047885448999978, 28.838356750000059 ], [ -82.046855412999946, 28.83781179600004 ], [ -82.045483220999984, 28.837016486000039 ], [ -82.043945389999976, 28.836145124000041 ], [ -82.043012614999952, 28.835609620000071 ], [ -82.042159082999945, 28.835121642000047 ], [ -82.041145062999988, 28.834542586000055 ], [ -82.040736028999959, 28.834298957000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049936088999971, 28.839215349000028 ], [ -82.049444048999987, 28.838960091000047 ], [ -82.04851045199996, 28.838490272000058 ], [ -82.048205871999983, 28.838280545000032 ], [ -82.047629579999978, 28.837871763000066 ], [ -82.046714720999944, 28.837212632000046 ], [ -82.04612763199998, 28.836791165000079 ], [ -82.045832291999943, 28.836585187000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086862594999957, 28.906833672000062 ], [ -82.084900021999943, 28.906850260000056 ], [ -82.083666697999945, 28.90684032200005 ], [ -82.083386770999937, 28.906844066000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049585044999958, 28.88734699500003 ], [ -82.049500272999978, 28.887346652000076 ], [ -82.047511401999941, 28.887340384000026 ], [ -82.047511174999954, 28.887340383000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045412096999939, 28.887338739000029 ], [ -82.04540964499995, 28.887806314000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045412096999939, 28.887338739000029 ], [ -82.043145136999954, 28.88732826200004 ], [ -82.042091082999946, 28.887324855000031 ], [ -82.041374921999989, 28.887325076000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.082712380999965, 28.952858861000038 ], [ -82.082689958999936, 28.952883545000077 ], [ -82.08265350399995, 28.952893435000078 ], [ -82.082605820999959, 28.952893464000056 ], [ -82.081716663999941, 28.952891540000053 ], [ -82.081680695999978, 28.953523117000032 ], [ -82.081686641999966, 28.95395237200006 ], [ -82.081671141999948, 28.955647216000045 ], [ -82.081648015999974, 28.956202209000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08282739699996, 28.945597193000026 ], [ -82.082843411999988, 28.945647766000036 ], [ -82.082846662999941, 28.945718018000036 ], [ -82.082844469999941, 28.94584446500005 ], [ -82.082813822999981, 28.947611383000037 ], [ -82.082773561999943, 28.950433135000026 ], [ -82.082764601999941, 28.95151184100007 ], [ -82.08274877599996, 28.952772493000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086250614999983, 28.945543758000042 ], [ -82.08494471299997, 28.945527025000047 ], [ -82.082892398999945, 28.945566884000073 ], [ -82.08282739699996, 28.945597193000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.085780470999964, 28.922091923000039 ], [ -82.085775479999938, 28.92239362600003 ], [ -82.085781120999968, 28.922634472000027 ], [ -82.085752957999944, 28.922880199000076 ], [ -82.085753197999964, 28.923171980000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086798733999956, 28.901921593000054 ], [ -82.085203512999954, 28.901915289000044 ], [ -82.083079549, 28.901902359000076 ], [ -82.08268112199994, 28.901895295000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08268112199994, 28.901895295000031 ], [ -82.080609913999979, 28.90188117100007 ], [ -82.078348317999939, 28.901867723000066 ], [ -82.075060994999944, 28.901818372000037 ], [ -82.074295864999954, 28.901812608000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.082812548999982, 28.898719949000053 ], [ -82.082809933999954, 28.898869091000051 ], [ -82.082788280999978, 28.89914092600003 ], [ -82.082761122999955, 28.899364655000056 ], [ -82.082680814999947, 28.900628225000048 ], [ -82.082680658999948, 28.900922499000046 ], [ -82.082680627999935, 28.901131516000078 ], [ -82.082680839999966, 28.901398287000063 ], [ -82.08268112199994, 28.901895295000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070366542999977, 28.938340968000034 ], [ -82.067957624999963, 28.938341209000043 ], [ -82.066087227999958, 28.938345578000053 ], [ -82.063519639999981, 28.938360565000039 ], [ -82.061984157999973, 28.938354749000041 ], [ -82.059565168999939, 28.93836568200004 ], [ -82.059267598999952, 28.938367114000073 ], [ -82.059267505999969, 28.938367114000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051315396999939, 28.938383122000062 ], [ -82.051314733999959, 28.938383120000026 ], [ -82.049717078999947, 28.938378773000068 ], [ -82.047429056999988, 28.938358380000068 ], [ -82.047079242999985, 28.938360158000023 ], [ -82.047078748999979, 28.938360160000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039171559999943, 28.929404040000065 ], [ -82.039167006999946, 28.931025995000027 ], [ -82.039162953999949, 28.931053352000049 ], [ -82.039149802999987, 28.93107457900004 ], [ -82.039121297999941, 28.931090022000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070302136999942, 28.927334340000073 ], [ -82.06766558399994, 28.927343612000072 ], [ -82.063926551999941, 28.927349909000043 ], [ -82.05799288999998, 28.927356388000078 ], [ -82.057822534999957, 28.927357523000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066266076999966, 28.872772671000064 ], [ -82.066264916999955, 28.873545497000066 ], [ -82.066256860999943, 28.874153326000055 ], [ -82.066245046999938, 28.875178635000054 ], [ -82.066239128999939, 28.875546842000062 ], [ -82.066223708999985, 28.877097271000025 ], [ -82.06621019499994, 28.878425696000079 ], [ -82.066210614999989, 28.879088099000057 ], [ -82.066145590999952, 28.880030298000065 ], [ -82.066145803999973, 28.880366011000035 ], [ -82.06616911499998, 28.881553634000056 ], [ -82.066170028999977, 28.882995760000028 ], [ -82.066174927999953, 28.88425558800003 ], [ -82.066188110999974, 28.885639949000051 ], [ -82.066201239999941, 28.886939482000059 ], [ -82.066195308999966, 28.887287833000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062065535999977, 28.858207191000076 ], [ -82.062068217999979, 28.859151348000069 ], [ -82.062069175999966, 28.86076485600006 ], [ -82.062074769999981, 28.86205990600007 ], [ -82.06206604099998, 28.863605481000036 ], [ -82.062048211, 28.864469443000075 ], [ -82.062040465999985, 28.865465511000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061203146999958, 28.852644730000065 ], [ -82.061206388999949, 28.852648697000063 ], [ -82.061469145999979, 28.852970188000029 ], [ -82.061815717999934, 28.853353869000046 ], [ -82.06187749999998, 28.853435365000053 ], [ -82.061930018999988, 28.853511431000072 ], [ -82.061982551999961, 28.85361195400003 ], [ -82.062028915999974, 28.853717915000061 ], [ -82.06205366599994, 28.853813016000061 ], [ -82.062075344999982, 28.853935292000074 ], [ -82.062084678999952, 28.854060292000042 ], [ -82.062087832999964, 28.854171708000024 ], [ -82.062079491999953, 28.855720682000026 ], [ -82.062068057999966, 28.857256748000054 ], [ -82.062065535999977, 28.858207191000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05376059699995, 28.861839881000037 ], [ -82.053765684999973, 28.862276555000051 ], [ -82.05376457899996, 28.863900606000072 ], [ -82.053760968999939, 28.864262219000068 ], [ -82.05376096699996, 28.864262530000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054681955999968, 28.856774893000079 ], [ -82.054639235999957, 28.856765510000059 ], [ -82.054592959, 28.856759261000036 ], [ -82.054544900999986, 28.856751447000079 ], [ -82.054491504999987, 28.856746767000061 ], [ -82.054436332999956, 28.856748356000026 ], [ -82.054375824999966, 28.856754647000059 ], [ -82.054327773999944, 28.856760934000079 ], [ -82.054263705999972, 28.856767228000024 ], [ -82.054194290999988, 28.856759421000049 ], [ -82.054131995999967, 28.856754745000046 ], [ -82.054071479999948, 28.856746937000025 ], [ -82.054025210999953, 28.856751207000059 ], [ -82.053719085999944, 28.856750211000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053734944999974, 28.854561939000064 ], [ -82.053719085999944, 28.856750211000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053719085999944, 28.856750211000076 ], [ -82.053718874999959, 28.857473451000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053718874999959, 28.857473451000033 ], [ -82.053718250999964, 28.858206034000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054862898999943, 28.858189081000035 ], [ -82.053718250999964, 28.858206034000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055907174999959, 28.85747647900007 ], [ -82.055907555999966, 28.858188898000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055907555999966, 28.858188898000037 ], [ -82.054862898999943, 28.858189081000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056976836, 28.858191264000027 ], [ -82.055907555999966, 28.858188898000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056977432999986, 28.856758715000069 ], [ -82.055909570999972, 28.85675916200006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078639009999961, 28.934641761000023 ], [ -82.077918329999989, 28.934639932000039 ], [ -82.076351751999937, 28.934643078000079 ], [ -82.074596059999976, 28.934646310000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078592628999957, 28.927362336000044 ], [ -82.07860872699996, 28.92837623500003 ], [ -82.078622869999947, 28.930188222000027 ], [ -82.078628596999977, 28.931004289000043 ], [ -82.078637093999987, 28.932103621000067 ], [ -82.078638180999974, 28.933544674000075 ], [ -82.078639009999961, 28.934641761000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086964372999944, 28.927340144000027 ], [ -82.084383207999963, 28.927367823000054 ], [ -82.082185556999946, 28.927378175000058 ], [ -82.080240877999984, 28.927368107000063 ], [ -82.078592628999957, 28.927362336000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078592628999957, 28.927362336000044 ], [ -82.076093417999971, 28.927345785000057 ], [ -82.074460501999965, 28.92733770600006 ], [ -82.073198124999976, 28.927336150000031 ], [ -82.070302136999942, 28.927334340000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078639009999961, 28.934641761000023 ], [ -82.078654652999944, 28.937347623000051 ], [ -82.078680535999979, 28.938868222000053 ], [ -82.078666267999949, 28.940280055000073 ], [ -82.078654666999967, 28.941840264000064 ], [ -82.078649817999974, 28.945572159000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08282739699996, 28.945597193000026 ], [ -82.082780210999942, 28.945566645000042 ], [ -82.082731515999967, 28.945552290000023 ], [ -82.081678024999974, 28.945557148000034 ], [ -82.080789062999941, 28.945555155000079 ], [ -82.079419124999959, 28.945562715000051 ], [ -82.078649817999974, 28.945572159000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020966227999963, 28.882758096000032 ], [ -82.020744161999971, 28.882910956000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031474281999976, 28.878484789000026 ], [ -82.030244584999934, 28.878487045000043 ], [ -82.029733807999946, 28.878497738000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028882400999976, 28.857426501000077 ], [ -82.027686824999989, 28.857436772000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032464910999977, 28.858154944000034 ], [ -82.030847348999941, 28.858152830000051 ], [ -82.02886775199994, 28.858166735000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03268856699998, 28.859972936000077 ], [ -82.032670841999959, 28.859907476000046 ], [ -82.032617698999957, 28.859826437000038 ], [ -82.032543301999965, 28.859720464000077 ], [ -82.032490159999952, 28.859642544000053 ], [ -82.032465341999966, 28.859541547000049 ], [ -82.032465294999952, 28.859391913000024 ], [ -82.032464910999977, 28.858154944000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034522563999985, 28.863836087000038 ], [ -82.033498148999968, 28.863842730000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034522563999985, 28.863836087000038 ], [ -82.034526307999954, 28.864193611000076 ], [ -82.034511978999944, 28.864726708000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037091092999958, 28.867121905000033 ], [ -82.037091163999946, 28.86732336700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038623276999942, 28.867666243000031 ], [ -82.037894551999955, 28.867403317000026 ], [ -82.037814528999945, 28.86737535900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040078874999949, 28.860820577000027 ], [ -82.040073374999963, 28.859710519000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041464989999952, 28.861617078000052 ], [ -82.041809242999989, 28.860878124000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040954343999942, 28.849076823000075 ], [ -82.040690721999965, 28.849076903000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038888336999946, 28.849079403000076 ], [ -82.038710203999983, 28.849077786000066 ], [ -82.038206656999989, 28.849074933000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037516191999941, 28.849073700000076 ], [ -82.037226066999949, 28.849072354000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037520161999964, 28.850879589000044 ], [ -82.037516191999941, 28.849073700000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039623458999984, 28.851178720000064 ], [ -82.039309419999938, 28.851176582000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040957547999938, 28.851008419000038 ], [ -82.04092633099998, 28.850970614000062 ], [ -82.040900775999944, 28.850903196000047 ], [ -82.040892624999969, 28.85078190400003 ], [ -82.040931611999952, 28.849715995000054 ], [ -82.040954343999942, 28.849076823000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04094343099996, 28.851177879000033 ], [ -82.040944937999939, 28.851056579000044 ], [ -82.040957547999938, 28.851008419000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040957547999938, 28.851008419000038 ], [ -82.040991973999951, 28.850970951000079 ], [ -82.041052744999945, 28.850942392000036 ], [ -82.041156060999981, 28.850908469000046 ], [ -82.041553109999938, 28.850767432000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042997705999937, 28.850832978000028 ], [ -82.04218728799998, 28.850835017000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04218728799998, 28.850835017000065 ], [ -82.041674695999973, 28.850828041000057 ], [ -82.041624041999967, 28.850819139000066 ], [ -82.041581486999974, 28.850797747000058 ], [ -82.041553109999938, 28.850767432000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039660612999967, 28.861790942000027 ], [ -82.039555151999934, 28.862021473000027 ], [ -82.039354368999966, 28.862450367000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041136441999981, 28.86230510300004 ], [ -82.041464989999952, 28.861617078000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041605393999987, 28.862501508000037 ], [ -82.041136441999981, 28.86230510300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041280892999964, 28.863160943000025 ], [ -82.041605393999987, 28.862501508000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040105505999975, 28.862737831000061 ], [ -82.039795186999982, 28.863396892000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04050571199997, 28.863657556000078 ], [ -82.039795186999982, 28.863396892000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039795186999982, 28.863396892000026 ], [ -82.039478791999954, 28.864059894000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040193378999959, 28.864320557000042 ], [ -82.039478791999954, 28.864059894000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039478791999954, 28.864059894000036 ], [ -82.039176599999962, 28.864717529000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039883072999942, 28.864979984000058 ], [ -82.039176599999962, 28.864717529000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039478791999954, 28.864059894000036 ], [ -82.038717523999935, 28.863801026000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038589049999985, 28.86218578200004 ], [ -82.038290925999945, 28.862866644000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038717523999935, 28.863801026000033 ], [ -82.037964375999934, 28.863535005000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038081485999953, 28.866766355000038 ], [ -82.038081472999977, 28.866766350000034 ], [ -82.037309725999989, 28.866464343000075 ], [ -82.037198736999983, 28.866420584000025 ], [ -82.037100684999984, 28.866398804000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038414887999977, 28.864453038000079 ], [ -82.038067294999962, 28.865193746000045 ], [ -82.037916171999939, 28.865522861000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038717523999935, 28.863801026000033 ], [ -82.038414887999977, 28.864453038000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039176599999962, 28.864717529000075 ], [ -82.038414887999977, 28.864453038000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03716054399996, 28.863424446000067 ], [ -82.037155795, 28.864032330000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038414887999977, 28.864453038000079 ], [ -82.037959471999955, 28.864304954000033 ], [ -82.037634171999969, 28.864190516000065 ], [ -82.037155795, 28.864032330000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037155795, 28.864032330000043 ], [ -82.03715585499998, 28.864200754000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036218654999971, 28.865527912000061 ], [ -82.03622603599996, 28.866378953000037 ], [ -82.036226211999974, 28.86688422800006 ], [ -82.036218708999968, 28.867312029000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034531099999981, 28.865479462000053 ], [ -82.034531202999972, 28.866362552000055 ], [ -82.034527313999945, 28.867312472000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036218708999968, 28.867312029000061 ], [ -82.03621510399995, 28.86795541400005 ], [ -82.036215506999952, 28.869117545000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037098800999956, 28.869099511000059 ], [ -82.036215506999952, 28.869117545000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036215506999952, 28.869117545000051 ], [ -82.035427202999983, 28.869137966000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035438065999983, 28.867315605000044 ], [ -82.035430768999959, 28.868366579000053 ], [ -82.035427202999983, 28.869137966000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035427202999983, 28.869137966000039 ], [ -82.03450113599996, 28.869151679000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034527313999945, 28.867312472000037 ], [ -82.034519696999951, 28.867420267000057 ], [ -82.03450113599996, 28.869151679000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046302883999942, 28.801653318000035 ], [ -82.046254996999949, 28.801718332000064 ], [ -82.046145449999983, 28.801890660000026 ], [ -82.046050945, 28.802051622000079 ], [ -82.045971488999953, 28.802220152000075 ], [ -82.045885590999944, 28.802405724000039 ], [ -82.045821180999951, 28.802576143000067 ], [ -82.045756783999934, 28.802769279000074 ], [ -82.045705278999947, 28.802958626000077 ], [ -82.045664533999968, 28.803178262000074 ], [ -82.045636669999965, 28.803360027000053 ], [ -82.045621705999963, 28.803547468000033 ], [ -82.045613247999938, 28.803869330000055 ], [ -82.045611335999979, 28.80441459900004 ], [ -82.045611705999988, 28.805264685000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045609712999976, 28.805613189000042 ], [ -82.045609711999987, 28.805613430000051 ], [ -82.045606713999973, 28.806137722000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043696725999951, 28.799783604000027 ], [ -82.043878672999938, 28.79978251600005 ], [ -82.044211776999987, 28.799780816000066 ], [ -82.044662145999951, 28.799809708000055 ], [ -82.044866086999946, 28.799841998000034 ], [ -82.045042835999936, 28.799881087000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031427434999955, 28.91643016200004 ], [ -82.031428149999954, 28.916433058000052 ], [ -82.031530682999971, 28.916848152000057 ], [ -82.031747790999987, 28.917754292000041 ], [ -82.031962298999986, 28.918648423000036 ], [ -82.032167582999989, 28.919493764000038 ], [ -82.03241270999996, 28.920522171000073 ], [ -82.032553663999977, 28.921125217000053 ], [ -82.032786537999982, 28.922089012000072 ], [ -82.032803498999954, 28.922505509000075 ], [ -82.032931011999949, 28.923166711000079 ], [ -82.03305848499997, 28.923700837000069 ], [ -82.033176146999949, 28.924176810000063 ], [ -82.033328125999958, 28.924771237000073 ], [ -82.03359037499996, 28.925682253000048 ], [ -82.033732543999974, 28.926218526000071 ], [ -82.03382070899994, 28.926593228000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034511978999944, 28.864726708000035 ], [ -82.033503871999983, 28.864725366000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033503871999983, 28.864725366000073 ], [ -82.032827567999959, 28.864720745000056 ], [ -82.030722511999954, 28.864727625000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033498148999968, 28.863842730000044 ], [ -82.033012231999976, 28.863846042000034 ], [ -82.032375824999974, 28.863846197000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032375824999974, 28.863846197000044 ], [ -82.031518214999949, 28.863843207000059 ], [ -82.030723221999949, 28.863848924000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032377249999968, 28.862594863000027 ], [ -82.030717402999983, 28.862605719000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032995516999961, 28.862591520000024 ], [ -82.032377249999968, 28.862594863000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034509567999976, 28.862575480000032 ], [ -82.032995516999961, 28.862591520000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028776619999974, 28.945571770000072 ], [ -82.028786601999968, 28.946353493000061 ], [ -82.02880348399998, 28.948541171000045 ], [ -82.028836596999952, 28.950557037000067 ], [ -82.028858396999965, 28.952863545000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035034527999983, 28.945597251000038 ], [ -82.031921049999937, 28.945577651000065 ], [ -82.030016933999946, 28.945568637000065 ], [ -82.028776619999974, 28.945571770000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028776619999974, 28.945571770000072 ], [ -82.02580766799997, 28.945560919000059 ], [ -82.024700784999936, 28.945548231000032 ], [ -82.02373070799996, 28.945555574000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025025786999947, 28.943147171000078 ], [ -82.02488916599998, 28.943579579000072 ], [ -82.024850124999944, 28.943679807000024 ], [ -82.024817586999973, 28.943742808000025 ], [ -82.024772028999962, 28.943814404000079 ], [ -82.024723212999959, 28.943871683000054 ], [ -82.024658120999959, 28.943943281000031 ], [ -82.024606046999963, 28.943991969000024 ], [ -82.023906293999971, 28.944650691000049 ], [ -82.023857476999979, 28.944716559000028 ], [ -82.023805409999966, 28.94480247100006 ], [ -82.023766365999961, 28.944891246000054 ], [ -82.023740342999986, 28.944980017000034 ], [ -82.023727348999955, 28.945103148000044 ], [ -82.02373070799996, 28.945555574000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037282187999949, 28.927413321000074 ], [ -82.037029962999952, 28.927413323000053 ], [ -82.03637047999996, 28.927407936000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037282187999949, 28.927413321000074 ], [ -82.037270632999935, 28.92748572000005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03917353099996, 28.927411676000077 ], [ -82.038949197999955, 28.927400096000042 ], [ -82.038182610999968, 28.927400316000046 ], [ -82.037876448999953, 28.927414795000061 ], [ -82.037446294999938, 28.927411597000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037432962999958, 28.927485466000064 ], [ -82.037446294999938, 28.927411597000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035608138999976, 28.909146829000065 ], [ -82.035614036999959, 28.910205292000057 ], [ -82.035610211999938, 28.910561877000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028763912999977, 28.944685912000068 ], [ -82.028776619999974, 28.945571770000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028763912999977, 28.944685912000068 ], [ -82.028069340999934, 28.944687730000055 ], [ -82.027920548999987, 28.944684976000076 ], [ -82.02778378499994, 28.944674980000059 ], [ -82.027659681999978, 28.94466163900006 ], [ -82.027553306999948, 28.944641612000055 ], [ -82.027454527999964, 28.944619355000043 ], [ -82.027350683999941, 28.944588188000068 ], [ -82.02722657399994, 28.944545887000061 ], [ -82.027087262999942, 28.94449022200007 ], [ -82.026963150999961, 28.944427872000063 ], [ -82.026846632999934, 28.944361064000077 ], [ -82.026737711999942, 28.944289799000046 ], [ -82.026623724, 28.944207396000024 ], [ -82.026540127999965, 28.944133898000075 ], [ -82.026459062999947, 28.94405148900006 ], [ -82.026365332999944, 28.943955717000051 ], [ -82.02627666799998, 28.943857714000046 ], [ -82.026203202999966, 28.943784214000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026203202999966, 28.943784214000061 ], [ -82.026152225999965, 28.943739879000077 ], [ -82.026050690999966, 28.943658910000067 ], [ -82.025930264999943, 28.943565487000058 ], [ -82.025788594999938, 28.943476219000047 ], [ -82.025656369999979, 28.943401487000074 ], [ -82.025502897999957, 28.943324682000025 ], [ -82.025373038999987, 28.943264484000053 ], [ -82.025259706999975, 28.943218821000073 ], [ -82.025165267999967, 28.943187689000069 ], [ -82.025025786999947, 28.943147171000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025025786999947, 28.943147171000078 ], [ -82.024833085999944, 28.943105335000041 ], [ -82.024653883999974, 28.943068584000059 ], [ -82.024472925999987, 28.943040084000074 ], [ -82.024294091999934, 28.943023797000023 ], [ -82.024112307999985, 28.943013448000045 ], [ -82.023923442999944, 28.94301140400006 ], [ -82.023746384999981, 28.943021818000034 ], [ -82.023550440999941, 28.943038465000029 ], [ -82.023389910999981, 28.943057183000064 ], [ -82.023260070999982, 28.943080049000059 ], [ -82.023132592999957, 28.943104990000052 ], [ -82.022998036, 28.943138239000064 ], [ -82.022863476999987, 28.94317979300007 ], [ -82.022757249999984, 28.943217190000041 ], [ -82.022636859999977, 28.943269126000075 ], [ -82.022528274999956, 28.943327288000035 ], [ -82.02242677199996, 28.943385450000051 ], [ -82.02237248199998, 28.943424916000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02373070799996, 28.945555574000025 ], [ -82.022433445, 28.945545459000073 ], [ -82.021442141999955, 28.945538778000071 ], [ -82.020528639999952, 28.945553744000051 ], [ -82.019762346999983, 28.945556215000067 ], [ -82.018388559999948, 28.945565 ], [ -82.016350662999969, 28.945562400000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045417218999944, 28.888707793000037 ], [ -82.044280262999962, 28.888685728000041 ], [ -82.043435304999946, 28.888669467000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043396098999949, 28.887808847000031 ], [ -82.043419494999966, 28.887855597000055 ], [ -82.04343013099998, 28.88787990700007 ], [ -82.043436522999968, 28.887922923000076 ], [ -82.043432390999953, 28.888526325000043 ], [ -82.043435304999946, 28.888669467000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045421863999934, 28.889614884000025 ], [ -82.044359277999945, 28.889589054000055 ], [ -82.043435683999974, 28.889581059000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043435304999946, 28.888669467000057 ], [ -82.043435683999974, 28.889581059000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055909570999972, 28.85675916200006 ], [ -82.054861175999974, 28.856759593000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05787756999996, 28.855184155000074 ], [ -82.057878442999936, 28.856760780000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057878442999936, 28.856760780000059 ], [ -82.057341729999962, 28.856758561000049 ], [ -82.056977432999986, 28.856758715000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062065535999977, 28.858207191000076 ], [ -82.061170348999951, 28.858204883000042 ], [ -82.059237982999946, 28.858205746000067 ], [ -82.057882013999972, 28.858188065000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057882013999972, 28.858188065000036 ], [ -82.057395352999947, 28.858190721000028 ], [ -82.056976836, 28.858191264000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057878839999944, 28.857478095000033 ], [ -82.057879112999956, 28.857970178000073 ], [ -82.057882013999972, 28.858188065000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053761150999946, 28.853400234000048 ], [ -82.053734944999974, 28.854561939000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053817081999966, 28.852287195000031 ], [ -82.055487632999984, 28.852290802000027 ], [ -82.055562711999983, 28.852288323000039 ], [ -82.055640565999965, 28.852273602000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052114554999946, 28.852289700000028 ], [ -82.053817081999966, 28.852287195000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052114554999946, 28.852289700000028 ], [ -82.052112179999938, 28.853100046000066 ], [ -82.052112415999943, 28.853574993000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045571119999977, 28.81693772400007 ], [ -82.045479600999954, 28.816922305000048 ], [ -82.045240189999959, 28.816883868000048 ], [ -82.044979742999942, 28.816854272000057 ], [ -82.044854116999943, 28.816843520000077 ], [ -82.044743809999943, 28.816832763000036 ], [ -82.044648827999936, 28.816835493000042 ], [ -82.044575296999938, 28.816843612000071 ], [ -82.044507897999949, 28.816862524000044 ], [ -82.044302653999978, 28.816954337000027 ], [ -82.044124973999942, 28.817024555000046 ], [ -82.04397791699995, 28.817054284000051 ], [ -82.043840045999957, 28.817067821000023 ], [ -82.043711361999954, 28.817073261000075 ], [ -82.043545902999938, 28.817059821000043 ], [ -82.043438658999946, 28.817046364000078 ], [ -82.043349803999945, 28.817046393000055 ], [ -82.043245635999938, 28.817057219000048 ], [ -82.043104700999947, 28.81707345600006 ], [ -82.042997466999964, 28.817084283000042 ], [ -82.042822724999951, 28.817082121000055 ], [ -82.042635915999938, 28.817070906000026 ], [ -82.042449010999974, 28.81706286900004 ], [ -82.041934270999946, 28.81707112600003 ], [ -82.04181478299995, 28.817084655000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045566246999954, 28.81803029200006 ], [ -82.045566245999964, 28.818030511000075 ], [ -82.04556553599997, 28.818189787000051 ], [ -82.045560218999981, 28.820051689000024 ], [ -82.045560784999964, 28.821352321000063 ], [ -82.045557800999973, 28.821535813000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031527144999984, 28.848644926000077 ], [ -82.030963954999947, 28.849784710000051 ], [ -82.030445345999965, 28.850767290000078 ], [ -82.030127651999976, 28.851405269000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030997353999965, 28.851752834000024 ], [ -82.030127651999976, 28.851405269000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032408508999936, 28.849037877000058 ], [ -82.031471684999985, 28.850875532000032 ], [ -82.030997353999965, 28.851752834000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030997353999965, 28.851752834000024 ], [ -82.030923708999978, 28.851918946000069 ], [ -82.030858900999988, 28.852072080000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030858900999988, 28.852072080000028 ], [ -82.030198515999984, 28.851810111000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030127651999976, 28.851405269000054 ], [ -82.029729660999976, 28.851265214000023 ], [ -82.029231429999982, 28.851070679000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030666183999983, 28.848290855000073 ], [ -82.02965861499996, 28.85021415600005 ], [ -82.029231429999982, 28.851070679000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034084471999961, 28.853356678000068 ], [ -82.03244147199996, 28.852702864000037 ], [ -82.032441444999961, 28.852702853000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040125289999935, 28.855780837000054 ], [ -82.03712978599998, 28.854585289000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991546186999983, 28.823690747000057 ], [ -81.990790825999966, 28.823144399000057 ], [ -81.989434193999955, 28.822194680000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991546186999983, 28.823690747000057 ], [ -81.990993599999968, 28.82431930100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040624959999946, 28.845943657000078 ], [ -82.040377526999976, 28.845952400000044 ], [ -82.039999159, 28.846130416000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039999159, 28.846130416000051 ], [ -82.039997020999976, 28.84529771900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039997020999976, 28.84529771900003 ], [ -82.039996856999949, 28.844589589000066 ], [ -82.039996796999958, 28.844432793000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040623518999951, 28.844437128000038 ], [ -82.039996796999958, 28.844432793000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041673147999973, 28.844331272000034 ], [ -82.041313554999988, 28.844329875000028 ], [ -82.040933412999948, 28.844328483000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043882304999954, 28.845064474000026 ], [ -82.043847742999958, 28.84508274600006 ], [ -82.043824700999949, 28.845090870000035 ], [ -82.043792439999947, 28.845098997000036 ], [ -82.043764786999986, 28.845103064000057 ], [ -82.043737132999979, 28.845105102000048 ], [ -82.041801285999952, 28.845095571000058 ], [ -82.041766711999969, 28.845085436000033 ], [ -82.041743662999977, 28.845073269000068 ], [ -82.04172060999997, 28.845057043000054 ], [ -82.041697556999964, 28.845036760000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040933412999948, 28.844328483000027 ], [ -82.040929995999988, 28.84435109900005 ], [ -82.040919732999953, 28.844379748000051 ], [ -82.040899196999987, 28.844405385000073 ], [ -82.040878652999936, 28.844420467000077 ], [ -82.040846121999948, 28.844431031000056 ], [ -82.040784477999978, 28.844434064000041 ], [ -82.040623518999951, 28.844437128000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039996796999958, 28.844432793000067 ], [ -82.039998299, 28.843882496000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039998299, 28.843882496000049 ], [ -82.039378425999985, 28.843867602000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039374575999943, 28.845295264000072 ], [ -82.039376569999945, 28.844905155000049 ], [ -82.039378425999985, 28.843867602000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038714054999957, 28.843913025000063 ], [ -82.038418516999968, 28.843618389000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039378425999985, 28.843867602000046 ], [ -82.038791100999958, 28.843888880000065 ], [ -82.038714054999957, 28.843913025000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038582375999965, 28.844666043000075 ], [ -82.038715036999974, 28.844541624000044 ], [ -82.038766384999974, 28.844481304000055 ], [ -82.038791305999951, 28.844440683000073 ], [ -82.038816969999971, 28.844383384000025 ], [ -82.038837496999975, 28.844324580000034 ], [ -82.038846036999985, 28.844268795000062 ], [ -82.038844299999937, 28.844200950000072 ], [ -82.038834002999977, 28.84413913800006 ], [ -82.038813431999984, 28.844080346000055 ], [ -82.038784299999975, 28.844020048000061 ], [ -82.038751745999946, 28.843965782000055 ], [ -82.038714054999957, 28.843913025000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038745722999977, 28.846195612000031 ], [ -82.03811839399998, 28.846022127000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038899744999981, 28.846238630000073 ], [ -82.038745722999977, 28.846195612000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038745722999977, 28.846195612000031 ], [ -82.038753843999984, 28.845295443000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039374219999956, 28.846340165000072 ], [ -82.038899744999981, 28.846238630000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039374219999956, 28.846340165000072 ], [ -82.039374575999943, 28.845295264000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040001642999982, 28.846465870000031 ], [ -82.039865712999983, 28.846442541000044 ], [ -82.039562596999986, 28.846380817000068 ], [ -82.039374219999956, 28.846340165000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041673147999973, 28.844331272000034 ], [ -82.041674709999938, 28.84395435700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041674539999974, 28.843527689000041 ], [ -82.041674512999975, 28.843459844000051 ], [ -82.04167449199997, 28.843405569000026 ], [ -82.041665913999964, 28.843367880000073 ], [ -82.041647065999939, 28.84333622500003 ], [ -82.041629933999957, 28.843315123000025 ], [ -82.041595677999965, 28.843291011000076 ], [ -82.041556288999971, 28.843278962000056 ], [ -82.041510054999947, 28.843274453000049 ], [ -82.041451834999975, 28.843272963000061 ], [ -82.041381629999989, 28.843272984000066 ], [ -82.041309711999986, 28.843273006000061 ], [ -82.040576838999982, 28.843270534000055 ], [ -82.040551145999984, 28.843265699000028 ], [ -82.040531159999944, 28.843254673000047 ], [ -82.040376626999944, 28.843141866000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040136255999982, 28.849079652000057 ], [ -82.039580025999953, 28.849074660000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014354046999983, 28.813945920000037 ], [ -82.012509361999946, 28.812198984000077 ], [ -82.010133297999971, 28.809954504000075 ], [ -82.008027324999944, 28.807954089000077 ], [ -82.004765926999937, 28.804859881000027 ], [ -82.004276372999982, 28.804400181000062 ], [ -82.002149027999963, 28.802390163000041 ], [ -82.00073168299997, 28.801044970000078 ], [ -81.999851242999966, 28.800216168000077 ], [ -81.999458071999982, 28.799840245000041 ], [ -81.999165716999983, 28.799564962000034 ], [ -81.998549087999947, 28.798972214000059 ], [ -81.995789458, 28.796352542000079 ], [ -81.994974616999968, 28.795590310000023 ], [ -81.992920765999941, 28.793651407000027 ], [ -81.991341579999983, 28.792156505000037 ], [ -81.990900590999956, 28.791745774000049 ], [ -81.990476402999946, 28.791372041000045 ], [ -81.99005221699997, 28.790998309000031 ], [ -81.989594433999969, 28.790620872000034 ], [ -81.989119853999966, 28.790243432000068 ], [ -81.988641076999954, 28.789873390000025 ], [ -81.988246295999943, 28.789569955000047 ], [ -81.98797751099994, 28.78938123000006 ], [ -81.987670925999964, 28.789159200000029 ], [ -81.987578531999986, 28.789092592000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093208600999958, 28.873430530000064 ], [ -82.093089784999961, 28.872943944000042 ], [ -82.092994246999979, 28.872561595000036 ], [ -82.092678939999985, 28.871204222000074 ], [ -82.092597960999967, 28.870708031000049 ], [ -82.092553400999975, 28.870410313000036 ], [ -82.092476465999937, 28.869931841000039 ], [ -82.092358882999974, 28.869020954000064 ], [ -82.092213152999989, 28.868156166000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037100684999984, 28.866398804000028 ], [ -82.037091092999958, 28.867121905000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041329502999986, 28.847391176000031 ], [ -82.041351048999957, 28.847176924000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012494603999983, 28.84345773900003 ], [ -82.011265167999966, 28.842616474000067 ], [ -82.009985053999969, 28.841735031000042 ], [ -82.008393180999974, 28.840632651000078 ], [ -82.006497170999978, 28.83932717700003 ], [ -82.004515030999983, 28.837997130000076 ], [ -82.003833205999968, 28.837539641000035 ], [ -82.003638701999989, 28.837402244000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137617912999985, 28.943983700000047 ], [ -82.138178914999969, 28.943980960000033 ], [ -82.139389072999961, 28.943974644000036 ], [ -82.142411769999967, 28.943980876000069 ], [ -82.144548929999985, 28.943976125000063 ], [ -82.145474095999987, 28.943975128000034 ], [ -82.146492049999949, 28.943966603000035 ], [ -82.147318947999963, 28.943972042000041 ], [ -82.149709629999961, 28.943968716000029 ], [ -82.15088941099998, 28.943967311000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137633196999957, 28.941019714000049 ], [ -82.137629100999959, 28.943407049000029 ], [ -82.137617912999985, 28.943983700000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137617912999985, 28.943983700000047 ], [ -82.137626825999973, 28.945469159000027 ], [ -82.137616890999936, 28.949062136000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024816268999984, 28.839979991000064 ], [ -82.024791989999983, 28.840022702000056 ], [ -82.024779416999934, 28.840067023000074 ], [ -82.024765610999964, 28.840140297000062 ], [ -82.024758734999978, 28.840304654000079 ], [ -82.024722030999953, 28.841012810000052 ], [ -82.024726462999979, 28.841523790000053 ], [ -82.02475125999996, 28.842094557000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990993599999968, 28.82431930100006 ], [ -81.990739972999961, 28.82465135800004 ], [ -81.990551961999984, 28.824848075000034 ], [ -81.990158553999947, 28.825190290000023 ], [ -81.990039162999949, 28.825328419000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991694947999974, 28.82480010300003 ], [ -81.991217811999945, 28.825340616000062 ], [ -81.991175152999972, 28.825386524000066 ], [ -81.991125383999986, 28.825432432000071 ], [ -81.991066136999962, 28.82547416400007 ], [ -81.990995040999962, 28.825520070000039 ], [ -81.990644299999985, 28.825749600000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99314755599994, 28.825805150000065 ], [ -81.992949072999977, 28.826021184000069 ], [ -81.992354409999962, 28.826701399000058 ], [ -81.992230379999967, 28.826845355000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007951134999985, 28.799643079000077 ], [ -82.007029512999964, 28.799642659000028 ], [ -82.006199501999959, 28.799654159000056 ], [ -82.005394207999984, 28.799647318000041 ], [ -82.005041863999963, 28.799648287000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041351048999957, 28.847176924000053 ], [ -82.041642972999966, 28.847205620000068 ], [ -82.041910751999978, 28.847230354000033 ], [ -82.042238422999958, 28.847248863000061 ], [ -82.042703503999974, 28.847276635000071 ], [ -82.043256662999966, 28.847295071000076 ], [ -82.04366184099996, 28.847298042000034 ], [ -82.044789368999943, 28.847294545000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994699426999944, 28.826851453000074 ], [ -81.994438292999973, 28.827120153000067 ], [ -81.994092517999945, 28.827500729000064 ], [ -81.993836945999988, 28.827748930000041 ], [ -81.99372062499998, 28.827878030000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993922109999971, 28.826329033000036 ], [ -81.993696058999944, 28.82658439000005 ], [ -81.992995133999955, 28.827369952000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010800967999955, 28.837480678000077 ], [ -82.011224821999974, 28.837626409000052 ], [ -82.011819670999955, 28.837821533000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004304249999961, 28.835163965000049 ], [ -82.004328131999955, 28.835175759000037 ], [ -82.004674394999938, 28.835337862000074 ], [ -82.005119087999958, 28.835533744000031 ], [ -82.005497874999946, 28.83569207100004 ], [ -82.006194587999971, 28.835955025000032 ], [ -82.00686854199995, 28.836184035000031 ], [ -82.008160718999989, 28.83661230000007 ], [ -82.009086360999959, 28.836917135000078 ], [ -82.009631536999962, 28.837096319000068 ], [ -82.009633418999954, 28.837096938000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091931484999975, 28.868202570000051 ], [ -82.091906107999989, 28.868744669000023 ], [ -82.091892188999964, 28.869496253000079 ], [ -82.091880415999981, 28.869847178000043 ], [ -82.091874569999959, 28.870300585000052 ], [ -82.091869015999976, 28.870619914000031 ], [ -82.091865732999963, 28.870944053000073 ], [ -82.09184572099997, 28.871605335000027 ], [ -82.091840623999985, 28.871792363000054 ], [ -82.091769504999945, 28.872939722000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070480079999982, 28.793881463000048 ], [ -82.070438498999977, 28.793481178000036 ], [ -82.070319496999957, 28.792624828000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069487786999957, 28.799868674000038 ], [ -82.069486354999981, 28.79923657300003 ], [ -82.069484102, 28.798782780000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069487786999957, 28.799868674000038 ], [ -82.069181372999935, 28.799871864000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069928478999941, 28.799877544000026 ], [ -82.069487786999957, 28.799868674000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069181372999935, 28.799871864000067 ], [ -82.069181933999971, 28.800814051000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069181372999935, 28.799871864000067 ], [ -82.068475583999941, 28.799866159000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068475583999941, 28.799866159000032 ], [ -82.067443689999948, 28.799865465000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067443689999948, 28.799865465000039 ], [ -82.066390446999947, 28.799862104000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066348581999989, 28.799862125000061 ], [ -82.065355618999945, 28.799861943000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066390446999947, 28.799862104000056 ], [ -82.066348581999989, 28.799862125000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070527264999953, 28.799884146000068 ], [ -82.070527883999944, 28.799434774000076 ], [ -82.07052469599995, 28.798791859000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070527264999953, 28.799884146000068 ], [ -82.069928478999941, 28.799877544000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070527879999986, 28.800796964000028 ], [ -82.070531289999963, 28.800748441000053 ], [ -82.070527264999953, 28.799884146000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068475583999941, 28.799866159000032 ], [ -82.068493143999945, 28.800816208000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037531436999984, 28.847589884000058 ], [ -82.037317302999952, 28.847593282000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038892240999985, 28.848111716000062 ], [ -82.03841469799994, 28.848111853000034 ], [ -82.037544885999978, 28.848103756000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037544885999978, 28.848103756000057 ], [ -82.037522129999957, 28.848057046000065 ], [ -82.037514529999953, 28.848001990000057 ], [ -82.037531436999984, 28.847589884000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038895375999971, 28.848663354000053 ], [ -82.038499702999957, 28.848664077000024 ], [ -82.038207874999955, 28.848679175000029 ], [ -82.038179447999937, 28.848670841000057 ], [ -82.038153386999966, 28.848660422000023 ], [ -82.038129694999952, 28.848645829000077 ], [ -82.03810363599996, 28.848639580000054 ], [ -82.038069525999958, 28.848639173000038 ], [ -82.038041099999987, 28.848639181000067 ], [ -82.038010779999979, 28.848639190000029 ], [ -82.037986143999944, 28.84864086500005 ], [ -82.037944449999941, 28.848629197000037 ], [ -82.037906542999963, 28.848610855000061 ], [ -82.03786673999997, 28.848587509000026 ], [ -82.037838301999955, 28.848552063000056 ], [ -82.037821703999953, 28.848506185000076 ], [ -82.037812211999949, 28.84846030600005 ], [ -82.037792761999981, 28.848390656000049 ], [ -82.037775562999968, 28.848359397000024 ], [ -82.037544885999978, 28.848103756000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040129199999967, 28.84748313700004 ], [ -82.039632486999949, 28.847509200000047 ], [ -82.039605957999981, 28.847514213000068 ], [ -82.039587876999974, 28.847519738000074 ], [ -82.039575437999986, 28.847529328000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039544013999944, 28.849074207000058 ], [ -82.03933832499996, 28.849075761000051 ], [ -82.039242705999982, 28.849075963000075 ], [ -82.039130899999975, 28.849079333000077 ], [ -82.038964136999937, 28.849079381000024 ], [ -82.038888336999946, 28.849079403000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039544013999944, 28.849074207000058 ], [ -82.039540470999953, 28.847607395000068 ], [ -82.039542793999942, 28.847580691000076 ], [ -82.039546675999986, 28.84756494100003 ], [ -82.039558333999935, 28.847545082000067 ], [ -82.039575437999986, 28.847529328000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030717402999983, 28.862605719000044 ], [ -82.029971599999953, 28.862596715000052 ], [ -82.029244089999963, 28.862590890000035 ], [ -82.028888022, 28.862574923000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02887691799998, 28.861857321000059 ], [ -82.028867595999941, 28.861597406000044 ], [ -82.028871217999949, 28.860957317000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037142788999972, 28.858203393000053 ], [ -82.036171631999935, 28.858173256000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036171631999935, 28.858173256000043 ], [ -82.03516246199996, 28.858155110000041 ], [ -82.034141094999939, 28.858146167000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034347087999947, 28.859137330000067 ], [ -82.034228408999979, 28.858657097000048 ], [ -82.03418129399995, 28.858486791000075 ], [ -82.034146359999966, 28.858258176000049 ], [ -82.034141094999939, 28.858146167000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034141094999939, 28.858146167000029 ], [ -82.032464910999977, 28.858154944000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03617795599996, 28.859135797000079 ], [ -82.035159305999969, 28.859134052000059 ], [ -82.034347087999947, 28.859137330000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037098800999956, 28.869099511000059 ], [ -82.037101194999934, 28.86926191200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03775285599994, 28.869506363000028 ], [ -82.037101194999934, 28.86926191200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037101194999934, 28.86926191200007 ], [ -82.037087432999954, 28.869969085000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037096281999936, 28.868583525000076 ], [ -82.037098800999956, 28.869099511000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038046890999965, 28.868891619000067 ], [ -82.037262726999984, 28.868637470000067 ], [ -82.037262092999981, 28.868637265000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037091346999944, 28.86783729800004 ], [ -82.037096281999936, 28.868583525000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03832224699994, 28.868295381000053 ], [ -82.037539433999939, 28.868004055000029 ], [ -82.037539317999972, 28.868004012000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037091163999946, 28.86732336700004 ], [ -82.037091346999944, 28.86783729800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038290925999945, 28.862866644000064 ], [ -82.037964375999934, 28.863535005000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037160483999969, 28.863256485000079 ], [ -82.03716054399996, 28.863424446000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037964375999934, 28.863535005000074 ], [ -82.037160483999969, 28.863256485000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037160235999977, 28.862557841000068 ], [ -82.037042518999954, 28.862582888000077 ], [ -82.036987714999952, 28.862584691000052 ], [ -82.036594639999976, 28.86257493100004 ], [ -82.035846732999971, 28.862572638000074 ], [ -82.034509567999976, 28.862575480000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037160235999977, 28.862557841000068 ], [ -82.037160483999969, 28.863256485000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037162241999965, 28.862491728000066 ], [ -82.037160235999977, 28.862557841000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038290925999945, 28.862866644000064 ], [ -82.037335285999973, 28.862531671000056 ], [ -82.037288711999963, 28.862515346000066 ], [ -82.037162241999965, 28.862491728000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037155857999949, 28.861666221000064 ], [ -82.037162241999965, 28.862491728000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037155716999962, 28.861265974000048 ], [ -82.037155857999949, 28.861666221000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040078874999949, 28.860820577000027 ], [ -82.039710985999989, 28.860818899000037 ], [ -82.038783401999979, 28.860824530000059 ], [ -82.038308455999982, 28.860852898000076 ], [ -82.037886267999966, 28.860844083000075 ], [ -82.037539182999978, 28.860835245000033 ], [ -82.037150986999961, 28.860812483000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039660612999967, 28.861790942000027 ], [ -82.039684948999934, 28.861739116000024 ], [ -82.03971943199997, 28.861678355000038 ], [ -82.039792459999944, 28.861563978000049 ], [ -82.039904041999989, 28.861422786000048 ], [ -82.039936500999943, 28.861381322000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039952731999961, 28.861363878000077 ], [ -82.040005957999938, 28.861273521000044 ], [ -82.040033211999969, 28.861204899000029 ], [ -82.040046020999966, 28.861156508000079 ], [ -82.040052662999983, 28.86111569600007 ], [ -82.040060192999988, 28.861061803000041 ], [ -82.040068772999973, 28.86093895700003 ], [ -82.040078874999949, 28.860820577000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041464989999952, 28.861617078000052 ], [ -82.041278230999978, 28.861559957000054 ], [ -82.041121929999974, 28.861533203000079 ], [ -82.040782950999983, 28.861506503000044 ], [ -82.040486603999966, 28.861494085000061 ], [ -82.040431797999986, 28.861483380000038 ], [ -82.039952731999961, 28.861363878000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039952731999961, 28.861363878000077 ], [ -82.039936500999943, 28.861381322000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039354368999966, 28.862450367000065 ], [ -82.039037819999976, 28.863136023000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039037819999976, 28.863136023000038 ], [ -82.038717523999935, 28.863801026000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039037819999976, 28.863136023000038 ], [ -82.038290925999945, 28.862866644000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039795186999982, 28.863396892000026 ], [ -82.039037819999976, 28.863136023000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03716054399996, 28.863424446000067 ], [ -82.036522298999955, 28.86342662900006 ], [ -82.035985618999973, 28.863433491000023 ], [ -82.035951170999965, 28.863438288000054 ], [ -82.035925793, 28.863454256000068 ], [ -82.035913108999978, 28.863479797000025 ], [ -82.035913124, 28.863519699000051 ], [ -82.035914981999952, 28.863652174000038 ], [ -82.035916828999973, 28.863747939000064 ], [ -82.035912187999941, 28.863780147000057 ], [ -82.035906107999949, 28.863808737000056 ], [ -82.035886030999961, 28.863826155000027 ], [ -82.035862464, 28.86383414200003 ], [ -82.035828014999936, 28.863834151000049 ], [ -82.035775433999959, 28.863834165000071 ], [ -82.035659392999946, 28.863834196000028 ], [ -82.034522563999985, 28.863836087000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037138847999984, 28.85995245600003 ], [ -82.035795179, 28.859951032000026 ], [ -82.034511520999956, 28.859953297000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040073374999963, 28.859710519000032 ], [ -82.040076539999973, 28.859122978000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040073374999963, 28.859710519000032 ], [ -82.038305824999952, 28.85972436000003 ], [ -82.038305612999977, 28.859144402000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040076539999973, 28.859122978000073 ], [ -82.040083868999943, 28.858385914000053 ], [ -82.040076226999986, 28.858305510000037 ], [ -82.040066052999975, 28.858242975000053 ], [ -82.04003557599998, 28.858158109000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040365323999936, 28.857963695000024 ], [ -82.04003557599998, 28.858158109000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040470124999956, 28.856048643000065 ], [ -82.040435602999935, 28.856003982000061 ], [ -82.040405146999944, 28.855971829000055 ], [ -82.040375925999967, 28.855944263000026 ], [ -82.040340537999953, 28.855907939000076 ], [ -82.040284509999935, 28.855863837000072 ], [ -82.040125289999935, 28.855780837000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040365323999936, 28.857963695000024 ], [ -82.040324707999957, 28.85790786900003 ], [ -82.040294236999955, 28.857840872000054 ], [ -82.040265792999946, 28.857764048000035 ], [ -82.040255621999961, 28.857706873000041 ], [ -82.040249504999963, 28.857635402000028 ], [ -82.040257595999947, 28.857562141000074 ], [ -82.040269748999947, 28.857496024000056 ], [ -82.040285965999942, 28.857445989000041 ], [ -82.040363036999963, 28.857301234000033 ], [ -82.040419831999941, 28.85720651500003 ], [ -82.040446197999984, 28.857154689000026 ], [ -82.04046038599995, 28.857101081000053 ], [ -82.040470511999956, 28.857049260000053 ], [ -82.040529152999966, 28.856481035000058 ], [ -82.040537228999938, 28.856370249000065 ], [ -82.040537201999939, 28.856302350000078 ], [ -82.040533116999939, 28.856238026000028 ], [ -82.040522948999978, 28.856186212000068 ], [ -82.040500599999973, 28.856125467000027 ], [ -82.040470124999956, 28.856048643000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041267895999965, 28.856362880000063 ], [ -82.041119690999949, 28.856257504000041 ], [ -82.040967430999956, 28.856162849000043 ], [ -82.040770509999959, 28.856046766000077 ], [ -82.040693370999975, 28.856012840000062 ], [ -82.040654804999974, 28.85600570400004 ], [ -82.040622331999941, 28.856009287000063 ], [ -82.040549269999985, 28.856023604000029 ], [ -82.040470124999956, 28.856048643000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041290060999984, 28.857109718000061 ], [ -82.041291588999968, 28.857021711000073 ], [ -82.041280330999939, 28.856699936000041 ], [ -82.041267895999965, 28.856362880000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042723514999977, 28.857254049000062 ], [ -82.043039821999969, 28.856476684000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042969529999937, 28.858292111000026 ], [ -82.042863971999964, 28.858254622000061 ], [ -82.042660984999941, 28.858208228000024 ], [ -82.042482370999949, 28.858204712000031 ], [ -82.042226633999974, 28.858210153000073 ], [ -82.042072381999958, 28.858220922000044 ], [ -82.041832886999941, 28.858235290000039 ], [ -82.041552788, 28.858230017000039 ], [ -82.041349820999983, 28.858228291000046 ], [ -82.040999697999951, 28.858222592000061 ], [ -82.040872842999988, 28.85821816400005 ], [ -82.040766278999968, 28.858207028000038 ], [ -82.04068000999996, 28.858186953000029 ], [ -82.040603885999985, 28.858155706000048 ], [ -82.04052775599996, 28.858115526000063 ], [ -82.040482074999943, 28.858082037000031 ], [ -82.040449082999942, 28.85805524500006 ], [ -82.040423701999941, 28.858028449000074 ], [ -82.040390705999982, 28.857992723000052 ], [ -82.040365323999936, 28.857963695000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042624802999967, 28.859073059000025 ], [ -82.042839751999963, 28.858586976000026 ], [ -82.042969529999937, 28.858292111000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041809242999989, 28.860878124000067 ], [ -82.042204690999938, 28.860013628000047 ], [ -82.042624802999967, 28.859073059000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040739008999935, 28.860820478000051 ], [ -82.040078874999949, 28.860820577000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041809242999989, 28.860878124000067 ], [ -82.04165192399995, 28.860840203000066 ], [ -82.041342386999986, 28.860835830000042 ], [ -82.040739008999935, 28.860820478000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040739008999935, 28.860820478000051 ], [ -82.040735062999943, 28.858820753000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044372574999954, 28.855371886000057 ], [ -82.043806309999979, 28.855370285000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042969529999937, 28.858292111000026 ], [ -82.042993862999936, 28.858234925000033 ], [ -82.043099068999936, 28.858032870000045 ], [ -82.043658769999979, 28.856862325000066 ], [ -82.044263074999947, 28.855604209000035 ], [ -82.044372574999954, 28.855371886000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043806309999979, 28.855370285000049 ], [ -82.043292822999945, 28.855388320000031 ], [ -82.043006134999985, 28.85537813600007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044372574999954, 28.855371886000057 ], [ -82.044814618999965, 28.854403732000037 ], [ -82.045116250999968, 28.853773778000061 ], [ -82.04522777699998, 28.853539221000062 ], [ -82.045275929999946, 28.853425296000069 ], [ -82.045308875999979, 28.853347111000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045308875999979, 28.853347111000062 ], [ -82.044613741999967, 28.853342876000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044613741999967, 28.853342876000056 ], [ -82.043817131999958, 28.853345371000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045308875999979, 28.853347111000062 ], [ -82.045344351999972, 28.853248825000037 ], [ -82.045369678999975, 28.853150541000048 ], [ -82.045395003999943, 28.853050024000026 ], [ -82.045405117999962, 28.852971848000038 ], [ -82.045410145999938, 28.852864637000039 ], [ -82.045409810999956, 28.852094072000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043002763999937, 28.853352334000078 ], [ -82.042984779999983, 28.852805127000067 ], [ -82.042988088999948, 28.852081601000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043817131999958, 28.853345371000046 ], [ -82.043002763999937, 28.853352334000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043006134999985, 28.85537813600007 ], [ -82.043003098999975, 28.854167569000026 ], [ -82.043005366999978, 28.853510913000036 ], [ -82.043002763999937, 28.853352334000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043002763999937, 28.853352334000078 ], [ -82.042211228999975, 28.853359285000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045409810999956, 28.852094072000057 ], [ -82.045409675999963, 28.851781379000045 ], [ -82.045419490999961, 28.851017510000077 ], [ -82.045419446999972, 28.850914769000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045419446999972, 28.850914769000042 ], [ -82.045416872999965, 28.850829895000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045416872999965, 28.850829895000061 ], [ -82.044620279999947, 28.850830161000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044620279999947, 28.850830161000033 ], [ -82.044006344999957, 28.850828130000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044006344999957, 28.850828130000025 ], [ -82.043788677999942, 28.850827754000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044006344999957, 28.850828130000025 ], [ -82.044011553999951, 28.849941419000061 ], [ -82.044011523999984, 28.849871733000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044011523999984, 28.849871733000043 ], [ -82.044013427999971, 28.84957333400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043724893, 28.848749705000046 ], [ -82.043446914999947, 28.848901673000057 ], [ -82.043018793999977, 28.849151966000079 ], [ -82.041894709999951, 28.849800935000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041894709999951, 28.849800935000076 ], [ -82.041789192999943, 28.849849211000048 ], [ -82.041740491999974, 28.849863521000032 ], [ -82.041561894999973, 28.849867151000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041553109999938, 28.850767432000055 ], [ -82.041538915999979, 28.850738897000042 ], [ -82.041532821999965, 28.850697872000069 ], [ -82.041534827999953, 28.850649710000027 ], [ -82.04156093499995, 28.850068201000056 ], [ -82.041561894999973, 28.849867151000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041561894999973, 28.849867151000069 ], [ -82.04154764499998, 28.849756372000058 ], [ -82.04153544199994, 28.849693836000029 ], [ -82.041523248999965, 28.849650957000051 ], [ -82.041421691999972, 28.849445504000073 ], [ -82.041374966999967, 28.849329375000025 ], [ -82.041348556999935, 28.849263271000041 ], [ -82.041326209999966, 28.84920431300003 ], [ -82.041309918999957, 28.849133848000065 ], [ -82.041309895999973, 28.849077906000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042988088999948, 28.852081601000066 ], [ -82.042994458999942, 28.851666028000068 ], [ -82.04299427899997, 28.851228257000059 ], [ -82.042997705999937, 28.850832978000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043788677999942, 28.850827754000079 ], [ -82.042997705999937, 28.850832978000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045416872999965, 28.850829895000061 ], [ -82.045416784999986, 28.850626644000045 ], [ -82.045421375999979, 28.849514348000071 ], [ -82.045422164999934, 28.848994720000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040947727999935, 28.852833119000024 ], [ -82.040319342999965, 28.852833818000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039696748999972, 28.852836551000053 ], [ -82.03969538399997, 28.851178253000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040319342999965, 28.852833818000079 ], [ -82.039696748999972, 28.852836551000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039696748999972, 28.852836551000053 ], [ -82.039482462999956, 28.852844263000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040892389999954, 28.854240418000074 ], [ -82.040855615999988, 28.854251136000073 ], [ -82.040815076999934, 28.854256246000034 ], [ -82.040765847999978, 28.854253712000059 ], [ -82.040319889999978, 28.854253846000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040319889999978, 28.854253846000063 ], [ -82.039697287999957, 28.854256580000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039697287999957, 28.854256580000026 ], [ -82.039696748999972, 28.852836551000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039697287999957, 28.854256580000026 ], [ -82.039419287999976, 28.854254112000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044667678999986, 28.858907369000065 ], [ -82.04477209099997, 28.858921446000068 ], [ -82.045422290999966, 28.859167759000059 ], [ -82.045472709999956, 28.859193432000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045516325999984, 28.861875970000028 ], [ -82.04577366999996, 28.861875883000039 ], [ -82.045861220999939, 28.861880524000071 ], [ -82.045927551999966, 28.861889843000029 ], [ -82.045983270999955, 28.861903837000057 ], [ -82.046038997999972, 28.861934180000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017611251999938, 28.839733240000044 ], [ -82.01766226899997, 28.839604832000077 ], [ -82.017686407999975, 28.839544001000036 ], [ -82.01772054199995, 28.839446914000064 ], [ -82.017754397999965, 28.839317253000047 ], [ -82.017752841999936, 28.839169708000043 ], [ -82.017715499999952, 28.838962126000069 ], [ -82.017626177999944, 28.838766195000062 ], [ -82.017590881, 28.838715051000065 ], [ -82.017569270999957, 28.838678313000059 ], [ -82.017544058999988, 28.838650940000036 ], [ -82.017479228999946, 28.838575305000063 ], [ -82.017372193999961, 28.838482268000064 ], [ -82.017259802999945, 28.838389143000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019582133999961, 28.838644051000074 ], [ -82.019850044999941, 28.838928208000027 ], [ -82.019973377999975, 28.839077087000078 ], [ -82.020020191999947, 28.839145472000041 ], [ -82.020054432999984, 28.839213563000044 ], [ -82.020075584999972, 28.839291110000033 ], [ -82.020086170999946, 28.83937796500004 ], [ -82.020089799999937, 28.839464890000045 ], [ -82.020087930999978, 28.839514542000074 ], [ -82.020076481, 28.839568152000027 ], [ -82.020063515999936, 28.839623779000078 ], [ -82.020046607999973, 28.839673435000066 ], [ -82.020022822999977, 28.839719197000079 ], [ -82.019997753999974, 28.839761160000023 ], [ -82.019967686999962, 28.839800886000035 ], [ -82.019928220999986, 28.839843924000036 ], [ -82.019695168999988, 28.839997879000066 ], [ -82.019550447999961, 28.840077343000075 ], [ -82.019503461999989, 28.84011541700005 ], [ -82.019477153999958, 28.84014852200005 ], [ -82.019462750999935, 28.840178378000076 ], [ -82.019413456999985, 28.840330384000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03888505499998, 28.846753928000055 ], [ -82.039182493999988, 28.846820497000067 ], [ -82.039612425999962, 28.846912020000048 ], [ -82.040080208999939, 28.84699758000005 ], [ -82.040531766999948, 28.847071240000048 ], [ -82.040881916999979, 28.847118996000063 ], [ -82.041351048999957, 28.847176924000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037250019999988, 28.846291073000032 ], [ -82.037384745999987, 28.846335513000042 ], [ -82.037497066999947, 28.846369666000044 ], [ -82.038008976999947, 28.846524374000069 ], [ -82.038382111999965, 28.846629096000072 ], [ -82.038764292999986, 28.846725667000044 ], [ -82.03888505499998, 28.846753928000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.088791746999959, 28.814439947000039 ], [ -82.08887888199996, 28.815949442000033 ], [ -82.089074814999947, 28.819174944000054 ], [ -82.089230061999956, 28.821872320000068 ], [ -82.089466984999945, 28.825934327000027 ], [ -82.089618039999948, 28.828415479000057 ], [ -82.089687551999987, 28.829677326000024 ], [ -82.089769191999949, 28.830999424000026 ], [ -82.089916209999956, 28.833448674000067 ], [ -82.090071552999973, 28.836206300000072 ], [ -82.09012054699997, 28.837003812000034 ], [ -82.090361610999935, 28.841118978000054 ], [ -82.09052496399994, 28.843802158000074 ], [ -82.090704769999945, 28.846878780000054 ], [ -82.090851997999948, 28.849515889000031 ], [ -82.090864401999966, 28.849891612000079 ], [ -82.090864700999987, 28.850235441000052 ], [ -82.090856934999977, 28.850565097000072 ], [ -82.090837146999945, 28.850958566000031 ], [ -82.090801216999978, 28.851309508000043 ], [ -82.090769314999989, 28.851663992000056 ], [ -82.090721314999939, 28.852025577000063 ], [ -82.090669265999963, 28.852362352000057 ], [ -82.090585081999961, 28.852784220000046 ], [ -82.090496879999989, 28.853216724000049 ], [ -82.090396592, 28.853642147000073 ], [ -82.090332416999956, 28.853925761000028 ], [ -82.090147868999964, 28.854687979000062 ], [ -82.090083713999945, 28.854996405000065 ], [ -82.090019545999951, 28.855290653000054 ], [ -82.089979532999962, 28.855581339000025 ], [ -82.089939495999943, 28.855843668000034 ], [ -82.089911516999962, 28.856081178000068 ], [ -82.089883533999966, 28.856315141000039 ], [ -82.089867598999945, 28.856513651000057 ], [ -82.089847644999963, 28.856719252000062 ], [ -82.089826538999944, 28.857018071000027 ], [ -82.089820037999971, 28.857392751000077 ], [ -82.089812256999949, 28.857708228000035 ], [ -82.089816506999966, 28.857970528000067 ], [ -82.089828931999989, 28.85837106300005 ], [ -82.089845258999958, 28.858629809000035 ], [ -82.089865631999942, 28.858909822000044 ], [ -82.089906213999939, 28.859278436000068 ], [ -82.08995484899998, 28.859647045000031 ], [ -82.090007506999939, 28.860012107000045 ], [ -82.090128820999951, 28.860614613000052 ], [ -82.090250060999949, 28.861128501000053 ], [ -82.090540821, 28.862110169000061 ], [ -82.090625685999953, 28.862464575000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090625685999953, 28.862464575000047 ], [ -82.09067007699997, 28.862577973000043 ], [ -82.090819420999935, 28.862992593000058 ], [ -82.09098086399996, 28.863428474000045 ], [ -82.091324014999941, 28.864445550000028 ], [ -82.091424987999972, 28.864796400000046 ], [ -82.091508449999935, 28.865149720000034 ], [ -82.091546222999966, 28.865292563000025 ], [ -82.091592530999947, 28.865504443000077 ], [ -82.091666847999988, 28.865860548000057 ], [ -82.091732224999987, 28.866175049000049 ], [ -82.09178129299994, 28.866548716000068 ], [ -82.091827505999959, 28.866917217000037 ], [ -82.091863953999962, 28.867286411000066 ], [ -82.091890446999969, 28.867656643000032 ], [ -82.091919035999979, 28.867972047000023 ], [ -82.091931484999975, 28.868202570000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999027891999958, 28.799692036000067 ], [ -81.999760509999987, 28.800384890000032 ], [ -82.001713493999944, 28.802237988000059 ], [ -82.003952416999937, 28.804355805000057 ], [ -82.004668746999982, 28.805031088000078 ], [ -82.006180631999939, 28.806473585000049 ], [ -82.007606159999966, 28.807820955000068 ], [ -82.009971321999956, 28.810062311000024 ], [ -82.012271781999971, 28.812230710000051 ], [ -82.012700203999941, 28.81263965900007 ], [ -82.013629062999939, 28.813527294000039 ], [ -82.014381520999962, 28.814237397000056 ], [ -82.016142099999968, 28.815904855000042 ], [ -82.017601499999955, 28.817281604000073 ], [ -82.020296959999939, 28.819839542000068 ], [ -82.020916649999947, 28.820432058000051 ], [ -82.021938131999946, 28.821395260000031 ], [ -82.024204622999946, 28.823540422000065 ], [ -82.025215295999942, 28.824495859000024 ], [ -82.026509140999963, 28.825721299000065 ], [ -82.026804093999942, 28.825994771000069 ], [ -82.027051855999957, 28.826230164000037 ], [ -82.027335007999966, 28.826472476000049 ], [ -82.02762602599995, 28.826721709000026 ], [ -82.027881649999983, 28.826932863000025 ], [ -82.028129403999969, 28.827123243000074 ], [ -82.028459743999974, 28.827372467000032 ], [ -82.028860868999971, 28.827656298000079 ], [ -82.029214798999988, 28.827888203000043 ], [ -82.029541204999987, 28.828106262000063 ], [ -82.030020973999967, 28.828396998000073 ], [ -82.030492874999936, 28.828663497000036 ], [ -82.031055228999946, 28.828988834000029 ], [ -82.031393434999984, 28.829196499000034 ], [ -82.031786703999956, 28.82945608700004 ], [ -82.032290094999951, 28.829805668000063 ], [ -82.033108130999949, 28.830432165000047 ], [ -82.033654810999963, 28.830868291000058 ], [ -82.033941919999961, 28.831100200000037 ], [ -82.034181828999976, 28.831280184000036 ], [ -82.034484661999954, 28.831498238000052 ], [ -82.034858286999963, 28.831757821000053 ], [ -82.035157181999978, 28.831948176000026 ], [ -82.035456075999946, 28.832131605000029 ], [ -82.03573137099994, 28.832294264000041 ], [ -82.036014525999974, 28.832439610000051 ], [ -82.036163975999955, 28.832529591000025 ], [ -82.036454995999975, 28.832678397000052 ], [ -82.036805002999984, 28.832841035000058 ], [ -82.037115685999936, 28.832989832000067 ], [ -82.037280854999949, 28.833055572000035 ], [ -82.037520744999938, 28.833152452000036 ], [ -82.03790771499996, 28.833310922000067 ], [ -82.038769743999978, 28.833645837000063 ], [ -82.039087500999983, 28.833770392000076 ], [ -82.039487060999988, 28.833933700000046 ], [ -82.039848870999947, 28.834091479000051 ], [ -82.040182370999958, 28.834246495000059 ], [ -82.040465534999953, 28.834384906000025 ], [ -82.040877702999978, 28.83460360600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010221028999979, 28.837101578000045 ], [ -82.010102532999952, 28.837061176000077 ], [ -82.009648826999978, 28.836912634000043 ], [ -82.009240055999953, 28.83677880700003 ], [ -82.008720677999975, 28.836604574000035 ], [ -82.008128609999972, 28.836411519000023 ], [ -82.007478298999956, 28.836197387000027 ], [ -82.00690906899996, 28.836008532000051 ], [ -82.006422605999944, 28.835844955000027 ], [ -82.005904750999946, 28.835660658000052 ], [ -82.00564223899994, 28.835554969000043 ], [ -82.005223342999955, 28.835382460000062 ], [ -82.004873698999972, 28.835227796000027 ], [ -82.004537569999968, 28.835074617000032 ], [ -82.00437390899998, 28.834992709000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00437390899998, 28.834992709000062 ], [ -82.003804506999984, 28.834710254000072 ], [ -82.003432907, 28.834503531000053 ], [ -82.00310627999994, 28.834314515000074 ], [ -82.00272309099995, 28.83408447000005 ], [ -82.002394090999985, 28.833869760000027 ], [ -82.002132828999947, 28.833702764000066 ], [ -82.001401296999973, 28.833194952000042 ], [ -82.000791690999961, 28.832775749000064 ], [ -82.000408510999989, 28.832509912000035 ], [ -81.999936513999955, 28.832182138000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043076107, 28.925527695000028 ], [ -82.042996826999968, 28.926941660000068 ], [ -82.042959330999963, 28.927415171000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036986096999954, 28.931936946000064 ], [ -82.035639512999978, 28.931977823000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036977952999962, 28.932658556000035 ], [ -82.036846380999975, 28.93268075800006 ], [ -82.036657778999938, 28.93272388400004 ], [ -82.03644604699997, 28.932707957000048 ], [ -82.036220193999952, 28.932705376000058 ], [ -82.03605786199995, 28.932690932000071 ], [ -82.035610862999988, 28.932662078000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041222474999984, 28.938342237000029 ], [ -82.040712491999955, 28.938330269000062 ], [ -82.039904794999984, 28.938325661000079 ], [ -82.038865539999961, 28.938323539000066 ], [ -82.038333508999983, 28.938321268000038 ], [ -82.03790898799997, 28.938326238000059 ], [ -82.037114755999937, 28.938319737000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03263347799998, 28.956459181000071 ], [ -82.031573397999978, 28.956450271000051 ], [ -82.028882832999955, 28.956446294000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028880245999972, 28.956515018000061 ], [ -82.028867416999958, 28.957213702000047 ], [ -82.028818335999972, 28.958679801000073 ], [ -82.028776769, 28.960144040000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028880245999972, 28.956515018000061 ], [ -82.024700842999948, 28.956503318000046 ], [ -82.020394775999989, 28.956517791000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028882832999955, 28.956446294000045 ], [ -82.028880245999972, 28.956515018000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028858396999965, 28.952863545000071 ], [ -82.028874868999935, 28.953557929000056 ], [ -82.028866855, 28.954008925000039 ], [ -82.028885247999938, 28.955763646000037 ], [ -82.028882832999955, 28.956446294000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043435683999974, 28.889581059000079 ], [ -82.043424293999976, 28.889641333000043 ], [ -82.043416119999961, 28.890570506000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04543502699994, 28.890561249000029 ], [ -82.044385191999936, 28.890559728000028 ], [ -82.043847000999961, 28.890575388000059 ], [ -82.043613013999959, 28.890575464000051 ], [ -82.043416119999961, 28.890570506000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041407247999985, 28.890546025000049 ], [ -82.039525798999989, 28.890547156000025 ], [ -82.039457176999974, 28.890532968000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043435683999974, 28.889581059000079 ], [ -82.041398303999983, 28.889576676000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041398303999983, 28.889576676000047 ], [ -82.041407247999985, 28.890546025000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041398303999983, 28.889576676000047 ], [ -82.039382554999975, 28.889589714000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043416119999961, 28.890570506000074 ], [ -82.043253474999972, 28.890578092000055 ], [ -82.04244022499995, 28.890570817000025 ], [ -82.041407247999985, 28.890546025000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043435304999946, 28.888669467000057 ], [ -82.041372269999954, 28.888690207000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041372269999954, 28.888690207000025 ], [ -82.041398303999983, 28.889576676000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041372269999954, 28.888690207000025 ], [ -82.039480689999948, 28.888670386000058 ], [ -82.039433876999965, 28.888688871000056 ], [ -82.039404821999938, 28.888701667000078 ], [ -82.039391911999985, 28.888718721000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043810596999947, 28.872797048000052 ], [ -82.045161065999935, 28.872818867000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047767055999941, 28.860660899000038 ], [ -82.047754556999962, 28.860564425000064 ], [ -82.047440501999972, 28.860084338000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058036371999947, 28.806187288000046 ], [ -82.057573083999955, 28.806209144000036 ], [ -82.05721006899995, 28.806165295000028 ], [ -82.056224727999961, 28.806165709000027 ], [ -82.05598566499998, 28.806173027000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055982489999963, 28.805344169000023 ], [ -82.055123797999954, 28.80531976900005 ], [ -82.054445636999958, 28.805320044000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058021097999983, 28.805388687000061 ], [ -82.058009771999934, 28.805375628000036 ], [ -82.057997274999934, 28.805363945000067 ], [ -82.057983218999937, 28.805353293000053 ], [ -82.057968186999972, 28.805344019000074 ], [ -82.057951984999988, 28.805336118000071 ], [ -82.057935002999955, 28.805329937000067 ], [ -82.057917240999984, 28.805325132000064 ], [ -82.057899089999978, 28.805322045000025 ], [ -82.057878012999936, 28.805320679000033 ], [ -82.05610270699998, 28.805347556000072 ], [ -82.055982489999963, 28.805344169000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058036371999947, 28.806187288000046 ], [ -82.05803659999998, 28.806245387000047 ], [ -82.05803604099998, 28.806292829000029 ], [ -82.058027559999971, 28.806484321000028 ], [ -82.058028977999982, 28.80692883100005 ], [ -82.058029466999983, 28.807110003000048 ], [ -82.058028555999954, 28.807143263000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062225842999965, 28.807152071000075 ], [ -82.060011925999959, 28.807146249000027 ], [ -82.058718176999946, 28.807147799000063 ], [ -82.058187165999982, 28.807142774000056 ], [ -82.058028555999954, 28.807143263000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055982489999963, 28.805344169000023 ], [ -82.055962596999962, 28.805411391000064 ], [ -82.055944353999962, 28.805570144000058 ], [ -82.055950547999942, 28.805728886000054 ], [ -82.055971993999947, 28.805847263000032 ], [ -82.055984308999939, 28.806024838000042 ], [ -82.05598566499998, 28.806173027000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05598566499998, 28.806173027000057 ], [ -82.055804160999969, 28.806180967000046 ], [ -82.055666706999943, 28.80619985800007 ], [ -82.055013008999936, 28.806240485000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058028555999954, 28.807143263000057 ], [ -82.057833049999942, 28.807143346000032 ], [ -82.057542846, 28.807140779000065 ], [ -82.056449231999977, 28.807141241000068 ], [ -82.055975735999937, 28.807133367000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053928747999976, 28.799830599000074 ], [ -82.052293381999959, 28.799813046000054 ], [ -82.051882916999944, 28.799811636000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.073629154999935, 28.799870652000038 ], [ -82.073647170999948, 28.798660832000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.073617439999964, 28.798661912000057 ], [ -82.073620275999986, 28.797972850000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07886248899996, 28.799877691000063 ], [ -82.078864936999935, 28.798663203000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078864936999935, 28.798663203000046 ], [ -82.078885735999961, 28.797423069000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076032933999954, 28.79620585300006 ], [ -82.07724938299998, 28.796191868000051 ], [ -82.077306738999937, 28.796199812000054 ], [ -82.077349005999963, 28.796210424000037 ], [ -82.07740334999994, 28.796223687000065 ], [ -82.077445628999953, 28.79625025200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076076065999985, 28.797407663000058 ], [ -82.076794478999943, 28.797407256000042 ], [ -82.077475468999978, 28.797417504000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.073127332999945, 28.796528779000027 ], [ -82.073174722999966, 28.796488531000023 ], [ -82.073206121999988, 28.79646238600003 ], [ -82.073385800999972, 28.796345582000072 ], [ -82.07356987199995, 28.796263054000065 ], [ -82.073645315999954, 28.796236425000075 ], [ -82.073729818999936, 28.796215107000023 ], [ -82.073808293999946, 28.796204428000067 ], [ -82.073892810999951, 28.796204382000042 ], [ -82.074010533999967, 28.796204317000047 ], [ -82.076032933999954, 28.79620585300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.072734543999957, 28.797414822000064 ], [ -82.073081143999957, 28.796651523000037 ], [ -82.073127332999945, 28.796528779000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.072734543999957, 28.797414822000064 ], [ -82.074126092999961, 28.797416724000072 ], [ -82.076039845999958, 28.797410343000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071558824999954, 28.799880331000054 ], [ -82.072125658999937, 28.798664844000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.072125658999937, 28.798664844000029 ], [ -82.072303495999961, 28.798287182000024 ], [ -82.072647182999958, 28.797667467000053 ], [ -82.072704435999981, 28.797526513000037 ], [ -82.072734543999957, 28.797414822000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987305527, 28.87350974900005 ], [ -81.987547369999959, 28.873137983000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987547369999959, 28.873137983000049 ], [ -81.987623901999939, 28.873022143000071 ], [ -81.987721863, 28.872879365000074 ], [ -81.987815300999955, 28.87276709300005 ], [ -81.987954509999952, 28.872618056000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987954509999952, 28.872618056000078 ], [ -81.988180261999958, 28.872411303000035 ], [ -81.988903429999937, 28.871720997000068 ], [ -81.989553891999947, 28.871087931000034 ], [ -81.989875615999949, 28.870771577000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989148738999972, 28.873255586000028 ], [ -81.989471985999955, 28.872936627000058 ], [ -81.989935423999952, 28.872494289000031 ], [ -81.990391513999953, 28.872044404000064 ], [ -81.990777195999954, 28.871675337000056 ], [ -81.991052884999988, 28.871424952000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988563557999953, 28.872953797000037 ], [ -81.988964555999985, 28.872564260000047 ], [ -81.989350244999969, 28.872184420000053 ], [ -81.989748174999988, 28.871804582000038 ], [ -81.990210383999965, 28.871360086000038 ], [ -81.990468117999967, 28.871114940000041 ], [ -81.990602797999941, 28.870988326000031 ], [ -81.990664015999982, 28.870945224000025 ], [ -81.990780324999946, 28.870904820000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989793316999965, 28.873525630000074 ], [ -81.990177872999936, 28.873151741000072 ], [ -81.990804143999981, 28.872549003000074 ], [ -81.991190889999984, 28.872182203000079 ], [ -81.99141590399995, 28.871969728000067 ], [ -81.991634185999942, 28.871753523000052 ], [ -81.99171070899996, 28.87169156300007 ], [ -81.991806157999974, 28.871635547000039 ], [ -81.991903424999975, 28.871588104000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136314672999958, 28.797070822000023 ], [ -82.136331970999947, 28.797879185000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136331970999947, 28.797879185000056 ], [ -82.136335534999944, 28.797974629000066 ], [ -82.136347623999939, 28.798729433000062 ], [ -82.136327631999961, 28.799037058000067 ], [ -82.136323135999987, 28.799499593000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135405899999967, 28.79784528600004 ], [ -82.135502905999942, 28.797836085000029 ], [ -82.135740270999975, 28.797846451000055 ], [ -82.135982797999986, 28.797858327000029 ], [ -82.136331970999947, 28.797879185000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137268651999989, 28.798881986000026 ], [ -82.137246077999976, 28.799498161000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137246077999976, 28.799498161000031 ], [ -82.137653716999978, 28.799493752000046 ], [ -82.138143108999941, 28.799479781000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136323135999987, 28.799499593000064 ], [ -82.137246077999976, 28.799498161000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.130330902999958, 28.795961744000067 ], [ -82.130852427999969, 28.795444061000069 ], [ -82.131373009999947, 28.794911523000053 ], [ -82.13141649399995, 28.794886729000041 ], [ -82.131464279999989, 28.794869494000068 ], [ -82.131515197999988, 28.794860506000077 ], [ -82.131566909999947, 28.794860111000048 ], [ -82.132506576999958, 28.794813025000053 ], [ -82.133500371999958, 28.794811497000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12979011799996, 28.79561671700003 ], [ -82.130371331999982, 28.795048634000068 ], [ -82.130877299999952, 28.794558427000027 ], [ -82.130939572999978, 28.794498868000062 ], [ -82.130986302999986, 28.794473650000043 ], [ -82.131043431999956, 28.794455288000051 ], [ -82.131087583999943, 28.794446091000054 ], [ -82.131145673999981, 28.794440419000068 ], [ -82.131534127999942, 28.794395005000069 ], [ -82.132204785999988, 28.794381630000032 ], [ -82.133239189999983, 28.794359216000032 ], [ -82.133391143999972, 28.794347944000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128593376999959, 28.79607515400005 ], [ -82.130533924999952, 28.794188038000073 ], [ -82.130611765999959, 28.794112446000042 ], [ -82.130668837999963, 28.794048315000055 ], [ -82.130712950999964, 28.794009369000037 ], [ -82.130749284, 28.793979585000045 ], [ -82.130796007999948, 28.793949791000045 ], [ -82.130847932999984, 28.793924568000079 ], [ -82.130925854999987, 28.793915339000023 ], [ -82.131388255, 28.793905737000046 ], [ -82.131923400999938, 28.793902927000033 ], [ -82.132870136999941, 28.793894408000028 ], [ -82.133229850999953, 28.793879225000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127958757999977, 28.795723731000066 ], [ -82.129217210999968, 28.794498239000063 ], [ -82.130327718, 28.793401027000073 ], [ -82.130369235999979, 28.793364373000031 ], [ -82.130415957999958, 28.793332290000023 ], [ -82.130467872999986, 28.793300202000069 ], [ -82.130530185999987, 28.793272681000076 ], [ -82.130579530999967, 28.793261192000045 ], [ -82.131270523999945, 28.793246528000054 ], [ -82.132761234999975, 28.793234745000063 ], [ -82.132884210999975, 28.793193617000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129865510999934, 28.789371598000059 ], [ -82.12986723399996, 28.790566606000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12986723399996, 28.790566606000027 ], [ -82.129921534999937, 28.790559225000038 ], [ -82.129978678999976, 28.790554592000035 ], [ -82.130046226, 28.790559105000057 ], [ -82.131221784, 28.790626456000041 ], [ -82.13137471899995, 28.790614592000054 ], [ -82.131504334999988, 28.790567601000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046910227999945, 28.860656814000038 ], [ -82.047333660999982, 28.860658859000068 ], [ -82.047767055999941, 28.860660899000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047767055999941, 28.860660899000038 ], [ -82.04850930799995, 28.860667211000077 ], [ -82.049161890999983, 28.860666975000072 ], [ -82.049450821999983, 28.860671255000057 ], [ -82.04957785199997, 28.860673402000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050428505999946, 28.858206315000075 ], [ -82.050423500999955, 28.858158078000031 ], [ -82.050415892999979, 28.857877416000065 ], [ -82.050387995999984, 28.856842480000068 ], [ -82.050382970999976, 28.856750388000023 ], [ -82.050355518999936, 28.856638572000065 ], [ -82.050308151999957, 28.856546497000068 ], [ -82.050240851999945, 28.856439081000076 ], [ -82.050171072999944, 28.856351399000062 ], [ -82.050116252999942, 28.856300988000044 ], [ -82.050056455999936, 28.856257156000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053718250999964, 28.858206034000034 ], [ -82.052116776999981, 28.858197310000037 ], [ -82.050983930999962, 28.858197335000057 ], [ -82.050704970999959, 28.858197440000026 ], [ -82.050550548, 28.858199692000028 ], [ -82.050428505999946, 28.858206315000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050428505999946, 28.858206315000075 ], [ -82.050416128999984, 28.858366386000057 ], [ -82.050339158999975, 28.85886854000006 ], [ -82.050202570999943, 28.859706196000047 ], [ -82.050140533999979, 28.860186417000079 ], [ -82.050103225999976, 28.860300451000057 ], [ -82.050050973999987, 28.86041229600005 ], [ -82.050006168999971, 28.860471516000075 ], [ -82.049961356999972, 28.860517578000042 ], [ -82.049919032999981, 28.860559256000045 ], [ -82.049838260999934, 28.860609261000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042726587999937, 28.863425401000029 ], [ -82.04297872799998, 28.863507863000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042240550999963, 28.863257130000079 ], [ -82.042726587999937, 28.863425401000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042240550999963, 28.863257130000079 ], [ -82.042164018999983, 28.86325378500004 ], [ -82.042118106999965, 28.863274011000044 ], [ -82.042083680999951, 28.863300969000079 ], [ -82.042056912999954, 28.863344767000058 ], [ -82.042033972999945, 28.863395303000061 ], [ -82.042014858999949, 28.863439099000061 ], [ -82.041988109999977, 28.863533425000071 ], [ -82.041965181999956, 28.863610908000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04297872799998, 28.863507863000052 ], [ -82.042784194999967, 28.863930658000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041965181999956, 28.863610908000055 ], [ -82.042064681999989, 28.863637824000079 ], [ -82.042298131999985, 28.863711859000034 ], [ -82.042719119999958, 28.863873414000068 ], [ -82.042784194999967, 28.863930658000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042784194999967, 28.863930658000072 ], [ -82.04282630299997, 28.86397106700008 ], [ -82.043343729999947, 28.864154148000068 ], [ -82.043398848999971, 28.864194553000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043398848999971, 28.864194553000061 ], [ -82.043417230999978, 28.864232273000027 ], [ -82.043420307999952, 28.864267304000066 ], [ -82.043405023999981, 28.864323901000034 ], [ -82.043380559999946, 28.864385889000062 ], [ -82.042912611999952, 28.86541814800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042912611999952, 28.86541814800006 ], [ -82.04250886899996, 28.866272526000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042784194999967, 28.863930658000072 ], [ -82.042550980999977, 28.864437355000064 ], [ -82.042199245999939, 28.865205482000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041965181999956, 28.863610908000055 ], [ -82.041479734999939, 28.864930836000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042199245999939, 28.865205482000079 ], [ -82.041979012999946, 28.865652888000056 ], [ -82.041431517999968, 28.866854939000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043820633999985, 28.869902 ], [ -82.04382409699997, 28.870858652000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042684447999989, 28.868926848000058 ], [ -82.04271201399996, 28.868956481000055 ], [ -82.042730398999936, 28.868996899000024 ], [ -82.042742660999977, 28.869040011000038 ], [ -82.042724429999964, 28.86937417200005 ], [ -82.04272464099995, 28.86988887800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040709656, 28.868428921000032 ], [ -82.040694406999989, 28.868574445000036 ], [ -82.040682198999946, 28.868671461000076 ], [ -82.040676145999953, 28.868849320000038 ], [ -82.040676192999967, 28.868970586000046 ], [ -82.040685422999957, 28.869089154000051 ], [ -82.040706905999969, 28.869226582000067 ], [ -82.040740643999982, 28.869385565000073 ], [ -82.040765181999973, 28.869506823000052 ], [ -82.040777477999939, 28.869633475000057 ], [ -82.040783701999942, 28.869892175000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042086745999939, 28.867113437000057 ], [ -82.041445477999957, 28.868425527000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042086745999939, 28.867113437000057 ], [ -82.042249001999949, 28.867121470000029 ], [ -82.042549016999942, 28.86713485000007 ], [ -82.043990905999976, 28.867128997000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04250886899996, 28.866272526000046 ], [ -82.042386524999984, 28.86653934900005 ], [ -82.042086745999939, 28.867113437000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041431517999968, 28.866854939000063 ], [ -82.041018569999949, 28.867701232000059 ], [ -82.040752450999946, 28.868261830000051 ], [ -82.040709656, 28.868428921000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041479734999939, 28.864930836000042 ], [ -82.041351289999966, 28.865254252000057 ], [ -82.04125647799998, 28.865480644000058 ], [ -82.04100565799996, 28.866000817000042 ], [ -82.04063860399998, 28.866779725000072 ], [ -82.039858591999973, 28.868423785000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039938764999988, 28.869935544000043 ], [ -82.039869427999975, 28.870306115000062 ], [ -82.039791882999964, 28.870728607000046 ], [ -82.039757690999977, 28.870961979000072 ], [ -82.039723507999952, 28.871223517000033 ], [ -82.039463563999959, 28.87281086400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03927135899994, 28.869887233000043 ], [ -82.03931728799995, 28.869911473000059 ], [ -82.039384643999938, 28.869922232000079 ], [ -82.039500979999957, 28.869930283000031 ], [ -82.039938764999988, 28.869935544000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039858591999973, 28.868423785000061 ], [ -82.039265160999946, 28.869690514000069 ], [ -82.039237628999956, 28.869744419000028 ], [ -82.039225401999943, 28.86979831900004 ], [ -82.03923459799995, 28.86982795800003 ], [ -82.03924991699995, 28.869857597000077 ], [ -82.03927135899994, 28.869887233000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040783701999942, 28.869892175000075 ], [ -82.040808564999963, 28.870846125000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040808564999963, 28.870846125000071 ], [ -82.040805684999953, 28.871306936000053 ], [ -82.040800100999945, 28.87156720400003 ], [ -82.040807443999938, 28.872810464000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041946652999968, 28.868924385000071 ], [ -82.041983379999976, 28.868900120000035 ], [ -82.042069091999963, 28.868886619000079 ], [ -82.042552795999939, 28.868894552000029 ], [ -82.042623212999956, 28.86890530900007 ], [ -82.042684447999989, 28.868926848000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03450113599996, 28.869151679000026 ], [ -82.033490872999948, 28.869148566000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033017450999978, 28.869156696000061 ], [ -82.032296933999987, 28.869169069000066 ], [ -82.030983212999956, 28.869193935000055 ], [ -82.03023049899997, 28.869199863000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03450113599996, 28.869151679000026 ], [ -82.034512769999935, 28.869619898000053 ], [ -82.034505321999973, 28.870243072000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036215506999952, 28.869117545000051 ], [ -82.036215679999941, 28.869616083000039 ], [ -82.036215896999977, 28.870242623000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036193366999953, 28.871485605000032 ], [ -82.035458612999946, 28.871479063000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036215896999977, 28.870242623000024 ], [ -82.035435231999941, 28.870242831000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036215896999977, 28.870242623000024 ], [ -82.036227596999936, 28.870879266000031 ], [ -82.036227656999984, 28.871051059000024 ], [ -82.036193366999953, 28.871485605000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035427202999983, 28.869137966000039 ], [ -82.035431229999972, 28.869724083000051 ], [ -82.035435231999941, 28.870242831000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035435231999941, 28.870242831000041 ], [ -82.035458612999946, 28.871479063000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035435231999941, 28.870242831000041 ], [ -82.034505321999973, 28.870243072000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034505321999973, 28.870243072000051 ], [ -82.03430020899998, 28.870250535000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033490872999948, 28.869148566000035 ], [ -82.033475848999956, 28.870031117000053 ], [ -82.033449132999976, 28.870253443000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03430020899998, 28.870250535000025 ], [ -82.033957331999943, 28.870258707000062 ], [ -82.033449132999976, 28.870253443000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03430020899998, 28.870250535000025 ], [ -82.034312859999943, 28.871482054000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033081987999935, 28.870967655000072 ], [ -82.03278196499997, 28.870970424000063 ], [ -82.032405405999953, 28.870965126000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032405405999953, 28.870965126000044 ], [ -82.03239356399996, 28.872269410000058 ], [ -82.032393636999984, 28.872506552000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032405405999953, 28.870965126000044 ], [ -82.031722697999953, 28.870951813000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031722697999953, 28.870951813000033 ], [ -82.029399849999947, 28.870974379000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028897489999963, 28.872798385000067 ], [ -82.028450504999967, 28.872782311000037 ], [ -82.027522866999959, 28.872774419000052 ], [ -82.026368678999972, 28.87276926100003 ], [ -82.025398179999968, 28.872761363000052 ], [ -82.024699298999963, 28.872768155000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033486333999974, 28.86692535800006 ], [ -82.031551756999988, 28.86692096400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031551882999963, 28.867338588000052 ], [ -82.031548417999943, 28.867674571000066 ], [ -82.031548525999938, 28.868032534000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031548525999938, 28.868032534000065 ], [ -82.031548579999935, 28.868211515000041 ], [ -82.031548637999947, 28.868403056000034 ], [ -82.031548676999989, 28.86853179700006 ], [ -82.031527294999989, 28.868604023000046 ], [ -82.031484509999984, 28.868673113000057 ], [ -82.031441714999971, 28.868710803000056 ], [ -82.031395355999962, 28.868748495000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031395355999962, 28.868748495000034 ], [ -82.031334718999972, 28.868770489000042 ], [ -82.031245541999965, 28.868779930000073 ], [ -82.029682430999969, 28.86878702100006 ], [ -82.029537493999953, 28.868783615000041 ], [ -82.029496700999971, 28.86877598500007 ], [ -82.029464152999935, 28.868765678000045 ], [ -82.029440541999975, 28.868755216000068 ], [ -82.029396448999989, 28.86873207900004 ], [ -82.029358481999964, 28.868701853000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031551882999963, 28.867338588000052 ], [ -82.030324791999988, 28.867338869000037 ], [ -82.029268921999972, 28.867345383000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031551756999988, 28.86692096400003 ], [ -82.031551882999963, 28.867338588000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031551756999988, 28.86692096400003 ], [ -82.031376966999972, 28.866911585000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031376966999972, 28.866911585000025 ], [ -82.031274234999955, 28.866914121000036 ], [ -82.031048802999976, 28.866949341000065 ], [ -82.030900414999962, 28.866964447000043 ], [ -82.030723485999943, 28.866964488000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030721225999969, 28.865475991000039 ], [ -82.030716948999952, 28.866319504000046 ], [ -82.030723485999943, 28.866964488000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030723485999943, 28.866964488000065 ], [ -82.02997239299998, 28.866958627000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029974871999968, 28.865471384000045 ], [ -82.02997365899995, 28.866245801000048 ], [ -82.02997239299998, 28.866958627000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029250213999944, 28.865465814000061 ], [ -82.029248395999957, 28.866321589000052 ], [ -82.029260114999943, 28.86697687000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02997239299998, 28.866958627000031 ], [ -82.029260114999943, 28.86697687000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028490912999985, 28.865484555000023 ], [ -82.028489175999937, 28.866439593000052 ], [ -82.028493127, 28.868332144000078 ], [ -82.028493173999948, 28.868504845000075 ], [ -82.02848606699996, 28.868605328000058 ], [ -82.028464679999956, 28.868664993000039 ], [ -82.028354612999976, 28.868772527000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036193366999953, 28.871485605000032 ], [ -82.036197328999947, 28.871872981000024 ], [ -82.036187433999942, 28.872119359000067 ], [ -82.036173431999941, 28.87225849500004 ], [ -82.036106817999951, 28.872617166000055 ], [ -82.036089281999978, 28.872697560000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045575794999934, 28.815303159000052 ], [ -82.045571119999977, 28.81693772400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045587220999948, 28.810792795000054 ], [ -82.045583246999968, 28.811550950000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045587220999948, 28.810792795000054 ], [ -82.043430887999989, 28.810751808000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045607210999947, 28.807278659000076 ], [ -82.045607253999947, 28.807377304000056 ], [ -82.045603341999936, 28.808279508000055 ], [ -82.045599061999951, 28.808946825000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048544652999965, 28.802732584000069 ], [ -82.048191589999988, 28.802383960000043 ], [ -82.047920342999987, 28.802130074000047 ], [ -82.047847148999949, 28.802061865000042 ], [ -82.047773961999951, 28.802008822000062 ], [ -82.047705093, 28.801982310000028 ], [ -82.047606100999985, 28.801967182000055 ], [ -82.047313451999969, 28.801967284000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047313451999969, 28.801967284000057 ], [ -82.046795072999942, 28.801954872000067 ], [ -82.046709207999982, 28.801954902000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047313451999969, 28.801967284000057 ], [ -82.04732662899994, 28.802558641000076 ], [ -82.047309445999986, 28.802626881000037 ], [ -82.047262132999947, 28.80268755000003 ], [ -82.047188992999963, 28.802736855000035 ], [ -82.047111535999989, 28.802759628000047 ], [ -82.046746646999964, 28.802759431000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051227710999967, 28.801683155000035 ], [ -82.05122836399994, 28.801927199000033 ], [ -82.051268754999967, 28.802560993000043 ], [ -82.051203585999986, 28.803067465000026 ], [ -82.051204215999974, 28.80435632700005 ], [ -82.051209582999945, 28.804502032000073 ], [ -82.051221657999974, 28.804823343000066 ], [ -82.051245863999952, 28.805035617000044 ], [ -82.051273507999952, 28.805238792000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053908370999977, 28.800765823000063 ], [ -82.053908748999959, 28.801107339000055 ], [ -82.053912391999972, 28.801495513000077 ], [ -82.053929698, 28.801674431000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053928747999976, 28.799830599000074 ], [ -82.053908370999977, 28.800765823000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058071029999951, 28.800772025000072 ], [ -82.057747401999961, 28.800778230000049 ], [ -82.056862572999989, 28.800766475000046 ], [ -82.055998397999986, 28.800748640000052 ], [ -82.055299482999942, 28.800733765000075 ], [ -82.054270065999958, 28.800746314000037 ], [ -82.053908370999977, 28.800765823000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058101503999978, 28.799847063000072 ], [ -82.057023886999957, 28.799844489000066 ], [ -82.055257692999987, 28.799833094000064 ], [ -82.053928747999976, 28.799830599000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060133847999964, 28.801686973000074 ], [ -82.059507229999952, 28.801678154000058 ], [ -82.059080302999973, 28.80166924200006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058081864999963, 28.801681806000033 ], [ -82.056126279999944, 28.801676568000062 ], [ -82.05531375399994, 28.801679937000074 ], [ -82.053929698, 28.801674431000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059080302999973, 28.80166924200006 ], [ -82.058340083999951, 28.801684728000055 ], [ -82.058081864999963, 28.801681806000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059080302999973, 28.80166924200006 ], [ -82.059086640999965, 28.802892890000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062234745999945, 28.80289603600005 ], [ -82.059086640999965, 28.802892890000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06223747599995, 28.801695118000055 ], [ -82.061214924999945, 28.801689521000071 ], [ -82.060956703999977, 28.801686605000043 ], [ -82.060133847999964, 28.801686973000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062219169999935, 28.799857359000043 ], [ -82.06224773699995, 28.798579559000075 ], [ -82.062242758999957, 28.798084858000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062219169999935, 28.799857359000043 ], [ -82.060143122999989, 28.799855266000066 ], [ -82.058821058999968, 28.799843718000034 ], [ -82.058101503999978, 28.799847063000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062978462999979, 28.799860290000026 ], [ -82.06297275299994, 28.798153410000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062978462999979, 28.799860290000026 ], [ -82.062511813999947, 28.799860256000045 ], [ -82.062219169999935, 28.799857359000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063273377999963, 28.799862935000078 ], [ -82.062978462999979, 28.799860290000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063273377999963, 28.799862935000078 ], [ -82.063272759999961, 28.79998120700003 ], [ -82.06326691199996, 28.801697671000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065355618999945, 28.799861943000053 ], [ -82.064700097999946, 28.799862258000076 ], [ -82.063273377999963, 28.799862935000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065355618999945, 28.799861943000053 ], [ -82.065349878999939, 28.801699712000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067838634999987, 28.798251612000058 ], [ -82.067651015999957, 28.798187373000076 ], [ -82.067452179999975, 28.798152704000074 ], [ -82.067205003999959, 28.798135265000042 ], [ -82.06692622199995, 28.798125586000026 ], [ -82.066643567999961, 28.798119778000057 ], [ -82.066539023999951, 28.798127522000073 ], [ -82.066451904999951, 28.798156561000042 ], [ -82.066382208999983, 28.798237873000062 ], [ -82.066340686999979, 28.798335448000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069777925999972, 28.798241524000048 ], [ -82.068017076999979, 28.798188393000032 ], [ -82.067927345999976, 28.798202668000044 ], [ -82.067883500999983, 28.798225101000071 ], [ -82.067838634999987, 28.798251612000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069484102, 28.798782780000067 ], [ -82.068465552999953, 28.79878850800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068465552999953, 28.79878850800003 ], [ -82.068384158999947, 28.798696188000065 ], [ -82.068207755999936, 28.798536100000035 ], [ -82.067933623999977, 28.798314166000068 ], [ -82.067838634999987, 28.798251612000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07052469599995, 28.798791859000062 ], [ -82.069484102, 28.798782780000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070536953999977, 28.797118498000032 ], [ -82.068708110999978, 28.797119441000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07052469599995, 28.798791859000062 ], [ -82.070529445999966, 28.797663722000038 ], [ -82.070536953999977, 28.797118498000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070536953999977, 28.797118498000032 ], [ -82.070539930999985, 28.796872810000025 ], [ -82.070547707999935, 28.796152254000049 ], [ -82.070547544999954, 28.795909645000052 ], [ -82.070550024999989, 28.795502060000047 ], [ -82.070546966999984, 28.795050807000052 ], [ -82.070532914999944, 28.794635951000032 ], [ -82.070516175999956, 28.794315715000039 ], [ -82.070493943999963, 28.794019742000046 ], [ -82.070480079999982, 28.793881463000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070527879999986, 28.800796964000028 ], [ -82.070527962999961, 28.800921302000063 ], [ -82.07051770399994, 28.801024416000075 ], [ -82.070438678999949, 28.801264035000031 ], [ -82.070397449999973, 28.801391426000066 ], [ -82.070349311999962, 28.801485462000073 ], [ -82.070321801999967, 28.801533999000071 ], [ -82.070289311999943, 28.801572552000039 ], [ -82.070257333999962, 28.801612447000025 ], [ -82.070217936999939, 28.80164718900005 ], [ -82.070172097999944, 28.801675060000036 ], [ -82.07012137199996, 28.801695713000072 ], [ -82.070067519999952, 28.801708117000032 ], [ -82.069844076999971, 28.801710983000078 ], [ -82.069209852999961, 28.801704400000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069181933999971, 28.800814051000032 ], [ -82.06920966499996, 28.801419334000059 ], [ -82.069209852999961, 28.801704400000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069209852999961, 28.801704400000062 ], [ -82.06847995399994, 28.801704772000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068493143999945, 28.800816208000072 ], [ -82.06847995399994, 28.801704772000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066396983999937, 28.801699747000043 ], [ -82.065349878999939, 28.801699712000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066396983999937, 28.801699747000043 ], [ -82.066388822999954, 28.800776258000042 ], [ -82.066390446999947, 28.799862104000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067416087999959, 28.801702275000025 ], [ -82.066396983999937, 28.801699747000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06847995399994, 28.801704772000051 ], [ -82.067447075999951, 28.801702259000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990420794999977, 28.875332688000071 ], [ -81.990424394999934, 28.875385097000049 ], [ -81.990434153999956, 28.875425320000033 ], [ -81.990445561999934, 28.875455158000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990445561999934, 28.875455158000079 ], [ -81.990460806999977, 28.875480323000033 ], [ -81.99049320499995, 28.875515556000039 ], [ -81.990523699999983, 28.875539046000029 ], [ -81.990559910999934, 28.875560858000028 ], [ -81.990590406999956, 28.875575959000059 ], [ -81.990630431999989, 28.875587705000044 ], [ -81.990676173999987, 28.875596096000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993166668999947, 28.871784158000025 ], [ -81.993255732999955, 28.87174290300004 ], [ -81.993391671999973, 28.871685145000072 ], [ -81.993567454999948, 28.871600572000034 ], [ -81.99376667599995, 28.871489178000047 ], [ -81.993916678999938, 28.871381910000025 ], [ -81.993998713999986, 28.871297331000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99259249499994, 28.871311701000025 ], [ -81.992822182999987, 28.871216816000072 ], [ -81.993192496999939, 28.87105592100005 ], [ -81.993396405999988, 28.870938341000056 ], [ -81.993445624999936, 28.870919776000051 ], [ -81.993497185999956, 28.870911527000032 ], [ -81.993548746999977, 28.870915655000033 ], [ -81.993597962999957, 28.870932162000031 ], [ -81.993647178999936, 28.870958982000047 ], [ -81.993712798999979, 28.871018812000045 ], [ -81.993848724999964, 28.871148788000028 ], [ -81.993998713999986, 28.871297331000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99259249499994, 28.871311701000025 ], [ -81.992697947999943, 28.871503566000058 ], [ -81.992840896999951, 28.871718125000029 ], [ -81.992890111999941, 28.871763513000076 ], [ -81.992948703999957, 28.871792398000025 ], [ -81.992988545999935, 28.871804779000058 ], [ -81.993030731999966, 28.871808907000059 ], [ -81.993084637999971, 28.871806847000073 ], [ -81.993166668999947, 28.871784158000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991903424999975, 28.871588104000068 ], [ -81.992236240999944, 28.871458154000038 ], [ -81.99259249499994, 28.871311701000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989315723999937, 28.874051658000042 ], [ -81.989471020999986, 28.873829898000054 ], [ -81.989638028999934, 28.873675186000071 ], [ -81.989793316999965, 28.873525630000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989793316999965, 28.873525630000074 ], [ -81.989998382999943, 28.873641690000056 ], [ -81.990054045999955, 28.873657167000033 ], [ -81.990121425999973, 28.873670065000056 ], [ -81.990253262999943, 28.873682968000026 ], [ -81.990449550999983, 28.873693297000045 ], [ -81.990557947999946, 28.873698463000039 ], [ -81.990672205999942, 28.873701049000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991243468999983, 28.874026010000023 ], [ -81.991322562999983, 28.874111113000026 ], [ -81.991453150999973, 28.874250781000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990672205999942, 28.873701049000033 ], [ -81.990802318999954, 28.873739195000041 ], [ -81.99093880099997, 28.873778430000073 ], [ -81.990979814999946, 28.873801641000057 ], [ -81.991020826999943, 28.873835168000028 ], [ -81.99106476999998, 28.873879009000063 ], [ -81.991243468999983, 28.874026010000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992761152999947, 28.872566529000039 ], [ -81.992849049999961, 28.872471120000057 ], [ -81.99296917199996, 28.872367976000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991243468999983, 28.874026010000023 ], [ -81.991340154999989, 28.873943496000038 ], [ -81.991413403999957, 28.873873875000072 ], [ -81.991694674999962, 28.873603125000045 ], [ -81.992195687999981, 28.873113192000062 ], [ -81.992594149999945, 28.872747033000053 ], [ -81.992761152999947, 28.872566529000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990672205999942, 28.873701049000033 ], [ -81.990695649999964, 28.873631424000052 ], [ -81.990727879999952, 28.873585010000056 ], [ -81.990824568999983, 28.873479288000055 ], [ -81.991105842999957, 28.873208538000029 ], [ -81.991656663999947, 28.872682508000025 ], [ -81.992113723999978, 28.872236413000053 ], [ -81.992210407999949, 28.872161635000055 ], [ -81.992266073999986, 28.872128115000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988621492999982, 28.868847588000051 ], [ -81.988609537999935, 28.867456655000069 ], [ -81.988614656999971, 28.867072654000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989343417999976, 28.868847647000052 ], [ -81.989385986999935, 28.868847650000077 ], [ -81.990066709999951, 28.868847702000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987889413999937, 28.868847524000046 ], [ -81.988621492999982, 28.868847588000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988621492999982, 28.868847588000051 ], [ -81.989343417999976, 28.868847647000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990066709999951, 28.868847702000039 ], [ -81.990452374999961, 28.868847730000027 ], [ -81.990797616999942, 28.868845348000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990797616999942, 28.868845348000036 ], [ -81.990792834, 28.867718781000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990792834, 28.867718781000065 ], [ -81.990792449999958, 28.867640399000038 ], [ -81.990792499999941, 28.867076602000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992701083999975, 28.866836416000069 ], [ -81.992701133999958, 28.866116885000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99042041499996, 28.87036678100003 ], [ -81.990720760999977, 28.870235822000041 ], [ -81.991094726999961, 28.870080803000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990068258999941, 28.869480327000076 ], [ -81.990066709999951, 28.868847702000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990068258999941, 28.869480327000076 ], [ -81.990514617999963, 28.869481212000039 ], [ -81.990645811999968, 28.86948036800004 ], [ -81.990722973999937, 28.869497727000066 ], [ -81.99078680599996, 28.869530501000042 ], [ -81.990830185999982, 28.869575854000061 ], [ -81.990908660999935, 28.869721197000047 ], [ -81.991094726999961, 28.870080803000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991094726999961, 28.870080803000064 ], [ -81.991319201999943, 28.870497643000078 ], [ -81.991690181999957, 28.871181679000074 ], [ -81.991903424999975, 28.871588104000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989344283999969, 28.869480272000033 ], [ -81.989732029999971, 28.869480302000056 ], [ -81.990068258999941, 28.869480327000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990792499999941, 28.867076602000054 ], [ -81.991359139999986, 28.867073321000078 ], [ -81.991704849999962, 28.867073343000072 ], [ -81.991847348999954, 28.867065668000066 ], [ -81.992001810999966, 28.867018236000035 ], [ -81.992165807999982, 28.866927178000026 ], [ -81.992281050999964, 28.866870499000072 ], [ -81.99239967699998, 28.866840670000045 ], [ -81.992588998999963, 28.866834347000065 ], [ -81.992701083999975, 28.866836416000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991408645999968, 28.869103486000029 ], [ -81.991488945999947, 28.86925350000007 ], [ -81.991543784999976, 28.869332818000032 ], [ -81.991584916999955, 28.869382823000024 ], [ -81.991647593999971, 28.869436280000059 ], [ -81.991712230999951, 28.869475940000029 ], [ -81.991800373999979, 28.869522500000073 ], [ -81.991876764999972, 28.869555265000031 ], [ -81.991996247999964, 28.869603551000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991996247999964, 28.869603551000068 ], [ -81.992085957999961, 28.869653559000028 ], [ -81.992156862999934, 28.869693221000034 ], [ -81.992201913999963, 28.869724259000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97522825599998, 28.950966009000069 ], [ -81.975132073999987, 28.951078179000035 ], [ -81.975097476999963, 28.951118735000023 ], [ -81.975079024999957, 28.951145097000051 ], [ -81.975055956999938, 28.951179571000068 ], [ -81.975035194999975, 28.951220130000024 ], [ -81.975008667999987, 28.951263324000024 ], [ -81.974993670999936, 28.951295163000054 ], [ -81.974975214999972, 28.951335722000067 ], [ -81.974956758999951, 28.951374252000051 ], [ -81.974935994999953, 28.951420896000059 ], [ -81.974912920999941, 28.951483762000066 ], [ -81.974897834999979, 28.951541355000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01513532499996, 28.93669010900004 ], [ -82.015131413999939, 28.937328395000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01261104799994, 28.937948059000064 ], [ -82.012565906999953, 28.938408226000035 ], [ -82.012551992999988, 28.938594529000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011819118999938, 28.939056723000078 ], [ -82.011815266999974, 28.939138805000027 ], [ -82.011813666999956, 28.939442263000046 ], [ -82.011804909999967, 28.93968801300008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012527023999951, 28.939852174000066 ], [ -82.013159925999958, 28.939852113000029 ], [ -82.013241405999963, 28.939852105000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013241405999963, 28.939852105000057 ], [ -82.013462414999935, 28.939852083000062 ], [ -82.013717810999935, 28.939855495000074 ], [ -82.01396914999998, 28.939852032000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014566884999965, 28.939956797000036 ], [ -82.014607730999955, 28.939975287000038 ], [ -82.014749264999978, 28.940036994000025 ], [ -82.014863387999981, 28.940074797000079 ], [ -82.014996852999957, 28.940095752000047 ], [ -82.015165350999951, 28.940095568000061 ], [ -82.015364913999974, 28.940090490000046 ], [ -82.015580340999975, 28.940091869000071 ], [ -82.015686856999935, 28.940100375000043 ], [ -82.01573665799998, 28.940119838000044 ], [ -82.015775393999945, 28.940142953000077 ], [ -82.015809980999961, 28.940177019000032 ], [ -82.01584042099995, 28.940219604000049 ], [ -82.015851490999978, 28.940250023000033 ], [ -82.015857030999939, 28.940286527000069 ], [ -82.015855654999939, 28.940336416000036 ], [ -82.015855698999985, 28.940624800000023 ], [ -82.015856620999955, 28.940914409000072 ], [ -82.015859379999938, 28.941127772000073 ], [ -82.015859495999962, 28.941298472000028 ], [ -82.015855582999961, 28.941370955000025 ], [ -82.015846135999936, 28.941415728000038 ], [ -82.015828158999966, 28.941452234000053 ], [ -82.015808619999973, 28.941481115000045 ], [ -82.015785282999957, 28.941503345000058 ], [ -82.015746553999975, 28.941532552000069 ], [ -82.015713355999935, 28.941547159000038 ], [ -82.015670474999979, 28.941555681000068 ], [ -82.015622059999941, 28.941560554000034 ], [ -82.015519694999966, 28.941561783000054 ], [ -82.015396579999958, 28.941561797000077 ], [ -82.015252522999958, 28.941561240000055 ], [ -82.015135132999944, 28.941560609000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012110834999987, 28.948198353000066 ], [ -82.012200322999945, 28.948818011000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012200322999945, 28.948818011000071 ], [ -82.012216684999942, 28.94891550400007 ], [ -82.012254039999959, 28.949169895000068 ], [ -82.012255410999956, 28.94918089600003 ], [ -82.012256778999983, 28.949191896000059 ], [ -82.012257756999986, 28.949202898000067 ], [ -82.012258735999978, 28.949213898000039 ], [ -82.012259323999956, 28.949224899000058 ], [ -82.01225971599996, 28.949235900000076 ], [ -82.012259912, 28.949246900000048 ], [ -82.01225991299998, 28.949257901000067 ], [ -82.012259525, 28.949268901000039 ], [ -82.012259134999965, 28.949279903000047 ], [ -82.012258353999982, 28.949290904000065 ], [ -82.012257573999989, 28.949301904000038 ], [ -82.012256401999934, 28.949312906000046 ], [ -82.012255036999989, 28.949323906000075 ], [ -82.012253474999966, 28.949334907000036 ], [ -82.01225171699997, 28.949345909000044 ], [ -82.012249763999989, 28.949356909000073 ], [ -82.012247419999937, 28.949367566000035 ], [ -82.012245075999942, 28.949378568000043 ], [ -82.012242339999943, 28.949389224000072 ], [ -82.01223767099998, 28.949413267000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011299810999958, 28.951729495000052 ], [ -82.011296358999971, 28.951803279000046 ], [ -82.011295509999968, 28.951950085000078 ], [ -82.01125756, 28.95274045900004 ], [ -82.011257545999968, 28.952740752000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015096741999969, 28.958054650000065 ], [ -82.015175103, 28.958054641000047 ], [ -82.015315501999964, 28.958054625000045 ], [ -82.01543957399997, 28.958057482000072 ], [ -82.015551269999946, 28.958058186000073 ], [ -82.015815950999979, 28.958059399000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067447075999951, 28.801702259000024 ], [ -82.067416087999959, 28.801702275000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066384295999967, 28.80352520100007 ], [ -82.066394208999952, 28.80275510000007 ], [ -82.066396983999937, 28.801699747000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066384295999967, 28.80352520100007 ], [ -82.065823170999977, 28.803537795000068 ], [ -82.065310165999961, 28.803538044000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067434477999939, 28.803524869000057 ], [ -82.066384295999967, 28.80352520100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06847995399994, 28.801704772000051 ], [ -82.06849036899996, 28.801838203000045 ], [ -82.068466966999949, 28.802905695000049 ], [ -82.06847425899997, 28.803527379000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070515938999961, 28.803517230000068 ], [ -82.070489647999977, 28.802322925000055 ], [ -82.07048920699998, 28.80224729300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070521973999973, 28.80714961700005 ], [ -82.070534195999983, 28.805063855000071 ], [ -82.070561547999944, 28.804778775000045 ], [ -82.070540671999936, 28.804454295000028 ], [ -82.070515938999961, 28.803517230000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066384295999967, 28.80352520100007 ], [ -82.066367439999965, 28.803722945000061 ], [ -82.066359396999985, 28.804613780000068 ], [ -82.066364257999965, 28.805493237000064 ], [ -82.066373814999963, 28.80699058600004 ], [ -82.066348883999979, 28.807040636000067 ], [ -82.06632824999997, 28.80708007100003 ], [ -82.066297281999937, 28.807110413000032 ], [ -82.066262861999974, 28.807128625000075 ], [ -82.066221552999934, 28.80714077600004 ], [ -82.06615958499998, 28.807152937000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062234745999945, 28.80289603600005 ], [ -82.062239265999949, 28.803667291000068 ], [ -82.062239860999966, 28.804668055000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06326691199996, 28.801697671000056 ], [ -82.063257216999943, 28.802749995000056 ], [ -82.063244266999959, 28.803087595000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06615958499998, 28.807152937000069 ], [ -82.065835934999939, 28.807156128000031 ], [ -82.065557042999956, 28.807153231000029 ], [ -82.062225842999965, 28.807152071000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062209550999967, 28.808707810000044 ], [ -82.063118548999967, 28.808719519000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024612370999989, 28.898501207000038 ], [ -82.023818219999953, 28.898494969000069 ], [ -82.022365905999948, 28.898492026000042 ], [ -82.020550966999963, 28.898489124000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024694222999983, 28.899603718000037 ], [ -82.024614444999941, 28.899603733000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024612370999989, 28.898501207000038 ], [ -82.024612582999964, 28.899399503000041 ], [ -82.024614444999941, 28.899603733000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024694222999983, 28.899603718000037 ], [ -82.024692629999947, 28.900537114000031 ], [ -82.024694484999941, 28.90071262400005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024614444999941, 28.899603733000049 ], [ -82.023238264999975, 28.899595999000042 ], [ -82.021394294999936, 28.89958832700006 ], [ -82.020688980999978, 28.899582054000064 ], [ -82.020552994999946, 28.899580480000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020550966999963, 28.898489124000037 ], [ -82.020551071999989, 28.89902044300004 ], [ -82.020552994999946, 28.899580480000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024694484999941, 28.90071262400005 ], [ -82.023753450999948, 28.900706412000034 ], [ -82.020547773999965, 28.900692579000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020552994999946, 28.899580480000054 ], [ -82.020549479999943, 28.900143709000076 ], [ -82.020547773999965, 28.900692579000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020547773999965, 28.900692579000065 ], [ -82.020546037999964, 28.901078701000074 ], [ -82.020544323999957, 28.901586087000055 ], [ -82.020544349999966, 28.901720112000078 ], [ -82.020546189999948, 28.901849352000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021256955999945, 28.90184613100007 ], [ -82.021012176999989, 28.901847684000074 ], [ -82.020781903999989, 28.901849316000039 ], [ -82.020546189999948, 28.901849352000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021255364999945, 28.902932620000058 ], [ -82.021255456999938, 28.903382565000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024691388999941, 28.902951180000059 ], [ -82.024468363999972, 28.902951221000023 ], [ -82.022996040999942, 28.902937120000047 ], [ -82.021255364999945, 28.902932620000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024693394999986, 28.901852943000051 ], [ -82.021978603999969, 28.901844339000036 ], [ -82.021256955999945, 28.90184613100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024693394999986, 28.901852943000051 ], [ -82.024691388999941, 28.902951180000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024694484999941, 28.90071262400005 ], [ -82.024694587999988, 28.901146614000027 ], [ -82.024693394999986, 28.901852943000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026733228999944, 28.901860532000057 ], [ -82.024693394999986, 28.901852943000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041267727, 28.901910419000046 ], [ -82.041261056999986, 28.901910408000049 ], [ -82.040570460999959, 28.901909304000071 ], [ -82.039228349999973, 28.901903345000051 ], [ -82.037493594999944, 28.901896878000059 ], [ -82.037083877999976, 28.901909424000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017068283999947, 28.901093898000056 ], [ -82.017079705999947, 28.901119010000059 ], [ -82.017088271999967, 28.901149147000069 ], [ -82.017088282999964, 28.901214444000061 ], [ -82.017082584999969, 28.901277232000041 ], [ -82.017062695999982, 28.901822218000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015330044999985, 28.900011672000062 ], [ -82.015427086999978, 28.900064401000066 ], [ -82.015761023999971, 28.900217562000023 ], [ -82.015815253999961, 28.900250203000041 ], [ -82.015863775999946, 28.900282846000039 ], [ -82.015903737999963, 28.900323024000045 ], [ -82.015937989999941, 28.90035315800003 ], [ -82.015977952999947, 28.900400870000055 ], [ -82.016015063999987, 28.900453607000031 ], [ -82.016052172999935, 28.900493785000037 ], [ -82.016112108999948, 28.900523916000054 ], [ -82.016146357999958, 28.900526424000077 ], [ -82.016206288999967, 28.900516371000037 ], [ -82.016291903999957, 28.900488734000078 ], [ -82.016329003999942, 28.900478684000063 ], [ -82.016383227999938, 28.900471143000061 ], [ -82.016426037999963, 28.900471138000057 ], [ -82.016463143999943, 28.900491225000053 ], [ -82.016494542999965, 28.900531404000048 ], [ -82.016503113999988, 28.900591678000069 ], [ -82.01648602399996, 28.90080013000005 ], [ -82.016480325999964, 28.900860406000049 ], [ -82.016480334999983, 28.900918169000079 ], [ -82.016480341999966, 28.90096337500006 ], [ -82.016491763999966, 28.900998534000053 ], [ -82.016508892, 28.901028669000027 ], [ -82.016534579999984, 28.901046246000078 ], [ -82.016568283999959, 28.901062013000058 ], [ -82.016885621999961, 28.901046203000078 ], [ -82.01692843099994, 28.901043686000037 ], [ -82.016974096999945, 28.901048703000072 ], [ -82.017028324999956, 28.901068788000032 ], [ -82.017068283999947, 28.901093898000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017079449999983, 28.899559400000044 ], [ -82.017076681999981, 28.900091828000029 ], [ -82.017068283999947, 28.901093898000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017079449999983, 28.899559400000044 ], [ -82.016645661999974, 28.899644844000079 ], [ -82.016171923999934, 28.899757916000056 ], [ -82.015976888999944, 28.899795123000047 ], [ -82.015444190999972, 28.899928780000039 ], [ -82.01539853099996, 28.899951388000034 ], [ -82.015330044999985, 28.900011672000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017612801999974, 28.897572775000071 ], [ -82.017667308999989, 28.899240371000076 ], [ -82.017650212999968, 28.899401106000028 ], [ -82.017630244999964, 28.899458871000036 ], [ -82.017613125999958, 28.899491522000062 ], [ -82.017587444999947, 28.899514130000057 ], [ -82.017561762999946, 28.899534224000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017612801999974, 28.897572775000071 ], [ -82.01718468599995, 28.897371914000075 ], [ -82.016982040999949, 28.897258925000074 ], [ -82.016893563999986, 28.897218752000072 ], [ -82.016822213999944, 28.897201181000071 ], [ -82.016739448999942, 28.897183612000049 ], [ -82.01667380899994, 28.897183620000078 ], [ -82.016616890999956, 28.897184192000054 ], [ -82.015934652999988, 28.897186220000037 ], [ -82.015834766999944, 28.897186232000024 ], [ -82.015697779999982, 28.897176202000026 ], [ -82.015629284999989, 28.897168676000035 ], [ -82.015403818999971, 28.897108427000035 ], [ -82.015335322999988, 28.897093366000036 ], [ -82.015249704999974, 28.897083330000044 ], [ -82.015152672999989, 28.897083341000041 ], [ -82.015067057999943, 28.89709590800004 ], [ -82.014984297999945, 28.897108474000049 ], [ -82.014878707999969, 28.897133600000075 ], [ -82.014350760999946, 28.897294391000059 ], [ -82.014168125999959, 28.897394868000049 ], [ -82.013391921999983, 28.897819382000023 ], [ -82.013314871999967, 28.897859573000062 ], [ -82.013269212999944, 28.897882181000057 ], [ -82.013234967999949, 28.897902277000071 ], [ -82.013197868999953, 28.897919860000059 ], [ -82.013169330999972, 28.897932420000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027781109999978, 28.893720735000045 ], [ -82.027641052999968, 28.893720763000033 ], [ -82.027536009999949, 28.893720785000028 ], [ -82.025774791999936, 28.893718052000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027780610999969, 28.891847245000065 ], [ -82.02977988899994, 28.891843736000055 ], [ -82.029926949999947, 28.891856029000053 ], [ -82.030032000999938, 28.89188990100007 ], [ -82.030158071999949, 28.891963827000041 ], [ -82.030228116999979, 28.892025438000076 ], [ -82.030291161999969, 28.892096297000023 ], [ -82.030340204999959, 28.892176401000029 ], [ -82.03037524399997, 28.89226575400005 ], [ -82.030389272999969, 28.892345868000064 ], [ -82.030389303999982, 28.892453717000024 ], [ -82.03014097099998, 28.893372029000034 ], [ -82.030088478999971, 28.893470645000036 ], [ -82.029997469999955, 28.893569270000057 ], [ -82.029906452999967, 28.893640163000043 ], [ -82.029804924999951, 28.893686407000075 ], [ -82.029699892999986, 28.893720325000061 ], [ -82.029580847999966, 28.89373267700006 ], [ -82.027781109999978, 28.893720735000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025770113999954, 28.888954210000065 ], [ -82.025770593999937, 28.890898573000072 ], [ -82.025774266999974, 28.891594968000049 ], [ -82.025774791999936, 28.893718052000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025770113999954, 28.888954210000065 ], [ -82.02721613999995, 28.888963170000068 ], [ -82.027342189999956, 28.88898471400006 ], [ -82.027450739999949, 28.889024749000043 ], [ -82.027559296999982, 28.88909251900003 ], [ -82.027636343999973, 28.889160294000078 ], [ -82.027702891, 28.889243478000026 ], [ -82.027758942999981, 28.889366723000023 ], [ -82.027776481999979, 28.88948997500006 ], [ -82.02777671399997, 28.890358930000048 ], [ -82.027780503999963, 28.891443581000033 ], [ -82.027780610999969, 28.891847245000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025769815999979, 28.88774630000006 ], [ -82.025769994999962, 28.888473512000076 ], [ -82.025770113999954, 28.888954210000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026730509999936, 28.900723828000025 ], [ -82.026525782999954, 28.900721850000025 ], [ -82.025410683999951, 28.900712491000036 ], [ -82.024694484999941, 28.90071262400005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026730509999936, 28.900723828000025 ], [ -82.026733228999944, 28.901860532000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026730224999937, 28.899609620000035 ], [ -82.025749473999952, 28.899606712000036 ], [ -82.024694222999983, 28.899603718000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026730224999937, 28.899609620000035 ], [ -82.026730509999936, 28.900723828000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029598702999976, 28.909153910000043 ], [ -82.030550152999979, 28.912832519000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046363128999985, 28.800590259000046 ], [ -82.046460210999953, 28.800678775000051 ], [ -82.046537304999958, 28.800747304000026 ], [ -82.046851393999987, 28.801031411000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049888804999966, 28.799814280000078 ], [ -82.04961583499994, 28.799825741000063 ], [ -82.049364360999959, 28.799839086000077 ], [ -82.049136539999949, 28.799873249000029 ], [ -82.048930215999974, 28.799916869000072 ], [ -82.048749682999983, 28.799954800000023 ], [ -82.048650412999962, 28.799987351000027 ], [ -82.048562713999956, 28.800015453000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021208047999949, 28.918457775000036 ], [ -82.021202025999969, 28.916736377000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021202025999969, 28.916736377000063 ], [ -82.021373962999974, 28.916741716000047 ], [ -82.021564440999953, 28.916741686000023 ], [ -82.021693185999936, 28.916741665000075 ], [ -82.02180630099997, 28.916741647000038 ], [ -82.021916569999973, 28.916741252000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021922376999953, 28.917392389000042 ], [ -82.021916569999973, 28.916741252000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014295526999945, 28.913497053000071 ], [ -82.01561402699997, 28.913499323000053 ], [ -82.015835695999954, 28.913502392000055 ], [ -82.015909587999943, 28.913517863000038 ], [ -82.015969407999989, 28.91355036300007 ], [ -82.016022192999969, 28.913595246000057 ], [ -82.016065874999981, 28.913651897000079 ], [ -82.016209154999956, 28.913921082000059 ], [ -82.016252348999956, 28.914011310000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014752057999942, 28.911989540000036 ], [ -82.014753876999976, 28.91133657000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011030767999955, 28.931639995000069 ], [ -82.01152876499998, 28.931641369000033 ], [ -82.011539800999969, 28.93164104400006 ], [ -82.011551572999963, 28.931642338000074 ], [ -82.011569229999964, 28.931644925000057 ], [ -82.011585415999946, 28.931646219000072 ], [ -82.011600131999955, 28.931650101000059 ], [ -82.011613374999968, 28.931653983000047 ], [ -82.011628089999988, 28.931657865000034 ], [ -82.011638390999963, 28.931664337000029 ], [ -82.011650163999946, 28.93167210200005 ], [ -82.011663407999947, 28.931681162000075 ], [ -82.011677669999983, 28.93169498900005 ], [ -82.011689784999987, 28.931704613000079 ], [ -82.011700198999961, 28.931716110000025 ], [ -82.011707555999976, 28.93172517000005 ], [ -82.011713442999962, 28.931735526000068 ], [ -82.011720801999957, 28.93174846900007 ], [ -82.011725216999935, 28.93176141400005 ], [ -82.011734048999983, 28.931778241000075 ], [ -82.011739936999959, 28.931796363000046 ], [ -82.01174214599996, 28.931811249000077 ], [ -82.011743985999942, 28.931824193000068 ], [ -82.011747665999962, 28.931838756000047 ], [ -82.01174950799998, 28.931854938000072 ], [ -82.011753739999961, 28.934295630000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015131413999939, 28.937328395000065 ], [ -82.015131456999939, 28.937624665000044 ], [ -82.015131505999989, 28.937962693000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998269397999934, 28.959399378000057 ], [ -81.998273172999973, 28.959034991000067 ], [ -81.998271416999955, 28.958870666000053 ], [ -81.998269464999964, 28.958686060000048 ], [ -81.998272204999978, 28.958484951000059 ], [ -81.998277875999975, 28.958353629000044 ], [ -81.998310391999951, 28.958223279000038 ], [ -81.99836812999996, 28.958147931000042 ], [ -81.998448216999975, 28.958075859000076 ], [ -81.998535753999988, 28.958033272000023 ], [ -81.99861397799998, 28.958013616000073 ], [ -81.998656814999947, 28.958008703000075 ], [ -81.998744220999981, 28.958001865000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978291761999969, 28.953438189000053 ], [ -81.97827751899996, 28.955226602000039 ], [ -81.978274638999949, 28.955731652000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978274638999949, 28.955731652000054 ], [ -81.976424306999945, 28.955728900000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976449006999985, 28.953429399000072 ], [ -81.976433817999975, 28.954558390000045 ], [ -81.976424306999945, 28.955728900000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976424306999945, 28.955728900000054 ], [ -81.97547278899998, 28.95572141100007 ], [ -81.975350729999946, 28.95570919000005 ], [ -81.975231449999967, 28.955684768000026 ], [ -81.97513713799998, 28.955648154000073 ], [ -81.975065019999988, 28.955613982000045 ], [ -81.974983777999967, 28.955562348000058 ], [ -81.974913629999946, 28.955512143000078 ], [ -81.974511120999978, 28.955101596000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971608305999951, 28.957955609000066 ], [ -81.971607916999972, 28.959378325000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973500564999938, 28.955888603000062 ], [ -81.973300103999975, 28.956028618000062 ], [ -81.973214979999966, 28.95607689600007 ], [ -81.973121617999936, 28.956125173000032 ], [ -81.973017274999961, 28.95616861700006 ], [ -81.972871747999989, 28.956219297000075 ], [ -81.972731713999963, 28.956255490000046 ], [ -81.972610905999943, 28.956274783000026 ], [ -81.972448912999937, 28.956289238000068 ], [ -81.972306142999969, 28.956294039000056 ], [ -81.972182593999946, 28.956284355000037 ], [ -81.972045321999985, 28.956267422000053 ], [ -81.971910795999975, 28.956238418000055 ], [ -81.971803522999949, 28.95620180700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971803522999949, 28.95620180700007 ], [ -81.971665811999969, 28.956551177000051 ], [ -81.971629425999936, 28.956679053000073 ], [ -81.971621611999979, 28.956768115000045 ], [ -81.971616387999973, 28.956880013000045 ], [ -81.971616336999944, 28.957069555000032 ], [ -81.971608305999951, 28.957955609000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970571336999967, 28.954912442000079 ], [ -81.969743214999937, 28.954079404000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970571336999967, 28.954912442000079 ], [ -81.970458711999981, 28.955026066000073 ], [ -81.970423029999949, 28.955083856000044 ], [ -81.970391105999965, 28.955147114000056 ], [ -81.970368082999983, 28.955209411000055 ], [ -81.970354333999978, 28.955284263000067 ], [ -81.970346078999967, 28.95535187400003 ], [ -81.970346055999983, 28.955433976000052 ], [ -81.970376168999962, 28.955740653000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969743214999937, 28.954079404000026 ], [ -81.969442728999979, 28.953772542000024 ], [ -81.969379817999936, 28.953715117000058 ], [ -81.969310691999965, 28.953667789000065 ], [ -81.969236978999959, 28.953625162000037 ], [ -81.969161157999963, 28.953591796000069 ], [ -81.969085333999942, 28.953563989000031 ], [ -81.969028463999962, 28.953547301000071 ], [ -81.968958954999948, 28.953538022000032 ], [ -81.968849421999948, 28.953532438000025 ], [ -81.96874199399997, 28.953532414000051 ], [ -81.968636668999977, 28.953537947000029 ], [ -81.967606604999958, 28.953589578000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967606604999958, 28.953589578000049 ], [ -81.966877762999957, 28.953622749000033 ], [ -81.966622879999989, 28.953635654000038 ], [ -81.966445933999978, 28.953650432000074 ], [ -81.966363779999938, 28.953661527000065 ], [ -81.966285833999962, 28.953681888000062 ], [ -81.966216313999951, 28.953704102000074 ], [ -81.966142575999982, 28.953741137000065 ], [ -81.966068836999966, 28.953783730000055 ], [ -81.965969810999979, 28.953857811000034 ], [ -81.965689560999976, 28.954133788000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965689560999976, 28.954133788000036 ], [ -81.965527409999936, 28.953998502000047 ], [ -81.965382098999953, 28.953894715000047 ], [ -81.96529364099996, 28.953853934000051 ], [ -81.965196753999976, 28.953824266000026 ], [ -81.965116714999965, 28.953807571000027 ], [ -81.965009291999934, 28.953794575000074 ], [ -81.964922925999986, 28.953794552000033 ], [ -81.964840774999971, 28.953796383000054 ], [ -81.964703853999936, 28.953800053000066 ], [ -81.963490518999947, 28.953859015000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963490518999947, 28.953859015000035 ], [ -81.963692442999957, 28.954707593000023 ], [ -81.963713483999982, 28.954778001000079 ], [ -81.963745058999962, 28.95483914700003 ], [ -81.963764002999937, 28.954879911000035 ], [ -81.963793476999967, 28.954928090000067 ], [ -81.963825059999976, 28.954967004000025 ], [ -81.964355720999947, 28.955461808000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971607916999972, 28.959378325000046 ], [ -81.970706900999971, 28.959366713000065 ], [ -81.969757045999984, 28.95936682100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969757045999984, 28.95936682100006 ], [ -81.968690184999957, 28.959358874000031 ], [ -81.968009570999982, 28.959346139000047 ], [ -81.967923781999957, 28.959336059000066 ], [ -81.967843714999958, 28.959313404000056 ], [ -81.96777222999998, 28.959285720000025 ], [ -81.96769308599994, 28.959243313000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966808771, 28.958427844000028 ], [ -81.967498859999978, 28.959105069000032 ], [ -81.967557280999984, 28.959157680000033 ], [ -81.967622347999963, 28.959204105000026 ], [ -81.96769308599994, 28.959243313000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966205984999988, 28.956533837000052 ], [ -81.966120156999978, 28.956649508000055 ], [ -81.965931340999987, 28.956885879000026 ], [ -81.965882695999937, 28.95698143900006 ], [ -81.965859789999968, 28.957066947000044 ], [ -81.965851180999948, 28.95716000300007 ], [ -81.965854011999966, 28.957248032000052 ], [ -81.965862561999984, 28.957338576000041 ], [ -81.965876840999954, 28.957393912000043 ], [ -81.965899697999987, 28.957456795000041 ], [ -81.965939707999951, 28.957534772000031 ], [ -81.965994016999957, 28.957612753000035 ], [ -81.966808771, 28.958427844000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966839908999987, 28.955720510000049 ], [ -81.966721802999984, 28.955867779000073 ], [ -81.966205984999988, 28.956533837000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962582434999945, 28.957513759000051 ], [ -81.96485919099996, 28.959760672000073 ], [ -81.965105862999962, 28.960004538000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961111198999959, 28.956063869000047 ], [ -81.962582434999945, 28.957513759000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956114124999942, 28.952363134000052 ], [ -81.955745751999984, 28.95200671300006 ], [ -81.954768949999959, 28.951027789000079 ], [ -81.95469391499995, 28.950964886000065 ], [ -81.954629589999968, 28.950933427000052 ], [ -81.954572406999944, 28.950917688000061 ], [ -81.954493768999953, 28.950920805000067 ], [ -81.954325769999969, 28.950927036000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970431207, 28.935659857000076 ], [ -81.970440906999954, 28.935905314000024 ], [ -81.970488570999976, 28.93664306900007 ], [ -81.970520244999989, 28.937268404000065 ], [ -81.970530761999953, 28.937390104000031 ], [ -81.970509438999954, 28.93747398000005 ], [ -81.970467029999952, 28.937502161000054 ], [ -81.970403320999935, 28.937525179000033 ], [ -81.970313053999973, 28.937502127000073 ], [ -81.97015909299995, 28.937446057000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970656899999938, 28.935292638000078 ], [ -81.970430431999944, 28.935638886000049 ], [ -81.970431207, 28.935659857000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970648349999976, 28.931678072000068 ], [ -81.970658299999968, 28.931733079000026 ], [ -81.970669420999968, 28.931788085000051 ], [ -81.970681519999971, 28.931842748000065 ], [ -81.970700491999935, 28.931901999000047 ], [ -81.970730138999954, 28.932008809000024 ], [ -81.970805607999978, 28.932269904000066 ], [ -81.970843343999945, 28.932398076000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964795055999957, 28.93051878600005 ], [ -81.964835102999984, 28.930502890000071 ], [ -81.964851128999953, 28.930496018000042 ], [ -81.964866761999986, 28.93048880300006 ], [ -81.96488239599995, 28.930481245000067 ], [ -81.964897832999952, 28.930473685000038 ], [ -81.964913272, 28.930465783000045 ], [ -81.964928320999945, 28.930457535000073 ], [ -81.964943367999979, 28.930449289000023 ], [ -81.964958219999971, 28.930440698000041 ], [ -81.964972877999969, 28.930431764000048 ], [ -81.964987338999947, 28.930422830000055 ], [ -81.965001604999941, 28.930413551000072 ], [ -81.96501587299997, 28.930403930000068 ], [ -81.965029747999949, 28.930394307000029 ], [ -81.965043428999934, 28.930384341000035 ], [ -81.965056913999945, 28.930374376000032 ], [ -81.965070398999956, 28.930364066000038 ], [ -81.965088770999955, 28.930348945000048 ], [ -81.96509619699998, 28.930343102000052 ], [ -81.965103232, 28.930337603000055 ], [ -81.965110463999963, 28.930332104000058 ], [ -81.965117890999977, 28.93032660700004 ], [ -81.965125317999934, 28.930321452000044 ], [ -81.965132938999943, 28.930316297000047 ], [ -81.965140560999941, 28.93031114300004 ], [ -81.96514818199995, 28.930306331000054 ], [ -81.965156194999963, 28.930301520000057 ], [ -81.965164011999946, 28.93029671000005 ], [ -81.965172219999943, 28.930292243000054 ], [ -81.965180233999945, 28.930287776000057 ], [ -81.965188439999963, 28.93028365300006 ], [ -81.965196842999944, 28.930279530000064 ], [ -81.965205246999972, 28.930275406000078 ], [ -81.965213649999953, 28.930271283000025 ], [ -81.965222246999986, 28.930267504000028 ], [ -81.96523084599994, 28.930264068000042 ], [ -81.965239443999963, 28.930260289000046 ], [ -81.965248237999958, 28.93025719700006 ], [ -81.965257030999965, 28.930253762000063 ], [ -81.96526582499996, 28.930250670000078 ], [ -81.96527481399994, 28.930247579000024 ], [ -81.965283802999977, 28.930244830000049 ], [ -81.965292985999952, 28.930242083000053 ], [ -81.965301974999988, 28.930239678000078 ], [ -81.965311159999942, 28.930237275000025 ], [ -81.965320342999973, 28.930234871000039 ], [ -81.965329721999979, 28.930232810000064 ], [ -81.965338905999943, 28.930230750000078 ], [ -81.965348286999983, 28.930229033000046 ], [ -81.965357664999942, 28.93022731700006 ], [ -81.965367043999947, 28.930225600000028 ], [ -81.965376422999952, 28.930224228000043 ], [ -81.965385801999957, 28.930222855000068 ], [ -81.965395376999936, 28.930221827000025 ], [ -81.965404951999972, 28.930220797000061 ], [ -81.965414329999987, 28.930219769000075 ], [ -81.965423903999977, 28.930219083000054 ], [ -81.965433477999966, 28.930218742000079 ], [ -81.965443052999944, 28.930218401000047 ], [ -81.965452625999944, 28.930218060000072 ], [ -81.96546220099998, 28.930218062000051 ], [ -81.96547177399998, 28.930218065000076 ], [ -81.965481153999974, 28.930218067000055 ], [ -81.965490727999963, 28.930218414000024 ], [ -81.965500300999963, 28.93021910300007 ], [ -81.965509874999952, 28.930219449000049 ], [ -81.965519447999952, 28.930220483000028 ], [ -81.965528825999968, 28.930221173000064 ], [ -81.965538400999947, 28.930222206000053 ], [ -81.965547778999962, 28.930223585000078 ], [ -81.965557352999951, 28.930224962000068 ], [ -81.965566729999978, 28.930226339000058 ], [ -81.965576107999937, 28.930228061000037 ], [ -81.965585485999952, 28.930229782000026 ], [ -81.965594668999984, 28.930231847000073 ], [ -81.965604047999989, 28.930233912000062 ], [ -81.965613228999985, 28.930235977000052 ], [ -81.965622411999959, 28.930238386000042 ], [ -81.965631594999934, 28.930240795000032 ], [ -81.965640580999946, 28.930243547000032 ], [ -81.966512316999967, 28.930496460000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965890213999955, 28.932325297000034 ], [ -81.966062309999984, 28.93251357500003 ], [ -81.966088873, 28.932542802000057 ], [ -81.966116023999973, 28.932571342000074 ], [ -81.966143759999966, 28.932599539000023 ], [ -81.966172082999947, 28.932627392000029 ], [ -81.966200991999983, 28.932654558000024 ], [ -81.966230293999956, 28.93268137900003 ], [ -81.966260179999949, 28.932707858000072 ], [ -81.966290651999941, 28.932733649000056 ], [ -81.966321515999937, 28.932759095000051 ], [ -81.966352965999988, 28.932784200000071 ], [ -81.966391126999952, 28.932811747000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967568722999943, 28.931553523000048 ], [ -81.967503227999941, 28.931583280000041 ], [ -81.967486225999949, 28.931590839000023 ], [ -81.967477821999978, 28.931594963000066 ], [ -81.967469613999981, 28.931599085000073 ], [ -81.967461406999973, 28.931603209000059 ], [ -81.967453198999976, 28.931607676000056 ], [ -81.967445186999953, 28.931612144000042 ], [ -81.96743717399994, 28.931616954000049 ], [ -81.967429356999958, 28.931621765000045 ], [ -81.967421539999975, 28.931626576000042 ], [ -81.967413918999966, 28.931631731000039 ], [ -81.967406296999968, 28.931636885000046 ], [ -81.967398869999954, 28.931642040000042 ], [ -81.96739144299994, 28.931647195000039 ], [ -81.967384212999946, 28.931652694000036 ], [ -81.967376980999973, 28.931658537000033 ], [ -81.967369944999973, 28.93166403500004 ], [ -81.967363105999937, 28.931669878000037 ], [ -81.967356263999989, 28.931675721000033 ], [ -81.967349422999973, 28.931681906000051 ], [ -81.967342973999962, 28.931687750000037 ], [ -81.967336523999961, 28.931694280000045 ], [ -81.96733027099998, 28.931700466000052 ], [ -81.967324015999964, 28.931706996000059 ], [ -81.967317955999988, 28.931713183000056 ], [ -81.967311896999945, 28.931720057000064 ], [ -81.967306227999984, 28.931726587000071 ], [ -81.967300560999945, 28.931733461000078 ], [ -81.967294892999973, 28.931740335000029 ], [ -81.967289613999981, 28.931747209000036 ], [ -81.967284335999977, 28.931754084000033 ], [ -81.967279058999964, 28.931761302000041 ], [ -81.967274170999985, 28.931768520000048 ], [ -81.967269284999986, 28.931775737000066 ], [ -81.967264592999982, 28.931782956000063 ], [ -81.967260096999951, 28.931790518000071 ], [ -81.967255600999977, 28.931798079000032 ], [ -81.967251493999981, 28.931805298000029 ], [ -81.967247388999965, 28.931813204000036 ], [ -81.967243282999959, 28.931820766000044 ], [ -81.967239568999958, 28.931828328000051 ], [ -81.967234680999979, 28.93183864100007 ], [ -81.967208088999939, 28.931895358000077 ], [ -81.967191469999989, 28.931929044000071 ], [ -81.967174070999988, 28.931962042000066 ], [ -81.967155887999979, 28.931995040000061 ], [ -81.967137315999935, 28.932027695000045 ], [ -81.967117960999985, 28.93206000400005 ], [ -81.967098021999959, 28.932091970000045 ], [ -81.967077299999971, 28.932123593000028 ], [ -81.967055992999974, 28.932155214000034 ], [ -81.967034293999973, 28.932186149000074 ], [ -81.967011815999967, 28.932216740000058 ], [ -81.966988748999938, 28.932247331000042 ], [ -81.966964900999983, 28.932277233000036 ], [ -81.966940662999946, 28.93230679100003 ], [ -81.966915839999956, 28.93233600700006 ], [ -81.966890429999978, 28.932365222000044 ], [ -81.966864432999955, 28.932393406000074 ], [ -81.966842921999955, 28.932420731000036 ], [ -81.966814682999939, 28.932451765000053 ], [ -81.966793503999952, 28.932474525000032 ], [ -81.966760558999965, 28.932507628000053 ], [ -81.966729968999971, 28.932534524000062 ], [ -81.966704083999957, 28.932559351000066 ], [ -81.966675845999987, 28.932584177000024 ], [ -81.966645256999982, 28.932609003000039 ], [ -81.966614666999988, 28.932635899000047 ], [ -81.966579368999987, 28.93266486300007 ], [ -81.966548782999951, 28.932685550000031 ], [ -81.966511133999973, 28.932710373000077 ], [ -81.966445248999946, 28.932762094000054 ], [ -81.966391126999952, 28.932811747000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975139259999935, 28.88547383100007 ], [ -81.975228757999957, 28.885461219000035 ], [ -81.975456510999948, 28.88544440000004 ], [ -81.976282385, 28.885382729000071 ], [ -81.976354758999946, 28.885362135000037 ], [ -81.976425006999989, 28.885324681000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975335031999975, 28.886100041000077 ], [ -81.975260597999977, 28.885822776000055 ], [ -81.975139259999935, 28.88547383100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975887780999983, 28.888978497000039 ], [ -81.975964940999972, 28.888985535000074 ], [ -81.976161831999946, 28.888992595000047 ], [ -81.976372032999961, 28.888976241000023 ], [ -81.976595540999938, 28.888938814000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976595540999938, 28.888938814000028 ], [ -81.976946830999964, 28.888867934000075 ], [ -81.977348599999971, 28.888792027000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977510608999978, 28.890734283000029 ], [ -81.977622354999937, 28.890764743000034 ], [ -81.977942688999974, 28.890859267000053 ], [ -81.978237400999944, 28.890942164000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976777759999948, 28.891190129000051 ], [ -81.976825219999967, 28.891198387000031 ], [ -81.977036883999972, 28.891230632000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973921474999941, 28.891913359000057 ], [ -81.974015139999949, 28.891890897000053 ], [ -81.974174797999979, 28.891853461000039 ], [ -81.974377027999935, 28.891812286000061 ], [ -81.974589896999987, 28.891771751000078 ], [ -81.974892254999986, 28.891735366000034 ], [ -81.975236213999949, 28.891704147000041 ], [ -81.975568253999938, 28.891688394000028 ], [ -81.975829, 28.891693597000028 ], [ -81.976321189999965, 28.891714655000044 ], [ -81.976659077999955, 28.891756312000041 ], [ -81.976778216999946, 28.89177008300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973921474999941, 28.891913359000057 ], [ -81.973910315999944, 28.891845917000069 ], [ -81.973906605999957, 28.891784097000027 ], [ -81.973917261999986, 28.891735393000033 ], [ -81.973943814999984, 28.891677776000051 ], [ -81.974109922999958, 28.891317872000059 ], [ -81.974163855999961, 28.891213373000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974163855999961, 28.891213373000028 ], [ -81.974275056999943, 28.890986134000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975619654999946, 28.903041182000038 ], [ -81.975146583999958, 28.903101750000076 ], [ -81.974971749999952, 28.903125094000075 ], [ -81.974912759999938, 28.903122676000066 ], [ -81.974874534999969, 28.903115978000073 ], [ -81.974846863999971, 28.903100986000027 ], [ -81.974819192999973, 28.903082247000043 ], [ -81.974795777999987, 28.903065384000058 ], [ -81.974759595999956, 28.903029783000079 ], [ -81.974685114999943, 28.90290987700007 ], [ -81.974504234999984, 28.902611986000068 ], [ -81.974254305999978, 28.902197367000042 ], [ -81.974138072999949, 28.901984277000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974382232999972, 28.899113095000075 ], [ -81.97435373199994, 28.899039177000077 ], [ -81.974218794999956, 28.89868625500003 ], [ -81.974143031999972, 28.898492775000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990601882999954, 28.875122994000037 ], [ -81.990542795999943, 28.875146478000033 ], [ -81.990510391999976, 28.875171640000076 ], [ -81.990470362999986, 28.875211900000068 ], [ -81.99044558099996, 28.875253840000028 ], [ -81.990428421999979, 28.875300813000024 ], [ -81.990420794999977, 28.875332688000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990965913999958, 28.87526897500004 ], [ -81.990926681999952, 28.875223212000037 ], [ -81.990897978999953, 28.87519089500006 ], [ -81.990863415999968, 28.875163046000068 ], [ -81.990811540999971, 28.875133075000065 ], [ -81.990761985999939, 28.875111262000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99150536999997, 28.87580760000003 ], [ -81.991466313999979, 28.875778489000027 ], [ -81.991113392999978, 28.875545567000074 ], [ -81.991053569999963, 28.875500496000029 ], [ -81.991023077999955, 28.875458553000044 ], [ -81.990979246999984, 28.875379701000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990815313999974, 28.875579330000051 ], [ -81.990870586999961, 28.875586044000045 ], [ -81.990929174999962, 28.875600685000052 ], [ -81.991017342999953, 28.875638061000075 ], [ -81.991124431999935, 28.875704470000073 ], [ -81.991415675999974, 28.875901687000066 ], [ -81.991426416999957, 28.875909703000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990676173999987, 28.875596096000038 ], [ -81.990716199999952, 28.875596099000063 ], [ -81.990767662999986, 28.875591070000041 ], [ -81.990815313999974, 28.875579330000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982865156999935, 28.881752498000026 ], [ -81.982894255999952, 28.881639093000047 ], [ -81.982930671999952, 28.881573677000063 ], [ -81.98298073899997, 28.881518945000039 ], [ -81.983208304999948, 28.88132938900003 ], [ -81.983455590999938, 28.88113716600003 ], [ -81.983778727999947, 28.880894218000037 ], [ -81.984139790999961, 28.880633916000079 ], [ -81.984520566999947, 28.880380292000041 ], [ -81.98504546199996, 28.880026551000071 ], [ -81.985423201999936, 28.879774258000054 ], [ -81.985822178999967, 28.879504612000062 ], [ -81.986225703999935, 28.879234964000034 ], [ -81.986526069999968, 28.879032059000053 ], [ -81.987094942999988, 28.878654281000024 ], [ -81.987516665999976, 28.878369945000031 ], [ -81.988093117999938, 28.877973474000044 ], [ -81.988384379999957, 28.877751872000033 ], [ -81.988765141999977, 28.877446167000073 ], [ -81.989024546999985, 28.877225897000073 ], [ -81.989302154999962, 28.87697759100007 ], [ -81.989543355999956, 28.876747973000079 ], [ -81.989802759999975, 28.876486313000044 ], [ -81.990051543999982, 28.876229993000038 ], [ -81.990276058999939, 28.875973670000064 ], [ -81.990483886999982, 28.875726693000047 ], [ -81.990549116999944, 28.875658607000048 ], [ -81.990578964999941, 28.875634675000072 ], [ -81.990632334999987, 28.875606159000029 ], [ -81.990676173999987, 28.875596096000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982528869999953, 28.873537503000023 ], [ -81.982920633999981, 28.873623764000058 ], [ -81.983269543999938, 28.873723491000078 ], [ -81.983587849999935, 28.873804354000072 ], [ -81.98370721799995, 28.873820533000071 ], [ -81.983795979999968, 28.873820543000079 ], [ -81.983878622999953, 28.873807083000031 ], [ -81.98394902299998, 28.873782844000061 ], [ -81.984010244, 28.873745134000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981323218999989, 28.876555920000044 ], [ -81.981647744999975, 28.876790766000056 ], [ -81.981874642999969, 28.87694962300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980753834999973, 28.876144337000028 ], [ -81.980972213999962, 28.875882064000052 ], [ -81.981175177999944, 28.875543127000071 ], [ -81.981391627999983, 28.875129935000075 ], [ -81.98147217099995, 28.874971925000068 ], [ -81.98147836399994, 28.874959775000036 ], [ -81.981557968999937, 28.874929794000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980181182999956, 28.87387880700004 ], [ -81.980600550999952, 28.873979861000066 ], [ -81.980877486999987, 28.874066964000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979014697999958, 28.872553303000075 ], [ -81.979027434999978, 28.87233053500006 ], [ -81.979030202, 28.872123439000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978707946999975, 28.875571150000042 ], [ -81.978915485999948, 28.875584468000056 ], [ -81.979296600999987, 28.875617741000042 ], [ -81.979485352999973, 28.875634326000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982772196999974, 28.878883832000042 ], [ -81.983294538999985, 28.878405617000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982065705999958, 28.877680404000046 ], [ -81.98214898599997, 28.877785696000046 ], [ -81.982186706999983, 28.877868736000039 ], [ -81.982256097999937, 28.878115857000068 ], [ -81.982310407999989, 28.878291235000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97798722899995, 28.87549331300005 ], [ -81.978345702999945, 28.875527914000031 ], [ -81.978707946999975, 28.875571150000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977270283999985, 28.875423445000024 ], [ -81.977360844999964, 28.87543342400005 ], [ -81.97798722899995, 28.87549331300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976775210999961, 28.875389483000049 ], [ -81.977270283999985, 28.875423445000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975475199999948, 28.877975907000064 ], [ -81.975612356999989, 28.878057559000069 ], [ -81.975666449999949, 28.878079675000038 ], [ -81.975720544999945, 28.878096691000053 ], [ -81.975842257999943, 28.878123922000043 ], [ -81.976018068999963, 28.878157963000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976018068999963, 28.878157963000035 ], [ -81.976054799999986, 28.87806444000006 ], [ -81.976097323999966, 28.877982821000046 ], [ -81.976236470999936, 28.877816191000079 ], [ -81.976375613999949, 28.877659764000043 ], [ -81.976433592999967, 28.877586651000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976433592999967, 28.877586651000058 ], [ -81.97653988899998, 28.877443822000032 ], [ -81.976621061999936, 28.87732139600007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977936727999975, 28.877622616000053 ], [ -81.978006284999935, 28.877610724000078 ], [ -81.978160853999952, 28.87758694200005 ], [ -81.978249730999948, 28.877573350000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976433592999967, 28.877586651000058 ], [ -81.976677023999969, 28.877620703000048 ], [ -81.97690307299996, 28.877636047000067 ], [ -81.977096275999941, 28.877646284000036 ], [ -81.977382219999981, 28.877656535000028 ], [ -81.977559968999969, 28.877654864000078 ], [ -81.977737720999983, 28.877644691000057 ], [ -81.977936727999975, 28.877622616000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976018068999963, 28.878157963000035 ], [ -81.976174560999937, 28.878183500000034 ], [ -81.976506867999944, 28.878229474000079 ], [ -81.976862359999984, 28.878263546000028 ], [ -81.977221721999967, 28.878278913000031 ], [ -81.977542445999973, 28.87828066700007 ], [ -81.977793617999964, 28.878268805000062 ], [ -81.977899884999943, 28.878253518000065 ], [ -81.978008083999953, 28.878236529000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974528046999978, 28.880247213000075 ], [ -81.974516369999947, 28.880123533000074 ], [ -81.974508673999935, 28.879997690000039 ], [ -81.974504839999952, 28.879868448000025 ], [ -81.97450680299994, 28.879746007000051 ], [ -81.974519310999938, 28.87962049600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976463610999986, 28.881560857000068 ], [ -81.976481037999974, 28.881392506000054 ], [ -81.976512020999962, 28.881088111000054 ], [ -81.976533318999941, 28.880885749000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992835573999969, 28.888309701000026 ], [ -81.993441608999944, 28.888474401000053 ], [ -81.993535460999965, 28.888498324000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993535460999965, 28.888498324000068 ], [ -81.993714107999949, 28.888544694000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962930025999981, 28.896442713000056 ], [ -81.963309789999983, 28.896396386000049 ], [ -81.963402924999968, 28.896390245000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963933495999981, 28.897072168000079 ], [ -81.964095261999944, 28.897065432000034 ], [ -81.964660155, 28.897045246000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964660155, 28.897045246000062 ], [ -81.964762863999965, 28.897038494000071 ], [ -81.965117202999977, 28.897036326000034 ], [ -81.965384237999956, 28.897038655000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965384237999956, 28.897038655000074 ], [ -81.966139130999977, 28.897041106000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965384237999956, 28.897038655000074 ], [ -81.965384846999939, 28.895911198000078 ], [ -81.965383840999948, 28.895657301000028 ], [ -81.965375860999984, 28.895324708000032 ], [ -81.965346820999969, 28.895021220000046 ], [ -81.96535550599998, 28.894964027000071 ], [ -81.965382964999947, 28.894910651000032 ], [ -81.965421976999949, 28.894859821000068 ], [ -81.965471095999987, 28.894824245000052 ], [ -81.965530316999946, 28.894802653000056 ], [ -81.965926051999986, 28.89479639800004 ], [ -81.966005478999989, 28.894823110000061 ], [ -81.966041578999977, 28.894847269000024 ], [ -81.96607189499997, 28.894889219000049 ], [ -81.966105090999974, 28.894959133000043 ], [ -81.966118071999972, 28.89501124800006 ], [ -81.966141736999987, 28.895277118000024 ], [ -81.966175487999976, 28.895775752000077 ], [ -81.966175365999959, 28.896153102000028 ], [ -81.966150277999986, 28.896640888000036 ], [ -81.966139130999977, 28.897041106000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960689759, 28.898748484000066 ], [ -81.960564173999956, 28.898510574000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963803424999981, 28.898960093000028 ], [ -81.96394268399996, 28.898992446000079 ], [ -81.96412883499994, 28.89898630700003 ], [ -81.964352398999949, 28.898976555000047 ], [ -81.964618726999959, 28.898968217000061 ], [ -81.964970715999982, 28.898956276000035 ], [ -81.965170729999954, 28.89896251600004 ], [ -81.965309399999967, 28.899001056000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956034123999984, 28.900702265000064 ], [ -81.955986724999946, 28.900631791000023 ], [ -81.955891865999945, 28.900498476000053 ], [ -81.955792974999952, 28.900343834000068 ], [ -81.955752611999969, 28.900278068000034 ], [ -81.955724362999945, 28.900226523000072 ], [ -81.955693555999972, 28.900171540000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956503079999948, 28.901187841000024 ], [ -81.956416943999955, 28.901115781000044 ], [ -81.956266462999963, 28.900970444000052 ], [ -81.956171475999952, 28.900869274000058 ], [ -81.956098274999988, 28.900780158000032 ], [ -81.956065701999989, 28.900740007000024 ], [ -81.956034123999984, 28.900702265000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956034123999984, 28.900702265000064 ], [ -81.955835467999975, 28.900833273000046 ], [ -81.955772260999936, 28.900870984000051 ], [ -81.955700025999988, 28.900910680000038 ], [ -81.955614245999982, 28.900960301000055 ], [ -81.955510409999988, 28.901011901000061 ], [ -81.955398481999964, 28.901060118000032 ], [ -81.955277917999979, 28.901101192000056 ], [ -81.955142490999947, 28.901142852000078 ], [ -81.955040924999935, 28.90116665000005 ], [ -81.954912271999945, 28.901198383000064 ], [ -81.95479490699995, 28.901218203000042 ], [ -81.954659489999983, 28.901236031000053 ], [ -81.954505333999975, 28.901252335000038 ], [ -81.954366839999977, 28.901256758000045 ], [ -81.954278078999948, 28.901251789000071 ], [ -81.95421715699996, 28.901225952000061 ], [ -81.954153984999948, 28.901178267000034 ], [ -81.954122414999972, 28.901124636000077 ], [ -81.954104394999945, 28.901047177000066 ], [ -81.954106698999965, 28.900935965000031 ], [ -81.954108459999986, 28.900705594000044 ], [ -81.954107521999958, 28.900618617000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120373595999979, 28.770380439000064 ], [ -82.120565480999971, 28.770654892000039 ], [ -82.120677375999946, 28.770825850000051 ], [ -82.120807923999962, 28.771027253000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120599745999982, 28.771156318000067 ], [ -82.120807923999962, 28.771027253000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120807923999962, 28.771027253000057 ], [ -82.120967253999936, 28.77093125600004 ], [ -82.121022146999962, 28.770896858000071 ], [ -82.121080584999959, 28.770864019000044 ], [ -82.12115496499996, 28.770828044000041 ], [ -82.121231129999956, 28.770801434000077 ], [ -82.121278963999941, 28.770793585000035 ], [ -82.121362233999946, 28.770782580000059 ], [ -82.12151817299997, 28.770787124000037 ], [ -82.121617413999957, 28.77079640200003 ], [ -82.121746773999973, 28.770800970000039 ], [ -82.122476821999953, 28.770806137000079 ], [ -82.123385854999981, 28.770804167000051 ], [ -82.124287785999968, 28.770801779000067 ], [ -82.125242887999946, 28.770807142000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120807923999962, 28.771027253000057 ], [ -82.121545839999953, 28.772092772000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121545839999953, 28.772092772000065 ], [ -82.122001381999951, 28.772748473000036 ], [ -82.122118603999979, 28.77292176800006 ], [ -82.122267781999938, 28.77313252600004 ], [ -82.122414298999956, 28.773338599000056 ], [ -82.122582146999946, 28.773591519000036 ], [ -82.122739366999951, 28.773853821000046 ], [ -82.122869955999988, 28.77408334100005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122869955999988, 28.77408334100005 ], [ -82.122925921999979, 28.774181707000025 ], [ -82.12305919299996, 28.774429971000075 ], [ -82.123136489, 28.774572839000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123136489, 28.774572839000029 ], [ -82.123251102999973, 28.774788314000034 ], [ -82.12345103399997, 28.775179454000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12345103399997, 28.775179454000067 ], [ -82.124146763999988, 28.776507442000025 ], [ -82.124441327999989, 28.777075995000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124441327999989, 28.777075995000075 ], [ -82.124759861999962, 28.777669131000039 ], [ -82.124951126999974, 28.778033329000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124951126999974, 28.778033329000039 ], [ -82.125191050999945, 28.77849707200005 ], [ -82.125482957999964, 28.77905742400003 ], [ -82.125984796999944, 28.780014761000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125984796999944, 28.780014761000075 ], [ -82.126470648999941, 28.780940477000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126470648999941, 28.780940477000058 ], [ -82.126812549999954, 28.781592166000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126812549999954, 28.781592166000053 ], [ -82.127164448999963, 28.782259663000048 ], [ -82.127828270999942, 28.783519120000051 ], [ -82.128076228999987, 28.784005695000076 ], [ -82.128672087999973, 28.785136919000024 ], [ -82.128920057999949, 28.785627593000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128920057999949, 28.785627593000072 ], [ -82.128992012999959, 28.785740001000079 ], [ -82.129106652999951, 28.785955470000033 ], [ -82.12916798599997, 28.78608194800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12916798599997, 28.78608194800006 ], [ -82.127894814999934, 28.786828312000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12916798599997, 28.78608194800006 ], [ -82.129362618999949, 28.786456681000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129362618999949, 28.786456681000061 ], [ -82.12975186999995, 28.787187988000028 ], [ -82.130098477, 28.78784845000007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.130098477, 28.78784845000007 ], [ -82.130559757999947, 28.788743126000043 ], [ -82.130811054999981, 28.789220905000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.130811054999981, 28.789220905000036 ], [ -82.131504334999988, 28.790567601000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131504334999988, 28.790567601000078 ], [ -82.131700923999972, 28.790898393000077 ], [ -82.132530860999964, 28.792488061000029 ], [ -82.132787535999967, 28.792997464000052 ], [ -82.132884210999975, 28.793193617000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.132884210999975, 28.793193617000043 ], [ -82.133054175999973, 28.793498072000034 ], [ -82.133140862999937, 28.793682517000036 ], [ -82.133229850999953, 28.793879225000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133229850999953, 28.793879225000069 ], [ -82.133261755999968, 28.793964320000043 ], [ -82.13333935299994, 28.794190513000046 ], [ -82.133391143999972, 28.794347944000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133391143999972, 28.794347944000037 ], [ -82.133437640999944, 28.794508951000068 ], [ -82.13346396999998, 28.794622609000044 ], [ -82.133500371999958, 28.794811497000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133500371999958, 28.794811497000069 ], [ -82.133539946999974, 28.795043769000074 ], [ -82.133556958999975, 28.795184347000031 ], [ -82.133577267999954, 28.795465516000036 ], [ -82.133577785999989, 28.79587192200006 ], [ -82.133583004999934, 28.796297683000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133583004999934, 28.796297683000034 ], [ -82.133586590999982, 28.796909350000078 ], [ -82.133590066999943, 28.797435753000059 ], [ -82.133593152999936, 28.797655704000078 ], [ -82.133596200999989, 28.797844761000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133596200999989, 28.797844761000079 ], [ -82.134481389999962, 28.797848826000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153716862999943, 28.807464777000064 ], [ -82.153635722, 28.807490869000048 ], [ -82.153374749999955, 28.807584014000042 ], [ -82.152538684999968, 28.807894410000074 ], [ -82.152251048999972, 28.807980201000078 ], [ -82.152113933999942, 28.808030457000029 ], [ -82.152037040999971, 28.808077698000034 ], [ -82.15196016799996, 28.808136727000033 ], [ -82.151893343999973, 28.808204587000034 ], [ -82.15184325599995, 28.808275374000061 ], [ -82.151816580999935, 28.808340241000053 ], [ -82.151796606999937, 28.808410995000031 ], [ -82.151787314999979, 28.808504790000029 ], [ -82.151792325999963, 28.80856761900003 ], [ -82.151857533999987, 28.808891309000046 ], [ -82.151871040999936, 28.808976761000054 ], [ -82.151874529999986, 28.809074012000053 ], [ -82.15185796999998, 28.809191917000078 ], [ -82.151844691999941, 28.809265610000068 ], [ -82.151811345999988, 28.809345220000068 ], [ -82.151757940999971, 28.809436641000048 ], [ -82.151711184999954, 28.80949858300005 ], [ -82.151667765999946, 28.809554627000068 ], [ -82.151617649999935, 28.809607733000064 ], [ -82.151199835999989, 28.809920598000076 ], [ -82.150230515999965, 28.810658464000028 ], [ -82.14972924999995, 28.811118773000032 ], [ -82.149481987999934, 28.811366607000025 ], [ -82.149388448999957, 28.811475753000025 ], [ -82.149321663999956, 28.811573083000042 ], [ -82.14927163599998, 28.811688077000042 ], [ -82.149224939999954, 28.811794225000028 ], [ -82.149188274999972, 28.811894469000038 ], [ -82.149132693999945, 28.812043236000079 ], [ -82.149090384999965, 28.812152727000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149090384999965, 28.812152727000068 ], [ -82.148980221999977, 28.812532015000045 ], [ -82.148884903999942, 28.812971953000044 ], [ -82.148860418999959, 28.813052146000075 ], [ -82.148826071999963, 28.813119350000079 ], [ -82.148735237999972, 28.813251616000059 ], [ -82.148681224999962, 28.813327509000032 ], [ -82.148627203999979, 28.81339906900007 ], [ -82.148555983999984, 28.813485813000057 ], [ -82.14833430799996, 28.813772733000064 ], [ -82.148248232999947, 28.813914147000048 ], [ -82.148123885999951, 28.814173838000045 ], [ -82.148089952999953, 28.814215686000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148089952999953, 28.814215686000068 ], [ -82.148047263999956, 28.814291744000059 ], [ -82.148003824999989, 28.814335998000047 ], [ -82.147953676999975, 28.814368472000069 ], [ -82.147900172999982, 28.814395055000034 ], [ -82.147846656999945, 28.814412796000056 ], [ -82.147749648999934, 28.814436479000051 ], [ -82.147048505999976, 28.81456567400005 ], [ -82.146458332999941, 28.814685445000066 ], [ -82.146351288999938, 28.814712086000043 ], [ -82.146286442999951, 28.814735059000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142433944999937, 28.810043504000078 ], [ -82.142419659999973, 28.810478537000051 ], [ -82.142432283999938, 28.810519113000055 ], [ -82.142444902999955, 28.810556 ], [ -82.142470082999978, 28.810587337000072 ], [ -82.142491055999983, 28.810605764000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143714357999954, 28.807346894000034 ], [ -82.143719131999944, 28.807644830000072 ], [ -82.143711578999955, 28.808502139000041 ], [ -82.143012845999976, 28.808523450000052 ], [ -82.142785592999985, 28.808889132000047 ], [ -82.142475594999951, 28.80935730300007 ], [ -82.142460652999944, 28.809421302000032 ], [ -82.142450774999986, 28.809525007000047 ], [ -82.142438380999977, 28.809622098000034 ], [ -82.142433506999964, 28.809721387000025 ], [ -82.142433695999955, 28.809860382000068 ], [ -82.142433944999937, 28.810043504000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145991157999958, 28.800269793000041 ], [ -82.148656947999939, 28.800254155000061 ], [ -82.149254204999977, 28.800269600000036 ], [ -82.14942181899994, 28.800285519000056 ], [ -82.149577258999955, 28.800312187000031 ], [ -82.149757091999959, 28.800349564000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145993810999983, 28.797787807000077 ], [ -82.145982598999979, 28.798799648000056 ], [ -82.145991157999958, 28.800269793000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143870370999934, 28.800278805000062 ], [ -82.145101548999946, 28.800272997000036 ], [ -82.145991157999958, 28.800269793000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143080267999949, 28.805016650000027 ], [ -82.142983730999958, 28.805065720000073 ], [ -82.142666178999946, 28.805181567000034 ], [ -82.14266669899996, 28.805420495000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140853732999972, 28.799474406000058 ], [ -82.141505061999965, 28.799481419000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141505061999965, 28.799481419000074 ], [ -82.141446701999939, 28.799679066000067 ], [ -82.141355779999969, 28.800303352000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141733654999939, 28.796991148000075 ], [ -82.141755308999961, 28.797925168000063 ], [ -82.14176617399994, 28.798419121000052 ], [ -82.141748561999975, 28.798589782000079 ], [ -82.141723277999972, 28.798742489000063 ], [ -82.141703061999976, 28.798872737000067 ], [ -82.141680230999953, 28.798953591000043 ], [ -82.141505061999965, 28.799481419000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140831336999952, 28.797001074000036 ], [ -82.140838321999979, 28.798907051000072 ], [ -82.140853732999972, 28.799474406000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14175298899994, 28.796209765000071 ], [ -82.141733654999939, 28.796991148000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141832835999935, 28.793336043000068 ], [ -82.141792539999983, 28.79340759300004 ], [ -82.141756928999939, 28.79347948000003 ], [ -82.141744273999961, 28.793535629000075 ], [ -82.141736705999961, 28.793594015000053 ], [ -82.141736824999953, 28.793681581000044 ], [ -82.141731919999984, 28.793825284000036 ], [ -82.141759167999965, 28.795125282000072 ], [ -82.14175298899994, 28.796209765000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142331625999986, 28.792477477000034 ], [ -82.142232219999983, 28.79247758200006 ], [ -82.142145578999987, 28.792491145000042 ], [ -82.142099725999969, 28.792511402000059 ], [ -82.142043699999988, 28.792547384000045 ], [ -82.142015699999945, 28.792574358000024 ], [ -82.14198516, 28.792608069000039 ], [ -82.141964840999947, 28.792661978000069 ], [ -82.141952178999986, 28.792722613000024 ], [ -82.141939913999977, 28.793075138000063 ], [ -82.14191711899997, 28.793182935000061 ], [ -82.141889186999947, 28.793261551000057 ], [ -82.141832835999935, 28.793336043000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142331625999986, 28.792477477000034 ], [ -82.14233274999998, 28.791428923000069 ], [ -82.142346447999955, 28.790254619000052 ], [ -82.14234612499996, 28.790016617000049 ], [ -82.142348572999936, 28.789942520000068 ], [ -82.142348511999955, 28.78989761400004 ], [ -82.142353550999985, 28.789854948000027 ], [ -82.142366237999966, 28.789812275000031 ], [ -82.14238912899998, 28.789776326000037 ], [ -82.142427332999944, 28.78975607700005 ], [ -82.142485932999989, 28.789740299000073 ], [ -82.142534343999955, 28.789729021000028 ], [ -82.142600602999948, 28.78972221500004 ], [ -82.143132743999956, 28.789720139000053 ], [ -82.143186229999969, 28.789736583000035 ], [ -82.143235629999936, 28.789760596000065 ], [ -82.143299078999974, 28.789802307000059 ], [ -82.143332258999976, 28.789835951000043 ], [ -82.143383326999981, 28.78990325500007 ], [ -82.143403789999979, 28.789957121000043 ], [ -82.143406431999949, 28.790024477000031 ], [ -82.143406564999964, 28.790121025000076 ], [ -82.143417357999965, 28.790558846000067 ], [ -82.143414443999973, 28.792155254000079 ], [ -82.143399263999981, 28.792238346000033 ], [ -82.143371326999954, 28.792310225000051 ], [ -82.143335710999963, 28.792359660000045 ], [ -82.143294984999955, 28.792400118000046 ], [ -82.143254239999976, 28.792427106000048 ], [ -82.14320330299995, 28.79245634800003 ], [ -82.14313961299996, 28.792478868000046 ], [ -82.142999434999979, 28.792485752000061 ], [ -82.142331625999986, 28.792477477000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140826396999955, 28.79332553200004 ], [ -82.141433026999948, 28.793324898000037 ], [ -82.141652228999988, 28.793324668000025 ], [ -82.141754185999957, 28.793326806000039 ], [ -82.14179752299998, 28.79333125200003 ], [ -82.141832835999935, 28.793336043000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139939387999959, 28.793324208000058 ], [ -82.140826396999955, 28.79332553200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139014165999981, 28.793336390000036 ], [ -82.139939387999959, 28.793324208000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139014165999981, 28.793336390000036 ], [ -82.139024577999976, 28.79350028600004 ], [ -82.139037566999946, 28.793684387000042 ], [ -82.139045856999985, 28.794169363000037 ], [ -82.139030749999961, 28.796230558000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138099120999982, 28.793335085000024 ], [ -82.139014165999981, 28.793336390000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137201924999943, 28.793340489000059 ], [ -82.137342106999938, 28.793335857000045 ], [ -82.137617378999948, 28.793331085000034 ], [ -82.138099120999982, 28.793335085000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138099120999982, 28.793335085000024 ], [ -82.138113938999936, 28.794909021000024 ], [ -82.138105500999984, 28.796242735000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138105500999984, 28.796242735000078 ], [ -82.138531169999965, 28.796240053000076 ], [ -82.139030749999961, 28.796230558000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137213372999952, 28.796243644000072 ], [ -82.13764159599998, 28.796243208000078 ], [ -82.138105500999984, 28.796242735000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137201924999943, 28.793340489000059 ], [ -82.137211693999973, 28.794961582000042 ], [ -82.137213372999952, 28.796243644000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136309821999987, 28.793341393000048 ], [ -82.137201924999943, 28.793340489000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136313609999945, 28.796253537000041 ], [ -82.137213372999952, 28.796243644000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136309821999987, 28.793341393000048 ], [ -82.136310307999963, 28.795674254000062 ], [ -82.136313609999945, 28.796253537000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136313609999945, 28.796253537000041 ], [ -82.136314672999958, 28.797070822000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135388352999939, 28.796258958000067 ], [ -82.136313609999945, 28.796253537000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135407517999965, 28.793337810000025 ], [ -82.136309821999987, 28.793341393000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135407517999965, 28.793337810000025 ], [ -82.135415380999973, 28.795477568000024 ], [ -82.135388352999939, 28.796258958000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134564971999964, 28.793350013000065 ], [ -82.134607671999959, 28.793329627000048 ], [ -82.134658630999979, 28.793315207000035 ], [ -82.135223457999984, 28.793312847000038 ], [ -82.135407517999965, 28.793337810000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134495202999972, 28.796257605000051 ], [ -82.135388352999939, 28.796258958000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133583004999934, 28.796297683000034 ], [ -82.134495202999972, 28.796257605000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134564971999964, 28.793350013000065 ], [ -82.134546551999961, 28.793371002000072 ], [ -82.134532323999963, 28.793406941000057 ], [ -82.13452627099997, 28.793457242000045 ], [ -82.134526346999962, 28.793516518000047 ], [ -82.134528497999952, 28.793602735000036 ], [ -82.134511367999949, 28.794554758000061 ], [ -82.134495928999968, 28.795235546000072 ], [ -82.134495202999972, 28.796257605000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134495202999972, 28.796257605000051 ], [ -82.134493722999935, 28.796694091000063 ], [ -82.134512557999983, 28.797069486000055 ], [ -82.134506960999943, 28.797475441000074 ], [ -82.134481389999962, 28.797848826000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135388352999939, 28.796258958000067 ], [ -82.135401212999966, 28.796348757000032 ], [ -82.135405899999967, 28.79784528600004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134481389999962, 28.797848826000063 ], [ -82.135405899999967, 28.79784528600004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135405899999967, 28.79784528600004 ], [ -82.135405013999957, 28.798738015000026 ], [ -82.135405308999964, 28.798966137000036 ], [ -82.135407743999963, 28.799271494000038 ], [ -82.135408040999948, 28.799501412000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134481389999962, 28.797848826000063 ], [ -82.134516837999968, 28.79869031000004 ], [ -82.134529497999949, 28.798844751000047 ], [ -82.134547219999945, 28.798905514000069 ], [ -82.13458768199996, 28.799038804000077 ], [ -82.134626777999983, 28.799126671000067 ], [ -82.134675157999936, 28.799184506000074 ], [ -82.134729409999977, 28.79923304700003 ], [ -82.134775583999954, 28.799268534000078 ], [ -82.134822515999986, 28.799291839000034 ], [ -82.134972114999982, 28.799367249000056 ], [ -82.135190549999948, 28.799452909000024 ], [ -82.13528770399995, 28.799483571000053 ], [ -82.135352974999989, 28.799496078000061 ], [ -82.135408040999948, 28.799501412000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137191188999964, 28.797054936000052 ], [ -82.137192363999986, 28.797433684000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139030749999961, 28.796230558000047 ], [ -82.139030465999952, 28.797015335000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139030749999961, 28.796230558000047 ], [ -82.139951104999966, 28.796218651000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139939387999959, 28.793324208000058 ], [ -82.139928151999982, 28.794453603000079 ], [ -82.139936862999946, 28.795250675000034 ], [ -82.139951104999966, 28.796218651000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139951104999966, 28.796218651000061 ], [ -82.140848324999979, 28.796214126000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140826396999955, 28.79332553200004 ], [ -82.140833792999956, 28.795036438000068 ], [ -82.140848324999979, 28.796214126000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140848324999979, 28.796214126000052 ], [ -82.141031847999955, 28.796213934000036 ], [ -82.14175298899994, 28.796209765000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139030465999952, 28.797015335000026 ], [ -82.139038082999946, 28.798145158000068 ], [ -82.139039669999988, 28.798957952000023 ], [ -82.139037851999944, 28.799508051000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138143108999941, 28.799479781000059 ], [ -82.138795650999953, 28.799474621000059 ], [ -82.138907825, 28.799487978000059 ], [ -82.139037851999944, 28.799508051000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135408040999948, 28.799501412000041 ], [ -82.136323135999987, 28.799499593000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141113187999963, 28.800303960000065 ], [ -82.141230876999941, 28.800303482000061 ], [ -82.141355779999969, 28.800303352000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141113187999963, 28.800303960000065 ], [ -82.141140313999983, 28.800571683000044 ], [ -82.141144739999959, 28.80101961400004 ], [ -82.141135533999943, 28.801280640000073 ], [ -82.141141550999976, 28.801489445000072 ], [ -82.141130802999953, 28.802026642000044 ], [ -82.141131505999965, 28.802548672000057 ], [ -82.141124829999967, 28.80326941800007 ], [ -82.141115775999936, 28.80364326800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140294943999947, 28.80030144400007 ], [ -82.141113187999963, 28.800303960000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140294943999947, 28.80030144400007 ], [ -82.140380185999959, 28.801139972000044 ], [ -82.140496656999971, 28.802455032000069 ], [ -82.140507549999938, 28.802540145000023 ], [ -82.140514081999981, 28.802618360000054 ], [ -82.140510367, 28.802699193000024 ], [ -82.140504355999951, 28.802777701000025 ], [ -82.14047071899995, 28.80307139100006 ], [ -82.140370173999941, 28.80365583300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139037851999944, 28.799508051000032 ], [ -82.139040827999963, 28.800309477000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139040827999963, 28.800309477000042 ], [ -82.140294943999947, 28.80030144400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137337434999949, 28.800311221000072 ], [ -82.137683465999942, 28.800310868000054 ], [ -82.139040827999963, 28.800309477000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137337434999949, 28.800311221000072 ], [ -82.137339843999939, 28.80069011300003 ], [ -82.137342097999976, 28.80095112500004 ], [ -82.137342278999938, 28.801089209000054 ], [ -82.137355839999941, 28.80122559800003 ], [ -82.137371296999959, 28.801350197000033 ], [ -82.137402032999944, 28.801461307000068 ], [ -82.137603862999981, 28.80229298200004 ], [ -82.137676877999979, 28.802570762000073 ], [ -82.137707647999946, 28.802708816000063 ], [ -82.137726919999977, 28.80282499100008 ], [ -82.137742406999962, 28.802971481000043 ], [ -82.137754127999983, 28.803161758000044 ], [ -82.137754306999966, 28.803298158000075 ], [ -82.137688942999944, 28.804477003000045 ], [ -82.137657278999939, 28.804825109000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135876559999986, 28.80095523500006 ], [ -82.135454429999982, 28.801865743000064 ], [ -82.135435445999974, 28.801968484000042 ], [ -82.135433611999986, 28.802029109000046 ], [ -82.135445152999978, 28.802082985000027 ], [ -82.135465342999964, 28.802129665000052 ], [ -82.135472581999977, 28.802142378000042 ], [ -82.135480402999974, 28.802154403000031 ], [ -82.135490567999966, 28.802168488000063 ], [ -82.135675752999987, 28.802310283000054 ], [ -82.135949109999956, 28.802575409000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136173166999981, 28.800315768000075 ], [ -82.137337434999949, 28.800311221000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126503959, 28.790341626000043 ], [ -82.127233718999946, 28.790640357000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126503959, 28.790341626000043 ], [ -82.126387607999959, 28.790551545000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126387607999959, 28.790551545000028 ], [ -82.125861341999951, 28.791429782000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126778728999966, 28.791825307000067 ], [ -82.126570851999986, 28.792256949000034 ], [ -82.126239141999974, 28.792936090000069 ], [ -82.125800996999942, 28.793762627000035 ], [ -82.125559058999954, 28.794174140000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125861341999951, 28.791429782000023 ], [ -82.125650078999968, 28.791806077000047 ], [ -82.125501234999945, 28.792060384000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124882703999958, 28.791418412000041 ], [ -82.125300052999989, 28.791874801000063 ], [ -82.125501234999945, 28.792060384000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126387607999959, 28.790551545000028 ], [ -82.124882703999958, 28.791418412000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124308968999969, 28.790885674000037 ], [ -82.124403172999962, 28.790824393000037 ], [ -82.124832069999968, 28.790566105000039 ], [ -82.126089295999975, 28.789845074000027 ], [ -82.126329512999973, 28.78969487300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124308968999969, 28.790885674000037 ], [ -82.124589629999946, 28.791149864000033 ], [ -82.124882703999958, 28.791418412000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123678243999962, 28.790411995000056 ], [ -82.123976499999969, 28.790868495000041 ], [ -82.124008812999989, 28.79092091800004 ], [ -82.12404111099994, 28.790958042000057 ], [ -82.124078344999987, 28.79097549200003 ], [ -82.124120520999952, 28.790975453000044 ], [ -82.124165162999986, 28.790962300000047 ], [ -82.124207318999936, 28.79094477700005 ], [ -82.124249463999945, 28.790918511000029 ], [ -82.124308968999969, 28.790885674000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123269326999946, 28.789774568000041 ], [ -82.123734377999938, 28.789516723000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123269326999946, 28.789774568000041 ], [ -82.123678243999962, 28.790411995000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123067297999967, 28.789870543000063 ], [ -82.123260680999977, 28.78976109000007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007178628999952, 28.889546675000076 ], [ -82.007328165, 28.889465090000044 ], [ -82.007566793999956, 28.889328909000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007215519999988, 28.890003912000054 ], [ -82.007211109999957, 28.889705903000049 ], [ -82.007206744999962, 28.889659228000028 ], [ -82.007205336999959, 28.889632018000043 ], [ -82.007195496999941, 28.889596149000056 ], [ -82.007178628999952, 28.889546675000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006525364999959, 28.891470566000066 ], [ -82.006520664999982, 28.890334510000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007669953999937, 28.889270038000063 ], [ -82.007607428999961, 28.889180034000049 ], [ -82.007578687999967, 28.889132467000024 ], [ -82.007557736999956, 28.889081816000044 ], [ -82.007545, 28.889029094000023 ], [ -82.007540722999977, 28.888975322000078 ], [ -82.007544991999964, 28.888921553000046 ], [ -82.007553154999982, 28.888884006000069 ], [ -82.007648606999965, 28.888440909000053 ], [ -82.007696333999945, 28.888228908000031 ], [ -82.007698502999972, 28.888220438000076 ], [ -82.00771081299996, 28.888194279000061 ], [ -82.007724540999959, 28.888177340000027 ], [ -82.007728850999968, 28.888169490000053 ], [ -82.007749291999971, 28.888143426000056 ], [ -82.00777622399994, 28.888122423000027 ], [ -82.007787469999982, 28.888116221000075 ], [ -82.007788595999955, 28.888115349000032 ], [ -82.007813920999979, 28.888101023000047 ], [ -82.00783303999998, 28.888095209000028 ], [ -82.007837371999983, 28.888092905000065 ], [ -82.007867858999987, 28.888081789000069 ], [ -82.007898141999988, 28.888078017000055 ], [ -82.008620775999987, 28.887969109000039 ], [ -82.008846463999987, 28.887934717000064 ], [ -82.008892552999953, 28.887932923000051 ], [ -82.008938650999937, 28.887938415000065 ], [ -82.008982892999938, 28.88795106300006 ], [ -82.009023857999978, 28.887970460000076 ], [ -82.009060228999942, 28.887995984000042 ], [ -82.009090837999963, 28.888026813000067 ], [ -82.009114700999987, 28.888061957000048 ], [ -82.009131048999961, 28.888100284000075 ], [ -82.009137274999944, 28.888125685000034 ], [ -82.009180685999979, 28.888257464000048 ], [ -82.009198053999967, 28.888333858000067 ], [ -82.009219763999965, 28.888425531000053 ], [ -82.009230620999972, 28.888490467000054 ], [ -82.009237136999957, 28.888555402000065 ], [ -82.009245825999983, 28.888660445000028 ], [ -82.009251096999947, 28.88875790000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010792685999945, 28.888407328000028 ], [ -82.010735807999936, 28.888260427000034 ], [ -82.010709758999951, 28.888178941000035 ], [ -82.010685424999963, 28.888073023000061 ], [ -82.010643089999974, 28.88790543500005 ], [ -82.010613058999979, 28.887778123000032 ], [ -82.010579554999936, 28.887675151000053 ], [ -82.010509122999963, 28.887589490000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010134242999982, 28.888675546000059 ], [ -82.010042239999962, 28.888488499000061 ], [ -82.009994488999951, 28.88837963900005 ], [ -82.009955416999958, 28.888278419000073 ], [ -82.009898978999956, 28.888133271000072 ], [ -82.009862078999959, 28.888028230000032 ], [ -82.009830934999968, 28.887941307000062 ], [ -82.009801296999967, 28.88783915700003 ], [ -82.009732989999975, 28.887601204000077 ], [ -82.009700312999939, 28.887416375000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136173166999981, 28.800315768000075 ], [ -82.135876559999986, 28.80095523500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135876559999986, 28.80095523500006 ], [ -82.136298454999974, 28.801102056000047 ], [ -82.136436178999986, 28.801159172000041 ], [ -82.136478281999985, 28.801192808000053 ], [ -82.13649935899997, 28.801228150000043 ], [ -82.136514707999936, 28.801270234000071 ], [ -82.136528152999972, 28.801317372000028 ], [ -82.136530139999934, 28.801376309000034 ], [ -82.136547554999936, 28.801536269000053 ], [ -82.136568844999942, 28.801736639000069 ], [ -82.136591987999964, 28.801889858000038 ], [ -82.13662285099997, 28.802100322000058 ], [ -82.136653690999935, 28.802292263000027 ], [ -82.136685281999974, 28.802479438000034 ], [ -82.13669774899995, 28.802611437000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135710997, 28.800317076000056 ], [ -82.136173166999981, 28.800315768000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134958332999986, 28.802269404000072 ], [ -82.134871976999989, 28.802368991000037 ], [ -82.134742247999952, 28.802680784000074 ], [ -82.134686145999979, 28.802812481000046 ], [ -82.134673288999977, 28.802850383000077 ], [ -82.134664720999979, 28.802876914000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135420661999945, 28.800317359000076 ], [ -82.135710997, 28.800317076000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135408040999948, 28.799501412000041 ], [ -82.135420661999945, 28.800317359000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133630039999957, 28.800345544000038 ], [ -82.133623066999974, 28.800386118000063 ], [ -82.133632957999964, 28.800483912000061 ], [ -82.133694288999948, 28.800711062000062 ], [ -82.133783221999977, 28.800964203000035 ], [ -82.133842451999953, 28.801089022000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133842451999953, 28.801089022000042 ], [ -82.133992631999945, 28.80150167000005 ], [ -82.13414271399995, 28.801839735000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.132890656999962, 28.799739705000036 ], [ -82.133482619999938, 28.79975104500005 ], [ -82.133515839999973, 28.79974450800006 ], [ -82.13354719299997, 28.799721713000054 ], [ -82.133563789999982, 28.799708687000077 ], [ -82.133578532999934, 28.79968916100006 ], [ -82.133584045999953, 28.799669643000072 ], [ -82.133585649999986, 28.799479396000038 ], [ -82.133591133999971, 28.799437113000067 ], [ -82.133598466999956, 28.799396455000078 ], [ -82.133616892999953, 28.799370420000059 ], [ -82.133702347999986, 28.799311799000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133614483999963, 28.79892976800005 ], [ -82.133625760999962, 28.799024822000035 ], [ -82.133640542999956, 28.799098849000075 ], [ -82.133659092999949, 28.799168750000035 ], [ -82.133672072999957, 28.799214266000035 ], [ -82.133702347999986, 28.799311799000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.132470421999983, 28.799282118000065 ], [ -82.132940959999985, 28.799133687000051 ], [ -82.133614483999963, 28.79892976800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133596200999989, 28.797844761000079 ], [ -82.133592661999955, 28.798371172000031 ], [ -82.133597470999973, 28.798615960000063 ], [ -82.133597304999967, 28.798709748000078 ], [ -82.133604489999982, 28.798845669000059 ], [ -82.133614483999963, 28.79892976800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129846423999936, 28.790576281000028 ], [ -82.129856278999966, 28.790569513000037 ], [ -82.12986723399996, 28.790566606000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12948980699997, 28.789261894000049 ], [ -82.129510934999985, 28.790464615000076 ], [ -82.129513600999985, 28.790486387000044 ], [ -82.129526333999934, 28.790509974000031 ], [ -82.12956042199994, 28.790536687000042 ], [ -82.129596806999984, 28.790550383000038 ], [ -82.129669551999939, 28.790557179000075 ], [ -82.129846423999936, 28.790576281000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127860417999955, 28.787316381000039 ], [ -82.128453583999942, 28.786984780000068 ], [ -82.129362618999949, 28.786456681000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127020634999951, 28.78566207800003 ], [ -82.127365364999946, 28.786083399000063 ], [ -82.127894814999934, 28.786828312000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126573188999942, 28.786703156000044 ], [ -82.126801477999948, 28.786989851000044 ], [ -82.127162034999969, 28.787479618000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127189223999949, 28.787517256000058 ], [ -82.127609401999962, 28.788102684000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103357465999977, 28.876628129000039 ], [ -82.10743512099998, 28.877371295000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156402506999939, 28.862852522000026 ], [ -82.156225560999985, 28.862902996000059 ], [ -82.15606287199995, 28.862940886000047 ], [ -82.155910123999945, 28.862985209000044 ], [ -82.155675202999987, 28.863060481000048 ], [ -82.155454971999973, 28.86313573700005 ], [ -82.155225947999952, 28.863226521000058 ], [ -82.155002815999978, 28.863327641000069 ], [ -82.154806115999975, 28.863423559000069 ], [ -82.15448906499995, 28.863589443000023 ], [ -82.153975357999968, 28.863882278000062 ], [ -82.15315508599997, 28.864359839000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156438742999967, 28.863044147000039 ], [ -82.15684910899995, 28.862938095000061 ], [ -82.157546121999985, 28.862762373000066 ], [ -82.161444647999986, 28.861729944000047 ], [ -82.161492625999983, 28.86171766700005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.193009608999944, 28.857099202000029 ], [ -82.193846551999968, 28.857022334000078 ], [ -82.194223373999989, 28.856992857000023 ], [ -82.194661518999965, 28.856947859000059 ], [ -82.195110602999989, 28.856893198000023 ], [ -82.195548711999947, 28.856828908000068 ], [ -82.195982422999975, 28.856756905000054 ], [ -82.196424877999959, 28.856673314000034 ], [ -82.196746842999971, 28.856603402000076 ], [ -82.197088512999983, 28.856525743000077 ], [ -82.197198018999984, 28.856498577000025 ], [ -82.197375417999979, 28.856453951000049 ], [ -82.197756487999982, 28.85635501400003 ], [ -82.198703691999981, 28.856078269000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102252832999966, 28.754290878000063 ], [ -82.102214090999951, 28.754290907000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972771482999974, 28.86926412400004 ], [ -81.972771611999974, 28.868769230000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018422648999945, 28.891805323000028 ], [ -82.018272675999981, 28.891688040000076 ], [ -82.018183800999964, 28.891609849000076 ], [ -82.018092152999941, 28.891548766000028 ], [ -82.018036610999957, 28.891519449000043 ], [ -82.017964406999965, 28.89148768900003 ], [ -82.017903311999987, 28.891463258000044 ], [ -82.017789454999956, 28.891438835000031 ], [ -82.017645770999934, 28.891431726000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955132532999983, 28.948241212000028 ], [ -81.955153303999964, 28.948265211000034 ], [ -81.955196119999982, 28.948296527000025 ], [ -81.955239774999939, 28.948320264000074 ], [ -81.955275617999973, 28.948338005000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955576662999988, 28.947749479000038 ], [ -81.955530279999948, 28.947734076000074 ], [ -81.95548357399997, 28.947723711000037 ], [ -81.955424296, 28.947718828000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955424296, 28.947718828000063 ], [ -81.955362040999944, 28.947721594000029 ], [ -81.955313235999938, 28.94772722700003 ], [ -81.955258002999983, 28.947745282000028 ], [ -81.95524811699994, 28.947749520000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955145463999941, 28.947812937000037 ], [ -81.955106399999977, 28.947870623000028 ], [ -81.955079409999939, 28.947918058000027 ], [ -81.955065268999988, 28.947951942000032 ], [ -81.955054974999939, 28.947995995000042 ], [ -81.95505110199997, 28.948041180000075 ], [ -81.955053649999968, 28.948088626000072 ], [ -81.955062310999949, 28.948121491000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954155736999951, 28.949054684000032 ], [ -81.954330036999977, 28.948976566000056 ], [ -81.954729513999951, 28.948665167000058 ], [ -81.955028892999962, 28.948419020000074 ], [ -81.955096487999981, 28.948375991000034 ], [ -81.955176347999952, 28.948343030000046 ], [ -81.955275617999973, 28.948338005000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958404786999949, 28.953401801000041 ], [ -81.959643791999952, 28.954618050000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974884097999961, 28.951595414000053 ], [ -81.974819501999946, 28.951711083000077 ], [ -81.974802257999954, 28.951802280000038 ], [ -81.974786485999971, 28.951872209000044 ], [ -81.974775842999975, 28.95194407200006 ], [ -81.974767035999946, 28.952003367000032 ], [ -81.974767013999951, 28.952091023000037 ], [ -81.974766958999965, 28.952320475000079 ], [ -81.974766390999946, 28.952537634000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014384957999937, 28.958051856000054 ], [ -82.014433932999964, 28.95805185100005 ], [ -82.014551474999962, 28.958051838000074 ], [ -82.014714728999934, 28.958051820000037 ], [ -82.014881247999938, 28.958051802000057 ], [ -82.015096741999969, 28.958054650000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016346637999959, 28.941926681000041 ], [ -82.016346643999952, 28.941929643000037 ], [ -82.016352496999957, 28.944855227000062 ], [ -82.016350662999969, 28.945562400000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016350662999969, 28.945562400000028 ], [ -82.016360048999957, 28.947436290000041 ], [ -82.016342455999961, 28.948996310000041 ], [ -82.016342661999943, 28.950307532000068 ], [ -82.016348006999976, 28.951889962000052 ], [ -82.016345602999934, 28.952815662000035 ], [ -82.016345599999966, 28.952816178000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016335798999989, 28.955292414000041 ], [ -82.015023338999981, 28.955276876000028 ], [ -82.013607468999965, 28.955286215000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028776769, 28.960144040000046 ], [ -82.021593368999959, 28.960115389000066 ], [ -82.020394374999967, 28.960120364000034 ], [ -82.016767693999952, 28.960127878000037 ], [ -82.016535217999945, 28.960137658000065 ], [ -82.016451887999949, 28.960143610000046 ], [ -82.016425943999934, 28.960132592000036 ], [ -82.016401868999935, 28.960118461000036 ], [ -82.016376335999951, 28.960103271000037 ], [ -82.016355288999989, 28.960086535000073 ], [ -82.016326144999937, 28.960058158000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97710048, 28.90611057600006 ], [ -81.977260469999976, 28.905880621000051 ], [ -81.977302575999943, 28.905831239000065 ], [ -81.977383976999988, 28.905759639000053 ], [ -81.977506421999976, 28.905675389000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977708431999986, 28.90590693300004 ], [ -81.977832622999983, 28.905864355000062 ], [ -81.977984178999975, 28.905812522000076 ], [ -81.978131523999934, 28.905760688000044 ], [ -81.978306233999945, 28.905694041000061 ], [ -81.97852514899995, 28.905607030000056 ], [ -81.978697756999964, 28.905532974000039 ], [ -81.97889351799995, 28.90544595800003 ], [ -81.978994556999965, 28.905401524000069 ], [ -81.97919873799998, 28.905299690000049 ], [ -81.979373451999948, 28.905212671000072 ], [ -81.979512381999939, 28.90514046100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979512381999939, 28.90514046100003 ], [ -81.979883210999958, 28.904924750000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00578941699996, 28.890125664000038 ], [ -82.00590184899994, 28.890112465000072 ], [ -82.00603426899994, 28.890077277000046 ], [ -82.006199165999988, 28.890002509000055 ], [ -82.006626320999942, 28.889801497000065 ], [ -82.007178628999952, 28.889546675000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005792478999979, 28.890753978000077 ], [ -82.00578941699996, 28.890125664000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965689560999976, 28.954133788000036 ], [ -81.965400879999947, 28.954426437000052 ], [ -81.96535451699998, 28.954489417000048 ], [ -81.965326864999952, 28.954540049000059 ], [ -81.965300484999943, 28.954607010000075 ], [ -81.965271174999941, 28.954681698000059 ], [ -81.965253317999952, 28.954758028000072 ], [ -81.965253540999981, 28.954869722000069 ], [ -81.965268474999959, 28.955111424000052 ], [ -81.965268476999938, 28.955111465000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966839908999987, 28.955720510000049 ], [ -81.966304719999982, 28.955405737000035 ], [ -81.966020699999945, 28.955248548000043 ], [ -81.965932854999949, 28.955212465000045 ], [ -81.965771798999981, 28.955163485000071 ], [ -81.965651736999973, 28.955137698000044 ], [ -81.965528743999982, 28.955117061000067 ], [ -81.965426245999936, 28.955109307000043 ], [ -81.965347174999977, 28.955106712000031 ], [ -81.965268476999938, 28.955111465000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965268476999938, 28.955111465000073 ], [ -81.965185790999953, 28.95511742900004 ], [ -81.965067820999934, 28.955135925000036 ], [ -81.964958275999948, 28.955161834000023 ], [ -81.964855048999937, 28.955189597000071 ], [ -81.964746642999955, 28.955224775000033 ], [ -81.964589597999975, 28.955296983000039 ], [ -81.964452644999938, 28.955389581000077 ], [ -81.964355720999947, 28.955461808000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959573572999943, 28.949733159000061 ], [ -81.95960645699995, 28.949662838000052 ], [ -81.959639574999983, 28.94956392000006 ], [ -81.959664422999936, 28.949469364000038 ], [ -81.959699188999934, 28.949386449000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978291761999969, 28.953438189000053 ], [ -81.977107243999967, 28.953430673000071 ], [ -81.976449006999985, 28.953429399000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976449006999985, 28.953429399000072 ], [ -81.974854721999975, 28.953411346000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970376168999962, 28.955740653000078 ], [ -81.969706244999941, 28.955776726000067 ], [ -81.968824910999956, 28.955819989000076 ], [ -81.967603120999968, 28.955882483000039 ], [ -81.967441563999955, 28.955887765000057 ], [ -81.967315740999936, 28.955880188000037 ], [ -81.967241717999968, 28.955872174000035 ], [ -81.967144171999962, 28.955849966000073 ], [ -81.967061249999972, 28.955824795000069 ], [ -81.966992626999968, 28.955797112000027 ], [ -81.966933240999936, 28.955771243000072 ], [ -81.966839908999987, 28.955720510000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127894814999934, 28.786828312000068 ], [ -82.12752848699995, 28.787073174000056 ], [ -82.127369717999954, 28.787261560000047 ], [ -82.127162034999969, 28.787479618000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127189223999949, 28.787517256000058 ], [ -82.127504833999978, 28.787425559000042 ], [ -82.127779940999972, 28.787357648000068 ], [ -82.127860417999955, 28.787316381000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127860417999955, 28.787316381000039 ], [ -82.127896850999946, 28.787371268000072 ], [ -82.127928076999979, 28.787414718000036 ], [ -82.127974909999978, 28.78747646100004 ], [ -82.128008751999971, 28.787535926000032 ], [ -82.128045187999987, 28.787593102000073 ], [ -82.128084236999939, 28.787661718000038 ], [ -82.128120688999957, 28.787730335000049 ], [ -82.128167505999954, 28.787778347000028 ], [ -82.128224673999966, 28.787794311000027 ], [ -82.128344168999945, 28.787796486000047 ], [ -82.128422098999977, 28.787796412000034 ], [ -82.128481835999935, 28.787789490000023 ], [ -82.12858050899996, 28.787757359000068 ], [ -82.128720711999961, 28.787700015000041 ], [ -82.129094563999956, 28.787528028000054 ], [ -82.129138705999935, 28.787514255000076 ], [ -82.129164686999957, 28.787516519000064 ], [ -82.129188081999985, 28.787530227000047 ], [ -82.129211511999983, 28.787571396000033 ], [ -82.12929218499994, 28.787690316000067 ], [ -82.129326022999976, 28.787745204000032 ], [ -82.129354661999969, 28.787797811000075 ], [ -82.129383286999939, 28.787838975000057 ], [ -82.129414514999951, 28.78788471200005 ], [ -82.129443134999974, 28.78792130000005 ], [ -82.129476943999975, 28.787953304000041 ], [ -82.129508146999967, 28.787978448000047 ], [ -82.129560119999951, 28.78799441600006 ], [ -82.12960923199995, 28.78799420200005 ], [ -82.129649128999972, 28.787994164000054 ], [ -82.129691682999976, 28.787989437000078 ], [ -82.129776776999961, 28.787970608000023 ], [ -82.130098477, 28.78784845000007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125971022999977, 28.785892052000065 ], [ -82.126573188999942, 28.786703156000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.15236015399995, 28.797793944000034 ], [ -82.15242597799994, 28.797851618000038 ], [ -82.152418363999971, 28.797883979000062 ], [ -82.152370774999952, 28.797914436000042 ], [ -82.152330799999959, 28.797937279000053 ], [ -82.152083335999976, 28.798064818000057 ], [ -82.152009096999961, 28.798121925000032 ], [ -82.151938664999989, 28.798179032000064 ], [ -82.151847292999946, 28.798272307000047 ], [ -82.151757824999947, 28.798365582000031 ], [ -82.150623296999981, 28.799599095000076 ], [ -82.150503373999982, 28.79974566900006 ], [ -82.150461494999945, 28.799814198000036 ], [ -82.150410098999942, 28.79988843700005 ], [ -82.150385351999944, 28.799960773000066 ], [ -82.150367167999946, 28.800055703000055 ], [ -82.150362168999948, 28.800111638000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.150227755999936, 28.797767418000035 ], [ -82.151570242999981, 28.797756802000038 ], [ -82.151796943999955, 28.797774048000065 ], [ -82.151863568999943, 28.797781662000034 ], [ -82.151916869, 28.797794035000038 ], [ -82.151982541999985, 28.797794987000032 ], [ -82.152044407999938, 28.797794987000032 ], [ -82.152156717999958, 28.797777855000049 ], [ -82.152242378999972, 28.797762627000054 ], [ -82.152329627999961, 28.797760422000067 ], [ -82.15236015399995, 28.797793944000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123136489, 28.774572839000029 ], [ -82.123407781999958, 28.77458665000006 ], [ -82.124479693999945, 28.774667681000039 ], [ -82.125124536999976, 28.774720241000068 ], [ -82.126028493999968, 28.77478829000006 ], [ -82.126313134999975, 28.774812825000026 ], [ -82.126463268999942, 28.774820952000027 ], [ -82.126647813999966, 28.77483455600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126647813999966, 28.77483455600003 ], [ -82.126694148999945, 28.774355040000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119426228999941, 28.781622755000058 ], [ -82.119494845999952, 28.781644668000069 ], [ -82.119781713999942, 28.781671883000058 ], [ -82.120673385999964, 28.781654608000053 ], [ -82.122500401999957, 28.78164197600006 ], [ -82.123984460999964, 28.781629635000058 ], [ -82.124813786999937, 28.781623378000063 ], [ -82.125553847999981, 28.781619705000026 ], [ -82.126627060999965, 28.781616945000053 ], [ -82.126812549999954, 28.781592166000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118803942999989, 28.781371973000034 ], [ -82.11893956199998, 28.78136773500006 ], [ -82.119190234999962, 28.78136833700006 ], [ -82.119306446999985, 28.781362537000064 ], [ -82.119470828999965, 28.781363145000057 ], [ -82.119636377999939, 28.781362245000025 ], [ -82.119780205999973, 28.781375231000027 ], [ -82.119924000999958, 28.781362743000045 ], [ -82.120065227999987, 28.781361864000075 ], [ -82.120218620999935, 28.781353211000066 ], [ -82.120328504999975, 28.781337662000055 ], [ -82.12042198599994, 28.781291227000054 ], [ -82.120516609999981, 28.781223161000071 ], [ -82.120664949999934, 28.781098392000047 ], [ -82.12074993899995, 28.780988721000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120291531999953, 28.780580245000067 ], [ -82.120361094999964, 28.780558428000063 ], [ -82.120495759999983, 28.780538531000047 ], [ -82.120648402999961, 28.780536417000064 ], [ -82.121047061999946, 28.780553096000062 ], [ -82.121085294999943, 28.780546874000038 ], [ -82.121120594, 28.780532403000052 ], [ -82.121150809999961, 28.780510718000073 ], [ -82.121173799999951, 28.780482851000045 ], [ -82.121188201999985, 28.78045086700007 ], [ -82.121193234999964, 28.780416828000057 ], [ -82.12119368599997, 28.780300972000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120291531999953, 28.780580245000067 ], [ -82.120390377999968, 28.780645420000042 ], [ -82.120502741999985, 28.780754091000063 ], [ -82.120654424999941, 28.780892394000034 ], [ -82.12074993899995, 28.780988721000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122868039999958, 28.780140858000038 ], [ -82.122823109999956, 28.78011123400006 ], [ -82.122775942999965, 28.780089522000026 ], [ -82.122614302999978, 28.78007582500004 ], [ -82.122091269999942, 28.780076299000029 ], [ -82.122032900999955, 28.780072397000026 ], [ -82.121970030999989, 28.780058609000037 ], [ -82.121918377999975, 28.780038879000074 ], [ -82.121875689999968, 28.78000727400007 ], [ -82.121837487999983, 28.77997171100003 ], [ -82.121808242999975, 28.779918340000052 ], [ -82.121790184999952, 28.779833316000065 ], [ -82.12178318499997, 28.779603911000038 ], [ -82.121801046999963, 28.77952083200006 ], [ -82.121830154999941, 28.779457520000051 ], [ -82.121866011999941, 28.779406069000061 ], [ -82.121917583999959, 28.779356580000069 ], [ -82.121980393999934, 28.779318947000036 ], [ -82.122070149999956, 28.77928920100004 ], [ -82.122346275999973, 28.779243806000068 ], [ -82.123199043999989, 28.779100296000024 ], [ -82.12329555599996, 28.779088342000023 ], [ -82.123365138999986, 28.779084323000063 ], [ -82.123427998999944, 28.779090199000052 ], [ -82.123479653999937, 28.779111906000026 ], [ -82.123544783999989, 28.779139534000024 ], [ -82.12358747899998, 28.779177071000049 ], [ -82.123641425999949, 28.779238330000055 ], [ -82.123666180999976, 28.779291705000048 ], [ -82.123670735999951, 28.779347076000079 ], [ -82.123641901999974, 28.779641777000052 ], [ -82.123653211999965, 28.779714940000076 ], [ -82.123662272999979, 28.779784151000058 ], [ -82.123689283999965, 28.779847412000038 ], [ -82.123718522, 28.779894849000073 ], [ -82.123763467999936, 28.779936340000063 ], [ -82.12382637099995, 28.779977813000073 ], [ -82.123889255999984, 28.78000544300005 ], [ -82.123949884999945, 28.78002120900004 ], [ -82.12401723399995, 28.780027080000025 ], [ -82.12409355799997, 28.780028987000037 ], [ -82.12482085399995, 28.780016452000041 ], [ -82.125984796999944, 28.780014761000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11835371799998, 28.778097989000059 ], [ -82.118739807999987, 28.778093695000052 ], [ -82.118816129999971, 28.778093627000032 ], [ -82.118876735999947, 28.778091597000071 ], [ -82.118919391999952, 28.778097492000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118919391999952, 28.778097492000029 ], [ -82.118968800999937, 28.778119204000063 ], [ -82.119009265999978, 28.778170588000023 ], [ -82.119027294999967, 28.778233858000078 ], [ -82.119083847999946, 28.778617478000058 ], [ -82.119086214999982, 28.778724271000044 ], [ -82.119084065999971, 28.778809312000078 ], [ -82.11909310599998, 28.778862702000026 ], [ -82.119106620999958, 28.778904221000062 ], [ -82.11912910999996, 28.778939800000046 ], [ -82.119142636999982, 28.778991208000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118085177999944, 28.778833922000047 ], [ -82.118296233999956, 28.778877246000036 ], [ -82.118545496999957, 28.778962067000066 ], [ -82.118635340999958, 28.779009453000072 ], [ -82.118716177999943, 28.779031137000061 ], [ -82.11879474899996, 28.779035023000063 ], [ -82.118875559999935, 28.779034952000075 ], [ -82.118960853999965, 28.779028944000061 ], [ -82.119039404999967, 28.779015030000039 ], [ -82.119142636999982, 28.778991208000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11935153099995, 28.777089953000029 ], [ -82.119809379999936, 28.77706831100005 ], [ -82.120606260999978, 28.777075513000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120606260999978, 28.777075513000057 ], [ -82.120604284999956, 28.777308882000057 ], [ -82.120602457999951, 28.777672777000078 ], [ -82.120604948999983, 28.77788636300005 ], [ -82.120614199999977, 28.778123677000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122363883999981, 28.777081844000065 ], [ -82.122637740999949, 28.777083573000027 ], [ -82.12311815299995, 28.777077793000046 ], [ -82.124441327999989, 28.777075995000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120606260999978, 28.777075513000057 ], [ -82.121905960999982, 28.777082258000064 ], [ -82.122363883999981, 28.777081844000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122325754999963, 28.775185283000042 ], [ -82.122916457999963, 28.775182285000028 ], [ -82.12345103399997, 28.775179454000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122313377999944, 28.776120736000053 ], [ -82.122317770999985, 28.776037669000061 ], [ -82.122322181999948, 28.775970424000036 ], [ -82.122322035999957, 28.775845831000026 ], [ -82.122324190999962, 28.775768699000025 ], [ -82.122324028999969, 28.77563026200005 ], [ -82.122323839999979, 28.77546809200004 ], [ -82.122323760999961, 28.77540085000004 ], [ -82.12232370199996, 28.775349431000052 ], [ -82.122323624999979, 28.775284167000052 ], [ -82.122325754999963, 28.775185283000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120593921999955, 28.776086067000051 ], [ -82.120598571999949, 28.776244894000058 ], [ -82.120606260999978, 28.777075513000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120593921999955, 28.776086067000051 ], [ -82.120722247999936, 28.776102266000066 ], [ -82.121177556999953, 28.776117804000023 ], [ -82.122077684999965, 28.776120949000074 ], [ -82.122313377999944, 28.776120736000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119092185999989, 28.776076150000051 ], [ -82.11917972699996, 28.77607607300007 ], [ -82.119942924999975, 28.776075397000056 ], [ -82.120493547999956, 28.776074907000066 ], [ -82.120593921999955, 28.776086067000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119092185999989, 28.776076150000051 ], [ -82.118785011999989, 28.776384939000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118481433999989, 28.775904628000035 ], [ -82.118485981999982, 28.775956045000044 ], [ -82.118492764999985, 28.775999548000073 ], [ -82.118515252999941, 28.776035126000068 ], [ -82.11854670799994, 28.776060809000057 ], [ -82.118605086999935, 28.776076578000072 ], [ -82.118661206999946, 28.776078508000069 ], [ -82.118724056999952, 28.776076474000035 ], [ -82.119092185999989, 28.776076150000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120628224999962, 28.775191257000074 ], [ -82.120624652999936, 28.775501262000034 ], [ -82.12062045, 28.775750454000047 ], [ -82.120593921999955, 28.776086067000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120628224999962, 28.775191257000074 ], [ -82.122325754999963, 28.775185283000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117726570999935, 28.774827946000073 ], [ -82.118773302999955, 28.774965468000062 ], [ -82.120628224999962, 28.775191257000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117726570999935, 28.774827946000073 ], [ -82.117812923999963, 28.774269177000065 ], [ -82.117846331999942, 28.774036769000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117846331999942, 28.774036769000077 ], [ -82.117846192999934, 28.773913164000078 ], [ -82.117846098999962, 28.773829113000033 ], [ -82.117848864999985, 28.773794501000054 ], [ -82.117834786999936, 28.773750016000065 ], [ -82.117809492999982, 28.773712956000054 ], [ -82.117761752999968, 28.773675916000059 ], [ -82.117697200999942, 28.773661140000058 ], [ -82.117627053999968, 28.773658729000033 ], [ -82.117568131999974, 28.773658780000062 ], [ -82.117178138999975, 28.773671480000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121345258999952, 28.774100419000035 ], [ -82.122869955999988, 28.77408334100005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121545839999953, 28.772092772000065 ], [ -82.12144484199996, 28.772149100000036 ], [ -82.121404989999974, 28.772184285000037 ], [ -82.121373119999987, 28.772221806000061 ], [ -82.121362523999949, 28.772259308000059 ], [ -82.121357253999975, 28.772301492000054 ], [ -82.121357329999967, 28.772367101000043 ], [ -82.121345258999952, 28.774100419000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120624910999936, 28.774097477000055 ], [ -82.121345258999952, 28.774100419000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117846331999942, 28.774036769000077 ], [ -82.117922055999941, 28.774007038000036 ], [ -82.117983774999971, 28.773999569000068 ], [ -82.118062340999984, 28.774001971000075 ], [ -82.118746997999949, 28.774035981000054 ], [ -82.120624910999936, 28.774097477000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120624910999936, 28.774097477000055 ], [ -82.120628224999962, 28.775191257000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120613273999936, 28.773364002000051 ], [ -82.120617804999938, 28.77345090700004 ], [ -82.120626646999938, 28.773819243000048 ], [ -82.120624910999936, 28.774097477000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117647959999942, 28.773284119000039 ], [ -82.11922182099994, 28.773319756000035 ], [ -82.120613273999936, 28.773364002000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120584397999949, 28.772737628000073 ], [ -82.120613273999936, 28.773364002000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117647959999942, 28.773284119000039 ], [ -82.117638442999976, 28.772904586000038 ], [ -82.117639631999964, 28.772877222000034 ], [ -82.117642011999976, 28.772833202000072 ], [ -82.117642011999976, 28.772782044000053 ], [ -82.117644390999942, 28.772740403000057 ], [ -82.117662237, 28.772705901000052 ], [ -82.11769094899995, 28.772679975000074 ], [ -82.117722730999958, 28.772664477000035 ], [ -82.117743012999938, 28.772656895000068 ], [ -82.117773049999983, 28.772649993000073 ], [ -82.117817722999973, 28.772647549000055 ], [ -82.118493858999955, 28.772666640000068 ], [ -82.120584397999949, 28.772737628000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120599745999982, 28.771156318000067 ], [ -82.120597536999981, 28.771921024000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120597536999981, 28.771921024000051 ], [ -82.120593471999939, 28.772466801000064 ], [ -82.120584397999949, 28.772737628000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118011831999979, 28.771894365000037 ], [ -82.118050229999938, 28.771901330000048 ], [ -82.118093500999976, 28.771909179000033 ], [ -82.118169060999946, 28.771914901000059 ], [ -82.118300455999986, 28.771914786000025 ], [ -82.119224915999951, 28.771913973000039 ], [ -82.120597536999981, 28.771921024000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117933698999934, 28.77168604600007 ], [ -82.11793737499994, 28.771616581000046 ], [ -82.117940695999948, 28.771559362000062 ], [ -82.117952241999944, 28.771484260000079 ], [ -82.117967445999966, 28.77142255900003 ], [ -82.117985799999985, 28.771345944000075 ], [ -82.11801206399997, 28.771273964000045 ], [ -82.118035710999948, 28.771218237000028 ], [ -82.118065248999983, 28.771165585000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118011831999979, 28.771894365000037 ], [ -82.117985966999981, 28.771844771000076 ], [ -82.117969501999937, 28.771809642000051 ], [ -82.117953031999946, 28.771768309000038 ], [ -82.117933698999934, 28.77168604600007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117266212999937, 28.771686297000031 ], [ -82.117461426999967, 28.771684805000064 ], [ -82.117933698999934, 28.77168604600007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117266212999937, 28.771686297000031 ], [ -82.117162873999973, 28.771933804000071 ], [ -82.117099933999953, 28.772050291000028 ], [ -82.117066940999962, 28.772088688000053 ], [ -82.117024913999956, 28.772107248000054 ], [ -82.11698137999997, 28.772119193000037 ], [ -82.116939344999935, 28.772129815000028 ], [ -82.116865787999984, 28.772152371000061 ], [ -82.116580386999942, 28.772247769000046 ], [ -82.115606300999957, 28.772613362000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116081011999938, 28.771672766000052 ], [ -82.116677555999956, 28.771681514000079 ], [ -82.117266212999937, 28.771686297000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116968167999971, 28.772391761000051 ], [ -82.117011709999986, 28.772385107000048 ], [ -82.117058507999957, 28.772375931000056 ], [ -82.11764379899995, 28.772284004000028 ], [ -82.117684321999945, 28.772264122000024 ], [ -82.117706809999959, 28.772231026000043 ], [ -82.117727748999982, 28.772156915000039 ], [ -82.117739705999952, 28.772106627000028 ], [ -82.117753165999943, 28.772057661000076 ], [ -82.117768137999974, 28.772016632000032 ], [ -82.117783118999967, 28.771986188000028 ], [ -82.117805614999952, 28.771959707000065 ], [ -82.117834124999945, 28.77194115900005 ], [ -82.117880655999954, 28.771922595000035 ], [ -82.117940705999956, 28.771907988000066 ], [ -82.118011831999979, 28.771894365000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118065248999983, 28.771165585000062 ], [ -82.118117278999989, 28.771129962000032 ], [ -82.118175225999948, 28.771120626000027 ], [ -82.118206837999935, 28.771120598000039 ], [ -82.118541267999944, 28.77113705000005 ], [ -82.120178050999982, 28.77113763400007 ], [ -82.120599745999982, 28.771156318000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127033603999962, 28.795461439000064 ], [ -82.129293617999963, 28.793260141000076 ], [ -82.12938782599997, 28.793168600000058 ], [ -82.129449783999974, 28.793113903000062 ], [ -82.12948886199996, 28.793077199000038 ], [ -82.129532344999973, 28.793040225000027 ], [ -82.129563462999954, 28.792996716000061 ], [ -82.129578985999956, 28.792944068000054 ], [ -82.129597072999957, 28.792866245000027 ], [ -82.129596158999959, 28.792127092000044 ], [ -82.129594797999971, 28.791026373000079 ], [ -82.12960241899998, 28.790886772000079 ], [ -82.129617927999959, 28.790824970000074 ], [ -82.129641727999967, 28.790770528000053 ], [ -82.129667972999982, 28.79072416200006 ], [ -82.129695326999979, 28.79068938100005 ], [ -82.12972597199996, 28.790655561000051 ], [ -82.129768674, 28.790624627000057 ], [ -82.129846423999936, 28.790576281000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12720029999997, 28.793255914000042 ], [ -82.126457852999977, 28.794666630000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12720029999997, 28.793255914000042 ], [ -82.127803501999949, 28.793514328000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127606278999963, 28.792510268000058 ], [ -82.127362430999938, 28.792946510000036 ], [ -82.12720029999997, 28.793255914000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127606278999963, 28.792510268000058 ], [ -82.128568687999973, 28.792838822000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127750343999935, 28.792240875000061 ], [ -82.127697855999941, 28.792330968000044 ], [ -82.127606278999963, 28.792510268000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127303516999973, 28.792034984000054 ], [ -82.127611316999946, 28.792165823000062 ], [ -82.127670898999952, 28.792197240000064 ], [ -82.127710619999959, 28.792218182000056 ], [ -82.127750343999935, 28.792240875000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126778728999966, 28.791825307000067 ], [ -82.127303516999973, 28.792034984000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12758443599995, 28.791520986000023 ], [ -82.127474026999948, 28.791709141000069 ], [ -82.127303516999973, 28.792034984000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12758443599995, 28.791520986000023 ], [ -82.12784340099995, 28.791646761000038 ], [ -82.127887472999987, 28.791675678000047 ], [ -82.127919789999964, 28.791728100000057 ], [ -82.127934722999953, 28.791767425000046 ], [ -82.127942225999959, 28.791815500000041 ], [ -82.127935495999964, 28.791891453000062 ], [ -82.127910761999942, 28.791954856000075 ], [ -82.127750343999935, 28.792240875000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127233718999946, 28.790640357000029 ], [ -82.127941141999941, 28.790928178000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127941141999941, 28.790928178000058 ], [ -82.127891641999952, 28.791026574000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127891641999952, 28.791026574000057 ], [ -82.128179503999945, 28.791083124000068 ], [ -82.128412753999953, 28.791115685000079 ], [ -82.128742755999951, 28.791143784000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127891641999952, 28.791026574000057 ], [ -82.12758443599995, 28.791520986000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128238908999947, 28.788943439000036 ], [ -82.128626571999973, 28.789465411000037 ], [ -82.128653930999974, 28.789522208000051 ], [ -82.128663923999966, 28.789576837000027 ], [ -82.128663990999939, 28.789631474000032 ], [ -82.128656607999972, 28.789681748000078 ], [ -82.128639319999934, 28.78974514600003 ], [ -82.128609615999949, 28.789799812000069 ], [ -82.127941141999941, 28.790928178000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128238908999947, 28.788943439000036 ], [ -82.127605091999953, 28.790008390000025 ], [ -82.127352557999984, 28.790436991000036 ], [ -82.127233718999946, 28.790640357000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127233718999946, 28.790640357000029 ], [ -82.126553436999984, 28.791731321000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128087324999967, 28.788740329000063 ], [ -82.128238908999947, 28.788943439000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127197244999934, 28.789206686000057 ], [ -82.128087324999967, 28.788740329000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127609401999962, 28.788102684000023 ], [ -82.127928270999973, 28.788513185000056 ], [ -82.128087324999967, 28.788740329000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126329512999973, 28.78969487300003 ], [ -82.127197244999934, 28.789206686000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127197244999934, 28.789206686000057 ], [ -82.127068479999934, 28.78940569100007 ], [ -82.12692489799997, 28.789663718000043 ], [ -82.126503959, 28.790341626000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121932131999984, 28.790501047000078 ], [ -82.12194909699997, 28.790491407000047 ], [ -82.122343306999937, 28.79024929600007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121171355999934, 28.791027376000045 ], [ -82.121240046999958, 28.790905947000056 ], [ -82.121287129999985, 28.790857824000057 ], [ -82.121341641999948, 28.790798766000023 ], [ -82.121408574999975, 28.790752810000072 ], [ -82.121497844999965, 28.790715575000036 ], [ -82.121750760999987, 28.790592958000047 ], [ -82.121932131999984, 28.790501047000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119896551999943, 28.789772860000028 ], [ -82.119978496999977, 28.78983835300005 ], [ -82.120023195999977, 28.78987328200003 ], [ -82.12007536699997, 28.789936616000034 ], [ -82.120173298999987, 28.790056039000035 ], [ -82.120216995999954, 28.79012444600005 ], [ -82.120279149999988, 28.790238037000051 ], [ -82.120331381999961, 28.790353823000032 ], [ -82.120465786999944, 28.790731799000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119896551999943, 28.789772860000028 ], [ -82.120010552999986, 28.789665668000055 ], [ -82.120092329999977, 28.789584731000048 ], [ -82.120134505999943, 28.789584694000041 ], [ -82.120345463999968, 28.789654442000028 ], [ -82.12042239799996, 28.789676229000065 ], [ -82.120700319999969, 28.789726248000079 ], [ -82.121050236999963, 28.78981772700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120465786999944, 28.790731799000071 ], [ -82.120460910999952, 28.790806111000052 ], [ -82.120433720999984, 28.790893556000071 ], [ -82.120391617999985, 28.790956975000029 ], [ -82.120322228999953, 28.791024787000026 ], [ -82.120272658999966, 28.791068543000051 ], [ -82.120205736999935, 28.791123240000047 ], [ -82.120143757999983, 28.791162635000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120143757999983, 28.791162635000035 ], [ -82.12002728799996, 28.791280757000038 ], [ -82.119903353999973, 28.791381400000034 ], [ -82.119717408999975, 28.791493026000069 ], [ -82.119578556999954, 28.79156527300006 ], [ -82.119400035999945, 28.791661594000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118948818999968, 28.78975839900005 ], [ -82.119293449999986, 28.789974053000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119551189999981, 28.789640624000072 ], [ -82.11962805099995, 28.789689775000056 ], [ -82.119693678999965, 28.789722911000069 ], [ -82.119805354999983, 28.789752315000044 ], [ -82.119896551999943, 28.789772860000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119137318999947, 28.788944830000048 ], [ -82.11908164, 28.789019439000072 ], [ -82.119051466999963, 28.789074786000072 ], [ -82.119035273999941, 28.78915266000007 ], [ -82.119035043999986, 28.78922287000006 ], [ -82.119062412999938, 28.789292783000064 ], [ -82.119107122999935, 28.78933864000004 ], [ -82.119266019999941, 28.789443404000053 ], [ -82.119551189999981, 28.789640624000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119137318999947, 28.788944830000048 ], [ -82.119202421999944, 28.788875908000023 ], [ -82.11926983799998, 28.788847162000025 ], [ -82.119332610999948, 28.788824568000052 ], [ -82.119465169999955, 28.788812158000042 ], [ -82.119746573999976, 28.788791419000063 ], [ -82.120130277999976, 28.788737807000075 ], [ -82.120402395999974, 28.788731417000065 ], [ -82.121109482999941, 28.788755371000036 ], [ -82.121509551999964, 28.788775502000078 ], [ -82.121579322999935, 28.788771341000029 ], [ -82.121625837999943, 28.788769251000076 ], [ -82.121683978999954, 28.788765101000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119400035999945, 28.791661594000061 ], [ -82.11943983499998, 28.791751164000061 ], [ -82.119564092999951, 28.791934638000043 ], [ -82.11962019799995, 28.792054963000055 ], [ -82.119676987999981, 28.792139432000056 ], [ -82.119805744999951, 28.792229599000052 ], [ -82.119949712999983, 28.792275571000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12011769999998, 28.792348415000049 ], [ -82.12017227299998, 28.792400230000055 ], [ -82.120205001999977, 28.792417490000048 ], [ -82.120255168999961, 28.792430891000038 ], [ -82.120311877999939, 28.792442366000046 ], [ -82.120359857999972, 28.792448085000046 ], [ -82.120405652999978, 28.792451886000038 ], [ -82.120462349999968, 28.792453757000033 ], [ -82.120505957999967, 28.792451797000069 ], [ -82.120558287999984, 28.792447908000042 ], [ -82.120625875999963, 28.792440164000027 ], [ -82.120689100999982, 28.792430503000048 ], [ -82.120771941999976, 28.792413141000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119949712999983, 28.792275571000062 ], [ -82.12011769999998, 28.792348415000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120807873, 28.791425781000044 ], [ -82.12084054099995, 28.791389257000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12084054099995, 28.791389257000048 ], [ -82.120823516999963, 28.791140173000031 ], [ -82.120820876999971, 28.791002487000071 ], [ -82.120813281999972, 28.790871362000075 ], [ -82.120803285999955, 28.790807991000065 ], [ -82.120793277999951, 28.790735878000078 ], [ -82.120783270999937, 28.790663765000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119949712999983, 28.792275571000062 ], [ -82.12004511899994, 28.791804874000036 ], [ -82.120060329999944, 28.79175876000005 ], [ -82.120082106999973, 28.791733769000075 ], [ -82.120123508999939, 28.791708760000063 ], [ -82.120262980999939, 28.791637564000041 ], [ -82.120576763999964, 28.791503017000025 ], [ -82.120807873, 28.791425781000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12084054099995, 28.791389257000048 ], [ -82.121130607999987, 28.791055603000075 ], [ -82.121171355999934, 28.791027376000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12011769999998, 28.792348415000049 ], [ -82.120390035999947, 28.792144560000054 ], [ -82.120424877999938, 28.792104191000078 ], [ -82.120455346999961, 28.792052301000069 ], [ -82.120807873, 28.791425781000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120771941999976, 28.792413141000054 ], [ -82.120837345999973, 28.792401558000051 ], [ -82.12096162499995, 28.792389920000062 ], [ -82.121066286999962, 28.792385986000056 ], [ -82.121199301, 28.792385867000064 ], [ -82.121460972999955, 28.792389472000025 ], [ -82.121713910999972, 28.792383483000037 ], [ -82.121831660999987, 28.792383377000078 ], [ -82.121901438999942, 28.792383314000062 ], [ -82.122025770999983, 28.792417777000026 ], [ -82.122128290999967, 28.792446497000071 ], [ -82.122259164999946, 28.79248095500003 ], [ -82.122387869999955, 28.792525018000049 ], [ -82.122536207999985, 28.792576746000066 ], [ -82.122684555999967, 28.792636160000029 ], [ -82.122856914999943, 28.792716679000023 ], [ -82.123114399999963, 28.792868193000061 ], [ -82.123157618999983, 28.792904011000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119845666999936, 28.790911846000029 ], [ -82.119756993999943, 28.79096125600006 ], [ -82.119558143999939, 28.791069177000054 ], [ -82.119456487999969, 28.791126090000034 ], [ -82.11932010299995, 28.791185219000056 ], [ -82.119294339999954, 28.791215831000045 ], [ -82.119279116999962, 28.791252341000074 ], [ -82.119283014999951, 28.791296715000044 ], [ -82.119400035999945, 28.791661594000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119845666999936, 28.790911846000029 ], [ -82.120143757999983, 28.791162635000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119293449999986, 28.789974053000037 ], [ -82.119454906999977, 28.79007834600003 ], [ -82.119650791999959, 28.790230813000051 ], [ -82.119812920999948, 28.790402366000023 ], [ -82.119865106999953, 28.79047881300005 ], [ -82.119932294999956, 28.790655781000055 ], [ -82.119937309999955, 28.790701671000079 ], [ -82.119939864999935, 28.790767236000079 ], [ -82.119915142999957, 28.790843752000058 ], [ -82.119887064999944, 28.79088299600005 ], [ -82.119845666999936, 28.790911846000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120783270999937, 28.790663765000033 ], [ -82.120765453, 28.790565270000059 ], [ -82.120763137999973, 28.790450019000048 ], [ -82.120771713999943, 28.790323234000027 ], [ -82.120802592999951, 28.790206972000078 ], [ -82.121050236999963, 28.78981772700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125063496999985, 28.792589797000062 ], [ -82.125041854999949, 28.792726199000072 ], [ -82.124994074999961, 28.792887596000071 ], [ -82.124915800999986, 28.793077835000076 ], [ -82.124841868999965, 28.793252702000075 ], [ -82.124798373999965, 28.793348786000024 ], [ -82.124772251999957, 28.793387228000029 ], [ -82.124737383999957, 28.793406468000057 ], [ -82.124700333999954, 28.793423790000077 ], [ -82.124658907999958, 28.793425751000029 ], [ -82.124484394999968, 28.793370206000077 ], [ -82.124194274999979, 28.793284034000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125501234999945, 28.792060384000024 ], [ -82.125307348999968, 28.792278389000046 ], [ -82.125063496999985, 28.792589797000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125904949999949, 28.789100201000053 ], [ -82.126329512999973, 28.78969487300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125904949999949, 28.789100201000053 ], [ -82.126789632999987, 28.788592939000068 ], [ -82.127609401999962, 28.788102684000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123678243999962, 28.790411995000056 ], [ -82.124814370999957, 28.789731091000078 ], [ -82.125517245999959, 28.789300845000071 ], [ -82.125904949999949, 28.789100201000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124926036999966, 28.787762007000026 ], [ -82.125768701999959, 28.787217798000029 ], [ -82.126573188999942, 28.786703156000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125477804999946, 28.788509505000036 ], [ -82.127189223999949, 28.787517256000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123734377999938, 28.789516723000077 ], [ -82.124228191999975, 28.789234149000038 ], [ -82.124926316999961, 28.78882967900006 ], [ -82.125477804999946, 28.788509505000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124926036999966, 28.787762007000026 ], [ -82.125279842999987, 28.788239976000057 ], [ -82.125433554999972, 28.788448320000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125477804999946, 28.788509505000036 ], [ -82.125706611999988, 28.788828134000028 ], [ -82.125904949999949, 28.789100201000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123248358999945, 28.788850761000049 ], [ -82.123572722999938, 28.789290916000027 ], [ -82.123698557999944, 28.789460503000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123248358999945, 28.788850761000049 ], [ -82.123553409999943, 28.788666080000041 ], [ -82.124156940999967, 28.788275589000079 ], [ -82.124760460999937, 28.787879332000045 ], [ -82.124926036999966, 28.787762007000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125351672999955, 28.78631183400006 ], [ -82.125971022999977, 28.785892052000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124379506999958, 28.787030658000049 ], [ -82.124814301999947, 28.786694110000042 ], [ -82.125030325999944, 28.78653543300004 ], [ -82.125351672999955, 28.78631183400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124379506999958, 28.787030658000049 ], [ -82.124825586999975, 28.787637242000073 ], [ -82.124926036999966, 28.787762007000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123652436999976, 28.787585978000038 ], [ -82.124246060999951, 28.787119622000034 ], [ -82.124379506999958, 28.787030658000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12365097299994, 28.786344615000075 ], [ -82.123640124999952, 28.786390246000053 ], [ -82.123652436999976, 28.787585978000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125971022999977, 28.785892052000065 ], [ -82.126329337999948, 28.785643420000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126329337999948, 28.785643420000042 ], [ -82.127020634999951, 28.78566207800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12365097299994, 28.786344615000075 ], [ -82.123697285999981, 28.786325365000039 ], [ -82.123768145999975, 28.786322899000027 ], [ -82.123896246999948, 28.786322781000024 ], [ -82.124842002999969, 28.786317108000048 ], [ -82.125351672999955, 28.78631183400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123598380999965, 28.785660353000026 ], [ -82.124813969999934, 28.78566403700006 ], [ -82.125555296999948, 28.78565134400003 ], [ -82.126329337999948, 28.785643420000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123598380999965, 28.785660353000026 ], [ -82.123593167999957, 28.785862050000048 ], [ -82.123593382999957, 28.786044533000052 ], [ -82.123596201999987, 28.78612376600006 ], [ -82.123598989999948, 28.786176587000057 ], [ -82.123604515999943, 28.786239010000031 ], [ -82.123610018999955, 28.786284625000064 ], [ -82.123623691999967, 28.786323031000052 ], [ -82.12365097299994, 28.786344615000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123216808999985, 28.78566070200003 ], [ -82.123598380999965, 28.785660353000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123216808999985, 28.78566070200003 ], [ -82.123204876999978, 28.787103768000065 ], [ -82.123205331999941, 28.787490343000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122527253999976, 28.785663731000056 ], [ -82.122821613999974, 28.785665863000077 ], [ -82.123216808999985, 28.78566070200003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122527253999976, 28.785663731000056 ], [ -82.122528483999986, 28.786715407000031 ], [ -82.12252618499997, 28.787080374000027 ], [ -82.122526616999949, 28.787450142000068 ], [ -82.122524130999977, 28.787656638000044 ], [ -82.122521501999984, 28.787738278000063 ], [ -82.122486121999941, 28.787783930000046 ], [ -82.12241529399995, 28.78781520900003 ], [ -82.122167271999956, 28.787820236000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122103503999938, 28.786893472000031 ], [ -82.122147491999954, 28.78721758000006 ], [ -82.122145016, 28.787433680000049 ], [ -82.122167271999956, 28.787820236000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11915690099994, 28.787289495000039 ], [ -82.11943019499995, 28.787299247000078 ], [ -82.119536510999978, 28.787315959000068 ], [ -82.119645566999964, 28.787344676000032 ], [ -82.119754625999974, 28.787378194000041 ], [ -82.119847336999953, 28.787414129000069 ], [ -82.119931878999978, 28.78745727300003 ], [ -82.119978257999946, 28.787495650000039 ], [ -82.120016479999947, 28.787550841000041 ], [ -82.120054708999987, 28.787613235000038 ], [ -82.120095675999949, 28.787685232000058 ], [ -82.120136621999961, 28.787740420000034 ], [ -82.120183008999959, 28.78778599900005 ], [ -82.120251183999983, 28.787817153000049 ], [ -82.120332967999957, 28.787831487000062 ], [ -82.120403837999959, 28.787836226000024 ], [ -82.120476647999965, 28.787834327000041 ], [ -82.120561910999982, 28.787826480000035 ], [ -82.120719961999953, 28.787797527000066 ], [ -82.120883454999955, 28.787761363000072 ], [ -82.121136866999962, 28.787703510000028 ], [ -82.121679039999947, 28.787515738000025 ], [ -82.12174713099995, 28.787474858000053 ], [ -82.121896836999952, 28.787301844000069 ], [ -82.121975713999973, 28.787160108000023 ], [ -82.122043709999957, 28.787037591000058 ], [ -82.122103503999938, 28.786893472000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122166516999982, 28.785679620000053 ], [ -82.122080866999966, 28.786177968000061 ], [ -82.122103503999938, 28.786893472000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122317396999961, 28.785671124000032 ], [ -82.122527253999976, 28.785663731000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122166516999982, 28.785679620000053 ], [ -82.122317396999961, 28.785671124000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121488801999988, 28.785640658000034 ], [ -82.122166516999982, 28.785679620000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121515672999976, 28.784134549000044 ], [ -82.120785904999934, 28.784117195000078 ], [ -82.120745027999988, 28.784122634000028 ], [ -82.120712345999948, 28.784142472000042 ], [ -82.12067353599997, 28.784167718000049 ], [ -82.12065720399994, 28.784185741000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121515672999976, 28.784134549000044 ], [ -82.121496062999938, 28.784850691000031 ], [ -82.121488801999988, 28.785640658000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121515672999976, 28.784134549000044 ], [ -82.122102996999956, 28.784117811000044 ], [ -82.122154783999974, 28.784120165000047 ], [ -82.122201123999957, 28.784127327000078 ], [ -82.122242023999945, 28.784141697000052 ], [ -82.122274757999946, 28.784165678000079 ], [ -82.122291158999985, 28.784206482000059 ], [ -82.122304863999943, 28.784273700000028 ], [ -82.122305012999959, 28.784400958000049 ], [ -82.122317396999961, 28.785671124000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12065720399994, 28.784185741000044 ], [ -82.120651131999978, 28.784237970000049 ], [ -82.120649147999984, 28.784290196000029 ], [ -82.120653367999978, 28.78440484500004 ], [ -82.120656430999986, 28.784697775000041 ], [ -82.120657505999986, 28.785631798000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046285044999934, 28.860657030000027 ], [ -82.046266187999947, 28.860260160000053 ], [ -82.046256540999934, 28.859434005000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023546260999979, 28.927305702000069 ], [ -82.023104291999971, 28.927301575000058 ], [ -82.02174972499995, 28.927297597000063 ], [ -82.020516995999969, 28.927289384000062 ], [ -82.020412457999953, 28.927289448000067 ], [ -82.020322564999958, 28.927289504000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048931678999963, 28.927408268000079 ], [ -82.048426296999935, 28.92741034900007 ], [ -82.04797580099995, 28.927411724000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042863974999989, 28.927415 ], [ -82.042694942999958, 28.927414696000028 ], [ -82.040686258999983, 28.92741297300006 ], [ -82.040665838999985, 28.927412956000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034001512999964, 28.927406425000072 ], [ -82.033448929999963, 28.927398910000079 ], [ -82.033075290999989, 28.927399933000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117466751999984, 28.776715694000075 ], [ -82.117025546999969, 28.775219148000076 ], [ -82.117014265999956, 28.775167244000045 ], [ -82.117005787999972, 28.77511286500004 ], [ -82.117000121, 28.775063427000077 ], [ -82.117011282999954, 28.775009031000025 ], [ -82.11703646999996, 28.774949679000031 ], [ -82.117070091999949, 28.774907624000036 ], [ -82.117117739999969, 28.774860613000044 ], [ -82.11714576199995, 28.774828451000076 ], [ -82.117176595999979, 28.774801232000073 ], [ -82.117218658999946, 28.774778947000073 ], [ -82.117263548999972, 28.774776435000035 ], [ -82.117322477999949, 28.774781328000074 ], [ -82.117726570999935, 28.774827946000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03636543999994, 28.926603365000062 ], [ -82.03526915599997, 28.92660423500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037258494999946, 28.925190638000061 ], [ -82.037100116999966, 28.925195719000044 ], [ -82.036376703999963, 28.925200517000064 ], [ -82.036170192999975, 28.925196497000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000406938999959, 28.952622417000043 ], [ -82.000396518999935, 28.952679445000058 ], [ -82.000398834999942, 28.952729344000034 ], [ -82.000405781999973, 28.952762949000032 ], [ -82.000412267999934, 28.952785056000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000548863999938, 28.952441838000027 ], [ -82.00052735099996, 28.952457447000029 ], [ -82.000499563999938, 28.952476795000052 ], [ -82.000478722999958, 28.952498180000077 ], [ -82.000459039999953, 28.952521602000047 ], [ -82.000443987999972, 28.952541968000048 ], [ -82.000431251999942, 28.952561318000051 ], [ -82.000420832999964, 28.952580666000074 ], [ -82.000413884999944, 28.952602051000042 ], [ -82.000406938999959, 28.952622417000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001036786999975, 28.952495122000073 ], [ -82.000999736999972, 28.952463555000065 ], [ -82.000971949999951, 28.952443188000075 ], [ -82.000948792999964, 28.952426895000031 ], [ -82.000923320999959, 28.952410601000054 ], [ -82.000892059999956, 28.952398382000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11668091699994, 28.664186929000039 ], [ -82.118787063999946, 28.664212362000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116211360999955, 28.664182604000075 ], [ -82.11668091699994, 28.664186929000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054786852999939, 28.644695714000079 ], [ -82.054786501999956, 28.644020393000062 ], [ -82.054785953999954, 28.642966879000028 ], [ -82.054782817999978, 28.641852459000063 ], [ -82.054782278999937, 28.640814736000038 ], [ -82.054782007999961, 28.640717560000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99370315699997, 28.895906748000073 ], [ -81.993847934999962, 28.896220414000027 ], [ -81.993932576999953, 28.896369406000076 ], [ -81.994017220999979, 28.896483112000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025735100999952, 28.625682339000036 ], [ -82.026130087999945, 28.62521825500005 ], [ -82.026212800999986, 28.625171695000063 ], [ -82.026266311999962, 28.625150910000059 ], [ -82.026331704999961, 28.625136473000055 ], [ -82.027369843999963, 28.625071354000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024518813999975, 28.62132856900007 ], [ -82.024391960999935, 28.62140327700007 ], [ -82.024194615999988, 28.62152456900003 ], [ -82.024047509999946, 28.621648411000024 ], [ -82.024010312999962, 28.621709261000035 ], [ -82.023990308999942, 28.621754886000076 ], [ -82.023983647999955, 28.621799036000027 ], [ -82.023990862999938, 28.621839020000039 ], [ -82.024008681999987, 28.621871144000067 ], [ -82.024038035999979, 28.621927299000049 ], [ -82.024068024999963, 28.621995814000059 ], [ -82.02407758399994, 28.622094384000036 ], [ -82.024065342999961, 28.622185746000071 ], [ -82.024040844999945, 28.622295142000041 ], [ -82.024008168999956, 28.622385305000023 ], [ -82.023980454999958, 28.622430379000036 ], [ -82.023945515999969, 28.62246585500003 ], [ -82.023850165999988, 28.622536796000077 ], [ -82.023739830999943, 28.622610143000031 ], [ -82.023680288999969, 28.622664426000028 ], [ -82.023625418999984, 28.622733980000078 ], [ -82.023580244999948, 28.622793949000027 ], [ -82.023520212999983, 28.622841053000059 ], [ -82.023444254999959, 28.62287946500004 ], [ -82.023348892999934, 28.622897512000065 ], [ -82.023237174999963, 28.622893925000028 ], [ -82.023125456999935, 28.622877116000041 ], [ -82.023020550999945, 28.622867516000042 ], [ -82.022898098999974, 28.622876478000023 ], [ -82.022820287999934, 28.622892794000052 ], [ -82.022741271999962, 28.622912041000063 ], [ -82.022599591999949, 28.622944521000079 ], [ -82.022466083999973, 28.622972192000077 ], [ -82.022283534999985, 28.623017901000026 ], [ -82.02217183099998, 28.623076823000076 ], [ -82.022098279999966, 28.623159779000048 ], [ -82.022062877999986, 28.623252346000072 ], [ -82.022060170999964, 28.623338899000032 ], [ -82.022079258999952, 28.623411021000038 ], [ -82.022111969999969, 28.623471120000033 ], [ -82.022166476999985, 28.623530015000028 ], [ -82.022227792999956, 28.623573280000073 ], [ -82.022302730999968, 28.623603320000029 ], [ -82.022353142999975, 28.623614131000068 ], [ -82.022428076999972, 28.623616522000077 ], [ -82.022569758999964, 28.623593658000061 ], [ -82.02271688899998, 28.623562380000067 ], [ -82.022873558999947, 28.623532301000068 ], [ -82.022987993999948, 28.623508240000035 ], [ -82.023062924999977, 28.623505823000073 ], [ -82.02315284499997, 28.623517829000036 ], [ -82.023230502999979, 28.623529837000035 ], [ -82.023368108999989, 28.623545439000054 ], [ -82.023527513999966, 28.623569454000062 ], [ -82.023606534999942, 28.623583866000047 ], [ -82.023681475999979, 28.623617511000077 ], [ -82.023785027999963, 28.623666779000075 ], [ -82.023941719999982, 28.623741281000036 ], [ -82.024042548999944, 28.623792954000066 ], [ -82.024097053999981, 28.623836219000054 ], [ -82.024150203999966, 28.623909538000078 ], [ -82.024234699999965, 28.624029733000043 ], [ -82.024369619999959, 28.62421723500006 ], [ -82.024484093999945, 28.624354254000025 ], [ -82.024583581999934, 28.624502094000036 ], [ -82.024698074999947, 28.624718450000046 ], [ -82.024748508999949, 28.624819417000026 ], [ -82.024767599999961, 28.624895147000075 ], [ -82.024758083999984, 28.624981699000045 ], [ -82.024737678999941, 28.625111529000037 ], [ -82.024671019999971, 28.625541893000047 ], [ -82.024641087999953, 28.625712595000039 ], [ -82.024593435999975, 28.625854451000066 ], [ -82.024538960999962, 28.625945821000073 ], [ -82.024495384999966, 28.626044401000058 ], [ -82.02449132199996, 28.626144175000036 ], [ -82.024522678999972, 28.626241539000034 ], [ -82.02457719399996, 28.626316059000033 ], [ -82.024653507999972, 28.626389374000041 ], [ -82.024742076999985, 28.626438643000029 ], [ -82.024842901999989, 28.62646026300007 ], [ -82.02491783499994, 28.626460249000047 ], [ -82.025009112999953, 28.626439797000046 ], [ -82.025100383999984, 28.626394100000027 ], [ -82.025169852999966, 28.626331578000077 ], [ -82.02528154099997, 28.626201731000037 ], [ -82.025394589999962, 28.626068277000059 ], [ -82.025504915999988, 28.625943239000037 ], [ -82.025615239999979, 28.625813390000076 ], [ -82.025735100999952, 28.625682339000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029927956999984, 28.609926443000063 ], [ -82.027030069999967, 28.609915566000041 ], [ -82.02575864399995, 28.609917930000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031813668999973, 28.844428159000074 ], [ -82.031396461999975, 28.844289400000036 ], [ -82.030832700999952, 28.84410340900007 ], [ -82.030258371999935, 28.843914317000042 ], [ -82.029793271999949, 28.843759319000071 ], [ -82.029402168, 28.843632223000043 ], [ -82.028880694999941, 28.843461724000065 ], [ -82.028316943999982, 28.84327262100004 ], [ -82.027749670999981, 28.84308661700004 ], [ -82.027231727999947, 28.842916112000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027231727999947, 28.842916112000069 ], [ -82.026756066999951, 28.842758004000075 ], [ -82.026167658999952, 28.842562693000048 ], [ -82.025734280999984, 28.842420084000025 ], [ -82.025286812, 28.842271273000051 ], [ -82.02475125999996, 28.842094557000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041136441999981, 28.86230510300004 ], [ -82.040484393999975, 28.862073014000032 ], [ -82.039660612999967, 28.861790942000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992905878999977, 28.81699962700003 ], [ -81.992674583999985, 28.816893420000042 ], [ -81.992615204999936, 28.816862911000044 ], [ -81.992550876999985, 28.816830222000078 ], [ -81.992511290999971, 28.81681278800005 ], [ -81.992454384999974, 28.816801890000079 ], [ -81.992392529999961, 28.81679970700003 ], [ -81.992315829999939, 28.81680188200005 ], [ -81.99139046099998, 28.81699358000003 ], [ -81.991246953999962, 28.817021899000054 ], [ -81.99117767499996, 28.817026253000051 ], [ -81.991118294999978, 28.817024070000059 ], [ -81.991061387999935, 28.817006633000062 ], [ -81.991026750999936, 28.816991378000068 ], [ -81.990984690999937, 28.81696740600006 ], [ -81.990947582, 28.816934718000027 ], [ -81.99091294599998, 28.816904208000039 ], [ -81.990881774999934, 28.816850603000034 ], [ -81.990539426999987, 28.815951076000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041309895999973, 28.849077906000048 ], [ -82.041309879999972, 28.849035056000048 ], [ -82.041327665999972, 28.848221515000034 ], [ -82.041332195999985, 28.847898748000034 ], [ -82.041329502999986, 28.847391176000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046256540999934, 28.859434005000026 ], [ -82.046244523999974, 28.859146284000076 ], [ -82.046239510999953, 28.859073927000054 ], [ -82.046246636999967, 28.858293328000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994017220999979, 28.896483112000055 ], [ -81.994298394999987, 28.896321869000076 ], [ -81.994607567999935, 28.896124389000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020322564999958, 28.927289504000044 ], [ -82.020320908999963, 28.927009142000031 ], [ -82.020329765999975, 28.926413070000024 ], [ -82.020326040999976, 28.925937698000041 ], [ -82.020333110999957, 28.924796008000044 ], [ -82.020333026999936, 28.924366270000064 ], [ -82.020332992999954, 28.924190126000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003903666999975, 28.927267658000062 ], [ -82.004042962999961, 28.927269466000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968721749999986, 28.92016678300007 ], [ -81.968850459999942, 28.920167493000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968851142999938, 28.920043325000051 ], [ -81.968718430999957, 28.920043294000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999998716999983, 28.926755172000071 ], [ -81.999872099999948, 28.926711035000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004045687999962, 28.927141831000029 ], [ -82.003914292, 28.927139733000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009467403999963, 28.928607591000059 ], [ -82.009855272999971, 28.928610455000069 ], [ -82.010572767999975, 28.928618268000037 ], [ -82.010647620999976, 28.928605599000036 ], [ -82.010742627999946, 28.928570131000072 ], [ -82.010826115999976, 28.928527066000072 ], [ -82.011361586999953, 28.928230681000059 ], [ -82.01145371399997, 28.928202813000041 ], [ -82.011565995999945, 28.928190139000037 ], [ -82.012138924999988, 28.92819262200004 ], [ -82.012279803999945, 28.928199900000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015794577999941, 28.927382755000053 ], [ -82.015790248999963, 28.928096863000064 ], [ -82.015793808999945, 28.928230807000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016202939999971, 28.929950513000051 ], [ -82.016208357999972, 28.930021866000061 ], [ -82.016208408999944, 28.930348939000055 ], [ -82.01621554999997, 28.930547765000028 ], [ -82.016237688999979, 28.930633553000064 ], [ -82.016265951999969, 28.930706398000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015794577999941, 28.927382755000053 ], [ -82.015946369999938, 28.927382737000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020322564999958, 28.927289504000044 ], [ -82.019076471999938, 28.927278261000026 ], [ -82.017145038999956, 28.927260912000065 ], [ -82.015947232999963, 28.927254033000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037270632999935, 28.92748572000005 ], [ -82.037432962999958, 28.927485466000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037446294999938, 28.927411597000059 ], [ -82.037282187999949, 28.927413321000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030770618999952, 28.928448293000031 ], [ -82.032857907999983, 28.92845675500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030770618999952, 28.928448293000031 ], [ -82.030777369999953, 28.927481903000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034796168999947, 28.931080628000075 ], [ -82.034754053999961, 28.931055945000026 ], [ -82.03472364299995, 28.931049778000045 ], [ -82.034660479999957, 28.931043621000072 ], [ -82.034337667999978, 28.931045761000064 ], [ -82.033811345999936, 28.931064415000037 ], [ -82.033465141999955, 28.931070676000047 ], [ -82.033224200999939, 28.931072794000045 ], [ -82.033137648999968, 28.93107281500005 ], [ -82.033095544999981, 28.931072825000058 ], [ -82.033044077999989, 28.931064606000064 ], [ -82.033006646, 28.93105226800003 ], [ -82.032952834999946, 28.931025529000067 ], [ -82.032842823999943, 28.930975988000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026785164999978, 28.927444272000059 ], [ -82.026778025999988, 28.927529933000073 ], [ -82.02676374899994, 28.927684122000073 ], [ -82.026765176999959, 28.928085299000031 ], [ -82.02677945399995, 28.928253765000079 ], [ -82.026790582, 28.928300947000025 ], [ -82.026820855999972, 28.928360841000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016272318999938, 28.93149353900003 ], [ -82.016273337999962, 28.931684430000075 ], [ -82.016277263999939, 28.931893820000028 ], [ -82.016281373999959, 28.932108612000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013681793999979, 28.928221465000036 ], [ -82.014177290999953, 28.928222817000062 ], [ -82.015793808999945, 28.928230807000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015796315999978, 28.927250087000061 ], [ -82.014353598999946, 28.927239487000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971675234999964, 28.920047256000032 ], [ -81.970030348999956, 28.920045905000052 ], [ -81.968851142999938, 28.920043325000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012279803999945, 28.928199900000038 ], [ -82.012481531999981, 28.928210320000062 ], [ -82.013281908999943, 28.928220374000034 ], [ -82.013681793999979, 28.928221465000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012279803999945, 28.928199900000038 ], [ -82.012259622999977, 28.928893941000069 ], [ -82.012257403999968, 28.929017724000062 ], [ -82.01226857599994, 28.929062914000042 ], [ -82.012290914999937, 28.92910024400004 ], [ -82.012375796999947, 28.929200441000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995971398999984, 28.885629290000054 ], [ -81.996097378999934, 28.885248023000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996097378999934, 28.885248023000031 ], [ -81.996292238999956, 28.884686821000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995729679999954, 28.884073633000071 ], [ -81.995797162999963, 28.883883596000032 ], [ -81.995909639, 28.883456013000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996912842999961, 28.881143903000066 ], [ -81.996822885999961, 28.880874679000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998815625999953, 28.879730519000077 ], [ -81.998743655999988, 28.879639458000042 ], [ -81.998658189999958, 28.879580071000078 ], [ -81.998275846999945, 28.879374191000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996822885999961, 28.880874679000044 ], [ -81.996633977999977, 28.880316435000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999469056999942, 28.888990653000064 ], [ -81.999525284999947, 28.888400854000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000972820999948, 28.890233757000033 ], [ -82.001012192999951, 28.889598417000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008678654999983, 28.892443378000053 ], [ -82.009066979999943, 28.892443352000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008678654999983, 28.892443378000053 ], [ -82.008667432999971, 28.891868067000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008667432999971, 28.891868067000075 ], [ -82.008666477999952, 28.891586967000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010072709999974, 28.892443281000055 ], [ -82.010175104999973, 28.892003185000078 ], [ -82.01017602099995, 28.891863044000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009066979999943, 28.892443352000043 ], [ -82.010072709999974, 28.892443281000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009262662999959, 28.893848838000054 ], [ -82.009267875999967, 28.89356230900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966137015999948, 28.920167529000025 ], [ -81.96613672999996, 28.920512239000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134664720999979, 28.802876914000024 ], [ -82.134659027999987, 28.802909759000045 ], [ -82.134651906999977, 28.802948918000027 ], [ -82.134647646999952, 28.802980496000032 ], [ -82.134644823999963, 28.80301460000004 ], [ -82.134643437999955, 28.803052490000027 ], [ -82.134644506999962, 28.803115780000041 ], [ -82.134644586999968, 28.803178219000074 ], [ -82.134648595999977, 28.803233718000058 ], [ -82.134650612999963, 28.803270139000062 ], [ -82.134658533999982, 28.803304819000061 ], [ -82.134668426999951, 28.803341233000026 ], [ -82.134690139999975, 28.803382838000061 ], [ -82.134713829999953, 28.803429643000072 ], [ -82.134743431999937, 28.803479912000057 ], [ -82.134790768999949, 28.803540572000031 ], [ -82.134824284, 28.803571757000043 ], [ -82.134861742999988, 28.803606408000064 ], [ -82.134918928, 28.803668791000064 ], [ -82.134987940999963, 28.803741568000078 ], [ -82.135037239999974, 28.803797020000047 ], [ -82.135090485999967, 28.803857672000049 ], [ -82.135167346999935, 28.803907894000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127020634999951, 28.78566207800003 ], [ -82.128662056999985, 28.785632526000029 ], [ -82.128920057999949, 28.785627593000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965373954999961, 28.872559423000041 ], [ -81.965394710999988, 28.872570088000032 ], [ -81.96542065899996, 28.872577707000062 ], [ -81.965448335999952, 28.872582284000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965503854999952, 28.872101101000055 ], [ -81.96545714399997, 28.872103755000069 ], [ -81.965413025999965, 28.872115164000036 ], [ -81.965368904999934, 28.872135710000066 ], [ -81.965327376999937, 28.872158541000033 ], [ -81.965293633999977, 28.872187083000028 ], [ -81.965268972999979, 28.872212203000061 ], [ -81.965246904999958, 28.872245317000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965246904999958, 28.872245317000079 ], [ -81.965233629999943, 28.872280084000067 ], [ -81.965230738999935, 28.87230343300007 ], [ -81.965226690999941, 28.872338964000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965630997999938, 28.872132478000026 ], [ -81.965601591999985, 28.872121810000067 ], [ -81.965570454999977, 28.87211114400003 ], [ -81.965539318999959, 28.872105044000079 ], [ -81.965503854999952, 28.872101101000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961220711999943, 28.879299103000051 ], [ -81.961144109999964, 28.878971074000049 ], [ -81.961081571999955, 28.878716091000058 ], [ -81.961036246999981, 28.878491433000079 ], [ -81.96101908199995, 28.878330181000024 ], [ -81.961001927999973, 28.878145500000073 ], [ -81.961002001999987, 28.877948419000063 ], [ -81.961011460999941, 28.877773392000051 ], [ -81.961030315999949, 28.877599748000023 ], [ -81.961064833999956, 28.87740819000004 ], [ -81.961115018999976, 28.877197342000045 ], [ -81.961199689999944, 28.87688038400006 ], [ -81.961301574999936, 28.876588239000057 ], [ -81.961336055999936, 28.876495910000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961459910999963, 28.880393825000056 ], [ -81.96145987999995, 28.880393565000077 ], [ -81.961441147999949, 28.880237709000028 ], [ -81.961372375999986, 28.879901413000027 ], [ -81.96131526399995, 28.879654904000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96130218899998, 28.883379927000078 ], [ -81.96133040999996, 28.883284840000044 ], [ -81.961424539999939, 28.882803882000076 ], [ -81.961493598999937, 28.882371152000076 ], [ -81.961525024999958, 28.882078985000078 ], [ -81.961528207999947, 28.881941168000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960880525999983, 28.884549882000044 ], [ -81.961030984, 28.884201246000032 ], [ -81.961194005999971, 28.883746492000057 ], [ -81.96130218899998, 28.883379927000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960880525999983, 28.884549882000044 ], [ -81.96118722999995, 28.88465646700007 ], [ -81.961339545999977, 28.884708422000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960808786999962, 28.892113324000036 ], [ -81.960524091999957, 28.892110424000066 ], [ -81.960387761999982, 28.892110384000034 ], [ -81.960320183999954, 28.892106926000054 ], [ -81.960272526999972, 28.892104162000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958162099999981, 28.895593216000066 ], [ -81.958419961999937, 28.895506664000038 ], [ -81.958626648999939, 28.895415626000045 ], [ -81.958833342999981, 28.895308774000057 ], [ -81.959009561999949, 28.895212570000069 ], [ -81.959222319999981, 28.895078905000048 ], [ -81.95947767399997, 28.894902624000053 ], [ -81.95972698199995, 28.894699525000078 ], [ -81.959927452999978, 28.89451772700005 ], [ -81.960096435999958, 28.894355416000053 ], [ -81.960188350999942, 28.89424886300003 ], [ -81.960261454999966, 28.894191920000026 ], [ -81.960334828999976, 28.894169944000055 ], [ -81.960422242999982, 28.894171753000023 ], [ -81.960497404999956, 28.894197502000054 ], [ -81.960570469999936, 28.894243462000077 ], [ -81.96063726899996, 28.894294934000072 ], [ -81.960722844999964, 28.894385001000046 ], [ -81.96079797799996, 28.894484252000041 ], [ -81.960837624999954, 28.894554090000042 ], [ -81.960869443999968, 28.894630075000066 ], [ -81.960891273999948, 28.894753154000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957359769999982, 28.896889008000073 ], [ -81.957376765999982, 28.89681325600003 ], [ -81.957395585999961, 28.896747109000046 ], [ -81.957433189999961, 28.896699344000069 ], [ -81.95747496599995, 28.896666281000023 ], [ -81.957635787999948, 28.896576291000031 ], [ -81.958023877999949, 28.896399676000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954095777999953, 28.899342510000054 ], [ -81.954095781999968, 28.899333228000046 ], [ -81.954095846999962, 28.899185404000036 ], [ -81.954093187999945, 28.899011796000025 ], [ -81.954090134999944, 28.89883134300004 ], [ -81.954091866999988, 28.898743464000063 ], [ -81.954108817999952, 28.898682402000077 ], [ -81.954124755999942, 28.898649761000058 ], [ -81.954151914999954, 28.898622206000027 ], [ -81.954215495999961, 28.898581155000045 ], [ -81.954328914999962, 28.898542468000073 ], [ -81.954501580999988, 28.898491883000077 ], [ -81.954667475999941, 28.898439809000024 ], [ -81.954875690999984, 28.89837285200008 ], [ -81.955051742999956, 28.898317802000065 ], [ -81.955163465999988, 28.89828804900003 ], [ -81.955263330999969, 28.898280634000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961058295999976, 28.893072457000073 ], [ -81.961023866999938, 28.893009050000046 ], [ -81.960985444999949, 28.89292236700004 ], [ -81.960915917999955, 28.892725114000029 ], [ -81.960900280999965, 28.892663091000031 ], [ -81.960855785999968, 28.892431772000066 ], [ -81.960855079999988, 28.892428100000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964426378999974, 28.892360562000079 ], [ -81.964678975999959, 28.891786363000051 ], [ -81.964687967999964, 28.891765052000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955441616999963, 28.897020054000052 ], [ -81.955502600999978, 28.896893995000028 ], [ -81.955553843999951, 28.896797967000055 ], [ -81.955609437999954, 28.896706133000066 ], [ -81.955702429999974, 28.89657782300003 ], [ -81.955765088999954, 28.896494930000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95894709099997, 28.89612390700006 ], [ -81.958997022999938, 28.896035870000048 ], [ -81.959108267999966, 28.895932169000048 ], [ -81.959228401999951, 28.895848044000047 ], [ -81.95940448999994, 28.895747608000079 ], [ -81.959513896999965, 28.895683355000074 ], [ -81.95966569999996, 28.895587143000057 ], [ -81.959866347999935, 28.895453473000032 ], [ -81.960036525999953, 28.895319793000056 ], [ -81.960243242, 28.895148653000035 ], [ -81.960431791999952, 28.894977508000068 ], [ -81.960547257999963, 28.894886607000046 ], [ -81.960630798999944, 28.894838854000056 ], [ -81.960753948, 28.894790586000056 ], [ -81.960891273999948, 28.894753154000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96495009399996, 28.89114666200004 ], [ -81.965002284999969, 28.891023602000075 ], [ -81.965144382999938, 28.890711488000079 ], [ -81.96518180299995, 28.890659084000049 ], [ -81.965230933999976, 28.890628317000051 ], [ -81.965281660999949, 28.890613864000045 ], [ -81.96533347999997, 28.890607373000023 ], [ -81.965395805999947, 28.890608993000058 ], [ -81.965537781999956, 28.890633530000059 ], [ -81.96579946199995, 28.890677699000037 ], [ -81.966090078999969, 28.890753327000027 ], [ -81.966358017999937, 28.890850340000043 ], [ -81.966590031999942, 28.890944959000024 ], [ -81.966670980999936, 28.891015824000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984476285999961, 28.88334277000007 ], [ -81.984599677999938, 28.883421512000041 ], [ -81.98490209299996, 28.883596394000051 ], [ -81.985174864999976, 28.883726909000075 ], [ -81.985462463999966, 28.883849595000072 ], [ -81.985738205999951, 28.883951401000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986455740999986, 28.884123714000054 ], [ -81.986497278999934, 28.883922772000062 ], [ -81.986554035999973, 28.883716682000056 ], [ -81.986559114999977, 28.883704650000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99111299599997, 28.885404668000035 ], [ -81.991121784999962, 28.885409138000057 ], [ -81.991469644999938, 28.885588150000046 ], [ -81.991703374999986, 28.885728202000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991334504999941, 28.884999368000024 ], [ -81.991359987999942, 28.88493311600007 ], [ -81.991408931999956, 28.884789324000053 ], [ -81.991494301999978, 28.88451671200005 ], [ -81.991526534999934, 28.88440704900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960038843999939, 28.927502166000068 ], [ -81.960055054999941, 28.927516954000055 ], [ -81.960132722999958, 28.927576873000078 ], [ -81.960190840999985, 28.927647225000044 ], [ -81.960234430999947, 28.927695194000023 ], [ -81.960266161999982, 28.927746738000053 ], [ -81.96029135699996, 28.927786666000031 ], [ -81.960314031999985, 28.927824376000046 ], [ -81.960339226999963, 28.927862087000051 ], [ -81.960356856999965, 28.927906448000044 ], [ -81.960384565999959, 28.92796412000007 ], [ -81.960414792999984, 28.928028445000052 ], [ -81.960434938999981, 28.928083898000068 ], [ -81.96044866699998, 28.928149236000024 ], [ -81.960458521999954, 28.928200969000045 ], [ -81.960467662999974, 28.928243271000042 ], [ -81.960483674999978, 28.928287590000025 ], [ -81.960504262999962, 28.928333925000061 ], [ -81.960534009999947, 28.928382276000036 ], [ -81.96057749199997, 28.928438688000028 ], [ -81.960650724999937, 28.928529352000055 ], [ -81.960791221999955, 28.928655985000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964909198999976, 28.938220229000024 ], [ -81.964310378999983, 28.938273591000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963497622999967, 28.935174825000047 ], [ -81.96350515599994, 28.935195830000055 ], [ -81.963515202999986, 28.935214625000071 ], [ -81.963536556999941, 28.935237846000064 ], [ -81.963561684999945, 28.935254435000047 ], [ -81.963604401999987, 28.935283188000028 ], [ -81.963654654999971, 28.935316366000052 ], [ -81.963696115999937, 28.935345120000079 ], [ -81.963741341999935, 28.935382717000039 ], [ -81.963782798999944, 28.935420313000066 ], [ -81.963824878999958, 28.935458107000045 ], [ -81.963866762999942, 28.935494974000051 ], [ -81.963929783999959, 28.935548218000065 ], [ -81.963987757999973, 28.935607621000031 ], [ -81.964030285999968, 28.935638157000028 ], [ -81.96407886999998, 28.93565880400007 ], [ -81.964130808999982, 28.935666188000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136623197999938, 28.65773321000006 ], [ -82.136622529999954, 28.657657727000071 ], [ -82.136606419999964, 28.657553073000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133140824999941, 28.657721718000062 ], [ -82.13373807399995, 28.657724618000032 ], [ -82.134924661999946, 28.657730418000028 ], [ -82.135871952999935, 28.657734705000053 ], [ -82.136396025999943, 28.657734178000055 ], [ -82.136623197999938, 28.65773321000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136623197999938, 28.65773321000006 ], [ -82.137250370999936, 28.657740292000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042394297999977, 28.559215201000029 ], [ -82.042370069999947, 28.55922259700003 ], [ -82.040523907999955, 28.559790440000029 ], [ -82.038896587999943, 28.560292741000069 ], [ -82.038204706999977, 28.56050177000003 ], [ -82.035814873999982, 28.561244249000026 ], [ -82.034173386999953, 28.561746495000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046330540999975, 28.557865443000026 ], [ -82.046050241999978, 28.55799101100007 ], [ -82.045816484999989, 28.558108541000024 ], [ -82.045691541999986, 28.558158409000043 ], [ -82.045514202999982, 28.558229652000023 ], [ -82.045058750999942, 28.558389962000035 ], [ -82.044607319999955, 28.558530103000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044607319999955, 28.558530103000066 ], [ -82.044537360999982, 28.558326071000067 ], [ -82.044505024999978, 28.558122027000024 ], [ -82.044504966999966, 28.557984408000038 ], [ -82.044521047999979, 28.557880003000037 ], [ -82.044499533999954, 28.557846791000031 ], [ -82.044494140999973, 28.557804084000054 ], [ -82.044499481999935, 28.557723409000062 ], [ -82.044536952999977, 28.557357996000064 ], [ -82.044526122999969, 28.557168181000065 ], [ -82.044499194999958, 28.557040063000045 ], [ -82.044434665999972, 28.556964157000039 ], [ -82.044327128999953, 28.556864537000024 ], [ -82.044278725999959, 28.556793371000026 ], [ -82.044273300999976, 28.556674736000048 ], [ -82.044305519999966, 28.556603543000051 ], [ -82.04432699299997, 28.556541845000027 ], [ -82.044337714999983, 28.556475405000072 ], [ -82.044337668999958, 28.556366260000061 ], [ -82.044316034999952, 28.556043575000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116843032999952, 28.598684367000033 ], [ -82.116859917999989, 28.597919503000071 ], [ -82.116859369999986, 28.596513780000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996952016999956, 28.928711244000056 ], [ -81.996628703999988, 28.928711553000028 ], [ -81.996295080999971, 28.92871180800006 ], [ -81.996274461999974, 28.928713495000068 ], [ -81.996258636999983, 28.928716869000027 ], [ -81.996239455999955, 28.928723619000039 ], [ -81.996219795999934, 28.928734586000076 ], [ -81.996208766999985, 28.928743445000066 ], [ -81.996195818999979, 28.928755256000045 ], [ -81.996187665999969, 28.928766224000071 ], [ -81.996180952999964, 28.928777613000079 ], [ -81.996174239999959, 28.928791956000055 ], [ -81.996170402999951, 28.928814736000049 ], [ -81.996170393999989, 28.929058987000076 ], [ -81.996170736999943, 28.929074589000038 ], [ -81.996170388999985, 28.929175839000038 ], [ -81.996171346999972, 28.929223086000036 ], [ -81.996174975999963, 28.929266759000029 ], [ -81.996181413999977, 28.929307878000031 ], [ -81.996186686999977, 28.929331080000054 ], [ -81.996193878999975, 28.929364828000075 ], [ -81.996202149999988, 28.929395465000027 ], [ -81.996214495999936, 28.929431481000051 ], [ -81.996228040999938, 28.929467602000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996228040999938, 28.929467602000045 ], [ -81.996237510999947, 28.92948758700004 ], [ -81.996255361999943, 28.929538219000051 ], [ -81.996274907999975, 28.929605707000064 ], [ -81.996284017999983, 28.929648735000058 ], [ -81.996463328999937, 28.930538912000031 ], [ -81.996347413999956, 28.930556675000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998127083999975, 28.929467935000048 ], [ -81.997218068999985, 28.92946708900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997218068999985, 28.92946708900007 ], [ -81.997216052999988, 28.929597208000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997216052999988, 28.929597208000075 ], [ -81.997212215, 28.929614081000068 ], [ -81.997205184999984, 28.929630829000075 ], [ -81.997187278999945, 28.929653453000071 ], [ -81.997168737999971, 28.929667514000073 ], [ -81.997152753999956, 28.92967651400005 ], [ -81.997131653999986, 28.929687763000061 ], [ -81.997120784999936, 28.929694512000026 ], [ -81.997104799999988, 28.929714197000067 ], [ -81.997095209999941, 28.929733321000072 ], [ -81.997092012999985, 28.929753570000059 ], [ -81.997091372999989, 28.929769882000073 ], [ -81.997102565999967, 28.929829889000075 ], [ -81.997256944999947, 28.930588835000037 ], [ -81.997268453999936, 28.930613584000071 ], [ -81.997277403999988, 28.930625396000039 ], [ -81.997300419999988, 28.930642834000025 ], [ -81.997323437999967, 28.93065183300007 ], [ -81.997340059999942, 28.930656895000027 ], [ -81.997368193999989, 28.930657458000042 ], [ -81.997535707999987, 28.930657461000067 ], [ -81.997556806999967, 28.930654649000076 ], [ -81.997575987999937, 28.930649588000051 ], [ -81.997591331999956, 28.930640588000074 ], [ -81.997602839999956, 28.930632714000069 ], [ -81.997614349999935, 28.93061977800005 ], [ -81.997621383999956, 28.930609653000033 ], [ -81.997627137999984, 28.930599529000062 ], [ -81.997632892999945, 28.93058153000004 ], [ -81.997634811999944, 28.930564094000033 ], [ -81.997634174999973, 28.930440352000062 ], [ -81.997627141999942, 28.93041504100006 ], [ -81.997590698999943, 28.930347544000028 ], [ -81.997449865999954, 28.930082193000032 ], [ -81.99722436199994, 28.929655704000027 ], [ -81.997217969999951, 28.929636580000079 ], [ -81.997216052999988, 28.929597208000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997218068999985, 28.92946708900007 ], [ -81.996953917999974, 28.929468397000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996952016999956, 28.928711244000056 ], [ -81.996953917999974, 28.929468397000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996796630999938, 28.928070554000044 ], [ -81.99679662799997, 28.92817179900004 ], [ -81.996803658999966, 28.92819485900003 ], [ -81.996946627999989, 28.928533435000077 ], [ -81.996950942999945, 28.928547356000024 ], [ -81.996952016999956, 28.928711244000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996796630999938, 28.928070554000044 ], [ -81.996222493999937, 28.928071103000036 ], [ -81.996200116999944, 28.928069977000064 ], [ -81.996180736999975, 28.928064773000074 ], [ -81.996159838999972, 28.928054789000043 ], [ -81.996141936999948, 28.928040164000038 ], [ -81.996127231999935, 28.928018790000067 ], [ -81.996119559999954, 28.92800135400006 ], [ -81.99611764399998, 28.927982229000065 ], [ -81.99611828999997, 28.927815741000074 ], [ -81.996120846999986, 28.927801678000037 ], [ -81.996129158999963, 28.927785929000038 ], [ -81.996140028999946, 28.927770744000043 ], [ -81.996149619999983, 28.927761743000076 ], [ -81.996166884, 28.92774993300003 ], [ -81.996200128999988, 28.927738684000076 ], [ -81.996241046999955, 28.92773812400003 ], [ -81.996523, 28.927737006000029 ], [ -81.996551131, 28.927739255000063 ], [ -81.996567753999955, 28.927742069000033 ], [ -81.996604834999971, 28.927759507000076 ], [ -81.996655982999982, 28.927786506000075 ], [ -81.996673883999961, 28.927798319000033 ], [ -81.99668986599994, 28.927816318000055 ], [ -81.996783206999964, 28.927959748000035 ], [ -81.996790879999935, 28.927973811000072 ], [ -81.996795353999971, 28.927994621000039 ], [ -81.996797270999934, 28.928013745000044 ], [ -81.996796630999938, 28.928070554000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999892170999942, 28.926854383000034 ], [ -81.999743541999976, 28.927170511000043 ], [ -81.999569062999967, 28.927494863000049 ], [ -81.999347608999983, 28.927951192000023 ], [ -81.999296159999972, 28.92801382600004 ], [ -81.999182078, 28.928092118000052 ], [ -81.999144049999984, 28.928163699000038 ], [ -81.999119443999973, 28.928282255000056 ], [ -81.999130628999978, 28.928391864000048 ], [ -81.99918431499998, 28.928494762000071 ], [ -81.999231289999955, 28.928566343000057 ], [ -81.999271553999961, 28.928707268000039 ], [ -81.99927602799994, 28.928819114000078 ], [ -81.999251421999986, 28.928942144000075 ], [ -81.999202209999964, 28.929051752000078 ], [ -81.999146286999974, 28.929141229000038 ], [ -81.999056810999946, 28.929250837000041 ], [ -81.998899921999964, 28.929349787000035 ], [ -81.998807474999978, 28.929396451000059 ], [ -81.998660875999974, 28.929442464000033 ], [ -81.998548614999947, 28.929463038000051 ], [ -81.998445710999988, 28.929467152000029 ], [ -81.998127083999975, 28.929467935000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998833097999977, 28.926315363000072 ], [ -81.998242962999939, 28.92707774400003 ], [ -81.998216643999967, 28.927127607000045 ], [ -81.998180838999986, 28.927232788000026 ], [ -81.99815782099995, 28.927305346000026 ], [ -81.997836219999954, 28.927744626000049 ], [ -81.997524857999963, 28.927743496000062 ], [ -81.997505676999936, 28.927747433000036 ], [ -81.997485217999952, 28.927752776000034 ], [ -81.997339444999966, 28.927827019000063 ], [ -81.997049816999947, 28.927973817000066 ], [ -81.996876636999957, 28.928061094000043 ], [ -81.996863123999958, 28.928066057000024 ], [ -81.996849696999959, 28.928069432000029 ], [ -81.996831154999938, 28.928071119000037 ], [ -81.996796630999938, 28.928070554000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016345869999952, 28.941340245000049 ], [ -82.01727141899994, 28.941337057000055 ], [ -82.017464407999967, 28.941363204000027 ], [ -82.017709689999947, 28.94144413500004 ], [ -82.017908903999967, 28.941482732000054 ], [ -82.01969629599995, 28.941498072000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955755199999942, 28.948153130000037 ], [ -81.955765142999951, 28.948120492000044 ], [ -81.955772018999937, 28.948091103000024 ], [ -81.955775451999955, 28.948042550000025 ], [ -81.955770338999969, 28.947979288000056 ], [ -81.955761268999936, 28.947942008000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955761268999936, 28.947942008000041 ], [ -81.955731933999971, 28.947888510000041 ], [ -81.955709197999965, 28.947853532000067 ], [ -81.955679391, 28.947820122000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955510728999968, 28.948347355000067 ], [ -81.955572410999935, 28.948320375000037 ], [ -81.95562764899995, 28.948291022000035 ], [ -81.955667474999984, 28.948262793000026 ], [ -81.955699595999988, 28.948231174000057 ], [ -81.955731721999939, 28.948187130000065 ], [ -81.955755199999942, 28.948153130000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955275617999973, 28.948338005000039 ], [ -81.955310400999963, 28.948348529000043 ], [ -81.955347641999936, 28.948355319000029 ], [ -81.955383579999989, 28.948359511000035 ], [ -81.955425982999941, 28.948360993000051 ], [ -81.955469650999987, 28.948356489000048 ], [ -81.955510728999968, 28.948347355000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016323478999936, 28.956531353000059 ], [ -82.016323252999939, 28.956540876000076 ], [ -82.016320785999937, 28.957063123000069 ], [ -82.016315888999941, 28.958349689000045 ], [ -82.016311040999938, 28.95993211800004 ], [ -82.016311047999977, 28.95997694600004 ], [ -82.016313602999958, 28.960019533000036 ], [ -82.016319934999956, 28.960048032000032 ], [ -82.016326144999937, 28.960058158000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994327342999952, 28.951119369000025 ], [ -81.994236995999984, 28.951340285000072 ], [ -81.994146651999984, 28.951545814000042 ], [ -81.994081923999943, 28.951708422000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979435132999981, 28.948093523000068 ], [ -81.979542414999969, 28.948001339000029 ], [ -81.979929439999978, 28.947679922000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97182264099996, 28.951957097000047 ], [ -81.971456760999956, 28.951956989000053 ], [ -81.971102346999942, 28.95195691300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972926854999969, 28.943595920000064 ], [ -81.973691899999949, 28.942944363000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973691899999949, 28.942944363000038 ], [ -81.974207244999945, 28.942509471000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973571463999974, 28.934312047000049 ], [ -81.973911513999951, 28.934131983000043 ], [ -81.973927706999973, 28.934121095000023 ], [ -81.973942947999944, 28.93411272000003 ], [ -81.973959140999966, 28.934105182000053 ], [ -81.973976284999935, 28.934095132000039 ], [ -81.973991526999953, 28.934086758000035 ], [ -81.974006764999956, 28.934079220000058 ], [ -81.974022004999938, 28.934073358000035 ], [ -81.974033435999957, 28.934067495000079 ], [ -81.974049627999989, 28.93406079600004 ], [ -81.974065820999954, 28.934054934000073 ], [ -81.97408201199994, 28.934049910000056 ], [ -81.974096298999939, 28.934044886000038 ], [ -81.974115347999941, 28.934041539000077 ], [ -81.97413344399996, 28.93403819200006 ], [ -81.974313452999979, 28.934010577000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976746080999987, 28.935093504000065 ], [ -81.976565112999936, 28.935292935000064 ], [ -81.976279133999981, 28.935608299000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973571463999974, 28.934312047000049 ], [ -81.973597024999947, 28.934350860000052 ], [ -81.973621375999983, 28.934383925000077 ], [ -81.973633897999946, 28.93439984500003 ], [ -81.973647813999946, 28.934416990000045 ], [ -81.973670770999945, 28.934448830000065 ], [ -81.97369303399995, 28.934478220000074 ], [ -81.973709729999939, 28.93450148900007 ], [ -81.973720861999936, 28.934516795000036 ], [ -81.973737558999971, 28.934535777000065 ], [ -81.973760519999985, 28.934559659000058 ], [ -81.97378208899994, 28.934578642000076 ], [ -81.973802961999979, 28.934598849000054 ], [ -81.973826619999954, 28.934618445000069 ], [ -81.973848190999945, 28.934634366000068 ], [ -81.973875326999973, 28.934652739000057 ], [ -81.973903856999982, 28.934672947000024 ], [ -81.973931689999972, 28.934692544000029 ], [ -81.973959522999962, 28.934710916000029 ], [ -81.973980397999981, 28.934722552000039 ], [ -81.97400823299995, 28.934737250000069 ], [ -81.974037459999977, 28.934751337000023 ], [ -81.974072947999957, 28.934768486000053 ], [ -81.974114700999962, 28.934784411000066 ], [ -81.975542282999982, 28.935317205000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975542282999982, 28.935317205000047 ], [ -81.97620520299995, 28.935570024000071 ], [ -81.976279133999981, 28.935608299000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975542282999982, 28.935317205000047 ], [ -81.975503014999958, 28.935390392000045 ], [ -81.975479672999938, 28.935431440000059 ], [ -81.975465940999982, 28.935454379000078 ], [ -81.975452728999983, 28.935479697000062 ], [ -81.975440830999958, 28.935499126000025 ], [ -81.975430629999948, 28.935521545000029 ], [ -81.97541873199998, 28.935543962000054 ], [ -81.975402775999953, 28.935564242000055 ], [ -81.975383553999961, 28.935590802000036 ], [ -81.975367078999966, 28.935613740000065 ], [ -81.975347856999974, 28.935634263000054 ], [ -81.975330009999936, 28.935653579000075 ], [ -81.975308258999974, 28.935673978000068 ], [ -81.975290195999946, 28.935691001000066 ], [ -81.975269603999948, 28.935706694000032 ], [ -81.975249007999935, 28.935724825000079 ], [ -81.975228487999971, 28.935743385000023 ], [ -81.975203707999981, 28.935761015000026 ], [ -81.975178996999944, 28.935777915000074 ], [ -81.975154288999988, 28.935789984000053 ], [ -81.97511996999998, 28.935806882000065 ], [ -81.975096632999964, 28.935817745000065 ], [ -81.975073296999938, 28.935828608000065 ], [ -81.975048586999947, 28.93584188400007 ], [ -81.975021132999984, 28.935855161000063 ], [ -81.974997796999958, 28.935866023000074 ], [ -81.974955241999965, 28.935886542000048 ], [ -81.974922296999978, 28.935902232000046 ], [ -81.974892095999962, 28.935920338000074 ], [ -81.974852286999976, 28.935942063000027 ], [ -81.974819339999954, 28.935962585000027 ], [ -81.974775411999985, 28.935985517000063 ], [ -81.974735601999953, 28.936009658000046 ], [ -81.974697161999984, 28.936033798000039 ], [ -81.974658723999937, 28.936062769000046 ], [ -81.974625776999972, 28.936086912000064 ], [ -81.97459282799997, 28.936112261000062 ], [ -81.974566744999947, 28.936131576000037 ], [ -81.974538043999985, 28.936156476000065 ], [ -81.974504624999952, 28.936181565000027 ], [ -81.974471595999944, 28.936207342000046 ], [ -81.974439153999981, 28.936233463000065 ], [ -81.974410239999941, 28.936261947000048 ], [ -81.974378662999982, 28.936290920000033 ], [ -81.974351204999948, 28.93631868500006 ], [ -81.974321001999954, 28.93634645000003 ], [ -81.974294916999952, 28.936374216000047 ], [ -81.974261965999972, 28.936408017000076 ], [ -81.974234506999949, 28.936435783000036 ], [ -81.974200953999969, 28.936470948000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974200953999969, 28.936470948000078 ], [ -81.974130157, 28.936575823000055 ], [ -81.974112307999974, 28.936598761000027 ], [ -81.974087591999989, 28.936630149000052 ], [ -81.974064249999969, 28.93666395300005 ], [ -81.974045026999988, 28.936695342000064 ], [ -81.974019272999954, 28.936733874000026 ], [ -81.974003685999946, 28.936764324000023 ], [ -81.97398186099997, 28.936801582000044 ], [ -81.973964007999939, 28.93683780200007 ], [ -81.973947529999975, 28.936869192000074 ], [ -81.973931050999965, 28.936898166000049 ], [ -81.973911825999949, 28.936933178000061 ], [ -81.973898043999952, 28.936972914000023 ], [ -81.973892844999966, 28.936995753000076 ], [ -81.973889377999967, 28.937015548000034 ], [ -81.973885910999968, 28.93703077300006 ], [ -81.973884177999935, 28.937047523000047 ], [ -81.973882440999944, 28.937064273000033 ], [ -81.97387897599998, 28.937079499000049 ], [ -81.973878970999976, 28.937097771000026 ], [ -81.973878965999972, 28.937116044000049 ], [ -81.973877232999939, 28.937131270000066 ], [ -81.973875495999948, 28.937149542000043 ], [ -81.973875491999934, 28.937164769000049 ], [ -81.973875488999965, 28.937179997000044 ], [ -81.973873752999964, 28.937199790000079 ], [ -81.973877074999962, 28.937219303000063 ], [ -81.973879428999965, 28.937256714000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972655562999989, 28.938587871000038 ], [ -81.972439372999986, 28.937903195000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969094840999958, 28.939493120000066 ], [ -81.969141215999969, 28.939493130000074 ], [ -81.969193952999944, 28.939493481000056 ], [ -81.969242776999977, 28.939482417000079 ], [ -81.969313552999949, 28.939450128000033 ], [ -81.969398660999957, 28.939412325000035 ], [ -81.969437184999947, 28.939391847000024 ], [ -81.969458686999985, 28.939378456000043 ], [ -81.969481085999973, 28.939368217000037 ], [ -81.969502585999976, 28.939357978000032 ], [ -81.969519607999985, 28.939350891000061 ], [ -81.969537826999954, 28.939344647000041 ], [ -81.969555441999944, 28.93933829100007 ], [ -81.969569775999958, 28.939331992000064 ], [ -81.969584109999971, 28.939326479000044 ], [ -81.969594860999962, 28.939322541000024 ], [ -81.969603819999975, 28.939319391000026 ], [ -81.969614568999987, 28.939315454000052 ], [ -81.969625318999988, 28.939313881000032 ], [ -81.969635173999961, 28.939311520000047 ], [ -81.969645027999945, 28.939309158000071 ], [ -81.969656671999985, 28.939307584000062 ], [ -81.969668317999947, 28.93930758700003 ], [ -81.969682649999982, 28.939307590000055 ], [ -81.969696085999942, 28.939306806000047 ], [ -81.969705939999983, 28.939306808000026 ], [ -81.969722062999949, 28.939309175000062 ], [ -81.969738186999962, 28.939312330000064 ], [ -81.969750725999972, 28.939314697000043 ], [ -81.969763265999973, 28.939317064000079 ], [ -81.969777597999951, 28.93932179400008 ], [ -81.969791031999989, 28.939328889000024 ], [ -81.969800883999937, 28.939333618000035 ], [ -81.969812526999988, 28.939339137000047 ], [ -81.969819691999987, 28.939343867000048 ], [ -81.969826856999987, 28.939347808000036 ], [ -81.969834917999947, 28.939354902000048 ], [ -81.969842977999974, 28.939361206000058 ], [ -81.969855514999949, 28.939370665000069 ], [ -81.969866261999982, 28.939380912000047 ], [ -81.969874320999963, 28.939391156000056 ], [ -81.969883273999983, 28.939401403000033 ], [ -81.969891333999954, 28.939411648000032 ], [ -81.969928041999935, 28.939475481000045 ], [ -81.970105123999986, 28.939754654000069 ], [ -81.970153881999977, 28.939899295000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967715796999983, 28.940025778000063 ], [ -81.967921588999957, 28.939881778000029 ], [ -81.968499756999961, 28.939503940000066 ], [ -81.96855224799998, 28.939488070000039 ], [ -81.969094840999958, 28.939493120000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960439981999968, 28.930629977000024 ], [ -81.960687136, 28.930807750000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959887020999986, 28.930240001000072 ], [ -81.960439981999968, 28.930629977000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96988182399997, 28.909334022000053 ], [ -81.969909961999974, 28.909293564000052 ], [ -81.969938182999954, 28.909270406000076 ], [ -81.969960262999962, 28.909252912000056 ], [ -81.969991531999938, 28.909231391000048 ], [ -81.970021439999982, 28.909214654000039 ], [ -81.970052706, 28.909201504000066 ], [ -81.970173840999962, 28.90915198600004 ], [ -81.970285190999959, 28.909108723000031 ], [ -81.970373241999937, 28.909054061000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970373241999937, 28.909054061000063 ], [ -81.970274848999964, 28.909058597000069 ], [ -81.970199753999964, 28.909079086000077 ], [ -81.970145375999948, 28.909092743000031 ], [ -81.970093585999962, 28.909104124000066 ], [ -81.970041797999954, 28.909113225000056 ], [ -81.969979654999975, 28.909117768000044 ], [ -81.969922691999955, 28.909115477000057 ], [ -81.969852784999944, 28.909104070000069 ], [ -81.969785405999971, 28.90908642900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969772884999941, 28.910625679000077 ], [ -81.969769652999958, 28.91070454100003 ], [ -81.969801290999953, 28.910781902000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974379607999936, 28.904384726000046 ], [ -81.974320176999981, 28.904423702000031 ], [ -81.974274716999957, 28.904450358000076 ], [ -81.974229257, 28.90447086100005 ], [ -81.974180303999958, 28.904484184000069 ], [ -81.974126688999945, 28.904491353000026 ], [ -81.974073074999978, 28.904493394000042 ], [ -81.974013633999959, 28.904497485000036 ], [ -81.973885426999971, 28.904505664000055 ], [ -81.973768875999951, 28.904515897000067 ], [ -81.973636003999957, 28.904530230000034 ], [ -81.973514787999989, 28.904546615000072 ], [ -81.973390075999987, 28.90456402600006 ], [ -81.973266526999964, 28.904586564000056 ], [ -81.97314530999995, 28.904611154000065 ], [ -81.973022924999952, 28.904637794000053 ], [ -81.972909864999963, 28.904666487000043 ], [ -81.972789809999938, 28.904697232000046 ], [ -81.972674415999961, 28.904731051000056 ], [ -81.972548531999962, 28.904773075000037 ], [ -81.972434302999943, 28.904810998000073 ], [ -81.972318905999941, 28.904854048000061 ], [ -81.972204674999944, 28.904899150000062 ], [ -81.972090443999946, 28.904945277000024 ], [ -81.971983205999948, 28.904993457000046 ], [ -81.971872467999958, 28.905045738000069 ], [ -81.97175939899995, 28.905103147000034 ], [ -81.971653322999941, 28.905159531000038 ], [ -81.97155190899997, 28.905213865000064 ], [ -81.971435339999971, 28.905280504000075 ], [ -81.971339751999949, 28.905343043000073 ], [ -81.971238334999953, 28.905407633000038 ], [ -81.971139247999986, 28.905477351000059 ], [ -81.971037828999954, 28.90554809300005 ], [ -81.970928245999971, 28.905635245000042 ], [ -81.970775529999969, 28.90575930600005 ], [ -81.970675274999962, 28.905833125000072 ], [ -81.970575021999935, 28.905903869000042 ], [ -81.970479431999934, 28.90596640800004 ], [ -81.970446790999972, 28.90598691200006 ], [ -81.970373352999957, 28.906027919000053 ], [ -81.970288256999936, 28.906073026000058 ], [ -81.970181013999934, 28.906126333000032 ], [ -81.970065612999974, 28.90617861100003 ], [ -81.970006164999972, 28.906203212000037 ], [ -81.969935060999944, 28.906231913000056 ], [ -81.969826656999942, 28.90626880800005 ], [ -81.969708928999978, 28.906306728000061 ], [ -81.969593531999976, 28.906339521000064 ], [ -81.969457154999986, 28.906379487000038 ], [ -81.969332434999956, 28.90641740500007 ], [ -81.969278815999985, 28.906430726000053 ], [ -81.969212379999988, 28.906436864000057 ], [ -81.96915060699996, 28.906437876000041 ], [ -81.969099325999935, 28.906433761000073 ], [ -81.969017360999942, 28.906419923000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974479581999958, 28.904776 ], [ -81.974538095999947, 28.904907535000063 ], [ -81.97455404699997, 28.904957704000026 ], [ -81.974565429999984, 28.905037973000049 ], [ -81.974574535999977, 28.905104196000025 ], [ -81.974585917999946, 28.905186472000025 ], [ -81.974614403999965, 28.90526724700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980265146999955, 28.90313685600006 ], [ -81.980275791999986, 28.903126326000063 ], [ -81.980303662999972, 28.903091312000072 ], [ -81.980324202999952, 28.903052571000046 ], [ -81.980336782999984, 28.903011281000033 ], [ -81.980341025999962, 28.902968694000037 ], [ -81.980336798999986, 28.902926107000042 ], [ -81.980324682999935, 28.90288590800003 ], [ -81.980304582999963, 28.902848185000039 ], [ -81.980276706999973, 28.902813140000035 ], [ -81.980242338999972, 28.902782887000058 ], [ -81.980202523999935, 28.902758346000041 ], [ -81.980158470999982, 28.902740261000076 ], [ -81.980136739999978, 28.902734171000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979969946999972, 28.90320003800008 ], [ -81.98001388199998, 28.903210168000044 ], [ -81.980062276999945, 28.903213901000072 ], [ -81.980110672999956, 28.903210182000066 ], [ -81.980157599999984, 28.903199124000025 ], [ -81.980201633999968, 28.903181064000023 ], [ -81.980241433999936, 28.903156550000062 ], [ -81.980265146999955, 28.90313685600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979790774999969, 28.902921669000079 ], [ -81.97978950199996, 28.902927587000079 ], [ -81.979785269999979, 28.902970066000023 ], [ -81.979789484999969, 28.90301254700006 ], [ -81.979802019999966, 28.90305373800004 ], [ -81.979822491999983, 28.903092389000051 ], [ -81.979850279999937, 28.903127323000035 ], [ -81.979884541999979, 28.903157481000051 ], [ -81.979889103999938, 28.903160780000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980136739999978, 28.902734171000077 ], [ -81.980111595999972, 28.902729198000031 ], [ -81.980063321999978, 28.902725474000079 ], [ -81.980015046999938, 28.902729184000066 ], [ -81.97996823699998, 28.902740214000062 ], [ -81.979924313999959, 28.902758229000028 ], [ -81.979884613999957, 28.902782682000066 ], [ -81.979850341999963, 28.902812829000027 ], [ -81.979822945999956, 28.902847139000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979822945999956, 28.902847139000073 ], [ -81.979822539999986, 28.902847757000075 ], [ -81.979802050999979, 28.902886401000046 ], [ -81.979790774999969, 28.902921669000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979889103999938, 28.903160780000064 ], [ -81.979922932999955, 28.903181024000048 ], [ -81.979966955999942, 28.903199095000048 ], [ -81.979969946999972, 28.90320003800008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980893501999958, 28.904561259000047 ], [ -81.980789032999951, 28.904431375000058 ], [ -81.98066769199994, 28.904258102000028 ], [ -81.98053017999996, 28.904030238000075 ], [ -81.980443905999948, 28.903833236000025 ], [ -81.980395383999962, 28.903695572000061 ], [ -81.980268682999963, 28.903349043000048 ], [ -81.980256641999972, 28.903284292000023 ], [ -81.980247131999988, 28.90320663600005 ], [ -81.980265146999955, 28.90313685600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015236322999954, 28.881030620000047 ], [ -82.01532152599998, 28.881140563000031 ], [ -82.015366832999973, 28.881186197000034 ], [ -82.015432659999988, 28.881233738000049 ], [ -82.015487418999953, 28.881262034000031 ], [ -82.015555679999977, 28.881286156000044 ], [ -82.015611039999953, 28.881298511000068 ], [ -82.015685466999969, 28.881305869000073 ], [ -82.015842660999965, 28.881316554000023 ], [ -82.016125151999972, 28.881331144000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015236322999954, 28.881030620000047 ], [ -82.015258737999943, 28.881015503000071 ], [ -82.015289478999989, 28.880987119000054 ], [ -82.01531356199996, 28.880954126000063 ], [ -82.015330115999973, 28.88091772000007 ], [ -82.015338541999938, 28.880879214000061 ], [ -82.015339599999947, 28.880859985000029 ], [ -82.015340110999944, 28.880595809000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015340110999944, 28.880595809000056 ], [ -82.015494032999982, 28.880596040000057 ], [ -82.015580503999956, 28.88059598600006 ], [ -82.015624196999966, 28.88059376700005 ], [ -82.015743504999989, 28.880579845000057 ], [ -82.015934504999962, 28.88055687800005 ], [ -82.016124908999984, 28.880540780000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013049310999975, 28.881384380000043 ], [ -82.01287432099997, 28.881183653000051 ], [ -82.012826648999976, 28.881137720000027 ], [ -82.012800836999986, 28.881116923000036 ], [ -82.012646382999947, 28.880995170000062 ], [ -82.01228217299996, 28.880708068000047 ], [ -82.011819044999982, 28.880342987000063 ], [ -82.011501341999974, 28.880092541000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012471940999944, 28.88177328200004 ], [ -82.012323426999956, 28.881603891000054 ], [ -82.012274264999974, 28.881558536000057 ], [ -82.01200173999996, 28.881343559000072 ], [ -82.011650729999985, 28.881066860000033 ], [ -82.011405019999984, 28.880873167000061 ], [ -82.011255804999962, 28.880754717000059 ], [ -82.011194372999967, 28.880696105000027 ], [ -82.011157194999953, 28.880652821000069 ], [ -82.011132391999979, 28.880620609000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011501341999974, 28.880092541000067 ], [ -82.01144865599997, 28.880164701000069 ], [ -82.011393068999951, 28.880265694000059 ], [ -82.011336924999966, 28.88037207900004 ], [ -82.011279262999949, 28.880458524000062 ], [ -82.011213145999989, 28.880540145000055 ], [ -82.011132391999979, 28.880620609000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010018332999948, 28.879864256000076 ], [ -82.010062516999938, 28.879752072000031 ], [ -82.010105888999988, 28.879641924000055 ], [ -82.010113376999982, 28.879621822000047 ], [ -82.010125457999948, 28.879584555000065 ], [ -82.01013820999998, 28.879531331000067 ], [ -82.010146967999958, 28.879475283000033 ], [ -82.010149948999981, 28.879437726000049 ], [ -82.010150773999953, 28.879411273000073 ], [ -82.010149420999937, 28.879329207000069 ], [ -82.010140821999983, 28.878983098000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010018332999948, 28.879864256000076 ], [ -82.009885906999955, 28.879828273000044 ], [ -82.009799098999963, 28.879808792000063 ], [ -82.009710881, 28.879792221000059 ], [ -82.009629149999967, 28.879779743000029 ], [ -82.009534202999987, 28.879768518000049 ], [ -82.009474439999963, 28.879759860000036 ], [ -82.009446864999973, 28.879751543000054 ], [ -82.009416607999981, 28.879738132000057 ], [ -82.00939933899997, 28.87972826500004 ], [ -82.009377712999935, 28.879712425000037 ], [ -82.009360027999946, 28.879696261000049 ], [ -82.009342791999984, 28.879676269000072 ], [ -82.00932871599997, 28.879655182000079 ], [ -82.009316465999973, 28.879630337000037 ], [ -82.00930707599997, 28.879600008000068 ], [ -82.009303831999944, 28.879580051000062 ], [ -82.009303100999944, 28.879555004000053 ], [ -82.009305077999954, 28.879532913000048 ], [ -82.009355362999941, 28.879286921000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012032100999988, 28.879690334000031 ], [ -82.011650207999935, 28.87926832100004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015340110999944, 28.880595809000056 ], [ -82.015342354999973, 28.87943524800005 ], [ -82.015343390999988, 28.878900034000026 ], [ -82.015344102999961, 28.878531912000028 ], [ -82.015345293999985, 28.87791620400003 ], [ -82.015344229999982, 28.877896219000036 ], [ -82.015335792999963, 28.877857714000072 ], [ -82.015319228999942, 28.877821313000027 ], [ -82.015295136999953, 28.877788326000029 ], [ -82.015264387999935, 28.877759949000051 ], [ -82.01524866799997, 28.877748964000034 ], [ -82.015228094999941, 28.877737206000063 ], [ -82.015187564999962, 28.877720921000048 ], [ -82.015144267999972, 28.877711681000051 ], [ -82.015099764999945, 28.877709820000064 ], [ -82.015063514999952, 28.877713854000035 ], [ -82.014741285999946, 28.877772471000071 ], [ -82.014290823999943, 28.877854412000033 ], [ -82.013912605999963, 28.877923210000063 ], [ -82.013751852999974, 28.877955136000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013944540999944, 28.878569743000071 ], [ -82.014218834999951, 28.878520449000064 ], [ -82.014486386999977, 28.878471780000041 ], [ -82.014606156999946, 28.878449734000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014606156999946, 28.878449734000071 ], [ -82.014977660999989, 28.878381349000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014646766999988, 28.879613168000049 ], [ -82.014648576999946, 28.87868071500003 ], [ -82.014648448999935, 28.878577950000079 ], [ -82.014645795999968, 28.878561254000033 ], [ -82.014638950999938, 28.878542217000074 ], [ -82.014606156999946, 28.878449734000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013135447999957, 28.880539585000065 ], [ -82.012984028999938, 28.880404353000074 ], [ -82.012710574999971, 28.880187587000023 ], [ -82.012642774999961, 28.88013389200006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012642774999961, 28.88013389200006 ], [ -82.012344461999987, 28.879893260000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010327057999973, 28.882541398000058 ], [ -82.010490208999954, 28.88267071000007 ], [ -82.010761042999945, 28.882894211000064 ], [ -82.01102491599994, 28.883124071000054 ], [ -82.011041926999951, 28.883137718000057 ], [ -82.011081922999949, 28.883162361000075 ], [ -82.011126172, 28.883180518000074 ], [ -82.011173330999952, 28.88319163500006 ], [ -82.011175833999971, 28.883192013000041 ], [ -82.011178622999978, 28.883192406000035 ], [ -82.011221060999958, 28.883194296000056 ], [ -82.011263062999944, 28.883188628000028 ], [ -82.011302907999948, 28.883175636000033 ], [ -82.011338966999972, 28.883155851000026 ], [ -82.011369762999948, 28.883130082000037 ], [ -82.011375933999943, 28.883123450000028 ], [ -82.011645644999987, 28.882853562000037 ], [ -82.011970057999974, 28.882531632000052 ], [ -82.012085788999968, 28.882416348000049 ], [ -82.012113036999949, 28.882379567000044 ], [ -82.012153525999963, 28.882314114000053 ], [ -82.012186407999934, 28.882245436000062 ], [ -82.012211357999945, 28.882174220000024 ], [ -82.012228127999947, 28.882101170000055 ], [ -82.01223399099996, 28.882058693000033 ], [ -82.012236833999964, 28.88204868400004 ], [ -82.012257710999961, 28.881993321000039 ], [ -82.012286461999963, 28.881940762000056 ], [ -82.01232261399997, 28.881891869000071 ], [ -82.012365569999986, 28.88184744800003 ], [ -82.012414628999977, 28.881808226000032 ], [ -82.012468985999988, 28.881774847000031 ], [ -82.012471940999944, 28.88177328200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012471940999944, 28.88177328200004 ], [ -82.013049310999975, 28.881384380000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011784214999977, 28.875647152000056 ], [ -82.011900787999934, 28.87551091000006 ], [ -82.01202948599996, 28.87534329500005 ], [ -82.012100715999964, 28.875241321000033 ], [ -82.012202865999939, 28.87508082100004 ], [ -82.012318497999956, 28.874877135000077 ], [ -82.012461349999967, 28.874629484000025 ], [ -82.012541523999971, 28.874495815000046 ], [ -82.012698857999965, 28.874243394000075 ], [ -82.01269971499994, 28.874242007000078 ], [ -82.01272002099995, 28.874201248000077 ], [ -82.012732428999982, 28.87415810400006 ], [ -82.012736597999947, 28.874113751000039 ], [ -82.012733466999975, 28.874075339000058 ], [ -82.012725605999947, 28.874046326000041 ], [ -82.012708670999984, 28.874014116000069 ], [ -82.012684263999972, 28.87398586200004 ], [ -82.012653527999987, 28.873962887000062 ], [ -82.012644061999936, 28.873957597000071 ], [ -82.012369474999957, 28.873806838000064 ], [ -82.012205668999968, 28.873718738000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996489796999981, 28.871867406000035 ], [ -81.99619475999998, 28.87164867000007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995566265999969, 28.870837823000045 ], [ -81.995560853999962, 28.870826586000078 ], [ -81.995536490999939, 28.870788195000046 ], [ -81.995505108999964, 28.870753981000064 ], [ -81.995467609999935, 28.870724928000072 ], [ -81.995425071999989, 28.870701871000051 ], [ -81.995378718999973, 28.870685474000027 ], [ -81.995348818999958, 28.870678897000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995028547999937, 28.870968228000038 ], [ -81.995036650999964, 28.870992050000041 ], [ -81.99505693499998, 28.871031553000023 ], [ -81.995084511999949, 28.87106747200005 ], [ -81.995118588999958, 28.87109877100005 ], [ -81.995158185999969, 28.871124551000037 ], [ -81.995202161999941, 28.871144069000025 ], [ -81.99523684199994, 28.871154158000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99523684199994, 28.871154158000024 ], [ -81.995259053999973, 28.87115843600003 ], [ -81.995307408999963, 28.871162162000076 ], [ -81.995355765999989, 28.871158440000045 ], [ -81.99536950199996, 28.871155994000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99536950199996, 28.871155994000048 ], [ -81.995448919999944, 28.871173762000069 ], [ -81.995502920999968, 28.871193331000029 ], [ -81.995536376999951, 28.871207007000066 ], [ -81.995581782999977, 28.871232251000038 ], [ -81.995616857999948, 28.87126072500007 ], [ -81.995784793999974, 28.871394065000061 ], [ -81.995806074999962, 28.871411385000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99536950199996, 28.871155994000048 ], [ -81.995402650999949, 28.87114738300005 ], [ -81.995446643999969, 28.871129329000041 ], [ -81.995486406999987, 28.871104822000063 ], [ -81.995498317999989, 28.87109550200006 ], [ -81.995524944999943, 28.871063501000037 ], [ -81.995549645999972, 28.871022083000071 ], [ -81.995566475999965, 28.870977712000069 ], [ -81.995566880999945, 28.870976248000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995566880999945, 28.870976248000034 ], [ -81.995575001999953, 28.870931541000061 ], [ -81.995575003999988, 28.870884763000049 ], [ -81.995566480999969, 28.870838589000073 ], [ -81.995566265999969, 28.870837823000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99619475999998, 28.87164867000007 ], [ -81.996150309999962, 28.871550599000045 ], [ -81.996015300999943, 28.871431753000024 ], [ -81.99587235599995, 28.871315241000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995348818999958, 28.870678897000062 ], [ -81.995310823999944, 28.870674908000069 ], [ -81.995264354999961, 28.870676743000047 ], [ -81.995219004999967, 28.870685852000065 ], [ -81.995213771999943, 28.870687402000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995213771999943, 28.870687402000044 ], [ -81.995138494999935, 28.870662158000073 ], [ -81.995071579999944, 28.870642169000064 ], [ -81.995020860999944, 28.870617219000053 ], [ -81.994945124999958, 28.87056214200004 ], [ -81.994839753999941, 28.870480978000046 ], [ -81.994740970999942, 28.870399814000052 ], [ -81.99467840799997, 28.870341840000037 ], [ -81.994625722999956, 28.870295460000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995213771999943, 28.870687402000044 ], [ -81.995203344999936, 28.870690536000041 ], [ -81.995159930999989, 28.870708354000044 ], [ -81.995120690999954, 28.870732537000038 ], [ -81.995086818999937, 28.870762350000064 ], [ -81.99505934299998, 28.870796888000029 ], [ -81.99503909699996, 28.870835101000068 ], [ -81.995028593999962, 28.870867263000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995028593999962, 28.870867263000036 ], [ -81.995026695999968, 28.870875829000056 ], [ -81.995022520999953, 28.870917832000032 ], [ -81.995026692999943, 28.870959836000054 ], [ -81.995028547999937, 28.870968228000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994625722999956, 28.870295460000079 ], [ -81.994668523999962, 28.870428797000045 ], [ -81.99473766899996, 28.870530250000058 ], [ -81.994800233999968, 28.870591123000054 ], [ -81.994889138999952, 28.870649098000058 ], [ -81.994941825999945, 28.870692578000046 ], [ -81.994961645999979, 28.870716845000061 ], [ -81.994998684999985, 28.870782058000032 ], [ -81.995028593999962, 28.870867263000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994625722999956, 28.870295460000079 ], [ -81.994605965999938, 28.870269372000052 ], [ -81.994576334999977, 28.870176616000037 ], [ -81.994563167999956, 28.870075166000049 ], [ -81.994566465999981, 28.869988208000052 ], [ -81.994586227999946, 28.869880961000035 ], [ -81.994745729999977, 28.869487761000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959905256999946, 28.953163217000053 ], [ -81.959116263999988, 28.953802877000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019821500999967, 28.901849189000075 ], [ -82.018110967999974, 28.901848379000057 ], [ -82.017062695999982, 28.901822218000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020546189999948, 28.901849352000056 ], [ -82.020263332999946, 28.901849395000056 ], [ -82.019821500999967, 28.901849189000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973779504999982, 28.580293426000026 ], [ -81.97352217699995, 28.580350650000071 ], [ -81.973360819999982, 28.580386225000041 ], [ -81.973170649999986, 28.580421793000028 ], [ -81.972983361999979, 28.580452274000038 ], [ -81.972758617999943, 28.580487836000032 ], [ -81.972579974999974, 28.580515777000073 ], [ -81.972412858999974, 28.580536089000077 ], [ -81.97207777899996, 28.580577413000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97207777899996, 28.580577413000071 ], [ -81.971874054999944, 28.580591930000026 ], [ -81.971709821, 28.580607156000042 ], [ -81.971499489999985, 28.580617285000073 ], [ -81.971289155999955, 28.580627414000048 ], [ -81.971038486999987, 28.580637534000061 ], [ -81.970822393999981, 28.58064003000004 ], [ -81.970488171999989, 28.580639958000063 ], [ -81.967638629999954, 28.580667284000072 ], [ -81.965676508999934, 28.580676976000063 ], [ -81.963982341999952, 28.580691795000064 ], [ -81.961527529999955, 28.580708925000067 ], [ -81.959769972999936, 28.580723675000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97207777899996, 28.580577413000071 ], [ -81.972083678, 28.578858094000054 ], [ -81.972118500999954, 28.576733516000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.094046438999953, 28.658437549000041 ], [ -82.092920177999986, 28.65842676300008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981997098999955, 28.905974235000031 ], [ -81.981937775999938, 28.905891160000067 ], [ -81.98183800299995, 28.90574874400005 ], [ -81.981552178999948, 28.90530251000007 ], [ -81.981306789999962, 28.904986818000054 ], [ -81.981131507999976, 28.904799297000068 ], [ -81.980893501999958, 28.904561259000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981958995999946, 28.907556931000045 ], [ -81.982029694999937, 28.907550921000052 ], [ -81.982148291999977, 28.90749474900008 ], [ -81.982298531999959, 28.907419494000067 ], [ -81.982349309999961, 28.907410562000052 ], [ -81.982422265999958, 28.90739979600005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982302989999937, 28.907228358000054 ], [ -81.98227103499994, 28.90729284400004 ], [ -81.982233539999982, 28.907338209000045 ], [ -81.982200765999949, 28.907366328000023 ], [ -81.982155149999983, 28.907396423000023 ], [ -81.982063919999973, 28.907450591000043 ], [ -81.981981810999969, 28.907502754000063 ], [ -81.981958995999946, 28.907556931000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985004014999959, 28.909285458000056 ], [ -81.984944677999977, 28.909273585000051 ], [ -81.984793632999981, 28.909245088000034 ], [ -81.984653377999962, 28.909207098000024 ], [ -81.984515822999981, 28.90916436200007 ], [ -81.984378269, 28.909109759000046 ], [ -81.984235320999971, 28.909050407000052 ], [ -81.984084284999938, 28.908972068000026 ], [ -81.983933250999939, 28.908879489000071 ], [ -81.983771431999969, 28.90876554700003 ], [ -81.983648069999958, 28.908669743000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983648069999958, 28.908669743000075 ], [ -81.983472072999973, 28.908506814000077 ], [ -81.983312963999936, 28.90832404400004 ], [ -81.98318352299998, 28.908146025000065 ], [ -81.983081055999946, 28.907975130000068 ], [ -81.982957018999969, 28.907737777000079 ], [ -81.982873430999973, 28.907571630000064 ], [ -81.982827594999947, 28.907462449000036 ], [ -81.982816818999936, 28.907393619000061 ], [ -81.982840302999989, 28.907285160000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979572977999965, 28.901464287000067 ], [ -81.979562211999962, 28.901350363000063 ], [ -81.979566575999968, 28.901103532000036 ], [ -81.979568903999962, 28.900233928000034 ], [ -81.97957764399996, 28.899673813000049 ], [ -81.979590677999965, 28.899221924000074 ], [ -81.979595032999953, 28.899016865000078 ], [ -81.979595099999983, 28.898671302000025 ], [ -81.979588663999948, 28.898487126000077 ], [ -81.979582304999951, 28.897906123000041 ], [ -81.979588889999945, 28.89733271700004 ], [ -81.979588913999976, 28.897327326000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979450920999966, 28.897324769000079 ], [ -81.979443536999952, 28.897793156000034 ], [ -81.979445922999957, 28.89826197800005 ], [ -81.979438359999961, 28.898916146000033 ], [ -81.979438309999978, 28.899171272000046 ], [ -81.979435682999963, 28.899927929000057 ], [ -81.979430615999945, 28.900490514000069 ], [ -81.979428047999988, 28.900948432000064 ], [ -81.979423049, 28.901164307000045 ], [ -81.979430435999973, 28.901404171000024 ], [ -81.979455172999963, 28.901622231000033 ], [ -81.979492306999987, 28.901805404000072 ], [ -81.979566606999981, 28.902010389000054 ], [ -81.979643388999989, 28.90219356800003 ], [ -81.979749895999987, 28.902433446000032 ], [ -81.979829160999941, 28.902599180000038 ], [ -81.979846490999989, 28.902677683000036 ], [ -81.979848953999976, 28.902758365000068 ], [ -81.979822945999956, 28.902847139000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979375189999985, 28.894589781000036 ], [ -81.97938688399995, 28.894598084000052 ], [ -81.979427897999983, 28.894618029000071 ], [ -81.979472232999967, 28.894631444000026 ], [ -81.979518522999967, 28.894637983000052 ], [ -81.97952946099997, 28.894637984000042 ], [ -81.979565399999956, 28.894637302000035 ], [ -81.979624630999979, 28.894625977000032 ], [ -81.979673446999982, 28.894605389000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979295296999965, 28.894506281000076 ], [ -81.97930347099998, 28.894524790000048 ], [ -81.979316891999986, 28.894543050000038 ], [ -81.979331534999972, 28.894557014000043 ], [ -81.979348007999988, 28.894572949000064 ], [ -81.979375189999985, 28.894589781000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979673446999982, 28.894605389000048 ], [ -81.979712306999943, 28.894582850000063 ], [ -81.979740153999956, 28.89455749800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979740153999956, 28.89455749800004 ], [ -81.979764795999984, 28.894529156000033 ], [ -81.979781885999955, 28.894499086000053 ], [ -81.97979775999994, 28.894462571000076 ], [ -81.979805090999946, 28.894420685000057 ], [ -81.97980367699995, 28.894375397000033 ], [ -81.979793920999953, 28.894331002000058 ], [ -81.979781621999962, 28.894296664000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979697130999966, 28.894207761000075 ], [ -81.979654163999953, 28.894184904000042 ], [ -81.979610414999968, 28.894170458000076 ], [ -81.979564320999941, 28.89416288700005 ], [ -81.979496167999969, 28.894166273000053 ], [ -81.979439210999942, 28.894180585000072 ], [ -81.97939828799997, 28.894196726000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979781621999962, 28.894296664000024 ], [ -81.979760207999959, 28.894263988000034 ], [ -81.97973190099998, 28.894233793000069 ], [ -81.979697130999966, 28.894207761000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979324795999958, 28.894254439000065 ], [ -81.979310773999941, 28.894270108000057 ], [ -81.979288695999969, 28.894306545000063 ], [ -81.979274038999961, 28.894345733000023 ], [ -81.979268306999984, 28.894392500000038 ], [ -81.979271554999968, 28.894425437000052 ], [ -81.979281311999955, 28.894466968000074 ], [ -81.979295296999965, 28.894506281000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97939828799997, 28.894196726000075 ], [ -81.979369436999946, 28.894213333000039 ], [ -81.979346244999988, 28.894231587000036 ], [ -81.979324795999958, 28.894254439000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003406094999946, 28.887281739000059 ], [ -82.004064763999963, 28.887099283000055 ], [ -82.004246510999963, 28.887042821000023 ], [ -82.004380148999985, 28.887014589000046 ], [ -82.004476368999974, 28.887005177000049 ], [ -82.004589719999956, 28.886984531000053 ], [ -82.004705361999982, 28.886973110000042 ], [ -82.004835280999941, 28.886974537000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954155736999951, 28.949054684000032 ], [ -81.954196354999965, 28.94926386700007 ], [ -81.954547146999971, 28.949606841000048 ], [ -81.955078279999952, 28.950129214000071 ], [ -81.956777129999978, 28.951840351000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955089447999967, 28.946505909000052 ], [ -81.955098665999969, 28.946555509000063 ], [ -81.955122960999972, 28.946606295000038 ], [ -81.955144209999958, 28.946656674000053 ], [ -81.955160547999981, 28.94671136900007 ], [ -81.955168707999974, 28.94675886400006 ], [ -81.955173600999956, 28.946797724000078 ], [ -81.955176852999955, 28.946846658000027 ], [ -81.95517519699996, 28.946892710000043 ], [ -81.955170264999936, 28.94694308000004 ], [ -81.955165333999958, 28.946996329000058 ], [ -81.955158004999987, 28.947041859000024 ], [ -81.955148928999961, 28.947095628000056 ], [ -81.955137448999949, 28.947158947000048 ], [ -81.955129246999945, 28.947206438000023 ], [ -81.955122678999942, 28.947261125000068 ], [ -81.955121023999936, 28.947304299000052 ], [ -81.955121006999946, 28.94734459700004 ], [ -81.955124258999945, 28.947390652000024 ], [ -81.955130784999938, 28.947435269000039 ], [ -81.955145486999982, 28.947489963000066 ], [ -81.955165095999973, 28.947547537000048 ], [ -81.955188392999958, 28.947631572000034 ], [ -81.955193724999958, 28.947685752000041 ], [ -81.955185667999956, 28.947735216000069 ], [ -81.955145463999941, 28.947812937000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955424296, 28.947718828000063 ], [ -81.955376107999939, 28.947691525000039 ], [ -81.95533685099997, 28.947661290000042 ], [ -81.955300868999984, 28.947626737000064 ], [ -81.955251660999977, 28.947553356000071 ], [ -81.955226118999974, 28.947494318000054 ], [ -81.955204432999949, 28.947392118000039 ], [ -81.955197920999979, 28.947317278000071 ], [ -81.955201219999935, 28.947253954000075 ], [ -81.955206154999985, 28.947192071000075 ], [ -81.95521763499994, 28.947131630000058 ], [ -81.955237319999981, 28.947015062000048 ], [ -81.955252230999974, 28.946919078000064 ], [ -81.955256513999984, 28.946850550000079 ], [ -81.955252230999974, 28.946784877000027 ], [ -81.955245623999986, 28.946728667000059 ], [ -81.955232555999942, 28.946676852000053 ], [ -81.955206405999945, 28.946609201000058 ], [ -81.955172072999972, 28.94654730600007 ], [ -81.955138610999938, 28.946523247000073 ], [ -81.955089447999967, 28.946505909000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95560194799998, 28.887233982000055 ], [ -81.953487850999977, 28.887230363000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953519032999964, 28.887511131000053 ], [ -81.953519032999964, 28.887536786000055 ], [ -81.953524163999987, 28.889065867000056 ], [ -81.953526728999975, 28.890451276000078 ], [ -81.953521597999952, 28.891208120000044 ], [ -81.953526728999975, 28.89141593100004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953492052999934, 28.881828135000035 ], [ -81.953488840999967, 28.882082976000049 ], [ -81.953489197999943, 28.882202187000075 ], [ -81.953488484, 28.882336388000056 ], [ -81.953487412999948, 28.882652619000055 ], [ -81.953484703999948, 28.882884615000023 ], [ -81.953484614999979, 28.883084848000067 ], [ -81.95348447799995, 28.883392103000062 ], [ -81.953497222999943, 28.885477187000049 ], [ -81.953511108999976, 28.887210870000047 ], [ -81.953487850999977, 28.887230363000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953761331999942, 28.820593090000045 ], [ -81.954372447999958, 28.820754822000026 ], [ -81.955777875999956, 28.821089153000059 ], [ -81.956604737999953, 28.821274902000027 ], [ -81.957221004999951, 28.821417625000038 ], [ -81.957686532999958, 28.821521250000046 ], [ -81.95826733399997, 28.821654196000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962838444999988, 28.822391042000049 ], [ -81.962709918999963, 28.822372620000067 ], [ -81.962214090999964, 28.822295798000027 ], [ -81.961735198999975, 28.822214718000055 ], [ -81.961251469, 28.822127245000047 ], [ -81.96077983899994, 28.822035514000049 ], [ -81.960296116999984, 28.821930996000049 ], [ -81.959676956999942, 28.821796615000039 ], [ -81.958994919999952, 28.821638780000058 ], [ -81.958439362999968, 28.821512790000043 ], [ -81.958436912999957, 28.821512234000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953900239999939, 28.769888767000054 ], [ -81.954132954999977, 28.770106072000033 ], [ -81.954536975999986, 28.770490087000042 ], [ -81.955187610999985, 28.771114686000033 ], [ -81.955497197999989, 28.771392290000051 ], [ -81.955801537999946, 28.771669893000023 ], [ -81.95615311499995, 28.771966010000028 ], [ -81.956473210999945, 28.772229742000036 ], [ -81.956830053999965, 28.772498108000036 ], [ -81.957207892999975, 28.772766481000076 ], [ -81.957590985999957, 28.77303485300007 ], [ -81.957963591999942, 28.773275472000023 ], [ -81.958304716999976, 28.773483704000057 ], [ -81.958603860999972, 28.773659549000058 ], [ -81.959501306999982, 28.774163950000059 ], [ -81.961490416999936, 28.775279167000065 ], [ -81.965615721999939, 28.777597424000078 ], [ -81.966752314999951, 28.778231727000048 ], [ -81.968066847999978, 28.778976287000035 ], [ -81.969410536999987, 28.779721229000074 ], [ -81.971814523999967, 28.781067638000025 ], [ -81.972182385999986, 28.78127382200006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978356144999964, 28.783977992000075 ], [ -81.978188159999945, 28.783922465000046 ], [ -81.977444832999936, 28.783659640000053 ], [ -81.976827497999977, 28.783441234000065 ], [ -81.976475787999959, 28.783302422000077 ], [ -81.976097834999962, 28.783145104000027 ], [ -81.975767125999937, 28.783006295000064 ], [ -81.97533144099998, 28.782788840000023 ], [ -81.974869508999973, 28.782571377000068 ], [ -81.973609732999989, 28.781863507000025 ], [ -81.972481196, 28.781234276000077 ], [ -81.968969699999946, 28.779263249000053 ], [ -81.965038449999952, 28.777056146000064 ], [ -81.960451326999987, 28.774483359000044 ], [ -81.958887345999983, 28.773608759000069 ], [ -81.958588197999973, 28.773442167000042 ], [ -81.958320546999971, 28.773280208000074 ], [ -81.957963678999988, 28.773058095000067 ], [ -81.957606818999977, 28.772822106000035 ], [ -81.957276204999971, 28.772595375000037 ], [ -81.956929853999952, 28.772340888000031 ], [ -81.956599252, 28.77209103000007 ], [ -81.956384101999959, 28.771919834000073 ], [ -81.955768580999973, 28.77139171500005 ], [ -81.954967340999985, 28.77065095100005 ], [ -81.953890816999944, 28.769621240000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96780234299996, 28.711700188000066 ], [ -81.967329286999984, 28.711673335000057 ], [ -81.967181078999943, 28.711653700000056 ], [ -81.967055111999969, 28.711612288000026 ], [ -81.96693408699997, 28.71152733100007 ], [ -81.966868516999966, 28.711454544000048 ], [ -81.966817879999951, 28.711373606000052 ], [ -81.966797406999945, 28.711312816000031 ], [ -81.966765213999963, 28.711179038000068 ], [ -81.966755128999978, 28.710107390000076 ], [ -81.966751841999951, 28.709793795000053 ], [ -81.966719979999937, 28.709690419000026 ], [ -81.966680266999958, 28.709608673000048 ], [ -81.966615683999976, 28.709532800000034 ], [ -81.96653209699997, 28.709464896000043 ], [ -81.966440715999966, 28.709412615000076 ], [ -81.966292530999965, 28.709364660000062 ], [ -81.966161614999976, 28.709342851000031 ], [ -81.966077302999963, 28.709340269000052 ], [ -81.965997224999967, 28.709341076000044 ], [ -81.965874060999965, 28.709356312000068 ], [ -81.965827802999968, 28.709365640000044 ], [ -81.965749071999937, 28.709384123000063 ], [ -81.965600853999945, 28.709436356000026 ], [ -81.965432847999978, 28.70951253800007 ], [ -81.965254970999979, 28.709582172000069 ], [ -81.965126295999937, 28.709615550000024 ], [ -81.96502770099994, 28.709627856000054 ], [ -81.964696677999939, 28.709669146000067 ], [ -81.964464477999968, 28.709693038000069 ], [ -81.964326148999987, 28.70969735400007 ], [ -81.964195231999952, 28.709679895000079 ], [ -81.964064319999977, 28.709645028000068 ], [ -81.963958116999947, 28.709592729000065 ], [ -81.963856359999966, 28.709521402000064 ], [ -81.963725991, 28.709398844000077 ], [ -81.963632167999947, 28.709283395000057 ], [ -81.963553161999982, 28.709143998000059 ], [ -81.963508744999956, 28.709013330000062 ], [ -81.96348782299998, 28.708885984000062 ], [ -81.963486609999961, 28.708734560000039 ], [ -81.96350066399998, 28.708611086000076 ], [ -81.963540928999976, 28.708462325000028 ], [ -81.963611825999976, 28.708285383000032 ], [ -81.963662193999937, 28.708159683000076 ], [ -81.963685299999952, 28.708079756000075 ], [ -81.963729020999949, 28.707928517000028 ], [ -81.963761130999956, 28.70780473700006 ], [ -81.963800405999962, 28.707690703000026 ], [ -81.963870803999953, 28.707486308000057 ], [ -81.963919377999957, 28.707345277000059 ], [ -81.963981319999959, 28.707114205000039 ], [ -81.96403380299995, 28.706905431000052 ], [ -81.964075208999986, 28.706724666000071 ], [ -81.964080195999941, 28.706578748000027 ], [ -81.964062945999956, 28.706448088000059 ], [ -81.964028414999973, 28.706323937000036 ], [ -81.963976572999968, 28.706204147000051 ], [ -81.963899573999981, 28.706075544000043 ], [ -81.963830920999953, 28.705979806000073 ], [ -81.96373333799994, 28.705871687000069 ], [ -81.963679593999984, 28.70582212100004 ], [ -81.963575732999971, 28.705731366000066 ], [ -81.963460517999977, 28.705635613000027 ], [ -81.963312413999972, 28.705502856000066 ], [ -81.963216049999971, 28.705426491000026 ], [ -81.96312732399997, 28.70532397900007 ], [ -81.963034486999959, 28.705197989000055 ], [ -81.962956306999956, 28.705082162000053 ], [ -81.962893214999951, 28.704971737000051 ], [ -81.962824425999941, 28.704835894000041 ], [ -81.962755754999989, 28.704694500000073 ], [ -81.962645806999944, 28.704468118000079 ], [ -81.962569875999975, 28.704291986000044 ], [ -81.962475486999949, 28.704130521000025 ], [ -81.962383757999987, 28.704012238000075 ], [ -81.96228784799996, 28.703910517000054 ], [ -81.962182387999974, 28.703817057000037 ], [ -81.962089828999979, 28.703747190000058 ], [ -81.961971768999945, 28.703668702000073 ], [ -81.961850766999987, 28.703561949000061 ], [ -81.961710045999951, 28.703376806000051 ], [ -81.961623421999946, 28.703223752000042 ], [ -81.961584983999956, 28.703112070000032 ], [ -81.961522362999972, 28.702928911000072 ], [ -81.961487939999984, 28.702830123000069 ], [ -81.96138954099996, 28.702695001000052 ], [ -81.961283012999957, 28.702610113000048 ], [ -81.961144722999961, 28.702531675000046 ], [ -81.96102123199995, 28.702479382000035 ], [ -81.960897092999971, 28.702451382000049 ], [ -81.960663470999975, 28.702448516000061 ], [ -81.960325084999965, 28.702442423000036 ], [ -81.959954189999962, 28.702446399000053 ], [ -81.959628805999955, 28.702461345000074 ], [ -81.959447824999984, 28.702498519000073 ], [ -81.959285622999971, 28.702545818000033 ], [ -81.959114457999988, 28.70261326800005 ], [ -81.958854917999986, 28.702740067000036 ], [ -81.958609874, 28.702883263000047 ], [ -81.958335887999965, 28.703028503000041 ], [ -81.957969396999943, 28.703192240000078 ], [ -81.957842007999943, 28.703242809000074 ], [ -81.957730841999989, 28.70327762200003 ], [ -81.957614742999965, 28.703301538000062 ], [ -81.957503588999941, 28.703303680000033 ], [ -81.957393706999937, 28.703286878000029 ], [ -81.957293789999937, 28.703275242000075 ], [ -81.95716465299995, 28.703235783000025 ], [ -81.957005722999952, 28.703165659000035 ], [ -81.956846799999937, 28.703078016000063 ], [ -81.956707750999954, 28.70298161900007 ], [ -81.956499187999952, 28.702815126000075 ], [ -81.956275734999963, 28.702617971000052 ], [ -81.956052270999976, 28.702451472000064 ], [ -81.955828807999978, 28.702280594000058 ], [ -81.955525621999982, 28.702050843000052 ], [ -81.95520810499994, 28.70175921200007 ], [ -81.955009513999983, 28.701513887000033 ], [ -81.954863971999941, 28.701303651000046 ], [ -81.954652351999982, 28.701021159000049 ], [ -81.954342277999956, 28.700630283000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956585903999951, 28.678391901000055 ], [ -81.956226305999962, 28.678687550000063 ], [ -81.955887204999954, 28.678968796000049 ], [ -81.955572483999958, 28.679228557000044 ], [ -81.95535971299995, 28.679402381000045 ], [ -81.955104829999982, 28.679613313000061 ], [ -81.954923086999941, 28.67976565400005 ], [ -81.954672634999952, 28.679976587000056 ], [ -81.954559596999957, 28.680072288000076 ], [ -81.954427588999977, 28.680170298000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957167244999937, 28.653486281000028 ], [ -81.956357221999951, 28.653480349000063 ], [ -81.956239818999961, 28.653493987000047 ], [ -81.956120200999976, 28.653509580000048 ], [ -81.956011648999947, 28.65354276000005 ], [ -81.955931892999956, 28.653577904000031 ], [ -81.955874288999951, 28.653607193000028 ], [ -81.955814462999967, 28.653654067000048 ], [ -81.955759070999989, 28.653693126000064 ], [ -81.95570810199996, 28.653747817000067 ], [ -81.955659346999937, 28.653804463000029 ], [ -81.955606782999951, 28.653871037000044 ], [ -81.955550623999954, 28.653952153000034 ], [ -81.955495634999977, 28.654036364000035 ], [ -81.955445316999942, 28.654131922000033 ], [ -81.954629077999982, 28.655461784000067 ], [ -81.954541585999948, 28.655610921000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974779416999979, 28.635166630000072 ], [ -81.974669847999962, 28.635226924000051 ], [ -81.974616630999947, 28.635246246000065 ], [ -81.974572806999959, 28.635254522000025 ], [ -81.97452272299995, 28.635260036000034 ], [ -81.974460120999936, 28.635257262000039 ], [ -81.974319265999952, 28.635257236000029 ], [ -81.973417781999956, 28.635273632000064 ], [ -81.972356661999981, 28.635287227000049 ], [ -81.971549075999974, 28.635325721000072 ], [ -81.971289270999989, 28.635336714000061 ], [ -81.971120238999958, 28.635353246000079 ], [ -81.970869823999976, 28.635367001000077 ], [ -81.970678883999938, 28.635372482000037 ], [ -81.970478553999953, 28.635377961000074 ], [ -81.970250050999937, 28.635386197000059 ], [ -81.969971466999937, 28.635391659000049 ], [ -81.969470644999944, 28.635394308000059 ], [ -81.969041815999958, 28.635391450000043 ], [ -81.968634899999984, 28.635380309000027 ], [ -81.968112171999962, 28.635363618000042 ], [ -81.96759257399998, 28.635346926000068 ], [ -81.967038541999955, 28.635341269000037 ], [ -81.965329496999971, 28.635304943000051 ], [ -81.963648625999951, 28.635268602000053 ], [ -81.963110245999985, 28.635257410000065 ], [ -81.962847315999966, 28.635251815000061 ], [ -81.962759664999965, 28.635273884000071 ], [ -81.962706440999966, 28.635307007000051 ], [ -81.962665724999965, 28.635373273000027 ], [ -81.962599927999975, 28.635555518000047 ], [ -81.962537250999958, 28.635762615000033 ], [ -81.962474591999978, 28.635920006000049 ], [ -81.962402553999937, 28.636044256000048 ], [ -81.962281666999957, 28.63621045900004 ], [ -81.962164567999935, 28.636306537000053 ], [ -81.961976701999959, 28.636463892000052 ], [ -81.961801363999939, 28.636596398000052 ], [ -81.961635383999976, 28.636734558000057 ], [ -81.961503904999972, 28.636847615000079 ], [ -81.961343214999943, 28.637010541000052 ], [ -81.961248872999988, 28.63711537000006 ], [ -81.961115615999972, 28.637245166000071 ], [ -81.960999759999936, 28.637350071000071 ], [ -81.960908956999958, 28.637421845000063 ], [ -81.960777459999974, 28.637499131000027 ], [ -81.960595868999974, 28.637606779000066 ], [ -81.960298430999956, 28.637783431000059 ], [ -81.960032295999952, 28.637962853000033 ], [ -81.959891393999953, 28.63807603500004 ], [ -81.959728548999976, 28.638266533000035 ], [ -81.959656502999962, 28.638399066000034 ], [ -81.959612628999935, 28.638531607000061 ], [ -81.959587543999987, 28.63864482300005 ], [ -81.959571859999983, 28.638733187000071 ], [ -81.959549910999954, 28.638827073000073 ], [ -81.95951544199994, 28.63892095500006 ], [ -81.959462194999958, 28.639009310000063 ], [ -81.959377621999977, 28.639102279000042 ], [ -81.959293096999943, 28.639172189000078 ], [ -81.959180381999943, 28.639241194000078 ], [ -81.959064538999939, 28.639304675000062 ], [ -81.958908002999976, 28.639362620000043 ], [ -81.957978174999937, 28.639715813000066 ], [ -81.957821628999966, 28.63979861100006 ], [ -81.957652547999942, 28.639914543000032 ], [ -81.957524157999956, 28.640036010000074 ], [ -81.957408290999979, 28.640151959000036 ], [ -81.957320553999978, 28.640255410000066 ], [ -81.95689157399994, 28.640690297000049 ], [ -81.955633607999971, 28.641989982000041 ], [ -81.955397774999938, 28.642219709000074 ], [ -81.955244337999943, 28.642338404000043 ], [ -81.955134751999935, 28.642396361000067 ], [ -81.955006393999952, 28.642429457000048 ], [ -81.954948934999948, 28.642427774000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967870601999948, 28.621953622000035 ], [ -81.967645896999954, 28.621965867000029 ], [ -81.967378081999982, 28.621972162000077 ], [ -81.967096228999935, 28.621974198000032 ], [ -81.966857829999981, 28.621969379000063 ], [ -81.966659364999941, 28.621960354000066 ], [ -81.966474244999972, 28.621947817000034 ], [ -81.966261362999944, 28.621928452000077 ], [ -81.965502393999941, 28.621843467000076 ], [ -81.964618395999935, 28.621748115000059 ], [ -81.963941740999985, 28.621676247000039 ], [ -81.963830227999949, 28.621669657000041 ], [ -81.963728627999956, 28.621663070000068 ], [ -81.963612152999985, 28.621669599000029 ], [ -81.963470893999954, 28.621687053000073 ], [ -81.963374242999976, 28.621702334000076 ], [ -81.963257769999984, 28.621706675000041 ], [ -81.963148732999969, 28.621706646000064 ], [ -81.963014917999942, 28.621697862000076 ], [ -81.959727347999944, 28.620885948000023 ], [ -81.956283920999965, 28.620043962000068 ], [ -81.95464844299994, 28.619638859000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959769972999936, 28.580723675000058 ], [ -81.957755986999985, 28.580740866000042 ], [ -81.95651705399996, 28.580750647000059 ], [ -81.955499975999942, 28.580760492000024 ], [ -81.95526371699998, 28.58075787000007 ], [ -81.955033219999962, 28.580755251000028 ], [ -81.954834414999937, 28.58075264200005 ], [ -81.954661543999975, 28.580750040000055 ], [ -81.954529010999977, 28.580737279000061 ], [ -81.954405120999979, 28.580732151000063 ], [ -81.954301810999937, 28.580718431000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010134242999982, 28.888675546000059 ], [ -82.010225189999971, 28.888637149000033 ], [ -82.010792685999945, 28.888407328000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003314301999978, 28.890425504000063 ], [ -82.003215921999981, 28.890445878000037 ], [ -82.003140689999952, 28.89045606600007 ], [ -82.003029677999962, 28.890452121000067 ], [ -82.002802500999962, 28.890454791000025 ], [ -82.002560177999953, 28.890449464000028 ], [ -82.002363289999948, 28.890436138000041 ], [ -82.002099763, 28.890393491000054 ], [ -82.001887729999964, 28.890350842000032 ], [ -82.001781712999957, 28.890316190000078 ], [ -82.00172718999994, 28.890276204000031 ], [ -82.001699927999937, 28.890222889000029 ], [ -82.001684781999984, 28.890153579000071 ], [ -82.001681750999978, 28.890078938000045 ], [ -82.001693865999982, 28.88996964200004 ], [ -82.001730210999938, 28.889809697000032 ], [ -82.001772615999982, 28.889663078000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009201321999967, 28.88482616400006 ], [ -82.00907551399996, 28.884398985000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00879191599995, 28.883818400000052 ], [ -82.008554637999964, 28.883543393000025 ], [ -82.008328937999977, 28.883278569000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008919286999969, 28.882568923000065 ], [ -82.008328937999977, 28.883278569000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009997625999972, 28.885368290000031 ], [ -82.010133619999976, 28.885414117000039 ], [ -82.010569931999953, 28.885600210000064 ], [ -82.010760061999974, 28.885667174000048 ], [ -82.010919100999956, 28.885704244000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010843736999959, 28.885036865000075 ], [ -82.010835775999965, 28.884851751000042 ], [ -82.010792092999964, 28.884642008000071 ], [ -82.010751530999983, 28.884507661000043 ], [ -82.010703101, 28.884375349000038 ], [ -82.010646932999975, 28.884245426000064 ], [ -82.010583178, 28.884118246000071 ], [ -82.010512009999957, 28.883994148000056 ], [ -82.010433618999969, 28.883873469000036 ], [ -82.010348216999944, 28.883756535000032 ], [ -82.010256034999941, 28.88364365800004 ], [ -82.010243032999938, 28.883628688000044 ], [ -82.010240908999947, 28.883625050000035 ], [ -82.01023618399995, 28.883619110000041 ], [ -82.010230355999965, 28.883613984000078 ], [ -82.010227027999974, 28.88361173900006 ], [ -82.01022667899997, 28.883610857000065 ], [ -82.010223907999944, 28.883605626000076 ], [ -82.010220143999959, 28.883600897000065 ], [ -82.010215503999973, 28.883596815000033 ], [ -82.010215421999987, 28.883596753000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00907551399996, 28.884398985000075 ], [ -82.00903737699997, 28.884259275000034 ], [ -82.009000266999976, 28.88415707200005 ], [ -82.008933706999983, 28.884017018000065 ], [ -82.00885846999995, 28.883899884000073 ], [ -82.00879191599995, 28.883818400000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016729257999941, 28.887030463000031 ], [ -82.016737583999941, 28.886863945000073 ], [ -82.016779188999976, 28.886583787000063 ], [ -82.016781330999947, 28.886409988000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016781330999947, 28.886409988000025 ], [ -82.016785568999978, 28.88577017800003 ], [ -82.016787732999944, 28.885739619000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016781330999947, 28.886409988000025 ], [ -82.016855110999984, 28.88639278900007 ], [ -82.016899596999963, 28.886384827000029 ], [ -82.01696035599997, 28.886377179000078 ], [ -82.01706741299995, 28.886374620000026 ], [ -82.01796147999994, 28.886377049000032 ], [ -82.017995099999951, 28.88637497700006 ], [ -82.018037774999982, 28.886365858000033 ], [ -82.018077718999962, 28.886349799000072 ], [ -82.018113485999947, 28.886327374000075 ], [ -82.018143785999939, 28.886299398000062 ], [ -82.018167522999988, 28.886266882000029 ], [ -82.018183836999981, 28.88623099800003 ], [ -82.018192141999975, 28.886193046000074 ], [ -82.01819292, 28.886183484000071 ], [ -82.018192874999954, 28.885926287000075 ], [ -82.018191800999944, 28.885908915000073 ], [ -82.018183309999984, 28.885874984000054 ], [ -82.018166727999983, 28.885843454000053 ], [ -82.018142832999956, 28.885815798000067 ], [ -82.018132092999963, 28.885806609000042 ], [ -82.01806843199995, 28.885765872000036 ], [ -82.018031174999976, 28.885752828000079 ], [ -82.017984518999981, 28.885742965000077 ], [ -82.017542807999973, 28.885742347000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954228025999953, 28.927039065000031 ], [ -81.954246017999935, 28.927317845000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954225447999988, 28.926643865000074 ], [ -81.954227060999983, 28.926889499000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954225515999951, 28.925955725000051 ], [ -81.954225447999988, 28.926643865000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954225815999962, 28.925272083000038 ], [ -81.954225515999951, 28.925955725000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954225515999951, 28.925955725000051 ], [ -81.954247006999935, 28.925954688000047 ], [ -81.954277876999981, 28.925953667000044 ], [ -81.95430874799996, 28.925953678000042 ], [ -81.95433961699996, 28.92595471900006 ], [ -81.954370290999975, 28.925956792000079 ], [ -81.954400962999955, 28.92595955400003 ], [ -81.95443144099994, 28.925963689000071 ], [ -81.954461722999952, 28.925968169000043 ], [ -81.954504506999967, 28.925976777000074 ], [ -81.954534397999964, 28.925983663000068 ], [ -81.954563896999957, 28.925991579000026 ], [ -81.954593004999936, 28.926000528000031 ], [ -81.954612148999956, 28.926006722000068 ], [ -81.954640670999936, 28.926017045000037 ], [ -81.954668604999938, 28.926028399000074 ], [ -81.95471353399995, 28.926046979000034 ], [ -81.954833866999934, 28.926097210000023 ], [ -81.954954198999985, 28.926147098000058 ], [ -81.955007054999953, 28.926174157000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955714985999975, 28.928457361000028 ], [ -81.955750802999944, 28.927931812000054 ], [ -81.955745945, 28.927868212000078 ], [ -81.95574497399997, 28.927853773000038 ], [ -81.955740877999972, 28.927840020000076 ], [ -81.955733458999987, 28.927826954000068 ], [ -81.955723106999983, 28.927815950000024 ], [ -81.955710605999968, 28.927806664000059 ], [ -81.955608438999946, 28.92776365800006 ], [ -81.955488299999956, 28.927713427000072 ], [ -81.955367964999937, 28.927663540000026 ], [ -81.955247825999948, 28.927613309000037 ], [ -81.955127490999985, 28.927563422000048 ], [ -81.955007353999974, 28.92751319000007 ], [ -81.954887018999955, 28.927462959000025 ], [ -81.954766684999981, 28.927413071000046 ], [ -81.95471433199998, 28.92739105000004 ], [ -81.954686200999959, 28.92738004000006 ], [ -81.954646154999978, 28.927365932000043 ], [ -81.954617241999983, 28.927356640000028 ], [ -81.954587743, 28.927348724000069 ], [ -81.954558047999967, 28.927341494000075 ], [ -81.954528155999981, 28.92733495300007 ], [ -81.954498264999984, 28.92732978600003 ], [ -81.954467982999972, 28.927325306000057 ], [ -81.954437310999936, 28.927321514000027 ], [ -81.954406634999941, 28.927319098000055 ], [ -81.954375961999972, 28.927317368000047 ], [ -81.954345090999936, 28.927316670000039 ], [ -81.954314220999947, 28.927316660000031 ], [ -81.954283544999953, 28.927318024000044 ], [ -81.954246017999935, 28.927317845000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995768185999964, 28.954670792000059 ], [ -81.995977299999936, 28.95470208100005 ], [ -81.996123874999967, 28.954720993000024 ], [ -81.996282955999959, 28.954739905000054 ], [ -81.996470181999939, 28.954758817000027 ], [ -81.996500613999956, 28.954761742000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007341070999985, 28.958035967000058 ], [ -82.00730578699995, 28.958097735000024 ], [ -82.007275561999961, 28.95834473900004 ], [ -82.007267555999988, 28.958443402000057 ], [ -82.007259395999938, 28.958518512000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007259395999938, 28.958518512000069 ], [ -82.007250241999941, 28.958626570000035 ], [ -82.007246337999959, 28.958682262000025 ], [ -82.007236645999967, 28.958758404000037 ], [ -82.007230472999936, 28.958842074000074 ], [ -82.007223064999948, 28.958931177000068 ], [ -82.007219364999969, 28.958992028000068 ], [ -82.007211955999935, 28.959063745000037 ], [ -82.007203833999938, 28.959132328000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005317310999942, 28.950368873000059 ], [ -82.005387108999969, 28.950591377000023 ], [ -82.005401496, 28.950753774000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998875718999955, 28.942217318000075 ], [ -81.999198447999959, 28.942214204000038 ], [ -81.999419544999967, 28.942214205000028 ], [ -81.999469555999951, 28.942223467000076 ], [ -81.99950113999995, 28.942244304000042 ], [ -81.999527459999968, 28.942283664000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998537787999965, 28.942214199000034 ], [ -81.998875718999955, 28.942217318000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998502863999988, 28.942213247000041 ], [ -81.998201036999944, 28.942215019000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000883571999964, 28.940703362000079 ], [ -82.000881632999949, 28.942201419000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000889337, 28.939991028000065 ], [ -82.000883571999964, 28.940703362000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000885899999957, 28.93923582900004 ], [ -82.000889337, 28.939991028000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000891568999975, 28.938459143000046 ], [ -82.000885899999957, 28.93923582900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000898979999988, 28.937753943000075 ], [ -82.000891568999975, 28.938459143000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994545768999956, 28.928719690000037 ], [ -81.993943145999935, 28.928718400000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966381432999981, 28.879816939000079 ], [ -81.966409528999975, 28.879804517000025 ], [ -81.966448387999947, 28.87978058300007 ], [ -81.966481933999944, 28.879751073000079 ], [ -81.966509149, 28.87971688500005 ], [ -81.966525822999984, 28.879686809000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966214273999981, 28.879830815000048 ], [ -81.966226226999936, 28.879832917000044 ], [ -81.96627347499998, 28.87983656800003 ], [ -81.966320722999967, 28.879832941000075 ], [ -81.966366538999978, 28.879822147000027 ], [ -81.966381432999981, 28.879816939000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966075800999988, 28.879767898000068 ], [ -81.966089804999967, 28.879778998000063 ], [ -81.966128527999956, 28.879802878000078 ], [ -81.966171373999941, 28.879820475000031 ], [ -81.966214273999981, 28.879830815000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966208434999942, 28.879362522000065 ], [ -81.966171519999989, 28.879371793000075 ], [ -81.96612866199996, 28.879389369000023 ], [ -81.966089923999959, 28.879413230000068 ], [ -81.966056482999988, 28.879442647000076 ], [ -81.966029352999954, 28.879476729000032 ], [ -81.966009356999962, 28.879514439000047 ], [ -81.965997107999954, 28.879554634000044 ], [ -81.96599297299997, 28.879596089000074 ], [ -81.965997080999955, 28.879637547000073 ], [ -81.966009303999954, 28.879677747000073 ], [ -81.966029274999983, 28.879715469000075 ], [ -81.966056382999966, 28.879749565000054 ], [ -81.966075800999988, 28.879767898000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966459146999966, 28.879421963000027 ], [ -81.966448505999949, 28.879413674000034 ], [ -81.966409662999979, 28.879389720000063 ], [ -81.966366683999979, 28.879372068000066 ], [ -81.966320875999941, 28.879361252000024 ], [ -81.966274956999939, 28.879357605000052 ], [ -81.966264295999963, 28.87935741900003 ], [ -81.966217193999967, 28.879361033000066 ], [ -81.966208434999942, 28.879362522000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015076492999981, 28.874420647000079 ], [ -82.015088833999982, 28.874434079000025 ], [ -82.015122118999955, 28.874462085000062 ], [ -82.015160551999941, 28.874484409000047 ], [ -82.015202896999938, 28.874500333000071 ], [ -82.015247789999989, 28.874509348000061 ], [ -82.015293789999987, 28.874511161000044 ], [ -82.01529915499998, 28.874510899000029 ], [ -82.015315895999947, 28.874509012000033 ], [ -82.015327004999961, 28.874506722000035 ], [ -82.015640136999934, 28.874440916000026 ], [ -82.015820044999941, 28.874403101000041 ], [ -82.016019917999984, 28.874361313000065 ], [ -82.016229480999982, 28.874322410000048 ], [ -82.016367901999956, 28.874300748000053 ], [ -82.016453890999969, 28.874288955000054 ], [ -82.016650051999989, 28.874265308000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014961687999971, 28.873779385000034 ], [ -82.014995906999957, 28.874018144000047 ], [ -82.015042654999945, 28.874341126000047 ], [ -82.015045275999967, 28.874355005000041 ], [ -82.015058005999947, 28.874390702000028 ], [ -82.015076492999981, 28.874420647000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014929584999948, 28.873155045000033 ], [ -82.014931801999978, 28.873324483000033 ], [ -82.014933943999949, 28.873469213000078 ], [ -82.014942922999978, 28.873617160000038 ], [ -82.014961687999971, 28.873779385000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013843812999937, 28.87454209200007 ], [ -82.013874236999982, 28.874522238000054 ], [ -82.013900451999973, 28.874503979000053 ], [ -82.013926192999975, 28.87448362300006 ], [ -82.013942030999942, 28.874469610000062 ], [ -82.01395734099998, 28.874455479000062 ], [ -82.013978888999986, 28.874433040000042 ], [ -82.013994349999962, 28.874414755000032 ], [ -82.014006283999947, 28.874399896000057 ], [ -82.014072171999942, 28.87430702000006 ], [ -82.0141387, 28.874212508000028 ], [ -82.014195877999953, 28.874138649000031 ], [ -82.014238377999959, 28.874090489000025 ], [ -82.014296126999966, 28.87403247900005 ], [ -82.014361245999964, 28.87397543000003 ], [ -82.014430159999961, 28.873925856000028 ], [ -82.014497041999959, 28.873887275000072 ], [ -82.014610320999964, 28.873839254000075 ], [ -82.014708881, 28.873812325000074 ], [ -82.014810928999964, 28.873796540000058 ], [ -82.014961687999971, 28.873779385000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017504265999946, 28.873808430000054 ], [ -82.017578771, 28.873736936000057 ], [ -82.017658561999951, 28.873666505000074 ], [ -82.017729557999985, 28.873608894000029 ], [ -82.017848268999956, 28.873522777000062 ], [ -82.017972988999986, 28.873440960000039 ], [ -82.018118523999988, 28.873346120000065 ], [ -82.018272041999978, 28.87324651800003 ], [ -82.018277109999985, 28.873243402000071 ], [ -82.018335326999988, 28.873212413000033 ], [ -82.018397363999952, 28.873187827000038 ], [ -82.018462313999976, 28.873170002000052 ], [ -82.018529232999981, 28.873159197000064 ], [ -82.018597142999965, 28.873155573000076 ], [ -82.018601821999937, 28.873155590000067 ], [ -82.019528335999951, 28.873155711000038 ], [ -82.019793454999956, 28.873156644000062 ], [ -82.019822756999986, 28.873158792000027 ], [ -82.019861488999936, 28.873168253000074 ], [ -82.019897005999951, 28.873184821000052 ], [ -82.019920662999937, 28.873201570000049 ], [ -82.01993028399994, 28.873209994000035 ], [ -82.019960861999948, 28.87324331700006 ], [ -82.019984601999965, 28.873280710000074 ], [ -82.020000822999975, 28.873321096000041 ], [ -82.020007619999944, 28.873351691000039 ], [ -82.020006558999967, 28.873646139000073 ], [ -82.019993125999974, 28.873764756000071 ], [ -82.019974570999977, 28.873843001000068 ], [ -82.019940695999935, 28.873968644000058 ], [ -82.019928798999956, 28.874047166000025 ], [ -82.019928798999956, 28.874134017000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016650051999989, 28.874265308000076 ], [ -82.016798924999989, 28.874247952000076 ], [ -82.016910828999983, 28.874234590000071 ], [ -82.016995832999953, 28.874215605000074 ], [ -82.017073169999946, 28.874186952000059 ], [ -82.017139172999975, 28.87415203300003 ], [ -82.017198151999935, 28.874110294000047 ], [ -82.017274411999949, 28.874038538000036 ], [ -82.017346910999947, 28.873966125000038 ], [ -82.017504265999946, 28.873808430000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01565728099996, 28.873154287000034 ], [ -82.016737998999986, 28.873156837000067 ], [ -82.016751771999964, 28.873157065000044 ], [ -82.016803374999938, 28.873162573000059 ], [ -82.016846991999955, 28.87317325500004 ], [ -82.016872559999968, 28.873178546000076 ], [ -82.016923487999975, 28.873194638000029 ], [ -82.016971026999954, 28.873217386000078 ], [ -82.016974582999978, 28.873219438000035 ], [ -82.016987394999944, 28.87322488500007 ], [ -82.017032450999977, 28.873249180000073 ], [ -82.017072631999952, 28.873279379000053 ], [ -82.017086852999967, 28.873292689000039 ], [ -82.01710673599996, 28.873308580000071 ], [ -82.01712435099995, 28.873327750000044 ], [ -82.017131724999956, 28.873334209000063 ], [ -82.01715491899995, 28.873361058000057 ], [ -82.017157650999934, 28.873365196000066 ], [ -82.017175007999981, 28.873385794000058 ], [ -82.017181785999981, 28.873397702000034 ], [ -82.017182028999969, 28.873397965000038 ], [ -82.017198882999935, 28.87342235400007 ], [ -82.01720176699996, 28.873428764000039 ], [ -82.017210698999975, 28.873440233000053 ], [ -82.017216083999983, 28.873451263000049 ], [ -82.017216348999966, 28.873451541000065 ], [ -82.017222025999956, 28.873458674000062 ], [ -82.017226208999944, 28.873466568000026 ], [ -82.017226831999949, 28.873468156000058 ], [ -82.017310546999965, 28.873599729000034 ], [ -82.017344624999964, 28.873652783000068 ], [ -82.017366209999977, 28.873682089000056 ], [ -82.017400897999948, 28.873721244000023 ], [ -82.01744242999996, 28.873759695000047 ], [ -82.017504265999946, 28.873808430000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013325166999948, 28.874152199000036 ], [ -82.013452939, 28.87421487000006 ], [ -82.013568877999944, 28.874289891000046 ], [ -82.013679008999986, 28.874376107000046 ], [ -82.013768394999943, 28.874459597000055 ], [ -82.013785148999943, 28.874476651000066 ], [ -82.013805524999952, 28.874498809000045 ], [ -82.013843812999937, 28.87454209200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012953137999943, 28.874728076000054 ], [ -82.013067379999939, 28.874778518000028 ], [ -82.013132139999982, 28.874814346000051 ], [ -82.01320796899995, 28.874870006000037 ], [ -82.013277362999986, 28.874941358000058 ], [ -82.013413173999936, 28.875106821000031 ], [ -82.013603920999969, 28.875339223000026 ], [ -82.013684018999982, 28.875442551000049 ], [ -82.013831644999982, 28.875662972000043 ], [ -82.013870433999955, 28.87572721600003 ], [ -82.013918605999947, 28.875778541000045 ], [ -82.013981644999944, 28.875813289000064 ], [ -82.014038428999982, 28.875827237000067 ], [ -82.014112663999981, 28.87582651300005 ], [ -82.014188931999968, 28.875803412000039 ], [ -82.014432606999947, 28.875702306000051 ], [ -82.014550035999946, 28.875650703000076 ], [ -82.014664779999976, 28.875592461000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013751852999974, 28.877955136000026 ], [ -82.013603220999983, 28.877701085000069 ], [ -82.013526678999938, 28.877581744000054 ], [ -82.013493024999946, 28.877533647000064 ], [ -82.013446339999973, 28.877470082000059 ], [ -82.013402062999944, 28.877412121000077 ], [ -82.013365147999934, 28.877354385000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017542807999973, 28.885742347000075 ], [ -82.016787732999944, 28.885739619000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018668859999934, 28.884211114000038 ], [ -82.018677579999974, 28.884220058000039 ], [ -82.018720758999962, 28.884271089000038 ], [ -82.018756914999983, 28.884326186000067 ], [ -82.018785559999969, 28.884384607000072 ], [ -82.018806305999988, 28.884445558000039 ], [ -82.018818870999951, 28.884508217000075 ], [ -82.018823084999951, 28.884571736000055 ], [ -82.018819786999984, 28.884628117000034 ], [ -82.018822728999965, 28.884898047000036 ], [ -82.018822740999951, 28.884900138000035 ], [ -82.018818461999956, 28.884940850000078 ], [ -82.018805755999949, 28.884980179000024 ], [ -82.018785054999967, 28.885016782000037 ], [ -82.018757064999988, 28.885049414000036 ], [ -82.018722737999951, 28.885076964000064 ], [ -82.018683243999988, 28.885098494000033 ], [ -82.018639925999935, 28.885113269000044 ], [ -82.018634697999971, 28.885114527000042 ], [ -82.017565366999975, 28.88511206000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017569748999961, 28.884027309000032 ], [ -82.018203393999954, 28.884024679000049 ], [ -82.01823746599996, 28.884025597000061 ], [ -82.018309271999954, 28.884032974000036 ], [ -82.018379619999962, 28.884047638000027 ], [ -82.018447556999945, 28.884069390000036 ], [ -82.018512165999937, 28.884097937000035 ], [ -82.018572572999972, 28.884132893000071 ], [ -82.018627959999947, 28.884173784000041 ], [ -82.018668859999934, 28.884211114000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015833386999986, 28.887040455000033 ], [ -82.015846708999959, 28.886800668000035 ], [ -82.01584547899995, 28.886474806000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01584547899995, 28.886474806000024 ], [ -82.016345518999969, 28.886467656000036 ], [ -82.016473177999956, 28.88646607000004 ], [ -82.016540823999946, 28.886463813000034 ], [ -82.016604477999977, 28.886456165000027 ], [ -82.016728890999957, 28.886428138000042 ], [ -82.016781330999947, 28.886409988000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019258649999983, 28.888739146000034 ], [ -82.018996842999968, 28.887845839000079 ], [ -82.018979288999958, 28.887736573000041 ], [ -82.01897738599996, 28.887639491000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015565090999985, 28.889970285000061 ], [ -82.015967386999989, 28.889967170000034 ], [ -82.016667354999981, 28.889969023000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016667354999981, 28.889969023000049 ], [ -82.016952415999981, 28.889969776000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014194333999967, 28.889371379000067 ], [ -82.014377877999948, 28.889471542000024 ], [ -82.014533383999947, 28.889578565000079 ], [ -82.014677431999985, 28.88969172700007 ], [ -82.014744313999984, 28.889759626000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014194333999967, 28.889371379000067 ], [ -82.01503030799995, 28.888766457000031 ], [ -82.015134190999959, 28.888690937000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01732160499995, 28.890574203000028 ], [ -82.017321751999987, 28.889970445000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017321751999987, 28.889970445000074 ], [ -82.017321888999959, 28.889406717000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017321888999959, 28.889406717000043 ], [ -82.017321955999989, 28.889129705000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017321751999987, 28.889970445000074 ], [ -82.018571976999965, 28.889971290000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018571976999965, 28.889971290000062 ], [ -82.018915797999966, 28.889971521000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018571976999965, 28.889971290000062 ], [ -82.018604213999936, 28.889901193000071 ], [ -82.01861047999995, 28.889876598000058 ], [ -82.018612475999987, 28.889850233000061 ], [ -82.018615677999946, 28.88941901000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018615677999946, 28.88941901000004 ], [ -82.018617860999939, 28.889124679000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017321888999959, 28.889406717000043 ], [ -82.017382510999937, 28.889396129000033 ], [ -82.017421940999952, 28.889390622000064 ], [ -82.018445944999939, 28.889390715000047 ], [ -82.018499085999963, 28.889391366000041 ], [ -82.018615677999946, 28.88941901000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015134190999959, 28.888690937000035 ], [ -82.01516021599997, 28.88866667800005 ], [ -82.015176892999989, 28.888644209000063 ], [ -82.01519617699995, 28.888603463000038 ], [ -82.015207743999952, 28.888555926000038 ], [ -82.015209095999978, 28.888175535000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017507494999961, 28.887037458000066 ], [ -82.017506399999945, 28.886729929000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017507494999961, 28.887037458000066 ], [ -82.01752767499994, 28.887019821000024 ], [ -82.017560515999946, 28.887000219000072 ], [ -82.017597376999959, 28.886987287000068 ], [ -82.017636533999962, 28.886981633000062 ], [ -82.017667371999949, 28.886982443000079 ], [ -82.01803459599995, 28.886984295000047 ], [ -82.018116667999948, 28.886985070000037 ], [ -82.018134645999965, 28.886985336000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018134645999965, 28.886985336000066 ], [ -82.018257090999953, 28.886988067000061 ], [ -82.018503345999989, 28.88698613300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01930207099997, 28.890578460000029 ], [ -82.019795900999952, 28.890578388000051 ], [ -82.019903923999948, 28.890560264000044 ], [ -82.019950213999948, 28.890524041000049 ], [ -82.019986213999971, 28.890487818000054 ], [ -82.020017069999938, 28.890442542000073 ], [ -82.020027348999974, 28.890392742000074 ], [ -82.020027115999937, 28.88917947300007 ], [ -82.020027059999961, 28.888885210000069 ], [ -82.020016752999936, 28.888790142000062 ], [ -82.019980708999981, 28.88860453500007 ], [ -82.019954964999954, 28.888473253000029 ], [ -82.019934345999957, 28.88824690000007 ], [ -82.019873396999969, 28.887643535000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01732160499995, 28.890574203000028 ], [ -82.018499596999959, 28.89057404600004 ], [ -82.01930207099997, 28.890578460000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01930207099997, 28.890578460000029 ], [ -82.019305657999951, 28.889113935000069 ], [ -82.019293386999948, 28.888915217000033 ], [ -82.019258649999983, 28.888739146000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010792685999945, 28.888407328000028 ], [ -82.011234423999952, 28.888226542000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008328937999977, 28.883278569000026 ], [ -82.008080614999983, 28.88357525300006 ], [ -82.007863506999968, 28.883796118000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007863506999968, 28.883796118000078 ], [ -82.00777272299996, 28.883883991000062 ], [ -82.007716199999948, 28.883937112000069 ], [ -82.007640858999935, 28.884006488000068 ], [ -82.007502453999962, 28.884127812000031 ], [ -82.007418898999958, 28.884198123000033 ], [ -82.007312743999989, 28.884283237000034 ], [ -82.007268073999967, 28.884317467000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00824281499996, 28.885393836000048 ], [ -82.008600122999951, 28.885439690000055 ], [ -82.008741900999951, 28.885447320000026 ], [ -82.008857637999938, 28.885447313000043 ], [ -82.008932865999952, 28.885447308000039 ], [ -82.009065960999976, 28.885439660000031 ], [ -82.009187482999948, 28.885429465000072 ], [ -82.009335042999965, 28.885403990000043 ], [ -82.00945367099996, 28.885383610000076 ], [ -82.009595444999945, 28.885360681000066 ], [ -82.009702498999957, 28.885347941000077 ], [ -82.009800872999961, 28.885342840000078 ], [ -82.009878994999951, 28.885347928000044 ], [ -82.009997625999972, 28.885368290000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00824281499996, 28.885393836000048 ], [ -82.008310748999975, 28.884986429000037 ], [ -82.008348345999934, 28.884782706000067 ], [ -82.00835830699998, 28.884735083000066 ], [ -82.008366696999985, 28.884661236000056 ], [ -82.008366690999935, 28.884587019000037 ], [ -82.008358288999943, 28.884513172000027 ], [ -82.008341574999974, 28.884440428000062 ], [ -82.008316713999989, 28.884369509000067 ], [ -82.008283953999978, 28.884301123000057 ], [ -82.008243619999973, 28.884235947000036 ], [ -82.008196111999951, 28.884174629000029 ], [ -82.008141903999956, 28.884117779000064 ], [ -82.008131290999984, 28.884107895000056 ], [ -82.007863506999968, 28.883796118000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01612128499994, 28.893806836000067 ], [ -82.015883808999945, 28.893938478000052 ], [ -82.015821544999937, 28.893962326000064 ], [ -82.015768849999972, 28.893981745000076 ], [ -82.015690419999942, 28.89400224700006 ], [ -82.015625469999975, 28.894014119000076 ], [ -82.015569095999979, 28.894020595000029 ], [ -82.015482084999974, 28.894024920000049 ], [ -82.015141390999986, 28.894024959000035 ], [ -82.013856706999945, 28.894021322000071 ], [ -82.012255364999987, 28.894025312000053 ], [ -82.011876270999949, 28.894021511000062 ], [ -82.011784764999959, 28.894013849000032 ], [ -82.011708508999959, 28.893998518000046 ], [ -82.011597585999937, 28.893963662000033 ], [ -82.011430815999972, 28.893870365000055 ], [ -82.011260127999947, 28.893755114000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015209095999978, 28.888175535000073 ], [ -82.015207649999979, 28.887914206000062 ], [ -82.015207603999954, 28.887591648000068 ], [ -82.015199874999951, 28.887510161000023 ], [ -82.015172854999946, 28.887404908000065 ], [ -82.015114966999988, 28.887275892000048 ], [ -82.015080228999977, 28.88715705900006 ], [ -82.015053200999944, 28.887000876000059 ], [ -82.01504831799997, 28.886930822000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01504831799997, 28.886930822000068 ], [ -82.015060880999954, 28.886749620000046 ], [ -82.015087818999973, 28.886618422000026 ], [ -82.015106575999937, 28.88658412500007 ], [ -82.015123891999963, 28.886561260000065 ], [ -82.015154194, 28.886533313000029 ], [ -82.015181611999935, 28.886516798000059 ], [ -82.015209030999983, 28.886500283000032 ], [ -82.015231902999972, 28.88649325800003 ], [ -82.015259540999978, 28.886486305000062 ], [ -82.015289847999952, 28.886482492000027 ], [ -82.01563566599998, 28.886474531000033 ], [ -82.01584547899995, 28.886474806000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013084611999943, 28.88341471800004 ], [ -82.012815601999989, 28.88325029300006 ], [ -82.012578788999974, 28.883109637000075 ], [ -82.012562884999966, 28.883104230000072 ], [ -82.01251855199996, 28.883094768000035 ], [ -82.012472984999988, 28.883092863000059 ], [ -82.012427831999958, 28.88309858100007 ], [ -82.012384724999947, 28.883111717000077 ], [ -82.01234521899994, 28.883131796000043 ], [ -82.012315356999977, 28.883153950000064 ], [ -82.012131859999954, 28.883333721000042 ], [ -82.012122774999966, 28.883345717000054 ], [ -82.01210277499996, 28.883381077000024 ], [ -82.012090496999974, 28.883419070000059 ], [ -82.012086360999945, 28.883458400000052 ], [ -82.012090505999936, 28.883497731000034 ], [ -82.012102791999951, 28.883535722000033 ], [ -82.012111165999954, 28.88355255700003 ], [ -82.012318413999935, 28.883971968000026 ], [ -82.012445724999964, 28.884237683000038 ], [ -82.012453858999947, 28.884249631000046 ], [ -82.012497267999947, 28.884304717000077 ], [ -82.012547296999969, 28.884355266000057 ], [ -82.012603341999977, 28.884400664000054 ], [ -82.012608543999988, 28.884404396000036 ], [ -82.012679589999948, 28.884451282000043 ], [ -82.012862753999968, 28.884559054000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012480962999973, 28.885096200000078 ], [ -82.012862753999968, 28.884559054000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96065731799996, 28.938173473000063 ], [ -81.960610075999966, 28.938210949000052 ], [ -81.960467588999961, 28.938312665000069 ], [ -81.960297540999989, 28.938433623000037 ], [ -81.960142154999971, 28.938544618000037 ], [ -81.960058486999969, 28.938633974000027 ], [ -81.960016497999959, 28.938708408000025 ], [ -81.95999237999996, 28.938787623000053 ], [ -81.959970996999971, 28.939111439000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959970996999971, 28.939111439000044 ], [ -81.959924923999949, 28.939809450000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959073412999942, 28.937550302000034 ], [ -81.95955547799997, 28.937449135000065 ], [ -81.960190709999949, 28.937317370000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954375584, 28.934605634000036 ], [ -81.954374825999935, 28.934727337000027 ], [ -81.954375016999961, 28.934741432000067 ], [ -81.954375399999947, 28.93475552700005 ], [ -81.954376175999982, 28.934769622000033 ], [ -81.95437734099994, 28.934783717000073 ], [ -81.95437850899998, 28.934797468000056 ], [ -81.954380064999953, 28.934811564000029 ], [ -81.954382792999979, 28.934830816000044 ], [ -81.95438493599994, 28.934844568000074 ], [ -81.954387469999972, 28.934858320000046 ], [ -81.954390393999972, 28.934872416000076 ], [ -81.954393318999962, 28.934886168000048 ], [ -81.954396829999951, 28.934899920000078 ], [ -81.954400341999985, 28.93491332800005 ], [ -81.954404243999988, 28.93492708000008 ], [ -81.954408340999976, 28.934940833000041 ], [ -81.954412828999978, 28.934954241000071 ], [ -81.954417512999953, 28.934967650000033 ], [ -81.954422586999954, 28.934981060000041 ], [ -81.954427663, 28.93499412500006 ], [ -81.954433127999948, 28.935007533000032 ], [ -81.954438983999978, 28.93502060000003 ], [ -81.954445035999981, 28.935033227000076 ], [ -81.954458210999974, 28.935049168000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006525364999959, 28.891470566000066 ], [ -82.007188462999977, 28.891569384000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006163083999979, 28.887111241000071 ], [ -82.006210113999941, 28.886971165000034 ], [ -82.006196399999965, 28.885591609000073 ], [ -82.006196386999989, 28.885345689000076 ], [ -82.006155485999955, 28.885177744000032 ], [ -82.006083671999988, 28.885043417000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005496089999951, 28.887022067000032 ], [ -82.005508099999986, 28.886113472000034 ], [ -82.005508085999963, 28.885837561000073 ], [ -82.005480801999965, 28.885405701000025 ], [ -82.005466315999968, 28.885326976000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979883210999958, 28.904924750000077 ], [ -81.979731354999956, 28.904734890000043 ], [ -81.979661916999987, 28.904640423000046 ], [ -81.979592479999951, 28.904538549000051 ], [ -81.979525146999947, 28.904438527000025 ], [ -81.979440982999961, 28.904307016000075 ], [ -81.979431894999948, 28.904294269000047 ], [ -81.979392314999984, 28.904247585000064 ], [ -81.979346275999944, 28.90420573800003 ], [ -81.979304198999955, 28.904175498000029 ], [ -81.979285577999974, 28.90416255100007 ], [ -81.979229610999937, 28.904129905000048 ], [ -81.979169507999984, 28.904103558000031 ], [ -81.979106181999953, 28.904083911000043 ], [ -81.979040592999979, 28.90407126100007 ], [ -81.978973733999965, 28.904065798000033 ], [ -81.978929576999974, 28.904066168000043 ], [ -81.978868537999972, 28.904071714000054 ], [ -81.97876750599994, 28.904093923000062 ], [ -81.978681205999976, 28.904127247000076 ], [ -81.978599110999937, 28.904171684000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978599110999937, 28.904171684000062 ], [ -81.978335989999948, 28.904301288000056 ], [ -81.978150753999955, 28.904386454000075 ], [ -81.977982358999952, 28.904456805000052 ], [ -81.977799230999949, 28.904530857000054 ], [ -81.977616101999956, 28.904601205000063 ], [ -81.977403505999973, 28.904678957000044 ], [ -81.977233006999938, 28.904732639000031 ], [ -81.976986733999979, 28.904808532000061 ], [ -81.976725727999963, 28.904882570000041 ], [ -81.976609959999962, 28.904908479000028 ], [ -81.976572068999985, 28.904932550000069 ], [ -81.976508913999965, 28.904986249000046 ], [ -81.976466810999966, 28.905017727000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013751852999974, 28.877955136000026 ], [ -82.013677805999976, 28.877980044000026 ], [ -82.013607936999961, 28.878013002000046 ], [ -82.013543369, 28.878053481000052 ], [ -82.013440935999938, 28.878135272000065 ], [ -82.013339739999935, 28.878214994000075 ], [ -82.013276012999938, 28.878263704000062 ], [ -82.013259028999983, 28.878277893000075 ], [ -82.013231492999978, 28.878308720000064 ], [ -82.013211082999987, 28.878343576000077 ], [ -82.013198535999948, 28.87838120300006 ], [ -82.013194305999946, 28.878420240000025 ], [ -82.013197127999945, 28.878452135000032 ], [ -82.013208113999951, 28.878527414000075 ], [ -82.013215628999944, 28.878637251000043 ], [ -82.013215409999987, 28.878939575000061 ], [ -82.013214350999988, 28.878958805000025 ], [ -82.013205923999976, 28.878997311000035 ], [ -82.013189369999964, 28.879033718000073 ], [ -82.013165287999982, 28.879066708000039 ], [ -82.013134544999957, 28.879095092000057 ], [ -82.013098256999967, 28.879117842000028 ], [ -82.013063998999939, 28.879132139000035 ], [ -82.01295479199996, 28.879170736000049 ], [ -82.012876548999941, 28.879201206000062 ], [ -82.012723260999962, 28.879268116000048 ], [ -82.012614122999935, 28.879319670000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012614122999935, 28.879319670000029 ], [ -82.012502307999966, 28.879382964000058 ], [ -82.012399122999966, 28.879445248000025 ], [ -82.012244334999934, 28.87954737900003 ], [ -82.012032100999988, 28.879690334000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012614122999935, 28.879319670000029 ], [ -82.01255189799997, 28.879224730000033 ], [ -82.012527882999962, 28.879176723000057 ], [ -82.01250165, 28.879098379000027 ], [ -82.012494163999975, 28.879054997000026 ], [ -82.012490744, 28.879009635000045 ], [ -82.012490437999986, 28.878964255000028 ], [ -82.012490620999984, 28.878870647000042 ], [ -82.012489390999974, 28.878822717000048 ], [ -82.01248327199994, 28.878777508000042 ], [ -82.012468340999988, 28.878718415000037 ], [ -82.01245440799994, 28.878681715000027 ], [ -82.012417218999985, 28.87861169100006 ], [ -82.012268166999945, 28.878409951000037 ], [ -82.012132373999975, 28.878224686000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012132373999975, 28.878224686000067 ], [ -82.012265556999978, 28.878145636000056 ], [ -82.012454222999963, 28.878025864000051 ], [ -82.012594418999981, 28.877931210000042 ], [ -82.01284091499997, 28.87775098700007 ], [ -82.013010945999952, 28.877615968000043 ], [ -82.013096761999975, 28.877544178000051 ], [ -82.013214841999968, 28.877441627000053 ], [ -82.013263041999949, 28.877405402000079 ], [ -82.013301072, 28.877381679000052 ], [ -82.013324309999973, 28.877369470000076 ], [ -82.013365147999934, 28.877354385000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011512655, 28.878542331000062 ], [ -82.011616352999965, 28.87849533800005 ], [ -82.011845114999971, 28.878382290000047 ], [ -82.012050848999934, 28.878271383000026 ], [ -82.012132373999975, 28.878224686000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011038333999977, 28.878859139000042 ], [ -82.011074163999979, 28.878805665000073 ], [ -82.011119405999978, 28.878754367000056 ], [ -82.011177126999939, 28.878704565000078 ], [ -82.011230718999968, 28.878669509000076 ], [ -82.011305577999963, 28.878632689000028 ], [ -82.011512655, 28.878542331000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011132391999979, 28.880620609000061 ], [ -82.011063308999951, 28.880535296000062 ], [ -82.010988108999982, 28.880452065000043 ], [ -82.010877960999949, 28.880345133000048 ], [ -82.010769545999949, 28.880253760000073 ], [ -82.010684323999953, 28.880189684000072 ], [ -82.010634858999936, 28.880155649000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010634858999936, 28.880155649000073 ], [ -82.010499417999938, 28.880071690000079 ], [ -82.010418153999979, 28.880027578000067 ], [ -82.010340372999963, 28.87998903600004 ], [ -82.010250649999989, 28.879948700000057 ], [ -82.010123549999946, 28.879899418000036 ], [ -82.010018332999948, 28.879864256000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011038333999977, 28.878859139000042 ], [ -82.010961470999973, 28.878823622000027 ], [ -82.010869807999939, 28.878772152000067 ], [ -82.01082467599997, 28.87872866500004 ], [ -82.010788844999979, 28.878671735000069 ], [ -82.010765847999949, 28.878597054000068 ], [ -82.010671295999941, 28.878162264000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010671295999941, 28.878162264000025 ], [ -82.010569081999961, 28.877692234000051 ], [ -82.010545167999965, 28.877580010000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010545167999965, 28.877580010000031 ], [ -82.010519552999938, 28.877454368000031 ], [ -82.010478722999949, 28.877240368000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009102523999957, 28.878730414000074 ], [ -82.008916084999953, 28.878235217000054 ], [ -82.008875907999936, 28.87814645900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008875907999936, 28.87814645900005 ], [ -82.008746630999951, 28.877860860000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011512655, 28.878542331000062 ], [ -82.011450448999938, 28.878393912000035 ], [ -82.011387036999963, 28.878192109000054 ], [ -82.01132408899997, 28.877909063000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01132408899997, 28.877909063000061 ], [ -82.011474479999947, 28.877833990000056 ], [ -82.011681529999976, 28.877721966000024 ], [ -82.011981839999976, 28.87754009300005 ], [ -82.012174705999939, 28.877409923000073 ], [ -82.012452174999964, 28.87720183600004 ], [ -82.012480508999943, 28.877179071000057 ], [ -82.012524921999955, 28.87713029400004 ], [ -82.012551189999954, 28.87707004300006 ], [ -82.012554885999975, 28.877004505000059 ], [ -82.012524767999935, 28.876764801000036 ], [ -82.012485023999943, 28.876448508000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012485023999943, 28.876448508000067 ], [ -82.012474207999958, 28.876362420000078 ], [ -82.012453714999936, 28.876264680000077 ], [ -82.012426631999972, 28.876190625000049 ], [ -82.012390215999972, 28.876119737000067 ], [ -82.012344936999966, 28.876052924000078 ], [ -82.01231914899995, 28.87602131500006 ], [ -82.012291370999947, 28.875991041000077 ], [ -82.012230206999959, 28.875934880000045 ], [ -82.012180628999943, 28.875897515000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01132408899997, 28.877909063000061 ], [ -82.011231203999955, 28.87748195000006 ], [ -82.011209895999968, 28.877383968000061 ], [ -82.011206097999946, 28.877351607000037 ], [ -82.011206998999967, 28.877323649000061 ], [ -82.011214584999948, 28.877289997000048 ], [ -82.011225968999952, 28.87726131200003 ], [ -82.011243954999941, 28.877232784000057 ], [ -82.011265895999941, 28.877207185000032 ], [ -82.011283238999965, 28.877191918000051 ], [ -82.011312215999965, 28.877172323000025 ], [ -82.011367439999958, 28.877140238000038 ], [ -82.011554181999941, 28.877024898000059 ], [ -82.011734965999949, 28.876902425000026 ], [ -82.011909439999954, 28.876773056000047 ], [ -82.012077266999938, 28.876637045000052 ], [ -82.012131051999972, 28.876590819000057 ], [ -82.012163727999962, 28.876564487000053 ], [ -82.012193223999986, 28.876543981000054 ], [ -82.012224209999943, 28.876525254000057 ], [ -82.012256547999982, 28.876508391000073 ], [ -82.012290093999979, 28.876493466000056 ], [ -82.01232469699994, 28.876480548000075 ], [ -82.012360201999968, 28.876469692000057 ], [ -82.012396452999951, 28.876460949000034 ], [ -82.012433284999986, 28.876454355000078 ], [ -82.012485023999943, 28.876448508000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012953137999943, 28.874728076000054 ], [ -82.013220666999985, 28.874305334000042 ], [ -82.013325166999948, 28.874152199000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014664779999976, 28.875592461000053 ], [ -82.014860164999959, 28.875491521000072 ], [ -82.015124724999964, 28.875354844000071 ], [ -82.015384070999971, 28.875220478000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013843812999937, 28.87454209200007 ], [ -82.013882803999934, 28.87458945000003 ], [ -82.013954043999945, 28.874676243000067 ], [ -82.014209664999953, 28.874987668000074 ], [ -82.014348491999954, 28.875156803000039 ], [ -82.014433855999982, 28.875260799000046 ], [ -82.014491981999981, 28.875335623000069 ], [ -82.014664779999976, 28.875592461000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016650051999989, 28.874265308000076 ], [ -82.016601138999988, 28.873949243000027 ], [ -82.016587132999973, 28.873892646000058 ], [ -82.016560958999946, 28.873801037000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014929584999948, 28.873155045000033 ], [ -82.015539664999949, 28.873154274000058 ], [ -82.01565728099996, 28.873154287000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012180628999943, 28.875897515000077 ], [ -82.012209069999983, 28.875865160000046 ], [ -82.012300201999949, 28.875756767000041 ], [ -82.012437617999979, 28.875577830000054 ], [ -82.01259949699994, 28.875327245000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01259949699994, 28.875327245000051 ], [ -82.012679755999955, 28.875203003000024 ], [ -82.012953137999943, 28.874728076000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011241177999977, 28.876147536000076 ], [ -82.011416062999956, 28.876005925000072 ], [ -82.011514318999957, 28.875919105000037 ], [ -82.011621544999969, 28.875817175000066 ], [ -82.011699261999979, 28.875738492000039 ], [ -82.011784214999977, 28.875647152000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010551368999984, 28.875019254000051 ], [ -82.010623452999937, 28.875015326000039 ], [ -82.010700496999959, 28.875013954000053 ], [ -82.011314963999951, 28.875013070000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009904713999958, 28.87522050900003 ], [ -82.009930738999969, 28.875184618000048 ], [ -82.009938917999989, 28.875175440000078 ], [ -82.009945808999987, 28.875169194000023 ], [ -82.009976091999988, 28.875145542000041 ], [ -82.009993733999977, 28.875135769000053 ], [ -82.010037022999938, 28.875117998000064 ], [ -82.010073876999968, 28.875108700000055 ], [ -82.010305353999968, 28.87505599900004 ], [ -82.010415213999977, 28.875035280000077 ], [ -82.010489914999937, 28.875025169000025 ], [ -82.010551368999984, 28.875019254000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011314963999951, 28.875013070000023 ], [ -82.01132479599994, 28.875012843000036 ], [ -82.011364841999978, 28.875007440000047 ], [ -82.011402830999941, 28.874995052000031 ], [ -82.01143720999994, 28.874976187000073 ], [ -82.011466570999971, 28.874951617000079 ], [ -82.011489710999967, 28.874922346000062 ], [ -82.011498392999954, 28.874906826000029 ], [ -82.011720357999934, 28.874503598000047 ], [ -82.01198930399994, 28.874053847000027 ], [ -82.012205668999968, 28.873718738000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012205668999968, 28.873718738000036 ], [ -82.012267497999972, 28.873627532000057 ], [ -82.012396541999976, 28.873440844000072 ], [ -82.012404639999943, 28.873428138000065 ], [ -82.012421180999979, 28.87339176100005 ], [ -82.012429599999962, 28.873353286000054 ], [ -82.012429594999958, 28.873314102000052 ], [ -82.012421166999957, 28.873275628000044 ], [ -82.012404617999948, 28.873239255000044 ], [ -82.012380546999964, 28.873206293000067 ], [ -82.012349824999944, 28.873177939000072 ], [ -82.012313560999985, 28.873155214000064 ], [ -82.012273067999956, 28.873138940000047 ], [ -82.012229806999983, 28.873129706000043 ], [ -82.01219498599994, 28.873127616000033 ], [ -82.011121367999976, 28.873127385000032 ], [ -82.009884768999939, 28.873130503000027 ], [ -82.009466695999947, 28.873232638000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971803522999949, 28.95620180700007 ], [ -81.971553909999955, 28.956105533000027 ], [ -81.971284878999938, 28.955982324000047 ], [ -81.971002126999963, 28.955839794000042 ], [ -81.970908788999964, 28.95579630900005 ], [ -81.970831919999966, 28.955774560000066 ], [ -81.970744068999977, 28.95575522200005 ], [ -81.970628758999965, 28.955743123000047 ], [ -81.970560119999959, 28.955743108000036 ], [ -81.970458534999977, 28.955740671000058 ], [ -81.970376168999962, 28.955740653000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979242672999987, 28.951971858000036 ], [ -81.979126569999949, 28.951971840000056 ], [ -81.978986772999974, 28.951971818000061 ], [ -81.978804325999988, 28.951971790000073 ], [ -81.978726134999988, 28.95197177700004 ], [ -81.978662160999988, 28.95196551500004 ], [ -81.978610036999953, 28.951946751000037 ], [ -81.978567393999981, 28.951919651000026 ], [ -81.978529490999961, 28.951880049000067 ], [ -81.978505803999951, 28.951840449000031 ], [ -81.978489229, 28.951788346000058 ], [ -81.978484499, 28.951744580000025 ], [ -81.978482141999962, 28.951682060000053 ], [ -81.978482159999942, 28.951592446000063 ], [ -81.978484552999987, 28.951481994000062 ], [ -81.978479830999959, 28.951398633000053 ], [ -81.978475108999987, 28.951317355000072 ], [ -81.97846564699995, 28.951242329000024 ], [ -81.978456186999949, 28.951154798000061 ], [ -81.978439617999982, 28.951069351000058 ], [ -81.978425417999972, 28.950992240000062 ], [ -81.978408846999969, 28.950923464000027 ], [ -81.978379901999972, 28.950842485000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980293210999946, 28.951972061000049 ], [ -81.980176229999984, 28.951971999000079 ], [ -81.979920331999949, 28.951971961000027 ], [ -81.979688125999985, 28.951971926000056 ], [ -81.97941801099995, 28.951971885000034 ], [ -81.979242672999987, 28.951971858000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978379901999972, 28.950842485000067 ], [ -81.978574733999949, 28.950790114000029 ], [ -81.978693212999985, 28.950746369000058 ], [ -81.978780889999939, 28.950700534000077 ], [ -81.978875676999962, 28.95065261600007 ], [ -81.978953876999981, 28.950604696000028 ], [ -81.979006830999936, 28.950567091000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979006830999936, 28.950567091000039 ], [ -81.979112653999948, 28.950469259000045 ], [ -81.979195598, 28.95039216300006 ], [ -81.979254844999957, 28.950340073000064 ], [ -81.97935911899998, 28.950242140000057 ], [ -81.979456281999944, 28.950144205000072 ], [ -81.979565294999986, 28.950040021000063 ], [ -81.979657717999942, 28.949956674000077 ], [ -81.979745402999981, 28.94986915800007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978379901999972, 28.950842485000067 ], [ -81.978352016999963, 28.95074839800003 ], [ -81.978328344999966, 28.950642109000057 ], [ -81.978304676999983, 28.950517064000053 ], [ -81.978290485999935, 28.950394105000044 ], [ -81.97826919299996, 28.950248220000049 ], [ -81.978262120999943, 28.95007524600004 ], [ -81.978266324999936, 28.94990641000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977509529999963, 28.949594073000071 ], [ -81.977511064999987, 28.949669526000037 ], [ -81.97751012599997, 28.949738340000067 ], [ -81.977507104999972, 28.950095643000054 ], [ -81.977512966999939, 28.950209568000048 ], [ -81.977501178999944, 28.950269116000072 ], [ -81.97747798599994, 28.950319278000052 ], [ -81.977433821999966, 28.950361345000033 ], [ -81.977378617999989, 28.950403408000057 ], [ -81.977308698999934, 28.950426052000068 ], [ -81.977139058999967, 28.95046842000005 ], [ -81.976966472999948, 28.950513378000039 ], [ -81.976800878999939, 28.950552186000039 ], [ -81.976740057999962, 28.950561092000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976740057999962, 28.950561092000044 ], [ -81.976512271999979, 28.950592305000043 ], [ -81.976265689999934, 28.950594755000054 ], [ -81.976104140999951, 28.950577276000047 ], [ -81.975931257999946, 28.950542345000031 ], [ -81.975837731999945, 28.950517399000034 ], [ -81.975744209999959, 28.95047998900003 ], [ -81.975663783999948, 28.950450799000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975663783999948, 28.950450799000066 ], [ -81.975625161999972, 28.950517361000038 ], [ -81.975588259999938, 28.950570657000071 ], [ -81.975544929999955, 28.950630041000068 ], [ -81.975517423999975, 28.950664422000045 ], [ -81.975480568999956, 28.950706794000041 ], [ -81.975434218999965, 28.950757792000047 ], [ -81.975392702999955, 28.950800374000039 ], [ -81.975355829999955, 28.950836403000039 ], [ -81.975304800999936, 28.950886251000043 ], [ -81.97522825599998, 28.950966009000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975766338999961, 28.94948026000003 ], [ -81.975786133999975, 28.949589954000032 ], [ -81.97580957699995, 28.94970720200007 ], [ -81.975815222999984, 28.949806918000036 ], [ -81.975815205999936, 28.949881705000053 ], [ -81.97581235399997, 28.949951506000048 ], [ -81.97580383899998, 28.950008841000056 ], [ -81.975793383999985, 28.950060889000042 ], [ -81.975783977999981, 28.950108555000043 ], [ -81.97577423499996, 28.950159893000034 ], [ -81.975757834999968, 28.950228853000056 ], [ -81.97573310599995, 28.950293083000076 ], [ -81.975699318999943, 28.950371992000044 ], [ -81.975663783999948, 28.950450799000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978266324999936, 28.94990641000004 ], [ -81.978266902999962, 28.949862676000066 ], [ -81.97826454899996, 28.949793902000067 ], [ -81.97826693199994, 28.949723046000031 ], [ -81.978281168999956, 28.949623016000032 ], [ -81.978288296999949, 28.949533403000032 ], [ -81.978290677999951, 28.94947088300006 ], [ -81.978285950999975, 28.949420866000025 ], [ -81.978269377999936, 28.949360427000045 ], [ -81.978247726999939, 28.949314698000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978247726999939, 28.949314698000023 ], [ -81.978217272999984, 28.949254133000068 ], [ -81.978184116999955, 28.949185356000044 ], [ -81.978146222999953, 28.949106157000074 ], [ -81.978105960999983, 28.949024873000042 ], [ -81.978057560999957, 28.948934222000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977244484999972, 28.947829429000024 ], [ -81.977265785999975, 28.947825395000052 ], [ -81.977295357999935, 28.947818119000033 ], [ -81.977333207999948, 28.94781084300007 ], [ -81.977364788999978, 28.947804560000066 ], [ -81.977404715999967, 28.947795111000062 ], [ -81.977443216999973, 28.947783811000079 ], [ -81.977481067999975, 28.947774454000069 ], [ -81.97752246899995, 28.947764057000029 ], [ -81.977567417999978, 28.947750540000072 ], [ -81.977610002999938, 28.947734942000068 ], [ -81.977657317999956, 28.947719343000074 ], [ -81.977707, 28.94770270600003 ], [ -81.977763778999986, 28.94768190800005 ], [ -81.977861961999963, 28.947636148000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975409536999962, 28.94766015600004 ], [ -81.975462449999952, 28.947908992000066 ], [ -81.975563615999988, 28.948423753000043 ], [ -81.975766338999961, 28.94948026000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980245430999958, 28.949410749000037 ], [ -81.98032597699995, 28.949479532000055 ], [ -81.980475224999964, 28.949600427000064 ], [ -81.98062921099995, 28.94973174200004 ], [ -81.980726343999947, 28.949800529000072 ], [ -81.980823475999955, 28.949865147000025 ], [ -81.980929956999944, 28.949932627000067 ], [ -81.981049349999978, 28.950000712000076 ], [ -81.981174108999937, 28.950069432000078 ], [ -81.981309149999959, 28.950154895000026 ], [ -81.981399175999968, 28.950219512000047 ], [ -81.98146313999996, 28.950269538000043 ], [ -81.981536579999954, 28.950332068000023 ], [ -81.981633712999951, 28.950411275000079 ], [ -81.981766378999964, 28.950521746000049 ], [ -81.981897970999967, 28.950638188000028 ], [ -81.981996177999974, 28.950717674000032 ], [ -81.982048297999938, 28.950761445000069 ], [ -81.982088677999968, 28.950802193000072 ], [ -81.982169043999988, 28.950867260000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982169043999988, 28.950867260000052 ], [ -81.982183837999969, 28.950879212000075 ], [ -81.982334100999935, 28.950999897000031 ], [ -81.982422611999937, 28.951074098000049 ], [ -81.982496053999967, 28.95113454400007 ], [ -81.982548171999952, 28.951186651000057 ], [ -81.982586073999983, 28.951238758000045 ], [ -81.982600280999975, 28.951299195000047 ], [ -81.982597899999973, 28.95136588400004 ], [ -81.982574195999973, 28.951428401000044 ], [ -81.98252679899997, 28.951476328000069 ], [ -81.982474661999959, 28.951528421000035 ], [ -81.982398828999976, 28.951595100000077 ], [ -81.982285076999972, 28.951707622000072 ], [ -81.982180805999974, 28.951801390000071 ], [ -81.982069424999963, 28.951905576000058 ], [ -81.981924866999975, 28.95203893300004 ], [ -81.981818224999984, 28.952136868000025 ], [ -81.981780307999941, 28.952166040000066 ], [ -81.981737654999961, 28.952188957000033 ], [ -81.981690262999962, 28.952199372000052 ], [ -81.981638134999969, 28.952205616000072 ], [ -81.981593115999942, 28.952203526000062 ], [ -81.981555206999985, 28.952193100000045 ], [ -81.981512558999952, 28.952180591000058 ], [ -81.981450956999936, 28.952161826000065 ], [ -81.981389353999987, 28.952140978000045 ], [ -81.981315904999974, 28.952120127000057 ], [ -81.981232978999969, 28.952099276000069 ], [ -81.981142942999952, 28.95207633800004 ], [ -81.981012551999981, 28.952052655000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981012551999981, 28.952052655000045 ], [ -81.980856249999988, 28.952024197000071 ], [ -81.980678547999958, 28.951999164000028 ], [ -81.980493733999936, 28.951982465000071 ], [ -81.980293210999946, 28.951972061000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976768220999986, 28.945057254000062 ], [ -81.976790463999976, 28.945071235000057 ], [ -81.97681128499994, 28.945084467000072 ], [ -81.976835574999939, 28.945097700000076 ], [ -81.976861023999959, 28.945110933000024 ], [ -81.976887628999975, 28.945125183000073 ], [ -81.976908449999939, 28.945135364000066 ], [ -81.976935056999935, 28.945148596000024 ], [ -81.976972072999956, 28.94516691900003 ], [ -81.97700677399996, 28.945184224000059 ], [ -81.977039164999951, 28.945199494000065 ], [ -81.977072709999959, 28.945216798000047 ], [ -81.977114353, 28.945236140000077 ], [ -81.977157151999961, 28.945260568000037 ], [ -81.977201107999974, 28.945283981000046 ], [ -81.977260100999956, 28.945322659000055 ], [ -81.977332973999978, 28.945372534000057 ], [ -81.977464836999957, 28.945462103000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976293320999957, 28.944617221000044 ], [ -81.976319709999984, 28.944654960000037 ], [ -81.97634052799998, 28.944680403000064 ], [ -81.976365972999986, 28.944709917000068 ], [ -81.976389104999953, 28.94473434300005 ], [ -81.976408765999963, 28.944756733000077 ], [ -81.976430741999934, 28.94478014200007 ], [ -81.976448088999973, 28.944799480000029 ], [ -81.976465438999981, 28.944816781000043 ], [ -81.97648510199997, 28.944836119000058 ], [ -81.976504763999969, 28.944855456000028 ], [ -81.976527896999983, 28.944877847000043 ], [ -81.976548716999957, 28.944895151000026 ], [ -81.976567222999961, 28.944910416000027 ], [ -81.976588042999936, 28.944926702000032 ], [ -81.976606549999985, 28.944940953000071 ], [ -81.976629682999942, 28.944958255000074 ], [ -81.976651660999948, 28.944974539000043 ], [ -81.976677108, 28.944991843000025 ], [ -81.97669908499995, 28.94500812900003 ], [ -81.976717591999943, 28.945022378000033 ], [ -81.976740725999946, 28.94503764600006 ], [ -81.976768220999986, 28.945057254000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970271959999934, 28.947969664000027 ], [ -81.97009160999994, 28.94810930500006 ], [ -81.969872942999984, 28.948264565000045 ], [ -81.969585687999938, 28.948433626000053 ], [ -81.969353289999958, 28.948546786000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968253017999984, 28.949039938000055 ], [ -81.96812756199995, 28.949066973000072 ], [ -81.967962047999947, 28.949084061000065 ], [ -81.967774632999976, 28.949084016000029 ], [ -81.967531244999975, 28.949060408000037 ], [ -81.967343844999959, 28.949008983000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969353289999958, 28.948546786000065 ], [ -81.969081786999936, 28.94869041000004 ], [ -81.968750719999946, 28.94885303600006 ], [ -81.968487815999936, 28.948975002000054 ], [ -81.968349066999963, 28.949019927000052 ], [ -81.968253017999984, 28.949039938000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95532247899996, 28.943238166000071 ], [ -81.955325125999934, 28.94326006600005 ], [ -81.955334565999976, 28.943330881000065 ], [ -81.95534519399996, 28.943395447000057 ], [ -81.955353454999965, 28.943453764000026 ], [ -81.955360531999986, 28.943514164000078 ], [ -81.955361683999968, 28.943589140000029 ], [ -81.955365212999936, 28.943642251000028 ], [ -81.955365190999942, 28.943692233000036 ], [ -81.955366353999977, 28.943740137000077 ], [ -81.955362773, 28.943809905000023 ], [ -81.955356807999976, 28.94391611900005 ], [ -81.955347290999953, 28.944025456000077 ], [ -81.955331358999956, 28.944172040000069 ], [ -81.955273138999985, 28.94470885800007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972174585999937, 28.942700848000072 ], [ -81.97232665599995, 28.942913755000063 ], [ -81.972426208999934, 28.943053492000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972426208999934, 28.943053492000047 ], [ -81.972469464999961, 28.943119737000075 ], [ -81.972494590999986, 28.943152323000049 ], [ -81.972515746999989, 28.943182580000041 ], [ -81.972536907999938, 28.943210510000029 ], [ -81.972559387, 28.943238441000062 ], [ -81.972585834999961, 28.943271026000048 ], [ -81.972612282999989, 28.943302448000054 ], [ -81.972638730999961, 28.943333869000071 ], [ -81.972673114999964, 28.943371112000079 ], [ -81.972712788999957, 28.943410681000046 ], [ -81.972757752999939, 28.943454906000056 ], [ -81.972809330999951, 28.943499133000046 ], [ -81.972863555999936, 28.943548014000044 ], [ -81.972926854999969, 28.943595920000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975522401999967, 28.94369978800006 ], [ -81.975599138999939, 28.943647441000053 ], [ -81.97563882999998, 28.943618359000027 ], [ -81.975683812999989, 28.943584624000039 ], [ -81.975720859999967, 28.943556704000059 ], [ -81.976097598999957, 28.943236376000073 ], [ -81.976504313999953, 28.942889083000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976531738999938, 28.940632094000023 ], [ -81.976427752999939, 28.940495524000028 ], [ -81.976309430999947, 28.940338961000066 ], [ -81.97629070399995, 28.940314240000077 ], [ -81.976271975999964, 28.940292516000056 ], [ -81.976255800999979, 28.94027378800007 ], [ -81.976240477999966, 28.940258805000042 ], [ -81.976219194999942, 28.940240076000066 ], [ -81.976204722999967, 28.940228839000042 ], [ -81.976187695999954, 28.940215353000042 ], [ -81.97617577699998, 28.940206363000073 ], [ -81.976161303999959, 28.940195875000029 ], [ -81.976145978999966, 28.94018763300005 ], [ -81.976126395999984, 28.940177143000028 ], [ -81.976107666999951, 28.940167403000032 ], [ -81.976086380999959, 28.940156913000067 ], [ -81.976065948999974, 28.940149419000079 ], [ -81.976042958999983, 28.940141925000034 ], [ -81.976020822999942, 28.940134432000036 ], [ -81.976003792999961, 28.940130683000064 ], [ -81.975982506999969, 28.940126935000023 ], [ -81.975968031999969, 28.940123935000031 ], [ -81.975953557999958, 28.940121686000055 ], [ -81.975932136999972, 28.940119259000028 ], [ -81.975912666999989, 28.940118355000038 ], [ -81.975892170999941, 28.940117450000059 ], [ -81.975875774999963, 28.940117447000034 ], [ -81.975854253999955, 28.940117443000076 ], [ -81.975827608999964, 28.940118340000026 ], [ -81.975800963999973, 28.940122842000051 ], [ -81.975765500999955, 28.94012996500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972439372999986, 28.937903195000047 ], [ -81.972291644999984, 28.93744543400004 ], [ -81.972243650999985, 28.937272433000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961335489999954, 28.934428973000024 ], [ -81.961070825999968, 28.934856234000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959916408999959, 28.929321382000069 ], [ -81.959894210999948, 28.929345288000036 ], [ -81.959849765999934, 28.929392648000032 ], [ -81.959808014999965, 28.929440010000064 ], [ -81.95976356999995, 28.929488555000034 ], [ -81.959724507999965, 28.92954065400005 ], [ -81.959674673999984, 28.929598673000044 ], [ -81.959639651999964, 28.92964366700005 ], [ -81.959593857999948, 28.929701687000033 ], [ -81.95955614199994, 28.929753787000038 ], [ -81.959522466999942, 28.92980114900007 ], [ -81.959491484999944, 28.929849698000055 ], [ -81.959455114999969, 28.929902984000023 ], [ -81.959420089999981, 28.929958637000027 ], [ -81.959395841999935, 28.929998899000054 ], [ -81.959360816999947, 28.930055736000043 ], [ -81.959328481999989, 28.930119681000065 ], [ -81.959297495999976, 28.930177704000073 ], [ -81.959273243999974, 28.930223887000068 ], [ -81.959244948999981, 28.930284280000024 ], [ -81.959218, 28.930343489000052 ], [ -81.959197786999937, 28.930392041000061 ], [ -81.959176225999954, 28.930445330000055 ], [ -81.959151969999937, 28.930505725000046 ], [ -81.959131754999987, 28.930560198000023 ], [ -81.959111537999945, 28.930618226000036 ], [ -81.959089972999948, 28.930680989000052 ], [ -81.959072449999951, 28.93073664800005 ], [ -81.959053388999962, 28.93080242700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954246017999935, 28.927317845000061 ], [ -81.954247687999953, 28.92755175700006 ], [ -81.954247497999972, 28.927968004000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966525822999984, 28.879686809000077 ], [ -81.966529205999962, 28.879679056000043 ], [ -81.966541494999944, 28.87963873700005 ], [ -81.966545640999982, 28.879597152000031 ], [ -81.966541521999943, 28.879555565000032 ], [ -81.96652925799998, 28.879515240000046 ], [ -81.966512063999971, 28.879481840000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966512063999971, 28.879481840000039 ], [ -81.966509225999971, 28.879477403000067 ], [ -81.966482031999988, 28.879443200000026 ], [ -81.966459146999966, 28.879421963000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007416332999981, 28.927162888000055 ], [ -82.007414772999937, 28.927162872000054 ], [ -82.006823473999987, 28.927157080000029 ], [ -82.006296669999983, 28.92715348400003 ], [ -82.005938606999962, 28.927149880000059 ], [ -82.00500846999995, 28.927142676000074 ], [ -82.004438177999987, 28.927143701000034 ], [ -82.004045687999962, 28.927141831000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98924533099995, 28.874515331000055 ], [ -81.989556371999981, 28.874721863000048 ], [ -81.989730346999977, 28.874830933000055 ], [ -81.989898800999981, 28.874925306000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953693491999957, 28.910791130000064 ], [ -81.953690925999979, 28.911411999000052 ], [ -81.953703753999946, 28.91216627700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957105584999965, 28.910436160000074 ], [ -81.957038563999959, 28.910447480000073 ], [ -81.956945770999937, 28.910447450000049 ], [ -81.956853742999954, 28.910434033000058 ], [ -81.956737008999937, 28.910395218000076 ], [ -81.956631347999974, 28.910349824000036 ], [ -81.956481874999952, 28.910281736000059 ], [ -81.955977092999944, 28.910235390000025 ], [ -81.955510120999975, 28.91030409900003 ], [ -81.955368347, 28.910322196000038 ], [ -81.955198238999969, 28.910297191000041 ], [ -81.955040990999976, 28.910328890000073 ], [ -81.954922420999935, 28.910333387000037 ], [ -81.954695597999944, 28.910326508000026 ], [ -81.954409494999936, 28.910310535000065 ], [ -81.954221318999942, 28.910339954000051 ], [ -81.953678097999955, 28.910303672000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953678097999955, 28.910303672000055 ], [ -81.953693491999957, 28.910791130000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953626786999962, 28.904736381000077 ], [ -81.953624220999984, 28.904779995000069 ], [ -81.953631917999985, 28.905701036000039 ], [ -81.953652441999964, 28.908710451000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953652441999964, 28.908710451000047 ], [ -81.953657573999976, 28.909290271000032 ], [ -81.953667835999966, 28.910088164000058 ], [ -81.953678097999955, 28.910303672000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969469882999988, 28.918528534000075 ], [ -81.969481198999972, 28.918525876000047 ], [ -81.96952379399994, 28.91850869700005 ], [ -81.969562678999978, 28.918485672000031 ], [ -81.969582323999987, 28.918469390000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969582323999987, 28.918469390000041 ], [ -81.969596680999985, 28.918457491000026 ], [ -81.969625017999988, 28.918424494000078 ], [ -81.969646713999964, 28.918388059000051 ], [ -81.969661182999971, 28.918348871000035 ], [ -81.969668227999989, 28.918308307000075 ], [ -81.969667458999936, 28.918267054000069 ], [ -81.969651787999965, 28.91820866300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969651787999965, 28.91820866300003 ], [ -81.969643059999953, 28.918187636000027 ], [ -81.969620213999974, 28.91815187800006 ], [ -81.969590722999953, 28.918119900000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981230857999947, 28.907448395000074 ], [ -81.981184919999976, 28.907354858000076 ], [ -81.981109176999951, 28.907191866000062 ], [ -81.981089539999971, 28.907140006000077 ], [ -81.981064300999947, 28.907043694000038 ], [ -81.981047477999937, 28.90695973000004 ], [ -81.981036264999943, 28.906885646000035 ], [ -81.981036268999958, 28.906868360000033 ], [ -81.981035042999963, 28.906851135000068 ], [ -81.981022762999942, 28.906745867000041 ], [ -81.981002347999947, 28.906641580000041 ], [ -81.980973893999987, 28.906538763000071 ], [ -81.980937530999938, 28.906437894000078 ], [ -81.980929707999962, 28.906418909000024 ], [ -81.980876406999982, 28.906302838000045 ], [ -81.980865179999967, 28.906275645000051 ], [ -81.980812887999946, 28.906162137000024 ], [ -81.980753045999961, 28.906051552000065 ], [ -81.980702472999951, 28.905969440000035 ], [ -81.980579027999966, 28.905774337000025 ], [ -81.980480830999966, 28.905638504000024 ], [ -81.980396661999976, 28.90552242800004 ], [ -81.980276015999948, 28.905376715000045 ], [ -81.980149757999982, 28.905230999000025 ], [ -81.980037526, 28.90510751100004 ], [ -81.979928101999974, 28.904986492000035 ], [ -81.979883210999958, 28.904924750000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981413903999965, 28.907821740000031 ], [ -81.981230857999947, 28.907448395000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978150917999983, 28.892099266000059 ], [ -81.978013529999942, 28.892054251000047 ], [ -81.977847718999953, 28.891994063000027 ], [ -81.977699485999949, 28.89194453500005 ], [ -81.977571555999987, 28.891900434000036 ], [ -81.977518349999968, 28.891853592000075 ], [ -81.977486429999942, 28.891806755000061 ], [ -81.977470481999944, 28.891729476000023 ], [ -81.97747415799995, 28.891631314000051 ], [ -81.977474202999986, 28.891425392000031 ], [ -81.977477175, 28.891227032000074 ], [ -81.977477216999944, 28.891036578000069 ], [ -81.977480365999952, 28.890921757000058 ], [ -81.977494628999978, 28.890806872000041 ], [ -81.977510608999978, 28.890734283000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982523681999965, 28.881523827000024 ], [ -81.982476055999939, 28.881539256000053 ], [ -81.982418706999965, 28.881568274000074 ], [ -81.982388625999988, 28.88159164800004 ], [ -81.982359131999942, 28.881623615000024 ], [ -81.982336275999955, 28.881659709000076 ], [ -81.982320644999959, 28.881698554000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982320644999959, 28.881698554000025 ], [ -81.982312631999946, 28.881739119000031 ], [ -81.982312429, 28.881780372000037 ], [ -81.982318430999953, 28.881811567000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982865156999935, 28.881752498000026 ], [ -81.982862981999972, 28.881723720000025 ], [ -81.982852051999942, 28.881683840000051 ], [ -81.982833503999984, 28.881646022000041 ], [ -81.982808120999948, 28.881611297000063 ], [ -81.982796242999939, 28.88159982600007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982661229999962, 28.881525446000069 ], [ -81.982653850999952, 28.881523271000049 ], [ -81.982607566999945, 28.881517076000023 ], [ -81.98256069599995, 28.88151775800003 ], [ -81.982523681999965, 28.881523827000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982644006999976, 28.881999746000076 ], [ -81.982688927999959, 28.881988064000041 ], [ -81.982731115999968, 28.88197019200004 ], [ -81.982769006999945, 28.881946133000042 ], [ -81.982782509999936, 28.881933931000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982861209999953, 28.881805882000037 ], [ -81.982866100999956, 28.881764974000077 ], [ -81.982865156999935, 28.881752498000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982386911999981, 28.881927884000049 ], [ -81.982387203999963, 28.881928208000033 ], [ -81.982392670999957, 28.881931990000055 ], [ -81.982422155999984, 28.881955714000071 ], [ -81.982461798999964, 28.881977377000055 ], [ -81.982505152999977, 28.881993197000043 ], [ -81.982550849999939, 28.882002141000044 ], [ -81.982552575999989, 28.882002231000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982552575999989, 28.882002231000058 ], [ -81.98259752599995, 28.882004553000058 ], [ -81.982644006999976, 28.881999746000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021256955999945, 28.90184613100007 ], [ -82.021255318999977, 28.902707647000057 ], [ -82.021255364999945, 28.902932620000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016257827999937, 28.906089709000071 ], [ -82.016245108999954, 28.906087070000069 ], [ -82.016225259999942, 28.906085543000074 ], [ -82.016205411999977, 28.906087074000027 ], [ -82.01618616899998, 28.906091614000047 ], [ -82.016168111999946, 28.90609902500006 ], [ -82.016151792999949, 28.906109084000036 ], [ -82.016137705999938, 28.90612148200006 ], [ -82.016126281999959, 28.906135844000062 ], [ -82.016117862999977, 28.906151734000048 ], [ -82.016112709999959, 28.906168668000078 ], [ -82.016110974999947, 28.906186134000052 ], [ -82.016111370999965, 28.906194483000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016111370999965, 28.906194483000036 ], [ -82.016112715999952, 28.906203599000037 ], [ -82.016117873999974, 28.906220532000077 ], [ -82.016126296999971, 28.906236419000038 ], [ -82.016137726999943, 28.906250779000061 ], [ -82.016151816999979, 28.90626317400006 ], [ -82.016168138999944, 28.906273228000032 ], [ -82.016186197999957, 28.90628063500003 ], [ -82.01620042199994, 28.906284290000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016111370999965, 28.906194483000036 ], [ -82.015999203999968, 28.906203929000071 ], [ -82.015862998999978, 28.906213165000054 ], [ -82.015669916999968, 28.90622240600004 ], [ -82.015594481999983, 28.906224660000078 ], [ -82.015529219999962, 28.906222423000031 ], [ -82.015457732999948, 28.906209690000026 ], [ -82.015402699999981, 28.906199405000052 ], [ -82.015351825999971, 28.906187360000047 ], [ -82.015295826999989, 28.906170941000028 ], [ -82.015191282999979, 28.906145274000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981413903999965, 28.907821740000031 ], [ -81.981881453999961, 28.907591034000063 ], [ -81.981958995999946, 28.907556931000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015282225999954, 28.917386195000063 ], [ -82.015627067999958, 28.917386156000077 ], [ -82.016021481999985, 28.917387655000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013142864999963, 28.916877001000046 ], [ -82.013208844999951, 28.916822680000053 ], [ -82.013345072999982, 28.916766482000071 ], [ -82.013419570999986, 28.916743999000062 ], [ -82.013494073999937, 28.916738374000033 ], [ -82.013598375999948, 28.916742108000051 ], [ -82.013672879999945, 28.916749593000077 ], [ -82.013768668999944, 28.916749583000069 ], [ -82.013887872999987, 28.916751443000067 ], [ -82.014015627999981, 28.916751964000071 ], [ -82.014139097999987, 28.916751951000037 ], [ -82.014309062999985, 28.916751933000057 ], [ -82.014503049999973, 28.916751378000072 ], [ -82.014701014999957, 28.916751357000066 ], [ -82.014875562999976, 28.916753211000071 ], [ -82.015056497999979, 28.916755063000039 ], [ -82.015237431999935, 28.91675317000005 ], [ -82.015326834999939, 28.916753160000042 ], [ -82.015420480999978, 28.91675181100004 ], [ -82.01549979899994, 28.916751802000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005466315999968, 28.885326976000044 ], [ -82.005275472999983, 28.884924994000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007180375999951, 28.882089151000059 ], [ -82.007243120999988, 28.881975340000054 ], [ -82.007265981999979, 28.881932022000058 ], [ -82.007318244999965, 28.881820952000055 ], [ -82.00736279299997, 28.881707305000077 ], [ -82.007399464999935, 28.88159150000007 ], [ -82.007428123999944, 28.881473957000026 ], [ -82.007448667999938, 28.881355106000058 ], [ -82.007461018999948, 28.881235380000078 ], [ -82.00746513699994, 28.881115215000079 ], [ -82.007461001999957, 28.88099505100007 ], [ -82.007448633999957, 28.880875326000023 ], [ -82.007441277999988, 28.880826995000064 ], [ -82.00743487799997, 28.880779580000024 ], [ -82.007431819999965, 28.880740592000052 ], [ -82.007383833999938, 28.880378234000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006506124999987, 28.881902917000048 ], [ -82.006536412999935, 28.881800469000041 ], [ -82.006580164999946, 28.881528562000028 ], [ -82.006632563999972, 28.88122504200004 ], [ -82.006642543999988, 28.88095908400004 ], [ -82.006629320999934, 28.88079960500005 ], [ -82.006587914999955, 28.880485875000034 ], [ -82.006572773999949, 28.880444865000072 ], [ -82.006532836999952, 28.880390744000067 ], [ -82.006475851999937, 28.880350133000036 ], [ -82.006407398999954, 28.880327009000041 ], [ -82.006309948999956, 28.880327014000045 ], [ -82.006210651999936, 28.880356526000071 ], [ -82.006047001999946, 28.880408558000056 ], [ -82.00595743599996, 28.880432658000075 ], [ -82.00585487799998, 28.880450107000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00585487799998, 28.880450107000058 ], [ -82.005560958, 28.88046547600004 ], [ -82.005296521999981, 28.88047675200005 ], [ -82.005225698999936, 28.880493457000057 ], [ -82.005183270999964, 28.880515021000065 ], [ -82.005131426999981, 28.880560655000068 ], [ -82.005098142999941, 28.880618157000072 ], [ -82.005087958, 28.880660337000052 ], [ -82.00510208999998, 28.880983495000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005635413999983, 28.88232010300004 ], [ -82.005672745999959, 28.882347821000053 ], [ -82.005679416999953, 28.882352636000064 ], [ -82.005702099999951, 28.882367141000032 ], [ -82.005726171999981, 28.882379796000066 ], [ -82.005751432999944, 28.882390503000067 ], [ -82.005777682999963, 28.882399173000067 ], [ -82.005797751999978, 28.882404265000048 ], [ -82.006580516999975, 28.882578168000066 ], [ -82.006589466999969, 28.882580181000037 ], [ -82.006649098999958, 28.882594908000044 ], [ -82.00670800599994, 28.88261175100007 ], [ -82.006766087999949, 28.882630681000023 ], [ -82.006823251999947, 28.882651667000061 ], [ -82.006879400999935, 28.882674674000043 ], [ -82.006934446999935, 28.882699665000075 ], [ -82.006988293999939, 28.882726599000023 ], [ -82.007040858999972, 28.882755431000078 ], [ -82.007092050999972, 28.882786115000044 ], [ -82.007141788999945, 28.882818599000075 ], [ -82.007144435999976, 28.882820406000064 ], [ -82.007371297999953, 28.882975642000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006057345999977, 28.883120004000034 ], [ -82.006403090999981, 28.883196816000066 ], [ -82.006428820999986, 28.883202935000043 ], [ -82.006471740999984, 28.883214973000065 ], [ -82.006513826999935, 28.883229109000069 ], [ -82.006554945999937, 28.883245301000045 ], [ -82.006594967999945, 28.883263495000051 ], [ -82.006633768999961, 28.883283637000034 ], [ -82.006671223999945, 28.883305662000055 ], [ -82.006707217999974, 28.883329501000048 ], [ -82.006718277999937, 28.883337405000077 ], [ -82.006729872999983, 28.883345318000067 ], [ -82.006750446999945, 28.883357076000038 ], [ -82.00677230499997, 28.883366877000071 ], [ -82.006795207999971, 28.883374613000058 ], [ -82.006818903999942, 28.883380200000033 ], [ -82.006843131999972, 28.883383576000028 ], [ -82.006867628999942, 28.883384705000026 ], [ -82.006892126999958, 28.88338357400005 ], [ -82.006916355999977, 28.883380195000029 ], [ -82.006940050999958, 28.883374606000075 ], [ -82.006962949999945, 28.883366867000063 ], [ -82.00698480799997, 28.883357064000052 ], [ -82.007005380999942, 28.883345304000045 ], [ -82.007024443999967, 28.883331716000043 ], [ -82.007039125999938, 28.883319008000058 ], [ -82.007073614999968, 28.883286121000026 ], [ -82.007153874999972, 28.883207274000029 ], [ -82.007232244999955, 28.883126971000024 ], [ -82.007308694999949, 28.883045245000062 ], [ -82.007371297999953, 28.882975642000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005271105999952, 28.882945327000073 ], [ -82.006057345999977, 28.883120004000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007371297999953, 28.882975642000076 ], [ -82.007455697999944, 28.882877669000038 ], [ -82.00752618599995, 28.882791892000057 ], [ -82.007594623999978, 28.882704839000041 ], [ -82.007660982999937, 28.882616547000055 ], [ -82.007725233999963, 28.882527055000025 ], [ -82.007782392999957, 28.882444187000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007782392999957, 28.882444187000033 ], [ -82.007894134999958, 28.88226465200006 ], [ -82.007922587999985, 28.882224821000079 ], [ -82.007982223999988, 28.882131457000071 ], [ -82.008034480999981, 28.882034729000054 ], [ -82.008043843999985, 28.882015402000036 ], [ -82.008090725999978, 28.881921877000025 ], [ -82.008147277999967, 28.881793372000061 ], [ -82.008196044999977, 28.881662418000076 ], [ -82.008236890999967, 28.881529382000053 ], [ -82.008269703999986, 28.881394635000049 ], [ -82.008294388999957, 28.881258550000041 ], [ -82.008310883999968, 28.881121509000025 ], [ -82.008319135999955, 28.880983892000074 ], [ -82.008319124999957, 28.880846084000041 ], [ -82.008310850999976, 28.880708468000023 ], [ -82.00829433499996, 28.880571428000053 ], [ -82.008253764999949, 28.880378234000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004344294999953, 28.878403001000038 ], [ -82.004904270999987, 28.878937453000049 ], [ -82.004937405999954, 28.878967634000048 ], [ -82.004974237999988, 28.878998103000072 ], [ -82.00501273499998, 28.879026933000034 ], [ -82.005052805999981, 28.879054051000026 ], [ -82.005094349999979, 28.879079391000062 ], [ -82.005137267999942, 28.879102892000049 ], [ -82.005181452999977, 28.879124496000031 ], [ -82.005226798999956, 28.879144151000048 ], [ -82.005273194999972, 28.879161808000049 ], [ -82.005320522999966, 28.879177422000055 ], [ -82.005346416999942, 28.879184991000045 ], [ -82.005363520999936, 28.879188687000067 ], [ -82.005381945999943, 28.879190391000066 ], [ -82.005400462999944, 28.879189821000068 ], [ -82.005418707999979, 28.879186988000072 ], [ -82.005436328999963, 28.879181948000053 ], [ -82.005452977999937, 28.879174800000044 ], [ -82.005468337999957, 28.879165681000075 ], [ -82.005482106999978, 28.879154768000035 ], [ -82.005494014999954, 28.879142275000049 ], [ -82.005503501999954, 28.879128990000027 ], [ -82.005505075999963, 28.879126409000037 ], [ -82.005531600999973, 28.879080461000058 ], [ -82.005555871999945, 28.87903355800006 ], [ -82.005577842999969, 28.878985786000044 ], [ -82.005597474999945, 28.878937231000066 ], [ -82.00561473199997, 28.878887982000037 ], [ -82.005629581999983, 28.87883812900003 ], [ -82.005641997999987, 28.878787762000059 ], [ -82.005651956999941, 28.878736976000027 ], [ -82.005659442999956, 28.878685860000076 ], [ -82.005664438999986, 28.878634509000051 ], [ -82.005666282999982, 28.878602622000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003451, 28.878501732000075 ], [ -82.004691387999969, 28.879685592000044 ], [ -82.004713863999939, 28.879705848000071 ], [ -82.004741741999965, 28.879728040000032 ], [ -82.004771241999947, 28.879748541000026 ], [ -82.004802231999975, 28.879767264000066 ], [ -82.004834573999972, 28.879784124000025 ], [ -82.004868122999937, 28.879799042000059 ], [ -82.00490272899998, 28.879811957000072 ], [ -82.004938236999976, 28.879822807000039 ], [ -82.004974490999984, 28.879831547000038 ], [ -82.005011325999988, 28.879838135000057 ], [ -82.005048578999947, 28.879842545000031 ], [ -82.005086082999981, 28.879844753000043 ], [ -82.005123671999968, 28.879844751000064 ], [ -82.005131239999969, 28.879844483000056 ], [ -82.005562981999958, 28.879826635000029 ], [ -82.005592916999944, 28.879824691000067 ], [ -82.005630169999961, 28.879820280000047 ], [ -82.005667004999964, 28.87981368800007 ], [ -82.005703256999936, 28.879804946000036 ], [ -82.005738765, 28.879794092000054 ], [ -82.005773369999986, 28.879781176000051 ], [ -82.005806916999973, 28.879766253000071 ], [ -82.005839255999945, 28.879749391000075 ], [ -82.005870244999983, 28.879730666000057 ], [ -82.005899743999976, 28.879710162000038 ], [ -82.005927618999976, 28.879687969000031 ], [ -82.005953747999968, 28.87966418600007 ], [ -82.005978015999972, 28.879638921000037 ], [ -82.00600031, 28.879612286000054 ], [ -82.006020533999958, 28.879584399000066 ], [ -82.006027539999934, 28.879573683000046 ], [ -82.006330210999977, 28.879097104000039 ], [ -82.006341266999982, 28.879078806000052 ], [ -82.006357087999959, 28.879048794000028 ], [ -82.006370594999964, 28.87901792100007 ], [ -82.006381729999987, 28.87898632200006 ], [ -82.006390439999961, 28.878954140000076 ], [ -82.006396689999974, 28.878921517000038 ], [ -82.006400451, 28.87888859800006 ], [ -82.006401704999973, 28.878855533000035 ], [ -82.006400446999976, 28.878822468000067 ], [ -82.006396681999945, 28.878789551000068 ], [ -82.006390427999975, 28.878756929000076 ], [ -82.006383028999949, 28.878729049000071 ], [ -82.00631144, 28.878490673000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005666282999982, 28.878602622000074 ], [ -82.005697346999966, 28.878600299000027 ], [ -82.005717834999984, 28.878597242000069 ], [ -82.00631144, 28.878490673000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004742541999974, 28.877862207000078 ], [ -82.004964797999946, 28.877560397000025 ], [ -82.004990127999974, 28.877527747000045 ], [ -82.005019498999957, 28.877493672000071 ], [ -82.00504362099997, 28.877465447000077 ], [ -82.005068726, 28.877435725000055 ], [ -82.005079402999968, 28.877426490000062 ], [ -82.005091659999948, 28.877416323000034 ], [ -82.005132755999966, 28.877377128000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004742541999974, 28.877862207000078 ], [ -82.005425689999981, 28.878514215000052 ], [ -82.005439466999974, 28.878526561000058 ], [ -82.005460580999966, 28.878542796000033 ], [ -82.005483263999963, 28.878557301000058 ], [ -82.005507333999958, 28.878569957000025 ], [ -82.005532595999966, 28.878580663000037 ], [ -82.005558846999975, 28.878589333000036 ], [ -82.005585873999962, 28.878595897000025 ], [ -82.005630645999986, 28.878600509000023 ], [ -82.005666282999982, 28.878602622000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004344294999953, 28.878403001000038 ], [ -82.004742541999974, 28.877862207000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003852290999987, 28.877933416000076 ], [ -82.004344294999953, 28.878403001000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003392316999964, 28.877599386000043 ], [ -82.003423436999981, 28.877610391000076 ], [ -82.003463460999967, 28.877626921000058 ], [ -82.00350236099996, 28.877645415000075 ], [ -82.003540009999938, 28.877665817000036 ], [ -82.003576285999941, 28.877688060000025 ], [ -82.003611074999981, 28.877712075000034 ], [ -82.003644263999945, 28.877737784000033 ], [ -82.003675747999978, 28.877765104000048 ], [ -82.003686054999946, 28.87777475300004 ], [ -82.003852290999987, 28.877933416000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020613023999942, 28.88004843300007 ], [ -82.017873191999968, 28.880052932000069 ], [ -82.015745309999943, 28.880037913000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008871935999935, 28.881020885000055 ], [ -82.009369369999945, 28.881029478000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009196390999989, 28.881657005000079 ], [ -82.010327057999973, 28.882541398000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011175721999962, 28.882367645000045 ], [ -82.01120724499998, 28.882400336000046 ], [ -82.011244393999959, 28.882435998000062 ], [ -82.011281543999985, 28.882468689000063 ], [ -82.011428716999944, 28.882582952000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009369369999945, 28.881029478000073 ], [ -82.009341713999959, 28.880535267000027 ], [ -82.009339957999941, 28.880427369000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009339957999941, 28.880427369000074 ], [ -82.009317917999965, 28.880098015000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009339957999941, 28.880427369000074 ], [ -82.009399990999952, 28.880416797000066 ], [ -82.009492231999957, 28.880413695000072 ], [ -82.009698265999987, 28.88045160300004 ], [ -82.009870443999944, 28.880504992000056 ], [ -82.010033863999979, 28.880576598000061 ], [ -82.010186045999944, 28.88066533600005 ], [ -82.010324686999979, 28.880769862000079 ], [ -82.010408541999936, 28.880847543000073 ], [ -82.010484873999985, 28.880931017000023 ], [ -82.010559808999972, 28.881029251000029 ], [ -82.010619701999985, 28.881104251000068 ], [ -82.010706259999949, 28.881184429000029 ], [ -82.011569219999956, 28.881862747000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010561339999981, 28.883317715000032 ], [ -82.010721039999964, 28.883458247000078 ], [ -82.01089080099996, 28.883630265000079 ], [ -82.011014265999961, 28.883784177000052 ], [ -82.011096577999979, 28.883901876000039 ], [ -82.011184037999953, 28.884060318000024 ], [ -82.011250921999988, 28.884196126000063 ], [ -82.011322953, 28.884363624000059 ], [ -82.011374409999974, 28.884544704000064 ], [ -82.011400144999982, 28.884694098000068 ], [ -82.011415597999985, 28.884888763000049 ], [ -82.011415619, 28.88508342800003 ], [ -82.011389933999965, 28.885404857000026 ], [ -82.011335552999981, 28.885879484000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010003926999957, 28.882863114000031 ], [ -82.010407245999943, 28.883182117000047 ], [ -82.010561339999981, 28.883317715000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010003926999957, 28.882863114000031 ], [ -82.010327057999973, 28.882541398000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008617132999973, 28.881919175000064 ], [ -82.008924131999947, 28.882107801000075 ], [ -82.009300721999978, 28.882353010000031 ], [ -82.009684013999959, 28.882622383000069 ], [ -82.010003926999957, 28.882863114000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008617132999973, 28.881919175000064 ], [ -82.008668537999938, 28.881806874000063 ], [ -82.008758867999973, 28.881594305000078 ], [ -82.008785361999969, 28.881521141000064 ], [ -82.008813121999935, 28.881430504000036 ], [ -82.008828111999946, 28.881371938000029 ], [ -82.008848548999936, 28.881270261000054 ], [ -82.00886100799994, 28.881185214000027 ], [ -82.008867678999934, 28.881113522000078 ], [ -82.008871935999935, 28.881020885000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009904713999958, 28.87522050900003 ], [ -82.009850382999957, 28.875196551000045 ], [ -82.009779689999959, 28.875156762000074 ], [ -82.009742850999942, 28.875118830000076 ], [ -82.009712738999951, 28.875062792000051 ], [ -82.009569831999954, 28.874576168000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009226437999985, 28.873908960000051 ], [ -82.009575471999938, 28.873910193000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009575471999938, 28.873910193000029 ], [ -82.009692778999977, 28.873907433000056 ], [ -82.009898615999987, 28.873865936000072 ], [ -82.010046841999952, 28.873832133000064 ], [ -82.01022618099995, 28.873796712000058 ], [ -82.010447204999934, 28.873774481000055 ], [ -82.011148282999955, 28.873772322000036 ], [ -82.011148814999956, 28.873772321000047 ], [ -82.011175843999979, 28.873774400000059 ], [ -82.011202052999977, 28.873780579000027 ], [ -82.011226643999976, 28.873790669000073 ], [ -82.011248870999964, 28.873804367000048 ], [ -82.011268058999974, 28.873821252000027 ], [ -82.01128362299994, 28.873840815000051 ], [ -82.011295091999955, 28.873862458000076 ], [ -82.011302112999942, 28.873885507000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009569831999954, 28.874576168000033 ], [ -82.009547392999934, 28.874487437000028 ], [ -82.009537413999965, 28.874412291000056 ], [ -82.009535651999954, 28.874027159000036 ], [ -82.009537898999952, 28.874002819000054 ], [ -82.009544729999959, 28.873984173000053 ], [ -82.009552926999959, 28.873966731000053 ], [ -82.009575471999938, 28.873910193000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009242047999976, 28.875609030000078 ], [ -82.009106547999977, 28.875311900000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009990756999969, 28.876833852000061 ], [ -82.009932222999964, 28.876717543000041 ], [ -82.009860437999976, 28.87660029500006 ], [ -82.009731236999983, 28.876423696000074 ], [ -82.009527127999945, 28.876157242000033 ], [ -82.009423210999955, 28.875993747000052 ], [ -82.009242047999976, 28.875609030000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012694516999943, 28.914586987000064 ], [ -82.012755078999987, 28.914590075000035 ], [ -82.013107119999972, 28.91463095000006 ], [ -82.013423830999955, 28.914671036000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011999124999988, 28.914552942000057 ], [ -82.012056471999983, 28.914552324000056 ], [ -82.012420231999954, 28.914572574000033 ], [ -82.012694516999943, 28.914586987000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012617321999983, 28.91603483800003 ], [ -82.012414542999977, 28.916015063000032 ], [ -82.01197283099998, 28.916015103000063 ], [ -82.011597158999962, 28.916018307000058 ], [ -82.01152968599996, 28.916006441000036 ], [ -82.01146221099998, 28.915968453000062 ], [ -82.011413625999978, 28.915916217000074 ], [ -82.01138932899994, 28.915842606000069 ], [ -82.011373126999956, 28.915759498000057 ], [ -82.011354223999945, 28.915659767000079 ], [ -82.011324521999938, 28.915526794000073 ], [ -82.011294822999957, 28.915415191000079 ], [ -82.011277709999945, 28.915346643000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009814899999981, 28.910105402000056 ], [ -82.009814872999982, 28.909817318000023 ], [ -82.009822862999954, 28.909621707000042 ], [ -82.009836845999985, 28.909533940000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009836845999985, 28.909533940000074 ], [ -82.009841995999977, 28.909502071000077 ], [ -82.009849992999989, 28.909363873000075 ], [ -82.009852716999944, 28.909256270000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006661367999982, 28.912828945000058 ], [ -82.006620358999953, 28.912503100000038 ], [ -82.006589355999949, 28.912165247000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006589355999949, 28.912165247000075 ], [ -82.006578458999968, 28.912058943000034 ], [ -82.006518064999966, 28.911564250000026 ], [ -82.006516108999961, 28.911523340000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004154720999964, 28.912540328000034 ], [ -82.004310601999975, 28.912226454000063 ], [ -82.00439989299997, 28.912024497000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00439989299997, 28.912024497000061 ], [ -82.004453583999975, 28.911815636000028 ], [ -82.004488544999958, 28.911670560000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999578068999938, 28.918048187000068 ], [ -81.99959765899996, 28.918046670000024 ], [ -81.999642983999934, 28.918036701000062 ], [ -81.999686158999964, 28.918020543000068 ], [ -81.999735316999988, 28.917988794000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999796627999956, 28.917928083000049 ], [ -81.999808849999965, 28.917910534000043 ], [ -81.999826626999948, 28.917872375000059 ], [ -81.999837175999971, 28.917832498000053 ], [ -81.999839520999956, 28.917800182000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034653194999976, 28.872710433000066 ], [ -82.034336036999946, 28.872726402000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035458612999946, 28.871479063000038 ], [ -82.034644949999972, 28.871481189000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034644949999972, 28.871481189000065 ], [ -82.034312859999943, 28.871482054000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034644949999972, 28.871481189000065 ], [ -82.034653194999976, 28.872710433000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.150898985999959, 28.865660685000023 ], [ -82.15031344099998, 28.865997568000068 ], [ -82.149081828999954, 28.866704215000027 ], [ -82.147655114999964, 28.867528216000039 ], [ -82.146627622999972, 28.868116419000046 ], [ -82.146554962999971, 28.868158314000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143160009999974, 28.870119492000072 ], [ -82.142582159999961, 28.870453564000059 ], [ -82.141492955999979, 28.871075412000039 ], [ -82.14057990799995, 28.87160655200006 ], [ -82.139869416999943, 28.87201333400003 ], [ -82.139129565999951, 28.872440831000063 ], [ -82.137684863999937, 28.873272483000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020024091999971, 28.933107110000037 ], [ -82.020023400999946, 28.933701506000034 ], [ -82.020016403999989, 28.933736851000049 ], [ -82.01999996099994, 28.933782586000063 ], [ -82.019975772999942, 28.93382557800004 ], [ -82.019956419999971, 28.93385126000004 ], [ -82.019770846999961, 28.933992579000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019770846999961, 28.933992579000062 ], [ -82.019704804999947, 28.933929792000072 ], [ -82.01967267699996, 28.933901539000033 ], [ -82.019629842999962, 28.933881136000025 ], [ -82.019589352999958, 28.933873616000028 ], [ -82.019498717999966, 28.933873630000051 ], [ -82.01898354399998, 28.933873703000074 ], [ -82.018939197999941, 28.933879665000063 ], [ -82.018889232999982, 28.933901652000031 ], [ -82.018855330999941, 28.933929914000032 ], [ -82.018826781999962, 28.933958176000033 ], [ -82.018796453999983, 28.93401626800005 ], [ -82.018789326, 28.934072786000058 ], [ -82.018789357999935, 28.934213143000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020024091999971, 28.933107110000037 ], [ -82.019064495999942, 28.933105773000079 ], [ -82.01791826799996, 28.933102697000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020023137999942, 28.932331571000077 ], [ -82.018962118, 28.932336435000025 ], [ -82.017905226999972, 28.932329622000054 ], [ -82.017741462999936, 28.932341311000073 ], [ -82.017612750999945, 28.932354085000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016281373999959, 28.932108612000036 ], [ -82.016313879999984, 28.932449849000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017612750999945, 28.932354085000043 ], [ -82.017532448999987, 28.932381175000046 ], [ -82.017453485999965, 28.932401202000051 ], [ -82.017395934999968, 28.932414162000043 ], [ -82.017319644999986, 28.932427123000025 ], [ -82.017142034999949, 28.93244721700006 ], [ -82.016927383999985, 28.932459833000053 ], [ -82.016626866999957, 28.932447282000055 ], [ -82.016313879999984, 28.932449849000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95900992199995, 28.952282361000073 ], [ -81.959858527999984, 28.951595529000031 ], [ -81.960141778999969, 28.951376119000031 ], [ -81.960473374999935, 28.951103337000063 ], [ -81.961029183999983, 28.950673299000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988912822999964, 28.884518884000045 ], [ -81.989299243999938, 28.88462241600007 ], [ -81.98978551, 28.884789473000069 ], [ -81.990256949999946, 28.884982623000042 ], [ -81.990722991999974, 28.885201126000027 ], [ -81.99111299599997, 28.885404668000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985738205999951, 28.883951401000047 ], [ -81.986074678999955, 28.884042722000061 ], [ -81.986455740999986, 28.884123714000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986842749999937, 28.883157138000058 ], [ -81.986959291999938, 28.882959041000049 ], [ -81.987086426999952, 28.882744631000037 ], [ -81.987258585999939, 28.882490602000075 ], [ -81.987520780999944, 28.882208614000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986559114999977, 28.883704650000027 ], [ -81.986625556999968, 28.883534688000054 ], [ -81.986760642999968, 28.883287648000078 ], [ -81.986842749999937, 28.883157138000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982092752999961, 28.881284724000068 ], [ -81.982127651999974, 28.88135894100003 ], [ -81.982204861999946, 28.881448443000068 ], [ -81.98225423699995, 28.881503150000071 ], [ -81.982265578999943, 28.881521487000043 ], [ -81.982299386999955, 28.881578895000075 ], [ -81.982305366999981, 28.881602159000067 ], [ -81.982320644999959, 28.881698554000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982523681999965, 28.881523827000024 ], [ -81.982480036999959, 28.88151255300005 ], [ -81.982456466999963, 28.881505684000047 ], [ -81.982436134999944, 28.881498391000036 ], [ -81.982415120999974, 28.881490240000062 ], [ -81.98236647799996, 28.881469057000061 ], [ -81.982332519999943, 28.881448129000034 ], [ -81.982297762999963, 28.881423760000075 ], [ -81.982234393999988, 28.881374918000063 ], [ -81.982172550999962, 28.881320062000043 ], [ -81.982092752999961, 28.881284724000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002910923999934, 28.873945331000073 ], [ -82.003023279999979, 28.873262706000048 ], [ -82.003039444999956, 28.873161724000056 ], [ -82.003055450999966, 28.873047457000041 ], [ -82.003068217999953, 28.872929237000051 ], [ -82.003079878999984, 28.872768574000077 ], [ -82.00309877799998, 28.872449227000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999735316999988, 28.917988794000053 ], [ -81.999753755999961, 28.917976884000041 ], [ -81.999784427999941, 28.917945601000042 ], [ -81.999796627999956, 28.917928083000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999263976999941, 28.917827682000052 ], [ -81.99927218199997, 28.917864811000072 ], [ -81.999288591999971, 28.917903313000068 ], [ -81.999293358999978, 28.917910644000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999288381999975, 28.917689266000025 ], [ -81.999280974999976, 28.917702548000079 ], [ -81.999267689999954, 28.917742082000075 ], [ -81.999261631999957, 28.917782991000024 ], [ -81.999263194999969, 28.91782424400003 ], [ -81.999263976999941, 28.917827682000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999293358999978, 28.917910644000074 ], [ -81.999311839999962, 28.917939067000077 ], [ -81.99934114499996, 28.917971039000065 ], [ -81.999376113999972, 28.917998541000031 ], [ -81.999415773999942, 28.918020543000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999415773999942, 28.918020543000068 ], [ -81.999458753999988, 28.918036701000062 ], [ -81.999504274999936, 28.918046670000024 ], [ -81.999550965999958, 28.918050108000045 ], [ -81.999578073999942, 28.918048187000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999839520999956, 28.917800182000065 ], [ -81.999840107999944, 28.917791244000057 ], [ -81.999835613999949, 28.917750334000061 ], [ -81.999823696999954, 28.917710457000055 ], [ -81.999804550999954, 28.91767264200007 ], [ -81.999798437999971, 28.917664492000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999798437999971, 28.917664492000029 ], [ -81.999778762999938, 28.917638264000061 ], [ -81.999746917999971, 28.917608011000027 ], [ -81.999710189999973, 28.917582572000072 ], [ -81.99969486599997, 28.917575288000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99969486599997, 28.917575288000023 ], [ -81.99966896799998, 28.917562976000056 ], [ -81.999624815999937, 28.917549225000073 ], [ -81.999578904999964, 28.917541662000076 ], [ -81.999569079999958, 28.917541627000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999418248999973, 28.917569817000071 ], [ -81.999399170999936, 28.917578445000061 ], [ -81.999361464999936, 28.917602509000062 ], [ -81.999328643999945, 28.917632074000039 ], [ -81.999301487999958, 28.917665764000049 ], [ -81.999288381999975, 28.917689266000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999569079999958, 28.917541627000048 ], [ -81.999532017999968, 28.917541318000076 ], [ -81.99948571699997, 28.917547162000062 ], [ -81.999440977999939, 28.917559537000045 ], [ -81.999418248999973, 28.917569817000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998753218, 28.913649184000064 ], [ -81.99875842299997, 28.913644943000065 ], [ -81.998788702999946, 28.913613659000077 ], [ -81.998812731999976, 28.913578250000057 ], [ -81.998827027999937, 28.913546232000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998837347999938, 28.913417363000065 ], [ -81.99882484699998, 28.913377827000033 ], [ -81.998805311999945, 28.913340356000049 ], [ -81.99877913399996, 28.913306322000039 ], [ -81.998771363999936, 28.913298930000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998827027999937, 28.913546232000044 ], [ -81.998829923999949, 28.913539747000073 ], [ -81.998839887999964, 28.913499525000077 ], [ -81.998842427999989, 28.913458616000071 ], [ -81.998837347999938, 28.913417363000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998771363999936, 28.913298930000053 ], [ -81.998747096999978, 28.913276069000062 ], [ -81.998709781999935, 28.913250973000061 ], [ -81.998668563999956, 28.913231721000045 ], [ -81.998660041999983, 28.913229145000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998660041999983, 28.913229145000059 ], [ -81.998624217999975, 28.913218313000073 ], [ -81.998578112999951, 28.913211093000029 ], [ -81.998531228, 28.913211093000029 ], [ -81.998485123999956, 28.913217281000072 ], [ -81.998474158999954, 28.913220412000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998474158999954, 28.913220412000044 ], [ -81.998440583, 28.913229999000066 ], [ -81.998398970999972, 28.913248907000025 ], [ -81.998368916999937, 28.913268536000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998595620999936, 28.913717820000045 ], [ -81.998639448999938, 28.913708883000027 ], [ -81.998683013999937, 28.913693414000079 ], [ -81.998722866999969, 28.913671757000031 ], [ -81.998753218, 28.913649184000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998273649999987, 28.913397707000058 ], [ -81.998269838999988, 28.913408418000074 ], [ -81.998263000999941, 28.913448985000059 ], [ -81.998263780999935, 28.913490238000065 ], [ -81.998272181999937, 28.913530803000072 ], [ -81.998287808999976, 28.913569650000056 ], [ -81.998310273999948, 28.91360574600003 ], [ -81.998339186999942, 28.913638406000075 ], [ -81.998373568999966, 28.913666252000041 ], [ -81.99841263999997, 28.913688942000078 ], [ -81.998455226999965, 28.913705787000026 ], [ -81.99850055099995, 28.913716445000034 ], [ -81.998547044999953, 28.913720571000056 ], [ -81.998593930999959, 28.913718165000034 ], [ -81.998595620999936, 28.913717820000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998368916999937, 28.913268536000032 ], [ -81.998305198999958, 28.913332100000048 ], [ -81.998283905999983, 28.913368883000032 ], [ -81.998273649999987, 28.913397707000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002875887999949, 28.922219136000024 ], [ -82.002881787999968, 28.922216377000041 ], [ -82.002901691999966, 28.922207037000078 ], [ -82.002918941999951, 28.922198864000052 ], [ -82.002942329999939, 28.922184891000029 ], [ -82.002965383999936, 28.922163841000042 ], [ -82.002982633999977, 28.922142827000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003023183999971, 28.922007951000069 ], [ -82.003019034999966, 28.921967820000077 ], [ -82.003003856999953, 28.921919847000026 ], [ -82.002983785999959, 28.921883913000045 ], [ -82.002960067999936, 28.92184863500006 ], [ -82.002928219999944, 28.921822951000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002982633999977, 28.922142827000073 ], [ -82.002992903999939, 28.922123461000069 ], [ -82.00300651699996, 28.922091459000058 ], [ -82.003016964999972, 28.922057202000076 ], [ -82.003023183999971, 28.922007951000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002928219999944, 28.921822951000024 ], [ -82.002899026999955, 28.921801939000034 ], [ -82.002864525999939, 28.921785597000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002764386999957, 28.921759687000076 ], [ -82.002746428999956, 28.921757580000076 ], [ -82.002714583999989, 28.921761083000035 ], [ -82.002693351999937, 28.921765753000045 ], [ -82.002666813999952, 28.921771591000038 ], [ -82.002644256999986, 28.921778596000024 ], [ -82.002617718999943, 28.92178676900005 ], [ -82.002601851999941, 28.921796027000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002864525999939, 28.921785597000053 ], [ -82.002827371999956, 28.921772755000063 ], [ -82.002786236999953, 28.921762249000039 ], [ -82.002764386999957, 28.921759687000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002601851999941, 28.921796027000028 ], [ -82.002577414999962, 28.921812781000028 ], [ -82.00255253499995, 28.921829197000079 ], [ -82.002525581999976, 28.921847440000079 ], [ -82.002502774999982, 28.921872978000067 ], [ -82.002484116999938, 28.921905812000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002484116999938, 28.921905812000034 ], [ -82.002473751999958, 28.921947767000063 ], [ -82.002467532999958, 28.921982424000078 ], [ -82.002463385999988, 28.922020730000042 ], [ -82.002469606999966, 28.922059037000054 ], [ -82.002482048, 28.922095519000038 ], [ -82.002500710999982, 28.922128352000072 ], [ -82.002525589999948, 28.922161186000039 ], [ -82.002554616999987, 28.922186723000038 ], [ -82.002591190999965, 28.922210545000041 ], [ -82.002625110999986, 28.922226852000051 ], [ -82.002658284999939, 28.922239620000028 ], [ -82.002696017999938, 28.922250236000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002696017999938, 28.922250236000025 ], [ -82.002735825999935, 28.922252570000069 ], [ -82.002778537999973, 28.922252386000025 ], [ -82.002818096999988, 28.92224322900006 ], [ -82.002875887999949, 28.922219136000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002764386999957, 28.921759687000076 ], [ -82.002713009, 28.921742307000045 ], [ -82.002674751999962, 28.921722508000073 ], [ -82.002656747999936, 28.921710629000074 ], [ -82.002624115999936, 28.921686872000066 ], [ -82.002607237999939, 28.921669052000027 ], [ -82.002555476999987, 28.921609654000065 ], [ -82.00250258899996, 28.921543327000052 ], [ -82.002481208999939, 28.921513630000049 ], [ -82.002458704999981, 28.921483931000068 ], [ -82.002359682999952, 28.921350287000053 ], [ -82.002217901999984, 28.921177045000036 ], [ -82.002018453999938, 28.920945520000032 ], [ -82.001855294999984, 28.920768566000049 ], [ -82.001668225999936, 28.920575524000071 ], [ -82.00144740199994, 28.92034783500003 ], [ -82.001197041999944, 28.920086733000062 ], [ -82.00096496599997, 28.91984790500004 ], [ -82.000703356999963, 28.919575666000071 ], [ -82.000471283999957, 28.919336838000049 ], [ -82.000194205999946, 28.919047273000047 ], [ -82.000061995999943, 28.918908677000047 ], [ -81.999952288999964, 28.918767607000063 ], [ -81.999858054999947, 28.91861416100005 ], [ -81.999749756999961, 28.918405031000077 ], [ -81.999710376999985, 28.918292422000036 ], [ -81.999690685999951, 28.918221887000072 ], [ -81.999686466999947, 28.918140214000061 ], [ -81.999697717999936, 28.918065968000064 ], [ -81.999735316999988, 28.917988794000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007533113999955, 28.87641962400005 ], [ -82.00798316199996, 28.876254826000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008225078999942, 28.875173701000051 ], [ -82.00815873099998, 28.874929674000043 ], [ -82.008133688999976, 28.874839524000038 ], [ -82.008109832999935, 28.874733356000036 ], [ -82.008087349999983, 28.874576864000062 ], [ -82.008078412999964, 28.874410615000045 ], [ -82.00807462399996, 28.873787553000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00756632699995, 28.875350098000069 ], [ -82.00746772399998, 28.875154490000057 ], [ -82.007437735999986, 28.875086679000049 ], [ -82.00741110599995, 28.875013300000035 ], [ -82.007385281999973, 28.87491415900007 ], [ -82.007370198999979, 28.874814971000035 ], [ -82.007361566999975, 28.874662771000033 ], [ -82.007354865999957, 28.874522372000058 ], [ -82.007346622999989, 28.874373159000072 ], [ -82.007318891999944, 28.874259510000059 ], [ -82.00728961599998, 28.874198254000078 ], [ -82.007252156999982, 28.874142207000034 ], [ -82.007162354999934, 28.87404594800006 ], [ -82.006985929999985, 28.873867593000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008225078999942, 28.875173701000051 ], [ -82.007853754999985, 28.875260003000051 ], [ -82.007687951999969, 28.87530612300003 ], [ -82.00756632699995, 28.875350098000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008802843999945, 28.873786213000074 ], [ -82.008804070999986, 28.874442045000023 ], [ -82.008813374999988, 28.874556018000078 ], [ -82.008835119999958, 28.87467659400005 ], [ -82.008858450999981, 28.874761780000028 ], [ -82.008879485999955, 28.874836134000077 ], [ -82.008880535999936, 28.874839952000059 ], [ -82.008884679999937, 28.874872298000071 ], [ -82.00888054099994, 28.874904645000072 ], [ -82.008868329999984, 28.874935371000049 ], [ -82.008859004999977, 28.874950151000064 ], [ -82.00884012299997, 28.874974618000067 ], [ -82.008797516999948, 28.875019957000063 ], [ -82.008796478999955, 28.875020927000037 ], [ -82.008772815999976, 28.875038799000038 ], [ -82.008741039999961, 28.875053482000055 ], [ -82.008712707999962, 28.875060218000044 ], [ -82.008579947999976, 28.875091223000027 ], [ -82.008225078999942, 28.875173701000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008228025999983, 28.877909714000054 ], [ -82.009297975999971, 28.877522866000049 ], [ -82.010098784999968, 28.877233320000073 ], [ -82.010400904999983, 28.877121853000062 ], [ -82.010483093999937, 28.877088649000029 ], [ -82.010659736999969, 28.877011451000044 ], [ -82.010832551999954, 28.87692781100003 ], [ -82.010878940999987, 28.876903920000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010878940999987, 28.876903920000075 ], [ -82.011001234999981, 28.876837874000046 ], [ -82.011165491999975, 28.876741799000058 ], [ -82.011325032999935, 28.876639753000063 ], [ -82.011479578999968, 28.876531915000044 ], [ -82.011569906999966, 28.87646442700003 ], [ -82.011680674, 28.876376716000038 ], [ -82.01182185, 28.876256300000023 ], [ -82.011957129999985, 28.876130755000077 ], [ -82.01208627799997, 28.876000299000054 ], [ -82.012180628999943, 28.875897515000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006768541999975, 28.873154551000027 ], [ -82.007626131999984, 28.873154353000075 ], [ -82.008579365999935, 28.873154639000063 ], [ -82.008589936999954, 28.873154876000058 ], [ -82.008632017999957, 28.873160548000044 ], [ -82.008671939999942, 28.873173559000065 ], [ -82.008708069999955, 28.873193379000043 ], [ -82.008738926999968, 28.873219193000068 ], [ -82.008739399999968, 28.873219680000034 ], [ -82.008752200999936, 28.873233984000024 ], [ -82.008776714999954, 28.873270094000077 ], [ -82.008793511999954, 28.873309479000056 ], [ -82.008802049999986, 28.873350868000045 ], [ -82.008802150999941, 28.873351890000038 ], [ -82.008802843999945, 28.873786213000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008155381999984, 28.877753896000058 ], [ -82.008155370999987, 28.877753872000028 ], [ -82.007748763999984, 28.87688171800005 ], [ -82.007533113999955, 28.87641962400005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008866829999988, 28.880855852000025 ], [ -82.008866768999951, 28.880854730000067 ], [ -82.008864172999949, 28.880806881000069 ], [ -82.008855251999989, 28.88064745500003 ], [ -82.008844522999937, 28.880455704000042 ], [ -82.008831771999951, 28.880227833000049 ], [ -82.008814692999977, 28.879922595000039 ], [ -82.008805565999978, 28.879785796000078 ], [ -82.008792233999941, 28.879647707000061 ], [ -82.008773177999956, 28.879503272000079 ], [ -82.00875289399994, 28.879378582000072 ], [ -82.008739770999966, 28.879308930000036 ], [ -82.00872303999995, 28.879227273000026 ], [ -82.00869443299996, 28.87910396500007 ], [ -82.008679578999988, 28.879044610000051 ], [ -82.008660372999941, 28.878974307000078 ], [ -82.008631243999957, 28.878874861000043 ], [ -82.008605585999987, 28.878794044000074 ], [ -82.008573368999976, 28.878699271000073 ], [ -82.008527827999956, 28.878575735000027 ], [ -82.008514906999949, 28.878542518000074 ], [ -82.008473882999965, 28.878442515000074 ], [ -82.008403771999951, 28.878285234000032 ], [ -82.008344206999936, 28.878157605000069 ], [ -82.00831089199994, 28.878086220000057 ], [ -82.008262438999964, 28.877982398000029 ], [ -82.008228025999983, 28.877909714000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000082324999937, 28.874364718000038 ], [ -81.999890562999951, 28.874967334000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000082324999937, 28.874364718000038 ], [ -82.000585574999945, 28.874448912000048 ], [ -82.00098670999995, 28.874509877000037 ], [ -82.001588451999964, 28.874602172000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017106201999979, 28.922722776000057 ], [ -82.017217206999987, 28.922737464000079 ], [ -82.017314038999984, 28.922737452000035 ], [ -82.017463205999945, 28.922714408000047 ], [ -82.017549566999946, 28.922693674000072 ], [ -82.017641158999936, 28.922666033000041 ], [ -82.017758214999958, 28.92262185800007 ], [ -82.017831670999954, 28.92259503400004 ], [ -82.017890670999975, 28.922577149000062 ], [ -82.01796412799996, 28.922560983000039 ], [ -82.018059857999958, 28.922544812000069 ], [ -82.018159692999973, 28.922534141000028 ], [ -82.018280040999969, 28.922526907000076 ], [ -82.018483813999978, 28.922514503000059 ], [ -82.018505109999978, 28.922513468000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964133866999987, 28.904431845000033 ], [ -81.964067334999982, 28.904338508000023 ], [ -81.963988404999952, 28.904216379000047 ], [ -81.96391728499998, 28.904094790000045 ], [ -81.963862031999952, 28.904011580000031 ], [ -81.963790964999987, 28.903907052000079 ], [ -81.96374762399995, 28.903841036000074 ], [ -81.963707987999953, 28.90378533300003 ], [ -81.963705840999978, 28.903781895000066 ], [ -81.96369237, 28.903759889000071 ], [ -81.963667966999935, 28.903720348000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964559018999978, 28.904943222000043 ], [ -81.964506013999937, 28.90488463500003 ], [ -81.964404514999956, 28.904772428000058 ], [ -81.964247761999957, 28.904582773000072 ], [ -81.964133866999987, 28.904431845000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966185461999942, 28.906212370000048 ], [ -81.966159515999948, 28.906201443000043 ], [ -81.966036556999939, 28.90615177400008 ], [ -81.965894426999967, 28.906080261000056 ], [ -81.965773730999956, 28.906014710000079 ], [ -81.965649655999982, 28.905934265000042 ], [ -81.965533475999962, 28.905855809000059 ], [ -81.965445499999987, 28.905785302000027 ], [ -81.965354139999988, 28.905708837000077 ], [ -81.965192858999956, 28.905554919000053 ], [ -81.965024810999978, 28.90539603600007 ], [ -81.964957138999978, 28.905331491000027 ], [ -81.964901876999988, 28.905277867000052 ], [ -81.964794732999962, 28.905175586000041 ], [ -81.964702251999938, 28.905087207000065 ], [ -81.964610898999979, 28.904994858000066 ], [ -81.964559018999978, 28.904943222000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966830313999935, 28.906553786000075 ], [ -81.96676864799997, 28.906513317000076 ], [ -81.966672769999946, 28.906453729000077 ], [ -81.966546432999962, 28.906385198000066 ], [ -81.966383997999969, 28.906302760000074 ], [ -81.966262168999947, 28.906246143000033 ], [ -81.966185461999942, 28.906212370000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010515210999984, 28.923466247000079 ], [ -82.010515205, 28.923415024000064 ], [ -82.010515196999961, 28.92334111200006 ], [ -82.010515189999978, 28.923257918000047 ], [ -82.010515185999964, 28.923222853000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010515185999964, 28.923222853000027 ], [ -82.010515182999939, 28.923192601000039 ], [ -82.010515174999966, 28.923113188000059 ], [ -82.010515165999948, 28.923021400000039 ], [ -82.01051515599994, 28.922926174000054 ], [ -82.010515145999989, 28.922825446000047 ], [ -82.01051513699997, 28.922735377000038 ], [ -82.010515125999973, 28.922631212000056 ], [ -82.010515116999954, 28.922534268000049 ], [ -82.010509053999954, 28.922474108000074 ], [ -82.010493025999949, 28.922408791000066 ], [ -82.010466838999946, 28.922343475000048 ], [ -82.010444756999959, 28.922287098000027 ], [ -82.010412705999954, 28.922190155000067 ], [ -82.010378505999938, 28.92209458800005 ], [ -82.010356807999983, 28.921970829000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013181849999967, 28.924714953000034 ], [ -82.013181840999948, 28.924638635000065 ], [ -82.013180258999967, 28.924489779000055 ], [ -82.013173606999942, 28.924422743000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013173606999942, 28.924422743000036 ], [ -82.01316812999994, 28.924364990000072 ], [ -82.013134511999965, 28.924264610000023 ], [ -82.013091713999984, 28.924178669000071 ], [ -82.01306591599996, 28.92412366800005 ], [ -82.013058291999982, 28.924079321000079 ], [ -82.013055332999954, 28.923856211000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009336755999982, 28.92402359600004 ], [ -82.010112472999936, 28.923730393000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006936450999945, 28.922410740000032 ], [ -82.007212735999985, 28.922464167000044 ], [ -82.007599662999951, 28.922533039000029 ], [ -82.007717122999964, 28.922555320000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007717122999964, 28.922555320000072 ], [ -82.008440308, 28.922638355000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009290376999957, 28.92732705700007 ], [ -82.00929039, 28.927476383000055 ], [ -82.009290392999958, 28.927505856000039 ], [ -82.009299836999958, 28.927535095000053 ], [ -82.009335293999982, 28.927594997000028 ], [ -82.00935137099998, 28.927651551000054 ], [ -82.009359616999973, 28.927710445000059 ], [ -82.009355865999964, 28.927841193000063 ], [ -82.009350235999989, 28.92799511100003 ], [ -82.009354010999971, 28.928127514000039 ], [ -82.009359658999983, 28.928177163000043 ], [ -82.009369067999955, 28.928208609000023 ], [ -82.009401055999945, 28.928271498000072 ], [ -82.009425515999965, 28.928317837000066 ], [ -82.009449975999985, 28.928354246000026 ], [ -82.009468793999986, 28.928410516000042 ], [ -82.00946896399995, 28.928448778000075 ], [ -82.009467403999963, 28.928607591000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002668295999968, 28.921305993000033 ], [ -82.002665755999942, 28.921305993000033 ], [ -82.002989287999981, 28.921190822000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00335868999997, 28.919791297000074 ], [ -82.003435664999984, 28.919786139000053 ], [ -82.003913143999966, 28.919752436000067 ], [ -82.003985038999986, 28.919750027000077 ], [ -82.004144850999978, 28.919750022000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001975286999937, 28.919890676000023 ], [ -82.00199072199996, 28.919889989000069 ], [ -82.00224215999998, 28.919867639000074 ], [ -82.00335868999997, 28.919791297000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006947050999941, 28.920237038000039 ], [ -82.006947059999959, 28.920379705000073 ], [ -82.006942766999941, 28.920458087000043 ], [ -82.006921674999944, 28.920573597000043 ], [ -82.006900383999948, 28.920648198000038 ], [ -82.00685389299997, 28.920748927000034 ], [ -82.006819902999951, 28.920815965000031 ], [ -82.006773408999948, 28.920875441000078 ], [ -82.00672241999996, 28.920916697000052 ], [ -82.006624931999966, 28.920942829000069 ], [ -82.006536037999979, 28.920942833000026 ], [ -82.006391854999947, 28.920935277000069 ], [ -82.006239268999934, 28.920912938000072 ], [ -82.006061283999941, 28.920890601000053 ], [ -82.005887598999948, 28.920883045000039 ], [ -82.005718017999982, 28.920883052000079 ], [ -82.005497640999977, 28.920879281000055 ], [ -82.005315553999935, 28.920875507000062 ], [ -82.005179771999963, 28.920875512000066 ], [ -82.004962450999983, 28.920869303000075 ], [ -82.004761217999942, 28.920865331000073 ], [ -82.004586625999934, 28.920860750000031 ], [ -82.004435630999978, 28.920861364000075 ], [ -82.004306749999955, 28.920853410000063 ], [ -82.004243441999961, 28.920833521000077 ], [ -82.004186914999934, 28.920801694000033 ], [ -82.004155257999969, 28.920769867000047 ], [ -82.004130385999986, 28.920732070000042 ], [ -82.004114556, 28.920670404000077 ], [ -82.004112289999966, 28.920533144000046 ], [ -82.004107560999955, 28.920379822000029 ], [ -82.004099151999981, 28.920193496000024 ], [ -82.004099150999934, 28.92018937000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004099150999934, 28.92018937000006 ], [ -82.004103442999963, 28.920014387000037 ], [ -82.004116135999936, 28.919868970000039 ], [ -82.004137231999948, 28.919772024000054 ], [ -82.004144850999978, 28.919750022000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011037740999939, 28.918999273000054 ], [ -82.011112352999987, 28.91899628300007 ], [ -82.011193747999982, 28.918991799000025 ], [ -82.011497282999983, 28.918961935000027 ], [ -82.011721117999969, 28.918936553000037 ], [ -82.012012780999953, 28.918894753000075 ], [ -82.012217960999976, 28.918855944000029 ], [ -82.012273917999948, 28.918838035000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010890973999949, 28.918395165000049 ], [ -82.011041010999975, 28.918374182000036 ], [ -82.011125407999941, 28.918356297000059 ], [ -82.011257471999954, 28.918332566000061 ], [ -82.01140965899998, 28.918308833000026 ], [ -82.011534691999941, 28.918284758000027 ], [ -82.011690392999981, 28.918255179000028 ], [ -82.011776998999949, 28.918242789000033 ], [ -82.011821087999976, 28.918242785000075 ], [ -82.011858395, 28.918251734000023 ], [ -82.011899095, 28.918271125000047 ], [ -82.011940661999972, 28.918299848000061 ], [ -82.012015105999978, 28.918374099000062 ], [ -82.012065713999959, 28.918448693000073 ], [ -82.012129998999967, 28.918540820000032 ], [ -82.012187644999983, 28.918636040000024 ], [ -82.012234934999981, 28.918743294000024 ], [ -82.012273917999948, 28.918838035000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012273917999948, 28.918838035000078 ], [ -82.012289066999983, 28.918871175000049 ], [ -82.012326198999972, 28.918969148000031 ], [ -82.012353362999988, 28.919040651000046 ], [ -82.012394010999969, 28.919147905000045 ], [ -82.012420980999934, 28.919222158000025 ], [ -82.012431149999941, 28.919305696000038 ], [ -82.012427834999983, 28.919353138000076 ], [ -82.012390527999969, 28.919421553000063 ], [ -82.012353411999982, 28.91945421500003 ], [ -82.012275659999943, 28.919487225000069 ], [ -82.012218025999971, 28.919498918000045 ], [ -82.012147109999944, 28.919514050000032 ], [ -82.01204219899995, 28.919528843000023 ], [ -82.011893330999953, 28.919552576000058 ], [ -82.011741141999948, 28.91957356000006 ], [ -82.011605950999979, 28.919591448000062 ], [ -82.011470560999953, 28.919606242000043 ], [ -82.011346432999972, 28.919621393000057 ], [ -82.011219252999979, 28.919634830000064 ], [ -82.011105639999982, 28.919645284000069 ], [ -82.011000502999934, 28.919654244000071 ], [ -82.010849580999945, 28.91964381300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013876838999977, 28.919079005000071 ], [ -82.013851238999962, 28.91902366100004 ], [ -82.01380863299994, 28.918911250000065 ], [ -82.013762510999982, 28.918787838000071 ], [ -82.013712479999981, 28.918654458000049 ], [ -82.01365521799994, 28.918499765000035 ], [ -82.01357939199994, 28.918317570000056 ], [ -82.013503568999965, 28.918154970000046 ], [ -82.013444358999948, 28.91804462500005 ], [ -82.013387103999946, 28.917950092000069 ], [ -82.01331304699994, 28.917841121000038 ], [ -82.013156726999966, 28.917618026000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013246024999944, 28.919279148000044 ], [ -82.013196780999976, 28.919194582000046 ], [ -82.013152417999947, 28.919077359000028 ], [ -82.013095156999952, 28.918926103000047 ], [ -82.013019330999953, 28.91873565700007 ], [ -82.012943503999963, 28.918543838000062 ], [ -82.012888005999969, 28.918423521000079 ], [ -82.012836221999976, 28.918330706000063 ], [ -82.012780727999939, 28.918239610000057 ], [ -82.01271057799994, 28.918134078000037 ], [ -82.01259397299998, 28.917943197000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009823296999969, 28.914219729000024 ], [ -82.009827195999947, 28.914136190000079 ], [ -82.00983714299997, 28.913969458000054 ], [ -82.009838897999941, 28.913933705000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00502226499998, 28.916017260000046 ], [ -82.005762293999965, 28.916018607000069 ], [ -82.007626426999934, 28.916019885000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005022233999966, 28.915377148000061 ], [ -82.005197863999967, 28.915382642000054 ], [ -82.005805824999982, 28.915382617000034 ], [ -82.006577105999952, 28.915380863000053 ], [ -82.006770706999987, 28.915380853000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005015952999941, 28.914753537000024 ], [ -82.005848180999976, 28.914751783000042 ], [ -82.006433672999947, 28.914750037000033 ], [ -82.006564953999941, 28.914757252000072 ], [ -82.006637628999954, 28.914774781000062 ], [ -82.006688228999963, 28.91480159300005 ], [ -82.006728474999989, 28.914838718000055 ], [ -82.006756804999952, 28.914888564000023 ], [ -82.006766967999965, 28.914952506000077 ], [ -82.006770706999987, 28.915380853000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004298984999934, 28.914753561000055 ], [ -82.004298009999957, 28.914777970000046 ], [ -82.004300365999939, 28.91505608500006 ], [ -82.004301536999947, 28.915483614000038 ], [ -82.00430154999998, 28.915802892000045 ], [ -82.004303246999939, 28.91584914200007 ], [ -82.004316814999981, 28.915889424000056 ], [ -82.004335468999955, 28.915925231000074 ], [ -82.004379558999972, 28.915967005000027 ], [ -82.004433821999953, 28.915998334000051 ], [ -82.004498258999945, 28.916016235000029 ], [ -82.004624314999944, 28.916016588000048 ], [ -82.00502226499998, 28.916017260000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006661367999982, 28.912828945000058 ], [ -82.006918423999934, 28.912785327000051 ], [ -82.007112018999976, 28.912768472000039 ], [ -82.00730181299997, 28.912776142000041 ], [ -82.007430004999947, 28.912790975000064 ], [ -82.007615548, 28.912826583000026 ], [ -82.008209285999953, 28.912954182000078 ], [ -82.008670195999969, 28.913053028000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005911763999961, 28.912894695000034 ], [ -82.005933643999981, 28.912894352000023 ], [ -82.006197371999974, 28.912871994000056 ], [ -82.00655291299995, 28.912847417000023 ], [ -82.006661367999982, 28.912828945000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004154720999964, 28.912540328000034 ], [ -82.004174062999937, 28.912550641000053 ], [ -82.004434670999956, 28.912659609000059 ], [ -82.004742749999934, 28.912760326000068 ], [ -82.00503168299997, 28.912821851000047 ], [ -82.005336634999935, 28.912869280000052 ], [ -82.005644712999981, 28.912897114000032 ], [ -82.005911763999961, 28.912894695000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003812061999952, 28.912349541000026 ], [ -82.003945492999947, 28.912427918000049 ], [ -82.004154720999964, 28.912540328000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00439989299997, 28.912024497000061 ], [ -82.004468083999939, 28.912031241000079 ], [ -82.004619890999948, 28.912075759000061 ], [ -82.004818925999984, 28.912146990000053 ], [ -82.004974106999953, 28.912197444000071 ], [ -82.005173142, 28.912244928000064 ], [ -82.00537157399998, 28.912271106000048 ], [ -82.005552471999977, 28.912290695000024 ], [ -82.005874807999987, 28.912299619000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003924146999964, 28.911045246000072 ], [ -82.004208975999973, 28.911164530000065 ], [ -82.004590699999937, 28.911315091000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004590699999937, 28.911315091000063 ], [ -82.004723527999943, 28.911052784000049 ], [ -82.004901281999935, 28.910692155000049 ], [ -82.004967760999989, 28.910536066000077 ], [ -82.005017023999983, 28.910384326000042 ], [ -82.005038917999968, 28.910283166000056 ], [ -82.005047378999961, 28.910166858000025 ], [ -82.005053213999986, 28.909639846000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003924146999964, 28.911045246000072 ], [ -82.003983528999981, 28.910938330000079 ], [ -82.004037088999951, 28.910825123000052 ], [ -82.004086355999959, 28.910728780000056 ], [ -82.004126320999944, 28.910644739000077 ], [ -82.004170857999952, 28.910555356000032 ], [ -82.004218519999938, 28.91047147300003 ], [ -82.004259735999938, 28.910401686000057 ], [ -82.00428845, 28.910337398000024 ], [ -82.004307394999955, 28.910264860000041 ], [ -82.004313839999952, 28.910211575000062 ], [ -82.004320088999975, 28.910144538000054 ], [ -82.00432008599995, 28.910083001000032 ], [ -82.004323208999949, 28.910021465000057 ], [ -82.004326525999943, 28.909951679000073 ], [ -82.004326522999975, 28.909890143000041 ], [ -82.004336092999949, 28.909823106000033 ], [ -82.004345468999986, 28.909775663000062 ], [ -82.004383559999951, 28.909716877000051 ], [ -82.004415399999971, 28.909686279000027 ], [ -82.004510728999946, 28.909649836000028 ], [ -82.00459316599995, 28.909641582000063 ], [ -82.00471076599996, 28.909641578000048 ], [ -82.004837742999939, 28.909644324000055 ], [ -82.004977613999984, 28.90964156800004 ], [ -82.005053213999986, 28.909639846000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005053213999986, 28.909639846000061 ], [ -82.005101463999949, 28.909638814000061 ], [ -82.005193472999963, 28.909636060000025 ], [ -82.005295251999939, 28.909638806000032 ], [ -82.005403084999955, 28.909641552000039 ], [ -82.005539633999945, 28.909638796000024 ], [ -82.00569845299998, 28.909636040000066 ], [ -82.005776982999976, 28.909634661000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006505127999958, 28.910876696000059 ], [ -82.006598445999941, 28.910886138000023 ], [ -82.006739588999949, 28.910882368000046 ], [ -82.007086027999947, 28.910859770000059 ], [ -82.007428189999985, 28.910840935000067 ], [ -82.007744690999971, 28.910829627000055 ], [ -82.008420464999972, 28.910825824000028 ], [ -82.009096318, 28.910825911000074 ], [ -82.009326865999981, 28.910814838000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01191221199997, 28.910385412000039 ], [ -82.011912179999968, 28.910108327000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011912179999968, 28.910108327000046 ], [ -82.011912113999983, 28.909528375000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011906971999963, 28.910695844000031 ], [ -82.011912246999941, 28.910695843000042 ], [ -82.012205273999939, 28.910695817000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999890562999951, 28.874967334000075 ], [ -81.999774380999952, 28.875339814000029 ], [ -81.999738753999964, 28.875456543000041 ], [ -81.999736590999987, 28.875465118000079 ], [ -81.999734865999983, 28.875482475000069 ], [ -81.999736590999987, 28.87549983200006 ], [ -81.999741713999981, 28.875516661000063 ], [ -81.999750079999956, 28.875532452000073 ], [ -81.999761432999946, 28.87554672300007 ], [ -81.999769789999959, 28.875554587000067 ], [ -81.999778063999941, 28.875561163000043 ], [ -81.999810930999956, 28.875580779000074 ], [ -81.999847820999946, 28.875593717000072 ], [ -81.999887009999952, 28.875599371000078 ], [ -81.999893007999958, 28.875599571000066 ], [ -82.000501686999939, 28.875692081000068 ], [ -82.001117953999938, 28.875786161000065 ], [ -82.001188957999943, 28.875800948000062 ], [ -82.001258233999977, 28.875819577000073 ], [ -82.001358813999957, 28.875849511000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001358813999957, 28.875849511000069 ], [ -82.001654475999942, 28.875983665000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999383187999968, 28.874169574000064 ], [ -81.999564974999942, 28.874238258000048 ], [ -81.99977871599998, 28.874296136000055 ], [ -82.000082324999937, 28.874364718000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996750131999988, 28.874334073000057 ], [ -81.996995784999967, 28.874138234000043 ], [ -81.997276714999941, 28.873914271000046 ], [ -81.997470016999955, 28.873755878000054 ], [ -81.99765436399997, 28.873582505000059 ], [ -81.997827314999938, 28.873419953000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999546663, 28.873771477000048 ], [ -81.999112279999963, 28.873611653000069 ], [ -81.998803908999946, 28.873472789000061 ], [ -81.998617858999978, 28.873377621000031 ], [ -81.998409981999941, 28.873260691000041 ], [ -81.998196399999983, 28.873127282000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998196399999983, 28.873127282000041 ], [ -81.998489060999987, 28.87278419300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998489060999987, 28.87278419300003 ], [ -81.998673735999944, 28.87258754000004 ], [ -81.99878715899996, 28.872469496000065 ], [ -81.998791132999941, 28.872465870000042 ], [ -81.998847658999978, 28.872420069000043 ], [ -81.998909563999973, 28.872380019000047 ], [ -81.998976099999936, 28.872346207000078 ], [ -81.999046456999963, 28.872319042000072 ], [ -81.99911978199998, 28.872298855000054 ], [ -81.999195183999973, 28.872285891000047 ], [ -81.999271749999934, 28.872280308000029 ], [ -81.999296197999968, 28.87228009200004 ], [ -81.999983727999961, 28.872247684000058 ], [ -81.999995448999982, 28.872246937000057 ], [ -82.000040467999952, 28.872248825000042 ], [ -82.000084266999977, 28.872258177000049 ], [ -82.000125264999951, 28.872274658000038 ], [ -82.000161976999948, 28.872297669000034 ], [ -82.000193078999985, 28.87232638100005 ], [ -82.000217445999965, 28.872359754000058 ], [ -82.000234196999941, 28.872396585000047 ], [ -82.000242726999943, 28.872435539000037 ], [ -82.000242726999943, 28.87247521200004 ], [ -82.000240720999955, 28.872488908000037 ], [ -82.000222199999939, 28.872733052000058 ], [ -82.000191456999971, 28.872911731000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000191456999971, 28.872911731000045 ], [ -82.000168192999979, 28.873002702000065 ], [ -82.000135326999953, 28.873105587000055 ], [ -82.000051635999966, 28.873316350000039 ], [ -81.99996114399994, 28.873482658000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997914671999979, 28.872392061000028 ], [ -81.998153153999965, 28.872558268000034 ], [ -81.998489060999987, 28.87278419300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997361831999967, 28.871985508000023 ], [ -81.997914671999979, 28.872392061000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997914671999979, 28.872392061000028 ], [ -81.998066758999983, 28.872232430000054 ], [ -81.998272121999946, 28.872013705000029 ], [ -81.99834610399995, 28.871937334000052 ], [ -81.998387384999944, 28.871900532000041 ], [ -81.99845626299998, 28.871847565000053 ], [ -81.998530255999981, 28.871800244000042 ], [ -81.998608771999955, 28.871758954000029 ], [ -81.998691174999976, 28.871724024000059 ], [ -81.998776804999977, 28.871695737000039 ], [ -81.998864968999953, 28.871674320000068 ], [ -81.998954959999935, 28.871659946000079 ], [ -81.999046052999972, 28.87165273100004 ], [ -81.999059587999966, 28.871652275000031 ], [ -81.999517688999958, 28.871630588000073 ], [ -81.99952035299998, 28.871630384000071 ], [ -81.999563961999968, 28.871623210000052 ], [ -81.999605328999962, 28.871609103000026 ], [ -81.99964304699995, 28.871588546000055 ], [ -81.999675831, 28.871562238000024 ], [ -81.999702566999986, 28.871531076000053 ], [ -81.999722340999938, 28.871496121000064 ], [ -81.999734481999951, 28.871458562000043 ], [ -81.999735986999951, 28.871450640000035 ], [ -81.999874607999971, 28.871008681000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999874607999971, 28.871008681000035 ], [ -81.999957716999972, 28.870750614000031 ], [ -82.000037426999938, 28.870536710000067 ], [ -82.000118416999953, 28.870323381000048 ], [ -82.000215473999958, 28.870067731000063 ], [ -82.000250688999984, 28.869971287000055 ], [ -82.000267846999975, 28.869915590000062 ], [ -82.000288293999972, 28.869833462000031 ], [ -82.000297779999983, 28.869782709000049 ], [ -82.000357178999934, 28.869421564000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997361831999967, 28.871985508000023 ], [ -81.997784370999966, 28.871534848000067 ], [ -81.998009950999972, 28.871291788000065 ], [ -81.998037175999968, 28.871262963000049 ], [ -81.998092894999957, 28.871212639000078 ], [ -81.998154200999977, 28.871167624000066 ], [ -81.998220436999986, 28.871128396000074 ], [ -81.998235529999988, 28.871120620000056 ], [ -81.998301033999951, 28.871091560000025 ], [ -81.998375747999944, 28.871066315000064 ], [ -81.998453052999935, 28.871048084000051 ], [ -81.998532096999952, 28.871037064000063 ], [ -81.998558334999984, 28.871035039000049 ], [ -81.998962812999935, 28.871017926000036 ], [ -81.999118381999949, 28.871011080000073 ], [ -81.999169830999961, 28.871007554000073 ], [ -81.999232079999956, 28.870996656000045 ], [ -81.999277838999944, 28.870983693000028 ], [ -81.999437296999986, 28.870966577000047 ], [ -81.999499525999965, 28.870959730000038 ], [ -81.999612311999954, 28.870963155000027 ], [ -81.999725099999978, 28.870973425000045 ], [ -81.999874607999971, 28.871008681000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998196399999983, 28.873127282000041 ], [ -81.997758517999955, 28.872831380000036 ], [ -81.99704911699996, 28.872314695000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99704911699996, 28.872314695000057 ], [ -81.996489796999981, 28.871867406000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99704911699996, 28.872314695000057 ], [ -81.997361831999967, 28.871985508000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007533113999955, 28.87641962400005 ], [ -82.007343619999972, 28.876013576000048 ], [ -82.007025615999964, 28.875335611000025 ], [ -82.006881100999976, 28.875097667000034 ], [ -82.006834727999944, 28.875034628000037 ], [ -82.006753795999941, 28.874935358000073 ], [ -82.00666632399998, 28.874840482000025 ], [ -82.006572620999975, 28.874750335000044 ], [ -82.006473015999973, 28.874665231000051 ], [ -82.006367857999976, 28.874585471000046 ], [ -82.006257514999959, 28.874511335000079 ], [ -82.006142377999936, 28.874443082000028 ], [ -82.006022849999965, 28.874380952000024 ], [ -82.005899349999936, 28.874325165000073 ], [ -82.005772311999976, 28.874275915000055 ], [ -82.005642182999964, 28.874233375000074 ], [ -82.005509419999953, 28.874197696000067 ], [ -82.005481557999985, 28.874191157000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005481557999985, 28.874191157000041 ], [ -82.005374488999962, 28.874169002000031 ], [ -82.005237861999944, 28.874147394000033 ], [ -82.005100021999965, 28.874132948000067 ], [ -82.004961451999975, 28.874125715000048 ], [ -82.00482263899994, 28.874125720000052 ], [ -82.00468406899995, 28.874132963000079 ], [ -82.00454622999996, 28.874147419000053 ], [ -82.004435918999945, 28.874164299000029 ], [ -82.004354973999966, 28.874177782000061 ], [ -82.004221522999956, 28.874208597000063 ], [ -82.004059629999972, 28.874243264000029 ], [ -82.00390211399997, 28.874277931000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00390211399997, 28.874277931000051 ], [ -82.003786220999984, 28.873861220000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004475534999983, 28.87240911300006 ], [ -82.004795745999957, 28.872343693000062 ], [ -82.004952500999934, 28.872315041000036 ], [ -82.005090392999989, 28.872309973000029 ], [ -82.005673461999947, 28.872356452000076 ], [ -82.005789102999984, 28.872375012000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004410494999945, 28.870740135000062 ], [ -82.00444553899996, 28.870706394000024 ], [ -82.004487963999964, 28.87065622800003 ], [ -82.004523486999972, 28.87060206600006 ], [ -82.004551623999987, 28.870544639000059 ], [ -82.00457199799996, 28.870484726000029 ], [ -82.004584333999958, 28.870423135000067 ], [ -82.004588461999958, 28.870360702000028 ], [ -82.004584327999964, 28.870298267000067 ], [ -82.004583342999979, 28.870291250000037 ], [ -82.004454086999942, 28.869428858000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003868472999955, 28.870635919000051 ], [ -82.00386802099996, 28.870315388000051 ], [ -82.00386197499995, 28.87027310600007 ], [ -82.003837172999965, 28.870179144000076 ], [ -82.003794522999954, 28.870025716000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00366539099997, 28.869446864000054 ], [ -82.003991461999988, 28.869448939000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003794522999954, 28.870025716000043 ], [ -82.003698266999947, 28.869679438000048 ], [ -82.003684803999988, 28.869603992000066 ], [ -82.00366539099997, 28.869446864000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002082126999937, 28.869436301000064 ], [ -82.002230255999962, 28.869440462000057 ], [ -82.003235633999964, 28.869444128000055 ], [ -82.00366539099997, 28.869446864000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001740677999976, 28.869436938000035 ], [ -82.001804968999977, 28.869435728000042 ], [ -82.002048074999948, 28.869435724000027 ], [ -82.002082126999937, 28.869436301000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003748589999987, 28.871824970000034 ], [ -82.003752155999962, 28.871670694000045 ], [ -82.003763807999974, 28.871608260000073 ], [ -82.003780602999939, 28.871556228000031 ], [ -82.003810327999986, 28.871483339000065 ], [ -82.003846949999968, 28.871391686000038 ], [ -82.003875653999955, 28.871287358000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003875653999955, 28.871287358000075 ], [ -82.003896611999949, 28.871197277000078 ], [ -82.003900122999937, 28.871095162000074 ], [ -82.003900118, 28.870968292000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002138300999945, 28.874092816000029 ], [ -82.002154021999957, 28.874043485000072 ], [ -82.002177236999955, 28.873964611000076 ], [ -82.002214255999945, 28.87381481500006 ], [ -82.00221778699995, 28.873798454000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00309877799998, 28.872449227000061 ], [ -82.003420506999987, 28.872474933000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002400896999973, 28.872433407000074 ], [ -82.002512699999954, 28.872434094000027 ], [ -82.002720855999939, 28.872434534000035 ], [ -82.002934766999942, 28.872436124000046 ], [ -82.00309877799998, 28.872449227000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00213275599998, 28.872434006000049 ], [ -82.002215650999972, 28.872433483000066 ], [ -82.002400896999973, 28.872433407000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00221778699995, 28.873798454000053 ], [ -82.002233139999987, 28.873721135000039 ], [ -82.002246333999949, 28.87365604200005 ], [ -82.002274500999988, 28.873485478000077 ], [ -82.002309468999954, 28.873267061000035 ], [ -82.002345890999948, 28.873037005000072 ], [ -82.00236332299994, 28.87289191800005 ], [ -82.002376219999974, 28.872712684000078 ], [ -82.002387990999978, 28.872536586000024 ], [ -82.002390163999962, 28.872510007000074 ], [ -82.002400896999973, 28.872433407000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003786220999984, 28.873861220000038 ], [ -82.003747491999945, 28.873721968000041 ], [ -82.00370368199998, 28.873562867000032 ], [ -82.003698264999969, 28.873455850000028 ], [ -82.003705292999939, 28.873403245000077 ], [ -82.003724880999982, 28.873295191000068 ], [ -82.003747497999939, 28.873153910000042 ], [ -82.003768996999952, 28.872952191000024 ], [ -82.003780641999981, 28.872772593000036 ], [ -82.003789297999958, 28.872639087000039 ], [ -82.003793106999979, 28.872610867000049 ], [ -82.003805685999964, 28.87257074200005 ], [ -82.003826201999971, 28.872533239000063 ], [ -82.003853432999961, 28.872500134000063 ], [ -82.003863922999983, 28.872490223000057 ], [ -82.003896967999935, 28.872466351000071 ], [ -82.003934669999978, 28.872448610000049 ], [ -82.003975579999974, 28.872437687000058 ], [ -82.00401812299998, 28.87243399700003 ], [ -82.004042727999945, 28.872435221000046 ], [ -82.004338917999974, 28.872433791000049 ], [ -82.004475534999983, 28.87240911300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00081505199995, 28.873624027000062 ], [ -82.001302704999944, 28.873701087000029 ], [ -82.001507398999934, 28.873730817000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001507398999934, 28.873730817000023 ], [ -82.001821965999966, 28.873776503000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000640744999941, 28.872472740000035 ], [ -82.00097440199994, 28.872465308000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00081505199995, 28.873624027000062 ], [ -82.000858928999946, 28.873409047000052 ], [ -82.000918502, 28.873036968000065 ], [ -82.000941520999959, 28.872892593000074 ], [ -82.000955614999953, 28.872773684000038 ], [ -82.00097440199994, 28.872465308000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00390211399997, 28.874277931000051 ], [ -82.003826470999968, 28.874295811000025 ], [ -82.003679225999974, 28.874324860000058 ], [ -82.003530387999945, 28.874346726000056 ], [ -82.003380407999941, 28.874361342000043 ], [ -82.003229738999948, 28.874368662000052 ], [ -82.003078842999969, 28.874368665000077 ], [ -82.003070769999965, 28.874368459000038 ], [ -82.002756674999944, 28.874336505000031 ], [ -82.002191745999937, 28.874250653000047 ], [ -82.001074646999939, 28.874080880000065 ], [ -82.000711752999962, 28.874024698000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000711752999962, 28.874024698000028 ], [ -82.000314948999971, 28.873963266000032 ], [ -81.999546663, 28.873771477000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000711752999962, 28.874024698000028 ], [ -82.00081505199995, 28.873624027000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.168376887999955, 28.575953689000073 ], [ -82.168614889999958, 28.575974132000056 ], [ -82.168955145999973, 28.575973708000049 ], [ -82.16932428299998, 28.575967580000054 ], [ -82.169802587999982, 28.575981152000054 ], [ -82.170107574999975, 28.57600627100004 ], [ -82.170203928999968, 28.576040154000054 ], [ -82.170300300999941, 28.576085370000044 ], [ -82.170371028999966, 28.576153288000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.168295126999965, 28.577835105000077 ], [ -82.168321517999971, 28.577531501000067 ], [ -82.16839489299997, 28.576909489000059 ], [ -82.16839089299998, 28.576413615000035 ], [ -82.168413126999951, 28.576266242000031 ], [ -82.168393611999988, 28.576104752000049 ], [ -82.168376887999955, 28.575953689000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.168376887999955, 28.575953689000073 ], [ -82.16837405299998, 28.575917759000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136606419999964, 28.657553073000031 ], [ -82.136624490999964, 28.657410140000025 ], [ -82.136633438999979, 28.657271241000046 ], [ -82.136646995999968, 28.657166558000029 ], [ -82.136694701999943, 28.65699944000005 ], [ -82.136740221999958, 28.656906801000048 ], [ -82.136813164999978, 28.656844328000034 ], [ -82.13691345999996, 28.656755660000044 ], [ -82.136979544999974, 28.656683129000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136606419999964, 28.657553073000031 ], [ -82.136581277999937, 28.657522905000064 ], [ -82.136492121999936, 28.65740222200003 ], [ -82.136405221999951, 28.657261407000078 ], [ -82.136352579999937, 28.657140687000037 ], [ -82.136331933999941, 28.657058179000046 ], [ -82.136329513999954, 28.656951499000058 ], [ -82.136336170999982, 28.65680455100005 ], [ -82.136358724, 28.65659921300005 ], [ -82.136374622999938, 28.656540824000047 ], [ -82.13639511699995, 28.656506583000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102741187999982, 28.755626882000058 ], [ -82.10204323499994, 28.755614636000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10204323499994, 28.755614636000075 ], [ -82.101566419999983, 28.755594848000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10204323499994, 28.755614636000075 ], [ -82.10202484499996, 28.755143782000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071661240999958, 28.793877310000028 ], [ -82.071979788999954, 28.793877140000063 ], [ -82.072359783999957, 28.793877370000075 ], [ -82.072906427999953, 28.793877076000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070480079999982, 28.793881463000048 ], [ -82.070738965999965, 28.793878901000028 ], [ -82.071143822999943, 28.793878689000053 ], [ -82.071311822999974, 28.793876174000047 ], [ -82.071661240999958, 28.793877310000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071661240999958, 28.793877310000028 ], [ -82.071928397999955, 28.795103838000045 ], [ -82.071954988999948, 28.795225924000079 ], [ -82.071980849999989, 28.795351950000054 ], [ -82.072016541999972, 28.795447128000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993386490999967, 28.811749527000075 ], [ -81.993463548999955, 28.811305727000047 ], [ -81.993475046999947, 28.811214630000052 ], [ -81.993471218999957, 28.811153898000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98924931099998, 28.875099970000065 ], [ -81.989338670999985, 28.875175141000057 ], [ -81.989400225999987, 28.875253807000036 ], [ -81.989481640999941, 28.875344709000046 ], [ -81.989602725999987, 28.875435315000061 ], [ -81.989777525999955, 28.875542259000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06847425899997, 28.803527379000059 ], [ -82.067434477999939, 28.803524869000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067447075999951, 28.801702259000024 ], [ -82.067443710999953, 28.801823566000053 ], [ -82.067439588999946, 28.802480554000056 ], [ -82.067441069999973, 28.803069974000039 ], [ -82.067434477999939, 28.803524869000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068374516999938, 28.736481266000055 ], [ -82.069792753999934, 28.734125567000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010619940999959, 28.906936242000029 ], [ -82.010753836999982, 28.906946943000037 ], [ -82.010875560999978, 28.906966212000043 ], [ -82.010985113999936, 28.906994051000027 ], [ -82.011099537999939, 28.907030458000065 ], [ -82.011194486999955, 28.907069009000054 ], [ -82.011279695999974, 28.907109702000071 ], [ -82.011362472999963, 28.907158964000075 ], [ -82.011450120999939, 28.907223222000027 ], [ -82.011535332999983, 28.907283194000058 ], [ -82.011601069999983, 28.907345311000029 ], [ -82.011674114999948, 28.907426706000024 ], [ -82.011730116999956, 28.907514529000025 ], [ -82.011761771999943, 28.907583075000048 ], [ -82.011793520999959, 28.907656861000078 ], [ -82.011813844999949, 28.907730771000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010632030999943, 28.906132938000042 ], [ -82.010792703999982, 28.906135067000037 ], [ -82.010946074999936, 28.906152191000047 ], [ -82.011148135999974, 28.906180023000047 ], [ -82.011316117999968, 28.906229278000069 ], [ -82.011493839999957, 28.906302096000047 ], [ -82.011666692999938, 28.906374914000025 ], [ -82.01181520199998, 28.906452018000039 ], [ -82.01195884699996, 28.906556971000043 ], [ -82.012119533999964, 28.906674774000066 ], [ -82.01229239099996, 28.906781866000074 ], [ -82.012380037999947, 28.906813990000046 ], [ -82.012501760999953, 28.906822547000047 ], [ -82.012664869999981, 28.906826817000024 ], [ -82.012810935999937, 28.906826803000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010619940999959, 28.906936242000029 ], [ -82.010650439999949, 28.906554117000042 ], [ -82.010653350999974, 28.906367789000058 ], [ -82.010644210999942, 28.906201486000043 ], [ -82.010632030999943, 28.906132938000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009655890999966, 28.906882762000066 ], [ -82.009680227999979, 28.906807784000023 ], [ -82.009709430999976, 28.906683539000028 ], [ -82.009728892999988, 28.906544298000028 ], [ -82.009733749999953, 28.906424337000033 ], [ -82.009721565999939, 28.906289383000058 ], [ -82.009692338999969, 28.906139434000067 ], [ -82.009636330999967, 28.905972352000049 ], [ -82.009541370999955, 28.905785992000062 ], [ -82.009408371999939, 28.905565629000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99115476299994, 28.878820962000077 ], [ -81.99100167499995, 28.87858065000006 ], [ -81.990616619999969, 28.877917474000071 ], [ -81.990488330999938, 28.87774076200003 ], [ -81.990435379999951, 28.877668872000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990435379999951, 28.877668872000072 ], [ -81.990316745999962, 28.877538728000047 ], [ -81.990075528999967, 28.87731341600005 ], [ -81.989958367999975, 28.877195491000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978166850999969, 28.918013131000066 ], [ -81.978248717999975, 28.917536383000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994930103999934, 28.908364042000073 ], [ -81.995014604999938, 28.908333294000045 ], [ -81.995113279999941, 28.908305671000051 ], [ -81.995223166999949, 28.90829975500003 ], [ -81.995364448999965, 28.908311600000047 ], [ -81.99549676099997, 28.908337257000028 ], [ -81.995642526999973, 28.908364887000062 ], [ -81.995785889, 28.908394370000053 ], [ -81.99598181999994, 28.908439755000074 ], [ -81.996196441999984, 28.908493168000064 ], [ -81.996333239999956, 28.908528691000072 ], [ -81.996471746999987, 28.908562497000048 ], [ -81.99661630199995, 28.908594128000061 ], [ -81.996732417999965, 28.908609606000027 ], [ -81.996827666999934, 28.908621291000031 ], [ -81.996927521999964, 28.908633290000068 ], [ -81.997013612999979, 28.908638060000044 ], [ -81.997103317999972, 28.908640036000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997103317999972, 28.908640036000065 ], [ -81.997213203999934, 28.908638065000048 ], [ -81.997343383999976, 28.908639523000033 ], [ -81.997565298999973, 28.908639527000048 ], [ -81.997726757999942, 28.908643994000045 ], [ -81.997879807999936, 28.908675973000072 ], [ -81.997984655999971, 28.908711090000054 ], [ -81.998055228999988, 28.908748512000045 ], [ -81.998137149999934, 28.908799890000068 ], [ -81.998204862999955, 28.908853023000063 ], [ -81.998261512999989, 28.908911810000063 ], [ -81.998332252999944, 28.908993275000057 ], [ -81.998419713999965, 28.909076155000037 ], [ -81.99849820299994, 28.909139300000049 ], [ -81.998610331999942, 28.909218233000047 ], [ -81.998715734999962, 28.909281380000039 ], [ -81.998827863999963, 28.909334659000024 ], [ -81.998968081999976, 28.909388293000063 ], [ -81.99904036099997, 28.909410983000043 ], [ -81.999094733999982, 28.909423459000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999094733999982, 28.909423459000038 ], [ -81.999177710999959, 28.909437273000037 ], [ -81.999283113, 28.909451086000047 ], [ -81.999388516999943, 28.909460954000053 ], [ -81.999507373999961, 28.909464901000035 ], [ -81.999639687999945, 28.909464901000035 ], [ -81.999731635999979, 28.909464901000035 ], [ -81.999832552999976, 28.909464901000035 ], [ -81.999933469999974, 28.909466875000078 ], [ -82.000029902999984, 28.909462928000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001685007999981, 28.91018241200004 ], [ -82.001707275999934, 28.910107812000035 ], [ -82.001741851999952, 28.910002615000053 ], [ -82.001776623999945, 28.909916671000076 ], [ -82.00180807299995, 28.90984172800006 ], [ -82.001852220999979, 28.909753032000026 ], [ -82.001902618999964, 28.909656086000041 ], [ -82.001953016999948, 28.909570141000074 ], [ -82.002006541999947, 28.909497947000034 ], [ -82.002066316999958, 28.909417502000053 ], [ -82.002122257999986, 28.909352407000029 ], [ -82.00218504999998, 28.909283342000037 ], [ -82.002234385999941, 28.909234009000045 ], [ -82.002297177999935, 28.909172836000039 ], [ -82.002349957999968, 28.909118067000065 ], [ -82.002422429999967, 28.909054467000033 ], [ -82.002492279999956, 28.909001156000045 ], [ -82.002602165999974, 28.90892616900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000117834999969, 28.911876832000075 ], [ -82.000195205999944, 28.911845754000069 ], [ -82.000276926999959, 28.911812958000041 ], [ -82.00034295599994, 28.911790613000051 ], [ -82.000431255999956, 28.911760016000073 ], [ -82.000513446999946, 28.911731384000063 ], [ -82.000594181999986, 28.911703758000044 ], [ -82.000664311999969, 28.911682666000047 ], [ -82.000721158999966, 28.911665821000042 ], [ -82.000803011999949, 28.911641068000051 ], [ -82.000884864999989, 28.911613221000039 ], [ -82.00094200999996, 28.911591197000064 ], [ -82.001010866999934, 28.911555121000049 ], [ -82.001070839999954, 28.91152177500004 ], [ -82.001143315999968, 28.911474677000058 ], [ -82.001206081999953, 28.911429879000025 ], [ -82.001263268999935, 28.911383999000066 ], [ -82.001320456999963, 28.911330720000024 ], [ -82.001365868999983, 28.911281880000047 ], [ -82.001401568999938, 28.91123609300007 ], [ -82.001442591999989, 28.911180745000024 ], [ -82.00148048899996, 28.911125396000045 ], [ -82.001517245999935, 28.911058404000073 ], [ -82.00155424899998, 28.910978486000033 ], [ -82.001589567999986, 28.910880808000059 ], [ -82.001611431999947, 28.910796449000031 ], [ -82.001624885999945, 28.910700251000037 ], [ -82.001629931999958, 28.91062921300005 ], [ -82.001638339999943, 28.910516736000034 ], [ -82.001647309999953, 28.910418244000027 ], [ -82.001656837999974, 28.910348020000072 ], [ -82.001663130999987, 28.91029654700003 ], [ -82.001673656999969, 28.910231102000068 ], [ -82.001685007999981, 28.91018241200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978230613999983, 28.906645687000037 ], [ -81.97821098299994, 28.906588887000055 ], [ -81.97817731799995, 28.90652714600003 ], [ -81.978121208999937, 28.906435768000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978121208999937, 28.906435768000051 ], [ -81.978028627999947, 28.906294995000053 ], [ -81.977902372999949, 28.906144339000036 ], [ -81.977708431999986, 28.90590693300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977708431999986, 28.90590693300004 ], [ -81.977506421999976, 28.905675389000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977506421999976, 28.905675389000066 ], [ -81.977300209999953, 28.905421622000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977300209999953, 28.905421622000063 ], [ -81.977257576999989, 28.905385499000033 ], [ -81.977208182999959, 28.905353461000061 ], [ -81.977154374999941, 28.905327502000034 ], [ -81.977097114999935, 28.905308085000058 ], [ -81.977068711999948, 28.905301198000075 ], [ -81.97683509999996, 28.90522522200007 ], [ -81.976822713999979, 28.905221306000044 ], [ -81.976740363999966, 28.90519077600004 ], [ -81.976661626999942, 28.905153595000058 ], [ -81.976587194, 28.905110090000051 ], [ -81.976517716999979, 28.905060642000024 ], [ -81.976466810999966, 28.905017727000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976466810999966, 28.905017727000029 ], [ -81.97644029199995, 28.904992453000034 ], [ -81.976389754999957, 28.904936244000055 ], [ -81.976346052999986, 28.904875759000049 ], [ -81.976309649999962, 28.904811641000038 ], [ -81.976280932999941, 28.904744569000059 ], [ -81.976269033999984, 28.904708396000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979301957999951, 28.904871878000051 ], [ -81.979276707999986, 28.904836685000078 ], [ -81.97921778999995, 28.904753331000052 ], [ -81.979163077999942, 28.904699613000048 ], [ -81.979087318999973, 28.904640335000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979087318999973, 28.904640335000067 ], [ -81.978979992999939, 28.904556976000038 ], [ -81.978841100999944, 28.904445829000053 ], [ -81.978775862999953, 28.904397665000033 ], [ -81.978721148999966, 28.904349502000059 ], [ -81.978698003999966, 28.904323570000031 ], [ -81.978679065999984, 28.90429208200004 ], [ -81.978651711999987, 28.904255036000052 ], [ -81.978599110999937, 28.904171684000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977689178999981, 28.908651242000076 ], [ -81.977745595999977, 28.908410815000025 ], [ -81.977786207999941, 28.90824023700003 ], [ -81.977847136999969, 28.907938749000039 ], [ -81.977874242999974, 28.907678911000062 ], [ -81.977878980999947, 28.90748872000006 ], [ -81.977862526999957, 28.907222372000035 ], [ -81.977854072999946, 28.90712351600007 ], [ -81.977836060999948, 28.907022353000059 ], [ -81.977791008999986, 28.906871595000041 ], [ -81.977698625999949, 28.906681161000051 ], [ -81.977627822999978, 28.906569233000027 ], [ -81.977526982999962, 28.906447497000045 ], [ -81.977452984999957, 28.906369704000042 ], [ -81.977338042999975, 28.906268524000041 ], [ -81.977227605999985, 28.906191148000062 ], [ -81.97710048, 28.90611057600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97710048, 28.90611057600006 ], [ -81.976943608999989, 28.90604630200005 ], [ -81.976722716999973, 28.905962955000064 ], [ -81.976567189999969, 28.905913339000051 ], [ -81.976443217999986, 28.905875630000025 ], [ -81.976310865999949, 28.905846802000042 ], [ -81.97610285199994, 28.905804163000028 ], [ -81.97594957299998, 28.905782316000057 ], [ -81.975593419999939, 28.905750516000069 ], [ -81.975180901999977, 28.905756391000068 ], [ -81.974932937999938, 28.905770229000041 ], [ -81.974636829999952, 28.90578084200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973947857999974, 28.908502106000071 ], [ -81.97419814899996, 28.908426569000028 ], [ -81.974392009999974, 28.908368412000073 ], [ -81.974702477999983, 28.908270466000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974296606999985, 28.909327985000061 ], [ -81.975018021999972, 28.909117072000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979903267999987, 28.912076856000056 ], [ -81.980001533999939, 28.912060713000074 ], [ -81.980157430999952, 28.912034265000045 ], [ -81.980249248999939, 28.912020183000038 ], [ -81.980349273999934, 28.912004384000056 ], [ -81.980451251999966, 28.911986866000063 ], [ -81.980549126999961, 28.911972785000046 ], [ -81.980642057999944, 28.911959717000059 ], [ -81.980751952999981, 28.911943947000054 ], [ -81.980816991999973, 28.91193211600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980816991999973, 28.91193211600006 ], [ -81.980877545999988, 28.911920286000054 ], [ -81.98095155599998, 28.911906483000053 ], [ -81.981020724999951, 28.911895503000039 ], [ -81.98110668299995, 28.911881421000032 ], [ -81.981184631999952, 28.911867337000047 ], [ -81.981268635999982, 28.911853253000061 ], [ -81.981354593999981, 28.911837451000054 ], [ -81.981440551999981, 28.911823368000057 ], [ -81.981530416999988, 28.911807568000029 ], [ -81.981642317999956, 28.911788182000066 ], [ -81.981734270999937, 28.911768461000065 ], [ -81.981850222999981, 28.911742636000042 ], [ -81.981956302999947, 28.911717187000079 ], [ -81.982043770999951, 28.91169351800005 ], [ -81.98212411999998, 28.911672199000066 ], [ -81.982202068999982, 28.911649521000072 ], [ -81.982283926999969, 28.911624779000078 ], [ -81.982355820999942, 28.911602099000049 ], [ -81.982441780999977, 28.911575639000034 ], [ -81.982523832999959, 28.911550897000041 ], [ -81.982593773999952, 28.911528217000068 ], [ -81.982657656999947, 28.911508975000061 ], [ -81.982711575999986, 28.91149316800005 ], [ -81.98278561799998, 28.911479082000028 ], [ -81.982829573999936, 28.911473587000046 ], [ -81.982891499999937, 28.911473595000075 ], [ -81.983002260999967, 28.911488667000071 ], [ -81.983104856999944, 28.911522719000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980163988999948, 28.907868355000062 ], [ -81.980138739999973, 28.907818961000032 ], [ -81.980068607999954, 28.907673254000031 ], [ -81.980009700999972, 28.907522611000047 ], [ -81.979970433999938, 28.907409011000027 ], [ -81.979933976999973, 28.907268248000037 ], [ -81.979917150999938, 28.90719910100006 ], [ -81.979905943999938, 28.90711267100005 ], [ -81.979894731999934, 28.907036115000039 ], [ -81.979889127999968, 28.90698919600004 ], [ -81.979889137999976, 28.906939807000072 ], [ -81.979883532999963, 28.906897826000034 ], [ -81.979872318999981, 28.906838558000061 ], [ -81.979861099999937, 28.906801514000051 ], [ -81.979835855999966, 28.906739775000062 ], [ -81.979804998999953, 28.906673096000077 ], [ -81.979771333999963, 28.906606416000045 ], [ -81.979701199999965, 28.906475526000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979877365999982, 28.907957519000036 ], [ -81.980022606999967, 28.907914943000037 ], [ -81.980163988999948, 28.907868355000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980163988999948, 28.907868355000062 ], [ -81.980361503999973, 28.907802017000051 ], [ -81.980550950999941, 28.907733517000054 ], [ -81.980814070999941, 28.907631692000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980814070999941, 28.907631692000052 ], [ -81.981230857999947, 28.907448395000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971341937999966, 28.892665611000041 ], [ -81.97134196199994, 28.892579322000074 ], [ -81.971342043999982, 28.892282642000055 ], [ -81.971342125999968, 28.891983554000035 ], [ -81.971344110999951, 28.89186770200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971344110999951, 28.89186770200007 ], [ -81.97134512599996, 28.891724689000057 ], [ -81.971348299999988, 28.891546958000049 ], [ -81.971348323999962, 28.891457918000071 ], [ -81.971348350999961, 28.891360630000065 ], [ -81.971348388999957, 28.891223461000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971341937999966, 28.892665611000041 ], [ -81.971194864999973, 28.892665579000038 ], [ -81.97108822499996, 28.892665287000057 ], [ -81.970989589999988, 28.892649378000044 ], [ -81.970861081999942, 28.892611534000025 ], [ -81.970710892999989, 28.892573686000048 ], [ -81.970621214999937, 28.892539921000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970621214999937, 28.892539921000036 ], [ -81.970536705999962, 28.892528159000051 ], [ -81.970401526999979, 28.892511738000053 ], [ -81.970242347999942, 28.892495545000031 ], [ -81.970021641999949, 28.892489996000052 ], [ -81.96982573799994, 28.892489952000062 ], [ -81.969740514999955, 28.892492753000056 ], [ -81.969684909999955, 28.89251035500007 ], [ -81.969647094999971, 28.892533834000062 ], [ -81.969600377999939, 28.892576883000061 ], [ -81.969580353999959, 28.892608194000047 ], [ -81.969564767999941, 28.892662993000044 ], [ -81.969555846999981, 28.892753026000037 ], [ -81.969544677999977, 28.892919390000031 ], [ -81.969546660999981, 28.893056093000041 ], [ -81.969546639999976, 28.893126224000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969546639999976, 28.893126224000071 ], [ -81.969546612999977, 28.893220419000045 ], [ -81.969555932999981, 28.893406405000064 ], [ -81.969565079999938, 28.893522259000065 ], [ -81.969571170999984, 28.893590732000064 ], [ -81.969588943999952, 28.893653368000059 ], [ -81.969624515999953, 28.893700351000064 ], [ -81.969689000999949, 28.893743424000036 ], [ -81.969755716999941, 28.893761055000027 ], [ -81.96990193399995, 28.893767793000052 ], [ -81.970058190999964, 28.893767828000023 ], [ -81.970216090999941, 28.893774858000029 ], [ -81.970331732999966, 28.893800327000065 ], [ -81.97041033499994, 28.893829786000026 ], [ -81.970505249999974, 28.89386212200003 ], [ -81.970594112999947, 28.893889300000069 ], [ -81.970664617999944, 28.893908223000039 ], [ -81.970750357999975, 28.893927150000025 ], [ -81.970836101999964, 28.893932325000037 ], [ -81.970967745999985, 28.893940604000079 ], [ -81.971053686999937, 28.893940622000059 ], [ -81.971130252999956, 28.893937889000028 ], [ -81.971182208999949, 28.89393239900005 ], [ -81.971240422999983, 28.893900097000028 ], [ -81.971276935999981, 28.893867079000074 ], [ -81.971305858999983, 28.893829898000035 ], [ -81.971323272999939, 28.893781511000043 ], [ -81.971332483999959, 28.893662910000046 ], [ -81.971335469999985, 28.893463519000079 ], [ -81.971335513999975, 28.893303662000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971335513999975, 28.893303662000051 ], [ -81.971335550999981, 28.893169589000024 ], [ -81.971341890999952, 28.892838188000042 ], [ -81.971341937999966, 28.892665611000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961029183999983, 28.950673299000073 ], [ -81.961164572999962, 28.950568545000067 ], [ -81.961696366999945, 28.950172604000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961029183999983, 28.950673299000073 ], [ -81.962013357999979, 28.951662796000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994326924999939, 28.909392073000049 ], [ -81.994322685999975, 28.909366176000049 ], [ -81.994305301999987, 28.909320108000031 ], [ -81.994282839999983, 28.909284011000068 ], [ -81.994253928999967, 28.909251694000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994253928999967, 28.909251694000034 ], [ -81.994249045999936, 28.909190178000074 ], [ -81.994255094999971, 28.909133446000055 ], [ -81.994265520999988, 28.909084974000052 ], [ -81.994311515999982, 28.909012893000067 ], [ -81.994339262999972, 28.908977291000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990184001999978, 28.909005906000061 ], [ -81.98991, 28.909026840000024 ], [ -81.989686455999959, 28.909044179000034 ], [ -81.98932702999997, 28.90906921900006 ], [ -81.988917197999967, 28.90909425600006 ], [ -81.98863886099997, 28.909117374000061 ], [ -81.988389017999964, 28.909132779000061 ], [ -81.988110681999956, 28.909150111000031 ], [ -81.987876178999954, 28.909169373000054 ], [ -81.987619758999983, 28.909186706000071 ], [ -81.98735895599998, 28.909205966000059 ], [ -81.987177051999936, 28.909211735000042 ], [ -81.986811049999972, 28.909244482000076 ], [ -81.986462581999945, 28.909265660000074 ], [ -81.986184245999937, 28.909284916000047 ], [ -81.98594535899997, 28.90929839100005 ], [ -81.985638531999939, 28.909321498000054 ], [ -81.985447860999955, 28.909325335000062 ], [ -81.985320748999982, 28.909319536000055 ], [ -81.985206786999981, 28.909313738000037 ], [ -81.985134597999945, 28.909304409000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993785737999985, 28.909351342000036 ], [ -81.993775543999959, 28.909399357000041 ], [ -81.99377554199998, 28.909441905000051 ], [ -81.993779568999969, 28.909479136000073 ], [ -81.993785610999964, 28.909509275000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994253928999967, 28.909251694000034 ], [ -81.99421479199998, 28.909225634000052 ], [ -81.994182554999952, 28.909207903000038 ], [ -81.994152332999988, 28.909195492000038 ], [ -81.994110020999983, 28.909184853000056 ], [ -81.994071739999981, 28.90918130600005 ], [ -81.994043559999966, 28.909181872000033 ], [ -81.99401129499995, 28.909181304000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99401129499995, 28.909181304000072 ], [ -81.993968981999956, 28.909191939000038 ], [ -81.993922639999937, 28.909206119000032 ], [ -81.993892415999937, 28.909222073000024 ], [ -81.993864207999934, 28.909238029000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994087831999934, 28.909665303000054 ], [ -81.994132984999965, 28.909660440000039 ], [ -81.994176158999949, 28.90964428500007 ], [ -81.994196234999947, 28.909633321000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993759165999961, 28.909999180000057 ], [ -81.993823643999974, 28.909956634000025 ], [ -81.993890140999952, 28.909857355000042 ], [ -81.993910633999974, 28.909822603000066 ], [ -81.993946574999939, 28.909775280000076 ], [ -81.993989228999965, 28.909732489000078 ], [ -81.994037861999971, 28.90969496200006 ], [ -81.994087831999934, 28.909665303000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993829934999951, 28.909576647000051 ], [ -81.993887447999953, 28.909620621000045 ], [ -81.993920311999943, 28.909637575000033 ], [ -81.99396451399997, 28.909652536000067 ], [ -81.994000779999965, 28.909661512000071 ], [ -81.994043846999944, 28.909667498000033 ], [ -81.994087831999934, 28.909665303000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993829934999951, 28.909576647000051 ], [ -81.993841462999967, 28.909631027000046 ], [ -81.993845676999968, 28.909690011000066 ], [ -81.993841455999984, 28.909748996000076 ], [ -81.99382886799998, 28.909807049000051 ], [ -81.993808107999939, 28.90986325700004 ], [ -81.993779505999953, 28.909916732000056 ], [ -81.993767228999957, 28.909935357000052 ], [ -81.993759165999961, 28.909999180000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993785610999964, 28.909509275000062 ], [ -81.993796783999983, 28.909530863000043 ], [ -81.99381378299995, 28.909555796000063 ], [ -81.993829934999951, 28.909576647000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994196234999947, 28.909633321000058 ], [ -81.994215815999951, 28.909622628000079 ], [ -81.994250979999947, 28.909595127000046 ], [ -81.994280479999986, 28.909563158000026 ], [ -81.994303532999936, 28.909527406000052 ], [ -81.994308376999982, 28.909515659000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969590722999953, 28.918119900000079 ], [ -81.96955576199997, 28.918092390000027 ], [ -81.969516106999947, 28.918070379000028 ], [ -81.969472740999947, 28.918054555000026 ], [ -81.969444414999941, 28.918048705000047 ], [ -81.969427223999958, 28.918045264000057 ], [ -81.969380532999935, 28.918042846000048 ], [ -81.969333838999944, 28.918046961000073 ], [ -81.969288706999976, 28.918057951000037 ], [ -81.969246305999945, 28.918075130000034 ], [ -81.969245543999989, 28.918075669000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969140916999947, 28.918413806000046 ], [ -81.969150667999941, 28.918429199000059 ], [ -81.969179767999947, 28.91846152100004 ], [ -81.969214535999981, 28.918489375000036 ], [ -81.969253991999949, 28.918511385000045 ], [ -81.969274504999987, 28.918519297000046 ], [ -81.969297163999954, 28.918527553000047 ], [ -81.969342680999944, 28.918537189000062 ], [ -81.969389372999956, 28.918540293000035 ], [ -81.969435870999973, 28.918536523000057 ], [ -81.969469882999988, 28.918528534000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969245543999989, 28.918075669000075 ], [ -81.969178872999976, 28.918132719000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969115055999964, 28.918341377000047 ], [ -81.969128784999953, 28.918385633000071 ], [ -81.969140916999947, 28.918413806000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969127761999971, 28.918206974000043 ], [ -81.969127606999962, 28.918207382000048 ], [ -81.969117493999988, 28.918234049000034 ], [ -81.969114229999946, 28.918257608000033 ], [ -81.96911167199994, 28.918281542000045 ], [ -81.969111662999978, 28.918311459000051 ], [ -81.969115055999964, 28.918341377000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962982604999979, 28.866894119000051 ], [ -81.962751465999986, 28.866895167000052 ], [ -81.962577162999935, 28.866897343000062 ], [ -81.962380123999935, 28.866901735000056 ], [ -81.962261481999974, 28.866914367000049 ], [ -81.962199974999976, 28.866939528000046 ], [ -81.962172949999967, 28.866960963000054 ], [ -81.962152743, 28.866988394000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962152743, 28.866988394000032 ], [ -81.962182269999971, 28.867000103000066 ], [ -81.962226068999939, 28.867006627000023 ], [ -81.962311805999946, 28.867006627000023 ], [ -81.962458397999967, 28.867004046000034 ], [ -81.962980038999945, 28.867009749000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953669593999962, 28.864908578000041 ], [ -81.953752451999947, 28.864970048000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957076046999987, 28.866246069000056 ], [ -81.957193911, 28.866258941000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953483815999959, 28.863578001000064 ], [ -81.953496715999961, 28.863659280000036 ], [ -81.953820443999973, 28.863888871000029 ], [ -81.954150985999945, 28.86412733800006 ], [ -81.954296116999956, 28.864235090000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954296116999956, 28.864235090000079 ], [ -81.954389782999954, 28.864296739000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954389782999954, 28.864296739000054 ], [ -81.954642038999964, 28.864460971000028 ], [ -81.954872827999964, 28.864593976000037 ], [ -81.95509147599995, 28.864705586000071 ], [ -81.955419889999973, 28.864861160000032 ], [ -81.955581280999979, 28.864927678000072 ], [ -81.955754388999935, 28.864991907000046 ], [ -81.95587803899997, 28.86503549300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95587803899997, 28.86503549300005 ], [ -81.95610451899995, 28.865106614000069 ], [ -81.956324490999975, 28.865170858000056 ], [ -81.956600179999953, 28.865235272000064 ], [ -81.956833611999969, 28.865282712000067 ], [ -81.957023439999944, 28.865311777000045 ], [ -81.957188541999983, 28.865334010000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065436399999953, 28.74146115800005 ], [ -82.065477854999983, 28.741371080000079 ], [ -82.065555607999954, 28.74122797800004 ], [ -82.065653167999983, 28.74104619600007 ], [ -82.065779648999978, 28.740832517000058 ], [ -82.065895295999951, 28.740647538000076 ], [ -82.066054296999937, 28.740373264000027 ], [ -82.066191616999959, 28.740143637000074 ], [ -82.066300029, 28.739961849000053 ], [ -82.066497608999953, 28.739626695000027 ], [ -82.066627221999966, 28.739406711000072 ], [ -82.066769121999982, 28.739172354000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066769121999982, 28.739172354000061 ], [ -82.066979214999947, 28.738821332000043 ], [ -82.067355238999937, 28.738190596000038 ], [ -82.067491307999944, 28.737957741000059 ], [ -82.067743886999949, 28.737541233000059 ], [ -82.067938505999962, 28.73721508400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066769121999982, 28.739172354000061 ], [ -82.066570867999985, 28.739071085000035 ], [ -82.066473755999937, 28.739043980000076 ], [ -82.066378967999981, 28.739037600000074 ], [ -82.066269337999984, 28.739034580000066 ], [ -82.06590025099996, 28.739034760000038 ], [ -82.064408304999972, 28.739026316000036 ], [ -82.06437809099998, 28.739026330000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063079531999961, 28.744305300000065 ], [ -82.06241314, 28.744293861000074 ], [ -82.061567180999987, 28.744294249000063 ], [ -82.061348061, 28.744249424000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061348016999943, 28.744327392000059 ], [ -82.060652600999958, 28.744328194000047 ], [ -82.060478032999981, 28.744317272000046 ], [ -82.059064562999936, 28.744310334000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122167271999956, 28.787820236000073 ], [ -82.122164960999953, 28.788175598000066 ], [ -82.122147868999946, 28.788363381000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121683978999954, 28.788765101000024 ], [ -82.121735073999957, 28.788701537000065 ], [ -82.121772229999976, 28.788652330000048 ], [ -82.121818689999941, 28.788603113000079 ], [ -82.121874460999948, 28.788560036000035 ], [ -82.121930239999983, 28.78852515400007 ], [ -82.122014012999955, 28.788494114000059 ], [ -82.12211948199996, 28.788471413000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122147868999946, 28.788363381000067 ], [ -82.122136539999985, 28.788428697000029 ], [ -82.12211948199996, 28.788471413000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12211948199996, 28.788471413000025 ], [ -82.122089126999981, 28.789151982000078 ], [ -82.122089317999951, 28.789315897000051 ], [ -82.122106665, 28.78943212300004 ], [ -82.122116726999934, 28.789550133000034 ], [ -82.122129234999989, 28.789639728000054 ], [ -82.122169179999958, 28.789853874000073 ], [ -82.122256284999935, 28.790087646000075 ], [ -82.122343306999937, 28.79024929600007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12211948199996, 28.788471413000025 ], [ -82.122327590999987, 28.788446107000027 ], [ -82.122384609999983, 28.788441032000037 ], [ -82.122472976999973, 28.788423370000032 ], [ -82.122519752999949, 28.788421365000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122519752999949, 28.788421365000033 ], [ -82.122451870999953, 28.788596707000067 ], [ -82.122435240999948, 28.788726327000063 ], [ -82.122441280999965, 28.788886182000056 ], [ -82.123067297999967, 28.789870543000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12282270999998, 28.788284042000043 ], [ -82.122860936999984, 28.788255536000065 ], [ -82.123652436999976, 28.787585978000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12282270999998, 28.788284042000043 ], [ -82.123248358999945, 28.788850761000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122519752999949, 28.788421365000033 ], [ -82.12258307999997, 28.788402233000056 ], [ -82.122643425999968, 28.788382700000057 ], [ -82.12272220899996, 28.788342748000048 ], [ -82.12282270999998, 28.788284042000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145698947999961, 28.810156773000074 ], [ -82.145751819999987, 28.810185352000076 ], [ -82.145835205999958, 28.810237164000057 ], [ -82.145912496999983, 28.810288984000067 ], [ -82.14597148699994, 28.810331874000042 ], [ -82.146020317999955, 28.810376563000034 ], [ -82.146083363999935, 28.810414081000033 ], [ -82.146189111999945, 28.810471237000058 ], [ -82.146258238999962, 28.810498009000071 ], [ -82.146319222999978, 28.810514050000052 ], [ -82.146524478999936, 28.810528146000024 ], [ -82.147071134999976, 28.810550818000024 ], [ -82.147398319, 28.81056656800007 ], [ -82.147603550999975, 28.810562765000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145153730999937, 28.808324064000033 ], [ -82.145257540999978, 28.80836572000004 ], [ -82.145336922999945, 28.808462281000061 ], [ -82.145473329999959, 28.808650056000033 ], [ -82.145591454999987, 28.808843221000075 ], [ -82.145691242999987, 28.809000611000045 ], [ -82.145727920999946, 28.809073949000037 ], [ -82.145742277999943, 28.809168791000047 ], [ -82.145752619999939, 28.809299430000067 ], [ -82.14575512, 28.809635899000057 ], [ -82.145749276999936, 28.809818459000041 ], [ -82.145731201, 28.809970605000046 ], [ -82.145698947999961, 28.810156773000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108459570999969, 28.668535678000069 ], [ -82.108440703999975, 28.668535628000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110540627999967, 28.664896429000066 ], [ -82.110533374999989, 28.665855704000023 ], [ -82.110527615999956, 28.666719862000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104256329999941, 28.680496466000079 ], [ -82.104256205999945, 28.680371371000035 ], [ -82.104261035999968, 28.679455776000054 ], [ -82.104266060999976, 28.678737464000051 ], [ -82.104270086999975, 28.677914594000072 ], [ -82.104267128999936, 28.677705693000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10424805599996, 28.686844499000074 ], [ -82.104249644999982, 28.68507005500004 ], [ -82.104253421999942, 28.683128932000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104253421999942, 28.683128932000045 ], [ -82.104057323999939, 28.683141290000037 ], [ -82.101999320999937, 28.683142856000075 ], [ -82.100116777999972, 28.683142202000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110108748999949, 28.688823251000031 ], [ -82.11028850799994, 28.687211698000056 ], [ -82.110420119999958, 28.686042653000072 ], [ -82.110496850999937, 28.685320239000077 ], [ -82.110549798999955, 28.68482569300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120829194999942, 28.666761579000024 ], [ -82.120824195999944, 28.667065717000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120833563999952, 28.666311293000035 ], [ -82.120829194999942, 28.666761579000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121189570999945, 28.666304678000074 ], [ -82.120833563999952, 28.666311293000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120837662999975, 28.665626171000042 ], [ -82.120833563999952, 28.666311293000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121199338999986, 28.665626539000073 ], [ -82.122758558999976, 28.665635490000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120837662999975, 28.665626171000042 ], [ -82.121199338999986, 28.665626539000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120839282999953, 28.664908733000061 ], [ -82.120837662999975, 28.665626171000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120839282999953, 28.664908733000061 ], [ -82.122463210999967, 28.664929640000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119789022999953, 28.666760306000072 ], [ -82.120829194999942, 28.666761579000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119791361999944, 28.664913973000068 ], [ -82.120839282999953, 28.664908733000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119791361999944, 28.664913973000068 ], [ -82.119789022999953, 28.666760306000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957188541999983, 28.865334010000026 ], [ -81.957312637999962, 28.865351620000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980629014999977, 28.86542772100006 ], [ -81.980745955999964, 28.865426051000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962975946999961, 28.865433401000075 ], [ -81.963200881999967, 28.865435713000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989697195999952, 28.866574921000051 ], [ -81.989697328999966, 28.865940399000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987760636999951, 28.865431591000061 ], [ -81.987753202999954, 28.866440073000035 ], [ -81.987751838999941, 28.866457682000032 ], [ -81.987754074999941, 28.866480211000066 ], [ -81.987760720999972, 28.866502057000048 ], [ -81.987771578999968, 28.866522555000074 ], [ -81.987786311999969, 28.866541082000026 ], [ -81.987804477999987, 28.86655707500006 ], [ -81.987825520999934, 28.866570048000028 ], [ -81.987848804999942, 28.866579609000041 ], [ -81.987873620999949, 28.866585463000035 ], [ -81.987899213999981, 28.866587437000078 ], [ -81.987909962999936, 28.866587093000078 ], [ -81.989697195999952, 28.866574921000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989640718999965, 28.865425504000029 ], [ -81.989639414999942, 28.865694387000076 ], [ -81.989649621999945, 28.865871393000077 ], [ -81.989697328999966, 28.865940399000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989697328999966, 28.865940399000067 ], [ -81.989741641999956, 28.865862399000036 ], [ -81.989748471999974, 28.865724397000065 ], [ -81.989748076999945, 28.865425020000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989697195999952, 28.866574921000051 ], [ -81.99090715799997, 28.866576507000048 ], [ -81.991139135999958, 28.86649821900005 ], [ -81.991280658999983, 28.866495646000033 ], [ -81.99152768099998, 28.866503365000028 ], [ -81.991573997999978, 28.866472487000067 ], [ -81.991594582999937, 28.866426171000057 ], [ -81.991586862999952, 28.866305233000048 ], [ -81.991610021999975, 28.865867798000068 ], [ -81.991576570999939, 28.865824054000029 ], [ -81.99153025399994, 28.865798323000035 ], [ -81.991172586999937, 28.86580346900007 ], [ -81.991072233999944, 28.865808615000049 ], [ -81.991071806999969, 28.865428699000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980962747999968, 28.869601002000024 ], [ -81.981089193999935, 28.869602328000042 ], [ -81.981376298999976, 28.869601060000036 ], [ -81.981412002999946, 28.869595827000069 ], [ -81.981449195999971, 28.869581427000071 ], [ -81.98149531699994, 28.869553935000056 ], [ -81.981542926999964, 28.869513348000055 ], [ -81.981575662999944, 28.869458356000052 ], [ -81.981584600999952, 28.869396813000037 ], [ -81.981577200999936, 28.869175515000052 ], [ -81.981563850999976, 28.868954214000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980251693999946, 28.869498762000035 ], [ -81.980675646999941, 28.869561677000036 ], [ -81.980962747999968, 28.869601002000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980889611999942, 28.870251972000062 ], [ -81.980913446999978, 28.870063414000072 ], [ -81.980934420999972, 28.869940147000079 ], [ -81.980962747999968, 28.869601002000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981563850999976, 28.868954214000041 ], [ -81.98155793899997, 28.868736843000079 ], [ -81.981549052999981, 28.868522092000035 ], [ -81.981541627999945, 28.868448761000025 ], [ -81.98152080899996, 28.868405546000076 ], [ -81.981497011999977, 28.868375426000057 ], [ -81.981467265999981, 28.868345304000059 ], [ -81.981436030999987, 28.868324349000034 ], [ -81.981398298999977, 28.868308573000036 ], [ -81.98136016899997, 28.868299458000024 ], [ -81.981314055999974, 28.868294214000059 ], [ -81.981215875999965, 28.868282416000056 ], [ -81.980858861999934, 28.868256176000045 ], [ -81.98062977799998, 28.868236501000069 ], [ -81.980467633999979, 28.868226002000029 ], [ -81.980339704999949, 28.868207652000024 ], [ -81.980225166999958, 28.868178827000065 ], [ -81.980173311999977, 28.868159068000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979876678999972, 28.868721508000078 ], [ -81.979945790999977, 28.868612979000034 ], [ -81.980033091999985, 28.868461677000028 ], [ -81.980120395999961, 28.868287096000074 ], [ -81.980173311999977, 28.868159068000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979569113999958, 28.869386665000036 ], [ -81.979612771999939, 28.869274932000053 ], [ -81.979650479999975, 28.869163196000045 ], [ -81.979678268999976, 28.869056699000055 ], [ -81.979715976999955, 28.868944965000026 ], [ -81.979747722999946, 28.868892591000076 ], [ -81.979813194999963, 28.868796574000044 ], [ -81.979876678999972, 28.868721508000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979876678999972, 28.868721508000078 ], [ -81.979940926999973, 28.868761492000033 ], [ -81.980042074999972, 28.868807339000057 ], [ -81.980080749999956, 28.868819130000077 ], [ -81.980187852999961, 28.86883616800003 ], [ -81.980483341999957, 28.868881868000074 ], [ -81.980766506999942, 28.868927914000039 ], [ -81.981013441999949, 28.868961995000063 ], [ -81.981099720999964, 28.868965935000062 ], [ -81.981196413999953, 28.868965949000028 ], [ -81.981410629999971, 28.86896205000005 ], [ -81.981563850999976, 28.868954214000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979569113999958, 28.869386665000036 ], [ -81.98014012699997, 28.869481723000035 ], [ -81.980251693999946, 28.869498762000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979400366999982, 28.87016707500004 ], [ -81.979481784999962, 28.86967822400004 ], [ -81.979505606999965, 28.869573471000024 ], [ -81.97953537799998, 28.869473957000025 ], [ -81.979569113999958, 28.869386665000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979306679999979, 28.870835466000074 ], [ -81.979366608999953, 28.870366107000052 ], [ -81.979400366999982, 28.87016707500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980023380999967, 28.870840230000056 ], [ -81.980199569999968, 28.869799929000067 ], [ -81.980251693999946, 28.869498762000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980766836999976, 28.870954114000028 ], [ -81.980818137999961, 28.870631414000059 ], [ -81.980889611999942, 28.870251972000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98088460799994, 28.871676260000072 ], [ -81.980871836999938, 28.871642029000043 ], [ -81.980782654999985, 28.871228229000053 ], [ -81.980769131999978, 28.871059162000051 ], [ -81.980766836999976, 28.870954114000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967538827999988, 28.871362935000036 ], [ -81.967603976999953, 28.87143046500006 ], [ -81.967695626999955, 28.871532917000025 ], [ -81.967875419999984, 28.87168194700007 ], [ -81.968411268999944, 28.872135241000024 ], [ -81.969042309999963, 28.872669257000041 ], [ -81.969176717999972, 28.87277288100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970422609999957, 28.871932781000055 ], [ -81.970248036999976, 28.872023532000071 ], [ -81.970039072999953, 28.872137553000073 ], [ -81.969930620999946, 28.872209695000038 ], [ -81.969808942999975, 28.872286489000032 ], [ -81.969618482999977, 28.872430777000034 ], [ -81.969364537, 28.872616953000033 ], [ -81.969176717999972, 28.87277288100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972204960999989, 28.872552387000042 ], [ -81.971895597999946, 28.872305564000044 ], [ -81.971534474999942, 28.872067799000035 ], [ -81.971160506999979, 28.871821200000056 ], [ -81.971091754999975, 28.871790922000059 ], [ -81.971022996999977, 28.871776940000075 ], [ -81.970930433999968, 28.871769936000078 ], [ -81.970861671999955, 28.87177224900006 ], [ -81.970755876999988, 28.871800162000056 ], [ -81.97052576599998, 28.871883918000037 ], [ -81.970422609999957, 28.871932781000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970183751999969, 28.874865907000071 ], [ -81.970514352999942, 28.874840372000051 ], [ -81.971844691999934, 28.874740556000063 ], [ -81.97286293999997, 28.874666271000024 ], [ -81.972942287999956, 28.874649993000048 ], [ -81.973008417999949, 28.874610431000065 ], [ -81.973045456999955, 28.874556895000069 ], [ -81.973074566999969, 28.874489392000044 ], [ -81.973132825999983, 28.874198413000045 ], [ -81.973175202999983, 28.873958647000052 ], [ -81.973225512999988, 28.873728192000044 ], [ -81.973251997999967, 28.873574555000062 ], [ -81.973252013999968, 28.873514029000034 ], [ -81.973236160999988, 28.873455828000033 ], [ -81.973201790999951, 28.873409263000042 ], [ -81.973006127999952, 28.873239286000057 ], [ -81.972702051999988, 28.87298082600006 ], [ -81.97240465699997, 28.872736287000066 ], [ -81.972204960999989, 28.872552387000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969176717999972, 28.87277288100006 ], [ -81.969345935999968, 28.872914923000053 ], [ -81.969459628999971, 28.873024360000045 ], [ -81.969549509999979, 28.873154743000043 ], [ -81.969591799999989, 28.873240887000065 ], [ -81.969623504999959, 28.873350306000077 ], [ -81.969626120999976, 28.873450407000064 ], [ -81.969615512999951, 28.873550505000026 ], [ -81.969594327999971, 28.873641289000034 ], [ -81.96957314499997, 28.873727418000044 ], [ -81.969438129999958, 28.874185986000043 ], [ -81.969348111999977, 28.874514203000047 ], [ -81.969345448999945, 28.874574728000027 ], [ -81.969345428999986, 28.874644567000075 ], [ -81.969350693999957, 28.874728373000039 ], [ -81.969366546999936, 28.87477959000006 ], [ -81.969398269999942, 28.874830811000038 ], [ -81.969445864999955, 28.874870396000063 ], [ -81.969506684999942, 28.874898345000076 ], [ -81.969593960999987, 28.874903021000023 ], [ -81.969853150999938, 28.874891439000066 ], [ -81.970183751999969, 28.874865907000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997031285999981, 28.865476529000034 ], [ -81.997024830999976, 28.867991370000027 ], [ -81.997022294999965, 28.868205225000054 ], [ -81.997017230999973, 28.868343340000024 ], [ -81.996999510999956, 28.868499276000023 ], [ -81.996961545999966, 28.86866857800004 ], [ -81.996923579999986, 28.868811146000041 ], [ -81.996872961999941, 28.86896262700003 ], [ -81.996822343999952, 28.869085147000078 ], [ -81.996774257999959, 28.869185390000041 ], [ -81.996723639999971, 28.869283407000069 ], [ -81.996638497999982, 28.869436276000044 ], [ -81.996566726999959, 28.869544039000061 ], [ -81.99644524699994, 28.869702200000063 ], [ -81.996321236999961, 28.869844766000028 ], [ -81.996176978999983, 28.869987334000029 ], [ -81.995838726999978, 28.870308774000023 ], [ -81.995557912999971, 28.870581182000024 ], [ -81.995513025999969, 28.870618418000049 ], [ -81.995470680999972, 28.870645340000067 ], [ -81.995440807999955, 28.870659011000043 ], [ -81.995414518999951, 28.870666373000063 ], [ -81.995384645999934, 28.870673735000025 ], [ -81.995348818999958, 28.870678897000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987516360999962, 28.874113863000048 ], [ -81.987802370999987, 28.873771278000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987324699999988, 28.874270292000062 ], [ -81.987422018999951, 28.874202129000025 ], [ -81.987516360999962, 28.874113863000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986983085999952, 28.87456742300003 ], [ -81.987018838999973, 28.874507994000055 ], [ -81.987046646999943, 28.874467792000075 ], [ -81.987080412999944, 28.874431087000062 ], [ -81.987138010999956, 28.874382147000063 ], [ -81.987223411999935, 28.874324471000079 ], [ -81.987324699999988, 28.874270292000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986085332999949, 28.875437845000079 ], [ -81.986357433999956, 28.875228112000059 ], [ -81.986504408999963, 28.875107513000046 ], [ -81.986641454999983, 28.874979922000023 ], [ -81.986756653999976, 28.874855824000065 ], [ -81.986873842999955, 28.874710751000066 ], [ -81.986983085999952, 28.87456742300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98562850199994, 28.875909762000049 ], [ -81.985701996999978, 28.875796149000053 ], [ -81.985781447999955, 28.87570351200003 ], [ -81.985936372999959, 28.875554948000058 ], [ -81.986085332999949, 28.875437845000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985292797999989, 28.87647258800007 ], [ -81.985531167999966, 28.876075813000057 ], [ -81.98562850199994, 28.875909762000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984941202999948, 28.877033662000031 ], [ -81.985131899999942, 28.876724284000034 ], [ -81.985292797999989, 28.87647258800007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984565774999965, 28.877579 ], [ -81.984784278999939, 28.877259139000046 ], [ -81.984941202999948, 28.877033662000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984776701999976, 28.874743742000078 ], [ -81.984667455999954, 28.874883571000055 ], [ -81.984570124999948, 28.875004172000047 ], [ -81.984417180999969, 28.875198185000045 ], [ -81.984174851999967, 28.875502311000048 ], [ -81.983916628999964, 28.875825664000047 ], [ -81.98371203499994, 28.876091338000037 ], [ -81.983569018999958, 28.876271367000072 ], [ -81.983527300999981, 28.876343030000044 ], [ -81.983497498999952, 28.876425183000038 ], [ -81.983483586999967, 28.876491606000059 ], [ -81.983477610999955, 28.876608722000071 ], [ -81.983491492999974, 28.876729338000075 ], [ -81.983521266999958, 28.876830725000048 ], [ -81.983562958999983, 28.876914636000038 ], [ -81.98362450999997, 28.87700903700005 ], [ -81.983709891, 28.877103440000042 ], [ -81.983791304999954, 28.877173370000037 ], [ -81.983904493999944, 28.877253793000079 ], [ -81.984032507999984, 28.877319023000041 ], [ -81.984174278999944, 28.877384015000075 ], [ -81.984296714999971, 28.877446252000027 ], [ -81.984424618999981, 28.877510898000025 ], [ -81.984565774999965, 28.877579 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987223208999978, 28.877783797000063 ], [ -81.987302653999961, 28.877733112000044 ], [ -81.987401961999979, 28.877663201000075 ], [ -81.987497297999937, 28.877596785000037 ], [ -81.987574756999948, 28.87754435100004 ], [ -81.98763632899994, 28.877493664000042 ], [ -81.987662151999984, 28.877449967000075 ], [ -81.987678044999939, 28.877399276000062 ], [ -81.987682022999934, 28.87734159200005 ], [ -81.987662171999943, 28.877280409000036 ], [ -81.987620471999946, 28.877224469000055 ], [ -81.987543028999937, 28.877147549000028 ], [ -81.98745168399995, 28.877067132000036 ], [ -81.987360337999974, 28.876991958000076 ], [ -81.987259063999943, 28.876906296000072 ], [ -81.987163746999954, 28.876832871000033 ], [ -81.987052543999937, 28.876748955000039 ], [ -81.986941338999941, 28.876670283000067 ], [ -81.986820206999937, 28.876586367000073 ], [ -81.986671271999967, 28.876488463000044 ], [ -81.986526307999952, 28.876402796000036 ], [ -81.9863873, 28.876327616000026 ], [ -81.986238364999963, 28.876241950000065 ], [ -81.986083001999987, 28.876159340000072 ], [ -81.985922487999972, 28.876073035000047 ], [ -81.985771479999983, 28.875984943000049 ], [ -81.98562850199994, 28.875909762000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986645239999973, 28.878173548000063 ], [ -81.986706809999987, 28.878131602000053 ], [ -81.98681604799998, 28.878058195000051 ], [ -81.986909396999977, 28.877993528000047 ], [ -81.986978912999973, 28.877946339000061 ], [ -81.987056373999962, 28.877893905000064 ], [ -81.987129860999971, 28.877844968000034 ], [ -81.987223208999978, 28.877783797000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984565774999965, 28.877579 ], [ -81.984603503999949, 28.877599982000049 ], [ -81.984736553999937, 28.877673413000025 ], [ -81.984935136, 28.877781812000023 ], [ -81.985129967999967, 28.877891960000056 ], [ -81.985272948999977, 28.877972384000032 ], [ -81.985405996999987, 28.878052808000064 ], [ -81.98554500399996, 28.878141970000058 ], [ -81.985689967999974, 28.878239875000077 ], [ -81.98578131499994, 28.878309805000072 ], [ -81.985858759999985, 28.878374491000045 ], [ -81.985914360999971, 28.878423440000063 ], [ -81.985967977999962, 28.878463651000061 ], [ -81.986027553999975, 28.87848987700005 ], [ -81.986073230999978, 28.878496873000074 ], [ -81.986130824999975, 28.878493383000034 ], [ -81.98619040799997, 28.878468917000077 ], [ -81.986259923999967, 28.878425225000058 ], [ -81.986333410999976, 28.878379783000071 ], [ -81.986438677999956, 28.878315116000067 ], [ -81.986549902999968, 28.878234719000034 ], [ -81.986645239999973, 28.878173548000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987516360999962, 28.874113863000048 ], [ -81.987561382999957, 28.874141911000038 ], [ -81.987817549999988, 28.874280028000044 ], [ -81.988224639999942, 28.874489826000058 ], [ -81.98854038099995, 28.874661158000038 ], [ -81.988752862999945, 28.874783538000031 ], [ -81.989038597, 28.874956729000075 ], [ -81.98924931099998, 28.875099970000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989777525999955, 28.875542259000042 ], [ -81.989878801999964, 28.875603448000049 ], [ -81.99004072699995, 28.875693870000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988345505999973, 28.876945800000044 ], [ -81.98838720599997, 28.876994748000072 ], [ -81.988546238999959, 28.877156188000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987847080999984, 28.876494768000043 ], [ -81.987968211999942, 28.876608400000066 ], [ -81.988069483999936, 28.876702801000079 ], [ -81.988345505999973, 28.876945800000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98756310999994, 28.876314696000065 ], [ -81.987655033999943, 28.876373667000053 ], [ -81.987847080999984, 28.876494768000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987275171999954, 28.876115395000056 ], [ -81.987328786999967, 28.876157353000053 ], [ -81.987507507999965, 28.876283228000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987275171999954, 28.876115395000056 ], [ -81.987676374999978, 28.87576757800008 ], [ -81.987998132999962, 28.875456459000077 ], [ -81.988212639999972, 28.87523797700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988212639999972, 28.87523797700004 ], [ -81.988290098999983, 28.875162819000025 ], [ -81.988427143999957, 28.875012501000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986768800999982, 28.875737775000061 ], [ -81.986784682999939, 28.875788469000042 ], [ -81.986812479999969, 28.875830425000061 ], [ -81.986869261999971, 28.875870300000031 ], [ -81.98706268899997, 28.875986021000074 ], [ -81.987275171999954, 28.876115395000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986983085999952, 28.87456742300003 ], [ -81.987648671999978, 28.874907550000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987648671999978, 28.874907550000046 ], [ -81.98795647299994, 28.875064900000041 ], [ -81.988161010999988, 28.875183783000068 ], [ -81.988212639999972, 28.87523797700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986705044999951, 28.882530098000075 ], [ -81.986795925999957, 28.882396383000071 ], [ -81.986868925999943, 28.882300686000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986430695999957, 28.883023267000056 ], [ -81.98655903699995, 28.882775242000037 ], [ -81.986670777999962, 28.882583846000045 ], [ -81.986705044999951, 28.882530098000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990435379999951, 28.877668872000072 ], [ -81.990753013999949, 28.877370064000047 ], [ -81.991431474999956, 28.876645202000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991563753999969, 28.878207343000042 ], [ -81.991319867999948, 28.877814388000047 ], [ -81.991254951999963, 28.877694634000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991254951999963, 28.877694634000079 ], [ -81.991185597999959, 28.877580560000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991254951999963, 28.877694634000079 ], [ -81.99137542699998, 28.877641622000056 ], [ -81.99145574299996, 28.877614316000063 ], [ -81.991850103, 28.877509833000033 ], [ -81.992067661999954, 28.877445903000023 ], [ -81.992190502999961, 28.877382311000076 ], [ -81.992329946999973, 28.877279184000031 ], [ -81.992434237999987, 28.877183964000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992434237999987, 28.877183964000039 ], [ -81.992596615999958, 28.877032789000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983581176999962, 28.88262863500006 ], [ -81.983876854999949, 28.882884122000064 ], [ -81.984105645999989, 28.883074923000038 ], [ -81.98428205099998, 28.88320709900006 ], [ -81.984476285999961, 28.88334277000007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980812913999955, 28.884847063000052 ], [ -81.981046220999986, 28.884462362000079 ], [ -81.981186679999951, 28.884261615000071 ], [ -81.981478135999964, 28.883890718000032 ], [ -81.981668398999943, 28.883665226000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983294538999985, 28.878405617000055 ], [ -81.983436446999974, 28.878272779000042 ], [ -81.983801834999952, 28.877932328000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976397115999987, 28.872514367000065 ], [ -81.976512133999961, 28.872384251000028 ], [ -81.976612547999935, 28.872268591000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97602283699996, 28.872970579000025 ], [ -81.976090315999954, 28.873005482000053 ], [ -81.976307542999962, 28.873107191000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97602283699996, 28.872970579000025 ], [ -81.976285745999974, 28.872644482000055 ], [ -81.976397115999987, 28.872514367000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960001399999953, 28.874949470000047 ], [ -81.960075278999966, 28.874832513000058 ], [ -81.96019348599998, 28.874642779000055 ], [ -81.960465348999946, 28.874232131000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135521711999957, 28.878051313000071 ], [ -82.13560863899994, 28.877895512000066 ], [ -82.135739418999947, 28.877679947000047 ], [ -82.135935214999961, 28.877402435000079 ], [ -82.136169042999938, 28.877090064000072 ], [ -82.136354614999959, 28.876875648000066 ], [ -82.136465972999986, 28.876743371000032 ], [ -82.13662196699994, 28.876562730000046 ], [ -82.136819154999955, 28.876357981000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135082228999977, 28.878905987000053 ], [ -82.135169074999965, 28.878702048000036 ], [ -82.135274383999956, 28.878494024000076 ], [ -82.135399068999959, 28.878261657000053 ], [ -82.135521711999957, 28.878051313000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134699850999937, 28.879884228000037 ], [ -82.134756068999934, 28.879728325000031 ], [ -82.134911794999937, 28.879335498000046 ], [ -82.134987921999937, 28.879138323000063 ], [ -82.135082228999977, 28.878905987000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134069399999987, 28.881597070000055 ], [ -82.134101342999941, 28.881539545000066 ], [ -82.134158488999958, 28.881430243000068 ], [ -82.134262326999988, 28.881229321000035 ], [ -82.134324522999975, 28.881098271000042 ], [ -82.134407792, 28.880905159000065 ], [ -82.134438040999953, 28.880803524000044 ], [ -82.134458747999986, 28.880707245000053 ], [ -82.13448978699995, 28.880546020000054 ], [ -82.134516512999937, 28.880405427000028 ], [ -82.134541542999955, 28.88029539200005 ], [ -82.134672153999986, 28.879943843000035 ], [ -82.134699850999937, 28.879884228000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134949066, 28.88319025900006 ], [ -82.134957075999978, 28.88308537000006 ], [ -82.134967379999978, 28.883001203000049 ], [ -82.134992570999941, 28.88288052300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134992570999941, 28.88288052300004 ], [ -82.135073324999951, 28.882747179000035 ], [ -82.135303659999977, 28.882332089000045 ], [ -82.135412808999945, 28.882111055000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127206955999952, 28.881398363000073 ], [ -82.127198816999964, 28.881728661000068 ], [ -82.127190067999948, 28.881874012000026 ], [ -82.127165709999986, 28.882029198000055 ], [ -82.127141165999944, 28.88215361400006 ], [ -82.127112491999981, 28.882308149000039 ], [ -82.127056994999975, 28.88254782100006 ], [ -82.127023656999938, 28.88265980500006 ], [ -82.126976955999965, 28.882793407000065 ], [ -82.126913625999975, 28.882954129000041 ], [ -82.126821184999983, 28.883154947000037 ], [ -82.12674551899994, 28.883325894000052 ], [ -82.126666785999987, 28.88354516000004 ], [ -82.126605467, 28.883769909000023 ], [ -82.126553134999938, 28.884045980000053 ], [ -82.126512386999934, 28.884304231000044 ], [ -82.126498939999976, 28.884502747000056 ], [ -82.126499765999938, 28.884938643000055 ], [ -82.126491366999971, 28.885374679000051 ], [ -82.126505216999988, 28.885753735000037 ], [ -82.126517249999949, 28.885862403000033 ], [ -82.126531664999959, 28.885971331000064 ], [ -82.126560359999985, 28.886078151000049 ], [ -82.126597250999964, 28.886195568000062 ], [ -82.12665349699995, 28.886325277000026 ], [ -82.126710285999934, 28.886425995000025 ], [ -82.126841050999985, 28.886649044000023 ], [ -82.127087038999946, 28.887063236000074 ], [ -82.127259397999978, 28.887368030000061 ], [ -82.127330853999979, 28.887524566000025 ], [ -82.12739355399998, 28.887699311000063 ], [ -82.127421826999978, 28.887824594000051 ], [ -82.127436244999956, 28.887935617000039 ], [ -82.127438628999982, 28.888060661000054 ], [ -82.12743687699998, 28.888453088000063 ], [ -82.127446886999962, 28.888853228000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120945781999978, 28.890754833000074 ], [ -82.121163659999979, 28.890827902000069 ], [ -82.121302458999935, 28.890924167000037 ], [ -82.121436106999965, 28.891070883000054 ], [ -82.121579333999989, 28.891255348000072 ], [ -82.12168438499998, 28.891406284000027 ], [ -82.121768066999948, 28.891498312000067 ], [ -82.121841873999983, 28.891557173000024 ], [ -82.122012816999984, 28.891674348000038 ], [ -82.122173866999958, 28.891746122000029 ], [ -82.122361776999981, 28.891804225000044 ], [ -82.123153336999962, 28.891992293000044 ], [ -82.123898210999982, 28.892152328000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128414957999951, 28.892360864000068 ], [ -82.128415907999965, 28.893498646000069 ], [ -82.12841358999998, 28.893570427000043 ], [ -82.128403728999956, 28.893649312000036 ], [ -82.12839145099997, 28.893724845000065 ], [ -82.128363395999941, 28.893817942000055 ], [ -82.128327881999951, 28.89391018200007 ], [ -82.128270587999964, 28.894011297000077 ], [ -82.128229204999968, 28.894081516000028 ], [ -82.127783350999948, 28.894677070000057 ], [ -82.127295328999935, 28.895345440000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127295328999935, 28.895345440000028 ], [ -82.127041922999979, 28.895231279000029 ], [ -82.126911872999983, 28.89518603700003 ], [ -82.126772869999968, 28.895150664000028 ], [ -82.126624908999986, 28.895125691000032 ], [ -82.126553186999956, 28.895121285000073 ], [ -82.126452323999956, 28.895117435000031 ], [ -82.124907407999956, 28.895118035000053 ], [ -82.124641817999986, 28.895118281000066 ], [ -82.12446764799995, 28.895107942000038 ], [ -82.124362804999976, 28.895091043000036 ], [ -82.124273510999956, 28.895073448000062 ], [ -82.12418420399996, 28.895046032000039 ], [ -82.124108283999988, 28.895014677000063 ], [ -82.124044453999943, 28.89498259100003 ], [ -82.123978739999984, 28.894932306000044 ], [ -82.12392386199997, 28.894879151000055 ], [ -82.123869181999964, 28.894808476000037 ], [ -82.123831208999945, 28.894739960000038 ], [ -82.12381103499996, 28.894665344000032 ], [ -82.12380584999994, 28.894588330000033 ], [ -82.123804603999986, 28.893538027000034 ], [ -82.123804366999934, 28.892807324000046 ], [ -82.123808722999968, 28.892716971000027 ], [ -82.123830760999965, 28.892481260000068 ], [ -82.123898210999982, 28.892152328000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.132576864999976, 28.897534390000033 ], [ -82.132295693999936, 28.89757198500007 ], [ -82.131981054999983, 28.897617467000032 ], [ -82.131647925999971, 28.897640391000039 ], [ -82.130717715999936, 28.897670188000063 ], [ -82.129876417999981, 28.897652902000061 ], [ -82.129459051999959, 28.897651340000039 ], [ -82.129182255999979, 28.897620179000057 ], [ -82.128982949999966, 28.897565921000023 ], [ -82.12884063599995, 28.897506590000035 ], [ -82.128706634999958, 28.897436010000035 ], [ -82.128544898999962, 28.897330383000053 ], [ -82.128438573999972, 28.897245750000025 ], [ -82.128344717999937, 28.897151563000079 ], [ -82.128244145999986, 28.897039706000044 ], [ -82.128179302999968, 28.896943528000065 ], [ -82.128121163999936, 28.896853235000037 ], [ -82.128067430999977, 28.896717765000062 ], [ -82.128029588999937, 28.89656522100006 ], [ -82.127985540999987, 28.896343753000053 ], [ -82.127948491999973, 28.896187573000077 ], [ -82.127908144999935, 28.896046197000032 ], [ -82.127876793999974, 28.895959808000043 ], [ -82.127823108999962, 28.895861655000033 ], [ -82.127751557999943, 28.895755661000067 ], [ -82.127688964999948, 28.895673229000067 ], [ -82.127595105999944, 28.895573150000075 ], [ -82.127414147999957, 28.895427979000033 ], [ -82.127295328999935, 28.895345440000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01967885199997, 28.903717361000076 ], [ -82.019782048999957, 28.903714833000038 ], [ -82.019902233999971, 28.903708206000033 ], [ -82.020006268999964, 28.903712487000064 ], [ -82.02007537999998, 28.903733629000044 ], [ -82.020126464999976, 28.903765348000036 ], [ -82.020159523999951, 28.903807647000065 ], [ -82.020187702999976, 28.903860190000046 ], [ -82.020195242999989, 28.904008911000062 ], [ -82.020172743999979, 28.904193990000067 ], [ -82.020153993999941, 28.904342714000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980814070999941, 28.907631692000052 ], [ -81.98074218499994, 28.907478268000034 ], [ -81.980691692999983, 28.90735232000003 ], [ -81.980652420999945, 28.907253537000031 ], [ -81.980629983999961, 28.907179451000047 ], [ -81.980615967999938, 28.907095488000039 ], [ -81.980601953999951, 28.907001647000072 ], [ -81.980593545999966, 28.906930033000037 ], [ -81.980585145999953, 28.906833724000023 ], [ -81.980571131999966, 28.906737414000077 ], [ -81.980548693999935, 28.906665796000027 ], [ -81.980526255999962, 28.90659418100006 ], [ -81.980498206999982, 28.906522562000077 ], [ -81.980470155999967, 28.906453415000044 ], [ -81.980402823999952, 28.906327464000071 ], [ -81.980313051999985, 28.906161998000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980313051999985, 28.906161998000073 ], [ -81.980231692999951, 28.906023699000059 ], [ -81.980133494999961, 28.905887866000057 ], [ -81.980032491999964, 28.905749563000029 ], [ -81.979942710999978, 28.905633486000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979942710999978, 28.905633486000056 ], [ -81.979822062999972, 28.905500119000067 ], [ -81.979673358999946, 28.905332175000069 ], [ -81.979597602999945, 28.905245734000061 ], [ -81.979512381999939, 28.90514046100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979434567999988, 28.906596487000058 ], [ -81.979701199999965, 28.906475526000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979701199999965, 28.906475526000065 ], [ -81.980012737999971, 28.906322468000042 ], [ -81.980313051999985, 28.906161998000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978121208999937, 28.906435768000051 ], [ -81.978230665999945, 28.906396275000077 ], [ -81.978446774999952, 28.906317287000036 ], [ -81.978601137999988, 28.906258045000072 ], [ -81.978755501999956, 28.906198804000041 ], [ -81.978943544999936, 28.906119811000053 ], [ -81.979120361999946, 28.906043286000056 ], [ -81.979285953999977, 28.905966760000069 ], [ -81.979403832999935, 28.905912450000073 ], [ -81.979530131999979, 28.905848264000042 ], [ -81.979662043999951, 28.905784079000057 ], [ -81.979807990999973, 28.905707549000056 ], [ -81.979942710999978, 28.905633486000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971964970999977, 28.900903017000076 ], [ -81.972120376999953, 28.900897428000064 ], [ -81.972344084999975, 28.900881429000037 ], [ -81.972469507999961, 28.900876895000067 ], [ -81.972656849999964, 28.900858199000027 ], [ -81.972939995, 28.900809550000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973561059999952, 28.902988 ], [ -81.973250136, 28.902530856000055 ], [ -81.973007133999943, 28.902181884000072 ], [ -81.972891706999974, 28.901981630000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972901245999935, 28.903272466000033 ], [ -81.972976972999959, 28.903240921000076 ], [ -81.973561059999952, 28.902988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971327099999939, 28.904017846000045 ], [ -81.971607647999974, 28.903864923000071 ], [ -81.971931953999956, 28.903704447000052 ], [ -81.97219198099998, 28.903582460000052 ], [ -81.972550075999948, 28.903430927000045 ], [ -81.972901245999935, 28.903272466000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969030892999967, 28.905330568000068 ], [ -81.96915826299994, 28.905302751000079 ], [ -81.969298761999937, 28.905264975000023 ], [ -81.969445191999966, 28.905217356000037 ], [ -81.969553510999958, 28.905171494000058 ], [ -81.969659824999951, 28.905125630000043 ], [ -81.96977216199997, 28.905062120000025 ], [ -81.969924625999965, 28.904950968000037 ], [ -81.970069067999987, 28.904832752000061 ], [ -81.970235573999958, 28.904711011000074 ], [ -81.970442199, 28.904566336000073 ], [ -81.970638021999946, 28.904435388000024 ], [ -81.970737662999966, 28.904370090000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96871226899998, 28.905400969000027 ], [ -81.968898051999986, 28.905359414000031 ], [ -81.969030892999967, 28.905330568000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118793515999982, 28.664913394000052 ], [ -82.119791361999944, 28.664913973000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118777726999951, 28.66675947300007 ], [ -82.118771840999955, 28.667579606000061 ], [ -82.118775399999947, 28.668272986000034 ], [ -82.118784845999983, 28.668584220000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118793515999982, 28.664913394000052 ], [ -82.118777726999951, 28.66675947300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117733416999954, 28.666748064000046 ], [ -82.118777726999951, 28.66675947300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118777726999951, 28.66675947300007 ], [ -82.119789022999953, 28.666760306000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117734686999938, 28.66491675900005 ], [ -82.118793515999982, 28.664913394000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116693267999949, 28.664910263000024 ], [ -82.117734686999938, 28.66491675900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11668091699994, 28.664186929000039 ], [ -82.116693267999949, 28.664910263000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116183838999973, 28.664903467000045 ], [ -82.116693267999949, 28.664910263000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114842628999952, 28.664902271000074 ], [ -82.114842513999974, 28.666734691000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113335524999968, 28.664907285000027 ], [ -82.114842628999952, 28.664902271000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114842628999952, 28.664902271000074 ], [ -82.116183838999973, 28.664903467000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114854191999939, 28.664181772000063 ], [ -82.114842628999952, 28.664902271000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114854191999939, 28.664181772000063 ], [ -82.116211360999955, 28.664182604000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114839452999945, 28.667625531000056 ], [ -82.114832020999984, 28.668572806000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114842513999974, 28.666734691000045 ], [ -82.114839452999945, 28.667625531000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116702874999987, 28.666736765000053 ], [ -82.117733416999954, 28.666748064000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114842513999974, 28.666734691000045 ], [ -82.116702874999987, 28.666736765000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114856002999943, 28.663454460000025 ], [ -82.115750620999961, 28.663477034000039 ], [ -82.116021773999989, 28.663555412000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114856002999943, 28.663454460000025 ], [ -82.114853969999956, 28.66395450400006 ], [ -82.114854191999939, 28.664181772000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113330428999973, 28.663455746000068 ], [ -82.114856002999943, 28.663454460000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113328628999966, 28.66417853400003 ], [ -82.114854191999939, 28.664181772000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113330428999973, 28.663455746000068 ], [ -82.113325800999974, 28.663944426000057 ], [ -82.113328628999966, 28.66417853400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113328628999966, 28.66417853400003 ], [ -82.113335524999968, 28.664907285000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113330642999983, 28.662756540000032 ], [ -82.113330428999973, 28.663455746000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114876829999957, 28.662754358000029 ], [ -82.115468693999958, 28.66275612000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113330642999983, 28.662756540000032 ], [ -82.114876829999957, 28.662754358000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118787063999946, 28.664212362000058 ], [ -82.118793515999982, 28.664913394000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118779492999977, 28.662749695000059 ], [ -82.118784023999979, 28.663443923000045 ], [ -82.118787063999946, 28.664212362000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112110900999937, 28.664901560000033 ], [ -82.111658772999988, 28.664901326000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112110900999937, 28.664901560000033 ], [ -82.112083432999952, 28.665115326000034 ], [ -82.112003930999947, 28.665856659000042 ], [ -82.111896471999955, 28.666735372000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120840826999938, 28.662560307000035 ], [ -82.122180323999942, 28.66258184000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120841254999959, 28.663820542000053 ], [ -82.120839282999953, 28.664908733000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120840826999938, 28.662560307000035 ], [ -82.120843202999936, 28.662745943000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119829269999968, 28.661288600000034 ], [ -82.119821984999987, 28.662749516000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120842356999958, 28.661875864000024 ], [ -82.120840826999938, 28.662560307000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119829269999968, 28.661288600000034 ], [ -82.120843656999966, 28.661294661000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120843656999966, 28.661294661000056 ], [ -82.120846894999943, 28.66036469900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11879477399998, 28.660367921000045 ], [ -82.120846894999943, 28.66036469900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120846894999943, 28.66036469900007 ], [ -82.121207617999971, 28.660395164000079 ], [ -82.12251307799994, 28.660402200000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116765171999987, 28.661271449000026 ], [ -82.118090858999949, 28.661276060000034 ], [ -82.118790344, 28.661277936000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118790344, 28.661277936000033 ], [ -82.118779492999977, 28.662749695000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118790344, 28.661277936000033 ], [ -82.119829269999968, 28.661288600000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116765171999987, 28.661271449000026 ], [ -82.116769544999954, 28.660353328000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116769544999954, 28.660353328000042 ], [ -82.11879477399998, 28.660367921000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116769544999954, 28.660353328000042 ], [ -82.116763928999944, 28.659380400000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118780883999989, 28.65939574600003 ], [ -82.118780418999961, 28.658983245000059 ], [ -82.118765339999982, 28.65856778400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11879477399998, 28.660367921000045 ], [ -82.118780883999989, 28.65939574600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116763928999944, 28.659380400000032 ], [ -82.118780883999989, 28.65939574600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118780883999989, 28.65939574600003 ], [ -82.119529869999951, 28.659414294000044 ], [ -82.120388906999949, 28.659429546000069 ], [ -82.120722948999969, 28.65943487800007 ], [ -82.120844566999949, 28.659420287000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116762356999971, 28.659334693000062 ], [ -82.116764875999934, 28.658548403000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116214275999937, 28.659335165000073 ], [ -82.116352303999975, 28.659335046000024 ], [ -82.116474247999975, 28.659334941000054 ], [ -82.116643093999983, 28.659334796000053 ], [ -82.116762356999971, 28.659334693000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116223144999935, 28.661271916000032 ], [ -82.116214275999937, 28.659335165000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115281723999942, 28.659330156000067 ], [ -82.115690309999934, 28.659328521000077 ], [ -82.116214275999937, 28.659335165000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120844566999949, 28.659420287000046 ], [ -82.120976920999965, 28.659396027000071 ], [ -82.121306993999951, 28.659392698000033 ], [ -82.122921473999952, 28.659427162000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120856021999941, 28.658602696000059 ], [ -82.120850892999954, 28.657840874000044 ], [ -82.120853155999953, 28.657657712000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123932175999983, 28.659435899000073 ], [ -82.124181467999961, 28.659444681000025 ], [ -82.124961963999965, 28.659446996000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120856021999941, 28.658602696000059 ], [ -82.121753582999986, 28.658611033000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124956438999959, 28.657688029000042 ], [ -82.124954682999942, 28.655920512000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129075427999965, 28.655894045000025 ], [ -82.129077283999948, 28.65554577000006 ], [ -82.129066028999944, 28.655163592000065 ], [ -82.129065848999971, 28.655016571000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129070806999948, 28.657710569000074 ], [ -82.129062755999939, 28.656841204000045 ], [ -82.129075427999965, 28.655894045000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127011681999988, 28.655907288000037 ], [ -82.129075427999965, 28.655894045000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.101198090999958, 28.661273264000044 ], [ -82.101220855999941, 28.661302612000043 ], [ -82.101233712999942, 28.66133377500006 ], [ -82.101267768999946, 28.662361271000066 ], [ -82.10126986399996, 28.662468892000049 ], [ -82.10126993199998, 28.662539813000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10126993199998, 28.662539813000024 ], [ -82.100247646999946, 28.662542815000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10126993199998, 28.662539813000024 ], [ -82.101269712999965, 28.662590004000037 ], [ -82.101266495999937, 28.662863122000033 ], [ -82.101274107999984, 28.663544371000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137362328999984, 28.643206707000047 ], [ -82.137362082999971, 28.643018098000027 ], [ -82.137363119999975, 28.642138561000024 ], [ -82.137353408999957, 28.641382208000039 ], [ -82.137333529999978, 28.641195544000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100257635999981, 28.621030585000028 ], [ -82.100160645999949, 28.621052750000047 ], [ -82.099944023999967, 28.621088477000058 ], [ -82.099498840999956, 28.621084841000027 ], [ -82.098645227999953, 28.621071050000069 ], [ -82.09644482799996, 28.621066258000042 ], [ -82.09620707199997, 28.621069271000067 ], [ -82.096094975999961, 28.621089816000051 ], [ -82.096013833999962, 28.621137631000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096013833999962, 28.621137631000067 ], [ -82.095951930999945, 28.62108650700003 ], [ -82.09496913199996, 28.621088199000042 ], [ -82.092096320999985, 28.621038349000059 ], [ -82.087934982999968, 28.621024498000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096132694999937, 28.629327444000069 ], [ -82.096158495999987, 28.627158350000059 ], [ -82.096173201999989, 28.626326 ], [ -82.096172358999979, 28.625401557000032 ], [ -82.096161925999979, 28.62447888500003 ], [ -82.09605907599996, 28.624122426000042 ], [ -82.09604730999996, 28.623938228000043 ], [ -82.096031646999961, 28.623719921000031 ], [ -82.095996549999938, 28.623389056000065 ], [ -82.096011810999983, 28.623163905000069 ], [ -82.096034609999947, 28.622727250000025 ], [ -82.096022413999947, 28.622068891000026 ], [ -82.095971815999974, 28.621697103000031 ], [ -82.095959855999979, 28.621297997000056 ], [ -82.095971375999966, 28.621212709000076 ], [ -82.096013833999962, 28.621137631000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.080308807999984, 28.599051695000071 ], [ -82.080312747999983, 28.598807177000026 ], [ -82.080313223999951, 28.597693551000077 ], [ -82.080315484999971, 28.596323024000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000936571999944, 28.675449833000073 ], [ -82.000931536999985, 28.67463586100007 ], [ -82.000921018999975, 28.673961956000028 ], [ -82.000913473999958, 28.673557071000062 ], [ -82.000914087999945, 28.671698714000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007070337999949, 28.675483384000074 ], [ -82.007020983999951, 28.675439864000055 ], [ -82.006942600999935, 28.675421946000029 ], [ -82.005968750999955, 28.67542319100005 ], [ -82.005367806999971, 28.675413401000071 ], [ -82.004974343999947, 28.675422033000075 ], [ -82.002881678999984, 28.67543506800007 ], [ -82.001875653999946, 28.675452751000023 ], [ -82.001580629999978, 28.675466875000041 ], [ -82.001192173999982, 28.675474846000043 ], [ -82.000936571999944, 28.675449833000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000936571999944, 28.675449833000073 ], [ -82.000849888999937, 28.675430106000078 ], [ -82.000698892999935, 28.67543997100006 ], [ -82.000437056999942, 28.675444797000068 ], [ -81.999845648999951, 28.675436281000032 ], [ -81.997583114999941, 28.675404402000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996834722999949, 28.644333883000058 ], [ -81.996834724999985, 28.644269724000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133177934999935, 28.654532259000064 ], [ -82.13322974099998, 28.654521979000037 ], [ -82.133329372999981, 28.654508147000058 ], [ -82.134063789999971, 28.654518065000047 ], [ -82.134864179999965, 28.654525242000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200203760999955, 28.602473665000048 ], [ -82.200240338999947, 28.60251869800004 ], [ -82.200274474999958, 28.602559442000029 ], [ -82.200308623999945, 28.602606624000032 ], [ -82.200335474999974, 28.602653820000057 ], [ -82.200364802999957, 28.602724628000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200364802999957, 28.602724628000033 ], [ -82.200382088999959, 28.602859864000038 ], [ -82.200460469999939, 28.603780215000029 ], [ -82.200514833999989, 28.604383982000058 ], [ -82.200530415999935, 28.604581887000052 ], [ -82.200530695999987, 28.604729494000026 ], [ -82.200527244999989, 28.604914007000048 ], [ -82.200508518999982, 28.605061643000056 ], [ -82.200485927999978, 28.605175737000025 ], [ -82.200459540999987, 28.605293190000054 ], [ -82.200417972999958, 28.605424085000038 ], [ -82.200357470999961, 28.605591910000044 ], [ -82.200293125999963, 28.605739613000026 ], [ -82.200221160999945, 28.605877262000035 ], [ -82.200075818999949, 28.606096057000059 ], [ -82.199967614999935, 28.606249892000051 ], [ -82.199688566999953, 28.606599939000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.25709121899996, 28.66810005800005 ], [ -82.258367619999945, 28.667899712000064 ], [ -82.259303107999983, 28.667801435000058 ], [ -82.25939498799994, 28.667787586000031 ], [ -82.259496559999945, 28.66775837800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.254099520999944, 28.667300117000025 ], [ -82.254081815999939, 28.667679945000032 ], [ -82.25409822499995, 28.667792048000024 ], [ -82.254118483999946, 28.667857019000053 ], [ -82.254134007999937, 28.667903679000062 ], [ -82.254162252999947, 28.667945585000041 ], [ -82.254217353999934, 28.668009900000072 ], [ -82.254387184999985, 28.66813428100005 ], [ -82.254484503999947, 28.668199106000031 ], [ -82.25457172199998, 28.668243267000037 ], [ -82.254868255999952, 28.668339022000055 ], [ -82.254957931999968, 28.668348480000077 ], [ -82.255128886999955, 28.668360191000033 ], [ -82.255300015999978, 28.66836296200006 ], [ -82.25547131899998, 28.668357138000033 ], [ -82.255641819999937, 28.668342721000045 ], [ -82.25709121899996, 28.66810005800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.257234658999948, 28.666252428000064 ], [ -82.257124447999956, 28.666110357000036 ], [ -82.256952144999957, 28.665855657000066 ], [ -82.256733237999981, 28.66564481000006 ], [ -82.256530547999944, 28.66548133200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.257443998999975, 28.667139829000064 ], [ -82.257420335999939, 28.666981797000062 ], [ -82.257401945999959, 28.666855190000035 ], [ -82.257351489999962, 28.666509154000039 ], [ -82.257315798999969, 28.666406837000068 ], [ -82.257234658999948, 28.666252428000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054826844, 28.668451680000032 ], [ -82.054825079999944, 28.664770910000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058891728999981, 28.668506764000028 ], [ -82.058118800999978, 28.668507098000077 ], [ -82.056909005999955, 28.668524547000061 ], [ -82.056083273999946, 28.668533360000026 ], [ -82.055603193999957, 28.668537793000041 ], [ -82.055137515999945, 28.668537984000068 ], [ -82.054957009999953, 28.668538099000045 ], [ -82.054826844, 28.668451680000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963452289999964, 28.925802174000069 ], [ -81.963473275999945, 28.925802179000073 ], [ -81.963499986999977, 28.925799669000071 ], [ -81.963524791999987, 28.925790444000029 ], [ -81.963552460999949, 28.92577282700006 ], [ -81.963966727999946, 28.925462846000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96466120599996, 28.923506798000062 ], [ -81.964691735999963, 28.923487783000041 ], [ -81.964727352999944, 28.923473246000071 ], [ -81.964761696999972, 28.92346318500006 ], [ -81.96479349599997, 28.923454241000059 ], [ -81.964826567999978, 28.923446416000047 ], [ -81.964865996999947, 28.923440833000029 ], [ -81.964913055999943, 28.923440845000073 ], [ -81.964944851999974, 28.923443091000024 ], [ -81.964976646999958, 28.923448693000068 ], [ -81.965013528999975, 28.923455417000071 ], [ -81.96504277799994, 28.923463258000027 ], [ -81.965079657, 28.923480052000059 ], [ -81.965117806999956, 28.923496846000035 ], [ -81.965169946999936, 28.923520359000065 ], [ -81.965222083999947, 28.923547227000029 ], [ -81.965285663999964, 28.923577455000043 ], [ -81.965356879999945, 28.923606567000036 ], [ -81.965440812999987, 28.923639038000033 ], [ -81.965524745999971, 28.923669272000041 ], [ -81.965625212999953, 28.923700629000052 ], [ -81.965730392999944, 28.923732376000032 ], [ -81.965839395999978, 28.923770768000054 ], [ -81.966034308999951, 28.923836152000035 ], [ -81.966178416999981, 28.923876447000055 ], [ -81.966215296999962, 28.923891002000062 ], [ -81.966241998999976, 28.923911150000038 ], [ -81.96625598199995, 28.923934652000071 ], [ -81.966262334999954, 28.923955914000032 ], [ -81.966266135999945, 28.923999555000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965610986999934, 28.924416763000067 ], [ -81.966133831999969, 28.92409015800007 ], [ -81.966217792999942, 28.924039826000069 ], [ -81.966247051999972, 28.924017453000033 ], [ -81.966266135999945, 28.923999555000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965615597999943, 28.927436230000069 ], [ -81.96627790499997, 28.92780570900004 ], [ -81.966296464999971, 28.927815683000063 ], [ -81.966315412999961, 28.927825657000028 ], [ -81.966334361999941, 28.92783494400004 ], [ -81.966353507999941, 28.927844231000051 ], [ -81.966372846999946, 28.927853174000063 ], [ -81.96639238299997, 28.927861773000075 ], [ -81.966412113999979, 28.927870029000076 ], [ -81.966432039999972, 28.92787828400003 ], [ -81.966451966999955, 28.927885853000078 ], [ -81.966472284999952, 28.927893420000032 ], [ -81.96649260099997, 28.927900301000079 ], [ -81.966512919999957, 28.927907181000023 ], [ -81.966533627999979, 28.92791371900006 ], [ -81.966554336999934, 28.92791991200005 ], [ -81.966575044999956, 28.92792541700004 ], [ -81.966596144999983, 28.927930923000076 ], [ -81.966617049999968, 28.927936428000066 ], [ -81.966638344999978, 28.927941247000035 ], [ -81.966659444999948, 28.927945721000071 ], [ -81.966680935999989, 28.92794985200004 ], [ -81.966702231999989, 28.927953638000076 ], [ -81.966723722999973, 28.927957425000045 ], [ -81.966745213999957, 28.927960524000071 ], [ -81.966766900999971, 28.927963280000029 ], [ -81.96678858699994, 28.927966035000054 ], [ -81.966810274999943, 28.927968104000058 ], [ -81.966831960999968, 28.927970172000073 ], [ -81.966853842999967, 28.927971552000031 ], [ -81.966875530999971, 28.927972932000046 ], [ -81.966897413999959, 28.927973626000039 ], [ -81.966919296999947, 28.927974318000054 ], [ -81.966941179999935, 28.927974667000058 ], [ -81.966963061999934, 28.927974329000051 ], [ -81.966984944999979, 28.927973991000044 ], [ -81.967006633999972, 28.927973309000038 ], [ -81.96702851699996, 28.927971939000031 ], [ -81.967050400999938, 28.927970569000024 ], [ -81.967072087999952, 28.927968856000064 ], [ -81.967093775999956, 28.927966454000057 ], [ -81.96711546399996, 28.927964053000039 ], [ -81.967137152999953, 28.927961308000079 ], [ -81.967158645999973, 28.92795822000005 ], [ -81.967180139999982, 28.927954787000033 ], [ -81.967201632999945, 28.927951011000061 ], [ -81.96722293199997, 28.927946890000044 ], [ -81.967244228999959, 28.927942427000062 ], [ -81.967265527999984, 28.927937619000033 ], [ -81.967286435999938, 28.927932468000051 ], [ -81.967307537999943, 28.927927316000023 ], [ -81.96732824999998, 28.927921477000041 ], [ -81.967349159999969, 28.927915294000059 ], [ -81.967369675999976, 28.92790911000003 ], [ -81.967390193999961, 28.927902240000037 ], [ -81.967410515999973, 28.927895369000055 ], [ -81.967430837999984, 28.927887812000051 ], [ -81.967450769999971, 28.927880253000069 ], [ -81.967470700999968, 28.927872352000065 ], [ -81.96749043799997, 28.927864106000072 ], [ -81.967510172999937, 28.927855516000079 ], [ -81.967529519999971, 28.927846927000076 ], [ -81.967548669999985, 28.927837649000026 ], [ -81.967567820999989, 28.927828371000032 ], [ -81.967586580999978, 28.927818405000039 ], [ -81.967605339999977, 28.927808440000035 ], [ -81.967623709999941, 28.927798132000078 ], [ -81.967642078999972, 28.927787479000074 ], [ -81.967660056999989, 28.927776827000059 ], [ -81.967677839999965, 28.927765486000055 ], [ -81.967695428999946, 28.927754146000041 ], [ -81.967712820999964, 28.927742462000026 ], [ -81.967730018999987, 28.927730777000079 ], [ -81.967747021999969, 28.927718406000054 ], [ -81.967763631999958, 28.927706034000039 ], [ -81.967780047999952, 28.927693317000035 ], [ -81.967796073999978, 28.927680258000066 ], [ -81.967812099999946, 28.927667198000051 ], [ -81.967827734999958, 28.927653795000026 ], [ -81.967842977999965, 28.927640047000068 ], [ -81.967858027999966, 28.927625956000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965980382999987, 28.926914140000065 ], [ -81.965365950999967, 28.926582396000072 ], [ -81.965038709999988, 28.926400292000039 ], [ -81.964914987999975, 28.926332610000031 ], [ -81.964845419999961, 28.926286855000058 ], [ -81.964784340999984, 28.926215924000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967341060999956, 28.926055764000068 ], [ -81.967357576999973, 28.926113953000026 ], [ -81.96739794399997, 28.926309672000059 ], [ -81.967459653999981, 28.926597511000068 ], [ -81.967465367999978, 28.92662604700007 ], [ -81.96746473099995, 28.926648549000049 ], [ -81.967458675999978, 28.926673880000067 ], [ -81.967449129999977, 28.92669569800006 ], [ -81.96743386199995, 28.926714158000038 ], [ -81.967415731999949, 28.926731776000054 ], [ -81.967388061999941, 28.926752751000038 ], [ -81.966650526999956, 28.927216661000045 ], [ -81.966620951999971, 28.927226725000025 ], [ -81.966586769999935, 28.927228534000051 ], [ -81.966552269999966, 28.927222511000025 ], [ -81.966523179999967, 28.927209496000046 ], [ -81.965980382999987, 28.926914140000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967263437999975, 28.924639425000066 ], [ -81.967282555999986, 28.92536864300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967282555999986, 28.92536864300007 ], [ -81.967306776999976, 28.92587224600004 ], [ -81.967341060999956, 28.926055764000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026825767999981, 28.927313341000058 ], [ -82.023546260999979, 28.927305702000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028833920999944, 28.927321843000072 ], [ -82.027027864, 28.927314197000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008495167999968, 28.920380305000037 ], [ -82.008621182999946, 28.920379609000065 ], [ -82.009415358999945, 28.920379555000068 ], [ -82.010159717999954, 28.920385002000046 ], [ -82.010350536999965, 28.920386017000055 ], [ -82.010409888999959, 28.920394965000071 ], [ -82.010464154999966, 28.920409880000079 ], [ -82.010527604999936, 28.920447197000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011037740999939, 28.918999273000054 ], [ -82.01103266299998, 28.919094758000028 ], [ -82.011017408999976, 28.919161897000038 ], [ -82.010993676999988, 28.919240972000068 ], [ -82.010952989999964, 28.919349889000046 ], [ -82.010910606999971, 28.919454329000075 ], [ -82.010878397999988, 28.919551310000031 ], [ -82.010856360999981, 28.91961845000003 ], [ -82.010849580999945, 28.91964381300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010890973999949, 28.918395165000049 ], [ -82.010896639999942, 28.918411321000065 ], [ -82.010939338999947, 28.918536775000064 ], [ -82.010969871999976, 28.918636733000028 ], [ -82.010998459999939, 28.918728619000035 ], [ -82.011023867999938, 28.918829344000073 ], [ -82.011037731999977, 28.918915724000044 ], [ -82.011040879999939, 28.918971322000061 ], [ -82.011037740999939, 28.918999273000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010499417999938, 28.917982319000032 ], [ -82.010549266999988, 28.918014621000054 ], [ -82.010639146999949, 28.918077276000076 ], [ -82.010710373999984, 28.918135457000062 ], [ -82.010752239999988, 28.918176189000064 ], [ -82.010783296999989, 28.918208556000025 ], [ -82.010810431999971, 28.918242870000029 ], [ -82.010846047999962, 28.918293593000044 ], [ -82.010866401999976, 28.918335367000054 ], [ -82.010890973999949, 28.918395165000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006864066999981, 28.917982554000048 ], [ -82.006928037999955, 28.917978303000041 ], [ -82.007059173999949, 28.917976306000071 ], [ -82.007194831999982, 28.917974311000023 ], [ -82.007375709999963, 28.917978279000067 ], [ -82.007506846999945, 28.917976282000041 ], [ -82.007588240999951, 28.917978267000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002610331999961, 28.915167868000026 ], [ -82.002607575999946, 28.915115601000025 ], [ -82.002607572999977, 28.914970528000026 ], [ -82.002607568999963, 28.914838174000067 ], [ -82.002607566999984, 28.914734009000028 ], [ -82.002610493999953, 28.914621938000039 ], [ -82.002610491999974, 28.914529118000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955324938999979, 28.931193990000054 ], [ -81.955324620999988, 28.931608659000062 ], [ -81.955327145999945, 28.932450556000049 ], [ -81.955316936999964, 28.932531118000043 ], [ -81.955289778999941, 28.932586312000069 ], [ -81.955257535999976, 28.932629567000049 ], [ -81.955108233999965, 28.932760809000058 ], [ -81.955031883999936, 28.932835382000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955031883999936, 28.932835382000064 ], [ -81.955040348999944, 28.932869699000037 ], [ -81.955042022999976, 28.932920426000067 ], [ -81.955042003999949, 28.932965184000068 ], [ -81.955051605999984, 28.934296009000036 ], [ -81.95504989799997, 28.934322864000023 ], [ -81.955038014999957, 28.934346730000073 ], [ -81.955015955999954, 28.934373579000066 ], [ -81.954983723999987, 28.934395947000041 ], [ -81.954565900999967, 28.934563103000073 ], [ -81.954469750999976, 28.934589728000049 ], [ -81.954375584, 28.934605634000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955031883999936, 28.932835382000064 ], [ -81.955008152999937, 28.932807026000035 ], [ -81.954982719999975, 28.932790606000026 ], [ -81.954945416999976, 28.932771198000069 ], [ -81.954877585999952, 28.93275327300006 ], [ -81.95481144699994, 28.932742807000068 ], [ -81.954721564999943, 28.932732332000057 ], [ -81.954657117999943, 28.932733803000076 ], [ -81.954594449999945, 28.932743082000059 ], [ -81.954535, 28.932756141000027 ], [ -81.95449937799998, 28.932771048000063 ], [ -81.954466712999988, 28.932787099000052 ], [ -81.954433215999984, 28.93281578400007 ], [ -81.954404370999953, 28.932844123000052 ], [ -81.954384007999977, 28.932872462000034 ], [ -81.954367032999983, 28.932908263000058 ], [ -81.95435344699996, 28.932947050000053 ], [ -81.954348337999988, 28.932997774000057 ], [ -81.954353200999947, 28.933509515000026 ], [ -81.954360889999975, 28.934254280000061 ], [ -81.954375584, 28.934605634000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959656915999972, 28.932657580000068 ], [ -81.960133251999935, 28.93252269900006 ], [ -81.960189225999954, 28.932504813000037 ], [ -81.960233329999937, 28.93247946300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954248693999943, 28.928649773000075 ], [ -81.954247816999953, 28.928710546000048 ], [ -81.95424212599994, 28.928766236000058 ], [ -81.95423780699997, 28.92881298900005 ], [ -81.954234866999968, 28.928837740000063 ], [ -81.954231338999989, 28.928862490000029 ], [ -81.954226797, 28.928913142000056 ], [ -81.954220131999989, 28.928961878000052 ], [ -81.954211490999967, 28.929010487000028 ], [ -81.954203843999949, 28.929042935000041 ], [ -81.954192574999979, 28.929082577000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954248693999943, 28.928649773000075 ], [ -81.95428112899998, 28.928648945000077 ], [ -81.95433359499998, 28.928649802000052 ], [ -81.954366026999935, 28.928653170000075 ], [ -81.954407045999972, 28.928656540000077 ], [ -81.954438524999944, 28.928659909000032 ], [ -81.954470001999937, 28.92866579300005 ], [ -81.954499571999975, 28.928671678000057 ], [ -81.954536772999973, 28.928680083000074 ], [ -81.954573017999962, 28.928689327000029 ], [ -81.95460830899998, 28.928699409000046 ], [ -81.95466076799994, 28.92871789000003 ], [ -81.954702733999966, 28.928733850000071 ], [ -81.954774267999937, 28.928762407000079 ], [ -81.954889674999947, 28.928811121000024 ], [ -81.955011758999945, 28.928858997000077 ], [ -81.95513193499994, 28.928909391000047 ], [ -81.955252109999947, 28.928958106000039 ], [ -81.955379917999949, 28.929010179000045 ], [ -81.955497022999964, 28.929063246000055 ], [ -81.955542335999951, 28.929080612000064 ], [ -81.955562475999955, 28.929084679000027 ], [ -81.955594438999981, 28.929086363000067 ], [ -81.955623694999986, 28.92908077800007 ], [ -81.955651682999985, 28.929069597000023 ], [ -81.955673315999945, 28.929042750000065 ], [ -81.955687317999946, 28.929017017000035 ], [ -81.955693691999954, 28.928985690000047 ], [ -81.955714985999975, 28.928457361000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954247497999972, 28.927968004000036 ], [ -81.95429093499996, 28.927968652000061 ], [ -81.95432180499995, 28.92796934900008 ], [ -81.954352674999939, 28.927971078000041 ], [ -81.954383348999954, 28.92797349600005 ], [ -81.954413827999986, 28.927977288000079 ], [ -81.954444304999981, 28.927981423000062 ], [ -81.954474586999936, 28.927986933000057 ], [ -81.954504478, 28.927993131000051 ], [ -81.954547848999937, 28.928004147000024 ], [ -81.954577151999956, 28.92801275100004 ], [ -81.95460606499995, 28.928022043000055 ], [ -81.954634586999987, 28.928032366000025 ], [ -81.954662717999952, 28.928043376000062 ], [ -81.954785200999936, 28.928094639000051 ], [ -81.954905535999956, 28.928144527000029 ], [ -81.955025674999945, 28.928194759000064 ], [ -81.955146009999964, 28.928244991000042 ], [ -81.955266344999984, 28.928294878000031 ], [ -81.955386680999936, 28.928345111000056 ], [ -81.955468183999983, 28.928377830000045 ], [ -81.955508878999979, 28.928392763000033 ], [ -81.955546183999957, 28.928406203000065 ], [ -81.955584573999943, 28.928416681000044 ], [ -81.955622489999939, 28.928427115000034 ], [ -81.955661259999943, 28.92844001800006 ], [ -81.955678682999974, 28.928445946000068 ], [ -81.955697293999947, 28.928451353000071 ], [ -81.955714985999975, 28.928457361000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955007054999953, 28.926174157000048 ], [ -81.955089949999945, 28.926211075000026 ], [ -81.955210281999939, 28.926261307000061 ], [ -81.955330614, 28.926311195000039 ], [ -81.95545075299998, 28.926361426000028 ], [ -81.955571413999962, 28.926408009000056 ], [ -81.955755807999935, 28.926481921000061 ], [ -81.955778694999935, 28.926495356000032 ], [ -81.955804124999986, 28.926516625000033 ], [ -81.95581810799996, 28.926536771000031 ], [ -81.955823183999939, 28.926561390000074 ], [ -81.955823171999953, 28.92659160200003 ], [ -81.955821887999946, 28.926618457000075 ], [ -81.955818031999968, 28.926715805000072 ], [ -81.95578990599995, 28.927054843000064 ], [ -81.955779721999988, 28.927074981000032 ], [ -81.955766995999966, 28.927091761000042 ], [ -81.955754270999989, 28.927105185000073 ], [ -81.955737732999978, 28.927113011000074 ], [ -81.955722467999976, 28.927117482000028 ], [ -81.95570466099997, 28.92711971500006 ], [ -81.955683037999961, 28.927120826000078 ], [ -81.955663960999971, 28.927117462000069 ], [ -81.955599906999964, 28.927092344000073 ], [ -81.95547957399998, 28.927042457000027 ], [ -81.95535923999995, 28.926992226000038 ], [ -81.95523910199995, 28.92694199400006 ], [ -81.955118767999977, 28.926892106000025 ], [ -81.954998433999947, 28.926841875000036 ], [ -81.954878295999947, 28.926791987000058 ], [ -81.954757962999963, 28.926741755000023 ], [ -81.954697210999939, 28.926716640000052 ], [ -81.954669080999963, 28.926705286000072 ], [ -81.954640559999973, 28.926694963000045 ], [ -81.954604221999944, 28.92668326200004 ], [ -81.954574918999981, 28.926675001000035 ], [ -81.954545224999947, 28.92666777200003 ], [ -81.95451533499994, 28.926661230000036 ], [ -81.954478800999937, 28.926654686000063 ], [ -81.954448321999962, 28.926650207000023 ], [ -81.954417650999972, 28.92664675900005 ], [ -81.954386976999956, 28.926643998000031 ], [ -81.954356300999962, 28.92664261300007 ], [ -81.954325431999962, 28.926641914000072 ], [ -81.954294561999973, 28.926641904000064 ], [ -81.954263886999968, 28.926643269000067 ], [ -81.954225447999988, 28.926643865000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958008807999988, 28.923838009000065 ], [ -81.958126580999988, 28.924076717000048 ], [ -81.95814691299995, 28.924120487000039 ], [ -81.958169507999969, 28.924158290000037 ], [ -81.958187585999951, 28.924190125000052 ], [ -81.958203401999981, 28.924217979000048 ], [ -81.958228259999942, 28.924253794000037 ], [ -81.95826356799995, 28.92430527700003 ], [ -81.958292381999968, 28.924342585000034 ], [ -81.958316109999942, 28.924378399000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961077569999986, 28.920561547000034 ], [ -81.961078910999959, 28.920621265000079 ], [ -81.961080076999963, 28.920638111000073 ], [ -81.961081632999935, 28.920654957000067 ], [ -81.961083385999984, 28.920671803000062 ], [ -81.961085527999956, 28.920688648000066 ], [ -81.961088061999988, 28.92070549400006 ], [ -81.961090986999977, 28.920721996000054 ], [ -81.961094105999962, 28.920738842000048 ], [ -81.961097615999961, 28.920755344000042 ], [ -81.961101907999989, 28.920774253000047 ], [ -81.961106199999961, 28.920790412000031 ], [ -81.961110686999973, 28.920806914000025 ], [ -81.961115564999943, 28.920823417000065 ], [ -81.961120637999954, 28.920839576000049 ], [ -81.961126297999954, 28.920855735000032 ], [ -81.961136641999985, 28.920883584000023 ], [ -81.961142887999983, 28.920899743000064 ], [ -81.96114971999998, 28.920915559000036 ], [ -81.96115674899994, 28.920931031000066 ], [ -81.961163970999962, 28.920946847000039 ], [ -81.961171584999988, 28.920962319000068 ], [ -81.961184079999953, 28.920986043000028 ], [ -81.961192474999962, 28.921001171000057 ], [ -81.961201260999985, 28.921016300000076 ], [ -81.961210241999936, 28.921031429000038 ], [ -81.961221567999985, 28.921049308000079 ], [ -81.961243435999961, 28.921083005000071 ], [ -81.961412694999979, 28.921336862000032 ], [ -81.96146607999998, 28.921423038000057 ], [ -81.961522009999953, 28.921506977000035 ], [ -81.961535990999948, 28.921533835000048 ], [ -81.961549970999954, 28.921561813000039 ], [ -81.961565218999965, 28.921597625000061 ], [ -81.961572838999984, 28.921627839000053 ], [ -81.961577911999939, 28.921669242000064 ], [ -81.961580444999981, 28.921698336000077 ], [ -81.961584245999973, 28.921736381000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997791176999954, 28.915236963000041 ], [ -81.997731009999939, 28.915067136000062 ], [ -81.997641342999941, 28.914897308000036 ], [ -81.997577853999985, 28.914787298000078 ], [ -81.997523545999968, 28.914700321000055 ], [ -81.997490590999973, 28.914644205000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99556858699998, 28.914781747000063 ], [ -81.995649793999974, 28.914771827000038 ], [ -81.995797741999979, 28.914749302000075 ], [ -81.995894475999989, 28.914739292000036 ], [ -81.995962759999941, 28.914734287000044 ], [ -81.99603104199997, 28.91473929600005 ], [ -81.996150537999938, 28.914744306000046 ], [ -81.996335468999973, 28.914759331000027 ], [ -81.996558861999972, 28.914766993000057 ], [ -81.996761168999967, 28.914779681000027 ], [ -81.996908404999942, 28.914781563000076 ], [ -81.997032522999973, 28.914774368000053 ], [ -81.997208920999981, 28.914741828000047 ], [ -81.997307433999936, 28.914717737000046 ], [ -81.997390654999947, 28.914687699000069 ], [ -81.997490590999973, 28.914644205000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99783660199995, 28.915909946000056 ], [ -81.99783218999994, 28.91583857300003 ], [ -81.99782516199997, 28.915597929000057 ], [ -81.997815788999958, 28.915396820000069 ], [ -81.997792152999978, 28.915239369000062 ], [ -81.997791176999954, 28.915236963000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997830401999977, 28.917211619000057 ], [ -81.997829821999972, 28.916960317000076 ], [ -81.997832172999949, 28.916636824000079 ], [ -81.997833386999957, 28.916568002000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997833386999957, 28.916568002000076 ], [ -81.997836867999979, 28.916383803000031 ], [ -81.997836870999947, 28.916209508000065 ], [ -81.997836874999962, 28.916045871000051 ], [ -81.99783660199995, 28.915909946000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99484666799998, 28.914908865000029 ], [ -81.995259330999943, 28.914833646000034 ], [ -81.995460747999971, 28.914801338000075 ], [ -81.99556858699998, 28.914781747000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993856871999981, 28.912202400000069 ], [ -81.993888836999986, 28.912101765000045 ], [ -81.993938284999956, 28.911955489000036 ], [ -81.993988302999981, 28.911805949000041 ], [ -81.994018393999966, 28.911704536000059 ], [ -81.994033438999963, 28.91163853200004 ], [ -81.994052020999959, 28.911563065000053 ], [ -81.994089483999971, 28.911473833000059 ], [ -81.994110423999985, 28.911433858000066 ], [ -81.99415610899996, 28.911371041000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994475676999969, 28.908752883000034 ], [ -81.994579524999949, 28.908666762000053 ], [ -81.994640077999975, 28.908607566000057 ], [ -81.994698387999961, 28.908556263000037 ], [ -81.994745484999953, 28.908510879000062 ], [ -81.994789060999949, 28.908466864000047 ], [ -81.994832948999942, 28.908433924000065 ], [ -81.994881746999965, 28.908395953000024 ], [ -81.994930103999934, 28.908364042000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985224401999972, 28.911485216000074 ], [ -81.985294340999985, 28.911463909000076 ], [ -81.985397686999988, 28.911438481000062 ], [ -81.985527599999955, 28.91140893000005 ], [ -81.985657512999978, 28.911381442000049 ], [ -81.985770624999986, 28.911366672000042 ], [ -81.985864395999954, 28.911353962000078 ], [ -81.985938825999938, 28.911347782000064 ], [ -81.986030250999988, 28.911345729000061 ], [ -81.986099387999957, 28.911343987000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997103317999972, 28.908640036000065 ], [ -81.997101150999981, 28.908744026000079 ], [ -81.997101149999935, 28.90878837300005 ], [ -81.997101147999956, 28.908868817000041 ], [ -81.997101145999977, 28.908940667000024 ], [ -81.997104268999976, 28.908999109000035 ], [ -81.997119894999969, 28.90907370900004 ], [ -81.997160914999938, 28.909168249000061 ], [ -81.997208187999945, 28.909215348000032 ], [ -81.997293357999979, 28.909289948000037 ], [ -81.997387709999941, 28.909378989000061 ], [ -81.997498078999968, 28.909478687000046 ], [ -81.997586178999939, 28.909556382000062 ], [ -81.997646151999959, 28.909608981000076 ], [ -81.997709051999948, 28.909669831000031 ], [ -81.997753200999966, 28.909714178000058 ], [ -81.997819422999953, 28.909778122000034 ], [ -81.997904396999957, 28.909861318000026 ], [ -81.997973745999957, 28.909933169000055 ], [ -81.998058915999934, 28.910027365000076 ], [ -81.99816765099996, 28.910138931000063 ], [ -81.998235314999988, 28.91021610100006 ], [ -81.998301341999934, 28.910293797000065 ], [ -81.99840760799998, 28.910409274000074 ], [ -81.998470399999974, 28.910490180000068 ], [ -81.998506280999948, 28.910559245000059 ], [ -81.998553375999961, 28.910655937000058 ], [ -81.998597486999984, 28.910742773000038 ], [ -81.998648080999942, 28.910853814000063 ], [ -81.998701605999941, 28.910959009000067 ], [ -81.998742433999951, 28.911050454000076 ], [ -81.998789707999947, 28.911161495000044 ], [ -81.998846554999943, 28.911283193000031 ], [ -81.998918916999969, 28.911425522000059 ], [ -81.998995165999986, 28.911585358000025 ], [ -81.999046745999976, 28.911695862000045 ], [ -81.999103589999947, 28.911804311000026 ], [ -81.999133866999955, 28.911850191000042 ], [ -81.999179279999964, 28.911899030000029 ], [ -81.999226375999967, 28.911940469000058 ], [ -81.999300164999966, 28.91198791100004 ], [ -81.999357570999962, 28.912014468000052 ], [ -81.999427996999941, 28.91203329700005 ], [ -81.999484062999954, 28.91204711000006 ], [ -81.999546857999974, 28.912053031000028 ], [ -81.999591710999937, 28.912055004000024 ], [ -81.999643291999973, 28.912049085000035 ], [ -81.999706688999936, 28.912040195000031 ], [ -81.999778969999966, 28.912017849000051 ], [ -81.999838943999976, 28.911995848000061 ], [ -81.999920795999969, 28.91195975200003 ], [ -81.999990002999937, 28.91193011200005 ], [ -82.000067373999968, 28.911897553000074 ], [ -82.000117834999969, 28.911876832000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004361241999959, 28.908981639000046 ], [ -82.004110233999938, 28.908981451000045 ], [ -82.003999454999985, 28.908983954000064 ], [ -82.003863112999966, 28.908996455000079 ], [ -82.003763697999943, 28.90901645200006 ], [ -82.003650080999989, 28.909043949000079 ], [ -82.003527941999948, 28.90907644400005 ], [ -82.003425685999957, 28.909111438000025 ], [ -82.00332868199996, 28.909146257000032 ], [ -82.003235376999953, 28.909186423000051 ], [ -82.003138802999956, 28.909233913000037 ], [ -82.003050750999989, 28.909283901000038 ], [ -82.002979738999954, 28.909326392000025 ], [ -82.002903046999961, 28.909378880000077 ], [ -82.002829196999983, 28.909431368000071 ], [ -82.002752504999989, 28.90949885200007 ], [ -82.002659275999974, 28.909591741000042 ], [ -82.002593680999951, 28.909662780000076 ], [ -82.002539859999956, 28.909732340000062 ], [ -82.002482673999964, 28.909812259000034 ], [ -82.002425489999951, 28.909902539000029 ], [ -82.002368304999948, 28.910004658000048 ], [ -82.002324576999968, 28.910109736000038 ], [ -82.002285893999954, 28.91020889400005 ], [ -82.002257301999975, 28.91031397200004 ], [ -82.002235438999946, 28.910408689000064 ], [ -82.002225349999947, 28.910527087000048 ], [ -82.002223668999989, 28.910595165000075 ], [ -82.002243852999982, 28.910649923000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004115116999969, 28.909191041000042 ], [ -82.004115829999989, 28.909191020000037 ], [ -82.004240493999987, 28.909187420000023 ], [ -82.004645260999951, 28.909193655000024 ], [ -82.005050278999988, 28.909189997000055 ], [ -82.005646524999975, 28.909187368000062 ], [ -82.005827604999979, 28.909184236000044 ], [ -82.006097447999935, 28.909165479000023 ], [ -82.006512863999944, 28.909124845000065 ], [ -82.00661938099995, 28.909115467000049 ], [ -82.006812794999973, 28.909097579000047 ], [ -82.006875021999974, 28.90908108800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997090794999963, 28.917729664000035 ], [ -81.997036013999946, 28.917721630000074 ], [ -81.996977580999953, 28.917715202000068 ], [ -81.996847933999959, 28.917689494000058 ], [ -81.996738372999971, 28.917668605000074 ], [ -81.996652150999978, 28.917644066000037 ], [ -81.996566971999982, 28.917617594000035 ], [ -81.996458351999934, 28.917581494000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997090794999963, 28.917729664000035 ], [ -81.997093692999954, 28.916997088000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996181390999936, 28.918851051000047 ], [ -81.996197304999953, 28.918697731000066 ], [ -81.996225442999958, 28.918549564000045 ], [ -81.996294627999987, 28.918229299000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99632745599996, 28.919378021000057 ], [ -81.996285459999967, 28.919294477000051 ], [ -81.996254419999957, 28.919222180000077 ], [ -81.996221553999987, 28.919137029000069 ], [ -81.996195991999969, 28.919040632000076 ], [ -81.996185038999954, 28.918958695000072 ], [ -81.996181390999936, 28.918851051000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99683325999996, 28.919866442000057 ], [ -81.996721872999956, 28.91977165000003 ], [ -81.996645178999984, 28.919710598000052 ], [ -81.996557530999951, 28.919627052000067 ], [ -81.996451621999938, 28.919517800000051 ], [ -81.996362149999982, 28.919418188000066 ], [ -81.99632745599996, 28.919378021000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997579286999951, 28.920362331000035 ], [ -81.997527156, 28.920305060000032 ], [ -81.997459591999984, 28.920252041000026 ], [ -81.997333712999989, 28.920178062000048 ], [ -81.997177028999943, 28.920093489000067 ], [ -81.997034122999935, 28.92000622200004 ], [ -81.996889865999947, 28.919908215000078 ], [ -81.99683325999996, 28.919866442000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009356931999946, 28.907693583000025 ], [ -82.009373153999945, 28.907605040000078 ], [ -82.00939262199995, 28.907522210000025 ], [ -82.009434400999965, 28.907384039000078 ], [ -82.009500117999949, 28.907227657000078 ], [ -82.009551229999943, 28.907111978000046 ], [ -82.009599908999974, 28.90700700900004 ], [ -82.009655890999966, 28.906882762000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009655890999966, 28.906882762000066 ], [ -82.009750837999945, 28.906904176000069 ], [ -82.009828740999978, 28.906923450000079 ], [ -82.009938291999958, 28.906932010000048 ], [ -82.010050276999948, 28.906932002000076 ], [ -82.010145220999959, 28.906931995000036 ], [ -82.010257206999938, 28.906931986000075 ], [ -82.01035214999996, 28.906931979000035 ], [ -82.01046656799997, 28.906934112000044 ], [ -82.010554210999942, 28.906936247000033 ], [ -82.010619940999959, 28.906936242000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960465348999946, 28.874232131000042 ], [ -81.960660366999946, 28.873974832000044 ], [ -81.960876059999975, 28.873709741000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960876059999975, 28.873709741000027 ], [ -81.960932194999941, 28.873649967000063 ], [ -81.961003102999939, 28.87357200100007 ], [ -81.961150831999987, 28.873405672000047 ], [ -81.961372420999965, 28.873163977000047 ], [ -81.961605805999966, 28.872899478000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963074750999965, 28.874073709000072 ], [ -81.963380094999934, 28.873821555000063 ], [ -81.963577677999979, 28.873672634000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957925827999986, 28.871871213000077 ], [ -81.958210027999939, 28.87153790800005 ], [ -81.958364590999963, 28.871365410000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958364590999963, 28.871365410000067 ], [ -81.958642130999976, 28.871062810000069 ], [ -81.958811647999937, 28.870872769000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958811647999937, 28.870872769000073 ], [ -81.958868152999969, 28.870814297000038 ], [ -81.958918009999934, 28.870761671000025 ], [ -81.958964546999937, 28.870704657000033 ], [ -81.958994466999968, 28.870654950000073 ], [ -81.959016081999948, 28.870602315000042 ], [ -81.959029395999949, 28.870542367000041 ], [ -81.959032749999949, 28.870461945000045 ], [ -81.959036299, 28.869884357000046 ], [ -81.959036415999947, 28.869586058000039 ], [ -81.959036439999977, 28.869526106000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975241715999971, 28.870336400000042 ], [ -81.975430643999971, 28.87015770000005 ], [ -81.975515661999964, 28.870082895000053 ], [ -81.975574700999971, 28.870026792000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985637097999984, 28.868161907000058 ], [ -81.985632384999974, 28.868091243000038 ], [ -81.98563477, 28.867924978000076 ], [ -81.985647115999939, 28.867713772000059 ], [ -81.985647132999986, 28.86758829200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987129269999969, 28.868170371000076 ], [ -81.987126500999977, 28.867602193000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987125702999947, 28.86838201300003 ], [ -81.987129269999969, 28.868170371000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985637097999984, 28.868161907000058 ], [ -81.985951510999939, 28.868143582000073 ], [ -81.986203354999986, 28.868140836000066 ], [ -81.986549638999975, 28.868151956000077 ], [ -81.986952585999973, 28.868168622000042 ], [ -81.987129269999969, 28.868170371000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987126500999977, 28.867602193000039 ], [ -81.987126501999967, 28.867596005000053 ], [ -81.987129375999984, 28.867318260000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987124662999975, 28.867237204000048 ], [ -81.987124697999946, 28.866952473000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987126287999956, 28.866026323000028 ], [ -81.987459186999956, 28.866026354000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987124697999946, 28.866952473000026 ], [ -81.987123682999936, 28.866713523000044 ], [ -81.987126287999956, 28.866026323000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984992405999947, 28.867008109000039 ], [ -81.985261561999948, 28.867005021000068 ], [ -81.985486153999943, 28.866995952000025 ], [ -81.985641981999947, 28.866985578000026 ], [ -81.985837946999936, 28.866971050000075 ], [ -81.986173210999937, 28.866960694000056 ], [ -81.98657222199995, 28.86695449900003 ], [ -81.986782352999967, 28.866950362000068 ], [ -81.986893319999979, 28.866950373000066 ], [ -81.987124697999946, 28.866952473000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984960458999979, 28.868296747000045 ], [ -81.984964004999938, 28.868084636000049 ], [ -81.984978542999954, 28.867465491000075 ], [ -81.984992405999947, 28.867008109000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984287736999988, 28.868368029000067 ], [ -81.984264132999954, 28.868326461000038 ], [ -81.984255219999966, 28.868274461000055 ], [ -81.984257708999962, 28.868076649000045 ], [ -81.984278107999955, 28.867462660000058 ], [ -81.984287626999958, 28.867142080000065 ], [ -81.984292945999982, 28.867089083000053 ], [ -81.98431597299998, 28.867048559000068 ], [ -81.984347849999949, 28.867025181000031 ], [ -81.98439743299997, 28.867008041000076 ], [ -81.98460283999998, 28.86700806500005 ], [ -81.984864911999978, 28.867008095000074 ], [ -81.984992405999947, 28.867008109000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984238095999956, 28.86875251400005 ], [ -81.984247583999945, 28.868463628000029 ], [ -81.984252312999956, 28.868413749000069 ], [ -81.984287736999988, 28.868368029000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985045551999974, 28.868910558000039 ], [ -81.985021949999975, 28.868848206000052 ], [ -81.984974751999971, 28.868694404000053 ], [ -81.984958239999969, 28.868586330000028 ], [ -81.984953536999967, 28.868457473000035 ], [ -81.984960458999979, 28.868296747000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98569013599996, 28.868783850000057 ], [ -81.985652863999974, 28.868512030000034 ], [ -81.985628820999978, 28.868260108000072 ], [ -81.985637097999984, 28.868161907000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985763846999987, 28.870758263000027 ], [ -81.98506287899994, 28.870896655000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971620345999952, 28.889338875000078 ], [ -81.971629421999978, 28.889164976000075 ], [ -81.971636485999966, 28.889108588000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971584752999945, 28.889958204000038 ], [ -81.971577728999989, 28.889735823000024 ], [ -81.971608248999985, 28.889451683000061 ], [ -81.971620345999952, 28.889338875000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964101711999945, 28.883000546000062 ], [ -81.964075934999983, 28.882869231000029 ], [ -81.964012919999959, 28.882566193000059 ], [ -81.963975688999938, 28.88237427200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960525550999989, 28.885246857000027 ], [ -81.96067523499994, 28.884971547000077 ], [ -81.960794329999942, 28.884738668000068 ], [ -81.960880525999983, 28.884549882000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960088885999937, 28.885055076000071 ], [ -81.960525550999989, 28.885246857000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068465552999953, 28.79878850800003 ], [ -82.068289175999951, 28.798781324000061 ], [ -82.067703750999954, 28.798783528000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064332045999947, 28.801696270000036 ], [ -82.064089766999984, 28.801694251000072 ], [ -82.06326691199996, 28.801697671000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065349878999939, 28.801699712000072 ], [ -82.064778354999987, 28.801699987000063 ], [ -82.064332045999947, 28.801696270000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064332045999947, 28.801696270000036 ], [ -82.064328086999978, 28.801813433000063 ], [ -82.064309425999966, 28.802053673000046 ], [ -82.064306827999985, 28.802200416000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020306042999948, 28.928260825000052 ], [ -82.020307958999979, 28.927414944000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023566223999978, 28.927494757000034 ], [ -82.023537463999958, 28.927515337000045 ], [ -82.023497105, 28.927592020000077 ], [ -82.023498449999977, 28.928241803000049 ], [ -82.02352670099998, 28.92831579500006 ], [ -82.02357098799996, 28.928364588000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04382409699997, 28.870858652000038 ], [ -82.043817710999974, 28.871802096000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043817710999974, 28.871802096000067 ], [ -82.043810596999947, 28.872797048000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043817710999974, 28.871802096000067 ], [ -82.044911487999968, 28.871801736000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043990905999976, 28.867128997000066 ], [ -82.044024745999934, 28.86752242700004 ], [ -82.044027840999945, 28.86760057500004 ], [ -82.044012565999935, 28.867678729000033 ], [ -82.043997307999973, 28.867791916000044 ], [ -82.043997358999945, 28.867913182000052 ], [ -82.044006641999943, 28.868147625000063 ], [ -82.043992119999984, 28.868281866000075 ], [ -82.043918960999974, 28.868370760000062 ], [ -82.043855875999952, 28.86840410700006 ], [ -82.043823084999985, 28.868457442000079 ], [ -82.043835773999945, 28.868626293000034 ], [ -82.043844634999971, 28.868732449000049 ], [ -82.043832408999947, 28.868778266000049 ], [ -82.043832430999942, 28.868829467000069 ], [ -82.043832459999976, 28.868899531000068 ], [ -82.043826364999973, 28.868966904000047 ], [ -82.04382333999996, 28.869053138000027 ], [ -82.043820633999985, 28.869902 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.172500216999936, 28.577241837000031 ], [ -82.17249103499995, 28.576583121000056 ], [ -82.172490288999938, 28.576125654000066 ], [ -82.172512768999979, 28.575889683000071 ], [ -82.172498417999975, 28.575631369000064 ], [ -82.172500870999954, 28.575310612000067 ], [ -82.172500526999954, 28.575099884000053 ], [ -82.172515437999948, 28.574863741000058 ], [ -82.172530112999937, 28.57458090700004 ], [ -82.172535448999952, 28.574399466000045 ], [ -82.172539532999963, 28.57427847200006 ], [ -82.172533480999959, 28.574180682000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.172516814999938, 28.581632228000046 ], [ -82.172525700999984, 28.581517420000068 ], [ -82.172558769999966, 28.581394571000033 ], [ -82.172558472999981, 28.581213031000061 ], [ -82.172528672999988, 28.580854138000063 ], [ -82.172515119999957, 28.580593712000052 ], [ -82.172517982999977, 28.580494930000043 ], [ -82.172502742999939, 28.580422866000049 ], [ -82.172496458999944, 28.580278710000073 ], [ -82.172503134999943, 28.579882610000027 ], [ -82.172514386999978, 28.579617876000043 ], [ -82.172549382999989, 28.579349583000067 ], [ -82.172543036999969, 28.579168050000078 ], [ -82.172531387999982, 28.579071688000056 ], [ -82.172524009999961, 28.578999082000053 ], [ -82.172569954999972, 28.578874851000023 ], [ -82.172579033999966, 28.578740788000061 ], [ -82.172558440999978, 28.578465871000049 ], [ -82.172524157999987, 28.578348279000068 ], [ -82.172503430999939, 28.578249452000023 ], [ -82.172588775999941, 28.578063680000071 ], [ -82.17259792699997, 28.577973389000078 ], [ -82.172554300999934, 28.577828450000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13531385899995, 28.668645324000067 ], [ -82.135340921999955, 28.668266804000041 ], [ -82.135346869999978, 28.667612452000071 ], [ -82.135351130999936, 28.665548578000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120844566999949, 28.659420287000046 ], [ -82.120856021999941, 28.658602696000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120845933999988, 28.659974946000034 ], [ -82.120844566999949, 28.659420287000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048884053999984, 28.608834491000039 ], [ -82.048686423999982, 28.608887128000049 ], [ -82.048567304999949, 28.608923011000059 ], [ -82.048445483999956, 28.608966063000025 ], [ -82.048356070999944, 28.608995587000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035394850999978, 28.872701444000029 ], [ -82.034653194999976, 28.872710433000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035458612999946, 28.871479063000038 ], [ -82.035398652999959, 28.872505682000053 ], [ -82.035396742999978, 28.872580583000058 ], [ -82.03539482399998, 28.872623141000076 ], [ -82.035392903999934, 28.872662294000065 ], [ -82.035394850999978, 28.872701444000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031377322999958, 28.865476413000067 ], [ -82.030721225999969, 28.865475991000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031377322999958, 28.865476413000067 ], [ -82.031380292999984, 28.866314075000048 ], [ -82.031376966999972, 28.866911585000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038887792999958, 28.847543667000025 ], [ -82.037531436999984, 28.847589884000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.101602340999989, 28.659385923000059 ], [ -82.100211372999979, 28.659464263000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10159278499998, 28.660977595000077 ], [ -82.101597227999946, 28.659927375000052 ], [ -82.101602340999989, 28.659385923000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10224397199994, 28.659391379000056 ], [ -82.101836084999945, 28.659391396000046 ], [ -82.101602340999989, 28.659385923000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102274732999945, 28.659391378000066 ], [ -82.102271360999964, 28.659204672000044 ], [ -82.102265219999936, 28.658570955000073 ], [ -82.102270388999955, 28.658166764000043 ], [ -82.102262171999939, 28.657550517000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96798013199998, 28.906844776000071 ], [ -81.968046023999989, 28.906843726000034 ], [ -81.96809490399994, 28.906830641000056 ], [ -81.968143139999938, 28.906814273000066 ], [ -81.968430001999934, 28.906765944000028 ], [ -81.968497326999966, 28.90676441200003 ], [ -81.968588245999968, 28.906768716000045 ], [ -81.968696596999962, 28.906788486000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969281729999977, 28.905929486000048 ], [ -81.969364170999938, 28.905909221000059 ], [ -81.969516159999955, 28.905864565000059 ], [ -81.969678309999949, 28.905808222000076 ], [ -81.969857262999938, 28.905739851000078 ], [ -81.970009455999957, 28.905665628000065 ], [ -81.970144458999982, 28.905588308000063 ], [ -81.970259411999962, 28.905515804000061 ], [ -81.97035369699995, 28.905455820000043 ], [ -81.970466041999941, 28.905360540000061 ], [ -81.970592429999954, 28.905258205000052 ], [ -81.970734861999972, 28.905152342000065 ], [ -81.970887324999978, 28.905042952000031 ], [ -81.97111823399996, 28.904897185000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123479217999943, 28.639412611000068 ], [ -82.123630169999956, 28.639396259000023 ], [ -82.123748973999966, 28.639400996000063 ], [ -82.12404861999994, 28.639459055000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.255946747999985, 28.644114443000035 ], [ -82.255965707999962, 28.644033100000058 ], [ -82.255994894999958, 28.643951577000053 ], [ -82.25612056999995, 28.643726678000064 ], [ -82.25615744199996, 28.643644851000033 ], [ -82.256232806999947, 28.643411062000041 ], [ -82.256281074999947, 28.643169723000028 ], [ -82.256321721999939, 28.642781041000035 ], [ -82.256311559999972, 28.642483813000069 ], [ -82.256327018999968, 28.642186321000054 ], [ -82.256382913999971, 28.641849035000064 ], [ -82.256482533999986, 28.641655900000046 ], [ -82.256692996999959, 28.641312121000055 ], [ -82.256973738999989, 28.640906074000043 ], [ -82.257014388999949, 28.640853672000048 ], [ -82.257040162999942, 28.640781677000064 ], [ -82.257051074999936, 28.640696628000057 ], [ -82.257058312999959, 28.640624668000044 ], [ -82.257046961999947, 28.640529852000043 ], [ -82.257031965999943, 28.640461204000076 ], [ -82.256884577999983, 28.640130472000067 ], [ -82.256660069999953, 28.639783506000072 ], [ -82.256483185999969, 28.639518179000049 ], [ -82.256263213999944, 28.639044220000073 ], [ -82.256233732999988, 28.638733538000054 ], [ -82.256272284999966, 28.638434195000059 ], [ -82.256288473999973, 28.638072030000046 ], [ -82.256294940999965, 28.637682853000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.255940582999983, 28.644924608000053 ], [ -82.255890272999977, 28.644547551000073 ], [ -82.255889380999974, 28.644452065000053 ], [ -82.255901427999959, 28.644356315000039 ], [ -82.255918994999945, 28.644243338000024 ], [ -82.255946747999985, 28.644114443000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110527615999956, 28.666719862000036 ], [ -82.110521351999978, 28.667664975000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111896471999955, 28.666735372000062 ], [ -82.110527615999956, 28.666719862000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029250213999944, 28.865465814000061 ], [ -82.028814767999961, 28.865463043000034 ], [ -82.028686325999956, 28.865461542000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997241232999954, 28.865309203000038 ], [ -81.997032931999968, 28.865309198000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959596011999963, 28.893461197000079 ], [ -81.959463032999963, 28.89337418100007 ], [ -81.959351528999946, 28.893312612000045 ], [ -81.959185932999958, 28.89322833600005 ], [ -81.958985376999976, 28.893135799000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957142898999962, 28.895600310000077 ], [ -81.957449242999985, 28.895451887000036 ], [ -81.957727813999952, 28.895317369000054 ], [ -81.957943881999938, 28.895213617000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955765088999954, 28.896494930000074 ], [ -81.955934054999943, 28.896326994000049 ], [ -81.956025706999981, 28.89624077700006 ], [ -81.956151452999961, 28.896135822000076 ], [ -81.956362440999953, 28.895989645000043 ], [ -81.956523405999974, 28.895901754000079 ], [ -81.956803752999974, 28.895764676000056 ], [ -81.956846926999958, 28.895744750000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958985376999976, 28.893135799000049 ], [ -81.958800634999989, 28.893062861000033 ], [ -81.958628585999975, 28.892992678000041 ], [ -81.95845673499997, 28.89291974300005 ], [ -81.958313396999984, 28.892855413000063 ], [ -81.958275605999972, 28.892839971000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95998205099994, 28.893741355000031 ], [ -81.959825237999951, 28.893618228000037 ], [ -81.959748562999948, 28.893561957000031 ], [ -81.959599916999935, 28.893463949000079 ], [ -81.959596011999963, 28.893461197000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95998205099994, 28.893741355000031 ], [ -81.960048834999952, 28.893667629000049 ], [ -81.960108332999937, 28.893610617000036 ], [ -81.960196246999942, 28.893531895000024 ], [ -81.960305526999946, 28.893448776000071 ], [ -81.960434556999985, 28.893356823000033 ], [ -81.960548006999943, 28.893292268000039 ], [ -81.96068371399997, 28.893228300000033 ], [ -81.960840583999982, 28.893160597000076 ], [ -81.961058295999976, 28.893072457000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958162099999981, 28.895593216000066 ], [ -81.958209844999942, 28.895653965000065 ], [ -81.958261584999946, 28.895714514000076 ], [ -81.958317488999967, 28.895772186000045 ], [ -81.958374993999939, 28.895821421000051 ], [ -81.95843193099995, 28.895859384000062 ], [ -81.95857787999995, 28.895945229000063 ], [ -81.958801543999982, 28.896056387000044 ], [ -81.95894709099997, 28.89612390700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95950070799995, 28.949385492000033 ], [ -81.959535387999949, 28.949524609000036 ], [ -81.959550234999938, 28.949624995000079 ], [ -81.959573572999943, 28.949733159000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958440923999945, 28.951698271000055 ], [ -81.959097804999942, 28.951185555000052 ], [ -81.959267772999965, 28.951028440000073 ], [ -81.959368346999952, 28.950915488000078 ], [ -81.959452176999946, 28.950773058000038 ], [ -81.959513670999968, 28.950620795000077 ], [ -81.959542175999957, 28.95046641600004 ], [ -81.959558590999961, 28.950037715000065 ], [ -81.959564084999954, 28.949832890000039 ], [ -81.959573572999943, 28.949733159000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.211439562999942, 28.585957392000068 ], [ -82.211407713999961, 28.58602159000003 ], [ -82.211375875999977, 28.58609092100005 ], [ -82.211303501999964, 28.586242424000034 ], [ -82.211242690999939, 28.586360551000041 ], [ -82.211202124999943, 28.58642732800007 ], [ -82.211152057999982, 28.586502844000051 ], [ -82.210507213999961, 28.587371918000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210778372999982, 28.585309237000047 ], [ -82.211042344999953, 28.585491081000043 ], [ -82.211275484999987, 28.585652954000068 ], [ -82.211355245999982, 28.585709613000063 ], [ -82.21139975799997, 28.58575551000007 ], [ -82.211425898999948, 28.585806844000047 ], [ -82.211441337999986, 28.58586765900003 ], [ -82.211439562999942, 28.585957392000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.211223296999947, 28.584801772000048 ], [ -82.21117264999998, 28.584769777000076 ], [ -82.211117334999983, 28.584728808000079 ], [ -82.211038726999959, 28.584669914000074 ], [ -82.210968868999942, 28.584623836000048 ], [ -82.210890265999979, 28.584567508000077 ], [ -82.210800025999959, 28.584506066000074 ], [ -82.210735980999971, 28.584459978000041 ], [ -82.210671985999966, 28.58443955000007 ], [ -82.210608042999979, 28.584444781000059 ], [ -82.210541227999954, 28.584467978000077 ], [ -82.210474479999959, 28.584524532000046 ], [ -82.210425172999976, 28.584581059000072 ], [ -82.210372958999983, 28.584637591000046 ], [ -82.210329456999943, 28.584688978000031 ], [ -82.210268546999941, 28.584758352000051 ], [ -82.210247593999952, 28.584819034000077 ], [ -82.210247701999947, 28.584873112000025 ], [ -82.210263110999961, 28.584919056000047 ], [ -82.210289215999978, 28.584952814000076 ], [ -82.210327577999976, 28.584987906000038 ], [ -82.210395066, 28.585035120000043 ], [ -82.210451829999954, 28.585081 ], [ -82.210514711999963, 28.585122812000066 ], [ -82.210612441999956, 28.585194028000046 ], [ -82.210688136999977, 28.585250362000068 ], [ -82.21073471699998, 28.58528364700004 ], [ -82.210778372999982, 28.585309237000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210778372999982, 28.585309237000047 ], [ -82.210909197999968, 28.585314167000035 ], [ -82.210993481999935, 28.585303772000032 ], [ -82.211069018999979, 28.585280560000058 ], [ -82.211144507999961, 28.585234256000035 ], [ -82.211196735999977, 28.585185422000052 ], [ -82.211225728999977, 28.585146888000054 ], [ -82.211254701999962, 28.585098090000031 ], [ -82.211269124999944, 28.585041617000059 ], [ -82.211268995999944, 28.584977468000034 ], [ -82.211264823999954, 28.584917500000074 ], [ -82.211244757999964, 28.584839116000069 ], [ -82.211223296999947, 28.584801772000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.211370535999947, 28.584770854000055 ], [ -82.211376491999943, 28.584844318000023 ], [ -82.211387355999989, 28.584915956000032 ], [ -82.211404358999971, 28.584992992000025 ], [ -82.211436723999952, 28.585092987000053 ], [ -82.211475250999968, 28.585210549000067 ], [ -82.211510238999949, 28.585339050000073 ], [ -82.211570451999989, 28.585538992000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187079551999943, 28.575206303000073 ], [ -82.187079897, 28.575102904000062 ], [ -82.187087054999949, 28.57488584400005 ], [ -82.187089771999979, 28.574769638000078 ], [ -82.187083194999957, 28.574464360000036 ], [ -82.187081709999973, 28.574395602000038 ], [ -82.187088437999989, 28.574126402000047 ], [ -82.187101011999971, 28.573858914000027 ], [ -82.187130690999936, 28.573355215000049 ], [ -82.187132153999983, 28.573300894000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187095606999947, 28.576253354000073 ], [ -82.187088398999947, 28.57619500800007 ], [ -82.187084051999989, 28.576049590000025 ], [ -82.187076091999984, 28.575842293000051 ], [ -82.187067711999987, 28.575618839000072 ], [ -82.187073036999948, 28.575436622000041 ], [ -82.187079551999943, 28.575206303000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203461395999966, 28.637197478000076 ], [ -82.204579613999954, 28.637213569000039 ], [ -82.204806105999978, 28.637220288000037 ], [ -82.206387756999959, 28.637228264000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.206387756999959, 28.637228264000044 ], [ -82.206438336999952, 28.637233630000026 ], [ -82.206512486999941, 28.637254608000035 ], [ -82.206603413999972, 28.637296652000032 ], [ -82.206648859999973, 28.637309236000078 ], [ -82.206689020999988, 28.637307488000033 ], [ -82.206723418999957, 28.637293938000028 ], [ -82.206752053999935, 28.637266898000064 ], [ -82.206767286999934, 28.637233129000037 ], [ -82.206767190999983, 28.637184199000046 ], [ -82.206753744999958, 28.637153848000025 ], [ -82.206713517999958, 28.637121852000064 ], [ -82.206682892999936, 28.637108400000045 ], [ -82.20664656799994, 28.637115204000054 ], [ -82.206612165999957, 28.637127068000041 ], [ -82.206526176999944, 28.637164318000032 ], [ -82.206387756999959, 28.637228264000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108112422999966, 28.677717251000047 ], [ -82.108223513999974, 28.677711564000049 ], [ -82.10855203899996, 28.677712700000029 ], [ -82.109004366999955, 28.677724933000036 ], [ -82.109367277999979, 28.677739440000039 ], [ -82.109420991999968, 28.677726927000037 ], [ -82.109477499999969, 28.677681994000068 ], [ -82.109502882999948, 28.677617136000038 ], [ -82.109498260999942, 28.676231555000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008027896999977, 28.769810073000031 ], [ -82.00805140999995, 28.769828768000025 ], [ -82.008134028999962, 28.769885005000049 ], [ -82.008134193999979, 28.76988510800004 ], [ -82.008206853, 28.76992135200004 ], [ -82.008207073999984, 28.769921455000031 ], [ -82.008258429999955, 28.769941283000037 ], [ -82.008258780999938, 28.769941411000048 ], [ -82.008317605999935, 28.769958965000058 ], [ -82.008387561999939, 28.769973307000043 ], [ -82.008387840999944, 28.769973357000026 ], [ -82.008471009999937, 28.769981814000062 ], [ -82.008471141999962, 28.76998182400007 ], [ -82.008471400999952, 28.769981833000031 ], [ -82.008555583999964, 28.769981242000028 ], [ -82.008555891999947, 28.769981221000023 ], [ -82.00862516799998, 28.769973830000026 ], [ -82.00862533999998, 28.769973805000063 ], [ -82.008705523999936, 28.769957116000057 ], [ -82.008705728999985, 28.769957060000024 ], [ -82.008770986999934, 28.769936546000054 ], [ -82.00877116199996, 28.769936478000034 ], [ -82.008836298999938, 28.76990902700004 ], [ -82.00883644399994, 28.769908956000052 ], [ -82.008893608999983, 28.769878231000064 ], [ -82.008893697999952, 28.769878175000031 ], [ -82.008953336, 28.76983810400003 ], [ -82.008953542999961, 28.769837945000063 ], [ -82.009005196999965, 28.769794946000047 ], [ -82.009060157999954, 28.76974696700006 ], [ -82.009391513999958, 28.769457706000026 ], [ -82.010150700999986, 28.768794954000043 ], [ -82.010881771999948, 28.768156735000048 ], [ -82.010890730999961, 28.768148913000061 ], [ -82.010891526999956, 28.768148218000078 ], [ -82.01089202199995, 28.768147785000053 ], [ -82.011378761999936, 28.767722450000065 ], [ -82.01137915299995, 28.767722069000058 ], [ -82.011379270999953, 28.767721952000045 ], [ -82.01143426699997, 28.767660708000051 ], [ -82.011434437999981, 28.767660483000043 ], [ -82.011484214999939, 28.767586040000026 ], [ -82.011484466999946, 28.76758559600006 ], [ -82.011484528999972, 28.767585484000051 ], [ -82.01152265199994, 28.767502621000062 ], [ -82.011522702999969, 28.76750247800004 ], [ -82.011545257999956, 28.767421814000045 ], [ -82.011545340999987, 28.76742138000003 ], [ -82.011555306999981, 28.767327800000032 ], [ -82.011555308999959, 28.76732751000003 ], [ -82.011551408999935, 28.767253571000026 ], [ -82.01155136999995, 28.767253283000059 ], [ -82.011537618999967, 28.767182017000039 ], [ -82.011537577999945, 28.767181869000069 ], [ -82.011511756999937, 28.767106759000058 ], [ -82.011511623, 28.76710644800005 ], [ -82.01148584799995, 28.767053826000051 ], [ -82.011485676999939, 28.767053523000072 ], [ -82.011456222999982, 28.767006062000064 ], [ -82.011456075999945, 28.767005856000026 ], [ -82.01142333599995, 28.766962684000077 ], [ -82.011423165999986, 28.766962482000054 ], [ -82.011371549999978, 28.766907557000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008027896999977, 28.769810073000031 ], [ -82.007610762999946, 28.770189148000043 ], [ -82.007521423999947, 28.770317247000037 ], [ -82.007459223999945, 28.770446083000024 ], [ -82.007425479999938, 28.770551796000063 ], [ -82.007409118999988, 28.770633025000052 ], [ -82.007399705999944, 28.770735659000024 ], [ -82.00740405099998, 28.770878365000044 ], [ -82.007403053999951, 28.771213988000056 ], [ -82.007401805999962, 28.771634234000032 ], [ -82.007401189999939, 28.771841395000024 ], [ -82.007400816999962, 28.771966915000064 ], [ -82.007400460999975, 28.772270406000075 ], [ -82.007400489999952, 28.77267897400003 ], [ -82.007400505999954, 28.772894931000053 ], [ -82.007400019999977, 28.772968377000041 ], [ -82.007388480999964, 28.773048666000079 ], [ -82.007368645999975, 28.773111288000052 ], [ -82.007333396999968, 28.773181866000073 ], [ -82.007291822999946, 28.773240187000056 ], [ -82.007239109999944, 28.773295121000046 ], [ -82.007125304999988, 28.773367445000076 ], [ -82.006926065999949, 28.773494063000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975135336999983, 28.822648558000026 ], [ -81.97501011199995, 28.822785727000053 ], [ -81.974928708999983, 28.822901476000027 ], [ -81.974859829999957, 28.822995177000053 ], [ -81.97479408099997, 28.823083367000038 ], [ -81.974759639999945, 28.823132973000043 ], [ -81.974700151999969, 28.823221164000074 ], [ -81.974640660999967, 28.823320379000052 ], [ -81.974584838999988, 28.823409479000077 ], [ -81.974509574999956, 28.823517371000037 ], [ -81.974262266999972, 28.82390162400003 ], [ -81.974158491999958, 28.823989840000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055640565999965, 28.852273602000025 ], [ -82.055704506999973, 28.852239301000054 ], [ -82.055754542999978, 28.852209901000037 ], [ -82.055801790999965, 28.852163368000049 ], [ -82.055840004999936, 28.85212111900006 ], [ -82.055860145999986, 28.852087449000066 ], [ -82.055876803999979, 28.852036030000079 ], [ -82.055881634999935, 28.85196809200005 ], [ -82.055881316999944, 28.851374409000073 ], [ -82.05588100999995, 28.850799087000041 ], [ -82.055882020999945, 28.847413396000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956647051999937, 28.870331626000052 ], [ -81.956644351999955, 28.869723331000046 ], [ -81.956638624999982, 28.869289203000051 ], [ -81.956647546999989, 28.869138432000057 ], [ -81.956695379999985, 28.868944531000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955514630999971, 28.871726997000053 ], [ -81.955462146999935, 28.871613479000075 ], [ -81.955369115999986, 28.871390652000059 ], [ -81.955304723999973, 28.871205668000073 ], [ -81.955268946999979, 28.871108971000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957170986999984, 28.873701170000061 ], [ -81.957182949999947, 28.873638118000031 ], [ -81.957211690999941, 28.873432146000027 ], [ -81.957252380999989, 28.873196751000023 ], [ -81.957302610999989, 28.872988684000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956150554999965, 28.875611422000077 ], [ -81.956203134999953, 28.875504246000048 ], [ -81.956284374999939, 28.875384466000071 ], [ -81.95642055199994, 28.875224769000056 ], [ -81.956554344999972, 28.875062970000045 ], [ -81.956678588999978, 28.874886455000023 ], [ -81.956793287999972, 28.87469522300006 ], [ -81.956910382, 28.874487178000038 ], [ -81.956989264999947, 28.874287527000035 ], [ -81.95708009599997, 28.874066862000063 ], [ -81.957139875999985, 28.873867206000057 ], [ -81.957170986999984, 28.873701170000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954474437999977, 28.877128751000043 ], [ -81.954442553999968, 28.877052723000077 ], [ -81.954390070999978, 28.876932901000032 ], [ -81.954342360999988, 28.876819384000044 ], [ -81.954301813999962, 28.876707972000077 ], [ -81.954266046999976, 28.876588156000025 ], [ -81.954242210999951, 28.876489360000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980374714999982, 28.866265905000034 ], [ -81.980449627999974, 28.866232072000059 ], [ -81.980501986999968, 28.866172556000038 ], [ -81.980554347999941, 28.866113042000052 ], [ -81.980600166999977, 28.866036246000078 ], [ -81.980635076999988, 28.865978649000056 ], [ -81.980674350999948, 28.865905692000069 ], [ -81.980709265999963, 28.86582889500005 ], [ -81.980733269999973, 28.865767456000071 ], [ -81.980739846999938, 28.865583131000051 ], [ -81.980745955999964, 28.865426051000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980629014999977, 28.86542772100006 ], [ -81.98063295999998, 28.865625357000056 ], [ -81.980622032999975, 28.865746319000039 ], [ -81.980587111999967, 28.865863438000076 ], [ -81.980526014999953, 28.865986313000064 ], [ -81.980451830999982, 28.866103427000041 ], [ -81.980385228999978, 28.866191246000028 ], [ -81.980374714999982, 28.866265905000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978033701999948, 28.871974586000078 ], [ -81.978072801999986, 28.871889958000054 ], [ -81.978088185, 28.871840721000069 ], [ -81.978088192999962, 28.87184069400007 ], [ -81.978094411999962, 28.871820788000036 ], [ -81.978128262999974, 28.871623103000047 ], [ -81.978162162999979, 28.871185215000025 ], [ -81.978171879999934, 28.870911001000024 ], [ -81.978179897999951, 28.870761989000073 ], [ -81.978200349999952, 28.870649468000067 ], [ -81.978228706999971, 28.870533086000023 ], [ -81.978256982999937, 28.870438260000071 ], [ -81.978309170999978, 28.870312427000044 ], [ -81.978376213999979, 28.870184961000064 ], [ -81.978459795999981, 28.870062389000054 ], [ -81.978528179999955, 28.869971019000047 ], [ -81.978729415999965, 28.869748947000062 ], [ -81.978858515999946, 28.86961318300007 ], [ -81.978946062999967, 28.86950080400004 ], [ -81.97902457899994, 28.869387147000054 ], [ -81.979075795999961, 28.869302854000068 ], [ -81.979116737999959, 28.869214185000033 ], [ -81.979161369999986, 28.86908181900003 ], [ -81.979195490999984, 28.868967570000052 ], [ -81.979242447, 28.868821060000073 ], [ -81.979288040999961, 28.868725228000073 ], [ -81.97935296199995, 28.868621208000036 ], [ -81.979431683999962, 28.86851869000003 ], [ -81.979528651999942, 28.868375339000067 ], [ -81.979612599999939, 28.86822502900003 ], [ -81.97968730599996, 28.868051442000024 ], [ -81.979725622999979, 28.867935154000065 ], [ -81.979766779999977, 28.867760222000072 ], [ -81.979812402999983, 28.867515058000038 ], [ -81.979904461999979, 28.867026053000075 ], [ -81.979946493999989, 28.866877215000045 ], [ -81.980000368999981, 28.866746393000028 ], [ -81.980083501999957, 28.866596825000045 ], [ -81.98018000999997, 28.866468522000048 ], [ -81.980374714999982, 28.866265905000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119940917999941, 28.879659412000024 ], [ -82.121666708999953, 28.879976492000026 ], [ -82.122353260999944, 28.880097942000077 ], [ -82.122687136999957, 28.880159708000065 ], [ -82.123028057999989, 28.880215260000057 ], [ -82.123277277999989, 28.880252275000032 ], [ -82.123648728999967, 28.880282970000053 ], [ -82.123963738999976, 28.880293025000071 ], [ -82.124255223999967, 28.880288620000044 ], [ -82.124610160999964, 28.880269671000065 ], [ -82.124911017999978, 28.880240426000057 ], [ -82.125075542, 28.880217514000037 ], [ -82.125230659999943, 28.880192542000032 ], [ -82.12542807799997, 28.880157186000076 ], [ -82.125585533999981, 28.880121866000025 ], [ -82.125900437999974, 28.880045018000033 ], [ -82.126097830999981, 28.879988971000046 ], [ -82.126330456999938, 28.879910131000031 ], [ -82.126591273999964, 28.879816781000045 ], [ -82.126800378999974, 28.879727617000071 ], [ -82.127035317999969, 28.87961980700004 ], [ -82.12721856099995, 28.879526530000078 ], [ -82.127634356999977, 28.87929854600003 ], [ -82.128147914999943, 28.878997784000035 ], [ -82.130152504999955, 28.877847835000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961336055999936, 28.876495910000074 ], [ -81.960873409999977, 28.876322486000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960873409999977, 28.876322486000049 ], [ -81.960809329999961, 28.876299435000078 ], [ -81.960535000999982, 28.876173533000042 ], [ -81.960376071999974, 28.876078948000043 ], [ -81.960221055999966, 28.87597026800006 ], [ -81.960001079999984, 28.87578652600007 ], [ -81.959826881999959, 28.875651297000047 ], [ -81.959773741999982, 28.875594091000039 ], [ -81.959750135999968, 28.875542093000035 ], [ -81.959747200999971, 28.875492701000042 ], [ -81.959753124999963, 28.875451110000029 ], [ -81.959770864999939, 28.875399125000058 ], [ -81.959871357999987, 28.875193790000026 ], [ -81.960001399999953, 28.874949470000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999150623999981, 28.913023502000044 ], [ -81.999219496999956, 28.912978616000032 ], [ -81.999342178999939, 28.912899659000061 ], [ -81.999569500999939, 28.912766292000072 ], [ -81.999739382999962, 28.912665654000079 ], [ -81.99989917399995, 28.912579816000061 ], [ -82.000042144999952, 28.912510258000054 ], [ -82.000173340999936, 28.912449579000054 ], [ -82.000380227999983, 28.912357820000068 ], [ -82.000585432999969, 28.912282342000026 ], [ -82.000769242, 28.912219913000058 ], [ -82.000984067, 28.912155062000068 ], [ -82.001093395999987, 28.912118063000037 ], [ -82.001157312999965, 28.912091423000049 ], [ -82.001248138999983, 28.912052943000049 ], [ -82.001350740999953, 28.912001144000044 ], [ -82.001449976999936, 28.911944903000062 ], [ -82.00154562299997, 28.911878462000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99773335499998, 28.912742578000064 ], [ -81.997765814, 28.912872890000074 ], [ -81.997836451999945, 28.912986088000025 ], [ -81.99791739799997, 28.91314040900005 ], [ -81.997991388999935, 28.913283771000067 ], [ -81.998088941999981, 28.913480608000043 ], [ -81.99817640599997, 28.913601966000044 ], [ -81.998284051999974, 28.913730724000061 ], [ -81.998403475999964, 28.913843203000056 ], [ -81.998539717999961, 28.913951242000053 ], [ -81.998697826999944, 28.914050401000054 ], [ -81.998794325999938, 28.914119752000033 ], [ -81.998902255999951, 28.914202848000059 ], [ -81.999025820999975, 28.914324197000042 ], [ -81.999153654999986, 28.914482555000063 ], [ -81.999210843999947, 28.914563953000027 ], [ -81.999271396999973, 28.914670510000064 ], [ -81.999348768999937, 28.914824426000052 ], [ -81.999420159999943, 28.914992749000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999420159999943, 28.914992749000078 ], [ -81.999470297999949, 28.915239066000026 ], [ -81.999489099999948, 28.915323622000074 ], [ -81.999526704999937, 28.915579130000026 ], [ -81.99955386299996, 28.915882432000046 ], [ -81.999572665999949, 28.916158159000076 ], [ -81.999579202999939, 28.916304392000029 ], [ -81.999576841999954, 28.916415506000078 ], [ -81.999577519999946, 28.916544145000046 ], [ -81.999566394999988, 28.916751893000026 ], [ -81.999547590999953, 28.917009241000073 ], [ -81.999503713999957, 28.917375040000024 ], [ -81.999491178999961, 28.917450404000078 ], [ -81.999480732999984, 28.917487168000036 ], [ -81.999441037999986, 28.917536799000061 ], [ -81.999418248999973, 28.917569817000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998595620999936, 28.913717820000045 ], [ -81.998660546999986, 28.913733033000028 ], [ -81.998740770999973, 28.913769797000043 ], [ -81.998797595999974, 28.91381244400003 ], [ -81.99891099499996, 28.913918590000037 ], [ -81.999057669999956, 28.914107965000028 ], [ -81.999209155999949, 28.914342029000068 ], [ -81.999303167999983, 28.914525848000039 ], [ -81.999378376999971, 28.914715182000066 ], [ -81.99941389199995, 28.914869590000023 ], [ -81.999425162999955, 28.914948451000043 ], [ -81.999420159999943, 28.914992749000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008566709999968, 28.92608470700003 ], [ -82.008566747999964, 28.926164968000023 ], [ -82.008557104999966, 28.92699370400004 ], [ -82.008560356999965, 28.927184512000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007588240999951, 28.917978267000024 ], [ -82.007569367999963, 28.916874463000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988130897999952, 28.895381961000055 ], [ -81.988063748999934, 28.89524749800006 ], [ -81.987992630999941, 28.894940724000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988582474999987, 28.895965163000028 ], [ -81.988436877999959, 28.895793832000038 ], [ -81.988302180999938, 28.895652656000038 ], [ -81.988200187999951, 28.895512852000024 ], [ -81.988130897999952, 28.895381961000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185485940999968, 28.578318055000068 ], [ -82.185593205999965, 28.578361579000045 ], [ -82.18583511199995, 28.578387935000023 ], [ -82.186104443999966, 28.578380287000073 ], [ -82.186417766999966, 28.578382284000043 ], [ -82.186600564999935, 28.578381861000025 ], [ -82.186604070999977, 28.578381857000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062142223999956, 28.836162240000078 ], [ -82.062142268999935, 28.836237806000042 ], [ -82.06211369, 28.83628539700004 ], [ -82.062043782999979, 28.836313415000063 ], [ -82.059939660999987, 28.83632556200007 ], [ -82.059841128999949, 28.836322807000045 ], [ -82.059745777999979, 28.836328447000028 ], [ -82.059666324999966, 28.836342476000027 ], [ -82.059596415999977, 28.836373293000065 ], [ -82.059529689999977, 28.83640970600004 ], [ -82.059494747999963, 28.836446103000071 ], [ -82.059447101999979, 28.836502099000029 ], [ -82.059399462999977, 28.836566491000042 ], [ -82.059374075999983, 28.836639268000056 ], [ -82.059355044999961, 28.836709245000065 ], [ -82.059339205999947, 28.836804408000035 ], [ -82.059317013999987, 28.836902373000044 ], [ -82.059088899999949, 28.838206675000038 ], [ -82.059019221999961, 28.838646105000066 ], [ -82.058978057, 28.838923195000064 ], [ -82.058950721999963, 28.839043080000067 ], [ -82.058881948999954, 28.839186410000025 ], [ -82.058812966999938, 28.83926751000007 ], [ -82.05835, 28.839385057000072 ], [ -82.057924379999974, 28.839434845000028 ], [ -82.057498745999965, 28.839457072000073 ], [ -82.057210777999956, 28.83940208000007 ], [ -82.056308158999968, 28.839754808000066 ], [ -82.055871458999945, 28.839810495000052 ], [ -82.055614907999939, 28.839981458000068 ], [ -82.05540220599994, 28.840213030000029 ], [ -82.055286981999984, 28.840500956000028 ], [ -82.055184574999942, 28.840786011000034 ], [ -82.055163834999973, 28.840842793000036 ], [ -82.055163171999936, 28.840844607000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976141342999938, 28.942656849000059 ], [ -81.97639252, 28.942441038000027 ], [ -81.976606731999937, 28.942258529000071 ], [ -81.97668162399998, 28.942187643000068 ], [ -81.976733525999975, 28.942126797000071 ], [ -81.976764139999943, 28.942075308000028 ], [ -81.976785437999979, 28.942021476000036 ], [ -81.976800084999979, 28.941978178000056 ], [ -81.976816062999944, 28.941916152000033 ], [ -81.976818743999956, 28.941822527000056 ], [ -81.976809442999979, 28.941772202000038 ], [ -81.976788169999963, 28.941707830000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182655134999948, 28.665284650000046 ], [ -82.182664879999948, 28.664236904000063 ], [ -82.182676794999963, 28.662773632000039 ], [ -82.182681385999956, 28.662087884000073 ], [ -82.182683161999989, 28.66144547600004 ], [ -82.182689719999985, 28.660226935000026 ], [ -82.18270853599995, 28.659411156000033 ], [ -82.182723932999977, 28.658289475000061 ], [ -82.182720829999937, 28.658167117000062 ], [ -82.182706263999989, 28.658100855000043 ], [ -82.18268594999995, 28.658052448000035 ], [ -82.182651202999978, 28.658014256000058 ], [ -82.182625147999943, 28.657988799000066 ], [ -82.18259052999997, 28.657971414000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178510633999963, 28.657803650000062 ], [ -82.178491935999944, 28.657782723000025 ], [ -82.178465837999966, 28.657731773000023 ], [ -82.178305554999952, 28.656946821000076 ], [ -82.178235652999945, 28.656628259000058 ], [ -82.178165652999951, 28.656251065000049 ], [ -82.178136433999953, 28.656062460000044 ], [ -82.178130162999935, 28.655771857000047 ], [ -82.178121053999973, 28.655511847000071 ], [ -82.17812158199996, 28.655183314000055 ], [ -82.178151507999985, 28.654721545000029 ], [ -82.178185055999961, 28.654265508000037 ], [ -82.178312932999972, 28.652981163000049 ], [ -82.178408672999979, 28.651919919000079 ], [ -82.178458125999953, 28.651257054000041 ], [ -82.178489488999958, 28.650578280000047 ], [ -82.178506486999936, 28.649950508000074 ], [ -82.178521586999977, 28.649405752000064 ], [ -82.178526622999982, 28.648809760000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110570008999957, 28.654033112000036 ], [ -82.110541854999951, 28.65401186500003 ], [ -82.110503656999981, 28.653992401000039 ], [ -82.11046747499995, 28.653980023000031 ], [ -82.110421247999966, 28.65396942600006 ], [ -82.110338850999938, 28.653957086000048 ], [ -82.109703897999964, 28.653961146000029 ], [ -82.109010662999935, 28.65395638900003 ], [ -82.108498741999938, 28.653959174000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034312859999943, 28.871482054000069 ], [ -82.033786284999962, 28.871476797000071 ], [ -82.033382171999961, 28.871476898000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03752813899996, 28.845818334000057 ], [ -82.037518985999952, 28.845810280000023 ], [ -82.037501851999934, 28.845780132000073 ], [ -82.037497557999984, 28.845746211000062 ], [ -82.037497542999972, 28.845702866000067 ], [ -82.037501726999949, 28.845431487000042 ], [ -82.037510272999953, 28.845388138000033 ], [ -82.037533806999988, 28.845357979000028 ], [ -82.037572326999964, 28.845335353000053 ], [ -82.037617268999952, 28.845312725000042 ], [ -82.037820576999934, 28.845218440000053 ], [ -82.038043131999984, 28.845071381000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03811839399998, 28.846022127000026 ], [ -82.037636735999968, 28.845878092000078 ], [ -82.037589638999975, 28.845861144000025 ], [ -82.037546820999978, 28.845834772000046 ], [ -82.03752813899996, 28.845818334000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104003373999944, 28.70719013400003 ], [ -82.104022301999976, 28.707135136000034 ], [ -82.104052029999934, 28.707034710000073 ], [ -82.10409796, 28.706867335000027 ], [ -82.104146583999977, 28.706683224000074 ], [ -82.104195133999951, 28.706422614000076 ], [ -82.104216636999979, 28.706231353000078 ], [ -82.104230013999938, 28.70604965900003 ], [ -82.104243387999986, 28.705865575000075 ], [ -82.104251462999969, 28.705805804000079 ], [ -82.104251223999938, 28.705564357000071 ], [ -82.10425093899994, 28.705277489000025 ], [ -82.104253527999958, 28.705153177000057 ], [ -82.104253271999937, 28.704894996000064 ], [ -82.104249995999965, 28.704326043000037 ], [ -82.104251584999986, 28.703192912000077 ], [ -82.104251676, 28.701456094000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104251676, 28.701456094000037 ], [ -82.104254141999945, 28.701113407000037 ], [ -82.104252800999973, 28.699759748000076 ], [ -82.104255936999948, 28.69841008800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.251621871999987, 28.635054835000062 ], [ -82.25159645399998, 28.63503423700007 ], [ -82.251538319999952, 28.634987542000033 ], [ -82.251474467999969, 28.634921162000069 ], [ -82.251424503999942, 28.63486055900006 ], [ -82.251384024999936, 28.634797844000047 ], [ -82.251360145999968, 28.634733006000033 ], [ -82.251350507999973, 28.634670234000055 ], [ -82.251345593999986, 28.634599082000079 ], [ -82.251342867999938, 28.63445048400007 ], [ -82.25135527599997, 28.633684428000038 ], [ -82.251359555999954, 28.633489772000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.251621871999987, 28.635054835000062 ], [ -82.251666818, 28.635082241000077 ], [ -82.252158486999974, 28.635250583000072 ], [ -82.252742531999957, 28.635437864000039 ], [ -82.252823246999981, 28.635460737000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000885016999973, 28.942859351000038 ], [ -82.000889780999955, 28.942999608000036 ], [ -82.000900529999967, 28.943183184000077 ], [ -82.000917922999975, 28.943378106000068 ], [ -82.000918313999989, 28.943382918000054 ], [ -82.000918704999947, 28.94338738700003 ], [ -82.000919095999961, 28.943392201000052 ], [ -82.000919486999976, 28.943397013000038 ], [ -82.000919877999934, 28.94340182600007 ], [ -82.000920267999959, 28.943406294000056 ], [ -82.000920854999947, 28.943411108000078 ], [ -82.000935379999987, 28.943534192000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00202029999997, 28.945094078000068 ], [ -82.002102749999949, 28.945326977000036 ], [ -82.002145822999978, 28.945467992000033 ], [ -82.002164966999942, 28.945547971000053 ], [ -82.002172147999943, 28.945602693000069 ], [ -82.002174540999988, 28.945705823000026 ], [ -82.002164971999946, 28.945771070000035 ], [ -82.002145780999967, 28.945848778000027 ], [ -82.002075042999934, 28.946041294000054 ], [ -82.002055501999962, 28.946090110000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139637593999964, 28.880900419000056 ], [ -82.13969887099995, 28.880893007000054 ], [ -82.139821231999974, 28.880875782000032 ], [ -82.139951353999948, 28.880851712000037 ], [ -82.140120313999944, 28.880817339000032 ], [ -82.140333938999959, 28.880772663000073 ], [ -82.140553379999972, 28.880717721000053 ], [ -82.140759211999978, 28.880655955000066 ], [ -82.140961143999959, 28.880583933000025 ], [ -82.141160140999943, 28.880506793000052 ], [ -82.141356292999944, 28.880417549000072 ], [ -82.141547548999938, 28.880320745000063 ], [ -82.141733914999975, 28.88021638500004 ], [ -82.142378255999972, 28.879862626000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142378255999972, 28.879862626000033 ], [ -82.142684901999985, 28.880280875000039 ], [ -82.143053667999936, 28.880783665000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136819154999955, 28.876357981000069 ], [ -82.137234001999957, 28.876680928000042 ], [ -82.137486767999974, 28.876861907000034 ], [ -82.137587864999944, 28.876926777000051 ], [ -82.137714223999978, 28.87699845800006 ], [ -82.137858057999949, 28.877064992000044 ], [ -82.13800576999995, 28.877124684000023 ], [ -82.138155409999968, 28.877174113000024 ], [ -82.138289494999981, 28.877211592000037 ], [ -82.138456604999988, 28.877250745000026 ], [ -82.138600380999947, 28.877272824000045 ], [ -82.138748029999988, 28.877284641000074 ], [ -82.138899557999935, 28.877293035000037 ], [ -82.139064670999971, 28.877291155000023 ], [ -82.139188983999986, 28.877284187000043 ], [ -82.139307464999945, 28.877273805000073 ], [ -82.139437590999989, 28.877256573000068 ], [ -82.139556055999947, 28.877234223000073 ], [ -82.139680339999984, 28.877205029000038 ], [ -82.139787140999942, 28.877177561000053 ], [ -82.139868692999983, 28.87715182900007 ], [ -82.139985186, 28.877107255000055 ], [ -82.140117200999953, 28.877050695000037 ], [ -82.140204557999937, 28.877007859000059 ], [ -82.140299675999984, 28.876958176000073 ], [ -82.140390899999943, 28.876903368000058 ], [ -82.140476308999951, 28.876857116000053 ], [ -82.140546186999984, 28.876817717000051 ], [ -82.140651018999961, 28.87676973400005 ], [ -82.140816062999988, 28.876716558000055 ], [ -82.141080144999989, 28.876642762000074 ], [ -82.14122193299994, 28.876630645000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141523470999971, 28.878526712000053 ], [ -82.141545401999963, 28.878577237000059 ], [ -82.141615114999979, 28.878731105000043 ], [ -82.14168578999994, 28.878873484000053 ], [ -82.141777366999975, 28.879029626000033 ], [ -82.141892456999983, 28.879199529000061 ], [ -82.142378255999972, 28.879862626000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14122193299994, 28.876630645000034 ], [ -82.141220505999968, 28.877011928000059 ], [ -82.141220821, 28.877244457000074 ], [ -82.14123663099997, 28.877444485000069 ], [ -82.141254371999935, 28.877634253000053 ], [ -82.141286577999949, 28.877804930000025 ], [ -82.141325954999957, 28.877968595000027 ], [ -82.141368572999966, 28.878115025000056 ], [ -82.141400345999955, 28.878205173000026 ], [ -82.141444912999987, 28.878345281000065 ], [ -82.141523470999971, 28.878526712000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140658245999987, 28.874924872000065 ], [ -82.140769085999978, 28.875011956000037 ], [ -82.140848831999961, 28.875088812000058 ], [ -82.140930540999989, 28.875181055000041 ], [ -82.14101422799996, 28.875298942000029 ], [ -82.141062898999962, 28.875379252000073 ], [ -82.141111599999988, 28.875481787000069 ], [ -82.141156398999954, 28.875572359000046 ], [ -82.141185677999943, 28.87567662400005 ], [ -82.141209139999944, 28.875789445000066 ], [ -82.141220959999941, 28.875910828000031 ], [ -82.141223043999958, 28.876015123000059 ], [ -82.14122193299994, 28.876630645000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138855688999968, 28.874820545000034 ], [ -82.138932669999974, 28.874784178000027 ], [ -82.139016158999937, 28.874747804000037 ], [ -82.139132186999973, 28.874704712000039 ], [ -82.139229790999934, 28.874675963000072 ], [ -82.13932740499996, 28.874655808000057 ], [ -82.139426108999942, 28.874638517000051 ], [ -82.139541090999955, 28.874624074000053 ], [ -82.139665405999949, 28.874620526000058 ], [ -82.139801467999973, 28.874623804000066 ], [ -82.139923599999975, 28.874636728000041 ], [ -82.140063493999946, 28.874663940000062 ], [ -82.140176939999947, 28.87469408000004 ], [ -82.140294162999965, 28.874733111000069 ], [ -82.140422262999948, 28.874793139000076 ], [ -82.140493001999971, 28.874825877000035 ], [ -82.140562988999989, 28.874868549000041 ], [ -82.140611586999967, 28.874895854000044 ], [ -82.140658245999987, 28.874924872000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136819154999955, 28.876357981000069 ], [ -82.136919922999937, 28.876258756000027 ], [ -82.137072710999973, 28.876115360000028 ], [ -82.137297023999963, 28.875913639000032 ], [ -82.137526770999955, 28.875718597000059 ], [ -82.13776846199994, 28.875532136000061 ], [ -82.137991729999953, 28.875361928000075 ], [ -82.138233447999937, 28.875197431000061 ], [ -82.138488178999978, 28.875027190000026 ], [ -82.138762441999972, 28.874861704000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975018021999972, 28.909117072000072 ], [ -81.975277052999957, 28.909041150000064 ], [ -81.975540818999946, 28.908961856000076 ], [ -81.975792841999976, 28.908887880000066 ], [ -81.97597366499997, 28.908834988000024 ], [ -81.976104419999956, 28.90879534100003 ], [ -81.976237423999976, 28.908783463000077 ], [ -81.976300542, 28.908789425000066 ], [ -81.976422260999982, 28.908833083000047 ], [ -81.976507911999988, 28.908880704000069 ], [ -81.976598070999955, 28.908928325000034 ], [ -81.976683724999987, 28.908960076000028 ], [ -81.976789667999981, 28.908993814000041 ], [ -81.976965485999983, 28.909053350000079 ], [ -81.977188643999966, 28.909120829000074 ], [ -81.977323890999969, 28.909156555000038 ], [ -81.977398276999963, 28.909174420000056 ], [ -81.977452377999953, 28.909178396000073 ], [ -81.977497464999942, 28.909170470000049 ], [ -81.977535793999948, 28.909144690000062 ], [ -81.977565107999965, 28.909103040000048 ], [ -81.977589924999961, 28.909005851000074 ], [ -81.977654042999973, 28.908734348000053 ], [ -81.977689178999981, 28.908651242000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974296606999985, 28.909327985000061 ], [ -81.974058344999946, 28.908706530000075 ], [ -81.974015895999969, 28.908606358000043 ], [ -81.973998913999935, 28.908570475000033 ], [ -81.973947857999974, 28.908502106000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973947857999974, 28.908502106000071 ], [ -81.973922482999967, 28.908476277000034 ], [ -81.973890207999943, 28.908453847000033 ], [ -81.973797839999975, 28.908417702000065 ], [ -81.973706734999951, 28.908382053000025 ], [ -81.973634475999972, 28.908358804000045 ], [ -81.973530053, 28.908325209000054 ], [ -81.973434914999984, 28.908302766000077 ], [ -81.973332981999988, 28.908281816000056 ], [ -81.973205560999986, 28.908263852000061 ], [ -81.973117214999945, 28.908254864000071 ], [ -81.973011879999945, 28.908247369000037 ], [ -81.972879359, 28.908247342000038 ], [ -81.972777417999964, 28.908251806000067 ], [ -81.972699262999981, 28.908259264000037 ], [ -81.97254974599997, 28.908278669000026 ], [ -81.972463092999988, 28.908295095000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972187910999935, 28.909422852000034 ], [ -81.972205200999952, 28.909507149000035 ], [ -81.972209796999948, 28.909586364000063 ], [ -81.972201691999942, 28.909680811000044 ], [ -81.972192443999973, 28.909737681000024 ], [ -81.972169332999954, 28.909838217000072 ], [ -81.972148519999962, 28.909978362000061 ], [ -81.972136949999935, 28.910087026000042 ], [ -81.972131157999968, 28.910164208000026 ], [ -81.972129982999945, 28.910245454000062 ], [ -81.972140344999957, 28.910342951000075 ], [ -81.972158786999955, 28.910430294000037 ], [ -81.972191081999938, 28.910516625000071 ], [ -81.972230303999936, 28.910594831000026 ], [ -81.97228914599998, 28.910679136000056 ], [ -81.972341068999981, 28.910736018000023 ], [ -81.972423, 28.910805094000068 ], [ -81.972492238999962, 28.91084776200006 ], [ -81.972568406999983, 28.910884338000074 ], [ -81.97265380999994, 28.910914824000031 ], [ -81.972736907999945, 28.91093108900003 ], [ -81.972839628999964, 28.910942281000075 ], [ -81.972919267999941, 28.910944328000028 ], [ -81.972987365999984, 28.910940279000044 ], [ -81.973055465999948, 28.910935215000052 ], [ -81.973114331999966, 28.910927102000073 ], [ -81.973184740999955, 28.910915945000056 ], [ -81.973259768999981, 28.910895648000064 ], [ -81.973340569999948, 28.910868245000074 ], [ -81.97339944099997, 28.910843882000052 ], [ -81.973484860999974, 28.910803276000024 ], [ -81.973531036999987, 28.910775864000072 ], [ -81.973592218999954, 28.910735254000031 ], [ -81.973646475999942, 28.910693626000068 ], [ -81.973699580999948, 28.910648951000042 ], [ -81.973746915999982, 28.910599197000067 ], [ -81.973789632999967, 28.910543350000069 ], [ -81.97388663199996, 28.910363612000026 ], [ -81.97391319999997, 28.910275262000027 ], [ -81.973927065999987, 28.910213316000068 ], [ -81.973930553999935, 28.910115821000034 ], [ -81.973925951999945, 28.91005387000007 ], [ -81.973912119999966, 28.909980746000031 ], [ -81.973892520999982, 28.909890356000062 ], [ -81.973879837999959, 28.909842622000042 ], [ -81.97387638899994, 28.909786766000025 ], [ -81.973881014999961, 28.909748175000061 ], [ -81.973891415999958, 28.90969536700004 ], [ -81.97391566899995, 28.90963342200007 ], [ -81.973938763999968, 28.909587726000041 ], [ -81.973988410999937, 28.909521723000069 ], [ -81.974049597999965, 28.909460800000033 ], [ -81.974118048999969, 28.909410466000054 ], [ -81.974188392999963, 28.909367635000024 ], [ -81.974296606999985, 28.909327985000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971520205, 28.908628037000028 ], [ -81.971595348999983, 28.908762567000053 ], [ -81.971641496999951, 28.908830619000071 ], [ -81.97167264899997, 28.908870233000073 ], [ -81.971741880999957, 28.908938291000027 ], [ -81.971835348999946, 28.909017526000071 ], [ -81.971913814999937, 28.909081522000065 ], [ -81.971981895999988, 28.909143486000062 ], [ -81.972063314999957, 28.909217682000076 ], [ -81.972130328999981, 28.909305372000063 ], [ -81.972187910999935, 28.909422852000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974636829999952, 28.90578084200007 ], [ -81.97410402099996, 28.905802813000037 ], [ -81.97385768099997, 28.905819613000062 ], [ -81.973658234999959, 28.905851153000071 ], [ -81.97351052199997, 28.905877068000052 ], [ -81.973339021999948, 28.905914045000031 ], [ -81.973135381999953, 28.905972115000054 ], [ -81.972983004999946, 28.906019779000076 ], [ -81.972805148999953, 28.906088273000023 ], [ -81.972599749999972, 28.906182351000041 ], [ -81.972403349, 28.906281895000063 ], [ -81.972171388999982, 28.906424255000047 ], [ -81.97204738399995, 28.906511506000072 ], [ -81.971909850999964, 28.906614622000063 ], [ -81.971759326999972, 28.906741811000074 ], [ -81.971609969999975, 28.906882336000024 ], [ -81.971508498999981, 28.906999343000052 ], [ -81.971438587999955, 28.907106440000064 ], [ -81.971393482999986, 28.907179822000046 ], [ -81.971339350999983, 28.907290888000034 ], [ -81.971287462999953, 28.907445592000045 ], [ -81.971264886999961, 28.907566584000051 ], [ -81.971249074999946, 28.907685593000053 ], [ -81.971247218999963, 28.907787710000036 ], [ -81.971258016999968, 28.907949405000068 ], [ -81.971298546999947, 28.908123966000062 ], [ -81.97136265599994, 28.908291367000061 ], [ -81.971520205, 28.908628037000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971683840999958, 28.90957955500005 ], [ -81.971664527999963, 28.909484324000061 ], [ -81.971657112999935, 28.909454071000027 ], [ -81.971642274999965, 28.909422784000071 ], [ -81.971618646999957, 28.909386338000047 ], [ -81.971574122999982, 28.90933029200005 ], [ -81.971519243999978, 28.909276651000027 ], [ -81.971464363999985, 28.909229543000038 ], [ -81.971421395999982, 28.909198250000031 ], [ -81.971356159999971, 28.909164202000056 ], [ -81.971323538999968, 28.909153882000055 ], [ -81.971280368999942, 28.909147340000061 ], [ -81.971241884999984, 28.909145957000078 ], [ -81.971185426999966, 28.909152477000077 ], [ -81.971144009999989, 28.909166907000042 ], [ -81.971083250999982, 28.909191646000068 ], [ -81.97103421099996, 28.90921398100005 ], [ -81.970980873999963, 28.909235971000044 ], [ -81.970924410999942, 28.909264836000034 ], [ -81.970868141999972, 28.909298514000056 ], [ -81.970831016999966, 28.909328759000061 ], [ -81.970790958999942, 28.909366567000063 ], [ -81.970752269999934, 28.909404374000076 ], [ -81.970718268999974, 28.909443557000031 ], [ -81.970688564999989, 28.909481365000033 ], [ -81.970658858999968, 28.909524331000057 ], [ -81.970635211999934, 28.909556985000052 ], [ -81.970609807999949, 28.909588263000046 ], [ -81.970584599999938, 28.909620916000051 ], [ -81.970556458999965, 28.909654944000067 ], [ -81.97052675499998, 28.909697910000034 ], [ -81.970500172999948, 28.909740876000058 ], [ -81.970483755999965, 28.909773531000042 ], [ -81.970464404999973, 28.909815468000033 ], [ -81.970446615999947, 28.909856030000071 ], [ -81.970428826999978, 28.909901404000038 ], [ -81.970420023999964, 28.909939562000034 ], [ -81.970409463999943, 28.909982532000072 ], [ -81.970400660999985, 28.910025502000053 ], [ -81.97039459299998, 28.91006606600007 ], [ -81.970391652999979, 28.910102506000044 ], [ -81.970388705999937, 28.910157509000044 ], [ -81.97038732599998, 28.910204263000026 ], [ -81.970385748999945, 28.91025651700005 ], [ -81.970385730999965, 28.910319085000026 ], [ -81.970384154999977, 28.91036893200004 ], [ -81.970382775999951, 28.91040262100006 ], [ -81.970382758999961, 28.910461407000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974392816999966, 28.879608020000035 ], [ -81.974376269999937, 28.879779914000039 ], [ -81.974375373999976, 28.879929643000025 ], [ -81.974386811999977, 28.880134109000039 ], [ -81.974395802999936, 28.880249227000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975880691999976, 28.903811783000037 ], [ -81.975866438999958, 28.903745592000064 ], [ -81.975838789999955, 28.903631315000041 ], [ -81.975811138999973, 28.903528278000067 ], [ -81.975779232999969, 28.903414 ], [ -81.975743064999961, 28.90331658100007 ], [ -81.975700505999953, 28.903232274000061 ], [ -81.975657379999973, 28.90314653400003 ], [ -81.975619654999946, 28.903041182000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975619654999946, 28.903041182000038 ], [ -81.975615416999972, 28.902955008000049 ], [ -81.975611188999949, 28.902827621000029 ], [ -81.975613348999957, 28.902696490000039 ], [ -81.975615502999972, 28.902589711000076 ], [ -81.975613396999961, 28.902490426000043 ], [ -81.975607029999935, 28.902404251000064 ], [ -81.975600659999941, 28.902336811000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975347499999941, 28.901606172000072 ], [ -81.975326223999957, 28.90155184200006 ], [ -81.975294310999971, 28.901463790000037 ], [ -81.975260271999957, 28.90137573800007 ], [ -81.97522410299996, 28.901285813000072 ], [ -81.975181551999981, 28.901179025000033 ], [ -81.975139, 28.90107223800004 ], [ -81.975111341999934, 28.901002920000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975111341999934, 28.901002920000053 ], [ -81.975090067999986, 28.900944844000037 ], [ -81.975047518999986, 28.900830564000046 ], [ -81.975007096999946, 28.900721904000079 ], [ -81.974975083999936, 28.900634079000042 ], [ -81.974943272999951, 28.90055329300003 ], [ -81.974909226999955, 28.900493341000072 ], [ -81.974867692999965, 28.900456671000029 ], [ -81.97483800699996, 28.900437758000066 ], [ -81.974765543, 28.900416429000074 ], [ -81.97470636099996, 28.900411606000034 ], [ -81.974601460999963, 28.900430494000034 ], [ -81.974461595999969, 28.900463813000044 ], [ -81.974273479999965, 28.900506406000034 ], [ -81.974053131999938, 28.900558274000048 ], [ -81.973846069, 28.900603269000044 ], [ -81.973668500999963, 28.900643456000068 ], [ -81.973507342999937, 28.900678833000029 ], [ -81.973418461999984, 28.900697724000054 ], [ -81.973335977999966, 28.900717837000059 ], [ -81.973257303999958, 28.900733101000071 ], [ -81.973192644999983, 28.900747183000078 ], [ -81.97313619099998, 28.900761610000075 ], [ -81.972939995, 28.900809550000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974138072999949, 28.901984277000054 ], [ -81.974204228999952, 28.901956268000049 ], [ -81.974410742999964, 28.901890741000045 ], [ -81.974640674999989, 28.901819599000078 ], [ -81.974942989999988, 28.90173161000007 ], [ -81.975347499999941, 28.901606172000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973652669999979, 28.902228269000034 ], [ -81.973810716999935, 28.902143387000024 ], [ -81.974033819999988, 28.902027233000069 ], [ -81.974138072999949, 28.901984277000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973406781999984, 28.898491593000074 ], [ -81.973570028999973, 28.898534863000066 ], [ -81.973791764999987, 28.898554971000067 ], [ -81.973885262999943, 28.89855721400005 ], [ -81.974143031999972, 28.898492775000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971518310999954, 28.899467963000063 ], [ -81.971737372999939, 28.89946322000003 ], [ -81.971905361999973, 28.899449847000028 ], [ -81.97202496899996, 28.899443716000064 ], [ -81.972110123999983, 28.899432493000063 ], [ -81.972159088999945, 28.899421264000068 ], [ -81.972203799999988, 28.899400666000076 ], [ -81.972233608999943, 28.899374446000024 ], [ -81.972257032999948, 28.899344478000046 ], [ -81.972275941999953, 28.899302099000067 ], [ -81.972402079999938, 28.89873420400005 ], [ -81.972640675999969, 28.897589258000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019867802999954, 28.905129328000044 ], [ -82.01971846899994, 28.905129350000038 ], [ -82.01955320999997, 28.905126069000062 ], [ -82.019324103999963, 28.905126102000054 ], [ -82.01909875399997, 28.905126134000056 ], [ -82.018939881999984, 28.905124504000071 ], [ -82.018820820999963, 28.905119564000074 ], [ -82.018693118999977, 28.905103057000076 ], [ -82.018546640999944, 28.905093162000071 ], [ -82.018373871999984, 28.905093186000045 ], [ -82.018246175999934, 28.905103118000056 ], [ -82.018032094999967, 28.905119672000069 ], [ -82.017870219999963, 28.905127294000067 ], [ -82.017413509999983, 28.905129998000064 ], [ -82.017227220999985, 28.905127378000032 ], [ -82.017110036999952, 28.905124749000038 ], [ -82.017001868999955, 28.905116830000054 ], [ -82.016893980999953, 28.905088592000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016893980999953, 28.905088592000027 ], [ -82.016824583999949, 28.905066618000035 ], [ -82.016728429999944, 28.905029615000046 ], [ -82.016634903999943, 28.905000874000052 ], [ -82.01654513699998, 28.904984691000038 ], [ -82.016439973, 28.904974129000038 ], [ -82.016343822999943, 28.90497149600003 ], [ -82.016212205999977, 28.904976256000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012810935999937, 28.906826803000058 ], [ -82.012811764999981, 28.906903550000038 ], [ -82.012811775999978, 28.906998089000069 ], [ -82.012810972999944, 28.907124560000057 ], [ -82.012811806999935, 28.907243203000064 ], [ -82.012811822999936, 28.907375901000023 ], [ -82.01281100999995, 28.907428744000072 ], [ -82.01279397899998, 28.907501578000051 ], [ -82.01276477, 28.907548708000036 ], [ -82.012730691999934, 28.907582987000069 ], [ -82.012674702999959, 28.907615124000074 ], [ -82.012565154999947, 28.907636556000057 ], [ -82.012406916999964, 28.907655850000026 ], [ -82.012251111999944, 28.907670859000064 ], [ -82.012112349999938, 28.907685867000055 ], [ -82.012029576999964, 28.907696584000064 ], [ -82.011888379999959, 28.907711592000055 ], [ -82.011813844999949, 28.907730771000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008667125999978, 28.906825590000039 ], [ -82.00863997099998, 28.906643644000042 ], [ -82.00858384999998, 28.906344688000047 ], [ -82.008572889999982, 28.906278415000031 ], [ -82.008564656999965, 28.906079598000076 ], [ -82.008563268999978, 28.905848248000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008563268999978, 28.905848248000041 ], [ -82.008597502999976, 28.905841015000078 ], [ -82.008682400999987, 28.90582413900006 ], [ -82.00876935499997, 28.905805056000077 ], [ -82.008866120999983, 28.905779344000052 ], [ -82.00899392599996, 28.905742384000064 ], [ -82.00906695599997, 28.905715066000027 ], [ -82.00920023599997, 28.905658826000035 ], [ -82.009315258999948, 28.905607406000058 ], [ -82.009408371999939, 28.905565629000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007654013999968, 28.905915779000054 ], [ -82.007777256999987, 28.905903722000062 ], [ -82.007893650999961, 28.905891667000049 ], [ -82.007999092999967, 28.905883225000025 ], [ -82.008130551999955, 28.905873578000069 ], [ -82.008285288999957, 28.905868748000046 ], [ -82.008445504999941, 28.905859100000043 ], [ -82.008563268999978, 28.905848248000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007781423999973, 28.907705466000039 ], [ -82.007618313999956, 28.907703333000029 ], [ -82.007513629999949, 28.907694770000035 ], [ -82.007365125999968, 28.907675500000039 ], [ -82.007202015999951, 28.907651945000055 ], [ -82.007056857999942, 28.907623837000074 ], [ -82.006940000999975, 28.907594923000033 ], [ -82.006870616999947, 28.907572435000077 ], [ -82.006826793999949, 28.907543518000068 ], [ -82.006790274999958, 28.907503355000074 ], [ -82.006768361999946, 28.907459978000077 ], [ -82.006757102999984, 28.907412093000062 ], [ -82.006757095999944, 28.907309992000023 ], [ -82.006753733999972, 28.907135443000072 ], [ -82.006755552999948, 28.907039047000069 ], [ -82.006755544999976, 28.906913731000031 ], [ -82.006755765999969, 28.906790625000042 ], [ -82.006754386999944, 28.906646030000047 ], [ -82.006753007999976, 28.906493001000058 ], [ -82.00675410599996, 28.906391075000045 ], [ -82.006754097999988, 28.906265940000026 ], [ -82.006754093999973, 28.906194434000042 ], [ -82.006759950999935, 28.906143554000039 ], [ -82.006777630999977, 28.906095364000066 ], [ -82.00681186099996, 28.906048370000065 ], [ -82.006855681, 28.906017038000073 ], [ -82.006904975999987, 28.905991732000075 ], [ -82.006981659999951, 28.905977269000061 ], [ -82.007095315999948, 28.905966417000059 ], [ -82.007247313999983, 28.905954360000067 ], [ -82.007414376999975, 28.905935072000034 ], [ -82.007563636999976, 28.905921809000063 ], [ -82.007654013999968, 28.905915779000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007781423999973, 28.907705466000039 ], [ -82.007764373999976, 28.907598360000065 ], [ -82.007735147999938, 28.907426989000044 ], [ -82.00768556099996, 28.907192370000075 ], [ -82.007662300999982, 28.906998480000027 ], [ -82.007659357999955, 28.906814560000043 ], [ -82.007658161999984, 28.90646162400003 ], [ -82.007654013999968, 28.905915779000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007752268, 28.908506094000074 ], [ -82.007758122999974, 28.90837702400006 ], [ -82.007781341999987, 28.908024651000062 ], [ -82.007783862999986, 28.90777401400004 ], [ -82.007781423999973, 28.907705466000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025354811999989, 28.921330104000049 ], [ -82.025828024999953, 28.921423178000055 ], [ -82.026785587999939, 28.921608974000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024099990999957, 28.921535225000071 ], [ -82.024038896999969, 28.921512268000072 ], [ -82.023975123999946, 28.921492242000056 ], [ -82.023913625999967, 28.921472215000051 ], [ -82.023839342999963, 28.921445546000029 ], [ -82.023759233999954, 28.921416339000075 ], [ -82.023647140999969, 28.92137808800004 ], [ -82.023585643, 28.921348042000034 ], [ -82.02354464299998, 28.921322001000078 ], [ -82.023510472999988, 28.921289947000048 ], [ -82.023489965999943, 28.921247873000027 ], [ -82.023478567999973, 28.921195777000037 ], [ -82.023479786999985, 28.92112177100006 ], [ -82.023482508999962, 28.921063328000059 ], [ -82.023487960999944, 28.920983227000079 ], [ -82.023499078999976, 28.920897969000066 ], [ -82.023510195999961, 28.920817523000039 ], [ -82.023515644999975, 28.920722641000054 ], [ -82.023518362999937, 28.92064735200006 ], [ -82.023512878999952, 28.920584098000063 ], [ -82.023498995999944, 28.920528065000042 ], [ -82.023482959999967, 28.920476438000037 ], [ -82.023462453999969, 28.920430356000054 ], [ -82.023432832999958, 28.920376261000058 ], [ -82.023320554999941, 28.920224542000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020189652999989, 28.922684261000029 ], [ -82.020200945999989, 28.922626571000023 ], [ -82.020233766, 28.922472998000046 ], [ -82.020240598999976, 28.922447214000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020240598999976, 28.922447214000044 ], [ -82.02024860399996, 28.922417302000042 ], [ -82.020299557999977, 28.92221446700006 ], [ -82.020332154999949, 28.922063888000025 ], [ -82.020352446999937, 28.921924311000055 ], [ -82.020355366999979, 28.921870338000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020355366999979, 28.921870338000076 ], [ -82.02036099299994, 28.921574318000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023546260999979, 28.927305702000069 ], [ -82.023551427999962, 28.927101307000044 ], [ -82.023563029999934, 28.926972277000061 ], [ -82.023593792999975, 28.926889904000063 ], [ -82.023656592999941, 28.926771454000061 ], [ -82.023774954999965, 28.926626768000062 ], [ -82.023904466999966, 28.926454800000045 ], [ -82.023956698999939, 28.926341623000042 ], [ -82.023988819999943, 28.926178940000057 ], [ -82.023996817999944, 28.92599857700003 ], [ -82.024009887999966, 28.925446879000049 ], [ -82.024012156999959, 28.924216576000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024232131999952, 28.924216536000074 ], [ -82.024529948999941, 28.924216483000066 ], [ -82.025184539999941, 28.924220008000077 ], [ -82.025733235999951, 28.924225210000031 ], [ -82.026272886999948, 28.92422775700004 ], [ -82.026396495999961, 28.924233038000068 ], [ -82.026471869999966, 28.92425159000004 ], [ -82.026542348999953, 28.924281747000066 ], [ -82.026607932, 28.924321518000056 ], [ -82.026673513999981, 28.924359303000074 ], [ -82.026721005999946, 28.924395100000027 ], [ -82.026754930999971, 28.924428910000074 ], [ -82.026786601999959, 28.924490571000035 ], [ -82.026804716999948, 28.924594010000078 ], [ -82.026798005999979, 28.924872510000057 ], [ -82.026791302999982, 28.925182837000079 ], [ -82.026777789999983, 28.925389725000059 ], [ -82.026748434999945, 28.925546883000038 ], [ -82.026741699999945, 28.925735865000036 ], [ -82.026744054999938, 28.926099901000043 ], [ -82.02673963899997, 28.926515660000064 ], [ -82.026748721999979, 28.926664854000023 ], [ -82.026791754999977, 28.926941353000075 ], [ -82.026812142999972, 28.927084578000063 ], [ -82.026825742999961, 28.927217855000038 ], [ -82.026825767999981, 28.927313341000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020332992999954, 28.924190126000042 ], [ -82.02091613999994, 28.92419385900007 ], [ -82.021829396999976, 28.924199089000069 ], [ -82.023057256999948, 28.924201572000072 ], [ -82.023377963999963, 28.924201517000029 ], [ -82.024012156999959, 28.924216576000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021554705999961, 28.92409208600003 ], [ -82.021554420999962, 28.924020476000067 ], [ -82.021547359999943, 28.923813169000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021547359999943, 28.923813169000027 ], [ -82.021545523999976, 28.923741035000035 ], [ -82.021547301999988, 28.923532646000069 ], [ -82.021548802999973, 28.92330713900003 ], [ -82.021545042999946, 28.923077497000065 ], [ -82.021541706999983, 28.922907485000053 ], [ -82.021547151999982, 28.922806496000078 ], [ -82.021565349999946, 28.922702299000036 ], [ -82.021596304999946, 28.922610925000072 ], [ -82.02163272599995, 28.922519548000025 ], [ -82.021672793999983, 28.922436187000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020869497999968, 28.923803518000057 ], [ -82.020876772999941, 28.923611832000063 ], [ -82.02087473399996, 28.92318657900006 ], [ -82.020876625999961, 28.922878900000057 ], [ -82.020889488999956, 28.922715947000029 ], [ -82.020917199999985, 28.922564338000029 ], [ -82.020954296999946, 28.922444011000039 ], [ -82.020996867999941, 28.922336400000063 ], [ -82.021044909999944, 28.922237042000063 ], [ -82.021087485999942, 28.922163811000075 ], [ -82.021175315999983, 28.922077198000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020560898999975, 28.923812826000074 ], [ -82.020869497999968, 28.923803518000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020869497999968, 28.923803518000057 ], [ -82.021547359999943, 28.923813169000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016407987999969, 28.922752804000027 ], [ -82.016458803999967, 28.922751971000025 ], [ -82.016655155999956, 28.922752291000052 ], [ -82.017093575999979, 28.922763580000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014611544, 28.922748058000025 ], [ -82.014656870999943, 28.922748397000078 ], [ -82.015409645999966, 28.922749688000067 ], [ -82.016115531999958, 28.922750980000046 ], [ -82.016407987999969, 28.922752804000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014301483999986, 28.922747061000052 ], [ -82.014611544, 28.922748058000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016106092999962, 28.923613862000025 ], [ -82.016118976999962, 28.923545449000073 ], [ -82.016133422999985, 28.923467410000057 ], [ -82.016157635999946, 28.923386275000041 ], [ -82.016167400999962, 28.92336117900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016167400999962, 28.92336117900004 ], [ -82.016199625999946, 28.923276949000069 ], [ -82.016230287999974, 28.923208534000025 ], [ -82.016265835999945, 28.92314321200007 ], [ -82.016306267999937, 28.923076515000048 ], [ -82.01633693499997, 28.923026664000076 ], [ -82.016369162, 28.92296546700004 ], [ -82.01639513799995, 28.922912866000047 ], [ -82.01640673299994, 28.922860225000079 ], [ -82.016407987999969, 28.922752804000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014611669999965, 28.923648066000055 ], [ -82.014611626999965, 28.923338667000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014611626999965, 28.923338667000053 ], [ -82.014611610999964, 28.923229002000028 ], [ -82.014611544, 28.922748058000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015947232999963, 28.927254033000054 ], [ -82.015945078999948, 28.927185149000024 ], [ -82.015951449999989, 28.92707652200005 ], [ -82.015972717999944, 28.926949164000064 ], [ -82.01599824699997, 28.926834917000065 ], [ -82.016045063999968, 28.926718793000077 ], [ -82.01612593599998, 28.92656708100003 ], [ -82.016153592999956, 28.926450960000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016153592999956, 28.926450960000068 ], [ -82.016025874999968, 28.926529635000065 ], [ -82.015946621999944, 28.926585935000048 ], [ -82.015902177999976, 28.926669494000066 ], [ -82.015867838999952, 28.926753054000073 ], [ -82.015835521999975, 28.926856168000029 ], [ -82.015805229999955, 28.926982394000049 ], [ -82.01579438899995, 28.927115506000064 ], [ -82.015796315999978, 28.927250087000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016153592999956, 28.926450960000068 ], [ -82.016196219999983, 28.926390377000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016572458999974, 28.925085362000061 ], [ -82.016572399999973, 28.925084881000032 ], [ -82.016570339999987, 28.925067980000051 ], [ -82.016561921999937, 28.924958317000062 ], [ -82.016534151999963, 28.924624681000068 ], [ -82.016535522999959, 28.924416858000029 ], [ -82.016540907999968, 28.924260594000032 ], [ -82.016547679999974, 28.924011877000055 ], [ -82.016557860999967, 28.92377814200006 ], [ -82.016568158999974, 28.923672318000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016641793999952, 28.923406059000058 ], [ -82.016656653999974, 28.923372769000025 ], [ -82.016682869999954, 28.92331796600007 ], [ -82.016733580999983, 28.923256601000048 ], [ -82.016791008999974, 28.923177181000028 ], [ -82.016881254999987, 28.923069225000063 ], [ -82.016970983999954, 28.922963769000035 ], [ -82.016972176999957, 28.922962367000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017106201999979, 28.922722776000057 ], [ -82.01713516999996, 28.922629158000063 ], [ -82.017170056999987, 28.922477291000064 ], [ -82.017191395999987, 28.922376474000032 ], [ -82.017195877999939, 28.922310469000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017093575999979, 28.922763580000037 ], [ -82.017106201999979, 28.922722776000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013562707999938, 28.917417077000039 ], [ -82.013423888999966, 28.917215961000068 ], [ -82.013317437999945, 28.917064270000026 ], [ -82.013228018999939, 28.916955651000023 ], [ -82.013191828999936, 28.916920072000039 ], [ -82.013142864999963, 28.916877001000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000408815999947, 28.91785468300003 ], [ -82.000427244999969, 28.917853836000063 ], [ -82.000587706999966, 28.917836188000024 ], [ -82.000674624999988, 28.91782638400008 ], [ -82.000748170999941, 28.91781265700007 ], [ -82.000859602999981, 28.917779322000058 ], [ -82.001002237999955, 28.917716574000053 ], [ -82.001164926999934, 28.917640100000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012619859999973, 28.922405170000047 ], [ -82.012788270999977, 28.922403436000025 ], [ -82.012962934999962, 28.922399981000069 ], [ -82.013135446999968, 28.922387588000049 ], [ -82.013285881999934, 28.922371417000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013285881999934, 28.922371417000079 ], [ -82.013336093999953, 28.922366255000043 ], [ -82.013645169999961, 28.922334596000042 ], [ -82.013945844999967, 28.922306719000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013876838999977, 28.919079005000071 ], [ -82.014202111999964, 28.918975495000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013246024999944, 28.919279148000044 ], [ -82.01328196999998, 28.919267456000057 ], [ -82.013876838999977, 28.919079005000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012899260999973, 28.919391253000072 ], [ -82.012965682999948, 28.919370276000052 ], [ -82.013246024999944, 28.919279148000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012300061999952, 28.918060733000061 ], [ -82.012404360999938, 28.91802139400005 ], [ -82.012503472999981, 28.917979398000057 ], [ -82.01259397299998, 28.917943197000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01259397299998, 28.917943197000056 ], [ -82.012643932999936, 28.917916129000048 ], [ -82.012742, 28.917862491000051 ], [ -82.012854716999982, 28.917797163000046 ], [ -82.012976613999967, 28.917722551000054 ], [ -82.013085815999943, 28.91766066100007 ], [ -82.013156726999966, 28.917618026000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013156726999966, 28.917618026000071 ], [ -82.013196578999953, 28.917593957000065 ], [ -82.013322381999956, 28.917512470000077 ], [ -82.013478293999981, 28.917427391000047 ], [ -82.013562707999938, 28.917417077000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016021481999985, 28.917387655000027 ], [ -82.016048526999953, 28.91729059000005 ], [ -82.016061288999936, 28.917226910000068 ], [ -82.01607617999997, 28.917166976000033 ], [ -82.016086332999976, 28.917113387000029 ], [ -82.016103832999988, 28.917041491000077 ], [ -82.016117765, 28.916977247000034 ], [ -82.016126354999983, 28.91693702300006 ], [ -82.01613494299994, 28.916878924000059 ], [ -82.016142933999959, 28.916759634000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015035442999988, 28.918360115000041 ], [ -82.015109909999978, 28.918111016000069 ], [ -82.015160974999958, 28.917948069000033 ], [ -82.015197143999956, 28.917826329000036 ], [ -82.015231178999954, 28.917661512000052 ], [ -82.015269467999985, 28.917476094000051 ], [ -82.015282225999954, 28.917386195000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001046849999966, 28.915328078000073 ], [ -82.001149785999985, 28.915285256000061 ], [ -82.001219873999958, 28.915253427000039 ], [ -82.001317093999944, 28.915225576000068 ], [ -82.00146631299998, 28.915203692000034 ], [ -82.00165396899996, 28.915181809000046 ], [ -82.001782840999965, 28.915173849000041 ], [ -82.00199762699998, 28.915169868000078 ], [ -82.002610331999961, 28.915167868000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000730162999957, 28.914705111000046 ], [ -82.000830213999961, 28.914677901000061 ], [ -82.000932083999942, 28.914642688000072 ], [ -82.001039412999944, 28.914618678000068 ], [ -82.00126075999998, 28.914583454000024 ], [ -82.001490554999975, 28.914556251000079 ], [ -82.001710473999935, 28.914536008000027 ], [ -82.00197284099994, 28.914532223000037 ], [ -82.002610491999974, 28.914529118000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014758399999948, 28.912636184000064 ], [ -82.015051823999954, 28.91263374600004 ], [ -82.016452712999978, 28.912628769000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014752057999942, 28.911989540000036 ], [ -82.016461989999982, 28.911989341000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014753876999976, 28.91133657000006 ], [ -82.015199908999989, 28.911337001000049 ], [ -82.015619525999966, 28.911336953000045 ], [ -82.015815269999962, 28.911336930000061 ], [ -82.016224487999978, 28.911335434000023 ], [ -82.016452634999951, 28.911316057000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014029161999986, 28.911339878000035 ], [ -82.014619320999941, 28.911337065000055 ], [ -82.014753876999976, 28.91133657000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013319249999938, 28.91133995000007 ], [ -82.01395980999996, 28.911339885000075 ], [ -82.014029161999986, 28.911339878000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01259663999997, 28.911325924000039 ], [ -82.012713461999965, 28.911334508000039 ], [ -82.013208679999934, 28.911339961000067 ], [ -82.013319249999938, 28.91133995000007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016461989999982, 28.911989341000037 ], [ -82.016462185999956, 28.911997936000034 ], [ -82.016459103999978, 28.912267114000031 ], [ -82.016456010999946, 28.912475443000062 ], [ -82.016452706999985, 28.912591985000063 ], [ -82.016452712999978, 28.912628769000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01259663999997, 28.911325924000039 ], [ -82.012596636999945, 28.911303923000048 ], [ -82.012596620999943, 28.911165381000046 ], [ -82.012596602999963, 28.911020994000069 ], [ -82.012596584999983, 28.910868357000027 ], [ -82.012599300999966, 28.910729471000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013291942999956, 28.910146357000031 ], [ -82.015717416999962, 28.910160535000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015717416999962, 28.910160535000045 ], [ -82.016010637999955, 28.910162563000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01564955799995, 28.910981483000057 ], [ -82.015670032999935, 28.910740149000048 ], [ -82.015670812999986, 28.910729149000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015670812999986, 28.910729149000076 ], [ -82.015717416999962, 28.910160535000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012596769999959, 28.91240057300007 ], [ -82.012596758999962, 28.912311878000025 ], [ -82.01259674399995, 28.912187087000063 ], [ -82.012596721999955, 28.912003853000044 ], [ -82.012596695999946, 28.911790024000027 ], [ -82.012596677999966, 28.911640137000063 ], [ -82.012596658999939, 28.911481656000035 ], [ -82.01259663999997, 28.911325924000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009356931999946, 28.907693583000025 ], [ -82.009262797999952, 28.907679310000049 ], [ -82.009136202999969, 28.907659324000065 ], [ -82.00901285499998, 28.907633627000052 ], [ -82.008905735999974, 28.907610785000031 ], [ -82.008818092999945, 28.90759650900003 ], [ -82.008753173999935, 28.907587945000046 ], [ -82.008655793999935, 28.907585096000048 ], [ -82.008564907999983, 28.907585101000052 ], [ -82.008457791999945, 28.907605101000058 ], [ -82.008386381999969, 28.907619387000068 ], [ -82.008301990999939, 28.907642241000076 ], [ -82.008212320999974, 28.907662597000069 ], [ -82.008102770999983, 28.907679741000038 ], [ -82.008005393999952, 28.907690457000058 ], [ -82.007888538999964, 28.907701175000057 ], [ -82.007781423999973, 28.907705466000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004393114999971, 28.906557145000079 ], [ -82.004424206999943, 28.907794232000072 ], [ -82.004400489999966, 28.908266576000074 ], [ -82.004369468999982, 28.908711606000054 ], [ -82.004361241999959, 28.908981639000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005873867999981, 28.906571548000045 ], [ -82.00506519299995, 28.906911284000046 ], [ -82.005049949999943, 28.908988773000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998837347999938, 28.913417363000065 ], [ -81.998859676999984, 28.913330386000041 ], [ -81.998879666999983, 28.91328543700007 ], [ -81.998935195999934, 28.913224856000056 ], [ -81.999032923999948, 28.913146684000026 ], [ -81.999115105999977, 28.91307828500004 ], [ -81.999150623999981, 28.913023502000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999150623999981, 28.913023502000044 ], [ -81.999081788999945, 28.913033335000023 ], [ -81.998992277999946, 28.913085514000045 ], [ -81.998889217999988, 28.913146487000063 ], [ -81.99883768899997, 28.913179319000051 ], [ -81.998770166999975, 28.913209023000036 ], [ -81.998725744999945, 28.913224657000058 ], [ -81.998660041999983, 28.913229145000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000117834999969, 28.911876832000075 ], [ -82.000069056999962, 28.911764355000059 ], [ -81.999942872999952, 28.911499778000064 ], [ -81.999684031999948, 28.91096004700006 ], [ -81.999409955999965, 28.910380093000072 ], [ -81.999272040999983, 28.910111602000029 ], [ -81.999199174999944, 28.910005375000026 ], [ -81.999133928999981, 28.909917712000038 ], [ -81.999079031999941, 28.909841796000023 ], [ -81.999061091999977, 28.909794437000073 ], [ -81.999047635999943, 28.909731291000071 ], [ -81.999051494999946, 28.909644408000077 ], [ -81.999094733999982, 28.909423459000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994264671999986, 28.908908004000068 ], [ -81.994214805999945, 28.908961475000069 ], [ -81.994182565999949, 28.909018205000052 ], [ -81.994158383999945, 28.909064300000068 ], [ -81.994122115999971, 28.909105073000035 ], [ -81.994079800999941, 28.909147621000045 ], [ -81.99401129499995, 28.909181304000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992810170999974, 28.909917580000069 ], [ -81.993201040999963, 28.910125027000049 ], [ -81.993214239999986, 28.910130944000059 ], [ -81.99326954199995, 28.910150607000048 ], [ -81.993327417999978, 28.910163307000062 ], [ -81.99338673799997, 28.91016879700004 ], [ -81.993446348999953, 28.910166968000055 ], [ -81.993505089999985, 28.910157857000058 ], [ -81.993561819999968, 28.910141642000042 ], [ -81.993615430999967, 28.910118637000039 ], [ -81.993664883999941, 28.91008929000003 ], [ -81.993709212999988, 28.910054174000038 ], [ -81.99374755499997, 28.910013971000069 ], [ -81.993759165999961, 28.909999180000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999288381999975, 28.917689266000025 ], [ -81.999209285999939, 28.917731282000034 ], [ -81.999162928999965, 28.91774853700008 ], [ -81.999123704999988, 28.917753244000039 ], [ -81.999024126999984, 28.917761 ], [ -81.998877869999944, 28.91776406300005 ], [ -81.998795964999942, 28.917765700000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998798070999953, 28.917874181000059 ], [ -81.998919656999988, 28.917874360000042 ], [ -81.999024125999938, 28.917868234000025 ], [ -81.999121920999983, 28.917866188000062 ], [ -81.999191455999949, 28.917872463000037 ], [ -81.999243158999946, 28.917889719000073 ], [ -81.999293358999978, 28.917910644000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998696994999989, 28.92044588400006 ], [ -81.998686836, 28.920435570000052 ], [ -81.998617089999982, 28.920366814000033 ], [ -81.998534449999966, 28.920293933000039 ], [ -81.998464899999988, 28.920225177000077 ], [ -81.998368974999948, 28.920129261000056 ], [ -81.998299424999971, 28.920060505000038 ], [ -81.998212290999959, 28.919980060000057 ], [ -81.998202522999975, 28.91997146600005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999200653999935, 28.920923738000056 ], [ -81.99913950399997, 28.920860826000023 ], [ -81.999035176999939, 28.920765256000038 ], [ -81.998956832999966, 28.920692374000055 ], [ -81.998856609999962, 28.920596459000024 ], [ -81.998752088999936, 28.920500889000039 ], [ -81.998696994999989, 28.92044588400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999697675999982, 28.921402621000027 ], [ -81.999646561999953, 28.92135690300006 ], [ -81.999581520999982, 28.921289813000044 ], [ -81.999487847999944, 28.921205637000071 ], [ -81.999379026999975, 28.921098378000067 ], [ -81.999278801999935, 28.921002463000036 ], [ -81.999217846999954, 28.920941271000061 ], [ -81.999200653999935, 28.920923738000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000128274999952, 28.921915193000075 ], [ -82.00011030099995, 28.921887347000052 ], [ -82.000023359999943, 28.921764962000054 ], [ -81.999931926999977, 28.921657703000051 ], [ -81.999823102999983, 28.92154253800004 ], [ -81.999718579999978, 28.921427716000039 ], [ -81.999697675999982, 28.921402621000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000494600999957, 28.922475548000079 ], [ -82.000489129999949, 28.922465579000061 ], [ -82.000389097999971, 28.92229334600006 ], [ -82.000319349999984, 28.922182307000071 ], [ -82.000254095999935, 28.922086394000075 ], [ -82.000180048999937, 28.921994605000066 ], [ -82.000128274999952, 28.921915193000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999991122999973, 28.919778276000045 ], [ -81.999888359999943, 28.919673423000063 ], [ -81.999801226999978, 28.919585416000075 ], [ -81.999696899999947, 28.919481939000036 ], [ -81.999566198999958, 28.919344084000045 ], [ -81.999527907999948, 28.919303519000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000466457999948, 28.920268157000066 ], [ -82.000397686999975, 28.920198371000026 ], [ -82.00029316499996, 28.920091112000023 ], [ -82.000180045999969, 28.919972166000036 ], [ -82.000023359999943, 28.919811278000054 ], [ -81.999991122999973, 28.919778276000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000941209999951, 28.920765600000038 ], [ -82.000876540999968, 28.920696157000066 ], [ -82.00077651099997, 28.920588899000052 ], [ -82.000667687999965, 28.920477859000073 ], [ -82.000536986999975, 28.92034000600006 ], [ -82.000466457999948, 28.920268157000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001385488999972, 28.921307388000059 ], [ -82.001346804999969, 28.921251697000059 ], [ -82.001233487999968, 28.921109718000025 ], [ -82.001120366999942, 28.920968082000059 ], [ -82.000994154999944, 28.920822667000039 ], [ -82.000941209999951, 28.920765600000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995491795999953, 28.919640689000062 ], [ -81.995884098999966, 28.919524505000027 ], [ -81.99632745599996, 28.919378021000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997579286999951, 28.920362331000035 ], [ -81.997595307999973, 28.920355456000038 ], [ -81.997696511999948, 28.920295984000063 ], [ -81.997832111999969, 28.920213489000048 ], [ -81.998045764999972, 28.920080144000053 ], [ -81.998202522999975, 28.91997146600005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998202522999975, 28.91997146600005 ], [ -81.998392721999949, 28.919855224000059 ], [ -81.998546111999985, 28.919773289000034 ], [ -81.998719589999951, 28.919681714000035 ], [ -81.998835912999937, 28.919624946000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998835912999937, 28.919624946000056 ], [ -81.998842944999978, 28.919621852000034 ], [ -81.999010633999944, 28.919549948000054 ], [ -81.999151931999961, 28.919492231000049 ], [ -81.999284819999957, 28.919435992000047 ], [ -81.999405933999981, 28.91938123500006 ], [ -81.999527907999948, 28.919303519000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999200653999935, 28.920923738000056 ], [ -81.999341711999989, 28.920840200000043 ], [ -81.999483746999942, 28.92077179000006 ], [ -81.999656259999938, 28.920697191000045 ], [ -81.999825449999946, 28.920626030000051 ], [ -81.999999720999938, 28.920551430000046 ], [ -82.000136869999949, 28.920483017000038 ], [ -82.000265422999973, 28.920403949000047 ], [ -82.000466457999948, 28.920268157000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000128274999952, 28.921915193000075 ], [ -82.000336540999967, 28.921822373000055 ], [ -82.00057684799998, 28.921738520000076 ], [ -82.000807473999942, 28.921639055000071 ], [ -82.00106071099998, 28.921503783000048 ], [ -82.001295856999945, 28.921366521000039 ], [ -82.001385488999972, 28.921307388000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002395633999981, 28.925608725000075 ], [ -82.002449460999969, 28.925593596000056 ], [ -82.002507135999963, 28.925577386000043 ], [ -82.002575365999974, 28.925552495000034 ], [ -82.002640267999936, 28.925529070000039 ], [ -82.002701840999976, 28.925501251000071 ], [ -82.002755091999973, 28.925471969000057 ], [ -82.002824983999972, 28.925430973000061 ], [ -82.00289487799995, 28.925373874000059 ], [ -82.003034662999937, 28.925268457000072 ], [ -82.003156647999958, 28.925191060000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003092422999941, 28.925112874000035 ], [ -82.00307202099998, 28.925134405000051 ], [ -82.002991915999985, 28.925215726000033 ], [ -82.002849944, 28.925316776000045 ], [ -82.002770001999977, 28.925367932000029 ], [ -82.00271182299997, 28.925401694000072 ], [ -82.002653577999979, 28.925429512000051 ], [ -82.002610309999966, 28.925445618000026 ], [ -82.002542080999945, 28.92547490100003 ], [ -82.002472186999967, 28.925495399000056 ], [ -82.002398965999987, 28.925520289000076 ], [ -82.002383605999967, 28.925523936000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979959450999957, 28.915532513000073 ], [ -81.980310724999981, 28.915450745000044 ], [ -81.980637770999977, 28.915372412000067 ], [ -81.980880810999963, 28.915315380000038 ], [ -81.981053904999953, 28.915281370000059 ], [ -81.981193394999934, 28.915268670000046 ], [ -81.981352221999941, 28.915268692000041 ], [ -81.981578624999941, 28.915290509000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97688921799994, 28.918112204000067 ], [ -81.977071795999962, 28.918061645000023 ], [ -81.977250098999946, 28.918057378000071 ], [ -81.977349342999958, 28.918049996000036 ], [ -81.977458680999973, 28.918041134000077 ], [ -81.977574747999938, 28.918033753000032 ], [ -81.977721092999957, 28.918021938000038 ], [ -81.977845570999989, 28.918013079000048 ], [ -81.977985184999966, 28.918007183000043 ], [ -81.978081066999948, 28.918004238000037 ], [ -81.978166850999969, 28.918013131000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978166850999969, 28.918013131000066 ], [ -81.978203855999936, 28.918019058000027 ], [ -81.978293001999987, 28.918036831000052 ], [ -81.978407377999986, 28.918070889000035 ], [ -81.97854530099994, 28.918116790000056 ], [ -81.978691632999983, 28.918165651000038 ], [ -81.978859832999945, 28.918218957000079 ], [ -81.978994392999937, 28.918263377000073 ], [ -81.979110448999961, 28.918303354000045 ], [ -81.979213048999952, 28.918340368000031 ], [ -81.979317333999973, 28.918372944000055 ], [ -81.97940816299996, 28.918393678000029 ], [ -81.979505722999988, 28.918405532000065 ], [ -81.979606648999948, 28.918404068000029 ], [ -81.979702530999987, 28.918395202000056 ], [ -81.979788318999965, 28.918387815000074 ], [ -81.979851255999961, 28.91838309700006 ], [ -81.979899338999985, 28.918378952000069 ], [ -81.979943075999984, 28.918374518000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979943075999984, 28.918374518000064 ], [ -81.980040637999934, 28.91836861400003 ], [ -81.980125553999983, 28.918361135000055 ], [ -81.980230718999962, 28.918355321000035 ], [ -81.980360240999971, 28.918344981000075 ], [ -81.980493042999967, 28.918328530000053 ], [ -81.980604993999975, 28.918309744000055 ], [ -81.980721627999969, 28.918274242000052 ], [ -81.980829571999948, 28.918222212000046 ], [ -81.980919013999937, 28.918167713000059 ], [ -81.981024718999947, 28.918094962000055 ], [ -81.981087244999969, 28.918043419000071 ], [ -81.981150054999944, 28.917980284000066 ], [ -81.981199406999963, 28.917927011000074 ], [ -81.981255208999983, 28.91785376100006 ], [ -81.981309051999972, 28.917764971000054 ], [ -81.981381404, 28.917646583000078 ], [ -81.981420102999948, 28.917582950000053 ], [ -81.981467214999952, 28.917504519000033 ], [ -81.981499185999951, 28.917448285000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982620074999943, 28.913729285000045 ], [ -81.982637564999948, 28.913679238000043 ], [ -81.982667194999976, 28.913587214000074 ], [ -81.982692440999983, 28.913501380000071 ], [ -81.982714318999967, 28.913427384000045 ], [ -81.982734515999937, 28.913348949000067 ], [ -81.982756395999957, 28.913264594000054 ], [ -81.982779961999938, 28.913165439000068 ], [ -81.982806069999981, 28.913032272000066 ], [ -81.982819956999947, 28.912939796000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982819956999947, 28.912939796000046 ], [ -81.982830906999936, 28.912867948000041 ], [ -81.982847309999954, 28.912752538000063 ], [ -81.982860782999978, 28.912645982000072 ], [ -81.982874254999956, 28.912551266000037 ], [ -81.982889504999946, 28.912435256000037 ], [ -81.982906251999964, 28.912315956000043 ], [ -81.982926459999987, 28.91216944100006 ], [ -81.982943392999971, 28.912048498000047 ], [ -81.982965184999955, 28.911929693000047 ], [ -81.982993223999983, 28.911814979000042 ], [ -81.983022405999975, 28.911722504000068 ], [ -81.983067883, 28.911601160000032 ], [ -81.983104856999944, 28.911522719000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983104856999944, 28.911522719000061 ], [ -81.983136824999974, 28.911456125000029 ], [ -81.98316148899994, 28.911409343000059 ], [ -81.983194029999936, 28.911352535000049 ], [ -81.983244501999934, 28.911275583000076 ], [ -81.983310967999955, 28.91118453100006 ], [ -81.983363946999987, 28.911124642000061 ], [ -81.983414413999981, 28.91107432900003 ], [ -81.983479386999988, 28.911025727000037 ], [ -81.983554033999951, 28.910978148000027 ], [ -81.983631411999966, 28.91094115900006 ], [ -81.983723925999982, 28.910910090000073 ], [ -81.983806345999938, 28.910889381000061 ], [ -81.983898858999964, 28.910865712000032 ], [ -81.983984641999939, 28.910842043000059 ], [ -81.984077587999934, 28.91081747000004 ], [ -81.984176397999988, 28.910787307000078 ], [ -81.984253770999942, 28.910762157000079 ], [ -81.984326101999955, 28.910732566000036 ], [ -81.984405160999984, 28.910694096000043 ], [ -81.984509453999976, 28.910630470000058 ], [ -81.984607222999955, 28.910559698000043 ], [ -81.984684593999987, 28.910491639000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980612593999979, 28.913627140000074 ], [ -81.980611155999952, 28.913521168000045 ], [ -81.980613529999971, 28.913360967000074 ], [ -81.980620585999986, 28.913237897000045 ], [ -81.980637214999945, 28.913114826000026 ], [ -81.980653072999985, 28.913033187000053 ], [ -81.980672799, 28.912960820000023 ], [ -81.980727329999979, 28.912806471000067 ], [ -81.980754050999963, 28.912719449000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980754050999963, 28.912719449000065 ], [ -81.980779522999967, 28.912627371000042 ], [ -81.980798941999979, 28.912524100000041 ], [ -81.980812575999948, 28.912425234000068 ], [ -81.980826871999966, 28.912231347000045 ], [ -81.980816991999973, 28.91193211600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979661504999967, 28.913642725000045 ], [ -81.979661519999979, 28.913562625000054 ], [ -81.979666236999947, 28.913416864000055 ], [ -81.979673294999941, 28.913291729000036 ], [ -81.979682888999946, 28.913177254000061 ], [ -81.979706553999961, 28.913039747000028 ], [ -81.97974213699996, 28.912889864000078 ], [ -81.979791786999954, 28.912737579000066 ], [ -81.979848668999978, 28.912574982000024 ], [ -81.979884245999983, 28.912452257000041 ], [ -81.979904149999982, 28.912330588000032 ], [ -81.979915379999966, 28.912245737000035 ], [ -81.979913153999973, 28.912162860000024 ], [ -81.979903267999987, 28.912076856000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980612593999979, 28.913627140000074 ], [ -81.980530843999986, 28.913632884000037 ], [ -81.980408939999961, 28.913639742000043 ], [ -81.980278427999963, 28.913644851000072 ], [ -81.980175262999978, 28.913648783000042 ], [ -81.980036214999984, 28.913648762000037 ], [ -81.979903895999939, 28.913646770000071 ], [ -81.979781257999946, 28.913643431000025 ], [ -81.979661504999967, 28.913642725000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979661504999967, 28.913642725000045 ], [ -81.979553471999964, 28.913639615000079 ], [ -81.979421606999949, 28.913637876000053 ], [ -81.979327641999987, 28.913634424000065 ], [ -81.97926160999998, 28.913634413000068 ], [ -81.979199690999963, 28.913634822000063 ], [ -81.979114467999977, 28.913632835000044 ], [ -81.979031488999965, 28.913632822000068 ], [ -81.978966450999962, 28.913628866000067 ], [ -81.978908018999959, 28.913615107000055 ], [ -81.978856564999944, 28.913595303000079 ], [ -81.978804988999968, 28.913561749000053 ], [ -81.978764631999979, 28.913508464000074 ], [ -81.978750007999963, 28.913454882000053 ], [ -81.978748071999973, 28.91336893600004 ], [ -81.978754142999946, 28.913293306000071 ], [ -81.97876002299995, 28.913196363000054 ], [ -81.978770205999979, 28.913077074000057 ], [ -81.978788198999951, 28.912976694000065 ], [ -81.97880814399997, 28.912888689000056 ], [ -81.978834146999986, 28.912781435000056 ], [ -81.978860149999946, 28.912681401000043 ], [ -81.97889005899998, 28.91257930300003 ], [ -81.978926220999938, 28.912475488000041 ], [ -81.978974108999978, 28.912352423000073 ], [ -81.979012021999949, 28.91227679800005 ], [ -81.979049711999949, 28.912235739000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969546639999976, 28.893126224000071 ], [ -81.969702894999955, 28.893126259000042 ], [ -81.970046068999977, 28.893126336000023 ], [ -81.97034081399994, 28.893148565000047 ], [ -81.970534295999983, 28.893185795000079 ], [ -81.970678846999988, 28.893232795000074 ], [ -81.970783363999942, 28.893270012000073 ], [ -81.970876767999982, 28.893291562000059 ], [ -81.971014018999938, 28.893299123000077 ], [ -81.971335513999975, 28.893303662000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973646516999963, 28.893353888000036 ], [ -81.973952608, 28.893229937000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976783424999951, 28.892064358000027 ], [ -81.976778216999946, 28.89177008300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976778216999946, 28.89177008300004 ], [ -81.976777661999961, 28.891631196000048 ], [ -81.976777759999948, 28.891190129000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977337784999975, 28.889390879000075 ], [ -81.977345822999951, 28.889135641000053 ], [ -81.977356506999968, 28.88894362700006 ], [ -81.977348599999971, 28.888792027000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977348599999971, 28.888792027000079 ], [ -81.977196393999975, 28.888171139000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962997276999943, 28.899026911000078 ], [ -81.963149376, 28.898653954000054 ], [ -81.963234456999942, 28.898434652000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963234456999942, 28.898434652000049 ], [ -81.963255237999988, 28.898373501000037 ], [ -81.963276915999984, 28.898326647000033 ], [ -81.963302638999949, 28.898297153000044 ], [ -81.963352757999985, 28.898249624000073 ], [ -81.963424973999963, 28.898213904000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960710217999974, 28.899348920000079 ], [ -81.96085166499995, 28.899327453000069 ], [ -81.960981566999976, 28.89931099000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960981566999976, 28.89931099000006 ], [ -81.961103847999937, 28.899295555000037 ], [ -81.961969021999948, 28.899137321000069 ], [ -81.962806839999985, 28.899002794000069 ], [ -81.962997276999943, 28.899026911000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960689759, 28.898748484000066 ], [ -81.961149211999953, 28.898645484000042 ], [ -81.962419703999956, 28.898439921000033 ], [ -81.962671889999967, 28.898392207000029 ], [ -81.962834210999972, 28.898384345000068 ], [ -81.963050433999967, 28.898400217000074 ], [ -81.963234456999942, 28.898434652000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958698571999946, 28.897773966000045 ], [ -81.958893198999988, 28.897565696000072 ], [ -81.958897301999968, 28.89756225900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957359769999982, 28.896889008000073 ], [ -81.957505414999957, 28.896923960000038 ], [ -81.957710005999957, 28.896971687000075 ], [ -81.957796401999985, 28.897000821000063 ], [ -81.957877823999979, 28.897039435000067 ], [ -81.958321985999987, 28.897271247000049 ], [ -81.958698693999963, 28.897463878000053 ], [ -81.958897301999968, 28.89756225900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956918365999968, 28.896810830000049 ], [ -81.957270901999948, 28.896875228000056 ], [ -81.957359769999982, 28.896889008000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958622250999952, 28.894373346000066 ], [ -81.958684910999978, 28.894327426000075 ], [ -81.958870307999973, 28.894189788000062 ], [ -81.959093243999973, 28.893999059000066 ], [ -81.959325956999976, 28.893777736000061 ], [ -81.959545644999935, 28.893525335000049 ], [ -81.959596011999963, 28.893461197000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954002134999939, 28.892876356000045 ], [ -81.954233586999976, 28.892874372000051 ], [ -81.954839855999978, 28.892871827000079 ], [ -81.955625231999989, 28.89286314900005 ], [ -81.955632655999977, 28.892862808000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955632655999977, 28.892862808000075 ], [ -81.956060794999985, 28.892855385000075 ], [ -81.956206503999965, 28.892851651000058 ], [ -81.956278863999955, 28.892832565000049 ], [ -81.956330553999976, 28.892806397000072 ], [ -81.95637441699995, 28.892776092000076 ], [ -81.956469977999973, 28.892692053000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954002399, 28.892277494000041 ], [ -81.955630365, 28.892278040000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990474070999937, 28.950273891000052 ], [ -81.990750623999986, 28.950390672000026 ], [ -81.991030864999971, 28.95050420900003 ], [ -81.991358631999958, 28.950632964000079 ], [ -81.991623495999988, 28.950741146000041 ], [ -81.991791774999967, 28.950806401000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99820086699998, 28.942797642000073 ], [ -81.998210076999953, 28.943005148000054 ], [ -81.998223232999976, 28.943291664000071 ], [ -81.998226520999935, 28.943378486000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998201036999944, 28.942215019000059 ], [ -81.998200871999984, 28.942547593000029 ], [ -81.998203501999967, 28.942681879000077 ], [ -81.99820086699998, 28.942797642000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998875718999955, 28.942217318000075 ], [ -81.998867391999966, 28.942372930000033 ], [ -81.998869429999957, 28.942536024000049 ], [ -81.99887995499995, 28.942922675000034 ], [ -81.998898375999943, 28.94333247700007 ], [ -81.998911534999934, 28.943487600000026 ], [ -81.998924694999971, 28.943582527000046 ], [ -81.998937852999973, 28.943712181000024 ], [ -81.998953644999972, 28.943839522000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998953644999972, 28.943839522000076 ], [ -81.998995756999989, 28.944133562000047 ], [ -81.999024708999968, 28.944297946000063 ], [ -81.999072084999966, 28.944589670000028 ], [ -81.999135253999953, 28.944874449000054 ], [ -81.999198154999988, 28.945146647000058 ], [ -81.999211586999934, 28.945193956000026 ], [ -81.999245802999951, 28.945231001000025 ], [ -81.999303711999971, 28.945258784000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996045135999964, 28.943376414000056 ], [ -81.996505759999934, 28.943376427000032 ], [ -81.996990072999949, 28.943374123000069 ], [ -81.997382261999974, 28.943374131000041 ], [ -81.997582441999953, 28.94337835400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997582441999953, 28.94337835400006 ], [ -81.997884342999953, 28.943375587000048 ], [ -81.998226520999935, 28.943378486000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999037860999977, 28.945272673000034 ], [ -81.999158941999951, 28.945272674000023 ], [ -81.999303711999971, 28.945258784000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999303711999971, 28.945258784000032 ], [ -81.999427423999975, 28.945261100000039 ], [ -81.999501125999984, 28.945258785000078 ], [ -81.999709068999948, 28.945258786000068 ], [ -81.999785474999953, 28.945257481000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999785474999953, 28.945257481000056 ], [ -82.000017033999939, 28.945251840000026 ], [ -82.000180228999966, 28.945221741000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995596279999972, 28.94603349700003 ], [ -81.995597548999967, 28.946260935000055 ], [ -81.995597539999949, 28.946483780000051 ], [ -81.995600822999961, 28.946663214000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991860213999985, 28.947354061000055 ], [ -81.99202109099997, 28.94741381800003 ], [ -81.992172289999985, 28.94749944800003 ], [ -81.992276095999955, 28.947584683000059 ], [ -81.992359823999948, 28.947664423000049 ], [ -81.992465104999951, 28.947800451000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991166642999985, 28.947309992000044 ], [ -81.99128819799995, 28.947306855000079 ], [ -81.991441927999972, 28.94730686500003 ], [ -81.991567056999941, 28.947310018000053 ], [ -81.991742236999983, 28.94732575200004 ], [ -81.991860213999985, 28.947354061000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990440898999964, 28.947237617000042 ], [ -81.990548150999985, 28.947256492000065 ], [ -81.990669704999959, 28.947272224000073 ], [ -81.990823432999946, 28.94729424600007 ], [ -81.990955711999959, 28.947300544000029 ], [ -81.991166642999985, 28.947309992000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989404129999969, 28.947067730000072 ], [ -81.989686559999939, 28.947114922000026 ], [ -81.989904638999974, 28.947149529000058 ], [ -81.990187068999944, 28.947193574000039 ], [ -81.990337221999937, 28.947221887000069 ], [ -81.990440898999964, 28.947237617000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985725333999937, 28.947061100000042 ], [ -81.986004196999943, 28.947026540000024 ], [ -81.986132902999941, 28.947013975000061 ], [ -81.986340262999988, 28.946995128000026 ], [ -81.986483268999962, 28.946979419000058 ], [ -81.986640577999935, 28.946960567000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984810089999939, 28.947149051000054 ], [ -81.984999572999982, 28.947136493000073 ], [ -81.985303463999969, 28.947101936000024 ], [ -81.985521548999941, 28.947079947000077 ], [ -81.985725333999937, 28.947061100000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983884561999957, 28.947152652000057 ], [ -81.983955492999939, 28.947152661000075 ], [ -81.984156843999983, 28.947152685000049 ], [ -81.98436505799998, 28.947152709000079 ], [ -81.98459558199994, 28.947152171000027 ], [ -81.984699261999936, 28.947149038000077 ], [ -81.984810089999939, 28.947149051000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982948761999978, 28.947003609000035 ], [ -81.983143238999958, 28.947061997000048 ], [ -81.983255351999958, 28.947088174000044 ], [ -81.983404069999949, 28.947120394000024 ], [ -81.983571095999935, 28.947142553000049 ], [ -81.983717532999947, 28.947150620000059 ], [ -81.983884561999957, 28.947152652000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982026712999982, 28.946741857000063 ], [ -81.982131960999936, 28.946764010000038 ], [ -81.98223491899995, 28.946792197000036 ], [ -81.98237219799995, 28.946830455000054 ], [ -81.982559809999941, 28.946882806000076 ], [ -81.982758861999969, 28.946945221000078 ], [ -81.982948761999978, 28.947003609000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981143505999967, 28.946810163000066 ], [ -81.981288804999963, 28.946771881000075 ], [ -81.981424664999963, 28.946740454000064 ], [ -81.981599848999963, 28.946718467000039 ], [ -81.981715539999982, 28.946717665000051 ], [ -81.981795622999982, 28.946717676000048 ], [ -81.981871557999966, 28.94672164800005 ], [ -81.982026712999982, 28.946741857000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979929439999978, 28.947679922000077 ], [ -81.979984563999949, 28.947627238000052 ], [ -81.980048521999947, 28.947568555000032 ], [ -81.980098576999978, 28.94752698800005 ], [ -81.98025708199998, 28.947392506000028 ], [ -81.980523657999981, 28.947167995000029 ], [ -81.980566920999934, 28.947133285000064 ], [ -81.980569528, 28.947131193000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978057560999957, 28.948934222000048 ], [ -81.978274391999946, 28.948849740000071 ], [ -81.97850518599995, 28.948742174000074 ], [ -81.978710957999965, 28.948624821000067 ], [ -81.979002936999962, 28.948436560000061 ], [ -81.979200372999969, 28.948284968000053 ], [ -81.979435132999981, 28.948093523000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976286641999934, 28.949362240000028 ], [ -81.976514303999977, 28.949316543000066 ], [ -81.97688689499995, 28.949235905000023 ], [ -81.977151043999982, 28.949177257000031 ], [ -81.977328998999951, 28.949138159000029 ], [ -81.977623734999952, 28.949069733000044 ], [ -81.977829496999959, 28.949008629000048 ], [ -81.978057560999957, 28.948934222000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001690104999966, 28.933724379000068 ], [ -82.001520479999954, 28.933887308000067 ], [ -82.001490387, 28.933911716000068 ], [ -82.001463012999977, 28.933933101000036 ], [ -82.001446065999971, 28.933948011000041 ], [ -82.001425727999958, 28.933961428000032 ], [ -82.001400307999972, 28.933973356000024 ], [ -82.001378275999969, 28.933980810000037 ], [ -82.001361328999963, 28.933986773000072 ], [ -82.001342686999976, 28.933994229000064 ], [ -82.001329128999942, 28.934000192000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00202029999997, 28.945094078000068 ], [ -82.002409936999982, 28.945000363000077 ], [ -82.002569737999977, 28.944963919000031 ], [ -82.002696984999943, 28.944938754000077 ], [ -82.002833111999962, 28.944912722000026 ], [ -82.002974170999948, 28.944886689000043 ], [ -82.003101418999961, 28.944866729000069 ], [ -82.003258260999985, 28.944845034000025 ], [ -82.003372684999988, 28.944827678000024 ], [ -82.003835317999972, 28.944774738000035 ], [ -82.00414406699997, 28.944745228000045 ], [ -82.004452051999976, 28.944720306000079 ], [ -82.004765106999969, 28.944702763000066 ], [ -82.004903612999954, 28.944694011000024 ], [ -82.004999296999983, 28.944694008000056 ], [ -82.005081168999936, 28.944693137000058 ], [ -82.005171918999963, 28.944691398000032 ], [ -82.005257738999944, 28.944693130000076 ], [ -82.005338626999958, 28.944693995000023 ], [ -82.005429376999984, 28.944698329000062 ], [ -82.005523087999961, 28.944707003000076 ], [ -82.005619758999956, 28.944715674000065 ], [ -82.005725305999988, 28.944726950000074 ], [ -82.005806193999945, 28.944735623000042 ], [ -82.005894971999965, 28.944747766000035 ], [ -82.005967968999983, 28.944756440000049 ], [ -82.005997561999948, 28.944762512000068 ], [ -82.006083382999975, 28.944778126000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006083382999975, 28.944778126000074 ], [ -82.00624303099994, 28.944808693000027 ], [ -82.006327803999966, 28.944828952000023 ], [ -82.006409811999958, 28.944847590000052 ], [ -82.006496427999934, 28.944868658000075 ], [ -82.00658027999998, 28.944889727000032 ], [ -82.006665973999986, 28.94491322600004 ], [ -82.006782998999938, 28.944945640000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006782998999938, 28.944945640000071 ], [ -82.006831899999952, 28.944962657000076 ], [ -82.006912997999962, 28.944991187000028 ], [ -82.006993316999967, 28.945020748000047 ], [ -82.007073243999969, 28.945052027000031 ], [ -82.007152584999972, 28.945083994000072 ], [ -82.007231142999956, 28.945117679000077 ], [ -82.007309117999966, 28.945152052000026 ], [ -82.007386309999958, 28.945187801000031 ], [ -82.007462620999945, 28.945223115000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007462620999945, 28.945223115000033 ], [ -82.007539706999978, 28.945256259000075 ], [ -82.00763220999994, 28.945299949000059 ], [ -82.007717861999936, 28.945340626000075 ], [ -82.00779152299998, 28.945384317000048 ], [ -82.007858331999955, 28.945423487000028 ], [ -82.007928566999965, 28.945465671000079 ], [ -82.00799537599994, 28.945507856000063 ], [ -82.008072463999952, 28.945556066000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980308234999939, 28.887246865000066 ], [ -81.980304737999973, 28.887147855000023 ], [ -81.980304780999973, 28.886922337000044 ], [ -81.980311867999944, 28.88662256300006 ], [ -81.980336530999978, 28.886328979000041 ], [ -81.980385602999945, 28.886060152000027 ], [ -81.98044893499997, 28.885778950000031 ], [ -81.980574783999941, 28.88539152900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980970670999966, 28.887205245000075 ], [ -81.980969160999962, 28.887132865000069 ], [ -81.980961386, 28.887005969000029 ], [ -81.980968465999979, 28.88674641700004 ], [ -81.981000164999955, 28.886412613000061 ], [ -81.981045919999985, 28.886119032000067 ], [ -81.98112311999995, 28.885816173000023 ], [ -81.981187604999946, 28.885627105000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981187604999946, 28.885627105000026 ], [ -81.981238996999934, 28.885476193000045 ], [ -81.981287445999953, 28.885371362000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981312437999975, 28.885311823000052 ], [ -81.981380402999946, 28.885164415000077 ], [ -81.981418996999935, 28.885083999000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981418996999935, 28.885083999000074 ], [ -81.981471807999981, 28.884991076000063 ], [ -81.981565855999975, 28.88483337100007 ], [ -81.981786990999979, 28.884524344000056 ], [ -81.982190375999949, 28.884025576000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980812913999955, 28.884847063000052 ], [ -81.981418996999935, 28.885083999000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980545959999972, 28.884750627000074 ], [ -81.980812913999955, 28.884847063000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980287512999951, 28.885284229000035 ], [ -81.980574783999941, 28.88539152900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980574783999941, 28.88539152900006 ], [ -81.98061052099996, 28.885404942000036 ], [ -81.981187604999946, 28.885627105000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982482095999956, 28.886712932000023 ], [ -81.982453802999942, 28.886557884000069 ], [ -81.982451109999943, 28.886495058000037 ], [ -81.982450302999951, 28.886426278000044 ], [ -81.982464532999984, 28.886336923000044 ], [ -81.982525488999954, 28.886108178000029 ], [ -81.982576278999943, 28.885961639000072 ], [ -81.982633160999967, 28.88580795200005 ], [ -81.982694097999968, 28.885686434000036 ], [ -81.982775348999951, 28.88552739000005 ], [ -81.982854562999989, 28.885398727000052 ], [ -81.983023137999965, 28.88516820600006 ], [ -81.983282954999936, 28.884855254000058 ], [ -81.983335361999934, 28.884795130000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983335361999934, 28.884795130000043 ], [ -81.98340326899995, 28.884698535000041 ], [ -81.983460138999988, 28.884612759000049 ], [ -81.983538669999973, 28.88450315800003 ], [ -81.983672659999968, 28.884366792000037 ], [ -81.983756865999965, 28.884266382000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981668398999943, 28.883665226000062 ], [ -81.981772091999972, 28.883725401000049 ], [ -81.981934760999934, 28.88382408800004 ], [ -81.982100160999948, 28.883943057000067 ], [ -81.982190375999949, 28.884025576000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982190375999949, 28.884025576000056 ], [ -81.982260837999945, 28.884093145000065 ], [ -81.982377837999934, 28.884191302000033 ], [ -81.982535036999934, 28.884298238000042 ], [ -81.982674469999949, 28.884383856000056 ], [ -81.982745410999939, 28.884419659000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982745410999939, 28.884419659000059 ], [ -81.982826628999987, 28.884450645000072 ], [ -81.982948448999934, 28.884526912000069 ], [ -81.983335361999934, 28.884795130000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983335361999934, 28.884795130000043 ], [ -81.983444467999959, 28.884870744000068 ], [ -81.98372879599998, 28.88507773300006 ], [ -81.984065853999937, 28.885318762000054 ], [ -81.984169158999975, 28.885394750000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984169158999975, 28.885394750000046 ], [ -81.984322258999953, 28.885507527000073 ], [ -81.984469696999952, 28.885630961000061 ], [ -81.984632941999962, 28.885824183000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984169158999975, 28.885394750000046 ], [ -81.984269558999983, 28.885300222000069 ], [ -81.984399449999955, 28.88520776200005 ], [ -81.984582071999967, 28.885108774000059 ], [ -81.984755709999945, 28.885023537000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971293388999982, 28.905139585000029 ], [ -81.97111823399996, 28.904897185000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97111823399996, 28.904897185000038 ], [ -81.970737662999966, 28.904370090000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969482667999955, 28.906161581000049 ], [ -81.969448493999948, 28.906129258000078 ], [ -81.969370769999955, 28.906051890000072 ], [ -81.969316874999947, 28.905986560000031 ], [ -81.969281729999977, 28.905929486000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969281729999977, 28.905929486000048 ], [ -81.969272943999954, 28.905915045000029 ], [ -81.969212229999982, 28.905784396000058 ], [ -81.969030892999967, 28.905330568000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967343636999942, 28.904379281000047 ], [ -81.967447755999956, 28.904372085000034 ], [ -81.967676038999969, 28.904357870000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966630661999943, 28.904334414000061 ], [ -81.966741608999939, 28.904354037000076 ], [ -81.966896309999981, 28.904374702000041 ], [ -81.967081294999957, 28.904383686000074 ], [ -81.967276242999958, 28.904383733000031 ], [ -81.967343636999942, 28.904379281000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96624722699994, 28.904282752000029 ], [ -81.966321256999947, 28.904294803000028 ], [ -81.966459160999989, 28.90430961900006 ], [ -81.966590228999962, 28.904327184000067 ], [ -81.966630661999943, 28.904334414000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958211096999946, 28.903635627000028 ], [ -81.958482454999967, 28.903637668000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019587670999954, 28.921457920000023 ], [ -82.019506789, 28.921462057000042 ], [ -82.019432352999956, 28.921465506000061 ], [ -82.019319037999935, 28.921468960000027 ], [ -82.019166647999953, 28.921475857000075 ], [ -82.019041610999977, 28.921479312000031 ], [ -82.018877303999943, 28.921482773000037 ], [ -82.018837057999974, 28.921484498000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018837057999974, 28.921484498000041 ], [ -82.018725815999971, 28.921491133000075 ], [ -82.018643826999948, 28.921491144000072 ], [ -82.018576412999948, 28.921495962000051 ], [ -82.018490278999934, 28.921513767000079 ], [ -82.018412133999959, 28.921537842000077 ], [ -82.018369155999949, 28.921555037000076 ], [ -82.018314063999981, 28.92158095700006 ], [ -82.018264875999989, 28.921614625000075 ], [ -82.018224596999971, 28.921644782000044 ], [ -82.018175975999952, 28.921682444000055 ], [ -82.018132255999944, 28.921731180000052 ], [ -82.018097281999985, 28.92177735000007 ], [ -82.018056479999984, 28.921840193000037 ], [ -82.018033167999988, 28.921885080000038 ], [ -82.017997821999984, 28.92194046000003 ], [ -82.017953017999957, 28.921988963000047 ], [ -82.017911872999946, 28.922033292000037 ], [ -82.017829827999947, 28.922098621000032 ], [ -82.017769385999941, 28.922133897000037 ], [ -82.017705257999978, 28.922169813000039 ], [ -82.017630926999971, 28.922208294000029 ], [ -82.017531950999967, 28.922247248000076 ], [ -82.017463136999936, 28.922271312000078 ], [ -82.017400641999984, 28.92229039700004 ], [ -82.017342339999971, 28.92230451000006 ], [ -82.017195877999939, 28.922310469000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021922376999953, 28.917392389000042 ], [ -82.022095341999943, 28.917389866000065 ], [ -82.022233501999949, 28.917389253000067 ], [ -82.022376057999963, 28.917389820000039 ], [ -82.022532018999982, 28.91739367200006 ], [ -82.022646307999935, 28.917397434000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019057213999986, 28.918118891000063 ], [ -82.019175407999967, 28.918118874000072 ], [ -82.019415511999966, 28.918118839000044 ], [ -82.019580985999937, 28.918115722000039 ], [ -82.019652291999989, 28.918095772000072 ], [ -82.019714017999945, 28.918050041000072 ], [ -82.019741991999979, 28.918003948000035 ], [ -82.019759520999969, 28.917953089000036 ], [ -82.019772354999986, 28.917641969000044 ], [ -82.019762024999977, 28.91674196200006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020540314999948, 28.918546675000073 ], [ -82.020489716999975, 28.918558371000074 ], [ -82.020408644999975, 28.918581073000041 ], [ -82.020340465999936, 28.918601022000075 ], [ -82.020256073999974, 28.918626818000064 ], [ -82.02015546399997, 28.918655367000042 ], [ -82.020064624999975, 28.918678069000066 ], [ -82.019983551999985, 28.918703864000065 ], [ -82.019899158999976, 28.918732411000065 ], [ -82.01983742699997, 28.918749609000031 ], [ -82.019772565999972, 28.918755462000036 ], [ -82.019727240999941, 28.918755468000029 ], [ -82.019659056999956, 28.918752384000072 ], [ -82.019584425999938, 28.91873830000003 ], [ -82.019493573999966, 28.91871253000005 ], [ -82.01943515499994, 28.918686755000067 ], [ -82.019347425999968, 28.918632796000054 ], [ -82.019292322999945, 28.918581237000069 ], [ -82.019223186999966, 28.918515453000055 ], [ -82.019181919999937, 28.918464369000048 ], [ -82.019117043999984, 28.918384278000076 ], [ -82.019078153999942, 28.918321372000037 ], [ -82.019058678999954, 28.918258515000048 ], [ -82.019055274999971, 28.918198647000054 ], [ -82.019057213999986, 28.918118891000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021208047999949, 28.918457775000036 ], [ -82.021108803999937, 28.918460286000027 ], [ -82.021018068999979, 28.918465290000029 ], [ -82.020869298999969, 28.918486808000068 ], [ -82.020781777999957, 28.918498165000074 ], [ -82.020707150999954, 28.918509521000033 ], [ -82.020612987999982, 28.918529819000071 ], [ -82.020540314999948, 28.918546675000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019762024999977, 28.91674196200006 ], [ -82.019761430999949, 28.916699333000054 ], [ -82.019774891999987, 28.916594479000025 ], [ -82.019819606999988, 28.916476213000067 ], [ -82.019862395999951, 28.916399945000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019995361999975, 28.916102846000058 ], [ -82.020075811999959, 28.915900692000037 ], [ -82.020180081999968, 28.915631843000028 ], [ -82.020237718999965, 28.915481650000061 ], [ -82.020288732999973, 28.915364387000068 ], [ -82.020444632999954, 28.915104907000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013416073999963, 28.915345633000072 ], [ -82.013854268999978, 28.915351434000058 ], [ -82.01483927299995, 28.915354079000053 ], [ -82.015545694999958, 28.915351249000025 ], [ -82.015846160999956, 28.915370465000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013423830999955, 28.914671036000072 ], [ -82.013497452999957, 28.914679041000056 ], [ -82.013729072, 28.914707342000042 ], [ -82.014009748999968, 28.91471918600007 ], [ -82.014258039999959, 28.914723909000031 ], [ -82.014557607999961, 28.914721502000077 ], [ -82.01521622599995, 28.914720799000065 ], [ -82.01578335399995, 28.914726577000067 ], [ -82.015919131999965, 28.914741344000049 ], [ -82.016089545999989, 28.914805031000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01125039599998, 28.910695900000064 ], [ -82.011906971999963, 28.910695844000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010949165999989, 28.910695925000027 ], [ -82.01125039599998, 28.910695900000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014009662999968, 28.914080425000066 ], [ -82.014196560999949, 28.914079766000043 ], [ -82.01429150499996, 28.914079756000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01429150499996, 28.914079756000035 ], [ -82.014875038999946, 28.91407969200003 ], [ -82.015676785999972, 28.914079601000026 ], [ -82.01609680599995, 28.914079552000032 ], [ -82.016176296999959, 28.914054798000052 ], [ -82.016252348999956, 28.914011310000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01429150499996, 28.914079756000035 ], [ -82.014295526999945, 28.913497053000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014295526999945, 28.913497053000071 ], [ -82.014287528999944, 28.913277789000063 ], [ -82.014298291999978, 28.913042704000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020444632999954, 28.915104907000057 ], [ -82.020489989999987, 28.915052509000077 ], [ -82.020515501999967, 28.915020073000051 ], [ -82.020548013999985, 28.914978955000038 ], [ -82.020576134999942, 28.914932197000041 ], [ -82.020601132999957, 28.914893347000032 ], [ -82.020620378999979, 28.914852907000068 ], [ -82.020651125999962, 28.914797082000064 ], [ -82.020677066999951, 28.914738138000075 ], [ -82.020705403999955, 28.914653311000052 ], [ -82.020722973999966, 28.914574303000052 ], [ -82.020732339999938, 28.914519297000027 ], [ -82.020738578999953, 28.914453291000029 ], [ -82.020741689999966, 28.914381785000046 ], [ -82.02073229299998, 28.914282777000039 ], [ -82.02072994599996, 28.914267651000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023550199999988, 28.914554930000065 ], [ -82.023555612999985, 28.914305347000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023555612999985, 28.914305347000038 ], [ -82.023567594999975, 28.913728487000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148730108999985, 28.90170598900005 ], [ -82.148724000999948, 28.903228393000063 ], [ -82.148724017999939, 28.904692516000068 ], [ -82.148722444999976, 28.905040339000038 ], [ -82.148724913999956, 28.905320777000043 ], [ -82.148725271999979, 28.905572082000049 ], [ -82.14872795499997, 28.906001847000027 ], [ -82.148725537999951, 28.907209205000072 ], [ -82.148727433999966, 28.90853856800004 ], [ -82.148727724999958, 28.908742526000026 ], [ -82.148727859999951, 28.908837219000077 ], [ -82.148730050999973, 28.908922806000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13644564699996, 28.918112321000024 ], [ -82.136438973999987, 28.918738639000026 ], [ -82.136411820999967, 28.922247251000044 ], [ -82.136412985999982, 28.923136833000058 ], [ -82.13643409499997, 28.923471732000053 ], [ -82.136415789999944, 28.923581038000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133379023999964, 28.94915297600005 ], [ -82.133367818999943, 28.949187616000074 ], [ -82.133367894999935, 28.949246980000055 ], [ -82.133368049999945, 28.949368183000047 ], [ -82.133372361999989, 28.950538150000057 ], [ -82.133376425999984, 28.951515185000062 ], [ -82.133374551999964, 28.952247346000036 ], [ -82.133385244999943, 28.954008477000059 ], [ -82.133386540999936, 28.95502014300007 ], [ -82.133378189999974, 28.955086935000054 ], [ -82.133347317999949, 28.955136437000078 ], [ -82.133291123999982, 28.955178543000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119962983999983, 28.890770795000037 ], [ -82.11996555099995, 28.892094927000073 ], [ -82.119968410999945, 28.894523821000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107484127999953, 28.894478536000065 ], [ -82.109242637999955, 28.894484015000046 ], [ -82.111092357999951, 28.894494981000037 ], [ -82.113025138999944, 28.894502288000069 ], [ -82.11517267399995, 28.894511168000065 ], [ -82.118347378999943, 28.894522681000069 ], [ -82.119968410999945, 28.894523821000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107419743999969, 28.88342497800005 ], [ -82.107826130999968, 28.883467414000052 ], [ -82.107971888999941, 28.883471185000076 ], [ -82.108475404999979, 28.883474668000076 ], [ -82.109508940999945, 28.883485495000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107418091999989, 28.88096119000005 ], [ -82.107615261999968, 28.880978132000052 ], [ -82.108053952999967, 28.88103416000007 ], [ -82.108246332999954, 28.881046382000079 ], [ -82.108308227999942, 28.881034300000067 ], [ -82.108375716999944, 28.880954833000033 ], [ -82.108542391999947, 28.880849501000057 ], [ -82.108636951999983, 28.880826489000071 ], [ -82.108744712999965, 28.880820183000026 ], [ -82.108983211999941, 28.880819990000077 ], [ -82.109103349999941, 28.880824557000039 ], [ -82.109225238999954, 28.880813574000058 ], [ -82.109334654999941, 28.880801764000068 ], [ -82.109445549999975, 28.880771077000077 ], [ -82.109553116999962, 28.880732487000046 ], [ -82.109675592999963, 28.880674819000035 ], [ -82.109754258999942, 28.880634438000072 ], [ -82.109797430999947, 28.880615633000048 ], [ -82.109860603999948, 28.880593775000079 ], [ -82.10991222399997, 28.880578221000064 ], [ -82.109972290999963, 28.880578172000071 ], [ -82.110028822999936, 28.880576571000063 ], [ -82.110062403999962, 28.880592092000029 ], [ -82.110094240999956, 28.880626275000054 ], [ -82.110119003999955, 28.880654244000027 ], [ -82.110172029999944, 28.880680634000043 ], [ -82.110214448999955, 28.880697703000067 ], [ -82.11038939599996, 28.880742653000027 ], [ -82.110498942999982, 28.880755004000036 ], [ -82.110648365999964, 28.880764251000073 ], [ -82.110707401999946, 28.880748612000048 ], [ -82.110763907999967, 28.880722133000063 ], [ -82.110845093999956, 28.880645873000049 ], [ -82.110903338999947, 28.880596068000045 ], [ -82.110942180999984, 28.88057271200006 ], [ -82.110993393999934, 28.880554011000072 ], [ -82.11105698199998, 28.880541519000076 ], [ -82.111106445999951, 28.880539924000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10743512099998, 28.877371295000046 ], [ -82.107433518999983, 28.879206767000028 ], [ -82.107418091999989, 28.88096119000005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.089478414999974, 28.881547281000053 ], [ -82.089409259999968, 28.881612756000038 ], [ -82.089358091999941, 28.881730108000056 ], [ -82.089337690999969, 28.881854210000029 ], [ -82.08936375899998, 28.882361825000032 ], [ -82.089354250999975, 28.883232702000043 ], [ -82.089380076999987, 28.88345604400007 ], [ -82.089372443999935, 28.883523732000072 ], [ -82.089323794999984, 28.883589192000045 ], [ -82.089270003999957, 28.883636607000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.088954225999942, 28.879654784000024 ], [ -82.088949146999937, 28.879653412000039 ], [ -82.086828860999958, 28.879642574000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103254254999968, 28.930925265000042 ], [ -82.103114185999971, 28.930926088000035 ], [ -82.102576709999937, 28.930926499000066 ], [ -82.101922166999941, 28.930925205000051 ], [ -82.101331756999969, 28.930925650000063 ], [ -82.101066006999986, 28.930930330000024 ], [ -82.09960603899998, 28.930933692000053 ], [ -82.099068564999982, 28.930938635000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064913711999964, 28.914490545000035 ], [ -82.064446110999938, 28.914565486000072 ], [ -82.064289411999937, 28.914578095000024 ], [ -82.064190145999987, 28.914586235000058 ], [ -82.064017844999967, 28.914578737000056 ], [ -82.06385242999994, 28.914559108000049 ], [ -82.063699068999938, 28.914528861000065 ], [ -82.063554318999934, 28.914492547000066 ], [ -82.063395385999968, 28.914443771000037 ], [ -82.063270710999973, 28.914409360000036 ], [ -82.063192443999981, 28.914398728000037 ], [ -82.063125246999959, 28.914395728000045 ], [ -82.063020149999943, 28.914401840000039 ], [ -82.062920216999942, 28.914398855000059 ], [ -82.062799603999963, 28.914386784000044 ], [ -82.062670369999978, 28.914365621000059 ], [ -82.062572149999937, 28.914344443000061 ], [ -82.062468756999976, 28.914317203000053 ], [ -82.062406715999941, 28.914292977000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062406715999941, 28.914292977000059 ], [ -82.062284484999964, 28.914456757000039 ], [ -82.062069253999937, 28.914687283000035 ], [ -82.06194607499998, 28.914833019000071 ], [ -82.061817876999953, 28.914979978000076 ], [ -82.061686258999941, 28.915133970000056 ], [ -82.061621586999934, 28.91519684900004 ], [ -82.061571647999983, 28.915240835000077 ], [ -82.061494029999949, 28.915293874000042 ], [ -82.061423526999988, 28.915331860000038 ], [ -82.061349456999949, 28.915362214000027 ], [ -82.061268491999954, 28.915386506000061 ], [ -82.061173740999948, 28.91540625600004 ], [ -82.061077262999959, 28.915421460000061 ], [ -82.060980777999987, 28.915421503000061 ], [ -82.060849822999955, 28.915406403000077 ], [ -82.060711967999964, 28.915374630000031 ], [ -82.060586158999968, 28.915320112000074 ], [ -82.060462061999942, 28.915242854000041 ], [ -82.060179670999958, 28.915043775000072 ], [ -82.059912437999969, 28.914843340000061 ], [ -82.059645042999989, 28.914655027000038 ], [ -82.059477761999972, 28.914545835000069 ], [ -82.059349506999979, 28.91447695200003 ], [ -82.05916591099998, 28.914391461000037 ], [ -82.058998754999948, 28.91433696100006 ], [ -82.058822297999939, 28.914295430000038 ], [ -82.058640643999979, 28.914267307000046 ], [ -82.058445638999956, 28.914246243000036 ], [ -82.058067201999961, 28.914201749000028 ], [ -82.057846372999961, 28.914176774000055 ], [ -82.057689653999944, 28.914154907000068 ], [ -82.057511745999989, 28.91414356100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058577328999945, 28.910508398000047 ], [ -82.058806097999934, 28.91083274500005 ], [ -82.058913049999944, 28.911026985000035 ], [ -82.058970062999947, 28.911133146000054 ], [ -82.059010085999944, 28.911219235000033 ], [ -82.059079105999956, 28.91140475900005 ], [ -82.05911501199995, 28.911527233000072 ], [ -82.059155082999951, 28.911704278000059 ], [ -82.05917859799996, 28.911849800000027 ], [ -82.059191383999973, 28.911985763000075 ], [ -82.059195038999974, 28.912148711000043 ], [ -82.059185410999987, 28.912320653000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063498253999967, 28.911709796000025 ], [ -82.063681612999972, 28.911912996000069 ], [ -82.063754943999982, 28.91197184400005 ], [ -82.063847396999961, 28.91203488900004 ], [ -82.06396375199995, 28.912099325000042 ], [ -82.064094440999952, 28.912151135000045 ], [ -82.064228874999969, 28.912191307000057 ], [ -82.064319141999988, 28.912212715000067 ], [ -82.064414751999948, 28.912226688000032 ], [ -82.064511798999945, 28.912230474000069 ], [ -82.064604366999959, 28.912232205000066 ], [ -82.064690404999965, 28.912226556000064 ], [ -82.064785997999934, 28.912212491000048 ], [ -82.064868841999953, 28.912195628000063 ], [ -82.064961423999989, 28.912172614000042 ], [ -82.065036115999987, 28.91214928100004 ], [ -82.065112577999969, 28.912118402000033 ], [ -82.065174701999979, 28.912090333000037 ], [ -82.06525752999994, 28.912046831000055 ], [ -82.065345130999958, 28.911993513000027 ], [ -82.065485357999989, 28.911894619000066 ], [ -82.065657297999962, 28.911784467000075 ], [ -82.065827671999955, 28.911669117000031 ], [ -82.065934838999965, 28.911611420000042 ], [ -82.066096913999957, 28.911547320000068 ], [ -82.066225951999968, 28.911509402000036 ], [ -82.066351658999963, 28.911482825000064 ], [ -82.06669111399998, 28.911448596000071 ], [ -82.066938261999951, 28.91142489200007 ], [ -82.067164368999954, 28.911403790000065 ], [ -82.067223314999978, 28.911392545000069 ], [ -82.067275886999937, 28.91137849900008 ], [ -82.067349165999985, 28.911353227000063 ], [ -82.067422435999958, 28.911318141000038 ], [ -82.067490926999938, 28.911281655000039 ], [ -82.067560506999939, 28.911225447000049 ], [ -82.067607175999967, 28.91118205600003 ], [ -82.067667682999968, 28.911117536000063 ], [ -82.067709070999967, 28.911058632000049 ], [ -82.067742492999969, 28.91099973300004 ], [ -82.067771128999937, 28.910931021000067 ], [ -82.067791801999988, 28.910869324000032 ], [ -82.06780609499998, 28.91079781600007 ], [ -82.067807333999951, 28.910709144000066 ], [ -82.06774994999995, 28.910216025000068 ], [ -82.067713114999947, 28.909924434000061 ], [ -82.067708256999936, 28.909803866000061 ], [ -82.067738418999966, 28.909630007000032 ], [ -82.067754287999946, 28.909536067000033 ], [ -82.067759020999972, 28.909461760000056 ], [ -82.067762151999943, 28.909377641000049 ], [ -82.067755719, 28.909286515000076 ], [ -82.06774451299998, 28.909202402000062 ], [ -82.067723741999941, 28.909115491000023 ], [ -82.067695002999983, 28.909022975000028 ], [ -82.067658296, 28.908930463000047 ], [ -82.067616819999955, 28.908851973000026 ], [ -82.06755302199997, 28.908751063000068 ], [ -82.067454597999983, 28.908623648000059 ], [ -82.06733776599998, 28.908505826000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06733776599998, 28.908505826000066 ], [ -82.06727284699997, 28.908458668000037 ], [ -82.067164016999982, 28.908383941000068 ], [ -82.067076352999948, 28.908333513000059 ], [ -82.066960008999956, 28.908283101000052 ], [ -82.06684047899995, 28.908231287000035 ], [ -82.066641364999953, 28.90815765900004 ], [ -82.066456392999953, 28.908075857000028 ], [ -82.066197545999955, 28.907950883000069 ], [ -82.066027755999983, 28.907861879000052 ], [ -82.065893709999955, 28.907785960000069 ], [ -82.065738808999981, 28.907694328000048 ], [ -82.065571984999963, 28.907586981000065 ], [ -82.065414101999977, 28.907484871000065 ], [ -82.065227508999953, 28.907355844000051 ], [ -82.065047693999986, 28.907254471000044 ], [ -82.064848129999973, 28.90716548100005 ], [ -82.064680855999939, 28.907106557000077 ], [ -82.064526278999949, 28.907061767000073 ], [ -82.064365648999967, 28.90702684300004 ], [ -82.064133367999943, 28.906998132000069 ], [ -82.063951719999977, 28.906987737000065 ], [ -82.063743281999962, 28.90699569700007 ], [ -82.063627156999985, 28.907006232000072 ], [ -82.06349316799998, 28.907022017000031 ], [ -82.063361574999988, 28.907041291000041 ], [ -82.063262805999955, 28.907065171000056 ], [ -82.063140143999988, 28.907098875000031 ], [ -82.062566680999964, 28.907299625000064 ], [ -82.062048972999946, 28.907486327000072 ], [ -82.061824367999975, 28.907567745000051 ], [ -82.061718784999982, 28.907615005000025 ], [ -82.061652339999966, 28.907650541000066 ], [ -82.061593760999983, 28.907685807000064 ], [ -82.061494663999952, 28.907752956000024 ], [ -82.061435743999937, 28.90780625900004 ], [ -82.061378418999936, 28.907863766000048 ], [ -82.061319951999963, 28.907932230000029 ], [ -82.061262198999941, 28.908016634000035 ], [ -82.061222404999967, 28.908082544000024 ], [ -82.061185801999954, 28.90815686600007 ], [ -82.061152394999965, 28.908246607000024 ], [ -82.061132574999988, 28.908312243000069 ], [ -82.061079100999962, 28.908527124000045 ], [ -82.060974336999948, 28.908915429000047 ], [ -82.060931416999949, 28.90908648900006 ], [ -82.060913942999946, 28.909176222000042 ], [ -82.060907616999941, 28.909257540000056 ], [ -82.060918851999986, 28.909397733000048 ], [ -82.060939721999944, 28.909512379000034 ], [ -82.060955598999954, 28.909568758000034 ], [ -82.060990702999959, 28.909657065000033 ], [ -82.061033774999942, 28.909743967000054 ], [ -82.061064075, 28.909791622000057 ], [ -82.061108723999951, 28.909853287000033 ], [ -82.061159748999955, 28.909917756000027 ], [ -82.061207580999962, 28.909972411000069 ], [ -82.061263375999943, 28.910022857000058 ], [ -82.061344674999987, 28.910087309000062 ], [ -82.061452282999937, 28.910154094000063 ], [ -82.061833990999958, 28.910363275000066 ], [ -82.062378685999988, 28.910654124000075 ], [ -82.062694667999949, 28.91082272400007 ], [ -82.062779149999983, 28.910881567000047 ], [ -82.062854074999962, 28.910943219000046 ], [ -82.062957712999946, 28.91105953400006 ], [ -82.063066889999959, 28.911185701000079 ], [ -82.063498253999967, 28.911709796000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070277297999951, 28.908263238000075 ], [ -82.070277026999975, 28.909103604000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070274238999957, 28.908142712000028 ], [ -82.069577440999979, 28.908145693000051 ], [ -82.069270772999971, 28.908208737000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069270772999971, 28.908208737000052 ], [ -82.069586453999989, 28.90826359700003 ], [ -82.070277297999951, 28.908263238000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069270772999971, 28.908208737000052 ], [ -82.069178462999957, 28.908208785000056 ], [ -82.068382785999972, 28.908215091000045 ], [ -82.067999270999962, 28.908219866000024 ], [ -82.067877712999973, 28.908222356000067 ], [ -82.067802833999963, 28.908232208000072 ], [ -82.067745482999953, 28.908243452000079 ], [ -82.067683358999943, 28.908268718000045 ], [ -82.067622831999984, 28.908295387000067 ], [ -82.067549564999979, 28.908334680000053 ], [ -82.067472319, 28.908395682000048 ], [ -82.06733776599998, 28.908505826000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035140278999961, 28.932326071000034 ], [ -82.035140321999961, 28.932326241000055 ], [ -82.035294771999986, 28.932936586000039 ], [ -82.035454967999954, 28.933588459000077 ], [ -82.035656633999963, 28.934418925000045 ], [ -82.035698599999989, 28.934582452000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032893021999939, 28.927497324000058 ], [ -82.032857907999983, 28.92845675500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034281332999967, 28.927504240000076 ], [ -82.03471226299996, 28.927504130000045 ], [ -82.035077052999952, 28.927506188000052 ], [ -82.035578946999976, 28.927506057000073 ], [ -82.035973741999953, 28.927507385000069 ], [ -82.036119092999968, 28.927491717000066 ], [ -82.036282208999978, 28.92747604300007 ], [ -82.036286037999957, 28.927476074000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03524852399994, 28.925178555000059 ], [ -82.03526915599997, 28.92660423500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956695379999985, 28.868944531000068 ], [ -81.956806635999953, 28.868971588000079 ], [ -81.95713488399997, 28.868995612000049 ], [ -81.957202801999983, 28.869006032000073 ], [ -81.957261857999981, 28.869026847000043 ], [ -81.957317949999947, 28.869073656000069 ], [ -81.95735336499996, 28.869128259000036 ], [ -81.95737104799997, 28.869216649000066 ], [ -81.957367975999944, 28.869507798000029 ], [ -81.957361898999977, 28.869928925000067 ], [ -81.957361745999947, 28.870303260000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956003070999941, 28.868595400000061 ], [ -81.956313415999944, 28.868751039000074 ], [ -81.956506781999963, 28.868856193000056 ], [ -81.956626225999969, 28.868916870000078 ], [ -81.956695379999985, 28.868944531000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955181719999985, 28.868494241000064 ], [ -81.955442002999973, 28.868456493000053 ], [ -81.955547067999987, 28.868450223000025 ], [ -81.955671228999961, 28.868458671000042 ], [ -81.955776279999952, 28.868486030000042 ], [ -81.955876547999935, 28.868525998000052 ], [ -81.956003070999941, 28.868595400000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955920544999969, 28.870359986000039 ], [ -81.955914420999989, 28.869941372000028 ], [ -81.955914654999958, 28.869388352000044 ], [ -81.955924144999983, 28.868904346000079 ], [ -81.955924168999957, 28.868845495000073 ], [ -81.955943306999984, 28.868761427000038 ], [ -81.956003070999941, 28.868595400000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955183309999939, 28.870356480000055 ], [ -81.95549372499994, 28.870354482000039 ], [ -81.955920544999969, 28.870359986000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959729494999976, 28.872943590000034 ], [ -81.96030951299997, 28.87229306200004 ], [ -81.960678458999951, 28.871885204000023 ], [ -81.960788143999935, 28.871763868000073 ], [ -81.960841329999937, 28.871692234000079 ], [ -81.960879557999988, 28.871639604000052 ], [ -81.960916129999987, 28.871567963000075 ], [ -81.960937746999946, 28.871515329000033 ], [ -81.960946071999956, 28.871464153000034 ], [ -81.960939444999951, 28.871414435000077 ], [ -81.960914543999934, 28.871369098000059 ], [ -81.960881335999943, 28.871326683000063 ], [ -81.960833174999948, 28.871290112000054 ], [ -81.960776701999976, 28.871269625000025 ], [ -81.960383602999968, 28.871156717000076 ], [ -81.960319917999982, 28.871139352000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960319917999982, 28.871139352000057 ], [ -81.959917522999945, 28.871032476000039 ], [ -81.959800014999985, 28.870998821000057 ], [ -81.959731907999981, 28.870992952000051 ], [ -81.959680409999976, 28.870997324000029 ], [ -81.959627242999943, 28.871017779000056 ], [ -81.959565758999986, 28.871068939000054 ], [ -81.959509253999954, 28.871130336000078 ], [ -81.959269935999941, 28.871396394000044 ], [ -81.958866085999944, 28.871846644000073 ], [ -81.958573581999985, 28.872172636000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975001469999938, 28.869540707000056 ], [ -81.975215890999948, 28.869717057000059 ], [ -81.975574700999971, 28.870026792000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979306679999979, 28.870835466000074 ], [ -81.979608170999938, 28.870835511000053 ], [ -81.979875279999987, 28.870835552000074 ], [ -81.980023380999967, 28.870840230000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980023380999967, 28.870840230000056 ], [ -81.980224367999938, 28.870868193000035 ], [ -81.980766836999976, 28.870954114000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986780108999938, 28.866027588000065 ], [ -81.987126287999956, 28.866026323000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984287736999988, 28.868368029000067 ], [ -81.984325507999984, 28.868399209000074 ], [ -81.984371110999973, 28.868406691000075 ], [ -81.984523837999973, 28.868382605000079 ], [ -81.984960458999979, 28.868296747000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985647132999986, 28.86758829200005 ], [ -81.985743424999953, 28.867573753000045 ], [ -81.985976775999973, 28.867553340000029 ], [ -81.986260095999967, 28.867556141000023 ], [ -81.986653597999975, 28.867567265000048 ], [ -81.986980990999939, 28.86758392400003 ], [ -81.987126500999977, 28.867602193000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985416417999943, 28.867614245000027 ], [ -81.985570673999973, 28.867594864000068 ], [ -81.985647132999986, 28.86758829200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985045551999974, 28.868910558000039 ], [ -81.985340693999945, 28.868844084000045 ], [ -81.985524858999952, 28.868812930000047 ], [ -81.98569013599996, 28.868783850000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991596178999941, 28.867718834000073 ], [ -81.990792834, 28.867718781000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99160345599995, 28.868237151000073 ], [ -81.991596178999941, 28.867718834000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99065485899996, 28.870665034000069 ], [ -81.990700759999982, 28.870753944000057 ], [ -81.990780324999946, 28.870904820000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990780324999946, 28.870904820000078 ], [ -81.990913737999961, 28.871163495000076 ], [ -81.991052884999988, 28.871424952000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991052884999988, 28.871424952000041 ], [ -81.991147547999958, 28.871594538000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989148738999972, 28.873255586000028 ], [ -81.989067939999984, 28.873218939000026 ], [ -81.98882300799994, 28.873094459000072 ], [ -81.988563557999953, 28.872953797000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988563557999953, 28.872953797000037 ], [ -81.988492551999968, 28.872919305000039 ], [ -81.988333250999972, 28.872842375000062 ], [ -81.988161092999974, 28.872748065000053 ], [ -81.987954509999952, 28.872618056000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987547369999959, 28.873137983000049 ], [ -81.987742304999983, 28.873241159000031 ], [ -81.988265042999956, 28.873510384000042 ], [ -81.98884226399997, 28.873803677000069 ], [ -81.989315723999937, 28.874051658000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992266073999986, 28.872128115000066 ], [ -81.992320946999939, 28.872187813000039 ], [ -81.992487508999943, 28.872348025000065 ], [ -81.992761152999947, 28.872566529000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992104959999949, 28.871908911000048 ], [ -81.992163545999972, 28.871994014000052 ], [ -81.992266073999986, 28.872128115000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988345505999973, 28.876945800000044 ], [ -81.988399130999937, 28.876914340000042 ], [ -81.988544118999982, 28.876800732000049 ], [ -81.988881765999963, 28.876491361000035 ], [ -81.989118118999954, 28.876262390000079 ], [ -81.989330637999956, 28.876047401000051 ], [ -81.989463710999985, 28.875907571000027 ], [ -81.989777525999955, 28.875542259000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987847080999984, 28.876494768000043 ], [ -81.987958306999985, 28.876395141000046 ], [ -81.988297938999949, 28.876087520000056 ], [ -81.988554153999985, 28.875839323000037 ], [ -81.988792493999938, 28.875594621000062 ], [ -81.98924931099998, 28.875099970000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986768800999982, 28.875737775000061 ], [ -81.987253424999949, 28.875307810000038 ], [ -81.987461970999959, 28.875110302000053 ], [ -81.987604977, 28.874954744000036 ], [ -81.987648671999978, 28.874907550000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986464922999971, 28.875959743000067 ], [ -81.986768800999982, 28.875737775000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985292797999989, 28.87647258800007 ], [ -81.985404003999975, 28.876533780000045 ], [ -81.985570809999956, 28.876629939000054 ], [ -81.985880817999941, 28.876799529000039 ], [ -81.986063512999976, 28.876900934000048 ], [ -81.98624025099997, 28.877004085000067 ], [ -81.986502376999965, 28.877177164000045 ], [ -81.986665209999956, 28.877296046000026 ], [ -81.986808186999951, 28.877409680000028 ], [ -81.987006762999954, 28.877582754000059 ], [ -81.987223208999978, 28.877783797000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984941202999948, 28.877033662000031 ], [ -81.984966614999962, 28.877048577000039 ], [ -81.985206214999948, 28.877180270000053 ], [ -81.985568250999961, 28.877384172000063 ], [ -81.985761565999951, 28.877493479000066 ], [ -81.985922415999937, 28.877591385000073 ], [ -81.986107094999966, 28.877717261000043 ], [ -81.986263971999961, 28.87783789100007 ], [ -81.986410920999958, 28.877956771000072 ], [ -81.986561837999943, 28.878093131000071 ], [ -81.986645239999973, 28.878173548000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986085332999949, 28.875437845000079 ], [ -81.985978106999937, 28.875329457000078 ], [ -81.985904635999987, 28.875271765000036 ], [ -81.985825204999969, 28.875221065000062 ], [ -81.985763643999974, 28.875196586000072 ], [ -81.985688182, 28.875173853000035 ], [ -81.985606786999938, 28.875158007000039 ], [ -81.985499522999987, 28.875137125000037 ], [ -81.985366469999974, 28.875100403000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985366469999974, 28.875100403000033 ], [ -81.98525725099995, 28.875053194000031 ], [ -81.985122162999971, 28.874973542000077 ], [ -81.984981234999964, 28.874867875000064 ], [ -81.984776701999976, 28.874743742000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984325419999948, 28.874294771000052 ], [ -81.984123465999971, 28.87392834700006 ], [ -81.984010244, 28.873745134000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984013890999961, 28.872591447000048 ], [ -81.984153969999966, 28.872173427000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982351243999972, 28.874151738000023 ], [ -81.982604685999945, 28.874221299000055 ], [ -81.983028820999948, 28.874339613000075 ], [ -81.983359809999968, 28.874442788000067 ], [ -81.983609159999958, 28.874542545000054 ], [ -81.983910650999974, 28.874716678000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983910650999974, 28.874716678000027 ], [ -81.98377372899995, 28.874891302000037 ], [ -81.983614930999977, 28.875100645000032 ], [ -81.98354950199996, 28.875155297000049 ], [ -81.983487395999987, 28.875179698000068 ], [ -81.983418459999939, 28.875185533000035 ], [ -81.983328826, 28.875173490000066 ], [ -81.982880617999967, 28.875005842000064 ], [ -81.982372553999937, 28.874836047000031 ], [ -81.982274616999973, 28.874784846000068 ], [ -81.982237896999948, 28.874730959000033 ], [ -81.982214814999963, 28.874654242000076 ], [ -81.982219554999972, 28.874593557000026 ], [ -81.982265490999964, 28.874439998000071 ], [ -81.982351243999972, 28.874151738000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982351243999972, 28.874151738000023 ], [ -81.982421939999938, 28.873916518000044 ], [ -81.982528869999953, 28.873537503000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982528869999953, 28.873537503000023 ], [ -81.982563415999948, 28.873360990000037 ], [ -81.982617715999936, 28.873041797000042 ], [ -81.982633039999939, 28.872917869000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978813108999987, 28.878097747000027 ], [ -81.97877320799995, 28.877876410000056 ], [ -81.978722170999959, 28.877525089000073 ], [ -81.978662359999987, 28.877072417000079 ], [ -81.978643561999945, 28.876730309000038 ], [ -81.978643624999961, 28.876421418000064 ], [ -81.978647440999964, 28.876208849000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970934974999977, 28.87446101200004 ], [ -81.970994241999961, 28.87413599000007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970994241999961, 28.87413599000007 ], [ -81.971022379999965, 28.874000104000061 ], [ -81.971162751999941, 28.873271496000029 ], [ -81.971231614999965, 28.872903699000062 ], [ -81.971273952, 28.872826885000052 ], [ -81.971350667999957, 28.872757064000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971744025999953, 28.874129166000046 ], [ -81.971738094999978, 28.874054088000037 ], [ -81.971746049999979, 28.873980761000041 ], [ -81.971829476999972, 28.873542547000056 ], [ -81.971912276999944, 28.873024959000077 ], [ -81.971924393999984, 28.872988178000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97239854999998, 28.874317862000055 ], [ -81.972420395999961, 28.874216602000047 ], [ -81.972442246999947, 28.874090899000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972442246999947, 28.874090899000066 ], [ -81.972497870999973, 28.873773150000034 ], [ -81.972563032999972, 28.87345928700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970994241999961, 28.87413599000007 ], [ -81.971059692999972, 28.874158701000056 ], [ -81.971138700999973, 28.874167739000029 ], [ -81.971293511999988, 28.874154832000045 ], [ -81.971744025999953, 28.874129166000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971744025999953, 28.874129166000046 ], [ -81.971827336999979, 28.874123945000065 ], [ -81.972228021999967, 28.874094347000039 ], [ -81.972442246999947, 28.874090899000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972563032999972, 28.87345928700006 ], [ -81.972720710999965, 28.873592044000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971924393999984, 28.872988178000071 ], [ -81.972044086999972, 28.873040456000069 ], [ -81.972219805999941, 28.873167004000038 ], [ -81.972563032999972, 28.87345928700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971350667999957, 28.872757064000041 ], [ -81.971453795999935, 28.872812956000075 ], [ -81.971657274999984, 28.87289873900005 ], [ -81.971924393999984, 28.872988178000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971924393999984, 28.872988178000071 ], [ -81.972001243999955, 28.872829366000076 ], [ -81.972062104999964, 28.872710656000038 ], [ -81.972204960999989, 28.872552387000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974093223999944, 28.878942838000057 ], [ -81.974391153999989, 28.878956966000032 ], [ -81.974630248999972, 28.879028353000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968525056999965, 28.883633576000079 ], [ -81.968707421999966, 28.883786944000065 ], [ -81.969056337999973, 28.884083705000023 ], [ -81.969380844999989, 28.884369459000027 ], [ -81.969689149999965, 28.884633551000036 ], [ -81.969957031999968, 28.884887320000075 ], [ -81.970326043999989, 28.885276215000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975973008999972, 28.881515110000066 ], [ -81.976192009999977, 28.881540305000044 ], [ -81.976463610999986, 28.881560857000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974984547999952, 28.881563478000032 ], [ -81.975311464999947, 28.881561660000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97705493999996, 28.885800613000072 ], [ -81.976952780999966, 28.885757510000076 ], [ -81.97684572999998, 28.885693266000033 ], [ -81.97673783099998, 28.885622593000051 ], [ -81.976642065999954, 28.885547644000042 ], [ -81.976556941999945, 28.885472697000068 ], [ -81.976493101999949, 28.885403372000042 ], [ -81.976425006999989, 28.885324681000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976425006999989, 28.885324681000043 ], [ -81.976352682999959, 28.885127970000042 ], [ -81.976294608999979, 28.884915398000032 ], [ -81.97626547699997, 28.884858196000039 ], [ -81.976222917999962, 28.884807609000063 ], [ -81.976171839999949, 28.884781374000056 ], [ -81.976118631999952, 28.884764504000032 ], [ -81.976065421999976, 28.884755129000041 ], [ -81.975793687999953, 28.884779861000027 ], [ -81.975338626999985, 28.884808655000029 ], [ -81.975082043999976, 28.884820516000048 ], [ -81.974988390999954, 28.884816752000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974988390999954, 28.884816752000063 ], [ -81.974790449999944, 28.884777375000056 ], [ -81.974681902999976, 28.884753001000036 ], [ -81.974569343999974, 28.884742164000045 ], [ -81.974475441999971, 28.884743596000078 ], [ -81.974425631999964, 28.884753006000039 ], [ -81.97437539799995, 28.884766057000036 ], [ -81.974297856999954, 28.884805023000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976906238999959, 28.886146043000053 ], [ -81.97705493999996, 28.885800613000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971066545999975, 28.887715142000047 ], [ -81.971117710999977, 28.887735780000071 ], [ -81.971123373999944, 28.887738188000071 ], [ -81.971433291999972, 28.88786854500006 ], [ -81.971696344999941, 28.887976547000051 ], [ -81.971747706999963, 28.887987903000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971747706999963, 28.887987903000067 ], [ -81.971906678999972, 28.888023001000079 ], [ -81.972253936999948, 28.888029262000032 ], [ -81.973011348999989, 28.888013945000068 ], [ -81.973887901999944, 28.887989366000056 ], [ -81.974767860999975, 28.887969041000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970917758999974, 28.888278907000029 ], [ -81.970917765999957, 28.888254156000073 ], [ -81.970917775999965, 28.888218059000053 ], [ -81.970917793999945, 28.888152397000056 ], [ -81.970921333999968, 28.888069202000054 ], [ -81.970931900999972, 28.887991854000063 ], [ -81.970966888999953, 28.887890104000064 ], [ -81.971066545999975, 28.887715142000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971620345999952, 28.889338875000078 ], [ -81.97249450299995, 28.889320004000069 ], [ -81.973278530999949, 28.889297993000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973278530999949, 28.889297993000071 ], [ -81.97366582099994, 28.889289757000029 ], [ -81.974386871999968, 28.889276040000027 ], [ -81.974504368999987, 28.88929343600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973025231999941, 28.890160097000035 ], [ -81.97309613799996, 28.889927340000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97309613799996, 28.889927340000042 ], [ -81.973278530999949, 28.889297993000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971584752999945, 28.889958204000038 ], [ -81.971648515999959, 28.889958218000061 ], [ -81.972335722999958, 28.889941734000047 ], [ -81.97309613799996, 28.889927340000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971230521999985, 28.889968521000071 ], [ -81.971584752999945, 28.889958204000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969786952999982, 28.891898805000039 ], [ -81.969811753999977, 28.891780438000069 ], [ -81.969820771999935, 28.891669963000027 ], [ -81.969824703999961, 28.891518636000058 ], [ -81.969836537999981, 28.891425114000072 ], [ -81.969857823999973, 28.891314968000074 ], [ -81.969945527999982, 28.890926476000061 ], [ -81.969968967999989, 28.890787102000047 ], [ -81.969983150999951, 28.890741381000055 ], [ -81.97002095299996, 28.890685276000056 ], [ -81.970075279999946, 28.890641643000038 ], [ -81.970139047999965, 28.890620874000035 ], [ -81.970221400999947, 28.890613699000028 ], [ -81.970599551999953, 28.890608505000046 ], [ -81.970729621999965, 28.890605854000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970632698999964, 28.891245854000033 ], [ -81.970976308, 28.891235653000024 ], [ -81.971348388999957, 28.891223461000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971344110999951, 28.89186770200007 ], [ -81.971611694999979, 28.891859508000039 ], [ -81.972065705999967, 28.891842454000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972065705999967, 28.891842454000027 ], [ -81.972276654999973, 28.891837061000047 ], [ -81.972599856999977, 28.89182967000005 ], [ -81.972766904999958, 28.891831834000072 ], [ -81.972858899999949, 28.891845702000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970621214999937, 28.892539921000036 ], [ -81.970624156999975, 28.891963675000056 ], [ -81.970625989999974, 28.891375032000042 ], [ -81.970632698999964, 28.891245854000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970632698999964, 28.891245854000033 ], [ -81.970647737999968, 28.891147506000038 ], [ -81.970687832999943, 28.89092438800003 ], [ -81.970721236999964, 28.890767326000059 ], [ -81.970729621999965, 28.890605854000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980000536999967, 28.887246656000059 ], [ -81.980055310999944, 28.88724682700007 ], [ -81.980139683999937, 28.887246840000046 ], [ -81.980308234999939, 28.887246865000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980308234999939, 28.887246865000066 ], [ -81.980315265999934, 28.887246866000055 ], [ -81.980503113999987, 28.887249410000038 ], [ -81.980646272999934, 28.887249431000043 ], [ -81.980772677999937, 28.887246768000068 ], [ -81.980880811999953, 28.887232039000025 ], [ -81.980970670999966, 28.887205245000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980970670999966, 28.887205245000075 ], [ -81.981057484999951, 28.887175769000066 ], [ -81.98123518999995, 28.887098484000035 ], [ -81.981452972999989, 28.887006037000049 ], [ -81.981621537999956, 28.886928710000063 ], [ -81.981790083999954, 28.886866249000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981790083999954, 28.886866249000036 ], [ -81.981948109999962, 28.886823559000049 ], [ -81.982155336999938, 28.886777176000066 ], [ -81.98236256499996, 28.886734231000048 ], [ -81.982482095999956, 28.886712932000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982482095999956, 28.886712932000023 ], [ -81.982520571999942, 28.886706405000041 ], [ -81.982682094999973, 28.886681674000044 ], [ -81.982827250999947, 28.886665332000064 ], [ -81.982988685999942, 28.886649268000042 ], [ -81.983176010999955, 28.886642590000065 ], [ -81.983345752999981, 28.886638442000049 ], [ -81.983418161999964, 28.886635918000025 ], [ -81.983491265999987, 28.886623864000057 ], [ -81.983570462999978, 28.886606449000055 ], [ -81.983645089999982, 28.886580992000063 ], [ -81.983699921999971, 28.886551510000061 ], [ -81.983756275999951, 28.88651666800007 ], [ -81.983872528999939, 28.88641608100005 ], [ -81.983970976999956, 28.886323272000027 ], [ -81.98403197, 28.886267395000061 ], [ -81.98409746599998, 28.886203066000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988543340999968, 28.891109824000068 ], [ -81.988548157999958, 28.891110003000051 ], [ -81.988815802999966, 28.891116378000049 ], [ -81.989069125999947, 28.891129118000038 ], [ -81.989293344999965, 28.891154577000066 ], [ -81.989553885999953, 28.891230915000051 ], [ -81.989836106999974, 28.891345759000046 ], [ -81.990291948999982, 28.891587812000068 ], [ -81.990559714999961, 28.891721562000043 ], [ -81.990740759999937, 28.891855305000036 ], [ -81.990853640999944, 28.89198560400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989355838999984, 28.893061165000063 ], [ -81.989840862999984, 28.892692713000031 ], [ -81.990064902999961, 28.892521842000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988543340999968, 28.891109824000068 ], [ -81.988548047999984, 28.890931403000025 ], [ -81.988511956999957, 28.890549462000024 ], [ -81.988519192999945, 28.890453892000039 ], [ -81.988577013999986, 28.89038376600007 ], [ -81.988663934999977, 28.890326707000042 ], [ -81.988844796999956, 28.890313658000025 ], [ -81.989083662999974, 28.890326741000024 ], [ -81.989365888999941, 28.890345672000024 ], [ -81.989698694999959, 28.890422017000049 ], [ -81.989944783999988, 28.890492166000058 ], [ -81.990451402999952, 28.890740755000024 ], [ -81.990950604999966, 28.890995528000076 ], [ -81.991435548999959, 28.891256487000078 ], [ -81.991616402999966, 28.891345882000053 ], [ -81.991619527999944, 28.891346226000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987981997999952, 28.887790250000023 ], [ -81.98816912999996, 28.887553058000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98816912999996, 28.887553058000037 ], [ -81.988555502999986, 28.887063208000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989844817999938, 28.888123867000047 ], [ -81.990054243999964, 28.887550805000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98827427599997, 28.886935298000026 ], [ -81.988555502999986, 28.887063208000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988555502999986, 28.887063208000029 ], [ -81.988838096999984, 28.887192149000043 ], [ -81.989109759999963, 28.887299774000041 ], [ -81.989286508999953, 28.887341728000024 ], [ -81.989986278999936, 28.887533267000038 ], [ -81.990054243999964, 28.887550805000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990054243999964, 28.887550805000046 ], [ -81.990380204999951, 28.887634710000043 ], [ -81.990725227999974, 28.887710008000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991857782999944, 28.889219971000045 ], [ -81.99201170799995, 28.888954583000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99201170799995, 28.888954583000043 ], [ -81.992030070999988, 28.888922956000044 ], [ -81.992078130999971, 28.888753133000023 ], [ -81.992112714999962, 28.888541022000027 ], [ -81.992147113999977, 28.888231968000071 ], [ -81.99217134099996, 28.888099271000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99217134099996, 28.888099271000044 ], [ -81.992202212999985, 28.887929103000033 ], [ -81.992305598999963, 28.887482330000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992639412999949, 28.88929495900004 ], [ -81.992726911999966, 28.889098972000056 ], [ -81.992763564999962, 28.889000203000023 ], [ -81.992786474999946, 28.888919574000056 ], [ -81.992804802999956, 28.888838947000067 ], [ -81.992813969999986, 28.88876033400004 ], [ -81.992828719999977, 28.888565471000049 ], [ -81.992835573999969, 28.888309701000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993225717999962, 28.88960164100007 ], [ -81.99324173399998, 28.889601642000059 ], [ -81.993331391999959, 28.889456228000029 ], [ -81.993388823999965, 28.889324768000051 ], [ -81.993452966999939, 28.889133276000052 ], [ -81.99348503799996, 28.889024428000027 ], [ -81.993505658999936, 28.888913563000074 ], [ -81.993521700999963, 28.888782542000058 ], [ -81.993535460999965, 28.888498324000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989510450999944, 28.884209923000071 ], [ -81.989531005999936, 28.884221516000025 ], [ -81.989724687999967, 28.884309635000079 ], [ -81.99009848299994, 28.884438236000051 ], [ -81.990365646999976, 28.88454482700007 ], [ -81.990760726999952, 28.884729463000042 ], [ -81.991163229999984, 28.884927162000054 ], [ -81.991334504999941, 28.884999368000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990166313999964, 28.883786780000037 ], [ -81.990166313999964, 28.883792625000069 ], [ -81.990376252999965, 28.883896117000063 ], [ -81.990703956999937, 28.884024369000031 ], [ -81.99101720799996, 28.884171872000024 ], [ -81.991334169999959, 28.884328656000037 ], [ -81.991526534999934, 28.88440704900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993887920999953, 28.884656073000031 ], [ -81.99387386899997, 28.88448315100004 ], [ -81.993892621999976, 28.884396520000053 ], [ -81.993924460999949, 28.884309890000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993924460999949, 28.884309890000054 ], [ -81.994000249999942, 28.884103626000069 ], [ -81.994169021999937, 28.883567681000045 ], [ -81.994239344999983, 28.883295412000052 ], [ -81.994323537999946, 28.882940980000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958968201999937, 28.882442983000033 ], [ -81.959536272999969, 28.882445681000036 ], [ -81.960001056999943, 28.882458445000054 ], [ -81.960245138999937, 28.882475260000035 ], [ -81.960978065999939, 28.882552825000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960978065999939, 28.882552825000062 ], [ -81.960976498999969, 28.882562794000023 ], [ -81.960929738999937, 28.882784518000051 ], [ -81.960894507999967, 28.882990431000053 ], [ -81.960844037999948, 28.883212154000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960844037999948, 28.883212154000034 ], [ -81.960841690999985, 28.883222123000053 ], [ -81.960788892999972, 28.883397090000074 ], [ -81.960748019999983, 28.88354662200004 ], [ -81.960683496999934, 28.883742214000051 ], [ -81.960646355999984, 28.883833648000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960646355999984, 28.883833648000063 ], [ -81.960625048999987, 28.883886583000049 ], [ -81.960578125999973, 28.884020299000042 ], [ -81.960507743999983, 28.884210732000042 ], [ -81.960419981999962, 28.884401503000049 ], [ -81.960403171999985, 28.88444172100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960403171999985, 28.88444172100003 ], [ -81.960355473999982, 28.884555842000054 ], [ -81.960261847999959, 28.884756580000044 ], [ -81.960173901999951, 28.884911254000031 ], [ -81.960088885999937, 28.885055076000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960088885999937, 28.885055076000071 ], [ -81.960009930999945, 28.885204793000071 ], [ -81.959933903999968, 28.885343658000068 ], [ -81.959840292999957, 28.885503487000051 ], [ -81.959764068999959, 28.885647508000034 ], [ -81.959736002999989, 28.885698019000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994000318999952, 28.882895587000064 ], [ -81.99399563299994, 28.882895587000064 ], [ -81.994323537999946, 28.882940980000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994323537999946, 28.882940980000058 ], [ -81.994557894999957, 28.882973648000075 ], [ -81.995018018999986, 28.883035546000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995018018999986, 28.883035546000031 ], [ -81.995204527999988, 28.883060304000026 ], [ -81.995471695999981, 28.883097442000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990287511999952, 28.888888464000047 ], [ -81.990477802999976, 28.888419530000078 ], [ -81.990590055999974, 28.888161524000054 ], [ -81.990665657999955, 28.887937783000041 ], [ -81.990693531999966, 28.887851965000038 ], [ -81.990725227999974, 28.887710008000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99115313599998, 28.886492387000033 ], [ -81.991385970999943, 28.886141748000057 ], [ -81.991703374999986, 28.885728202000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992636036999954, 28.879004629000065 ], [ -81.992593667999984, 28.87889255500005 ], [ -81.992421260999947, 28.878393378000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989958367999975, 28.877195491000066 ], [ -81.989935905999971, 28.877219898000078 ], [ -81.989495098999953, 28.877627585000027 ], [ -81.989460919999942, 28.877656460000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99023854099994, 28.879980809000074 ], [ -81.990761561999989, 28.879705479000052 ], [ -81.990849447999949, 28.879668013000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990849447999949, 28.879668013000071 ], [ -81.991442573999961, 28.879415718000075 ], [ -81.991507609999985, 28.879387189000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99115476299994, 28.878820962000077 ], [ -81.991685655999959, 28.878605611000069 ], [ -81.991776982999966, 28.878570043000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991776982999966, 28.878570043000025 ], [ -81.992037954999944, 28.87849959700003 ], [ -81.992421260999947, 28.878393378000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992421260999947, 28.878393378000055 ], [ -81.992518906999976, 28.878370351000058 ], [ -81.992704218999961, 28.878319693000037 ], [ -81.992822869999941, 28.878279533000068 ], [ -81.992998105999959, 28.878218493000077 ], [ -81.993344225999977, 28.878068899000027 ], [ -81.993595008999989, 28.877938970000059 ], [ -81.993689930999949, 28.877871497000058 ], [ -81.993770364999989, 28.877810399000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991563753999969, 28.878207343000042 ], [ -81.99157097899996, 28.878207343000042 ], [ -81.991978363999976, 28.878084639000065 ], [ -81.992424807999953, 28.877961592000077 ], [ -81.992709350999974, 28.877878413000076 ], [ -81.992887849999988, 28.877804510000033 ], [ -81.993021042999942, 28.87772166600007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993261821999965, 28.877937228000064 ], [ -81.993256159999987, 28.877937228000064 ], [ -81.993021042999942, 28.87772166600007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993021042999942, 28.87772166600007 ], [ -81.992434237999987, 28.877183964000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996822885999961, 28.880874679000044 ], [ -81.997189495999976, 28.880813320000073 ], [ -81.997416657999963, 28.880775713000048 ], [ -81.997589841999968, 28.880730186000051 ], [ -81.997767523999983, 28.880654966000066 ], [ -81.997938459999943, 28.880559948000041 ], [ -81.998104895999973, 28.880425340000045 ], [ -81.998291574999939, 28.880243223000036 ], [ -81.998505243999944, 28.880041309000035 ], [ -81.998815625999953, 28.879730519000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998815625999953, 28.879730519000077 ], [ -81.999063028999956, 28.879489013000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996633977999977, 28.880316435000054 ], [ -81.996885879, 28.880268932000035 ], [ -81.997092799999962, 28.880229345000032 ], [ -81.997205255999972, 28.88020163300007 ], [ -81.997362693999946, 28.880150167000068 ], [ -81.997520134999945, 28.880067029000031 ], [ -81.997641587999965, 28.879991807000067 ], [ -81.997790032999944, 28.879857199000071 ], [ -81.998023942999964, 28.87963153100003 ], [ -81.998275846999945, 28.879374191000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995365204999985, 28.883996080000031 ], [ -81.995729679999954, 28.884073633000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00631144, 28.878490673000044 ], [ -82.006914937999966, 28.878382326000064 ], [ -82.006978849999939, 28.878370031000031 ], [ -82.007053238999958, 28.878353627000024 ], [ -82.007126976999984, 28.878335090000064 ], [ -82.007199985999989, 28.878314438000075 ], [ -82.007272188999934, 28.87829169500003 ], [ -82.007343507999963, 28.878266883000038 ], [ -82.007413865999979, 28.878240032000065 ], [ -82.007483187999981, 28.878211170000043 ], [ -82.007545611999944, 28.878183040000067 ], [ -82.007648037999957, 28.878136316000052 ], [ -82.007755918999976, 28.878089534000026 ], [ -82.007864881999978, 28.878044737000039 ], [ -82.007974881999985, 28.878001944000061 ], [ -82.008228025999983, 28.877909714000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003852290999987, 28.877933416000076 ], [ -82.004564033999941, 28.876968120000072 ], [ -82.004612204999944, 28.876934204000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004612204999944, 28.876934204000065 ], [ -82.004713532999972, 28.877008351000029 ], [ -82.005061269999942, 28.877273043000059 ], [ -82.005109211999979, 28.877327684000079 ], [ -82.005132755999966, 28.877377128000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001358813999957, 28.875849511000069 ], [ -82.001423760999955, 28.87578368100003 ], [ -82.001443440999935, 28.875749034000023 ], [ -82.001458037999953, 28.875690262000035 ], [ -82.001513303999957, 28.87546320000007 ], [ -82.001559985999961, 28.875223309000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001559985999961, 28.875223309000035 ], [ -82.001587918999974, 28.875054644000045 ], [ -82.001596207999967, 28.874945041000046 ], [ -82.001589858999978, 28.874701770000058 ], [ -82.001588451999964, 28.874602172000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001588451999964, 28.874602172000039 ], [ -82.001585040999942, 28.874360815000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999890562999951, 28.874967334000075 ], [ -82.001048497999989, 28.87514722700007 ], [ -82.001559985999961, 28.875223309000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998833540999954, 28.875614277000068 ], [ -81.998947935999979, 28.875489708000032 ], [ -81.999006508999969, 28.875365614000032 ], [ -81.999159081999949, 28.874876480000069 ], [ -81.999383187999968, 28.874169574000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999383187999968, 28.874169574000064 ], [ -81.999546663, 28.873771477000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998286270999984, 28.875256124000032 ], [ -81.998305792999986, 28.875202090000073 ], [ -81.99850721699994, 28.874556360000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99850721699994, 28.874556360000042 ], [ -81.998636764999958, 28.87414461000003 ], [ -81.998648030999959, 28.874118247000069 ], [ -81.998667386999955, 28.874092344000076 ], [ -81.998677008999948, 28.874083160000055 ], [ -81.99871597899994, 28.87405405100003 ], [ -81.998761380999952, 28.874029562000032 ], [ -81.99879445299996, 28.874016636000079 ], [ -81.998810412999944, 28.874012016000052 ], [ -81.998848678999934, 28.87400649500006 ], [ -81.998887396999976, 28.87400834400006 ], [ -81.998924760999955, 28.874017475000073 ], [ -81.998929312999962, 28.874019136000072 ], [ -81.999139398999944, 28.874098772000025 ], [ -81.999383187999968, 28.874169574000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997714684999949, 28.874374899000031 ], [ -81.99850721699994, 28.874556360000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998833540999954, 28.875614277000068 ], [ -81.998942421999971, 28.875701418000062 ], [ -81.999050583999974, 28.875795696000068 ], [ -81.999140494999949, 28.87588355400004 ], [ -81.999204322999958, 28.875952215000041 ], [ -81.999211801999934, 28.87596243400003 ], [ -81.99926265199997, 28.876024040000061 ], [ -81.999320018999981, 28.876081036000073 ], [ -81.999364310999965, 28.876118331000043 ], [ -81.999370248999981, 28.876122405000046 ], [ -81.999424098999953, 28.876154076000034 ], [ -81.999482183999987, 28.876179289000049 ], [ -81.999543510999956, 28.876197613000045 ], [ -81.999607030999982, 28.876208734000045 ], [ -81.999625039999955, 28.876210526000079 ], [ -81.999756328999979, 28.876230480000061 ], [ -81.999887935999936, 28.876250483000035 ], [ -81.999911632999954, 28.876255316000027 ], [ -81.999953897999944, 28.876269726000032 ], [ -81.999992433999978, 28.876290728000072 ], [ -82.000002712999958, 28.876297950000037 ], [ -82.000016743999936, 28.87630929200003 ], [ -82.000044611999954, 28.876339181000048 ], [ -82.00006458699994, 28.87637174200006 ], [ -82.000067462999937, 28.87637797900004 ], [ -82.000079693999965, 28.876415818000055 ], [ -82.00008381899994, 28.876454992000049 ], [ -82.000079987999982, 28.876492754000026 ], [ -82.000032292999947, 28.876726004000034 ], [ -82.000020285999938, 28.87675312500005 ], [ -82.000012425999955, 28.876771849000079 ], [ -82.000011003999987, 28.876775156000065 ], [ -81.999994986, 28.876800801000059 ], [ -81.999972225999954, 28.876822136000044 ], [ -81.999963867999952, 28.876827744000025 ], [ -81.999951580999948, 28.876835246000041 ], [ -81.999901751999971, 28.876863971000034 ], [ -81.999897312999963, 28.876866319000044 ], [ -81.999873863999937, 28.876875943000073 ], [ -81.999848873999952, 28.876881836000052 ], [ -81.999823099999958, 28.876883822000025 ], [ -81.999798791999979, 28.876882057000046 ], [ -81.999394344999985, 28.876822960000027 ], [ -81.999280705, 28.876803176000067 ], [ -81.999186618999943, 28.876777867000044 ], [ -81.999078902999941, 28.876736639000057 ], [ -81.998959875999958, 28.876672434000056 ], [ -81.998897388999978, 28.876629133000051 ], [ -81.998826704999942, 28.876569931000063 ], [ -81.998744318999968, 28.876482249000048 ], [ -81.998682551999934, 28.876403184000026 ], [ -81.99860962799994, 28.876319192000039 ], [ -81.998529706999989, 28.876239135000048 ], [ -81.998410497999942, 28.876137830000062 ], [ -81.998060337999959, 28.875858982000068 ], [ -81.998045881999985, 28.875845521000031 ], [ -81.998017573999959, 28.875811225000064 ], [ -81.997996676999946, 28.875773030000062 ], [ -81.997983864999981, 28.875732166000034 ], [ -81.997981222999954, 28.875716313000055 ], [ -81.99797995299997, 28.875696314000038 ], [ -81.997984125999949, 28.875660216000028 ], [ -81.997996465999961, 28.875625594000041 ], [ -81.99801647299995, 28.875593869000056 ], [ -81.99802090299994, 28.875588483000058 ], [ -81.998064199999988, 28.875537843000075 ], [ -81.998198584999955, 28.875383862000035 ], [ -81.998234223999987, 28.875341887000047 ], [ -81.998265038999989, 28.875296912000067 ], [ -81.998286270999984, 28.875256124000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998286270999984, 28.875256124000032 ], [ -81.998355661999938, 28.875274687000058 ], [ -81.998406840999962, 28.875294103000044 ], [ -81.998465051999972, 28.875324988000045 ], [ -81.998504972999967, 28.875352763000024 ], [ -81.998625157999982, 28.875448336000034 ], [ -81.998833540999954, 28.875614277000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997252841999966, 28.873023491000026 ], [ -81.997055914999976, 28.873212952000074 ], [ -81.99697654199997, 28.873287516000062 ], [ -81.99670133099994, 28.873512121000033 ], [ -81.996452227999953, 28.873710915000061 ], [ -81.996438828999942, 28.873722314000076 ], [ -81.996411963999947, 28.873752381000031 ], [ -81.99639204999994, 28.873786381000059 ], [ -81.996379803999957, 28.873823083000048 ], [ -81.996375671999942, 28.873861161000036 ], [ -81.996379801999979, 28.873899240000071 ], [ -81.996392044999936, 28.873935944000038 ], [ -81.996411956999964, 28.873969943000077 ], [ -81.996429047999982, 28.873990391000063 ], [ -81.996574718999966, 28.874143421000042 ], [ -81.996750131999988, 28.874334073000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997827314999938, 28.873419953000052 ], [ -81.997954852999953, 28.873544245000062 ], [ -81.998041289999946, 28.873627117000069 ], [ -81.998156240999947, 28.87370820700005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997252841999966, 28.873023491000026 ], [ -81.997505186999945, 28.873201589000075 ], [ -81.997827314999938, 28.873419953000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996698377999962, 28.872614503000079 ], [ -81.99717388199997, 28.872967763000077 ], [ -81.997252841999966, 28.873023491000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996157614999959, 28.872186907000071 ], [ -81.996698377999962, 28.872614503000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995458688999975, 28.871813756000051 ], [ -81.995356042999958, 28.871898775000034 ], [ -81.995181680999963, 28.87200493000006 ], [ -81.995140799999945, 28.872033413000054 ], [ -81.995085075999953, 28.872075814000027 ], [ -81.994895296999971, 28.872253367000042 ], [ -81.994876661999967, 28.87227501600006 ], [ -81.994864275999987, 28.872301336000078 ], [ -81.994863183999939, 28.872305202000064 ], [ -81.994857446999958, 28.872332072000063 ], [ -81.994853261999936, 28.872382371000072 ], [ -81.994857442999944, 28.87243267100007 ], [ -81.994858030999978, 28.872436073000074 ], [ -81.994860797999934, 28.872447568000041 ], [ -81.994873419999976, 28.872474390000036 ], [ -81.994888748999983, 28.872493009000038 ], [ -81.995212279999976, 28.87281078500007 ], [ -81.99530705799998, 28.872902899000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99530705799998, 28.872902899000053 ], [ -81.995629977999954, 28.873216735000028 ], [ -81.99564571999997, 28.873229393000031 ], [ -81.995692242999951, 28.873260049000066 ], [ -81.995719423999958, 28.873274148000064 ], [ -81.995751612999982, 28.873286261000032 ], [ -81.995791531999942, 28.873293730000057 ], [ -81.99583234399995, 28.873293731000047 ], [ -81.995872262999967, 28.873286265000047 ], [ -81.99590954599995, 28.873271654000064 ], [ -81.995922538999935, 28.873264437000046 ], [ -81.995959558999971, 28.873240482000028 ], [ -81.995998636999957, 28.873211466000043 ], [ -81.996214744999975, 28.87303918200007 ], [ -81.996463686999959, 28.872836315000029 ], [ -81.996698377999962, 28.872614503000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99530705799998, 28.872902899000053 ], [ -81.995707492999941, 28.872582718000046 ], [ -81.995900871999936, 28.872428555000056 ], [ -81.995957402999977, 28.872379304000049 ], [ -81.996157614999959, 28.872186907000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996157614999959, 28.872186907000071 ], [ -81.996489796999981, 28.871867406000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005160567999951, 28.886977209000065 ], [ -82.005496089999951, 28.887022067000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005496089999951, 28.887022067000032 ], [ -82.006163083999979, 28.887111241000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006163083999979, 28.887111241000071 ], [ -82.006539825999937, 28.887161315000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005466315999968, 28.885326976000044 ], [ -82.006083671999988, 28.885043417000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006083671999988, 28.885043417000077 ], [ -82.006393997999965, 28.884895824000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003406094999946, 28.887281739000059 ], [ -82.003194758999939, 28.886664716000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001012192999951, 28.889598417000059 ], [ -82.001383750999935, 28.889598414000034 ], [ -82.00157760899998, 28.889619738000079 ], [ -82.001772615999982, 28.889663078000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001772615999982, 28.889663078000069 ], [ -82.00216033099997, 28.889753709000047 ], [ -82.002402653, 28.889801688000034 ], [ -82.002566219999949, 28.889812348000078 ], [ -82.002723727999978, 28.889812345000053 ], [ -82.003229574999978, 28.889815 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957417579999969, 28.903724561000047 ], [ -81.957609950999938, 28.90369279500004 ], [ -81.957903370999986, 28.903641321000066 ], [ -81.957999283999982, 28.903636882000058 ], [ -81.958211096999946, 28.903635627000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957098129999963, 28.903777202000072 ], [ -81.957417579999969, 28.903724561000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957088330999966, 28.901956896000058 ], [ -81.957402782999964, 28.902050847000055 ], [ -81.95744340899995, 28.902060142000039 ], [ -81.957452392999983, 28.902062207000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954130221999947, 28.903802971000061 ], [ -81.955123309999976, 28.903793828000062 ], [ -81.956703939999954, 28.903772264000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954128668999942, 28.903167947000043 ], [ -81.955472560999965, 28.903157025000041 ], [ -81.956704756999954, 28.903144158000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956708753999976, 28.904412724000053 ], [ -81.956703939999954, 28.903772264000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956703939999954, 28.903772264000054 ], [ -81.956703581999989, 28.903692507000073 ], [ -81.956704756999954, 28.903144158000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956704756999954, 28.903144158000032 ], [ -81.956702867, 28.902511030000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956702867, 28.902511030000028 ], [ -81.956705055999976, 28.902423832000068 ], [ -81.956707379999955, 28.902016281000044 ], [ -81.956696632999979, 28.90195751400006 ], [ -81.956679419999944, 28.901908224000067 ], [ -81.956647129999965, 28.901855137000041 ], [ -81.956614835999972, 28.901811528000053 ], [ -81.956539468999949, 28.90174515800004 ], [ -81.956442556999946, 28.901684467000052 ], [ -81.956179934999966, 28.90150039100007 ], [ -81.95613246399995, 28.901434149000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954002881999941, 28.895613518000062 ], [ -81.954654282999968, 28.895615802000066 ], [ -81.955315646999964, 28.895614304000048 ], [ -81.955509209999946, 28.895621243000051 ], [ -81.955643386999952, 28.895643977000077 ], [ -81.955759978999936, 28.895685613000069 ], [ -81.955899989999978, 28.895766446000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954003132999958, 28.895042846000024 ], [ -81.954502963999971, 28.895040610000024 ], [ -81.955365703999973, 28.895033335000051 ], [ -81.956029799999953, 28.895031491000054 ], [ -81.956285277999939, 28.895039481000026 ], [ -81.956329023999956, 28.895052903000078 ], [ -81.956372768999984, 28.895072169000059 ], [ -81.956415233999962, 28.895109281000032 ], [ -81.956512356999951, 28.895231726000077 ], [ -81.956597852999948, 28.895362734000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956597852999948, 28.895362734000059 ], [ -81.956846926999958, 28.895744750000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955664936999938, 28.895955104000052 ], [ -81.955746025999986, 28.895883968000078 ], [ -81.955899989999978, 28.895766446000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955899989999978, 28.895766446000039 ], [ -81.955925782999941, 28.895746515000042 ], [ -81.956168631999958, 28.895597395000038 ], [ -81.956597852999948, 28.895362734000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96515021, 28.899580967000077 ], [ -81.965446526999983, 28.899575887000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963680314999976, 28.899673399000051 ], [ -81.963961747999974, 28.899633802000039 ], [ -81.96425284999998, 28.899612016000049 ], [ -81.964557554999942, 28.899594241000045 ], [ -81.964832404999981, 28.899587760000031 ], [ -81.96510157199998, 28.899581643000033 ], [ -81.96515021, 28.899580967000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963349019999953, 28.899714906000042 ], [ -81.963680314999976, 28.899673399000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963680314999976, 28.899673399000051 ], [ -81.963645847999942, 28.899368803000073 ], [ -81.963659467999946, 28.899258376000034 ], [ -81.963687319999963, 28.899187643000062 ], [ -81.963770137999973, 28.899008176000052 ], [ -81.963803424999981, 28.898960093000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963803424999981, 28.898960093000028 ], [ -81.963963537999973, 28.898561354000037 ], [ -81.964024750999954, 28.898346165000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962554409999939, 28.897767742000042 ], [ -81.963032305999945, 28.897741535000023 ], [ -81.96338858699994, 28.897732694000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96338858699994, 28.897732694000069 ], [ -81.964094897999985, 28.897705381000037 ], [ -81.96454337299997, 28.897693468000057 ], [ -81.964915864999966, 28.897681189000025 ], [ -81.965185027999951, 28.897675416000027 ], [ -81.965702378999936, 28.897676104000027 ], [ -81.965909463999935, 28.897687915000063 ], [ -81.966052168999965, 28.897696053000061 ], [ -81.966232695999963, 28.897735817000068 ], [ -81.966359061999981, 28.89777358200007 ], [ -81.966431262999947, 28.897823249000055 ], [ -81.966467352999985, 28.897876879000023 ], [ -81.966483130999961, 28.897940433000031 ], [ -81.966478593999966, 28.898009941000055 ], [ -81.966329534999943, 28.898361417000046 ], [ -81.966300176999937, 28.898422975000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96171671899998, 28.897901711000031 ], [ -81.962300980999942, 28.897795992000056 ], [ -81.962554409999939, 28.897767742000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959764928999959, 28.898613451000074 ], [ -81.960217259999979, 28.898232336000035 ], [ -81.960299315999976, 28.898184231000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966300176999937, 28.898422975000074 ], [ -81.966033902999982, 28.898349427000028 ], [ -81.965826290999985, 28.898313629000029 ], [ -81.965492290999975, 28.898311557000056 ], [ -81.964807245999964, 28.898313712000061 ], [ -81.964356813999984, 28.898329408000052 ], [ -81.964158552999947, 28.898337262000041 ], [ -81.964024750999954, 28.898346165000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964024750999954, 28.898346165000078 ], [ -81.963924348999967, 28.898353013000076 ], [ -81.963726088999977, 28.898360867000065 ], [ -81.96363612, 28.898360896000042 ], [ -81.96359092299997, 28.898352924000051 ], [ -81.963550385999952, 28.898338634000027 ], [ -81.963520607999953, 28.898323536000078 ], [ -81.963493536999977, 28.898303671000065 ], [ -81.963465568999936, 28.898275866000063 ], [ -81.96344481899996, 28.898247267000045 ], [ -81.963424973999963, 28.898213904000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963424973999963, 28.898213904000045 ], [ -81.963412356999982, 28.898162273000025 ], [ -81.96338858699994, 28.897732694000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962914740999963, 28.899226397000064 ], [ -81.962997276999943, 28.899026911000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954002658999968, 28.891686882000045 ], [ -81.955630225999982, 28.891687428000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955969121999942, 28.889318906000028 ], [ -81.956040657999949, 28.88919551400005 ], [ -81.956156370999963, 28.88898068900005 ], [ -81.956210126999963, 28.888871730000062 ], [ -81.956280502999959, 28.888718772000061 ], [ -81.956297906999964, 28.888669960000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958606531999976, 28.905643544000043 ], [ -81.958609932999934, 28.905742151000027 ], [ -81.958613154999966, 28.907259952000061 ], [ -81.958609144999969, 28.90834099500006 ], [ -81.958609223999986, 28.908433111000079 ], [ -81.95860391399998, 28.908531506000031 ], [ -81.958588420999945, 28.908601809000061 ], [ -81.958549732999984, 28.908665302000031 ], [ -81.958511818999966, 28.908706436000045 ], [ -81.958451754999942, 28.908744652000053 ], [ -81.958392465999964, 28.908758241000044 ], [ -81.958356376999973, 28.908767303000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958356376999973, 28.908767303000047 ], [ -81.958021296999959, 28.908767199000067 ], [ -81.957036680999977, 28.90876008400005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957036680999977, 28.90876008400005 ], [ -81.955997931999946, 28.908766553000078 ], [ -81.954588026999943, 28.908747941000058 ], [ -81.953652441999964, 28.908710451000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959804599999984, 28.909684016000028 ], [ -81.959396297999945, 28.909601167000062 ], [ -81.958972141999936, 28.909443357000043 ], [ -81.958765966999977, 28.909368449000056 ], [ -81.958631464999939, 28.909314874000074 ], [ -81.958558814999947, 28.909264372000052 ], [ -81.958516754999948, 28.909230704000038 ], [ -81.958489994, 28.909200408000061 ], [ -81.958467061999954, 28.909163380000052 ], [ -81.958447952999961, 28.909126355000069 ], [ -81.958428845999947, 28.909082599000044 ], [ -81.958405926999944, 28.909008554000025 ], [ -81.958356376999973, 28.908767303000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957105584999965, 28.910436160000074 ], [ -81.957190609999941, 28.910524639000073 ], [ -81.957206062999944, 28.910554129000047 ], [ -81.957211202999986, 28.910590419000073 ], [ -81.957200102999934, 28.910628209000038 ], [ -81.95716992399997, 28.91067885700005 ], [ -81.957144134999965, 28.910712869000065 ], [ -81.957087404999982, 28.910769551000044 ], [ -81.957013964999987, 28.910825991000024 ], [ -81.956716141999948, 28.91098942900004 ], [ -81.956584631999988, 28.91111412600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964426378999974, 28.892360562000079 ], [ -81.964623485999937, 28.892424745000028 ], [ -81.964954507999948, 28.89254274700005 ], [ -81.965096287999984, 28.892605007000043 ], [ -81.965181233999942, 28.892656940000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963715323999963, 28.892242301000067 ], [ -81.963843250999957, 28.892257806000032 ], [ -81.964166483999975, 28.892306708000035 ], [ -81.964334513999972, 28.892340937000029 ], [ -81.964426378999974, 28.892360562000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962710748999939, 28.891316919000076 ], [ -81.963951451999947, 28.891704694000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962706157999946, 28.891478061000043 ], [ -81.962708971999973, 28.891394759000036 ], [ -81.962710748999939, 28.891316919000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962710748999939, 28.891316919000076 ], [ -81.962661518999937, 28.890800894000051 ], [ -81.962705702999983, 28.890684365000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962705702999983, 28.890684365000027 ], [ -81.962756088999981, 28.890697098000032 ], [ -81.963037712999949, 28.890752924000026 ], [ -81.963244720999967, 28.890822025000034 ], [ -81.963796416999969, 28.891009533000044 ], [ -81.964203606999945, 28.891130996000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962322727999947, 28.890585938000072 ], [ -81.962314718999949, 28.890585936000036 ], [ -81.962705702999983, 28.890684365000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958643446999986, 28.885567012000024 ], [ -81.958729104999975, 28.885606212000027 ], [ -81.958772540999973, 28.88561392400004 ], [ -81.958870983999986, 28.885625318000052 ], [ -81.958987184999955, 28.885625353000023 ], [ -81.959495555999979, 28.885638291000078 ], [ -81.959566562999953, 28.885651095000071 ], [ -81.959642408999969, 28.885669583000038 ], [ -81.959736002999989, 28.885698019000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958875499999976, 28.884982372000024 ], [ -81.959384064999938, 28.884993182000073 ], [ -81.959991466999952, 28.885021484000049 ], [ -81.960088885999937, 28.885055076000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958886879999966, 28.884354634000033 ], [ -81.959401692999961, 28.884359947000064 ], [ -81.960039540999958, 28.88438076400007 ], [ -81.960403171999985, 28.88444172100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958975070999941, 28.883077179000054 ], [ -81.95953108599997, 28.883087661000047 ], [ -81.959966382999937, 28.883097301000078 ], [ -81.960281972999951, 28.883120121000047 ], [ -81.960454107999965, 28.88314542300003 ], [ -81.960844037999948, 28.883212154000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958492813999953, 28.886256413000069 ], [ -81.958492892999971, 28.886055663000036 ], [ -81.958497266999984, 28.885875747000057 ], [ -81.958512360999975, 28.885801890000039 ], [ -81.958538207999936, 28.885735613000065 ], [ -81.958587736999959, 28.885644722000052 ], [ -81.958643446999986, 28.885567012000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958643446999986, 28.885567012000024 ], [ -81.958678975999987, 28.885513047000074 ], [ -81.958745182999962, 28.885415059000024 ], [ -81.958808163999947, 28.885315650000052 ], [ -81.958827543999973, 28.885285828000065 ], [ -81.958845310999948, 28.885246061000032 ], [ -81.958864707999965, 28.88516936700006 ], [ -81.958874909999963, 28.884993028000054 ], [ -81.958875499999976, 28.884982372000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958875499999976, 28.884982372000024 ], [ -81.958886708999955, 28.884787108000069 ], [ -81.958880936999947, 28.884565713000029 ], [ -81.958886879999966, 28.884354634000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958975070999941, 28.883077179000054 ], [ -81.95897509699995, 28.883010487000035 ], [ -81.958969302999947, 28.882845472000042 ], [ -81.958968112999969, 28.882667723000054 ], [ -81.958968201999937, 28.882442983000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958968201999937, 28.882442983000033 ], [ -81.958963646999962, 28.882330490000072 ], [ -81.958957870999939, 28.882119407000062 ], [ -81.958957920999978, 28.881990490000078 ], [ -81.958980838999935, 28.881919594000067 ], [ -81.959016557999973, 28.881872248000036 ], [ -81.959071250999955, 28.881824928000071 ], [ -81.959148723999988, 28.881806013000073 ], [ -81.959303279999972, 28.881805298000074 ], [ -81.959467134999954, 28.881805347000068 ], [ -81.959604231999947, 28.881809513000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959604231999947, 28.881809513000064 ], [ -81.959642704999965, 28.881810556000062 ], [ -81.959794252999984, 28.881815677000077 ], [ -81.959959940999966, 28.881817620000049 ], [ -81.960110827999983, 28.881821009000078 ], [ -81.960252576999949, 28.881832858000053 ], [ -81.960322915999939, 28.881834823000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959604231999947, 28.881809513000064 ], [ -81.959595913999976, 28.88160461800004 ], [ -81.959595988999979, 28.881409009000038 ], [ -81.959591577999959, 28.881197927000073 ], [ -81.959590430999981, 28.88113536000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960322915999939, 28.881834823000077 ], [ -81.960330337999949, 28.881319157000064 ], [ -81.960319286999948, 28.881106698000053 ], [ -81.960305691999963, 28.880906270000025 ], [ -81.960285459999966, 28.880701716000033 ], [ -81.960213554999939, 28.880285036000032 ], [ -81.960157432999949, 28.879964616000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954355047999968, 28.875110586000062 ], [ -81.954617680999945, 28.875198953000051 ], [ -81.955033936999939, 28.875338833000058 ], [ -81.955324413999961, 28.875415679000071 ], [ -81.955610939999985, 28.875476727000034 ], [ -81.956150554999965, 28.875611422000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962737211, 28.87376764000004 ], [ -81.963074750999965, 28.874073709000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959151535999979, 28.872558846000061 ], [ -81.959447365999949, 28.872222617000034 ], [ -81.95989442399997, 28.871728512000061 ], [ -81.960160329999951, 28.871436141000061 ], [ -81.960223484999972, 28.871358660000055 ], [ -81.960241767999946, 28.871332346000031 ], [ -81.960261715999934, 28.871297256000048 ], [ -81.960284996999974, 28.871235849000072 ], [ -81.960319917999982, 28.871139352000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960311336999951, 28.873324436000075 ], [ -81.960392161999948, 28.873379537000062 ], [ -81.960583157999963, 28.873505347000048 ], [ -81.960876059999975, 28.873709741000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959729494999976, 28.872943590000034 ], [ -81.959784301999946, 28.872978702000069 ], [ -81.959925472999942, 28.873069403000045 ], [ -81.960089893999964, 28.873177658000031 ], [ -81.96021611499998, 28.87326250600006 ], [ -81.960311336999951, 28.873324436000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959151535999979, 28.872558846000061 ], [ -81.959198037999954, 28.872591029000034 ], [ -81.959349171999975, 28.872689045000072 ], [ -81.959505287999946, 28.872789987000033 ], [ -81.959638152999958, 28.87287776200003 ], [ -81.959729494999976, 28.872943590000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958573581999985, 28.872172636000073 ], [ -81.958620083999961, 28.872201895000046 ], [ -81.958762912999987, 28.872296985000048 ], [ -81.958907399999987, 28.872395 ], [ -81.959050227999967, 28.872490090000042 ], [ -81.959151535999979, 28.872558846000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957925827999986, 28.871871213000077 ], [ -81.958123474999979, 28.871960471000079 ], [ -81.958327769999983, 28.872048269000061 ], [ -81.958488876999979, 28.872127280000029 ], [ -81.958573581999985, 28.872172636000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001126926999973, 28.889272997000035 ], [ -82.001121748999935, 28.888978153000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001121748999935, 28.888978153000039 ], [ -82.001118334999944, 28.88836036400005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999469056999942, 28.888990653000064 ], [ -81.999555950999934, 28.889014144000043 ], [ -81.999644737999972, 28.889020642000048 ], [ -82.000581705999934, 28.888988653000069 ], [ -82.001121748999935, 28.888978153000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999176004999981, 28.88841284800003 ], [ -81.999525284999947, 28.888400854000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999525284999947, 28.888400854000054 ], [ -82.001118334999944, 28.88836036400005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999437249999971, 28.889308544000073 ], [ -81.999469056999942, 28.888990653000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000931432999948, 28.89114100300003 ], [ -82.000942536999958, 28.890852213000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000942536999958, 28.890852213000073 ], [ -82.000972820999948, 28.890233757000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966621516999965, 28.952467467000076 ], [ -81.966577617999974, 28.952319309000075 ], [ -81.966566643999954, 28.952173896000033 ], [ -81.966609573999961, 28.951760274000037 ], [ -81.966640839999968, 28.95142971100006 ], [ -81.966677954999966, 28.951064891000044 ], [ -81.966689660999975, 28.950998094000056 ], [ -81.96671304299997, 28.950953567000056 ], [ -81.96674421299997, 28.950915894000048 ], [ -81.966783171999964, 28.950881646000028 ], [ -81.966839653999955, 28.950857682000048 ], [ -81.967042187999937, 28.950833752000051 ], [ -81.967199928999946, 28.95081837500004 ], [ -81.967382418999989, 28.950801373000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971792906999951, 28.944228391000024 ], [ -81.972001405999947, 28.944218431000024 ], [ -81.972209903999953, 28.94420513700004 ], [ -81.972505592999937, 28.944188525000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972505592999937, 28.944188525000072 ], [ -81.972831608999968, 28.944165251000072 ], [ -81.972956705999934, 28.944165276000035 ], [ -81.973038202999987, 28.944183632000033 ], [ -81.973115905999975, 28.944221992000053 ], [ -81.973178441999949, 28.944268687000033 ], [ -81.973231498999951, 28.944327051000073 ], [ -81.973265599999934, 28.944387077000044 ], [ -81.97328263299994, 28.944490449000057 ], [ -81.973278794999942, 28.944668840000077 ], [ -81.973280647999957, 28.944840563000071 ], [ -81.97329956599998, 28.944983947000026 ], [ -81.973322273999941, 28.945127334000063 ], [ -81.973354453999946, 28.945287393000058 ], [ -81.97340559099996, 28.945445788000029 ], [ -81.973451047999959, 28.945579175000034 ], [ -81.973482829999966, 28.945643115000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973482829999966, 28.945643115000053 ], [ -81.973541980999983, 28.945769255000073 ], [ -81.973612075999938, 28.945909315000051 ], [ -81.973684074999937, 28.946021032000033 ], [ -81.973773128999937, 28.94614609100006 ], [ -81.973847576999958, 28.946253156000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973847576999958, 28.946253156000068 ], [ -81.973888712999951, 28.946296163000056 ], [ -81.973951243999977, 28.94636786600006 ], [ -81.974047887999973, 28.946469585000045 ], [ -81.974148322999952, 28.946564635000072 ], [ -81.974265814999967, 28.946671360000039 ], [ -81.974394658999984, 28.94678672200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974394658999984, 28.94678672200007 ], [ -81.97443500199995, 28.946830674000068 ], [ -81.97446857999995, 28.946871465000072 ], [ -81.974513533999982, 28.946931800000073 ], [ -81.974556022999934, 28.946987884000066 ], [ -81.974625175999961, 28.947082548000026 ], [ -81.974690485999986, 28.947178901000029 ], [ -81.974761554999986, 28.947300608000035 ], [ -81.97481533399997, 28.947407100000078 ], [ -81.974853741999937, 28.947508519000053 ], [ -81.974903672999972, 28.947630222000043 ], [ -81.974936312999944, 28.947745160000068 ], [ -81.974963183999989, 28.947873621000042 ], [ -81.97499389099994, 28.948032503000036 ], [ -81.97501307899995, 28.948149129000058 ], [ -81.975041867999948, 28.94829449100007 ], [ -81.975076419999937, 28.948448305000056 ], [ -81.975103286999968, 28.948597047000078 ], [ -81.975126308999961, 28.948752548000073 ], [ -81.975141637999968, 28.948935091000067 ], [ -81.975135815999977, 28.949178476000043 ], [ -81.975135777999981, 28.949335665000035 ], [ -81.97514920499998, 28.949438769000039 ], [ -81.975164560999985, 28.949513139000032 ], [ -81.975194449999947, 28.949585283000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963966727999946, 28.925462846000073 ], [ -81.964149647999989, 28.925641849000044 ], [ -81.96426043799994, 28.92574266500003 ], [ -81.964332664999972, 28.925837315000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963690473999975, 28.924367024000048 ], [ -81.963719726999955, 28.924371507000046 ], [ -81.963745156999948, 28.924387180000053 ], [ -81.963765501999944, 28.924403971000061 ], [ -81.963794745999962, 28.924428596000041 ], [ -81.96382399099997, 28.924455458000068 ], [ -81.963878662999946, 28.924508065000055 ], [ -81.964017250999973, 28.924640140000065 ], [ -81.964421737999942, 28.925021116000039 ], [ -81.964440805999971, 28.925047975000041 ], [ -81.964450176999947, 28.925074693000056 ], [ -81.964452710999979, 28.925104907000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963690473999975, 28.924367024000048 ], [ -81.963662493999948, 28.924365898000076 ], [ -81.963644685999952, 28.924369249000051 ], [ -81.96362179099998, 28.924375958000041 ], [ -81.963591259999987, 28.924389377000068 ], [ -81.963564541999972, 28.924415105000037 ], [ -81.963541636999935, 28.924447550000025 ], [ -81.963507277999952, 28.924500131000059 ], [ -81.963476736999951, 28.924546001000067 ], [ -81.963452554999947, 28.924591871000075 ], [ -81.96342582799997, 28.924642218000031 ], [ -81.963317641999936, 28.924858149000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963317641999936, 28.924858149000045 ], [ -81.963077562999956, 28.925343015000067 ], [ -81.963065153999935, 28.92536651100005 ], [ -81.963055604999965, 28.925391684000033 ], [ -81.963054643999953, 28.925411826000072 ], [ -81.963056542999936, 28.92543700300007 ], [ -81.963061305999986, 28.925457146000042 ], [ -81.963071791999937, 28.925477289000071 ], [ -81.963082119999967, 28.925491420000071 ], [ -81.96310230499995, 28.925512545000061 ], [ -81.963120423999953, 28.925528496000027 ], [ -81.963377894999951, 28.925772780000045 ], [ -81.963406504999966, 28.925790412000026 ], [ -81.963428442999941, 28.92579881100005 ], [ -81.963452289999964, 28.925802174000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963966727999946, 28.925462846000073 ], [ -81.964397062999979, 28.925189230000058 ], [ -81.964418346999935, 28.925173154000049 ], [ -81.964436158999945, 28.925153017000071 ], [ -81.964445068999964, 28.925132878000056 ], [ -81.964452710999979, 28.925104907000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966266135999945, 28.923999555000023 ], [ -81.966359000999944, 28.923945868000033 ], [ -81.966609879999965, 28.923790793000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965009291999934, 28.924712015000068 ], [ -81.96503217999998, 28.924724329000071 ], [ -81.96506143199997, 28.924729932000048 ], [ -81.965095771999984, 28.924729941000066 ], [ -81.965130115999955, 28.924719879000065 ], [ -81.965155557999935, 28.924707578000039 ], [ -81.965610986999934, 28.924416763000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964252778999935, 28.923968823000052 ], [ -81.964260403999958, 28.923987848000024 ], [ -81.964269300999945, 28.924006873000053 ], [ -81.964299504999985, 28.924040701000024 ], [ -81.964352796999947, 28.924091239000063 ], [ -81.965009291999934, 28.924712015000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964252778999935, 28.923968823000052 ], [ -81.964246427999967, 28.923945323000055 ], [ -81.964247707999959, 28.923918469000057 ], [ -81.964254076999964, 28.923891615000059 ], [ -81.964275708999935, 28.923862528000029 ], [ -81.964306241999964, 28.923837918000061 ], [ -81.964352043999952, 28.923794290000046 ], [ -81.964385122999943, 28.923761849000073 ], [ -81.964428380999948, 28.923721579000073 ], [ -81.964467820999971, 28.923684662000028 ], [ -81.964500901999941, 28.923651102000065 ], [ -81.964526347999936, 28.923623134000024 ], [ -81.96457087899995, 28.923579506000067 ], [ -81.964603957999941, 28.923547066000026 ], [ -81.964628128999948, 28.923530287000062 ], [ -81.964647209999953, 28.923515746000078 ], [ -81.96466120599996, 28.923506798000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96466120599996, 28.923506798000062 ], [ -81.965052813999989, 28.923879516000056 ], [ -81.965610986999934, 28.924416763000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965610986999934, 28.924416763000067 ], [ -81.965847541999949, 28.924642701000039 ], [ -81.965978074999953, 28.924787224000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965980382999987, 28.926914140000065 ], [ -81.967341060999956, 28.926055764000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965615597999943, 28.927436230000069 ], [ -81.965980382999987, 28.926914140000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965396809999959, 28.925833820000037 ], [ -81.965428989999964, 28.925879146000057 ], [ -81.965448298999945, 28.925901181000029 ], [ -81.965469039999959, 28.925921328000072 ], [ -81.965486920999979, 28.925935179000078 ], [ -81.96550837999996, 28.925952178000045 ], [ -81.965532698999937, 28.925967921000051 ], [ -81.965817827999956, 28.926133915000037 ], [ -81.965866466999955, 28.926162461000047 ], [ -81.965910343999951, 28.926176739000027 ], [ -81.96594945399994, 28.926179267000066 ], [ -81.965984748999972, 28.926174240000023 ], [ -81.966015277999986, 28.926166695000063 ], [ -81.966897582999934, 28.925607655000078 ], [ -81.967282555999986, 28.92536864300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96438879699997, 28.926467424000066 ], [ -81.964673692999952, 28.926284306000071 ], [ -81.964784340999984, 28.926215924000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964784340999984, 28.926215924000076 ], [ -81.965283877, 28.92590497100008 ], [ -81.965396809999959, 28.925833820000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965396809999959, 28.925833820000037 ], [ -81.966349822999973, 28.92522378700005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967263437999975, 28.924639425000066 ], [ -81.967558905999965, 28.924454202000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003229574999978, 28.889815 ], [ -82.003227488999983, 28.889497471000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008667432999971, 28.891868067000075 ], [ -82.01017602099995, 28.891863044000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01017602099995, 28.891863044000047 ], [ -82.010525230999974, 28.891858920000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008618216999935, 28.893560405000073 ], [ -82.008622861999982, 28.893419445000063 ], [ -82.00864427199997, 28.893317822000029 ], [ -82.008703855999954, 28.893144077000045 ], [ -82.00878206799996, 28.89299 ], [ -82.008856554999966, 28.892852314000038 ], [ -82.008945943999947, 28.892737572000044 ], [ -82.00900553699995, 28.89265561600007 ], [ -82.009050226999989, 28.892553991000057 ], [ -82.009066979999943, 28.892443352000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009753393999972, 28.892838985000026 ], [ -82.01025158799996, 28.89325952300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008618216999935, 28.893560405000073 ], [ -82.009267875999967, 28.89356230900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009267875999967, 28.89356230900006 ], [ -82.009282011999971, 28.893476563000036 ], [ -82.009304006999969, 28.893411563000029 ], [ -82.009340840999982, 28.893327610000028 ], [ -82.009404153999981, 28.893196480000029 ], [ -82.009504713999945, 28.893052235000027 ], [ -82.009612727999979, 28.892937494000023 ], [ -82.009753393999972, 28.892838985000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009753393999972, 28.892838985000026 ], [ -82.009835104, 28.892778129000078 ], [ -82.009933049999972, 28.892694887000061 ], [ -82.010003813999958, 28.892599817000075 ], [ -82.010044083999958, 28.892527336000057 ], [ -82.010072709999974, 28.892443281000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006520664999982, 28.890334510000059 ], [ -82.007215519999988, 28.890003912000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995099704999973, 28.889437097000041 ], [ -81.995162009999945, 28.889157509000029 ], [ -81.995181742999989, 28.889020456000026 ], [ -81.995197321999967, 28.888861474000066 ], [ -81.995207979999975, 28.888685212000041 ], [ -81.995203576999984, 28.888312346000077 ], [ -81.995195500999955, 28.888242769000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995099704999973, 28.889437097000041 ], [ -81.995554228999936, 28.889526107000052 ], [ -81.995606339999938, 28.889534879000053 ], [ -81.995657939999944, 28.889531954000063 ], [ -81.995710160999977, 28.889523005000058 ], [ -81.99575376599995, 28.889501991000031 ], [ -81.99579321799996, 28.889472753000064 ], [ -81.995826440999963, 28.889433466000071 ], [ -81.995847207999986, 28.889388696000026 ], [ -81.995860705999974, 28.889342097000053 ], [ -81.995907174999957, 28.889099488000056 ], [ -81.995931322999979, 28.888822210000058 ], [ -81.995935481999936, 28.888642213000026 ], [ -81.995935489999965, 28.888451251000049 ], [ -81.995932376999974, 28.888411048000023 ], [ -81.995924072999969, 28.888365364000038 ], [ -81.995912655999973, 28.888331557000072 ], [ -81.99588358699998, 28.888289526000051 ], [ -81.995851405999986, 28.888257546000034 ], [ -81.995819222999955, 28.888236530000029 ], [ -81.995773542999984, 28.888215514000024 ], [ -81.995734165999977, 28.888210128000026 ], [ -81.995235734999937, 28.888240363000079 ], [ -81.995195500999955, 28.888242769000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99055257599997, 28.894933527000035 ], [ -81.990462219999984, 28.894755902000043 ], [ -81.990329694999957, 28.894535860000076 ], [ -81.990133227999934, 28.894238131000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992173305999984, 28.894143632000066 ], [ -81.992349541999943, 28.893984580000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992349541999943, 28.893984580000051 ], [ -81.992460254999969, 28.893871257000058 ], [ -81.992748100999961, 28.893553005000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993784177999942, 28.895106934000069 ], [ -81.993837305999989, 28.895071871000027 ], [ -81.994014861999972, 28.894939181000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994014861999972, 28.894939181000041 ], [ -81.994037520999939, 28.894922337000025 ], [ -81.994309227999963, 28.894685485000025 ], [ -81.994486197999947, 28.894500196000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994486197999947, 28.894500196000024 ], [ -81.994662972999947, 28.894314907000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992349541999943, 28.893984580000051 ], [ -81.99241128999995, 28.894061463000071 ], [ -81.992476176999958, 28.894108192000033 ], [ -81.992772466999952, 28.894243656000071 ], [ -81.993189660999974, 28.894424505000075 ], [ -81.993538104999971, 28.894572004000054 ], [ -81.993727560999957, 28.894668614000068 ], [ -81.99385373299998, 28.894772440000054 ], [ -81.994014861999972, 28.894939181000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992748100999961, 28.893553005000058 ], [ -81.992786381999963, 28.893584291000025 ], [ -81.992948295999952, 28.893666462000056 ], [ -81.993266462999941, 28.893806396000059 ], [ -81.993650645999935, 28.893968334000078 ], [ -81.993949869999938, 28.894103453000071 ], [ -81.994139128999961, 28.894221721000065 ], [ -81.994298305999962, 28.894345144000056 ], [ -81.994486197999947, 28.894500196000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984401540999954, 28.896281695000027 ], [ -81.984529825999971, 28.896332447000077 ], [ -81.984717324999963, 28.896414975000027 ], [ -81.984881386999973, 28.896493030000045 ], [ -81.985050133999948, 28.896585869000035 ], [ -81.985058727999956, 28.896591370000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985977107999986, 28.895419874000027 ], [ -81.985950160999948, 28.895356960000072 ], [ -81.985889240999938, 28.895212566000055 ], [ -81.985863467999934, 28.895140370000036 ], [ -81.985849672999962, 28.895028230000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985058727999956, 28.896591370000067 ], [ -81.985118118999935, 28.896507495000037 ], [ -81.98520162899996, 28.896386977000077 ], [ -81.985249841999973, 28.89629197000005 ], [ -81.985288416999936, 28.896183390000033 ], [ -81.985309638999979, 28.896081593000076 ], [ -81.985322115999963, 28.895944753000038 ], [ -81.985309684999947, 28.895752444000038 ], [ -81.985274129999937, 28.895500586000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984401540999954, 28.896281695000027 ], [ -81.984440111999959, 28.896198564000031 ], [ -81.984528824999984, 28.896022123000023 ], [ -81.984562703999984, 28.895903414000031 ], [ -81.984569748999945, 28.895816784000033 ], [ -81.984581481999953, 28.895726027000023 ], [ -81.984596352999972, 28.895686197000032 ], [ -81.984623682999938, 28.895647650000058 ], [ -81.984656129999962, 28.895614944000044 ], [ -81.984694006999973, 28.89559196700003 ], [ -81.984928402999969, 28.895540427000071 ], [ -81.985274129999937, 28.895500586000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985274129999937, 28.895500586000026 ], [ -81.985359681999967, 28.895490970000026 ], [ -81.985773969999968, 28.895459797000058 ], [ -81.985893716999954, 28.895437939000033 ], [ -81.985977107999986, 28.895419874000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016429865999953, 28.907754906000036 ], [ -82.016425935999962, 28.908449878000056 ], [ -82.01642805299997, 28.90906841900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016018242999962, 28.907586739000067 ], [ -82.01596970199995, 28.907640990000061 ], [ -82.015915450999955, 28.907685724000032 ], [ -82.015813881999975, 28.907754444000034 ], [ -82.015756614999987, 28.907780581000054 ], [ -82.015703590999976, 28.907795518000057 ], [ -82.015652685999953, 28.907802989000061 ], [ -82.01545330099998, 28.907803012000045 ], [ -82.015277248999951, 28.907803032000061 ], [ -82.015243310999949, 28.907799304000036 ], [ -82.015207250999936, 28.907791842000051 ], [ -82.015156342999944, 28.907776917000035 ], [ -82.015109674999962, 28.907756392000067 ], [ -82.015058762999956, 28.907719070000041 ], [ -82.01497341399994, 28.907651516000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016245226999956, 28.904760519000035 ], [ -82.01614912499997, 28.904750883000077 ], [ -82.016052406999961, 28.904753881000033 ], [ -82.015973846999941, 28.904765788000077 ], [ -82.015908411999987, 28.904789580000056 ], [ -82.015847097999938, 28.904810644000065 ], [ -82.015770746999976, 28.904849474000059 ], [ -82.015716378999969, 28.904882235000059 ], [ -82.015664198999957, 28.904919046000032 ], [ -82.015621076999935, 28.904953598000077 ], [ -82.015569869999979, 28.904996165000057 ], [ -82.015530044999934, 28.905038730000058 ], [ -82.015484528999934, 28.905088807000027 ], [ -82.015433327999972, 28.90516266800006 ], [ -82.015392410999937, 28.905239223000024 ], [ -82.015366968999956, 28.905315375000043 ], [ -82.015355100999955, 28.905376593000028 ], [ -82.015350016999946, 28.905424375000052 ], [ -82.015348324999934, 28.905461703000071 ], [ -82.015350030999969, 28.90551993400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015350030999969, 28.90551993400004 ], [ -82.015338168999961, 28.90562893300006 ], [ -82.015316127999938, 28.905755852000027 ], [ -82.015299169999935, 28.905833496000071 ], [ -82.015277122999976, 28.905909647000044 ], [ -82.015258464999988, 28.905967882000027 ], [ -82.015240619999986, 28.906016495000074 ], [ -82.015219452999986, 28.906069419000062 ], [ -82.015191282999979, 28.906145274000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015191282999979, 28.906145274000039 ], [ -82.015168567999979, 28.906211271000075 ], [ -82.015153303999966, 28.906265025000039 ], [ -82.015066819999959, 28.906642794000049 ], [ -82.015029504999973, 28.906816040000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015029504999973, 28.906816040000024 ], [ -82.014988780999943, 28.906805597000073 ], [ -82.014888012999961, 28.906796916000076 ], [ -82.014777367999955, 28.906795190000025 ], [ -82.014720068999964, 28.906800412000052 ], [ -82.014648876999956, 28.906813912000075 ], [ -82.014518790999944, 28.906848870000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014518790999944, 28.906848870000033 ], [ -82.014451693999945, 28.906869362000066 ], [ -82.014379121, 28.906904313000041 ], [ -82.014295595999954, 28.906950111000072 ], [ -82.014199746999964, 28.907006753000076 ], [ -82.014117588999966, 28.907044116000066 ], [ -82.014029952999977, 28.907075454000051 ], [ -82.013945054999965, 28.907100767000031 ], [ -82.01389712699995, 28.907109207000076 ], [ -82.013846630999979, 28.907107253000049 ], [ -82.013795277999975, 28.907098222000059 ], [ -82.013748031999967, 28.907076536000034 ], [ -82.013712081999984, 28.907050333000029 ], [ -82.01368434699998, 28.907017802000041 ], [ -82.013660719999962, 28.906978945000048 ], [ -82.013646335999965, 28.906938278000041 ], [ -82.013640169999974, 28.906902130000049 ], [ -82.013639135999938, 28.906855137000036 ], [ -82.013640157999987, 28.906809048000071 ], [ -82.013644861999978, 28.906757916000061 ], [ -82.013661712999976, 28.906714155000031 ], [ -82.013684302999934, 28.906682523000029 ], [ -82.013717612999983, 28.906650416000048 ], [ -82.013764403999971, 28.906618351000077 ], [ -82.01386709999997, 28.906569539000031 ], [ -82.013983149999945, 28.906530668000073 ], [ -82.014094064999938, 28.906503545000078 ], [ -82.014180335999981, 28.906496306000065 ], [ -82.014252227999975, 28.906499010000061 ], [ -82.014294336999967, 28.906507139000041 ], [ -82.014338500999941, 28.906524305000062 ], [ -82.014386363999961, 28.906553282000061 ], [ -82.014430489999938, 28.906608522000056 ], [ -82.014455949999956, 28.906663764000029 ], [ -82.014477692999947, 28.906727175000071 ], [ -82.014499610999962, 28.906791034000037 ], [ -82.014518790999944, 28.906848870000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016212205999977, 28.904976256000054 ], [ -82.016212221999979, 28.905079920000048 ], [ -82.01622335199994, 28.905191406000029 ], [ -82.016244483999969, 28.905289688000039 ], [ -82.016271173999939, 28.905392957000061 ], [ -82.016281187999937, 28.905469139000047 ], [ -82.016285420999964, 28.905533782000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016245226999956, 28.904760519000035 ], [ -82.016229964, 28.904831515000069 ], [ -82.016212205999977, 28.904976256000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016285420999964, 28.905533782000077 ], [ -82.016292331999978, 28.905660818000058 ], [ -82.016296791999935, 28.90575665700004 ], [ -82.01629436099995, 28.905838904000063 ], [ -82.016287928999986, 28.905930736000073 ], [ -82.016272381999954, 28.906012886000042 ], [ -82.016257827999937, 28.906089709000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01620042199994, 28.906284290000031 ], [ -82.01618803599996, 28.906330964000063 ], [ -82.016167682999935, 28.906401143000039 ], [ -82.016149026999983, 28.906460871000036 ], [ -82.016126978999978, 28.906525078000072 ], [ -82.016089661999956, 28.906619149000051 ], [ -82.01605473799998, 28.906688111000051 ], [ -82.016026896999961, 28.906743086000063 ], [ -82.015998057, 28.906789375000074 ], [ -82.015965822999988, 28.90683417300005 ], [ -82.015920017999974, 28.906892410000069 ], [ -82.015850456999942, 28.906962595000039 ], [ -82.015684944999975, 28.907097339000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01620042199994, 28.906284290000031 ], [ -82.016207392999945, 28.906285568000044 ], [ -82.016227231999949, 28.906287094000049 ], [ -82.016247069999963, 28.90628556300004 ], [ -82.016266304999988, 28.906281026000045 ], [ -82.016284353999936, 28.906273618000057 ], [ -82.01630066599995, 28.906263566000064 ], [ -82.016314744999988, 28.906251172000054 ], [ -82.016326165999942, 28.906236816000046 ], [ -82.016334578999988, 28.906220933000043 ], [ -82.01633973099996, 28.906204007000042 ], [ -82.016341463999936, 28.90618654900004 ], [ -82.016340911999976, 28.90618100100005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016340911999976, 28.90618100100005 ], [ -82.016339725999956, 28.906169092000027 ], [ -82.016334567999934, 28.906152167000073 ], [ -82.016326149999941, 28.906136286000049 ], [ -82.016314724999972, 28.906121933000065 ], [ -82.016300640999987, 28.90610954400006 ], [ -82.016284326999937, 28.906099494000046 ], [ -82.016266275999953, 28.906092091000062 ], [ -82.016257827999937, 28.906089709000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015684944999975, 28.907097339000074 ], [ -82.015602743999978, 28.907164196000053 ], [ -82.015480584999978, 28.907271715000036 ], [ -82.015344849999963, 28.907376248000048 ], [ -82.015204023999956, 28.907474810000053 ], [ -82.015109007999968, 28.907544998000049 ], [ -82.01497341399994, 28.907651516000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01497341399994, 28.907651516000044 ], [ -82.01491049699996, 28.907707771000048 ], [ -82.014823968999963, 28.907797367000057 ], [ -82.014744228999973, 28.90789144300004 ], [ -82.014726776999964, 28.907918120000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014726776999964, 28.907918120000033 ], [ -82.014711993999981, 28.907940719000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014711993999981, 28.907940719000067 ], [ -82.014664489999973, 28.907995971000048 ], [ -82.014627162999943, 28.908027330000039 ], [ -82.014566080999941, 28.908076609000034 ], [ -82.014518575999944, 28.908130366000023 ], [ -82.01447955499998, 28.908182631000045 ], [ -82.014454107999939, 28.908231906000026 ], [ -82.014437147999956, 28.908296112000073 ], [ -82.014428672999941, 28.908363304000034 ], [ -82.014420197999982, 28.908429003000037 ], [ -82.014416813999958, 28.908505152000032 ], [ -82.014404939999963, 28.90853501600003 ], [ -82.014389672999982, 28.908563386000026 ], [ -82.014374402999977, 28.908584291000068 ], [ -82.014360831999966, 28.908620128000052 ], [ -82.01436592899995, 28.908660441000052 ], [ -82.014384598999982, 28.908691795000038 ], [ -82.014398176999975, 28.908712698000045 ], [ -82.014437208999937, 28.908736583000064 ], [ -82.014483025999937, 28.908748523000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014483025999937, 28.908748523000042 ], [ -82.014539021999951, 28.908730600000069 ], [ -82.014572954999949, 28.908700733000046 ], [ -82.01459161799994, 28.908670869000048 ], [ -82.01460009699997, 28.908636526000066 ], [ -82.014593303999959, 28.908594719000064 ], [ -82.014574632999938, 28.908563366000067 ], [ -82.014552569999978, 28.90853201300007 ], [ -82.014549170999942, 28.908497672000067 ], [ -82.014547466999943, 28.908448399000065 ], [ -82.014547458999971, 28.908388674000037 ], [ -82.014557631999935, 28.908327455000062 ], [ -82.014581377999946, 28.908252796000056 ], [ -82.014628874999971, 28.908143793000079 ], [ -82.014676373999976, 28.908036283000058 ], [ -82.014711993999981, 28.907940719000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014483025999937, 28.908748523000042 ], [ -82.01448256499998, 28.909051756000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016373954999949, 28.904199375000076 ], [ -82.016352806999976, 28.904333621000035 ], [ -82.016326151999976, 28.904450979000046 ], [ -82.016303047999941, 28.904533914000069 ], [ -82.016285276999952, 28.904605894000042 ], [ -82.016245226999956, 28.904760519000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016018542999973, 28.903613734000032 ], [ -82.016091306999954, 28.90366238200005 ], [ -82.016160663999983, 28.903720268000029 ], [ -82.016226468999946, 28.903787543000078 ], [ -82.016287609999949, 28.903884843000071 ], [ -82.016325409999979, 28.903976767000074 ], [ -82.01635209899996, 28.904070648000072 ], [ -82.016370558999938, 28.904142721000028 ], [ -82.016373954999949, 28.904199375000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019541477999951, 28.903042713000048 ], [ -82.019537447999937, 28.903178481000054 ], [ -82.01955954899995, 28.903275377000057 ], [ -82.019595475999949, 28.903389723000032 ], [ -82.019626744999982, 28.903506052000068 ], [ -82.019669739999983, 28.903657014000032 ], [ -82.01967885199997, 28.903717361000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01967885199997, 28.903717361000076 ], [ -82.019669777, 28.903850021000039 ], [ -82.019650862999981, 28.903931193000062 ], [ -82.019617227999959, 28.904024266000079 ], [ -82.019573674999947, 28.904101210000078 ], [ -82.019517207999968, 28.90418620500003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019517207999968, 28.90418620500003 ], [ -82.01947544799998, 28.904233686000055 ], [ -82.019405450999955, 28.904291598000043 ], [ -82.019343263999986, 28.904337346000034 ], [ -82.019247125999982, 28.904396585000029 ], [ -82.01915338799995, 28.904436786000076 ], [ -82.019076472999984, 28.904460064000034 ], [ -82.018977923999955, 28.904481229000055 ], [ -82.018820632999962, 28.904494339000053 ], [ -82.018702399999938, 28.904489993000027 ], [ -82.018555168999967, 28.90447150600005 ], [ -82.018443992999948, 28.904453012000033 ], [ -82.018323802999987, 28.904434521000042 ], [ -82.018195649999939, 28.904407174000028 ], [ -82.018093488999966, 28.904391324000073 ], [ -82.017963236999947, 28.904389623000043 ], [ -82.017855071999975, 28.904394926000066 ], [ -82.01774390199995, 28.904413448000071 ], [ -82.017635738999957, 28.904434613000035 ], [ -82.01752126699995, 28.904466619000061 ], [ -82.017407396999943, 28.90450603000005 ], [ -82.017278205999958, 28.904564212000025 ], [ -82.017182066999965, 28.904617104000067 ], [ -82.017101097999955, 28.904678965000073 ], [ -82.017050620999953, 28.904741899000044 ], [ -82.017007523999951, 28.904818292000073 ], [ -82.01695977199995, 28.904929116000062 ], [ -82.016893980999953, 28.905088592000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957012318999944, 28.951767468000071 ], [ -81.957541551999952, 28.951329423000061 ], [ -81.957644122999966, 28.951279992000025 ], [ -81.957743294999943, 28.951268688000027 ], [ -81.957882307999967, 28.951275702000032 ], [ -81.957989367999971, 28.951314493000041 ], [ -81.958087373999945, 28.951367420000054 ], [ -81.958440923999945, 28.951698271000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958440923999945, 28.951698271000055 ], [ -81.95900992199995, 28.952282361000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95900992199995, 28.952282361000073 ], [ -81.959905256999946, 28.953163217000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989674974999957, 28.952450705000047 ], [ -81.989845765999974, 28.952603354000075 ], [ -81.989965161999976, 28.952712684000062 ], [ -81.990082996999945, 28.952817888000027 ], [ -81.990244798999981, 28.952961254000058 ], [ -81.990406797999981, 28.953107371000044 ], [ -81.990557266999986, 28.953242141000032 ], [ -81.99062059399995, 28.953297807000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99062059399995, 28.953297807000069 ], [ -81.990699764999988, 28.953374082000039 ], [ -81.990809094999975, 28.953476889000058 ], [ -81.990914654999983, 28.953569747000074 ], [ -81.991031527999951, 28.953646025000069 ], [ -81.991144631999987, 28.953709037000067 ], [ -81.991302149999967, 28.953793458000064 ], [ -81.99139523499997, 28.953847926000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99139523499997, 28.953847926000037 ], [ -81.991551483999956, 28.953941506000035 ], [ -81.991731005999952, 28.954038012000069 ], [ -81.991890579999961, 28.954128668000067 ], [ -81.992123292999963, 28.954257341000073 ], [ -81.992392577999965, 28.954400636000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987538830999938, 28.953050899000061 ], [ -81.987944304999985, 28.953421939000066 ], [ -81.98798954199998, 28.953463390000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988472737999984, 28.953056761000028 ], [ -81.988646775999939, 28.953230509000036 ], [ -81.988810039999976, 28.953376696000078 ], [ -81.989008288999969, 28.953553659000079 ], [ -81.98920362399997, 28.953733186000079 ], [ -81.989488755999957, 28.953983243000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990384961999951, 28.955637461000038 ], [ -81.990438243999961, 28.955690906000029 ], [ -81.990478134999989, 28.955733016000067 ], [ -81.990523346999964, 28.955772787000058 ], [ -81.990573877999964, 28.955819575000078 ], [ -81.990626704999954, 28.955865828000071 ], [ -81.990667217999942, 28.955901464000078 ], [ -81.990712172999963, 28.95594356600003 ], [ -81.990757384999938, 28.95598801400007 ], [ -81.990805256999977, 28.95602778600005 ], [ -81.990850468999952, 28.95606755600005 ], [ -81.990895681999973, 28.956097969000041 ], [ -81.990943555999934, 28.956123704000049 ], [ -81.990999408999983, 28.956140083000037 ], [ -81.991063240999949, 28.956151783000053 ], [ -81.991137714999979, 28.956151788000057 ], [ -81.991220166999938, 28.95615179300006 ], [ -81.991374431999986, 28.956151803000068 ], [ -81.991552633999959, 28.956151814000066 ], [ -81.99170689999994, 28.956151824000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99170689999994, 28.956151824000074 ], [ -81.991831907999938, 28.956151832000046 ], [ -81.991972872999952, 28.956151840000075 ], [ -81.99212713999998, 28.956154190000063 ], [ -81.992246827999963, 28.956154197000046 ], [ -81.992366515999947, 28.95615420300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992366515999947, 28.95615420300004 ], [ -81.992486204999977, 28.956154210000079 ], [ -81.992584615999988, 28.956154216000073 ], [ -81.99269632499994, 28.956154222000066 ], [ -81.992810694999946, 28.956154228000059 ], [ -81.993026134, 28.956154239000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993026134, 28.956154239000057 ], [ -81.993148481999981, 28.95615424600004 ], [ -81.993294767999942, 28.956154253000079 ], [ -81.993536804999962, 28.956154265000066 ], [ -81.993686479999951, 28.956151784000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99236925799994, 28.955054750000045 ], [ -81.992366574999949, 28.955365873000062 ], [ -81.992366515999947, 28.95615420300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991706986999986, 28.955054711000059 ], [ -81.991706963999945, 28.955342441000028 ], [ -81.991706954999984, 28.955459403000077 ], [ -81.991706945999965, 28.955569349000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991706945999965, 28.955569349000029 ], [ -81.991706935999957, 28.95568865100006 ], [ -81.991706927999985, 28.955796257000031 ], [ -81.991706917999977, 28.95592257800007 ], [ -81.99170689999994, 28.956151824000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991706986999986, 28.955054711000059 ], [ -81.991768158999946, 28.955054715000074 ], [ -81.991898486999958, 28.955054723000046 ], [ -81.992050090999953, 28.955054732000065 ], [ -81.992273505999947, 28.955054745000041 ], [ -81.99236925799994, 28.955054750000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99236925799994, 28.955054750000045 ], [ -81.992659165999953, 28.955054766000046 ], [ -81.99293311699995, 28.955054781000058 ], [ -81.993020888, 28.955057126000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993020888, 28.955057126000042 ], [ -81.993231005999974, 28.955052458000068 ], [ -81.993520914999976, 28.955052473000023 ], [ -81.993680497999947, 28.955052480000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993680497999947, 28.955052480000063 ], [ -81.993776247999961, 28.955054823000069 ], [ -81.993949129999976, 28.955054831000041 ], [ -81.994103391999943, 28.955054837000034 ], [ -81.994284252999989, 28.955054845000063 ], [ -81.994348087999981, 28.955054848000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999968831, 28.953855151000027 ], [ -81.999960944999941, 28.953226313000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999971923999965, 28.954623179000066 ], [ -81.999969775999944, 28.953963821000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999973971999964, 28.955220329000042 ], [ -81.999969775999944, 28.954732756000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999260531999937, 28.953214890000027 ], [ -81.999266210999963, 28.954575633000047 ], [ -81.999271462999957, 28.955264175000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998229027999969, 28.955319974000076 ], [ -81.998559887999988, 28.955292073000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998559887999988, 28.955292073000066 ], [ -81.99887261799995, 28.955284104000043 ], [ -81.999081104999959, 28.955276133000041 ], [ -81.999271462999957, 28.955264175000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999973971999964, 28.955220329000042 ], [ -82.000286003999975, 28.955169288000036 ], [ -82.000807916999975, 28.955080809000037 ], [ -82.001172204999989, 28.955020734000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999971923999965, 28.954623179000066 ], [ -82.000201768999943, 28.954628846000048 ], [ -82.000433760999954, 28.954626957000073 ], [ -82.000562645999935, 28.954625067000052 ], [ -82.000646421999988, 28.954617509000059 ], [ -82.000695826999959, 28.954611842000077 ], [ -82.000723750999953, 28.954617508000069 ], [ -82.00074738099994, 28.954630733000045 ], [ -82.000758121999979, 28.954653405000045 ], [ -82.000758121999979, 28.954677966000077 ], [ -82.00074738099994, 28.954694969000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999968831, 28.953855151000027 ], [ -82.000324205999959, 28.95385802100003 ], [ -82.000554049999948, 28.953858020000041 ], [ -82.000612046999947, 28.953858020000041 ], [ -82.000641506999955, 28.953869187000066 ], [ -82.000655381999934, 28.953886084000032 ], [ -82.000660717999949, 28.953907676000028 ], [ -82.00065858499994, 28.953927389000057 ], [ -82.000642120999942, 28.953946816000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999960944999941, 28.953226313000073 ], [ -82.000002131999963, 28.953214238000044 ], [ -82.000040572999978, 28.953203371000029 ], [ -82.000074893999965, 28.953198541000063 ], [ -82.000150402999964, 28.953198541000063 ], [ -82.000305536999974, 28.953198541000063 ], [ -82.000534809999976, 28.953198540000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998744220999981, 28.958001865000028 ], [ -81.998794639999971, 28.957818694000025 ], [ -81.998824440999954, 28.957661445000042 ], [ -81.998820716999944, 28.957533679000051 ], [ -81.998794643999986, 28.957422293000036 ], [ -81.998755532999951, 28.957328926000059 ], [ -81.998716421999973, 28.957271595000066 ], [ -81.998656824999955, 28.957220815000028 ], [ -81.998593500999959, 28.957183140000041 ], [ -81.998507828999948, 28.957145465000053 ], [ -81.998427743999969, 28.957124170000043 ], [ -81.998276885999985, 28.95710778800003 ], [ -81.997993793999967, 28.957117612000047 ], [ -81.997716286999946, 28.957132350000052 ], [ -81.997515143999976, 28.957140535000065 ], [ -81.997263711999949, 28.95714053100005 ], [ -81.997008555999969, 28.957133973000055 ], [ -81.99678692599997, 28.957115951000048 ], [ -81.996626753999976, 28.957099567000057 ], [ -81.996501971999976, 28.957091373000026 ], [ -81.996403847999943, 28.957130177000067 ], [ -81.996315722999952, 28.957189649000043 ], [ -81.996271020999984, 28.957253532000038 ], [ -81.996250527999962, 28.957446816000072 ], [ -81.996243069999935, 28.957674501000042 ], [ -81.996244922999949, 28.957913652000059 ], [ -81.996244913999988, 28.958182288000046 ], [ -81.996237453999981, 28.958455836000041 ], [ -81.996237445999952, 28.958667141000035 ], [ -81.996267239999952, 28.958844047000071 ], [ -81.996310072999961, 28.95894233100006 ], [ -81.996377117999941, 28.95904880300003 ], [ -81.996460926999987, 28.95913562000004 ], [ -81.99650453299995, 28.959180697000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99650453299995, 28.959180697000079 ], [ -81.996575613999937, 28.959236937000071 ], [ -81.996585971999934, 28.959245189000058 ], [ -81.996662388999937, 28.95929435000005 ], [ -81.996788446999972, 28.959347638000054 ], [ -81.996935852999968, 28.959392801000035 ], [ -81.997276689999978, 28.959399361000067 ], [ -81.99784288799998, 28.959399372000064 ], [ -81.998269397999934, 28.959399378000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998269397999934, 28.959399378000057 ], [ -81.998318338, 28.959399090000034 ], [ -81.998720949999949, 28.959399094000048 ], [ -81.999045384999988, 28.959398753000073 ], [ -81.999336789999973, 28.959402879000038 ], [ -81.999559399999953, 28.959402880000027 ], [ -81.999712992999946, 28.959401286000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999712992999946, 28.959401286000059 ], [ -81.999828303999948, 28.959399389000055 ], [ -81.999949365999953, 28.959397750000051 ], [ -82.000102090999974, 28.959394474000078 ], [ -82.000375876999954, 28.959394473000032 ], [ -82.000556537999955, 28.959389558000055 ], [ -82.000688775999947, 28.959371540000063 ], [ -82.000822873999937, 28.95932239800004 ], [ -82.000983046999977, 28.959229031000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99339824499998, 28.951486009000064 ], [ -81.993603515999951, 28.951537149000046 ], [ -81.993744514999946, 28.951582856000073 ], [ -81.993894177999948, 28.951642359000061 ], [ -81.994081923999943, 28.951708422000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99382338099997, 28.949413639000056 ], [ -81.993692653999972, 28.949413633000063 ], [ -81.993558587999985, 28.949413382000046 ], [ -81.993240390999972, 28.949413366000044 ], [ -81.993097981999938, 28.949413359000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993097981999938, 28.949413359000062 ], [ -81.992575070999976, 28.949413331000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975766338999961, 28.94948026000003 ], [ -81.975863656999934, 28.949458269000047 ], [ -81.976024928999948, 28.949419169000066 ], [ -81.976286641999934, 28.949362240000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975194449999947, 28.949585283000033 ], [ -81.97528661399997, 28.949564872000053 ], [ -81.975766338999961, 28.94948026000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973796172999982, 28.950290970000026 ], [ -81.973912623999979, 28.950224913000056 ], [ -81.974052003999986, 28.950137683000037 ], [ -81.974233905999938, 28.95002968600005 ], [ -81.974415808999936, 28.949919614000066 ], [ -81.97457112099994, 28.949832526000023 ], [ -81.974745288999941, 28.949748050000039 ], [ -81.974922456999934, 28.949674138000034 ], [ -81.975194449999947, 28.949585283000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973166072999959, 28.95065610100005 ], [ -81.973248547999958, 28.950611923000054 ], [ -81.973478968999984, 28.950475123000047 ], [ -81.973665624999967, 28.95037022200006 ], [ -81.973796172999982, 28.950290970000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97254738099997, 28.95087780800003 ], [ -81.972701228999938, 28.950852147000035 ], [ -81.972816156999954, 28.950821407000035 ], [ -81.972944670999937, 28.95077512000006 ], [ -81.973065423999969, 28.950711770000055 ], [ -81.973166072999959, 28.95065610100005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971821657999953, 28.950887887000079 ], [ -81.971994324999969, 28.950887970000053 ], [ -81.972222168999963, 28.950889731000075 ], [ -81.972331221, 28.950891465000041 ], [ -81.972444168999971, 28.950888063000036 ], [ -81.97254738099997, 28.95087780800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97110861799996, 28.950867322000079 ], [ -81.971493856999984, 28.950875875000065 ], [ -81.971821657999953, 28.950887887000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970311956999979, 28.950853356000039 ], [ -81.970827860999975, 28.950862031000042 ], [ -81.97110861799996, 28.950867322000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969578018999982, 28.950839377000079 ], [ -81.97010344399996, 28.950846456000079 ], [ -81.970311956999979, 28.950853356000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968840259, 28.950822207000044 ], [ -81.969330342999967, 28.950834293000071 ], [ -81.969578018999982, 28.950839377000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968110667999952, 28.950811404000035 ], [ -81.968528032999984, 28.950815267000053 ], [ -81.968840259, 28.950822207000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967382418999989, 28.950801373000047 ], [ -81.967542672999969, 28.950792766000063 ], [ -81.967881512999952, 28.950797986000055 ], [ -81.968110667999952, 28.950811404000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973871434999978, 28.944006663000039 ], [ -81.973853622999968, 28.944094273000076 ], [ -81.973836009999957, 28.944155887000079 ], [ -81.973821955999938, 28.944214885000065 ], [ -81.973812584999962, 28.944262907000052 ], [ -81.973804774999962, 28.944302698000058 ], [ -81.97379540299994, 28.94435483500007 ], [ -81.973789152999984, 28.944397370000047 ], [ -81.973782901999982, 28.944438532000049 ], [ -81.973776652999959, 28.944474206000052 ], [ -81.973775082999964, 28.944518114000061 ], [ -81.973773512999969, 28.944555161000039 ], [ -81.973771943999964, 28.944589464000046 ], [ -81.973771930999987, 28.944638860000055 ], [ -81.973770358999957, 28.944690999000045 ], [ -81.973770349999938, 28.944728047000069 ], [ -81.973770338999941, 28.944771954000032 ], [ -81.973773446999985, 28.944815864000077 ], [ -81.973778114999959, 28.944865261000075 ], [ -81.973784341999988, 28.944914658000073 ], [ -81.973789010999951, 28.944961310000053 ], [ -81.973798354999985, 28.945020313000043 ], [ -81.973809259999939, 28.945079316000033 ], [ -81.973820165999939, 28.94513283200007 ], [ -81.973832631999983, 28.945182230000057 ], [ -81.973841983999989, 28.945219279000071 ], [ -81.973851334999949, 28.945252211000025 ], [ -81.973865362999959, 28.945296122000059 ], [ -81.973877831999971, 28.945337288000076 ], [ -81.973893418999978, 28.945381198000064 ], [ -81.973907450999945, 28.945418249000056 ], [ -81.973927716999981, 28.945466277000037 ], [ -81.973943307999946, 28.945504700000072 ], [ -81.973962015999973, 28.945547239000064 ], [ -81.973980725, 28.945587034000027 ], [ -81.97400879099996, 28.945639179000068 ], [ -81.974033739999982, 28.945683092000024 ], [ -81.974060246999954, 28.945728377000023 ], [ -81.974085194999986, 28.945770918000051 ], [ -81.974110144999941, 28.945809342000075 ], [ -81.974144450999972, 28.945861490000027 ], [ -81.974166282999988, 28.94589030700007 ], [ -81.974186553999971, 28.945920498000078 ], [ -81.974213065999948, 28.94595206200006 ], [ -81.974244254999974, 28.94599185900006 ], [ -81.974273884999945, 28.946027540000046 ], [ -81.974295031999986, 28.946052352000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974295031999986, 28.946052352000038 ], [ -81.974354977999951, 28.946123603000046 ], [ -81.974393967999958, 28.946166147000042 ], [ -81.974434515999974, 28.946207318000063 ], [ -81.974461029999986, 28.946232020000025 ], [ -81.974492220999934, 28.94625946900004 ], [ -81.974531209999952, 28.946293780000076 ], [ -81.974573321999969, 28.946330834000037 ], [ -81.974620108999943, 28.946376124000039 ], [ -81.974652860999981, 28.94640494500004 ], [ -81.974690290999945, 28.946441999000058 ], [ -81.974724601999981, 28.94647356400003 ], [ -81.974760472999947, 28.94650787300003 ], [ -81.974790102999975, 28.946539437000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974790102999975, 28.946539437000069 ], [ -81.974860282999941, 28.946619033000047 ], [ -81.974891471999968, 28.94665745900005 ], [ -81.974932020999972, 28.946706862000042 ], [ -81.974964768999939, 28.946746660000031 ], [ -81.974997517999952, 28.94679194500003 ], [ -81.975027146999935, 28.946833115000061 ], [ -81.975052096999946, 28.946871538000039 ], [ -81.975077046999957, 28.946909962000063 ], [ -81.975101998999946, 28.946944270000074 ], [ -81.975126946999978, 28.946985439000059 ], [ -81.975148778999937, 28.947018373000049 ], [ -81.975164372999984, 28.947045819000039 ], [ -81.975179965999985, 28.947073264000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975179965999985, 28.947073264000039 ], [ -81.97520753699996, 28.947130629000071 ], [ -81.975222333999966, 28.947165692000056 ], [ -81.975249651999945, 28.94722179200005 ], [ -81.975271279999959, 28.947268875000077 ], [ -81.975292903999957, 28.947322971000062 ], [ -81.975308838999979, 28.947361038000054 ], [ -81.97532704799994, 28.94740411500004 ], [ -81.975342983999951, 28.947446188000072 ], [ -81.975355500999967, 28.947479246000057 ], [ -81.975364605999971, 28.947511302000066 ], [ -81.975373709999985, 28.94753834900007 ], [ -81.975386225999955, 28.947582426000054 ], [ -81.975409536999962, 28.94766015600004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974908768999967, 28.952534760000049 ], [ -81.974913600999969, 28.951980191000075 ], [ -81.974904859999981, 28.951758471000062 ], [ -81.974904872999957, 28.951706909000052 ], [ -81.974884097999961, 28.951595414000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974897834999979, 28.951541355000074 ], [ -81.974884097999961, 28.951595414000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978812021999943, 28.94907917200004 ], [ -81.979013381999948, 28.949264680000056 ], [ -81.979252649999978, 28.949464783000053 ], [ -81.97945077199995, 28.949626016000025 ], [ -81.979745402999981, 28.94986915800007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977428963999955, 28.949227696000037 ], [ -81.977498683999954, 28.949407877000056 ], [ -81.977510065, 28.949452957000062 ], [ -81.977514148999944, 28.949492799000041 ], [ -81.977509529999963, 28.949594073000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977509529999963, 28.949594073000071 ], [ -81.977434512999935, 28.949549576000038 ], [ -81.977382704999968, 28.94954335500006 ], [ -81.977326183999935, 28.94955370200006 ], [ -81.977236691999963, 28.949572328000045 ], [ -81.977133069, 28.949593024000023 ], [ -81.977041220999979, 28.949613722000038 ], [ -81.976958792999937, 28.949632349000069 ], [ -81.976881074999937, 28.949653049000062 ], [ -81.976819839999962, 28.949686180000072 ], [ -81.976789218999954, 28.949713102000032 ], [ -81.976768014999948, 28.949752453000031 ], [ -81.976746810999941, 28.949791806000064 ], [ -81.976742089999959, 28.949847730000045 ], [ -81.976739700999985, 28.950003079000055 ], [ -81.976738711999985, 28.950135300000056 ], [ -81.976738677999947, 28.950288100000023 ], [ -81.976740057999962, 28.950561092000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976966905999973, 28.95121051600006 ], [ -81.976990034999972, 28.951285843000051 ], [ -81.976992247999988, 28.95174795500003 ], [ -81.976992199999984, 28.951963742000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97522825599998, 28.950966009000069 ], [ -81.975300602999937, 28.95101356300006 ], [ -81.975427775999947, 28.951092172000074 ], [ -81.975557372999958, 28.951161411000044 ], [ -81.975737888999959, 28.951232694000055 ], [ -81.975890636999964, 28.951279543000055 ], [ -81.97600635799995, 28.951306028000033 ], [ -81.976124394999943, 28.951322335000043 ], [ -81.976237803999936, 28.951330497000072 ], [ -81.976344270999959, 28.951334589000055 ], [ -81.976497032999987, 28.951324437000039 ], [ -81.976670626999976, 28.951298003000034 ], [ -81.976793302999965, 28.95127155800003 ], [ -81.976966905999973, 28.95121051600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976966905999973, 28.95121051600006 ], [ -81.977082644999939, 28.951155572000062 ], [ -81.977253933999975, 28.951090457000078 ], [ -81.977466884999956, 28.951021278000042 ], [ -81.977677515999972, 28.950970420000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977677515999972, 28.950970420000033 ], [ -81.977797878999979, 28.95093786800004 ], [ -81.978024709999943, 28.950895155000069 ], [ -81.978379901999972, 28.950842485000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981120821, 28.945951770000079 ], [ -81.981129794999958, 28.946717584000055 ], [ -81.981143505999967, 28.946810163000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990440898999964, 28.947237617000042 ], [ -81.990334203999964, 28.947692584000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990334203999964, 28.947692584000038 ], [ -81.990181867999979, 28.948383585000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976286641999934, 28.949362240000028 ], [ -81.976189166999973, 28.948968580000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976597464999941, 28.947970934000068 ], [ -81.977244484999972, 28.947829429000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977861961999963, 28.947636148000072 ], [ -81.977897451, 28.947618467000041 ], [ -81.977929388999939, 28.947602867000057 ], [ -81.977960145999987, 28.947585186000026 ], [ -81.977994451999962, 28.947565424000061 ], [ -81.97802625099996, 28.947549133000052 ], [ -81.978048866999984, 28.947535261000041 ], [ -81.978076075999979, 28.947517581000056 ], [ -81.978104465999934, 28.947499898000046 ], [ -81.978134039999986, 28.947482217000072 ], [ -81.978171895999935, 28.947456213000066 ], [ -81.978208568999946, 28.947429169000031 ], [ -81.978241692999973, 28.947401085000024 ], [ -81.978264170999978, 28.94738028200004 ], [ -81.978289013999984, 28.947360518000039 ], [ -81.978316222999979, 28.947334513000044 ], [ -81.978348164999943, 28.947308509000038 ], [ -81.978377738999939, 28.947285626000053 ], [ -81.978400214999965, 28.947272105000025 ], [ -81.97841914199995, 28.947264825000047 ], [ -81.978439249999951, 28.947260667000023 ], [ -81.978459358999942, 28.947259630000076 ], [ -81.978481830999954, 28.947259634000034 ], [ -81.97849839099996, 28.947263797000062 ], [ -81.978520860999936, 28.947272124000051 ], [ -81.978542149999953, 28.947280450000051 ], [ -81.978567291, 28.947299303000079 ], [ -81.979123398999945, 28.947800751000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979123398999945, 28.947800751000045 ], [ -81.979435132999981, 28.948093523000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976189166999973, 28.948968580000042 ], [ -81.976838567999948, 28.948828243000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977861961999963, 28.947636148000072 ], [ -81.978350312999964, 28.948350963000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975409536999962, 28.94766015600004 ], [ -81.975502023999979, 28.947632707000025 ], [ -81.975608798999986, 28.947590468000044 ], [ -81.975708456999939, 28.947548228000073 ], [ -81.975809892999962, 28.947507551000058 ], [ -81.975916667999968, 28.947468443000048 ], [ -81.976005646999965, 28.947434026000053 ], [ -81.976131994999946, 28.947391789000051 ], [ -81.976269019999961, 28.947349554000027 ], [ -81.976443415999938, 28.947297935000051 ], [ -81.976550186999987, 28.947266651000064 ], [ -81.976628485999981, 28.947246318000055 ], [ -81.976713902999961, 28.947229116000074 ], [ -81.976804657999935, 28.947208785000043 ], [ -81.976898970999969, 28.94719002000005 ], [ -81.976970150999989, 28.947179076000054 ], [ -81.977019975999951, 28.947171258000026 ], [ -81.977069799999981, 28.947163441000043 ], [ -81.977110728999946, 28.947157187000073 ], [ -81.977156994999973, 28.947150934000035 ], [ -81.977201482999988, 28.947144682000044 ], [ -81.977249527999959, 28.947136864000072 ], [ -81.977295794999975, 28.947127481000052 ], [ -81.977343840999936, 28.947116533000042 ], [ -81.977402564999977, 28.947102457000028 ], [ -81.977448831999936, 28.947088378000046 ], [ -81.977491540999949, 28.947075864000055 ], [ -81.977544928999976, 28.947053961000051 ], [ -81.977587638999978, 28.947036752000031 ], [ -81.977637466999965, 28.947011717000066 ], [ -81.977676618999965, 28.946992943000055 ], [ -81.977721323999958, 28.946967415000074 ], [ -81.977767379999989, 28.946942872000079 ], [ -81.977811870999972, 28.946913143000074 ], [ -81.977975602999948, 28.946787959000062 ], [ -81.97818738999996, 28.946611131000054 ], [ -81.978381947999935, 28.946436579000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975179965999985, 28.947073264000039 ], [ -81.975268894999942, 28.947029372000031 ], [ -81.975312577999944, 28.947010171000045 ], [ -81.97536249999996, 28.946989597000027 ], [ -81.975412424999945, 28.94697039700003 ], [ -81.97547794999997, 28.946941595000055 ], [ -81.975565315999972, 28.946905936000064 ], [ -81.975674522999952, 28.946863420000057 ], [ -81.975769688999947, 28.94682913500003 ], [ -81.975843422999958, 28.946803371000044 ], [ -81.975945268999965, 28.946771043000069 ], [ -81.976031553999974, 28.946741200000076 ], [ -81.976122081999961, 28.946715090000055 ], [ -81.97622109799994, 28.946686493000072 ], [ -81.976314453999976, 28.946661628000072 ], [ -81.976413467999976, 28.946638007000047 ], [ -81.97652379799996, 28.94661190100004 ], [ -81.976629883999976, 28.946589525000036 ], [ -81.97671050699995, 28.946574611000074 ], [ -81.976761427999975, 28.94656591100005 ], [ -81.976816591999977, 28.946557211000027 ], [ -81.976864682999974, 28.946549756000024 ], [ -81.976917017999938, 28.946541056000058 ], [ -81.97695945199996, 28.94653359800003 ], [ -81.977014617999941, 28.946521167000071 ], [ -81.977055636999978, 28.946511221000037 ], [ -81.977095242999951, 28.946498787000053 ], [ -81.977154651999967, 28.946478891000027 ], [ -81.977202745999989, 28.946461483000064 ], [ -81.977259327999946, 28.946436611000024 ], [ -81.977321567999979, 28.946406762000038 ], [ -81.977399598999966, 28.946363691000045 ], [ -81.977482121999969, 28.946313856000074 ], [ -81.977560209999979, 28.946258134000061 ], [ -81.977682435999952, 28.946157630000073 ], [ -81.97794683799998, 28.945947380000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978381947999935, 28.946436579000078 ], [ -81.978401631999986, 28.946449281000071 ], [ -81.978437773999985, 28.946473451000031 ], [ -81.978468134999957, 28.946489990000032 ], [ -81.97850572599998, 28.946509072000026 ], [ -81.97855343699996, 28.946531972000059 ], [ -81.978592472999935, 28.946548512000049 ], [ -81.978645966999977, 28.946575228000029 ], [ -81.978700905999972, 28.946601945000054 ], [ -81.978748616999951, 28.946628661000034 ], [ -81.978786204999949, 28.946652831000051 ], [ -81.978823793999936, 28.946677003000048 ], [ -81.978852706999987, 28.946698628000036 ], [ -81.97888306699997, 28.946721525000044 ], [ -81.978919210999948, 28.946750782000038 ], [ -81.978953904999969, 28.946782584000061 ], [ -81.978997275999973, 28.946819472000072 ], [ -81.979034862999981, 28.946852546000059 ], [ -81.979073895999989, 28.94688689000003 ], [ -81.979112929999985, 28.946919964000074 ], [ -81.979929439999978, 28.947679922000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97794683799998, 28.945947380000064 ], [ -81.978130401999977, 28.946164191000037 ], [ -81.97817015399994, 28.946211891000075 ], [ -81.978202677999946, 28.946253231000071 ], [ -81.978218941999955, 28.946275489000072 ], [ -81.978244238999935, 28.946302520000074 ], [ -81.978271344999939, 28.946331140000041 ], [ -81.978300434999937, 28.946364053000025 ], [ -81.978334587999939, 28.946397920000038 ], [ -81.978381947999935, 28.946436579000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977464836999957, 28.945462103000068 ], [ -81.977491440999984, 28.945485513000051 ], [ -81.977533081999979, 28.945519099000023 ], [ -81.97756431199997, 28.945544544000029 ], [ -81.977602481999952, 28.945575079000037 ], [ -81.977632555999946, 28.945602559000065 ], [ -81.977658001999941, 28.945626985000047 ], [ -81.977682290999951, 28.945651411000028 ], [ -81.977712527999984, 28.945678375000057 ], [ -81.977740809999943, 28.945708238000066 ], [ -81.977781818999972, 28.945751788000052 ], [ -81.977814341999988, 28.945787872000039 ], [ -81.977846864999947, 28.945823957000073 ], [ -81.977886459999979, 28.945869995000066 ], [ -81.97794683799998, 28.945947380000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975826833999974, 28.944003298000041 ], [ -81.975867772999948, 28.944049236000069 ], [ -81.975921263999965, 28.944111573000043 ], [ -81.975974754999982, 28.944176453000068 ], [ -81.976019569999949, 28.944232429000067 ], [ -81.976061494999954, 28.944284588000073 ], [ -81.976094744999955, 28.944329113000038 ], [ -81.976127993999967, 28.944373639000048 ], [ -81.976156906999961, 28.944414348000066 ], [ -81.976191601999972, 28.944465233000074 ], [ -81.976213285999961, 28.944499579000023 ], [ -81.976234968999961, 28.944531384000072 ], [ -81.976260988999968, 28.944570820000024 ], [ -81.976293320999957, 28.944617221000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975522401999967, 28.94369978800006 ], [ -81.97558874799995, 28.94376298800006 ], [ -81.975669889999949, 28.943841389000056 ], [ -81.975727719999952, 28.943901819000075 ], [ -81.975776694, 28.943950004000044 ], [ -81.975826833999974, 28.944003298000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974207244999945, 28.942509471000051 ], [ -81.975522401999967, 28.94369978800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973453187999951, 28.942135799000027 ], [ -81.973508147999951, 28.942149835000066 ], [ -81.973544909999987, 28.942158279000068 ], [ -81.973580070999958, 28.942166721000035 ], [ -81.973620027999971, 28.942176571000061 ], [ -81.97367277099994, 28.942190641000025 ], [ -81.973723915999983, 28.942204711000045 ], [ -81.97376387199995, 28.942217373000062 ], [ -81.973808622999968, 28.942232847000071 ], [ -81.973850177999964, 28.942251132000024 ], [ -81.973892977999981, 28.942272010000067 ], [ -81.973935428999937, 28.942296184000043 ], [ -81.973987867999938, 28.942329148000056 ], [ -81.974030317999961, 28.942357715000071 ], [ -81.974085251999952, 28.942399465000051 ], [ -81.974207244999945, 28.942509471000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972862263999957, 28.947662804000061 ], [ -81.973029800999939, 28.947353010000029 ], [ -81.973071516999937, 28.947292998000023 ], [ -81.973099958999967, 28.94725465700003 ], [ -81.973147359999984, 28.947197982000034 ], [ -81.973203612999953, 28.947155336000037 ], [ -81.973270262999961, 28.947106505000079 ], [ -81.973340613999937, 28.947064187000024 ], [ -81.973407080999948, 28.947031312000036 ], [ -81.973482906999948, 28.947002983000061 ], [ -81.973579581999957, 28.946982996000031 ], [ -81.97366108999995, 28.946968008000056 ], [ -81.973807100999977, 28.946956821000072 ], [ -81.973949209999944, 28.946929717000046 ], [ -81.974095167999963, 28.94689306600003 ], [ -81.974214591999953, 28.946853077000071 ], [ -81.974394658999984, 28.94678672200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972544330999938, 28.948229867000066 ], [ -81.972665696999968, 28.948019823000038 ], [ -81.972775685999977, 28.947823114000073 ], [ -81.972862263999957, 28.947662804000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970271959999934, 28.947969664000027 ], [ -81.970432830999982, 28.947987673000057 ], [ -81.970669747999978, 28.948051079000038 ], [ -81.970844113999988, 28.948114471000054 ], [ -81.971033637999938, 28.94820287500005 ], [ -81.971234530999936, 28.948304618000066 ], [ -81.971359615999972, 28.948366332000035 ], [ -81.971463852999989, 28.948419705000049 ], [ -81.971585146999985, 28.948481418000028 ], [ -81.971717812999941, 28.948548134000077 ], [ -81.971973669999954, 28.948678231000031 ], [ -81.97204000399995, 28.94870325200003 ], [ -81.972098761999973, 28.948714936000044 ], [ -81.972149940999941, 28.948711612000068 ], [ -81.97219922499994, 28.94870495300006 ], [ -81.972250408999969, 28.94868662500005 ], [ -81.972294012999953, 28.948658290000026 ], [ -81.972337619999962, 28.948616619000063 ], [ -81.972375547999945, 28.94854827100005 ], [ -81.972443817999988, 28.948426579000056 ], [ -81.972544330999938, 28.948229867000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968425044999947, 28.947288016000073 ], [ -81.968541871999946, 28.947288043000071 ], [ -81.96871224299997, 28.947298786000033 ], [ -81.968885044, 28.947324517000027 ], [ -81.968989693999958, 28.947352371000079 ], [ -81.969091908999985, 28.947386649000066 ], [ -81.96919655399995, 28.94743163000004 ], [ -81.969313364999948, 28.947489459000053 ], [ -81.96943990799997, 28.94756013500006 ], [ -81.969576184999937, 28.947635094000077 ], [ -81.969727066999951, 28.947716480000054 ], [ -81.969858474999967, 28.947793579000063 ], [ -81.970021521999968, 28.947885671000051 ], [ -81.970134118999965, 28.947933771000066 ], [ -81.970271959999934, 28.947969664000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967736244999969, 28.947289993000027 ], [ -81.968184084999962, 28.947294381000063 ], [ -81.968425044999947, 28.947288016000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974295031999986, 28.946052352000038 ], [ -81.974464593999983, 28.945969844000047 ], [ -81.974531121999973, 28.945939330000044 ], [ -81.974593310999978, 28.945912630000066 ], [ -81.974711726999942, 28.945853675000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974711726999942, 28.945853675000023 ], [ -81.974765416999958, 28.94583125500003 ], [ -81.974821819999988, 28.945807098000046 ], [ -81.974876778999942, 28.945782940000072 ], [ -81.97500404799996, 28.945733357000051 ], [ -81.975262923999935, 28.945635462000041 ], [ -81.975359192999974, 28.945597568000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975359192999974, 28.945597568000039 ], [ -81.975408992999974, 28.945582065000053 ], [ -81.975468285999966, 28.945566813000028 ], [ -81.975565182999958, 28.945540118000054 ], [ -81.975688107999986, 28.945505797000067 ], [ -81.975829834999956, 28.945463847000042 ], [ -81.97592528499996, 28.945437153000057 ], [ -81.976029409999967, 28.945411731000036 ], [ -81.976069901999949, 28.945402834000049 ], [ -81.97610750399997, 28.945395209000026 ], [ -81.976145102999965, 28.945386313000029 ], [ -81.976184150999984, 28.945378686000026 ], [ -81.976230427999951, 28.945368520000045 ], [ -81.976276703999986, 28.945359624000048 ], [ -81.976322981999942, 28.945348184000068 ], [ -81.976359137999964, 28.945336742000052 ], [ -81.976395292999939, 28.945325301000025 ], [ -81.976438678999955, 28.945307500000069 ], [ -81.976477727999963, 28.945292244000029 ], [ -81.976515330999973, 28.945273171000053 ], [ -81.976554380999971, 28.945247738000035 ], [ -81.97659198599996, 28.945222304000026 ], [ -81.976632481999957, 28.945193055000061 ], [ -81.976673524999967, 28.945153154000025 ], [ -81.976722339999981, 28.945108643000026 ], [ -81.976768220999986, 28.945057254000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975359192999974, 28.945597568000039 ], [ -81.975280334, 28.94539887600007 ], [ -81.975251134999951, 28.945333497000036 ], [ -81.97522831699996, 28.945285932000047 ], [ -81.975216307999972, 28.945255280000026 ], [ -81.975206700999934, 28.945234141000071 ], [ -81.975200697999981, 28.945217230000026 ], [ -81.975198296999963, 28.945201376000057 ], [ -81.975193497999953, 28.945173897000075 ], [ -81.975194704999979, 28.945150645000069 ], [ -81.975197114999958, 28.945127394000053 ], [ -81.975201926999944, 28.945102029000054 ], [ -81.97520673799994, 28.945079836000048 ], [ -81.97521755799994, 28.945049188000041 ], [ -81.975233184, 28.94502594000005 ], [ -81.975250010999957, 28.94500374900008 ], [ -81.975270441999953, 28.944984728000065 ], [ -81.975293275999945, 28.94496676600005 ], [ -81.975328125999965, 28.944945634000078 ], [ -81.975360570999953, 28.944931901000075 ], [ -81.975408636999987, 28.944912885000065 ], [ -81.97552879999995, 28.94488014500007 ], [ -81.975628534999942, 28.944851626000059 ], [ -81.975747493999961, 28.944823113000041 ], [ -81.975838815999964, 28.944801991000077 ], [ -81.975882074999959, 28.944791430000066 ], [ -81.975924129999953, 28.944780869000056 ], [ -81.975966187999973, 28.944769250000036 ], [ -81.976008244999946, 28.944756576000032 ], [ -81.976055108999958, 28.944738616000052 ], [ -81.976109184999984, 28.944712204000041 ], [ -81.976152445999958, 28.944690017000028 ], [ -81.976195705999942, 28.944667831000061 ], [ -81.976293320999957, 28.944617221000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974711726999942, 28.945853675000023 ], [ -81.974645407999958, 28.945761273000073 ], [ -81.974616493999974, 28.945724381000048 ], [ -81.974587582999959, 28.945682400000067 ], [ -81.97456589899997, 28.945650596000064 ], [ -81.974547105999989, 28.945623880000028 ], [ -81.974526868999988, 28.945594621000055 ], [ -81.974508076999939, 28.945560273000069 ], [ -81.974482056999989, 28.945518293000077 ], [ -81.974458928999979, 28.945480130000078 ], [ -81.974441582999987, 28.945447054000056 ], [ -81.974422794999953, 28.945410163000076 ], [ -81.974408338999979, 28.945382177000056 ], [ -81.974393886999962, 28.945347831000049 ], [ -81.974379434999946, 28.945312212000033 ], [ -81.974363536999988, 28.945272779000049 ], [ -81.974353421999979, 28.945240976000036 ], [ -81.97434186199996, 28.945207903000039 ], [ -81.974331745999962, 28.945177373000035 ], [ -81.974323077999941, 28.945146843000032 ], [ -81.974312962999988, 28.945112499000061 ], [ -81.974304294999968, 28.945081969000057 ], [ -81.974297070999967, 28.945052712000063 ], [ -81.974288402999946, 28.945019638000076 ], [ -81.974282626, 28.944987837000042 ], [ -81.974276849999967, 28.944957309000074 ], [ -81.974273963999963, 28.944931869000072 ], [ -81.974269632999949, 28.944898796000075 ], [ -81.974265303999971, 28.944863180000027 ], [ -81.974262420999935, 28.944825019000064 ], [ -81.974258092999946, 28.944785587000069 ], [ -81.974256654999976, 28.944752515000062 ], [ -81.97425521699995, 28.944718172000023 ], [ -81.974255225999968, 28.944682557000078 ], [ -81.974255232999951, 28.944653300000027 ], [ -81.974256946999958, 28.944624986000065 ], [ -81.974258802999941, 28.944605448000061 ], [ -81.974263433999965, 28.944585912000036 ], [ -81.974267140999984, 28.944572073000074 ], [ -81.974272696999947, 28.944555793000063 ], [ -81.974280103999945, 28.94454358400003 ], [ -81.974289361999979, 28.944531374000064 ], [ -81.974300471999982, 28.944519165000031 ], [ -81.974313429999938, 28.944509399000026 ], [ -81.974330091999946, 28.944497191000039 ], [ -81.974347678999948, 28.944486611000059 ], [ -81.974368968999954, 28.944474405000051 ], [ -81.974388405999946, 28.944465454000067 ], [ -81.974408768999979, 28.944458131000033 ], [ -81.97443005599996, 28.944453250000038 ], [ -81.97446615299998, 28.94444674500005 ], [ -81.97450317199997, 28.944444310000051 ], [ -81.974558703999946, 28.944441877000031 ], [ -81.974629967999988, 28.944434564000062 ], [ -81.974685499999964, 28.944428062000043 ], [ -81.974725296999964, 28.944421557000055 ], [ -81.974774349999961, 28.944414240000071 ], [ -81.974812296999971, 28.944406106000031 ], [ -81.974857648999944, 28.944396346000076 ], [ -81.974901148999948, 28.944388213000025 ], [ -81.97494927799994, 28.944377639000038 ], [ -81.974993703999985, 28.944367065000051 ], [ -81.975032576999979, 28.944358117000036 ], [ -81.975083481999945, 28.944345916000032 ], [ -81.975119578999966, 28.944336153000052 ], [ -81.975162154999964, 28.944322322000062 ], [ -81.975207506999936, 28.944306049000033 ], [ -81.975248232999945, 28.944293032000076 ], [ -81.975290807999954, 28.944278387000054 ], [ -81.975338937999936, 28.944258043000048 ], [ -81.975372259999972, 28.944244209000033 ], [ -81.97540743199994, 28.944227935000072 ], [ -81.975442604999955, 28.944214102000046 ], [ -81.975478702999965, 28.944197012000075 ], [ -81.975524982999957, 28.944175856000072 ], [ -81.975591625999982, 28.944145748000039 ], [ -81.97566104699996, 28.944108313000072 ], [ -81.975730467999938, 28.944065180000052 ], [ -81.975826833999974, 28.944003298000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971913771999937, 28.945863957000029 ], [ -81.972061613999983, 28.945873990000052 ], [ -81.972241676999943, 28.945890700000064 ], [ -81.972514622999938, 28.945884087000024 ], [ -81.972671946999981, 28.945869114000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972671946999981, 28.945869114000061 ], [ -81.972743975999947, 28.945859126000073 ], [ -81.972961963999978, 28.945812488000058 ], [ -81.973210286999972, 28.945737512000051 ], [ -81.973482829999966, 28.945643115000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971272835999969, 28.946872487000064 ], [ -81.971493499999951, 28.946978615000035 ], [ -81.971740867999983, 28.94710036400005 ], [ -81.972058967999942, 28.947263037000027 ], [ -81.972197697999945, 28.947332834000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972197697999945, 28.947332834000065 ], [ -81.972365150999963, 28.947415392000039 ], [ -81.972580530999949, 28.947524642000076 ], [ -81.972862263999957, 28.947662804000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975638524999965, 28.942201503000035 ], [ -81.975691735999987, 28.942242474000068 ], [ -81.975867318999974, 28.942411033000042 ], [ -81.976028273999987, 28.942555010000035 ], [ -81.976141342999938, 28.942656849000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975638524999965, 28.942201503000035 ], [ -81.975686434999943, 28.942152359000033 ], [ -81.975755629999981, 28.942102047000049 ], [ -81.975828816999979, 28.942062269000076 ], [ -81.975939256999936, 28.942018986000051 ], [ -81.976153479999937, 28.941942954000069 ], [ -81.976788169999963, 28.941707830000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976141342999938, 28.942656849000059 ], [ -81.976205194999977, 28.942703674000029 ], [ -81.976274373999956, 28.942734114000075 ], [ -81.976359514999956, 28.942773920000036 ], [ -81.976427357999967, 28.942826597000078 ], [ -81.976504313999953, 28.942889083000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972926854999969, 28.943595920000064 ], [ -81.972986554999977, 28.943638798000052 ], [ -81.973019618999956, 28.943662076000066 ], [ -81.973047393999934, 28.943680699000026 ], [ -81.973077814999954, 28.943700486000068 ], [ -81.973117492999961, 28.943724929000041 ], [ -81.97313468599998, 28.943735405000041 ], [ -81.973161139999945, 28.943750536000039 ], [ -81.973184947999982, 28.943763341000079 ], [ -81.973208753999984, 28.943777307000062 ], [ -81.973247111999967, 28.943797096000026 ], [ -81.973282822999977, 28.943814556000063 ], [ -81.973314566999989, 28.94382969000003 ], [ -81.973343665999948, 28.943842495000069 ], [ -81.973378055999945, 28.943856464000078 ], [ -81.973412444999951, 28.943871598000044 ], [ -81.973456093999971, 28.943890223000039 ], [ -81.973501066999972, 28.943907685000056 ], [ -81.973536778999971, 28.94391932800005 ], [ -81.973577784999975, 28.943932135000068 ], [ -81.973605561999989, 28.943940286000043 ], [ -81.973637307, 28.943949601000043 ], [ -81.973687570999971, 28.943964738000034 ], [ -81.973735189999957, 28.943977546000042 ], [ -81.973788100999968, 28.943990355000039 ], [ -81.973871434999978, 28.944006663000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973871434999978, 28.944006663000039 ], [ -81.973916408999969, 28.944013652000024 ], [ -81.973957415999962, 28.94401947800003 ], [ -81.974005035999937, 28.944024142000046 ], [ -81.974059271999977, 28.944029969000042 ], [ -81.974109537999936, 28.944033471000068 ], [ -81.974161127999935, 28.944035807000034 ], [ -81.974227266999947, 28.944040475000065 ], [ -81.97428414999996, 28.944040486000063 ], [ -81.974360873999956, 28.944040500000028 ], [ -81.974401881999938, 28.944038180000064 ], [ -81.974505065999949, 28.944030054000052 ], [ -81.974617507999938, 28.94402076800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975765500999955, 28.94012996500004 ], [ -81.975008405999972, 28.940300676000049 ], [ -81.974420296999938, 28.940428368000028 ], [ -81.973939993999977, 28.940529687000037 ], [ -81.973930883999969, 28.940529686000048 ], [ -81.973924304999969, 28.940530129000024 ], [ -81.973914689999958, 28.940529683000079 ], [ -81.973907099999963, 28.940529236000032 ], [ -81.973899003999975, 28.940529234000053 ], [ -81.973891413999979, 28.940527897000038 ], [ -81.973883316999945, 28.940526560000023 ], [ -81.973877244999983, 28.940524334000031 ], [ -81.973870665999982, 28.940522997000073 ], [ -81.973863582999968, 28.940520769000045 ], [ -81.973854979999942, 28.940518542000063 ], [ -81.973847895999938, 28.940515425000058 ], [ -81.973839294999948, 28.940511417000039 ], [ -81.973832209999955, 28.940508745000045 ], [ -81.973822090999988, 28.940503401000058 ], [ -81.973815007999974, 28.940498949000073 ], [ -81.973807418999968, 28.940494941000054 ], [ -81.973800839999967, 28.940490043000068 ], [ -81.973795275999976, 28.940485591000026 ], [ -81.973788696999975, 28.940480247000039 ], [ -81.973782676999974, 28.940474771000027 ], [ -81.973777820999942, 28.940471210000055 ], [ -81.973772963999977, 28.940467647000048 ], [ -81.973768510999946, 28.940464085000031 ], [ -81.973764057999972, 28.940460524000059 ], [ -81.973760416999937, 28.940456961000052 ], [ -81.973755558999983, 28.940453043000048 ], [ -81.973750701999961, 28.940449125000043 ], [ -81.973746654999957, 28.940445564000072 ], [ -81.973741392999955, 28.940441644000032 ], [ -81.973734778999983, 28.940436053000042 ], [ -81.973448563999966, 28.940167796000026 ], [ -81.973393903999977, 28.940115450000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973393903999977, 28.940115450000064 ], [ -81.973319696999965, 28.940051812000036 ], [ -81.972584390999941, 28.93938809000008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976763993999953, 28.940940493000028 ], [ -81.97719639099995, 28.940705949000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97719639099995, 28.940705949000062 ], [ -81.97774487199996, 28.940402163000044 ], [ -81.97852353899998, 28.939978521000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97852353899998, 28.939978521000057 ], [ -81.978667733999941, 28.94017993600005 ], [ -81.978694580999957, 28.940213228000061 ], [ -81.978719689999934, 28.940247949000025 ], [ -81.97873941499995, 28.940292137000029 ], [ -81.978750170999945, 28.94033001300005 ], [ -81.978757339999959, 28.940367887000036 ], [ -81.978760918999967, 28.940404184000045 ], [ -81.978760910999938, 28.940442057000041 ], [ -81.978760894999937, 28.940520961000061 ], [ -81.978759092999951, 28.940566724000064 ], [ -81.978760873999988, 28.940625113000067 ], [ -81.978760861999945, 28.94068350200007 ], [ -81.978758941999956, 28.941308415000037 ], [ -81.978749855, 28.941881251000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97875331399996, 28.942510900000059 ], [ -81.978757401999985, 28.942982079000046 ], [ -81.978755202999935, 28.942997045000027 ], [ -81.97875025999997, 28.943009595000035 ], [ -81.978744220999943, 28.943024078000064 ], [ -81.978737631999934, 28.943035181000027 ], [ -81.978729395999949, 28.943045801000039 ], [ -81.97872061299995, 28.943056902000023 ], [ -81.978710732999957, 28.943068004000054 ], [ -81.978699204999941, 28.94307765800005 ], [ -81.978690969999946, 28.943084416000033 ], [ -81.978678344999935, 28.943093587000078 ], [ -81.978661877999969, 28.943103239000038 ], [ -81.978650349999953, 28.943109997000079 ], [ -81.978638273999934, 28.943115305000049 ], [ -81.978627844999949, 28.943120614000065 ], [ -81.978616866999971, 28.943125440000074 ], [ -81.978605340999934, 28.943129784000064 ], [ -81.978593814999954, 28.943133161000048 ], [ -81.978583385999968, 28.943135573000063 ], [ -81.978574054999967, 28.943136537000044 ], [ -81.978563625999982, 28.943137983000042 ], [ -81.978552100999934, 28.943138465000061 ], [ -81.978539477999959, 28.943139429000041 ], [ -81.978528499999982, 28.94313991000007 ], [ -81.978513681999971, 28.943139907000045 ], [ -81.978397325999936, 28.943139889000065 ], [ -81.978098755999952, 28.943139841000061 ], [ -81.97808338699997, 28.943140321000044 ], [ -81.978068567999969, 28.943140318000076 ], [ -81.978053200999966, 28.943140799000048 ], [ -81.97803947899996, 28.943143210000073 ], [ -81.978026923999948, 28.943145561000051 ], [ -81.978011142999947, 28.943151593000039 ], [ -81.977998792999983, 28.943157022000037 ], [ -81.977984384999957, 28.943165469000064 ], [ -81.977968601999976, 28.943175122000071 ], [ -81.977952820999974, 28.943184774000031 ], [ -81.977942527999971, 28.943192014000033 ], [ -81.977933609, 28.943198048000056 ], [ -81.977925374999984, 28.943204081000033 ], [ -81.977918512999963, 28.943209510000031 ], [ -81.977912338999943, 28.943214338000075 ], [ -81.977906848999964, 28.943217957000059 ], [ -81.977901359999976, 28.943222180000078 ], [ -81.97789312499998, 28.943228214000044 ], [ -81.977883517999942, 28.943235453000057 ], [ -81.977874598999961, 28.943240884000033 ], [ -81.977866364999954, 28.943248728000071 ], [ -81.977856071999952, 28.943255967000027 ], [ -81.97784646599996, 28.94326260400004 ], [ -81.977835487999982, 28.943270447000032 ], [ -81.977823821999948, 28.943280100000038 ], [ -81.977810784999974, 28.943289754000034 ], [ -81.977800491999972, 28.943298201000061 ], [ -81.977788826999983, 28.943308458000047 ], [ -81.977777161999938, 28.943319922000057 ], [ -81.977764810999986, 28.943331989000058 ], [ -81.977484849999939, 28.943560656000045 ], [ -81.977471126999944, 28.943569706000062 ], [ -81.977458775999935, 28.943576343000075 ], [ -81.977443681999944, 28.943581771000026 ], [ -81.977429959999938, 28.943585993000056 ], [ -81.977416237999989, 28.94358900800006 ], [ -81.977402515999984, 28.943591420000075 ], [ -81.977386735999971, 28.943593831000044 ], [ -81.977370955999959, 28.943595638000033 ], [ -81.977357235999989, 28.943595033000065 ], [ -81.977342141999941, 28.943593823000072 ], [ -81.977329793999957, 28.943592011000078 ], [ -81.977318816999968, 28.943590198000038 ], [ -81.977308526999934, 28.943587179000076 ], [ -81.97729686699995, 28.943583557000068 ], [ -81.977287946999979, 28.943579935000059 ], [ -81.977277656999945, 28.943575708000026 ], [ -81.977265308999961, 28.94357027500007 ], [ -81.977251588999934, 28.943563031000053 ], [ -81.977239241999939, 28.943555788000026 ], [ -81.977226208, 28.943548543000077 ], [ -81.977215231999935, 28.943541301000039 ], [ -81.977200140999969, 28.94353103900005 ], [ -81.977181620999943, 28.943516552000062 ], [ -81.977148695999972, 28.943488183000056 ], [ -81.977121944999965, 28.943464040000038 ], [ -81.977081476999956, 28.943426620000025 ], [ -81.977023174999943, 28.943368073000045 ], [ -81.976841387999968, 28.943193992000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976841387999968, 28.943193992000033 ], [ -81.97663446699994, 28.943016156000056 ], [ -81.976504313999953, 28.942889083000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977748663999989, 28.941879911000058 ], [ -81.978749855, 28.941881251000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977608508999936, 28.942420534000064 ], [ -81.977775574999953, 28.942487071000073 ], [ -81.977822218999961, 28.942496547000076 ], [ -81.977881418999971, 28.942506025000057 ], [ -81.97875331399996, 28.942510900000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97719639099995, 28.940705949000062 ], [ -81.977599872999974, 28.941275073000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977599872999974, 28.941275073000043 ], [ -81.977618724999957, 28.941315159000055 ], [ -81.977627687999984, 28.941336845000023 ], [ -81.977635611999972, 28.941360557000053 ], [ -81.977646797999967, 28.941383917000053 ], [ -81.977657783999973, 28.94141292300003 ], [ -81.977669988999935, 28.941447302000029 ], [ -81.977682192999964, 28.941485976000024 ], [ -81.977695578999942, 28.941532205000044 ], [ -81.977708925999934, 28.941580884000075 ], [ -81.977720365999971, 28.941622849000055 ], [ -81.977729898999939, 28.941661457000066 ], [ -81.977737521999984, 28.941706778000025 ], [ -81.977743235999981, 28.941758812000046 ], [ -81.977748949999977, 28.941810848000046 ], [ -81.977748663999989, 28.941879911000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977748663999989, 28.941879911000058 ], [ -81.977738027999976, 28.942016465000052 ], [ -81.977730385999962, 28.94206211900007 ], [ -81.977721216999953, 28.942106430000024 ], [ -81.97771204999998, 28.94214402700004 ], [ -81.977701354999965, 28.942182967000065 ], [ -81.97768760699995, 28.942225936000057 ], [ -81.977670804999946, 28.942275617000064 ], [ -81.977652474999957, 28.942319927000028 ], [ -81.977637200999936, 28.942360207000036 ], [ -81.977624981999952, 28.942389748000039 ], [ -81.977608508999936, 28.942420534000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977608508999936, 28.942420534000064 ], [ -81.977531316999944, 28.942543345000047 ], [ -81.977478019999978, 28.942617677000044 ], [ -81.977435750999973, 28.942666153000062 ], [ -81.977389807999941, 28.942716244000053 ], [ -81.977353052999945, 28.942756641000074 ], [ -81.977312625999957, 28.942792190000034 ], [ -81.977261171999942, 28.942837432000033 ], [ -81.977228094999987, 28.942864899000028 ], [ -81.977198692999934, 28.942889137000066 ], [ -81.977156429, 28.942919835000055 ], [ -81.976841387999968, 28.943193992000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975765500999955, 28.94012996500004 ], [ -81.975749733999976, 28.940069549000043 ], [ -81.975744107999958, 28.940048994000051 ], [ -81.975739002999944, 28.94003176700005 ], [ -81.975734919999979, 28.940016513000046 ], [ -81.975730969999972, 28.94000260100006 ], [ -81.975727021999944, 28.939987821000045 ], [ -81.975725392999948, 28.939975588000038 ], [ -81.975724061999983, 28.939959130000034 ], [ -81.975724064999952, 28.939944350000076 ], [ -81.975724068999966, 28.939928700000053 ], [ -81.975725060999935, 28.939914791000035 ], [ -81.975726206, 28.939903775000062 ], [ -81.97572901999996, 28.939888709000058 ], [ -81.975732361999974, 28.939874029000066 ], [ -81.97573693399994, 28.939858281000056 ], [ -81.975742866999951, 28.939846110000076 ], [ -81.97574876799996, 28.939833467000028 ], [ -81.975755721999974, 28.939819161000059 ], [ -81.975763119999954, 28.93980822900005 ], [ -81.975770553999951, 28.939794821000078 ], [ -81.975779450999937, 28.939780911000071 ], [ -81.975787361999949, 28.939767003000043 ], [ -81.975795271999971, 28.939753962000054 ], [ -81.975803180999947, 28.939740054000026 ], [ -81.97581405699998, 28.939724407000028 ], [ -81.975824630999966, 28.939706376000061 ], [ -81.975833832999967, 28.93968615600005 ], [ -81.975842732999979, 28.939666162000037 ], [ -81.975850642999944, 28.939649644000042 ], [ -81.975859542999956, 28.939631388000066 ], [ -81.975867454999957, 28.939611392000074 ], [ -81.975875365999968, 28.939590528000053 ], [ -81.975881300999959, 28.939568795000071 ], [ -81.975887236999938, 28.939550538000049 ], [ -81.975894159999939, 28.93952706500005 ], [ -81.975900094999986, 28.939507940000055 ], [ -81.975905039999986, 28.939487075000045 ], [ -81.975911964999966, 28.939460994000058 ], [ -81.975915924999981, 28.939435782000032 ], [ -81.975921582999945, 28.939403828000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967715796999983, 28.940025778000063 ], [ -81.967761890999952, 28.940072806000046 ], [ -81.967794038999955, 28.940104871000074 ], [ -81.967828328999985, 28.940135051000027 ], [ -81.967921378999961, 28.940165553000043 ], [ -81.968264486999942, 28.940250202000072 ], [ -81.968595736999987, 28.940342666000049 ], [ -81.968750076999982, 28.940384188000053 ], [ -81.968825107999976, 28.940384205000043 ], [ -81.968874416999938, 28.940378559000067 ], [ -81.968979474999969, 28.940338983000061 ], [ -81.969403990999979, 28.94017124800007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969403990999979, 28.94017124800007 ], [ -81.969547640999963, 28.940110936000053 ], [ -81.969740602999934, 28.940033664000055 ], [ -81.96993570799998, 28.939958277000073 ], [ -81.970070777999979, 28.939914935000047 ], [ -81.970153881999977, 28.939899295000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970153881999977, 28.939899295000032 ], [ -81.970267408999973, 28.939875658000062 ], [ -81.97041246799995, 28.939820016000056 ], [ -81.970616568999958, 28.939727806000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970616568999958, 28.939727806000064 ], [ -81.970630915999948, 28.939749178000056 ], [ -81.970648575999974, 28.939771521000068 ], [ -81.97066388099995, 28.939791757000023 ], [ -81.970677850999948, 28.939812220000078 ], [ -81.970692725999982, 28.939834664000045 ], [ -81.970705969999983, 28.939855064000028 ], [ -81.970722526999964, 28.939873522000028 ], [ -81.970745707999981, 28.939901693000024 ], [ -81.97075343399996, 28.939911408000057 ], [ -81.97076336799995, 28.939921122000044 ], [ -81.970772199999942, 28.939929868000036 ], [ -81.970781029999955, 28.939939582000079 ], [ -81.970798692999949, 28.939956098000039 ], [ -81.970819665999954, 28.939972614000055 ], [ -81.970830704999969, 28.939983301000041 ], [ -81.970845057999952, 28.939993987000037 ], [ -81.970860512999934, 28.940005646000031 ], [ -81.970868239999959, 28.940012446000026 ], [ -81.970875967999973, 28.940017305000026 ], [ -81.970881486999986, 28.940022163000037 ], [ -81.970901358999981, 28.940034793000052 ], [ -81.970915709999986, 28.940044509000074 ], [ -81.970931165999957, 28.94005519600006 ], [ -81.970948828999951, 28.940065884000035 ], [ -81.970970909999949, 28.940078516000028 ], [ -81.97100071899996, 28.940092120000031 ], [ -81.971027214999935, 28.940104752000025 ], [ -81.971053711999957, 28.940116414000045 ], [ -81.971075791999965, 28.940126131000056 ], [ -81.971105602999955, 28.940135851000036 ], [ -81.971132101999956, 28.940143626000065 ], [ -81.971157494999943, 28.940149459000054 ], [ -81.971175160999962, 28.940154320000033 ], [ -81.97118730699998, 28.940156265000041 ], [ -81.971196138999971, 28.94015723900003 ], [ -81.971207179999965, 28.940158211000039 ], [ -81.971219325999982, 28.940159186000074 ], [ -81.971231472999989, 28.940161131000025 ], [ -81.971246930999939, 28.940163076000033 ], [ -81.971261283999979, 28.940164051000068 ], [ -81.971274533999974, 28.940165024000066 ], [ -81.971288887999947, 28.940166971000053 ], [ -81.971304345999954, 28.940167945000042 ], [ -81.971318699999983, 28.940167948000067 ], [ -81.971329741999966, 28.940167950000045 ], [ -81.971341887999984, 28.940167953000071 ], [ -81.971351824999942, 28.940167955000049 ], [ -81.971368388999963, 28.940167959000064 ], [ -81.971381637999968, 28.940167961000043 ], [ -81.971394888999953, 28.940167964000068 ], [ -81.971403721999934, 28.940167966000047 ], [ -81.971423595999966, 28.940167970000061 ], [ -81.971444576999943, 28.940166033000025 ], [ -81.971464452999953, 28.940165065000031 ], [ -81.971485433999987, 28.940162156000042 ], [ -81.971510829999943, 28.940156333000061 ], [ -81.971531810999977, 28.940152452000063 ], [ -81.971553895999989, 28.940147602000025 ], [ -81.971588127999951, 28.940137896000067 ], [ -81.971616838999978, 28.940128188000074 ], [ -81.971643342999982, 28.940118482000059 ], [ -81.971669844999951, 28.940108774000066 ], [ -81.971691931999942, 28.940098095000053 ], [ -81.971716225999955, 28.94008741600004 ], [ -81.971737207999979, 28.940078679000067 ], [ -81.971761501999936, 28.940067030000023 ], [ -81.97177917199997, 28.940057320000051 ], [ -81.971795322999981, 28.940047246000063 ], [ -81.971835356999975, 28.940021759000047 ], [ -81.972156294999934, 28.939757395000072 ], [ -81.972584390999941, 28.93938809000008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972584390999941, 28.93938809000008 ], [ -81.972609839999961, 28.939361366000071 ], [ -81.972616200999937, 28.939353286000028 ], [ -81.972624684999971, 28.939342099000044 ], [ -81.97263387299995, 28.939329669000074 ], [ -81.972638822999954, 28.939322211000047 ], [ -81.972649426999965, 28.939308537000045 ], [ -81.972657201999937, 28.93929797100003 ], [ -81.972663565999937, 28.939286161000041 ], [ -81.972670634999986, 28.939274973000067 ], [ -81.97267699799994, 28.939261922000071 ], [ -81.972681947999945, 28.939253841000038 ], [ -81.972689017999983, 28.939239545000078 ], [ -81.972696230999986, 28.939222700000073 ], [ -81.97270188799996, 28.939209274000063 ], [ -81.972706412999969, 28.93919783900003 ], [ -81.972710938999967, 28.939185903000066 ], [ -81.972717159999945, 28.939172976000066 ], [ -81.972723383999949, 28.939158057000043 ], [ -81.972729038999944, 28.939146123000057 ], [ -81.972735262999947, 28.939131704000033 ], [ -81.972739222999962, 28.939117284000076 ], [ -81.972742053, 28.939105845000029 ], [ -81.972743750999939, 28.939095403000067 ], [ -81.97274545199997, 28.939083965000066 ], [ -81.972746583999935, 28.939073522000058 ], [ -81.972746586999961, 28.939060593000079 ], [ -81.972746590999975, 28.939048160000027 ], [ -81.972746592999954, 28.939040203000047 ], [ -81.972746595, 28.939029760000039 ], [ -81.972746597999958, 28.939019814000062 ], [ -81.972746600999983, 28.939007382000057 ], [ -81.972746603999951, 28.938995447000025 ], [ -81.972746606999976, 28.938985004000074 ], [ -81.972746609999945, 28.938973069000042 ], [ -81.97274661299997, 28.938962128000071 ], [ -81.972746616999984, 28.938949198000046 ], [ -81.972746619999953, 28.938935771000047 ], [ -81.972746622999978, 28.938925328000039 ], [ -81.972746060999953, 28.93891190100004 ], [ -81.972745499999974, 28.938897977000067 ], [ -81.972744371999966, 28.938881565000031 ], [ -81.972742115999949, 28.938865651000071 ], [ -81.972740987999941, 28.938856700000031 ], [ -81.972738235999941, 28.93884607800004 ], [ -81.972698961999981, 28.938728200000071 ], [ -81.972680127999979, 28.938671858000077 ], [ -81.972655562999989, 28.938587871000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972146638999959, 28.935824115000059 ], [ -81.972164202999977, 28.935770193000053 ], [ -81.972175236999988, 28.935729867000077 ], [ -81.972187148999978, 28.935700547000067 ], [ -81.972208592999948, 28.935643999000035 ], [ -81.972224080999979, 28.935606300000074 ], [ -81.972239069999944, 28.935570422000069 ], [ -81.972249097999963, 28.935542422000026 ], [ -81.972264582999969, 28.935507866000023 ], [ -81.972278878999987, 28.935472262000076 ], [ -81.972293171999979, 28.935441893000075 ], [ -81.972307892999936, 28.935411134000049 ], [ -81.972327714999949, 28.935375922000048 ], [ -81.972361965999937, 28.935320237000042 ], [ -81.97240512999997, 28.935252362000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97240512999997, 28.935252362000028 ], [ -81.972414657999934, 28.935234560000026 ], [ -81.972424186999945, 28.935218853000038 ], [ -81.972433713999976, 28.935206288000074 ], [ -81.972446814999955, 28.93518744000005 ], [ -81.972465869999951, 28.935162309000077 ], [ -81.972488496999972, 28.935131942000055 ], [ -81.972513504999938, 28.935100529000067 ], [ -81.972533751999947, 28.935073306000049 ], [ -81.972555188999934, 28.935045033000051 ], [ -81.972579005999989, 28.935015715000077 ], [ -81.972604608999973, 28.934985454000071 ], [ -81.972635094999987, 28.934952786000053 ], [ -81.972662720999949, 28.934926819000054 ], [ -81.972688441999935, 28.934902529000055 ], [ -81.972716068999944, 28.934875724000051 ], [ -81.972746553999968, 28.934846406000077 ], [ -81.972775132999971, 28.934819602000061 ], [ -81.972800852999967, 28.934796987000027 ], [ -81.972831594999946, 28.934770724000032 ], [ -81.972862278999969, 28.934747698000024 ], [ -81.972948979999956, 28.934687304000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969827714999951, 28.935342073000072 ], [ -81.969777660999966, 28.935452070000053 ], [ -81.969761623999943, 28.935498820000078 ], [ -81.969766868999955, 28.935606080000071 ], [ -81.969782792, 28.935951578000072 ], [ -81.969814460999942, 28.936572790000071 ], [ -81.969846145999952, 28.937146902000052 ], [ -81.969872683999938, 28.937273074000075 ], [ -81.969904518999954, 28.937324303000025 ], [ -81.969973481999943, 28.937375886000041 ], [ -81.97015909299995, 28.937446057000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968402595999976, 28.935369552000054 ], [ -81.968497537999951, 28.935337581000056 ], [ -81.968613793999964, 28.935316268000065 ], [ -81.968747959999973, 28.935302637000063 ], [ -81.96905044, 28.935288612000079 ], [ -81.969390240999985, 28.935269782000034 ], [ -81.969549490999952, 28.935265349000076 ], [ -81.969671414999937, 28.935279472000047 ], [ -81.969777699999952, 28.935316623000062 ], [ -81.969827714999951, 28.935342073000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969827714999951, 28.935342073000072 ], [ -81.969889059999957, 28.935372683000026 ], [ -81.97003773299997, 28.935461411000063 ], [ -81.970202226999959, 28.935569050000026 ], [ -81.970334885999989, 28.935625114000061 ], [ -81.970431207, 28.935659857000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973040633999972, 28.937254654000071 ], [ -81.973879428999965, 28.937256714000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974313452999979, 28.934010577000038 ], [ -81.974351388999935, 28.93397243000004 ], [ -81.974366633999978, 28.933958338000025 ], [ -81.97438767999995, 28.933937944000036 ], [ -81.974405096999988, 28.933921017000046 ], [ -81.974423430999934, 28.933906507000074 ], [ -81.974442679999981, 28.933890387000076 ], [ -81.97446834699997, 28.933871042000078 ], [ -81.974492178999981, 28.933854922000023 ], [ -81.974514178999982, 28.933839609000074 ], [ -81.974541675999944, 28.933822682000027 ], [ -81.974571924999964, 28.93380817600007 ], [ -81.974600337999959, 28.933796088000065 ], [ -81.974628750999955, 28.933784807000052 ], [ -81.974653499999988, 28.933774330000062 ], [ -81.974680079999985, 28.93376627300006 ], [ -81.974713991999977, 28.933758216000058 ], [ -81.97474607099997, 28.933750967000037 ], [ -81.97477906599994, 28.933746137000071 ], [ -81.974820306999959, 28.933741306000059 ], [ -81.974847802999989, 28.933738893000054 ], [ -81.974876213999949, 28.933738898000058 ], [ -81.974900958999967, 28.933739708000076 ], [ -81.974924786999964, 28.933740520000072 ], [ -81.97495319799998, 28.933743750000076 ], [ -81.974974274999965, 28.933746978000045 ], [ -81.974997186999985, 28.933751014000052 ], [ -81.97502009699997, 28.933756662000064 ], [ -81.975042090999978, 28.933762310000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970458398999938, 28.929345763000072 ], [ -81.970404435999967, 28.929367112000079 ], [ -81.970385546999978, 28.929383721000079 ], [ -81.970361257999969, 28.929407451000031 ], [ -81.970342365999954, 28.92943118200003 ], [ -81.970331568999939, 28.929450166000038 ], [ -81.970318071999941, 28.929478644000028 ], [ -81.970312666999973, 28.929509498000073 ], [ -81.97031265399994, 28.929554593000034 ], [ -81.97032072899998, 28.929625798000075 ], [ -81.970376134999981, 28.929979611000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970843343999945, 28.932398076000027 ], [ -81.970934983999939, 28.932725629000061 ], [ -81.970996973999945, 28.932948745000033 ], [ -81.971034705999955, 28.933091158000025 ], [ -81.971069756999952, 28.933178983000062 ], [ -81.971112904999984, 28.933252569000047 ], [ -81.971150657999942, 28.933319033000032 ], [ -81.971293609999975, 28.933468590000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971293609999975, 28.933468590000075 ], [ -81.971250422999958, 28.933535036000023 ], [ -81.971237126999938, 28.933564156000045 ], [ -81.971225789999949, 28.933580655000071 ], [ -81.971220512999935, 28.933589249000079 ], [ -81.971215234999988, 28.93359749800004 ], [ -81.97121015099998, 28.933606091000058 ], [ -81.97120526499998, 28.933614684000077 ], [ -81.971200572999976, 28.933623278000027 ], [ -81.971196075999956, 28.933632215000046 ], [ -81.971191775999955, 28.933640809000053 ], [ -81.971187669999949, 28.933649745000025 ], [ -81.971183563999944, 28.933658683000033 ], [ -81.971179849999942, 28.933667964000051 ], [ -81.971175155999958, 28.93367965300007 ], [ -81.971169876999966, 28.933692370000074 ], [ -81.971165965999944, 28.933701652000025 ], [ -81.971162055999969, 28.933710590000032 ], [ -81.971157754999979, 28.933719183000051 ], [ -81.971153452999943, 28.933728120000069 ], [ -81.971148761999984, 28.933736714000077 ], [ -81.97114406999998, 28.933745650000048 ], [ -81.971139182999934, 28.933754243000067 ], [ -81.971134100999961, 28.933762494000064 ], [ -81.971128821999969, 28.933771087000025 ], [ -81.971123348999981, 28.933779336000043 ], [ -81.971117874999948, 28.933787586000051 ], [ -81.971112206999976, 28.933795835000069 ], [ -81.971106146999944, 28.93380408400003 ], [ -81.971100087999957, 28.933811990000038 ], [ -81.971094028999971, 28.933819895000056 ], [ -81.97108757899997, 28.933827801000064 ], [ -81.97108112799998, 28.933835362000025 ], [ -81.971074287999954, 28.933842924000032 ], [ -81.97106744599995, 28.93385048500005 ], [ -81.971060604999934, 28.933858047000058 ], [ -81.971053372999961, 28.933865265000065 ], [ -81.971046140999988, 28.933872483000073 ], [ -81.971038714999963, 28.933879357000023 ], [ -81.971031287999949, 28.933886231000031 ], [ -81.971023469999977, 28.933893105000038 ], [ -81.971015652999938, 28.933899979000046 ], [ -81.971007834999966, 28.933906508000064 ], [ -81.97099962599998, 28.933913038000071 ], [ -81.970991417999983, 28.933919224000078 ], [ -81.97098320899994, 28.933925755000075 ], [ -81.970974610999974, 28.933931596000036 ], [ -81.970966010999973, 28.933937783000033 ], [ -81.97095741399994, 28.93394362500004 ], [ -81.970948618999955, 28.933949124000037 ], [ -81.970698858999981, 28.934107894000078 ], [ -81.970630654999979, 28.934149820000073 ], [ -81.970584143999986, 28.934177312000031 ], [ -81.970537239999942, 28.934204116000046 ], [ -81.970489555999961, 28.934229889000051 ], [ -81.970441481999956, 28.934255319000044 ], [ -81.970392821999951, 28.934279715000059 ], [ -81.970343770999989, 28.934303426000042 ], [ -81.970294328999955, 28.934326447000046 ], [ -81.97024430099998, 28.93434878100004 ], [ -81.970193882, 28.934370429000069 ], [ -81.969712265999988, 28.934562393000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970458398999938, 28.929345763000072 ], [ -81.970501568999964, 28.929333905000078 ], [ -81.97056361999995, 28.929336293000063 ], [ -81.970822608999981, 28.929369577000045 ], [ -81.971049219999941, 28.929409974000066 ], [ -81.971362156999987, 28.929478870000025 ], [ -81.971464668999943, 28.929509747000054 ], [ -81.971518621999962, 28.929528745000027 ], [ -81.971564479999984, 28.929545370000028 ], [ -81.971613035999951, 28.92956911400006 ], [ -81.971640011999966, 28.929580987000065 ], [ -81.971677774999989, 28.929609476000053 ], [ -81.971699349999938, 28.929637962000072 ], [ -81.971715529999983, 28.929668819000028 ], [ -81.971729007999954, 28.929709172000059 ], [ -81.971734393999952, 28.929744773000039 ], [ -81.971737079999969, 28.929787496000074 ], [ -81.971734376999962, 28.929813602000024 ], [ -81.971723571999974, 28.929853949000062 ], [ -81.971701977999942, 28.929896666000047 ], [ -81.971610213999952, 28.930024811000067 ], [ -81.971457148999946, 28.930218770000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970376134999981, 28.929979611000078 ], [ -81.970439333999934, 28.929981363000024 ], [ -81.970486818999973, 28.929979475000039 ], [ -81.970555884999953, 28.929979490000051 ], [ -81.97060552399995, 28.929985197000065 ], [ -81.970668113999977, 28.929989009000053 ], [ -81.970726385999967, 28.929998515000079 ], [ -81.970801923999943, 28.93001182200004 ], [ -81.97088393599995, 28.930027030000076 ], [ -81.970965947999957, 28.930042237000066 ], [ -81.971050116999947, 28.930065040000045 ], [ -81.971121337999989, 28.930082145000029 ], [ -81.971209821999935, 28.93010874600003 ], [ -81.971270248999986, 28.930127747000029 ], [ -81.971315569999945, 28.930144845000029 ], [ -81.971358729999963, 28.93016384200007 ], [ -81.971416904999955, 28.930194010000037 ], [ -81.971457148999946, 28.930218770000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963981394999962, 28.936504826000032 ], [ -81.964092000999983, 28.936448845000029 ], [ -81.964155682999944, 28.936416436000059 ], [ -81.964311547999955, 28.936310352000078 ], [ -81.964886407999984, 28.935887480000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964886407999984, 28.935887480000076 ], [ -81.965169638999953, 28.935700362000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963729824999973, 28.934776184000043 ], [ -81.963765012999943, 28.934768824000059 ], [ -81.963808576999952, 28.934770309000044 ], [ -81.963850460999936, 28.93478211300004 ], [ -81.963904066999987, 28.934814553000024 ], [ -81.963967719999971, 28.934866158000034 ], [ -81.964009595999983, 28.934900071000072 ], [ -81.964061523999987, 28.934941355000035 ], [ -81.964103400999988, 28.934976740000025 ], [ -81.964140249999957, 28.935013599000058 ], [ -81.96417374899994, 28.935048983000058 ], [ -81.964207247, 28.935084367000059 ], [ -81.964264192999963, 28.935149236000029 ], [ -81.96447883999997, 28.935402195000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016346007999971, 28.941018838000048 ], [ -82.016778081999973, 28.94103156400007 ], [ -82.018663012, 28.941019052000058 ], [ -82.018780366999977, 28.940959177000025 ], [ -82.018868982999948, 28.940887326000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028858396999965, 28.952863545000071 ], [ -82.028449798999986, 28.952861303000077 ], [ -82.027326606999964, 28.952839526000048 ], [ -82.026577810999981, 28.952853993000076 ], [ -82.024293285999988, 28.952848719000031 ], [ -82.022817203999978, 28.952869948000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015924816999984, 28.928218331000039 ], [ -82.015938942999981, 28.927978476000078 ], [ -82.015946369999938, 28.927382737000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016346007999971, 28.941018838000048 ], [ -82.016345869999952, 28.941340245000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957119586999966, 28.943982316000074 ], [ -81.957117421999953, 28.944349389000024 ], [ -81.957119759999955, 28.94436864100004 ], [ -81.957122487999982, 28.944387549000055 ], [ -81.957125606999966, 28.94440645800006 ], [ -81.957129115999976, 28.944425711000065 ], [ -81.95713281999997, 28.94444462000007 ], [ -81.957137111999941, 28.944463185000075 ], [ -81.957141795999974, 28.94448209400008 ], [ -81.957146671999965, 28.944500659000028 ], [ -81.95715194099995, 28.944519224000032 ], [ -81.957157796, 28.944537791000073 ], [ -81.957163845999958, 28.944556356000078 ], [ -81.957173409999939, 28.944583174000059 ], [ -81.957180241999936, 28.944601396000053 ], [ -81.957187659999988, 28.944619619000036 ], [ -81.957201520999945, 28.944651250000049 ], [ -81.957484425999951, 28.945267729000079 ], [ -81.957492627999954, 28.945282859000031 ], [ -81.957501024999942, 28.94529798700006 ], [ -81.957509616999971, 28.945312772000079 ], [ -81.957518600999947, 28.945327558000031 ], [ -81.957527973999959, 28.94534234300005 ], [ -81.957577029999982, 28.945426308000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95532247899996, 28.943238166000071 ], [ -81.955369424999958, 28.943234719000031 ], [ -81.955425202999947, 28.943232401000046 ], [ -81.955482588999985, 28.943237208000028 ], [ -81.955526386999964, 28.943244513000025 ], [ -81.955577287999972, 28.943253901000048 ], [ -81.955638842999974, 28.943270583000071 ], [ -81.95568382, 28.943289342000071 ], [ -81.955745369999988, 28.943316437000078 ], [ -81.955806916999961, 28.943346655000028 ], [ -81.955860175999987, 28.943378955000071 ], [ -81.955903966999983, 28.943410209000035 ], [ -81.95593828799997, 28.943434171000035 ], [ -81.955964118999987, 28.94345355400003 ], [ -81.955985803999965, 28.943468001000042 ], [ -81.956007292999971, 28.943482789000029 ], [ -81.956032102999984, 28.943501017000074 ], [ -81.95605281099995, 28.94351649400005 ], [ -81.956073125999978, 28.943532658000038 ], [ -81.956093246999956, 28.943548823000071 ], [ -81.956112976999975, 28.943565330000069 ], [ -81.956132314999934, 28.943582181000068 ], [ -81.956151457999965, 28.943599376000066 ], [ -81.956181344999948, 28.94362757600004 ], [ -81.956199510999966, 28.943645457000059 ], [ -81.956217481999943, 28.943663685000047 ], [ -81.956234865999988, 28.943681910000066 ], [ -81.956252053999947, 28.943700824000075 ], [ -81.956268654999974, 28.943719737000038 ], [ -81.956286429999977, 28.943740713000068 ], [ -81.956302445999938, 28.943760313000041 ], [ -81.956308695999951, 28.943767878000074 ], [ -81.956315335999989, 28.94377578700005 ], [ -81.956321976999959, 28.943783352000025 ], [ -81.956328812999971, 28.943790918000047 ], [ -81.956335845999945, 28.943798139000023 ], [ -81.95634287699994, 28.943805360000056 ], [ -81.956350104999956, 28.943812582000078 ], [ -81.956357526999966, 28.943819804000043 ], [ -81.956365145999939, 28.943826682000065 ], [ -81.956372763, 28.94383356000003 ], [ -81.956398585999978, 28.943850974000043 ], [ -81.956418420999967, 28.943864758000075 ], [ -81.956442433999939, 28.943879003000063 ], [ -81.956504031999941, 28.943908876000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956504031999941, 28.943908876000023 ], [ -81.956530395999948, 28.943917954000028 ], [ -81.956564069999956, 28.943928988000039 ], [ -81.956614970999965, 28.943944505000047 ], [ -81.956661697999948, 28.943953017000069 ], [ -81.956715995999957, 28.94396222000006 ], [ -81.95678021599997, 28.943968212000073 ], [ -81.95684608199997, 28.943973878000065 ], [ -81.957119586999966, 28.943982316000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956451891999961, 28.940002908000054 ], [ -81.956442782999943, 28.940568533000032 ], [ -81.956451701999981, 28.940694362000045 ], [ -81.956465810999987, 28.940752942000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956465810999987, 28.940752942000074 ], [ -81.956499207999968, 28.940797643000053 ], [ -81.956540226999948, 28.940837191000071 ], [ -81.956605571999944, 28.940890074000038 ], [ -81.956682705999981, 28.940924616000075 ], [ -81.956790715999944, 28.940948405000029 ], [ -81.957232585999975, 28.941017651000038 ], [ -81.957669546999966, 28.941089052000052 ], [ -81.957870832999959, 28.941149580000058 ], [ -81.957961659999967, 28.941169044000048 ], [ -81.958037765999961, 28.941164749000052 ], [ -81.958099149999953, 28.941145333000065 ], [ -81.95815562699994, 28.941112958000076 ], [ -81.958202289999974, 28.941074102000073 ], [ -81.958241581999971, 28.941037403000053 ], [ -81.958263702999943, 28.940974784000048 ], [ -81.958246679999945, 28.94057095200003 ], [ -81.95824767199997, 28.939990791000071 ], [ -81.958264170999939, 28.939806493000049 ], [ -81.958281425999985, 28.939631579000036 ], [ -81.958283920999975, 28.939532242000041 ], [ -81.95827630399998, 28.939374515000054 ], [ -81.958259483999939, 28.93924934000006 ], [ -81.958235357999968, 28.939130257000045 ], [ -81.958207261999974, 28.939080785000044 ], [ -81.95817255299994, 28.939026945000023 ], [ -81.958132875999979, 28.938986198000066 ], [ -81.958083275999968, 28.938948357000072 ], [ -81.958017133999988, 28.938919240000075 ], [ -81.957947940999986, 28.938913180000043 ], [ -81.956756858999938, 28.939004676000025 ], [ -81.956660927999962, 28.939022102000024 ], [ -81.95658483699998, 28.939054084000077 ], [ -81.956517006999945, 28.939106435000042 ], [ -81.956470669999987, 28.939176252000038 ], [ -81.956442516999971, 28.939264986000069 ], [ -81.956445028999951, 28.939406610000049 ], [ -81.956444934, 28.939634980000051 ], [ -81.956451891999961, 28.940002908000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969017360999942, 28.906419923000044 ], [ -81.969009170999982, 28.906415587000026 ], [ -81.96896656399997, 28.906398093000064 ], [ -81.968929284999945, 28.906388753000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968929284999945, 28.906388753000044 ], [ -81.96892115199995, 28.906387375000065 ], [ -81.968874314999937, 28.906383758000061 ], [ -81.968827475999944, 28.906387353000071 ], [ -81.968782055999952, 28.906398051000053 ], [ -81.968739439999979, 28.906415525000057 ], [ -81.968700917999968, 28.906439247000037 ], [ -81.968667663999952, 28.906468493000034 ], [ -81.968659082999977, 28.906477966000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969636808999951, 28.909519524000075 ], [ -81.969659923999984, 28.909517750000077 ], [ -81.969662093999943, 28.909517405000031 ], [ -81.96970668299997, 28.909506736000026 ], [ -81.969750556999941, 28.909488746000079 ], [ -81.969790212999953, 28.909464327000023 ], [ -81.969819629999961, 28.909439133000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969383738999966, 28.90913768300004 ], [ -81.969371326999976, 28.909154888000046 ], [ -81.969350860999953, 28.90919348400007 ], [ -81.969338320999952, 28.909234620000063 ], [ -81.969334088999972, 28.909277049000025 ], [ -81.969338294999943, 28.909319479000033 ], [ -81.969350811999959, 28.909360621000076 ], [ -81.969371255999988, 28.909399226000062 ], [ -81.969399007999982, 28.90943412200005 ], [ -81.969433227999957, 28.909464246000027 ], [ -81.969470617999946, 28.909487526000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969819629999961, 28.909439133000035 ], [ -81.969824449999976, 28.909434217000069 ], [ -81.969852222999975, 28.909399334000057 ], [ -81.969872690999978, 28.909360738000032 ], [ -81.96988182399997, 28.909334022000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96988182399997, 28.909334022000053 ], [ -81.969885230999978, 28.909319602000039 ], [ -81.969889461999969, 28.909277174000067 ], [ -81.969885255999941, 28.909234744000059 ], [ -81.969872738999982, 28.909193602000073 ], [ -81.969852293999963, 28.90915499700003 ], [ -81.96982454099998, 28.909120102000031 ], [ -81.969790322999984, 28.909089978000054 ], [ -81.969785405999971, 28.90908642900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02118563099998, 28.93624821800006 ], [ -82.021142344999987, 28.936252082000067 ], [ -82.021082852999939, 28.936261768000065 ], [ -82.021016442999951, 28.936263151000048 ], [ -82.02094864999998, 28.936264534000031 ], [ -82.020882240999981, 28.936267301000044 ], [ -82.020673167999973, 28.936252387000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021251868999968, 28.93660154500003 ], [ -82.021236044999966, 28.936460313000055 ], [ -82.02118563099998, 28.93624821800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022516150999934, 28.937740596000026 ], [ -82.022516196999959, 28.937440194000033 ], [ -82.022516196999959, 28.937237852000067 ], [ -82.02251965499994, 28.937061451000034 ], [ -82.022497172999977, 28.93692655600006 ], [ -82.022433185999944, 28.936843545000045 ], [ -82.022338066999964, 28.936788202000059 ], [ -82.022237759999939, 28.936769179000066 ], [ -82.022109782999962, 28.936769179000066 ], [ -82.021990452999944, 28.936769179000066 ], [ -82.021864205999975, 28.936765720000039 ], [ -82.021765627999969, 28.936774368000044 ], [ -82.021648027999959, 28.936824521000062 ], [ -82.021549450999942, 28.936886779000076 ], [ -82.021497281999984, 28.936921937000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021497281999984, 28.936921937000079 ], [ -82.021390344999986, 28.936994003000052 ], [ -82.021264096999971, 28.937075287000027 ], [ -82.021158601999957, 28.937144463000038 ], [ -82.021065212999986, 28.937204993000023 ], [ -82.020989118999978, 28.937263794000046 ], [ -82.020940694999979, 28.937336430000073 ], [ -82.02092167099994, 28.937407335000046 ], [ -82.02092167099994, 28.937498995000055 ], [ -82.020922313999961, 28.937738210000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021251868999968, 28.93660154500003 ], [ -82.021254411999962, 28.93660903500006 ], [ -82.021373395999944, 28.936750156000073 ], [ -82.021497281999984, 28.936921937000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023232226999937, 28.935278109000024 ], [ -82.022918345999983, 28.935275767000064 ], [ -82.022507280999946, 28.935275766000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023951693999948, 28.935280685000066 ], [ -82.023577523999961, 28.935280686000056 ], [ -82.023232226999937, 28.935278109000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024295731999985, 28.935280686000056 ], [ -82.023951693999948, 28.935280685000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018298121999976, 28.936655244000065 ], [ -82.01821898299994, 28.936582778000059 ], [ -82.018091315999982, 28.936466718000077 ], [ -82.017946739999957, 28.936331700000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018614190999983, 28.936366332000034 ], [ -82.018298121999976, 28.936655244000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018614190999983, 28.936366332000034 ], [ -82.01895508399997, 28.936083653000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020095354999967, 28.935261235000041 ], [ -82.020088351999959, 28.936535703000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022507280999946, 28.935275766000075 ], [ -82.022505128999967, 28.936130331000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022505128999967, 28.936130331000072 ], [ -82.022505128999967, 28.936321259000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022507280999946, 28.935275766000075 ], [ -82.022254246999978, 28.935275766000075 ], [ -82.020985389999964, 28.935273461000065 ], [ -82.020935582999982, 28.935278995000033 ], [ -82.02087193999995, 28.935306665000041 ], [ -82.020677185999944, 28.93544079000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020088351999959, 28.936535703000061 ], [ -82.019771821999939, 28.936535491000029 ], [ -82.019616173999964, 28.936533762000067 ], [ -82.019534458999942, 28.936521980000066 ], [ -82.019460526999978, 28.936497444000054 ], [ -82.01939437599998, 28.936469448000025 ], [ -82.01932390199994, 28.936424808000027 ], [ -82.01919765599996, 28.936303749000047 ], [ -82.019067948999975, 28.936189607000074 ], [ -82.01895508399997, 28.936083653000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01895508399997, 28.936083653000026 ], [ -82.01889846399996, 28.936030500000072 ], [ -82.01880334699996, 28.935938840000063 ], [ -82.01868228799998, 28.935824699000079 ], [ -82.018585439999981, 28.935736499000029 ], [ -82.018500697999968, 28.935656946000051 ], [ -82.018455732999939, 28.935582580000073 ], [ -82.018440167999984, 28.93550129700003 ], [ -82.018457461999958, 28.935420015000034 ], [ -82.018509343999938, 28.935343920000037 ], [ -82.01859062799997, 28.935286849000079 ], [ -82.018687474999979, 28.935257450000051 ], [ -82.018839663999984, 28.935257449000062 ], [ -82.018997041999967, 28.93525917900007 ], [ -82.019195924999963, 28.93525917900007 ], [ -82.019384430999935, 28.935260908000032 ], [ -82.019571209999981, 28.935260908000032 ], [ -82.019735504999971, 28.935260909000078 ], [ -82.020095354999967, 28.935261235000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021251868999968, 28.93660154500003 ], [ -82.020948339999961, 28.936787818000028 ], [ -82.020818737999946, 28.936867126000038 ], [ -82.020642711999983, 28.936923222000075 ], [ -82.02050344099996, 28.936954172000071 ], [ -82.020375773999945, 28.936956105000036 ], [ -82.020190076999938, 28.936956106000025 ], [ -82.020002446999968, 28.936954172000071 ], [ -82.019865107999976, 28.936954172000071 ], [ -82.019714228999987, 28.936952237000071 ], [ -82.019571087999964, 28.936948369000049 ], [ -82.019451158999971, 28.936930960000041 ], [ -82.019323490999966, 28.936898076000034 ], [ -82.019199693999951, 28.93684971700003 ], [ -82.019062355999949, 28.936768475000065 ], [ -82.018936622999945, 28.936669824000035 ], [ -82.018789613999957, 28.936526682000078 ], [ -82.018614190999983, 28.936366332000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134699850999937, 28.879884228000037 ], [ -82.135075542999971, 28.880001605000075 ], [ -82.135861140999964, 28.880284618000076 ], [ -82.136309121999943, 28.880462094000052 ], [ -82.13658157499998, 28.880558870000073 ], [ -82.136934237999981, 28.880668797000055 ], [ -82.137191620999943, 28.880739119000054 ], [ -82.137405538999985, 28.880788897000059 ], [ -82.137587690999965, 28.880824004000033 ], [ -82.137788220999937, 28.880857619000039 ], [ -82.137967019999962, 28.880880964000028 ], [ -82.138072291999947, 28.880894091000073 ], [ -82.138231035, 28.880913045000057 ], [ -82.138384759999951, 28.880927592000035 ], [ -82.138555188999987, 28.880939180000041 ], [ -82.138649925999971, 28.880944965000026 ], [ -82.138870462999989, 28.880947090000063 ], [ -82.139116384999966, 28.880940956000074 ], [ -82.13936496499997, 28.880924228000026 ], [ -82.139533355999959, 28.88091111500006 ], [ -82.139637593999964, 28.880900419000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991926637999939, 28.885351090000029 ], [ -81.992038799999989, 28.88541361700004 ], [ -81.992146854999987, 28.885474427000077 ], [ -81.992260225999985, 28.885544595000056 ], [ -81.992350568999939, 28.885586695000029 ], [ -81.992430282999976, 28.885622560000058 ], [ -81.992545427999971, 28.885658425000031 ], [ -81.992667205999965, 28.885680129000036 ], [ -81.992910943999959, 28.885720707000075 ], [ -81.993255848999979, 28.885765073000073 ], [ -81.993562254999972, 28.885805033000054 ], [ -81.993793909999965, 28.885820790000025 ], [ -81.993939529999977, 28.885829375000071 ], [ -81.993983243999935, 28.885833095000066 ], [ -81.994024167999953, 28.885836816000051 ], [ -81.994118106999963, 28.885849837000023 ], [ -81.994213904999981, 28.885855417000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96447883999997, 28.935402195000052 ], [ -81.96451704499998, 28.935445015000028 ], [ -81.964551812999957, 28.935481810000056 ], [ -81.964610608999976, 28.935541642000032 ], [ -81.964647329999934, 28.935577404000071 ], [ -81.964696945999947, 28.935623483000029 ], [ -81.964792466999938, 28.935710140000026 ], [ -81.964844561999939, 28.935759236000024 ], [ -81.964873031999957, 28.935800513000061 ], [ -81.964883072999953, 28.935840313000028 ], [ -81.964886407999984, 28.935887480000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963497622999967, 28.935174825000047 ], [ -81.963497630999939, 28.935151610000048 ], [ -81.963498895999976, 28.935128395000049 ], [ -81.963500102999944, 28.935124364000046 ], [ -81.963500297999985, 28.935122302000025 ], [ -81.963501669999971, 28.935112676000074 ], [ -81.963504212999965, 28.935103051000056 ], [ -81.963504798999963, 28.935100988000045 ], [ -81.963510860999975, 28.93508620800003 ], [ -81.963511839999967, 28.935084489000076 ], [ -81.96351477199994, 28.935078990000079 ], [ -81.963516922999986, 28.935075552000058 ], [ -81.963518095999973, 28.935073834000036 ], [ -81.96351926899996, 28.935072115000025 ], [ -81.963659847999963, 28.934841019000032 ], [ -81.963682896999956, 28.934811547000038 ], [ -81.96370301099995, 28.934789441000078 ], [ -81.963729824999973, 28.934776184000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963896163999948, 28.935860688000048 ], [ -81.964055383999948, 28.935739866000063 ], [ -81.964130808999982, 28.935666188000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964130808999982, 28.935666188000027 ], [ -81.964164326999935, 28.935645561000058 ], [ -81.964261531999966, 28.935580734000041 ], [ -81.96447883999997, 28.935402195000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962472367999965, 28.932817692000071 ], [ -81.962525502999938, 28.932858087000056 ], [ -81.962576222999985, 28.932894230000045 ], [ -81.962639022999952, 28.932930376000058 ], [ -81.962723560999962, 28.93297715500006 ], [ -81.962803269999938, 28.933019681000076 ], [ -81.962863654999978, 28.933049452000034 ], [ -81.962926453999955, 28.933085599000037 ], [ -81.962991667999972, 28.933125997000047 ], [ -81.963105181999936, 28.933218475000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954192574999979, 28.929082577000031 ], [ -81.954169158999946, 28.929180059000032 ], [ -81.954164054999978, 28.92921810100006 ], [ -81.95416292799996, 28.929252089000045 ], [ -81.954161003999957, 28.929286497000078 ], [ -81.954162896999946, 28.929321745000038 ], [ -81.954166699999973, 28.929349441000056 ], [ -81.954172410999945, 28.929380494000043 ], [ -81.954180982999958, 28.929409030000045 ], [ -81.954198341999984, 28.929450331000055 ], [ -81.954206148999958, 28.929469929000049 ], [ -81.954214737999962, 28.929489527000044 ], [ -81.954230354999936, 28.929520472000036 ], [ -81.954244835999987, 28.929552559000058 ], [ -81.954256270999963, 28.929578579000065 ], [ -81.954272471999957, 28.92961635000006 ], [ -81.954286764999949, 28.929654120000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954286764999949, 28.929654120000066 ], [ -81.954289621999976, 28.92966503100007 ], [ -81.954296288999956, 28.929691049000041 ], [ -81.954302950999988, 28.929723781000064 ], [ -81.954310567999983, 28.929755674000035 ], [ -81.954314370999953, 28.929785888000026 ], [ -81.954332986999987, 28.93122508600004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957108482999956, 28.927367940000067 ], [ -81.957192395999982, 28.927474464000056 ], [ -81.957217766999975, 28.92750023800005 ], [ -81.957252897999979, 28.927532885000062 ], [ -81.957313402999944, 28.927584434000039 ], [ -81.957368054999961, 28.927629111000044 ], [ -81.957403186999954, 28.927656606000028 ], [ -81.957467599999973, 28.927701286000058 ], [ -81.957553485999938, 28.927759714000047 ], [ -81.957684266999934, 28.927843922000079 ], [ -81.957848233999982, 28.927945316000034 ], [ -81.95800633999994, 28.928051862000075 ], [ -81.958178114999953, 28.928163565000034 ], [ -81.958406495999952, 28.928311357000041 ], [ -81.958898591999969, 28.928628770000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954247497999972, 28.927968004000036 ], [ -81.954248693999943, 28.928649773000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955092119999961, 28.925265087000071 ], [ -81.955081551999967, 28.925322435000055 ], [ -81.955078027999946, 28.925340310000024 ], [ -81.955074893999949, 28.925357842000039 ], [ -81.955072151999957, 28.925375717000065 ], [ -81.955069603999959, 28.925393593000024 ], [ -81.95506764299995, 28.925411469000039 ], [ -81.955065875999935, 28.925429344000065 ], [ -81.95506430599994, 28.925447220000024 ], [ -81.955063320999955, 28.92546509500005 ], [ -81.955062725999937, 28.925483316000054 ], [ -81.955062323999982, 28.925512537000031 ], [ -81.955062680999959, 28.925587137000036 ], [ -81.955063022, 28.925702646000047 ], [ -81.955063559999985, 28.925818155000059 ], [ -81.95506390099996, 28.92593332000007 ], [ -81.955064087999972, 28.925950853000074 ], [ -81.955063688999985, 28.925969416000044 ], [ -81.955062704999989, 28.925985917000048 ], [ -81.955060938999964, 28.926002761000063 ], [ -81.95505858699994, 28.926019606000068 ], [ -81.955055650999952, 28.926036107000073 ], [ -81.955052126999988, 28.926052607000031 ], [ -81.955046451999976, 28.926073231000032 ], [ -81.955041363999953, 28.926089732000037 ], [ -81.955035691999967, 28.926105543000062 ], [ -81.955029235999973, 28.926121354000031 ], [ -81.955022195999959, 28.926137166000046 ], [ -81.955007054999953, 28.926174157000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958316109999942, 28.924378399000034 ], [ -81.958333058999983, 28.924402275000034 ], [ -81.958360178999953, 28.924436599000046 ], [ -81.958383907999973, 28.924466446000054 ], [ -81.958404247999965, 28.924491815000067 ], [ -81.958433064999952, 28.92452017100004 ], [ -81.958461882999984, 28.924550019000037 ], [ -81.958512738999957, 28.924597777000031 ], [ -81.958582241999977, 28.924663444000032 ], [ -81.958638182999948, 28.924717172000044 ], [ -81.958680564999952, 28.924755976000029 ], [ -81.958712771999956, 28.92479030100003 ], [ -81.958744976999981, 28.924827608000044 ], [ -81.958775487999958, 28.92486641000005 ], [ -81.958800911999958, 28.924897748000035 ], [ -81.95881955599998, 28.924924609000072 ], [ -81.95883551299994, 28.924946168000076 ], [ -81.95884800999994, 28.92496611100006 ], [ -81.958860309999977, 28.924986398000044 ], [ -81.958874562999938, 28.925011497000071 ], [ -81.958885886999951, 28.925031783000065 ], [ -81.958896624999966, 28.92505275700006 ], [ -81.95890716699995, 28.925073387000054 ], [ -81.958917121999946, 28.92509470400006 ], [ -81.958926687999963, 28.925115678000054 ], [ -81.958935862999965, 28.925136995000059 ], [ -81.958944645999964, 28.925158655000075 ], [ -81.958953038999937, 28.925179972000024 ], [ -81.958960844999979, 28.925201976000039 ], [ -81.958968260999939, 28.925223637000045 ], [ -81.958975285999941, 28.92524564100006 ], [ -81.959004148999952, 28.92532316300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953933846999973, 28.922598509000068 ], [ -81.954546042999937, 28.92259411200007 ], [ -81.954615399999966, 28.922594478000065 ], [ -81.954671276999989, 28.922595873000034 ], [ -81.954742977999956, 28.922598647000029 ], [ -81.954798657999959, 28.922602104000077 ], [ -81.954854531999956, 28.922606248000079 ], [ -81.954958271999942, 28.922616252000068 ], [ -81.954992004999951, 28.922620615000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955621194999935, 28.923921146000055 ], [ -81.955857868999942, 28.924141301000077 ], [ -81.956128464999949, 28.92438562500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956128464999949, 28.92438562500007 ], [ -81.956628292999937, 28.924837482000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956628292999937, 28.924837482000044 ], [ -81.957121493999978, 28.92529438400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957121493999978, 28.92529438400004 ], [ -81.957836664999945, 28.924694574000057 ], [ -81.957920118999937, 28.924624469000037 ], [ -81.957941031999951, 28.924607631000072 ], [ -81.957960185, 28.924592167000071 ], [ -81.957979727999941, 28.924577390000024 ], [ -81.957999662999953, 28.924562614000024 ], [ -81.958019791999959, 28.924548181000034 ], [ -81.958053992999965, 28.92452481600003 ], [ -81.958074903999943, 28.92451141500004 ], [ -81.958096008999973, 28.924498358000051 ], [ -81.958117310999967, 28.924485301000061 ], [ -81.958316109999942, 28.924378399000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956628292999937, 28.924837482000044 ], [ -81.957463503999975, 28.924132506000035 ], [ -81.957571775999952, 28.924052784000025 ], [ -81.957587215, 28.924040069000057 ], [ -81.957600308999986, 28.924029760000053 ], [ -81.95761379399994, 28.924019451000049 ], [ -81.957635291999964, 28.924003644000038 ], [ -81.957649167999989, 28.923994022000045 ], [ -81.957663238999942, 28.923984745000041 ], [ -81.957677504999936, 28.923975467000048 ], [ -81.95769196699996, 28.923966191000034 ], [ -81.957706623999968, 28.923957601000041 ], [ -81.957721474999971, 28.923949011000047 ], [ -81.957736522999937, 28.923940764000065 ], [ -81.957751569999971, 28.923932519000061 ], [ -81.957766812999978, 28.923924617000068 ], [ -81.957789478999985, 28.923913623000033 ], [ -81.95780530899998, 28.92390606500004 ], [ -81.957821136999939, 28.923899195000047 ], [ -81.957836965999945, 28.923892324000064 ], [ -81.957853183999987, 28.923885797000025 ], [ -81.957869402999961, 28.923879614000043 ], [ -81.957885620999946, 28.92387343200005 ], [ -81.95790203599995, 28.923867592000079 ], [ -81.95791864499995, 28.92386209700004 ], [ -81.957935253999949, 28.923856601000068 ], [ -81.958008807999988, 28.923838009000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958008807999988, 28.923838009000065 ], [ -81.958718525999984, 28.923657914000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959132391999958, 28.920601614000077 ], [ -81.960407644999975, 28.920571308000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960407644999975, 28.920571308000035 ], [ -81.960862642999984, 28.920565337000028 ], [ -81.961077569999986, 28.920561547000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961077569999986, 28.920561547000034 ], [ -81.961748042999943, 28.920550313000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961748042999943, 28.920550313000035 ], [ -81.962065788999951, 28.92054351400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961584245999973, 28.921736381000073 ], [ -81.962124781999989, 28.921725346000073 ], [ -81.962155305999943, 28.921723116000067 ], [ -81.962180746999934, 28.921717529000034 ], [ -81.962204912999937, 28.921709702000044 ], [ -81.96222781299997, 28.921695161000059 ], [ -81.962244350999981, 28.921683978000033 ], [ -81.962259618999951, 28.921667197000033 ], [ -81.962269343999935, 28.921655094000073 ], [ -81.962276579, 28.921642377000069 ], [ -81.962284007999983, 28.921626565000054 ], [ -81.962288700999977, 28.921613160000049 ], [ -81.962293201999955, 28.921596315000045 ], [ -81.962293600999942, 28.921575346000054 ], [ -81.962292432999959, 28.921561594000025 ], [ -81.962290093999968, 28.921547842000052 ], [ -81.962286775999985, 28.921534090000023 ], [ -81.962282288999972, 28.921520681000061 ], [ -81.96227291799994, 28.921500052000056 ], [ -81.962265888, 28.921487674000048 ], [ -81.96225788299995, 28.92147563900005 ], [ -81.962248899999963, 28.921464291000063 ], [ -81.961850760999937, 28.920853977000036 ], [ -81.961797650999983, 28.920772142000033 ], [ -81.96178632699997, 28.920751168000038 ], [ -81.961777345999963, 28.920732258000044 ], [ -81.961772075999988, 28.920719194000071 ], [ -81.96176504999994, 28.920699940000077 ], [ -81.961760952999953, 28.920686532000047 ], [ -81.961756074999983, 28.920666592000032 ], [ -81.961750809999955, 28.92063771200003 ], [ -81.961749447999978, 28.920623961000047 ], [ -81.961748279999938, 28.920610209000074 ], [ -81.961747897999942, 28.920589926000048 ], [ -81.961748042999943, 28.920550313000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955697437999959, 28.920142610000028 ], [ -81.954620518999945, 28.920113513000047 ], [ -81.954217365999966, 28.920083892000036 ], [ -81.953971914999954, 28.920060518000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960791221999955, 28.928655985000034 ], [ -81.960928878999937, 28.928766537000058 ], [ -81.961015821999979, 28.928832445000069 ], [ -81.961134158999982, 28.928928116000066 ], [ -81.961254907999944, 28.929034412000078 ], [ -81.961380488999964, 28.929140711000059 ], [ -81.961479501999975, 28.929229999000029 ], [ -81.961629229999971, 28.929367120000052 ], [ -81.961710735999986, 28.92943887000007 ], [ -81.96177413099997, 28.929493083000068 ], [ -81.961833903999946, 28.929539323000029 ], [ -81.961857451999947, 28.929555269000048 ], [ -81.961891866999963, 28.929582376000042 ], [ -81.961929905999966, 28.929607890000057 ], [ -81.961977003999948, 28.929636594000044 ], [ -81.962076630999945, 28.929703567000047 ], [ -81.963983652999957, 28.930866501000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963983652999957, 28.930866501000025 ], [ -81.964023339999983, 28.930893156000025 ], [ -81.964051562999941, 28.930913858000054 ], [ -81.964100948999942, 28.930955259000029 ], [ -81.964138575999982, 28.930988382000066 ], [ -81.964176200999987, 28.931027712000059 ], [ -81.964220882999939, 28.931071183000029 ], [ -81.964277319999951, 28.931131212000025 ], [ -81.964374678999945, 28.931233998000039 ], [ -81.964392454999938, 28.931250503000058 ], [ -81.964410424999983, 28.931267009000067 ], [ -81.964428785999985, 28.931283172000064 ], [ -81.964447538999934, 28.931298991000062 ], [ -81.964466485999935, 28.93131481000006 ], [ -81.964485628999967, 28.931329941000058 ], [ -81.96450535699995, 28.931345072000056 ], [ -81.964525087999959, 28.931359516000043 ], [ -81.964545402999988, 28.931373959000041 ], [ -81.96456571899995, 28.931388059000028 ], [ -81.964586424999936, 28.931401816000061 ], [ -81.964607523999973, 28.931415229000038 ], [ -81.964631745999952, 28.931430361000025 ], [ -81.965426921999949, 28.93190714800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965426921999949, 28.93190714800005 ], [ -81.965462023999976, 28.931931065000072 ], [ -81.96548858999995, 28.93194998000007 ], [ -81.965514570999972, 28.931969582000079 ], [ -81.965540355999963, 28.931989183000042 ], [ -81.965565749999939, 28.932009472000061 ], [ -81.965590557999974, 28.93202976200007 ], [ -81.965615170999968, 28.932050738000044 ], [ -81.965639195999984, 28.932072059000063 ], [ -81.965662831999964, 28.932093722000047 ], [ -81.965686076999987, 28.932115731000067 ], [ -81.965708929999948, 28.932138082000051 ], [ -81.965731392999942, 28.932160776000046 ], [ -81.965753268999947, 28.93218381500003 ], [ -81.965774558999954, 28.932207197000025 ], [ -81.965890213999955, 28.932325297000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96988345699998, 28.934804879000069 ], [ -81.969883678999963, 28.934805090000054 ], [ -81.969894032999946, 28.934814718000041 ], [ -81.969904777999943, 28.934824347000074 ], [ -81.969915520999962, 28.934833630000071 ], [ -81.969926459999954, 28.934842915000047 ], [ -81.969937593999987, 28.934851856000023 ], [ -81.969948925999972, 28.934860796000066 ], [ -81.969954394999945, 28.934864923000077 ], [ -81.970656899999938, 28.935292638000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970656899999938, 28.935292638000078 ], [ -81.970715401999939, 28.935316327000066 ], [ -81.97083708599996, 28.935365764000039 ], [ -81.971034151999959, 28.935447055000054 ], [ -81.971311645999947, 28.935558366000066 ], [ -81.97151889099996, 28.935635667000042 ], [ -81.971610217999967, 28.935669679000057 ], [ -81.971687495999959, 28.935700598000039 ], [ -81.97176477499994, 28.935725337000065 ], [ -81.971836959999962, 28.935751915000026 ], [ -81.971922845999984, 28.935774816000048 ], [ -81.972017689999973, 28.935799558000042 ], [ -81.972146638999959, 28.935824115000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963317641999936, 28.924858149000045 ], [ -81.963966727999946, 28.925462846000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965978074999953, 28.924787224000056 ], [ -81.966349822999973, 28.92522378700005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967229682999971, 28.930863760000079 ], [ -81.966938109999944, 28.931121451000024 ], [ -81.966866379999942, 28.93118606400003 ], [ -81.966846834999956, 28.931204622000052 ], [ -81.966827680999984, 28.931223525000064 ], [ -81.96680891799997, 28.931242428000076 ], [ -81.96679034999994, 28.931262018000041 ], [ -81.966772366999976, 28.931281610000042 ], [ -81.966754775999959, 28.931301544000064 ], [ -81.966737575999957, 28.931321479000076 ], [ -81.96672076599998, 28.931342102000031 ], [ -81.966704149999941, 28.931362724000053 ], [ -81.966688121999937, 28.931383691000065 ], [ -81.966672678999942, 28.931404656000041 ], [ -81.966657430999987, 28.931426312000042 ], [ -81.966642770999954, 28.931447966000064 ], [ -81.966628304999972, 28.93146962000003 ], [ -81.966614423999943, 28.931491962000052 ], [ -81.966600935999963, 28.931513961000064 ], [ -81.966588032999937, 28.93153664600004 ], [ -81.966575520999982, 28.931559332000063 ], [ -81.966563398999938, 28.931582363000075 ], [ -81.966543065999986, 28.931623267000077 ], [ -81.966520971999955, 28.931667608000055 ], [ -81.966508849999968, 28.931690294000077 ], [ -81.966496142999972, 28.931712981000032 ], [ -81.966483044999961, 28.931735667000055 ], [ -81.966469554999946, 28.931757665000077 ], [ -81.966455675999953, 28.931780007000043 ], [ -81.966441208999981, 28.931801661000065 ], [ -81.966426547999959, 28.931823316000077 ], [ -81.966411298999958, 28.931844625000053 ], [ -81.966395466999984, 28.931865936000065 ], [ -81.966379662999941, 28.931888763000075 ], [ -81.966363186999956, 28.931915662000051 ], [ -81.966344359999937, 28.931938421000041 ], [ -81.966323179999961, 28.931965319000028 ], [ -81.966297293999958, 28.931994286000076 ], [ -81.966266700999938, 28.932029459000034 ], [ -81.966226693999943, 28.93207497700007 ], [ -81.966174924999962, 28.932124631000079 ], [ -81.966092568999954, 28.932184625000048 ], [ -81.966010214999983, 28.932242550000069 ], [ -81.965890213999955, 28.932325297000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966512316999967, 28.930496460000029 ], [ -81.966448748999937, 28.930659933000072 ], [ -81.966373443999942, 28.930746831000079 ], [ -81.96629814299996, 28.930823382000028 ], [ -81.966258139, 28.930862691000073 ], [ -81.966229899999973, 28.930893728000058 ], [ -81.96619695399994, 28.930928900000026 ], [ -81.96613341699998, 28.93100131500006 ], [ -81.966098115999955, 28.931044765000024 ], [ -81.966060461999973, 28.931092353000054 ], [ -81.966027513999961, 28.931135804000064 ], [ -81.965978090999954, 28.931204083000068 ], [ -81.965916899999968, 28.931290985000032 ], [ -81.965898071999959, 28.931317883000077 ], [ -81.965879242999961, 28.931344782000053 ], [ -81.965855706999946, 28.931379957000047 ], [ -81.96582746699994, 28.931417201000045 ], [ -81.965803929999936, 28.931452375000049 ], [ -81.96576392299994, 28.931504102000076 ], [ -81.965426921999949, 28.93190714800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966512316999967, 28.930496460000029 ], [ -81.966698139999949, 28.930548243000032 ], [ -81.966768703999946, 28.930571024000074 ], [ -81.966822804999936, 28.930587593000041 ], [ -81.966867494999974, 28.93060416000003 ], [ -81.966919238999935, 28.930631076000054 ], [ -81.966975686999945, 28.930660063000062 ], [ -81.967022725999982, 28.930691116000048 ], [ -81.967072114999951, 28.930724240000075 ], [ -81.967112096999983, 28.930755291000025 ], [ -81.967140318999952, 28.930778062000059 ], [ -81.967182648999938, 28.930819462000045 ], [ -81.967229682999971, 28.930863760000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967229682999971, 28.930863760000079 ], [ -81.967241398999988, 28.930880592000051 ], [ -81.967274016999966, 28.930920477000029 ], [ -81.967313857999955, 28.930975835000027 ], [ -81.967349009999964, 28.931033255000045 ], [ -81.967357211999968, 28.931048039000075 ], [ -81.967365022999957, 28.931062823000048 ], [ -81.967372442999988, 28.931077608000066 ], [ -81.967386500999964, 28.931107863000079 ], [ -81.967393139999956, 28.931123335000052 ], [ -81.967404659999943, 28.931151872000044 ], [ -81.967410319999942, 28.931167343000027 ], [ -81.967415785999947, 28.931183157000078 ], [ -81.967420860999937, 28.931198972000061 ], [ -81.967425741999989, 28.931214443000044 ], [ -81.96743023099998, 28.931230602000028 ], [ -81.967434327999968, 28.931246417000068 ], [ -81.96743823099996, 28.931262231000062 ], [ -81.967441744999974, 28.931277359000035 ], [ -81.967445647999966, 28.931291797000029 ], [ -81.967449745999943, 28.931306581000058 ], [ -81.967454234999934, 28.931321364000041 ], [ -81.96745911499994, 28.93133580500006 ], [ -81.967463994999946, 28.931350244000043 ], [ -81.967469266999956, 28.931364684000073 ], [ -81.967474928999934, 28.931379123000056 ], [ -81.967480785999953, 28.931393220000075 ], [ -81.967487031999951, 28.931407316000048 ], [ -81.967493477999938, 28.931421413000066 ], [ -81.967500116999986, 28.931435510000028 ], [ -81.967507145999946, 28.931449262000058 ], [ -81.967514370999936, 28.931463015000077 ], [ -81.967521986999941, 28.931476425000028 ], [ -81.967529797999987, 28.931490178000047 ], [ -81.967537804999949, 28.931503587000066 ], [ -81.967546202999984, 28.931516652000028 ], [ -81.967554796999934, 28.931529718000036 ], [ -81.967568722999943, 28.931553523000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967568722999943, 28.931553523000048 ], [ -81.967577511999934, 28.931564869000056 ], [ -81.96758747299998, 28.931577248000053 ], [ -81.96759743299998, 28.931589626000061 ], [ -81.967607785999974, 28.931601661000059 ], [ -81.967618527999946, 28.931613352000056 ], [ -81.967629271999954, 28.931625386000064 ], [ -81.967640404999941, 28.931636733000062 ], [ -81.967651732999968, 28.931648425000049 ], [ -81.967663063999964, 28.931659428000046 ], [ -81.967674980999959, 28.931670776000033 ], [ -81.96768689299995, 28.93168143500003 ], [ -81.967699005999975, 28.931692439000074 ], [ -81.967711311999949, 28.93170275600005 ], [ -81.967724008999937, 28.931713072000036 ], [ -81.967736705999982, 28.931723388000023 ], [ -81.967749794999975, 28.931733361000056 ], [ -81.967762880999942, 28.931742990000032 ], [ -81.967776361999938, 28.931752619000065 ], [ -81.967789840999956, 28.931761904000041 ], [ -81.967803514999957, 28.931770845000074 ], [ -81.967817579999974, 28.931779787000039 ], [ -81.967831645, 28.931788384000072 ], [ -81.967845906999969, 28.931796982000037 ], [ -81.967860362999943, 28.931805236000059 ], [ -81.967874819999963, 28.931813147000071 ], [ -81.967889666999952, 28.931821057000036 ], [ -81.967904514999987, 28.931828624000048 ], [ -81.967919557999949, 28.93183619000007 ], [ -81.967934793999973, 28.931843069000024 ], [ -81.967950228999939, 28.931849948000036 ], [ -81.967965662999973, 28.931856827000047 ], [ -81.967981293999969, 28.931863020000037 ], [ -81.968019781999942, 28.931873849000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008072463999952, 28.945556066000051 ], [ -82.008101074999956, 28.945572679000065 ], [ -82.008132537999984, 28.945593990000077 ], [ -82.008138595999981, 28.945598116000042 ], [ -82.008161461999975, 28.945613584000057 ], [ -82.008170059999941, 28.945619428000043 ], [ -82.008271487999934, 28.945691958000054 ], [ -82.00833793299995, 28.945741458000043 ], [ -82.008403597999973, 28.945792332000053 ], [ -82.008468284999935, 28.945843894000063 ], [ -82.008531799999957, 28.945896489000063 ], [ -82.008594337999966, 28.945950114000027 ], [ -82.008634862999941, 28.945983891000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008634862999941, 28.945983891000026 ], [ -82.008679948999941, 28.946019814000067 ], [ -82.008720206999953, 28.946052126000041 ], [ -82.008761246999939, 28.94608375100006 ], [ -82.00880639199994, 28.946117438000044 ], [ -82.008848798999963, 28.946147688000053 ], [ -82.00889159899998, 28.946177250000062 ], [ -82.008935178999934, 28.946206468000071 ], [ -82.008979151999938, 28.946234654000079 ], [ -82.009023708999962, 28.946262497000077 ], [ -82.009068853999963, 28.946289308000075 ], [ -82.009114582999985, 28.946315776000063 ], [ -82.009160704999942, 28.946341213000039 ], [ -82.009207410999977, 28.946366305000026 ], [ -82.00924480499998, 28.946383602000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00924480499998, 28.946383602000026 ], [ -82.009286774999964, 28.946406208000042 ], [ -82.009334849999959, 28.946428893000075 ], [ -82.009383315999969, 28.94645089200003 ], [ -82.009432367999977, 28.946472202000052 ], [ -82.00948161499997, 28.946492481000064 ], [ -82.009531448999951, 28.946512073000065 ], [ -82.009581672999957, 28.946530977000066 ], [ -82.009632091999947, 28.946549193000067 ], [ -82.009683098999972, 28.946566722000057 ], [ -82.009734299999934, 28.946583220000036 ], [ -82.009785696999984, 28.946599029000026 ], [ -82.009837679999976, 28.946613809000041 ], [ -82.009889661999978, 28.946628243000077 ], [ -82.009942229999979, 28.946641647000035 ], [ -82.009994798999969, 28.946654018000061 ], [ -82.010047759999964, 28.946666046000075 ], [ -82.010100914999953, 28.946677043000079 ], [ -82.010154069999942, 28.946687009000073 ], [ -82.010207614999956, 28.946696287000066 ], [ -82.010254951999968, 28.946701142000052 ], [ -82.010308098999985, 28.946709708000071 ], [ -82.010359473999983, 28.946715157000028 ], [ -82.010434765999946, 28.946724501000062 ], [ -82.010472854999989, 28.946729173000051 ], [ -82.010566748999963, 28.946736957000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010566748999963, 28.946736957000041 ], [ -82.010842987999979, 28.946750518000044 ], [ -82.011139610999976, 28.946779483000057 ], [ -82.011328982999942, 28.946796018000043 ], [ -82.011452940999959, 28.946812665000039 ], [ -82.011528693999935, 28.946829316000048 ], [ -82.011599282999953, 28.946850511000036 ], [ -82.011642325999958, 28.946868678000044 ], [ -82.011681925999937, 28.94688684700003 ], [ -82.011711195999965, 28.946906532000071 ], [ -82.01175251799998, 28.946933785000056 ], [ -82.011778343999936, 28.946951955000031 ], [ -82.011797283999954, 28.946965582000075 ], [ -82.011808591999966, 28.946974084000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00160860699998, 28.941543770000067 ], [ -82.001607046999936, 28.941694687000052 ], [ -82.001606655999979, 28.941710501000045 ], [ -82.001606069, 28.941719440000043 ], [ -82.001605482999935, 28.941728377000061 ], [ -82.001604505999978, 28.941736971000068 ], [ -82.001603529999954, 28.941745910000066 ], [ -82.001602356999967, 28.941754848000073 ], [ -82.00160098899994, 28.941763442000024 ], [ -82.001599425999984, 28.941772381000078 ], [ -82.001597667999988, 28.941780975000029 ], [ -82.001595907999956, 28.941789914000026 ], [ -82.001593758999945, 28.941798508000034 ], [ -82.001591610999981, 28.941807102000041 ], [ -82.001589070999955, 28.941815697000038 ], [ -82.00158652999994, 28.941824291000046 ], [ -82.001583794999988, 28.941832886000043 ], [ -82.001580863999948, 28.941841480000051 ], [ -82.00157773799998, 28.941849732000037 ], [ -82.001574610999967, 28.941858326000045 ], [ -82.001571093999985, 28.941866576000052 ], [ -82.001567576999946, 28.941874827000049 ], [ -82.00156366799996, 28.941883077000057 ], [ -82.001559758999974, 28.941891328000054 ], [ -82.001555850999978, 28.941899579000051 ], [ -82.001551551999967, 28.941907486000048 ], [ -82.001547057999971, 28.941915392000055 ], [ -82.001542563999976, 28.941923300000042 ], [ -82.001537873999951, 28.941931206000049 ], [ -82.001532989999987, 28.941939114000036 ], [ -82.001527907999957, 28.941946676000043 ], [ -82.001522827999963, 28.94195424000003 ], [ -82.001517551999939, 28.941961802000037 ], [ -82.001512079999941, 28.941969366000023 ], [ -82.001506413999948, 28.941976929000077 ], [ -82.001500746999966, 28.941984148000074 ], [ -82.001494688999969, 28.941991367000071 ], [ -82.001488630999972, 28.941998243000057 ], [ -82.001482573999965, 28.942005462000054 ], [ -82.001476125999943, 28.94201233800004 ], [ -82.001469677999978, 28.942019213000037 ], [ -82.001463032999936, 28.942025745000024 ], [ -82.001456389999987, 28.942032621000067 ], [ -82.001449549999961, 28.942039152000063 ], [ -82.00144251599994, 28.942045341000039 ], [ -82.001435480999987, 28.942051528000036 ], [ -82.001428250999936, 28.942057717000068 ], [ -82.001420825999958, 28.942063905000055 ], [ -82.001413400999979, 28.942070092000051 ], [ -82.001405778999981, 28.942075937000027 ], [ -82.001397962999988, 28.942081438000059 ], [ -82.001390146999938, 28.942087281000056 ], [ -82.001382329999956, 28.942092438000032 ], [ -82.001374318999979, 28.942097939000064 ], [ -82.001366111999971, 28.94210309500005 ], [ -82.001357903999974, 28.942108252000025 ], [ -82.001349501999982, 28.942113409000058 ], [ -82.001341099999934, 28.942118222000033 ], [ -82.001332500999979, 28.942123035000066 ], [ -82.001323903999946, 28.942127504000041 ], [ -82.001315108999961, 28.942131973000073 ], [ -82.001306316999944, 28.942136443000038 ], [ -82.001297521999959, 28.942140567000024 ], [ -82.001288533999968, 28.942144693000046 ], [ -82.001279349999947, 28.942148475000067 ], [ -82.001270359999978, 28.942152257000032 ], [ -82.001260980999973, 28.942156038000064 ], [ -82.001251797999942, 28.942159475000039 ], [ -82.001242416999958, 28.942162913000061 ], [ -82.001233036999963, 28.942166008000072 ], [ -82.001223461999984, 28.942169102000037 ], [ -82.001214082999979, 28.942171852000058 ], [ -82.001204507999944, 28.942174603000069 ], [ -82.001194737999981, 28.942177353000034 ], [ -82.001185161999956, 28.942179760000045 ], [ -82.001175391999936, 28.942182166000066 ], [ -82.001165620999984, 28.942184229000077 ], [ -82.00115565599998, 28.942186291000041 ], [ -82.001145884999971, 28.942188354000052 ], [ -82.001135918999978, 28.942190073000063 ], [ -82.001125952999985, 28.942191448000074 ], [ -82.001115986999935, 28.942192823000028 ], [ -82.001106020999941, 28.942194198000038 ], [ -82.001096054999948, 28.942195230000038 ], [ -82.001086088999955, 28.942196261000049 ], [ -82.001075928999967, 28.942196949000049 ], [ -82.001065961999984, 28.94219763600006 ], [ -82.00105580099995, 28.94219832400006 ], [ -82.001045638999983, 28.942198669000049 ], [ -82.000881632999949, 28.942201419000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003815920999955, 28.924965543000042 ], [ -82.003838720999966, 28.92510068100006 ], [ -82.003873565999982, 28.925391078000075 ], [ -82.003892861999987, 28.925620172000038 ], [ -82.003903436999963, 28.925827402000039 ], [ -82.003900973999976, 28.925933689000033 ], [ -82.003908422999984, 28.92605942800003 ], [ -82.003908434999971, 28.926371715000073 ], [ -82.003909109999938, 28.926956185000051 ], [ -82.003914292, 28.927139733000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00379453499994, 28.924837801000024 ], [ -82.003803743999981, 28.924893381000061 ], [ -82.003815920999955, 28.924965543000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002696017999938, 28.922250236000025 ], [ -82.002752191999946, 28.922268236000036 ], [ -82.002835826999956, 28.922321130000057 ], [ -82.002920868999979, 28.922424447000026 ], [ -82.003062608999983, 28.922680959000047 ], [ -82.003244845999973, 28.923062165000033 ], [ -82.003322803999936, 28.923234270000023 ], [ -82.003409060999957, 28.923451701000033 ], [ -82.003491885999949, 28.923664255000062 ], [ -82.003589085999977, 28.92397420900005 ], [ -82.003604937999967, 28.924031729000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999415773999942, 28.918020543000068 ], [ -81.999438358999953, 28.918036579000045 ], [ -81.999457740999958, 28.918054769000037 ], [ -81.999495215999957, 28.918109342000037 ], [ -81.999528812999984, 28.918167326000059 ], [ -81.999610221999944, 28.918410628000061 ], [ -81.999659375999954, 28.918527427000072 ], [ -81.999766579999971, 28.918728969000028 ], [ -81.999847988999989, 28.918841525000062 ], [ -81.999950075999948, 28.918981368000061 ], [ -82.000225952999983, 28.919275160000041 ], [ -82.000685227999952, 28.919743436000033 ], [ -82.00090374399997, 28.919973904000074 ], [ -82.001098873999979, 28.920175139000037 ], [ -82.00133406599997, 28.920417303000079 ], [ -82.001667468999983, 28.920764063000036 ], [ -82.001832878999949, 28.920936874000063 ], [ -82.001995704999956, 28.921117644000049 ], [ -82.002092626999968, 28.921231335000073 ], [ -82.002198593999935, 28.921363217000078 ], [ -82.00232921099996, 28.921525889000065 ], [ -82.002428880999958, 28.921662022000078 ], [ -82.002456173999974, 28.921707862000062 ], [ -82.002470235999965, 28.921742788000074 ], [ -82.002484296999967, 28.921792268000047 ], [ -82.002491739999982, 28.921849750000035 ], [ -82.002484116999938, 28.921905812000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99773335499998, 28.912742578000064 ], [ -81.997822620999955, 28.912849685000026 ], [ -81.998083950999956, 28.913121277000073 ], [ -81.998185897999974, 28.91321980500004 ], [ -81.998228217999952, 28.913282499000047 ], [ -81.998256645999959, 28.913343473000054 ], [ -81.998273649999987, 28.913397707000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995968844999936, 28.814323174000037 ], [ -81.995960928999978, 28.814288310000052 ], [ -81.995939156999953, 28.814253445000077 ], [ -81.995907489, 28.814232525000079 ], [ -81.99585998699996, 28.81422032100005 ], [ -81.995776855999964, 28.814211602000057 ], [ -81.995392869999989, 28.814169752000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995392869999989, 28.814169752000055 ], [ -81.995192960999987, 28.814143596000065 ], [ -81.995137539999973, 28.814134879000051 ], [ -81.995097953999959, 28.814126161000047 ], [ -81.995058368999935, 28.814108727000075 ], [ -81.995036596999967, 28.814091295000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995036596999967, 28.814091295000026 ], [ -81.995014825999988, 28.814037253000038 ], [ -81.995008889999951, 28.814000645000078 ], [ -81.995002954999961, 28.813950093000074 ], [ -81.994999001999986, 28.81383852600004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995119633999934, 28.816101236000065 ], [ -81.995200815999965, 28.81548588000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995200815999965, 28.81548588000004 ], [ -81.995254272999944, 28.815163386000052 ], [ -81.995371088999946, 28.814358020000043 ], [ -81.995392869999989, 28.814169752000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987640371999987, 28.812175397000033 ], [ -81.987709956999936, 28.812158379000039 ], [ -81.98781433399995, 28.812148174000072 ], [ -81.98885424499997, 28.811998456000026 ], [ -81.989727921999986, 28.811865741000076 ], [ -81.990145429999984, 28.81181129600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990145429999984, 28.81181129600003 ], [ -81.990419903999964, 28.811760245000073 ], [ -81.990601597999955, 28.811729615000047 ], [ -81.990802617999975, 28.811709200000053 ], [ -81.990972711999973, 28.811709212000039 ], [ -81.99112734299996, 28.811709222000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99112734299996, 28.811709222000047 ], [ -81.991512370999942, 28.81170856500006 ], [ -81.992004870999949, 28.811716086000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992004870999949, 28.811716086000047 ], [ -81.992421598999954, 28.811716791000038 ], [ -81.99287002799997, 28.811716816000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99287002799997, 28.811716816000057 ], [ -81.993092694999973, 28.811719551000067 ], [ -81.99324732499997, 28.811725007000064 ], [ -81.993386490999967, 28.811749527000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993386490999967, 28.811749527000075 ], [ -81.993531839999946, 28.811795839000069 ], [ -81.993664818999946, 28.811855769000033 ], [ -81.993773057999988, 28.81191842100003 ], [ -81.993847276999986, 28.81197562400007 ], [ -81.993930772999988, 28.812054617000058 ], [ -81.994023544999948, 28.812158126000043 ], [ -81.994097763999946, 28.812237119000031 ], [ -81.994196209999984, 28.812305044000027 ], [ -81.994286407999937, 28.812359697000034 ], [ -81.994413203999954, 28.81240600700005 ], [ -81.994509071999971, 28.812430526000071 ], [ -81.994614220999949, 28.812446872000066 ], [ -81.99487400299995, 28.812452330000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99487400299995, 28.812452330000042 ], [ -81.995214190999945, 28.812452342000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992004870999949, 28.811716086000047 ], [ -81.991993243999957, 28.812104226000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99287002799997, 28.811716816000057 ], [ -81.992864484999984, 28.812130044000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018584971999985, 28.835995258000025 ], [ -82.017786132999959, 28.835995366000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017786132999959, 28.835995366000077 ], [ -82.017241043999945, 28.835995436000076 ], [ -82.017109470999969, 28.835995453000066 ], [ -82.017055432999939, 28.835997527000075 ], [ -82.017024890999949, 28.836007876000053 ], [ -82.016999048999935, 28.836028568000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016999048999935, 28.836028568000074 ], [ -82.016975558999945, 28.836053396000068 ], [ -82.016966165999975, 28.836084430000028 ], [ -82.016954607999935, 28.837255392000031 ], [ -82.016954615999964, 28.837305044000061 ], [ -82.016968717999987, 28.837336075000053 ], [ -82.01700161399998, 28.837356759000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012494603999983, 28.84345773900003 ], [ -82.012428708999948, 28.843531391000056 ], [ -82.01237548499995, 28.84357826400003 ], [ -82.01234014399995, 28.843591839000055 ], [ -82.012301980999951, 28.843598357000076 ], [ -82.012256354999977, 28.843598361000033 ], [ -82.011921767999979, 28.843580536000047 ], [ -82.011379332999979, 28.843564961000027 ], [ -82.01093321999997, 28.843573925000044 ], [ -82.010480420999954, 28.843590621000033 ], [ -82.010046067999951, 28.843618629000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010046067999951, 28.843618629000048 ], [ -82.010000444999946, 28.843643182000051 ], [ -82.009970031999956, 28.843690050000077 ], [ -82.009957363999945, 28.843736918000047 ], [ -82.009944694999945, 28.843797178000045 ], [ -82.009884002999968, 28.84529469000006 ], [ -82.009851084, 28.845642847000079 ], [ -82.009851088999937, 28.845705337000027 ], [ -82.00985869799996, 28.845747739000046 ], [ -82.00987835799998, 28.845791208000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001484663999975, 28.819644501000028 ], [ -82.000405260999969, 28.819124265000028 ], [ -82.000290825999969, 28.819058895000069 ], [ -82.000120718999938, 28.818971733000069 ], [ -82.000021749999974, 28.818914534000044 ], [ -81.999845458999971, 28.818830096000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999845458999971, 28.818830096000056 ], [ -81.999189658999967, 28.818499999000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999189658999967, 28.818499999000039 ], [ -81.998642358999973, 28.818233580000026 ], [ -81.998539430999983, 28.818186212000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998539430999983, 28.818186212000057 ], [ -81.998460256999977, 28.818140452000023 ], [ -81.998374153999976, 28.818088590000059 ], [ -81.998332586999936, 28.818062441000052 ], [ -81.998293, 28.818031062000045 ], [ -81.998255391999976, 28.817994454000029 ], [ -81.998221742999988, 28.817949130000045 ], [ -81.998192053999958, 28.817898577000051 ], [ -81.998172258999944, 28.817854995000062 ], [ -81.998154447, 28.817802699000026 ], [ -81.998146530999975, 28.817743429000075 ], [ -81.998133688999985, 28.816334032000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995983769999953, 28.820240412000032 ], [ -81.996718566999959, 28.820486119000066 ], [ -81.997510334999959, 28.82073944900003 ], [ -81.997643327999981, 28.820755793000046 ], [ -81.997794878999969, 28.820758519000037 ], [ -81.997949522999988, 28.820753074000038 ], [ -81.99805777399996, 28.820734009000034 ], [ -81.998172399999987, 28.820712780000065 ], [ -81.998306115999981, 28.820677641000032 ], [ -81.998466034999979, 28.820597826000039 ], [ -81.998543357999949, 28.820546074000049 ], [ -81.998642329999939, 28.820472533000043 ], [ -81.998750581999957, 28.820377202000032 ], [ -81.998824811999953, 28.820311831000026 ], [ -81.998920691999956, 28.820224672000052 ], [ -81.998988733999965, 28.820153854000068 ], [ -81.999845458999971, 28.818830096000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999845458999971, 28.818830096000056 ], [ -81.999953707999964, 28.81866122200006 ], [ -82.000825869999971, 28.817299325000079 ], [ -82.00174439999995, 28.815866604000064 ], [ -82.001874290999979, 28.815656871000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997386390999964, 28.820000890000074 ], [ -81.997804063, 28.819338474000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997804063, 28.819338474000062 ], [ -81.998178182999936, 28.81876365100004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998178182999936, 28.81876365100004 ], [ -81.998539430999983, 28.818186212000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998539430999983, 28.818186212000057 ], [ -81.999113461999968, 28.817310247000023 ], [ -81.999838410999985, 28.816172796000046 ], [ -82.000192219999974, 28.815628038000057 ], [ -82.000419373999989, 28.815277015000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001058167999986, 28.814205127000037 ], [ -82.001698972999975, 28.814220374000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99978299299994, 28.814298830000041 ], [ -81.999988841999937, 28.814208182000073 ], [ -82.000081870999963, 28.814180290000024 ], [ -82.001058167999986, 28.814205127000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995200815999965, 28.81548588000004 ], [ -81.995052367999961, 28.815426605000027 ], [ -81.994975174999979, 28.815393482000047 ], [ -81.994939547999934, 28.815370819000066 ], [ -81.994840586999942, 28.815266221000059 ], [ -81.99475943799996, 28.815184287000079 ], [ -81.994707977999951, 28.81513896000007 ], [ -81.994638703999954, 28.815083174000051 ], [ -81.994563491999941, 28.815027389000079 ], [ -81.994490258999974, 28.814980318000039 ], [ -81.994401191999941, 28.814931504000072 ], [ -81.994310144999986, 28.814884434000078 ], [ -81.994219098999963, 28.814847822000047 ], [ -81.994100340999978, 28.814800749000028 ], [ -81.993997417999935, 28.814776340000037 ], [ -81.993876678999982, 28.814753673000041 ], [ -81.993730209999967, 28.814734490000035 ], [ -81.993617388999951, 28.814727512000047 ], [ -81.993466960999967, 28.814727505000064 ], [ -81.991830043999983, 28.81490173800006 ], [ -81.991649922999954, 28.814920903000029 ], [ -81.991614293999987, 28.814929617000075 ], [ -81.991565307999963, 28.814944804000049 ], [ -81.990793608999979, 28.815184043000045 ], [ -81.989369662999934, 28.815626749000046 ], [ -81.988880747999985, 28.815780113000073 ], [ -81.988653114999977, 28.815856795000059 ], [ -81.988611891999938, 28.815878316000067 ], [ -81.988567996999961, 28.815916059000074 ], [ -81.988526425999964, 28.815959636000059 ], [ -81.988496731999987, 28.815996240000061 ], [ -81.988470996, 28.816034589000026 ], [ -81.98845317599995, 28.816078169000036 ], [ -81.988443275999941, 28.816116519000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141108372999952, 28.80410338400003 ], [ -82.141082234999942, 28.804112350000025 ], [ -82.141068192999967, 28.804119584000034 ], [ -82.141052978999937, 28.804125444000078 ], [ -82.141037176999987, 28.804129242000045 ], [ -82.141020786999945, 28.804130978000046 ], [ -82.141004392999946, 28.804130651000037 ], [ -82.140973948999942, 28.804129652000029 ], [ -82.14095697099998, 28.804130014000066 ], [ -82.140940189999981, 28.804131406000067 ], [ -82.140923409999971, 28.804133487000058 ], [ -82.140906824999945, 28.80413625400007 ], [ -82.140890437999985, 28.804140053000026 ], [ -82.140874245999953, 28.80414419400006 ], [ -82.140858444999935, 28.804149369000072 ], [ -82.140842840999937, 28.804155230000049 ], [ -82.140827627999954, 28.804161777000047 ], [ -82.140812805999985, 28.804169012000045 ], [ -82.140798375999964, 28.804176934000054 ], [ -82.140784529999962, 28.804185199000074 ], [ -82.140771272999984, 28.804194495000047 ], [ -82.140758404999985, 28.804204134000031 ], [ -82.140746320999938, 28.804214804000026 ], [ -82.140734820999967, 28.804225473000031 ], [ -82.140723907999984, 28.804236829000047 ], [ -82.140713775999984, 28.804248872000073 ], [ -82.140704229999983, 28.804261258000054 ], [ -82.140695465999954, 28.804273988000034 ], [ -82.140687677999949, 28.804287059000046 ], [ -82.140680473999964, 28.804300474000058 ], [ -82.140674053999987, 28.804314232000024 ], [ -82.140668606999952, 28.804328333000058 ], [ -82.140663943999982, 28.804342777000045 ], [ -82.140660059999959, 28.804357219000053 ], [ -82.14065715199996, 28.804372006000051 ], [ -82.140655219999985, 28.804386790000024 ], [ -82.140653874999941, 28.804401574000053 ], [ -82.140596865999953, 28.805547460000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140370173999941, 28.80365583300005 ], [ -82.140425639999989, 28.803672616000028 ], [ -82.140526976, 28.803679246000058 ], [ -82.140865327999961, 28.803646898000068 ], [ -82.141062243999954, 28.803643324000063 ], [ -82.141115775999936, 28.80364326800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134664720999979, 28.802876914000024 ], [ -82.134307924999973, 28.803062928000031 ], [ -82.134137420999934, 28.803161610000075 ], [ -82.134085832999972, 28.803186921000076 ], [ -82.134011699999974, 28.803209562000063 ], [ -82.133837235999977, 28.803209735000053 ], [ -82.13382103899994, 28.803210094000065 ], [ -82.133805422999956, 28.803207015000055 ], [ -82.133790584999986, 28.803201529000034 ], [ -82.133777497999972, 28.80319329200006 ], [ -82.133761572999958, 28.803099456000041 ], [ -82.133748003999983, 28.803018336000036 ], [ -82.133749639999962, 28.802924139000027 ], [ -82.133798884999976, 28.802825080000048 ], [ -82.134046391999959, 28.802618620000032 ], [ -82.13417676399996, 28.802532608000035 ], [ -82.13426274699998, 28.802494634000027 ], [ -82.134398895999936, 28.802441453000029 ], [ -82.134765773999959, 28.802293319000057 ], [ -82.134958332999986, 28.802269404000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138106819999962, 28.799021779000043 ], [ -82.138143108999941, 28.799479781000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136314672999958, 28.797070822000023 ], [ -82.137191188999964, 28.797054936000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137191188999964, 28.797054936000052 ], [ -82.137617372999955, 28.797052707000034 ], [ -82.138122730999953, 28.797034092000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138122730999953, 28.797034092000047 ], [ -82.139030465999952, 28.797015335000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00667348099995, 28.932556154000054 ], [ -82.007030555999961, 28.932651430000078 ], [ -82.007115282999962, 28.932675794000033 ], [ -82.007160130999978, 28.932685727000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007160130999978, 28.932685727000035 ], [ -82.007275624999977, 28.932700536000027 ], [ -82.007387960999949, 28.932717 ], [ -82.007508323999957, 28.932733464000023 ], [ -82.007595250999941, 28.932744046000039 ], [ -82.007712936999951, 28.932753451000053 ], [ -82.007806550999987, 28.932755799000063 ], [ -82.007941621999976, 28.932761674000062 ], [ -82.008055749999983, 28.932764610000049 ], [ -82.008092406999936, 28.932767295000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008092406999936, 28.932767295000076 ], [ -82.00825125199998, 28.932768181000029 ], [ -82.008454897999968, 28.932768168000052 ], [ -82.008608683999967, 28.932768019000036 ], [ -82.008802786, 28.93276800600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008802786, 28.93276800600006 ], [ -82.009594677999985, 28.932767566000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006149285999982, 28.93234179500007 ], [ -82.006215880999946, 28.932376312000031 ], [ -82.006304827999941, 28.932413431000043 ], [ -82.006403697999986, 28.932453991000045 ], [ -82.006502372999989, 28.932497302000058 ], [ -82.00667348099995, 28.932556154000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007649249999986, 28.930709777000061 ], [ -82.009388549999983, 28.930726199000048 ], [ -82.009592396999949, 28.930729275000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015793808999945, 28.928230807000034 ], [ -82.015924816999984, 28.928218331000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013968298999941, 28.932824744000072 ], [ -82.013965402999986, 28.933088763000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015131505999989, 28.937962693000031 ], [ -82.014744974999985, 28.937962736000031 ], [ -82.014410433999956, 28.937962772000049 ], [ -82.014069110999969, 28.937962808000066 ], [ -82.013707450999959, 28.937959984000031 ], [ -82.01338796899995, 28.937962767000045 ], [ -82.013056762999952, 28.937962800000037 ], [ -82.012740404999988, 28.937954922000074 ], [ -82.01261104799994, 28.937948059000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013697272999934, 28.936690464000037 ], [ -82.013980791999984, 28.936688260000039 ], [ -82.014415664999945, 28.936686214000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014415664999945, 28.936686214000076 ], [ -82.01513532499996, 28.93669010900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020023137999942, 28.932331571000077 ], [ -82.020024091999971, 28.933107110000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019770846999961, 28.933992579000062 ], [ -82.01968478799995, 28.93404984700004 ], [ -82.019635790999985, 28.934074440000074 ], [ -82.019541041999958, 28.934115475000056 ], [ -82.019442885999979, 28.934149758000046 ], [ -82.019341944999951, 28.934177072000068 ], [ -82.019238854999969, 28.934197245000064 ], [ -82.019134267999959, 28.934210149000023 ], [ -82.019028847999948, 28.934215703000064 ], [ -82.018971381999961, 28.934215622000067 ], [ -82.018789357999935, 28.934213143000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018789357999935, 28.934213143000079 ], [ -82.018144057999962, 28.934209521000071 ], [ -82.01813933699998, 28.93420956500006 ], [ -82.018095587999937, 28.93420578100006 ], [ -82.018053517999988, 28.934194561000027 ], [ -82.018014745999949, 28.934176336000064 ], [ -82.017980761, 28.934151807000035 ], [ -82.017952866999963, 28.934121918000073 ], [ -82.017932137999935, 28.934087816000044 ], [ -82.017919370999948, 28.934050812000066 ], [ -82.017915055999936, 28.934012328000051 ], [ -82.017915024, 28.93382349500007 ], [ -82.017919684999981, 28.933194053000079 ], [ -82.01791826799996, 28.933102697000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01791826799996, 28.933102697000038 ], [ -82.017886256999986, 28.932980047000058 ], [ -82.017859342999941, 28.932911175000072 ], [ -82.017830778999951, 28.932849952000026 ], [ -82.01780036599996, 28.932795422000027 ], [ -82.017747880999934, 28.932724093000047 ], [ -82.017709709999963, 28.932665350000036 ], [ -82.017666763999955, 28.932577234000064 ], [ -82.017642902999967, 28.932505900000024 ], [ -82.017612750999945, 28.932354085000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019689029999938, 28.938753968000071 ], [ -82.019668606999971, 28.940122257000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019668606999971, 28.940122257000041 ], [ -82.019676775999983, 28.94103308800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956306100999939, 28.940811567000026 ], [ -81.956269603999942, 28.940745072000027 ], [ -81.95624522199995, 28.940702136000027 ], [ -81.956208643999958, 28.940646676000028 ], [ -81.956167990999973, 28.940607312000054 ], [ -81.956117165999956, 28.940584042000069 ], [ -81.956048038999938, 28.940566134000051 ], [ -81.955964669999958, 28.940562529000033 ], [ -81.955913836999969, 28.94055893500007 ], [ -81.955877235999935, 28.940557134000073 ], [ -81.955834529999947, 28.940567852000072 ], [ -81.955791820999934, 28.940583936000053 ], [ -81.955749108999953, 28.940608964000035 ], [ -81.955720629999973, 28.940637572000071 ], [ -81.955692135999982, 28.940698378000036 ], [ -81.955657536, 28.940773490000026 ], [ -81.955647342999953, 28.940832513000032 ], [ -81.955653419999976, 28.940889752000032 ], [ -81.955679833999966, 28.940939843000024 ], [ -81.955755033999935, 28.941023935000032 ], [ -81.955807872999969, 28.941091921000066 ], [ -81.95586071699995, 28.941150965000077 ], [ -81.955911539999988, 28.941179599000066 ], [ -81.955974567999988, 28.941197507000027 ], [ -81.956053863999955, 28.941218997000078 ], [ -81.956108760999939, 28.941229747000079 ], [ -81.956169762999934, 28.941229767000038 ], [ -81.956214503999945, 28.941219050000029 ], [ -81.956265347999988, 28.941194024000026 ], [ -81.956320268999946, 28.941149325000026 ], [ -81.95638129699995, 28.941090320000058 ], [ -81.956399609999949, 28.941061708000063 ], [ -81.956407761999969, 28.941016994000051 ], [ -81.956399644999976, 28.940977639000039 ], [ -81.956373228999951, 28.940931127000056 ], [ -81.956330553999976, 28.94086851000003 ], [ -81.956306100999939, 28.940811567000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954141709999988, 28.941461762000074 ], [ -81.954179989999943, 28.94144742900005 ], [ -81.954293104999977, 28.941450194000026 ], [ -81.954374719999976, 28.941435682000076 ], [ -81.954439862999948, 28.941408210000077 ], [ -81.955095899999947, 28.940744227000039 ], [ -81.955269059999978, 28.940553977000036 ], [ -81.955465269999934, 28.940357991000042 ], [ -81.955617547999964, 28.940196079000032 ], [ -81.955755078999971, 28.940070872000035 ], [ -81.955810793999945, 28.940033362000065 ], [ -81.955875403999983, 28.940020502000039 ], [ -81.956451891999961, 28.940002908000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963906840999982, 28.87398735000005 ], [ -81.963577677999979, 28.873672634000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962661625999942, 28.877388994000057 ], [ -81.962686006999945, 28.877305220000039 ], [ -81.96272146299998, 28.877200014000039 ], [ -81.962812308999958, 28.876958435000063 ], [ -81.962841109999943, 28.876890248000052 ], [ -81.962880986999949, 28.876804528000036 ], [ -81.962965647999965, 28.876662100000033 ], [ -81.963012158999959, 28.876595866000059 ], [ -81.963087456999972, 28.876498466000044 ], [ -81.963151676999985, 28.876432237000074 ], [ -81.96324025399997, 28.876340686000049 ], [ -81.96331553999994, 28.87627640900007 ], [ -81.96342182099994, 28.876200449000066 ], [ -81.963585663999936, 28.876106968000045 ], [ -81.963711861999968, 28.876046601000041 ], [ -81.963795985, 28.876031036000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962205906999941, 28.87657247900006 ], [ -81.962267930999985, 28.876455591000024 ], [ -81.962336595999943, 28.876340653000057 ], [ -81.962422971999956, 28.876217926000038 ], [ -81.962525335999942, 28.876094987000045 ], [ -81.962618344999953, 28.875991747000057 ], [ -81.962740135, 28.875878772000078 ], [ -81.962830919999988, 28.875806705000059 ], [ -81.96295491799998, 28.875713215000076 ], [ -81.963092192999966, 28.875621677000026 ], [ -81.963176327999975, 28.875576887000079 ], [ -81.96326931599998, 28.875530150000031 ], [ -81.963641257999939, 28.875376324000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963967944, 28.876645053000061 ], [ -81.963941895999938, 28.876582480000025 ], [ -81.963893238999958, 28.876453870000034 ], [ -81.96383577499995, 28.876192767000077 ], [ -81.963795985, 28.876031036000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963795985, 28.876031036000029 ], [ -81.963734102999979, 28.875746550000031 ], [ -81.963692116999937, 28.875534161000076 ], [ -81.963641257999939, 28.875376324000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963641257999939, 28.875376324000058 ], [ -81.963608085999965, 28.875286688000074 ], [ -81.963557209999976, 28.875181460000078 ], [ -81.963463263999984, 28.875032884000063 ], [ -81.963342299999965, 28.874900359000037 ], [ -81.96325378399996, 28.874817202000031 ], [ -81.963206582999987, 28.874757438000074 ], [ -81.963188893999984, 28.874702877000061 ], [ -81.963185961999955, 28.874643125000034 ], [ -81.963200738999944, 28.874585975000059 ], [ -81.963237650999986, 28.874534460000064 ], [ -81.96360373899995, 28.874233203000074 ], [ -81.963906840999982, 28.87398735000005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963906840999982, 28.87398735000005 ], [ -81.964068232999978, 28.873855767000066 ], [ -81.964343768999981, 28.873654935000047 ], [ -81.964520895999954, 28.873540675000072 ], [ -81.964678330999959, 28.873464511000066 ], [ -81.964969579999945, 28.873346815000048 ], [ -81.96509326599994, 28.87330292200005 ], [ -81.96517473199998, 28.873274012000024 ], [ -81.965201950999983, 28.87326981800004 ], [ -81.965341148999983, 28.87327338700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980405640999948, 28.894578572000057 ], [ -81.980408043999944, 28.894579145000023 ], [ -81.980591392999941, 28.894633685000031 ], [ -81.980707842999948, 28.894675132000032 ], [ -81.98081190399995, 28.89471439700003 ], [ -81.980940741999973, 28.894766749000041 ], [ -81.981069577999961, 28.894832184000052 ], [ -81.981238054999949, 28.894912890000057 ], [ -81.981431312999973, 28.894984875000034 ], [ -81.981584931999976, 28.895024146000026 ], [ -81.981795538999961, 28.895074327000032 ], [ -81.981926862999956, 28.895087428000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990979246999984, 28.875379701000043 ], [ -81.990979248999963, 28.875349503000052 ], [ -81.990973533999977, 28.875309240000036 ], [ -81.990965913999958, 28.87526897500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990761985999939, 28.875111262000075 ], [ -81.990714337999975, 28.875106226000071 ], [ -81.990674312999943, 28.875106223000046 ], [ -81.990640003999943, 28.875111253000057 ], [ -81.990601882999954, 28.875122994000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990815313999974, 28.875579330000051 ], [ -81.990878214999952, 28.875537392000069 ], [ -81.990910618999976, 28.875513908000073 ], [ -81.990943024999979, 28.875473647000035 ], [ -81.990967806999947, 28.875430030000075 ], [ -81.990979246999984, 28.875379701000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964101711999945, 28.883000546000062 ], [ -81.964213617999974, 28.882965223000042 ], [ -81.964443158999984, 28.882922357000041 ], [ -81.964661217999947, 28.882892111000046 ], [ -81.964819874999989, 28.882867752000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964702435999982, 28.881323466000026 ], [ -81.964636626999948, 28.881309354000052 ], [ -81.964477664999947, 28.881281123000065 ], [ -81.964284138999972, 28.881242912000062 ], [ -81.964102134999962, 28.881207454000048 ], [ -81.963980473999982, 28.881181638000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964319554999975, 28.883604118000051 ], [ -81.964279420999958, 28.883508152000047 ], [ -81.964204892999987, 28.883311169000024 ], [ -81.964176233999979, 28.883215205000056 ], [ -81.964144707999935, 28.883119241000031 ], [ -81.964101711999945, 28.883000546000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965999442999987, 28.884965054000077 ], [ -81.965936883999973, 28.884978153000077 ], [ -81.965807194999968, 28.885005278000051 ], [ -81.965685122999957, 28.885025187000053 ], [ -81.965528867999979, 28.885061931000052 ], [ -81.965406795999968, 28.88508562100003 ], [ -81.965342372999942, 28.885086095000077 ], [ -81.965279257999953, 28.885070927000072 ], [ -81.965216145999989, 28.885040610000033 ], [ -81.965089952999961, 28.884894117000044 ], [ -81.964943693999942, 28.88469711700003 ], [ -81.96478925599996, 28.884474565000062 ], [ -81.964671162999934, 28.884286832000043 ], [ -81.964564395999957, 28.884102195000025 ], [ -81.964453925999976, 28.883893835000038 ], [ -81.964366298999948, 28.883706110000048 ], [ -81.964319554999975, 28.883604118000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964319554999975, 28.883604118000051 ], [ -81.964485976999981, 28.883563759000026 ], [ -81.964617961999977, 28.883541068000056 ], [ -81.964798723999934, 28.883513338000057 ], [ -81.965042607999976, 28.883478049000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965999442999987, 28.884965054000077 ], [ -81.965950708999969, 28.884836259000053 ], [ -81.965919164999946, 28.884788272000037 ], [ -81.965772890999972, 28.884629150000023 ], [ -81.965643833999934, 28.884470032000024 ], [ -81.965529118999939, 28.884318493000023 ], [ -81.965382862999945, 28.884113918000025 ], [ -81.965265293999948, 28.883921974000032 ], [ -81.965176404999966, 28.883760342000073 ], [ -81.965042607999976, 28.883478049000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962581197999953, 28.886029570000062 ], [ -81.962731198999961, 28.886013454000079 ], [ -81.962914986999976, 28.885993222000025 ], [ -81.963136082999938, 28.885963029000038 ], [ -81.963411677999943, 28.885909819000062 ], [ -81.963678682999955, 28.885841822000032 ], [ -81.963902720999954, 28.88577381500005 ], [ -81.964163873999951, 28.885687940000025 ], [ -81.964402174999975, 28.885599308000053 ], [ -81.964692636999985, 28.88546978100004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962811558999988, 28.886306375000061 ], [ -81.962690911999971, 28.886162298000045 ], [ -81.962581197999953, 28.886029570000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966525822999984, 28.879686809000077 ], [ -81.966580006999948, 28.879662299000074 ], [ -81.966613338999935, 28.879647065000029 ], [ -81.966644334999955, 28.879637446000061 ], [ -81.966695380999965, 28.879629434000037 ], [ -81.966755541999987, 28.879627845000073 ], [ -81.966833534999978, 28.879629770000065 ], [ -81.966921833999947, 28.879639820000079 ], [ -81.966981649, 28.879649863000054 ], [ -81.967044320999946, 28.879637342000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967044320999946, 28.879637342000024 ], [ -81.967010149999965, 28.87960223400006 ], [ -81.966921851999984, 28.879582155000037 ], [ -81.966825010999969, 28.879562074000034 ], [ -81.96674240699997, 28.879552026000056 ], [ -81.966676891999953, 28.879546995000055 ], [ -81.966619925999964, 28.879534446000036 ], [ -81.966560114999936, 28.879514374000053 ], [ -81.966512063999971, 28.879481840000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974528046999978, 28.880247213000075 ], [ -81.974674773999936, 28.880240902000025 ], [ -81.974848666999947, 28.880235832000039 ], [ -81.975077392999935, 28.880235739000057 ], [ -81.975392447, 28.880253310000057 ], [ -81.975631225999962, 28.880272327000057 ], [ -81.975831864999975, 28.880291336000028 ], [ -81.975974464999979, 28.880316174000029 ], [ -81.976403920999985, 28.880412575000037 ], [ -81.976846642999988, 28.880514817000062 ], [ -81.977214745999959, 28.880600989000072 ], [ -81.977398801999982, 28.880631669000024 ], [ -81.977561303999948, 28.880650669000033 ], [ -81.977728780999939, 28.880662373000064 ], [ -81.977853054999969, 28.880659682000044 ], [ -81.977967951999972, 28.880657109000026 ], [ -81.978090276999978, 28.880646378000051 ], [ -81.978259418999983, 28.880624513000043 ], [ -81.978393740999934, 28.880598264000071 ], [ -81.978569034999964, 28.880551854000032 ], [ -81.978674582999986, 28.880519019000076 ], [ -81.978829039999937, 28.880473730000062 ], [ -81.978944883999986, 28.880440897000028 ], [ -81.979048113999966, 28.880418540000051 ], [ -81.979215178999937, 28.880385430000047 ], [ -81.979311712999959, 28.880370718000052 ], [ -81.979457153999988, 28.880356015000075 ], [ -81.979641206999986, 28.880344714000046 ], [ -81.979787933999944, 28.880342470000073 ], [ -81.980008019999957, 28.880351566000058 ], [ -81.980167614999971, 28.88036631600005 ], [ -81.98034522599994, 28.880391264000025 ], [ -81.980565304999971, 28.880435476000059 ], [ -81.980712024999946, 28.880475145000048 ], [ -81.980844585999989, 28.88051594500007 ], [ -81.980993876999946, 28.880568077000078 ], [ -81.981129008999972, 28.880625869000028 ], [ -81.981231966999985, 28.880668931000059 ], [ -81.981385113999977, 28.880748251000057 ], [ -81.981507373999989, 28.880818502000068 ], [ -81.981657944999938, 28.880918211000051 ], [ -81.981824003999975, 28.881043772000055 ], [ -81.981978381999966, 28.881174271000077 ], [ -81.982092752999961, 28.881284724000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985040024999989, 28.882155046000037 ], [ -81.985124249999956, 28.882263721000072 ], [ -81.985160570999938, 28.882299823000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985160570999938, 28.882299823000039 ], [ -81.985291552999968, 28.882441749000066 ], [ -81.985397463999959, 28.882534987000042 ], [ -81.98550602399996, 28.882621235000045 ], [ -81.985625177999964, 28.882695830000046 ], [ -81.985754994, 28.882769488000065 ], [ -81.985992462999945, 28.882883648000075 ], [ -81.986277586999961, 28.882978903000037 ], [ -81.986430695999957, 28.883023267000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986430695999957, 28.883023267000056 ], [ -81.986842749999937, 28.883157138000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013686031999953, 28.927367101000073 ], [ -82.013681793999979, 28.928221465000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955510728999968, 28.948347355000067 ], [ -81.955643355999939, 28.948361952000027 ], [ -81.955701967999971, 28.948386347000053 ], [ -81.955759822999937, 28.948430303000066 ], [ -81.955805334, 28.948470362000023 ], [ -81.955853520999938, 28.948515135000036 ], [ -81.955893676999949, 28.948552837000079 ], [ -81.955926593999948, 28.948585951000041 ], [ -81.955971311999974, 28.948623530000077 ], [ -81.956008790999988, 28.948656521000032 ], [ -81.956048947999989, 28.948689511000055 ], [ -81.956091782999977, 28.948724859000038 ], [ -81.956133278999971, 28.948760207000078 ], [ -81.956188165999947, 28.948797914000068 ], [ -81.956239034999953, 28.948830908000048 ], [ -81.956305967999981, 28.948878042000047 ], [ -81.956372901999941, 28.948922820000064 ], [ -81.956447870999966, 28.94896760000006 ], [ -81.95652284099998, 28.949010024000074 ], [ -81.956583011999953, 28.949042620000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956641126999955, 28.948925093000071 ], [ -81.95653238899996, 28.948869617000071 ], [ -81.956257883999967, 28.948694943000078 ], [ -81.956039622999981, 28.94851737700003 ], [ -81.95585112599997, 28.948357279000049 ], [ -81.955788006999967, 28.948281911000038 ], [ -81.955769281999949, 28.948232437000058 ], [ -81.955755199999942, 28.948153130000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95950070799995, 28.949385492000033 ], [ -81.959699188999934, 28.949386449000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974908768999967, 28.952534760000049 ], [ -81.974766390999946, 28.952537634000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981647840999983, 28.952846926000063 ], [ -81.981584340999973, 28.952826810000033 ], [ -81.981432169999948, 28.952768595000066 ], [ -81.98129653999996, 28.952719110000032 ], [ -81.981170832999965, 28.95268126600007 ], [ -81.981064970999967, 28.952657973000044 ], [ -81.980939261999936, 28.952628858000026 ], [ -81.980803628, 28.952599741000029 ], [ -81.980621678999967, 28.952570617000049 ], [ -81.980466191999938, 28.952556046000041 ], [ -81.980251157999987, 28.952544376000048 ], [ -81.979973262999977, 28.952544335000027 ], [ -81.97941416499998, 28.952541341000028 ], [ -81.978772360999983, 28.952538331000028 ], [ -81.977925443999936, 28.952535285000067 ], [ -81.976651760999971, 28.952535070000067 ], [ -81.975593111999956, 28.952537792000044 ], [ -81.974908768999967, 28.952534760000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015134190999959, 28.888690937000035 ], [ -82.015178597999977, 28.888725967000028 ], [ -82.015226800999983, 28.88875020100005 ], [ -82.015282720999949, 28.888773119000064 ], [ -82.015352450999956, 28.888781700000038 ], [ -82.015990302999967, 28.888781626000025 ], [ -82.017085969999982, 28.888781491000032 ], [ -82.018742331999988, 28.888781271000028 ], [ -82.019045825999967, 28.888781228000028 ], [ -82.019071544999974, 28.888776698000072 ], [ -82.019258649999983, 28.888739146000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987536912999985, 28.881049052000037 ], [ -81.987604036999983, 28.881017507000024 ], [ -81.98772725699996, 28.880951244000073 ], [ -81.987892922999947, 28.880851247000066 ], [ -81.988050374999943, 28.88074040500004 ], [ -81.988143545999947, 28.880663043000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985849610999935, 28.881005351000056 ], [ -81.985888547999934, 28.881050340000058 ], [ -81.985956682999984, 28.881133891000047 ], [ -81.986029688999963, 28.881217442000036 ], [ -81.986114859999986, 28.881315989000029 ], [ -81.986200033999978, 28.881408111000042 ], [ -81.986346047999973, 28.881538798000065 ], [ -81.986485167999945, 28.881640250000032 ], [ -81.986568162999959, 28.88169526300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986568162999959, 28.88169526300004 ], [ -81.986588862999952, 28.881709016000059 ], [ -81.986721108999973, 28.881802997000079 ], [ -81.986885278999978, 28.881886918000077 ], [ -81.987012378999964, 28.881947529000058 ], [ -81.987142127999959, 28.88200813900005 ], [ -81.987240101999987, 28.882052431000034 ], [ -81.987351314999955, 28.882103717000064 ], [ -81.987454583999977, 28.882161994000057 ], [ -81.987520780999944, 28.882208614000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985721328999944, 28.881885630000056 ], [ -81.98584571799995, 28.882001496000044 ], [ -81.986031426999944, 28.882142121000072 ], [ -81.986133098999971, 28.882208842000068 ], [ -81.986237358999972, 28.882271781000043 ], [ -81.986430987999938, 28.882372749000069 ], [ -81.986657386, 28.882488141000067 ], [ -81.986705044999951, 28.882530098000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996401382999977, 28.924972847000049 ], [ -81.996441765999975, 28.924949618000028 ], [ -81.996477490999951, 28.924907259000065 ], [ -81.996510109999974, 28.924874465000073 ], [ -81.996556703999943, 28.924830741000051 ], [ -81.996604855999976, 28.924785650000047 ], [ -81.99666542999995, 28.924732360000064 ], [ -81.996798398999942, 28.924627696000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996730668999987, 28.924571122000032 ], [ -81.996677858999988, 28.92462167900004 ], [ -81.996604858999945, 28.924685899000053 ], [ -81.996559890999947, 28.924724183000023 ], [ -81.996517877999963, 28.924770616000046 ], [ -81.996485259999986, 28.924806144000058 ], [ -81.996455748999949, 28.924845769000058 ], [ -81.996424683999976, 28.92488949400007 ], [ -81.996399831999952, 28.924929120000058 ], [ -81.996398278999948, 28.92493048700004 ], [ -81.996401382999977, 28.924972847000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971623730999966, 28.910804764000034 ], [ -81.971646405999934, 28.910752860000059 ], [ -81.971655202999955, 28.910728109000047 ], [ -81.971667128999968, 28.910691327000052 ], [ -81.971679060999975, 28.910638044000052 ], [ -81.971690996999939, 28.910562072000062 ], [ -81.971693943999981, 28.910506036000072 ], [ -81.971691026999963, 28.910453782000047 ], [ -81.971684983999978, 28.910407027000076 ], [ -81.971668784999963, 28.910352020000062 ], [ -81.971649457999945, 28.910302512000044 ], [ -81.971639117999985, 28.910256787000037 ], [ -81.97163170999994, 28.910200749000069 ], [ -81.971628792, 28.91015365100003 ], [ -81.971636241999988, 28.91005705200007 ], [ -81.97165403799994, 28.909984174000044 ], [ -81.971671833999949, 28.909917485000051 ], [ -81.971683763999977, 28.909865233000062 ], [ -81.97169413599994, 28.909799918000033 ], [ -81.971698644999947, 28.909733569000025 ], [ -81.971698662999984, 28.909666877000063 ], [ -81.971683840999958, 28.90957955500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970927758999949, 28.910568441000066 ], [ -81.970981903999984, 28.910451225000031 ], [ -81.971008687999984, 28.910376631000076 ], [ -81.971020626999973, 28.910298596000075 ], [ -81.971031005999976, 28.910200621000058 ], [ -81.97103840799997, 28.910119544000054 ], [ -81.971048833999987, 28.910019111000054 ], [ -81.971059201999935, 28.90997201600004 ], [ -81.971074058999989, 28.90993042100007 ], [ -81.971093407999945, 28.909893986000043 ], [ -81.971136398999988, 28.909841741000037 ], [ -81.971213583999941, 28.909766125000033 ], [ -81.971318895999957, 28.909700830000077 ], [ -81.971468741999956, 28.909648609000044 ], [ -81.971683840999958, 28.90957955500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007623153999987, 28.88467647300007 ], [ -82.007268073999967, 28.884317467000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963762882999958, 28.888027246000036 ], [ -81.963861910999981, 28.88744113000007 ], [ -81.963885983999944, 28.88730053200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970169120999969, 28.918413512000029 ], [ -81.97034913799996, 28.918414799000061 ], [ -81.970531986999958, 28.918422322000026 ], [ -81.970608526999968, 28.918429821000075 ], [ -81.970660969999983, 28.918443552000042 ], [ -81.97070791699997, 28.918464918000041 ], [ -81.970770529999982, 28.918500898000048 ], [ -81.97084055199997, 28.918562536000024 ], [ -81.970888604999971, 28.918594345000031 ], [ -81.970950610999978, 28.918623978000028 ], [ -81.971232304999944, 28.918717573000038 ], [ -81.971490967999955, 28.918800248000025 ], [ -81.971563604999972, 28.918826765000063 ], [ -81.971607892999941, 28.918856393000056 ], [ -81.971648621999975, 28.918899268000075 ], [ -81.971664776999944, 28.918932454000071 ], [ -81.971676960999957, 28.918978002000074 ], [ -81.971680815999946, 28.919387524000058 ], [ -81.971675234999964, 28.920047256000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969582323999987, 28.918469390000041 ], [ -81.969652745999952, 28.918449916000043 ], [ -81.96971978199997, 28.918439601000046 ], [ -81.96978923599994, 28.918440864000047 ], [ -81.969918224999958, 28.918442139000035 ], [ -81.970052882999937, 28.918442169000059 ], [ -81.970169120999969, 28.918413512000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970169120999969, 28.918413512000029 ], [ -81.970054316999949, 28.918382309000037 ], [ -81.969972104999954, 28.918379797000057 ], [ -81.969891314999984, 28.918363566000039 ], [ -81.969814780999968, 28.918336113000066 ], [ -81.969748170999935, 28.918301178000036 ], [ -81.969694319999974, 28.91826125800003 ], [ -81.969651787999965, 28.91820866300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956335385999978, 28.921313115000032 ], [ -81.956333985999947, 28.921949831000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001313449999941, 28.954996152000035 ], [ -82.000948380999944, 28.953266712000072 ], [ -82.000927958999966, 28.953175372000032 ], [ -82.000923327999942, 28.953125474000046 ], [ -82.00092564199997, 28.953092886000036 ], [ -82.000934905999941, 28.953058264000049 ], [ -82.000946481999961, 28.953023639000037 ], [ -82.000970796, 28.95296864900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955062310999949, 28.948121491000052 ], [ -81.955047129999969, 28.948213214000077 ], [ -81.95501250999996, 28.948263200000042 ], [ -81.954972951999935, 28.948299868000049 ], [ -81.954881929999942, 28.948370243000056 ], [ -81.954247181999961, 28.94889481000007 ], [ -81.954155736999951, 28.949054684000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963577677999979, 28.873672634000059 ], [ -81.964045810999949, 28.873302088000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965448335999952, 28.872582284000032 ], [ -81.965495044999955, 28.872585341000047 ], [ -81.965529644999947, 28.872583826000039 ], [ -81.965564823999955, 28.872576729000059 ], [ -81.965606347999937, 28.872564558000079 ], [ -81.965645567999957, 28.872544265000045 ], [ -81.965685366999935, 28.872516864000033 ], [ -81.96571305599997, 28.872486416000072 ], [ -81.965737863999948, 28.872448861000066 ], [ -81.965755770999976, 28.872403169000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965226690999941, 28.872338964000051 ], [ -81.965232439999966, 28.872390231000054 ], [ -81.965247992999934, 28.872442009000054 ], [ -81.965275081999948, 28.872483131000024 ], [ -81.965298139999959, 28.872511563000046 ], [ -81.965328115999966, 28.87253796400006 ], [ -81.965373954999961, 28.872559423000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967538827999988, 28.871362935000036 ], [ -81.967168582999989, 28.87146301000007 ], [ -81.966851769999948, 28.871579340000039 ], [ -81.966473424999947, 28.871763333000047 ], [ -81.966336598999987, 28.871834658000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974408181999934, 28.869659471000034 ], [ -81.974485690999984, 28.869710663000035 ], [ -81.974576112999955, 28.869776074000072 ], [ -81.974672993999945, 28.869852858000058 ], [ -81.974802644999954, 28.869962222000026 ], [ -81.974939559999939, 28.87007447700006 ], [ -81.975085915999955, 28.870205438000028 ], [ -81.975241715999971, 28.870336400000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984471912999936, 28.87226002400007 ], [ -81.984472589999939, 28.872260208000057 ], [ -81.984613043999957, 28.87229846300005 ], [ -81.985021176999965, 28.872428190000051 ], [ -81.985298612999941, 28.872530233000077 ], [ -81.985561821999966, 28.87262725000005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985561821999966, 28.87262725000005 ], [ -81.985843390999946, 28.872761985000068 ], [ -81.986051506999956, 28.872861689000047 ], [ -81.986342558, 28.873017568000023 ], [ -81.987305527, 28.87350974900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987305527, 28.87350974900005 ], [ -81.987362835999988, 28.873542618000045 ], [ -81.987802370999987, 28.873771278000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987802370999987, 28.873771278000049 ], [ -81.988360863999958, 28.874062846000072 ], [ -81.98924533099995, 28.874515331000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988682045999951, 28.930091250000032 ], [ -81.988730090999979, 28.93006368600004 ], [ -81.988769872999967, 28.930038901000046 ], [ -81.98880791199997, 28.930006810000066 ], [ -81.988851095999962, 28.929970376000028 ], [ -81.988895849999949, 28.929941218000067 ], [ -81.988932316999978, 28.929922265000073 ], [ -81.988974064999979, 28.929907870000079 ], [ -81.989028450999967, 28.92989602800003 ], [ -81.989089777999936, 28.929890199000056 ], [ -81.989403153999945, 28.929853423000054 ], [ -81.989714970999955, 28.929827997000075 ], [ -81.990118815999949, 28.92981573000003 ], [ -81.990194924999969, 28.929811636000068 ], [ -81.990264819999936, 28.929814373000056 ], [ -81.990407716999982, 28.929837613000075 ], [ -81.990565249999975, 28.929842695000048 ], [ -81.991133081999976, 28.929830830000071 ], [ -81.991252768999971, 28.929820368000037 ], [ -81.991329012999984, 28.929813083000056 ], [ -81.99141022799995, 28.929811629000028 ], [ -81.991734217999976, 28.929805088000023 ], [ -81.992110073999982, 28.929802197000072 ], [ -81.993163172999971, 28.929795422000041 ], [ -81.993500691999941, 28.929794209000079 ], [ -81.993943054999988, 28.92978985700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954458210999974, 28.935049168000035 ], [ -81.955257234999976, 28.93472162200004 ], [ -81.955535262999945, 28.934609360000024 ], [ -81.955650060999972, 28.934576609000032 ], [ -81.955773718999978, 28.934562980000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955773718999978, 28.934562980000067 ], [ -81.956194565999965, 28.934549954000033 ], [ -81.956486799999936, 28.934532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018276166999954, 28.884468634000029 ], [ -82.018390378999982, 28.884385570000063 ], [ -82.018449215999965, 28.884354421000069 ], [ -82.018498822999959, 28.884326734000069 ], [ -82.018532279999988, 28.884308275000024 ], [ -82.018588808999937, 28.884271358000035 ], [ -82.018668859999934, 28.884211114000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98798954199998, 28.953463390000024 ], [ -81.988272988999938, 28.953226225000037 ], [ -81.988472737999984, 28.953056761000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988472737999984, 28.953056761000028 ], [ -81.988667334999946, 28.952891077000061 ], [ -81.98894964599998, 28.952657846000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978042803999983, 28.878515426000035 ], [ -81.978019653, 28.878353870000069 ], [ -81.978008083999953, 28.878236529000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978008083999953, 28.878236529000048 ], [ -81.977936727999975, 28.877622616000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00907551399996, 28.884398985000075 ], [ -82.009150259999956, 28.884386672000062 ], [ -82.009208125999976, 28.884369692000064 ], [ -82.009244078999984, 28.884352367000076 ], [ -82.009273372999985, 28.884335176000036 ], [ -82.009304564999979, 28.884308568000051 ], [ -82.009671029999936, 28.884019938000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009671029999936, 28.884019938000051 ], [ -82.010215421999987, 28.883596753000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010215421999987, 28.883596753000063 ], [ -82.010561339999981, 28.883317715000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95401779599996, 28.929018211000027 ], [ -81.954041238999935, 28.929054438000037 ], [ -81.954097700999966, 28.929064770000025 ], [ -81.954192574999979, 28.929082577000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984010788999967, 28.807074387000057 ], [ -81.983805543999949, 28.808137306000049 ], [ -81.983763443999976, 28.808345721000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983763443999976, 28.808345721000023 ], [ -81.983676600999956, 28.808841288000053 ], [ -81.983679218999953, 28.808913077000057 ], [ -81.983694982999964, 28.808984869000028 ], [ -81.983713378999937, 28.809038133000058 ], [ -81.983739664999973, 28.809086768000043 ], [ -81.98378172699995, 28.809135404000074 ], [ -81.983826417999978, 28.80917941000007 ], [ -81.983865850999962, 28.809209519000035 ], [ -81.983921062999968, 28.809237315000075 ], [ -81.983981532999962, 28.809260480000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984339109999951, 28.80930220700003 ], [ -81.985104225999976, 28.809362504000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985104225999976, 28.809362504000035 ], [ -81.985588007999979, 28.809413504000077 ], [ -81.985840417999952, 28.809432055000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985840417999952, 28.809432055000059 ], [ -81.986592388999952, 28.809494659000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987640371999987, 28.812175397000033 ], [ -81.987644436999972, 28.809967310000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981794400999945, 28.806738317000054 ], [ -81.98253845499994, 28.806849573000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038205716999983, 28.850797853000074 ], [ -82.038206656999989, 28.849074933000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040947727999935, 28.852833119000024 ], [ -82.04094343099996, 28.851177879000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040892389999954, 28.854240418000074 ], [ -82.040928575999942, 28.854208538000023 ], [ -82.040943030999983, 28.854151172000059 ], [ -82.040947727999935, 28.852833119000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040319889999978, 28.854253846000063 ], [ -82.040319342999965, 28.852833818000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040319342999965, 28.852833818000079 ], [ -82.040321432999974, 28.851178067000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04094343099996, 28.851177879000033 ], [ -82.040321432999974, 28.851178067000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040321432999974, 28.851178067000035 ], [ -82.040021577999937, 28.851179939000076 ], [ -82.03969538399997, 28.851178253000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03969538399997, 28.851178253000057 ], [ -82.039623458999984, 28.851178720000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040125289999935, 28.855780837000054 ], [ -82.040246069999966, 28.855560206000064 ], [ -82.040287320999937, 28.855508289000056 ], [ -82.040352169999949, 28.855497889000048 ], [ -82.040419978999978, 28.855516034000061 ], [ -82.040561494999963, 28.855557516000033 ], [ -82.041280871999959, 28.855777893000038 ], [ -82.041322140999966, 28.855772691000027 ], [ -82.041363403999981, 28.855757105000066 ], [ -82.041410557999939, 28.855723352000041 ], [ -82.041451816999938, 28.855692198000042 ], [ -82.041475382999977, 28.855648071000076 ], [ -82.041498940999986, 28.855583183000078 ], [ -82.041498632999946, 28.854807206000032 ], [ -82.041510406999976, 28.854768273000047 ], [ -82.041519237999978, 28.854734533000055 ], [ -82.04154575299998, 28.854695596000056 ], [ -82.041595859999973, 28.854674819000024 ], [ -82.041666603999943, 28.854664416000048 ], [ -82.041973168999959, 28.854627988000061 ], [ -82.042020333999972, 28.854622782000035 ], [ -82.042067497999938, 28.854617578000045 ], [ -82.042114657999946, 28.85460458700004 ], [ -82.042155913999977, 28.854570835000061 ], [ -82.042182428, 28.854524112000036 ], [ -82.042185348999965, 28.854459231000078 ], [ -82.042201341999942, 28.854009242000075 ], [ -82.042211228999975, 28.853359285000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042211228999975, 28.853359285000067 ], [ -82.042185848999964, 28.853334724000035 ], [ -82.042180755999937, 28.853285587000073 ], [ -82.042185653, 28.85285004900004 ], [ -82.042187791999936, 28.852083639000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042187791999936, 28.852083639000057 ], [ -82.042189573999963, 28.851477165000063 ], [ -82.04218728799998, 28.850835017000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043806309999979, 28.855370285000049 ], [ -82.043807412999968, 28.854370560000064 ], [ -82.043809589999967, 28.853510654000047 ], [ -82.043817131999958, 28.853345371000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043817131999958, 28.853345371000046 ], [ -82.043819317999976, 28.852510033000044 ], [ -82.043826882999952, 28.852086683000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043826882999952, 28.852086683000039 ], [ -82.043805135999946, 28.851360220000061 ], [ -82.043794825999953, 28.850972484000067 ], [ -82.043788677999942, 28.850827754000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044613741999967, 28.853342876000056 ], [ -82.044618279999952, 28.852085402000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98253845499994, 28.806849573000079 ], [ -81.983277250999947, 28.806960824000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983277250999947, 28.806960824000043 ], [ -81.984010788999967, 28.807074387000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984010788999967, 28.807074387000057 ], [ -81.984746958999949, 28.807183314000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984746958999949, 28.807183314000042 ], [ -81.985480500999984, 28.807292236000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985480500999984, 28.807292236000023 ], [ -81.986219305999953, 28.807387260000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986219305999953, 28.807387260000041 ], [ -81.986650404999978, 28.808151511000062 ], [ -81.986755552999966, 28.808329837000031 ], [ -81.986779209999952, 28.808371524000052 ], [ -81.986787092999975, 28.808415523000065 ], [ -81.986784457999988, 28.808454892000043 ], [ -81.986592388999952, 28.809494659000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985480500999984, 28.807292236000023 ], [ -81.985243693999962, 28.808538100000078 ], [ -81.985104225999976, 28.809362504000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981794400999945, 28.806738317000054 ], [ -81.981870724999965, 28.806296013000065 ], [ -81.982039122999936, 28.805552669000065 ], [ -81.98206805999996, 28.80546004100006 ], [ -81.982104885999945, 28.805358152000053 ], [ -81.982181161999961, 28.805179846000044 ], [ -81.982223244999943, 28.805087220000075 ], [ -81.982283735999943, 28.804973755000049 ], [ -81.982344224999963, 28.804871869000067 ], [ -81.982444154999939, 28.804739882000035 ], [ -81.982557233999955, 28.804596318000051 ], [ -81.982672939999986, 28.804459701000042 ], [ -81.982801791999975, 28.804327718000025 ], [ -81.982922751999979, 28.804207314000053 ], [ -81.98305948899997, 28.804089226000031 ], [ -81.983193590999974, 28.803987348000078 ], [ -81.983353986999987, 28.80388315700003 ], [ -81.983501233999959, 28.80379517700004 ], [ -81.983658995999974, 28.803714142000047 ], [ -81.987142811999945, 28.80216062900007 ], [ -81.987192767999943, 28.802137475000052 ], [ -81.987240093999958, 28.802121269000054 ], [ -81.987279532999935, 28.802108536000048 ], [ -81.987328827999988, 28.802108541000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987328827999988, 28.802108541000052 ], [ -81.98736826399994, 28.802117228000043 ], [ -81.98740769799997, 28.802143285000056 ], [ -81.987437269999987, 28.802178024000057 ], [ -81.987453695999989, 28.802227236000078 ], [ -81.987456975999976, 28.802296710000064 ], [ -81.987453630999937, 28.802765656000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987453630999937, 28.802765656000076 ], [ -81.987453570999946, 28.803269340000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983955997999942, 28.804313966000052 ], [ -81.985728313999971, 28.803533154000036 ], [ -81.986569538999959, 28.803153465000037 ], [ -81.987453630999937, 28.802765656000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980647036999983, 28.812682118000055 ], [ -81.980602530999988, 28.812707387000046 ], [ -81.980536451999967, 28.812750754000035 ], [ -81.980471037999962, 28.812812552000025 ], [ -81.980417759999966, 28.812880780000057 ], [ -81.980381429999966, 28.812946878000048 ], [ -81.980357203999972, 28.81302364000004 ], [ -81.980335397999966, 28.813106800000071 ], [ -81.980323275999979, 28.813196360000063 ], [ -81.980328097999973, 28.813307244000043 ], [ -81.980345026999942, 28.813411733000066 ], [ -81.980366802999981, 28.813490635000051 ], [ -81.980407941999943, 28.813597260000051 ], [ -81.980446662999952, 28.813688958000057 ], [ -81.980482968, 28.813757200000055 ], [ -81.980521694999936, 28.81381691200005 ], [ -81.980572529999961, 28.813872361000051 ], [ -81.980623364999985, 28.81391928100004 ], [ -81.980671780999955, 28.813959804000035 ], [ -81.980729882999981, 28.813998195000067 ], [ -81.980800090999935, 28.81403019000004 ], [ -81.980867879999948, 28.814057921000028 ], [ -81.980950195999981, 28.814081389000023 ], [ -81.981022827999936, 28.814092062000043 ], [ -81.981168098999945, 28.814094214000079 ], [ -81.981315792999965, 28.814081440000052 ], [ -81.98146590999994, 28.814064402000042 ], [ -81.981594232999953, 28.814053757000067 ], [ -81.981695923999951, 28.81404737400004 ], [ -81.981773401999988, 28.814047385000038 ], [ -81.981889615999989, 28.814058062000072 ], [ -81.981974353999988, 28.814077265000037 ], [ -81.982071197999971, 28.814100735000068 ], [ -81.982172881999986, 28.814132733000065 ], [ -81.982252776999985, 28.814158333000023 ], [ -81.982337515999973, 28.814169005000053 ], [ -81.982414992999963, 28.814166883000041 ], [ -81.982490052999935, 28.814151966000054 ], [ -81.982572377999986, 28.814124256000071 ], [ -81.982640175999961, 28.814092280000068 ], [ -81.982700713999975, 28.814045374000045 ], [ -81.982751564999944, 28.814002734000042 ], [ -81.982799996999972, 28.813951562000057 ], [ -81.982838747999949, 28.813881199000036 ], [ -81.982860548999952, 28.813817230000041 ], [ -81.98287266899996, 28.813731935000078 ], [ -81.982865421999975, 28.813638110000056 ], [ -81.982848484999977, 28.813563474000034 ], [ -81.98282186299997, 28.813501631000065 ], [ -81.982787976999987, 28.813435522000077 ], [ -81.982751667999935, 28.813375812000061 ], [ -81.982664527999987, 28.813256387000024 ], [ -81.982628065999961, 28.813206061000074 ], [ -81.982591910999986, 28.813139096000043 ], [ -81.982575855999983, 28.813053547000038 ], [ -81.982567719999963, 28.813021812000045 ], [ -81.982565309999984, 28.812955707000071 ], [ -81.982575006, 28.812889605000066 ], [ -81.98258954299996, 28.812823502000072 ], [ -81.982611342999974, 28.812761666000029 ], [ -81.982640404999984, 28.812714757000037 ], [ -81.982676731999959, 28.81265292300003 ], [ -81.982734850999975, 28.812588960000028 ], [ -81.983112605999963, 28.812237164000067 ], [ -81.983492772999966, 28.811928015000035 ], [ -81.983584784999948, 28.811868319000041 ], [ -81.983650160999957, 28.811840605000043 ], [ -81.983713112999965, 28.811821422000037 ], [ -81.983793012999968, 28.81180650500005 ], [ -81.983885016999977, 28.811793721000072 ], [ -81.98466462, 28.811798076000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987760636999951, 28.865431591000061 ], [ -81.989640718999965, 28.865425504000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989640718999965, 28.865425504000029 ], [ -81.989748076999945, 28.865425020000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989748076999945, 28.865425020000032 ], [ -81.990284765999945, 28.865426711000055 ], [ -81.991071806999969, 28.865428699000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044011523999984, 28.849871733000043 ], [ -82.043703036999943, 28.849870047000024 ], [ -82.04345746599995, 28.849871913000072 ], [ -82.04341078899995, 28.849877289000062 ], [ -82.043370204999974, 28.849891597000067 ], [ -82.043244413999957, 28.849986338000065 ], [ -82.043199771, 28.850002433000043 ], [ -82.04210788599994, 28.849992058000055 ], [ -82.042057134999936, 28.849961698000072 ], [ -82.041894709999951, 28.849800935000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040690721999965, 28.849076903000025 ], [ -82.040694139999971, 28.847450882000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040136255999982, 28.849079652000057 ], [ -82.040129199999967, 28.84748313700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041309895999973, 28.849077906000048 ], [ -82.040954343999942, 28.849076823000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038206656999989, 28.849074933000054 ], [ -82.037864666999951, 28.849075029000062 ], [ -82.037516191999941, 28.849073700000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038886953999963, 28.848978255000077 ], [ -82.038895375999971, 28.848663354000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038895375999971, 28.848663354000053 ], [ -82.038892240999985, 28.848111716000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038892240999985, 28.848111716000062 ], [ -82.038887792999958, 28.847543667000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038887792999958, 28.847543667000025 ], [ -82.038887828999975, 28.847324320000041 ], [ -82.03888505499998, 28.846753928000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040257098999973, 28.850833489000024 ], [ -82.040267535999988, 28.84907766300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039618272999974, 28.850859877000062 ], [ -82.039572663999934, 28.850801919000048 ], [ -82.039580025999953, 28.849074660000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038892671999974, 28.850794870000072 ], [ -82.038888336999946, 28.849079403000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994196234999947, 28.909633321000058 ], [ -81.994248465999988, 28.909622728000045 ], [ -81.994322002, 28.90962273100007 ], [ -81.994382166999969, 28.909625675000029 ], [ -81.994449016999965, 28.909635971000057 ], [ -81.994500825999978, 28.909652150000056 ], [ -81.994567673999939, 28.909680092000031 ], [ -81.994708056999968, 28.909741860000054 ], [ -81.994921974999954, 28.909849220000069 ], [ -81.995132547999958, 28.909960989000069 ], [ -81.995277944999941, 28.910046286000068 ], [ -81.995430026999941, 28.910144818000049 ], [ -81.995627230999958, 28.910281587000043 ], [ -81.995809392999945, 28.910421295000049 ], [ -81.996003254999948, 28.910586002000059 ], [ -81.996138624999958, 28.910711003000074 ], [ -81.996320786999945, 28.910896297000079 ], [ -81.996489579999945, 28.911088944000028 ], [ -81.996693468999979, 28.911350707000054 ], [ -81.996883987999979, 28.911638940000046 ], [ -81.997089548999952, 28.911953642000071 ], [ -81.997268770999938, 28.912189185000045 ], [ -81.997493961999965, 28.912474807000024 ], [ -81.997619743999962, 28.912622973000055 ], [ -81.99773335499998, 28.912742578000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983648069999958, 28.908669743000075 ], [ -81.983485573999985, 28.908423747000029 ], [ -81.983364219999942, 28.90827183600004 ], [ -81.983280625999953, 28.908134170000039 ], [ -81.983213216999957, 28.907998880000036 ], [ -81.983170074999975, 28.907901566000078 ], [ -81.983108061999985, 28.907756783000025 ], [ -81.983073021999985, 28.907614375000037 ], [ -81.98305415599998, 28.907517065000036 ], [ -81.983032597999966, 28.907393647000049 ], [ -81.983013738999944, 28.907260736000069 ], [ -81.982981390999953, 28.907149183000058 ], [ -81.982940945999985, 28.907056616000034 ], [ -81.982881625999937, 28.906949807000046 ], [ -81.982811513999934, 28.906850116000044 ], [ -81.982700947999945, 28.906726687000059 ], [ -81.982439365999937, 28.906429982000077 ], [ -81.982131940999977, 28.906090549000055 ], [ -81.981997098999955, 28.905974235000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982422265999958, 28.90739979600005 ], [ -81.982489723999947, 28.907418582000048 ], [ -81.982518837999976, 28.907426351000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982518837999976, 28.907426351000026 ], [ -81.982536523999954, 28.907429623000041 ], [ -81.982584792999944, 28.907433345000072 ], [ -81.98263306299998, 28.907429636000074 ], [ -81.98267986899998, 28.907418607000068 ], [ -81.982723785999951, 28.907400593000034 ], [ -81.98276347999996, 28.907376144000068 ], [ -81.982797747999939, 28.907346 ], [ -81.982825544999969, 28.907311078000077 ], [ -81.982840302999989, 28.907285160000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982840302999989, 28.907285160000072 ], [ -81.982846028999973, 28.907272439000053 ], [ -81.982858576999945, 28.907231258000024 ], [ -81.982862807999936, 28.907188785000073 ], [ -81.982858590999967, 28.90714631000003 ], [ -81.982846056999961, 28.907105127000079 ], [ -81.982825584999944, 28.907066482000062 ], [ -81.982797798999968, 28.907031554000071 ], [ -81.982763541999987, 28.907001401000059 ], [ -81.98272385599995, 28.90697694000005 ], [ -81.982679944999973, 28.906958917000054 ], [ -81.982639216999985, 28.906948880000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982639216999985, 28.906948880000073 ], [ -81.982633145999955, 28.906947876000061 ], [ -81.982584876999965, 28.90694415400003 ], [ -81.982536606999986, 28.906947863000028 ], [ -81.982489801999975, 28.906958892000034 ], [ -81.982445884999947, 28.906976905000079 ], [ -81.982406189999949, 28.907001356000023 ], [ -81.982371923999949, 28.907031499000027 ], [ -81.982344124999941, 28.907066421000025 ], [ -81.982323639999947, 28.90710505900006 ], [ -81.982322393999937, 28.907108137000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982322393999937, 28.907108137000023 ], [ -81.982311093999954, 28.907146240000031 ], [ -81.982306862999963, 28.907188713000039 ], [ -81.982302989999937, 28.907228358000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982302989999937, 28.907228358000054 ], [ -81.982316862999937, 28.907271551000065 ], [ -81.982336305, 28.907309046000023 ], [ -81.98235667299997, 28.907338672000037 ], [ -81.982386297999938, 28.907369686000038 ], [ -81.982402499999978, 28.907386351000071 ], [ -81.982422265999958, 28.90739979600005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982639216999985, 28.906948880000073 ], [ -81.98256066099998, 28.906904672000053 ], [ -81.982474365999963, 28.906812099000035 ], [ -81.982390775999988, 28.906669686000043 ], [ -81.982250559999954, 28.906429958000047 ], [ -81.982180450999977, 28.906313652000051 ], [ -81.982121129999939, 28.906218709000029 ], [ -81.98202944999997, 28.906071548000057 ], [ -81.981997098999955, 28.905974235000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979969946999972, 28.90320003800008 ], [ -81.98006021499998, 28.903264333000038 ], [ -81.980103260999954, 28.903322615000036 ], [ -81.980142892999936, 28.903402865000032 ], [ -81.980170629999975, 28.903493582000067 ], [ -81.980208818999984, 28.903678663000051 ], [ -81.980270728999983, 28.903891277000071 ], [ -81.980332652999948, 28.904041199000062 ], [ -81.980413158999966, 28.904199302000052 ], [ -81.980490571999951, 28.904341049000038 ], [ -81.980602058999978, 28.904477351000025 ], [ -81.980679478999946, 28.904578214000026 ], [ -81.980781677999971, 28.904698159000077 ], [ -81.980914840999958, 28.904880800000058 ], [ -81.981078965999984, 28.905139765000058 ], [ -81.981289542999946, 28.905464153000025 ], [ -81.981394832999968, 28.905627711000079 ], [ -81.981716893999987, 28.906137462000061 ], [ -81.981992515999934, 28.906527274000041 ], [ -81.982215494999934, 28.906827132000046 ], [ -81.982266693999975, 28.906920301000071 ], [ -81.982326913999941, 28.907029884000053 ], [ -81.982322393999937, 28.907108137000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980893501999958, 28.904561259000047 ], [ -81.980725839999934, 28.90419894200005 ], [ -81.980609996999988, 28.903920797000069 ], [ -81.98057315899996, 28.903721465000046 ], [ -81.980546865999941, 28.903471144000036 ], [ -81.980531101999986, 28.903267180000057 ], [ -81.980510065999965, 28.903072486000042 ], [ -81.980467953999948, 28.902905603000079 ], [ -81.980410030999963, 28.902780436000057 ], [ -81.980325776999962, 28.902613545000065 ], [ -81.980220448999944, 28.90246982900004 ], [ -81.980062450999981, 28.902275115000066 ], [ -81.979925519999938, 28.902112853000062 ], [ -81.979772795999963, 28.901894961000039 ], [ -81.979683275999946, 28.901728070000047 ], [ -81.979620098999987, 28.901542641000049 ], [ -81.979572977999965, 28.901464287000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980136739999978, 28.902734171000077 ], [ -81.980076941999982, 28.90269952400007 ], [ -81.980002615999979, 28.902627554000048 ], [ -81.979948115999946, 28.902544685000066 ], [ -81.979804334999983, 28.902242629000057 ], [ -81.979677958999957, 28.901978386000053 ], [ -81.979609515999982, 28.901783685000055 ], [ -81.979572674999986, 28.901607531000025 ], [ -81.979572977999965, 28.901464287000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980681374999961, 28.883667274000061 ], [ -81.980489157999955, 28.883920947000036 ], [ -81.980300338999939, 28.884205725000072 ], [ -81.980226157999937, 28.884327350000035 ], [ -81.980057559999977, 28.884623998000052 ], [ -81.979929415999948, 28.884902851000049 ], [ -81.979804634999937, 28.885214338000026 ], [ -81.979737174999968, 28.885430899000028 ], [ -81.979666344999941, 28.885650426000041 ], [ -81.979625858999952, 28.885831390000078 ], [ -81.979578617999948, 28.886083555000027 ], [ -81.979541492999942, 28.886314953000067 ], [ -81.979524591999962, 28.886549323000054 ], [ -81.979514435999988, 28.886771825000039 ], [ -81.979511000999935, 28.887101131000065 ], [ -81.979507599999977, 28.887243534000049 ], [ -81.979507488999957, 28.887813627000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968818928999951, 28.894367253000041 ], [ -81.968816716999982, 28.894369450000056 ], [ -81.96878836999997, 28.894403768000075 ], [ -81.968767438999976, 28.894441990000075 ], [ -81.968764430999954, 28.894449414000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968764430999954, 28.894449414000064 ], [ -81.968754600999944, 28.894482887000038 ], [ -81.968750266999962, 28.894525142000077 ], [ -81.968754575999981, 28.894567401000074 ], [ -81.968767389999982, 28.894608302000051 ], [ -81.968788296999946, 28.894646533000071 ], [ -81.968814308999981, 28.894678500000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968814308999981, 28.894678500000055 ], [ -81.968816624999988, 28.894680866000044 ], [ -81.968851464999943, 28.894710194000027 ], [ -81.968891692999989, 28.894733576000078 ], [ -81.968918385999984, 28.894744610000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968918385999984, 28.894744610000032 ], [ -81.968936017999965, 28.89475026100007 ], [ -81.96898301799996, 28.894759713000042 ], [ -81.969031179999945, 28.894761627000037 ], [ -81.969078956999965, 28.894755943000064 ], [ -81.969087402999946, 28.894754123000041 ], [ -81.969094177999978, 28.894752844000038 ], [ -81.969139371999972, 28.894739934000029 ], [ -81.96918121899995, 28.894720129000063 ], [ -81.969201263999935, 28.894707266000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969201263999935, 28.894707266000069 ], [ -81.969218374999969, 28.894694066000056 ], [ -81.96924964599998, 28.894662584000059 ], [ -81.969270632999951, 28.894632672000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969270632999951, 28.894632672000057 ], [ -81.969274027999973, 28.894626694000067 ], [ -81.969290733999969, 28.89458755000004 ], [ -81.969299230999979, 28.894546408000053 ], [ -81.969299242999966, 28.894504594000068 ], [ -81.969290770999976, 28.894463449000057 ], [ -81.969274087999963, 28.894424298000047 ], [ -81.969249726999976, 28.894388396000068 ], [ -81.96923654699998, 28.894373702000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96923654699998, 28.894373702000053 ], [ -81.969218474999934, 28.894356899000059 ], [ -81.969181333999984, 28.89433082000005 ], [ -81.969139498999937, 28.894310996000058 ], [ -81.969114338999987, 28.894302824000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969114338999987, 28.894302824000079 ], [ -81.969113104999963, 28.894302426000024 ], [ -81.96906753899998, 28.89429167000003 ], [ -81.969020543999989, 28.894288041000038 ], [ -81.968973544999983, 28.894291648000035 ], [ -81.96892797199996, 28.894302383000024 ], [ -81.968885210999986, 28.894319918000065 ], [ -81.968846559999974, 28.894343723000077 ], [ -81.968818928999951, 28.894367253000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968659082999977, 28.906477966000068 ], [ -81.968640684999968, 28.906502377000038 ], [ -81.968620802999965, 28.906539867000049 ], [ -81.968609827999956, 28.906586340000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968609827999956, 28.906586340000047 ], [ -81.968608464999988, 28.906599621000055 ], [ -81.968607102999954, 28.906612901000074 ], [ -81.968611381999949, 28.906654859000071 ], [ -81.968624106999982, 28.906695472000024 ], [ -81.968644867999956, 28.906733434000046 ], [ -81.968672998999978, 28.906767522000052 ], [ -81.968696596999962, 28.906788486000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968696596999962, 28.906788486000039 ], [ -81.968707595999945, 28.906796643000064 ], [ -81.968747545999975, 28.906819862000077 ], [ -81.968787991999989, 28.906835383000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968787991999989, 28.906835383000043 ], [ -81.968791562999968, 28.906836429000066 ], [ -81.968838237999989, 28.906845814000064 ], [ -81.968886064999936, 28.906847715000026 ], [ -81.968933510999989, 28.906842071000028 ], [ -81.968947402999959, 28.906838103000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96907579599997, 28.906767031000072 ], [ -81.969090163999965, 28.906751133000057 ], [ -81.969114730999934, 28.906714974000067 ], [ -81.969131218999962, 28.906676628000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969120733999944, 28.906529950000049 ], [ -81.969114579999939, 28.906515511000066 ], [ -81.96909046199994, 28.906479970000078 ], [ -81.969059518999984, 28.906448789000024 ], [ -81.969022745999951, 28.906422970000051 ], [ -81.969017360999942, 28.906419923000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969785405999971, 28.90908642900007 ], [ -81.969750679999947, 28.909065540000029 ], [ -81.969706815999984, 28.909047530000066 ], [ -81.969687846999989, 28.909042121000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969687846999989, 28.909042121000027 ], [ -81.969660063999982, 28.909036497000045 ], [ -81.969611845999964, 28.909032775000071 ], [ -81.969563625999967, 28.90903647500005 ], [ -81.969518075999986, 28.909047203000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007442412999978, 28.931348592000063 ], [ -82.007464087999949, 28.931293941000035 ], [ -82.007506875, 28.931185704000029 ], [ -82.007532277999985, 28.931111584000064 ], [ -82.007565702999955, 28.931008054000074 ], [ -82.007597791999956, 28.930910407000056 ], [ -82.007628541999964, 28.930796288000067 ], [ -82.007649249999986, 28.930709777000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007649249999986, 28.930709777000061 ], [ -82.007677337999951, 28.930587439000078 ], [ -82.007704070999978, 28.930405086000064 ], [ -82.007724424999935, 28.930282615000067 ], [ -82.007732715999964, 28.930212855000036 ], [ -82.007745839999984, 28.930119792000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007745839999984, 28.930119792000028 ], [ -82.007747503999951, 28.930018322000024 ], [ -82.007747492999954, 28.929868322000061 ], [ -82.007747484999982, 28.929756558000065 ], [ -82.007749150999985, 28.929677147000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007771014999946, 28.929059556000027 ], [ -82.007779191999987, 28.929028620000054 ], [ -82.007831004999957, 28.928935971000044 ], [ -82.00794674499997, 28.928806645000066 ], [ -82.008037102999936, 28.92872159500007 ], [ -82.008137965999936, 28.928625454000041 ], [ -82.008201005999979, 28.928566291000038 ], [ -82.008308735999947, 28.928463005000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983581176999962, 28.88262863500006 ], [ -81.98354539099995, 28.882571656000039 ], [ -81.983400466999967, 28.882421552000039 ], [ -81.983146934999979, 28.882194801000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983073169999955, 28.882278300000053 ], [ -81.983153644999959, 28.882347603000028 ], [ -81.98328322499998, 28.882458684000028 ], [ -81.98342304099998, 28.882554756000047 ], [ -81.983581176999962, 28.88262863500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00879191599995, 28.883818400000052 ], [ -82.00947255799997, 28.883221559000049 ], [ -82.009519603999934, 28.883180305000053 ], [ -82.009546453999974, 28.883143472000029 ], [ -82.009589283999958, 28.883057811000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040818509999951, 28.843880743000057 ], [ -82.039998299, 28.843882496000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993587195999964, 28.817283079000049 ], [ -81.993265392999945, 28.817139140000052 ], [ -81.992905878999977, 28.81699962700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067443689999948, 28.799865465000039 ], [ -82.067440416999943, 28.800377052000044 ], [ -82.067429546999961, 28.801214017000063 ], [ -82.067436591999979, 28.801462689000061 ], [ -82.067416087999959, 28.801702275000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069928478999941, 28.799877544000026 ], [ -82.069963248999954, 28.80080029100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070527879999986, 28.800796964000028 ], [ -82.069963248999954, 28.80080029100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069963248999954, 28.80080029100003 ], [ -82.069181933999971, 28.800814051000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069181933999971, 28.800814051000032 ], [ -82.068493143999945, 28.800816208000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06326691199996, 28.801697671000056 ], [ -82.06223747599995, 28.801695118000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04731964299998, 28.806144714000027 ], [ -82.04649760999996, 28.806145 ], [ -82.045606713999973, 28.806137722000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070527264999953, 28.799884146000068 ], [ -82.071222721999959, 28.799880749000067 ], [ -82.071558824999954, 28.799880331000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071558824999954, 28.799880331000054 ], [ -82.072780172999956, 28.799874437000028 ], [ -82.073629154999935, 28.799870652000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.073629154999935, 28.799870652000038 ], [ -82.074625296999955, 28.79986957400007 ], [ -82.075323199999957, 28.799869186000024 ], [ -82.076059737999969, 28.799862392000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076059737999969, 28.799862392000023 ], [ -82.076265011999965, 28.799875039000028 ], [ -82.07679386999996, 28.799872612000058 ], [ -82.077441062999981, 28.799874370000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.077441062999981, 28.799874370000055 ], [ -82.077856428999951, 28.799880511000026 ], [ -82.07886248899996, 28.799877691000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07886248899996, 28.799877691000063 ], [ -82.080599078999967, 28.799876665000056 ], [ -82.081131160999973, 28.799880037000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060140209999986, 28.800777185000072 ], [ -82.058071029999951, 28.800772025000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058101503999978, 28.799847063000072 ], [ -82.058071029999951, 28.800772025000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058071029999951, 28.800772025000072 ], [ -82.058081864999963, 28.801681806000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058081864999963, 28.801681806000033 ], [ -82.058085692999953, 28.80237930800007 ], [ -82.058086010999943, 28.802952472000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06223747599995, 28.801695118000055 ], [ -82.062234745999945, 28.80289603600005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05598566499998, 28.806173027000057 ], [ -82.056003677999968, 28.806283374000031 ], [ -82.055987684999934, 28.806627530000071 ], [ -82.05594204099998, 28.806961182000066 ], [ -82.055975735999937, 28.807133367000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058021097999983, 28.805388687000061 ], [ -82.058034636999935, 28.805519319000041 ], [ -82.058034781999936, 28.805780937000065 ], [ -82.058036371999947, 28.806187288000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055975735999937, 28.807133367000063 ], [ -82.054967657999953, 28.807133781000061 ], [ -82.054417797999974, 28.807134004000034 ], [ -82.054148976999954, 28.807136803000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068475583999941, 28.799866159000032 ], [ -82.06847126699995, 28.799308598000039 ], [ -82.068465552999953, 28.798788510000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066348581999989, 28.799862125000061 ], [ -82.06634411999994, 28.79940778100007 ], [ -82.066340686999979, 28.798335448000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067476113999987, 28.77981959400006 ], [ -82.067640056999949, 28.780387870000027 ], [ -82.067933021999977, 28.781403304000037 ], [ -82.068459078999979, 28.783213125000032 ], [ -82.068667614999981, 28.783937886000047 ], [ -82.06883350399994, 28.784521028000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069042364999973, 28.785236088000033 ], [ -82.069082929999979, 28.785372016000053 ], [ -82.069209340999976, 28.785840615000041 ], [ -82.069268592999947, 28.786055824000073 ], [ -82.069339695999986, 28.786312685000041 ], [ -82.069410851999976, 28.786652863000029 ], [ -82.069485960999941, 28.787006926000061 ], [ -82.069557155999973, 28.787402650000047 ], [ -82.069604677999962, 28.78775325600003 ], [ -82.069814489999942, 28.789183440000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069982286999959, 28.790331386000048 ], [ -82.070042840999974, 28.790759302000026 ], [ -82.070233746999975, 28.792069295000033 ], [ -82.070319496999957, 28.792624828000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.072125658999937, 28.798664844000029 ], [ -82.072854800999949, 28.798671232000061 ], [ -82.073617439999964, 28.798661912000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.073647170999948, 28.798660832000053 ], [ -82.074254651, 28.798647205000066 ], [ -82.074624425999957, 28.798646469000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.073617439999964, 28.798661912000057 ], [ -82.073647170999948, 28.798660832000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074624425999957, 28.798646469000062 ], [ -82.075389935999965, 28.79864391600006 ], [ -82.07594777099996, 28.798647858000038 ], [ -82.076044374999981, 28.79866056700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076044374999981, 28.79866056700007 ], [ -82.077353224999968, 28.79865131400004 ], [ -82.077454655999986, 28.798661892000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.077454655999986, 28.798661892000041 ], [ -82.078864936999935, 28.798663203000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.077441062999981, 28.799874370000055 ], [ -82.077454655999986, 28.798661892000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.077454655999986, 28.798661892000041 ], [ -82.077475468999978, 28.797417504000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.077475468999978, 28.797417504000066 ], [ -82.077488929999959, 28.797180939000043 ], [ -82.077500015999988, 28.796367352000061 ], [ -82.077497647999962, 28.796315264000043 ], [ -82.07747752299997, 28.796280933000048 ], [ -82.077445628999953, 28.79625025200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076059737999969, 28.799862392000023 ], [ -82.076059187999988, 28.799105130000044 ], [ -82.076044374999981, 28.79866056700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076044374999981, 28.79866056700007 ], [ -82.076029707999965, 28.798415954000063 ], [ -82.076019955999982, 28.798288330000048 ], [ -82.076039845999958, 28.797410343000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076076065999985, 28.797407663000058 ], [ -82.076054576999979, 28.796913115000052 ], [ -82.076032933999954, 28.79620585300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076039845999958, 28.797410343000024 ], [ -82.076076065999985, 28.797407663000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.077475468999978, 28.797417504000066 ], [ -82.078885735999961, 28.797423069000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.073127332999945, 28.796528779000027 ], [ -82.074964125999941, 28.792653680000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076493906999985, 28.789367125000069 ], [ -82.076374591, 28.789308893000054 ], [ -82.076253488999953, 28.789255637000053 ], [ -82.076152579999984, 28.789222367000036 ], [ -82.07605923899996, 28.789191315000039 ], [ -82.075976, 28.789175809000028 ], [ -82.075870061999979, 28.789164760000062 ], [ -82.075665771, 28.78916487500004 ], [ -82.074848608999957, 28.78916533000006 ], [ -82.072545451999986, 28.789168114000063 ], [ -82.07002728599997, 28.789172915000051 ], [ -82.069814489999942, 28.789183440000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07048920699998, 28.80224729300005 ], [ -82.070506913999964, 28.802172683000038 ], [ -82.070532625999988, 28.802100131000032 ], [ -82.07056341599997, 28.802037547000054 ], [ -82.071015499999987, 28.801062341000033 ], [ -82.071558824999954, 28.799880331000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070515938999961, 28.803517230000068 ], [ -82.069469278999975, 28.803523837000057 ], [ -82.068656374999989, 28.803526731000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062203131999979, 28.809493260000067 ], [ -82.06324297499998, 28.809498843000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030130658999951, 28.819867438000074 ], [ -82.030131333999975, 28.82013414100004 ], [ -82.030160204999959, 28.820828511000059 ], [ -82.030138896999972, 28.821510267000065 ], [ -82.030105576999972, 28.821962671000051 ], [ -82.030093781999938, 28.822490821000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030093781999938, 28.822490821000031 ], [ -82.030092713999977, 28.822934274000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032057832999953, 28.822541920000049 ], [ -82.031609806999938, 28.822457859000053 ], [ -82.030734726999981, 28.822505405000072 ], [ -82.030093781999938, 28.822490821000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032297426999946, 28.816156860000035 ], [ -82.031790914999988, 28.816148565000049 ], [ -82.031091510999943, 28.816145880000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031091510999943, 28.816145880000079 ], [ -82.03054853499998, 28.816148852000026 ], [ -82.030355008999948, 28.816146791000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030355008999948, 28.816146791000051 ], [ -82.02922969399998, 28.816131258000041 ], [ -82.028008816999943, 28.816132043000039 ], [ -82.026979068999935, 28.816111211000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027055389999987, 28.804403948000072 ], [ -82.027027380999982, 28.808904408000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033274988999949, 28.808913460000042 ], [ -82.032855136999956, 28.808927874000062 ], [ -82.03224030399997, 28.808945767000068 ], [ -82.031808052999963, 28.808953182000039 ], [ -82.031119186999945, 28.808930418000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031119186999945, 28.808930418000045 ], [ -82.030434338999953, 28.808902859000057 ], [ -82.028571940999939, 28.808919542000069 ], [ -82.027027380999982, 28.808904408000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03735302399997, 28.810658450000062 ], [ -82.036117093999962, 28.810625470000048 ], [ -82.035303889999966, 28.810647666000079 ], [ -82.035247741999967, 28.810669664000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028896504999977, 28.803819409000027 ], [ -82.028077768999935, 28.803830432000041 ], [ -82.027574717999983, 28.803826920000063 ], [ -82.027061053999944, 28.803821721000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037317200999951, 28.807122095000068 ], [ -82.037283673, 28.807113668000056 ], [ -82.036986745999968, 28.807143277000023 ], [ -82.035952244999976, 28.807116138000026 ], [ -82.035700807999945, 28.807120423000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035700807999945, 28.807120423000072 ], [ -82.035272161999956, 28.807112099000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016702855999938, 28.795055766000075 ], [ -82.016702818999988, 28.794819314000051 ], [ -82.016691900999945, 28.794790481000064 ], [ -82.016667891999987, 28.794767415000024 ], [ -82.01623361299994, 28.794767468000032 ], [ -82.015046434999988, 28.794756072000041 ], [ -82.013704312999948, 28.794756215000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018596337999952, 28.833854012000074 ], [ -82.018582257999981, 28.833951248000062 ], [ -82.018558773999985, 28.834007110000073 ], [ -82.018523540999979, 28.834060905000058 ], [ -82.018490656999973, 28.83411263000005 ], [ -82.018455423999967, 28.834158150000064 ], [ -82.018424886999981, 28.834197461000031 ], [ -82.018389651999939, 28.834240912000041 ], [ -82.018347368999969, 28.834284364000041 ], [ -82.018302734999963, 28.834321608000039 ], [ -82.018255752999949, 28.834358853000026 ], [ -82.018197022999971, 28.834400239000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018197022999971, 28.834400239000047 ], [ -82.018107753999971, 28.83447059100007 ], [ -82.018056073999958, 28.834520249000036 ], [ -82.018004394999934, 28.834574046000057 ], [ -82.017957414999955, 28.834634049000044 ], [ -82.017924531999938, 28.834694050000053 ], [ -82.017896347999965, 28.834751980000078 ], [ -82.017870513999981, 28.834809911000036 ], [ -82.01784467799996, 28.834861635000038 ], [ -82.017814146999967, 28.834931980000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017814146999967, 28.834931980000079 ], [ -82.017800057999978, 28.834977497000068 ], [ -82.017790666999986, 28.835020943000075 ], [ -82.017785975999971, 28.835068527000033 ], [ -82.017783657999985, 28.835252653000055 ], [ -82.017788393999979, 28.835465742000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017788393999979, 28.835465742000054 ], [ -82.017786132999959, 28.835995366000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017786132999959, 28.835995366000077 ], [ -82.017783808, 28.836136045000046 ], [ -82.017776844999958, 28.836638773000061 ], [ -82.01776757, 28.837367004000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017098441999963, 28.838458434000074 ], [ -82.017325324999945, 28.838603072000069 ], [ -82.017426290999936, 28.838703509000027 ], [ -82.017478363999942, 28.838774296000054 ], [ -82.017510909999942, 28.838835320000044 ], [ -82.017545082999959, 28.838906921000046 ], [ -82.017576001999942, 28.838984217000075 ], [ -82.01759634299998, 28.839045240000075 ], [ -82.017605292999974, 28.839084295000077 ], [ -82.017617497999936, 28.839155896000079 ], [ -82.01762482099997, 28.839210411000067 ], [ -82.017625633999955, 28.839268179000044 ], [ -82.017610174999959, 28.839358494000066 ], [ -82.017534156999943, 28.839545996000027 ], [ -82.017478465999943, 28.839689840000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999292113999957, 28.815576612000029 ], [ -81.998672583999962, 28.815257597000027 ], [ -81.998488505999944, 28.815170434000038 ], [ -81.998405372999969, 28.815142541000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998405372999969, 28.815142541000057 ], [ -81.998324220999962, 28.815126851000059 ], [ -81.998245048999934, 28.81512162100006 ], [ -81.998039197999958, 28.815109414000062 ], [ -81.997655207999969, 28.815097207000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997655207999969, 28.815097207000065 ], [ -81.997494883999934, 28.81509197400004 ], [ -81.99666158399998, 28.815057092000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99666158399998, 28.815057092000075 ], [ -81.995913395999935, 28.815020463000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996788275999961, 28.814565505000076 ], [ -81.996701180999935, 28.814699731000076 ], [ -81.996691282999961, 28.81473808100003 ], [ -81.99666158399998, 28.815057092000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995810424999945, 28.816179704000035 ], [ -81.995913395999935, 28.815020463000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995913395999935, 28.815020463000053 ], [ -81.995968842999957, 28.814380700000072 ], [ -81.995968844999936, 28.814323174000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044618279999952, 28.852085402000057 ], [ -82.044618001999936, 28.851435448000075 ], [ -82.044620279999947, 28.850830161000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045422164999934, 28.848994720000064 ], [ -82.045481249999966, 28.848392131000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045380981999983, 28.848371114000031 ], [ -82.045422164999934, 28.848994720000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045359228999985, 28.847292315000061 ], [ -82.045361748999937, 28.847761409000043 ], [ -82.045380981999983, 28.848371114000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045481249999966, 28.848392131000026 ], [ -82.045498216999988, 28.847286151000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045557557999985, 28.841269690000047 ], [ -82.045557782999936, 28.841217799000049 ], [ -82.045557278999979, 28.840061222000031 ], [ -82.045558197999981, 28.839926001000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04540654799996, 28.844526264000024 ], [ -82.045366917999957, 28.846141930000044 ], [ -82.045366003999959, 28.84654673700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045419053999979, 28.841273338000065 ], [ -82.045417476999944, 28.841834686000027 ], [ -82.045415435999985, 28.842667205000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045561524999982, 28.839227270000038 ], [ -82.045579923999981, 28.839144070000032 ], [ -82.045579723999936, 28.838683469000046 ], [ -82.045593507999968, 28.83858606900003 ], [ -82.045611912999959, 28.838517074000038 ], [ -82.045637236999937, 28.838460252000061 ], [ -82.04566717299997, 28.838411544000053 ], [ -82.045710931999963, 28.838354714000047 ], [ -82.045757001999959, 28.838312088000066 ], [ -82.045812290999947, 28.838271488000032 ], [ -82.045879104999983, 28.838239 ], [ -82.045941311999968, 28.838212601000066 ], [ -82.046010437999939, 28.838196345000028 ], [ -82.046081872999935, 28.838190233000034 ], [ -82.046164253999962, 28.838186146000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045561524999982, 28.839227270000038 ], [ -82.045545299999958, 28.839012192000041 ], [ -82.045547265999971, 28.838235053000062 ], [ -82.045544851999978, 28.837983449000035 ], [ -82.045542461999958, 28.83778662900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045542461999958, 28.83778662900005 ], [ -82.045531346999951, 28.837401614000044 ], [ -82.045526601999939, 28.83708507800003 ], [ -82.04552870699996, 28.836628535000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045411190999971, 28.836646837000046 ], [ -82.045406125999989, 28.83692228600006 ], [ -82.045406206999985, 28.837108961000069 ], [ -82.045408603999988, 28.837319985000079 ], [ -82.04540865499996, 28.837437671000032 ], [ -82.045413335999967, 28.837606084000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045447733999936, 28.835892006000051 ], [ -82.045436054999982, 28.836195358000055 ], [ -82.045425360999957, 28.836439485000028 ], [ -82.045411190999971, 28.836646837000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112317016999953, 28.663796454000078 ], [ -82.112267635999956, 28.66380153800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037007639999956, 28.931110540000077 ], [ -82.036986096999954, 28.931936946000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03698514499996, 28.931989624000039 ], [ -82.036978974999954, 28.93233080400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117734686999938, 28.66491675900005 ], [ -82.117733416999954, 28.666748064000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.082735161999949, 28.907050975000061 ], [ -82.082731292999938, 28.907345177000025 ], [ -82.082755979999945, 28.907437212000048 ], [ -82.08278301699994, 28.907904667000025 ], [ -82.082799542999965, 28.908050854000066 ], [ -82.082832565999979, 28.908307131000072 ], [ -82.082898383999975, 28.908532703000049 ], [ -82.082884117999981, 28.908648227000072 ], [ -82.082869908999953, 28.908837750000032 ], [ -82.082861817999969, 28.908980344000042 ], [ -82.082829044999983, 28.909038120000048 ], [ -82.082808579999949, 28.909101304000046 ], [ -82.082804528999986, 28.909164479000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070558587999983, 28.776086854000027 ], [ -82.070285197999965, 28.776076876000047 ], [ -82.069299640999986, 28.776083457000027 ], [ -82.069175582999947, 28.776083116000052 ], [ -82.069056096999986, 28.776047554000058 ], [ -82.06895867999998, 28.776031411000076 ], [ -82.068216174999975, 28.776026930000057 ], [ -82.067762670999969, 28.776015419000032 ], [ -82.066595638999956, 28.776044336000041 ], [ -82.066506050999976, 28.776058548000037 ], [ -82.066400396999938, 28.776094224000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067476113999987, 28.77981959400006 ], [ -82.067586374999962, 28.779796869000052 ], [ -82.069005351999976, 28.779788473000053 ], [ -82.070457214999976, 28.779758159000039 ], [ -82.071230963999938, 28.779722130000039 ], [ -82.07186872799997, 28.779718554000056 ], [ -82.072394370999973, 28.779708557000049 ], [ -82.073236128999952, 28.779682196000067 ], [ -82.074210182999934, 28.779665765000061 ], [ -82.074584736999952, 28.779664580000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074550359999989, 28.774452712000027 ], [ -82.074533909999957, 28.774475519000077 ], [ -82.074522166999941, 28.774502470000073 ], [ -82.074513954999986, 28.774532529000055 ], [ -82.074508035999941, 28.774582470000041 ], [ -82.074530661999972, 28.775387226000078 ], [ -82.074544582999977, 28.775900269000033 ], [ -82.07454422099994, 28.776363629000059 ], [ -82.074555674999942, 28.776964367000062 ], [ -82.074559460999978, 28.777473679000025 ], [ -82.074571200999969, 28.77850645500007 ], [ -82.07459111999998, 28.779427706000035 ], [ -82.074584736999952, 28.779664580000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074584736999952, 28.779664580000031 ], [ -82.074601177999966, 28.780902273000038 ], [ -82.074610484999937, 28.781486846000064 ], [ -82.074641612999983, 28.782252283000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055907174999959, 28.85747647900007 ], [ -82.054862523999986, 28.857476051000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054862523999986, 28.857476051000049 ], [ -82.053718874999959, 28.857473451000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091240849999963, 28.872567356000047 ], [ -82.091217453999946, 28.872694099000057 ], [ -82.091144112999984, 28.872826047000046 ], [ -82.090982701999963, 28.873043402000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.089697782999963, 28.871968379000066 ], [ -82.089680471999941, 28.872338225000078 ], [ -82.089680782999949, 28.872700302000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.265312148999953, 28.959687918000043 ], [ -82.265304250999975, 28.959732624000026 ], [ -82.265284459999975, 28.959789385000079 ], [ -82.265255280999952, 28.959843071000023 ], [ -82.265217490999987, 28.959892649000039 ], [ -82.265172063999955, 28.959936398000025 ], [ -82.26430794099997, 28.960447569000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141237672999978, 28.813116467000043 ], [ -82.14193593899995, 28.813168567000048 ], [ -82.141997580999941, 28.81315969700006 ], [ -82.142114181999943, 28.813127287000043 ], [ -82.142420668999989, 28.81304037600006 ], [ -82.142832258999988, 28.813044344000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054720177999968, 28.612585419000027 ], [ -82.054384811999967, 28.612580662000028 ], [ -82.054024503999983, 28.61258080600004 ], [ -82.053661422999937, 28.612580950000051 ], [ -82.053500480999958, 28.61257911000007 ], [ -82.053344901999935, 28.612580078000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053344901999935, 28.612580078000065 ], [ -82.051967446999981, 28.612580454000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051967446999981, 28.612580454000067 ], [ -82.050603452999951, 28.612586345000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121171355999934, 28.791027376000045 ], [ -82.121223975999953, 28.791096940000045 ], [ -82.121546975999934, 28.791338680000024 ], [ -82.121505623999951, 28.791405947000044 ], [ -82.121409779999965, 28.791492472000073 ], [ -82.121333528999969, 28.791550167000025 ], [ -82.12127908399998, 28.791609763000054 ], [ -82.121209385999975, 28.791678977000061 ], [ -82.121139697, 28.791755875000035 ], [ -82.121046149999984, 28.791942282000036 ], [ -82.120921107999948, 28.792129427000077 ], [ -82.120867575999966, 28.792241204000049 ], [ -82.120825497999988, 28.792302090000078 ], [ -82.120771941999976, 28.792413141000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046063254999979, 28.864625812000043 ], [ -82.046058904999938, 28.864211245000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046058904999938, 28.864211245000035 ], [ -82.046060920999935, 28.863517639000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046060920999935, 28.863517639000065 ], [ -82.046068756999944, 28.863239712000052 ], [ -82.046066003999954, 28.863010834000079 ], [ -82.046065669999962, 28.862254133000079 ], [ -82.046065621999958, 28.862144365000063 ], [ -82.046062928999959, 28.862057953000033 ], [ -82.046054935999962, 28.861980884000047 ], [ -82.046038997999972, 28.861934180000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041280892999964, 28.863160943000025 ], [ -82.040826154999934, 28.862987760000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040826154999934, 28.862987760000067 ], [ -82.040164767999954, 28.862757817000045 ], [ -82.040105505999975, 28.862737831000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960933248999936, 28.874814535000041 ], [ -81.961024861999988, 28.874883548000071 ], [ -81.961221350999949, 28.875024759000041 ], [ -81.96145520999994, 28.875188270000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96145520999994, 28.875188270000024 ], [ -81.961497397999949, 28.875225428000078 ], [ -81.961729796999975, 28.875395535000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962238235999962, 28.874233304000029 ], [ -81.962337144999935, 28.874131445000046 ], [ -81.962737211, 28.87376764000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96145520999994, 28.875188270000024 ], [ -81.961529989999974, 28.875127796000072 ], [ -81.961552908999977, 28.875103393000074 ], [ -81.96170250199998, 28.874887987000079 ], [ -81.961883433999958, 28.874644469000032 ], [ -81.961997388999976, 28.874500511000065 ], [ -81.962238235999962, 28.874233304000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961711325999943, 28.873844711000061 ], [ -81.962238235999962, 28.874233304000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959404020999955, 28.874625594000065 ], [ -81.959452280999983, 28.874549194000053 ], [ -81.959511805999966, 28.874444494000045 ], [ -81.959550415999956, 28.874379412000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959893048999959, 28.873870081000064 ], [ -81.96013170599997, 28.874011070000051 ], [ -81.960465348999946, 28.874232131000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959550415999956, 28.874379412000053 ], [ -81.959679103999974, 28.874192658000027 ], [ -81.959893048999959, 28.873870081000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95818292499996, 28.872758711000074 ], [ -81.958202237999956, 28.872706359000063 ], [ -81.958256942999981, 28.87259741400004 ], [ -81.958321290999947, 28.872491301000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95818292499996, 28.872758711000074 ], [ -81.95831151799996, 28.872808279000026 ], [ -81.958383844999958, 28.87285358500003 ], [ -81.958695647999946, 28.873065945000064 ], [ -81.959299976999944, 28.873456695000073 ], [ -81.959709823999958, 28.873739837000073 ], [ -81.959893048999959, 28.873870081000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957968859999937, 28.873369966000041 ], [ -81.958055652999974, 28.87342376600003 ], [ -81.958179410999946, 28.873504466000043 ], [ -81.958542652999938, 28.873735238000052 ], [ -81.958986255999946, 28.87403112800007 ], [ -81.959441112999968, 28.874329851000027 ], [ -81.959550415999956, 28.874379412000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957968859999937, 28.873369966000041 ], [ -81.957980148, 28.873286479000058 ], [ -81.958009135999987, 28.873163375000047 ], [ -81.958100871999989, 28.872917176000044 ], [ -81.95818292499996, 28.872758711000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112671488999979, 28.657551913000077 ], [ -82.111645039999985, 28.657534946000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111645039999985, 28.657534946000055 ], [ -82.111270053999988, 28.657530974000053 ], [ -82.110607301999949, 28.657531517000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.207716092999988, 28.601695534000044 ], [ -82.207545141999958, 28.601714634000075 ], [ -82.207353928999964, 28.601737650000075 ], [ -82.206925255999977, 28.60179198000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.20665046299996, 28.601822004000041 ], [ -82.206496087999938, 28.60182433600005 ], [ -82.206383581999944, 28.601829874000032 ], [ -82.20627608999996, 28.601837853000063 ], [ -82.206177637999986, 28.601847553000027 ], [ -82.206092148999971, 28.601845773000036 ], [ -82.206023230999961, 28.601834112000063 ], [ -82.205963898999983, 28.601817093000079 ], [ -82.205909123999959, 28.601798389000066 ], [ -82.205863468999951, 28.60177698900003 ], [ -82.205826933999958, 28.601755575000027 ], [ -82.205790389999947, 28.601728792000074 ], [ -82.205736917999957, 28.601689218000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.205736917999957, 28.601689218000047 ], [ -82.205748486999937, 28.601795203000052 ], [ -82.205742937999958, 28.601834938000025 ], [ -82.205729581999947, 28.601867046000052 ], [ -82.205706267999972, 28.601897259000054 ], [ -82.205672794999941, 28.601940847000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.192989509999961, 28.600537048000035 ], [ -82.193773203999967, 28.600722720000078 ], [ -82.194737034999946, 28.600968247000026 ], [ -82.195713054999942, 28.601224485000046 ], [ -82.197144229999935, 28.601598139000032 ], [ -82.197587182999939, 28.601696257000071 ], [ -82.198029253999948, 28.601798236000036 ], [ -82.198181681999984, 28.601835449000077 ], [ -82.198321994999958, 28.601874971000029 ], [ -82.198877216999961, 28.602046818000076 ], [ -82.199238386, 28.602144078000038 ], [ -82.199502557999949, 28.60221855900005 ], [ -82.199623821999978, 28.602255052000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040807443999938, 28.872810464000054 ], [ -82.041022277999957, 28.872802351000075 ], [ -82.042255365999949, 28.872804082000073 ], [ -82.043810596999947, 28.872797048000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039463563999959, 28.87281086400003 ], [ -82.039756679999982, 28.872810275000063 ], [ -82.040233780999984, 28.872812648000036 ], [ -82.040807443999938, 28.872810464000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020549123999956, 28.898339144000033 ], [ -82.020550966999963, 28.898489124000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027780610999969, 28.891847245000065 ], [ -82.027781109999978, 28.893720735000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01898324299998, 28.891368530000079 ], [ -82.018655076999949, 28.891592555000045 ], [ -82.018422648999945, 28.891805323000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041222474999984, 28.938342237000029 ], [ -82.041219196999975, 28.937025518000041 ], [ -82.041209313999957, 28.93566947000005 ], [ -82.041207945999986, 28.935603972000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070274238999957, 28.908142712000028 ], [ -82.070277297999951, 28.908263238000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045939421999947, 28.901068778000024 ], [ -82.045912056999953, 28.90108484600006 ], [ -82.045852360999959, 28.901111137000044 ], [ -82.045802185999946, 28.90112113400005 ], [ -82.045731291999971, 28.901126023000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046913379999978, 28.898310768000044 ], [ -82.046985559999939, 28.898355618000039 ], [ -82.047041562999937, 28.898417991000031 ], [ -82.047090115999936, 28.898509921000027 ], [ -82.047157418999973, 28.898805441000036 ], [ -82.04715000799996, 28.898920378000071 ], [ -82.047109021999972, 28.89906159700007 ], [ -82.047038179999959, 28.899189691000061 ], [ -82.046944982999946, 28.899399888000062 ], [ -82.046795878999944, 28.899761161000072 ], [ -82.046650453999973, 28.900007497000047 ], [ -82.046590787999946, 28.900099466000029 ], [ -82.046482625999943, 28.900227572000063 ], [ -82.046359532999986, 28.900345832000028 ], [ -82.046311055, 28.900421377000043 ], [ -82.046243947999983, 28.900562604000072 ], [ -82.04619921699998, 28.900677553000037 ], [ -82.046169406999979, 28.900776078000035 ], [ -82.046113489999982, 28.900907450000034 ], [ -82.046023974999969, 28.901012564000041 ], [ -82.045939421999947, 28.901068778000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050039520999974, 28.898298702000034 ], [ -82.049524345999941, 28.898309367000024 ], [ -82.049277808999989, 28.898312449000059 ], [ -82.048907158999953, 28.898327547000065 ], [ -82.04859602099998, 28.898303008000028 ], [ -82.047994099999983, 28.898288973000035 ], [ -82.047810478999963, 28.898305497000024 ], [ -82.047497838999959, 28.898296536000032 ], [ -82.04717372999994, 28.898306001000037 ], [ -82.046913379999978, 28.898310768000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050056455999936, 28.856257156000026 ], [ -82.050014099999942, 28.856226474000039 ], [ -82.049969250999936, 28.856191408000029 ], [ -82.049864592999938, 28.856086198000071 ], [ -82.049814749999939, 28.856022629000051 ], [ -82.049772375999964, 28.855956864000063 ], [ -82.049734978999936, 28.855875748000074 ], [ -82.049695075999978, 28.855763936000073 ], [ -82.049680080999963, 28.855658693000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049680080999963, 28.855658693000066 ], [ -82.049675080999975, 28.855619225000055 ], [ -82.049675047999983, 28.855549060000044 ], [ -82.049679985999944, 28.855459157000041 ], [ -82.049671480999962, 28.854863655000031 ], [ -82.049660254999935, 28.854650668000033 ], [ -82.049629573999937, 28.854454826000051 ], [ -82.049590553999963, 28.854268778000062 ], [ -82.049529189999987, 28.853877093000051 ], [ -82.049528711999983, 28.852868444000023 ], [ -82.049528610999971, 28.852655452000079 ], [ -82.049534132999952, 28.852572212000041 ], [ -82.049545221999949, 28.852498763000028 ], [ -82.049559097999975, 28.852442449000023 ], [ -82.049595360999945, 28.852382692000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049595360999945, 28.852382692000049 ], [ -82.049708574999954, 28.852326615000038 ], [ -82.049798179999982, 28.852305263000062 ], [ -82.049887158, 28.852290542000048 ], [ -82.049987261999945, 28.85228316000007 ], [ -82.050092930999938, 28.852283121000028 ], [ -82.052114554999946, 28.852289700000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046987116999958, 28.864129219000063 ], [ -82.047021588999939, 28.864087169000072 ], [ -82.047040142999947, 28.864047459000062 ], [ -82.047050734999971, 28.864005416000055 ], [ -82.047050705999936, 28.863940022000065 ], [ -82.047050308999985, 28.863059540000052 ], [ -82.047057848999941, 28.862127674000078 ], [ -82.047060458999965, 28.862029583000037 ], [ -82.047051909999936, 28.861977812000077 ], [ -82.04704075099994, 28.861946543000045 ], [ -82.047023266999986, 28.861919827000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12000341199996, 28.908894527000029 ], [ -82.120278265999957, 28.908896372000072 ], [ -82.12051347299996, 28.908902561000048 ], [ -82.120697767999957, 28.908917331000055 ], [ -82.120964471999969, 28.908902157000057 ], [ -82.121223930999975, 28.908912591000046 ], [ -82.121410653999988, 28.908927358000028 ], [ -82.121645844999989, 28.908920746000035 ], [ -82.122028914999987, 28.908888395000076 ], [ -82.123369811999964, 28.908904243000052 ], [ -82.124211187999947, 28.908899202000043 ], [ -82.124577320999947, 28.908896731000027 ], [ -82.124703407999959, 28.908898747000023 ], [ -82.124800392999987, 28.908894390000057 ], [ -82.124848887999974, 28.908894346000068 ], [ -82.124877992999984, 28.90890071900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124967194999954, 28.912519136000071 ], [ -82.125006011999972, 28.912536168000031 ], [ -82.125061786999936, 28.912540383000078 ], [ -82.125119990999963, 28.912546729000042 ], [ -82.125183038999978, 28.912548804000039 ], [ -82.125498264999976, 28.912548510000079 ], [ -82.126179608999962, 28.912524405000056 ], [ -82.126528797999981, 28.912536880000062 ], [ -82.127033162999965, 28.912538538000035 ], [ -82.127225627999962, 28.912539910000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128342560999954, 28.912535164000076 ], [ -82.128381395999952, 28.912564996000071 ], [ -82.128405692999934, 28.912605510000049 ], [ -82.128413118999958, 28.912727115000052 ], [ -82.12841173399994, 28.913572001000034 ], [ -82.128412074999972, 28.913849362000065 ], [ -82.128402569999935, 28.914007253000079 ], [ -82.128373623999948, 28.914131027000053 ], [ -82.128377045999969, 28.914365633000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124877992999984, 28.90890071900003 ], [ -82.124919263999971, 28.908943352000051 ], [ -82.12494113799994, 28.908986003000052 ], [ -82.124921873999938, 28.909099099000059 ], [ -82.124912354999935, 28.909248455000068 ], [ -82.124944238999944, 28.909551390000047 ], [ -82.124918394999952, 28.910242684000025 ], [ -82.124921668999946, 28.910951019000038 ], [ -82.124933993999946, 28.911119559000042 ], [ -82.12495387599995, 28.911522780000041 ], [ -82.124923427999988, 28.912418899000045 ], [ -82.124925896999969, 28.912457300000028 ], [ -82.124942912999984, 28.912491422000073 ], [ -82.124967194999954, 28.912519136000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133379023999964, 28.94915297600005 ], [ -82.133404282999948, 28.949113374000035 ], [ -82.133432366999955, 28.949083664000057 ], [ -82.133480167999949, 28.949078670000063 ], [ -82.136373627999944, 28.949071008000033 ], [ -82.137616890999936, 28.949062136000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08274877599996, 28.952772493000055 ], [ -82.081581932999939, 28.952770738000027 ], [ -82.078510566999967, 28.952775032000034 ], [ -82.078415199999938, 28.952775088000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107431670999972, 28.900044665000053 ], [ -82.108222964999982, 28.899996006000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.132630819999974, 28.865447928000037 ], [ -82.132595681999987, 28.865541068000027 ], [ -82.13264768099998, 28.865768608000053 ], [ -82.133023334999962, 28.867293097000072 ], [ -82.133323393999945, 28.86851144700006 ], [ -82.134126556999945, 28.871630713000059 ], [ -82.134348708999937, 28.872565682000072 ], [ -82.134457439999949, 28.873035240000036 ], [ -82.134686686999942, 28.873999167000079 ], [ -82.134821401999943, 28.874565941000071 ], [ -82.13485207399998, 28.874654877000069 ], [ -82.134942820999981, 28.874847722000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141077534999965, 28.865983425000024 ], [ -82.14066459299994, 28.86693450000007 ], [ -82.140576145999944, 28.867168997000078 ], [ -82.140561772999945, 28.867481553000061 ], [ -82.140665714999955, 28.867767939000032 ], [ -82.14087288199994, 28.867806790000031 ], [ -82.141006025999957, 28.867806651000024 ], [ -82.141346373999966, 28.867871407000052 ], [ -82.141494471999977, 28.867988455000045 ], [ -82.141775891999941, 28.868235587000072 ], [ -82.14208718499998, 28.868691046000038 ], [ -82.142161170999941, 28.868703992000064 ], [ -82.142368570999963, 28.868912132000048 ], [ -82.143160009999974, 28.870119492000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178849457999945, 28.858194664000052 ], [ -82.178842738999947, 28.858109798000044 ], [ -82.178842672999963, 28.858071218000077 ], [ -82.178846998999973, 28.858038420000071 ], [ -82.178855720999934, 28.858013331000052 ], [ -82.178877472999943, 28.857993329000067 ], [ -82.178980167999953, 28.857950836000043 ], [ -82.179061858999944, 28.857918828000038 ], [ -82.179776644999947, 28.85767344900006 ], [ -82.181067263999978, 28.857164398000066 ], [ -82.181378628999937, 28.857055475000038 ], [ -82.181698985999958, 28.856938281000055 ], [ -82.182028738999975, 28.856812356000034 ], [ -82.182362214999955, 28.856694332000075 ], [ -82.18269922099995, 28.85658455500004 ], [ -82.183039753999935, 28.856482679000067 ], [ -82.183383032999984, 28.85638939100005 ], [ -82.183543069999985, 28.85635101400004 ], [ -82.183803825999973, 28.856295654000064 ], [ -82.184066743999949, 28.85624888500007 ], [ -82.184331433999944, 28.856210708000049 ], [ -82.184597504999942, 28.856181123000056 ], [ -82.184864764999986, 28.856160474000035 ], [ -82.185108798999977, 28.856134136000037 ], [ -82.185396368999989, 28.856124699000077 ], [ -82.185567554999977, 28.85612747700003 ], [ -82.185743207999963, 28.856138689000034 ], [ -82.185953630999961, 28.856180836000078 ], [ -82.18611366, 28.856223053000065 ], [ -82.186269314999947, 28.856271063000065 ], [ -82.186394281999981, 28.856311400000038 ], [ -82.186598211999979, 28.856397922000042 ], [ -82.18678874699998, 28.856488195000054 ], [ -82.186981223999965, 28.856575935000023 ], [ -82.187168835999955, 28.856671590000076 ], [ -82.187351382999964, 28.856774470000062 ], [ -82.187528475999954, 28.856884233000073 ], [ -82.187699530999964, 28.857001567000054 ], [ -82.187885711999968, 28.857123362000038 ], [ -82.188188503999982, 28.857352490000039 ], [ -82.188212797999938, 28.857458550000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.199712791999957, 28.855579698000042 ], [ -82.199559763999957, 28.855623200000025 ], [ -82.19931313799998, 28.855700725000077 ], [ -82.198787828999968, 28.855850997000061 ], [ -82.198284158999968, 28.856003646000033 ], [ -82.197548060999964, 28.856212575000029 ], [ -82.19721326399997, 28.856298794000054 ], [ -82.196928260999982, 28.856365872000026 ], [ -82.196564688999956, 28.856449348000069 ], [ -82.196212043999935, 28.856517376000056 ], [ -82.195918535999965, 28.856573744000059 ], [ -82.195637649999981, 28.856621975000053 ], [ -82.19522634499998, 28.856684699000027 ], [ -82.194972483999948, 28.856717464000042 ], [ -82.194652399999939, 28.85675690100004 ], [ -82.194290929999966, 28.856794074000049 ], [ -82.193318111999986, 28.856875543000058 ], [ -82.192998348999936, 28.856904894000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178058875999966, 28.858448408000072 ], [ -82.178733672999954, 28.858397362000062 ], [ -82.179316446999962, 28.858352221000075 ], [ -82.179870741999935, 28.858309046000045 ], [ -82.180414075999977, 28.858263952000073 ], [ -82.180944274999945, 28.858226591000061 ], [ -82.181439414999943, 28.858189276000076 ], [ -82.181851562999952, 28.85815722500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.207097898999962, 28.853823352000063 ], [ -82.20682045999996, 28.85386242900006 ], [ -82.206321341999967, 28.85394763000005 ], [ -82.205858860999967, 28.854015387000061 ], [ -82.205371011999944, 28.854093117000048 ], [ -82.204976229999943, 28.854160770000078 ], [ -82.204674512999986, 28.854218346000039 ], [ -82.204322040999955, 28.854285933000028 ], [ -82.203969597999958, 28.854368418000035 ], [ -82.203545817999952, 28.854466407000075 ], [ -82.203163232999941, 28.854570791000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165343080999946, 28.860286287000065 ], [ -82.165543443, 28.86020237200006 ], [ -82.165830291999953, 28.860074707000024 ], [ -82.166294500999982, 28.859869662000051 ], [ -82.166736814999979, 28.859674287000075 ], [ -82.167032438999968, 28.85955625400004 ], [ -82.16727991099998, 28.859473001000026 ], [ -82.167496727999946, 28.859403288000067 ], [ -82.167742039999951, 28.859339326000054 ], [ -82.167976407999959, 28.859283094000034 ], [ -82.168241458999944, 28.859230681000042 ], [ -82.168453950999947, 28.859197623000057 ], [ -82.168708076999962, 28.859164512000063 ], [ -82.169207605999986, 28.859125306000067 ], [ -82.169666002999975, 28.859089700000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10743512099998, 28.877371295000046 ], [ -82.109434871999952, 28.877738986000054 ], [ -82.112968446999957, 28.878389926000068 ], [ -82.115322470999956, 28.878815241000041 ], [ -82.116288794999946, 28.878993593000075 ], [ -82.119940917999941, 28.879659412000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10335579499997, 28.876435155000024 ], [ -82.103226483999947, 28.876408358000049 ], [ -82.102977271999976, 28.876365099000054 ], [ -82.101484351999943, 28.876093123000032 ], [ -82.10102354199995, 28.876002432000064 ], [ -82.100600343999986, 28.875915851000059 ], [ -82.100250021999955, 28.87583335100004 ], [ -82.099920848999943, 28.875744628000064 ], [ -82.09932362099994, 28.87556713500004 ], [ -82.098883933999957, 28.875439179000068 ], [ -82.098225577999983, 28.875245174000042 ], [ -82.097073463999948, 28.874908761000029 ], [ -82.09617997099997, 28.874623878000079 ], [ -82.095378180999944, 28.874365822000073 ], [ -82.094284841, 28.874018997000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093431548999945, 28.873986487000025 ], [ -82.094466053999952, 28.874258876000056 ], [ -82.094971554999972, 28.874395074000063 ], [ -82.095766265999941, 28.874624173000029 ], [ -82.098674785999947, 28.87549933400004 ], [ -82.099791645999971, 28.875829553000074 ], [ -82.10082620299994, 28.876120513000046 ], [ -82.101451613999984, 28.876266944000065 ], [ -82.102020581999966, 28.876384447000078 ], [ -82.103357465999977, 28.876628129000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.094284841, 28.874018997000064 ], [ -82.09311157999997, 28.873661875000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09311157999997, 28.873661875000039 ], [ -82.092534474999979, 28.873494941000047 ], [ -82.092184733999943, 28.873389144000043 ], [ -82.091780322999966, 28.873261659000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093095328999937, 28.873889477000034 ], [ -82.093191728999955, 28.873918377000052 ], [ -82.093351605999942, 28.873961714000075 ], [ -82.093431548999945, 28.873986487000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091689305999978, 28.873464224000031 ], [ -82.092194819999975, 28.873623194000061 ], [ -82.093095328999937, 28.873889477000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090058150999937, 28.872948719000078 ], [ -82.090237431999981, 28.873007436000023 ], [ -82.090572489999943, 28.873126181000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086843672999976, 28.871964817000048 ], [ -82.08815883799997, 28.872358367000061 ], [ -82.089327065999953, 28.872706744000027 ], [ -82.090058150999937, 28.872948719000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09311157999997, 28.873661875000039 ], [ -82.093151257999978, 28.873605324000039 ], [ -82.093176160999974, 28.873550875000035 ], [ -82.093188055999974, 28.873506939000038 ], [ -82.093197787999941, 28.873469690000036 ], [ -82.093208600999958, 28.873430530000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093108112999971, 28.874240129000043 ], [ -82.093095897999945, 28.874168325000028 ], [ -82.093090822999955, 28.874108795000041 ], [ -82.093093118999946, 28.874046723000049 ], [ -82.093093052999961, 28.873972238000079 ], [ -82.093095328999937, 28.873889477000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.080808479999973, 28.868032515000039 ], [ -82.080809001999967, 28.868033113000024 ], [ -82.081255717999966, 28.868537463000052 ], [ -82.081853055999943, 28.869228118000024 ], [ -82.082142525999984, 28.869547184000055 ], [ -82.082454961999986, 28.869878358000051 ], [ -82.082643321999967, 28.870052007000027 ], [ -82.082928141999957, 28.870290253000064 ], [ -82.083281846999967, 28.870556743000066 ], [ -82.083562026999971, 28.870730335000076 ], [ -82.083970794999971, 28.870956378000074 ], [ -82.084382291999987, 28.871148475000041 ], [ -82.084716618999948, 28.871287277000079 ], [ -82.084973782999953, 28.871380867000028 ], [ -82.085491781999963, 28.87156157700008 ], [ -82.086435899999969, 28.871842231000073 ], [ -82.086843672999976, 28.871964817000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068279814999983, 28.853739388000065 ], [ -82.069020282999986, 28.854573736000077 ], [ -82.069704738999974, 28.855361388000063 ], [ -82.070605102999934, 28.85638330200004 ], [ -82.071376860999976, 28.857263844000045 ], [ -82.071652497999935, 28.857586981000054 ], [ -82.072121066999955, 28.858112067000036 ], [ -82.072938790999956, 28.859045108000032 ], [ -82.07394540599995, 28.860197411000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044789368999943, 28.847294545000068 ], [ -82.045116017999987, 28.847343386000034 ], [ -82.045166986999959, 28.847359685000072 ], [ -82.045208697999954, 28.847388225000032 ], [ -82.045257358999947, 28.847424920000037 ], [ -82.045280539999965, 28.847457546000044 ], [ -82.045290576999946, 28.847489234000079 ], [ -82.04529869199996, 28.847562767000056 ], [ -82.045308442999954, 28.847700241000041 ], [ -82.045352691999938, 28.848244783000041 ], [ -82.045380981999983, 28.848371114000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044789368999943, 28.847294545000068 ], [ -82.045359228999985, 28.847292315000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038886297999966, 28.846622238000066 ], [ -82.038385029999972, 28.846489418000033 ], [ -82.037984743999971, 28.846380234000037 ], [ -82.037252495999951, 28.846152451000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139436170999943, 28.879103139000051 ], [ -82.139542435999942, 28.880125478000025 ], [ -82.139637593999964, 28.880900419000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.169696727999963, 28.823304545000042 ], [ -82.169732988999954, 28.823263367000038 ], [ -82.169777060999934, 28.823238175000029 ], [ -82.169834122999987, 28.823224392000043 ], [ -82.170132413999966, 28.82315546500007 ], [ -82.170651194999948, 28.823045125000078 ], [ -82.171232267999983, 28.822946129000059 ], [ -82.173336177999943, 28.822662377000029 ], [ -82.174679982999976, 28.822484690000067 ], [ -82.175668394999946, 28.822364583000024 ], [ -82.175839642999961, 28.822359790000064 ], [ -82.175958991999948, 28.822352779000028 ], [ -82.176049803999945, 28.822350375000042 ], [ -82.17613541999998, 28.822343408000052 ], [ -82.176210668999943, 28.822343310000065 ], [ -82.17625217799997, 28.822338686000023 ], [ -82.176314435999984, 28.822329464000063 ], [ -82.176350758999945, 28.822327132000055 ], [ -82.176377628999944, 28.822322557000064 ], [ -82.176400041999955, 28.822315642000035 ], [ -82.176428566999959, 28.822306464000064 ], [ -82.176454499999977, 28.822297290000051 ], [ -82.176495981999949, 28.822276669000075 ], [ -82.176542621999943, 28.822237762000043 ], [ -82.176604784999938, 28.822171412000046 ], [ -82.176672090999944, 28.822077636000074 ], [ -82.176754899999935, 28.821944992000056 ], [ -82.176873907999948, 28.821736892000047 ], [ -82.176928192999981, 28.82161571000006 ], [ -82.176967002999959, 28.821549391000076 ], [ -82.177026558999955, 28.821476191000045 ], [ -82.177119786999981, 28.821368668000048 ], [ -82.177164293999965, 28.821330230000058 ], [ -82.177277862999972, 28.821247351000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179227781999941, 28.821746240000039 ], [ -82.179139944999974, 28.823089343000049 ], [ -82.179101915999979, 28.823642891000077 ], [ -82.179085863999944, 28.824228590000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113429148999955, 28.67790102400005 ], [ -82.114008276999982, 28.677904377000061 ], [ -82.114053996999985, 28.677904339000065 ], [ -82.114091003999988, 28.677900468000075 ], [ -82.114128007999966, 28.677892757000052 ], [ -82.114162815999975, 28.677867767000066 ], [ -82.114182374999984, 28.677835111000036 ], [ -82.114227663999941, 28.677437633000068 ], [ -82.11422545299996, 28.677406915000063 ], [ -82.114212352999971, 28.677372366000043 ], [ -82.114184020999971, 28.677345510000066 ], [ -82.114144804999967, 28.677320583000039 ], [ -82.114088185999947, 28.677309110000067 ], [ -82.113783385999966, 28.677309366000031 ], [ -82.113668007999934, 28.677319064000073 ], [ -82.113564705999977, 28.677391041000078 ], [ -82.113511378999988, 28.67743631500008 ], [ -82.113494007999975, 28.677478570000062 ], [ -82.113474463999978, 28.677524666000068 ], [ -82.113429148999955, 28.67790102400005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113429148999955, 28.67790102400005 ], [ -82.113405464999971, 28.678146803000061 ], [ -82.113314953999975, 28.679010879000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114254986999981, 28.674923392000039 ], [ -82.114269873999945, 28.67497895200006 ], [ -82.114253807999944, 28.675117897000064 ], [ -82.114249271999938, 28.675207798000031 ], [ -82.114258635999988, 28.675297687000068 ], [ -82.114292577999947, 28.675407169000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114199411999948, 28.67494795600004 ], [ -82.114202740999986, 28.675028043000054 ], [ -82.114202811999974, 28.675093423000078 ], [ -82.114195936999977, 28.675160852000033 ], [ -82.114191387999938, 28.675238492000062 ], [ -82.114200737999965, 28.675316123000073 ], [ -82.114207734999979, 28.675359022000066 ], [ -82.114220300999989, 28.675410499000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114220300999989, 28.675410499000066 ], [ -82.114183302999948, 28.675474274000067 ], [ -82.11415186499994, 28.675538046000042 ], [ -82.114129696999953, 28.675605079000036 ], [ -82.114114979999954, 28.675706429000059 ], [ -82.114107722999961, 28.675851905000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114087415999961, 28.675925474000053 ], [ -82.114102274999937, 28.675954882000042 ], [ -82.114124545999971, 28.675982650000037 ], [ -82.11415978499997, 28.676005502000066 ], [ -82.114200571999959, 28.676016909000055 ], [ -82.114239491999967, 28.676016876000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113722344999985, 28.675965008000048 ], [ -82.114087415999961, 28.675925474000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114292577999947, 28.675407169000039 ], [ -82.114659553999957, 28.675415847000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114239491999967, 28.676016876000062 ], [ -82.114424861999964, 28.676047776000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170326895999949, 28.688975065000079 ], [ -82.170286487999988, 28.688939536000078 ], [ -82.170266246999972, 28.688899534000029 ], [ -82.170258603999969, 28.688850621000029 ], [ -82.170261023999956, 28.688788351000028 ], [ -82.170239891999984, 28.688196858000026 ], [ -82.170200873999988, 28.687460841000075 ], [ -82.170176063999975, 28.686153299000068 ], [ -82.170123338999986, 28.68473682900003 ], [ -82.170087199999955, 28.683507508000048 ], [ -82.170082147999949, 28.683466487000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178510633999963, 28.657803650000062 ], [ -82.178523785999971, 28.657818371000076 ], [ -82.178561409999986, 28.657848912000077 ], [ -82.17860769899994, 28.657876892000047 ], [ -82.178656857999954, 28.657892123000067 ], [ -82.178734907999967, 28.657902217000071 ], [ -82.178867856999943, 28.657904591000033 ], [ -82.180260913999973, 28.657918039000037 ], [ -82.181246451999982, 28.657924372000025 ], [ -82.182480562999956, 28.65794310800004 ], [ -82.182538377999947, 28.657950678000077 ], [ -82.182584649999967, 28.657968460000063 ], [ -82.18259052999997, 28.657971414000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174071460999983, 28.649186216000032 ], [ -82.174174064999988, 28.649079420000078 ], [ -82.17428575699995, 28.648984612000049 ], [ -82.174362722999945, 28.648913847000074 ], [ -82.174436691999972, 28.648857753000073 ], [ -82.174509187999945, 28.648832114000072 ], [ -82.174563608999961, 28.648829590000048 ], [ -82.174592306999955, 28.648817554000061 ], [ -82.174669452999979, 28.648790524000049 ], [ -82.174769089999984, 28.648782660000052 ], [ -82.174958014999959, 28.648778416000027 ], [ -82.176156607999985, 28.64878219600007 ], [ -82.17697583599994, 28.648791795000079 ], [ -82.177580439999986, 28.648804337000058 ], [ -82.178526622999982, 28.648809760000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142866044999948, 28.810623818000067 ], [ -82.142864444999987, 28.810987279000074 ], [ -82.142850884999973, 28.811795393000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142850884999973, 28.811795393000068 ], [ -82.142849000999945, 28.811950372000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142849000999945, 28.811950372000069 ], [ -82.142851913999948, 28.812549986000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142851913999948, 28.812549986000079 ], [ -82.142832258999988, 28.813044344000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142832258999988, 28.813044344000048 ], [ -82.142832320999958, 28.813089839000043 ], [ -82.142837446999977, 28.813183759000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142837446999977, 28.813183759000026 ], [ -82.142832588999966, 28.813286495000057 ], [ -82.142808599999967, 28.814023253000073 ], [ -82.142806992999965, 28.814067282000053 ], [ -82.142812037999988, 28.814101031000064 ], [ -82.142827505999946, 28.814140640000062 ], [ -82.142836633999934, 28.814150694000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142836633999934, 28.814150694000034 ], [ -82.142855458999975, 28.814171430000044 ], [ -82.142904251999937, 28.814209535000032 ], [ -82.142937611999969, 28.814232982000078 ], [ -82.142975968999963, 28.814256423000074 ], [ -82.143013896999946, 28.814269590000038 ], [ -82.143190551999965, 28.814285547000054 ], [ -82.143465511999977, 28.814294060000066 ], [ -82.143672141999957, 28.814295309000045 ], [ -82.143978745999959, 28.814290579000044 ], [ -82.144220351999934, 28.814280048000057 ], [ -82.144928498999946, 28.814241132000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.144928498999946, 28.814241132000063 ], [ -82.145751622999967, 28.814224247000027 ], [ -82.14661244499996, 28.814218894000078 ], [ -82.147041610999963, 28.814222848000043 ], [ -82.147473290999983, 28.814231219000078 ], [ -82.147844728999985, 28.814230813000052 ], [ -82.147985261999963, 28.814224028000069 ], [ -82.148089952999953, 28.814215686000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142851913999948, 28.812549986000079 ], [ -82.143645835999962, 28.81254176300007 ], [ -82.144730928999934, 28.812527690000024 ], [ -82.144894338999961, 28.812538584000038 ], [ -82.144984417999979, 28.812540332000026 ], [ -82.145210652999936, 28.812536398000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145210652999936, 28.812536398000077 ], [ -82.145195927999964, 28.81249213600006 ], [ -82.14511590099994, 28.812185955000075 ], [ -82.145052710999948, 28.811936952000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141225458999941, 28.811896731000047 ], [ -82.141273773999956, 28.811996309000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.144933751999986, 28.814723661000073 ], [ -82.145186767999974, 28.814721962000078 ], [ -82.14543654199997, 28.814721693000024 ], [ -82.145564666999974, 28.814717270000074 ], [ -82.146183990999987, 28.814724056000045 ], [ -82.146286442999951, 28.814735059000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14705534899997, 28.807841712000027 ], [ -82.147046008999951, 28.808648898000058 ], [ -82.147035881999955, 28.808895674000041 ], [ -82.147028087999956, 28.808939501000054 ], [ -82.147025533999965, 28.808985627000027 ], [ -82.147036062999973, 28.809024822000026 ], [ -82.147053609999944, 28.809059534000028 ], [ -82.147085064999942, 28.809084252000048 ], [ -82.147122169999989, 28.809101744000031 ], [ -82.147714901999962, 28.809120694000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147603550999975, 28.810562765000043 ], [ -82.147648953999976, 28.811038926000037 ], [ -82.147672512999975, 28.81135017400004 ], [ -82.147659589999989, 28.811553824000043 ], [ -82.147649782999963, 28.811626563000061 ], [ -82.147616912999979, 28.811740053000051 ], [ -82.147587360999978, 28.811865178000062 ], [ -82.147574322999958, 28.811987374000068 ], [ -82.147591001999956, 28.812103719000049 ], [ -82.147587492999946, 28.812189085000057 ], [ -82.147627806999935, 28.812438225000051 ], [ -82.147647857999971, 28.812604022000073 ], [ -82.147640253999953, 28.81267772700005 ], [ -82.147609596999985, 28.812798004000058 ], [ -82.147438515999966, 28.813279160000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142433944999937, 28.810043504000078 ], [ -82.141036987999939, 28.810075299000061 ], [ -82.14102644899998, 28.810075310000059 ], [ -82.140755168999988, 28.810072499000057 ], [ -82.140737994999938, 28.810072517000037 ], [ -82.140720428999941, 28.810071503000074 ], [ -82.140702665999981, 28.810069460000079 ], [ -82.140685293999979, 28.810066727000049 ], [ -82.140667918999952, 28.810063308000053 ], [ -82.14065093399995, 28.810059201000058 ], [ -82.140634143999989, 28.810054061000073 ], [ -82.140617741999961, 28.810048234000078 ], [ -82.140601534999973, 28.810041719000026 ], [ -82.140575187999957, 28.810043121000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140575187999957, 28.810043121000035 ], [ -82.140551325999979, 28.810037460000046 ], [ -82.140522940999972, 28.810027879000074 ], [ -82.140481445999967, 28.810006778000059 ], [ -82.140158073999942, 28.80973031700006 ], [ -82.140081547999955, 28.809624676000055 ], [ -82.139854097999944, 28.80926738200003 ], [ -82.139834250999968, 28.809113626000055 ], [ -82.13981443299997, 28.808981016000075 ], [ -82.139796824999962, 28.808869546000039 ], [ -82.139837670999952, 28.808406254000033 ], [ -82.139855049999937, 28.80834472500004 ], [ -82.139881154999955, 28.808283188000075 ], [ -82.139911642999948, 28.808233179000069 ], [ -82.139955231999977, 28.808188923000046 ], [ -82.140011902999959, 28.808136965000074 ], [ -82.140066422999951, 28.80810615300004 ], [ -82.140120754999941, 28.808076472000039 ], [ -82.140182020999987, 28.808054135000077 ], [ -82.140249646999962, 28.808032920000073 ], [ -82.140546395999934, 28.80799032300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140546395999934, 28.80799032300007 ], [ -82.140816969999946, 28.80795736400006 ], [ -82.140974078999989, 28.807939899000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140974078999989, 28.807939899000075 ], [ -82.141541342999972, 28.807822052000063 ], [ -82.142575493999971, 28.807597989000044 ], [ -82.143293277999987, 28.807435763000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143293277999987, 28.807435763000058 ], [ -82.143450362999943, 28.807400997000059 ], [ -82.143714357999954, 28.807346894000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143714357999954, 28.807346894000034 ], [ -82.14376453899996, 28.80733723000003 ], [ -82.143888899999979, 28.807312109000065 ], [ -82.144458128999986, 28.807196975000068 ], [ -82.144911482999987, 28.807057602000043 ], [ -82.145089568999936, 28.807001703000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145089568999936, 28.807001703000026 ], [ -82.145174039999972, 28.806979112000079 ], [ -82.145258511999941, 28.806958250000037 ], [ -82.145382435999977, 28.806944335000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140974078999989, 28.807939899000075 ], [ -82.140989554999976, 28.808087893000049 ], [ -82.140989670999943, 28.808174392000069 ], [ -82.141005165999957, 28.808335840000041 ], [ -82.14096865199997, 28.808772218000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138310289999936, 28.807801939000058 ], [ -82.138449027999968, 28.807825619000027 ], [ -82.138530881999941, 28.807835147000048 ], [ -82.139097614999969, 28.80772692000005 ], [ -82.139254710999978, 28.807699847000038 ], [ -82.139352910999946, 28.807693980000067 ], [ -82.139453309999965, 28.807699642000046 ], [ -82.13962579799994, 28.807759052000051 ], [ -82.139717497999982, 28.807789713000034 ], [ -82.139796084999944, 28.807805009000049 ], [ -82.139922672999944, 28.807810644000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139922672999944, 28.807810644000028 ], [ -82.140106289999949, 28.807829075000029 ], [ -82.140304126999979, 28.807870918000049 ], [ -82.140461077999987, 28.807939833000034 ], [ -82.140546395999934, 28.80799032300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139922672999944, 28.807810644000028 ], [ -82.139911739999945, 28.807694121000054 ], [ -82.139908209999987, 28.807604023000067 ], [ -82.139913588999946, 28.80754539000003 ], [ -82.139926632999959, 28.807508855000037 ], [ -82.139957140999968, 28.807474223000042 ], [ -82.139989850999939, 28.807454968000059 ], [ -82.140020385999946, 28.80744148000008 ], [ -82.140059648999966, 28.807426062000047 ], [ -82.140415270999938, 28.807346882000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143293277999987, 28.807435763000058 ], [ -82.143292241999973, 28.808326511000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143724619999944, 28.806834724000055 ], [ -82.144529261999935, 28.806830948000027 ], [ -82.144822065999961, 28.806827171000066 ], [ -82.144906566999964, 28.806827081000051 ], [ -82.145002873999942, 28.806837363000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145002873999942, 28.806837363000056 ], [ -82.145140484999956, 28.806873564000057 ], [ -82.145382435999977, 28.806944335000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145002873999942, 28.806837363000056 ], [ -82.14503634, 28.806878868000069 ], [ -82.145075745999975, 28.806953253000074 ], [ -82.145089568999936, 28.807001703000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141115775999936, 28.80364326800003 ], [ -82.141108372999952, 28.80410338400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141108372999952, 28.80410338400003 ], [ -82.141098056999965, 28.804558562000068 ], [ -82.141061971999989, 28.804860834000067 ], [ -82.141054699999984, 28.805140380000068 ], [ -82.141050990999986, 28.805224582000051 ], [ -82.140982387999941, 28.805391368000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139030465999952, 28.797015335000026 ], [ -82.139926629999934, 28.797017195000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139926629999934, 28.797017195000024 ], [ -82.140402760999962, 28.797011544000043 ], [ -82.140831336999952, 28.797001074000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140831336999952, 28.797001074000036 ], [ -82.141733654999939, 28.796991148000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138122730999953, 28.797034092000047 ], [ -82.138123878999977, 28.797460726000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.150583111999936, 28.803694213000028 ], [ -82.151211408999984, 28.803688370000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.151211408999984, 28.803688370000032 ], [ -82.151923364999959, 28.803693055000053 ], [ -82.152645424999946, 28.80368949800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.152645424999946, 28.80368949800004 ], [ -82.153174529999944, 28.803693011000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.150362168999948, 28.800111638000033 ], [ -82.150410878999935, 28.800091336000037 ], [ -82.15047365099997, 28.800062192000041 ], [ -82.150514004999934, 28.800046498000029 ], [ -82.150590601999966, 28.800008474000037 ], [ -82.150664168999981, 28.799947989000032 ], [ -82.150738772999944, 28.799889547000078 ], [ -82.151007175999951, 28.799663022000061 ], [ -82.151068089999967, 28.799615433000042 ], [ -82.15116136499995, 28.799567844000023 ], [ -82.151258446999975, 28.799533580000059 ], [ -82.151357432999987, 28.799501219000035 ], [ -82.151452610999968, 28.799476473000027 ], [ -82.151559210999949, 28.799466955000071 ], [ -82.151669617999971, 28.799461244000042 ], [ -82.151750518999961, 28.799462196000036 ], [ -82.15186711299998, 28.799481232000062 ], [ -82.151971808999974, 28.799514544000033 ], [ -82.152083643999958, 28.79954071800006 ], [ -82.15216692499996, 28.799571651000065 ], [ -82.152259723999975, 28.799631138000052 ], [ -82.152362040999947, 28.799688245000027 ], [ -82.152431044999958, 28.799728695000056 ], [ -82.152571433999981, 28.799821494000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149757091999959, 28.800349564000044 ], [ -82.14985756699997, 28.800293088000046 ], [ -82.149955027999965, 28.800260771000069 ], [ -82.150028128999963, 28.800239219000048 ], [ -82.150171818999979, 28.80020581000008 ], [ -82.150258126999972, 28.800174393000077 ], [ -82.150362168999948, 28.800111638000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145993810999983, 28.797787807000077 ], [ -82.147408535999944, 28.797784020000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147408535999944, 28.797784020000051 ], [ -82.148813041999972, 28.797777980000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148813041999972, 28.797777980000035 ], [ -82.150227755999936, 28.797767418000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153292294999972, 28.796097128000042 ], [ -82.153276119999987, 28.797193350000043 ], [ -82.153144380999947, 28.797417215000053 ], [ -82.152984551999964, 28.797535966000055 ], [ -82.152812022999967, 28.797654730000033 ], [ -82.152728287999935, 28.797706279000067 ], [ -82.152619114999936, 28.797731012000042 ], [ -82.15236015399995, 28.797793944000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147402812999985, 28.797182240000041 ], [ -82.147408535999944, 28.797784020000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148813052999969, 28.79717647700005 ], [ -82.148813041999972, 28.797777980000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.150229444999979, 28.797164570000064 ], [ -82.150227755999936, 28.797767418000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137203721999981, 28.759206667000058 ], [ -82.138231191999978, 28.759205619000056 ], [ -82.13831735499997, 28.75921115500006 ], [ -82.138406698999972, 28.759211064000056 ], [ -82.138505632999966, 28.759222210000075 ], [ -82.13858543799995, 28.759247433000041 ], [ -82.138690782999959, 28.759281068000064 ], [ -82.139495447999934, 28.759699197000032 ], [ -82.139562490999936, 28.759724433000031 ], [ -82.139661452999974, 28.759758072000068 ], [ -82.139763593999987, 28.759780461000048 ], [ -82.139865724999936, 28.759797227000035 ], [ -82.140022094999949, 28.759808312000075 ], [ -82.142772689999958, 28.759822305000057 ], [ -82.145073346999936, 28.759822666000048 ], [ -82.145153104999963, 28.759811333000073 ], [ -82.145223320999946, 28.759822505000045 ], [ -82.145283922999965, 28.759805570000026 ], [ -82.145360491999952, 28.759794240000076 ], [ -82.145430701999942, 28.759802600000057 ], [ -82.145481804999974, 28.759836286000052 ], [ -82.145526549999943, 28.759889662000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125237808999941, 28.773393517000045 ], [ -82.12468776299994, 28.773390696000035 ], [ -82.124608781999939, 28.773451812000076 ], [ -82.124608781999939, 28.773572165000076 ], [ -82.124726260999978, 28.773819531000072 ], [ -82.124820281999973, 28.773982024000077 ], [ -82.124879845999942, 28.774100459000067 ], [ -82.124929963999989, 28.774163791000035 ], [ -82.125005081999973, 28.774210567000068 ], [ -82.125098930999968, 28.774229769000044 ], [ -82.125386701999957, 28.774257059000035 ], [ -82.126287519999948, 28.774319599000023 ], [ -82.126694148999945, 28.774355040000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126694148999945, 28.774355040000046 ], [ -82.126950626999985, 28.774368577000075 ], [ -82.127366637999955, 28.774404008000033 ], [ -82.127848332999974, 28.774442132000047 ], [ -82.127923388999989, 28.77443654800004 ], [ -82.12799217099996, 28.774417195000069 ], [ -82.128060927999968, 28.774375796000072 ], [ -82.128104626999971, 28.77430410900007 ], [ -82.128126383999984, 28.774193865000029 ], [ -82.128147977999959, 28.773948597000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120657505999986, 28.785631798000054 ], [ -82.120712023999943, 28.785638953000046 ], [ -82.121134488999985, 28.78564577800006 ], [ -82.121488801999988, 28.785640658000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998833097999977, 28.926315363000072 ], [ -81.998955508999984, 28.926388595000049 ], [ -81.999060782999948, 28.926453211000023 ], [ -81.999163606999957, 28.926511366000057 ], [ -81.999276225999949, 28.926571674000058 ], [ -81.999386395999977, 28.926629829000035 ], [ -81.999491669999941, 28.926679368000066 ], [ -81.999609185999986, 28.926735370000074 ], [ -81.999714458999961, 28.926782754000044 ], [ -81.999892170999942, 28.926854383000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996798398999942, 28.924627696000073 ], [ -81.99704593499996, 28.924839945000031 ], [ -81.997481703999938, 28.925214725000046 ], [ -81.997751000999983, 28.925445191000051 ], [ -81.998125570999946, 28.925766121000038 ], [ -81.998475660999986, 28.926059051000038 ], [ -81.99856624399996, 28.926127976000032 ], [ -81.998654378999959, 28.926192591000074 ], [ -81.998747411999943, 28.926257208000038 ], [ -81.998833097999977, 28.926315363000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996730668999987, 28.924571122000032 ], [ -81.996798398999942, 28.924627696000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990459462999979, 28.920235545000025 ], [ -81.990465613999959, 28.920236848000059 ], [ -81.990580670999975, 28.920264857000063 ], [ -81.990705521999985, 28.920292866000068 ], [ -81.990818130999969, 28.920325181000067 ], [ -81.991048245999934, 28.92038550500007 ], [ -81.991293046999942, 28.920469522000076 ], [ -81.991625976999956, 28.920598774000041 ], [ -81.991745929999979, 28.92065047400007 ], [ -81.991968698999983, 28.920751719000066 ], [ -81.992184121999969, 28.920863732000043 ], [ -81.992392202999952, 28.920977898000046 ], [ -81.992595385999948, 28.921102834000067 ], [ -81.992796120999969, 28.921242845000052 ], [ -81.992999303999966, 28.921387164000066 ], [ -81.993283270999939, 28.921617641000068 ], [ -81.993567237999969, 28.921867501000065 ], [ -81.993917299999964, 28.922164751000025 ], [ -81.993970225999988, 28.922210849000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976713938999978, 28.920105941000031 ], [ -81.976744129999986, 28.920105946000035 ], [ -81.976984042999959, 28.920103834000031 ], [ -81.977353703999938, 28.920103897000047 ], [ -81.977725810999971, 28.920106112000042 ], [ -81.978225219999956, 28.920104040000069 ], [ -81.978607119999936, 28.920104102000039 ], [ -81.97897433299994, 28.920104160000051 ], [ -81.979346440999961, 28.920104217000073 ], [ -81.979720997999948, 28.920104274000039 ], [ -81.980098001999977, 28.920102176000057 ], [ -81.980597411999952, 28.920100096000056 ], [ -81.980971967999949, 28.920100149000064 ], [ -81.981353868999975, 28.920102356000029 ], [ -81.981845932999988, 28.920100270000034 ], [ -81.982230280999943, 28.920098167000049 ], [ -81.982602390999944, 28.920096061000038 ], [ -81.983106694999947, 28.920098280000047 ], [ -81.983302542, 28.920096150000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983313468999938, 28.919973221000078 ], [ -81.981476149999935, 28.919970326000055 ], [ -81.98043490699996, 28.919976881000025 ], [ -81.979593577999935, 28.919972709000035 ], [ -81.977934258999937, 28.919977756000037 ], [ -81.976711559999956, 28.919977549000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042742763999968, 28.842860969000071 ], [ -82.042789460999984, 28.842777241000078 ], [ -82.04282262299995, 28.842720416000077 ], [ -82.042861306999953, 28.842644111000027 ], [ -82.042892619999975, 28.842575923000027 ], [ -82.042914722999967, 28.842520725000043 ], [ -82.042934516999935, 28.842462688000069 ], [ -82.042952928999966, 28.842403838000052 ], [ -82.042968112999972, 28.842342149000046 ], [ -82.042982830999961, 28.842265852000025 ], [ -82.042992020999975, 28.842196859000069 ], [ -82.042998910999984, 28.842140043000029 ], [ -82.043005802999971, 28.842089314000077 ], [ -82.043010386999981, 28.842028441000025 ], [ -82.043012669999939, 28.841975683000044 ], [ -82.043015869999977, 28.841910752000047 ], [ -82.043014003999986, 28.84185880800004 ], [ -82.043014903999961, 28.841803210000023 ], [ -82.043007960999944, 28.841732195000077 ], [ -82.042996399999936, 28.841638862000025 ], [ -82.042984847999946, 28.841565818000049 ], [ -82.042966374999935, 28.841476544000045 ], [ -82.042940983999983, 28.841375099000061 ], [ -82.042922519999934, 28.841306115000066 ], [ -82.042908669999974, 28.841249306000066 ], [ -82.042892514999949, 28.841194526000038 ], [ -82.042878668999947, 28.841145833000041 ], [ -82.042851431999964, 28.841040735000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037140941999951, 28.859137454000063 ], [ -82.03617795599996, 28.859135797000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001915240999949, 28.869953327000076 ], [ -82.00200552299998, 28.86999701700006 ], [ -82.002020903999949, 28.870006497000077 ], [ -82.002037922999989, 28.870013483000037 ], [ -82.002056059999973, 28.870017761000042 ], [ -82.002074194999977, 28.870019200000058 ], [ -82.003066951999983, 28.87002381800005 ], [ -82.003794522999954, 28.870025716000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001915240999949, 28.869953327000076 ], [ -82.001948195999944, 28.869898481000064 ], [ -82.001964427999951, 28.86986713500005 ], [ -82.001966838999977, 28.869858927000053 ], [ -82.00197656499995, 28.869841720000068 ], [ -82.002009428999941, 28.869773090000024 ], [ -82.002034366999965, 28.869701920000068 ], [ -82.002051130999973, 28.869628918000046 ], [ -82.00205955399997, 28.869554811000057 ], [ -82.002060304999986, 28.869537564000041 ], [ -82.002064459999986, 28.869497025000044 ], [ -82.002077220999979, 28.869449018000068 ], [ -82.002082126999937, 28.869436301000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001507398999934, 28.873730817000023 ], [ -82.001541478999968, 28.873600968000062 ], [ -82.001596180999968, 28.873258293000049 ], [ -82.001660427, 28.87281424400004 ], [ -82.001675666999972, 28.872549437000032 ], [ -82.001677460999986, 28.872504853000066 ], [ -82.001681742999949, 28.872459178000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00097440199994, 28.872465308000073 ], [ -82.001328723999961, 28.872457417000078 ], [ -82.001576192999948, 28.872449633000031 ], [ -82.001586347999989, 28.872450776000051 ], [ -82.001644631999966, 28.872454183000059 ], [ -82.001681742999949, 28.872459178000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002910923999934, 28.873945331000073 ], [ -82.003008564999959, 28.873953419000031 ], [ -82.003208966999978, 28.873959891000027 ], [ -82.003350864999959, 28.873952863000056 ], [ -82.003500705999954, 28.873923705000038 ], [ -82.003786220999984, 28.873861220000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00221778699995, 28.873798454000053 ], [ -82.002224129999945, 28.873804267000025 ], [ -82.002258316999985, 28.873828963000051 ], [ -82.002297319999968, 28.873847313000056 ], [ -82.002339641999981, 28.873858612000049 ], [ -82.002345266999953, 28.873859531000051 ], [ -82.002822037999977, 28.873931986000059 ], [ -82.002910923999934, 28.873945331000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00204006599995, 28.871238213000026 ], [ -82.00358756299994, 28.871243739000079 ], [ -82.003725411999937, 28.871243735000064 ], [ -82.003765681999937, 28.871249188000036 ], [ -82.003796659999978, 28.871256004000031 ], [ -82.003875653999955, 28.871287358000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001715675999947, 28.871236612000075 ], [ -82.00204006599995, 28.871238213000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968330140999967, 28.902157830000078 ], [ -81.968368192999947, 28.902082730000075 ], [ -81.968519069999957, 28.901847404000023 ], [ -81.968709788999945, 28.901584544000059 ], [ -81.968820808999965, 28.901416811000047 ], [ -81.96889482399996, 28.901299148000078 ], [ -81.968971686999964, 28.901171469000076 ], [ -81.969091259999971, 28.900943647000076 ], [ -81.969210834999956, 28.900700800000038 ], [ -81.969313344999989, 28.900440424000067 ], [ -81.969404470999962, 28.900185051000051 ], [ -81.969472824999968, 28.899957216000075 ], [ -81.969529802999944, 28.899711851000063 ], [ -81.969581096999946, 28.899446455000032 ], [ -81.969612468999969, 28.899193574000037 ], [ -81.969632460999946, 28.898938185000077 ], [ -81.969638227999951, 28.898677785000075 ], [ -81.969626935999941, 28.898369808000041 ], [ -81.969612824999956, 28.897974197000053 ], [ -81.969590139, 28.897711288000039 ], [ -81.969561801999987, 28.897313168000039 ], [ -81.969524914999965, 28.896962620000068 ], [ -81.969493689999979, 28.89671723500004 ], [ -81.969448267999951, 28.89636418200007 ], [ -81.969346028999951, 28.89572567700003 ], [ -81.969263645999945, 28.895289988000059 ], [ -81.969192619999944, 28.89493692800005 ], [ -81.969184324999958, 28.894880854000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969026708999934, 28.894906334000041 ], [ -81.969072543999971, 28.895063922000077 ], [ -81.969132552999952, 28.895339559000035 ], [ -81.969152555999983, 28.895434110000053 ], [ -81.969214362999935, 28.895785064000052 ], [ -81.969265262999954, 28.89608153100005 ], [ -81.969305248999945, 28.896334730000035 ], [ -81.969334316999948, 28.896559082000067 ], [ -81.969361568999943, 28.896773818000042 ], [ -81.969390639999972, 28.896991760000049 ], [ -81.969416052999975, 28.897270596000055 ], [ -81.969441470999982, 28.89752218700005 ], [ -81.969452358999945, 28.89765359200004 ], [ -81.969463228999984, 28.897847494000075 ], [ -81.969475914999975, 28.898052613000061 ], [ -81.969486782, 28.898254524000038 ], [ -81.969494002999966, 28.898464450000063 ], [ -81.969501215999969, 28.89871123000006 ], [ -81.969492034999973, 28.898972430000072 ], [ -81.969481071999951, 28.899100625000074 ], [ -81.969471934999945, 28.899209590000055 ], [ -81.969460977999972, 28.899315350000052 ], [ -81.969435437999948, 28.89947238700006 ], [ -81.969411727999955, 28.899597373000063 ], [ -81.969386192999934, 28.899738385000035 ], [ -81.969340613999975, 28.89992105500005 ], [ -81.96929321999994, 28.90008129000006 ], [ -81.969251296999971, 28.90021428600005 ], [ -81.969178394999972, 28.900425795000046 ], [ -81.969121903999962, 28.900558786000033 ], [ -81.969027145999974, 28.900773495000067 ], [ -81.968974304999961, 28.90088245000004 ], [ -81.96891235399994, 28.901001019000034 ], [ -81.968788459999985, 28.901218925000023 ], [ -81.968649994999964, 28.901438430000042 ], [ -81.968425911999987, 28.90175085900006 ], [ -81.968281984999976, 28.901968759000056 ], [ -81.968220034999945, 28.90207771300004 ], [ -81.96821597099995, 28.902085963000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978901270999984, 28.893037216000039 ], [ -81.97901580599995, 28.893067474000077 ], [ -81.979195786999981, 28.893110702000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978906040999959, 28.89373273800004 ], [ -81.978909328999976, 28.893653538000024 ], [ -81.978912658999946, 28.893371299000023 ], [ -81.978916873999935, 28.89310634900005 ], [ -81.978901270999984, 28.893037216000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976836420999973, 28.892439277000051 ], [ -81.97692804999997, 28.892446493000079 ], [ -81.977168688999939, 28.892502742000033 ], [ -81.977378, 28.892563210000048 ], [ -81.977619254, 28.892648924000071 ], [ -81.977854116999936, 28.892737528000055 ], [ -81.978093448999971, 28.892820891000042 ], [ -81.978307334999954, 28.892885923000051 ], [ -81.978585622999958, 28.89295676200004 ], [ -81.978846357999942, 28.893024527000023 ], [ -81.978901270999984, 28.893037216000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975209340999982, 28.88879572500008 ], [ -81.975374292999959, 28.888851955000064 ], [ -81.975604859999976, 28.88892665700007 ], [ -81.975797598999975, 28.888969491000069 ], [ -81.975887780999983, 28.888978497000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977196393999975, 28.888171139000065 ], [ -81.977411138999969, 28.888128010000059 ], [ -81.977726933999975, 28.888086303000023 ], [ -81.978008367999962, 28.888057548000063 ], [ -81.978300883999964, 28.888043370000048 ], [ -81.978693140999951, 28.888043432000075 ], [ -81.978986502999987, 28.88804585400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970078432999969, 28.886327032000054 ], [ -81.970118572999979, 28.886843801000055 ], [ -81.970152280999969, 28.887364176000062 ], [ -81.970166991999974, 28.887422500000071 ], [ -81.970184160999963, 28.887458145000039 ], [ -81.970209921999981, 28.887485150000032 ], [ -81.97023691399994, 28.887507836000054 ], [ -81.970265133999987, 28.88752620200006 ], [ -81.970293352999988, 28.887541329000044 ], [ -81.97033477399998, 28.887554359000035 ], [ -81.97037441699996, 28.887559604000046 ], [ -81.970539254999949, 28.88756582700006 ], [ -81.970654915999944, 28.887570437000079 ], [ -81.970697061999942, 28.887575144000039 ], [ -81.970729491999975, 28.887583261000032 ], [ -81.970851340999957, 28.887627775000055 ], [ -81.971066545999975, 28.887715142000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075319204999971, 28.614280584000028 ], [ -82.07521230499998, 28.614243593000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075343874999987, 28.615909792000025 ], [ -82.07533641699996, 28.615222533000065 ], [ -82.075319204999971, 28.614280584000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07521230499998, 28.614243593000026 ], [ -82.074848971999984, 28.614115490000074 ], [ -82.074714526999969, 28.614066726000033 ], [ -82.074541336999971, 28.614011355000059 ], [ -82.074411827999938, 28.61397121300007 ], [ -82.074264214999971, 28.613934245000053 ], [ -82.074128052999981, 28.613898393000056 ], [ -82.073989346999952, 28.613864788000058 ], [ -82.073851918999935, 28.613836794000065 ], [ -82.073739941999975, 28.613815524000074 ], [ -82.073568159, 28.613785304000032 ], [ -82.073432008999987, 28.613768536000066 ], [ -82.073271686999988, 28.613748415000032 ], [ -82.073162258999957, 28.613741404000052 ], [ -82.073032584999964, 28.61373031100004 ], [ -82.072905243999969, 28.613722789000064 ], [ -82.072754268999972, 28.613716507000049 ], [ -82.07261387899996, 28.613713964000056 ], [ -82.072466470999984, 28.613711079000041 ], [ -82.072159699999986, 28.613711242000079 ], [ -82.071565496999938, 28.613708908000035 ], [ -82.071265232999963, 28.613707944000055 ], [ -82.070956062999983, 28.613708106000047 ], [ -82.070623990999934, 28.613708279000036 ], [ -82.070182498999941, 28.61370626300004 ], [ -82.069436715999984, 28.613707083000065 ], [ -82.067643530999987, 28.613707990000023 ], [ -82.067008096999984, 28.61370450000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067008096999984, 28.61370450000004 ], [ -82.067006785, 28.613643874000047 ], [ -82.06700931599994, 28.613621418000037 ], [ -82.067020753999941, 28.613601204000076 ], [ -82.067039826999974, 28.613583231000064 ], [ -82.067062711999938, 28.61355515200006 ], [ -82.06708432299996, 28.613528197000051 ], [ -82.067094487999952, 28.61350685900004 ], [ -82.06709935799995, 28.613474301000053 ], [ -82.067095470999959, 28.612237536000066 ], [ -82.067075388999967, 28.612148957000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067008096999984, 28.61370450000004 ], [ -82.066270159999988, 28.613704862000077 ], [ -82.065340104999962, 28.613705314000072 ], [ -82.065151496999988, 28.613708321000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.089731767999979, 28.61604138000007 ], [ -82.08953397199997, 28.616003286000023 ], [ -82.089279665999982, 28.615953595000065 ], [ -82.088673363999987, 28.615835744000037 ], [ -82.088519533999943, 28.615809453000054 ], [ -82.088275968999938, 28.615764372000058 ], [ -82.088109322999969, 28.615738090000036 ], [ -82.087938408999946, 28.615715581000075 ], [ -82.087801680999974, 28.615704359000063 ], [ -82.087669227999982, 28.615693135000072 ], [ -82.087553869999965, 28.615689441000029 ], [ -82.087425690999964, 28.615681983000059 ], [ -82.087306814999977, 28.615681280000047 ], [ -82.087198667999985, 28.615682473000049 ], [ -82.087071434999984, 28.61568367700005 ], [ -82.086959473999968, 28.61568711700005 ], [ -82.086839879999957, 28.615692808000063 ], [ -82.08669611199997, 28.615699637000034 ], [ -82.086554144, 28.615712702000053 ], [ -82.086370446999979, 28.61573166900007 ], [ -82.086062863999985, 28.615769565000051 ], [ -82.085528860999943, 28.615830224000035 ], [ -82.084722076999981, 28.615923732000056 ], [ -82.084314526999947, 28.61596946800006 ], [ -82.084172040999988, 28.615986397000029 ], [ -82.08394627399997, 28.61600866200007 ], [ -82.083792480999989, 28.61602685400004 ], [ -82.083631844999957, 28.616036001000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125861341999951, 28.791429782000023 ], [ -82.126553436999984, 28.791731321000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120465786999944, 28.790731799000071 ], [ -82.120572461999984, 28.790725148000035 ], [ -82.120671681999966, 28.790709761000073 ], [ -82.120783270999937, 28.790663765000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119293449999986, 28.789974053000037 ], [ -82.119551189999981, 28.789640624000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104054898999948, 28.754764888000068 ], [ -82.104075482999974, 28.754344503000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11849701899996, 28.768091016000028 ], [ -82.118711039999937, 28.768090828000027 ], [ -82.118783312999938, 28.76810443200003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.072897383999987, 28.735982225000043 ], [ -82.071233359999951, 28.735951229000079 ], [ -82.071179103999953, 28.735957634000044 ], [ -82.071127842999942, 28.73597396200006 ], [ -82.071089117999975, 28.736005930000033 ], [ -82.071071644999961, 28.736045599000079 ], [ -82.071069192999971, 28.736115006000034 ], [ -82.071069154999975, 28.736219151000057 ], [ -82.071067279999966, 28.73642318900005 ], [ -82.071050688999946, 28.736476359000051 ], [ -82.071023938999986, 28.73652523800007 ], [ -82.070988248999981, 28.736560118000057 ], [ -82.070938270999989, 28.736588787000073 ], [ -82.070716503999961, 28.736592354000038 ], [ -82.070614360999969, 28.736596661000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070569144, 28.736719518000029 ], [ -82.070513374999962, 28.73670247900003 ], [ -82.070453366999971, 28.736691011000062 ], [ -82.070182499999987, 28.736697274000051 ], [ -82.069480986999963, 28.73666498800003 ], [ -82.069167234999952, 28.736666696000043 ], [ -82.068871133999949, 28.736655118000044 ], [ -82.068508503999965, 28.73665823500005 ], [ -82.068308029999969, 28.736595824000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112230428999965, 28.664169111000035 ], [ -82.112146853999946, 28.664902565000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087952413999972, 28.653868059000047 ], [ -82.087911591999955, 28.652835300000049 ], [ -82.087910441999952, 28.651457079000068 ], [ -82.087982758999942, 28.651346226000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971972147999963, 28.685321417000068 ], [ -81.971978307999962, 28.682567340000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06168586299998, 28.657920087000036 ], [ -82.06166092899997, 28.654843041000049 ], [ -82.061649349999982, 28.654115046000072 ], [ -82.061649222999961, 28.654108374000032 ], [ -82.061653411999941, 28.654069455000069 ], [ -82.061665876999939, 28.654031940000039 ], [ -82.061686165999959, 28.653997184000048 ], [ -82.061713542999939, 28.653966442000069 ], [ -82.061747022999953, 28.653940826000053 ], [ -82.06178539299998, 28.65392126200004 ], [ -82.061827266999956, 28.653908457000057 ], [ -82.06182767599995, 28.653908369000078 ], [ -82.061856191999937, 28.65390829200004 ], [ -82.062070050999978, 28.653911808000032 ], [ -82.062283598999954, 28.653922547000036 ], [ -82.062355593999939, 28.653927802000055 ], [ -82.062381370999958, 28.653933616000074 ], [ -82.062411674999964, 28.653935940000054 ], [ -82.062441975999945, 28.653933588000029 ], [ -82.062471350999942, 28.653926631000047 ], [ -82.062498912999956, 28.653915278000056 ], [ -82.062523818999978, 28.653899878000061 ], [ -82.062545316999945, 28.653880895000043 ], [ -82.062562749999984, 28.653858909000064 ], [ -82.062575591999973, 28.653834587000063 ], [ -82.062583447999941, 28.653808666000032 ], [ -82.062586001999989, 28.653786687000036 ], [ -82.06258508999997, 28.653728975000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061359675999938, 28.644222275000061 ], [ -82.06136044699997, 28.644811556000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06136044699997, 28.644811556000036 ], [ -82.061360351999951, 28.645383203000051 ], [ -82.061360524999941, 28.645681497000055 ], [ -82.061369597999942, 28.645813004000047 ], [ -82.061382500999969, 28.645899917000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061382500999969, 28.645899917000065 ], [ -82.061397235999948, 28.645947526000043 ], [ -82.061465852999959, 28.646076488000062 ], [ -82.061556168999971, 28.64619271600003 ], [ -82.061639609999986, 28.646273928000028 ], [ -82.061716910999962, 28.646353253000029 ], [ -82.061772646999941, 28.646430699000064 ], [ -82.061806961999935, 28.646504375000063 ], [ -82.061831708999989, 28.646580197000048 ], [ -82.061841309999977, 28.646636627000078 ], [ -82.061843502999977, 28.646723544000054 ], [ -82.061827296999979, 28.646846245000063 ], [ -82.061794360999954, 28.646933305000061 ], [ -82.061751570999945, 28.647018353000078 ], [ -82.061685790999945, 28.647104293000041 ], [ -82.061565346999942, 28.647238380000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061565346999942, 28.647238380000033 ], [ -82.061416349999945, 28.647382555000036 ], [ -82.061306740999953, 28.647487411000043 ], [ -82.061197129999982, 28.647588235000057 ], [ -82.061072098999944, 28.647690578000038 ], [ -82.060984733999987, 28.647742013000027 ], [ -82.060872809999978, 28.647793963000026 ], [ -82.060786003999965, 28.647822219000034 ], [ -82.060680916999956, 28.647846452000067 ], [ -82.060568399999966, 28.647860107000042 ], [ -82.060484435999967, 28.647862664000058 ], [ -82.060383332999947, 28.647861701000068 ], [ -82.06029250499995, 28.647849649000079 ], [ -82.060182820999955, 28.647826519000034 ], [ -82.060076558999981, 28.647792303000074 ], [ -82.059994287999984, 28.647759084000029 ], [ -82.059891440999934, 28.647703198000045 ], [ -82.059802298999955, 28.647639749000064 ], [ -82.059738863999939, 28.647585359000061 ], [ -82.059670854, 28.647516358000075 ], [ -82.059608546999982, 28.647435765000068 ], [ -82.05955537799997, 28.647351137000044 ], [ -82.059517630999949, 28.647264992000032 ], [ -82.059486736999986, 28.647178843000063 ], [ -82.059469551999939, 28.647089664000077 ], [ -82.05946030299998, 28.646895676000042 ], [ -82.059463306999987, 28.645893215000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060193582999943, 28.645664259000057 ], [ -82.060131493999961, 28.645715304000078 ], [ -82.060080109999944, 28.645753118000073 ], [ -82.059979468999984, 28.645807959000024 ], [ -82.059923792999939, 28.645832547000055 ], [ -82.059874535999938, 28.645847685000035 ], [ -82.059765314999936, 28.645877966000057 ], [ -82.059664649999945, 28.645889348000026 ], [ -82.059570404999988, 28.645893168000043 ], [ -82.059463306999987, 28.645893215000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137333529999978, 28.641195544000027 ], [ -82.137328868999987, 28.640966522000042 ], [ -82.137328495999952, 28.640679759000079 ], [ -82.137345652999954, 28.640452641000024 ], [ -82.137360422999961, 28.64006770900005 ], [ -82.137359983999943, 28.639730907000057 ], [ -82.137357598999984, 28.639575017000027 ], [ -82.137346603999958, 28.639507668000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125810187999946, 28.656860460000075 ], [ -82.127003404999982, 28.656852788000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131335853999985, 28.643186956000079 ], [ -82.132175268999958, 28.643186140000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158660529999963, 28.648734595000064 ], [ -82.160751880999953, 28.648726285000066 ], [ -82.161534042999961, 28.648713689000033 ], [ -82.161855225999943, 28.648713305000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252308736999964, 28.63133356700007 ], [ -82.252460019999944, 28.63138845900005 ], [ -82.25290653899998, 28.631611577000058 ], [ -82.253034871999944, 28.631707615000039 ], [ -82.253201306999983, 28.631864278000023 ], [ -82.253329784999949, 28.632021012000052 ], [ -82.253608405999955, 28.63246420400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249019505999968, 28.665880702000038 ], [ -82.249755053999934, 28.665885507000041 ], [ -82.25036255699996, 28.665880279000078 ], [ -82.25134944499996, 28.665866134000055 ], [ -82.252178061999984, 28.665856382000072 ], [ -82.25222926899994, 28.665856287000054 ], [ -82.252273543999934, 28.665876732000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185665829999948, 28.648775408000063 ], [ -82.185731808999947, 28.648760762000052 ], [ -82.185929194999972, 28.64872168200003 ], [ -82.186211233999984, 28.648689300000058 ], [ -82.186674681999989, 28.648692216000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.217699178999965, 28.632615133000058 ], [ -82.218500184999982, 28.632678411000029 ], [ -82.218715273999976, 28.632672815000035 ], [ -82.218898270999944, 28.632659338000053 ], [ -82.219084983999949, 28.632635968000045 ], [ -82.219241860999944, 28.63263571400006 ], [ -82.219413740999983, 28.632665096000039 ], [ -82.21949594299997, 28.632678143000078 ], [ -82.219581844999936, 28.632674709000071 ], [ -82.219652758999985, 28.632648231000076 ], [ -82.219731163999938, 28.632631626000034 ], [ -82.219843171999969, 28.632608376000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.219843171999969, 28.632608376000064 ], [ -82.220037702999946, 28.632626074000029 ], [ -82.220501423999963, 28.632635290000053 ], [ -82.220953714999951, 28.632674433000034 ], [ -82.222491508999951, 28.632661947000031 ], [ -82.223794962999989, 28.632658836000076 ], [ -82.223983400999941, 28.632670434000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.223983400999941, 28.632670434000033 ], [ -82.22422183499998, 28.632662371000038 ], [ -82.224939494999944, 28.632654956000067 ], [ -82.225747942999988, 28.632656561000033 ], [ -82.225896788999989, 28.632661619000032 ], [ -82.225959094999951, 28.632655728000032 ], [ -82.226001681999946, 28.632632507000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.217792560999953, 28.62899658200007 ], [ -82.217923301999974, 28.629002962000072 ], [ -82.219914100999972, 28.629006337000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06379932599998, 28.776045882000062 ], [ -82.064381734999984, 28.777384945000051 ], [ -82.064646890999938, 28.777974295000035 ], [ -82.064928622999957, 28.778603211000075 ], [ -82.065260097999953, 28.779375826000035 ], [ -82.065529989999959, 28.779963089000034 ], [ -82.065904074999935, 28.780806504000054 ], [ -82.066533859999936, 28.782199690000027 ], [ -82.067012152999951, 28.783295085000077 ], [ -82.067229966999946, 28.78375531000006 ], [ -82.067310473999953, 28.783940652000069 ], [ -82.067390978999981, 28.784119746000044 ], [ -82.067440708999982, 28.784240531000023 ], [ -82.067490429999964, 28.784350904000064 ], [ -82.067549625999959, 28.784486266000044 ], [ -82.067604070999948, 28.784584138000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055914291999954, 28.855184983000072 ], [ -82.055911974999958, 28.856054086000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055911974999958, 28.856054086000029 ], [ -82.055909570999972, 28.85675916200006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055909570999972, 28.85675916200006 ], [ -82.055907174999959, 28.85747647900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054863584999964, 28.856049621000068 ], [ -82.054861175999974, 28.856759593000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054861175999974, 28.856759593000049 ], [ -82.054862523999986, 28.857476051000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054862523999986, 28.857476051000049 ], [ -82.054862898999943, 28.858189081000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031540660999951, 28.881209158000047 ], [ -82.031567129999985, 28.881277533000059 ], [ -82.031603058999963, 28.881360478000033 ], [ -82.031643476999989, 28.881443421000029 ], [ -82.031688387999964, 28.881540189000077 ], [ -82.031733305999978, 28.881666583000026 ], [ -82.031755768999972, 28.88173768200005 ], [ -82.03176925799994, 28.881818656000064 ], [ -82.031782753999948, 28.881923333000032 ], [ -82.031782779999958, 28.882010236000042 ], [ -82.031785093999986, 28.882237370000041 ], [ -82.031781059999958, 28.88372855700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015953413999966, 28.856972739000071 ], [ -82.015933762999964, 28.858192183000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011371549999978, 28.766907557000025 ], [ -82.011328467999988, 28.766873361000023 ], [ -82.011274500999946, 28.766837856000052 ], [ -82.011217443999954, 28.766807507000067 ], [ -82.011171918999935, 28.766787782000051 ], [ -82.011115053999958, 28.766768060000061 ], [ -82.011055176999946, 28.766752636000035 ], [ -82.010981708999964, 28.766740597000023 ], [ -82.010900806999985, 28.766735632000064 ], [ -82.01083601199997, 28.766737773000045 ], [ -82.010741801999984, 28.766750745000024 ], [ -82.010650943999963, 28.766775042000063 ], [ -82.010576636999986, 28.766804604000072 ], [ -82.010513663999973, 28.766837692000024 ], [ -82.010431345999962, 28.766894977000049 ], [ -82.010214562999977, 28.767082938000044 ], [ -82.009842077999963, 28.76740630200004 ], [ -82.009522497999967, 28.767683735000048 ], [ -82.009127647999946, 28.768026505000023 ], [ -82.008682883999938, 28.76841259400004 ], [ -82.008268677, 28.768772151000064 ], [ -82.00807720499995, 28.76893836000005 ], [ -82.008021142999951, 28.768986501000029 ], [ -82.007965096999953, 28.769047172000057 ], [ -82.007925117999946, 28.769102982000049 ], [ -82.007888502999947, 28.769170507000069 ], [ -82.007864840999957, 28.769231430000048 ], [ -82.007848988999967, 28.769292845000052 ], [ -82.007839621999949, 28.769370104000075 ], [ -82.007841820999943, 28.769449418000079 ], [ -82.007857825999963, 28.769535190000056 ], [ -82.007884198999989, 28.769610110000031 ], [ -82.00791415599997, 28.769669209000028 ], [ -82.007951786999968, 28.769725970000025 ], [ -82.007986552999967, 28.769770766000079 ], [ -82.008027896999977, 28.769810073000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008213628999954, 28.866397819000042 ], [ -82.008212886999956, 28.866699658000073 ], [ -82.008211661999951, 28.867198123000037 ], [ -82.008207236999965, 28.868999608000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057878839999944, 28.857478095000033 ], [ -82.056980604999978, 28.857473582000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056980604999978, 28.857473582000068 ], [ -82.055907174999959, 28.85747647900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.226001681999946, 28.632632507000039 ], [ -82.226027853999938, 28.632600633000038 ], [ -82.226047426999969, 28.632551407000051 ], [ -82.226053824999951, 28.632476161000056 ], [ -82.226045861999978, 28.632385207000027 ], [ -82.226020437999978, 28.632201314000042 ], [ -82.226049941999975, 28.631383870000036 ], [ -82.226092828999981, 28.630780383000058 ], [ -82.226090174999968, 28.629541882000069 ], [ -82.226096860999974, 28.628497766000066 ], [ -82.22610607699994, 28.627779587000077 ], [ -82.226088773999948, 28.627357135000068 ], [ -82.226081403999956, 28.627160733000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.223958326999934, 28.627151853000044 ], [ -82.224239592999936, 28.627182401000027 ], [ -82.224496239999951, 28.627206787000034 ], [ -82.224759816999949, 28.627184640000053 ], [ -82.225121833999935, 28.627171635000025 ], [ -82.225494413999968, 28.62716791400004 ], [ -82.225831839999955, 28.627161149000074 ], [ -82.226081403999956, 28.627160733000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.199296527999934, 28.675127953000072 ], [ -82.199284347999935, 28.674801670000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189698214999964, 28.584892154000045 ], [ -82.189648901999988, 28.584793434000062 ], [ -82.189615985999978, 28.584704329000033 ], [ -82.189583008999989, 28.584581492000041 ], [ -82.189582861999952, 28.584499570000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189582861999952, 28.584499570000048 ], [ -82.189587183999947, 28.583865871000057 ], [ -82.189585270999942, 28.582798954000054 ], [ -82.189588304999972, 28.581751066000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203957043999935, 28.603497482000023 ], [ -82.204619391999984, 28.60318785000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.204619391999984, 28.60318785000004 ], [ -82.205810350999968, 28.602609038000026 ], [ -82.206013893999966, 28.602504062000037 ], [ -82.206193161999977, 28.602425960000062 ], [ -82.206329892999975, 28.602366710000069 ], [ -82.206451437999988, 28.602318217000061 ], [ -82.206548687999941, 28.602285863000077 ], [ -82.206658089999962, 28.602248124000027 ], [ -82.206794855999988, 28.602207659000044 ], [ -82.206904268999949, 28.602175288000069 ], [ -82.207074486999943, 28.602134771000067 ], [ -82.207296373999952, 28.602080756000078 ], [ -82.207424026999945, 28.602045672000031 ], [ -82.207506086999956, 28.60202139200004 ], [ -82.207569904999957, 28.601999825000064 ], [ -82.207627619999982, 28.601967531000071 ], [ -82.207667073999971, 28.601927215000046 ], [ -82.207703459999948, 28.601873483000077 ], [ -82.207718575999934, 28.601827836000041 ], [ -82.207718459999967, 28.601768793000076 ], [ -82.207716092999988, 28.601695534000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158846510999979, 28.570253165000054 ], [ -82.159445581999989, 28.57025587000004 ], [ -82.160274030999972, 28.570269863000078 ], [ -82.160516156999961, 28.570283999000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.160516156999961, 28.570283999000026 ], [ -82.160664040999961, 28.570282233000057 ], [ -82.161102457999959, 28.57026888200005 ], [ -82.161414961999981, 28.570285618000071 ], [ -82.161623275999943, 28.570283231000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181779544999984, 28.592414345000066 ], [ -82.181790709999973, 28.592422941000052 ], [ -82.18182139399994, 28.592436431000067 ], [ -82.181850686999951, 28.592449923000061 ], [ -82.181888337999965, 28.592462174000048 ], [ -82.181930169999987, 28.592473189000032 ], [ -82.181969203999984, 28.59247928700006 ], [ -82.182017987999984, 28.592481681000038 ], [ -82.182154573999981, 28.592482729000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189837816999955, 28.592520360000037 ], [ -82.189890080999987, 28.59252028700007 ], [ -82.189937738999959, 28.592521006000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023880582999936, 28.619260182000062 ], [ -82.023832538999955, 28.619135821000043 ], [ -82.023771304999968, 28.618980874000044 ], [ -82.023731347999956, 28.618776617000037 ], [ -82.023733872999969, 28.618173220000074 ], [ -82.023733142999959, 28.617598344000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02424855299995, 28.620593373000077 ], [ -82.024215320999986, 28.620499193000057 ], [ -82.02420269199996, 28.620448202000034 ], [ -82.024197329999936, 28.620267419000072 ], [ -82.024191963999954, 28.620074895000073 ], [ -82.024175974999935, 28.61996689700004 ], [ -82.024098766999941, 28.619779083000026 ], [ -82.023997601999952, 28.619541970000057 ], [ -82.023880582999936, 28.619260182000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024518813999975, 28.62132856900007 ], [ -82.024463624999953, 28.621175988000061 ], [ -82.024378422999973, 28.62094826200007 ], [ -82.02424855299995, 28.620593373000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027369843999963, 28.625071354000056 ], [ -82.027335594999954, 28.624666686000069 ], [ -82.02729827099995, 28.624399039000025 ], [ -82.027308862999973, 28.624197122000055 ], [ -82.027420551999967, 28.623929446000034 ], [ -82.027502992999985, 28.623741601000063 ], [ -82.027572133999968, 28.623581933000025 ], [ -82.027635961999977, 28.623448093000036 ], [ -82.027677992999941, 28.623403382000049 ], [ -82.027739290999989, 28.623367307000024 ], [ -82.027807405999965, 28.62335226600004 ], [ -82.027892555999983, 28.623355254000046 ], [ -82.028104259999964, 28.623363475000076 ], [ -82.028293189999943, 28.623382217000028 ], [ -82.028366002999974, 28.623418265000055 ], [ -82.028415613999982, 28.623464368000043 ], [ -82.028511433999938, 28.623562957000047 ], [ -82.028563598999938, 28.623604549000049 ], [ -82.028625871999964, 28.623635715000034 ], [ -82.028710066999963, 28.623643587000061 ], [ -82.028812137999978, 28.623638024000059 ], [ -82.028987753999957, 28.623621552000031 ], [ -82.029067681999948, 28.623598431000062 ], [ -82.029128766999975, 28.623562825000079 ], [ -82.029190275999952, 28.623520269000039 ], [ -82.029235171999971, 28.623447757000065 ], [ -82.029261760999987, 28.623372997000047 ], [ -82.029269719999945, 28.623290445000066 ], [ -82.029229746999988, 28.623072103000027 ], [ -82.029149806999953, 28.622670639000034 ], [ -82.029056552999975, 28.622219873000063 ], [ -82.028997935999939, 28.62193579500007 ], [ -82.02897388599996, 28.621878250000066 ], [ -82.028936702999943, 28.621818416000053 ], [ -82.028803616999937, 28.621668182000064 ], [ -82.028713118999974, 28.621560201000079 ], [ -82.028657212999974, 28.621454560000075 ], [ -82.028627908999965, 28.621330130000047 ], [ -82.028603159999989, 28.621282089000033 ], [ -82.02854320199998, 28.621226805000049 ], [ -82.028428305999967, 28.621186954000052 ], [ -82.02817552199997, 28.621179963000031 ], [ -82.027906776999941, 28.621182367000074 ], [ -82.027659315999983, 28.621180069000047 ], [ -82.027573192999967, 28.621195751000073 ], [ -82.027504998999973, 28.621229405000065 ], [ -82.027447877999975, 28.62128473100006 ], [ -82.027419881999947, 28.621351510000068 ], [ -82.027423392999935, 28.621421776000034 ], [ -82.027446533999978, 28.621515854000052 ], [ -82.027445231999934, 28.621582853000064 ], [ -82.027420724999956, 28.621642962000067 ], [ -82.027223109999966, 28.621863381000026 ], [ -82.027068820999943, 28.622023066000054 ], [ -82.02694379199994, 28.622149874000058 ], [ -82.026848043999962, 28.622321286000044 ], [ -82.026731028999961, 28.622572528000035 ], [ -82.026635286999976, 28.622772114000043 ], [ -82.026603607999959, 28.622838010000066 ], [ -82.02656613299996, 28.622884824000039 ], [ -82.026379911999982, 28.623058600000036 ], [ -82.026225613999941, 28.623192458000062 ], [ -82.026004800999942, 28.623370936000072 ], [ -82.025842521999948, 28.623521229000062 ], [ -82.025696198999981, 28.623629258000051 ], [ -82.025644687999943, 28.623653216000037 ], [ -82.025571145999947, 28.623671544000047 ], [ -82.02551662999997, 28.623677283000063 ], [ -82.025443420999977, 28.623669221000057 ], [ -82.025374934999945, 28.623650863000023 ], [ -82.025306806999936, 28.623614813000074 ], [ -82.025148004999949, 28.62344623000007 ], [ -82.024924424999938, 28.623178616000075 ], [ -82.024778033999951, 28.623000208000065 ], [ -82.024734442999943, 28.622936937000077 ], [ -82.024712631999989, 28.622879239000042 ], [ -82.024701719999939, 28.62282394500005 ], [ -82.024700808999967, 28.622749001000045 ], [ -82.024756606999972, 28.622403858000041 ], [ -82.024785823999935, 28.622185503000026 ], [ -82.024791468999979, 28.622107478000032 ], [ -82.024783129999946, 28.622039937000068 ], [ -82.024703252999984, 28.62182629800003 ], [ -82.024518813999975, 28.62132856900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025735100999952, 28.625682339000036 ], [ -82.025951764999945, 28.625843379000059 ], [ -82.026183421999974, 28.626023649000047 ], [ -82.026401451999959, 28.62619430500007 ], [ -82.02657315099998, 28.626330108000047 ], [ -82.026744850999989, 28.626462305000075 ], [ -82.026870219999978, 28.626562054000033 ], [ -82.026953342999946, 28.626624546000073 ], [ -82.027028286999951, 28.626662999000075 ], [ -82.027111401999946, 28.626684619000059 ], [ -82.027197233999971, 28.626687007000044 ], [ -82.027280338999958, 28.626671362000025 ], [ -82.027353902999948, 28.626642498000024 ], [ -82.027479222999943, 28.626552315000026 ], [ -82.027746202999936, 28.626339490000078 ], [ -82.027889227999935, 28.626226463000023 ], [ -82.02798321399996, 28.626149509000072 ], [ -82.02803496699994, 28.626076171000079 ], [ -82.028067642999986, 28.625990816000069 ], [ -82.028071711999985, 28.625921093000045 ], [ -82.028056704999983, 28.625846566000064 ], [ -82.028013085999987, 28.625767236000058 ], [ -82.027925866999965, 28.625674693000065 ], [ -82.027686018999987, 28.625439132000054 ], [ -82.027514312999983, 28.625272075000055 ], [ -82.02743935999996, 28.625197560000061 ], [ -82.027388933999987, 28.62513145500003 ], [ -82.027369843999963, 28.625071354000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02424855299995, 28.620593373000077 ], [ -82.024780153999984, 28.620445458000063 ], [ -82.024870581999949, 28.620420586000023 ], [ -82.024949154999945, 28.62041795600004 ], [ -82.025045526999975, 28.62044540900007 ], [ -82.025149312999986, 28.620484634000036 ], [ -82.02522818999995, 28.620513660000029 ], [ -82.025306471999954, 28.620530390000056 ], [ -82.025394236999944, 28.62052200100004 ], [ -82.025463019999961, 28.620498964000035 ], [ -82.025508079999952, 28.620461282000065 ], [ -82.025540684999953, 28.620420462000027 ], [ -82.025616250999974, 28.620241232000069 ], [ -82.025662180999973, 28.620124799000052 ], [ -82.025685889999977, 28.620074039000031 ], [ -82.025728871999945, 28.620034525000051 ], [ -82.025790240999982, 28.620000763000064 ], [ -82.025868512999978, 28.619979818000047 ], [ -82.025991256999987, 28.619946829000071 ], [ -82.026102438999942, 28.619918029000075 ], [ -82.026203242999941, 28.619887922000032 ], [ -82.02628032399997, 28.619840814000042 ], [ -82.026347019999946, 28.619772777000037 ], [ -82.026388509999947, 28.619687740000074 ], [ -82.02640033199998, 28.619538610000063 ], [ -82.026401719999967, 28.619159249000063 ], [ -82.026397241999973, 28.619040208000058 ], [ -82.026366088999964, 28.618957803000058 ], [ -82.026327528999957, 28.618896327000073 ], [ -82.026253388999976, 28.618840092000028 ], [ -82.026168875999986, 28.618798247000029 ], [ -82.026100676999988, 28.618783870000073 ], [ -82.025893124999982, 28.61877998500006 ], [ -82.02564702799998, 28.61877480000004 ], [ -82.025561036999989, 28.618753886000036 ], [ -82.025486900999965, 28.618715963000056 ], [ -82.025426105999941, 28.618661033000024 ], [ -82.02537271999995, 28.618594328000029 ], [ -82.025344521999955, 28.618462211000065 ], [ -82.025341460999982, 28.618064537000066 ], [ -82.025334001999965, 28.617873549000024 ], [ -82.025296914999956, 28.617768905000048 ], [ -82.025221285999976, 28.617679965000036 ], [ -82.025124912999956, 28.617627657000071 ], [ -82.025004825999986, 28.617605441000023 ], [ -82.024623823999946, 28.617601586000035 ], [ -82.024063440999953, 28.617596455000069 ], [ -82.023733142999959, 28.617598344000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048481566999953, 28.609476900000061 ], [ -82.048452758999986, 28.609262717000036 ], [ -82.048416176999979, 28.609165998000037 ], [ -82.048356070999944, 28.608995587000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050598728999944, 28.609991915000023 ], [ -82.050594372999967, 28.610081220000041 ], [ -82.050597104999952, 28.610133785000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060349935999966, 28.755099468000026 ], [ -82.060248815999955, 28.75481684500005 ], [ -82.060034242999961, 28.754223847000048 ], [ -82.059891212999958, 28.753861140000026 ], [ -82.059727178999935, 28.75349103700006 ], [ -82.059501902999955, 28.752999099000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03369547799997, 28.561890881000068 ], [ -82.033544770999981, 28.561501536000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024809889999972, 28.568166916000052 ], [ -82.024802675999979, 28.568071681000049 ], [ -82.024842191999937, 28.567906596000057 ], [ -82.024935625999944, 28.567649438000046 ], [ -82.02497154699995, 28.567487528000072 ], [ -82.025003873999935, 28.567328793000058 ], [ -82.024992192999946, 28.567202130000055 ], [ -82.024992058999942, 28.566635278000035 ], [ -82.024989706999975, 28.56641991500004 ], [ -82.02498275499994, 28.566214711000043 ], [ -82.024957320999988, 28.565716943000041 ], [ -82.024943374999964, 28.565133840000044 ], [ -82.02495018999997, 28.564757968000038 ], [ -82.024911030999988, 28.564599500000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017818025999986, 28.56678753500006 ], [ -82.016981473999977, 28.567046750000031 ], [ -82.014412917999948, 28.567832013000043 ], [ -82.012437078999938, 28.568442737000055 ], [ -82.010612461999983, 28.569002595000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062981816999979, 28.62097327500004 ], [ -82.064006077999977, 28.620972796000046 ], [ -82.065163493999989, 28.620975256000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137007642999947, 28.611954119000075 ], [ -82.137062714999956, 28.611955862000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123289014999955, 28.612196623000045 ], [ -82.123420468999939, 28.612192987000071 ], [ -82.123970141999962, 28.612143272000026 ], [ -82.124432225999954, 28.612135819000059 ], [ -82.124870404999967, 28.612124871000049 ], [ -82.125288644999955, 28.612096362000045 ], [ -82.126208747999954, 28.612014658000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126208747999954, 28.612014658000078 ], [ -82.126281382999935, 28.611960543000066 ], [ -82.126370875999953, 28.611846214000025 ], [ -82.126390656999945, 28.611731950000035 ], [ -82.12634032699998, 28.611283802000059 ], [ -82.126310266999951, 28.611130037000066 ], [ -82.126269868999941, 28.610659909000049 ], [ -82.126343606999967, 28.610163539000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.098589851999975, 28.61197218600006 ], [ -82.096024587999977, 28.611974027000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096026154999947, 28.613697114000047 ], [ -82.095683324999982, 28.613717996000048 ], [ -82.09505435799997, 28.613726042000053 ], [ -82.094248762999939, 28.613734208000039 ], [ -82.093873892999966, 28.613654635000046 ], [ -82.093563705999941, 28.613643445000037 ], [ -82.09297782699997, 28.613659055000028 ], [ -82.092654532999973, 28.613645061000057 ], [ -82.092357453999966, 28.613640471000053 ], [ -82.092193751999957, 28.613644384000054 ], [ -82.092068848999986, 28.613678683000046 ], [ -82.09196118999995, 28.613728175000062 ], [ -82.091896599999984, 28.613762433000034 ], [ -82.091810453999983, 28.613777697000046 ], [ -82.09171996699996, 28.613758751000034 ], [ -82.091508863999934, 28.613747489000048 ], [ -82.091194364999978, 28.613732495000079 ], [ -82.090108765999958, 28.613724200000036 ], [ -82.089926440999989, 28.613722573000075 ], [ -82.089744125999971, 28.613733186000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09561870999994, 28.607540080000035 ], [ -82.095530846999964, 28.607676283000046 ], [ -82.095389187999956, 28.607903286000067 ], [ -82.095277077999981, 28.60810983600004 ], [ -82.095225462999963, 28.608197308000058 ], [ -82.095156619999955, 28.608288593000054 ], [ -82.095044583999936, 28.608250656000052 ], [ -82.094798938999986, 28.608140583000079 ], [ -82.094592102999968, 28.60807230100005 ], [ -82.094346520999977, 28.60803065500005 ], [ -82.094122474999949, 28.607985192000058 ], [ -82.093803542999979, 28.607810542000038 ], [ -82.09362684499996, 28.607723230000033 ], [ -82.093514764999952, 28.607635870000024 ], [ -82.093385460999968, 28.607556128000056 ], [ -82.093144120999966, 28.60743844600006 ], [ -82.092945856999961, 28.60731693300005 ], [ -82.092721765999954, 28.607218248000038 ], [ -82.092381358999944, 28.607112036000046 ], [ -82.092170215999943, 28.607039951000047 ], [ -82.092040958999974, 28.607013429000062 ], [ -82.091950506999979, 28.607024894000062 ], [ -82.091894535999984, 28.60705914600004 ], [ -82.091873029999988, 28.607097176000025 ], [ -82.091912854999975, 28.608309838000025 ], [ -82.091909168999962, 28.609024529000067 ], [ -82.091918559999954, 28.609914081000056 ], [ -82.091905710999981, 28.61000152400004 ], [ -82.091867001999958, 28.61006997800007 ], [ -82.091789483999946, 28.610100443000078 ], [ -82.091690419999964, 28.610119518000033 ], [ -82.091552560999958, 28.610112008000044 ], [ -82.091255316999934, 28.610112208000032 ], [ -82.090975301999947, 28.610108595000042 ], [ -82.090798688999939, 28.610120118000054 ], [ -82.090225809999936, 28.610129925000024 ], [ -82.090014658999962, 28.610128244000066 ], [ -82.089915597999948, 28.610151119000079 ], [ -82.089820075999967, 28.610220678000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149772368999948, 28.586926651000056 ], [ -82.149926264999976, 28.586992843000075 ], [ -82.149997910999957, 28.587005409000028 ], [ -82.15011253299997, 28.587015398000062 ], [ -82.150295917999983, 28.587025311000048 ], [ -82.150496481999937, 28.587027617000047 ], [ -82.150648350999973, 28.58703756400007 ], [ -82.150808809999944, 28.587044972000058 ], [ -82.151089602999946, 28.58704971800006 ], [ -82.151399055999946, 28.587059489000069 ], [ -82.151705628999935, 28.587059146000058 ], [ -82.151883267999949, 28.58705894700006 ], [ -82.152035096999953, 28.587041076000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029260114999943, 28.86697687000003 ], [ -82.029268921999972, 28.867345383000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029268921999972, 28.867345383000043 ], [ -82.02926899199997, 28.867593444000079 ], [ -82.029272633999938, 28.867863486000033 ], [ -82.029272679999963, 28.86802990700005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029272679999963, 28.86802990700005 ], [ -82.029269162999981, 28.868205749000026 ], [ -82.029269199999987, 28.868337629000052 ], [ -82.029269234999958, 28.868463230000032 ], [ -82.029272829999968, 28.868560570000056 ], [ -82.029284890999975, 28.868602613000064 ], [ -82.029301388999954, 28.868639065000025 ], [ -82.029325265999944, 28.868670978000068 ], [ -82.029358481999964, 28.868701853000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031548525999938, 28.868032534000065 ], [ -82.029272679999963, 28.86802990700005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124490864999984, 28.667010394000044 ], [ -82.12449328799994, 28.66670190800005 ], [ -82.124494271999936, 28.666355324000051 ], [ -82.124491349999971, 28.666241027000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124147046999951, 28.667006064000077 ], [ -82.124490864999984, 28.667010394000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042742763999968, 28.842860969000071 ], [ -82.042286557999944, 28.842640233000054 ], [ -82.042270421999945, 28.842630094000071 ], [ -82.04224967, 28.842601693000063 ], [ -82.042240438999954, 28.842571259000067 ], [ -82.042238119999979, 28.842534736000061 ], [ -82.042249627999979, 28.842498210000031 ], [ -82.042284163999966, 28.842417036000029 ], [ -82.042319155999962, 28.842324905000055 ], [ -82.042339403999961, 28.842248605000066 ], [ -82.042354126999953, 28.84218691600006 ], [ -82.042363318999946, 28.84212360600003 ], [ -82.042370676999951, 28.842081399000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042370676999951, 28.842081399000051 ], [ -82.042381709999972, 28.842011595000031 ], [ -82.04238905699998, 28.84194341500006 ], [ -82.042394562999959, 28.841881731000058 ], [ -82.042390856999987, 28.841836279000063 ], [ -82.042387148999978, 28.841782713000043 ], [ -82.042377911999949, 28.841737265000063 ], [ -82.042368672999942, 28.841685324000025 ], [ -82.042359433999934, 28.841631758000062 ], [ -82.042346509999959, 28.841586311000071 ], [ -82.04233543099997, 28.84154410900004 ], [ -82.042320661999952, 28.841492170000038 ], [ -82.042307736999987, 28.841445098000065 ], [ -82.04229296699998, 28.84139153600006 ], [ -82.042281886999945, 28.841344465000077 ], [ -82.042274492999979, 28.841297393000048 ], [ -82.042268946999968, 28.841260059000035 ], [ -82.042263400999957, 28.841221102000077 ], [ -82.042256007999981, 28.841178900000045 ], [ -82.042252308999934, 28.841146436000031 ], [ -82.042248606999976, 28.84111234900007 ], [ -82.042248595, 28.841083129000026 ], [ -82.042250420999949, 28.841040924000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041764109999974, 28.842031266000049 ], [ -82.041767772999947, 28.84197120500005 ], [ -82.041767747999984, 28.841907898000045 ], [ -82.041764035999961, 28.84184459100004 ], [ -82.041756638999971, 28.841789402000074 ], [ -82.041745553999988, 28.841730969000025 ], [ -82.041732631999935, 28.841685522000034 ], [ -82.041723400999956, 28.841651436000063 ], [ -82.041712320999977, 28.841609234000032 ], [ -82.041701241999988, 28.841567033000047 ], [ -82.041690162999942, 28.841521585000066 ], [ -82.041675390999956, 28.841464775000077 ], [ -82.041662468999959, 28.84141932700004 ], [ -82.041651387999934, 28.841370633000054 ], [ -82.041638456999976, 28.841307330000063 ], [ -82.041634751999936, 28.841261879000058 ], [ -82.041631047999942, 28.841218053000034 ], [ -82.041631028999973, 28.841169355000034 ], [ -82.041631011999982, 28.841127150000034 ], [ -82.041629149999949, 28.841083322000031 ], [ -82.041629131999969, 28.841039494000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041717871999936, 28.842198233000033 ], [ -82.041726866999966, 28.842168774000072 ], [ -82.041733289999968, 28.842141582000068 ], [ -82.041742281999973, 28.842105326000024 ], [ -82.041752561999942, 28.842070202000059 ], [ -82.041764109999974, 28.842031266000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042370676999951, 28.842081399000051 ], [ -82.041764109999974, 28.842031266000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041693657999986, 28.84103947400007 ], [ -82.041702776999955, 28.840792736000026 ], [ -82.041703748999964, 28.840429785000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040933412999948, 28.844328483000027 ], [ -82.040933277999954, 28.843984737000028 ], [ -82.040926415999934, 28.843953078000027 ], [ -82.040910993999944, 28.843925945000024 ], [ -82.040883586999939, 28.843901831000039 ], [ -82.040849333999972, 28.843883749000042 ], [ -82.040818509999951, 28.843880743000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041276302999961, 28.845395802000041 ], [ -82.040623891999985, 28.84539750700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040622140999972, 28.84529800200005 ], [ -82.039997020999976, 28.84529771900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039997020999976, 28.84529771900003 ], [ -82.039374575999943, 28.845295264000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039374575999943, 28.845295264000072 ], [ -82.038753843999984, 28.845295443000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040624959999946, 28.845943657000078 ], [ -82.040623891999985, 28.84539750700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040623891999985, 28.84539750700003 ], [ -82.040622140999972, 28.84529800200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040622140999972, 28.84529800200005 ], [ -82.040621865999981, 28.844589402000054 ], [ -82.040623518999951, 28.844437128000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038886297999966, 28.846622238000066 ], [ -82.038899744999981, 28.846238630000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042726587999937, 28.863425401000029 ], [ -82.042913915999975, 28.863000911000029 ], [ -82.043024785999989, 28.862761711000076 ], [ -82.043101244999946, 28.862589894000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043101244999946, 28.862589894000052 ], [ -82.043165951999981, 28.862388217000046 ], [ -82.043292329999986, 28.862010450000071 ], [ -82.043399153999985, 28.861748216000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043399153999985, 28.861748216000024 ], [ -82.043513121999979, 28.861477261000061 ], [ -82.043828551999979, 28.860811542000079 ], [ -82.044146626999975, 28.860134144000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044146626999975, 28.860134144000028 ], [ -82.044210236999959, 28.859990257000049 ], [ -82.044612597999958, 28.859142805000033 ], [ -82.044655000999967, 28.859038161000058 ], [ -82.04467195999996, 28.858993314000031 ], [ -82.044678310999984, 28.858954075000042 ], [ -82.044667678999986, 28.858907369000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044667678999986, 28.858907369000065 ], [ -82.044654930999968, 28.858873742000071 ], [ -82.044633694999959, 28.858847591000028 ], [ -82.044610341999942, 28.85883078300003 ], [ -82.044528085999957, 28.858796712000071 ], [ -82.043797759999961, 28.85857952200007 ], [ -82.043608973999937, 28.858517045000042 ], [ -82.043138023999973, 28.858361743000046 ], [ -82.042969529999937, 28.858292111000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031561910999983, 28.927491824000072 ], [ -82.031894318999946, 28.927494058000036 ], [ -82.032266453999966, 28.927493969000068 ], [ -82.032893021999939, 28.927497324000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023565866999945, 28.927429605000043 ], [ -82.023976648999962, 28.927431084000034 ], [ -82.024777227999948, 28.927433093000047 ], [ -82.02554108399994, 28.927437259000044 ], [ -82.026096836999955, 28.927439305000064 ], [ -82.026668083999937, 28.927443035000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020307958999979, 28.927414944000077 ], [ -82.020710674999975, 28.927416549000043 ], [ -82.021173395999938, 28.927420785000038 ], [ -82.021741390999978, 28.927422848000049 ], [ -82.022299592999957, 28.92742491000007 ], [ -82.023406203999969, 28.927429031000031 ], [ -82.023565866999945, 28.927429605000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015946369999938, 28.927382737000073 ], [ -82.01674694899998, 28.927386947000059 ], [ -82.017383495, 28.927393328000051 ], [ -82.01815959299995, 28.927397533000033 ], [ -82.01904830899997, 28.92740387200007 ], [ -82.019829303999984, 28.927412375000074 ], [ -82.020307958999979, 28.927414944000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013686031999953, 28.927367101000073 ], [ -82.014452934999952, 28.927372135000041 ], [ -82.015211892999957, 28.92737635900005 ], [ -82.015794577999941, 28.927382755000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014353598999946, 28.927239487000065 ], [ -82.012290486999973, 28.927231990000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008561015999987, 28.927311186000054 ], [ -82.009221015999969, 28.927327364000064 ], [ -82.009290376999957, 28.92732705700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004042962999961, 28.927269466000041 ], [ -82.004236373999959, 28.927269460000048 ], [ -82.004962342999988, 28.927274913000076 ], [ -82.005372363999982, 28.927278034000039 ], [ -82.005959942999937, 28.927282317000049 ], [ -82.006593005999946, 28.92728562800005 ], [ -82.007173313999942, 28.92728740900003 ], [ -82.007402936999938, 28.927291251000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000426626999968, 28.92703190800006 ], [ -82.000486056999989, 28.927048418000027 ], [ -82.000634408999986, 28.927087271000062 ], [ -82.000776997999935, 28.927120907000074 ], [ -82.000899408999942, 28.92714459900003 ], [ -82.001007133999963, 28.927163983000071 ], [ -82.001129544999969, 28.927183367000055 ], [ -82.00124950999998, 28.927200597000024 ], [ -82.001374369999951, 28.927215673000035 ], [ -82.00150168, 28.927228595000031 ], [ -82.001628988999983, 28.927237208000065 ], [ -82.001753848999954, 28.927247976000046 ], [ -82.00187626099995, 28.927250128000026 ], [ -82.002258189999964, 28.927254430000062 ], [ -82.002752735999934, 28.927258729000073 ], [ -82.003251058999979, 28.92726403000006 ], [ -82.003468593999969, 28.927262202000065 ], [ -82.00370477599995, 28.927264018000074 ], [ -82.003903666999975, 28.927267658000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972929773999965, 28.920043749000058 ], [ -81.971675234999964, 28.920047256000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966137015999948, 28.920167529000025 ], [ -81.966449929999953, 28.920166237000046 ], [ -81.966949337999949, 28.920166360000053 ], [ -81.967326343999957, 28.920166452000046 ], [ -81.968170930999975, 28.920164501000045 ], [ -81.968721749999986, 28.92016678300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.161841037999977, 28.65423819800003 ], [ -82.161878764999983, 28.654198154000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099158735999936, 28.617518514000039 ], [ -82.098844026999984, 28.617538869000043 ], [ -82.098643332999984, 28.617543040000044 ], [ -82.098442639999973, 28.617547211000044 ], [ -82.098178161999954, 28.617546450000077 ], [ -82.097972537999965, 28.617540041000041 ], [ -82.097692589999951, 28.617527126000027 ], [ -82.097382902999982, 28.617503304000024 ], [ -82.097167358999968, 28.61748159900003 ], [ -82.096934464999947, 28.617453348000026 ], [ -82.096376976999977, 28.617351005000046 ], [ -82.095892617999937, 28.617259248000039 ], [ -82.095234734999963, 28.617126657000028 ], [ -82.094937400999981, 28.617063472000041 ], [ -82.094513709999944, 28.616982888000052 ], [ -82.093971083999975, 28.61687396700006 ], [ -82.093316966999964, 28.616747632000056 ], [ -82.092828853999947, 28.616651785000045 ], [ -82.092281275999937, 28.616540674000078 ], [ -82.091493370999956, 28.616394747000072 ], [ -82.090745099999936, 28.616242233000037 ], [ -82.090313979999962, 28.616157267000062 ], [ -82.089731767999979, 28.61604138000007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104331062999961, 28.616711414000065 ], [ -82.104446923999944, 28.616693444000077 ], [ -82.106376322999949, 28.616384286000027 ], [ -82.106689027999948, 28.616333169000029 ], [ -82.106943061999971, 28.616296415000079 ], [ -82.107083883999962, 28.616274372000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104331062999961, 28.616711414000065 ], [ -82.102286262999939, 28.61704234900003 ], [ -82.100673698999969, 28.617305827000052 ], [ -82.100270555999941, 28.617369484000051 ], [ -82.100096596999947, 28.617398856000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111645039999985, 28.657534946000055 ], [ -82.111642331999974, 28.656712181000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036089281999978, 28.872697560000063 ], [ -82.035511536999934, 28.872703078000029 ], [ -82.035466406999944, 28.872704832000068 ], [ -82.035394850999978, 28.872701444000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033081987999935, 28.870967655000072 ], [ -82.033060620999947, 28.871167075000074 ], [ -82.033060645999967, 28.87124792000003 ], [ -82.033063727999945, 28.871312594000074 ], [ -82.033066803999986, 28.871361100000058 ], [ -82.033094183999935, 28.871413491000055 ], [ -82.033134842999971, 28.871444151000048 ], [ -82.03318904799994, 28.871464584000023 ], [ -82.033274220999942, 28.871474786000078 ], [ -82.033382171999961, 28.871476898000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033486333999974, 28.86692535800006 ], [ -82.033486461999985, 28.867322841000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033486461999985, 28.867322841000032 ], [ -82.033490872999948, 28.869148566000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033498148999968, 28.863842730000044 ], [ -82.033501963999981, 28.864430090000042 ], [ -82.033503871999983, 28.864725366000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037091163999946, 28.86732336700004 ], [ -82.036658773999989, 28.867305174000023 ], [ -82.036218708999968, 28.867312029000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036218708999968, 28.867312029000061 ], [ -82.035438065999983, 28.867315605000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035438065999983, 28.867315605000044 ], [ -82.035281168999973, 28.867305541000064 ], [ -82.034714820999966, 28.867309056000067 ], [ -82.034527313999945, 28.867312472000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034527313999945, 28.867312472000037 ], [ -82.033486461999985, 28.867322841000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045359228999985, 28.847292315000061 ], [ -82.045498216999988, 28.847286151000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008034644999952, 28.649934596000037 ], [ -82.008234416999983, 28.64993458400005 ], [ -82.009713979999958, 28.649949050000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984463399999981, 28.655245095000055 ], [ -81.984462835999977, 28.655245566000076 ], [ -81.984033328999942, 28.655598463000047 ], [ -81.983554522999952, 28.656003401000078 ], [ -81.983062705999941, 28.656411699000046 ], [ -81.982245214999978, 28.657091540000067 ], [ -81.981310297999983, 28.65786905300007 ], [ -81.98025351299998, 28.658746189000055 ], [ -81.977854081999965, 28.660740716000078 ], [ -81.976695320999966, 28.66170377800006 ], [ -81.975332697999988, 28.662834825000061 ], [ -81.974397677999946, 28.663608382000064 ], [ -81.974094125999954, 28.663864280000041 ], [ -81.973775062999948, 28.664126038000063 ], [ -81.972423455999945, 28.665247287000057 ], [ -81.971942631, 28.665649684000073 ], [ -81.969726801999968, 28.667489748000037 ], [ -81.96915510599996, 28.667962454000076 ], [ -81.967295950999983, 28.669503616000043 ], [ -81.966367458999969, 28.670279073000074 ], [ -81.964887164999936, 28.671503770000072 ], [ -81.963544230999958, 28.672621024000023 ], [ -81.961591831999954, 28.67424023600006 ], [ -81.96056796299996, 28.675089872000058 ], [ -81.959590615999957, 28.675900436000063 ], [ -81.958150055999965, 28.677095762000079 ], [ -81.957412036999983, 28.677701228000046 ], [ -81.956993154999964, 28.678050837000058 ], [ -81.956786757999964, 28.678227108000044 ], [ -81.956585903999951, 28.678391901000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986891882999942, 28.653456531000074 ], [ -81.986743046999948, 28.653557263000039 ], [ -81.986621900999978, 28.653645786000027 ], [ -81.986469602999989, 28.653746518000048 ], [ -81.986321459999942, 28.653840777000028 ], [ -81.986139809999941, 28.653959945000054 ], [ -81.98597366499996, 28.654075205000026 ], [ -81.985871762999977, 28.654145533000076 ], [ -81.985765429999958, 28.654221724000024 ], [ -81.985634040999969, 28.654308560000061 ], [ -81.985504674999959, 28.654407432000028 ], [ -81.985390833999986, 28.654492614000048 ], [ -81.985256291999974, 28.654597570000078 ], [ -81.985164873999963, 28.654669063000028 ], [ -81.985080352999944, 28.654737513000043 ], [ -81.984945768999978, 28.654850780000061 ], [ -81.984826791999978, 28.654944385000078 ], [ -81.984709498999962, 28.655040215000042 ], [ -81.984463399999981, 28.655245095000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044913399999984, 28.868421658000045 ], [ -82.044910669999979, 28.869899887000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044910669999979, 28.869899887000031 ], [ -82.044911487999968, 28.871801736000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045516325999984, 28.861875970000028 ], [ -82.045518774999948, 28.861411205000024 ], [ -82.045523775999982, 28.86070821900006 ], [ -82.045513126999936, 28.860624144000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045513126999936, 28.860624144000042 ], [ -82.045528994999984, 28.860509699000033 ], [ -82.045531197999935, 28.859476008000058 ], [ -82.045531153999946, 28.859375581000052 ], [ -82.045531121999943, 28.859302247000073 ], [ -82.045525793999957, 28.859253203000037 ], [ -82.045507208999936, 28.859218177000059 ], [ -82.045472709999956, 28.859193432000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036171631999935, 28.858173256000043 ], [ -82.03617795599996, 28.859135797000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044146626999975, 28.860134144000028 ], [ -82.044961214999944, 28.860418805000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044961214999944, 28.860418805000052 ], [ -82.045513126999936, 28.860624144000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045513126999936, 28.860624144000042 ], [ -82.045702823999989, 28.860646813000074 ], [ -82.046090766999953, 28.860661482000069 ], [ -82.046285044999934, 28.860657030000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046285044999934, 28.860657030000027 ], [ -82.046910227999945, 28.860656814000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055914880999978, 28.853455213000075 ], [ -82.055896673999939, 28.852713266000023 ], [ -82.055821479999963, 28.852581997000073 ], [ -82.055801974999952, 28.852508559000057 ], [ -82.055782490999945, 28.852471846000071 ], [ -82.055757440999969, 28.852427788000057 ], [ -82.05573517299996, 28.852388627000039 ], [ -82.055701779999936, 28.852344573000039 ], [ -82.055640565999965, 28.852273602000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019541477999951, 28.903042713000048 ], [ -82.019206084999951, 28.903025906000039 ], [ -82.018997637999973, 28.90301370800006 ], [ -82.018898494999974, 28.902999960000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01982136099997, 28.902225586000043 ], [ -82.019896993999964, 28.902226014000064 ], [ -82.020002157999954, 28.902252440000041 ], [ -82.020099819999984, 28.902315217000023 ], [ -82.02015616999995, 28.902387918000045 ], [ -82.020186230999968, 28.90246723100006 ], [ -82.020193760999973, 28.902566378000074 ], [ -82.020186281999941, 28.902728320000051 ], [ -82.020175032999987, 28.90281755500007 ], [ -82.020133733999955, 28.902900184000032 ], [ -82.020077409999942, 28.902959681000027 ], [ -82.020002300999977, 28.902996046000055 ], [ -82.019919675999972, 28.90300927800007 ], [ -82.019724380999946, 28.90303244200004 ], [ -82.019541477999951, 28.903042713000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018189850999988, 28.902943205000042 ], [ -82.018053055999985, 28.902966577000029 ], [ -82.017793913999981, 28.903002966000031 ], [ -82.017540406999956, 28.903037701000073 ], [ -82.017432242999973, 28.903048291000061 ], [ -82.017375152999989, 28.903037722000079 ], [ -82.017288246999954, 28.903009608000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046910227999945, 28.860656814000038 ], [ -82.046899845999974, 28.859722734000059 ], [ -82.046899803999963, 28.85962844900007 ], [ -82.046902272999944, 28.859580208000068 ], [ -82.046899746999941, 28.859501273000035 ], [ -82.046882291999964, 28.859459617000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04250886899996, 28.866272526000046 ], [ -82.042677245999982, 28.866283253000063 ], [ -82.044302807999941, 28.866290812000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042912611999952, 28.86541814800006 ], [ -82.043126924999967, 28.865474670000026 ], [ -82.043267757999956, 28.86550696200004 ], [ -82.04339738699997, 28.865528226000038 ], [ -82.044444801999987, 28.86553613500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042199245999939, 28.865205482000079 ], [ -82.042912611999952, 28.86541814800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041479734999939, 28.864930836000042 ], [ -82.042125756999951, 28.865162389000034 ], [ -82.042199245999939, 28.865205482000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041431517999968, 28.866854939000063 ], [ -82.041658082999959, 28.866922239000075 ], [ -82.041875469999979, 28.867005709000068 ], [ -82.042086745999939, 28.867113437000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038046890999965, 28.868891619000067 ], [ -82.037883540999985, 28.869239082000036 ], [ -82.03775285599994, 28.869506363000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03832224699994, 28.868295381000053 ], [ -82.038046890999965, 28.868891619000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038623276999942, 28.867666243000031 ], [ -82.03832224699994, 28.868295381000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038901837999958, 28.867066855000076 ], [ -82.038623276999942, 28.867666243000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040193378999959, 28.864320557000042 ], [ -82.039883072999942, 28.864979984000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04050571199997, 28.863657556000078 ], [ -82.040193378999959, 28.864320557000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040826154999934, 28.862987760000067 ], [ -82.040710546999946, 28.863217936000069 ], [ -82.04050571199997, 28.863657556000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041136441999981, 28.86230510300004 ], [ -82.040826154999934, 28.862987760000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03268856699998, 28.859972936000077 ], [ -82.032706298999983, 28.860053983000057 ], [ -82.032716956999934, 28.860169324000026 ], [ -82.032724089999988, 28.860328307000032 ], [ -82.032724260999942, 28.860873845000071 ], [ -82.032731367999986, 28.860951778000071 ], [ -82.032738476999953, 28.861042180000027 ], [ -82.032766837999986, 28.861138811000046 ], [ -82.032802280999988, 28.861238557000036 ], [ -82.032855426999959, 28.861332066000045 ], [ -82.032894401999954, 28.861400639000067 ], [ -82.032912130999989, 28.861475450000057 ], [ -82.03293694499996, 28.861556496000048 ], [ -82.032944068999939, 28.861687424000024 ], [ -82.032944114999964, 28.861830822000059 ], [ -82.032995516999961, 28.862591520000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028871217999949, 28.860957317000043 ], [ -82.028881975, 28.860424512000066 ], [ -82.028860189999989, 28.859400790000052 ], [ -82.02886775199994, 28.858166735000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02886775199994, 28.858166735000054 ], [ -82.028882400999976, 28.857426501000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028882400999976, 28.857426501000077 ], [ -82.028890998999941, 28.856536332000076 ], [ -82.028890959999956, 28.856396188000076 ], [ -82.028893892999974, 28.856341687000054 ], [ -82.028896820999989, 28.856276806000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030182930999956, 28.854544625000074 ], [ -82.030193396999948, 28.854496186000063 ], [ -82.030193381999936, 28.854444282000031 ], [ -82.030195811999988, 28.852656161000027 ], [ -82.030198515999984, 28.851810111000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037125644999946, 28.887315725000065 ], [ -82.037121949999971, 28.886966814000061 ], [ -82.037123634999944, 28.886416758000053 ], [ -82.037123634999944, 28.886416687000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037099677999947, 28.889581836000048 ], [ -82.037118919999955, 28.888488197000072 ], [ -82.037118679999935, 28.887812377000046 ], [ -82.037125644999946, 28.887315725000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037081870999941, 28.890583373000027 ], [ -82.037099677999947, 28.889581836000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03708692899994, 28.901002176000077 ], [ -82.037086931999966, 28.901001219000079 ], [ -82.037090477999982, 28.899946876000058 ], [ -82.037090321999983, 28.89988108600005 ], [ -82.037090319999947, 28.899880302000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040105505999975, 28.862737831000061 ], [ -82.03972992599995, 28.862587484000073 ], [ -82.039354368999966, 28.862450367000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039354368999966, 28.862450367000065 ], [ -82.038589049999985, 28.86218578200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038589049999985, 28.86218578200004 ], [ -82.037155857999949, 28.861666221000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04540654799996, 28.844526264000024 ], [ -82.044260024999971, 28.84452410800003 ], [ -82.044223153999951, 28.844528686000046 ], [ -82.044188012999939, 28.844534277000037 ], [ -82.044154027, 28.84454899900004 ], [ -82.044117163999942, 28.844575389000056 ], [ -82.04408491099997, 28.844599748000064 ], [ -82.044050354999968, 28.844628167000053 ], [ -82.044008885999972, 28.844660645000033 ], [ -82.043976633999989, 28.84468703400006 ], [ -82.043928257999937, 28.844733718000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043928257999937, 28.844733718000043 ], [ -82.043815330999962, 28.844729698000037 ], [ -82.043713930999957, 28.844729731000029 ], [ -82.043591787999958, 28.844729770000072 ], [ -82.043405117999953, 28.844729830000063 ], [ -82.043345198999987, 28.844725790000041 ], [ -82.043294495999987, 28.844721750000076 ], [ -82.043241487999978, 28.844715678000057 ], [ -82.043179259999988, 28.844703524000067 ], [ -82.043103201999941, 28.844683258000032 ], [ -82.043027139999936, 28.84465487500006 ], [ -82.042955683999935, 28.84462243300004 ], [ -82.042895751999936, 28.844589987000063 ], [ -82.042828902999986, 28.844551455000044 ], [ -82.042775883, 28.844510891000027 ], [ -82.042722859999969, 28.844470325000032 ], [ -82.04267905599994, 28.844427729000074 ], [ -82.042639861999987, 28.844385131000024 ], [ -82.042607582999949, 28.844348617000037 ], [ -82.042584524999938, 28.844318188000045 ], [ -82.042543021999961, 28.844265446000065 ], [ -82.04249690499995, 28.844202558000063 ], [ -82.042153333999977, 28.843727862000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040348412999947, 28.868426335000038 ], [ -82.040253746999952, 28.869038082000031 ], [ -82.040260208999939, 28.869919279000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023449007999943, 28.860877728000048 ], [ -82.023444529999949, 28.860359326000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045409810999956, 28.852094072000057 ], [ -82.044618279999952, 28.852085402000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044618279999952, 28.852085402000057 ], [ -82.043826882999952, 28.852086683000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043826882999952, 28.852086683000039 ], [ -82.042988088999948, 28.852081601000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042988088999948, 28.852081601000066 ], [ -82.042187791999936, 28.852083639000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046256540999934, 28.859434005000026 ], [ -82.046365471999934, 28.859430416000066 ], [ -82.046444145999942, 28.859430388000078 ], [ -82.046520803999954, 28.859430362000069 ], [ -82.046698323999976, 28.859430301000032 ], [ -82.046825412999965, 28.859429467000041 ], [ -82.046882291999964, 28.859459617000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039938764999988, 28.869935544000043 ], [ -82.040260208999939, 28.869919279000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040260208999939, 28.869919279000044 ], [ -82.040783701999942, 28.869892175000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040783701999942, 28.869892175000075 ], [ -82.041910302999952, 28.869889133000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041910302999952, 28.869889133000072 ], [ -82.04272464099995, 28.86988887800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04272464099995, 28.86988887800004 ], [ -82.043820633999985, 28.869902 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043820633999985, 28.869902 ], [ -82.044910669999979, 28.869899887000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041605393999987, 28.862501508000037 ], [ -82.041897457999937, 28.861949293000066 ], [ -82.041921799999955, 28.861911761000044 ], [ -82.041933963999952, 28.861876021000057 ], [ -82.041935980999938, 28.861843858000043 ], [ -82.041923789999942, 28.861813486000074 ], [ -82.041901453999969, 28.861792052000055 ], [ -82.041854763999936, 28.861774197000045 ], [ -82.041464989999952, 28.861617078000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100709347999953, 28.754109047000043 ], [ -82.100642037999989, 28.754177234000053 ], [ -82.100606298999935, 28.754213925000045 ], [ -82.100562466999975, 28.754257987000074 ], [ -82.100541894999935, 28.754277101000071 ], [ -82.100520236999955, 28.754292874000043 ], [ -82.100497490999942, 28.754303397000058 ], [ -82.100434115999974, 28.754323975000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.101074045999951, 28.753621917000032 ], [ -82.101050356999963, 28.753625792000037 ], [ -82.101003362999961, 28.753661782000052 ], [ -82.100894449999942, 28.753815184000075 ], [ -82.100833059999957, 28.753895134000061 ], [ -82.100785708999979, 28.753978653000047 ], [ -82.100735739999948, 28.754052892000061 ], [ -82.100709347999953, 28.754109047000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100709347999953, 28.754109047000043 ], [ -82.100668506999966, 28.754194855000037 ], [ -82.100657288999969, 28.754248342000039 ], [ -82.100656556999979, 28.754319434000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100926707999974, 28.754311613000027 ], [ -82.100890970999956, 28.754294266000045 ], [ -82.100862230999951, 28.754270413000029 ], [ -82.100848286999963, 28.754254807000052 ], [ -82.100834995999946, 28.754233445000068 ], [ -82.100818716999981, 28.754210061000038 ], [ -82.100798189999978, 28.754184022000061 ], [ -82.100779443999954, 28.754162686000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100656556999979, 28.754319434000024 ], [ -82.10071269499997, 28.754280075000054 ], [ -82.100733262999938, 28.75425905000003 ], [ -82.100749164999968, 28.754229174000045 ], [ -82.100761070999965, 28.754205437000053 ], [ -82.100779443999954, 28.754162686000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100779443999954, 28.754162686000029 ], [ -82.100778532999982, 28.75411684900007 ], [ -82.100785437999946, 28.754086286000074 ], [ -82.100809661999961, 28.754033554000046 ], [ -82.100866791999977, 28.753941834000045 ], [ -82.101074045999951, 28.753621917000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108690043999957, 28.701508601000057 ], [ -82.108881745999952, 28.699731937000024 ], [ -82.109062780999977, 28.698150432000034 ], [ -82.109243757999934, 28.696517679000067 ], [ -82.109262979999983, 28.696371241000065 ], [ -82.109290395999949, 28.696119862000046 ], [ -82.109391860999949, 28.695214402000033 ], [ -82.109528945999955, 28.693967262000058 ], [ -82.109696208999935, 28.692466300000035 ], [ -82.109890917999962, 28.690750561000073 ], [ -82.109923796999965, 28.69043328500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104251676, 28.701456094000037 ], [ -82.104418802999987, 28.701444929000047 ], [ -82.105377783999984, 28.701444532000039 ], [ -82.106467646999988, 28.701461305000066 ], [ -82.107884019999972, 28.701478696000038 ], [ -82.108207062999952, 28.701487776000079 ], [ -82.108621095999979, 28.701496945000031 ], [ -82.108690043999957, 28.701508601000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103314439999963, 28.748819095000044 ], [ -82.103424006999944, 28.748120103000076 ], [ -82.103533713, 28.747157474000062 ], [ -82.103596698999979, 28.746613850000074 ], [ -82.103747042999942, 28.745306263000032 ], [ -82.103832351999984, 28.744544107000024 ], [ -82.103927794999947, 28.743669977000025 ], [ -82.104065964999961, 28.742490617000044 ], [ -82.104165462999958, 28.74157856100004 ], [ -82.104214226999943, 28.741163165000046 ], [ -82.104362499999979, 28.73984835400006 ], [ -82.104508725999949, 28.738538962000064 ], [ -82.104663112999958, 28.73719886300006 ], [ -82.104799154999967, 28.735958102000041 ], [ -82.104955583999981, 28.734618001000058 ], [ -82.105097672999989, 28.733285133000038 ], [ -82.10521347699995, 28.732304437000039 ], [ -82.105373908999979, 28.730881259000057 ], [ -82.105481555999972, 28.729942104000031 ], [ -82.105648013999939, 28.728406955000025 ], [ -82.105802370999982, 28.727065047000053 ], [ -82.105857233999984, 28.726615333000041 ], [ -82.105912053999987, 28.726122278000048 ], [ -82.106062319999978, 28.724794819000067 ], [ -82.106208506999963, 28.723489033000078 ], [ -82.106362856999965, 28.722154348000061 ], [ -82.10650897499994, 28.720787161000032 ], [ -82.106714082999986, 28.719009084000049 ], [ -82.106894232999935, 28.717374594000034 ], [ -82.107094743999937, 28.715622705000044 ], [ -82.107267286999956, 28.714071743000034 ], [ -82.107457610999973, 28.712385325000071 ], [ -82.107647965999945, 28.710735023000041 ], [ -82.107741832999977, 28.709883913000056 ], [ -82.107990552, 28.707727909000027 ], [ -82.108069130999979, 28.706953562000024 ], [ -82.108178308999982, 28.706057291000036 ], [ -82.108267070999943, 28.705228759000079 ], [ -82.108355870999958, 28.704438601000049 ], [ -82.108437048999974, 28.703707141000052 ], [ -82.108690043999957, 28.701508601000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109523722999938, 28.657624737000049 ], [ -82.109498253999959, 28.657286887000055 ], [ -82.109491419999983, 28.656752395000069 ], [ -82.109528638999961, 28.65631202700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037155716999962, 28.861265974000048 ], [ -82.037150986999961, 28.860812483000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037150986999961, 28.860812483000075 ], [ -82.037138847999984, 28.85995245600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037138847999984, 28.85995245600003 ], [ -82.037140941999951, 28.859137454000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037140941999951, 28.859137454000063 ], [ -82.037142788999972, 28.858203393000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037142788999972, 28.858203393000053 ], [ -82.037127598999973, 28.856728959000066 ], [ -82.03712423099995, 28.855548125000041 ], [ -82.03712978599998, 28.854585289000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034511520999956, 28.859953297000061 ], [ -82.034507145999953, 28.85989575800005 ], [ -82.034494035999955, 28.859784518000026 ], [ -82.034472212999958, 28.859671363000075 ], [ -82.034443844999942, 28.859542865000037 ], [ -82.034417662999942, 28.859423956000057 ], [ -82.034347087999947, 28.859137330000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059734249999963, 28.753177580000056 ], [ -82.059797445999948, 28.753187849000028 ], [ -82.059910995999985, 28.753197641000042 ], [ -82.059954055999981, 28.753199273000064 ], [ -82.06001873799994, 28.753195509000079 ], [ -82.060082308999938, 28.75318433700005 ], [ -82.060143681999989, 28.75316594800006 ], [ -82.060201804999963, 28.753140656000028 ], [ -82.060255684999959, 28.753108895000025 ], [ -82.060304400999939, 28.753071209000041 ], [ -82.060347115999946, 28.753028240000049 ], [ -82.060383101999946, 28.752980727000079 ], [ -82.060389240999939, 28.752971063000075 ], [ -82.060552843999972, 28.752626520000035 ], [ -82.060674542999948, 28.752451800000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059734249999963, 28.753177580000056 ], [ -82.059718424999971, 28.753167192000035 ], [ -82.059640977999948, 28.753120118000027 ], [ -82.059596554999985, 28.753087672000049 ], [ -82.059593684999982, 28.753085664000025 ], [ -82.05955606699996, 28.753051328000026 ], [ -82.059501902999955, 28.752999099000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041946652999968, 28.868924385000071 ], [ -82.041916054999945, 28.868964816000073 ], [ -82.041909945999976, 28.868999850000023 ], [ -82.041903847999947, 28.869061832000057 ], [ -82.041900814999963, 28.869129204000046 ], [ -82.041903996999963, 28.869433715000071 ], [ -82.041910302999952, 28.869889133000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041910302999952, 28.869889133000072 ], [ -82.041901505999988, 28.870853874000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019821500999967, 28.901849189000075 ], [ -82.01982136099997, 28.902225586000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032377249999968, 28.862594863000027 ], [ -82.03237556299996, 28.863000270000043 ], [ -82.032375824999974, 28.863846197000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030717402999983, 28.862605719000044 ], [ -82.03071749999998, 28.862934520000067 ], [ -82.030723221999949, 28.863848924000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030723221999949, 28.863848924000024 ], [ -82.030722511999954, 28.864727625000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030722511999954, 28.864727625000057 ], [ -82.030720531999975, 28.864917727000034 ], [ -82.030721225999969, 28.865475991000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968609827999956, 28.906586340000047 ], [ -81.968538255999988, 28.906622879000054 ], [ -81.96847158099996, 28.906644487000051 ], [ -81.968419490999963, 28.906656946000055 ], [ -81.968361085999959, 28.906675619000055 ], [ -81.968270823999944, 28.906694284000025 ], [ -81.968152247999967, 28.906711385000051 ], [ -81.968030129999988, 28.906730043000039 ], [ -81.967974962999961, 28.906735052000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974787365999987, 28.904382332000068 ], [ -81.974761791999981, 28.904360875000066 ], [ -81.974721890999945, 28.904336279000063 ], [ -81.974713608999934, 28.904332233000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974713608999934, 28.904332233000048 ], [ -81.974679085999981, 28.904318746000058 ], [ -81.974632663999955, 28.904307790000075 ], [ -81.974584782999955, 28.904304095000043 ], [ -81.974536899999976, 28.904307772000038 ], [ -81.974490470999967, 28.904318710000041 ], [ -81.974446904999979, 28.904336577000038 ], [ -81.974421378999978, 28.904351250000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974421378999978, 28.904351250000047 ], [ -81.974408123999979, 28.904360449000023 ], [ -81.974379607999936, 28.904384726000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974379607999936, 28.904384726000046 ], [ -81.974373634999949, 28.904390784000043 ], [ -81.974345657999947, 28.904425926000044 ], [ -81.97432503999994, 28.904464809000046 ], [ -81.974312410999971, 28.904506252000033 ], [ -81.974308075999943, 28.904548233000071 ], [ -81.974309417999962, 28.904561768000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974361851999959, 28.904694065000058 ], [ -81.974373555999989, 28.904707227000074 ], [ -81.974408026999981, 28.904737573000034 ], [ -81.974447962999989, 28.904762191000032 ], [ -81.974479581999958, 28.904776 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974479581999958, 28.904776 ], [ -81.974492152999971, 28.904780333000076 ], [ -81.974539248999974, 28.904791447000036 ], [ -81.974583732999974, 28.904795168000078 ], [ -81.974630570999977, 28.904791445000058 ], [ -81.974677630999963, 28.904780359000029 ], [ -81.97471894499995, 28.904763674000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97471894499995, 28.904763674000037 ], [ -81.974721787999954, 28.904762250000033 ], [ -81.974761700999977, 28.904737669000042 ], [ -81.974796156999957, 28.904707362000067 ], [ -81.97482410899994, 28.904672251000079 ], [ -81.974825782999972, 28.904669665000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974859212999945, 28.904525388000025 ], [ -81.974857347999944, 28.904506585000036 ], [ -81.974844748999942, 28.904465173000062 ], [ -81.974824169999977, 28.90442631600007 ], [ -81.974796233999939, 28.904391195000073 ], [ -81.974787365999987, 28.904382332000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975854903999959, 28.904476740000064 ], [ -81.976043143999959, 28.904443135000065 ], [ -81.976311488999954, 28.904389417000061 ], [ -81.976659821999988, 28.904296756000065 ], [ -81.977046209999969, 28.904180919000055 ], [ -81.977344784999957, 28.904080521000026 ], [ -81.977690198999937, 28.903941497000062 ], [ -81.977921451999975, 28.903843661000053 ], [ -81.978143925999973, 28.903732947000037 ], [ -81.978269796999939, 28.903673728000058 ], [ -81.978445436999948, 28.903581034000069 ], [ -81.978563404999989, 28.903521556000044 ], [ -81.978673467999954, 28.903480364000075 ], [ -81.97888187999996, 28.903418583000075 ], [ -81.979048430999967, 28.903390535000028 ], [ -81.979165512999941, 28.90337252300003 ], [ -81.979241617999946, 28.903357081000024 ], [ -81.979317722999951, 28.903328761000068 ], [ -81.979411394999943, 28.903292717000056 ], [ -81.97950799399996, 28.903243795000037 ], [ -81.979598738999982, 28.903192297000032 ], [ -81.979651342999944, 28.903174503000059 ], [ -81.979653764999966, 28.903173684000024 ], [ -81.979674845999966, 28.903166553000062 ], [ -81.979765584999939, 28.903151113000035 ], [ -81.979889103999938, 28.903160780000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979790774999969, 28.902921669000079 ], [ -81.979722589999938, 28.902986010000063 ], [ -81.979645310999956, 28.903023087000065 ], [ -81.979607321999936, 28.903036042000053 ], [ -81.979604908999988, 28.903036865000047 ], [ -81.979530565999937, 28.903062218000059 ], [ -81.979388014999984, 28.903107270000078 ], [ -81.97923287499998, 28.903153606000046 ], [ -81.978972361999979, 28.903228259000059 ], [ -81.978811367999981, 28.903282322000052 ], [ -81.978588900999966, 28.90336985700003 ], [ -81.978359695999984, 28.903482375000067 ], [ -81.97817000799995, 28.903583309000055 ], [ -81.977982661999988, 28.903673939000043 ], [ -81.977821954999968, 28.903748347000032 ], [ -81.977602410999964, 28.903843609000035 ], [ -81.977388723, 28.903928567000037 ], [ -81.977154544999962, 28.904016100000035 ], [ -81.976928857999951, 28.904089980000037 ], [ -81.976697024999964, 28.904159997000079 ], [ -81.976584620999972, 28.904190885000048 ], [ -81.976466657999936, 28.904219454000042 ], [ -81.976220775999934, 28.904281225000034 ], [ -81.975895864999984, 28.904348133000042 ], [ -81.975834263999957, 28.904359163000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039858591999973, 28.868423785000061 ], [ -82.040348412999947, 28.868426335000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040348412999947, 28.868426335000038 ], [ -82.040709656, 28.868428921000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040709656, 28.868428921000032 ], [ -82.040899467999964, 28.868442337000033 ], [ -82.041034171999968, 28.868453075000048 ], [ -82.041129076999937, 28.868458436000026 ], [ -82.041303720999963, 28.868452042000058 ], [ -82.041419702999974, 28.868427942000039 ], [ -82.041445477999957, 28.868425527000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041445477999957, 28.868425527000056 ], [ -82.041726023999956, 28.868404357000031 ], [ -82.042017038999973, 28.868422256000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.212069619999966, 28.606979261000049 ], [ -82.212099296999952, 28.606837567000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.212099296999952, 28.606837567000071 ], [ -82.212120569999968, 28.606773321000048 ], [ -82.212143984999955, 28.606710960000044 ], [ -82.212180161999981, 28.606608917000074 ], [ -82.212224879999951, 28.60649741800006 ], [ -82.212271746999988, 28.606389695000075 ], [ -82.212320794999982, 28.606302741000036 ], [ -82.212378397999942, 28.606213885000045 ], [ -82.212438119999945, 28.606113694000044 ], [ -82.212502143999984, 28.606024830000024 ], [ -82.212566174999949, 28.605939741000043 ], [ -82.212645179999981, 28.605850851000071 ], [ -82.21270283299998, 28.605786548000026 ], [ -82.212754084999972, 28.605731698000056 ], [ -82.212803204999943, 28.605680628000073 ], [ -82.212884325999937, 28.605580403000033 ], [ -82.212944061999963, 28.605487767000056 ], [ -82.212978160999967, 28.605417835000026 ], [ -82.213027169999975, 28.605311994000033 ], [ -82.213056947999974, 28.605221293000056 ], [ -82.213082449999945, 28.605132489000027 ], [ -82.213092978999953, 28.605047484000067 ], [ -82.213101363999954, 28.604960594000033 ], [ -82.213096854999947, 28.604847283000026 ], [ -82.213083793999942, 28.604737764000049 ], [ -82.213066501999947, 28.604652804000068 ], [ -82.21305990999997, 28.60456782600005 ], [ -82.213059749999957, 28.604488504000074 ], [ -82.213065933999985, 28.604371399000058 ], [ -82.213078606999943, 28.604288280000048 ], [ -82.213114781999934, 28.604186238000068 ], [ -82.213159528999938, 28.604089847000068 ], [ -82.21320005299998, 28.604021794000062 ], [ -82.213296129999947, 28.603910214000052 ], [ -82.213360205999948, 28.603847789000042 ], [ -82.213426952999953, 28.603793956000061 ], [ -82.213511930999971, 28.603739899000061 ], [ -82.213582464999945, 28.603696349000074 ], [ -82.213614217999975, 28.603654678000055 ], [ -82.213626164999937, 28.603619124000033 ], [ -82.213631433999979, 28.60357162300005 ], [ -82.213609837999968, 28.603475337000077 ], [ -82.21356468099998, 28.603367756000068 ], [ -82.213528099999962, 28.603269606000026 ], [ -82.213491547999979, 28.603184675000023 ], [ -82.213461461999941, 28.603122398000039 ], [ -82.213444207999942, 28.603056323000033 ], [ -82.213429090999966, 28.602988357000072 ], [ -82.213420388999964, 28.602918490000036 ], [ -82.213415941999983, 28.602835399000071 ], [ -82.213409360999947, 28.602756087000046 ], [ -82.213411325999971, 28.60266920600003 ], [ -82.213430420999941, 28.602587966000044 ], [ -82.213458111999955, 28.602523709000025 ], [ -82.213490079999985, 28.602457557000037 ], [ -82.213528476999954, 28.602397061000033 ], [ -82.213573275999977, 28.602327112000069 ], [ -82.213605261999987, 28.602270402000045 ], [ -82.213615877999985, 28.602228836000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203509633999943, 28.592813057000058 ], [ -82.203508993999947, 28.592480828000078 ], [ -82.203522782999983, 28.592123019000041 ], [ -82.203518935999966, 28.592004827000039 ], [ -82.203565008999988, 28.591496827000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.195055294999975, 28.650647733000028 ], [ -82.195085068999958, 28.650404178000031 ], [ -82.195092724999938, 28.650185538000073 ], [ -82.195094371999971, 28.649986460000036 ], [ -82.195088860999988, 28.649186607000047 ], [ -82.195088294999948, 28.648880882000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.195088294999948, 28.648880882000071 ], [ -82.195075802999952, 28.647882250000066 ], [ -82.195088722999969, 28.647302081000078 ], [ -82.195088461999944, 28.647161013000073 ], [ -82.195068269999979, 28.647051713000053 ], [ -82.195031274999963, 28.646503358000075 ], [ -82.19499816299998, 28.645893279000063 ], [ -82.195015481999974, 28.645529999000075 ], [ -82.195033131999935, 28.645346583000048 ], [ -82.195056825999984, 28.645187847000045 ], [ -82.195050883999954, 28.644136885000023 ], [ -82.195035599999983, 28.643438612000068 ], [ -82.195013054999947, 28.643137108000076 ], [ -82.194988738999939, 28.642988715000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121199338999986, 28.665626539000073 ], [ -82.121189570999945, 28.666304678000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956953045999967, 28.951708375000067 ], [ -81.954329318999953, 28.949108096000032 ], [ -81.954155736999951, 28.949054684000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958191091999936, 28.95291299400003 ], [ -81.957012318999944, 28.951767468000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103279163999957, 28.927204380000035 ], [ -82.103752010999983, 28.927202255000054 ], [ -82.104560050999964, 28.927196516000038 ], [ -82.105073555999979, 28.927194411000073 ], [ -82.105203388999939, 28.927197719000048 ], [ -82.105317721999938, 28.927202743000066 ], [ -82.105455324, 28.927223093000066 ], [ -82.105583244999934, 28.927251973000068 ], [ -82.105715051999937, 28.927291079000042 ], [ -82.105846865999979, 28.927337004000037 ], [ -82.105963187999976, 28.927391465000028 ], [ -82.106087272999957, 28.927457853000078 ], [ -82.106221063999953, 28.927541280000071 ], [ -82.106337419999988, 28.927629835000062 ], [ -82.106453792999957, 28.927735437000024 ], [ -82.106560485999978, 28.927847867000025 ], [ -82.106775928, 28.928188646000024 ], [ -82.106973911999944, 28.928510688000074 ], [ -82.107752879999964, 28.929803734000075 ], [ -82.108044392999943, 28.930266794000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103250267999954, 28.927206713000032 ], [ -82.103279163999957, 28.927204380000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103250267999954, 28.927206713000032 ], [ -82.101000414999987, 28.927228214000024 ], [ -82.099219620999975, 28.927236357000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953602173999968, 28.87112230300005 ], [ -81.953803170999947, 28.871026146000077 ], [ -81.953843369999959, 28.871006347000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953384447999952, 28.869024547000038 ], [ -81.953816894999989, 28.869073319000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953843369999959, 28.871006347000048 ], [ -81.953798389999974, 28.870929918000058 ], [ -81.953780719999941, 28.870900194000058 ], [ -81.953774298999974, 28.870877551000035 ], [ -81.953772704999949, 28.870847833000028 ], [ -81.953771180999979, 28.870656795000059 ], [ -81.953777831999957, 28.870160099000032 ], [ -81.953782922999949, 28.86955161000003 ], [ -81.953785703999984, 28.869194984000046 ], [ -81.953789530999984, 28.869151140000042 ], [ -81.953816894999989, 28.869073319000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953816894999989, 28.869073319000051 ], [ -81.953874765999956, 28.869077584000024 ], [ -81.954487234999988, 28.869144301000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954487234999988, 28.869144301000063 ], [ -81.954802309999934, 28.869179786000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954476897999939, 28.870729205000032 ], [ -81.954483471999936, 28.870400905000054 ], [ -81.954490108999948, 28.869925436000074 ], [ -81.954491940999958, 28.869410341000048 ], [ -81.954495225999949, 28.869250437000062 ], [ -81.954487234999988, 28.869144301000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989241063999941, 28.900003766000054 ], [ -81.989233978999948, 28.899840201000075 ], [ -81.989232185999981, 28.899717868000039 ], [ -81.98924122699998, 28.899593946000039 ], [ -81.989274136999938, 28.899411783000062 ], [ -81.989280975999975, 28.89938771900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989280975999975, 28.89938771900006 ], [ -81.989354444999947, 28.899133674000041 ], [ -81.989525213999968, 28.898630052000044 ], [ -81.989622292999968, 28.898337277000053 ], [ -81.989672868999946, 28.898098969000046 ], [ -81.989703580999958, 28.897881314000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988972405999959, 28.897830415000044 ], [ -81.989124058999948, 28.897835194000038 ], [ -81.989520212999935, 28.89786136400005 ], [ -81.989703580999958, 28.897881314000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989280975999975, 28.89938771900006 ], [ -81.989132925999968, 28.899366747000045 ], [ -81.988968634999935, 28.899350846000061 ], [ -81.988862582999957, 28.89934093100004 ], [ -81.988811565999981, 28.899334945000078 ], [ -81.988768236999988, 28.899323820000063 ], [ -81.988712273999965, 28.899295218000077 ], [ -81.988667140999951, 28.899260262000041 ], [ -81.988641869999981, 28.899225307000052 ], [ -81.98862201299994, 28.899185587000034 ], [ -81.988618410999948, 28.899123626000062 ], [ -81.988631053999939, 28.899072788000069 ], [ -81.988670785999943, 28.898947280000073 ], [ -81.988822437999943, 28.898479764000058 ], [ -81.988936267999975, 28.898122743000044 ], [ -81.988950718999945, 28.898043305000044 ], [ -81.98896155999995, 28.897959103000062 ], [ -81.988972405999959, 28.897830415000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988972405999959, 28.897830415000044 ], [ -81.988993254999968, 28.897530264000068 ], [ -81.988991914999986, 28.897176157000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989703580999958, 28.897881314000074 ], [ -81.989788434, 28.89788767400006 ], [ -81.989864258999944, 28.897898801000053 ], [ -81.990147696999941, 28.897965550000038 ], [ -81.990243380999971, 28.897992565000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990705673999969, 28.896721600000035 ], [ -81.990745406999963, 28.896543664000035 ], [ -81.990777922999939, 28.896340305000024 ], [ -81.990790448999974, 28.896145052000065 ], [ -81.990790469, 28.895927669000059 ], [ -81.990766388999987, 28.895686427000044 ], [ -81.990742301999944, 28.895535318000043 ], [ -81.990700145999938, 28.895352395000032 ], [ -81.990648949999979, 28.895182727000076 ], [ -81.990597750999939, 28.895055476000039 ], [ -81.99055257599997, 28.894933527000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975194449999947, 28.949585283000033 ], [ -81.975214488999939, 28.94965512400006 ], [ -81.975234972999942, 28.949797122000064 ], [ -81.975237308999965, 28.949903076000055 ], [ -81.975227842999971, 28.949975788000074 ], [ -81.975204199999951, 28.950071349000041 ], [ -81.975171111999941, 28.950156522000043 ], [ -81.975130941999964, 28.950227150000046 ], [ -81.975088410999945, 28.950295699000037 ], [ -81.975012804999949, 28.950380864000067 ], [ -81.974939564999943, 28.950449409000043 ], [ -81.974868687999958, 28.950515877000043 ], [ -81.97477182199998, 28.950615580000033 ], [ -81.974660771999936, 28.950758908000068 ], [ -81.974567877999959, 28.950881954000067 ], [ -81.974516201999961, 28.950982540000041 ], [ -81.974464526999952, 28.951081502000079 ], [ -81.974424701999965, 28.951176755000063 ], [ -81.974389503999987, 28.951269560000071 ], [ -81.974358181999946, 28.951396034000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974358181999946, 28.951396034000027 ], [ -81.974329755999975, 28.951517928000044 ], [ -81.974324516999957, 28.951619143000073 ], [ -81.974315693999984, 28.951735158000076 ], [ -81.974301023999942, 28.951799607000055 ], [ -81.974283421999985, 28.951853745000051 ], [ -81.974245304999954, 28.951897565000024 ], [ -81.974201330999961, 28.95192591600005 ], [ -81.974151493999955, 28.951949109000054 ], [ -81.974095799999986, 28.951959412000065 ], [ -81.974037174999978, 28.951959400000078 ], [ -81.973395240999935, 28.951959275000036 ], [ -81.972794342999975, 28.951959155000054 ], [ -81.97254202299996, 28.95195913200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973166072999959, 28.95065610100005 ], [ -81.973199791999946, 28.950711797000054 ], [ -81.973230916999967, 28.950786927000024 ], [ -81.973255319999964, 28.950939380000079 ], [ -81.973267095999972, 28.951076499000067 ], [ -81.973271804999968, 28.951136748000067 ], [ -81.973287438999989, 28.95119102700005 ], [ -81.973314294999966, 28.951236477000066 ], [ -81.973356801999955, 28.951275959000043 ], [ -81.973411417999955, 28.951300121000031 ], [ -81.973458654999945, 28.951313114000072 ], [ -81.973529514999939, 28.951315726000075 ], [ -81.973615138999946, 28.951315742000077 ], [ -81.973753908999981, 28.951315770000065 ], [ -81.973978301999978, 28.951315813000065 ], [ -81.974102309999978, 28.95131843300004 ], [ -81.974149013999977, 28.951322398000059 ], [ -81.974192009999967, 28.951332117000049 ], [ -81.974233263999963, 28.951342858000032 ], [ -81.974281488999964, 28.951359733000061 ], [ -81.974309378999976, 28.951369448000037 ], [ -81.974358181999946, 28.951396034000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974358181999946, 28.951396034000027 ], [ -81.974405825999952, 28.951417508000077 ], [ -81.974457537999967, 28.951434895000034 ], [ -81.974490654999954, 28.951445634000038 ], [ -81.974541206999959, 28.951458931000047 ], [ -81.974897834999979, 28.951541355000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974790102999975, 28.946539437000069 ], [ -81.974880330999952, 28.946496327000034 ], [ -81.974939124999935, 28.946469069000045 ], [ -81.974986564999938, 28.946446691000062 ], [ -81.975052148999964, 28.946417910000036 ], [ -81.97514623099994, 28.946379560000025 ], [ -81.97524341899998, 28.946338874000048 ], [ -81.975347548999935, 28.946297173000062 ], [ -81.975442422999947, 28.94626259100005 ], [ -81.975540766999984, 28.946225976000051 ], [ -81.975650679999944, 28.946190381000065 ], [ -81.975752493999948, 28.946155801000032 ], [ -81.975861249, 28.946122240000079 ], [ -81.975987355999962, 28.946086647000072 ], [ -81.976091483999937, 28.946057156000052 ], [ -81.976201394999975, 28.946031735000076 ], [ -81.976293949999956, 28.946009365000066 ], [ -81.97635179699995, 28.945998182000039 ], [ -81.97640501799998, 28.945986997000034 ], [ -81.976450137999961, 28.945976829000074 ], [ -81.976492944999961, 28.945969713000068 ], [ -81.976538064999943, 28.945960563000028 ], [ -81.97657739999994, 28.945953447000079 ], [ -81.976619048999964, 28.945946331000073 ], [ -81.976654914999983, 28.945938197000032 ], [ -81.976703507999957, 28.945924977000061 ], [ -81.976747471999943, 28.945910738000066 ], [ -81.97680878999995, 28.945890397000028 ], [ -81.976846971999976, 28.945876157000043 ], [ -81.976885151999966, 28.945861917000059 ], [ -81.976921019999963, 28.945845641000062 ], [ -81.976949943999955, 28.945832417000076 ], [ -81.976976555999954, 28.945819194000023 ], [ -81.97699969599995, 28.945805970000038 ], [ -81.977025150999964, 28.945793762000051 ], [ -81.977050709999958, 28.945779901000037 ], [ -81.977073744999984, 28.945766296000045 ], [ -81.977096886999959, 28.945751036000047 ], [ -81.977123498999958, 28.945735777000039 ], [ -81.977151266999954, 28.945718483000064 ], [ -81.977175564999982, 28.945701188000044 ], [ -81.977201019999939, 28.945683893000023 ], [ -81.977234577, 28.945658459000072 ], [ -81.977258873999972, 28.945640147000063 ], [ -81.977288958999964, 28.945614712000065 ], [ -81.97731788699997, 28.945589277000067 ], [ -81.977347969999983, 28.945563843000059 ], [ -81.977403511999967, 28.945516025000074 ], [ -81.977464836999957, 28.945462103000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974394658999984, 28.94678672200007 ], [ -81.974455470999942, 28.946754854000062 ], [ -81.974693163999973, 28.946588663000057 ], [ -81.974729829999944, 28.946568123000077 ], [ -81.974790102999975, 28.946539437000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01261104799994, 28.937948059000064 ], [ -82.012530720999962, 28.937946313000054 ], [ -82.012379869999961, 28.937938420000023 ], [ -82.011895500999969, 28.937895523000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012063492999971, 28.93723699800006 ], [ -82.012021106999953, 28.937361105000036 ], [ -82.011968036999974, 28.93756157200005 ], [ -82.01192696399994, 28.93771589000005 ], [ -82.011903644999961, 28.937834070000065 ], [ -82.011895500999969, 28.937895523000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954192574999979, 28.929082577000031 ], [ -81.954227955999954, 28.929090407000047 ], [ -81.954283829999952, 28.929103489000056 ], [ -81.954339312999934, 28.929117259000066 ], [ -81.954394601, 28.929132061000075 ], [ -81.954449497999974, 28.929147549000049 ], [ -81.954504001999965, 28.929163725000024 ], [ -81.954558313999939, 28.929180932000065 ], [ -81.954612427999962, 28.92919917100005 ], [ -81.95466595399995, 28.929218096000056 ], [ -81.954719090999959, 28.929237710000052 ], [ -81.954771835999964, 28.929258354000069 ], [ -81.954824189999954, 28.929279686000029 ], [ -81.957063730999948, 28.930190597000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957063730999948, 28.930190597000035 ], [ -81.957192490999944, 28.930244424000023 ], [ -81.957438797999941, 28.930352862000063 ], [ -81.957586582999966, 28.930410701000028 ], [ -81.957759001999989, 28.930475772000079 ], [ -81.957873949999964, 28.930514336000044 ], [ -81.957956055999944, 28.930540850000057 ], [ -81.958069503, 28.930569173000038 ], [ -81.958174583999948, 28.930597455000054 ], [ -81.958355556999948, 28.930641168000079 ], [ -81.958548206999978, 28.930684886000051 ], [ -81.959053388999962, 28.93080242700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957301128999973, 28.929752207000035 ], [ -81.956808853999974, 28.929545867000058 ], [ -81.956652165999969, 28.929480246000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140724936999959, 28.668773783000063 ], [ -82.140830686999948, 28.668824060000077 ], [ -82.140912423999964, 28.668842209000047 ], [ -82.141599124999971, 28.668889947000025 ], [ -82.141653271999985, 28.668895621000047 ], [ -82.141692270999954, 28.668909904000031 ], [ -82.14172044299994, 28.66892419900006 ], [ -82.141748629999938, 28.668949954000027 ], [ -82.141772492999962, 28.668980489000035 ], [ -82.14178985999996, 28.669012939000027 ], [ -82.141801609999959, 28.669054308000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045419446999972, 28.850914769000042 ], [ -82.046279456999969, 28.850898842000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11666517599997, 28.670340258000067 ], [ -82.117911168999967, 28.670354317000033 ], [ -82.118798420999951, 28.670351498000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116299825999988, 28.669495432000076 ], [ -82.116568914999959, 28.66949737300007 ], [ -82.117094774999941, 28.669494876000044 ], [ -82.118461553999964, 28.66949573100004 ], [ -82.118799786999944, 28.669507693000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040808564999963, 28.870846125000071 ], [ -82.041901505999988, 28.870853874000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041901505999988, 28.870853874000034 ], [ -82.04382409699997, 28.870858652000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041933048999965, 28.871805659000074 ], [ -82.043817710999974, 28.871802096000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043101244999946, 28.862589894000052 ], [ -82.043869214999972, 28.862880780000069 ], [ -82.044925292999949, 28.86325411100006 ], [ -82.045302087999971, 28.863394115000062 ], [ -82.045652339999947, 28.863501430000042 ], [ -82.045859284999949, 28.863515372000052 ], [ -82.046060920999935, 28.863517639000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046058904999938, 28.864211245000035 ], [ -82.046800302999941, 28.864220381000052 ], [ -82.046843258999957, 28.864214522000054 ], [ -82.046883683999965, 28.864208663000056 ], [ -82.046926120999956, 28.864185292000059 ], [ -82.046960598999988, 28.864157254000077 ], [ -82.046987116999958, 28.864129219000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046038997999972, 28.861934180000048 ], [ -82.046099710999954, 28.861923568000066 ], [ -82.046317551999948, 28.861901388000035 ], [ -82.046601905999978, 28.861895189000052 ], [ -82.046821625999939, 28.861898877000044 ], [ -82.046898565999982, 28.861898850000046 ], [ -82.046970196999951, 28.861901162000038 ], [ -82.047023266999986, 28.861919827000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043399153999985, 28.861748216000024 ], [ -82.043568961999938, 28.861783193000065 ], [ -82.044325093999987, 28.861824986000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044325093999987, 28.861824986000045 ], [ -82.044415299999969, 28.86183429700003 ], [ -82.044540003999941, 28.86186228300005 ], [ -82.045516325999984, 28.861875970000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044325093999987, 28.861824986000045 ], [ -82.044628260999957, 28.861104160000025 ], [ -82.044961214999944, 28.860418805000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060140209999986, 28.800777185000072 ], [ -82.060133847999964, 28.801686973000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041674709999938, 28.84395435700003 ], [ -82.041768548999983, 28.843914657000028 ], [ -82.041943663999973, 28.843835468000066 ], [ -82.042022002999943, 28.843794862000038 ], [ -82.042093426999941, 28.843756288000066 ], [ -82.042153333999977, 28.843727862000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042153333999977, 28.843727862000037 ], [ -82.042227059999959, 28.843677112000023 ], [ -82.042273130999945, 28.843628400000057 ], [ -82.042307680999954, 28.843585778000033 ], [ -82.042339928999979, 28.843545187000075 ], [ -82.042388674999984, 28.843470232000072 ], [ -82.042436656999939, 28.843392975000029 ], [ -82.042669253999975, 28.842995202000054 ], [ -82.042742763999968, 28.842860969000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00186525099997, 28.871775885000034 ], [ -82.001881567999988, 28.87171197300006 ], [ -82.001894948999961, 28.871653120000076 ], [ -82.001952706999987, 28.871467427000027 ], [ -82.002004447, 28.871311183000046 ], [ -82.00204006599995, 28.871238213000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960322915999939, 28.881834823000077 ], [ -81.960463450999953, 28.88185403500006 ], [ -81.960637327999962, 28.88187788700003 ], [ -81.960847071999979, 28.881899626000063 ], [ -81.961043439999969, 28.881912814000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961043439999969, 28.881912814000032 ], [ -81.961064624999949, 28.881914108000046 ], [ -81.961528207999947, 28.881941168000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960157432999949, 28.879964616000052 ], [ -81.960257811999952, 28.87996705300003 ], [ -81.960526924999954, 28.879972288000033 ], [ -81.96073764199997, 28.879982663000078 ], [ -81.960789849999969, 28.879992205000065 ], [ -81.960838380999974, 28.880019782000034 ], [ -81.960878032999972, 28.88004974200004 ], [ -81.960904118999963, 28.880092845000036 ], [ -81.960919009999941, 28.880142230000047 ], [ -81.96096560899997, 28.880348166000033 ], [ -81.961006520999945, 28.880615982000052 ], [ -81.961041550999937, 28.880945677000057 ], [ -81.961057131999951, 28.881268480000074 ], [ -81.961057790999973, 28.881544683000072 ], [ -81.961043439999969, 28.881912814000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961043439999969, 28.881912814000032 ], [ -81.961030168999969, 28.882109387000071 ], [ -81.961011744999951, 28.882315628000072 ], [ -81.960978065999939, 28.882552825000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993305920999944, 28.880881453000029 ], [ -81.993207555999959, 28.880563697000071 ], [ -81.993128287, 28.880256011000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984198320999951, 28.883694767000065 ], [ -81.984476285999961, 28.88334277000007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983756865999965, 28.884266382000078 ], [ -81.983827367999936, 28.884181514000034 ], [ -81.983982927999989, 28.883964701000025 ], [ -81.984107754999968, 28.883797045000051 ], [ -81.984198320999951, 28.883694767000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961336055999936, 28.876495910000074 ], [ -81.961472398999945, 28.876169319000041 ], [ -81.96155231399996, 28.876006716000063 ], [ -81.961699599999974, 28.875726986000075 ], [ -81.961846874999935, 28.875474820000079 ], [ -81.961964374, 28.875290176000078 ], [ -81.962341905999949, 28.874788623000029 ], [ -81.962460952999947, 28.874648081000032 ], [ -81.962608189999969, 28.874492389000068 ], [ -81.962805541999955, 28.874303631000032 ], [ -81.963074750999965, 28.874073709000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96141980799996, 28.873629135000044 ], [ -81.961711325999943, 28.873844711000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960933248999936, 28.874814535000041 ], [ -81.960968237999964, 28.874756173000037 ], [ -81.961014083999942, 28.874684015000071 ], [ -81.961233646999972, 28.874378419000038 ], [ -81.961509894999949, 28.874033568000073 ], [ -81.961634368999967, 28.87390429800007 ], [ -81.961711325999943, 28.873844711000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960790889999942, 28.875021451000066 ], [ -81.960828290999984, 28.87496627400003 ], [ -81.960892233999971, 28.874867589000075 ], [ -81.960933248999936, 28.874814535000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957926970999949, 28.873592123000037 ], [ -81.957944712999961, 28.873450619000039 ], [ -81.957968859999937, 28.873369966000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95592486399994, 28.87224991100004 ], [ -81.955746110999939, 28.872061267000049 ], [ -81.955662578999977, 28.871960350000052 ], [ -81.955588601999978, 28.871851031000062 ], [ -81.955514630999971, 28.871726997000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95592486399994, 28.87224991100004 ], [ -81.95557612999994, 28.872583463000069 ], [ -81.955561784999986, 28.872607457000072 ], [ -81.955548240999974, 28.872636284000066 ], [ -81.955541259999961, 28.872670067000058 ], [ -81.955539634, 28.872711753000033 ], [ -81.955546045999938, 28.872757097000033 ], [ -81.955559294999944, 28.872791064000069 ], [ -81.955578173999982, 28.872817425000051 ], [ -81.955631743999959, 28.872862726000051 ], [ -81.955780150999942, 28.872964941000077 ], [ -81.956318689999989, 28.873267915000042 ], [ -81.956786601999966, 28.87354130600005 ], [ -81.956977588999962, 28.873646460000032 ], [ -81.957170986999984, 28.873701170000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955268946999979, 28.871108971000069 ], [ -81.955230800999971, 28.870972338000058 ], [ -81.955203513999948, 28.870804448000058 ], [ -81.955192720999946, 28.870680169000025 ], [ -81.955183309999939, 28.870356480000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954595601999984, 28.871326415000055 ], [ -81.954560262999962, 28.871264138000072 ], [ -81.954513676999966, 28.871182048000037 ], [ -81.954494402999956, 28.871141003000048 ], [ -81.95448477399998, 28.871101377000059 ], [ -81.954480007999962, 28.870971188000055 ], [ -81.954476886999942, 28.870754676000047 ], [ -81.954476897999939, 28.870729205000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953843369999959, 28.871006347000048 ], [ -81.954380425999943, 28.870761720000075 ], [ -81.954476897999939, 28.870729205000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991703374999986, 28.885728202000053 ], [ -81.991722122999988, 28.88573851600006 ], [ -81.991944874999945, 28.885879783000064 ], [ -81.99204584599994, 28.88593591700004 ], [ -81.992212360999986, 28.88600920500005 ], [ -81.992322190999971, 28.886046630000067 ], [ -81.992421093999951, 28.886072023000054 ], [ -81.992573740999944, 28.886101213000074 ], [ -81.993026533999966, 28.886167626000031 ], [ -81.99388801799995, 28.886301741000068 ], [ -81.994389948999981, 28.886392865000062 ], [ -81.994534473999977, 28.886413154000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993278735999979, 28.872066754000059 ], [ -81.993166668999947, 28.871784158000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008368170999972, 28.942022612000073 ], [ -82.008406659999935, 28.942197222000061 ], [ -82.00841348299997, 28.942310161000023 ], [ -82.008404221999967, 28.942369429000053 ], [ -82.008390748999943, 28.942410176000067 ], [ -82.008371918999956, 28.942441864000045 ], [ -82.008362148999936, 28.942456647000029 ], [ -82.008351988999948, 28.942471086000069 ], [ -82.008341633999976, 28.942485525000052 ], [ -82.008331081999984, 28.942499621000024 ], [ -82.008320140999956, 28.942513716000065 ], [ -82.008308807999981, 28.942527812000037 ], [ -82.008297475999939, 28.942541564000067 ], [ -82.008285751999949, 28.94255497100005 ], [ -82.008273636999945, 28.942568379000079 ], [ -82.008261326999957, 28.942581444000041 ], [ -82.008248821999985, 28.94259450800007 ], [ -82.007798824999952, 28.943057600000031 ], [ -82.007748607999986, 28.943110201000025 ], [ -82.007699561999971, 28.943163489000028 ], [ -82.007651495999937, 28.943217465000032 ], [ -82.007604405999984, 28.943272472000046 ], [ -82.007558486999983, 28.943327822000072 ], [ -82.007513741999958, 28.94338420400004 ], [ -82.007470167999941, 28.943440929000076 ], [ -82.007427572999973, 28.943498686000055 ], [ -82.007386148999956, 28.943556786000045 ], [ -82.007345898999972, 28.943615574000034 ], [ -82.007307014999981, 28.943675050000024 ], [ -82.007269108999935, 28.943735213000025 ], [ -82.007232376, 28.943795720000026 ], [ -82.00719700999997, 28.943856913000047 ], [ -82.007162817999983, 28.943918450000069 ], [ -82.007129796999948, 28.943980676000024 ], [ -82.007097948999956, 28.944043245000046 ], [ -82.007067468999935, 28.944106502000068 ], [ -82.007038160999969, 28.944170102000044 ], [ -82.007010219999984, 28.944234388000041 ], [ -82.006983453999965, 28.944298676000074 ], [ -82.006958052999948, 28.94436365100006 ], [ -82.006933826999955, 28.944428969000057 ], [ -82.006910967999943, 28.944494632000044 ], [ -82.006889476999959, 28.944560638000041 ], [ -82.006869352999956, 28.944626644000039 ], [ -82.006850401999941, 28.944693337000047 ], [ -82.006782998999938, 28.944945640000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960038843999939, 28.927502166000068 ], [ -81.960332017999974, 28.927221764000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981275207999943, 28.895368630000064 ], [ -81.981319410999959, 28.89558741500008 ], [ -81.981333448999976, 28.895727679000061 ], [ -81.981349829999942, 28.895872068000074 ], [ -81.981373240999972, 28.896028834000049 ], [ -81.981407426999965, 28.896215146000031 ], [ -81.981422840999983, 28.89627792400006 ], [ -81.981463316999964, 28.896333918000039 ], [ -81.981507654999973, 28.896366160000071 ], [ -81.981581586999937, 28.896396018000075 ], [ -81.98164260599998, 28.89640350600007 ], [ -81.981708158999936, 28.896393335000027 ], [ -81.981862869999986, 28.896307362000073 ], [ -81.982045710999955, 28.89620837800004 ], [ -81.982144979999987, 28.896164637000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009738200999948, 28.912215960000026 ], [ -82.009779716999958, 28.911982773000034 ], [ -82.009809582999935, 28.911734565000074 ], [ -82.009825779999971, 28.911560267000027 ], [ -82.009831231999954, 28.911366721000036 ], [ -82.009826682999972, 28.910760985000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004859851999981, 28.931554291000054 ], [ -82.005035216999943, 28.931645649000075 ], [ -82.005223355999988, 28.931766292000077 ], [ -82.005301842999984, 28.931813104000071 ], [ -82.005397002999985, 28.931878417000064 ], [ -82.005440448999934, 28.931908923000037 ], [ -82.00555572899998, 28.931988354000055 ], [ -82.005665089, 28.932058202000064 ], [ -82.005756729999973, 28.932117328000061 ], [ -82.005848566999987, 28.932179203000032 ], [ -82.005950760999951, 28.93223832700005 ], [ -82.006060183999978, 28.932294015000025 ], [ -82.006149285999982, 28.93234179500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00638497999995, 28.92959428000006 ], [ -82.006501047999961, 28.929859198000031 ], [ -82.006557878999956, 28.929984921000027 ], [ -82.00658888199996, 28.930027533000043 ], [ -82.006625697999937, 28.930068439000024 ], [ -82.006695451999974, 28.930124685000067 ], [ -82.006955658999971, 28.930340366000053 ], [ -82.007237993999979, 28.930579758000079 ], [ -82.007282558999975, 28.930615551000074 ], [ -82.007342902999937, 28.930652553000073 ], [ -82.007504614999959, 28.930703625000035 ], [ -82.007649249999986, 28.930709777000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007174274999954, 28.929669989000047 ], [ -82.007379165999964, 28.929677274000028 ], [ -82.007657377999976, 28.929676468000025 ], [ -82.007749150999985, 28.929677147000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007745839999984, 28.930119792000028 ], [ -82.008275294999976, 28.930109203000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008275294999976, 28.930109203000029 ], [ -82.008383250999941, 28.93010890000005 ], [ -82.008397317999936, 28.930109243000061 ], [ -82.009463159999939, 28.930122236000045 ], [ -82.009467849999965, 28.930122235000056 ], [ -82.009472538999944, 28.930122235000056 ], [ -82.009477032999939, 28.930121892000045 ], [ -82.009481722999965, 28.930121547000056 ], [ -82.009486410999955, 28.930120859000056 ], [ -82.00949090499995, 28.930120172000045 ], [ -82.009495398999945, 28.930119140000045 ], [ -82.009499892999941, 28.930118108000045 ], [ -82.009504386999936, 28.930117076000045 ], [ -82.009508684999957, 28.930115701000034 ], [ -82.009513178999953, 28.930114326000023 ], [ -82.009517476999974, 28.930112950000023 ], [ -82.009521579999955, 28.930111231000069 ], [ -82.009525877999977, 28.930109512000058 ], [ -82.009529980999957, 28.930107449000047 ], [ -82.009533887999964, 28.930105386000037 ], [ -82.009537795999961, 28.930103323000026 ], [ -82.009541703999957, 28.930100917000061 ], [ -82.00954541599998, 28.930098509000061 ], [ -82.009549127999946, 28.930096103000039 ], [ -82.009552644999985, 28.930093352000029 ], [ -82.009555966999983, 28.930090602000064 ], [ -82.009559286999945, 28.930087851000053 ], [ -82.009562608999943, 28.930084757000031 ], [ -82.009565735999956, 28.930082007000067 ], [ -82.009568664999961, 28.930078569000045 ], [ -82.00957139999997, 28.930075474000034 ], [ -82.009574135999969, 28.93007203600007 ], [ -82.009576674999948, 28.930068942000048 ], [ -82.009579214999974, 28.930065160000026 ], [ -82.009581559999958, 28.930061722000062 ], [ -82.009583708999969, 28.93005828500003 ], [ -82.009585662999939, 28.930054503000065 ], [ -82.009587615999976, 28.930050721000043 ], [ -82.009589373999972, 28.930046939000079 ], [ -82.009590935999938, 28.930043158000046 ], [ -82.009592303999966, 28.930039376000025 ], [ -82.009593475999964, 28.93003525000006 ], [ -82.009594647999961, 28.930031469000028 ], [ -82.009595623999985, 28.930027344000052 ], [ -82.009596404999968, 28.930023218000031 ], [ -82.009596991999956, 28.930019436000066 ], [ -82.009597576999965, 28.930015312000023 ], [ -82.00959777199995, 28.930011186000058 ], [ -82.009597965999944, 28.930007061000026 ], [ -82.00960340599994, 28.92966053400005 ], [ -82.00960340599994, 28.929656410000064 ], [ -82.009603210999956, 28.929652284000042 ], [ -82.009603013999936, 28.929648502000077 ], [ -82.009602427999937, 28.929644377000045 ], [ -82.009601839999959, 28.92964025200007 ], [ -82.009600863999935, 28.929636126000048 ], [ -82.009599886, 28.929632345000073 ], [ -82.009598909999966, 28.929628220000041 ], [ -82.009597540999948, 28.92962443700003 ], [ -82.009596172999977, 28.929620656000054 ], [ -82.009594413999935, 28.929616531000079 ], [ -82.009592655999938, 28.929613093000057 ], [ -82.009590895999963, 28.929609312000025 ], [ -82.009588746999952, 28.92960553000006 ], [ -82.009586596999952, 28.929602092000039 ], [ -82.009584251999968, 28.929598312000053 ], [ -82.009581712999989, 28.929594874000031 ], [ -82.009579170999984, 28.929591437000056 ], [ -82.009576434999985, 28.929588342000045 ], [ -82.009573504999935, 28.92958524900007 ], [ -82.009570572999962, 28.929581811000048 ], [ -82.009567446999938, 28.929579061000027 ], [ -82.009564320999971, 28.929575968000051 ], [ -82.009560802999943, 28.929573217000041 ], [ -82.009557481999934, 28.929570468000065 ], [ -82.009553964999952, 28.929567717000054 ], [ -82.00955025199994, 28.929565312000079 ], [ -82.009546539999974, 28.929562905000068 ], [ -82.009542631999977, 28.929560842000058 ], [ -82.009538723999981, 28.929558437000026 ], [ -82.009534619999954, 28.929556374000072 ], [ -82.009530518999952, 28.92955465600005 ], [ -82.009526413999936, 28.929552937000039 ], [ -82.009522114999982, 28.929551219000075 ], [ -82.00951781599997, 28.929549844000064 ], [ -82.009513517999949, 28.929548469000054 ], [ -82.009509023999954, 28.929547094000043 ], [ -82.009504528999969, 28.929546063000032 ], [ -82.009500035999963, 28.929545033000068 ], [ -82.009495541999968, 28.929544001000068 ], [ -82.009491047999973, 28.929543314000057 ], [ -82.009486357999947, 28.929542971000046 ], [ -82.009481669999957, 28.929542627000046 ], [ -82.009477174999972, 28.929542283000046 ], [ -82.009472485999936, 28.929541940000036 ], [ -82.008406455999989, 28.929528947000051 ], [ -82.008401765999963, 28.929528948000041 ], [ -82.008397270999978, 28.929528948000041 ], [ -82.008392581999942, 28.929529292000041 ], [ -82.008387892999963, 28.929529979000051 ], [ -82.008383398999968, 28.929530324000041 ], [ -82.008378905999962, 28.929531012000041 ], [ -82.008374215999936, 28.929532043000052 ], [ -82.008369721999941, 28.929533075000052 ], [ -82.008365424999965, 28.929534107000052 ], [ -82.008360929999981, 28.929535482000063 ], [ -82.00835663099997, 28.929536857000073 ], [ -82.008352332999948, 28.929538233000073 ], [ -82.008348034999983, 28.929539952000027 ], [ -82.008343932999935, 28.929542014000049 ], [ -82.008339828999965, 28.92954373300006 ], [ -82.008335726999974, 28.92954579700006 ], [ -82.008331818999977, 28.929547860000071 ], [ -82.008328106999954, 28.929550267000025 ], [ -82.008324394999988, 28.929552673000046 ], [ -82.008320682999965, 28.929555080000057 ], [ -82.008317164999937, 28.929557830000078 ], [ -82.008313647999955, 28.929560581000032 ], [ -82.008310327999936, 28.929563331000054 ], [ -82.00830720099998, 28.929566425000075 ], [ -82.008304075999945, 28.92956951900004 ], [ -82.008301144999962, 28.929572614000051 ], [ -82.008298214999968, 28.929575708000073 ], [ -82.008295478999969, 28.929579146000037 ], [ -82.00829294, 28.929582584000059 ], [ -82.008290594999949, 28.929586022000024 ], [ -82.008288249999964, 28.929589460000045 ], [ -82.008286101999943, 28.929593241000077 ], [ -82.008283951999942, 28.929596679000042 ], [ -82.008282194999936, 28.929600460000074 ], [ -82.008280436999939, 28.929604242000039 ], [ -82.008278873999984, 28.929608024000061 ], [ -82.008277506999946, 28.929612150000025 ], [ -82.008276137999985, 28.929615930000068 ], [ -82.008275162999951, 28.929620056000033 ], [ -82.008274184999948, 28.929623838000055 ], [ -82.008273404999954, 28.929627964000076 ], [ -82.008272623999972, 28.929632090000041 ], [ -82.008272231999968, 28.929635871000073 ], [ -82.008271842999989, 28.929639996000049 ], [ -82.008271842999989, 28.92964412200007 ], [ -82.008270999, 28.929910752000069 ], [ -82.008272262999981, 28.930026744000031 ], [ -82.008275294999976, 28.930109203000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014634372999978, 28.939231583000037 ], [ -82.014633462999939, 28.939322945000072 ], [ -82.014635659999954, 28.93965881400004 ], [ -82.014633217999972, 28.939828734000059 ], [ -82.014629552999963, 28.939851324000074 ], [ -82.014620383999954, 28.939877143000047 ], [ -82.014566884999965, 28.939956797000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012551992999988, 28.938594529000056 ], [ -82.012813498999947, 28.938595213000042 ], [ -82.01327953699996, 28.938595168000063 ], [ -82.013946644999976, 28.938595100000043 ], [ -82.014429424999946, 28.938597532000074 ], [ -82.014480252999988, 28.938609090000057 ], [ -82.014531684999952, 28.938627180000026 ], [ -82.014563344999942, 28.938650769000049 ], [ -82.014585360999945, 28.938671744000033 ], [ -82.014607378999983, 28.938700787000073 ], [ -82.014625727999942, 28.938734672000066 ], [ -82.014638574999935, 28.938784694000049 ], [ -82.014638702999946, 28.938946564000048 ], [ -82.014634372999978, 28.939231583000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014626746999966, 28.94081529400006 ], [ -82.014745587999982, 28.940790827000058 ], [ -82.014834718999964, 28.940778593000061 ], [ -82.014967238999986, 28.940767763000053 ], [ -82.015009831999976, 28.940773268000044 ], [ -82.015059943999972, 28.940788690000034 ], [ -82.015086075999989, 28.940811315000076 ], [ -82.015106300999946, 28.940833864000069 ], [ -82.015123842999969, 28.940861411000071 ], [ -82.015133869999943, 28.940890060000072 ], [ -82.015137630999959, 28.940917609000053 ], [ -82.015138888999957, 28.940944056000035 ], [ -82.015140589999987, 28.941039814000078 ], [ -82.015135132999944, 28.941560609000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005842876999964, 28.942314520000025 ], [ -82.005971526999986, 28.942350410000074 ], [ -82.006110114999956, 28.942376360000026 ], [ -82.006437279999943, 28.942419790000031 ], [ -82.006650671999978, 28.942474097000058 ], [ -82.006879893999951, 28.94256106000006 ], [ -82.007161099999962, 28.942696492000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00590755199994, 28.943139801000029 ], [ -82.006106561999957, 28.943118944000048 ], [ -82.006247137999935, 28.943112742000039 ], [ -82.006350501999975, 28.943122389000052 ], [ -82.00644811899997, 28.943150636000041 ], [ -82.006732073999956, 28.943252608000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007161099999962, 28.942696492000039 ], [ -82.007091181999954, 28.94278183800003 ], [ -82.00698089499997, 28.942918551000048 ], [ -82.00684554299994, 28.943096428000047 ], [ -82.006732073999956, 28.943252608000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008793460999982, 28.943164972000034 ], [ -82.008580728999959, 28.943339157000025 ], [ -82.008477734999985, 28.943418947000055 ], [ -82.008333236999988, 28.943546067000057 ], [ -82.008254748999946, 28.943615597000075 ], [ -82.00818800899998, 28.943683118000024 ], [ -82.008127152999975, 28.943755129000067 ], [ -82.008044518999952, 28.943859257000042 ], [ -82.007961095999974, 28.943976682000027 ], [ -82.00790103199995, 28.944076494000058 ], [ -82.007834295999942, 28.944199788000049 ], [ -82.007747575999986, 28.944375034000075 ], [ -82.007630759999984, 28.944684707000079 ], [ -82.007532397999967, 28.94507145700004 ], [ -82.007462620999945, 28.945223115000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966792575999989, 28.908085068000048 ], [ -81.96672831799998, 28.908052050000038 ], [ -81.966623969999944, 28.907997453000064 ], [ -81.966537444999972, 28.907937834000052 ], [ -81.966447165999966, 28.907858350000026 ], [ -81.966353126999934, 28.907760653000025 ], [ -81.966254928999945, 28.907645931000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966254928999945, 28.907645931000047 ], [ -81.96619514799994, 28.90758678900005 ], [ -81.966044688999943, 28.907427828000039 ], [ -81.965904209999962, 28.907274219000044 ], [ -81.965852859999984, 28.907210913000029 ], [ -81.965835941999956, 28.907164556000055 ], [ -81.965834074999975, 28.907118202000049 ], [ -81.965845383999977, 28.907056953000051 ], [ -81.965877386999978, 28.906997364000063 ], [ -81.965962092999973, 28.906859981000025 ], [ -81.966045647999977, 28.906726701000025 ], [ -81.96607277399994, 28.90666959400005 ], [ -81.966101327999979, 28.906598210000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968769462999944, 28.909359504000065 ], [ -81.968660359999944, 28.90941090900003 ], [ -81.968533994999973, 28.909457159000056 ], [ -81.968436917999952, 28.909476106000056 ], [ -81.968369186999951, 28.909477332000051 ], [ -81.96831274699997, 28.909466144000078 ], [ -81.968260543999975, 28.909449990000041 ], [ -81.968202696999981, 28.909425145000057 ], [ -81.96816178499995, 28.909396579000031 ], [ -81.968123696999953, 28.909363047000056 ], [ -81.968091257999959, 28.909314616000074 ], [ -81.96805035999995, 28.909240111000031 ], [ -81.967964329999973, 28.909092341000076 ], [ -81.967875510999988, 28.908934462000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994703260999984, 28.91987832500007 ], [ -81.995016652999936, 28.919796404000067 ], [ -81.995466397999962, 28.919648251000069 ], [ -81.995491795999953, 28.919640689000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995491795999953, 28.919640689000062 ], [ -81.995320399999969, 28.919222092000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000832250999963, 28.923042546000033 ], [ -82.00075034799994, 28.922925207000048 ], [ -82.000672001999988, 28.922791134000079 ], [ -82.00058056599994, 28.922630247000029 ], [ -82.000494600999957, 28.922475548000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000494600999957, 28.922475548000079 ], [ -82.000615927999945, 28.922414699000058 ], [ -82.000748168999962, 28.922367730000076 ], [ -82.000931284999979, 28.922303701000033 ], [ -82.001105007999968, 28.922227278000037 ], [ -82.001285859999939, 28.922129360000042 ], [ -82.001481034999983, 28.922026225000025 ], [ -82.001740487999939, 28.921889398000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999697675999982, 28.921402621000027 ], [ -81.999817829999984, 28.921344867000073 ], [ -81.999967677999962, 28.921276455000054 ], [ -82.000144294999984, 28.921202887000049 ], [ -82.000362914999982, 28.921110411000029 ], [ -82.00051887799998, 28.921034147000057 ], [ -82.000633909999976, 28.92097218300006 ], [ -82.000941209999951, 28.920765600000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99811869399997, 28.922430267000038 ], [ -81.998219244999973, 28.922332763000043 ], [ -81.998351787999979, 28.922243639000044 ], [ -81.998721592999971, 28.922011788000077 ], [ -81.999131876999968, 28.921753615000057 ], [ -81.999455409999939, 28.921548441000027 ], [ -81.999697675999982, 28.921402621000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997444426999948, 28.921869452000067 ], [ -81.997646266999936, 28.921773536000046 ], [ -81.997837537999942, 28.921702034000077 ], [ -81.997996571999977, 28.921645656000067 ], [ -81.998145445999967, 28.921579998000027 ], [ -81.998296079999989, 28.92149508600005 ], [ -81.998461756999973, 28.921389549000025 ], [ -81.998654784999985, 28.921264416000042 ], [ -81.99888825499994, 28.921116938000068 ], [ -81.99910648499997, 28.920981491000077 ], [ -81.999200653999935, 28.920923738000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998696994999989, 28.92044588400006 ], [ -81.998778014999971, 28.920396653000068 ], [ -81.998874390999958, 28.920340003000035 ], [ -81.999031840999976, 28.920258488000059 ], [ -81.999179754999943, 28.920184618000064 ], [ -81.999299322999946, 28.92013202000004 ], [ -81.999400709999975, 28.920094617000075 ], [ -81.99952985799996, 28.920045045000052 ], [ -81.999634771999979, 28.920000354000024 ], [ -81.999798164999959, 28.919912959000044 ], [ -81.999904588999982, 28.919846866000057 ], [ -81.999991122999973, 28.919778276000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996012401999963, 28.920997132000025 ], [ -81.996264242999985, 28.920833491000053 ], [ -81.996364602999961, 28.92077617800004 ], [ -81.996456749999936, 28.920724286000052 ], [ -81.996526591999952, 28.920690982000053 ], [ -81.996660406999979, 28.92064451400006 ], [ -81.996869930999935, 28.920587202000036 ], [ -81.997033644999988, 28.920539932000054 ], [ -81.997213072999955, 28.920492577000061 ], [ -81.997353242999964, 28.920455147000041 ], [ -81.997503483999935, 28.920395675000066 ], [ -81.997579286999951, 28.920362331000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997833386999957, 28.916568002000076 ], [ -81.998405266999953, 28.916467879000038 ], [ -81.998786520999943, 28.916400294000027 ], [ -81.998917073999962, 28.91637219200004 ], [ -81.998970611999937, 28.916357915000049 ], [ -81.99903842599997, 28.916334121000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99783660199995, 28.915909946000056 ], [ -81.997982148999938, 28.915885151000055 ], [ -81.998315031999937, 28.915796443000033 ], [ -81.99856469599996, 28.915714777000062 ], [ -81.998759944999961, 28.915641557000072 ], [ -81.998841858999981, 28.915610397000023 ], [ -81.998894349999944, 28.915582925000024 ], [ -81.99896382999998, 28.915535336000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997791176999954, 28.915236963000041 ], [ -81.998486402999959, 28.914920369000072 ], [ -81.99856731999995, 28.914883520000046 ], [ -81.998611979999964, 28.91486318300008 ], [ -81.998769427999946, 28.91482417900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997490590999973, 28.914644205000059 ], [ -81.997576299999935, 28.914603215000056 ], [ -81.997694487, 28.914538784000058 ], [ -81.997828294999977, 28.914439646000062 ], [ -81.997934096999984, 28.914358892000052 ], [ -81.998110492999956, 28.914239469000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969931842999983, 28.926336883000033 ], [ -81.970058147999964, 28.926359688000048 ], [ -81.970145858999956, 28.926364951000039 ], [ -81.970229881999956, 28.92637002400005 ], [ -81.970508928999948, 28.926372090000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970508928999948, 28.926372090000029 ], [ -81.970517901999983, 28.926862080000035 ], [ -81.970515611999986, 28.926910177000025 ], [ -81.970509908999986, 28.926934224000036 ], [ -81.970504209999945, 28.92695326200004 ], [ -81.970497369999975, 28.926972299000056 ], [ -81.97049167199998, 28.926984322000067 ], [ -81.970484834, 28.926997347000054 ], [ -81.970470021999972, 28.927015380000057 ], [ -81.970457488999955, 28.927029405000042 ], [ -81.970436983999946, 28.927045434000036 ], [ -81.970416478999937, 28.927059456000052 ], [ -81.970399389999955, 28.927069473000074 ], [ -81.970374328999981, 28.927083496000023 ], [ -81.97034926799995, 28.927095516000065 ], [ -81.970332180999947, 28.927099519000024 ], [ -81.970307123999987, 28.927101518000029 ], [ -81.970245616999989, 28.92710250600004 ], [ -81.969979096999964, 28.927104451000048 ], [ -81.969939231999945, 28.927104442000029 ], [ -81.969875449999961, 28.927104428000064 ], [ -81.969777496999939, 28.927105408000045 ], [ -81.969743326999946, 28.92710439800004 ], [ -81.969696631999966, 28.927097373000038 ], [ -81.969622602999948, 28.927080322000052 ], [ -81.969585019999954, 28.927070294000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970523234999973, 28.924797998000031 ], [ -81.970519022999952, 28.925583667000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970519022999952, 28.925583667000069 ], [ -81.970508928999948, 28.926372090000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969702038999969, 28.925561513000048 ], [ -81.96983536099998, 28.925570284000059 ], [ -81.969963418999953, 28.925579055000071 ], [ -81.970096740999963, 28.925582564000024 ], [ -81.970519022999952, 28.925583667000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969631869999944, 28.924787897000044 ], [ -81.969912124999951, 28.924793733000058 ], [ -81.970523234999973, 28.924797998000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970525542999951, 28.924012498000025 ], [ -81.970523432999983, 28.924315331000059 ], [ -81.970523234999973, 28.924797998000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970007274999944, 28.924009019000039 ], [ -81.970525542999951, 28.924012498000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957962711999983, 28.93002946200005 ], [ -81.957590121999942, 28.929875537000044 ], [ -81.957301128999973, 28.929752207000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957301128999973, 28.929752207000035 ], [ -81.957063730999948, 28.930190597000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041372569999965, 28.887835341000027 ], [ -82.041372269999954, 28.888690207000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041372986999988, 28.887803873000053 ], [ -82.041372569999965, 28.887835341000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042624802999967, 28.859073059000025 ], [ -82.042394698999942, 28.859060968000051 ], [ -82.042149287999962, 28.859055710000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249500027999943, 28.676355097000055 ], [ -82.249337055999945, 28.675117215000057 ], [ -82.249271353999973, 28.674558551000075 ], [ -82.249084825999944, 28.673201385000027 ], [ -82.249055206999969, 28.672980748000043 ], [ -82.24904023299996, 28.672801142000026 ], [ -82.24903444499995, 28.67269688600004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041784169999971, 28.898284106000062 ], [ -82.040928488999953, 28.898279826000078 ], [ -82.040074374999961, 28.898268346000066 ], [ -82.039074465999988, 28.898276382000063 ], [ -82.038460283999939, 28.898289010000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956441221999967, 28.957505032000029 ], [ -81.956529043999979, 28.957606905000034 ], [ -81.956564172999947, 28.958344609000051 ], [ -81.956581736999965, 28.958801283000071 ], [ -81.956416631999957, 28.959138519000078 ], [ -81.956353399999955, 28.959763811000073 ], [ -81.95571757, 28.959777863000056 ], [ -81.954962300999966, 28.959788402000072 ], [ -81.954509139999971, 28.959777863000056 ], [ -81.954516165999962, 28.959036646000072 ], [ -81.954537242999947, 28.958337584000049 ], [ -81.954740989999948, 28.957923064000056 ], [ -81.954740989999948, 28.957346952000023 ], [ -81.955715216999977, 28.957343609000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022862081999961, 28.937741114000062 ], [ -82.022516150999934, 28.937740596000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022516150999934, 28.937740596000026 ], [ -82.020922313999961, 28.937738210000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020922313999961, 28.937738210000077 ], [ -82.020551574999956, 28.937737654000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022505128999967, 28.936130331000072 ], [ -82.02227269499997, 28.936130331000072 ], [ -82.022164778999979, 28.936130331000072 ], [ -82.022041644999945, 28.936128947000043 ], [ -82.021921275999944, 28.936130331000072 ], [ -82.021817510999938, 28.936135866000029 ], [ -82.021706827999935, 28.936149700000044 ], [ -82.021612747999939, 28.936162152000065 ], [ -82.021510365999973, 28.936185673000068 ], [ -82.021403832999965, 28.936211960000037 ], [ -82.02131252099997, 28.936228562000053 ], [ -82.021219823999957, 28.93624516400007 ], [ -82.02118563099998, 28.93624821800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006589355999949, 28.912165247000075 ], [ -82.007056061999947, 28.912132049000036 ], [ -82.007385275, 28.912120437000056 ], [ -82.007613838999987, 28.912125925000055 ], [ -82.007797352999944, 28.912146383000049 ], [ -82.007946096999945, 28.912176524000074 ], [ -82.008222721999971, 28.912232903000074 ], [ -82.008570359999965, 28.912295117000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003461868999977, 28.912112277000062 ], [ -82.003530181999963, 28.911949451000055 ], [ -82.00356172499994, 28.911829283000031 ], [ -82.003580156999988, 28.911762719000023 ], [ -82.003605550999964, 28.911678837000068 ], [ -82.003642295999953, 28.911606911000035 ], [ -82.003695401999948, 28.911502170000063 ], [ -82.003751663999935, 28.911385591000055 ], [ -82.00380557699998, 28.911282113000027 ], [ -82.003846988999953, 28.91119548000006 ], [ -82.003924146999964, 28.911045246000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005663289999973, 28.911001731000056 ], [ -82.005719844999987, 28.910746376000077 ], [ -82.005755834999945, 28.910566427000049 ], [ -82.005783161999943, 28.910308876000045 ], [ -82.005776982999976, 28.909634661000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993387201999951, 28.881499378000058 ], [ -81.993388164999942, 28.881319248000068 ], [ -81.993378358999962, 28.881210299000031 ], [ -81.993366286999958, 28.881134565000025 ], [ -81.993350441999951, 28.881057501000043 ], [ -81.993305920999944, 28.880881453000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993332835999979, 28.88211655300006 ], [ -81.993335961999946, 28.882105895000052 ], [ -81.99337636599995, 28.881826531000058 ], [ -81.993385237999973, 28.88155286500006 ], [ -81.993387201999951, 28.881499378000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993387201999951, 28.881499378000058 ], [ -81.994052404999934, 28.881523478000076 ], [ -81.99468165199994, 28.881543991000058 ], [ -81.994843697999954, 28.881541578000054 ], [ -81.994907466999962, 28.881538723000062 ], [ -81.994977898999934, 28.881531109000036 ], [ -81.995044523999979, 28.881518735000043 ], [ -81.995130184999937, 28.88149018200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993332835999979, 28.88211655300006 ], [ -81.993895193999947, 28.882203354000069 ], [ -81.994139494999956, 28.882234082000025 ], [ -81.994458250999969, 28.88227095600007 ], [ -81.994947804999981, 28.882330195000065 ], [ -81.9951319, 28.882389168000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991921440999988, 28.88131579800006 ], [ -81.991997712999989, 28.881311679000078 ], [ -81.992053995999981, 28.881301433000033 ], [ -81.992124117999936, 28.881285375000061 ], [ -81.992192315999944, 28.881264243000032 ], [ -81.99230485399994, 28.88121957900006 ], [ -81.992577886999982, 28.881108897000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992577886999982, 28.881108897000047 ], [ -81.992584916999988, 28.881106147000025 ], [ -81.992647623999972, 28.881084196000074 ], [ -81.992787865999958, 28.88103178800003 ], [ -81.993029096999976, 28.880952936000028 ], [ -81.993189302999951, 28.880907605000061 ], [ -81.993305920999944, 28.880881453000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993305920999944, 28.880881453000029 ], [ -81.99337309699996, 28.880869498000038 ], [ -81.993696904999979, 28.880821017000073 ], [ -81.993931873999941, 28.880807669000035 ], [ -81.994277665999959, 28.88080092000007 ], [ -81.99470542399996, 28.880788539000037 ], [ -81.994862667999939, 28.880785351000043 ], [ -81.994917980999958, 28.880790550000029 ], [ -81.995070265999971, 28.880819103000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991731182999956, 28.880747973000041 ], [ -81.991937349999944, 28.880654041000071 ], [ -81.992198329999951, 28.880534443000045 ], [ -81.992403728999989, 28.880451926000035 ], [ -81.992594342999951, 28.880388337000056 ], [ -81.992876253999952, 28.880312047000075 ], [ -81.993128287, 28.880256011000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993128287, 28.880256011000029 ], [ -81.993583196999964, 28.880190345000074 ], [ -81.993960637999976, 28.880139510000049 ], [ -81.994569599999977, 28.880045319000033 ], [ -81.99485565599997, 28.879971156000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991296192999982, 28.882817394000028 ], [ -81.991510080999944, 28.882614242000045 ], [ -81.991669653999963, 28.882455881000055 ], [ -81.991734045999976, 28.882368617000054 ], [ -81.991779120999979, 28.882291551000037 ], [ -81.99182419899995, 28.882174819000056 ], [ -81.991867992999971, 28.88202635500005 ], [ -81.991897803999962, 28.881902988000036 ], [ -81.991914363999967, 28.881833688000029 ], [ -81.991929822999964, 28.881739620000076 ], [ -81.991938705999985, 28.881624374000069 ], [ -81.991931997999984, 28.881441765000034 ], [ -81.991921440999988, 28.88131579800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992363598999987, 28.884119675000079 ], [ -81.992125378999958, 28.884015394000073 ], [ -81.991293215999974, 28.883608780000031 ], [ -81.990962622999973, 28.883445247000054 ], [ -81.990936872999953, 28.883418045000042 ], [ -81.990913696999939, 28.883374977000074 ], [ -81.990900823999937, 28.883336442000029 ], [ -81.990898252999955, 28.883277507000059 ], [ -81.990905982999948, 28.883228773000042 ], [ -81.990927877, 28.883187975000055 ], [ -81.990953634999983, 28.883149443000036 ], [ -81.991118474999951, 28.882989652000049 ], [ -81.991269147999958, 28.882846861000075 ], [ -81.991296192999982, 28.882817394000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991921440999988, 28.88131579800006 ], [ -81.991914723999969, 28.881242246000056 ], [ -81.991899484999976, 28.881132710000031 ], [ -81.991885002999936, 28.881068109000068 ], [ -81.991870520999953, 28.88102815700006 ], [ -81.991808974999969, 28.88089169400007 ], [ -81.991731182999956, 28.880747973000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993128287, 28.880256011000029 ], [ -81.993127310999967, 28.880252229000064 ], [ -81.993085504999954, 28.880094063000058 ], [ -81.992947872999935, 28.879694955000048 ], [ -81.992913634, 28.879617197000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992913634, 28.879617197000073 ], [ -81.992899056999988, 28.879588381000076 ], [ -81.992897103999951, 28.879584599000054 ], [ -81.992839111999956, 28.879458085000067 ], [ -81.992767620999985, 28.879308639000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991731182999956, 28.880747973000041 ], [ -81.991651471999944, 28.880608477000067 ], [ -81.991523541999982, 28.880376586000068 ], [ -81.991488209999943, 28.880302433000054 ], [ -81.99148341199998, 28.880252554000037 ], [ -81.99149013899995, 28.880197604000045 ], [ -81.991513195999971, 28.880150262000029 ], [ -81.991547776999937, 28.880111376000059 ], [ -81.991584121999949, 28.880087052000079 ], [ -81.991628463999973, 28.880061503000036 ], [ -81.991708188999951, 28.880025155000055 ], [ -81.991950244999941, 28.879919495000024 ], [ -81.992180359999963, 28.879833111000039 ], [ -81.992378601999974, 28.879763370000035 ], [ -81.992680886999949, 28.879672436000078 ], [ -81.992845065999973, 28.879629944000044 ], [ -81.992913634, 28.879617197000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992913634, 28.879617197000073 ], [ -81.992988962999959, 28.879605302000073 ], [ -81.993605115999969, 28.879476130000057 ], [ -81.994271106999975, 28.879340138000032 ], [ -81.994326171999944, 28.879328889000078 ], [ -81.994525094999972, 28.879306046000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991507609999985, 28.879387189000056 ], [ -81.991946180999946, 28.879203111000038 ], [ -81.992149634999976, 28.879139656000063 ], [ -81.992636036999954, 28.879004629000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992636036999954, 28.879004629000065 ], [ -81.993045858999949, 28.878889235000031 ], [ -81.993193940999959, 28.878840509000042 ], [ -81.993623299999967, 28.878715625000041 ], [ -81.993711339999948, 28.878684692000036 ], [ -81.993800569999962, 28.878668036000079 ], [ -81.993959993999965, 28.878658518000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99023854099994, 28.879980809000074 ], [ -81.989404592999961, 28.878765699000041 ], [ -81.989342726999951, 28.878665762000026 ], [ -81.989302275999989, 28.878583670000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991744037999979, 28.876935374000027 ], [ -81.991431474999956, 28.876645202000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984506632999967, 28.882722026000067 ], [ -81.984683123999957, 28.882883349000053 ], [ -81.984851765999963, 28.883043139000051 ], [ -81.985026690999973, 28.88316059400006 ], [ -81.985374665999984, 28.883343902000036 ], [ -81.985702948999972, 28.883473198000047 ], [ -81.986052556999937, 28.883583470000076 ], [ -81.986559114999977, 28.883704650000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987536912999985, 28.881049052000037 ], [ -81.987492638999981, 28.880999952000025 ], [ -81.987364276999983, 28.880885380000052 ], [ -81.987080805999938, 28.880653094000024 ], [ -81.986862084999984, 28.880470383000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986862084999984, 28.880470383000045 ], [ -81.98657499899997, 28.880229966000059 ], [ -81.986399138999957, 28.880072871000039 ], [ -81.986343458999954, 28.880022902000064 ], [ -81.986296345999961, 28.879975789000071 ], [ -81.986214968999946, 28.879885845000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988143545999947, 28.880663043000027 ], [ -81.98725447299995, 28.879796294000073 ], [ -81.986891486, 28.879433581000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988609809999957, 28.880179523000038 ], [ -81.988399267999966, 28.879933222000034 ], [ -81.987876539999945, 28.879294435000077 ], [ -81.987789578, 28.879169866000041 ], [ -81.987726520999956, 28.879072308000048 ], [ -81.987706295999942, 28.879024718000039 ], [ -81.987664654999946, 28.878937868000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988143545999947, 28.880663043000027 ], [ -81.988325777999989, 28.880477074000055 ], [ -81.988560073999963, 28.880216630000064 ], [ -81.988609809999957, 28.880179523000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970648349999976, 28.931678072000068 ], [ -81.97094703099998, 28.931634620000068 ], [ -81.971044112999948, 28.931612729000051 ], [ -81.971130725999956, 28.931567044000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972948979999956, 28.934687304000079 ], [ -81.973125569999979, 28.934875374000057 ], [ -81.973213518999955, 28.934969978000026 ], [ -81.973258192999936, 28.935011753000026 ], [ -81.973316829999987, 28.935063357000047 ], [ -81.973353127999985, 28.935094074000062 ], [ -81.973396406999939, 28.935129707000044 ], [ -81.973450857999978, 28.935167798000066 ], [ -81.973494138999968, 28.93519728800004 ], [ -81.973541608999938, 28.935226778000072 ], [ -81.973702172999936, 28.935317711000039 ], [ -81.973953460999951, 28.935455334000039 ], [ -81.974214019999977, 28.935616885000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988142335999953, 28.900771921000057 ], [ -81.988384553999936, 28.900780650000058 ], [ -81.988668777999976, 28.900802935000058 ], [ -81.988757246999967, 28.900791821000041 ], [ -81.988840297999957, 28.900775941000063 ], [ -81.988926961999937, 28.900742584000056 ], [ -81.988997377999965, 28.900699694000025 ], [ -81.98906057399995, 28.900655214000039 ], [ -81.98911654799997, 28.900599613000054 ], [ -81.989154466999935, 28.900548776000051 ], [ -81.989193744999966, 28.900480583000046 ], [ -81.989217671999938, 28.900418503000026 ], [ -81.98923392599994, 28.900358133000054 ], [ -81.989235740999959, 28.900270753000029 ], [ -81.989241063999941, 28.900003766000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988327817999959, 28.899999441000034 ], [ -81.98864641199998, 28.900014716000044 ], [ -81.989241063999941, 28.900003766000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988991914999986, 28.897176157000047 ], [ -81.989867241999946, 28.897180846000026 ], [ -81.990083183999957, 28.897168298000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98738214399998, 28.896655784000075 ], [ -81.987337663999938, 28.896829182000033 ], [ -81.987320333999946, 28.896946701000047 ], [ -81.98731343999998, 28.897014118000072 ], [ -81.987317737999945, 28.897057296000071 ], [ -81.987328923999939, 28.897092142000076 ], [ -81.987347113999988, 28.897128294000026 ], [ -81.987370233999968, 28.897152747000064 ], [ -81.987402360999965, 28.897176721000051 ], [ -81.987430484999948, 28.897193657000059 ], [ -81.987464053999986, 28.897208053000043 ], [ -81.987493319999942, 28.897215631000051 ], [ -81.987527850999982, 28.897218445000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987510493999935, 28.897598537000079 ], [ -81.987527850999982, 28.897218445000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988881396999943, 28.896531699000036 ], [ -81.988767593999967, 28.896253797000043 ], [ -81.988582474999987, 28.895965163000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988991914999986, 28.897176157000047 ], [ -81.98899049299996, 28.897011063000036 ], [ -81.988971127999946, 28.896853969000063 ], [ -81.988940538999941, 28.89672919000003 ], [ -81.988889554999957, 28.896560424000029 ], [ -81.988881396999943, 28.896531699000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988881396999943, 28.896531699000036 ], [ -81.988967116999959, 28.896512968000025 ], [ -81.989104795999936, 28.896474266000041 ], [ -81.989251687999968, 28.896439268000051 ], [ -81.989346556999976, 28.896420425000031 ], [ -81.989447543999972, 28.89640337700007 ], [ -81.989581171999987, 28.896395308000024 ], [ -81.989756621999959, 28.89639442400005 ], [ -81.989985910999962, 28.896410655000068 ], [ -81.990099359999988, 28.896418686000061 ], [ -81.990319028999977, 28.896482640000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988582474999987, 28.895965163000028 ], [ -81.988708629999962, 28.895902813000077 ], [ -81.988884620999954, 28.895855544000028 ], [ -81.989153993999935, 28.895794540000054 ], [ -81.98944139799994, 28.895733611000026 ], [ -81.989594023999985, 28.89570621200005 ], [ -81.989690584999948, 28.895693884000025 ], [ -81.990111602999946, 28.895664982000028 ], [ -81.990330439, 28.895645030000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988130897999952, 28.895381961000055 ], [ -81.988207213999942, 28.895353185000033 ], [ -81.988332125999989, 28.895313475000023 ], [ -81.988529138, 28.895276489000025 ], [ -81.988710576999949, 28.895236073000035 ], [ -81.989117150999959, 28.895122618000073 ], [ -81.989453554999955, 28.895017875000065 ], [ -81.989834804999987, 28.894929406000074 ], [ -81.990038144999971, 28.894868986000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993405630999973, 28.896797813000035 ], [ -81.993461595999975, 28.896774243000038 ], [ -81.99369014399997, 28.896664402000056 ], [ -81.993841799999984, 28.896584972000028 ], [ -81.994017220999979, 28.896483112000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993405630999973, 28.896797813000035 ], [ -81.993981075999955, 28.897686939000039 ], [ -81.994135386999972, 28.897925366000038 ], [ -81.994203367999944, 28.898041782000064 ], [ -81.994217644999935, 28.898157424000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994017220999979, 28.896483112000055 ], [ -81.994906558999958, 28.897568276000072 ], [ -81.994986571999959, 28.897652169000025 ], [ -81.995091268999943, 28.897748537000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994607567999935, 28.896124389000079 ], [ -81.994790628999965, 28.895994612000038 ], [ -81.995149589999983, 28.895716041000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995149589999983, 28.895716041000071 ], [ -81.996287202999952, 28.896960903000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995149589999983, 28.895716041000071 ], [ -81.995196680999982, 28.895671288000074 ], [ -81.995413294999935, 28.895475704000035 ], [ -81.995477337999944, 28.895414377000066 ], [ -81.995539495999935, 28.895374598000046 ], [ -81.995621952999954, 28.895354526000062 ], [ -81.995703988999935, 28.895364156000028 ], [ -81.995761752999954, 28.895382893000033 ], [ -81.995835242999988, 28.895441166000069 ], [ -81.996211899999935, 28.895855310000059 ], [ -81.996600878999971, 28.896288257000037 ], [ -81.996656400999939, 28.896350932000075 ], [ -81.99668653699996, 28.896395687000052 ], [ -81.996699319999948, 28.896432646000051 ], [ -81.996707251999965, 28.896471935000079 ], [ -81.996705367999937, 28.896511716000077 ], [ -81.99669384699996, 28.896552968000037 ], [ -81.996677112999976, 28.896586305000028 ], [ -81.996601767999948, 28.896667524000065 ], [ -81.99642093999995, 28.89684985100007 ], [ -81.996287202999952, 28.896960903000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996287202999952, 28.896960903000036 ], [ -81.996144048999952, 28.897070299000063 ], [ -81.995906711999965, 28.897242678000055 ], [ -81.995861505999983, 28.897260910000057 ], [ -81.995812532999935, 28.897275826000055 ], [ -81.995767326999953, 28.89727748200005 ], [ -81.995722121999961, 28.897274166000045 ], [ -81.995684451999978, 28.897262561000048 ], [ -81.995646779999959, 28.897247643000071 ], [ -81.995616642999948, 28.897226092000039 ], [ -81.995520585999941, 28.897126637000042 ], [ -81.995271866999985, 28.896856138000032 ], [ -81.994852595999987, 28.896396889000073 ], [ -81.994607567999935, 28.896124389000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992740454999989, 28.896975678000047 ], [ -81.992812029999982, 28.896962420000079 ], [ -81.992953537999938, 28.896932864000064 ], [ -81.99309435899994, 28.896897918000036 ], [ -81.993222542999945, 28.896859795000069 ], [ -81.993405630999973, 28.896797813000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990705673999969, 28.896721600000035 ], [ -81.991321286999948, 28.896902759000056 ], [ -81.991500014999986, 28.896944078000047 ], [ -81.991689392999945, 28.896981099000072 ], [ -81.991825041999959, 28.896997173000045 ], [ -81.991962846999968, 28.89700999400003 ], [ -81.992220588999942, 28.897018745000025 ], [ -81.992391993999945, 28.897012124000071 ], [ -81.992557746999978, 28.896997215000056 ], [ -81.992740454999989, 28.896975678000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997102655999981, 28.950979479000068 ], [ -81.997096316999944, 28.951090063000038 ], [ -81.997091516999944, 28.951402715000029 ], [ -81.997087443999987, 28.951602986000069 ], [ -81.997095060999982, 28.951729671000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997166608999976, 28.949266469000065 ], [ -81.997141631999966, 28.949697538000066 ], [ -81.997133277999978, 28.950052275000075 ], [ -81.997112928999968, 28.950517108000042 ], [ -81.997105440999974, 28.950837585000045 ], [ -81.997102655999981, 28.950979479000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990181867999979, 28.948383585000045 ], [ -81.990388946999985, 28.94841709800005 ], [ -81.990565800999946, 28.948438816000078 ], [ -81.99075087999995, 28.948460535000038 ], [ -81.991005879999989, 28.948475023000071 ], [ -81.991174248999982, 28.948475103000078 ], [ -81.991251347999935, 28.948467813000036 ], [ -81.991329869999959, 28.948453536000045 ], [ -81.991379839, 28.948444970000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990357707999976, 28.94596788900003 ], [ -81.990364909999983, 28.946034507000036 ], [ -81.990391916999954, 28.946137134000026 ], [ -81.990420724999979, 28.946209153000041 ], [ -81.990432427999963, 28.946273971000039 ], [ -81.990448115999982, 28.946508067000025 ], [ -81.990448071999936, 28.946982903000048 ], [ -81.990440898999964, 28.947237617000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988485342, 28.946916713000064 ], [ -81.988599742999952, 28.946935590000066 ], [ -81.98871414499996, 28.946951323000064 ], [ -81.988992998999947, 28.946998516000065 ], [ -81.989188320999972, 28.947030527000038 ], [ -81.98930643999995, 28.947050193000052 ], [ -81.989404129999969, 28.947067730000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989424184999962, 28.945962572000042 ], [ -81.989415043999941, 28.946457710000061 ], [ -81.989411304999976, 28.946819306000066 ], [ -81.989404129999969, 28.947067730000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988496487999953, 28.945961222000051 ], [ -81.988492545999975, 28.946423009000057 ], [ -81.988495600999954, 28.946685084000023 ], [ -81.988485342, 28.946916713000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986640577999935, 28.946960567000076 ], [ -81.986826483999948, 28.946944862000066 ], [ -81.987005242999942, 28.946922867000069 ], [ -81.987230478999948, 28.946900877000076 ], [ -81.987418134999984, 28.946878740000045 ], [ -81.987571371999934, 28.946867523000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987571371999934, 28.946867523000037 ], [ -81.987802501999965, 28.946860049000065 ], [ -81.988031306999972, 28.946866360000058 ], [ -81.988170735999972, 28.946872661000043 ], [ -81.988317312999982, 28.946894687000054 ], [ -81.988485342, 28.946916713000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987544598999989, 28.945965681000075 ], [ -81.987558024999942, 28.94603012400006 ], [ -81.987566974999936, 28.946135739000056 ], [ -81.98757324099995, 28.946259255000029 ], [ -81.987573741999938, 28.946454373000051 ], [ -81.987571371999934, 28.946867523000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986635691999936, 28.945963923000079 ], [ -81.986647793999964, 28.946444851000024 ], [ -81.986647767999955, 28.946649251000053 ], [ -81.986647750999964, 28.94677818100007 ], [ -81.986640577999935, 28.946960567000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985718796999947, 28.945962572000042 ], [ -81.98572541599998, 28.946463624000046 ], [ -81.985725369999955, 28.946796953000046 ], [ -81.985725333999937, 28.947061100000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984779630999981, 28.945959819000052 ], [ -81.984789699999965, 28.946026947000064 ], [ -81.984799768999949, 28.946134352000058 ], [ -81.984805362999964, 28.946271964000061 ], [ -81.984806614999968, 28.94646037900003 ], [ -81.984806554999977, 28.94687546800003 ], [ -81.984810089999939, 28.947149051000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98383909599994, 28.945957171000032 ], [ -81.983855299999959, 28.946028740000031 ], [ -81.983875554999941, 28.946131367000078 ], [ -81.98388635799995, 28.946239396000067 ], [ -81.983884561999957, 28.947152652000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982957309999961, 28.945954470000061 ], [ -81.98296271199996, 28.946206988000029 ], [ -81.982960212999956, 28.946941221000031 ], [ -81.982948761999978, 28.947003609000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982041765999952, 28.94595987200006 ], [ -81.98204273999994, 28.946685507000041 ], [ -81.982026712999982, 28.946741857000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996058387999938, 28.944553418000055 ], [ -81.996340375999978, 28.944891694000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998953644999972, 28.943839522000076 ], [ -81.998624591999942, 28.943872460000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000935379999987, 28.943534192000072 ], [ -82.001014117999944, 28.943520872000079 ], [ -82.00106756699995, 28.943517442000029 ], [ -82.00111506199994, 28.943511104000038 ], [ -82.001177647999953, 28.943504 ], [ -82.001231148999977, 28.943497785000034 ], [ -82.001283617999945, 28.943491945000062 ], [ -82.00133696499995, 28.943482318000065 ], [ -82.001390313999934, 28.943472005000046 ], [ -82.001443269999982, 28.943460660000028 ], [ -82.001496226999961, 28.943448627000066 ], [ -82.001548793999973, 28.943435907000037 ], [ -82.001600966999945, 28.943422155000064 ], [ -82.001653142999942, 28.943407716000024 ], [ -82.001704926999935, 28.94339259000003 ], [ -82.001756318999981, 28.943376431000047 ], [ -82.00180732299998, 28.943359586000042 ], [ -82.00185812899997, 28.943342053000038 ], [ -82.001908544999935, 28.943323488000033 ], [ -82.001958570999989, 28.943304580000074 ], [ -82.002008204999981, 28.943284639000069 ], [ -82.00205744799996, 28.943264012000043 ], [ -82.002106300999969, 28.943242354000063 ], [ -82.002186418999941, 28.943205226000032 ], [ -82.003136832999985, 28.942734063000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000881632999949, 28.942201419000071 ], [ -82.000878068999953, 28.942442602000028 ], [ -82.000879103999978, 28.942629929000077 ], [ -82.000881453999966, 28.942808415000059 ], [ -82.000885016999973, 28.942859351000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000885016999973, 28.942859351000038 ], [ -82.001067449999937, 28.942851949000044 ], [ -82.001100975999975, 28.942849842000044 ], [ -82.00113769799998, 28.942845628000043 ], [ -82.001170425999987, 28.942842819000077 ], [ -82.001199162999967, 28.942840011000044 ], [ -82.001230294999971, 28.942835797000043 ], [ -82.001263023999968, 28.942830882000067 ], [ -82.001298147999989, 28.942823860000033 ], [ -82.001330077999967, 28.942815433000078 ], [ -82.001361208999981, 28.942808411000044 ], [ -82.001393140999937, 28.942799284000046 ], [ -82.001424271999952, 28.942790154000079 ], [ -82.001454606999971, 28.942781729000046 ], [ -82.001484939999955, 28.942771195000034 ], [ -82.001515273999985, 28.942759960000046 ], [ -82.001548800999956, 28.942748725000058 ], [ -82.001575940999942, 28.94273959700007 ], [ -82.001606274999972, 28.94272765900007 ], [ -82.001635809999982, 28.942715723000049 ], [ -82.001666143999955, 28.942703082000037 ], [ -82.001693627999941, 28.942690205000076 ], [ -82.001722939, 28.942677485000047 ], [ -82.001752055999987, 28.942664421000075 ], [ -82.001780976999953, 28.942650670000035 ], [ -82.001809505999972, 28.942636574000062 ], [ -82.00183784099994, 28.942622135000079 ], [ -82.001865783999961, 28.942607353000028 ], [ -82.00189353199994, 28.942591882000045 ], [ -82.001921085999982, 28.942576412000051 ], [ -82.001948051999989, 28.942560254000057 ], [ -82.001974821999966, 28.942543409000052 ], [ -82.002001202999963, 28.942526564000048 ], [ -82.002027386999941, 28.942509031000043 ], [ -82.002059237999958, 28.942487029000063 ], [ -82.002645337, 28.94206667800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00160860699998, 28.941543770000067 ], [ -82.002004673999977, 28.941534901000068 ], [ -82.002145484999971, 28.941556535000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000889337, 28.939991028000065 ], [ -82.001779232, 28.939996166000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000885899999957, 28.93923582900004 ], [ -82.001596787999972, 28.939234156000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000891568999975, 28.938459143000046 ], [ -82.00147233399997, 28.938475009000058 ], [ -82.001542290999964, 28.938483575000078 ], [ -82.001652221999962, 28.938522122000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000898979999988, 28.937753943000075 ], [ -82.001922431999958, 28.937759203000041 ], [ -82.002060642999936, 28.937802626000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004996119999987, 28.932356248000076 ], [ -82.004621426999961, 28.932553574000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004305618999979, 28.932064430000025 ], [ -82.004621426999961, 28.932553574000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006149285999982, 28.93234179500007 ], [ -82.005943610999964, 28.932540353000036 ], [ -82.005890468999951, 28.932589859000075 ], [ -82.005836150999983, 28.932638677000057 ], [ -82.005781052999964, 28.932686465000074 ], [ -82.005653736999989, 28.932780850000029 ], [ -82.005546660999983, 28.932845095000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008802786, 28.93276800600006 ], [ -82.008799101999955, 28.933581034000042 ], [ -82.008800034999979, 28.933629530000076 ], [ -82.008809552999935, 28.933698535000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008092406999936, 28.932767295000076 ], [ -82.007885592999969, 28.93364467300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007160130999978, 28.932685727000035 ], [ -82.007081140999958, 28.93301781100007 ], [ -82.007079696999938, 28.933070223000072 ], [ -82.007088262999957, 28.933165877000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009149580999974, 28.94386412800003 ], [ -82.008951064999962, 28.944042530000047 ], [ -82.00883472299995, 28.944141579000075 ], [ -82.008680852999987, 28.944306659000063 ], [ -82.008553254999981, 28.944481641000039 ], [ -82.008429414999966, 28.944696241000031 ], [ -82.008328775999985, 28.944930215000056 ], [ -82.008264303999965, 28.945122131000062 ], [ -82.008226781999952, 28.945260792000056 ], [ -82.008193972999948, 28.945354787000042 ], [ -82.008158413, 28.945435920000079 ], [ -82.008072463999952, 28.945556066000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009470104999934, 28.944544759000053 ], [ -82.009394800999985, 28.944664473000046 ], [ -82.009319496999979, 28.944766809000043 ], [ -82.009164364999947, 28.944950550000044 ], [ -82.009105034999948, 28.945026336000069 ], [ -82.009064105999983, 28.945100496000066 ], [ -82.009027098999979, 28.945174316000077 ], [ -82.008969941999965, 28.945320170000059 ], [ -82.008936170999959, 28.945425818000047 ], [ -82.008902400999943, 28.945541369000068 ], [ -82.008862307999948, 28.945667480000054 ], [ -82.008818929999961, 28.945752613000025 ], [ -82.008761801999981, 28.945838170000059 ], [ -82.008732492999968, 28.945874937000042 ], [ -82.008634862999941, 28.945983891000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009526107999989, 28.945950411000069 ], [ -82.009380372999942, 28.946177505000037 ], [ -82.00924480499998, 28.946383602000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009526107999989, 28.945950411000069 ], [ -82.009888631999956, 28.946094127000038 ], [ -82.010038303999977, 28.946133578000058 ], [ -82.010090652999963, 28.946143096000071 ], [ -82.010177502999966, 28.946147855000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009823899999958, 28.94528157600007 ], [ -82.009758691999934, 28.945449961000065 ], [ -82.009647555999948, 28.945711908000078 ], [ -82.009546508999961, 28.945913817000076 ], [ -82.009526107999989, 28.945950411000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00849885599996, 28.947933029000069 ], [ -82.008693789999938, 28.94798333500006 ], [ -82.008963631999961, 28.94808955600007 ], [ -82.009130136999943, 28.948173771000029 ], [ -82.009309223999935, 28.948267986000076 ], [ -82.009378288999983, 28.948294838000038 ], [ -82.009438330999956, 28.948314697000058 ], [ -82.00957395599994, 28.948339096000041 ], [ -82.009823706999953, 28.948366236000027 ], [ -82.010289932999967, 28.948406033000026 ], [ -82.01035608799998, 28.948415619000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01035608799998, 28.948415619000059 ], [ -82.010333607999939, 28.948602046000076 ], [ -82.01031272299997, 28.948742057000061 ], [ -82.010303544999942, 28.948829034000028 ], [ -82.01029436999994, 28.948921166000048 ], [ -82.010281950999968, 28.949013561000072 ], [ -82.010278077999942, 28.949041980000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010431042999983, 28.947777208000048 ], [ -82.010408203999987, 28.947931427000071 ], [ -82.010392778999972, 28.948075127000038 ], [ -82.010374428999967, 28.948256986000047 ], [ -82.010358266999958, 28.948391961000027 ], [ -82.01035608799998, 28.948415619000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009173716999953, 28.947427177000066 ], [ -82.009308889999943, 28.947513818000061 ], [ -82.00952435399995, 28.947633513000028 ], [ -82.009633688999941, 28.947684017000029 ], [ -82.00968007299997, 28.947698584000079 ], [ -82.009738604999939, 28.947712179000064 ], [ -82.009820328999979, 28.947726744000079 ], [ -82.009916407999981, 28.947737421000056 ], [ -82.010431042999983, 28.947777208000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008485466999957, 28.947160848000067 ], [ -82.008692681999946, 28.947210231000042 ], [ -82.008939017999978, 28.947307174000059 ], [ -82.009006385999953, 28.947338254000044 ], [ -82.009066334999943, 28.947369809000065 ], [ -82.009173716999953, 28.947427177000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010510570999941, 28.94715257200005 ], [ -82.010482212999989, 28.947394789000043 ], [ -82.010464148999972, 28.947539221000056 ], [ -82.010447595999949, 28.947657729000071 ], [ -82.010431042999983, 28.947777208000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010566748999963, 28.946736957000041 ], [ -82.010510570999941, 28.94715257200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009173716999953, 28.947427177000066 ], [ -82.009223444999975, 28.947351480000066 ], [ -82.009352975999946, 28.947180854000067 ], [ -82.009455070999934, 28.947061796000071 ], [ -82.009491873999934, 28.94703359600004 ], [ -82.009532239999942, 28.947013752000032 ], [ -82.009558358999982, 28.947005395000076 ], [ -82.009603474999949, 28.947001215000057 ], [ -82.009648591999962, 28.947002256000076 ], [ -82.009669962999965, 28.947005387000047 ], [ -82.009748324999975, 28.947026268000059 ], [ -82.009932357999958, 28.947072204000051 ], [ -82.010070084999938, 28.947101434000047 ], [ -82.010510570999941, 28.94715257200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010278077999942, 28.949041980000061 ], [ -82.010251206999953, 28.949184901000024 ], [ -82.010231570999963, 28.949253423000073 ], [ -82.010213480999937, 28.949294348000024 ], [ -82.01018892999997, 28.949347777000071 ], [ -82.010160090999989, 28.949410188000058 ], [ -82.010129147999976, 28.949460847000068 ], [ -82.010074895999935, 28.949542701000041 ], [ -82.010037776, 28.949583627000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014437534999956, 28.94670768900005 ], [ -82.014760723999984, 28.946710675000077 ], [ -82.01523227399997, 28.946732281000038 ], [ -82.015417636999985, 28.946741426000074 ], [ -82.015640189999942, 28.946764598000073 ], [ -82.015775022999946, 28.94674315900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014437534999956, 28.94670768900005 ], [ -82.014448811999955, 28.946740069000043 ], [ -82.014473737999936, 28.946877415000074 ], [ -82.014487590999977, 28.946960415000035 ], [ -82.014502703999938, 28.947064442000055 ], [ -82.014509000999965, 28.947115350000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011808591999966, 28.946974084000033 ], [ -82.011829698999975, 28.946996083000045 ], [ -82.011836344999949, 28.947003646000041 ], [ -82.011842989999934, 28.947011209000038 ], [ -82.011849439999935, 28.947018771000046 ], [ -82.011855693999962, 28.947026678000043 ], [ -82.011861948999979, 28.94703458400005 ], [ -82.01186781399997, 28.947042833000069 ], [ -82.011873675999936, 28.947050740000066 ], [ -82.011879344999954, 28.947058990000073 ], [ -82.011884816999952, 28.947067240000024 ], [ -82.011890092999977, 28.947075834000032 ], [ -82.011895175999939, 28.947084084000039 ], [ -82.011900256999979, 28.947092678000047 ], [ -82.011904948999984, 28.947101272000054 ], [ -82.011909638999953, 28.947110210000062 ], [ -82.011914135999973, 28.94711880400007 ], [ -82.011918435999974, 28.947127742000077 ], [ -82.011922541, 28.947136680000028 ], [ -82.011926449999976, 28.947145617000047 ], [ -82.011930164999967, 28.947154555000054 ], [ -82.011933877999979, 28.947163493000062 ], [ -82.011937200999967, 28.94717277500007 ], [ -82.011940524999943, 28.947181712000031 ], [ -82.011943456999973, 28.947190994000039 ], [ -82.011946388999945, 28.947200276000046 ], [ -82.011948930999949, 28.947209558000054 ], [ -82.011951471999964, 28.947218840000062 ], [ -82.011953817999938, 28.947228465000023 ], [ -82.011955969999974, 28.947237747000031 ], [ -82.01195772899996, 28.947247373000039 ], [ -82.011959488999935, 28.947256655000047 ], [ -82.01196144499994, 28.947269030000029 ], [ -82.012014035999982, 28.947568787000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012014035999982, 28.947568787000023 ], [ -82.012110834999987, 28.948198353000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012014035999982, 28.947568787000023 ], [ -82.012626350999938, 28.947453635000045 ], [ -82.01329848499995, 28.94732857300005 ], [ -82.013970322999967, 28.947209215000044 ], [ -82.014427220999949, 28.947124213000052 ], [ -82.014509000999965, 28.947115350000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012110834999987, 28.948198353000066 ], [ -82.012519534999967, 28.948120027000073 ], [ -82.013309686999946, 28.947979350000026 ], [ -82.014032110999949, 28.947840187000054 ], [ -82.01438739699995, 28.947775455000055 ], [ -82.014603061999935, 28.947743633000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014509000999965, 28.947115350000047 ], [ -82.014521595999952, 28.947197244000051 ], [ -82.014537964999988, 28.947293525000077 ], [ -82.014548736999984, 28.947372607000034 ], [ -82.014561200999935, 28.947472418000075 ], [ -82.014578105999988, 28.947580253000069 ], [ -82.014594327999987, 28.947685518000071 ], [ -82.014603061999935, 28.947743633000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014603061999935, 28.947743633000073 ], [ -82.014616787999955, 28.947826967000026 ], [ -82.014630512999986, 28.947917977000031 ], [ -82.01464174399996, 28.94799692600003 ], [ -82.014654222, 28.94807806700004 ], [ -82.014664203999985, 28.948138374000052 ], [ -82.014670444999979, 28.948192103000054 ], [ -82.01466482099994, 28.948255617000029 ], [ -82.014652112999954, 28.948305149000078 ], [ -82.014619189999962, 28.948341993000042 ], [ -82.014566747999936, 28.948381849000043 ], [ -82.014501357999961, 28.948407419000034 ], [ -82.014434150999989, 28.948423404000039 ], [ -82.014315127999964, 28.948445845000037 ], [ -82.014128894999942, 28.948478523000063 ], [ -82.013986240999941, 28.94850569700003 ], [ -82.013834204999966, 28.948533215000054 ], [ -82.013620026999945, 28.948571396000034 ], [ -82.013412102999951, 28.948609576000024 ], [ -82.013194993999946, 28.94864775700006 ], [ -82.012962250999976, 28.948688689000051 ], [ -82.01272305599997, 28.948733536000077 ], [ -82.012200322999945, 28.948818011000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011808591999966, 28.946974084000033 ], [ -82.012028684999962, 28.946920453000075 ], [ -82.012268334999987, 28.946873645000039 ], [ -82.012476255999957, 28.946838218000039 ], [ -82.012640986999941, 28.946807011000033 ], [ -82.012789227999974, 28.94678205200006 ], [ -82.012918132999971, 28.946758229000068 ], [ -82.013021257999981, 28.946737809000069 ], [ -82.013147296999989, 28.946713870000053 ], [ -82.013294537999968, 28.946684492000031 ], [ -82.013436910999985, 28.94665843100006 ], [ -82.013562352999941, 28.946636923000028 ], [ -82.013717345999964, 28.946608480000066 ], [ -82.013881055999946, 28.94657784900005 ], [ -82.014009961999989, 28.946551757000066 ], [ -82.014132421999989, 28.94653487800008 ], [ -82.014171093999948, 28.946535724000057 ], [ -82.014202032999947, 28.946538272000055 ], [ -82.014234904999967, 28.946543371000075 ], [ -82.014263909999954, 28.946552723000025 ], [ -82.014291949999972, 28.946564625000065 ], [ -82.014320956999939, 28.946580780000033 ], [ -82.014353830999937, 28.946603737000032 ], [ -82.014378004999969, 28.946624995000036 ], [ -82.014399277999985, 28.946645401000069 ], [ -82.014415715999974, 28.946665809000024 ], [ -82.014437534999956, 28.94670768900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01223767099998, 28.949413267000068 ], [ -82.01235245099997, 28.949431428000025 ], [ -82.012434350999968, 28.949427639000078 ], [ -82.012572068999987, 28.949408061000042 ], [ -82.01271924699995, 28.949379013000055 ], [ -82.012874644999954, 28.949348624000038 ], [ -82.013036947999979, 28.949318234000032 ], [ -82.013219971999945, 28.949283286000025 ], [ -82.013385727999946, 28.949252895000029 ], [ -82.013542850999954, 28.949222504000033 ], [ -82.013701702999981, 28.949201225000024 ], [ -82.013850193999986, 28.949184504000073 ], [ -82.014079324999955, 28.949158874000034 ], [ -82.014306124999962, 28.949137629000063 ], [ -82.014613372999975, 28.949105450000047 ], [ -82.014747093999972, 28.949064366000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01223767099998, 28.949413267000068 ], [ -82.012196219999964, 28.949508957000035 ], [ -82.01219094399994, 28.949519271000042 ], [ -82.012182933999952, 28.949534054000026 ], [ -82.011943900999938, 28.949956430000043 ], [ -82.011900243999946, 28.950042752000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011900243999946, 28.950042752000058 ], [ -82.011586200999943, 28.950624381000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011900243999946, 28.950042752000058 ], [ -82.011978960999954, 28.950077361000069 ], [ -82.012019957999939, 28.950094665000051 ], [ -82.012050296999973, 28.95010620100004 ], [ -82.012073254999962, 28.950114130000031 ], [ -82.012097852999943, 28.950119898000025 ], [ -82.012123269999961, 28.950121339000077 ], [ -82.012167544999954, 28.950124219000031 ], [ -82.012369241999977, 28.950106172000062 ], [ -82.012666865999961, 28.950074413000038 ], [ -82.013013136999973, 28.950034596000023 ], [ -82.013413247999949, 28.949996095000074 ], [ -82.013857086999963, 28.949955664000072 ], [ -82.014227681999955, 28.94991428000003 ], [ -82.014613435999934, 28.949888908000048 ], [ -82.014675301999944, 28.949905564000062 ], [ -82.01472408099994, 28.949929359000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011586200999943, 28.950624381000068 ], [ -82.011866515999941, 28.950735229000031 ], [ -82.011981984999977, 28.950760609000042 ], [ -82.012064459999976, 28.95076060100007 ], [ -82.012171679999938, 28.950767846000076 ], [ -82.012299515999985, 28.950760580000065 ], [ -82.012410856999963, 28.950753315000043 ], [ -82.012501592999968, 28.95074336700003 ], [ -82.012622756999974, 28.950737855000057 ], [ -82.012774992999937, 28.950732341000048 ], [ -82.012902409999981, 28.950724078000064 ], [ -82.013001881999969, 28.950715818000049 ], [ -82.013116986999989, 28.95071305700003 ], [ -82.013256714999955, 28.950707542000032 ], [ -82.013427712999942, 28.950699275000034 ], [ -82.013601837999943, 28.950691350000056 ], [ -82.013750945999959, 28.950683085000037 ], [ -82.01388148999996, 28.950674821000064 ], [ -82.014074179999966, 28.950669300000072 ], [ -82.014235796999969, 28.95066653300006 ], [ -82.01433613599994, 28.950657350000029 ], [ -82.014478925999981, 28.950646558000074 ], [ -82.01458269799997, 28.950641577000056 ], [ -82.014723826999955, 28.950644067000042 ], [ -82.014923068999963, 28.950655690000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008364424999968, 28.95281575000007 ], [ -82.008768715999963, 28.952703610000071 ], [ -82.008914291999986, 28.952687782000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00848928399995, 28.954155939000032 ], [ -82.008995857999935, 28.954153409000071 ], [ -82.009073900999965, 28.954144668000026 ], [ -82.009162979999985, 28.954125152000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008497835999947, 28.953521612000031 ], [ -82.00849415, 28.953741405000073 ], [ -82.008491035999953, 28.953891978000058 ], [ -82.008491047999939, 28.954036709000036 ], [ -82.00848928399995, 28.954155939000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009162979999985, 28.954125152000074 ], [ -82.009249876999945, 28.95437692400003 ], [ -82.009315208999965, 28.954603951000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008574335999981, 28.955213537000077 ], [ -82.008315560999961, 28.955314139000052 ], [ -82.008215305999954, 28.95535230400003 ], [ -82.008115831999987, 28.955391845000065 ], [ -82.008009714999957, 28.955435854000029 ], [ -82.007912000999966, 28.95547848800004 ], [ -82.007802796999954, 28.955534999000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00848928399995, 28.954155939000032 ], [ -82.008489886999939, 28.954346452000038 ], [ -82.008489908999934, 28.954600330000062 ], [ -82.008489929999939, 28.95485681100007 ], [ -82.008495861999961, 28.955002628000045 ], [ -82.008504746999961, 28.955039082000042 ], [ -82.008526954, 28.955088554000042 ], [ -82.008574335999981, 28.955213537000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008364424999968, 28.95281575000007 ], [ -82.008396375999951, 28.952908230000048 ], [ -82.008430566999948, 28.953002858000048 ], [ -82.008459215999949, 28.95309130000004 ], [ -82.008486223999967, 28.953174416000024 ], [ -82.00849660199998, 28.95324961700004 ], [ -82.008498685999939, 28.953332242000045 ], [ -82.008498692999979, 28.953425982000056 ], [ -82.008497835999947, 28.953521612000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011232632999963, 28.95327452500004 ], [ -82.011472914999956, 28.953319934000035 ], [ -82.011576985999966, 28.953347183000062 ], [ -82.011643564999986, 28.953383520000045 ], [ -82.011684511999988, 28.953413767000029 ], [ -82.011723920999941, 28.953460239000037 ], [ -82.011746884, 28.953514752000046 ], [ -82.011756056999957, 28.953564678000077 ], [ -82.011761050999951, 28.954521061000037 ], [ -82.011760286999959, 28.955256036000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010832674999961, 28.954117038000049 ], [ -82.010798379999983, 28.95415537100007 ], [ -82.010773368999935, 28.954187 ], [ -82.010747573999936, 28.954217942000071 ], [ -82.010740343999942, 28.954226537000068 ], [ -82.010720998999943, 28.954248541000027 ], [ -82.010694031999947, 28.954278450000061 ], [ -82.010666478999951, 28.954308361000074 ], [ -82.010613464999949, 28.95435715800005 ], [ -82.010521865999976, 28.954433899000037 ], [ -82.010462988999961, 28.954485120000072 ], [ -82.010424757999942, 28.954515147000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010424757999942, 28.954515147000052 ], [ -82.010730662999947, 28.954859802000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011760286999959, 28.955256036000037 ], [ -82.011760556999945, 28.955459663000056 ], [ -82.011755384999958, 28.955681371000026 ], [ -82.011752145999935, 28.955720812000038 ], [ -82.011745322999957, 28.955761645000052 ], [ -82.011723479999944, 28.955802480000045 ], [ -82.011696171999972, 28.955834909000032 ], [ -82.011657941999943, 28.955858932000069 ], [ -82.011614246999955, 28.955878151000036 ], [ -82.011556897999981, 28.955888965000042 ], [ -82.011455850999937, 28.95589497800006 ], [ -82.011316570999952, 28.955893789000072 ], [ -82.011087164999935, 28.95589020500006 ], [ -82.010993135999968, 28.955882833000032 ], [ -82.010911013999987, 28.955867401000035 ], [ -82.01081609199997, 28.955842612000026 ], [ -82.010749878999945, 28.955819376000079 ], [ -82.010682604999943, 28.955792430000031 ], [ -82.010548917999984, 28.955708560000062 ], [ -82.010420113999942, 28.955599250000034 ], [ -82.010325671999965, 28.955491550000033 ], [ -82.010264591999942, 28.955414821000033 ], [ -82.010235039999941, 28.955369052000037 ], [ -82.010221381999941, 28.955341430000033 ], [ -82.010213185999987, 28.955303 ], [ -82.010213181999973, 28.955270574000053 ], [ -82.010218640999938, 28.955235745000039 ], [ -82.010232291999955, 28.955202116000066 ], [ -82.010255502999939, 28.955163685000059 ], [ -82.010284173999935, 28.955133657000033 ], [ -82.010323770999946, 28.955107233000035 ], [ -82.01037019599994, 28.955079608000062 ], [ -82.010458946999961, 28.955032763000077 ], [ -82.010646964999978, 28.954914748000078 ], [ -82.010730662999947, 28.954859802000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009424610999986, 28.955421253000054 ], [ -82.00913320899997, 28.955494151000039 ], [ -82.00898290899994, 28.955536172000052 ], [ -82.008834357999945, 28.955585597000038 ], [ -82.008735607999938, 28.955617602000075 ], [ -82.008682977999968, 28.95563478400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010424757999942, 28.954515147000052 ], [ -82.01034829699995, 28.954571599000076 ], [ -82.010281392999957, 28.954618441000036 ], [ -82.010243161999938, 28.954643666000038 ], [ -82.010209026999974, 28.954666486000065 ], [ -82.010172286999989, 28.954688005000037 ], [ -82.010117543999968, 28.954719336000039 ], [ -82.010029711999948, 28.954762681000034 ], [ -82.009972809999965, 28.954791405000037 ], [ -82.009915460999935, 28.954817830000025 ], [ -82.009814024999969, 28.954858694000052 ], [ -82.009717874999978, 28.954895271000055 ], [ -82.009639914, 28.954920420000064 ], [ -82.009538565999947, 28.954947854000068 ], [ -82.00943981599994, 28.95497528900006 ], [ -82.009341066, 28.95500043800007 ], [ -82.009307411999941, 28.955007898000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009307411999941, 28.955007898000076 ], [ -82.00896165499995, 28.95509756000007 ], [ -82.00870178699995, 28.955173003000027 ], [ -82.008574335999981, 28.955213537000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009307411999941, 28.955007898000076 ], [ -82.009372073999941, 28.955249516000038 ], [ -82.009424610999986, 28.955421253000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007802796999954, 28.955534999000065 ], [ -82.007849006999948, 28.955619153000043 ], [ -82.007924431999982, 28.955762463000042 ], [ -82.008009286999936, 28.955918801000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008682977999968, 28.95563478400004 ], [ -82.008545248999951, 28.955687806000071 ], [ -82.00846310299994, 28.955719790000046 ], [ -82.008366145999958, 28.955758884000034 ], [ -82.008259760999977, 28.955802713000026 ], [ -82.008178961999988, 28.95583943500003 ], [ -82.008102204999943, 28.955873788000076 ], [ -82.008009286999936, 28.955918801000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009881274999941, 28.956895825000061 ], [ -82.009445844999959, 28.957418030000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008682977999968, 28.95563478400004 ], [ -82.008764704999976, 28.955784849000054 ], [ -82.008822172999942, 28.955893478000064 ], [ -82.008882572999937, 28.956012420000036 ], [ -82.008951573, 28.956141331000026 ], [ -82.009014903999969, 28.956260274000044 ], [ -82.009071859999949, 28.956343941000057 ], [ -82.009105530999989, 28.956384209000078 ], [ -82.00914458699998, 28.956420923000053 ], [ -82.009187684999972, 28.956450532000076 ], [ -82.00925355399994, 28.956495399000062 ], [ -82.009322742999984, 28.956541116000039 ], [ -82.00939466799997, 28.956588895000039 ], [ -82.00949744199994, 28.956653046000042 ], [ -82.00958718399994, 28.956707829000038 ], [ -82.009667710999963, 28.956758359000048 ], [ -82.009742556999981, 28.956805819000067 ], [ -82.009817976999955, 28.956855559000076 ], [ -82.009881274999941, 28.956895825000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009881274999941, 28.956895825000061 ], [ -82.010017298999969, 28.956981093000024 ], [ -82.010091372999966, 28.957029649000049 ], [ -82.010153702999958, 28.957070887000043 ], [ -82.010224704999985, 28.957112548000055 ], [ -82.010292042999936, 28.957144522000078 ], [ -82.010353993999956, 28.957167021000032 ], [ -82.010426716999973, 28.957181229000071 ], [ -82.010504826999977, 28.95718596100005 ], [ -82.010689323999941, 28.957185947000028 ], [ -82.010871634999944, 28.957182255000077 ], [ -82.011096029999976, 28.957181176000063 ], [ -82.011284566999961, 28.957179976000077 ], [ -82.011447517999954, 28.95717759200005 ], [ -82.011547173999986, 28.957178769000052 ], [ -82.011618548999934, 28.95717520900007 ], [ -82.011680186999968, 28.957164760000069 ], [ -82.011737358999937, 28.957148755000048 ], [ -82.011810122999975, 28.957128178000062 ], [ -82.011916669999948, 28.957091599000023 ], [ -82.01215055199998, 28.956997866000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01222735999994, 28.958027939000033 ], [ -82.012324324999952, 28.958042143000057 ], [ -82.01242936899996, 28.958046871000079 ], [ -82.012541146, 28.95805041400007 ], [ -82.012674469999979, 28.958049216000063 ], [ -82.012939853999967, 28.958052831000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012939853999967, 28.958052831000032 ], [ -82.013035645999935, 28.95805050000007 ], [ -82.013191992999964, 28.958047994000026 ], [ -82.013318761999983, 28.958048013000052 ], [ -82.013415772999963, 28.958048003000044 ], [ -82.013542711999946, 28.958047990000068 ], [ -82.013661394999986, 28.958047978000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013661394999986, 28.958047978000025 ], [ -82.013776837999956, 28.958051561000048 ], [ -82.013889522999989, 28.95805273600007 ], [ -82.014087836999977, 28.958051888000057 ], [ -82.014264149999974, 28.95805186900003 ], [ -82.014384957999937, 28.958051856000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012939853999967, 28.958052831000032 ], [ -82.012937887999954, 28.959738277000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012937887999954, 28.959738277000042 ], [ -82.01314451099995, 28.959738257000026 ], [ -82.013352147999967, 28.959738236000078 ], [ -82.013514204999979, 28.959738220000077 ], [ -82.013657017999947, 28.959738206000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013661394999986, 28.958047978000025 ], [ -82.013657017999947, 28.959738206000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013657017999947, 28.959738206000054 ], [ -82.013893013999962, 28.959739071000058 ], [ -82.014042917999973, 28.959739056000046 ], [ -82.014181679999979, 28.959739041000034 ], [ -82.014322466999943, 28.959739026000079 ], [ -82.014379187999964, 28.959739020000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014384957999937, 28.958051856000054 ], [ -82.014379187999964, 28.959739020000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014379187999964, 28.959739020000029 ], [ -82.014519975999974, 28.959739005000074 ], [ -82.014689123999972, 28.959738987000037 ], [ -82.014819781999961, 28.959738972000025 ], [ -82.014965632999974, 28.959738956000024 ], [ -82.015095280999958, 28.959738942000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015096741999969, 28.958054650000065 ], [ -82.015095280999958, 28.959738942000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015095280999958, 28.959738942000058 ], [ -82.01519757799997, 28.959739821000028 ], [ -82.015332289999947, 28.959739806000073 ], [ -82.015456870999969, 28.95973979200005 ], [ -82.015544989999967, 28.959739782000042 ], [ -82.015612850999958, 28.95973977400007 ], [ -82.015634120999948, 28.959737098000062 ], [ -82.015658428999984, 28.959730861000025 ], [ -82.015688813999986, 28.959720168000047 ], [ -82.015713119999987, 28.959706804000064 ], [ -82.01574147599996, 28.959687202000055 ], [ -82.015766795, 28.959664039000074 ], [ -82.015780972999949, 28.959645331000047 ], [ -82.01579312399997, 28.959625732000063 ], [ -82.015802235999956, 28.959603462000075 ], [ -82.015812357999948, 28.959559813000055 ], [ -82.015816392999966, 28.959457371000042 ], [ -82.01581637399994, 28.959329543000024 ], [ -82.015816357999938, 28.959222649000026 ], [ -82.01581632999995, 28.959037366000075 ], [ -82.015816300999973, 28.958846738000034 ], [ -82.015816270999949, 28.958654328000023 ], [ -82.015817243999948, 28.958385312000075 ], [ -82.015817225999967, 28.958268619000023 ], [ -82.015817204999962, 28.958133220000036 ], [ -82.015815950999979, 28.958059399000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015815950999979, 28.958059399000035 ], [ -82.01581592399998, 28.957884761000059 ], [ -82.015815897999971, 28.957714593000048 ], [ -82.015815869999983, 28.957535485000051 ], [ -82.015815843999974, 28.957356378000043 ], [ -82.015817065999954, 28.957219273000078 ], [ -82.015817045999938, 28.95708565700005 ], [ -82.015812987999936, 28.957039336000037 ], [ -82.015805891999946, 28.956995688000063 ], [ -82.015778531999956, 28.956908394000038 ], [ -82.015716899999973, 28.956791106000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01215055199998, 28.956997866000052 ], [ -82.012190178999958, 28.957090724000068 ], [ -82.012212907999981, 28.95716432200004 ], [ -82.012219418999962, 28.957200563000072 ], [ -82.012223351999978, 28.957281279000028 ], [ -82.012225220999937, 28.957377418000078 ], [ -82.012225474, 28.957465328000069 ], [ -82.012225490999981, 28.957600967000076 ], [ -82.012225666999939, 28.957741706000036 ], [ -82.012225685999965, 28.957909519000054 ], [ -82.01222735999994, 28.958027939000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992392577999965, 28.954400636000059 ], [ -81.992379264999954, 28.954579004000038 ], [ -81.992377021999971, 28.954623889000061 ], [ -81.992376427999943, 28.954726333000053 ], [ -81.992376911999941, 28.954769921000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992376911999941, 28.954769921000036 ], [ -81.992377787999942, 28.954848373000061 ], [ -81.99236925799994, 28.955054750000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990870187999974, 28.954411863000075 ], [ -81.990951834999976, 28.954340064000064 ], [ -81.991030566999939, 28.954263136000066 ], [ -81.99111804599994, 28.954178514000034 ], [ -81.99115521899995, 28.954138182000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975378339999963, 28.951899149000042 ], [ -81.975661415, 28.951941736000038 ], [ -81.975765494999962, 28.95195538400003 ], [ -81.975941397999975, 28.951963559000035 ], [ -81.976351072999989, 28.951963631000069 ], [ -81.976860269999975, 28.951963720000037 ], [ -81.976992199999984, 28.951963742000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973796172999982, 28.950290970000026 ], [ -81.973995004999949, 28.950560025000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97179878999998, 28.943506487000036 ], [ -81.971938820999981, 28.943504168000061 ], [ -81.972220322999988, 28.943502674000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972338665999985, 28.946509050000031 ], [ -81.972400977999939, 28.946570037000072 ], [ -81.972469918999934, 28.946635 ], [ -81.972612956999967, 28.946751059000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969056742999953, 28.948109825000074 ], [ -81.969162950999987, 28.948261172000059 ], [ -81.969259547999968, 28.948407861000078 ], [ -81.969353289999958, 28.948546786000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96708171399996, 28.946679698000025 ], [ -81.967071924999971, 28.946850963000031 ], [ -81.967059716999984, 28.946970846000056 ], [ -81.96701827399994, 28.947182777000023 ], [ -81.966928121999956, 28.94748889400006 ], [ -81.966864750999946, 28.947767186000078 ], [ -81.96683306999995, 28.947891347000052 ], [ -81.966767684, 28.94822109200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977599872999974, 28.941275073000043 ], [ -81.977698228999941, 28.94122840700004 ], [ -81.977968450999981, 28.941111870000043 ], [ -81.97808480599997, 28.941098195000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973021694999943, 28.936562087000027 ], [ -81.973030345999973, 28.936714915000039 ], [ -81.973036027999967, 28.936980126000037 ], [ -81.973040633999972, 28.937254654000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965372315999957, 28.960001946000034 ], [ -81.962829415999977, 28.957503320000058 ], [ -81.962775617999966, 28.957449661000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964355720999947, 28.955461808000052 ], [ -81.964306558999965, 28.955501487000049 ], [ -81.964226204999989, 28.955575711000051 ], [ -81.964137864999941, 28.955681313000071 ], [ -81.964076840999951, 28.955768076000027 ], [ -81.96402550199997, 28.955856734000065 ], [ -81.963981696999952, 28.955952653000054 ], [ -81.963940401999935, 28.956052043000057 ], [ -81.96390089099998, 28.956176679000066 ], [ -81.963855984999952, 28.956339181000033 ], [ -81.963818262999951, 28.956478018000041 ], [ -81.96379131599997, 28.956583724000041 ], [ -81.963760792999949, 28.956661027000052 ], [ -81.96372847899994, 28.956724132000033 ], [ -81.96369796099998, 28.956780923000053 ], [ -81.963663855999982, 28.956839294000076 ], [ -81.963618985999972, 28.956897660000038 ], [ -81.963575910999964, 28.956949715000064 ], [ -81.963473624999949, 28.957034890000045 ], [ -81.963419790999978, 28.957075898000028 ], [ -81.963324691999958, 28.957127939000031 ], [ -81.963234979999982, 28.957165782000061 ], [ -81.963145267999948, 28.957200470000032 ], [ -81.963084260999949, 28.957232008000062 ], [ -81.962985569999944, 28.957293517000039 ], [ -81.962775617999966, 28.957449661000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974854590999939, 28.952826734000041 ], [ -81.97485482899998, 28.952969450000069 ], [ -81.974854721999975, 28.953411346000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963350374999948, 28.953250859000036 ], [ -81.963490518999947, 28.953859015000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967570549999948, 28.952972756000065 ], [ -81.967606604999958, 28.953589578000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969743214999937, 28.954079404000026 ], [ -81.968925715999944, 28.954700125000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967252953999946, 28.954527793000068 ], [ -81.967278872999941, 28.95490181200006 ], [ -81.967275976999986, 28.955022536000058 ], [ -81.96726450999995, 28.955110561000026 ], [ -81.967235890999973, 28.95518349200006 ], [ -81.967207276999943, 28.955238816000076 ], [ -81.967155779999985, 28.95531174100006 ], [ -81.966839908999987, 28.955720510000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973500564999938, 28.955888603000062 ], [ -81.97396996599997, 28.956371690000026 ], [ -81.974008718999983, 28.956415336000077 ], [ -81.974045916999955, 28.956468525000048 ], [ -81.974076912999976, 28.956528533000039 ], [ -81.974101707999978, 28.956581721000077 ], [ -81.97412184999996, 28.956639001000042 ], [ -81.974132687999941, 28.956700368000043 ], [ -81.974140606999981, 28.956773807000047 ], [ -81.97412951299998, 28.958182200000067 ], [ -81.974124214999961, 28.958600107000052 ], [ -81.974124200999938, 28.958654915000068 ], [ -81.974124180999979, 28.958734842000069 ], [ -81.974116375999984, 28.958798783000077 ], [ -81.974098179999942, 28.958874140000034 ], [ -81.974061806999941, 28.958960911000077 ], [ -81.974025121999944, 28.959029506000036 ], [ -81.973983241999974, 28.959089499000072 ], [ -81.973927406999962, 28.959154944000034 ], [ -81.973873123999965, 28.959205390000079 ], [ -81.973800236999978, 28.959253105000073 ], [ -81.973724248999986, 28.95929536500006 ], [ -81.973674624999944, 28.959317173000045 ], [ -81.973625485999946, 28.959333061000052 ], [ -81.973552775999963, 28.959353600000043 ], [ -81.973477470999967, 28.959371855000029 ], [ -81.973389183999984, 28.959378689000062 ], [ -81.971607916999972, 28.959378325000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968187054999987, 28.957168832000036 ], [ -81.96763571799994, 28.956861149000076 ], [ -81.967547077999939, 28.956823401000065 ], [ -81.967441278999956, 28.956800739000073 ], [ -81.967346911999982, 28.956790657000056 ], [ -81.967143870999962, 28.956803183000034 ], [ -81.966903652999974, 28.956818214000066 ], [ -81.966809282999975, 28.956823221000036 ], [ -81.966729215999976, 28.956813141000055 ], [ -81.966657729999952, 28.95679300300003 ], [ -81.966580526999962, 28.956767833000072 ], [ -81.966494748999935, 28.956727570000055 ], [ -81.966397537999967, 28.956672213000047 ], [ -81.966205984999988, 28.956533837000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968463228999951, 28.958310766000068 ], [ -81.967492323999977, 28.958168957000055 ], [ -81.967421430999934, 28.958164429000078 ], [ -81.967355423999948, 28.958163571000057 ], [ -81.967297068999983, 28.958167764000052 ], [ -81.96724349599998, 28.958176165000054 ], [ -81.967188008999983, 28.958188771000039 ], [ -81.967146869999965, 28.958200539000075 ], [ -81.967109107999988, 28.958216651000043 ], [ -81.967051190999939, 28.95825099700005 ], [ -81.966971812999986, 28.958304645000055 ], [ -81.966808771, 28.958427844000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969960287999982, 28.958058867000034 ], [ -81.969879157999969, 28.95820483600005 ], [ -81.96984439299996, 28.958268056000065 ], [ -81.969810822999989, 28.958336545000066 ], [ -81.969782044999988, 28.958411358000035 ], [ -81.969769948999954, 28.958462137000026 ], [ -81.96976284699997, 28.958505139000067 ], [ -81.969757045999984, 28.95936682100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969960287999982, 28.958058867000034 ], [ -81.969417017999945, 28.957804721000059 ], [ -81.969379642999968, 28.957781103000059 ], [ -81.969353288999969, 28.957761075000064 ], [ -81.969322668999951, 28.957734277000043 ], [ -81.969299799999987, 28.957701576000034 ], [ -81.969291007999971, 28.957674650000058 ], [ -81.969285024999976, 28.957651467000062 ], [ -81.969282666999959, 28.957618574000037 ], [ -81.969279895999989, 28.957314249000035 ], [ -81.969281556999988, 28.95722257500006 ], [ -81.969286365999949, 28.957168833000026 ], [ -81.969292363999955, 28.957142490000024 ], [ -81.969299560999957, 28.957117201000074 ], [ -81.969311076999986, 28.957089056000029 ], [ -81.969333125999981, 28.957060304000038 ], [ -81.96935829499995, 28.957035019000045 ], [ -81.969391849999965, 28.957012898000073 ], [ -81.969427799999949, 28.956994991000045 ], [ -81.969465873, 28.956984816000045 ], [ -81.969974905999948, 28.956952234000028 ], [ -81.970025697999972, 28.956949813000051 ], [ -81.970077853999953, 28.956954772000074 ], [ -81.970140759999936, 28.956974907000074 ], [ -81.970192224999948, 28.957007614000077 ], [ -81.970232248999935, 28.957050379000066 ], [ -81.970252113999948, 28.957080533000067 ], [ -81.970264086999975, 28.957108988000073 ], [ -81.970271264999951, 28.957149034000054 ], [ -81.970275103999938, 28.957188718000054 ], [ -81.970277903999943, 28.957399986000041 ], [ -81.970277158999977, 28.957483084000046 ], [ -81.970272355999953, 28.957523126000069 ], [ -81.970267552999985, 28.95755790000004 ], [ -81.970252108999944, 28.957601187000023 ], [ -81.969960287999982, 28.958058867000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970509015999937, 28.92316284900005 ], [ -81.970516645999965, 28.923253854000052 ], [ -81.970519666999962, 28.923307295000029 ], [ -81.97051965199995, 28.923359401000027 ], [ -81.970519635999949, 28.923414177000041 ], [ -81.97052410799995, 28.923713449000047 ], [ -81.970525542999951, 28.924012498000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007626426999934, 28.916019885000026 ], [ -82.008179772999938, 28.916022912000074 ], [ -82.008391631999984, 28.916022899000041 ], [ -82.008579883999971, 28.91598760200003 ], [ -82.008794483999964, 28.915940528000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004462528999966, 28.913342018000037 ], [ -82.00437352199998, 28.91353536400004 ], [ -82.004348653999955, 28.913601011000026 ], [ -82.004331153999942, 28.91370250500006 ], [ -82.004335104999939, 28.913996877000045 ], [ -82.004332860999966, 28.914398710000057 ], [ -82.004327496999963, 28.914503635000074 ], [ -82.004315192999968, 28.914592329000072 ], [ -82.004302888999973, 28.914661429000034 ], [ -82.004298984999934, 28.914753561000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010849580999945, 28.91964381300005 ], [ -82.010828, 28.919720899000026 ], [ -82.010819664999985, 28.919766139000046 ], [ -82.010816896999984, 28.919877399000029 ], [ -82.010814000999972, 28.919961602000058 ], [ -82.010808919999988, 28.920016805000046 ], [ -82.010790272999941, 28.920073500000058 ], [ -82.010769927999945, 28.92011677000005 ], [ -82.010709926999937, 28.920200188000024 ], [ -82.010651569999936, 28.920283332000054 ], [ -82.010566811, 28.920401936000076 ], [ -82.010527604999936, 28.920447197000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010527604999936, 28.920447197000044 ], [ -82.010480663999942, 28.920515648000048 ], [ -82.010436199999958, 28.920582898000077 ], [ -82.010416748999944, 28.920623247000037 ], [ -82.01040424599995, 28.920656259000054 ], [ -82.010400078999965, 28.920694161000029 ], [ -82.010398696999971, 28.92076263000007 ], [ -82.010398705999989, 28.920853106000038 ], [ -82.010398721999934, 28.921018164000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010398721999934, 28.921018164000031 ], [ -82.010396189999938, 28.921147481000048 ], [ -82.010404144999939, 28.921201833000055 ], [ -82.010418044999938, 28.921238512000059 ], [ -82.010448621999956, 28.921273965000069 ], [ -82.010476417999939, 28.921300862000066 ], [ -82.010527839999952, 28.921331423000026 ], [ -82.010588988999984, 28.921358317000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966300176999937, 28.898422975000074 ], [ -81.966240267999979, 28.898622792000026 ], [ -81.966143661, 28.898974796000061 ], [ -81.966026159999956, 28.899308919000077 ], [ -81.965934667999989, 28.899497603000043 ], [ -81.965862479999942, 28.899609466000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962554409999939, 28.897767742000042 ], [ -81.962503080999966, 28.89714077800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96171671899998, 28.897901711000031 ], [ -81.961597778999987, 28.897401966000075 ], [ -81.961583840999936, 28.897343396000053 ], [ -81.961595649999936, 28.897277835000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960979608999935, 28.898034142000029 ], [ -81.961597170999937, 28.89792333500003 ], [ -81.96171671899998, 28.897901711000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960979608999935, 28.898034142000029 ], [ -81.960926486999938, 28.897798913000031 ], [ -81.960911996999982, 28.897763919000056 ], [ -81.960886327999958, 28.897721788000069 ], [ -81.960865325999976, 28.897688906000042 ], [ -81.960803866999981, 28.897613363000062 ], [ -81.960759849999988, 28.897546974000079 ], [ -81.960741289999987, 28.897511996000048 ], [ -81.960718446999977, 28.89740682300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960299315999976, 28.898184231000073 ], [ -81.960363130999951, 28.898159303000057 ], [ -81.960456541999974, 28.898126454000078 ], [ -81.960505581999939, 28.898111057000051 ], [ -81.960646855999983, 28.898087470000064 ], [ -81.960819653999977, 28.898058752000054 ], [ -81.960979608999935, 28.898034142000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960299315999976, 28.898184231000073 ], [ -81.960058574999948, 28.897928732000025 ], [ -81.959928153999954, 28.897810269000047 ], [ -81.959850765999988, 28.897739977000072 ], [ -81.959859713999947, 28.897654622000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964660155, 28.897045246000062 ], [ -81.964664669999934, 28.896348544000034 ], [ -81.964623680999978, 28.896072865000065 ], [ -81.964441129999955, 28.894784432000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963933495999981, 28.897072168000079 ], [ -81.963933990999976, 28.896450205000065 ], [ -81.963905544999989, 28.896224820000043 ], [ -81.963851751999982, 28.895851975000028 ], [ -81.96377218899994, 28.895538118000047 ], [ -81.963582981999934, 28.89495708100003 ], [ -81.963566871999944, 28.894873180000047 ], [ -81.963563301999955, 28.894816073000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962930025999981, 28.896442713000056 ], [ -81.962868194999942, 28.89619758200007 ], [ -81.962746859999982, 28.895759231000056 ], [ -81.962661776999937, 28.895539878000079 ], [ -81.962558544999979, 28.895277889000056 ], [ -81.962479698999971, 28.895101166000074 ], [ -81.962455333999969, 28.894956772000057 ], [ -81.962455370999976, 28.894853810000029 ], [ -81.962478782999938, 28.894758868000054 ], [ -81.962525895999988, 28.894673208000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962214119999942, 28.896556304000057 ], [ -81.962162963999958, 28.896362043000067 ], [ -81.962123593999934, 28.896186690000036 ], [ -81.962084206999975, 28.896053348000066 ], [ -81.961995048999938, 28.895810401000062 ], [ -81.961912107999979, 28.89559668000004 ], [ -81.961829361999946, 28.89540041500004 ], [ -81.961789912999961, 28.895309145000056 ], [ -81.961758655999972, 28.895236823000062 ], [ -81.961700604999976, 28.895065118000048 ], [ -81.961675738999986, 28.894955522000032 ], [ -81.961653190999982, 28.894838974000038 ], [ -81.961622985999952, 28.894651950000025 ], [ -81.96162303899996, 28.894507563000047 ], [ -81.961630950999961, 28.894437230000051 ], [ -81.961652922999974, 28.894373145000031 ], [ -81.96170327599998, 28.894284341000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956320718999962, 28.896695150000028 ], [ -81.956644017999963, 28.896375679000073 ], [ -81.956792319999977, 28.896261797000079 ], [ -81.956953140999985, 28.896173645000033 ], [ -81.957349957999952, 28.895986340000036 ], [ -81.958162099999981, 28.895593216000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004399969999952, 28.936542917000054 ], [ -82.004634139999951, 28.936524551000048 ], [ -82.004999424999937, 28.936494910000079 ], [ -82.005085780999934, 28.93648883000003 ], [ -82.005112551999957, 28.936487310000075 ], [ -82.005136730999936, 28.936489589000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003918103, 28.936587892000034 ], [ -82.004399969999952, 28.936542917000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002402982999968, 28.934263127000065 ], [ -82.002123313999959, 28.935259752000036 ], [ -82.002117451999936, 28.935278660000051 ], [ -82.002113347999966, 28.935295161000056 ], [ -82.002109637, 28.93531166300005 ], [ -82.002106118999961, 28.935328164000055 ], [ -82.002102992999937, 28.935344666000049 ], [ -82.002100257999984, 28.935361166000064 ], [ -82.002097913999989, 28.935378011000068 ], [ -82.002095764999979, 28.935394513000062 ], [ -82.002094006999982, 28.935411358000067 ], [ -82.002092442999981, 28.935428203000072 ], [ -82.002091466999957, 28.935444704000076 ], [ -82.002090684999985, 28.935461549000024 ], [ -82.002090099999975, 28.935478394000029 ], [ -82.002090100999965, 28.935495239000034 ], [ -82.002090295999949, 28.935512084000038 ], [ -82.002090685999974, 28.935528930000032 ], [ -82.002091664999966, 28.935545432000026 ], [ -82.002092836999964, 28.935562276000041 ], [ -82.002094399999976, 28.935579121000046 ], [ -82.002096354999935, 28.935595966000051 ], [ -82.002098503999946, 28.935612468000045 ], [ -82.002101044999961, 28.93562931200006 ], [ -82.002103977, 28.935645813000065 ], [ -82.002107102999958, 28.935662315000059 ], [ -82.002110619999939, 28.935678816000063 ], [ -82.002114527999936, 28.935695316000078 ], [ -82.002118632999952, 28.935711818000073 ], [ -82.002123126999948, 28.935727975000077 ], [ -82.002128011999957, 28.935744133000071 ], [ -82.002133093999987, 28.935760291000065 ], [ -82.002138564999939, 28.935776447000023 ], [ -82.002144426999962, 28.935792605000074 ], [ -82.00215048299998, 28.935808419000068 ], [ -82.002156932999981, 28.935824231000026 ], [ -82.002163576999976, 28.935840045000077 ], [ -82.00217061099994, 28.935855515000071 ], [ -82.002178037999954, 28.935870985000065 ], [ -82.002185657999974, 28.935886455000059 ], [ -82.00219366999994, 28.935901924000063 ], [ -82.002201875999958, 28.935917050000057 ], [ -82.00221047399998, 28.935931833000041 ], [ -82.002219267999976, 28.935946959000034 ], [ -82.00222845199994, 28.935961740000039 ], [ -82.002237830999945, 28.935976180000068 ], [ -82.002247600999965, 28.935990618000062 ], [ -82.002257762999989, 28.936005057000045 ], [ -82.002267923999966, 28.936019152000028 ], [ -82.002278474999969, 28.936033247000069 ], [ -82.002289417999975, 28.936046998000052 ], [ -82.002300556999955, 28.936060404000045 ], [ -82.002311889999987, 28.936074155000028 ], [ -82.002323613999977, 28.936087218000068 ], [ -82.00233553299995, 28.936100625000051 ], [ -82.002347647999954, 28.936113345000024 ], [ -82.002360152999984, 28.936126065000053 ], [ -82.002372855999965, 28.936138783000047 ], [ -82.002385751999952, 28.936151159000076 ], [ -82.00239884399997, 28.936163191000048 ], [ -82.002412326999945, 28.936175223000077 ], [ -82.002426005999951, 28.93618691100005 ], [ -82.002439878999951, 28.936198599000079 ], [ -82.002453946999935, 28.936209944000041 ], [ -82.002468406999981, 28.93622094400007 ], [ -82.002482866999969, 28.936231601000031 ], [ -82.002497716999983, 28.93624225800005 ], [ -82.002507486999946, 28.936249477000047 ], [ -82.00251256699994, 28.936252915000068 ], [ -82.002527809999947, 28.93626288400003 ], [ -82.002543246999949, 28.936272853000048 ], [ -82.002558683999951, 28.936282822000067 ], [ -82.002574510999978, 28.936292104000074 ], [ -82.002590532999989, 28.936301386000025 ], [ -82.002606554999943, 28.936310323000043 ], [ -82.002633304999961, 28.936323733000052 ], [ -82.002665544999957, 28.936339937000071 ], [ -82.002703670999949, 28.936358107000046 ], [ -82.002741188999948, 28.936374607000062 ], [ -82.002779096999973, 28.936390764000066 ], [ -82.002817199999981, 28.936406233000071 ], [ -82.002855694999937, 28.936421015000064 ], [ -82.002927015999944, 28.936446797000031 ], [ -82.002966289999961, 28.936460203000024 ], [ -82.003005761999987, 28.936472578000064 ], [ -82.003045622999934, 28.936484609000047 ], [ -82.003085486999964, 28.936495953000076 ], [ -82.003125738999984, 28.936506609000048 ], [ -82.003166186999977, 28.936516921000077 ], [ -82.003206635999959, 28.936526546000039 ], [ -82.003247472999988, 28.936535139000057 ], [ -82.003288506999979, 28.936543389000065 ], [ -82.00332954299995, 28.936551295000072 ], [ -82.003370771999982, 28.936558169000079 ], [ -82.003412196999989, 28.936564356000076 ], [ -82.003453816999979, 28.936570199000073 ], [ -82.003495722999958, 28.936572879000039 ], [ -82.003537174999963, 28.936576931000047 ], [ -82.00357747399994, 28.936579967000057 ], [ -82.003620075999947, 28.936581991000025 ], [ -82.003662679999934, 28.936583004000056 ], [ -82.003701827999976, 28.936585029000071 ], [ -82.003745581999965, 28.936586040000066 ], [ -82.003799698999956, 28.93658705200005 ], [ -82.003843452999945, 28.936588063000045 ], [ -82.003882792999946, 28.936587893000024 ], [ -82.003918103, 28.936587892000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003169156999945, 28.934453646000065 ], [ -82.003224561999957, 28.93445181800007 ], [ -82.003308613999934, 28.934444726000038 ], [ -82.003411526999969, 28.934432396000034 ], [ -82.003488287999971, 28.934419365000053 ], [ -82.003572050999935, 28.934401131000072 ], [ -82.003662090999967, 28.934375842000065 ], [ -82.003758805999951, 28.93434241500006 ], [ -82.003897271999961, 28.934280843000067 ], [ -82.004011830999957, 28.934230027000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002990815999965, 28.949125223000067 ], [ -82.003452094999943, 28.94916934500003 ], [ -82.003656817999968, 28.949187346000031 ], [ -82.003793981999934, 28.94920354900006 ], [ -82.00384939199995, 28.949217646000079 ], [ -82.003941382999983, 28.949243159000048 ], [ -82.00424447599994, 28.949331289000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999260531999937, 28.953214890000027 ], [ -81.998722296999972, 28.953300694000063 ], [ -81.998658829999954, 28.953313299000058 ], [ -81.99862197899995, 28.95332770400006 ], [ -81.998595039999941, 28.953344956000024 ], [ -81.998570795999967, 28.953379921000078 ], [ -81.998560557999951, 28.953426739000065 ], [ -81.998555210999939, 28.954390526000054 ], [ -81.998559887999988, 28.955292073000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999960944999941, 28.953226313000073 ], [ -81.999944531999972, 28.953198063000059 ], [ -81.999930165999956, 28.953178789000049 ], [ -81.999895395999943, 28.953156648000061 ], [ -81.999866734999955, 28.953145844000062 ], [ -81.999817599999972, 28.953144043000066 ], [ -81.999725471999966, 28.953151245000072 ], [ -81.999260531999937, 28.953214890000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999969775999944, 28.954732756000055 ], [ -82.000158806999934, 28.95473086800007 ], [ -82.000403688999938, 28.954728978000048 ], [ -82.000564794999946, 28.954727088000027 ], [ -82.000672546999965, 28.954722486000037 ], [ -82.000705942999957, 28.954719442000055 ], [ -82.000727824999956, 28.954713370000036 ], [ -82.00074738099994, 28.954694969000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999271462999957, 28.955264175000025 ], [ -81.999449523999942, 28.955252218000055 ], [ -81.999877927999989, 28.955233988000032 ], [ -81.999973971999964, 28.955220329000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996500613999956, 28.954761742000073 ], [ -81.996473959999946, 28.955023181000058 ], [ -81.996472, 28.955101762000027 ], [ -81.996471996999958, 28.955198998000071 ], [ -81.99646994699998, 28.955307036000079 ], [ -81.996471989999975, 28.95539707000006 ], [ -81.996474034999949, 28.955485302000056 ], [ -81.99647403299997, 28.955560930000047 ], [ -81.996471007999958, 28.955636133000041 ], [ -81.996471786999962, 28.955706262000035 ], [ -81.99647611599994, 28.956155982000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995768185999964, 28.954670792000059 ], [ -81.995755441999961, 28.954939682000031 ], [ -81.995753382999965, 28.955188172000078 ], [ -81.995747235999943, 28.955330424000067 ], [ -81.995749280999974, 28.955420458000049 ], [ -81.995751322, 28.955537500000048 ], [ -81.99574828599998, 28.955653025000061 ], [ -81.995753151999963, 28.956144490000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99647611599994, 28.956155982000041 ], [ -81.996408496999948, 28.956155145000025 ], [ -81.996273018999943, 28.956152961000043 ], [ -81.996103441999935, 28.956147934000057 ], [ -81.99595603299997, 28.956144327000061 ], [ -81.995753151999963, 28.956144490000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972739311999987, 28.957950612000047 ], [ -81.971608305999951, 28.957955609000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973239034999949, 28.95340746100004 ], [ -81.973233505999985, 28.954262792000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978274638999949, 28.955731652000054 ], [ -81.978274115999966, 28.956391550000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978295702999958, 28.952825733000054 ], [ -81.978291761999969, 28.953438189000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970846724999944, 28.952861091000045 ], [ -81.97085266299996, 28.953044986000066 ], [ -81.970861258999946, 28.953102745000024 ], [ -81.970877386999973, 28.953169026000069 ], [ -81.970899977999977, 28.953226788000052 ], [ -81.970932485999981, 28.953290649000053 ], [ -81.970975298999974, 28.953354627000067 ], [ -81.971087222999984, 28.95347584600006 ], [ -81.971667031999971, 28.95406510600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956504031999941, 28.943908876000023 ], [ -81.956318621999969, 28.944167883000034 ], [ -81.956287398999962, 28.944222578000051 ], [ -81.95626598399997, 28.944272547000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961082587999954, 28.943627946000049 ], [ -81.960932989999947, 28.943612812000026 ], [ -81.960833005999973, 28.943615237000074 ], [ -81.960778141999981, 28.943628526000055 ], [ -81.960739740999941, 28.943653279000046 ], [ -81.960709018999978, 28.943680285000028 ], [ -81.960687908999944, 28.943708526000023 ], [ -81.960662924999951, 28.943745558000046 ], [ -81.960583519999943, 28.943913254000051 ], [ -81.960528784999951, 28.944089083000051 ], [ -81.960511760999964, 28.944166501000041 ], [ -81.960496906999936, 28.944294859000024 ], [ -81.96049248199995, 28.944387119000055 ], [ -81.960496832, 28.944493652000062 ], [ -81.960505215999945, 28.944557093000071 ], [ -81.960530888999983, 28.944650577000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961082587999954, 28.943627946000049 ], [ -81.961174840999945, 28.94363764600007 ], [ -81.961250335999978, 28.943656804000057 ], [ -81.961297673999979, 28.943686085000024 ], [ -81.961334773999965, 28.943716487000074 ], [ -81.961355236999964, 28.943748010000036 ], [ -81.961371860999975, 28.943781784000066 ], [ -81.961379526999963, 28.943814429000042 ], [ -81.961383353999963, 28.943843697000034 ], [ -81.961382063999963, 28.943876340000031 ], [ -81.961369252999987, 28.943914607000067 ], [ -81.961316739999972, 28.94403503500007 ], [ -81.961186110999961, 28.944300647000034 ], [ -81.961143863999951, 28.944347911000079 ], [ -81.961111200999937, 28.944381900000053 ], [ -81.961052971999948, 28.944435684000041 ], [ -81.960931365999954, 28.944526825000025 ], [ -81.960849445999941, 28.944578580000041 ], [ -81.960779053999943, 28.944603323000024 ], [ -81.96072146299997, 28.944615689000045 ], [ -81.96060244499995, 28.944630287000052 ], [ -81.960530888999983, 28.944650577000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960530888999983, 28.944650577000061 ], [ -81.960521784999969, 28.94472819300006 ], [ -81.96050384199998, 28.944801354000049 ], [ -81.960466710999981, 28.94485424800007 ], [ -81.960382225999979, 28.944919510000034 ], [ -81.960278543999948, 28.944987017000074 ], [ -81.960122612999953, 28.945084678000057 ], [ -81.960011773999952, 28.945147202000044 ], [ -81.959897694999938, 28.945207727000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962030808999941, 28.941385781000065 ], [ -81.962184358999934, 28.941657138000039 ], [ -81.962207977999981, 28.941698878000068 ], [ -81.962232472999972, 28.941757133000067 ], [ -81.962256267999976, 28.941826613000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959924923999949, 28.939809450000041 ], [ -81.960165564999954, 28.939843716000041 ], [ -81.960242113999982, 28.939854037000032 ], [ -81.960307856999975, 28.939861979000057 ], [ -81.960371797999983, 28.939869127000065 ], [ -81.960426731999974, 28.939876273000039 ], [ -81.960493376999977, 28.939882630000056 ], [ -81.960578928999951, 28.93990167000004 ], [ -81.960674177999977, 28.939928087000055 ], [ -81.960749116999978, 28.939953001000049 ], [ -81.960808558999986, 28.939980167000044 ], [ -81.960842775999936, 28.939996022000059 ], [ -81.960878794999985, 28.940012668000065 ], [ -81.960928319999937, 28.94003486500003 ], [ -81.961006658999963, 28.94007291500003 ], [ -81.961141726999983, 28.940145047000044 ], [ -81.961583962999953, 28.940393624000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959970996999971, 28.939111439000044 ], [ -81.960068575999969, 28.939119590000075 ], [ -81.960137919999966, 28.939126741000052 ], [ -81.960207262999972, 28.939135476000047 ], [ -81.960265800999935, 28.93914183000004 ], [ -81.960356758999978, 28.939153741000041 ], [ -81.960486442, 28.939170416000024 ], [ -81.960610719999977, 28.939187881000066 ], [ -81.960687456999949, 28.939197870000044 ], [ -81.960765052999989, 28.939212785000052 ], [ -81.960848466999948, 28.939229939000029 ], [ -81.960956530999965, 28.939258491000032 ], [ -81.961054686999944, 28.939285454000071 ], [ -81.961128529999939, 28.939309242000036 ], [ -81.961174454999934, 28.939325101000065 ], [ -81.96121226799994, 28.939337025000043 ], [ -81.961247534999984, 28.939350688000047 ], [ -81.961287034999941, 28.939366835000044 ], [ -81.961327945999983, 28.939382981000051 ], [ -81.96137308699997, 28.939400369000055 ], [ -81.961421286999951, 28.939421551000066 ], [ -81.961684888999969, 28.939534063000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96065731799996, 28.938173473000063 ], [ -81.960677742999962, 28.938190486000053 ], [ -81.960720054999967, 28.938233278000041 ], [ -81.960785775999966, 28.93829588400007 ], [ -81.960831693999978, 28.938330754000049 ], [ -81.960923240999989, 28.938391533000072 ], [ -81.961003673999983, 28.938426664000076 ], [ -81.961138747999939, 28.938471861000039 ], [ -81.96157025499997, 28.938614094000059 ], [ -81.961642827999981, 28.938645506000057 ], [ -81.961748979999982, 28.938713746000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962770069999976, 28.936666135000053 ], [ -81.963048494999953, 28.93635409500007 ], [ -81.96308552499994, 28.936315095000054 ], [ -81.963165236999941, 28.936244901000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959216731999959, 28.934068683000078 ], [ -81.959317296999984, 28.934184453000057 ], [ -81.959362423999949, 28.934233260000042 ], [ -81.959408839999981, 28.934286605000068 ], [ -81.959465571999942, 28.934344491000047 ], [ -81.95953187899994, 28.93441123100007 ], [ -81.959586960999957, 28.93446590800005 ], [ -81.959656104999965, 28.934531933000073 ], [ -81.959713725999961, 28.934584893000078 ], [ -81.959785606999958, 28.93464851300007 ], [ -81.959845378999944, 28.934699410000064 ], [ -81.95992019199997, 28.934760280000035 ], [ -81.959982113999956, 28.934809115000064 ], [ -81.960059468999987, 28.93486757900007 ], [ -81.960123540999973, 28.934914008000078 ], [ -81.960203436999961, 28.934970067000052 ], [ -81.960269658999948, 28.935014434000038 ], [ -81.96034882899994, 28.935062040000048 ], [ -81.960417400999972, 28.935102284000038 ], [ -81.960507071999984, 28.93515181600003 ], [ -81.96058795099998, 28.935195155000031 ], [ -81.960688173999984, 28.935246238000047 ], [ -81.960807938999949, 28.935301491000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958046390999982, 28.93436213800004 ], [ -81.958209160999957, 28.934383277000052 ], [ -81.958300057999963, 28.934384334000072 ], [ -81.958371731999989, 28.934380469000075 ], [ -81.958673592999958, 28.934314749000066 ], [ -81.958812915999943, 28.934276211000054 ], [ -81.958900581999956, 28.934246583000061 ], [ -81.958961273999989, 28.934221790000038 ], [ -81.95902320099998, 28.934190037000064 ], [ -81.959216731999959, 28.934068683000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956555723999941, 28.933075989000031 ], [ -81.956528046999949, 28.933170090000033 ], [ -81.956501753999987, 28.933257272000048 ], [ -81.956486618999975, 28.933359127000074 ], [ -81.956486799999936, 28.934532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954140658999961, 28.935160941000049 ], [ -81.954172386999971, 28.935156241000072 ], [ -81.954302487999939, 28.935110683000062 ], [ -81.954458210999974, 28.935049168000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955621194999935, 28.923921146000055 ], [ -81.955858857999942, 28.923727568000061 ], [ -81.955877230999988, 28.92371176000006 ], [ -81.955895015999943, 28.923694921000049 ], [ -81.955912022999939, 28.923678082000038 ], [ -81.955928440999969, 28.923660554000037 ], [ -81.955946028999961, 28.92364397800003 ], [ -81.955965812999978, 28.923620449000055 ], [ -81.955985594999959, 28.923595897000041 ], [ -81.95600421599994, 28.923569298000075 ], [ -81.956015855999965, 28.923548836000066 ], [ -81.956027497999969, 28.923522235000064 ], [ -81.956041469999946, 28.92348744800006 ], [ -81.956055443999958, 28.923447544000055 ], [ -81.956064764999951, 28.923408662000043 ], [ -81.956086776999939, 28.92320778800007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961859402999949, 28.933335150000062 ], [ -81.961924886999952, 28.93328924900004 ], [ -81.961995267999953, 28.933237228000053 ], [ -81.962122565999948, 28.933133187000067 ], [ -81.962472367999965, 28.932817692000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013873289999935, 28.924697695000077 ], [ -82.013874059999978, 28.924618969000051 ], [ -82.013874043999976, 28.924495210000032 ], [ -82.013874023999961, 28.924347386000079 ], [ -82.013875766999945, 28.924225 ], [ -82.013880135999955, 28.924191861000054 ], [ -82.01388678099994, 28.924157598000079 ], [ -82.013895325999954, 28.924130018000028 ], [ -82.013913370999944, 28.924100767000027 ], [ -82.013936164999961, 28.924079036000023 ], [ -82.013960859999941, 28.924062320000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013960859999941, 28.924062320000075 ], [ -82.013771239999983, 28.923861100000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99476890699998, 28.91790002700003 ], [ -81.99469707999998, 28.917749052000033 ], [ -81.994673316999979, 28.917699101000039 ], [ -81.994670479999968, 28.917664214000069 ], [ -81.994675119999954, 28.917634589000045 ], [ -81.994696534999946, 28.917573913000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025750105999975, 28.920772080000063 ], [ -82.025946641999951, 28.919932963000065 ], [ -82.025951624999948, 28.919816494000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026742416, 28.920362625000053 ], [ -82.026895256999978, 28.919377419000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024814938999953, 28.919175745000075 ], [ -82.025456863999977, 28.919206574000043 ], [ -82.025627107999981, 28.919218320000027 ], [ -82.025807960999941, 28.919225652000023 ], [ -82.026055798999948, 28.919238863000032 ], [ -82.026194787999941, 28.919247675000065 ], [ -82.026322056999959, 28.919256491000056 ], [ -82.026444303999938, 28.919271200000026 ], [ -82.026596465999944, 28.91930123700007 ], [ -82.026817634999986, 28.919354479000049 ], [ -82.026895256999978, 28.919377419000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024814938999953, 28.919175745000075 ], [ -82.024798202999989, 28.919215528000052 ], [ -82.024773986999946, 28.919261948000042 ], [ -82.024744383999973, 28.919308466000075 ], [ -82.024713131999988, 28.919339412000056 ], [ -82.024623279999958, 28.91940818300003 ], [ -82.024525609999955, 28.919470081000043 ], [ -82.024416024999937, 28.919538856000031 ], [ -82.024310540999977, 28.919604193000055 ], [ -82.024205058999939, 28.919672967000054 ], [ -82.024091760999966, 28.919745181000053 ], [ -82.024017336999975, 28.919793323000079 ], [ -82.023970063999968, 28.919820146000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024611640999979, 28.918112489000066 ], [ -82.024687189999952, 28.918187965000072 ], [ -82.024740226999938, 28.918259259000024 ], [ -82.024785154999961, 28.918342234000079 ], [ -82.024822323999956, 28.918441789000042 ], [ -82.024839860999975, 28.918544601000065 ], [ -82.024839891999989, 28.918674843000076 ], [ -82.024835355999983, 28.91875299000003 ], [ -82.024833094999963, 28.918821116000061 ], [ -82.024826345999941, 28.918923076000056 ], [ -82.02482403199997, 28.919019487000071 ], [ -82.024824962999958, 28.919078506000062 ], [ -82.024819501999957, 28.919123681000031 ], [ -82.024814938999953, 28.919175745000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024739122999961, 28.921688202000041 ], [ -82.02471935799997, 28.921697770000037 ], [ -82.024688595999976, 28.921708538000075 ], [ -82.024638187999983, 28.921715722000044 ], [ -82.024595192999982, 28.921714425000062 ], [ -82.024536487999967, 28.921700847000068 ], [ -82.024470056999974, 28.921678858000064 ], [ -82.024376074999964, 28.921642434000034 ], [ -82.024268220999943, 28.921603607000065 ], [ -82.02414375799998, 28.921554813000057 ], [ -82.024099990999957, 28.921535225000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024739122999961, 28.921688202000041 ], [ -82.024807863999968, 28.921749700000078 ], [ -82.024898732999986, 28.921800475000055 ], [ -82.024992913999938, 28.921846868000046 ], [ -82.02513124799998, 28.921888095000043 ], [ -82.02521311199996, 28.921904925000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025025640999957, 28.920635048000065 ], [ -82.025023127999987, 28.920749183000055 ], [ -82.025014748999979, 28.920841660000065 ], [ -82.025006563999966, 28.920929325000031 ], [ -82.024992715999986, 28.921024210000041 ], [ -82.024970665999945, 28.921133879000024 ], [ -82.024951150999982, 28.921223953000037 ], [ -82.024934560999952, 28.921301648000053 ], [ -82.024918167999942, 28.921372125000062 ], [ -82.024895910999987, 28.921437791000074 ], [ -82.024879428999952, 28.921495125000035 ], [ -82.024854734999963, 28.921561219000068 ], [ -82.02483300199998, 28.921609921000027 ], [ -82.024812251999947, 28.92163688200003 ], [ -82.024789522999981, 28.92165688800003 ], [ -82.024761851999983, 28.921676023000032 ], [ -82.024739122999961, 28.921688202000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024980449999987, 28.919921520000059 ], [ -82.024992421999968, 28.920071165000024 ], [ -82.025003460999983, 28.920209113000055 ], [ -82.025006409999946, 28.920284400000071 ], [ -82.025014642999963, 28.920401283000047 ], [ -82.025023069999975, 28.920508195000025 ], [ -82.025025833999962, 28.920627486000058 ], [ -82.025025640999957, 28.920635048000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023970063999968, 28.919820146000063 ], [ -82.023962640999969, 28.919824273000074 ], [ -82.023857157999942, 28.919889609000052 ], [ -82.023747766999975, 28.919961821000072 ], [ -82.023672025999986, 28.920009315000073 ], [ -82.023577241999988, 28.920069667000064 ], [ -82.023485484999981, 28.920129130000078 ], [ -82.023398766999946, 28.920182381000075 ], [ -82.02336246699997, 28.920201907000035 ], [ -82.023320554999941, 28.920224542000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023320554999941, 28.920224542000028 ], [ -82.023269696999989, 28.92024894900004 ], [ -82.023196700999961, 28.920271660000026 ], [ -82.023118433999969, 28.920290676000036 ], [ -82.023022633999972, 28.920307551000064 ], [ -82.022938932999978, 28.920323536000069 ], [ -82.022875402999944, 28.920339517000059 ], [ -82.022822472999962, 28.920360335000055 ], [ -82.022767820999945, 28.920388397000067 ], [ -82.022713169999975, 28.920422471000052 ], [ -82.022668071999988, 28.920458764000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960272526999972, 28.892104162000066 ], [ -81.960255534999988, 28.892103125000062 ], [ -81.960164521999957, 28.892092098000035 ], [ -81.960048900999936, 28.89207762500007 ], [ -81.959937183999955, 28.892063152000048 ], [ -81.959817466999937, 28.892033896000044 ], [ -81.959689350999952, 28.89200119800006 ], [ -81.959536240999967, 28.891957493000064 ], [ -81.959375129999955, 28.891891783000062 ], [ -81.959205625999971, 28.891815413000074 ], [ -81.95904451499996, 28.891753484000049 ], [ -81.958879302999947, 28.891688116000068 ], [ -81.958705695999981, 28.891615182000066 ], [ -81.958527988999947, 28.891538808000064 ], [ -81.958366688999945, 28.891462440000055 ], [ -81.95820148599995, 28.891378850000024 ], [ -81.958069284999965, 28.891309367000076 ], [ -81.95804284999997, 28.891287181000052 ], [ -81.958020560999955, 28.891258204000053 ], [ -81.958003582999936, 28.891226423000035 ], [ -81.957990851999966, 28.891194643000063 ], [ -81.957986621999964, 28.891153521000035 ], [ -81.957990883999969, 28.891117074000078 ], [ -81.958004703999961, 28.891079696000077 ], [ -81.958027020999964, 28.891040450000048 ], [ -81.958064211999954, 28.890979716000061 ], [ -81.958115218999978, 28.890895621000027 ], [ -81.958163036999963, 28.890819 ], [ -81.958226789999969, 28.890724630000079 ], [ -81.958258666999939, 28.890676975000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958258666999939, 28.890676975000076 ], [ -81.958883856999989, 28.890983798000036 ], [ -81.959595981999939, 28.891275556000039 ], [ -81.959771947999968, 28.891332094000063 ], [ -81.959887886, 28.89135217200004 ], [ -81.960070083999938, 28.891361337000035 ], [ -81.960203864999983, 28.891359862000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958258666999939, 28.890676975000076 ], [ -81.958321725999951, 28.890585791000035 ], [ -81.958408492, 28.890469277000079 ], [ -81.958516849999967, 28.890339676000053 ], [ -81.958623089999946, 28.890220084000077 ], [ -81.958694360999971, 28.890148620000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958694360999971, 28.890148620000048 ], [ -81.958788870999967, 28.890207435000036 ], [ -81.959173172999954, 28.890393192000033 ], [ -81.959666636999941, 28.890601860000061 ], [ -81.959847845999946, 28.890672942000037 ], [ -81.959924294999951, 28.890697886000055 ], [ -81.959989421999978, 28.890709120000054 ], [ -81.960072958999945, 28.89071412900006 ], [ -81.960151571999972, 28.890711137000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958694360999971, 28.890148620000048 ], [ -81.95872699399996, 28.890112877000035 ], [ -81.95880174499996, 28.89003213500007 ], [ -81.958848493999938, 28.889966106000031 ], [ -81.958875413999976, 28.889922501000058 ], [ -81.958898089999934, 28.889868926000076 ], [ -81.958915097999977, 28.889825319000067 ], [ -81.958923615999936, 28.889769247000061 ], [ -81.95892969199997, 28.88970934300005 ], [ -81.958930750999968, 28.88962719500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958867291, 28.888976716000059 ], [ -81.95885969699998, 28.888905224000041 ], [ -81.958843153999965, 28.888752582000052 ], [ -81.958822514999952, 28.88859237500003 ], [ -81.958806170999935, 28.888432512000065 ], [ -81.958795472999952, 28.888326968000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958930750999968, 28.88962719500006 ], [ -81.95892545199996, 28.889563579000026 ], [ -81.958909103999986, 28.889414718000069 ], [ -81.958894096999984, 28.889222203000031 ], [ -81.958877170999983, 28.889055222000025 ], [ -81.958867291, 28.888976716000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958867291, 28.888976716000059 ], [ -81.958969238999941, 28.888965532000043 ], [ -81.959076847999938, 28.888963072000024 ], [ -81.95916462799994, 28.888973067000052 ], [ -81.959471851999979, 28.889032974000031 ], [ -81.959810666999942, 28.889096451000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957116398999972, 28.888800655000068 ], [ -81.957261074999963, 28.887685980000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956297906999964, 28.888669960000072 ], [ -81.956346790999987, 28.888533496000036 ], [ -81.956388064999942, 28.888380528000027 ], [ -81.956416583999953, 28.888220497000077 ], [ -81.956446050999944, 28.888065245000064 ], [ -81.956471308999937, 28.887930940000047 ], [ -81.956490952999957, 28.887831136000045 ], [ -81.956507768999984, 28.887795406000066 ], [ -81.956528781999964, 28.887769537000054 ], [ -81.956565196999975, 28.887737510000079 ], [ -81.956612813999982, 28.887707952000028 ], [ -81.956664623999984, 28.887693182000078 ], [ -81.956724831999963, 28.887688273000037 ], [ -81.956904045999977, 28.887687099000061 ], [ -81.957147665999969, 28.887687176000043 ], [ -81.957261074999963, 28.887685980000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955527960999973, 28.889901703000078 ], [ -81.955629476999945, 28.889805935000027 ], [ -81.955740232999972, 28.889676072000043 ], [ -81.955825464999975, 28.889559161000079 ], [ -81.955916544, 28.889409990000047 ], [ -81.955969121999942, 28.889318906000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954033872999958, 28.889061726000079 ], [ -81.954556742999955, 28.889060261000054 ], [ -81.955160249999949, 28.889064244000053 ], [ -81.955271768999978, 28.889074939000068 ], [ -81.955373324999982, 28.889096275000043 ], [ -81.955443428999956, 28.889107663000061 ], [ -81.955513527999983, 28.889135291000059 ], [ -81.955598382999938, 28.889169417000062 ], [ -81.955969121999942, 28.889318906000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954033872999958, 28.889061726000079 ], [ -81.954033838999976, 28.88913804200007 ], [ -81.954031831999941, 28.889311041000042 ], [ -81.954035845999954, 28.889507684000023 ], [ -81.954035784999974, 28.889645883000071 ], [ -81.954035744999942, 28.889736640000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954035744999942, 28.889736640000024 ], [ -81.954424218999975, 28.88974055400007 ], [ -81.954998513999954, 28.889735905000066 ], [ -81.955194085999949, 28.889735970000061 ], [ -81.955247585999984, 28.889745730000072 ], [ -81.955304676999958, 28.889762506000068 ], [ -81.955402539999966, 28.889809108000065 ], [ -81.955457874999979, 28.889846472000045 ], [ -81.955527960999973, 28.889901703000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955208556999935, 28.890409829000077 ], [ -81.955210419999958, 28.890369236000026 ], [ -81.95521966299998, 28.890323774000024 ], [ -81.955245519999949, 28.890260457000068 ], [ -81.955273223999939, 28.890198763000058 ], [ -81.955315686999938, 28.890130580000061 ], [ -81.955359990999966, 28.890078635000066 ], [ -81.955455972999971, 28.88997961900003 ], [ -81.955527960999973, 28.889901703000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954046193999943, 28.890407814000071 ], [ -81.955208556999935, 28.890409829000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954035744999942, 28.889736640000024 ], [ -81.954037242999959, 28.889785916000051 ], [ -81.954039024999986, 28.889932054000042 ], [ -81.954040780999946, 28.890135023000028 ], [ -81.954040693999957, 28.890331496000044 ], [ -81.954046193999943, 28.890407814000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955600526999945, 28.888466336000079 ], [ -81.955834293999942, 28.888540549000027 ], [ -81.956297906999964, 28.888669960000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954030477999936, 28.888391118000072 ], [ -81.954424809999978, 28.888387441000077 ], [ -81.955013855999937, 28.888386579000041 ], [ -81.95517621099998, 28.88839637500007 ], [ -81.95531755899998, 28.888413180000043 ], [ -81.955497217999948, 28.888443571000039 ], [ -81.955600526999945, 28.888466336000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954030477999936, 28.888391118000072 ], [ -81.954027910999969, 28.888456406000046 ], [ -81.954032148999943, 28.888590826000041 ], [ -81.954027763999989, 28.888790902000039 ], [ -81.954033902999981, 28.888993528000071 ], [ -81.954033872999958, 28.889061726000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955600526999945, 28.888466336000079 ], [ -81.955644870999947, 28.888318591000029 ], [ -81.955673114999968, 28.888198437000028 ], [ -81.955697978999979, 28.888056807000055 ], [ -81.955724377999957, 28.887907809000069 ], [ -81.955722550999951, 28.887863968000033 ], [ -81.955706280999948, 28.887823729000047 ], [ -81.95568383899996, 28.887789262000069 ], [ -81.955652490999967, 28.887750283000059 ], [ -81.955610067999942, 28.887724288000072 ], [ -81.955562105999945, 28.88770803500006 ], [ -81.955506758999945, 28.887701521000054 ], [ -81.955311191999954, 28.887701457000048 ], [ -81.955021531999989, 28.887701360000051 ], [ -81.95475986799994, 28.887703436000038 ], [ -81.954517851999981, 28.887702815000068 ], [ -81.954241106999973, 28.887704346000078 ], [ -81.954174680999984, 28.887720560000048 ], [ -81.954121164999947, 28.887748146000035 ], [ -81.954075022999973, 28.887787101000072 ], [ -81.954051020999941, 28.88782930900004 ], [ -81.954034393999962, 28.887878016000059 ], [ -81.954028130999973, 28.887957927000059 ], [ -81.954028085999937, 28.88805968500003 ], [ -81.954028003999952, 28.88824532600006 ], [ -81.954030477999936, 28.888391118000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023224386999971, 28.915845744000023 ], [ -82.022961332999955, 28.916076494000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023224386999971, 28.915845744000023 ], [ -82.023258397999939, 28.915874776000067 ], [ -82.023319418999961, 28.91593372400007 ], [ -82.023360435999962, 28.915985635000027 ], [ -82.023393451999937, 28.916034908000029 ], [ -82.023418202999949, 28.916076261000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024094943999955, 28.91765908800005 ], [ -82.02425692099996, 28.917539134000037 ], [ -82.024472920999983, 28.917403948000072 ], [ -82.024546920999967, 28.917355538000038 ], [ -82.02459491999997, 28.917313290000038 ], [ -82.02462511899995, 28.917276077000054 ], [ -82.024649908999947, 28.917238482000073 ], [ -82.024667900999987, 28.917196241000056 ], [ -82.02467489299994, 28.917154880000055 ], [ -82.024678411999957, 28.917097648000038 ], [ -82.02467833299994, 28.916759371000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02467833299994, 28.916759371000069 ], [ -82.024698259, 28.916759367000054 ], [ -82.024806294999962, 28.916759347000038 ], [ -82.024903975999962, 28.916759329000058 ], [ -82.025032719999956, 28.916759305000028 ], [ -82.025130400999956, 28.916759287000048 ], [ -82.025204874999986, 28.916762316000074 ], [ -82.025246883999955, 28.916771108000034 ], [ -82.025284892999935, 28.916786940000065 ], [ -82.02531890399996, 28.916807173000052 ], [ -82.025348912999959, 28.916831807000051 ], [ -82.025369923999961, 28.916860841000073 ], [ -82.025383931999954, 28.916888118000031 ], [ -82.025394942999981, 28.916921555000044 ], [ -82.025400960999946, 28.916994591000048 ], [ -82.025402977999988, 28.917064108000034 ], [ -82.025402991999954, 28.917124827000066 ], [ -82.025403008999945, 28.917192584000077 ], [ -82.025398022, 28.917243623000047 ], [ -82.025391034999984, 28.917305223000028 ], [ -82.025377049999975, 28.917375623000055 ], [ -82.025352063999946, 28.917447784000046 ], [ -82.02531907499997, 28.917512909000038 ], [ -82.025276341999984, 28.917585012000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025276341999984, 28.917585012000075 ], [ -82.025250090999975, 28.917625558000054 ], [ -82.025207789999968, 28.917673720000039 ], [ -82.025155103999964, 28.91773205100003 ], [ -82.025098105999973, 28.917783101000055 ], [ -82.025034106999954, 28.91782887200003 ], [ -82.024926106999942, 28.917898409000031 ], [ -82.024833107999939, 28.917958264000049 ], [ -82.024760289999961, 28.918008985000029 ], [ -82.024698564999937, 28.918049563000068 ], [ -82.024650294999958, 28.918082971000047 ], [ -82.024611640999979, 28.918112489000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025276341999984, 28.917585012000075 ], [ -82.025489292999964, 28.91768574300005 ], [ -82.025523414999952, 28.917695658000071 ], [ -82.025551373999974, 28.917701607000026 ], [ -82.025610264999955, 28.917710530000079 ], [ -82.025707822999948, 28.917708745000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022646307999935, 28.917397434000065 ], [ -82.022660568999981, 28.91739811900004 ], [ -82.02275601599996, 28.91739474600007 ], [ -82.022897790999934, 28.91739222700005 ], [ -82.023020818999953, 28.917393589000028 ], [ -82.023128855999971, 28.917393570000058 ], [ -82.023192338999934, 28.917399337000063 ], [ -82.023233680999965, 28.917414582000049 ], [ -82.023262687999988, 28.91743411300007 ], [ -82.023309000999973, 28.917479485000058 ], [ -82.023365669999976, 28.917542729000047 ], [ -82.023448428999984, 28.917628084000057 ], [ -82.023535853999988, 28.917726418000029 ], [ -82.023603157999958, 28.917799357000035 ], [ -82.023664516999986, 28.917866224000079 ], [ -82.023737878999952, 28.917947168000069 ], [ -82.02380857199995, 28.91801638000004 ], [ -82.023885934999953, 28.91809145700006 ], [ -82.023953960999961, 28.918158323000057 ], [ -82.02402331899998, 28.918214629000033 ], [ -82.024060661999954, 28.91823456700007 ], [ -82.024094003999949, 28.918247468000061 ], [ -82.02414734599995, 28.918253325000023 ], [ -82.024208688999977, 28.918253314000026 ], [ -82.024271345999978, 28.918244561000051 ], [ -82.024338352999962, 28.918230798000025 ], [ -82.024436028999958, 28.918203622000078 ], [ -82.024533896999969, 28.91815822600006 ], [ -82.024611640999979, 28.918112489000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023138259999939, 28.918473147000043 ], [ -82.023011046999954, 28.91826369000006 ], [ -82.022842200999946, 28.918032358000062 ], [ -82.022731784999962, 28.917875613000035 ], [ -82.022679989999972, 28.917764238000075 ], [ -82.022657108999965, 28.917655609000064 ], [ -82.022646307999935, 28.917397434000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020540314999948, 28.918546675000073 ], [ -82.020503173999941, 28.918422521000025 ], [ -82.020494273999986, 28.918367768000053 ], [ -82.020492443999956, 28.918103387000031 ], [ -82.02049055699996, 28.917549593000047 ], [ -82.020479633999969, 28.916956371000026 ], [ -82.020481506999943, 28.916739240000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020481506999943, 28.916739240000027 ], [ -82.020561057999942, 28.916737373000046 ], [ -82.020688803999974, 28.91673645700007 ], [ -82.020901465999941, 28.916736424000078 ], [ -82.021008632999951, 28.916737304000037 ], [ -82.021137377999935, 28.916737284000078 ], [ -82.021202025999969, 28.916736377000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019762024999977, 28.91674196200006 ], [ -82.019809693999946, 28.916741955000077 ], [ -82.019917728999985, 28.916741939000076 ], [ -82.02006698699995, 28.916741917000024 ], [ -82.020232582999938, 28.916739278000023 ], [ -82.020344598999941, 28.91673769700003 ], [ -82.020442667999987, 28.916737391000026 ], [ -82.020481506999943, 28.916739240000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021931336999955, 28.918456956000057 ], [ -82.021787708999966, 28.918458128000054 ], [ -82.021596250999949, 28.918458159000068 ], [ -82.021476906999965, 28.918457983000053 ], [ -82.021284606999984, 28.918457763000049 ], [ -82.021208047999949, 28.918457775000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021931336999955, 28.918456956000057 ], [ -82.021922376999953, 28.917392389000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019057213999986, 28.918118891000063 ], [ -82.019055795999975, 28.917999057000031 ], [ -82.019048762999944, 28.917850401000067 ], [ -82.019049568999947, 28.917566261000047 ], [ -82.019045358999961, 28.917393522000054 ], [ -82.019045314999971, 28.917148066000038 ], [ -82.019045291999987, 28.91702533800003 ], [ -82.019042113999944, 28.916744816000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024275265999961, 28.914944988000059 ], [ -82.024273377999975, 28.915119017000052 ], [ -82.024269555999979, 28.915261515000054 ], [ -82.024269108999988, 28.91534686500006 ], [ -82.024269129999936, 28.915437623000059 ], [ -82.024269154999956, 28.915542130000063 ], [ -82.024269172999936, 28.915621886000054 ], [ -82.024269670999956, 28.915755167000043 ], [ -82.024269687999947, 28.915829807000023 ], [ -82.024269698999944, 28.915875612000036 ], [ -82.024264158999983, 28.915912582000033 ], [ -82.024247153999966, 28.915947512000059 ], [ -82.024215971999979, 28.915987434000044 ], [ -82.024181742999986, 28.916018278000024 ], [ -82.024159864999945, 28.916032033000079 ], [ -82.024100481999938, 28.916056795000031 ], [ -82.024059847999979, 28.916062302000057 ], [ -82.023997332999954, 28.916062314000044 ], [ -82.023950445999958, 28.916062322000073 ], [ -82.023884803999977, 28.91606233400006 ], [ -82.023815840999987, 28.916059596000025 ], [ -82.023743948999936, 28.916059609000058 ], [ -82.023665803999961, 28.916059622000034 ], [ -82.023577614999965, 28.916060204000075 ], [ -82.023493352999935, 28.916066230000069 ], [ -82.023418202999949, 28.916076261000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02072994599996, 28.914267651000046 ], [ -82.020719775999964, 28.914205773000049 ], [ -82.020701003999989, 28.914123270000061 ], [ -82.020682234999981, 28.914043517000039 ], [ -82.020657213999982, 28.913963420000073 ], [ -82.020632189999958, 28.913878168000053 ], [ -82.020607169999948, 28.913803915000074 ], [ -82.020566280999958, 28.913707810000062 ], [ -82.020546420999949, 28.913642948000074 ], [ -82.020528982999963, 28.913578409000024 ], [ -82.020522716999949, 28.913506905000077 ], [ -82.020525828999951, 28.913435399000036 ], [ -82.020547695999937, 28.913369389000025 ], [ -82.020575811999947, 28.913295129000062 ], [ -82.020591434999972, 28.91326762500006 ], [ -82.020644560999983, 28.913209863000077 ], [ -82.020685187999959, 28.913174104000063 ], [ -82.020753944999967, 28.91313249600006 ], [ -82.02081960299995, 28.913101695000023 ], [ -82.02090779599996, 28.913079152000023 ], [ -82.02100730899997, 28.913071952000053 ], [ -82.021091702999968, 28.91307469000003 ], [ -82.021238611999934, 28.913080166000043 ], [ -82.021638896999946, 28.913080102000038 ], [ -82.02210841599998, 28.913078960000064 ], [ -82.022442589999969, 28.91308272200007 ], [ -82.022674586999983, 28.913086375000034 ], [ -82.022916418999955, 28.91308633400007 ], [ -82.023264844999972, 28.913090832000023 ], [ -82.023380690999943, 28.913090812000064 ], [ -82.023499467999955, 28.913090792000048 ], [ -82.023615119999988, 28.913090772000032 ], [ -82.023715140999968, 28.913090754000052 ], [ -82.023809505999964, 28.913091421000047 ], [ -82.023900725999965, 28.913091405000046 ], [ -82.023972741999955, 28.913091392000069 ], [ -82.024023953999972, 28.913091383000051 ], [ -82.024091169999963, 28.913092778000077 ], [ -82.024129578999975, 28.913102629000036 ], [ -82.024174394999989, 28.913123743000028 ], [ -82.024212333999969, 28.913148764000027 ], [ -82.024234218999936, 28.91317076100006 ], [ -82.024251227999969, 28.913196951000032 ], [ -82.024265488999959, 28.913225760000046 ], [ -82.024278000999971, 28.913264261000052 ], [ -82.024284867999938, 28.913330715000029 ], [ -82.024284289999969, 28.913426523000055 ], [ -82.024284908999959, 28.913508136000075 ], [ -82.024284332999969, 28.913608037000074 ], [ -82.024284359999967, 28.91372629600005 ], [ -82.024281266999935, 28.913869309000063 ], [ -82.024281298999938, 28.914006820000054 ], [ -82.024282779999965, 28.914097784000035 ], [ -82.024281340999948, 28.914185927000062 ], [ -82.024278238999955, 28.914290436000044 ], [ -82.024278243999959, 28.914307625000049 ], [ -82.024278263999975, 28.914392194000072 ], [ -82.02427828499998, 28.914485702000036 ], [ -82.024277104999953, 28.914562597000042 ], [ -82.024275191999948, 28.914625963000049 ], [ -82.02427520599997, 28.914689828000064 ], [ -82.024275228999954, 28.914784826000073 ], [ -82.024275251999939, 28.914884484000027 ], [ -82.024275265999961, 28.914944988000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023466472999985, 28.915467146000026 ], [ -82.023465304999945, 28.914937913000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022160262999989, 28.916102813000066 ], [ -82.022163556999942, 28.91561256500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020444632999954, 28.915104907000057 ], [ -82.020513261999952, 28.915149204000045 ], [ -82.020575145999942, 28.915192469000033 ], [ -82.020641788999967, 28.915235733000031 ], [ -82.020717951999984, 28.915285974000028 ], [ -82.020789356999956, 28.915332029000069 ], [ -82.020878213999936, 28.915389248000054 ], [ -82.020941683, 28.915429720000077 ], [ -82.021040150999966, 28.915484022000044 ], [ -82.021105371999965, 28.915511454000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02075823399997, 28.915948264000065 ], [ -82.020979270999987, 28.915989909000075 ], [ -82.021108475999938, 28.915989909000075 ], [ -82.021223604999989, 28.915974958000049 ], [ -82.021254537999937, 28.915962391000051 ], [ -82.021287853, 28.915945635000071 ], [ -82.021315064999953, 28.915921315000048 ], [ -82.021336085999963, 28.915900499000031 ], [ -82.021354471999985, 28.915865008000026 ], [ -82.021364398999935, 28.915831739000055 ], [ -82.021417876999976, 28.915594888000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021105371999965, 28.915511454000068 ], [ -82.021187024999961, 28.915539436000074 ], [ -82.021259613999973, 28.915562457000078 ], [ -82.021322681999948, 28.915579198000046 ], [ -82.021369089999951, 28.915587567000046 ], [ -82.021417876999976, 28.915594888000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968629369999974, 28.922673806000034 ], [ -81.968679186999964, 28.922644210000044 ], [ -81.968699393999941, 28.92259684000004 ], [ -81.968714212999942, 28.922558945000048 ], [ -81.968729033999978, 28.922517497000058 ], [ -81.968742505999955, 28.922480784000072 ], [ -81.968757327999981, 28.922434598000052 ], [ -81.968773498999951, 28.922376568000061 ], [ -81.968787083999985, 28.922314948000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968787083999985, 28.922314948000064 ], [ -81.969660075999968, 28.922461451000061 ], [ -81.969739754999978, 28.922475184000064 ], [ -81.969800379999981, 28.922482818000049 ], [ -81.969857541999943, 28.922488927000074 ], [ -81.969918167999936, 28.922493513000063 ], [ -81.97002036899994, 28.922493535000058 ], [ -81.970096588, 28.922488980000026 ], [ -81.970184931999938, 28.922484428000075 ], [ -81.970281936999982, 28.922476830000051 ], [ -81.970439572999965, 28.922463148000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96884892099996, 28.920771353000077 ], [ -81.968846709, 28.920646253000029 ], [ -81.968850459999942, 28.920167493000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970439572999965, 28.922463148000077 ], [ -81.970472400999938, 28.922758810000062 ], [ -81.970509015999937, 28.92316284900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969726603999959, 28.923239411000054 ], [ -81.969858323999972, 28.923195153000052 ], [ -81.969939462999946, 28.923176186000035 ], [ -81.97004094, 28.923160293000024 ], [ -81.970136082999943, 28.923158673000046 ], [ -81.970509015999937, 28.92316284900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019995361999975, 28.916102846000058 ], [ -82.019942023999988, 28.916085321000025 ], [ -82.019854691999967, 28.916059550000057 ], [ -82.019781927999986, 28.916049429000054 ], [ -82.01969188299995, 28.916043915000046 ], [ -82.019358470999975, 28.916041403000065 ], [ -82.019281453999952, 28.916040289000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019281453999952, 28.916040289000023 ], [ -82.018894057999944, 28.91603850100006 ], [ -82.018739100999937, 28.916034839000076 ], [ -82.018693029999952, 28.916025633000061 ], [ -82.018661854999948, 28.916011475000062 ], [ -82.018636486999981, 28.915998005000063 ], [ -82.018615543999942, 28.915983269000037 ], [ -82.018595647999973, 28.915963926000074 ], [ -82.01857679799997, 28.915944582000066 ], [ -82.018560042, 28.915920634000031 ], [ -82.018548519999968, 28.915896684000074 ], [ -82.018541186999983, 28.915873654000052 ], [ -82.018539088999944, 28.915848782000069 ], [ -82.018539081999961, 28.91581469700003 ], [ -82.018596086999935, 28.915564691000043 ], [ -82.018669854999985, 28.915238921000025 ], [ -82.018685546999961, 28.915159693000078 ], [ -82.018693912999936, 28.915109027000028 ], [ -82.018712411999957, 28.914956189000065 ], [ -82.018756487999951, 28.914542275000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019281453999952, 28.916040289000023 ], [ -82.019280392999974, 28.915966593000064 ], [ -82.019281431999957, 28.915918690000069 ], [ -82.019286657999942, 28.915875391000043 ], [ -82.019296071999975, 28.915822881000054 ], [ -82.019303391999983, 28.915774977000069 ], [ -82.019315946999939, 28.915724309000041 ], [ -82.019345241999986, 28.915606389000061 ], [ -82.019379771, 28.915489390000062 ], [ -82.019446864999964, 28.915281965000077 ], [ -82.019465901, 28.915207726000062 ], [ -82.019478273999937, 28.915130631000068 ], [ -82.019479225999987, 28.915049730000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991296192999982, 28.882817394000028 ], [ -81.991365336999934, 28.882872262000035 ], [ -81.991500923999979, 28.882962477000035 ], [ -81.991620673999989, 28.883031618000075 ], [ -81.991735275999986, 28.883086026000058 ], [ -81.991864041999975, 28.883130234000078 ], [ -81.99205485799996, 28.883182152000074 ], [ -81.992230556999971, 28.883245103000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990877633999958, 28.908662253000045 ], [ -81.991229786999952, 28.908647514000052 ], [ -81.991297377999956, 28.908645456000045 ], [ -81.991396223999971, 28.908639275000041 ], [ -81.991491474999975, 28.908623190000071 ], [ -81.991598607999947, 28.908601128000043 ], [ -81.991677613999968, 28.908585709000079 ], [ -81.99177696199996, 28.908565042000077 ], [ -81.991870926999979, 28.908541672000069 ], [ -81.991965085999936, 28.908512112000039 ], [ -81.99205182299994, 28.908484271000077 ], [ -81.992119413999944, 28.908463393000034 ], [ -81.992224816999965, 28.908437745000072 ], [ -81.992316763999952, 28.90843183000004 ], [ -81.992408530999967, 28.908429287000047 ], [ -81.992504837999945, 28.908418635000032 ], [ -81.992584540999985, 28.908403857000053 ], [ -81.992680846999974, 28.908376360000034 ], [ -81.992736327999978, 28.908352987000058 ], [ -81.992803724999987, 28.908314831000041 ], [ -81.99287131899996, 28.908268081000074 ], [ -81.992943600999979, 28.908211017000042 ], [ -81.99300974099998, 28.908161528000051 ], [ -81.993078591999961, 28.908115455000029 ], [ -81.993165327999975, 28.908077300000059 ], [ -81.993236249999939, 28.908053009000071 ], [ -81.993299043999968, 28.908037226000033 ], [ -81.993370806999962, 28.908027363000031 ], [ -81.993451539999967, 28.908025393000059 ], [ -81.993546256999934, 28.908028502000036 ], [ -81.993635333999976, 28.908032632000072 ], [ -81.993714840999985, 28.908043293000048 ], [ -81.993816223999943, 28.908058080000046 ], [ -81.993910184999947, 28.908075273000065 ], [ -81.993984804999968, 28.90809624700006 ], [ -81.994083648999947, 28.90812169000003 ], [ -81.994177609999952, 28.908147134000046 ], [ -81.994261997999956, 28.908170515000052 ], [ -81.994358498999986, 28.908191832000057 ], [ -81.99442843199995, 28.908204555000054 ], [ -81.994534309999949, 28.908217280000031 ], [ -81.994669293999948, 28.908230004000075 ], [ -81.994732, 28.908232070000054 ], [ -81.994774968999934, 28.90823993500004 ], [ -81.99481727899996, 28.90824880200006 ], [ -81.994849515999988, 28.90826475800003 ], [ -81.99488981199994, 28.908296672000063 ], [ -81.994930103999934, 28.908364042000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990064902999961, 28.892521842000065 ], [ -81.990264576999948, 28.892390015000046 ], [ -81.99070743599998, 28.89208940900005 ], [ -81.990853640999944, 28.89198560400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990853640999944, 28.89198560400007 ], [ -81.991037444999961, 28.891861512000048 ], [ -81.991346413999963, 28.891657980000048 ], [ -81.991400188999989, 28.891620403000047 ], [ -81.991447637999954, 28.891585611000039 ], [ -81.991493505999983, 28.891546641000048 ], [ -81.991526719999968, 28.891516023000065 ], [ -81.991556771999967, 28.891477054000063 ], [ -81.991588406999938, 28.891418599000076 ], [ -81.991619527999944, 28.891346226000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987741445999973, 28.893447835000075 ], [ -81.987823979999973, 28.893452506000074 ], [ -81.987928313999987, 28.893475865000028 ], [ -81.988029534999953, 28.893503895000038 ], [ -81.988170480999941, 28.893538116000059 ], [ -81.988316306999934, 28.893548912000028 ], [ -81.988426693999941, 28.893549273000076 ], [ -81.988475493999943, 28.893542737000075 ], [ -81.98853582299995, 28.893531189000043 ], [ -81.98859065299996, 28.893511774000046 ], [ -81.988721411999961, 28.893440656000053 ], [ -81.989000356999952, 28.893297076000067 ], [ -81.989209604999985, 28.893174933000068 ], [ -81.989316675999987, 28.893087673000025 ], [ -81.989355838999984, 28.893061165000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004360512999938, 28.92354146200006 ], [ -82.004635810999957, 28.923566876000052 ], [ -82.004707329999974, 28.923569842000063 ], [ -82.004825348999987, 28.923569838000049 ], [ -82.004959758999973, 28.923564064000061 ], [ -82.005107279999947, 28.923540985000045 ], [ -82.005201023999973, 28.923519498000076 ], [ -82.005284305999965, 28.923494830000038 ], [ -82.005471163999971, 28.923419835000061 ], [ -82.005697445999942, 28.923303731000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997830401999977, 28.917211619000057 ], [ -81.998355344999936, 28.917184124000073 ], [ -81.998739429999944, 28.917159376000029 ], [ -81.998998807999953, 28.917144089000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961837229999958, 28.904327985000066 ], [ -81.96180884599994, 28.904248949000078 ], [ -81.961769899999979, 28.904156765000039 ], [ -81.961730665999937, 28.90407527800005 ], [ -81.961698657999989, 28.904000326000073 ], [ -81.961659615999963, 28.903931216000046 ], [ -81.961609837999958, 28.903843537000057 ], [ -81.961559470999987, 28.903761361000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961911909999969, 28.905232828000067 ], [ -81.961911959999952, 28.905097037000075 ], [ -81.961911995999969, 28.904996654000058 ], [ -81.961912027999972, 28.90490899100007 ], [ -81.96191205699995, 28.904830609000044 ], [ -81.961905057999957, 28.904736756000034 ], [ -81.961897861999944, 28.904648746000078 ], [ -81.961885837999944, 28.904561833000059 ], [ -81.961873688999958, 28.904490409000061 ], [ -81.961861084999953, 28.904431483000053 ], [ -81.961852086999954, 28.904379107000068 ], [ -81.961837229999958, 28.904327985000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960577416999968, 28.902959387000067 ], [ -81.96049538699998, 28.902928079000048 ], [ -81.960427750999941, 28.902907424000034 ], [ -81.960319541999979, 28.902885173000072 ], [ -81.960222150999982, 28.902870859000075 ], [ -81.960093016999963, 28.90286539300007 ], [ -81.960010097999941, 28.902863615000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961911909999969, 28.905232828000067 ], [ -81.961990071999935, 28.905233447000057 ], [ -81.962087555999972, 28.905233475000045 ], [ -81.962206485999957, 28.905233508000038 ], [ -81.962346864999972, 28.905233547000023 ], [ -81.962465795999947, 28.905231865000076 ], [ -81.962585054999977, 28.905231986000047 ], [ -81.962643072999981, 28.905227877000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962643072999981, 28.905227877000073 ], [ -81.962727054999959, 28.905228507000061 ], [ -81.96281479299995, 28.905223384000067 ], [ -81.962891357999979, 28.905210069000077 ], [ -81.962992227999962, 28.905183973000078 ], [ -81.963066322999964, 28.905161691000046 ], [ -81.963130673999956, 28.905134259000079 ], [ -81.963198924999972, 28.905101681000076 ], [ -81.963269128999968, 28.905055379000032 ], [ -81.963376387999972, 28.904979921000063 ], [ -81.963518750999981, 28.904875306000065 ], [ -81.963610409999944, 28.904806708000024 ], [ -81.963700117999963, 28.904741540000032 ], [ -81.963787876999959, 28.904676368000025 ], [ -81.963881485999934, 28.904604339000059 ], [ -81.964004344999978, 28.904515159000027 ], [ -81.964133866999987, 28.904431845000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961837229999958, 28.904327985000066 ], [ -81.962011870999959, 28.904264133000027 ], [ -81.962072890999934, 28.904230638000058 ], [ -81.962152277999962, 28.904178393000052 ], [ -81.962240039999983, 28.904108076000057 ], [ -81.962333653999963, 28.904020606000074 ], [ -81.962421424999945, 28.903921126000057 ], [ -81.96270229199996, 28.903600384000072 ], [ -81.96286712999995, 28.903413426000043 ], [ -81.962888293999981, 28.903389422000032 ], [ -81.962890240999968, 28.90333458200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961138491999975, 28.903302296000049 ], [ -81.961240209999971, 28.903165922000028 ], [ -81.961286047999977, 28.90309744700005 ], [ -81.961306540999942, 28.903050996000047 ], [ -81.961339423999959, 28.902965795000057 ], [ -81.961506995999969, 28.902508619000059 ], [ -81.961648173999947, 28.902114346000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961138491999975, 28.903302296000049 ], [ -81.961078356999963, 28.903251656000066 ], [ -81.96095824799994, 28.903163358000029 ], [ -81.96087317599995, 28.903102771000079 ], [ -81.960788423999986, 28.903053545000034 ], [ -81.960709079999958, 28.903010669000025 ], [ -81.960627219999935, 28.902978309000048 ], [ -81.960577416999968, 28.902959387000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962643072999981, 28.905227877000073 ], [ -81.962637517999951, 28.904816736000043 ], [ -81.962641438999981, 28.904751543000032 ], [ -81.96265705899998, 28.904689785000073 ], [ -81.962682421999943, 28.904640040000061 ], [ -81.962723386999983, 28.904581720000067 ], [ -81.962984246999952, 28.904373341000053 ], [ -81.963226344999953, 28.904169890000048 ], [ -81.963280834999978, 28.90412604100004 ], [ -81.963293550999936, 28.904115808000029 ], [ -81.963319724999963, 28.904094745000066 ], [ -81.963413127999956, 28.904091251000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961559470999987, 28.903761361000079 ], [ -81.961659185999963, 28.903704744000038 ], [ -81.961727444999951, 28.903649864000045 ], [ -81.961782922999987, 28.903595996000035 ], [ -81.961832766999976, 28.903540095000039 ], [ -81.961942011999952, 28.903363417000037 ], [ -81.962140673999954, 28.903025841000044 ], [ -81.962266344999989, 28.902816966000046 ], [ -81.96227633999996, 28.902745665000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960577416999968, 28.902959387000067 ], [ -81.960695695999959, 28.902406811000048 ], [ -81.960706965999975, 28.902354160000073 ], [ -81.960711816999947, 28.902331496000045 ], [ -81.960666814999968, 28.902272744000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963728922999962, 28.905557835000025 ], [ -81.964141044999963, 28.905245061000073 ], [ -81.964559018999978, 28.904943222000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963137276999987, 28.906211978000044 ], [ -81.963148131999958, 28.906080511000027 ], [ -81.963158728999986, 28.905976513000041 ], [ -81.963179456999967, 28.905883811000024 ], [ -81.963200166999968, 28.905837465000047 ], [ -81.963237807999974, 28.90580105500004 ], [ -81.963286732999961, 28.905772925000065 ], [ -81.963341298999978, 28.905749765000053 ], [ -81.963525694999987, 28.905678629000079 ], [ -81.963595318999978, 28.905640571000049 ], [ -81.963672469999949, 28.905595895000033 ], [ -81.963728922999962, 28.905557835000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967096608999952, 28.906693062000045 ], [ -81.967047701999945, 28.90667152900005 ], [ -81.967014553999945, 28.906655340000043 ], [ -81.966934462999973, 28.906612633000066 ], [ -81.966830313999935, 28.906553786000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967606818999968, 28.906802411000058 ], [ -81.967538, 28.906799416000069 ], [ -81.967444360999934, 28.906788473000063 ], [ -81.967363133999982, 28.906773562000069 ], [ -81.967284164999967, 28.906756667000025 ], [ -81.967202940999982, 28.906732821000048 ], [ -81.967096608999952, 28.906693062000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966254928999945, 28.907645931000047 ], [ -81.966398756, 28.907483360000072 ], [ -81.966575286999955, 28.90727234600007 ], [ -81.966673155999956, 28.907153177000055 ], [ -81.966761610999981, 28.907057182000074 ], [ -81.966897109999934, 28.906928090000065 ], [ -81.967015676999949, 28.906803958000069 ], [ -81.967096608999952, 28.906693062000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964857654999946, 28.894000081000058 ], [ -81.964891028999944, 28.893707796000058 ], [ -81.964922825999963, 28.893243359000053 ], [ -81.964949527999977, 28.893107980000025 ], [ -81.964999690999946, 28.892956087000073 ], [ -81.965063767999936, 28.892828698000073 ], [ -81.965181233999942, 28.892656940000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963988228999938, 28.894036916000061 ], [ -81.964048926999965, 28.893673672000034 ], [ -81.964090766999959, 28.893472728000063 ], [ -81.964158167999983, 28.89320121600008 ], [ -81.964268654999955, 28.892819996000071 ], [ -81.964426378999974, 28.892360562000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96305689999997, 28.894007878000025 ], [ -81.963212268999939, 28.893672970000068 ], [ -81.96340152199997, 28.893152541000063 ], [ -81.963527832999944, 28.892764106000072 ], [ -81.963715323999963, 28.892242301000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961616772999946, 28.893079079000074 ], [ -81.96186490499997, 28.892795979000027 ], [ -81.961993037999946, 28.892609808000032 ], [ -81.962096891999977, 28.892415449000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961277650999989, 28.892213474000073 ], [ -81.961538136999934, 28.892239804000042 ], [ -81.961696927999981, 28.892271838000056 ], [ -81.961868172999971, 28.892332795000073 ], [ -81.962096891999977, 28.892415449000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961920386999964, 28.891640193000057 ], [ -81.962282457999947, 28.891801245000067 ], [ -81.962342274999969, 28.891828104000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962096891999977, 28.892415449000055 ], [ -81.962342274999969, 28.891828104000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962253595999982, 28.893679600000041 ], [ -81.962700246999987, 28.892833322000058 ], [ -81.962761495999985, 28.892694006000056 ], [ -81.962846969999987, 28.892478371000038 ], [ -81.963012661999983, 28.892060915000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962342274999969, 28.891828104000069 ], [ -81.962670167999988, 28.891946228000052 ], [ -81.963012661999983, 28.892060915000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963012661999983, 28.892060915000059 ], [ -81.963114705999942, 28.892096043000038 ], [ -81.963425489999963, 28.892195469000058 ], [ -81.963616731999934, 28.892227290000051 ], [ -81.963715323999963, 28.892242301000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961920386999964, 28.891640193000057 ], [ -81.961975511999981, 28.89151507400004 ], [ -81.961982317999968, 28.891468059000033 ], [ -81.961959788999934, 28.891244859000039 ], [ -81.961912770999959, 28.890564852000068 ], [ -81.961878211999988, 28.890328790000069 ], [ -81.961822033999965, 28.889977772000066 ], [ -81.961818548999986, 28.889887956000052 ], [ -81.961837343999946, 28.889813630000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961837343999946, 28.889813630000049 ], [ -81.961968713999966, 28.889842574000056 ], [ -81.962382761999947, 28.889935603000026 ], [ -81.963583804999985, 28.890204690000076 ], [ -81.964088225999944, 28.890334558000063 ], [ -81.964420937999989, 28.890450337000061 ], [ -81.964499368999952, 28.890493251000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96234874299995, 28.886838743000055 ], [ -81.96241506399997, 28.886917847000063 ], [ -81.962512673999981, 28.887039228000049 ], [ -81.962630396999941, 28.887172990000067 ], [ -81.96272547999996, 28.88729197400005 ], [ -81.962766705999968, 28.887349566000069 ], [ -81.962791052999989, 28.887400616000036 ], [ -81.962819288999981, 28.887465991000056 ], [ -81.96283065199998, 28.887507302000074 ], [ -81.96284484399996, 28.887597430000028 ], [ -81.962857600999939, 28.887717601000077 ], [ -81.962868955999966, 28.887781442000062 ], [ -81.962886007999941, 28.887825257000031 ], [ -81.962918703999947, 28.887867824000068 ], [ -81.962959938999973, 28.887900381000065 ], [ -81.96300260199996, 28.887919169000043 ], [ -81.96305237699994, 28.887931700000024 ], [ -81.963218581999968, 28.887953873000072 ], [ -81.96338790599998, 28.887979360000031 ], [ -81.963588869999967, 28.888004509000041 ], [ -81.963762882999958, 28.888027246000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961668767999981, 28.885426892000055 ], [ -81.961605998999971, 28.885608853000065 ], [ -81.961586125999986, 28.885678519000066 ], [ -81.961580167999955, 28.885745326000063 ], [ -81.961585800999956, 28.885831273000065 ], [ -81.961595527999975, 28.885893820000035 ], [ -81.961620152999956, 28.885965593000037 ], [ -81.96165995399997, 28.886030694000056 ], [ -81.96174935199997, 28.886142095000025 ], [ -81.961852624999949, 28.886260728000025 ], [ -81.961964486999989, 28.886392083000032 ], [ -81.962062098999979, 28.886503496000046 ], [ -81.962145460999977, 28.886601839000036 ], [ -81.962234283999976, 28.88671049800007 ], [ -81.962317451, 28.886806780000029 ], [ -81.96234874299995, 28.886838743000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961865453999962, 28.884824768000044 ], [ -81.961804248999954, 28.885030331000053 ], [ -81.961752632999946, 28.885186735000048 ], [ -81.961704010999938, 28.885313308000036 ], [ -81.961668767999981, 28.885426892000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961668767999981, 28.885426892000055 ], [ -81.961726361999979, 28.885444745000029 ], [ -81.961826620999943, 28.885470121000026 ], [ -81.961899094999978, 28.885474993000059 ], [ -81.962118897999972, 28.885454244000073 ], [ -81.962311973999988, 28.885435523000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962581197999953, 28.886029570000062 ], [ -81.96250740399995, 28.885940167000058 ], [ -81.962406865999981, 28.885821191000048 ], [ -81.962360993999937, 28.885750359000042 ], [ -81.962340909999966, 28.885664753000071 ], [ -81.962319415999957, 28.885506873000054 ], [ -81.962311973999988, 28.885435523000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964298480999958, 28.884948983000072 ], [ -81.964434856999958, 28.884897229000046 ], [ -81.964565008999955, 28.884843752000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962311973999988, 28.885435523000069 ], [ -81.962429315999941, 28.885419596000077 ], [ -81.962730132, 28.885383066000031 ], [ -81.962947745999941, 28.88535308400003 ], [ -81.963176031999978, 28.885310901000025 ], [ -81.963474727999937, 28.885237755000048 ], [ -81.96382250399995, 28.885130826000079 ], [ -81.964180954999961, 28.884992919000069 ], [ -81.964298480999958, 28.884948983000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964692636999985, 28.88546978100004 ], [ -81.964652460999957, 28.885414722000064 ], [ -81.964524511999969, 28.885258220000026 ], [ -81.964298480999958, 28.884948983000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964804902999958, 28.885867071000064 ], [ -81.964808127999959, 28.885791967000046 ], [ -81.964806010999951, 28.885747843000047 ], [ -81.964796431999957, 28.885684002000062 ], [ -81.964778316999968, 28.885628610000026 ], [ -81.964758221999944, 28.885579463000056 ], [ -81.964692636999985, 28.88546978100004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975030018999973, 28.880694678000054 ], [ -81.975339284999961, 28.880812412000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.255946747999985, 28.644114443000035 ], [ -82.256506744999967, 28.644284377000076 ], [ -82.257324531999984, 28.644543877000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994185761999972, 28.877577384000062 ], [ -81.995046979999984, 28.876925020000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994185761999972, 28.877577384000062 ], [ -81.993696892999935, 28.877100304000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993696892999935, 28.877100304000066 ], [ -81.994250255999987, 28.876525742000069 ], [ -81.994486525999946, 28.876333429000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993430828999976, 28.877335709000079 ], [ -81.993430887999978, 28.87733565700006 ], [ -81.993696892999935, 28.877100304000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993770364999989, 28.877810399000055 ], [ -81.993352630999937, 28.87740489600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970914025999946, 28.884902750000037 ], [ -81.970782701999951, 28.884988042000032 ], [ -81.970605965999937, 28.885097083000062 ], [ -81.970453775999943, 28.885193170000036 ], [ -81.97034225699997, 28.88526590500004 ], [ -81.970326043999989, 28.885276215000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969086068999957, 28.882611308000037 ], [ -81.969336811999938, 28.882676683000057 ], [ -81.969839873999945, 28.882776493000051 ], [ -81.97036735599994, 28.882848116000048 ], [ -81.970452253999952, 28.882860245000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970452253999952, 28.882860245000074 ], [ -81.970658399999934, 28.882880810000074 ], [ -81.970897676999982, 28.882901382000057 ], [ -81.971231533999969, 28.882923246000075 ], [ -81.971348012999954, 28.882924160000073 ], [ -81.971426216999987, 28.882909811000047 ], [ -81.971487908999961, 28.88289394800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972934198999951, 28.884625490000076 ], [ -81.973308670999984, 28.884716481000055 ], [ -81.97372659399997, 28.884816601000068 ], [ -81.973925400999974, 28.884863050000035 ], [ -81.974014651999937, 28.884873724000045 ], [ -81.97408769599997, 28.884870301000035 ], [ -81.974182478999978, 28.884847507000075 ], [ -81.974297856999954, 28.884805023000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972908102999952, 28.885881527000038 ], [ -81.97290920599994, 28.885741548000055 ], [ -81.972923109999954, 28.88479828800007 ], [ -81.972934198999951, 28.884625490000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972891942999979, 28.886682884000038 ], [ -81.972894467999936, 28.886412885000027 ], [ -81.972908102999952, 28.885881527000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972883276999937, 28.886973404000059 ], [ -81.972891942999979, 28.886682884000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972891942999979, 28.886682884000038 ], [ -81.97312515699997, 28.886718610000059 ], [ -81.973591384999963, 28.886781304000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97428614599994, 28.885950917000059 ], [ -81.974412542999971, 28.885942302000046 ], [ -81.974608312999976, 28.885920645000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974252786999955, 28.886874312000032 ], [ -81.97441476399996, 28.886898103000078 ], [ -81.97470266199997, 28.886929804000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973591384999963, 28.886781304000067 ], [ -81.973723910999979, 28.886798610000028 ], [ -81.97400614299994, 28.886838625000053 ], [ -81.974252786999955, 28.886874312000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010356807999983, 28.921970829000031 ], [ -82.010354461999952, 28.921957079000038 ], [ -82.010341678999964, 28.921893857000043 ], [ -82.010340382999971, 28.921829883000044 ], [ -82.010358350999979, 28.921766283000068 ], [ -82.010386477999987, 28.921709901000042 ], [ -82.010420661999945, 28.921653520000064 ], [ -82.010452697999938, 28.921595075000027 ], [ -82.010488835, 28.921534912000027 ], [ -82.010518918999935, 28.921489185000041 ], [ -82.010547306999968, 28.921440238000059 ], [ -82.010588988999984, 28.921358317000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010588988999984, 28.921358317000056 ], [ -82.010616786999947, 28.921371263000026 ], [ -82.010635934999982, 28.921380200000044 ], [ -82.010744174999957, 28.92143106900005 ], [ -82.010932257999968, 28.921513566000044 ], [ -82.011143498999957, 28.921608915000036 ], [ -82.011342431999935, 28.921695729000078 ], [ -82.011558718999936, 28.921792999000047 ], [ -82.011736925999969, 28.921874180000032 ], [ -82.011857836, 28.921930411000062 ], [ -82.011905084999967, 28.921940188000065 ], [ -82.011943996999946, 28.921943852000027 ], [ -82.012012585999969, 28.92193837700006 ], [ -82.012135771999965, 28.921918160000075 ], [ -82.012292803999969, 28.921888802000069 ], [ -82.012449834999984, 28.921858221000036 ], [ -82.012617984999963, 28.921826416000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012619859999973, 28.922405170000047 ], [ -82.012617984999963, 28.921826416000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012617984999963, 28.921826416000044 ], [ -82.012771980999958, 28.921796671000038 ], [ -82.012962854999955, 28.921762963000049 ], [ -82.013149626999962, 28.92172925400007 ], [ -82.01336589899995, 28.921692106000023 ], [ -82.013551276999976, 28.921656017000032 ], [ -82.013672931999963, 28.92163120400005 ], [ -82.013950621999982, 28.921578168000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983374028999947, 28.885777773000029 ], [ -81.983566801999984, 28.885867185000052 ], [ -81.983748748999972, 28.885953719000042 ], [ -81.983840117999989, 28.886008685000036 ], [ -81.983936052999979, 28.886079735000067 ], [ -81.98409746599998, 28.886203066000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960939778999943, 28.931065868000076 ], [ -81.961001306999947, 28.931106333000059 ], [ -81.961076597999977, 28.931145580000077 ], [ -81.961140084999954, 28.931170118000068 ], [ -81.961229309999965, 28.931223836000072 ], [ -81.961353580999969, 28.931308452000053 ], [ -81.961653057999968, 28.931540898000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962153668999974, 28.932286293000061 ], [ -81.962172972999952, 28.932347930000049 ], [ -81.962192279999954, 28.932405317000075 ], [ -81.962210260999939, 28.932450623000079 ], [ -81.96222617899997, 28.932488467000042 ], [ -81.962250058999985, 28.932536124000023 ], [ -81.962281597999947, 28.932590237000056 ], [ -81.962308157999985, 28.932628500000078 ], [ -81.962348778999967, 28.932681905000038 ], [ -81.962386996999953, 28.932729566000035 ], [ -81.962417252999956, 28.932766012000059 ], [ -81.962449102999983, 28.93279685400006 ], [ -81.962472367999965, 28.932817692000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962565819999952, 28.935345045000076 ], [ -81.96344591999997, 28.933887331000051 ], [ -81.963517722999939, 28.933827230000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963105181999936, 28.933218475000047 ], [ -81.96314035499995, 28.933249720000049 ], [ -81.963174012999957, 28.933279063000043 ], [ -81.963213860999986, 28.933318923000058 ], [ -81.963248272999977, 28.933358781000038 ], [ -81.963275436999936, 28.933397042000024 ], [ -81.963302601999942, 28.93343849200005 ], [ -81.963329764999969, 28.933481536000045 ], [ -81.963355118999971, 28.933518203000062 ], [ -81.963378658999943, 28.933561245000078 ], [ -81.963398573999939, 28.933602693000068 ], [ -81.963422111999989, 28.933652111000072 ], [ -81.963446076999958, 28.93370107800007 ], [ -81.963471547999973, 28.933754340000064 ], [ -81.963490651999962, 28.933792186000062 ], [ -81.963517722999939, 28.933827230000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964909198999976, 28.938220229000024 ], [ -81.964948062999952, 28.938496605000068 ], [ -81.965003285999956, 28.938902430000041 ], [ -81.96501514199997, 28.938940197000079 ], [ -81.965028186999973, 28.938975845000073 ], [ -81.965069082999946, 28.939051777000032 ], [ -81.965092636999941, 28.939108254000075 ], [ -81.965113337999981, 28.939157152000064 ], [ -81.965130826999939, 28.939208548000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961132931999941, 28.932707163000032 ], [ -81.961281104999955, 28.932631539000056 ], [ -81.961373943999945, 28.932571901000074 ], [ -81.961469900999987, 28.932513499000038 ], [ -81.96155917599998, 28.932456755000032 ], [ -81.961606980999989, 28.932427337000036 ], [ -81.961650003999978, 28.932405276000054 ], [ -81.96169661, 28.932382165000035 ], [ -81.961756360999971, 28.932359058000031 ], [ -81.961837173999982, 28.932337208000035 ], [ -81.961948308999979, 28.932318113000065 ], [ -81.962153668999974, 28.932286293000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960832307999965, 28.931982582000046 ], [ -81.960983086999988, 28.931909230000031 ], [ -81.961146396999936, 28.931860847000053 ], [ -81.961240617999977, 28.931837001000076 ], [ -81.961320375999946, 28.931816376000029 ], [ -81.96136869999998, 28.931797263000078 ], [ -81.961414608999974, 28.931771773000037 ], [ -81.961465355999962, 28.931737784000063 ], [ -81.961518520999959, 28.931691044000047 ], [ -81.961653057999968, 28.931540898000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000730162999957, 28.914705111000046 ], [ -82.000758425999948, 28.914771305000045 ], [ -82.000797371999965, 28.914858824000078 ], [ -82.000863989999971, 28.91498327000005 ], [ -82.000920767999958, 28.915092682000079 ], [ -82.000959325999986, 28.915169252000055 ], [ -82.00101422399996, 28.915273417000037 ], [ -82.001046849999966, 28.915328078000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002610491999974, 28.914529118000075 ], [ -82.002610489999938, 28.914472051000075 ], [ -82.002607556999976, 28.914350010000078 ], [ -82.00260755499994, 28.914253065000025 ], [ -82.002607551999972, 28.914159213000062 ], [ -82.002601784999968, 28.914108593000037 ], [ -82.00258938199994, 28.914064946000053 ], [ -82.002570214999935, 28.914033202000041 ], [ -82.002543529999969, 28.913998978000052 ], [ -82.002501437999967, 28.913963763000027 ], [ -82.002460848999988, 28.913934996000023 ], [ -82.00240447699997, 28.91390821300007 ], [ -82.002357476999975, 28.913889663000077 ], [ -82.002301877999969, 28.91387250300005 ], [ -82.002251142999967, 28.913858616000027 ], [ -82.002199280999946, 28.913849688000028 ], [ -82.002128250999988, 28.913840761000074 ], [ -82.002057221999962, 28.91383877800007 ], [ -82.001989575999971, 28.913842747000047 ], [ -82.00186346299995, 28.913859994000063 ], [ -82.001751683999942, 28.913874236000026 ], [ -82.001586803999942, 28.913896928000042 ], [ -82.001404534999949, 28.913922369000034 ], [ -82.001265830999955, 28.913942653000049 ], [ -82.00112986299996, 28.913960531000043 ], [ -82.000962246999961, 28.913983565000024 ], [ -82.000835068999947, 28.914001443000075 ], [ -82.00072215299997, 28.914018976000079 ], [ -82.000649870999951, 28.914039603000049 ], [ -82.000608455999952, 28.914063978000058 ], [ -82.000580271, 28.914090762000058 ], [ -82.000555464999934, 28.91412845900004 ], [ -82.00054193699998, 28.914165162000074 ], [ -82.000531483999964, 28.914210117000039 ], [ -82.000531484999954, 28.914240369000026 ], [ -82.000545319999958, 28.914293131000079 ], [ -82.000563132999957, 28.914332158000036 ], [ -82.00059380099998, 28.914399275000051 ], [ -82.000632681999946, 28.914487201000043 ], [ -82.00067878699997, 28.914591708000046 ], [ -82.000730162999957, 28.914705111000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984632941999962, 28.885824183000068 ], [ -81.984739975999958, 28.885770222000076 ], [ -81.984933146999936, 28.88567432900004 ], [ -81.985098191999953, 28.885590810000053 ], [ -81.985238313999957, 28.885521529000073 ], [ -81.985358158999986, 28.885461234000047 ], [ -81.985473231999947, 28.885399767000024 ], [ -81.985572323999975, 28.885343395000064 ], [ -81.985656039999981, 28.885290779000059 ], [ -81.985707294999941, 28.885255451000035 ], [ -81.985740986999986, 28.885229568000057 ], [ -81.985762824999938, 28.885210351000069 ], [ -81.985783327999968, 28.88518629500004 ], [ -81.985798705999969, 28.885159986000076 ], [ -81.985810667999942, 28.885132171000066 ], [ -81.985817503999954, 28.885106612000072 ], [ -81.985821075999979, 28.885076178000077 ], [ -81.985818367999968, 28.885047974000031 ], [ -81.98581153799995, 28.885016399000051 ], [ -81.985801290999973, 28.884990837000032 ], [ -81.985791043999939, 28.884972793000031 ], [ -81.985775670999942, 28.884955501000036 ], [ -81.985755173999962, 28.884933697000065 ], [ -81.98571930199995, 28.884906629000056 ], [ -81.985642433999942, 28.88485399800004 ], [ -81.985539425999946, 28.884789084000033 ], [ -81.985369206999962, 28.884673638000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98409746599998, 28.886203066000064 ], [ -81.984209673999942, 28.886107064000043 ], [ -81.984275732999947, 28.886050653000041 ], [ -81.98433837999994, 28.886003550000055 ], [ -81.98443064099996, 28.885941414000058 ], [ -81.984533075999934, 28.885878751000064 ], [ -81.984632941999962, 28.885824183000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981790083999954, 28.886866249000036 ], [ -81.981754957999954, 28.886783311000045 ], [ -81.981713969999987, 28.886671887000034 ], [ -81.981707118999964, 28.886633936000067 ], [ -81.981703321999987, 28.886603528000023 ], [ -81.981702025999937, 28.886553932000027 ], [ -81.98170407799995, 28.886500897000076 ], [ -81.981705991999945, 28.886461871000051 ], [ -81.981765609999968, 28.886174480000079 ], [ -81.981867620999935, 28.885822464000057 ], [ -81.982004587999938, 28.885485580000079 ], [ -81.982095477999962, 28.885305993000031 ], [ -81.98219428799996, 28.885142513000062 ], [ -81.982312129999968, 28.884972423000079 ], [ -81.982440231999988, 28.884802548000039 ], [ -81.982745410999939, 28.884419659000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983756865999965, 28.884266382000078 ], [ -81.984679965999987, 28.884952207000026 ], [ -81.984755709999945, 28.885023537000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982817946999944, 28.883596075000071 ], [ -81.983756865999965, 28.884266382000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984198320999951, 28.883694767000065 ], [ -81.984933822999949, 28.884196290000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994407316999968, 28.891517595000039 ], [ -81.994261870999935, 28.891427822000026 ], [ -81.994132001999958, 28.891311838000036 ], [ -81.994102414999986, 28.891271406000044 ], [ -81.994086066999955, 28.891235086000052 ], [ -81.994083732999968, 28.891189858000075 ], [ -81.99408918599994, 28.89115285400004 ], [ -81.994105538999975, 28.891116534000048 ], [ -81.99413481199997, 28.891073399000049 ], [ -81.994396775999974, 28.890774713000042 ], [ -81.994505794999952, 28.890636750000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995100609999952, 28.887607806000062 ], [ -81.995052937999958, 28.887298391000058 ], [ -81.995048871999984, 28.887228959000026 ], [ -81.995051445999934, 28.88718639800004 ], [ -81.995057435999968, 28.887152142000048 ], [ -81.995067167999935, 28.887121838000041 ], [ -81.995083731999955, 28.887093182000058 ], [ -81.995102351999947, 28.887064525000028 ], [ -81.995128552999972, 28.887028293000071 ], [ -81.995167477999985, 28.886991403000025 ], [ -81.995207150999988, 28.886961100000065 ], [ -81.995252063999942, 28.886936727000034 ], [ -81.995296976999953, 28.886918941000033 ], [ -81.995346381, 28.886904449000042 ], [ -81.995409256999949, 28.886891934000062 ], [ -81.995805232999942, 28.88684517400003 ], [ -81.995971407999946, 28.886825416000079 ], [ -81.99616677399996, 28.886811588000057 ], [ -81.996376362999968, 28.886807640000029 ], [ -81.996541038999965, 28.886810280000077 ], [ -81.996816657999943, 28.886799440000061 ], [ -81.996953476999977, 28.886773266000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995100609999952, 28.887607806000062 ], [ -81.995779120999941, 28.887531399000068 ], [ -81.996015991999968, 28.88751852300004 ], [ -81.996206285999961, 28.887520871000049 ], [ -81.996320729, 28.887523217000023 ], [ -81.996514587999968, 28.887546435000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994505794999952, 28.890636750000056 ], [ -81.99453486699997, 28.890599290000068 ], [ -81.994661536999956, 28.89041564300004 ], [ -81.994792360999952, 28.890195448000043 ], [ -81.994867513999964, 28.890044669000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994867513999964, 28.890044669000076 ], [ -81.994993477999969, 28.88976982500003 ], [ -81.995048826999948, 28.889607040000044 ], [ -81.995099704999973, 28.889437097000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994867513999964, 28.890044669000076 ], [ -81.995343250999952, 28.890217624000059 ], [ -81.995393717999946, 28.890233742000078 ], [ -81.995526967999979, 28.890275621000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994505794999952, 28.890636750000056 ], [ -81.994724786999939, 28.890773784000032 ], [ -81.99491371299996, 28.890859660000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008042857999953, 28.925050540000029 ], [ -82.008048327999973, 28.925050540000029 ], [ -82.008281023999984, 28.925051900000028 ], [ -82.008520542999975, 28.925038357000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972349260999977, 28.942207204000056 ], [ -81.972418045999973, 28.942096306000053 ], [ -81.972469984999975, 28.942027521000057 ], [ -81.972536737999974, 28.941970369000046 ], [ -81.972589133999975, 28.941947191000054 ], [ -81.972629095999935, 28.941935952000051 ], [ -81.972678645999963, 28.941935962000059 ], [ -81.972748970999987, 28.941951441000072 ], [ -81.972854455999936, 28.941978176000077 ], [ -81.973192486999949, 28.942064635000065 ], [ -81.973453187999951, 28.942135799000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970737662999966, 28.904370090000043 ], [ -81.970796862999975, 28.904331256000035 ], [ -81.971144821999985, 28.904117502000076 ], [ -81.971252851999964, 28.904058439000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971252851999964, 28.904058439000039 ], [ -81.971327099999939, 28.904017846000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973873824999941, 28.904055034000066 ], [ -81.973854830999983, 28.903953416000036 ], [ -81.973838773999944, 28.903670056000067 ], [ -81.973825534999946, 28.903591289000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973825534999946, 28.903591289000076 ], [ -81.97381173499997, 28.90353075400003 ], [ -81.973776405999956, 28.903398501000026 ], [ -81.973710141999959, 28.903244848000043 ], [ -81.973580585999969, 28.903017569000042 ], [ -81.973561059999952, 28.902988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953747368999984, 28.913713317000031 ], [ -81.953742236999972, 28.914529169000048 ], [ -81.953818552999962, 28.915923704000079 ], [ -81.953774458999987, 28.916032944000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955353576999983, 28.916247454000029 ], [ -81.955445026999939, 28.916264215000069 ], [ -81.955689799999959, 28.916324604000067 ], [ -81.955924778999986, 28.916391451000038 ], [ -81.95615485999997, 28.916466910000054 ], [ -81.956382488999964, 28.916548831000057 ], [ -81.956722697999965, 28.916697557000077 ], [ -81.956935631999954, 28.91679885700006 ], [ -81.95716079999994, 28.916917390000037 ], [ -81.957464277999975, 28.917100564000066 ], [ -81.957765304999953, 28.91729235300005 ], [ -81.958058993999941, 28.91747336800006 ], [ -81.958271915999944, 28.917611282000053 ], [ -81.958389952999937, 28.91768563200003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040459062999957, 28.960116600000049 ], [ -82.040311888999952, 28.960109752000051 ], [ -82.040190762999941, 28.960124308000047 ], [ -82.039859095999986, 28.960136265000074 ], [ -82.037158449999936, 28.960176813000032 ], [ -82.036374508999984, 28.960172654000075 ], [ -82.035573412999952, 28.960174214000062 ], [ -82.034959004999962, 28.960169084000029 ], [ -82.034581009999954, 28.96015082100007 ], [ -82.031649134999952, 28.960136859000045 ], [ -82.028776769, 28.960144040000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038555196999937, 28.948558161000051 ], [ -82.038723104999974, 28.949580694000076 ], [ -82.038997189999975, 28.951232256000026 ], [ -82.039123820999976, 28.951994229000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02237248199998, 28.943424916000026 ], [ -82.022306391999962, 28.943485148000036 ], [ -82.022219058999951, 28.943561997000074 ], [ -82.022141168999951, 28.943649228000027 ], [ -82.022082165999961, 28.943726071000071 ], [ -82.02201372199994, 28.943825760000038 ], [ -82.021954723999954, 28.94392752300007 ], [ -82.021895729999983, 28.944052130000046 ], [ -82.021850895999989, 28.944160121000039 ], [ -82.021750377999979, 28.944565564000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027644902999953, 28.943183181000052 ], [ -82.027325570999949, 28.943117302000076 ], [ -82.027249845999961, 28.94311667900007 ], [ -82.02720026999998, 28.943122918000029 ], [ -82.027049193999972, 28.943183171000044 ], [ -82.026843822999979, 28.943291765000026 ], [ -82.026679230999946, 28.943387589000054 ], [ -82.02654249699998, 28.943490091000058 ], [ -82.026344994999988, 28.943650524000077 ], [ -82.026203202999966, 28.943784214000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957690533999937, 28.922998617000076 ], [ -81.957698839999978, 28.923008180000068 ], [ -81.957710556999984, 28.92302296500003 ], [ -81.957722272999945, 28.923037752000027 ], [ -81.957733400999984, 28.923052882000036 ], [ -81.957744336999951, 28.923068011000055 ], [ -81.957755076999945, 28.923083140000074 ], [ -81.957765424999934, 28.923098957000036 ], [ -81.957775382999955, 28.923114430000055 ], [ -81.957790805999934, 28.923142968000036 ], [ -81.957802520999962, 28.923162224000066 ], [ -81.957811891999938, 28.923178040000039 ], [ -81.957820871999957, 28.923194201000058 ], [ -81.95782965899997, 28.923210705000031 ], [ -81.957838051999943, 28.923226865000061 ], [ -81.957846055999937, 28.923243713000033 ], [ -81.957853863999958, 28.923260216000074 ], [ -81.957861086999969, 28.923277063000057 ], [ -81.957868308999934, 28.92329391100003 ], [ -81.957874943999968, 28.923310758000071 ], [ -81.957881383999961, 28.923327950000044 ], [ -81.957887434999975, 28.923345141000027 ], [ -81.957894458999988, 28.923366456000053 ], [ -81.957899726999983, 28.923383991000037 ], [ -81.957904604999953, 28.923401525000031 ], [ -81.957909090999976, 28.923419059000025 ], [ -81.957913381999958, 28.92343659200003 ], [ -81.957917282999972, 28.923454126000024 ], [ -81.957920792999971, 28.923472004000075 ], [ -81.957932028999949, 28.923507229000052 ], [ -81.957943879999959, 28.923548998000058 ], [ -81.957955723999987, 28.923608666000064 ], [ -81.957970958999965, 28.923669826000037 ], [ -81.957982801999947, 28.923726511000041 ], [ -81.957992957999977, 28.923769771000025 ], [ -81.958008807999988, 28.923838009000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957690533999937, 28.922998617000076 ], [ -81.95791010399995, 28.922848034000026 ], [ -81.958032079999953, 28.922832679000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001376430999983, 28.915891181000063 ], [ -82.001456527999949, 28.915874679000069 ], [ -82.001609298999938, 28.915840643000024 ], [ -82.001749176999965, 28.915815890000033 ], [ -82.001899800999979, 28.915804543000036 ], [ -82.002125637999939, 28.915798696000024 ], [ -82.002607102999946, 28.915808984000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002607102999946, 28.915808984000023 ], [ -82.002607590999958, 28.91571618100005 ], [ -82.002607588999979, 28.915642268000056 ], [ -82.002607586999943, 28.915553230000057 ], [ -82.002607584999964, 28.915456629000062 ], [ -82.002607581999939, 28.915364840000052 ], [ -82.00260757999996, 28.915253113000063 ], [ -82.002610331999961, 28.915167868000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002865876999977, 28.916894675000037 ], [ -82.002757850999956, 28.91674647800005 ], [ -82.002720339999939, 28.916690442000061 ], [ -82.00267110599998, 28.916619282000056 ], [ -82.002639456999987, 28.916560841000035 ], [ -82.002624770999944, 28.916525278000051 ], [ -82.002613275999977, 28.916476615000079 ], [ -82.002607607999948, 28.916400296000063 ], [ -82.00260760599997, 28.916319166000051 ], [ -82.002607603999934, 28.916234941000027 ], [ -82.002607600999966, 28.916115650000052 ], [ -82.00260759799994, 28.916003577000026 ], [ -82.002605358999972, 28.915901160000033 ], [ -82.002607102999946, 28.915808984000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975335031999975, 28.886100041000077 ], [ -81.975445695999952, 28.886087663000069 ], [ -81.975624511999968, 28.886088853000047 ], [ -81.975865447999979, 28.886108235000052 ], [ -81.975977250999961, 28.886118450000026 ], [ -81.976073736999979, 28.88613781600003 ], [ -81.976133699999934, 28.886167797000041 ], [ -81.976193185999989, 28.886214196000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018837057999974, 28.921484498000041 ], [ -82.018799694999984, 28.921217388000059 ], [ -82.018772704999947, 28.921058567000046 ], [ -82.018755071999976, 28.920986987000049 ], [ -82.018739060999962, 28.920950378000043 ], [ -82.018715048999979, 28.920923627000036 ], [ -82.018668629, 28.920885615000032 ], [ -82.018636614999934, 28.920864498000071 ], [ -82.018598201999964, 28.920851829000071 ], [ -82.018540582999947, 28.920846206000078 ], [ -82.018426862999945, 28.920857849000072 ], [ -82.018249275999949, 28.920886751000069 ], [ -82.018029880999961, 28.920923908000077 ], [ -82.017955743999948, 28.920947452000064 ], [ -82.017895067999973, 28.920984334000025 ], [ -82.017864134999968, 28.92101526700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978915202999985, 28.914374563000024 ], [ -81.978927944999953, 28.914576655000076 ], [ -81.978937670999983, 28.914781892000065 ], [ -81.978944871999943, 28.914925591000042 ], [ -81.978952702999948, 28.91507133600004 ], [ -81.978975107999986, 28.91518381700007 ], [ -81.979010974999937, 28.915266701000064 ], [ -81.979075996999939, 28.915353535000065 ], [ -81.979158962999975, 28.91543248000005 ], [ -81.979248659999939, 28.915495638000039 ], [ -81.979358543999979, 28.915546960000029 ], [ -81.979457218999983, 28.915576574000056 ], [ -81.979555896999955, 28.915588430000071 ], [ -81.979645605999963, 28.915590416000043 ], [ -81.979739803999962, 28.915582537000034 ], [ -81.979865401999973, 28.915554930000042 ], [ -81.979959450999957, 28.915532513000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992363598999987, 28.884119675000079 ], [ -81.99238420599994, 28.884080009000058 ], [ -81.992494960999977, 28.883916813000042 ], [ -81.992713634999973, 28.883648744000027 ], [ -81.992873965999934, 28.883417378000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992873965999934, 28.883417378000047 ], [ -81.993228243999965, 28.883589957000027 ], [ -81.993325243999948, 28.883628263000048 ], [ -81.993481361999955, 28.883686392000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992156666999961, 28.88474076600005 ], [ -81.992191854999987, 28.884624793000057 ], [ -81.992263607999973, 28.884385092000059 ], [ -81.992315945999962, 28.884231874000079 ], [ -81.992363598999987, 28.884119675000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991926637999939, 28.885351090000029 ], [ -81.992009849999988, 28.88517209400004 ], [ -81.992066268999963, 28.885040374000027 ], [ -81.992110860999958, 28.884898645000078 ], [ -81.992156666999961, 28.88474076600005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991703374999986, 28.885728202000053 ], [ -81.991884879999986, 28.885426191000079 ], [ -81.991926637999939, 28.885351090000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992938329999959, 28.885074532000033 ], [ -81.993099973999961, 28.884412416000032 ], [ -81.993132053999943, 28.884260491000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992156666999961, 28.88474076600005 ], [ -81.992214589999946, 28.884763324000062 ], [ -81.992411407999953, 28.884860360000062 ], [ -81.992590937999978, 28.884963933000051 ], [ -81.992637854999941, 28.884989420000068 ], [ -81.992724128999953, 28.885023463000039 ], [ -81.992794041999957, 28.885043104000033 ], [ -81.992853541999978, 28.885056200000065 ], [ -81.992938329999959, 28.885074532000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993139185999951, 28.882794800000056 ], [ -81.992877390999979, 28.882734564000032 ], [ -81.992742032999956, 28.882695281000053 ], [ -81.992666171999986, 28.882666474000075 ], [ -81.992621548999978, 28.882645525000044 ], [ -81.992590862999975, 28.882624963000069 ], [ -81.99255312799994, 28.882593153000073 ], [ -81.992525051999962, 28.882559297000057 ], [ -81.992505533999974, 28.882525073000068 ], [ -81.992495122999969, 28.882492342000035 ], [ -81.992492054999957, 28.882451349000064 ], [ -81.992506038999977, 28.882396553000035 ], [ -81.992527859999939, 28.882319748000043 ], [ -81.992553648999944, 28.882241198000031 ], [ -81.992589355999939, 28.882122500000037 ], [ -81.992627049999953, 28.881982854000057 ], [ -81.992650859999969, 28.881832734000056 ], [ -81.992664752999985, 28.881682614000056 ], [ -81.992665543999976, 28.881527281000047 ], [ -81.992659695999976, 28.881382206000069 ], [ -81.99264173499995, 28.881282165000073 ], [ -81.992614790999937, 28.88119553100006 ], [ -81.992577886999982, 28.881108897000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992873965999934, 28.883417378000047 ], [ -81.993016189999935, 28.883141685000055 ], [ -81.993110917999957, 28.882875969000054 ], [ -81.993139185999951, 28.882794800000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993139185999951, 28.882794800000056 ], [ -81.993239071999938, 28.882438669000067 ], [ -81.993332835999979, 28.88211655300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993668767999964, 28.882907716000034 ], [ -81.993139185999951, 28.882794800000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967547194999952, 28.927364703000023 ], [ -81.967858027999966, 28.927625956000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987954509999952, 28.872618056000078 ], [ -81.987856573999977, 28.872553388000028 ], [ -81.987507674999961, 28.872351298000069 ], [ -81.987085323999963, 28.872119564000059 ], [ -81.986938419999944, 28.872041420000073 ], [ -81.98686632, 28.87200692600004 ], [ -81.986812241999985, 28.871996590000037 ], [ -81.986766750999948, 28.87199636500003 ], [ -81.986724653999943, 28.87200275500004 ], [ -81.986688434999962, 28.872013591000041 ], [ -81.986653815999944, 28.872029767000072 ], [ -81.986606797999968, 28.872074952000048 ], [ -81.986581314999967, 28.872113941000066 ], [ -81.986560309999959, 28.872167079000064 ], [ -81.986510102999944, 28.872327275000032 ], [ -81.986493752999934, 28.872375477000048 ], [ -81.986478774999966, 28.872425150000026 ], [ -81.98647531499995, 28.872459617000061 ], [ -81.986476671999981, 28.872495293000043 ], [ -81.986493191999955, 28.87254725300005 ], [ -81.986523879999936, 28.872595056000023 ], [ -81.986571057999981, 28.872636784000065 ], [ -81.986913837999964, 28.872809241000027 ], [ -81.987366798999972, 28.873040979000052 ], [ -81.987547369999959, 28.873137983000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989315723999937, 28.874051658000042 ], [ -81.989455716999942, 28.874124447000042 ], [ -81.989550152999982, 28.874169060000042 ], [ -81.989643833999935, 28.874208987000031 ], [ -81.989800063999951, 28.874265383000079 ], [ -81.989942654999936, 28.874309581000034 ], [ -81.990044218999969, 28.874331296000037 ], [ -81.990185815999951, 28.874358596000036 ], [ -81.990511943999934, 28.874393198000064 ], [ -81.990671851999934, 28.874401721000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972105289999945, 28.893983271000025 ], [ -81.972112763999974, 28.893851730000051 ], [ -81.97210827899994, 28.893708230000072 ], [ -81.972073771999987, 28.89347433100005 ], [ -81.972060555999974, 28.89324390400003 ], [ -81.972058256999958, 28.892911925000078 ], [ -81.972065705999967, 28.891842454000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972997680999981, 28.89373364100004 ], [ -81.972950408999964, 28.893483008000032 ], [ -81.972907071999941, 28.893210479000061 ], [ -81.972869642999967, 28.893010916000037 ], [ -81.972833503999937, 28.892825450000032 ], [ -81.972812267999984, 28.892632493000065 ], [ -81.97280167599996, 28.89243392000003 ], [ -81.972801710999988, 28.892299040000069 ], [ -81.972803878999969, 28.892147302000069 ], [ -81.972818809999978, 28.892029286000025 ], [ -81.972858899999949, 28.891845702000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00282597599994, 28.932956326000067 ], [ -82.003575523999984, 28.933616473000029 ], [ -82.003642047999961, 28.933672974000046 ], [ -82.003667281999981, 28.933695171000068 ], [ -82.003687354999954, 28.933719638000071 ], [ -82.003706278999971, 28.933743852000077 ], [ -82.003725205999956, 28.933768068000063 ], [ -82.003744131999952, 28.933790769000041 ], [ -82.003761335999968, 28.933818262000045 ], [ -82.004011830999957, 28.934230027000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023033238999972, 28.923209265000025 ], [ -82.023078826999949, 28.922989721000079 ], [ -82.023095602999945, 28.922941373000072 ], [ -82.023110207999935, 28.922899252000036 ], [ -82.023130114999958, 28.922848199000043 ], [ -82.023232598999982, 28.922679810000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98770226399995, 28.888168117000077 ], [ -81.987803629999974, 28.888235218000034 ], [ -81.987909277999961, 28.888272338000036 ], [ -81.98833211699997, 28.888402894000023 ], [ -81.989573865999944, 28.888707927000041 ], [ -81.990251379999961, 28.88887849200006 ], [ -81.990287511999952, 28.888888464000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988470953999979, 28.891895108000028 ], [ -81.988636903999975, 28.891920764000076 ], [ -81.98893080199997, 28.891969843000027 ], [ -81.989167694999935, 28.892005538000035 ], [ -81.989296907999972, 28.892036766000047 ], [ -81.989414718999967, 28.892076911000061 ], [ -81.989532528999973, 28.892125975000056 ], [ -81.989636402999963, 28.892177267000079 ], [ -81.989750410999989, 28.892247513000029 ], [ -81.989850463999971, 28.892320029000075 ], [ -81.990064902999961, 28.892521842000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989355838999984, 28.893061165000063 ], [ -81.989262467999936, 28.892949816000055 ], [ -81.989187164999976, 28.892894139000077 ], [ -81.989114873999938, 28.892846414000076 ], [ -81.989036555999974, 28.892809295000063 ], [ -81.988945902999944, 28.892784745000029 ], [ -81.988736134999954, 28.892746569000053 ], [ -81.988536517999989, 28.892716467000071 ], [ -81.988461211999947, 28.892703206000078 ], [ -81.988395898999954, 28.892676409000046 ], [ -81.988352774999953, 28.892636922000065 ], [ -81.988310608999939, 28.892573294000044 ], [ -81.988304589999984, 28.892520273000059 ], [ -81.988313633999951, 28.892451348000066 ], [ -81.988410409999972, 28.892160743000034 ], [ -81.988470953999979, 28.891895108000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988470953999979, 28.891895108000028 ], [ -81.988479828999971, 28.891829331000054 ], [ -81.988526736999972, 28.891498217000048 ], [ -81.988540690999969, 28.891320954000037 ], [ -81.988543340999968, 28.891109824000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991274984999961, 28.888602234000075 ], [ -81.991373264999936, 28.888288408000051 ], [ -81.991416040999979, 28.888108604000024 ], [ -81.991510830999971, 28.887617337000052 ], [ -81.991584151999973, 28.887252493000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99115313599998, 28.886492387000033 ], [ -81.990951, 28.886439088000031 ], [ -81.99031384999995, 28.886273592000066 ], [ -81.989633111999979, 28.886068400000056 ], [ -81.989326018999975, 28.88597519800004 ], [ -81.989287771999955, 28.88596939100006 ], [ -81.989253479999945, 28.885971710000035 ], [ -81.989196765999964, 28.885976349000032 ], [ -81.989153239999951, 28.885991435000051 ], [ -81.989114990999951, 28.886013486000024 ], [ -81.98907541899996, 28.886058754000032 ], [ -81.989050353999971, 28.886106343000051 ], [ -81.98897120099997, 28.886289740000052 ], [ -81.98895140999997, 28.886352419000048 ], [ -81.988947448999966, 28.886402333000035 ], [ -81.988957993999975, 28.886454570000069 ], [ -81.988976453999953, 28.886495197000045 ], [ -81.989022610999939, 28.886541633000036 ], [ -81.989137174999939, 28.886612218000039 ], [ -81.989390569999955, 28.886707652000041 ], [ -81.990156059999947, 28.886905540000043 ], [ -81.990892779999967, 28.887081532000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990725227999974, 28.887710008000056 ], [ -81.990757303999942, 28.887587051000025 ], [ -81.990853530999971, 28.887216162000072 ], [ -81.990892779999967, 28.887081532000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990892779999967, 28.887081532000025 ], [ -81.991584151999973, 28.887252493000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990892779999967, 28.887081532000025 ], [ -81.990983581999956, 28.886824810000064 ], [ -81.991139853999982, 28.886512325000069 ], [ -81.99115313599998, 28.886492387000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991584151999973, 28.887252493000062 ], [ -81.991757972999949, 28.887299814000073 ], [ -81.991946019999943, 28.887365396000064 ], [ -81.992122373999962, 28.887425879000034 ], [ -81.992305598999963, 28.887482330000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992305598999963, 28.887482330000068 ], [ -81.992422403999967, 28.88751660500003 ], [ -81.993097969999951, 28.887700357000028 ], [ -81.993913051999982, 28.887931391000052 ], [ -81.993988987999955, 28.887952081000037 ], [ -81.99406685799994, 28.887982321000038 ], [ -81.994119535999971, 28.888020622000056 ], [ -81.994156179999948, 28.888060938000024 ], [ -81.994181370999968, 28.888105285000051 ], [ -81.994201979999957, 28.88816575900006 ], [ -81.994233399999985, 28.888377492000075 ], [ -81.994240222999963, 28.888607824000076 ], [ -81.994226538999953, 28.88883815500003 ], [ -81.994191954999962, 28.889074330000028 ], [ -81.994116353999971, 28.889353131000064 ], [ -81.993992312999978, 28.889686590000053 ], [ -81.993854602999988, 28.889940980000063 ], [ -81.993647943999974, 28.890231807000077 ], [ -81.993466094999974, 28.890440129000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019213741999977, 28.914613129000031 ], [ -82.019241070999954, 28.91453354500004 ], [ -82.019275758999981, 28.914441004000025 ], [ -82.019304144999978, 28.914386405000073 ], [ -82.019344100999945, 28.914335505000054 ], [ -82.019400340999937, 28.914277476000052 ], [ -82.019439787999943, 28.914248508000071 ], [ -82.019481600999939, 28.914225210000041 ], [ -82.019524968999974, 28.914210557000047 ], [ -82.019569138999941, 28.91420037000006 ], [ -82.019618567999942, 28.914197587000046 ], [ -82.019662886999981, 28.914197681000076 ], [ -82.01978368999994, 28.914217921000045 ], [ -82.01988354599996, 28.914228225000045 ], [ -82.019917809999981, 28.914226798000072 ], [ -82.019977772999937, 28.914222515000063 ], [ -82.020031890999974, 28.91421639400005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019213741999977, 28.914613129000031 ], [ -82.019372275999956, 28.914637071000072 ], [ -82.019482268, 28.914658713000051 ], [ -82.019586007999976, 28.914685512000062 ], [ -82.019707345999961, 28.91472331500006 ], [ -82.019812262999949, 28.914755731000071 ], [ -82.019908675999943, 28.914798129000076 ], [ -82.020002252999973, 28.914838031000045 ], [ -82.020087324999963, 28.914882925000029 ], [ -82.020169560999989, 28.914927818000024 ], [ -82.02025747, 28.914985185000035 ], [ -82.020343482999976, 28.915040178000027 ], [ -82.020444632999954, 28.915104907000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018756487999951, 28.914542275000031 ], [ -82.018809055999952, 28.914553057000035 ], [ -82.018956840999977, 28.914576255000043 ], [ -82.019065918999956, 28.914591718000054 ], [ -82.019213741999977, 28.914613129000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954016283999977, 28.897092960000066 ], [ -81.954524219999939, 28.897030724000047 ], [ -81.955032010999957, 28.896974296000053 ], [ -81.955208037999967, 28.896969886000079 ], [ -81.955309582999973, 28.896990772000038 ], [ -81.955441616999963, 28.897020054000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965749611999968, 28.903625770000076 ], [ -81.965856991999942, 28.903611445000024 ], [ -81.965957574999948, 28.903603098000076 ], [ -81.966113883999981, 28.903594765000037 ], [ -81.966513487999975, 28.903594865000059 ], [ -81.966845129999967, 28.903598535000071 ], [ -81.966889980999952, 28.903605723000055 ], [ -81.967061211999976, 28.903646965000064 ], [ -81.967127840999979, 28.90364939400007 ], [ -81.967175430999987, 28.903645825000069 ], [ -81.967242054999986, 28.903633928000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965843845999984, 28.904300527000032 ], [ -81.965833705999955, 28.904247239000028 ], [ -81.965813622999974, 28.90413172500007 ], [ -81.965801285999987, 28.904006321000054 ], [ -81.965786213999934, 28.903914621000069 ], [ -81.96577328799998, 28.903829878000067 ], [ -81.965766663999943, 28.903773840000042 ], [ -81.965749611999968, 28.903625770000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965843845999984, 28.904300527000032 ], [ -81.96575964799996, 28.904321132000064 ], [ -81.965605968999967, 28.90434642200006 ], [ -81.965513204999979, 28.90437318000005 ], [ -81.965446528999962, 28.904393568000046 ], [ -81.965309153999954, 28.904445465000038 ], [ -81.96515442499998, 28.904504555000074 ], [ -81.965039941999976, 28.904543028000035 ], [ -81.96497544999994, 28.904556686000035 ], [ -81.964921825999966, 28.904557948000047 ], [ -81.964872552999964, 28.904545182000049 ], [ -81.964830528999983, 28.904528592000077 ], [ -81.964787058999946, 28.904499249000025 ], [ -81.964688542999966, 28.904392096000038 ], [ -81.964464006999947, 28.904083410000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964464006999947, 28.904083410000055 ], [ -81.964391577999947, 28.90397626500004 ], [ -81.964072200999965, 28.903490126000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021028805999947, 28.921532470000045 ], [ -82.020887010999957, 28.921506266000051 ], [ -82.020749364999972, 28.921489389000044 ], [ -82.020645329999979, 28.921473916000025 ], [ -82.020534893999979, 28.921461260000058 ], [ -82.020453267999983, 28.921450007000033 ], [ -82.020384444999934, 28.921440161000078 ], [ -82.020321827999965, 28.921435914000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020321827999965, 28.921435914000028 ], [ -82.020240399999977, 28.921433143000058 ], [ -82.020125164999968, 28.921431753000036 ], [ -82.019991499999946, 28.921437922000052 ], [ -82.019877990999987, 28.92144481400004 ], [ -82.019780306999962, 28.921451704000049 ], [ -82.019647454999983, 28.92145516100004 ], [ -82.019587670999954, 28.921457920000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020321827999965, 28.921435914000028 ], [ -82.020333738999966, 28.921315631000027 ], [ -82.020347326999968, 28.921231215000034 ], [ -82.020366260999936, 28.921162886000047 ], [ -82.020401952999975, 28.921069304000071 ], [ -82.020429870999976, 28.921010673000069 ], [ -82.020459252999956, 28.92094897000004 ], [ -82.020476862999942, 28.92087698000006 ], [ -82.020485170999962, 28.920806362000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986499075999973, 28.88080074800007 ], [ -81.986862084999984, 28.880470383000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021597597999971, 28.920041814000058 ], [ -82.021998454999959, 28.920180738000056 ], [ -82.022366513999941, 28.920292886000027 ], [ -82.022512282999969, 28.920348967000052 ], [ -82.022579704999941, 28.920392235000065 ], [ -82.022668071999988, 28.920458764000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002055501999962, 28.946090110000057 ], [ -82.001988918999984, 28.946306187000062 ], [ -82.001933965999967, 28.946473764000075 ], [ -82.001904657999944, 28.946568293000041 ], [ -82.001871685999959, 28.946675714000037 ], [ -82.001857031999975, 28.946716533000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004520189999937, 28.924312597000039 ], [ -82.004848331999938, 28.924328377000052 ], [ -82.004936845999964, 28.924325490000058 ], [ -82.005018803999974, 28.924316834000024 ], [ -82.005123708999974, 28.924302409000063 ], [ -82.005225335999967, 28.924279332000026 ], [ -82.005357558999947, 28.924241524000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957216873999982, 28.901124591000041 ], [ -81.957511573999966, 28.900891346000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955263330999969, 28.898280634000059 ], [ -81.955258293999975, 28.898183818000064 ], [ -81.955258375999961, 28.897993167000038 ], [ -81.955269527999974, 28.897819015000039 ], [ -81.955276805999972, 28.897679276000076 ], [ -81.955280438999978, 28.897621051000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955280438999978, 28.897621051000044 ], [ -81.955288894999967, 28.897541655000055 ], [ -81.95531542699996, 28.897386042000051 ], [ -81.955345012999942, 28.897254419000035 ], [ -81.955429887999969, 28.897043427000028 ], [ -81.955441616999963, 28.897020054000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954019308999989, 28.897858365000047 ], [ -81.954163024999957, 28.897839203000046 ], [ -81.954231834999973, 28.89782526700003 ], [ -81.954309534999936, 28.897804931000053 ], [ -81.954671685999983, 28.897700247000046 ], [ -81.954814860999988, 28.897660066000071 ], [ -81.954879639999945, 28.897646676000079 ], [ -81.954958031999979, 28.89763047200006 ], [ -81.955073522999953, 28.897623099000043 ], [ -81.955181792999952, 28.89762313500006 ], [ -81.955280438999978, 28.897621051000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019587670999954, 28.921457920000023 ], [ -82.019578290999959, 28.92096082300003 ], [ -82.01956972399995, 28.920862313000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95613246399995, 28.901434149000067 ], [ -81.956048764999935, 28.901478022000049 ], [ -81.955904772999986, 28.901550512000028 ], [ -81.955774263999956, 28.901611661000061 ], [ -81.955651573999944, 28.901660782000079 ], [ -81.955531616999963, 28.901707840000029 ], [ -81.955408930999965, 28.901745271000038 ], [ -81.95527296299997, 28.901782698000034 ], [ -81.955115701999944, 28.901820118000046 ], [ -81.95494486399997, 28.901852387000076 ], [ -81.95476726399994, 28.901874651000071 ], [ -81.954654244999972, 28.901883017000046 ], [ -81.954542098, 28.901891319000072 ], [ -81.954402560999938, 28.901893133000044 ], [ -81.954316935999941, 28.90189775500005 ], [ -81.954275705999976, 28.901906112000063 ], [ -81.954240815999981, 28.901920053000026 ], [ -81.954211211999962, 28.901935857000069 ], [ -81.954183717999967, 28.90195538200004 ], [ -81.954156222999984, 28.901980488000049 ], [ -81.954139298999962, 28.902005598000073 ], [ -81.954126599999938, 28.902035359000024 ], [ -81.954119743999968, 28.902063991000034 ], [ -81.954117431999975, 28.902189105000048 ], [ -81.954117362999966, 28.902345996000065 ], [ -81.954123682999978, 28.902514214000064 ], [ -81.954124063999984, 28.902535184000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954007540999953, 28.896291834000067 ], [ -81.954622498999981, 28.896294861000058 ], [ -81.955264748, 28.896289715000023 ], [ -81.955357269999979, 28.89629768900005 ], [ -81.955416526999954, 28.89631220800004 ], [ -81.955499427999939, 28.896335469000064 ], [ -81.955591934999973, 28.896379190000061 ], [ -81.955765088999954, 28.896494930000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971272835999969, 28.946872487000064 ], [ -81.971104072999935, 28.947112531000073 ], [ -81.971003576999976, 28.947245887000065 ], [ -81.970916356999965, 28.947344233000024 ], [ -81.97082955999997, 28.947428642000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97082955999997, 28.947428642000034 ], [ -81.970774157999983, 28.947487583000054 ], [ -81.97069262499997, 28.947582597000064 ], [ -81.970601616999943, 28.947674274000065 ], [ -81.970491648999939, 28.947780951000027 ], [ -81.970271959999934, 28.947969664000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97082955999997, 28.947428642000034 ], [ -81.970939784999985, 28.947453998000071 ], [ -81.971025511999983, 28.94748327800005 ], [ -81.971228076999978, 28.947570670000061 ], [ -81.971495510999944, 28.947703498000067 ], [ -81.971790744999964, 28.94785263700004 ], [ -81.972040197999945, 28.947981348000042 ], [ -81.972239197999954, 28.94808142200003 ], [ -81.972544330999938, 28.948229867000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967821626999978, 28.946664891000069 ], [ -81.967882472999975, 28.946664906000024 ], [ -81.968215917999942, 28.946662844000059 ], [ -81.968556667999962, 28.946652221000079 ], [ -81.968724606999956, 28.946652260000064 ], [ -81.968836563999957, 28.946658708000029 ], [ -81.968948521999948, 28.946671578000064 ], [ -81.969072643999937, 28.946690875000058 ], [ -81.969184593999955, 28.946720872000071 ], [ -81.96927220699996, 28.946748723000042 ], [ -81.969371985999942, 28.94678728100007 ], [ -81.969483929999967, 28.946838686000035 ], [ -81.969606161999934, 28.946904290000077 ], [ -81.969720071999973, 28.946968603000073 ], [ -81.969877163999968, 28.947056644000043 ], [ -81.970042072999945, 28.947144688000037 ], [ -81.970183454999983, 28.947221045000049 ], [ -81.970338350999953, 28.947306100000048 ], [ -81.970399250999947, 28.947336394000047 ], [ -81.970449561999942, 28.947356204000073 ], [ -81.970526354999947, 28.947376020000036 ], [ -81.970603148999942, 28.947391178000032 ], [ -81.970671997999943, 28.947405169000035 ], [ -81.970732240999951, 28.947419887000024 ], [ -81.97082955999997, 28.947428642000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960456051999984, 28.900014122000073 ], [ -81.960510216999978, 28.900008180000043 ], [ -81.96065691299998, 28.899996308000027 ], [ -81.961161811999943, 28.899951157000032 ], [ -81.961748220999937, 28.899884288000067 ], [ -81.96254169499997, 28.899775189000025 ], [ -81.962833497999952, 28.899722590000067 ], [ -81.962871569999947, 28.899716046000037 ], [ -81.962933435999958, 28.899716046000037 ], [ -81.962994112, 28.899734487000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963402924999968, 28.896390245000077 ], [ -81.963402536, 28.896386463000056 ], [ -81.963320200999988, 28.895998704000078 ], [ -81.96319557299995, 28.895601561000035 ], [ -81.963042579999978, 28.895205143000055 ], [ -81.963022673999944, 28.895099311000024 ], [ -81.963015490999965, 28.895030496000061 ], [ -81.96300989599996, 28.894927580000058 ], [ -81.963017626999942, 28.894848496000066 ], [ -81.963030492999962, 28.894769415000042 ], [ -81.963088284999969, 28.89440675700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963088284999969, 28.89440675700007 ], [ -81.962980208999966, 28.894388117000062 ], [ -81.96277110799997, 28.894343603000038 ], [ -81.962658336999937, 28.894311521000077 ], [ -81.962563188, 28.894281512000077 ], [ -81.962418705999937, 28.894228745000078 ], [ -81.962250733999952, 28.89415529200005 ], [ -81.962108608999984, 28.894082880000042 ], [ -81.961970009999959, 28.894001165000077 ], [ -81.961760409999954, 28.893858765000061 ], [ -81.961670187999971, 28.893799564000062 ], [ -81.961517619999938, 28.89367087200003 ], [ -81.96137478199995, 28.893523850000065 ], [ -81.961278980999964, 28.893408797000063 ], [ -81.961169618999975, 28.893255947000057 ], [ -81.961058295999976, 28.893072457000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96657043099998, 28.894413868000072 ], [ -81.966686516999971, 28.894465837000041 ], [ -81.966807494999955, 28.894503629000042 ], [ -81.966935771999943, 28.894546485000035 ], [ -81.967027998999981, 28.894574927000065 ], [ -81.967116467999972, 28.894596750000062 ], [ -81.967250940999975, 28.894631041000025 ], [ -81.967307561999974, 28.89464507100007 ], [ -81.967385414999967, 28.894660661000046 ], [ -81.96751967199998, 28.894677045000037 ], [ -81.967689983999946, 28.894692658000054 ], [ -81.967699680999942, 28.89469342600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96657043099998, 28.894413868000072 ], [ -81.966296710999984, 28.894376581000074 ], [ -81.966201554999941, 28.894366218000073 ], [ -81.96607585299995, 28.894356881000078 ], [ -81.965914904999977, 28.894352705000074 ], [ -81.965758653999956, 28.894354733000057 ], [ -81.96552016399994, 28.894365011000048 ], [ -81.964822315999982, 28.894390677000047 ], [ -81.964240776999986, 28.89441327000003 ], [ -81.963793165999959, 28.894429693000063 ], [ -81.963508856999965, 28.894438921000074 ], [ -81.963265674999946, 28.894426448000047 ], [ -81.963088284999969, 28.89440675700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967712394999978, 28.894589999000061 ], [ -81.967701074999979, 28.894589494000058 ], [ -81.967554094999969, 28.894567524000024 ], [ -81.967257536999966, 28.894510475000061 ], [ -81.967018018999966, 28.894465672000024 ], [ -81.966639744999952, 28.894416987000056 ], [ -81.96657043099998, 28.894413868000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965773831999968, 28.893971835000059 ], [ -81.965710843999943, 28.893527866000056 ], [ -81.965703076999944, 28.893388977000029 ], [ -81.965718749999951, 28.893243564000045 ], [ -81.965742614999954, 28.893132530000059 ], [ -81.965798717999974, 28.892946492000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973591384999963, 28.886781304000067 ], [ -81.973610001999987, 28.885950786000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972908102999952, 28.885881527000038 ], [ -81.973364218999961, 28.885926248000033 ], [ -81.973610001999987, 28.885950786000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973610001999987, 28.885950786000024 ], [ -81.973678781, 28.885955430000024 ], [ -81.973822590999987, 28.885957966000035 ], [ -81.974110666999934, 28.885960772000033 ], [ -81.97428614599994, 28.885950917000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975282983999989, 28.88220259600007 ], [ -81.975291797999944, 28.882114578000028 ], [ -81.975311464999947, 28.881561660000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975339284999961, 28.880812412000068 ], [ -81.975368193999941, 28.880771069000048 ], [ -81.975393968999981, 28.880746233000025 ], [ -81.975429558999963, 28.880722480000031 ], [ -81.975479873999973, 28.880697648000023 ], [ -81.975544119999938, 28.880686608000076 ], [ -81.975618533999977, 28.88069011400006 ], [ -81.975754791999975, 28.880711918000031 ], [ -81.975876207999988, 28.880735521000076 ], [ -81.976223448999974, 28.880811183000048 ], [ -81.976533318999941, 28.880885749000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975311464999947, 28.881561660000045 ], [ -81.975318754999989, 28.881291451000038 ], [ -81.975321529999974, 28.880920101000072 ], [ -81.975327680999953, 28.880857462000051 ], [ -81.975339284999961, 28.880812412000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974482740999974, 28.882405727000048 ], [ -81.974668453999982, 28.882400608000069 ], [ -81.974857550999957, 28.882386838000059 ], [ -81.975034255999958, 28.882368152000026 ], [ -81.975101336999955, 28.882360964000043 ], [ -81.975148788999945, 28.882346573000063 ], [ -81.975194603999967, 28.882326420000027 ], [ -81.975238786999967, 28.882294748000049 ], [ -81.975264971999934, 28.882263073000047 ], [ -81.975279703999945, 28.882231396000066 ], [ -81.975282983999989, 28.88220259600007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974459678999949, 28.88087186000007 ], [ -81.97446014999997, 28.880898976000026 ], [ -81.974466434999954, 28.88101881700004 ], [ -81.974482706999936, 28.88130891000003 ], [ -81.974504447999948, 28.881517491000068 ], [ -81.974530392999952, 28.881564775000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974530392999952, 28.881564775000072 ], [ -81.974551072999986, 28.881515165000053 ], [ -81.974561065999978, 28.881438070000058 ], [ -81.974569871999961, 28.881313721000026 ], [ -81.974586256999942, 28.881138711000062 ], [ -81.974592474999952, 28.881061164000073 ], [ -81.974591739999937, 28.88099726300004 ], [ -81.974589038999966, 28.880903764000038 ], [ -81.974587190999955, 28.880871641000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975139259999935, 28.88547383100007 ], [ -81.975135550999937, 28.885462485000062 ], [ -81.975056333999987, 28.885262800000078 ], [ -81.975023626999985, 28.885187915000074 ], [ -81.97499910099998, 28.885118790000035 ], [ -81.974984388999985, 28.885066947000041 ], [ -81.974978446999955, 28.884975666000059 ], [ -81.974977729999978, 28.884893557000055 ], [ -81.974988390999954, 28.884816752000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974909206999939, 28.886603886000046 ], [ -81.974992216999965, 28.886609520000036 ], [ -81.975171204999981, 28.886644060000037 ], [ -81.975345595999954, 28.886687016000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975345595999954, 28.886687016000053 ], [ -81.975439735999942, 28.886710113000049 ], [ -81.975760408999975, 28.886799555000039 ], [ -81.975890404999973, 28.886832609000066 ], [ -81.97602894299996, 28.886857357000054 ], [ -81.976182840999968, 28.88686873000006 ], [ -81.976320336999947, 28.886866003000023 ], [ -81.976529711999945, 28.886840256000028 ], [ -81.977065372999959, 28.886752261000026 ], [ -81.977538116999938, 28.886670258000038 ], [ -81.977659407999965, 28.886644495000041 ], [ -81.97771460599995, 28.88660999800004 ], [ -81.977749122999967, 28.886568970000042 ], [ -81.977774221999937, 28.886525709000068 ], [ -81.977784208999935, 28.886480887000062 ], [ -81.977795565999941, 28.886250333000078 ], [ -81.977799856, 28.886098596000068 ], [ -81.977797036999959, 28.886019185000066 ], [ -81.977778598999976, 28.885967460000074 ], [ -81.977738166999984, 28.885916873000042 ], [ -81.977685741999949, 28.88588371700007 ], [ -81.977614726999946, 28.885858780000035 ], [ -81.977535971999941, 28.885851273000071 ], [ -81.977308223999955, 28.885841868000057 ], [ -81.977142203999961, 28.885823108000068 ], [ -81.97705493999996, 28.885800613000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975345595999954, 28.886687016000053 ], [ -81.975383268999963, 28.886515663000068 ], [ -81.975386554999943, 28.886460944000078 ], [ -81.975378388999957, 28.886396142000024 ], [ -81.975366961999953, 28.886285259000033 ], [ -81.975348986999961, 28.88618877600004 ], [ -81.975335031999975, 28.886100041000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977260225999942, 28.890000257000054 ], [ -81.977307732999975, 28.889841205000039 ], [ -81.977318761999982, 28.889779155000042 ], [ -81.977329762999943, 28.889573527000039 ], [ -81.977337784999975, 28.889390879000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976595540999938, 28.888938814000028 ], [ -81.976606169999968, 28.889004382000053 ], [ -81.976619454999934, 28.889086342000041 ], [ -81.97660112899996, 28.88955392400004 ], [ -81.976596179999945, 28.889739682000027 ], [ -81.976608651999982, 28.889798201000076 ], [ -81.976651785999934, 28.889857773000074 ], [ -81.976696437999976, 28.889889541000059 ], [ -81.976735221999945, 28.889908188000049 ], [ -81.976790849999986, 28.889924037000071 ], [ -81.976962034999985, 28.889948367000045 ], [ -81.977178011999968, 28.889980948000073 ], [ -81.977260225999942, 28.890000257000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97594946199996, 28.896984709000037 ], [ -81.975891829999966, 28.896919943000057 ], [ -81.975829254999951, 28.896856211000056 ], [ -81.975786310999979, 28.896816244000036 ], [ -81.975707780999983, 28.896754669000075 ], [ -81.975612068999965, 28.896683372000041 ], [ -81.975558080999974, 28.896643403000041 ], [ -81.975528633999943, 28.896615317000055 ], [ -81.975504097999988, 28.89657535200007 ], [ -81.975472203999971, 28.89651378700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975022958999944, 28.896817185000032 ], [ -81.975107273999981, 28.896745631000044 ], [ -81.975176395999938, 28.896689772000059 ], [ -81.975279971999953, 28.896617433000074 ], [ -81.975472203999971, 28.89651378700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977900900999941, 28.895748724000043 ], [ -81.977882850999947, 28.895687870000074 ], [ -81.977846173999978, 28.895595827000079 ], [ -81.977812012999948, 28.895523428000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975472203999971, 28.89651378700006 ], [ -81.97553848299998, 28.896478158000036 ], [ -81.97567963299997, 28.896413385000074 ], [ -81.975823232999971, 28.896360491000053 ], [ -81.975966831999983, 28.896311916000059 ], [ -81.976822968999954, 28.896057349000046 ], [ -81.977378256999941, 28.895897440000056 ], [ -81.977647192999939, 28.895818241000029 ], [ -81.977900900999941, 28.895748724000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97594946199996, 28.896984709000037 ], [ -81.975967433999983, 28.896976806000055 ], [ -81.976226399999973, 28.896892342000058 ], [ -81.97708825899997, 28.896640971000068 ], [ -81.977663390999965, 28.896471913000028 ], [ -81.977761179999959, 28.896446593000064 ], [ -81.977850244999956, 28.896446833000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977850244999956, 28.896446833000027 ], [ -81.977908271999979, 28.896259733000079 ], [ -81.977948802999947, 28.896104220000041 ], [ -81.97795675499998, 28.896048230000076 ], [ -81.977960217999964, 28.895995378000066 ], [ -81.977957120999974, 28.895950321000043 ], [ -81.977953448999983, 28.895908201000054 ], [ -81.97794793099996, 28.895876609000027 ], [ -81.977939538999976, 28.895847144000072 ], [ -81.977915389999964, 28.895786391000058 ], [ -81.977900900999941, 28.895748724000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977760744999955, 28.896749894000038 ], [ -81.977841103999936, 28.896478649000073 ], [ -81.977850244999956, 28.896446833000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061348061, 28.744249424000031 ], [ -82.061345996999989, 28.74415342900005 ], [ -82.061345905999985, 28.743997540000066 ], [ -82.061345827999958, 28.743864243000075 ], [ -82.061345760999984, 28.743749021000042 ], [ -82.061347748999935, 28.743644867000057 ], [ -82.06134567099997, 28.743596069000034 ], [ -82.061339503999989, 28.74357257500003 ], [ -82.061327189999986, 28.743554506000066 ], [ -82.061300524999979, 28.743547289000048 ], [ -82.061243102999981, 28.743547315000058 ], [ -82.061109804999944, 28.743552797000063 ], [ -82.060914980999939, 28.743554918000029 ], [ -82.060814491999963, 28.743554738000057 ], [ -82.060709900999939, 28.743556592000061 ], [ -82.060629916999972, 28.743549399000074 ], [ -82.060588892999988, 28.743536765000044 ], [ -82.060562218999962, 28.743511473000069 ], [ -82.06054579299996, 28.743478947000028 ], [ -82.06052935699995, 28.743426539000041 ], [ -82.060525194999968, 28.743323519000057 ], [ -82.060523031999935, 28.74312831900005 ], [ -82.060522873999957, 28.742853593000063 ], [ -82.06051856199997, 28.742488497000068 ], [ -82.060518325999965, 28.742078215000049 ], [ -82.060522050999964, 28.741418418000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061353993999944, 28.745785243000057 ], [ -82.06135562999998, 28.745559181000033 ], [ -82.061352940999939, 28.745070970000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061352940999939, 28.745070970000029 ], [ -82.061362473999964, 28.744932586000061 ], [ -82.061359084999935, 28.744616289000078 ], [ -82.061348016999943, 28.744327392000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061348016999943, 28.744327392000059 ], [ -82.061348061, 28.744249424000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112146853999946, 28.664902565000034 ], [ -82.112110900999937, 28.664901560000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116763928999944, 28.659380400000032 ], [ -82.116762356999971, 28.659334693000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009997625999972, 28.885368290000031 ], [ -82.010016213999961, 28.885265215000061 ], [ -82.010028680999937, 28.885151374000031 ], [ -82.010032834999947, 28.885037064000073 ], [ -82.010028658999943, 28.884922755000048 ], [ -82.010016169999972, 28.884808915000065 ], [ -82.009995418999949, 28.884696015000031 ], [ -82.009966493999968, 28.884584516000075 ], [ -82.00992950899996, 28.884474877000059 ], [ -82.00988461999998, 28.884367549000046 ], [ -82.009832009999968, 28.884262974000023 ], [ -82.009771894999972, 28.884161578000032 ], [ -82.009704521999936, 28.884063782000055 ], [ -82.009671029999936, 28.884019938000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00932897499996, 28.910146733000033 ], [ -82.00942073799996, 28.91014619200007 ], [ -82.009458893999977, 28.910143951000066 ], [ -82.009509767999987, 28.910137234000047 ], [ -82.009592435999934, 28.910118203000025 ], [ -82.009628046999978, 28.910111486000062 ], [ -82.009668744999942, 28.910105886000053 ], [ -82.009763326999973, 28.910106094000071 ], [ -82.009814899999981, 28.910105402000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053638242999966, 28.945627478000063 ], [ -82.053632996999966, 28.946204890000047 ], [ -82.053644108999947, 28.947534790000077 ], [ -82.053648147999979, 28.949681263000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058485355999949, 28.945656979000034 ], [ -82.056890141999986, 28.945648352000035 ], [ -82.055418998999983, 28.945650307000051 ], [ -82.054399675999946, 28.945645528000057 ], [ -82.053988060999984, 28.945647704000066 ], [ -82.053711358999976, 28.945638763000034 ], [ -82.053638242999966, 28.945627478000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078542632999984, 28.890918636000038 ], [ -82.078533485999969, 28.892391900000064 ], [ -82.078528865999942, 28.893066488000045 ], [ -82.078584500999966, 28.894417846000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078584500999966, 28.894417846000067 ], [ -82.078553611999951, 28.894705205000037 ], [ -82.078568985999937, 28.895221717000027 ], [ -82.078561735999983, 28.895544821000044 ], [ -82.07852206299998, 28.896799649000059 ], [ -82.078520609999941, 28.897205995000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078584500999966, 28.894417846000067 ], [ -82.078347766999968, 28.894437151000034 ], [ -82.07806368699994, 28.894461484000033 ], [ -82.077665958999944, 28.894476716000042 ], [ -82.077500237999971, 28.894480145000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.077500237999971, 28.894480145000045 ], [ -82.07749653999997, 28.895254472000033 ], [ -82.077530678999949, 28.895487612000068 ], [ -82.077510901999972, 28.895760170000074 ], [ -82.077535928999964, 28.897172125000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086894489999963, 28.894587208000075 ], [ -82.085522903999959, 28.894576805000042 ], [ -82.083869019999952, 28.894561683000063 ], [ -82.083074582999984, 28.894555142000058 ], [ -82.082921126999963, 28.894551017000026 ], [ -82.08275767799995, 28.894540918000075 ], [ -82.082394005999959, 28.894513007000057 ], [ -82.082098266999935, 28.894481538000036 ], [ -82.081796525999948, 28.894439521000038 ], [ -82.081542744999979, 28.894406265000043 ], [ -82.081226570999945, 28.894364609000036 ], [ -82.080915297, 28.894336308000049 ], [ -82.080591101999971, 28.894315821000077 ], [ -82.080289882999978, 28.894310307000069 ], [ -82.079978184999959, 28.894308734000049 ], [ -82.079664745999935, 28.894319910000036 ], [ -82.079429151999989, 28.894329846000062 ], [ -82.079200942999989, 28.894349981000062 ], [ -82.078694342999938, 28.894406114000049 ], [ -82.078584500999966, 28.894417846000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981410690999951, 28.877402871000072 ], [ -81.981477420999965, 28.877321914000049 ], [ -81.981577512999934, 28.877216050000072 ], [ -81.981874642999969, 28.87694962300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981410690999951, 28.877402871000072 ], [ -81.981742428999951, 28.877528731000041 ], [ -81.981926378999958, 28.877594353000063 ], [ -81.982065705999958, 28.877680404000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981323218999989, 28.876555920000044 ], [ -81.981633011999975, 28.876171274000058 ], [ -81.981975036999984, 28.875722001000042 ], [ -81.982110468999963, 28.875548982000055 ], [ -81.982228723999981, 28.875421341000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977984776999961, 28.873274244000072 ], [ -81.978154004999965, 28.872923831000037 ], [ -81.978324571999963, 28.872582071000068 ], [ -81.978356214999963, 28.872551741000052 ], [ -81.978396055999951, 28.872524327000065 ], [ -81.978467530999978, 28.872506119000036 ], [ -81.97861633399998, 28.872516456000028 ], [ -81.979014697999958, 28.872553303000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108492515999956, 28.65629070600005 ], [ -82.108500877999973, 28.655263244000025 ], [ -82.108494271999973, 28.654726610000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108494271999973, 28.654726610000068 ], [ -82.10849402499997, 28.65470659600004 ], [ -82.108511413999963, 28.654459098000075 ], [ -82.108558098999936, 28.654381142000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108494271999973, 28.654726610000068 ], [ -82.10823914599996, 28.654719445000069 ], [ -82.108016616999976, 28.654683689000024 ], [ -82.107900672999961, 28.65468654600005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016837329999987, 28.843243463000078 ], [ -82.016812744999982, 28.843215439000062 ], [ -82.016783841999938, 28.843190818000039 ], [ -82.016751219999946, 28.843170108000038 ], [ -82.016715556999941, 28.843153741000037 ], [ -82.016681363999965, 28.843141906000028 ], [ -82.016645703999984, 28.843134119000069 ], [ -82.016609191999976, 28.843130515000041 ], [ -82.016572458999974, 28.843131159000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016369778999945, 28.843520688000069 ], [ -82.016398989999971, 28.843550823000044 ], [ -82.016433313999983, 28.843576441000039 ], [ -82.016471859999967, 28.843596881000053 ], [ -82.016513629999963, 28.843611611000028 ], [ -82.016513745999987, 28.843611638000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016449187999967, 28.843167497000024 ], [ -82.016444821999983, 28.843169555000031 ], [ -82.016408824999985, 28.843193851000024 ], [ -82.016377760999944, 28.843222953000065 ], [ -82.016352450999989, 28.843256093000036 ], [ -82.016333560999954, 28.843292400000053 ], [ -82.016321584999957, 28.843330920000028 ], [ -82.016321486999971, 28.843331732000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954595601999984, 28.871326415000055 ], [ -81.95466235899994, 28.871293731000037 ], [ -81.954798491999952, 28.871230722000064 ], [ -81.954929843999935, 28.871184525000047 ], [ -81.955044472999987, 28.87115093400007 ], [ -81.955171038999936, 28.871125754000047 ], [ -81.955268946999979, 28.871108971000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960607222999954, 28.959063724000032 ], [ -81.960824791999983, 28.959283741000036 ], [ -81.961033141999962, 28.959502420000035 ], [ -81.961081667999963, 28.959564839000052 ], [ -81.961118989999989, 28.959623969000063 ], [ -81.961132158999987, 28.959671700000058 ], [ -81.961134246999961, 28.95971049700006 ], [ -81.961123378999957, 28.959746931000041 ], [ -81.961100959999953, 28.959779768000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032875607999983, 28.926598222000052 ], [ -82.031605946999946, 28.926597848000029 ], [ -82.031587014999957, 28.926602932000037 ], [ -82.03157835199994, 28.926609710000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031552475999945, 28.926772694000078 ], [ -82.031552475999945, 28.926773178000076 ], [ -82.031552529999942, 28.926950995000027 ], [ -82.031551770999954, 28.927146433000075 ], [ -82.031561401999966, 28.927394437000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012857992999955, 28.880731375000039 ], [ -82.012985093999987, 28.880647456000077 ], [ -82.013135447999957, 28.880539585000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013135447999957, 28.880539585000065 ], [ -82.013246058999982, 28.880474116000073 ], [ -82.013373248999983, 28.880403586000057 ], [ -82.013478732999943, 28.880356228000039 ], [ -82.01362101899997, 28.880306132000044 ], [ -82.013738644999989, 28.880275533000031 ], [ -82.013852457999974, 28.880254445000048 ], [ -82.013965583999948, 28.880241390000037 ], [ -82.014083764999953, 28.880236061000062 ], [ -82.014244217999988, 28.880236178000075 ], [ -82.014422997999986, 28.880236447000073 ], [ -82.014490146999947, 28.880235701000061 ], [ -82.014549888999966, 28.880234575000031 ], [ -82.014577852999935, 28.880232335000073 ], [ -82.014644353999984, 28.880232325000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003786220999984, 28.873861220000038 ], [ -82.00398553499997, 28.873817598000073 ], [ -82.004239333999976, 28.873762240000076 ], [ -82.004425279999964, 28.873729421000064 ], [ -82.004595259999974, 28.873709119000068 ], [ -82.004750642999966, 28.873698429000058 ], [ -82.004921084999978, 28.873695519000023 ], [ -82.00519196099998, 28.873709630000064 ], [ -82.005330408999953, 28.87372547700005 ], [ -82.005463234, 28.873748128000045 ], [ -82.005552575999957, 28.873776451000026 ], [ -82.005625640999938, 28.873810250000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969687846999989, 28.909042121000027 ], [ -81.969620818999942, 28.908992472000079 ], [ -81.969587688, 28.908952366000051 ], [ -81.96953799399995, 28.908888562000072 ], [ -81.969515222999974, 28.908835699000065 ], [ -81.969490390999965, 28.908750029000032 ], [ -81.969457278999982, 28.908646131000069 ], [ -81.969432453999957, 28.908540411000047 ], [ -81.969407627999942, 28.908432869000023 ], [ -81.969386947999965, 28.908318038000061 ], [ -81.969343510999977, 28.908106601000043 ], [ -81.969302150999965, 28.907876936000036 ], [ -81.969262854999954, 28.907670967000058 ], [ -81.969217348999962, 28.907454061000067 ], [ -81.969159410999964, 28.907246265000026 ], [ -81.969097328999965, 28.907045759000027 ], [ -81.969082841999978, 28.907003835000069 ], [ -81.96907456699995, 28.906967380000026 ], [ -81.969066296999983, 28.906916343000034 ], [ -81.969066312999985, 28.906861664000076 ], [ -81.969068395999955, 28.906825211000069 ], [ -81.96907579599997, 28.906767031000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969187375999979, 28.908018374000051 ], [ -81.96920472499994, 28.908112037000024 ], [ -81.969281254999942, 28.908494811000025 ], [ -81.969341253999971, 28.908737237000025 ], [ -81.969390923999981, 28.908886706000033 ], [ -81.969403539999973, 28.908941179000067 ], [ -81.96941160199998, 28.909008828000026 ], [ -81.96940744799997, 28.909047103000034 ], [ -81.969399150999948, 28.909085377000054 ], [ -81.969383738999966, 28.90913768300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968787991999989, 28.906835383000043 ], [ -81.968846388999964, 28.906894399000066 ], [ -81.968894364999983, 28.906945466000025 ], [ -81.968923350999944, 28.906989217000046 ], [ -81.968950263999943, 28.907040258000052 ], [ -81.969059942999934, 28.907388410000067 ], [ -81.96909870099995, 28.907530106000024 ], [ -81.969122001999949, 28.907665467000072 ], [ -81.969187375999979, 28.908018374000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969187375999979, 28.908018374000051 ], [ -81.969175610999969, 28.908500254000046 ], [ -81.96916936599996, 28.908604144000037 ], [ -81.969154799999956, 28.908828326000048 ], [ -81.969150622999962, 28.908943154000042 ], [ -81.969152662999988, 28.909052513000063 ], [ -81.969162992999941, 28.909143648000054 ], [ -81.969177469999977, 28.909220203000075 ], [ -81.969194022999943, 28.909280355000078 ], [ -81.969231276999949, 28.909387899000023 ], [ -81.969256116999986, 28.909449875000064 ], [ -81.969299589999935, 28.909539195000036 ], [ -81.969401033999986, 28.90972877400003 ], [ -81.969545957999969, 28.909987624000053 ], [ -81.969608067999957, 28.910100643000078 ], [ -81.969661891999976, 28.91021183600003 ], [ -81.969703292999952, 28.910312091000037 ], [ -81.969728129999964, 28.910381358000052 ], [ -81.969742611999948, 28.910443331000067 ], [ -81.969755015999965, 28.910527175000027 ], [ -81.969772884999941, 28.910625679000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969801290999953, 28.910781902000053 ], [ -81.969844549999948, 28.910720396000045 ], [ -81.969864779999966, 28.910605574000044 ], [ -81.96988086999994, 28.910478903000069 ], [ -81.96987831399997, 28.910362709000026 ], [ -81.969867992, 28.91024195600005 ], [ -81.969829216999983, 28.910020951000035 ], [ -81.969787848999943, 28.909811337000065 ], [ -81.969759412999963, 28.909651848000067 ], [ -81.969761497999968, 28.909604916000035 ], [ -81.969767725999986, 28.909557527000061 ], [ -81.969776019999983, 28.909528367000064 ], [ -81.969790532, 28.909488272000033 ], [ -81.969819629999961, 28.909439133000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969470617999946, 28.909487526000078 ], [ -81.969517092, 28.909528308000063 ], [ -81.96956057899996, 28.909572062000052 ], [ -81.969583353999951, 28.909606698000061 ], [ -81.969612335999955, 28.909670497000036 ], [ -81.969628893999982, 28.909714245000032 ], [ -81.96965165499995, 28.909801737000066 ], [ -81.969670278999956, 28.909863711000071 ], [ -81.969715794999956, 28.910058746000061 ], [ -81.969742680999957, 28.910206387000073 ], [ -81.969755092999947, 28.91026471400005 ], [ -81.969771636999951, 28.910357673000078 ], [ -81.969781971999964, 28.910434226000064 ], [ -81.96977364299994, 28.910583682000038 ], [ -81.969772884999941, 28.910625679000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969006089999937, 28.915849349000041 ], [ -81.969000302999973, 28.915524260000041 ], [ -81.968994215999942, 28.915094113000066 ], [ -81.968986099999938, 28.914523621000058 ], [ -81.968981996999958, 28.914386921000073 ], [ -81.968969810999965, 28.91357219300005 ], [ -81.968959552999934, 28.913233178000041 ], [ -81.968957546999945, 28.913018105000049 ], [ -81.968965858, 28.912932441000066 ], [ -81.968982478999976, 28.912768407000044 ], [ -81.968994921999979, 28.912719198000048 ], [ -81.969015664999972, 28.912624425000047 ], [ -81.969046769999977, 28.912518718000058 ], [ -81.969084090999957, 28.912403899000026 ], [ -81.969140061999951, 28.912263568000071 ], [ -81.969291375999944, 28.911933704000035 ], [ -81.969426105999958, 28.911645755000052 ], [ -81.969663696999987, 28.911128631000054 ], [ -81.96972380699998, 28.911001058000068 ], [ -81.96974660799998, 28.910950029000048 ], [ -81.969781848999958, 28.910857082000064 ], [ -81.969801290999953, 28.910781902000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969590722999953, 28.918119900000079 ], [ -81.969548310999983, 28.918051669000079 ], [ -81.969530196999983, 28.918010656000035 ], [ -81.969519850999973, 28.917969644000038 ], [ -81.969517275999976, 28.917919520000055 ], [ -81.969517320999955, 28.91776459600004 ], [ -81.969507000999954, 28.917637007000053 ], [ -81.969473395999955, 28.917436508000037 ], [ -81.969431996999958, 28.917320304000043 ], [ -81.969377659999964, 28.91718131500005 ], [ -81.969276727999954, 28.916987634000066 ], [ -81.969209445, 28.916841807000026 ], [ -81.969157700999972, 28.916689149000035 ], [ -81.969137012999965, 28.916598012000065 ], [ -81.969111150999936, 28.916488647000051 ], [ -81.969093058999988, 28.91637244900005 ], [ -81.969080151999947, 28.91623802600003 ], [ -81.969074993999982, 28.916167396000048 ], [ -81.969054994999965, 28.915989626000055 ], [ -81.969006089999937, 28.915849349000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969006089999937, 28.915849349000041 ], [ -81.96896271199995, 28.915987059000031 ], [ -81.968956477999939, 28.916050850000033 ], [ -81.968946086999949, 28.916163852000068 ], [ -81.968943990999946, 28.916246783000076 ], [ -81.968950167999935, 28.916373459000056 ], [ -81.968966708999972, 28.916479176000053 ], [ -81.968982739999944, 28.916557212000043 ], [ -81.968993598999987, 28.91661405800005 ], [ -81.969015068999965, 28.916688222000062 ], [ -81.969037052999965, 28.916776283000047 ], [ -81.969095920999962, 28.916918919000068 ], [ -81.969134348999944, 28.917004138000038 ], [ -81.96919853299994, 28.917120802000056 ], [ -81.969277070999965, 28.917297731000076 ], [ -81.969320668999956, 28.917419745000075 ], [ -81.969341744999952, 28.917511338000054 ], [ -81.96937083399996, 28.917659434000029 ], [ -81.969377281999982, 28.917747720000079 ], [ -81.969380490999981, 28.917836005000026 ], [ -81.969374390999974, 28.917891824000037 ], [ -81.969359876999988, 28.917935564000061 ], [ -81.969335134999938, 28.91797839000003 ], [ -81.969310134999944, 28.918017571000064 ], [ -81.969281122999973, 28.918046727000046 ], [ -81.969245543999989, 28.918075669000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969140916999947, 28.918413806000046 ], [ -81.969162342999937, 28.918505535000065 ], [ -81.969165559999965, 28.918571037000049 ], [ -81.969159071999968, 28.918619450000051 ], [ -81.969136393999975, 28.91868779400005 ], [ -81.969052189999957, 28.91883871400006 ], [ -81.968977706999965, 28.918958308000072 ], [ -81.968903217, 28.919092141000078 ], [ -81.968861113999935, 28.919177569000055 ], [ -81.968828717999941, 28.919262997000033 ], [ -81.968789843999957, 28.919368361000068 ], [ -81.96876068399996, 28.919462334000059 ], [ -81.968737994999969, 28.919564854000043 ], [ -81.968718528999943, 28.91971578600004 ], [ -81.968715259999954, 28.91981830900005 ], [ -81.968718430999957, 28.920043294000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968851142999938, 28.920043325000051 ], [ -81.968851204999964, 28.919835429000045 ], [ -81.968857720999949, 28.919698732000029 ], [ -81.968880418999959, 28.919562038000038 ], [ -81.968909590999942, 28.919431042000042 ], [ -81.968964662999952, 28.919282965000036 ], [ -81.969035919999953, 28.91912919400005 ], [ -81.969175176999954, 28.918890004000048 ], [ -81.969269094999959, 28.918724848000068 ], [ -81.969343572999946, 28.91862234000007 ], [ -81.969379187999948, 28.918588174000035 ], [ -81.969469882999988, 28.918528534000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962975946999961, 28.865433401000075 ], [ -81.962985422999964, 28.866071364000049 ], [ -81.96298531399998, 28.866378229000077 ], [ -81.962982604999979, 28.866894119000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014632591999941, 28.880610149000063 ], [ -82.014642365999975, 28.880575720000024 ], [ -82.014646271999936, 28.880541292000032 ], [ -82.014644353999984, 28.880232325000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014644353999984, 28.880232325000065 ], [ -82.014643770999953, 28.88013843400006 ], [ -82.014646367999944, 28.879818321000073 ], [ -82.014646766999988, 28.879613168000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013942080999982, 28.879616938000026 ], [ -82.013945107999973, 28.878895778000071 ], [ -82.013944540999944, 28.878569743000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013944540999944, 28.878569743000071 ], [ -82.013944410999954, 28.878494063000062 ], [ -82.013940744999957, 28.878446286000042 ], [ -82.013927642999988, 28.878359389000025 ], [ -82.013895276999961, 28.878236325000046 ], [ -82.013859701999934, 28.878144460000044 ], [ -82.013814583999988, 28.87805473700007 ], [ -82.013751852999974, 28.877955136000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014752622999936, 28.874621189000038 ], [ -82.015076492999981, 28.874420647000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00877018999995, 28.878849710000054 ], [ -82.009102523999957, 28.878730414000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009102523999957, 28.878730414000074 ], [ -82.009249386999954, 28.878677695000079 ], [ -82.009814118999941, 28.878473511000038 ], [ -82.010336012999971, 28.878284811000071 ], [ -82.010671295999941, 28.878162264000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009569831999954, 28.874576168000033 ], [ -82.010102518999986, 28.874462214000062 ], [ -82.010314798999957, 28.874417343000061 ], [ -82.010371189999944, 28.874408273000029 ], [ -82.010487873999978, 28.874397654000063 ], [ -82.010611899999958, 28.874396506000039 ], [ -82.010981754999989, 28.874396526000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010981754999989, 28.874396526000055 ], [ -82.011190328999987, 28.874396537000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010631635999971, 28.876536088000023 ], [ -82.010841118999963, 28.876417392000064 ], [ -82.010990466999942, 28.876324318000059 ], [ -82.011130519999938, 28.876229047000038 ], [ -82.011241177999977, 28.876147536000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010631635999971, 28.876536088000023 ], [ -82.010542870999984, 28.876404061000073 ], [ -82.010400908999941, 28.876195647000031 ], [ -82.010266956999942, 28.876018824000028 ], [ -82.010118473999967, 28.875816354000051 ], [ -82.00999511599997, 28.875599229000045 ], [ -82.009900651999942, 28.875398228000051 ], [ -82.009895212999936, 28.875385735000066 ], [ -82.009882835999974, 28.875343909000037 ], [ -82.009881748999987, 28.875337902000069 ], [ -82.009879995999938, 28.875308855000071 ], [ -82.00988042299997, 28.87529444200004 ], [ -82.009882127999958, 28.875284528000066 ], [ -82.009894547999977, 28.875242529000047 ], [ -82.009904713999958, 28.87522050900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010878940999987, 28.876903920000075 ], [ -82.010631635999971, 28.876536088000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008875907999936, 28.87814645900005 ], [ -82.009355221999954, 28.877970453000046 ], [ -82.009944085999962, 28.877757541000051 ], [ -82.010383419999982, 28.877598689000024 ], [ -82.010416855999949, 28.877590352000027 ], [ -82.010522570999967, 28.877581995000071 ], [ -82.010545167999965, 28.877580010000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00155183399994, 28.870581691000041 ], [ -82.001485850999984, 28.870747737000045 ], [ -82.001397281999971, 28.870981064000034 ], [ -82.00131074899997, 28.871226750000062 ], [ -82.001239293999959, 28.871454175000054 ], [ -82.001182883999945, 28.871635531000038 ], [ -82.001181232999954, 28.871644330000038 ], [ -82.001169088999973, 28.87168190400007 ], [ -82.001149305999945, 28.871716873000025 ], [ -82.001122560999988, 28.871748048000029 ], [ -82.001089764999961, 28.871774365000078 ], [ -82.001052031999961, 28.871794930000078 ], [ -82.001010647999976, 28.871809043000042 ], [ -82.000967024999966, 28.871816221000074 ], [ -82.000922644999946, 28.871816221000074 ], [ -82.000911938999934, 28.871815135000077 ], [ -82.000680278999937, 28.871786980000024 ], [ -82.000637058999985, 28.871781423000073 ], [ -82.000594784999976, 28.871768544000076 ], [ -82.00055604299996, 28.871748856000067 ], [ -82.00052223299997, 28.871723068000051 ], [ -82.000494579999952, 28.871692116000077 ], [ -82.000474080999936, 28.871657116000051 ], [ -82.000461476999988, 28.871619335000048 ], [ -82.00045722599998, 28.871580135000045 ], [ -82.000461476999988, 28.871540936000031 ], [ -82.000465579999968, 28.87152543600007 ], [ -82.000517600999956, 28.87135818400003 ], [ -82.000592446999974, 28.871117998000045 ], [ -82.000712523999937, 28.870771594000075 ], [ -82.000892053999962, 28.870309616000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000892053999962, 28.870309616000043 ], [ -82.001027668999939, 28.869946034000066 ], [ -82.001079377999986, 28.869840817000068 ], [ -82.001181745999986, 28.869667564000054 ], [ -82.001329301999988, 28.869429367000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005481557999985, 28.874191157000041 ], [ -82.005524588999947, 28.87404568200003 ], [ -82.005525594999938, 28.874042162000023 ], [ -82.005554568999969, 28.873956483000029 ], [ -82.005591482999989, 28.873873202000027 ], [ -82.005625641999984, 28.873810251000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004475534999983, 28.87240911300006 ], [ -82.004466819999948, 28.872376540000062 ], [ -82.004445956999973, 28.872277140000051 ], [ -82.004433392999942, 28.872176664000051 ], [ -82.004429193999954, 28.872075650000056 ], [ -82.004433383999981, 28.871974636000061 ], [ -82.004445938999936, 28.871874159000072 ], [ -82.004451410999934, 28.871843778000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004451410999934, 28.871843778000027 ], [ -82.004466792999949, 28.87177476100004 ], [ -82.004474214999959, 28.871746798000061 ], [ -82.00456010299996, 28.871438290000071 ], [ -82.004608409999946, 28.871264779000057 ], [ -82.004622975999951, 28.871201982000059 ], [ -82.004624589999935, 28.871191258000067 ], [ -82.004628687999968, 28.87113159200004 ], [ -82.004624584999988, 28.87107192600007 ], [ -82.004612342999962, 28.871013131000041 ], [ -82.004592135999985, 28.870956063000051 ], [ -82.004564262999963, 28.870901556000035 ], [ -82.00452913099997, 28.870850403000077 ], [ -82.004487248999965, 28.870803350000074 ], [ -82.004439227999967, 28.870761084000037 ], [ -82.004410494999945, 28.870740135000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004410494999945, 28.870740135000062 ], [ -82.004385769999942, 28.870724221000046 ], [ -82.004327655999987, 28.870693300000028 ], [ -82.00426572899994, 28.870668769000076 ], [ -82.00420089499994, 28.870650987000033 ], [ -82.004134099999987, 28.870640215000037 ], [ -82.004066315999978, 28.870636608000041 ], [ -82.004062045999945, 28.870636622000063 ], [ -82.003868472999955, 28.870635919000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003868472999955, 28.870635919000051 ], [ -82.00361283999996, 28.870634988000063 ], [ -82.002556928, 28.870631141000047 ], [ -82.001766595999982, 28.870627784000078 ], [ -82.001705130999937, 28.870622456000035 ], [ -82.001636016999953, 28.870609135000052 ], [ -82.001604478, 28.87060030300006 ], [ -82.00155183399994, 28.870581691000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00155183399994, 28.870581691000041 ], [ -82.00115723, 28.870408242000053 ], [ -82.000998178999964, 28.870341278000069 ], [ -82.000892053999962, 28.870309616000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00186525099997, 28.871775885000034 ], [ -82.001904252999964, 28.87178674300003 ], [ -82.001934611999957, 28.871797601000026 ], [ -82.001961867999967, 28.871807352000076 ], [ -82.001983362999965, 28.87181333500007 ], [ -82.002005965999956, 28.871817323000073 ], [ -82.003621688999942, 28.871824507000042 ], [ -82.003748589999987, 28.871824970000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003748589999987, 28.871824970000034 ], [ -82.004249888999937, 28.871826792000036 ], [ -82.004342735999955, 28.871829120000029 ], [ -82.004451410999934, 28.871843778000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012642774999961, 28.88013389200006 ], [ -82.012697001999982, 28.880068252000058 ], [ -82.012757047999969, 28.880015875000026 ], [ -82.012878808999972, 28.879938662000029 ], [ -82.013007338999955, 28.87986840800005 ], [ -82.013160942999946, 28.879797896000071 ], [ -82.013302952999936, 28.879743985000061 ], [ -82.013485427999967, 28.879689132000067 ], [ -82.013658874999976, 28.879651420000073 ], [ -82.013817391999964, 28.879628017000073 ], [ -82.013942080999982, 28.879616938000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013942080999982, 28.879616938000026 ], [ -82.014051783999946, 28.879612270000052 ], [ -82.014225246999956, 28.879611846000046 ], [ -82.014646766999988, 28.879613168000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008601753999983, 28.877342201000033 ], [ -82.008388731999958, 28.877071457000056 ], [ -82.008288471999947, 28.876904927000055 ], [ -82.00819592299996, 28.876710723000031 ], [ -82.00798316199996, 28.876254826000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00798316199996, 28.876254826000036 ], [ -82.007712958999946, 28.875675838000063 ], [ -82.00756632699995, 28.875350098000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957188541999983, 28.865334010000026 ], [ -81.957184561999952, 28.865516753000065 ], [ -81.957172361999937, 28.865637455000069 ], [ -81.957161306999978, 28.865775681000059 ], [ -81.957130689999985, 28.865971518000038 ], [ -81.95709571499998, 28.866153913000062 ], [ -81.957076046999987, 28.866246069000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957193911, 28.866258941000069 ], [ -81.957224444999952, 28.866057951000073 ], [ -81.957272556999953, 28.865752676000056 ], [ -81.957294332999936, 28.865547187000061 ], [ -81.957312637999962, 28.865351620000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005812833999983, 28.881747652000058 ], [ -82.006358316999979, 28.881869289000065 ], [ -82.006506124999987, 28.881902917000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006506124999987, 28.881902917000048 ], [ -82.006616898999937, 28.881927650000023 ], [ -82.006888023999977, 28.881989796000028 ], [ -82.007040476999975, 28.882037546000049 ], [ -82.007110448999981, 28.882062025000039 ], [ -82.007180375999951, 28.882089151000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007180375999951, 28.882089151000059 ], [ -82.007186570999977, 28.882091689000049 ], [ -82.007299948999957, 28.88214232200005 ], [ -82.007409366, 28.882199309000043 ], [ -82.007514361999938, 28.882262410000067 ], [ -82.007614496999963, 28.882331360000023 ], [ -82.007648931999938, 28.882357295000077 ], [ -82.007747672999983, 28.882423180000046 ], [ -82.007782392999957, 28.882444187000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005812833999983, 28.881747652000058 ], [ -82.005831554999986, 28.881624187000057 ], [ -82.005855212999961, 28.881479653000042 ], [ -82.005881344999978, 28.881335451000041 ], [ -82.005895458999987, 28.881262856000035 ], [ -82.005903570999976, 28.881217666000055 ], [ -82.005911054999956, 28.881163033000064 ], [ -82.005916050999986, 28.881108180000069 ], [ -82.00591855, 28.88105319500005 ], [ -82.005918545999975, 28.88099816600004 ], [ -82.005916041999967, 28.880943182000067 ], [ -82.005911039999944, 28.880888329000072 ], [ -82.005908971999986, 28.880871281000054 ], [ -82.00585487799998, 28.880450107000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005635413999983, 28.88232010300004 ], [ -82.00567250499995, 28.88227732200005 ], [ -82.005693942999983, 28.88224795900004 ], [ -82.005713223999976, 28.882217457000024 ], [ -82.005730267, 28.882185941000046 ], [ -82.005745001999969, 28.882153538000068 ], [ -82.005757375999963, 28.882120376000046 ], [ -82.005759127999966, 28.882089404000055 ], [ -82.005774837, 28.882052318000035 ], [ -82.005779855999947, 28.882017694000069 ], [ -82.005779881999956, 28.882017452000071 ], [ -82.00579167099994, 28.881914112000061 ], [ -82.005812833999983, 28.881747652000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005271105999952, 28.882945327000073 ], [ -82.005269965999958, 28.882829733000051 ], [ -82.005269944999952, 28.882825457000024 ], [ -82.005271198999935, 28.882792392000056 ], [ -82.005274959999952, 28.882759475000057 ], [ -82.005281210999954, 28.882726852000076 ], [ -82.005289922999964, 28.882694669000045 ], [ -82.005301057999986, 28.882663071000025 ], [ -82.005314566999971, 28.882632197000078 ], [ -82.005330387999948, 28.882602186000042 ], [ -82.005348449999985, 28.882573173000026 ], [ -82.005368675999989, 28.882545287000028 ], [ -82.00539097099994, 28.882518651000055 ], [ -82.005415238999944, 28.882493385000032 ], [ -82.005441368999982, 28.88246960400005 ], [ -82.005469245999961, 28.882447411000044 ], [ -82.005498743999965, 28.882426905000045 ], [ -82.005512821999957, 28.882418066000071 ], [ -82.005536229999962, 28.882403125000053 ], [ -82.005567008999947, 28.882381116000033 ], [ -82.005596139999966, 28.882357432000049 ], [ -82.005623503999971, 28.882332170000041 ], [ -82.005635413999983, 28.88232010300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005510740999966, 28.884403859000031 ], [ -82.005454703999987, 28.884282239000072 ], [ -82.005426454999963, 28.884215011000038 ], [ -82.005400569999949, 28.884147049000035 ], [ -82.005377075999945, 28.884078419000048 ], [ -82.005355994999945, 28.884009184000035 ], [ -82.005337342999951, 28.883939411000028 ], [ -82.005321144999982, 28.883869165000078 ], [ -82.005307409999944, 28.883798514000034 ], [ -82.00529615499994, 28.883727523000061 ], [ -82.005287389999978, 28.883656262000045 ], [ -82.005281120999939, 28.883584796000036 ], [ -82.005277355999965, 28.883513195000035 ], [ -82.005276198999979, 28.883461625000052 ], [ -82.005271105999952, 28.882945327000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006270108999956, 28.883979357000044 ], [ -82.006134058999976, 28.883787491000078 ], [ -82.006122502999972, 28.883771954000053 ], [ -82.006099854999945, 28.883738532000052 ], [ -82.006079389999968, 28.883704038000076 ], [ -82.006061175999946, 28.883668578000027 ], [ -82.006045271999938, 28.883632270000078 ], [ -82.006031725999947, 28.883595227000058 ], [ -82.006020580999973, 28.88355757000005 ], [ -82.006011876999935, 28.88351941600007 ], [ -82.006005638999966, 28.883480891000033 ], [ -82.006001886999968, 28.883442117000072 ], [ -82.006000632999985, 28.883403219000058 ], [ -82.006001882999954, 28.883364319000066 ], [ -82.006005629999947, 28.883325546000037 ], [ -82.006011863999959, 28.883287021000058 ], [ -82.006020562999936, 28.883248867000077 ], [ -82.006024390999983, 28.88323490700003 ], [ -82.006057345999977, 28.883120004000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009369369999945, 28.881029478000073 ], [ -82.009446148999984, 28.88103966500006 ], [ -82.009531552999988, 28.881059417000074 ], [ -82.009653477999962, 28.881104758000049 ], [ -82.009764835999988, 28.881167733000041 ], [ -82.009831573999975, 28.881218624000041 ], [ -82.00989128599997, 28.881275878000054 ], [ -82.009943194999948, 28.881338750000054 ], [ -82.009975044999976, 28.881386529000054 ], [ -82.010036001999936, 28.881470610000065 ], [ -82.010131396999952, 28.881561975000068 ], [ -82.010395922999976, 28.881770829000061 ], [ -82.010876426999971, 28.882148359000041 ], [ -82.011081360999981, 28.882310834000066 ], [ -82.011128443999951, 28.882337928000027 ], [ -82.011175721999962, 28.882367645000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011175721999962, 28.882367645000045 ], [ -82.011232000999939, 28.882330985000067 ], [ -82.011269483999968, 28.882301160000054 ], [ -82.011420812999972, 28.882150417000048 ], [ -82.011467225999979, 28.882097015000056 ], [ -82.011501341999974, 28.882045861000051 ], [ -82.011521931999937, 28.882004945000062 ], [ -82.011531715999979, 28.881980978000058 ], [ -82.011538973999961, 28.88195541500005 ], [ -82.011569219999956, 28.881862747000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011569219999956, 28.881862747000071 ], [ -82.011604502999944, 28.881763511000031 ], [ -82.011681926999984, 28.881533441000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015753870999959, 28.873805744000038 ], [ -82.015742505999981, 28.87362844200004 ], [ -82.015692439999953, 28.873484860000076 ], [ -82.015675674999954, 28.873419297000055 ], [ -82.015662658999986, 28.873340427000073 ], [ -82.015657966999981, 28.873287718000029 ], [ -82.01565728099996, 28.873154287000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009315558999958, 28.877033958000027 ], [ -82.009247745999971, 28.876914792000036 ], [ -82.009176223999987, 28.876815742000076 ], [ -82.009046728999976, 28.876647296000044 ], [ -82.008916233999969, 28.876475343000038 ], [ -82.008856125999955, 28.876386478000029 ], [ -82.008801932999972, 28.876296828000079 ], [ -82.008758954999962, 28.87621689100007 ], [ -82.008685335999985, 28.876062082000033 ], [ -82.008597842999961, 28.875867248000077 ], [ -82.008592873999987, 28.875833406000027 ], [ -82.008597674999976, 28.875754395000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009457133999945, 28.877318411000033 ], [ -82.009376563999979, 28.877141162000044 ], [ -82.009315558999958, 28.877033958000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008260784999948, 28.87582599600006 ], [ -82.008597674999976, 28.875754395000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008597674999976, 28.875754395000058 ], [ -82.008716366999977, 28.87572825500007 ], [ -82.008802182999943, 28.875708308000071 ], [ -82.008885881999959, 28.875687649000042 ], [ -82.009125031999986, 28.875609037000061 ], [ -82.009150678999958, 28.875604803000044 ], [ -82.009179531999962, 28.875604801000065 ], [ -82.009242047999976, 28.875609030000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017565366999975, 28.88511206000004 ], [ -82.017569748999961, 28.884027309000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017542807999973, 28.885742347000075 ], [ -82.017541085999937, 28.885629068000071 ], [ -82.017564192999941, 28.885402425000052 ], [ -82.017565366999975, 28.88511206000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012891865999961, 28.883657732000074 ], [ -82.013084611999943, 28.88341471800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011833617999969, 28.884843380000063 ], [ -82.012042045999976, 28.884869433000063 ], [ -82.012228619999973, 28.884954446000052 ], [ -82.012480962999973, 28.885096200000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010981754999989, 28.874396526000055 ], [ -82.011026508999976, 28.874333703000048 ], [ -82.011036182999987, 28.874318305000031 ], [ -82.011302112999942, 28.873885507000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011302112999942, 28.873885507000068 ], [ -82.01154696499998, 28.873486705000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011784214999977, 28.875647152000056 ], [ -82.01170101699995, 28.875586493000071 ], [ -82.01164971999998, 28.875537372000053 ], [ -82.011487152999962, 28.875328979000074 ], [ -82.011401240999987, 28.875215892000028 ], [ -82.011369081999987, 28.875161649000063 ], [ -82.011314963999951, 28.875013070000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009990756999969, 28.876833852000061 ], [ -82.010191031999966, 28.876760071000035 ], [ -82.010336199999983, 28.876697095000054 ], [ -82.010426819999964, 28.876649120000025 ], [ -82.010631635999971, 28.876536088000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009315558999958, 28.877033958000027 ], [ -82.009369876999983, 28.877041088000055 ], [ -82.009411553999939, 28.877038264000078 ], [ -82.009456436999983, 28.877026973000056 ], [ -82.009603446999961, 28.876973867000061 ], [ -82.009909239999956, 28.876863301000071 ], [ -82.009990756999969, 28.876833852000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00807462399996, 28.873787553000057 ], [ -82.008802843999945, 28.873786213000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006985929999985, 28.873867593000057 ], [ -82.007071870999937, 28.873821683000074 ], [ -82.007142860999977, 28.873797031000038 ], [ -82.007202677999942, 28.873788524000076 ], [ -82.00807462399996, 28.873787553000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011241177999977, 28.876147536000076 ], [ -82.011129982999989, 28.876002901000049 ], [ -82.010899273999939, 28.875702803000024 ], [ -82.010817686999985, 28.875596677000033 ], [ -82.010777074999964, 28.875542048000057 ], [ -82.010750962999964, 28.875503929000047 ], [ -82.010737974999984, 28.875484530000051 ], [ -82.010722743999963, 28.875459640000031 ], [ -82.010699456999987, 28.875420164000047 ], [ -82.010681504, 28.87538782300004 ], [ -82.010665878999987, 28.875356928000031 ], [ -82.010654888999966, 28.875334972000076 ], [ -82.010630728999956, 28.87528121400004 ], [ -82.010609562999946, 28.875227887000051 ], [ -82.010590776999948, 28.875173708000034 ], [ -82.010584199999983, 28.875151674000051 ], [ -82.010572450999973, 28.875111364000077 ], [ -82.01056050699998, 28.875063092000062 ], [ -82.010551368999984, 28.875019254000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138762441999972, 28.874861704000068 ], [ -82.138855688999968, 28.874820545000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986528389999989, 28.823812536000048 ], [ -81.986638020999976, 28.82383715800006 ], [ -81.986758398999939, 28.823867459000041 ], [ -81.986883077999948, 28.823901547000048 ], [ -81.987119533999987, 28.823969720000036 ], [ -81.987364588999981, 28.824049254000045 ], [ -81.987535022999964, 28.824109312000076 ], [ -81.987684215999934, 28.824163230000067 ], [ -81.987875488999975, 28.824240734000057 ], [ -81.988032330999943, 28.824311497000053 ], [ -81.988227428999949, 28.824401129000023 ], [ -81.988434001999963, 28.824503564000054 ], [ -81.988671177999947, 28.824634975000038 ], [ -81.988964968999937, 28.824813555000048 ], [ -81.989570910999987, 28.825223271000027 ], [ -81.99040778899996, 28.825806447000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962982604999979, 28.866894119000051 ], [ -81.962980038999945, 28.867009749000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972929852999982, 28.919740001000037 ], [ -81.972929773999965, 28.920043749000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008308735999947, 28.928463005000026 ], [ -82.008446078999953, 28.928320841000073 ], [ -82.008494285999973, 28.928254858000059 ], [ -82.008531780999988, 28.928184163000026 ], [ -82.008553202999963, 28.92810875400005 ], [ -82.008569264999949, 28.92800507000004 ], [ -82.008571407999966, 28.927712169000074 ], [ -82.008561015999987, 28.927311186000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037272109999947, 28.801534917000026 ], [ -82.037057831999959, 28.801539008000077 ], [ -82.036848282999983, 28.801547688000028 ], [ -82.036575310999979, 28.801562528000034 ], [ -82.035679762999962, 28.801581749000036 ], [ -82.035607960999982, 28.801578938000034 ], [ -82.035545697999964, 28.801571338000031 ], [ -82.035471333999965, 28.801575928000034 ], [ -82.03543155899996, 28.801580508000029 ], [ -82.035391788999959, 28.801604892000057 ], [ -82.035369316999947, 28.801636888000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035369316999947, 28.801636888000075 ], [ -82.035337830999936, 28.803020293000031 ], [ -82.035323588999972, 28.803261796000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031480660999989, 28.876385882000079 ], [ -82.031469485999935, 28.877522057000078 ], [ -82.031474281999976, 28.878484789000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030360372999951, 28.876389888000062 ], [ -82.031480660999989, 28.876385882000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030046254999945, 28.828856186000053 ], [ -82.029432135999969, 28.828500159000043 ], [ -82.028797994999934, 28.828096247000076 ], [ -82.028314675999979, 28.827770052000062 ], [ -82.027441334999935, 28.82711646000007 ], [ -82.02724864299995, 28.826991852000049 ], [ -82.027016980999974, 28.826824166000051 ], [ -82.026904436999985, 28.826665772000069 ], [ -82.026762715999951, 28.826511546000063 ], [ -82.026629330999981, 28.826386497000044 ], [ -82.026512618999959, 28.826273954000044 ], [ -82.026247296999941, 28.826095201000044 ], [ -82.026070596999944, 28.825939088000041 ], [ -82.025830422999945, 28.825637154000049 ], [ -82.025543768999967, 28.825368869000044 ], [ -82.02541354899995, 28.825312919000055 ], [ -82.025281452999934, 28.825283755000044 ], [ -82.024341333999985, 28.825281436000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963196227999958, 28.86527661100007 ], [ -81.962973036999983, 28.865273783000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.167366767999965, 28.574119876000054 ], [ -82.167364051999982, 28.574096250000025 ], [ -82.167381391999982, 28.574059606000048 ], [ -82.16738802499998, 28.574021793000043 ], [ -82.167380358999935, 28.573564713000053 ], [ -82.167304696999963, 28.573144921000051 ], [ -82.167312223999943, 28.572856468000055 ], [ -82.167422706999957, 28.572397133000038 ], [ -82.167473861999952, 28.572140220000051 ], [ -82.167535940999983, 28.571805264000034 ], [ -82.167587220999962, 28.571626381000044 ], [ -82.167620134999936, 28.571480033000057 ], [ -82.167675059999965, 28.571278387000064 ], [ -82.167689590999942, 28.57115157000004 ], [ -82.167718764999961, 28.57096946300004 ], [ -82.167795591999948, 28.570644241000025 ], [ -82.167832188999967, 28.570497889000023 ], [ -82.167842330999974, 28.570408617000055 ], [ -82.168361017999985, 28.570418149000034 ], [ -82.168366199, 28.57005183800004 ], [ -82.168359665999958, 28.569568528000048 ], [ -82.168364011999984, 28.568678199000033 ], [ -82.167753046999962, 28.568617904000064 ], [ -82.167505240999958, 28.568618210000068 ], [ -82.167297768999958, 28.568613379000055 ], [ -82.167192868999962, 28.568604350000044 ], [ -82.167100643999959, 28.568592254000066 ], [ -82.166985350999937, 28.568572045000053 ], [ -82.166688435999959, 28.568512458000043 ], [ -82.166515879999963, 28.568529927000043 ], [ -82.166329626999982, 28.568545105000055 ], [ -82.166083026999956, 28.568539777000069 ], [ -82.165714323999964, 28.568529247000072 ], [ -82.165166478999936, 28.568534990000046 ], [ -82.164433832999975, 28.568482725000024 ], [ -82.164344427999936, 28.568464469000048 ], [ -82.164263171999949, 28.568441589000031 ], [ -82.164225789999989, 28.568399830000033 ], [ -82.164192784999955, 28.568350130000056 ], [ -82.164187986999934, 28.568290244000025 ], [ -82.164185553999971, 28.568001680000066 ], [ -82.164194685999973, 28.567757028000074 ], [ -82.164188435999961, 28.567366680000077 ], [ -82.164205666999976, 28.566800853000075 ], [ -82.164213819999986, 28.56675038800006 ], [ -82.164227710999967, 28.566720433000057 ], [ -82.164243589999955, 28.566686193000066 ], [ -82.164264724999953, 28.56666498800007 ], [ -82.164298561999942, 28.566645014000073 ], [ -82.164335240999947, 28.566637495000066 ], [ -82.164410907, 28.566645962000052 ], [ -82.164575239999976, 28.566703232000066 ], [ -82.164625077999972, 28.566704764000065 ], [ -82.164919426999973, 28.56669850000003 ], [ -82.165417845999968, 28.56670970600004 ], [ -82.165909590999945, 28.566729776000045 ], [ -82.166161423999938, 28.566724970000053 ], [ -82.166224916999965, 28.566719909000028 ], [ -82.166277097999966, 28.566698666000036 ], [ -82.166292566999971, 28.566665010000065 ], [ -82.166291058999946, 28.566602722000027 ], [ -82.166282489999958, 28.566537950000054 ], [ -82.166279620999944, 28.566509299000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.166105812999945, 28.566390414000068 ], [ -82.166175820999968, 28.566413086000068 ], [ -82.16622741499998, 28.566435782000042 ], [ -82.166267986999969, 28.566474748000076 ], [ -82.166279620999944, 28.566509299000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.166279620999944, 28.566509299000074 ], [ -82.166313182999943, 28.566467456000055 ], [ -82.166361882999979, 28.566431527000077 ], [ -82.166410601999985, 28.566407075000029 ], [ -82.166481444999988, 28.566383451000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976521958999967, 28.898136879000049 ], [ -81.976455475999956, 28.898037032000047 ], [ -81.976410080999983, 28.897976545000063 ], [ -81.976361003999955, 28.897917135000057 ], [ -81.976298425999971, 28.897858804000066 ], [ -81.97624689099996, 28.897817756000052 ], [ -81.976181854999936, 28.897776704000023 ], [ -81.976114364999944, 28.897730252000031 ], [ -81.976061601999959, 28.897695683000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976521958999967, 28.898136879000049 ], [ -81.976775786999951, 28.898057608000045 ], [ -81.977081397999939, 28.897969100000068 ], [ -81.977404188999969, 28.897870875000024 ], [ -81.97779492899997, 28.89776299600004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974713608999934, 28.904332233000048 ], [ -81.974662832999968, 28.904269623000062 ], [ -81.974626031999946, 28.904191855000079 ], [ -81.974614998999982, 28.90413677500004 ], [ -81.974605199999985, 28.904052532000037 ], [ -81.974600307999935, 28.903988811000033 ], [ -81.974586830999954, 28.903885129000059 ], [ -81.974566048999975, 28.90375795500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97444294099995, 28.903776398000048 ], [ -81.974444944999959, 28.903785353000046 ], [ -81.97447512399998, 28.903967188000024 ], [ -81.974484914999948, 28.904081670000039 ], [ -81.974486118999948, 28.904172389000053 ], [ -81.974475274999975, 28.904232484000033 ], [ -81.974449322999988, 28.904291679000039 ], [ -81.974421378999978, 28.904351250000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97033339799998, 28.90207754100004 ], [ -81.97036209099997, 28.902077355000074 ], [ -81.970445497999947, 28.902080123000076 ], [ -81.970532030999948, 28.902085986000031 ], [ -81.970598491999965, 28.902093799000056 ], [ -81.970705090999957, 28.902108370000064 ], [ -81.970794937999983, 28.902131079000071 ], [ -81.970875018999948, 28.902153786000042 ], [ -81.970961547999934, 28.902176150000059 ], [ -81.971080109999946, 28.902198865000059 ], [ -81.971183886999938, 28.902218125000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969737984999938, 28.902111937000029 ], [ -81.969829795999942, 28.902102676000027 ], [ -81.96997102499995, 28.902094113000032 ], [ -81.970084769999971, 28.902086720000057 ], [ -81.970229167999946, 28.902078592000066 ], [ -81.97033339799998, 28.90207754100004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970306274999984, 28.902503054000078 ], [ -81.97031124199998, 28.902304336000043 ], [ -81.97033339799998, 28.90207754100004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970669151999971, 28.903964374000054 ], [ -81.970631116999982, 28.903921164000053 ], [ -81.970568543999946, 28.903842312000052 ], [ -81.970499837999967, 28.903753736000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970499837999967, 28.903753736000056 ], [ -81.970482668999978, 28.903709452000044 ], [ -81.970445879999943, 28.903597125000033 ], [ -81.970400516999973, 28.903428635000068 ], [ -81.970360074999974, 28.903213706000031 ], [ -81.970335578999936, 28.903038741000046 ], [ -81.97032090099998, 28.902861618000031 ], [ -81.970311153999944, 28.902613216000077 ], [ -81.970306274999984, 28.902503054000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969914303999985, 28.904083006000064 ], [ -81.969989177999935, 28.904059263000079 ], [ -81.970054236999943, 28.904030118000037 ], [ -81.970259238999972, 28.903901642000051 ], [ -81.970499837999967, 28.903753736000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970082369999943, 28.904363844000045 ], [ -81.970005080999954, 28.904245026000069 ], [ -81.969947422999951, 28.904151054000067 ], [ -81.969914303999985, 28.904083006000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969914303999985, 28.904083006000064 ], [ -81.969883634999974, 28.90403764000007 ], [ -81.969823525999971, 28.90393070600004 ], [ -81.969779373999984, 28.903821617000062 ], [ -81.969747488999985, 28.903734129000043 ], [ -81.969714385999964, 28.903607762000036 ], [ -81.969684973999961, 28.903455475000044 ], [ -81.969655567999951, 28.903286989000037 ], [ -81.969633531999989, 28.903096904000051 ], [ -81.969615168999951, 28.902933820000044 ], [ -81.969612742999971, 28.902836619000027 ], [ -81.969610694999972, 28.902549538000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969281444999979, 28.902565466000055 ], [ -81.969610694999972, 28.902549538000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969610694999972, 28.902549538000073 ], [ -81.969665602999953, 28.902542872000026 ], [ -81.969945437999968, 28.902523495000025 ], [ -81.970306274999984, 28.902503054000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969701317999977, 28.90141482100006 ], [ -81.969876450999948, 28.901412108000045 ], [ -81.970168101999946, 28.90141404600007 ], [ -81.970452426999941, 28.901425069000027 ], [ -81.970696041999986, 28.90144600900004 ], [ -81.970891887999983, 28.901468531000035 ], [ -81.971036642999934, 28.901492914000073 ], [ -81.971160107999935, 28.901515421000056 ], [ -81.971279317999972, 28.901534180000056 ], [ -81.971398527999952, 28.901549192000061 ], [ -81.971502839999971, 28.90155108700003 ], [ -81.971626052999966, 28.901556803000062 ], [ -81.971743396999955, 28.901553011000033 ], [ -81.971815782999954, 28.901536167000074 ], [ -81.971866880999983, 28.901513698000031 ], [ -81.971911596999973, 28.901474367000048 ], [ -81.971935023999947, 28.901435032000052 ], [ -81.971954197999935, 28.901384457000063 ], [ -81.971958373999939, 28.901335137000046 ], [ -81.971964970999977, 28.900903017000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970752261999962, 28.900101773000074 ], [ -81.970945909999955, 28.900143573000037 ], [ -81.971057976999987, 28.900163462000023 ], [ -81.971227988999942, 28.900183115000061 ], [ -81.971383172999936, 28.900190063000025 ], [ -81.971567823999976, 28.90019183000004 ], [ -81.971770159999949, 28.900181501000077 ], [ -81.972076609999988, 28.900164279000023 ], [ -81.972405067999944, 28.900144830000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969799701999989, 28.900727963000065 ], [ -81.969820994999964, 28.900664608000056 ], [ -81.969848833999947, 28.900586854000039 ], [ -81.969873400999973, 28.90051629900006 ], [ -81.969901240999945, 28.900439987000027 ], [ -81.969930721999958, 28.900355034000029 ], [ -81.969952015999979, 28.900278718000038 ], [ -81.969974948999948, 28.900200963000032 ], [ -81.970002792999935, 28.900108809000074 ], [ -81.970034135999981, 28.899993988000062 ], [ -81.970060928999942, 28.899879516000055 ], [ -81.970071605999976, 28.899815065000041 ], [ -81.970084713999938, 28.899753147000069 ], [ -81.970101093999972, 28.899699871000053 ], [ -81.970133835999945, 28.899650918000077 ], [ -81.970181388999947, 28.899613792000025 ], [ -81.970232485999986, 28.899589451000054 ], [ -81.970297755999979, 28.899577044000068 ], [ -81.970396989999983, 28.899560565000058 ], [ -81.970546031999959, 28.899540315000024 ], [ -81.970656592999944, 28.899526931000025 ], [ -81.970768961999966, 28.899516509000023 ], [ -81.970847335999963, 28.899512835000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970847335999963, 28.899512835000053 ], [ -81.970941398999969, 28.899503433000064 ], [ -81.97106523399998, 28.899493329000052 ], [ -81.971171311999967, 28.89948662200004 ], [ -81.971258593999949, 28.899481020000053 ], [ -81.971396966999976, 28.899475430000052 ], [ -81.971518310999954, 28.899467963000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971518310999954, 28.899467963000063 ], [ -81.971524710999972, 28.899413638000055 ], [ -81.971542663999969, 28.899338730000068 ], [ -81.971554203999972, 28.899278227000025 ], [ -81.971569461999934, 28.899194349000027 ], [ -81.971588661999988, 28.899097061000077 ], [ -81.971605715999942, 28.899009018000072 ], [ -81.971629161999942, 28.898904117000029 ], [ -81.97165356499994, 28.898784584000055 ], [ -81.971680318999972, 28.898653104000061 ], [ -81.971714428999974, 28.898475146000067 ], [ -81.971744268999942, 28.898334653000063 ], [ -81.971763450999958, 28.898246611000047 ], [ -81.97177837299995, 28.898175428000059 ], [ -81.971798883999952, 28.898088808000068 ], [ -81.971818048999978, 28.898001492000049 ], [ -81.971837021999988, 28.897904206000078 ], [ -81.971863626999948, 28.897791416000075 ], [ -81.97188297699995, 28.897709295000027 ], [ -81.971893461999969, 28.897665911000047 ], [ -81.971908378999956, 28.897609714000055 ], [ -81.971933935999971, 28.897566633000054 ], [ -81.971970134999935, 28.897529174000056 ], [ -81.972008459999984, 28.89750482900007 ], [ -81.972058634999939, 28.897490688000062 ], [ -81.972119772999974, 28.897484169000052 ], [ -81.972161889999938, 28.897487033000061 ], [ -81.97220856499996, 28.897491757000068 ], [ -81.972266611999942, 28.89750577500007 ], [ -81.972338410999953, 28.897519884000076 ], [ -81.972402270999964, 28.897533010000075 ], [ -81.972523600999978, 28.897561135000046 ], [ -81.972593845999938, 28.897579882000059 ], [ -81.972640675999969, 28.897589258000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976061601999959, 28.897695683000052 ], [ -81.975994109999988, 28.897656791000031 ], [ -81.975927096999953, 28.897615919000032 ], [ -81.975874742999963, 28.897578469000052 ], [ -81.975834591999956, 28.897544443000072 ], [ -81.975792875999957, 28.897499074000052 ], [ -81.975730778999946, 28.897425804000079 ], [ -81.975668302999964, 28.897347345000071 ], [ -81.975623588999952, 28.897281675000045 ], [ -81.97555641799994, 28.897192969000059 ], [ -81.975553488999935, 28.897189187000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97779492899997, 28.89776299600004 ], [ -81.97776797299997, 28.89738277500004 ], [ -81.977760622999938, 28.897321214000044 ], [ -81.977743449999934, 28.89727909100003 ], [ -81.977716457999975, 28.897244527000055 ], [ -81.977672283999937, 28.897211040000059 ], [ -81.977624725999988, 28.897188859000039 ], [ -81.977553247999936, 28.897174299000028 ], [ -81.977485746999946, 28.897177529000032 ], [ -81.976888310999982, 28.897348935000025 ], [ -81.976394846999938, 28.897499242000038 ], [ -81.976280293999935, 28.897540981000077 ], [ -81.97620692299995, 28.897577089000038 ], [ -81.976149641999939, 28.897613078000063 ], [ -81.976105793999977, 28.897650330000033 ], [ -81.976061601999959, 28.897695683000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973774918999936, 28.892611516000045 ], [ -81.973765666999952, 28.892538563000073 ], [ -81.973756981999941, 28.892360952000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973952608, 28.893229937000058 ], [ -81.973889334999967, 28.893101138000077 ], [ -81.973846820999938, 28.89298449000006 ], [ -81.973786336999979, 28.892751199000031 ], [ -81.973774918999936, 28.892611516000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001857031999975, 28.946716533000028 ], [ -82.001811845999953, 28.946826102000045 ], [ -82.001781316999939, 28.946919558000047 ], [ -82.001766662999955, 28.946999049000055 ], [ -82.001763597999968, 28.947069944000077 ], [ -82.001768985999945, 28.947174127000039 ], [ -82.001771632999976, 28.947291299000028 ], [ -82.001773119999939, 28.947385359000066 ], [ -82.001771635999944, 28.947454597000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001771635999944, 28.947454597000046 ], [ -82.001770746999966, 28.947538006000059 ], [ -82.001768668999944, 28.947654474000046 ], [ -82.001761245999944, 28.947798177000038 ], [ -82.001749365999956, 28.947960168000066 ], [ -82.001728574999959, 28.94810648400005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001771635999944, 28.947454597000046 ], [ -82.001970656999958, 28.947454594000078 ], [ -82.002022485999987, 28.947447453000052 ], [ -82.002199087999941, 28.947412794000059 ], [ -82.002501596999934, 28.947348846000068 ], [ -82.002843229999939, 28.94727799900005 ], [ -82.003203643999939, 28.947220510000079 ], [ -82.00352841299997, 28.947169989000031 ], [ -82.003867044999936, 28.947128176000035 ], [ -82.004013586999974, 28.947112494000066 ], [ -82.004094778999956, 28.947107266000046 ], [ -82.004177951999964, 28.947112489000062 ], [ -82.004314594999983, 28.947142097000039 ], [ -82.004508847999944, 28.947204547000069 ], [ -82.004873213999986, 28.947324030000061 ], [ -82.005381120999971, 28.947504493000054 ], [ -82.005729530999986, 28.947635809000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001857031999975, 28.946716533000028 ], [ -82.001981599999965, 28.946759500000041 ], [ -82.002047875999949, 28.946772661000068 ], [ -82.002095402999942, 28.946772660000079 ], [ -82.002187486999958, 28.946756983000057 ], [ -82.002323549999971, 28.946727268000075 ], [ -82.00276563999995, 28.946644547000062 ], [ -82.003135678999968, 28.946583309000061 ], [ -82.003526477999969, 28.946530664000079 ], [ -82.003954200999942, 28.946476818000065 ], [ -82.004364577, 28.946436928000026 ], [ -82.004583640999954, 28.946427638000046 ], [ -82.004652467999961, 28.946433952000064 ], [ -82.004724521999947, 28.946450062000054 ], [ -82.004884893999986, 28.946511529000077 ], [ -82.005001751999941, 28.946568214000024 ], [ -82.005377906999968, 28.946741146000079 ], [ -82.005540336999957, 28.946805590000054 ], [ -82.005681126999946, 28.946855062000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002055501999962, 28.946090110000057 ], [ -82.002169834999961, 28.946101589000079 ], [ -82.002207459999966, 28.946096860000068 ], [ -82.002482150999981, 28.946047491000058 ], [ -82.00277363899994, 28.945994412000061 ], [ -82.003060310999956, 28.945947125000032 ], [ -82.003355232, 28.945906606000051 ], [ -82.003649825999958, 28.945869408000078 ], [ -82.003766344999974, 28.945852682000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003766344999974, 28.945852682000066 ], [ -82.003692859999944, 28.94544133200003 ], [ -82.003691882999988, 28.945435143000054 ], [ -82.003691296999989, 28.945431361000033 ], [ -82.003690905999974, 28.945427924000057 ], [ -82.00369051399997, 28.945424142000036 ], [ -82.003690318999986, 28.945420704000071 ], [ -82.003690122999956, 28.945416923000039 ], [ -82.003689927999972, 28.945413485000074 ], [ -82.003689927999972, 28.945409703000053 ], [ -82.003689927999972, 28.945406265000031 ], [ -82.003690121999966, 28.945402484000056 ], [ -82.003690121999966, 28.945399046000034 ], [ -82.003690512999981, 28.945395608000069 ], [ -82.003690708999954, 28.945391827000037 ], [ -82.003691099999969, 28.945388390000062 ], [ -82.003691489999937, 28.94538460800004 ], [ -82.003692075999936, 28.945381170000076 ], [ -82.003692662999981, 28.945377732000054 ], [ -82.003693443999964, 28.945373951000079 ], [ -82.003694029999963, 28.945370513000057 ], [ -82.003694811999935, 28.945367075000036 ], [ -82.003695788999948, 28.945363293000071 ], [ -82.003696765999962, 28.945359855000049 ], [ -82.003697742999975, 28.945356418000074 ], [ -82.003698719999988, 28.945352980000052 ], [ -82.00369989099994, 28.945349542000031 ], [ -82.003701064999973, 28.945346104000066 ], [ -82.003702432999944, 28.945342667000034 ], [ -82.003703798999936, 28.945339229000069 ], [ -82.003705166999964, 28.945335791000048 ], [ -82.003706731999955, 28.945332697000026 ], [ -82.003708294999967, 28.945329259000061 ], [ -82.003709857999979, 28.945325822000029 ], [ -82.003711614999986, 28.945322728000065 ], [ -82.003713374999961, 28.945319290000043 ], [ -82.003715131999968, 28.945316196000078 ], [ -82.003716891999943, 28.945312758000057 ], [ -82.00371884599997, 28.945309663000046 ], [ -82.003720994999981, 28.945306570000071 ], [ -82.00372294899995, 28.945303476000049 ], [ -82.003725098999951, 28.945300382000028 ], [ -82.003727247999961, 28.945297288000063 ], [ -82.003729592999946, 28.945294537000052 ], [ -82.003731937999987, 28.945291443000031 ], [ -82.003734282999972, 28.945288350000055 ], [ -82.003739167999981, 28.945282849000023 ], [ -82.003753336999978, 28.945265148000033 ], [ -82.003767816999982, 28.945250451000049 ], [ -82.003794550999942, 28.945230855000034 ], [ -82.003830192999942, 28.945214197000041 ], [ -82.003885889999935, 28.945198518000041 ], [ -82.003990594999948, 28.945188718000054 ], [ -82.004249822999952, 28.945165685000063 ], [ -82.004439927999954, 28.945148260000053 ], [ -82.004649837999978, 28.945134318000044 ], [ -82.004778554999973, 28.945134314000029 ], [ -82.005000344999985, 28.945148241000027 ], [ -82.005283524999982, 28.945176099000037 ], [ -82.005891462999955, 28.945243518000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972640675999969, 28.897589258000039 ], [ -81.972723692999978, 28.897604261000026 ], [ -81.973145483999986, 28.897691873000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973145483999986, 28.897691873000042 ], [ -81.973157777999972, 28.897629752000057 ], [ -81.973173138999982, 28.897567632000062 ], [ -81.973206929999947, 28.897458247000031 ], [ -81.973256073999949, 28.897321857000065 ], [ -81.973306745999935, 28.897209775000078 ], [ -81.973354343999972, 28.897112548000052 ], [ -81.973375833999967, 28.897049887000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973375833999967, 28.897049887000037 ], [ -81.97340195299995, 28.896981559000039 ], [ -81.973428072, 28.896861368000032 ], [ -81.97344345099998, 28.896733074000053 ], [ -81.973448083999983, 28.89661693100004 ], [ -81.973435842999947, 28.896475125000052 ], [ -81.973403658999985, 28.896306307000032 ], [ -81.973365329999979, 28.896160444000031 ], [ -81.973331609999946, 28.895998377000069 ], [ -81.973319364999952, 28.895874128000059 ], [ -81.973314792999986, 28.895744480000076 ], [ -81.973317895999969, 28.895618883000054 ], [ -81.973331736999967, 28.895500041000048 ], [ -81.973354790999963, 28.895364996000069 ], [ -81.973379370999965, 28.89526371200003 ], [ -81.973405482999965, 28.895169182000075 ], [ -81.973442339999963, 28.895070602000033 ], [ -81.973471515999961, 28.894997681000063 ], [ -81.973505985999964, 28.894906824000032 ], [ -81.973568198999942, 28.894777237000028 ], [ -81.973620646999962, 28.894640852000066 ], [ -81.973654735999958, 28.894524713000067 ], [ -81.973674221999943, 28.894448065000063 ], [ -81.973694203999969, 28.894325173000027 ], [ -81.973697294999965, 28.894234690000076 ], [ -81.973697311999956, 28.894169865000038 ], [ -81.973689659999934, 28.894088834000058 ], [ -81.973662074999936, 28.893941623000046 ], [ -81.973645774999966, 28.893849921000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973618618999978, 28.893714653000075 ], [ -81.973599191999938, 28.893644712000025 ], [ -81.97348687799996, 28.893310769000038 ], [ -81.973372019999942, 28.892954816000042 ], [ -81.973319401999959, 28.892725876000043 ], [ -81.973301017999972, 28.892605227000047 ], [ -81.973296957999935, 28.89247737900007 ], [ -81.973299047999944, 28.892308115000048 ], [ -81.973317508999969, 28.892129853000029 ], [ -81.973339092999936, 28.891988110000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973339092999936, 28.891988110000057 ], [ -81.97351914099994, 28.891997579000076 ], [ -81.97361492999994, 28.891995725000072 ], [ -81.973708592999969, 28.891980757000056 ], [ -81.973800131999951, 28.891952674000038 ], [ -81.973921474999941, 28.891913359000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979485352999973, 28.875634326000068 ], [ -81.979682976999982, 28.875663921000069 ], [ -81.979853712999954, 28.875697936000051 ], [ -81.98001353899997, 28.875747384000078 ], [ -81.980166696999959, 28.875804223000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980166696999959, 28.875804223000046 ], [ -81.980491574999974, 28.875053831000059 ], [ -81.980683513999963, 28.874624557000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980166696999959, 28.875804223000046 ], [ -81.980416030999947, 28.875927020000063 ], [ -81.980532855999968, 28.875991547000069 ], [ -81.980635130999985, 28.876058188000059 ], [ -81.980753834999973, 28.876144337000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980753834999973, 28.876144337000028 ], [ -81.980927639999948, 28.876268909000032 ], [ -81.981284165999966, 28.876527726000063 ], [ -81.981323218999989, 28.876555920000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978647440999964, 28.876208849000079 ], [ -81.97904680399995, 28.876236442000049 ], [ -81.979298430999961, 28.876256739000041 ], [ -81.979445724999948, 28.876271617000043 ], [ -81.979562329999965, 28.87629189300003 ], [ -81.979675866999969, 28.876318919000028 ], [ -81.979780194999989, 28.876351348000071 ], [ -81.979870714999947, 28.876385123000034 ], [ -81.980021065999949, 28.876455372000066 ], [ -81.980177551999986, 28.876545880000037 ], [ -81.980307951999976, 28.876645836000023 ], [ -81.980412269999988, 28.876740387000041 ], [ -81.980496640999945, 28.876833585000043 ], [ -81.980597890999945, 28.876930835000053 ], [ -81.980683511999985, 28.877001152000048 ], [ -81.980786857999988, 28.877086022000071 ], [ -81.980916990999958, 28.877168571000027 ], [ -81.981039654999961, 28.877245486000049 ], [ -81.981145585999968, 28.87729960300004 ], [ -81.98126715799998, 28.877354805000039 ], [ -81.981410690999951, 28.877402871000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97976287299997, 28.872492039000065 ], [ -81.979753641999935, 28.872616285000049 ], [ -81.97973826499998, 28.872799952000037 ], [ -81.979698330999952, 28.873013327000024 ], [ -81.979644596999947, 28.87317943100004 ], [ -81.979583187999935, 28.873376596000071 ], [ -81.979546335999942, 28.873523796000029 ], [ -81.979541722999954, 28.873577816000079 ], [ -81.979547848999971, 28.873629136000034 ], [ -81.979569073999983, 28.873674154000071 ], [ -81.979610853999986, 28.873721259000035 ], [ -81.979647557999954, 28.873742595000067 ], [ -81.979696650999983, 28.873762859000067 ], [ -81.980078318999972, 28.87385441400005 ], [ -81.980181182999956, 28.87387880700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97976287299997, 28.872492039000065 ], [ -81.979844387999947, 28.872485351000023 ], [ -81.979956194999943, 28.872473162000063 ], [ -81.980189369999948, 28.872433560000047 ], [ -81.980448717999934, 28.872374646000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980448717999934, 28.872374646000026 ], [ -81.980731423999941, 28.872294337000028 ], [ -81.980956953999964, 28.872214270000029 ], [ -81.981119178999961, 28.87215160900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980181182999956, 28.87387880700004 ], [ -81.980328850999967, 28.87339696500004 ], [ -81.980407918999958, 28.873095355000032 ], [ -81.980445839999959, 28.872894938000059 ], [ -81.980465522999964, 28.872756843000047 ], [ -81.980471685999987, 28.872624494000036 ], [ -81.980467104999946, 28.872505649000061 ], [ -81.980460979999975, 28.872436771000025 ], [ -81.980448717999934, 28.872374646000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980877486999987, 28.874066964000065 ], [ -81.981026922999945, 28.873578034000047 ], [ -81.981120576999956, 28.873236367000061 ], [ -81.981166603999952, 28.872992329000056 ], [ -81.981190853999976, 28.872801190000075 ], [ -81.981204555999966, 28.87261589600007 ], [ -81.981197747999943, 28.87246428800006 ], [ -81.981159896999941, 28.872285174000069 ], [ -81.981119178999961, 28.87215160900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976836420999973, 28.892439277000051 ], [ -81.976839702999939, 28.892398958000058 ], [ -81.976865936999957, 28.892151282000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976729199999966, 28.89349481000005 ], [ -81.976700488999938, 28.893487585000059 ], [ -81.976457657999958, 28.893435504000024 ], [ -81.976268883999978, 28.893404617000044 ], [ -81.97603116199997, 28.893376576000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97603116199997, 28.893376576000037 ], [ -81.975946074999968, 28.893372242000055 ], [ -81.975774266999963, 28.893365011000071 ], [ -81.975570399999981, 28.893361771000059 ], [ -81.975314471, 28.893373567000026 ], [ -81.975033020999945, 28.893403756000055 ], [ -81.974788279999984, 28.893454190000057 ], [ -81.974575210999944, 28.893513484000039 ], [ -81.974381021999989, 28.893568034000054 ], [ -81.974162556999943, 28.89363682000004 ], [ -81.973982079999985, 28.893710327000065 ], [ -81.973838894999972, 28.893774415000053 ], [ -81.973645774999966, 28.893849921000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973952608, 28.893229937000058 ], [ -81.973984838999968, 28.893216880000068 ], [ -81.974346909999952, 28.893099251000024 ], [ -81.974516040999958, 28.893058059000055 ], [ -81.974681312999962, 28.89302353000005 ], [ -81.974910401999978, 28.892978932000062 ], [ -81.975098580999941, 28.892954488000044 ], [ -81.975407841999981, 28.892932944000052 ], [ -81.975638558999947, 28.892927225000051 ], [ -81.975882034999984, 28.892930178000029 ], [ -81.976073803999952, 28.89294458300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97603116199997, 28.893376576000037 ], [ -81.976055759999952, 28.893141861000061 ], [ -81.976073803999952, 28.89294458300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973774918999936, 28.892611516000045 ], [ -81.973945103999938, 28.892559709000068 ], [ -81.974043286999972, 28.892530928000042 ], [ -81.97422213699997, 28.892481239000062 ], [ -81.974477235999984, 28.892423877000056 ], [ -81.974635649999982, 28.892392800000039 ], [ -81.974835283999937, 28.892359718000023 ], [ -81.975038186999939, 28.89233527600004 ], [ -81.97522308799995, 28.892316590000064 ], [ -81.975424351999948, 28.892307986000048 ], [ -81.975781059999974, 28.892302292000068 ], [ -81.975990498999977, 28.89231096900005 ], [ -81.976116489999981, 28.892321071000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976116489999981, 28.892321071000026 ], [ -81.976457374999939, 28.892361670000071 ], [ -81.976463235999972, 28.89236167100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976073803999952, 28.89294458300003 ], [ -81.976118085999985, 28.892499631000078 ], [ -81.97612464499997, 28.892431952000038 ], [ -81.976116489999981, 28.892321071000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976729199999966, 28.89349481000005 ], [ -81.976775737999958, 28.893072867000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976775737999958, 28.893072867000058 ], [ -81.976789092999979, 28.892925180000077 ], [ -81.976836420999973, 28.892439277000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978699800999948, 28.894062465000047 ], [ -81.978729261999945, 28.894017830000053 ], [ -81.978873294999971, 28.89382921300006 ], [ -81.978906040999959, 28.89373273800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976775737999958, 28.893072867000058 ], [ -81.976901727999973, 28.893093048000026 ], [ -81.977243686999941, 28.893196787000079 ], [ -81.977539829999955, 28.893312036000054 ], [ -81.977770523999936, 28.893409994000024 ], [ -81.978029033999974, 28.893519477000041 ], [ -81.978320271999962, 28.893617445000075 ], [ -81.978498617999946, 28.893666432000032 ], [ -81.978655694999986, 28.893702458000064 ], [ -81.978776773999982, 28.893731277000029 ], [ -81.978906040999959, 28.89373273800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969094716999962, 28.886254938000036 ], [ -81.969134977999943, 28.886333534000073 ], [ -81.969194283999968, 28.886488332000056 ], [ -81.969242315999963, 28.886606671000038 ], [ -81.969278083999939, 28.88673368700006 ], [ -81.969311672999936, 28.886896989000036 ], [ -81.969327534999934, 28.887034051000057 ], [ -81.969355276999977, 28.887283178000075 ], [ -81.969368304999989, 28.887491981000039 ], [ -81.969391123999969, 28.887788627000077 ], [ -81.969403886999942, 28.888232483000024 ], [ -81.969400735999955, 28.888488469000038 ], [ -81.969395726999949, 28.888832628000046 ], [ -81.969384207999951, 28.88905582700005 ], [ -81.969357921999972, 28.889418701000068 ], [ -81.96931688899997, 28.889857893000055 ], [ -81.969244751999952, 28.890337397000053 ], [ -81.969162213999937, 28.890828964000036 ], [ -81.969124359999967, 28.891014296000037 ], [ -81.968982654999934, 28.891588227000057 ], [ -81.968897296999955, 28.891902923000032 ], [ -81.968827644999976, 28.892191620000062 ], [ -81.968789127999969, 28.892468423000025 ], [ -81.968769997999971, 28.892660723000063 ], [ -81.968745579999961, 28.892950751000058 ], [ -81.968745718999969, 28.893167001000052 ], [ -81.968749883999976, 28.893349795000063 ], [ -81.968780751999986, 28.893680714000027 ], [ -81.968811640999945, 28.893937664000077 ], [ -81.968835919999947, 28.894112858000028 ], [ -81.968851363999988, 28.894243280000069 ], [ -81.968844708999939, 28.894309461000034 ], [ -81.968818928999951, 28.894367253000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969114338999987, 28.894302824000079 ], [ -81.969076970999936, 28.894260852000059 ], [ -81.969046021999986, 28.894208287000026 ], [ -81.969026129999975, 28.894153780000067 ], [ -81.969000029999961, 28.89407568300004 ], [ -81.968980685999952, 28.894012384000064 ], [ -81.968955817999984, 28.893915002000028 ], [ -81.968936497999948, 28.893766500000027 ], [ -81.968903385999965, 28.893493840000076 ], [ -81.968892380999989, 28.893294217000062 ], [ -81.968892436999965, 28.893104335000032 ], [ -81.968889751999939, 28.892829247000066 ], [ -81.968928589999962, 28.892456793000065 ], [ -81.968978465999953, 28.892171981000047 ], [ -81.969094783999935, 28.89170703700006 ], [ -81.969194475999984, 28.891334597000025 ], [ -81.969336289999944, 28.890647017000049 ], [ -81.969421529999977, 28.890117117000045 ], [ -81.969480068999985, 28.889669007000066 ], [ -81.96951506399995, 28.88919697700004 ], [ -81.969536459999972, 28.888767861000076 ], [ -81.969539861999976, 28.888324341000043 ], [ -81.969536666999943, 28.888057940000067 ], [ -81.969533466999962, 28.887810259000048 ], [ -81.969502097999964, 28.887400046000039 ], [ -81.969484374, 28.887127391000035 ], [ -81.969442111999967, 28.886881438000046 ], [ -81.969394727999941, 28.88665966700006 ], [ -81.969335009999952, 28.886469231000035 ], [ -81.969263938999973, 28.886301076000052 ], [ -81.969222513999966, 28.886214555000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967876263999983, 28.881633703000034 ], [ -81.968327792999958, 28.881749011000068 ], [ -81.968570120999971, 28.881815127000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968758387999969, 28.881201738000073 ], [ -81.968752914999982, 28.881219270000031 ], [ -81.968610792999982, 28.881690558000059 ], [ -81.968570120999971, 28.881815127000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971419262999973, 28.882295283000076 ], [ -81.971419240999978, 28.882375203000038 ], [ -81.971422465999979, 28.882473280000056 ], [ -81.971433978999983, 28.882667137000055 ], [ -81.971447454999975, 28.882750300000055 ], [ -81.971475646999977, 28.882861545000026 ], [ -81.971487908999961, 28.88289394800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969461011999954, 28.881376196000076 ], [ -81.969543313999964, 28.881399550000026 ], [ -81.969856196999956, 28.881473060000076 ], [ -81.970061106999935, 28.881510906000074 ], [ -81.970293011999956, 28.881550917000027 ], [ -81.970582588999946, 28.881590942000059 ], [ -81.970807137999941, 28.881613670000036 ], [ -81.971051319999958, 28.88163316300006 ], [ -81.971360539999978, 28.881651589000057 ], [ -81.971440296999958, 28.881662405000043 ], [ -81.971539681999957, 28.881684027000063 ], [ -81.971598576999952, 28.881705640000064 ], [ -81.971670963999941, 28.881744535000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971670963999941, 28.881744535000053 ], [ -81.971599760999936, 28.881860080000024 ], [ -81.971532242999956, 28.881968067000059 ], [ -81.971465944999977, 28.882095492000076 ], [ -81.971443839999949, 28.882159208000076 ], [ -81.971427869999957, 28.882226165000077 ], [ -81.971419262999973, 28.882295283000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971546306999983, 28.884393634000048 ], [ -81.971647579999967, 28.884427493000032 ], [ -81.971710954999935, 28.884445120000066 ], [ -81.971797865999974, 28.884463407000055 ], [ -81.971944447999988, 28.88448627300005 ], [ -81.972136130999957, 28.88450550500005 ], [ -81.972286314999963, 28.884515198000031 ], [ -81.972429881999972, 28.884528188000047 ], [ -81.972558724999942, 28.884543334000057 ], [ -81.972726663999936, 28.884574509000061 ], [ -81.972855669999944, 28.884603874000049 ], [ -81.972934198999951, 28.884625490000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971546306999983, 28.884393634000048 ], [ -81.971514388999935, 28.884444388000077 ], [ -81.971489835999989, 28.884482182000056 ], [ -81.971451784999942, 28.884526454000024 ], [ -81.971412938999947, 28.884568597000055 ], [ -81.971366910999961, 28.884611247000066 ], [ -81.971304314999941, 28.884657673000049 ], [ -81.971214717999942, 28.884718134000025 ], [ -81.971090758999935, 28.884795868000026 ], [ -81.970966799999985, 28.884872521000034 ], [ -81.970914025999946, 28.884902750000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971487908999961, 28.88289394800006 ], [ -81.971550458999957, 28.883006282000053 ], [ -81.971608102999937, 28.883114294000052 ], [ -81.971639988999982, 28.883186661000025 ], [ -81.971652247999941, 28.883227704000035 ], [ -81.971664503999989, 28.883280627000033 ], [ -81.971675528999981, 28.883356230000061 ], [ -81.971680401999947, 28.883485830000041 ], [ -81.971671771999979, 28.883631629000035 ], [ -81.971664368999939, 28.88377742800003 ], [ -81.971653182999944, 28.883961656000054 ], [ -81.97164377699994, 28.884102587000029 ], [ -81.971619982999982, 28.884212209000054 ], [ -81.971601558999964, 28.884271606000027 ], [ -81.971580685999982, 28.884319121000033 ], [ -81.971546306999983, 28.884393634000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973795518999964, 28.880199234000031 ], [ -81.973864309999954, 28.879895408000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973864309999954, 28.879895408000039 ], [ -81.97389051, 28.879801812000039 ], [ -81.973993690999976, 28.879369831000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973993690999976, 28.879369831000076 ], [ -81.974093223999944, 28.878942838000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973993690999976, 28.879369831000076 ], [ -81.973868575999973, 28.879340925000065 ], [ -81.973713504999978, 28.879320822000068 ], [ -81.973610864999955, 28.879316475000053 ], [ -81.973519242999942, 28.879323658000033 ], [ -81.973391625999966, 28.879343793000032 ], [ -81.973061128999973, 28.879391248000047 ], [ -81.972445942999968, 28.879486163000024 ], [ -81.972381110999947, 28.879499290000069 ], [ -81.972358811999982, 28.879509233000078 ], [ -81.972332021999989, 28.87952628000005 ], [ -81.972307474, 28.879553275000035 ], [ -81.972292739999943, 28.879585672000076 ], [ -81.972286588999964, 28.879641831000072 ], [ -81.972281195999983, 28.87979826000003 ], [ -81.972276692999969, 28.879946390000043 ], [ -81.972275445999969, 28.88001766900004 ], [ -81.972285254999974, 28.880050072000074 ], [ -81.972302426999988, 28.880070595000063 ], [ -81.972329417999958, 28.880092201000025 ], [ -81.97235640699995, 28.880110567000031 ], [ -81.972393217, 28.880119214000047 ], [ -81.972453343999973, 28.880113827000059 ], [ -81.972691622999946, 28.880079360000025 ], [ -81.973439675999941, 28.879963089000057 ], [ -81.973787409999943, 28.879915552000057 ], [ -81.973864309999954, 28.879895408000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96912513999996, 28.879728339000053 ], [ -81.969277099999942, 28.879349024000078 ], [ -81.96947509599994, 28.878884667000079 ], [ -81.969665418999966, 28.878429758000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969665418999966, 28.878429758000038 ], [ -81.969783603999986, 28.878148984000063 ], [ -81.969921731999989, 28.877847964000068 ], [ -81.970044509, 28.877590141000042 ], [ -81.970199497999943, 28.87732152500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968613526999945, 28.877461565000033 ], [ -81.96864117299998, 28.877337371000067 ], [ -81.968687259999967, 28.877091681000024 ], [ -81.968714940999973, 28.876847337000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968534448999947, 28.875208390000068 ], [ -81.968928665999954, 28.875064030000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968714940999973, 28.876847337000072 ], [ -81.968728781999971, 28.876721790000033 ], [ -81.96874113299998, 28.87645449200005 ], [ -81.968736624999963, 28.876138590000039 ], [ -81.968722888999935, 28.875913136000065 ], [ -81.968681578999963, 28.875576974000069 ], [ -81.968655553999952, 28.875412269000037 ], [ -81.968634107999947, 28.875325864000047 ], [ -81.968615717999967, 28.875275909000038 ], [ -81.968595787999959, 28.875248904000046 ], [ -81.968534448999947, 28.875208390000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967977641999937, 28.875394559000028 ], [ -81.968184719999954, 28.875324407000051 ], [ -81.968534448999947, 28.875208390000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967646314999968, 28.875514631000044 ], [ -81.967736813999977, 28.87548630200007 ], [ -81.967977641999937, 28.875394559000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967714970999964, 28.876681051000048 ], [ -81.968055450999941, 28.876736482000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968055450999941, 28.876736482000069 ], [ -81.968061662999958, 28.876486732000046 ], [ -81.96806326799998, 28.876254533000065 ], [ -81.968046477999962, 28.875989928000024 ], [ -81.968037305999985, 28.875890025000047 ], [ -81.968018949999987, 28.875728020000054 ], [ -81.967979145999948, 28.875491760000045 ], [ -81.967977641999937, 28.875394559000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968055450999941, 28.876736482000069 ], [ -81.96819041699996, 28.87675811400004 ], [ -81.96850789299998, 28.876806789000057 ], [ -81.968714940999973, 28.876847337000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967788193, 28.877977071000032 ], [ -81.967955368999981, 28.87800141200006 ], [ -81.968162419999942, 28.878033861000063 ], [ -81.968485129999976, 28.878093569000043 ], [ -81.968755961999989, 28.878152800000066 ], [ -81.96897067499998, 28.878213601000027 ], [ -81.969292742999983, 28.878309524000031 ], [ -81.969665418999966, 28.878429758000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967505792999987, 28.878565606000052 ], [ -81.968154503999983, 28.878736015000072 ], [ -81.968701080999949, 28.87887984200006 ], [ -81.968781443999944, 28.878882253000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96912513999996, 28.879728339000053 ], [ -81.969018967999943, 28.879701892000071 ], [ -81.968819197999949, 28.879651654000043 ], [ -81.968492888999947, 28.879565290000073 ], [ -81.968154310999978, 28.879477012000052 ], [ -81.967925790999971, 28.879420258000039 ], [ -81.967709541999966, 28.87936215600007 ], [ -81.967465686999958, 28.879291898000076 ], [ -81.967395631999977, 28.879260097000042 ], [ -81.96733687699998, 28.879200066000067 ], [ -81.96731234799995, 28.879160910000053 ], [ -81.967290889999958, 28.879112306000025 ], [ -81.967280168999935, 28.879063703000043 ], [ -81.967280186999972, 28.879008353000074 ], [ -81.967292468999972, 28.878969205000033 ], [ -81.967329302999985, 28.878892264000058 ], [ -81.967392224999969, 28.878776179000056 ], [ -81.967456684999945, 28.878650644000061 ], [ -81.967505792999987, 28.878565606000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970986905999951, 28.872545706000039 ], [ -81.971033356999953, 28.872568436000051 ], [ -81.971236963999957, 28.872687203000055 ], [ -81.971350667999957, 28.872757064000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973808633999965, 28.874556667000036 ], [ -81.973855861999937, 28.874293426000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973855861999937, 28.874293426000065 ], [ -81.973869781999952, 28.874210338000069 ], [ -81.973946855999941, 28.873814529000072 ], [ -81.973980239999946, 28.873711261000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973980239999946, 28.873711261000039 ], [ -81.974061976999963, 28.873444988000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974837387999969, 28.876953627000034 ], [ -81.974937108999939, 28.876840246000029 ], [ -81.975023026999963, 28.876730912000028 ], [ -81.975085932999946, 28.876645873000029 ], [ -81.975151907999987, 28.876545984000074 ], [ -81.975224025999978, 28.876417747000062 ], [ -81.975288476999935, 28.876282759000048 ], [ -81.975339117999965, 28.876162618000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974875674999964, 28.87148895100006 ], [ -81.974926989999972, 28.871532521000063 ], [ -81.975104533999968, 28.87167732000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97420290499997, 28.870929922000073 ], [ -81.974350116999972, 28.871025125000074 ], [ -81.97463417199998, 28.871269192000057 ], [ -81.974799775999941, 28.871411987000045 ], [ -81.974875674999964, 28.87148895100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97770763799997, 28.870760629000074 ], [ -81.977761850999968, 28.870780946000025 ], [ -81.977904541999976, 28.870836543000053 ], [ -81.97794986599996, 28.870853071000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976576157999943, 28.870051686000068 ], [ -81.976678844999981, 28.869955240000024 ], [ -81.976827681999964, 28.869820218000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976576157999943, 28.870051686000068 ], [ -81.976678804999949, 28.870132936000061 ], [ -81.976938310999969, 28.870329969000068 ], [ -81.977091710999957, 28.87043052000007 ], [ -81.977219738999963, 28.870504666000045 ], [ -81.977352381999935, 28.870576782000057 ], [ -81.977495282999939, 28.870651867000049 ], [ -81.97770763799997, 28.870760629000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97608349099994, 28.87049431500003 ], [ -81.976378862999979, 28.870218178000073 ], [ -81.976576157999943, 28.870051686000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975760427999944, 28.870791771000029 ], [ -81.97599465199994, 28.870568424000055 ], [ -81.97608349099994, 28.87049431500003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967072414999961, 28.86788094800005 ], [ -81.967143930999953, 28.867888075000053 ], [ -81.967372316999956, 28.867921637000052 ], [ -81.967544180999937, 28.867960265000079 ], [ -81.967691817999935, 28.868004978000045 ], [ -81.967762147999963, 28.868028228000071 ], [ -81.967769567999937, 28.868030293000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985037413999976, 28.872010747000047 ], [ -81.985058591999973, 28.87184869500004 ], [ -81.985077926999963, 28.871752016000073 ], [ -81.985111994999954, 28.871608379000065 ], [ -81.985126247999972, 28.871489244000031 ], [ -81.985123905999956, 28.871352074000072 ], [ -81.985114479999936, 28.871223218000068 ], [ -81.985095609999973, 28.87108812300005 ], [ -81.98506287899994, 28.870896655000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985763846999987, 28.870758263000027 ], [ -81.985716013999934, 28.870580473000075 ], [ -81.985556203999977, 28.87013151900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989875615999949, 28.870771577000028 ], [ -81.989791567999987, 28.870668937000062 ], [ -81.989729212999976, 28.870559140000069 ], [ -81.989633582999943, 28.870386972000063 ], [ -81.989476041999978, 28.87009222000006 ], [ -81.989428779999969, 28.869996859000025 ], [ -81.98939530399997, 28.869913637000025 ], [ -81.98936970799997, 28.869828680000069 ], [ -81.989344116999973, 28.869691712000076 ], [ -81.98934427599994, 28.869556651000039 ], [ -81.989344283999969, 28.869480272000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988609469999972, 28.869480133000025 ], [ -81.989191344999938, 28.869481112000074 ], [ -81.989344283999969, 28.869480272000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987223636999943, 28.871446818000038 ], [ -81.98747037399994, 28.871578114000044 ], [ -81.987681861999988, 28.871697475000076 ], [ -81.98775507199997, 28.87172612300003 ], [ -81.987806589999934, 28.871730901000035 ], [ -81.987882514999967, 28.871723747000033 ], [ -81.987942172999965, 28.871697499000049 ], [ -81.988001832999942, 28.871644994000064 ], [ -81.98840047799996, 28.871260753000058 ], [ -81.988769288999947, 28.870897989000071 ], [ -81.988834376999989, 28.870809683000061 ], [ -81.988869635999947, 28.870723761000079 ], [ -81.988885913999979, 28.870635450000066 ], [ -81.988885924999977, 28.870535204000078 ], [ -81.988861530999941, 28.870446891000029 ], [ -81.988815443999954, 28.870349028000078 ], [ -81.988747670999942, 28.870217747000027 ], [ -81.988693454999975, 28.870074534000025 ], [ -81.988660928999934, 28.869959965000078 ], [ -81.988633063999941, 28.869856361000075 ], [ -81.988615349999975, 28.869736729000067 ], [ -81.988611423999942, 28.869608431000074 ], [ -81.988609469999972, 28.869480133000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987223636999943, 28.871446818000038 ], [ -81.987709062999954, 28.870974276000027 ], [ -81.987935710999977, 28.870747452000046 ], [ -81.987988386999973, 28.870678335000036 ], [ -81.988016481999978, 28.870612226000048 ], [ -81.988038158999984, 28.870523806000051 ], [ -81.988042107999945, 28.870437117000051 ], [ -81.988030298999945, 28.870357364000029 ], [ -81.988006672999973, 28.870272407000073 ], [ -81.987979108, 28.870194387000026 ], [ -81.987951542999951, 28.870104229000049 ], [ -81.98792988699995, 28.87001753900006 ], [ -81.987912174999963, 28.869896174000075 ], [ -81.987896431999957, 28.869762673000025 ], [ -81.987892510999984, 28.869608368000058 ], [ -81.987892074999934, 28.869481453000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988614656999971, 28.867072654000026 ], [ -81.988652147999971, 28.867072313000051 ], [ -81.989136264999956, 28.867073722000043 ], [ -81.98919338099995, 28.867085862000067 ], [ -81.989231705999941, 28.867102956000053 ], [ -81.989276098999937, 28.867132681000044 ], [ -81.989305639999941, 28.867162157000053 ], [ -81.989325331999964, 28.867205502000047 ], [ -81.98933987199996, 28.867245633000039 ], [ -81.989347458999987, 28.867517908000025 ], [ -81.989343478999956, 28.868252564000045 ], [ -81.989343417999976, 28.868847647000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987889413999937, 28.868847524000046 ], [ -81.987886941999989, 28.86827616100004 ], [ -81.987887031999946, 28.867504034000035 ], [ -81.987893442999962, 28.867227919000072 ], [ -81.987924964999934, 28.867156839000074 ], [ -81.987974210999937, 28.867108298000062 ], [ -81.988043147999974, 28.86707709600006 ], [ -81.988147537999964, 28.867064970000058 ], [ -81.988614656999971, 28.867072654000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992701083999975, 28.866836416000069 ], [ -81.992897906999985, 28.866837714000042 ], [ -81.992978987999948, 28.866853972000058 ], [ -81.993039386999953, 28.866884026000037 ], [ -81.993089278999946, 28.866941820000079 ], [ -81.993112909999979, 28.866997301000026 ], [ -81.993118156999969, 28.86707358700005 ], [ -81.993141548999972, 28.867783551000059 ], [ -81.993149372999937, 28.868521971000064 ], [ -81.993147006999948, 28.868603026000073 ], [ -81.993137556999955, 28.868669531000023 ], [ -81.993113943999958, 28.868725644000051 ], [ -81.993076161999966, 28.868787991000033 ], [ -81.993013007999934, 28.868863524000062 ], [ -81.992857090999962, 28.868979872000068 ], [ -81.992443564999974, 28.869242399000029 ], [ -81.992145130999972, 28.869432861000064 ], [ -81.992090471999973, 28.86947695200007 ], [ -81.992047182999954, 28.869527687000073 ], [ -81.991996247999964, 28.869603551000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007836972999939, 28.959023152000043 ], [ -82.007869568999979, 28.959054108000032 ], [ -82.007885214999988, 28.959086211000056 ], [ -82.007888290999972, 28.959120624000036 ], [ -82.007886524999947, 28.959161885000071 ], [ -82.007880009999951, 28.95921792300004 ], [ -82.007877407999956, 28.959281128000043 ], [ -82.007874215999948, 28.959316891000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005035308999936, 28.958292922000055 ], [ -82.005161765999958, 28.958265399000027 ], [ -82.005358618999935, 28.958221823000031 ], [ -82.005412069999977, 28.958222966000051 ], [ -82.005455092999966, 28.958237871000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007203833999938, 28.959132328000067 ], [ -82.007167482999989, 28.95913872400007 ], [ -82.00709582199994, 28.959156115000042 ], [ -82.00702999899994, 28.959164225000052 ], [ -82.00696351199997, 28.959171109000067 ], [ -82.00692048999997, 28.959174550000057 ], [ -82.006859215999953, 28.959171114000071 ], [ -82.006814889999987, 28.959163090000061 ], [ -82.006745793999983, 28.959143601000051 ], [ -82.006659747999947, 28.959114942000042 ], [ -82.006517642999938, 28.959071379000079 ], [ -82.006367715999943, 28.959026670000071 ], [ -82.006241255999953, 28.95898769300004 ], [ -82.006129136999959, 28.958954447000053 ], [ -82.006061344999978, 28.958933813000044 ], [ -82.006002678999948, 28.958916617000057 ], [ -82.005945313999973, 28.958897126000068 ], [ -82.005886645999965, 28.958871905000024 ], [ -82.005839711999954, 28.95884209500008 ], [ -82.005794080999976, 28.958807702000058 ], [ -82.005762790999938, 28.958772158000045 ], [ -82.005724980999958, 28.958726297000055 ], [ -82.005668918999959, 28.958649481000066 ], [ -82.005601121999973, 28.958553172000052 ], [ -82.005546361999961, 28.958476354000027 ], [ -82.005498122999938, 28.958406414000024 ], [ -82.005468134999944, 28.958357113000034 ], [ -82.00544857899996, 28.958321570000066 ], [ -82.00544466499997, 28.958276855000065 ], [ -82.005455092999966, 28.958237871000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005455092999966, 28.958237871000051 ], [ -82.00547073599995, 28.958214938000026 ], [ -82.005511147999982, 28.958190859000069 ], [ -82.005568508999943, 28.958172512000033 ], [ -82.005735376999951, 28.958124348000069 ], [ -82.005868349999957, 28.958072747000074 ], [ -82.00601175099996, 28.958006239000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00601175099996, 28.958006239000042 ], [ -82.006082154999945, 28.958104842000068 ], [ -82.006130393999968, 28.958169047000069 ], [ -82.006168202999959, 28.958217201000025 ], [ -82.006199494999976, 28.958249303000059 ], [ -82.006236, 28.958284846000026 ], [ -82.006288148999943, 28.95832497300006 ], [ -82.00634942399995, 28.958365100000037 ], [ -82.006415914999934, 28.958400641000026 ], [ -82.006485011999985, 28.958428155000036 ], [ -82.006548892999945, 28.958449937000069 ], [ -82.006603648999942, 28.958462546000078 ], [ -82.006662313999982, 28.958474009000042 ], [ -82.006727499999954, 28.958482033000053 ], [ -82.006825275999972, 28.95848546700006 ], [ -82.006915229999947, 28.958491195000079 ], [ -82.006988235999984, 28.958495777000053 ], [ -82.007062546999975, 28.958499213000039 ], [ -82.007142072999955, 28.958501502000047 ], [ -82.007259395999938, 28.958518512000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007926148999957, 28.958298515000024 ], [ -82.007944401999964, 28.958324886000071 ], [ -82.007949619999977, 28.958352403000049 ], [ -82.007944644999952, 28.958416975000034 ], [ -82.007938399999944, 28.958491056000071 ], [ -82.007931384999949, 28.958585158000062 ], [ -82.00791965999997, 28.958695230000046 ], [ -82.007910541999934, 28.958793834000062 ], [ -82.007903245999955, 28.958871448000025 ], [ -82.007895433999977, 28.958951204000073 ], [ -82.00787999299996, 28.95898416600005 ], [ -82.007861742999978, 28.959004807000042 ], [ -82.007836972999939, 28.959023152000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007836972999939, 28.959023152000043 ], [ -82.007793951999986, 28.959038060000069 ], [ -82.00773847399995, 28.959044944000027 ], [ -82.007662860999972, 28.959055266000064 ], [ -82.007568996999964, 28.959070177000058 ], [ -82.007439353999985, 28.959091970000031 ], [ -82.007342156999982, 28.959109173000058 ], [ -82.007266321999964, 28.959121333000041 ], [ -82.007203833999938, 28.959132328000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007987401999969, 28.958026775000064 ], [ -82.007984797999939, 28.958086397000045 ], [ -82.007980890999988, 28.95814028500007 ], [ -82.007972199999983, 28.958191649000071 ], [ -82.007961343999966, 28.958246919000032 ], [ -82.007926148999957, 28.958298515000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007341070999985, 28.958035967000058 ], [ -82.007403355999941, 28.958061205000035 ], [ -82.007490704999952, 28.958100184000045 ], [ -82.007580661999953, 28.958140309000044 ], [ -82.007687566999948, 28.958188459000041 ], [ -82.007794471999944, 28.958234315000027 ], [ -82.007897466999964, 28.958277879000036 ], [ -82.007926148999957, 28.958298515000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00601175099996, 28.958006239000042 ], [ -82.006056074999947, 28.957981012000062 ], [ -82.006126882, 28.95794186300003 ], [ -82.006199973999969, 28.957896825000034 ], [ -82.006271647999938, 28.957853298000032 ], [ -82.006350716999975, 28.957798963000073 ], [ -82.006442142999958, 28.957740281000042 ], [ -82.00654962599998, 28.957667473000072 ], [ -82.006606456999975, 28.957628352000029 ], [ -82.006665759999976, 28.957591404000027 ], [ -82.006798413999945, 28.957502859000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006798413999945, 28.957502859000044 ], [ -82.006920277999939, 28.957650068000078 ], [ -82.006984528999965, 28.957721782000078 ], [ -82.007066078999969, 28.957814140000039 ], [ -82.007157512999981, 28.957902152000031 ], [ -82.007236478999971, 28.957967196000027 ], [ -82.007306879999987, 28.958013055000038 ], [ -82.007341070999985, 28.958035967000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008009286999936, 28.955918801000053 ], [ -82.008052765999935, 28.956000189000065 ], [ -82.008112994999976, 28.956109487000049 ], [ -82.008176298999956, 28.956224372000065 ], [ -82.00824498999998, 28.956348733000027 ], [ -82.008317541999986, 28.956482535000077 ], [ -82.008368904999941, 28.956571396000072 ], [ -82.00840349899994, 28.956637659000023 ], [ -82.008433603999947, 28.956689487000062 ], [ -82.008480424999959, 28.956756898000037 ], [ -82.008537790999981, 28.956819956000061 ], [ -82.008601674999966, 28.956877280000072 ], [ -82.008681367999941, 28.956932624000046 ], [ -82.008853754999961, 28.95704276400005 ], [ -82.008957456999951, 28.95710908500007 ], [ -82.009046106999961, 28.95716290200005 ], [ -82.009129923999978, 28.95721676200003 ], [ -82.009204068999964, 28.957264953000049 ], [ -82.009274989999938, 28.957310310000025 ], [ -82.009348022999973, 28.957355419000066 ], [ -82.009445844999959, 28.957418030000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009445844999959, 28.957418030000042 ], [ -82.009700517999988, 28.957582445000071 ], [ -82.009781111999985, 28.957633471000065 ], [ -82.00984443599998, 28.95767107000006 ], [ -82.009906979999982, 28.957712319000052 ], [ -82.009971586999939, 28.957753339000078 ], [ -82.010021416999962, 28.957779392000077 ], [ -82.010072593999951, 28.95780307800004 ], [ -82.010136827999986, 28.957822653000051 ], [ -82.010209922999934, 28.95783639900003 ], [ -82.010282684999936, 28.957848069000079 ], [ -82.010393115999989, 28.957851614000049 ], [ -82.010534814999971, 28.957849624000062 ], [ -82.010715589999961, 28.957848081000066 ], [ -82.010919680999962, 28.957848019000039 ], [ -82.011155461999977, 28.95784079200007 ], [ -82.011260726999978, 28.957840314000066 ], [ -82.011367103999987, 28.957843141000069 ], [ -82.011450862999936, 28.957846492000044 ], [ -82.011536036999985, 28.957852600000024 ], [ -82.011628164999934, 28.957867880000038 ], [ -82.011742890999983, 28.957890801000076 ], [ -82.011828066999954, 28.957910667000078 ], [ -82.011918335999951, 28.957936650000079 ], [ -82.011994370999957, 28.957959263000077 ], [ -82.012103457999956, 28.95799123300003 ], [ -82.01222735999994, 28.958027939000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01215055199998, 28.956997866000052 ], [ -82.012244104999979, 28.956968145000076 ], [ -82.012379236999948, 28.956913276000023 ], [ -82.01250397299998, 28.956867552000062 ], [ -82.012562686999956, 28.956854376000024 ], [ -82.012600535999979, 28.956852557000047 ], [ -82.012622212999986, 28.956852631000061 ], [ -82.012648534999983, 28.956855805000032 ], [ -82.012704277999944, 28.956868055000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012704277999944, 28.956868055000029 ], [ -82.012717695999982, 28.956858523000051 ], [ -82.012738338999952, 28.956848988000047 ], [ -82.01275898199998, 28.956843539000033 ], [ -82.012775497999939, 28.956840814000032 ], [ -82.012793045999956, 28.956839904000049 ], [ -82.012805432999983, 28.956839506000051 ], [ -82.012825561999989, 28.956840355000054 ], [ -82.014706688, 28.956845534000024 ], [ -82.014840639999989, 28.956844660000058 ], [ -82.014858036999954, 28.956845593000025 ], [ -82.01487403699997, 28.956849223000063 ], [ -82.014891068999987, 28.956853306000028 ], [ -82.014907586999982, 28.956861022000055 ], [ -82.014923070999942, 28.956870098000024 ], [ -82.014937007999947, 28.956881445000079 ], [ -82.014947331999963, 28.956889614000033 ], [ -82.014954558999989, 28.956898692000038 ], [ -82.014960237999958, 28.956906408000066 ], [ -82.014966947999937, 28.956914124000036 ], [ -82.014971915999979, 28.956922481000049 ], [ -82.014977195999961, 28.956930731000057 ], [ -82.014981402999979, 28.956938634000039 ], [ -82.014985796999952, 28.956948607000072 ], [ -82.014988925999944, 28.956957887000044 ], [ -82.01502026999998, 28.957055350000076 ], [ -82.015075847999981, 28.957257533000075 ], [ -82.01507694999998, 28.957275431000028 ], [ -82.015078051999978, 28.957292360000054 ], [ -82.015077505999955, 28.957316545000026 ], [ -82.015071459999945, 28.957340248000037 ], [ -82.015065411999956, 28.957356210000057 ], [ -82.015057163999984, 28.957371690000059 ], [ -82.015045616999942, 28.95738523600005 ], [ -82.015034617999959, 28.957394911000051 ], [ -82.015022519999945, 28.957404587000042 ], [ -82.015007671999967, 28.957413779000035 ], [ -82.014990073999968, 28.957422488000077 ], [ -82.014973024999961, 28.957429262000062 ], [ -82.014954325999952, 28.957434100000057 ], [ -82.014929026999937, 28.957436038000026 ], [ -82.014892503999988, 28.957436164000057 ], [ -82.012820010999974, 28.957433553000044 ], [ -82.012815321999938, 28.957433554000033 ], [ -82.012810630999979, 28.957433210000033 ], [ -82.012806133999959, 28.957432867000023 ], [ -82.01280144499998, 28.95743252300008 ], [ -82.012796949999938, 28.957431837000058 ], [ -82.01279225899998, 28.957430805000058 ], [ -82.012787763999938, 28.957430119000037 ], [ -82.012783268999954, 28.957428743000037 ], [ -82.012778968999953, 28.957427713000072 ], [ -82.012774473999968, 28.957426338000062 ], [ -82.012770172999979, 28.95742496400004 ], [ -82.012766069999941, 28.95742324500003 ], [ -82.012761768999951, 28.957421527000065 ], [ -82.012757663999935, 28.957419464000054 ], [ -82.012753559999965, 28.957417402000033 ], [ -82.012749650999979, 28.957415339000079 ], [ -82.012745741999936, 28.957413277000057 ], [ -82.012742027999934, 28.957410871000036 ], [ -82.012738314999979, 28.957408465000071 ], [ -82.012734796999951, 28.95740571500005 ], [ -82.012731278999979, 28.957402965000028 ], [ -82.012727954999946, 28.957400215000064 ], [ -82.012724631999959, 28.957397466000032 ], [ -82.012721504999945, 28.957394371000078 ], [ -82.012718572999972, 28.957391278000046 ], [ -82.012715640999943, 28.957388184000024 ], [ -82.012712903999955, 28.957384747000049 ], [ -82.012710167999956, 28.957381310000073 ], [ -82.012707626999941, 28.957377872000052 ], [ -82.012705280999967, 28.95737443400003 ], [ -82.012703129999977, 28.957370997000055 ], [ -82.012700980999966, 28.957367215000033 ], [ -82.012699220999934, 28.957363434000058 ], [ -82.012697265999975, 28.957359653000026 ], [ -82.012695701999974, 28.957355872000051 ], [ -82.012694334999935, 28.957352090000029 ], [ -82.012692964999985, 28.957347965000054 ], [ -82.012691791999941, 28.957344184000078 ], [ -82.012690813999939, 28.957340058000057 ], [ -82.012689836999982, 28.957336277000024 ], [ -82.012689249999937, 28.957332152000049 ], [ -82.012688663999938, 28.957328027000074 ], [ -82.012688271999934, 28.957323901000052 ], [ -82.012688075999961, 28.957319776000077 ], [ -82.012688075999961, 28.957315994000055 ], [ -82.012681750999946, 28.956959071000028 ], [ -82.012681058999988, 28.956940913000039 ], [ -82.012681057999941, 28.956921546000046 ], [ -82.012682433999942, 28.956908837000071 ], [ -82.012685700999953, 28.956898018000061 ], [ -82.012688795999964, 28.956890300000055 ], [ -82.012691891999964, 28.956883490000052 ], [ -82.012696535999964, 28.956875774000025 ], [ -82.012704277999944, 28.956868055000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008497835999947, 28.953521612000031 ], [ -82.008729063999965, 28.953516162000028 ], [ -82.00886118699998, 28.953517588000068 ], [ -82.008936218999963, 28.953511844000047 ], [ -82.009006356999976, 28.953501797000058 ], [ -82.009069969999985, 28.953481709000073 ], [ -82.009141735999947, 28.953457315000037 ], [ -82.009264066999947, 28.953399922000074 ], [ -82.009345619999976, 28.953358311000045 ], [ -82.009423909999953, 28.953319571000065 ], [ -82.009507094999947, 28.953283699000053 ], [ -82.009579754999947, 28.953247961000045 ], [ -82.009645735999982, 28.953220565000038 ], [ -82.009704455999952, 28.953200476000063 ], [ -82.009763174999989, 28.953188995000062 ], [ -82.009852886999965, 28.953186119000065 ], [ -82.009965978999958, 28.953186350000067 ], [ -82.010085594999964, 28.953186341000048 ], [ -82.010193792999985, 28.953191832000073 ], [ -82.010280242999954, 28.953193260000035 ], [ -82.010370868999985, 28.953198032000046 ], [ -82.010552482999969, 28.953209524000044 ], [ -82.010690914999941, 28.953231611000035 ], [ -82.010765154999945, 28.953267303000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004401267999981, 28.959714424000026 ], [ -82.004432860999941, 28.959737038000071 ], [ -82.004449025999975, 28.959749315000067 ], [ -82.00446225099995, 28.959762237000064 ], [ -82.004516623999962, 28.95984106700007 ], [ -82.004584035999983, 28.959952781000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004401267999981, 28.959714424000026 ], [ -82.004400532999966, 28.959726492000073 ], [ -82.004397594999944, 28.959745877000046 ], [ -82.004389515999947, 28.959762031000025 ], [ -82.004381431999946, 28.959774955000057 ], [ -82.00436820799996, 28.959787879000032 ], [ -82.00435424899996, 28.959798864000049 ], [ -82.004339553999955, 28.959807264000062 ], [ -82.004324861999976, 28.959815019000075 ], [ -82.004308698999978, 28.959820189000027 ], [ -82.004291064999961, 28.959824067000056 ], [ -82.004276370999946, 28.959826006000071 ], [ -82.004264614999954, 28.959826006000071 ], [ -82.003034945999957, 28.959824854000033 ], [ -82.002999189999969, 28.959822270000075 ], [ -82.002968819999978, 28.959814517000041 ], [ -82.002944818999936, 28.959801595000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002944818999936, 28.959801595000044 ], [ -82.002924728999972, 28.959814453000035 ], [ -82.002898776999984, 28.959823852000056 ], [ -82.002849142999935, 28.959825003000049 ], [ -82.002603583999985, 28.959825008000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002944818999936, 28.959801595000044 ], [ -82.002928164999958, 28.959789533000048 ], [ -82.002914449999935, 28.959774026000048 ], [ -82.002903672999935, 28.959750764000034 ], [ -82.002895836999983, 28.959725779000053 ], [ -82.002799492999941, 28.959234553000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002799492999941, 28.959234553000044 ], [ -82.004122627999948, 28.959231073000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004122627999948, 28.959231073000069 ], [ -82.004279375999943, 28.959468856000058 ], [ -82.004375547999985, 28.959623753000074 ], [ -82.004387304999966, 28.959644430000026 ], [ -82.004393917999948, 28.959664461000045 ], [ -82.004399796999962, 28.959694830000046 ], [ -82.004401267999981, 28.959714424000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002799492999941, 28.959234553000044 ], [ -82.002740709999955, 28.958973792000052 ], [ -82.002675392999947, 28.958644106000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003759495999986, 28.958645229000069 ], [ -82.003912324999988, 28.958887607000065 ], [ -82.004122627999948, 28.959231073000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003398337999954, 28.958048815000041 ], [ -82.003759495999986, 28.958645229000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002675392999947, 28.958644106000065 ], [ -82.003759495999986, 28.958645229000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002577417999987, 28.958050212000046 ], [ -82.003398337999954, 28.958048815000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002577417999987, 28.958050212000046 ], [ -82.002520545999971, 28.957754560000069 ], [ -82.002451316999952, 28.957397042000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002675392999947, 28.958644106000065 ], [ -82.002628053999956, 28.958387609000056 ], [ -82.002577417999987, 28.958050212000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00293527599996, 28.957215073000043 ], [ -82.002944711999987, 28.957281132000048 ], [ -82.002996669999959, 28.95739427500007 ], [ -82.003111832999934, 28.957580653000036 ], [ -82.003398337999954, 28.958048815000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00293527599996, 28.957215073000043 ], [ -82.002881723999963, 28.957212778000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005314480999971, 28.952011030000051 ], [ -82.005374639999957, 28.952013414000078 ], [ -82.005449521999935, 28.952030258000036 ], [ -82.005524403999971, 28.952054762000046 ], [ -82.005618732999949, 28.952097900000069 ], [ -82.005711611999971, 28.952153035000038 ], [ -82.005783593999979, 28.952210214000047 ], [ -82.005848610999976, 28.952271477000068 ], [ -82.005950780999967, 28.95238379400007 ], [ -82.006015797999964, 28.952465478000079 ], [ -82.00608081699994, 28.952569627000059 ], [ -82.006117972999959, 28.952645188000076 ], [ -82.006357161999972, 28.95319044300004 ], [ -82.006443084999944, 28.953380363000065 ], [ -82.006470951999972, 28.953447754000024 ], [ -82.006480242999942, 28.953498809000052 ], [ -82.006480247999946, 28.953570286000058 ], [ -82.006475632, 28.953753232000054 ], [ -82.006454743999939, 28.954162525000072 ], [ -82.006436171999951, 28.954238087000078 ], [ -82.006408312999952, 28.954313650000074 ], [ -82.006371164999962, 28.954372875000047 ], [ -82.006336726999962, 28.954420187000039 ], [ -82.006287193999981, 28.954469202000041 ], [ -82.006234566999979, 28.954518217000043 ], [ -82.006087902, 28.954611826000075 ], [ -82.005742329999975, 28.95480959300005 ], [ -82.005339869999943, 28.955032890000041 ], [ -82.004838335999978, 28.955242574000067 ], [ -82.004516363999983, 28.955373287000043 ], [ -82.003903373999947, 28.955637431000071 ], [ -82.003637124999955, 28.955746354000041 ], [ -82.003577623999945, 28.95575529100006 ], [ -82.003521896999985, 28.955756824000048 ], [ -82.003459202999977, 28.955744572000071 ], [ -82.003408699999966, 28.955727725000031 ], [ -82.00335645499996, 28.955700157000024 ], [ -82.003316397999981, 28.955667994000066 ], [ -82.003290275999973, 28.955638893000071 ], [ -82.003074319999939, 28.955177873000025 ], [ -82.002809598999988, 28.954589725000062 ], [ -82.002799148999941, 28.954548370000055 ], [ -82.002793923999945, 28.95450242000004 ], [ -82.002799146999962, 28.954459534000023 ], [ -82.002816770999971, 28.954415125000025 ], [ -82.002839197999947, 28.954375294000045 ], [ -82.002867059999971, 28.954335470000046 ], [ -82.002943682999955, 28.954274202000079 ], [ -82.003636767999978, 28.953842261000034 ], [ -82.004477864999956, 28.953306158000032 ], [ -82.004519656999946, 28.953267866000033 ], [ -82.004554484999971, 28.953231105000043 ], [ -82.00458582899995, 28.953194344000053 ], [ -82.005099513999937, 28.952376425000068 ], [ -82.005305292999935, 28.952029836000065 ], [ -82.005314480999971, 28.952011030000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005401496, 28.950753774000077 ], [ -82.005397215999949, 28.950818727000069 ], [ -82.005378064999945, 28.950889183000072 ], [ -82.00534149899994, 28.950961172000063 ], [ -82.005292743999973, 28.951048478000075 ], [ -82.005256177999968, 28.951117403000069 ], [ -82.005233543999964, 28.951187860000061 ], [ -82.005216290999954, 28.951263345000029 ], [ -82.005202206999968, 28.951390039000046 ], [ -82.005203952999977, 28.951449774000025 ], [ -82.005209178999962, 28.951506445000064 ], [ -82.005221372999983, 28.951564647000055 ], [ -82.005238789999964, 28.951619785000048 ], [ -82.00525446499995, 28.951670329000024 ], [ -82.005278522999959, 28.951731332000065 ], [ -82.005296263999981, 28.951785201000064 ], [ -82.005304973999955, 28.951829620000069 ], [ -82.005310200999986, 28.951893948000077 ], [ -82.005311945999949, 28.951965935000032 ], [ -82.005314480999971, 28.952011030000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005769870999984, 28.950746724000055 ], [ -82.005794255999945, 28.950847811000074 ], [ -82.005796000999965, 28.950890697000034 ], [ -82.005785555999978, 28.950944306000054 ], [ -82.005752472999973, 28.951034674000027 ], [ -82.005674121999959, 28.951223071000072 ], [ -82.00565331699994, 28.951285584000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005401496, 28.950753774000077 ], [ -82.005574835999937, 28.950765112000056 ], [ -82.005641008999987, 28.95076664100003 ], [ -82.005694992999963, 28.950763575000053 ], [ -82.005769870999984, 28.950746724000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005769870999984, 28.950746724000055 ], [ -82.005869129999951, 28.950714555000047 ], [ -82.006015403999982, 28.950657878000072 ], [ -82.006102470999963, 28.950628772000073 ], [ -82.006175825999946, 28.95060790000008 ], [ -82.006250487999978, 28.950593538000078 ], [ -82.006309040999952, 28.950583771000026 ], [ -82.006366507999985, 28.950579172000062 ], [ -82.006460542999946, 28.950567681000052 ], [ -82.006546740999966, 28.95055274300006 ], [ -82.006636060999938, 28.950532673000055 ], [ -82.006703462999951, 28.950514827000063 ], [ -82.006770070999949, 28.950491850000049 ], [ -82.006843206999974, 28.950463127000035 ], [ -82.006905894999989, 28.950430959000073 ], [ -82.006938543999979, 28.950406834000034 ], [ -82.00696335799995, 28.950386155000047 ], [ -82.006982947999973, 28.950363179000078 ], [ -82.007001229999958, 28.950332163000041 ], [ -82.007022124999935, 28.950295402000052 ], [ -82.007039099999986, 28.950259790000075 ], [ -82.007059993999974, 28.950214989000074 ], [ -82.007079579999981, 28.950160997000069 ], [ -82.007090025999958, 28.950121939000041 ], [ -82.007097859999988, 28.95007484100006 ], [ -82.007100457999968, 28.950033486000052 ], [ -82.007096545999957, 28.949976050000032 ], [ -82.007076952999967, 28.949920912000039 ], [ -82.007056053999975, 28.949883003000025 ], [ -82.007035154999983, 28.949847394000074 ], [ -82.007006417999946, 28.949812933000032 ], [ -82.006947114999946, 28.949769189000051 ], [ -82.006901930999959, 28.949750907000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005317310999942, 28.950368873000059 ], [ -82.005292923999946, 28.950286292000044 ], [ -82.005246363999959, 28.950283487000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001096760999985, 28.952810486000033 ], [ -82.001161833999959, 28.952749705000031 ], [ -82.001185447999944, 28.952730902000042 ], [ -82.001216792999969, 28.952713670000037 ], [ -82.001276871999949, 28.952688398000078 ], [ -82.001472781999951, 28.952653934000068 ], [ -82.001650512999959, 28.95264491100005 ], [ -82.001976926999987, 28.952659671000049 ], [ -82.002037005999966, 28.952653926000039 ], [ -82.002117981999959, 28.952643587000068 ], [ -82.002189815999941, 28.952630949000024 ], [ -82.00226687299994, 28.952609121000023 ], [ -82.002350460999935, 28.952580402000024 ], [ -82.00242751899998, 28.952543641000034 ], [ -82.002512411999987, 28.952498839000043 ], [ -82.002594692999935, 28.952443698000025 ], [ -82.002813107999941, 28.952273966000064 ], [ -82.002939487999981, 28.952186374000064 ], [ -82.003075317999958, 28.95210595900005 ], [ -82.003199390999953, 28.952022098000043 ], [ -82.003317574999983, 28.951936598000032 ], [ -82.003370479999944, 28.951892288000067 ], [ -82.003418802999988, 28.951849783000057 ], [ -82.003476268999975, 28.951790047000031 ], [ -82.003542874999937, 28.951724568000031 ], [ -82.003591197999981, 28.95167172500004 ], [ -82.003634295999973, 28.951613138000027 ], [ -82.003661720999958, 28.951578674000075 ], [ -82.003712654999958, 28.951508600000068 ], [ -82.003770118999967, 28.951428187000033 ], [ -82.003921609999963, 28.951130660000047 ], [ -82.003958177999948, 28.951084709000042 ], [ -82.004001274999951, 28.951031866000051 ], [ -82.004075718999957, 28.950957197000037 ], [ -82.004147547999935, 28.950892865000071 ], [ -82.004207624999935, 28.950848062000034 ], [ -82.004262476999941, 28.950812449000068 ], [ -82.004319941999938, 28.950780283000029 ], [ -82.004444012999954, 28.950728586000025 ], [ -82.004549802999975, 28.950686079000036 ], [ -82.004602252999973, 28.950643228000047 ], [ -82.004695892999962, 28.950607415000036 ], [ -82.004854103999946, 28.950526393000075 ], [ -82.00496052699998, 28.950471328000049 ], [ -82.005066380999949, 28.950428352000074 ], [ -82.005163126999946, 28.950404736000053 ], [ -82.005317310999942, 28.950368873000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005246363999959, 28.950283487000036 ], [ -82.005123136999941, 28.950288596000064 ], [ -82.004965107999965, 28.95030698100004 ], [ -82.00485017699998, 28.950327662000063 ], [ -82.004753530999949, 28.950352938000037 ], [ -82.004689535999944, 28.950377064000065 ], [ -82.004639906999955, 28.950395445000026 ], [ -82.004595501999972, 28.950412678000077 ], [ -82.004560727999944, 28.950432655000043 ], [ -82.004504198999939, 28.950460492000047 ], [ -82.004435355999988, 28.950506176000033 ], [ -82.004383928999971, 28.950545939000051 ], [ -82.00434083, 28.950580402000071 ], [ -82.00426508299995, 28.950651626000024 ], [ -82.00417366299996, 28.950750420000077 ], [ -82.004059239999947, 28.950860406000061 ], [ -82.003983256999959, 28.950933925000072 ], [ -82.003888276999987, 28.951017470000068 ], [ -82.003835089999939, 28.951054229000079 ], [ -82.003720477999934, 28.951137558000028 ], [ -82.003612079999982, 28.951221419000035 ], [ -82.003534950999949, 28.951294837000034 ], [ -82.003462765999984, 28.951368357000035 ], [ -82.003394381999954, 28.951441875000057 ], [ -82.003337393999971, 28.951512052000055 ], [ -82.003272807999963, 28.951598937000028 ], [ -82.003201992999948, 28.951709642000026 ], [ -82.003158895999945, 28.951776270000039 ], [ -82.003113184999961, 28.951833708000038 ], [ -82.003064862999963, 28.951894591000041 ], [ -82.003003066999952, 28.951963185000068 ], [ -82.002952543999982, 28.952007171000048 ], [ -82.002893772999983, 28.952054270000076 ], [ -82.002832387999945, 28.952095626000073 ], [ -82.00277891099995, 28.952133616000026 ], [ -82.002725292999969, 28.952166849000037 ], [ -82.00266493099997, 28.952200451000067 ], [ -82.002545057999953, 28.952254158000073 ], [ -82.002448369999968, 28.952287339000065 ], [ -82.002347842999939, 28.952318491000028 ], [ -82.002231809999955, 28.952347494000037 ], [ -82.002121628999987, 28.952367545000072 ], [ -82.00193546099996, 28.952410989000043 ], [ -82.001863272999969, 28.952427699000054 ], [ -82.001782317999982, 28.952451753000048 ], [ -82.001705260999984, 28.952475876000051 ], [ -82.001592938999977, 28.952506894000066 ], [ -82.001502820999974, 28.952529870000035 ], [ -82.001410089999979, 28.95254710100005 ], [ -82.001308215999984, 28.95255859100007 ], [ -82.00124160699994, 28.952562037000064 ], [ -82.001173409999979, 28.952554186000043 ], [ -82.001112044999957, 28.952533819000053 ], [ -82.001068048999969, 28.952510398000072 ], [ -82.001036786999975, 28.952495122000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001096760999985, 28.952810486000033 ], [ -82.00111100099997, 28.952771108000036 ], [ -82.001121448999982, 28.952713671000026 ], [ -82.001121308999984, 28.952671294000027 ], [ -82.001112045999946, 28.952617322000037 ], [ -82.001094678999948, 28.952574552000044 ], [ -82.001074428999971, 28.95253791500005 ], [ -82.001036786999975, 28.952495122000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000970796, 28.95296864900007 ], [ -82.000989320999963, 28.952957448000063 ], [ -82.001006516999951, 28.952943419000064 ], [ -82.001029843999959, 28.952919769000061 ], [ -82.001046052999982, 28.952900420000049 ], [ -82.001063983999984, 28.952877941000054 ], [ -82.001079629999936, 28.952852557000028 ], [ -82.001096760999985, 28.952810486000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000892059999956, 28.952398382000069 ], [ -82.00085153699996, 28.952389217000075 ], [ -82.000819117999981, 28.95238310700006 ], [ -82.000788398999987, 28.952380541000025 ], [ -82.000757053999962, 28.952380541000025 ], [ -82.000733542999967, 28.952381689000049 ], [ -82.000704552999935, 28.952384738000035 ], [ -82.000704534999954, 28.952384738000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000769652999963, 28.953020039000023 ], [ -82.000789709999935, 28.953019237000035 ], [ -82.000821438999935, 28.953015494000056 ], [ -82.000852400999975, 28.953011196000034 ], [ -82.000885053, 28.953002006000077 ], [ -82.000919009999961, 28.952990519000025 ], [ -82.000970796, 28.95296864900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000467145999949, 28.952891258000079 ], [ -82.000484085999972, 28.952911258000029 ], [ -82.000495841999964, 28.952923894000037 ], [ -82.000514616999965, 28.952936065000074 ], [ -82.000531984999952, 28.952949304000072 ], [ -82.000557455999967, 28.952967634000061 ], [ -82.000587559999985, 28.95298596400005 ], [ -82.000609557999951, 28.952995128000055 ], [ -82.000638503999937, 28.953003275000071 ], [ -82.000673982999956, 28.953010218000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000673982999956, 28.953010218000031 ], [ -82.000723099999959, 28.953061741000056 ], [ -82.000743996999972, 28.953089311000042 ], [ -82.000758364999967, 28.953109988000051 ], [ -82.000775342999987, 28.953139855000074 ], [ -82.000787096999943, 28.953170871000054 ], [ -82.000796979999961, 28.953217148000078 ], [ -82.001172204999989, 28.955020734000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001318524999988, 28.950697826000066 ], [ -82.001484877999985, 28.950714808000043 ], [ -82.001657171999966, 28.950757916000043 ], [ -82.002530522999962, 28.950974762000044 ], [ -82.002771139999936, 28.951036158000079 ], [ -82.002867684999956, 28.951074040000037 ], [ -82.002959773999976, 28.951119762000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001318524999988, 28.950697826000066 ], [ -82.001318524999988, 28.950733099000047 ], [ -82.001318526999967, 28.950882026000045 ], [ -82.00132149999996, 28.951010052000072 ], [ -82.001325957999939, 28.951169431000039 ], [ -82.001337839999962, 28.951212542000064 ], [ -82.001351208999949, 28.951247813000066 ], [ -82.001369032999946, 28.95127655400006 ], [ -82.001389826999969, 28.951302682000062 ], [ -82.001416562999964, 28.951323583000033 ], [ -82.001456665999967, 28.951351017000036 ], [ -82.001533901999949, 28.951386288000037 ], [ -82.001636387999952, 28.951415027000053 ], [ -82.00174035799995, 28.951439847000074 ], [ -82.001869577999969, 28.951473811000028 ], [ -82.002034446999971, 28.951514307000025 ], [ -82.002190403999975, 28.951554803000079 ], [ -82.002307291999955, 28.95158421900004 ], [ -82.002389136999966, 28.951594939000074 ], [ -82.002448344999948, 28.951596470000027 ], [ -82.002535417, 28.951579620000075 ], [ -82.002589551999961, 28.951551404000043 ], [ -82.002634674999968, 28.951510694000035 ], [ -82.002695665999966, 28.95144586400005 ], [ -82.002784431999942, 28.951340678000065 ], [ -82.002848860999961, 28.951256435000062 ], [ -82.00290980799997, 28.951178321000043 ], [ -82.002959773999976, 28.951119762000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002959773999976, 28.951119762000076 ], [ -82.00306130499996, 28.950995938000062 ], [ -82.003146116999972, 28.95089005400007 ], [ -82.003230927999937, 28.950784511000052 ], [ -82.00329444099998, 28.950709911000047 ], [ -82.003362271999947, 28.950625940000066 ], [ -82.003399401999957, 28.950578910000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002766066999982, 28.950377092000053 ], [ -82.002990598999986, 28.950436015000037 ], [ -82.003259007999986, 28.950503123000033 ], [ -82.003309145999935, 28.950529895000045 ], [ -82.003399401999957, 28.950578910000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003088916999957, 28.948531814000035 ], [ -82.003218133999951, 28.948513522000042 ], [ -82.003273087999958, 28.948506989000066 ], [ -82.003341408999972, 28.948500455000044 ], [ -82.003396362999979, 28.94849522800007 ], [ -82.003454287999944, 28.94849130700004 ], [ -82.00350924199995, 28.94849 ], [ -82.003573107999955, 28.94848999800007 ], [ -82.003653310999937, 28.948489996000035 ], [ -82.003761735999944, 28.948499137000056 ], [ -82.003844909999941, 28.94851219800006 ], [ -82.003922142999954, 28.948530485000049 ], [ -82.003996406999988, 28.948551386000076 ], [ -82.004054332999942, 28.948567061000062 ], [ -82.00410631699998, 28.94858404200005 ], [ -82.004155329999946, 28.948602329000039 ], [ -82.004219197999987, 28.948625843000059 ], [ -82.004308313999957, 28.948659806000023 ], [ -82.004394460999947, 28.948695076000035 ], [ -82.004492488999972, 28.948738183000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002326749999952, 28.948701335000067 ], [ -82.002514744999985, 28.948651661000042 ], [ -82.002750228999957, 28.948602840000035 ], [ -82.002987919999953, 28.948551412000029 ], [ -82.003088916999957, 28.948531814000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001360939999984, 28.950051166000037 ], [ -82.00134860199995, 28.95016449700006 ], [ -82.001340892999963, 28.950293174000024 ], [ -82.001333095999939, 28.950422506000052 ], [ -82.001330011999983, 28.950552235000032 ], [ -82.001318524999988, 28.950697826000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002326749999952, 28.948701335000067 ], [ -82.002066757999955, 28.950204820000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002066757999955, 28.950204820000067 ], [ -82.002397729999984, 28.950287377000052 ], [ -82.002766066999982, 28.950377092000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001360939999984, 28.950051166000037 ], [ -82.001438916999973, 28.950059004000025 ], [ -82.001643886999943, 28.950098193000031 ], [ -82.001944654999988, 28.950172653000038 ], [ -82.002066757999955, 28.950204820000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003088916999957, 28.948531814000035 ], [ -82.002990815999965, 28.949125223000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002990815999965, 28.949125223000067 ], [ -82.002937353999982, 28.949393468000039 ], [ -82.002766066999982, 28.950377092000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001728574999959, 28.94810648400005 ], [ -82.001719664999939, 28.948156126000072 ], [ -82.00171520899994, 28.948204462000035 ], [ -82.001704813999936, 28.948273701000062 ], [ -82.001678913999967, 28.948395728000037 ], [ -82.001651348999985, 28.94851668900003 ], [ -82.001629070999968, 28.948614667000072 ], [ -82.001608279999971, 28.948708727000053 ], [ -82.001591942999937, 28.948784498000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001591942999937, 28.948784498000066 ], [ -82.001650548999976, 28.948797035000041 ], [ -82.001761942999963, 28.948816630000067 ], [ -82.00183702299995, 28.94881650700006 ], [ -82.001924962999965, 28.948799661000066 ], [ -82.002326749999952, 28.948701335000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001591942999937, 28.948784498000066 ], [ -82.00157560599996, 28.94884720400006 ], [ -82.001562548999971, 28.948901873000068 ], [ -82.001536929999986, 28.94900769000003 ], [ -82.001512424999987, 28.949114488000077 ], [ -82.001485011999989, 28.949234331000071 ], [ -82.001459832999956, 28.94936980500006 ], [ -82.001440456999944, 28.949479931000042 ], [ -82.001423315999943, 28.949600464000071 ], [ -82.001403266999944, 28.94973959400005 ], [ -82.00138878599995, 28.949845411000069 ], [ -82.001372078999964, 28.94996298500007 ], [ -82.001360939999984, 28.950051166000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001728574999959, 28.94810648400005 ], [ -82.001908288999971, 28.948120851000056 ], [ -82.001972512999942, 28.948118994000026 ], [ -82.002519004999954, 28.948002624000026 ], [ -82.002977462999979, 28.947912677000033 ], [ -82.003398325999967, 28.947838931000035 ], [ -82.003666924999948, 28.947811837000074 ], [ -82.003871898999989, 28.947809734000032 ], [ -82.003998827999965, 28.947822362000068 ], [ -82.004108321, 28.947841921000077 ], [ -82.004347840999969, 28.947909629000037 ], [ -82.00460960199996, 28.947998406000067 ], [ -82.004879917999972, 28.948087179000026 ], [ -82.005122913999969, 28.948169152000048 ], [ -82.00529867299997, 28.948246441000038 ], [ -82.00541291899998, 28.948335325000073 ], [ -82.005508775999942, 28.94843234700005 ], [ -82.005563978999987, 28.948464707000028 ], [ -82.005628699999988, 28.948498972000039 ], [ -82.005699131999961, 28.948518007000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972858899999949, 28.891845702000069 ], [ -81.97294444399995, 28.891866333000053 ], [ -81.973116715999936, 28.891917129000035 ], [ -81.973231461999944, 28.891951198000072 ], [ -81.973339092999936, 28.891988110000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970729621999965, 28.890605854000057 ], [ -81.971177076999936, 28.890592592000075 ], [ -81.971963939999966, 28.890572354000028 ], [ -81.972519381999973, 28.890562193000051 ], [ -81.972686181999961, 28.890556355000058 ], [ -81.972903016999965, 28.890565207000066 ], [ -81.973094668999977, 28.890587487000062 ], [ -81.973266145999958, 28.890619838000077 ], [ -81.973554016999969, 28.890700682000045 ], [ -81.973833136999986, 28.89080212500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973553316999983, 28.891388527000061 ], [ -81.973833136999986, 28.89080212500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973339092999936, 28.891988110000057 ], [ -81.973362134999945, 28.89189796900007 ], [ -81.973385112999949, 28.891805745000056 ], [ -81.973401302999946, 28.891751108000051 ], [ -81.973430098999984, 28.891662994000058 ], [ -81.973496891999957, 28.891503985000043 ], [ -81.973553316999983, 28.891388527000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971348388999957, 28.891223461000038 ], [ -81.971360693999941, 28.891223464000063 ], [ -81.971429054999987, 28.891222448000065 ], [ -81.971758942999941, 28.891218047000052 ], [ -81.972396065999988, 28.89119652200003 ], [ -81.972732984999936, 28.891191090000063 ], [ -81.972921196999948, 28.891210666000063 ], [ -81.97311702099995, 28.891248172000076 ], [ -81.973208545999967, 28.89127067000004 ], [ -81.97333940599998, 28.891315316000032 ], [ -81.973553316999983, 28.891388527000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973833136999986, 28.89080212500005 ], [ -81.973868831999937, 28.890734269000063 ], [ -81.973939074999976, 28.890590454000062 ], [ -81.973975923999944, 28.890506392000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973975923999944, 28.890506392000077 ], [ -81.974104814999976, 28.890555036000023 ], [ -81.974177373999964, 28.890579136000042 ], [ -81.974261848999959, 28.890595544000064 ], [ -81.974338228999954, 28.890595294000036 ], [ -81.974403465999956, 28.890589805000047 ], [ -81.974489406999965, 28.890576759000055 ], [ -81.974596244999987, 28.890564058000052 ], [ -81.974659530999986, 28.890554789000078 ], [ -81.974741368999958, 28.890543115000071 ], [ -81.97487184199997, 28.890524920000075 ], [ -81.975002313999937, 28.890517038000041 ], [ -81.975144503999957, 28.890509156000064 ], [ -81.975263061999954, 28.890504021000027 ], [ -81.975408374999972, 28.89049889100005 ], [ -81.975586307999947, 28.890493767000066 ], [ -81.975698417999979, 28.890495506000036 ], [ -81.975746268999956, 28.890496203000055 ], [ -81.975947830999985, 28.890501396000047 ], [ -81.976188066999953, 28.890509345000055 ], [ -81.976422241999956, 28.890530357000046 ], [ -81.976650361999987, 28.890556524000033 ], [ -81.976888023999948, 28.890586653000071 ], [ -81.97707160899995, 28.890617126000052 ], [ -81.977246240999989, 28.890660790000027 ], [ -81.977390882999941, 28.890696797000032 ], [ -81.977510608999978, 28.890734283000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973975923999944, 28.890506392000077 ], [ -81.974085316999947, 28.890283579000027 ], [ -81.974164770999948, 28.890113431000032 ], [ -81.974299506999955, 28.889791362000039 ], [ -81.974449213999947, 28.889424727000062 ], [ -81.974504368999987, 28.88929343600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971747706999963, 28.887987903000067 ], [ -81.971710384999938, 28.888053900000045 ], [ -81.971668167999951, 28.888168027000063 ], [ -81.97165758899996, 28.888282158000038 ], [ -81.971650526999952, 28.888399385000071 ], [ -81.971654015999945, 28.888498051000056 ], [ -81.971670834999941, 28.888558334000038 ], [ -81.971723955999948, 28.888617864000025 ], [ -81.971789159999958, 28.88865614100007 ], [ -81.971856785999989, 28.888671034000026 ], [ -81.97194166099996, 28.888671032000047 ], [ -81.972509625999976, 28.888658773000031 ], [ -81.973579151999957, 28.888624953000033 ], [ -81.974467047999951, 28.888608254000076 ], [ -81.97457576499994, 28.888614630000063 ], [ -81.974738280999986, 28.888634736000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974738280999986, 28.888634736000029 ], [ -81.974820572999988, 28.888654366000026 ], [ -81.97498346499998, 28.888711098000044 ], [ -81.975209340999982, 28.88879572500008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974504368999987, 28.88929343600006 ], [ -81.974616190999939, 28.889029736000055 ], [ -81.974681833999966, 28.888853507000078 ], [ -81.974715237999987, 28.888736020000067 ], [ -81.974738280999986, 28.888634736000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974738280999986, 28.888634736000029 ], [ -81.974748652999949, 28.888573965000035 ], [ -81.974761342999955, 28.888445331000071 ], [ -81.974768274999974, 28.888334929000052 ], [ -81.974768338999979, 28.88807259400005 ], [ -81.974767860999975, 28.887969041000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974767860999975, 28.887969041000076 ], [ -81.97496975699994, 28.888016922000077 ], [ -81.975334712999938, 28.888141933000043 ], [ -81.975667881999982, 28.888266441000042 ], [ -81.975850156999968, 28.888325020000025 ], [ -81.975977777999958, 28.888342323000074 ], [ -81.976107035999974, 28.88834954500004 ], [ -81.976205209999989, 28.888342363000049 ], [ -81.976324654999985, 28.888330863000078 ], [ -81.976670210999941, 28.88826386900007 ], [ -81.977082524999958, 28.888189339000064 ], [ -81.977196393999975, 28.888171139000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974770716999956, 28.887599193000028 ], [ -81.974774232999948, 28.887497278000069 ], [ -81.974804196999969, 28.887325095000051 ], [ -81.974841069999968, 28.887137719000066 ], [ -81.974867569999958, 28.887014152000063 ], [ -81.974889468999947, 28.886880456000029 ], [ -81.974905623999973, 28.886705232000054 ], [ -81.974909206999939, 28.886603886000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974252786999955, 28.886874312000032 ], [ -81.974272430999974, 28.886837595000031 ], [ -81.974290543999984, 28.886804033000033 ], [ -81.974301297999943, 28.886759468000037 ], [ -81.974305969999989, 28.886479915000052 ], [ -81.974309135999988, 28.886085567000066 ], [ -81.97428614599994, 28.885950917000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974909206999939, 28.886603886000046 ], [ -81.974894349999943, 28.886424043000034 ], [ -81.974874471999954, 28.886293809000051 ], [ -81.974851839999985, 28.886174883000024 ], [ -81.974815689999957, 28.886028758000066 ], [ -81.974772915999949, 28.88588124100005 ], [ -81.974731198999962, 28.885749370000042 ], [ -81.974635340999953, 28.885490086000061 ], [ -81.974533371999939, 28.885257748000072 ], [ -81.974442883999984, 28.885071362000076 ], [ -81.974297856999954, 28.884805023000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974297856999954, 28.884805023000069 ], [ -81.974237356999936, 28.884702635000053 ], [ -81.974202085999934, 28.884613494000064 ], [ -81.974166816999968, 28.884516250000047 ], [ -81.974143824999942, 28.884421712000062 ], [ -81.974122378999937, 28.88426910000004 ], [ -81.974119344999963, 28.884127296000031 ], [ -81.974127038999939, 28.884040865000031 ], [ -81.974137800999983, 28.883958485000051 ], [ -81.974191562999977, 28.883728910000059 ], [ -81.974355924999941, 28.883009122000033 ], [ -81.974445017999983, 28.882625594000046 ], [ -81.974482740999974, 28.882405727000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974482740999974, 28.882405727000048 ], [ -81.974501869999983, 28.882301483000049 ], [ -81.974512650999941, 28.88214212500003 ], [ -81.974526542999968, 28.881801799000073 ], [ -81.974530392999952, 28.881564775000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976533318999941, 28.880885749000072 ], [ -81.976857898999981, 28.880955527000026 ], [ -81.977081123999938, 28.881013291000045 ], [ -81.97713142799995, 28.881035981000025 ], [ -81.97716578099994, 28.88106190600007 ], [ -81.977191542999947, 28.881088911000063 ], [ -81.97721116699995, 28.881129953000027 ], [ -81.97722220299994, 28.881167756000025 ], [ -81.977224948999947, 28.88120217200003 ], [ -81.977181410999947, 28.881660654000029 ], [ -81.977170722999972, 28.881787154000051 ], [ -81.977159101999973, 28.881911292000041 ], [ -81.977151353999943, 28.881998019000036 ], [ -81.977135883999949, 28.882055835000074 ], [ -81.97711432899996, 28.882096898000043 ], [ -81.977059242999985, 28.882147424000038 ], [ -81.976989710999987, 28.88217903900005 ], [ -81.976903997999955, 28.882191841000065 ], [ -81.97678033699998, 28.882205423000073 ], [ -81.976650881999944, 28.882208802000036 ], [ -81.976577462999956, 28.882198587000062 ], [ -81.976525299999935, 28.882173068000043 ], [ -81.97648828399997, 28.882147155000041 ], [ -81.976466424999956, 28.882120816000054 ], [ -81.976446866999936, 28.88209549100003 ], [ -81.976434213999937, 28.882069153000032 ], [ -81.976427315999956, 28.882033701000069 ], [ -81.976426806999939, 28.88197408700006 ], [ -81.976446177999946, 28.881749616000036 ], [ -81.976463610999986, 28.881560857000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983801834999952, 28.877932328000043 ], [ -81.984059796999986, 28.878056603000061 ], [ -81.984437001999936, 28.878264435000062 ], [ -81.984686199999942, 28.87840544200003 ], [ -81.984867350999934, 28.87853068700008 ], [ -81.985056455999938, 28.87867198400005 ], [ -81.985256921999962, 28.878853875000061 ], [ -81.985424079999973, 28.878996936000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001891064999938, 28.944679763000067 ], [ -82.001985979999972, 28.944990285000074 ], [ -82.00202029999997, 28.945094078000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001891064999938, 28.944679763000067 ], [ -82.002458500999978, 28.944544301000064 ], [ -82.002771358999951, 28.944464539000023 ], [ -82.003252564999968, 28.944339860000071 ], [ -82.003404397999986, 28.944321219000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001435101999959, 28.944168973000046 ], [ -82.001576196999963, 28.944286546000058 ], [ -82.001662339999939, 28.944355783000049 ], [ -82.001742684999954, 28.944432678000055 ], [ -82.00178858299995, 28.944482501000039 ], [ -82.001827197999944, 28.94453214400005 ], [ -82.001852447999966, 28.944577866000031 ], [ -82.001876211999956, 28.944631427000047 ], [ -82.001891064999938, 28.944679763000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000935379999987, 28.943534192000072 ], [ -82.000944466999954, 28.943593682000028 ], [ -82.00096971399995, 28.943686190000051 ], [ -82.000992511999982, 28.943730032000076 ], [ -82.001016266999954, 28.943774715000075 ], [ -82.001068257999975, 28.943838462000031 ], [ -82.001152024999953, 28.943916758000057 ], [ -82.001387157999943, 28.94412514000004 ], [ -82.001416437999978, 28.944157139000026 ], [ -82.001435101999959, 28.944168973000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000893875999964, 28.937049670000079 ], [ -82.000898979999988, 28.937753943000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000893875999964, 28.937049670000079 ], [ -82.002113502999975, 28.937050635000048 ], [ -82.002140234999956, 28.937048676000074 ], [ -82.002160283999956, 28.937044756000034 ], [ -82.002179217999981, 28.937037898000028 ], [ -82.002192584999989, 28.937032018000025 ], [ -82.002208176999943, 28.937026140000057 ], [ -82.002221542999962, 28.937017321000042 ], [ -82.002248274999943, 28.937002624000058 ], [ -82.002452380999955, 28.936846377000052 ], [ -82.002511020999975, 28.936812868000061 ], [ -82.002628301999948, 28.936754228000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001329128999942, 28.934000192000042 ], [ -82.001295234999986, 28.934013609000033 ], [ -82.001269812999965, 28.93402255500007 ], [ -82.001237612999944, 28.934032991000038 ], [ -82.001213209999946, 28.934044620000066 ], [ -82.001190160999954, 28.934055354000066 ], [ -82.001168468999936, 28.934066089000055 ], [ -82.001141351999934, 28.934082786000033 ], [ -82.001122371999941, 28.934094714000025 ], [ -82.001102034999974, 28.934109026000044 ], [ -82.001085764999971, 28.934123338000063 ], [ -82.001068140999962, 28.934141229000033 ], [ -82.001031426999987, 28.93417422400006 ], [ -82.001018334999969, 28.934189694000054 ], [ -82.00100602599997, 28.934205508000048 ], [ -82.000999968999963, 28.934213414000055 ], [ -82.000994107999986, 28.934221665000052 ], [ -82.000988440999947, 28.934229572000049 ], [ -82.000982969999939, 28.934238167000046 ], [ -82.000977692999982, 28.934246417000054 ], [ -82.000972612999988, 28.934255012000051 ], [ -82.000967532999937, 28.934263262000059 ], [ -82.000962648999973, 28.934271857000056 ], [ -82.000958153999989, 28.934280795000063 ], [ -82.000953660999983, 28.934289389000071 ], [ -82.000949361999972, 28.934298328000068 ], [ -82.000945257999945, 28.934307266000076 ], [ -82.000941349999948, 28.934316203000037 ], [ -82.000937442999941, 28.934325142000034 ], [ -82.000933925999959, 28.934334080000042 ], [ -82.000930603999961, 28.934343363000039 ], [ -82.000927281999964, 28.934352644000057 ], [ -82.00092415599994, 28.934361582000065 ], [ -82.000921419999941, 28.934370865000062 ], [ -82.000918685999977, 28.934380146000024 ], [ -82.000916145999952, 28.934389773000078 ], [ -82.000913995999952, 28.934399054000039 ], [ -82.000911846999941, 28.934408336000047 ], [ -82.000909892999971, 28.934417961000065 ], [ -82.000908133999985, 28.934427244000062 ], [ -82.000906570999973, 28.934436869000024 ], [ -82.000905202999945, 28.934446496000078 ], [ -82.000904031999937, 28.934455777000039 ], [ -82.000903054999981, 28.934465403000047 ], [ -82.000902272999951, 28.934475028000065 ], [ -82.000901686999953, 28.934484654000073 ], [ -82.000901295999938, 28.934494280000024 ], [ -82.000901100999954, 28.934505280000053 ], [ -82.00089387099996, 28.936405948000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00089387099996, 28.936405948000072 ], [ -82.000893875999964, 28.937049670000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001617844999942, 28.936406920000024 ], [ -82.00089387099996, 28.936405948000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001690104999966, 28.933724379000068 ], [ -82.001787098999955, 28.933802638000031 ], [ -82.001906275999943, 28.933898656000054 ], [ -82.002033493999988, 28.934003984000071 ], [ -82.002126571999952, 28.934079562000079 ], [ -82.002193637999937, 28.934129882000036 ], [ -82.002285258999962, 28.934195559000045 ], [ -82.002362934999951, 28.934243535000064 ], [ -82.002402982999968, 28.934263127000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002402982999968, 28.934263127000065 ], [ -82.002491021999958, 28.934308760000079 ], [ -82.002555644999973, 28.934336045000066 ], [ -82.002622448999944, 28.93435914500003 ], [ -82.002690390999987, 28.93438265900005 ], [ -82.002768356999979, 28.934403232000079 ], [ -82.002849663999939, 28.934419887000047 ], [ -82.00292985699997, 28.934433603000059 ], [ -82.002994456999943, 28.934441439000068 ], [ -82.003064626999958, 28.934447316000046 ], [ -82.003121429999965, 28.934451236000029 ], [ -82.003169156999945, 28.934453646000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004011830999957, 28.934230027000069 ], [ -82.004034936999972, 28.934219017000032 ], [ -82.004132483999967, 28.934168660000068 ], [ -82.004220563, 28.934127637000074 ], [ -82.004336258999956, 28.934072496000056 ], [ -82.004426081999952, 28.934030394000047 ], [ -82.004556302999958, 28.933969534000028 ], [ -82.004650598999945, 28.933924795000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004650598999945, 28.933924795000053 ], [ -82.004679094999972, 28.933911120000062 ], [ -82.004776672999981, 28.933864778000043 ], [ -82.004882886999951, 28.933813877000034 ], [ -82.005018458999984, 28.933748541000057 ], [ -82.005124671999965, 28.933699920000038 ], [ -82.005287738999982, 28.933618355000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005287738999982, 28.933618355000078 ], [ -82.005437264999955, 28.933538861000045 ], [ -82.005621192999968, 28.933428703000061 ], [ -82.005716179999979, 28.933367167000029 ], [ -82.005819800999973, 28.933301072000063 ], [ -82.005906150999976, 28.933240297000054 ], [ -82.006010634999939, 28.933164326000053 ], [ -82.006107304999944, 28.933095622000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006107304999944, 28.933095622000053 ], [ -82.006279202999963, 28.933297253000035 ], [ -82.006393196999966, 28.933430188000045 ], [ -82.006485600999952, 28.93353425600003 ], [ -82.006534428999942, 28.933578749000048 ], [ -82.00658145999995, 28.933614775000024 ], [ -82.006676453999944, 28.933674783000072 ], [ -82.006864711999981, 28.933778086000075 ], [ -82.007030516999976, 28.933867716000066 ], [ -82.007205823999982, 28.933963424000069 ], [ -82.007374220999964, 28.93405533300006 ], [ -82.007511529999988, 28.934131291000028 ], [ -82.007611703999942, 28.934185222000053 ], [ -82.007707560999961, 28.934226237000075 ], [ -82.007805142999985, 28.934257377000051 ], [ -82.007882863999953, 28.934274086000073 ], [ -82.007961446999957, 28.934283196000024 ], [ -82.008067609999955, 28.93428913200006 ], [ -82.008182515999977, 28.934288501000026 ], [ -82.008368176999966, 28.934289249000074 ], [ -82.008571110999981, 28.934289996000075 ], [ -82.008751591999953, 28.934289985000078 ], [ -82.008958843999949, 28.934290730000043 ], [ -82.009128097999962, 28.934291479000024 ], [ -82.009362118999945, 28.934290703000045 ], [ -82.009592684999973, 28.934290686000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009594677999985, 28.932767566000052 ], [ -82.009592684999973, 28.934290686000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009592684999973, 28.934290686000054 ], [ -82.009837068999957, 28.934291429000041 ], [ -82.010050364999984, 28.934291413000039 ], [ -82.010224799999946, 28.934291400000063 ], [ -82.010312018999969, 28.934292154000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011030767999955, 28.931639995000069 ], [ -82.011034806999987, 28.934292854000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010312018999969, 28.934292154000048 ], [ -82.010440686999971, 28.93429214400004 ], [ -82.01078092399996, 28.934292117000041 ], [ -82.011034806999987, 28.934292854000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011034806999987, 28.934292854000034 ], [ -82.011185902999955, 28.934294682000029 ], [ -82.011583156999961, 28.934294328000078 ], [ -82.011753739999961, 28.934295630000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013026997999987, 28.934231905000047 ], [ -82.01314309299994, 28.934486324000034 ], [ -82.013180580999972, 28.934592869000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01232528099996, 28.934292147000065 ], [ -82.012419068999975, 28.93429121500003 ], [ -82.012630637999962, 28.934293474000071 ], [ -82.012774850999961, 28.934290422000061 ], [ -82.012861202999943, 28.934280538000053 ], [ -82.012924240999951, 28.934266100000059 ], [ -82.013026997999987, 28.934231905000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013480278999964, 28.932506557000067 ], [ -82.013654136999946, 28.932504514000073 ], [ -82.013795756999968, 28.932503487000076 ], [ -82.01388901699994, 28.932503477000068 ], [ -82.013961553999934, 28.932503470000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013961553999934, 28.932503470000029 ], [ -82.014037544999951, 28.932503462000057 ], [ -82.014187222999965, 28.932502433000025 ], [ -82.014422102999958, 28.932500383000047 ], [ -82.014620139999977, 28.932499349000068 ], [ -82.014980519999938, 28.932502347000025 ], [ -82.015304055999934, 28.932501298000034 ], [ -82.015549297999939, 28.932500257000072 ], [ -82.015852109999969, 28.932501235000075 ], [ -82.015999485999941, 28.932501217000038 ], [ -82.016030571999977, 28.932498175000035 ], [ -82.016058202999943, 28.932483991000026 ], [ -82.016085832999977, 28.932462718000068 ], [ -82.016106553999975, 28.93243638000007 ], [ -82.016118062999965, 28.932407006000062 ], [ -82.016121512999973, 28.932379659000048 ], [ -82.01612149999994, 28.932298628000069 ], [ -82.016122635999977, 28.932201391000035 ], [ -82.01612262499998, 28.932130491000066 ], [ -82.016124917999946, 28.932067693000079 ], [ -82.016122607999989, 28.932018063000044 ], [ -82.016112239999984, 28.931985651000048 ], [ -82.01608805799998, 28.931959319000043 ], [ -82.016056967999987, 28.931941091000056 ], [ -82.016014365999979, 28.931925903000035 ], [ -82.015949886999977, 28.931920847000072 ], [ -82.015870441999937, 28.931919844000049 ], [ -82.015751852999983, 28.931919857000025 ], [ -82.01561714199994, 28.931919873000027 ], [ -82.015461707999975, 28.931918878000033 ], [ -82.015256763999957, 28.931918902000064 ], [ -82.015057576999936, 28.931919937000032 ], [ -82.014843422999945, 28.931918948000032 ], [ -82.014628260999984, 28.93192061700006 ], [ -82.014457715999981, 28.931920003000073 ], [ -82.014283858999988, 28.931920021000053 ], [ -82.014144542999986, 28.931920036000065 ], [ -82.014067833999945, 28.931922956000051 ], [ -82.014044518999981, 28.931928275000075 ], [ -82.014024802999984, 28.931937267000023 ], [ -82.014006525999946, 28.93194955000007 ], [ -82.013990122999985, 28.931967023000027 ], [ -82.013976308999986, 28.931987536000065 ], [ -82.013967187999981, 28.932015701000068 ], [ -82.013964225999985, 28.932037675000061 ], [ -82.013961498999947, 28.932102371000042 ], [ -82.013960357999963, 28.932168209000054 ], [ -82.013960367999971, 28.932245187000035 ], [ -82.013960382999983, 28.932358628000031 ], [ -82.013961553999934, 28.932503470000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017612750999945, 28.932354085000043 ], [ -82.017605872, 28.932284299000059 ], [ -82.017602341999975, 28.931835597000031 ], [ -82.017605787999969, 28.931791030000056 ], [ -82.017614991999949, 28.931750514000043 ], [ -82.017631105999953, 28.931717088000028 ], [ -82.017652975999965, 28.931678595000051 ], [ -82.01768405699994, 28.931645167000056 ], [ -82.017713986999979, 28.931616801000075 ], [ -82.017751978999968, 28.931596540000044 ], [ -82.017788818999975, 28.931578303000038 ], [ -82.017832569999939, 28.931567156000028 ], [ -82.017880333999983, 28.931562505000045 ], [ -82.017933887999959, 28.931559038000046 ], [ -82.018431276999934, 28.931559985000035 ], [ -82.019817878999959, 28.931565631000069 ], [ -82.019839565999973, 28.931570157000067 ], [ -82.019883023999967, 28.931584960000066 ], [ -82.019922649999955, 28.931606536000061 ], [ -82.019957094999938, 28.931634150000036 ], [ -82.019985184999939, 28.931666862000043 ], [ -82.020005963999949, 28.931703556000059 ], [ -82.020018724999943, 28.931742986000074 ], [ -82.020023032999973, 28.931783808000034 ], [ -82.020023083999945, 28.932048173000055 ], [ -82.020023137999942, 28.932331571000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020088351999959, 28.936535703000061 ], [ -82.020087531999934, 28.936816951000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020092630999955, 28.934949063000033 ], [ -82.020095354999967, 28.935261235000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017946739999957, 28.936331700000039 ], [ -82.017884841999944, 28.936444599000026 ], [ -82.017875636999975, 28.936481065000066 ], [ -82.017872160999957, 28.936524396000038 ], [ -82.017869519999977, 28.936625569000057 ], [ -82.017869571999938, 28.936925379000058 ], [ -82.017870384999981, 28.937197504000039 ], [ -82.017870432999985, 28.937476606000075 ], [ -82.017859531999989, 28.937706631000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017946739999957, 28.936331700000039 ], [ -82.017857260999961, 28.936248137000064 ], [ -82.01769864399995, 28.936097257000029 ], [ -82.017581751999955, 28.936003197000048 ], [ -82.017536843999949, 28.935982945000035 ], [ -82.017486177999956, 28.935969785000054 ], [ -82.017447030999961, 28.93596573800005 ], [ -82.017407881999986, 28.935966755000038 ], [ -82.017356069999948, 28.935977904000026 ], [ -82.017315774999986, 28.93599209000007 ], [ -82.017266267999958, 28.936017417000073 ], [ -82.017227123999987, 28.936048821000043 ], [ -82.017194890999974, 28.936087315000066 ], [ -82.017175321999957, 28.936121755000045 ], [ -82.017164964999949, 28.936149105000027 ], [ -82.017156911999962, 28.936188607000076 ], [ -82.01715348099998, 28.936329397000065 ], [ -82.017154667999989, 28.93655324100007 ], [ -82.017154704999939, 28.936775061000048 ], [ -82.017154732999984, 28.936940160000063 ], [ -82.017154771999969, 28.937181222000049 ], [ -82.017154804999961, 28.937379745000044 ], [ -82.017154858999959, 28.937708929000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01865338999994, 28.936980270000049 ], [ -82.018583644999978, 28.936919712000076 ], [ -82.018379532999973, 28.936729789000026 ], [ -82.018298121999976, 28.936655244000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017859531999989, 28.937706631000026 ], [ -82.017697182999939, 28.937708859000054 ], [ -82.017443867999987, 28.937708892000046 ], [ -82.017275758999972, 28.937708914000041 ], [ -82.017154858999959, 28.937708929000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01865338999994, 28.936980270000049 ], [ -82.018620994999935, 28.937041915000066 ], [ -82.018603246999987, 28.937075691000075 ], [ -82.018597493999948, 28.937101015000053 ], [ -82.018591742999945, 28.937134440000079 ], [ -82.018591845999936, 28.93771076400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018591845999936, 28.93771076400003 ], [ -82.018465187999936, 28.937710782000067 ], [ -82.018338910999944, 28.937710499000048 ], [ -82.018181935999962, 28.937709806000043 ], [ -82.017963649999956, 28.937706631000026 ], [ -82.017859531999989, 28.937706631000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019924051999965, 28.93771057400005 ], [ -82.019654617999947, 28.937710613000036 ], [ -82.019547533999969, 28.937710629000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019547533999969, 28.937710629000037 ], [ -82.019380576999936, 28.937711665000052 ], [ -82.019137623999939, 28.937710688000038 ], [ -82.018922306999968, 28.937710718000062 ], [ -82.018754795999939, 28.937710499000048 ], [ -82.018609718999983, 28.937710499000048 ], [ -82.018591845999936, 28.93771076400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019545108999978, 28.93706239100004 ], [ -82.019545156999982, 28.937320673000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019545156999982, 28.937320673000045 ], [ -82.019547533999969, 28.937710629000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019545156999982, 28.937320673000045 ], [ -82.01946225599994, 28.937320685000032 ], [ -82.019395471999985, 28.937320695000039 ], [ -82.019319476999954, 28.937311590000036 ], [ -82.019250387999989, 28.937296407000076 ], [ -82.019160570999986, 28.937269072000049 ], [ -82.019081117999974, 28.937239710000028 ], [ -82.019010875999982, 28.937210347000075 ], [ -82.018952147999983, 28.93718199500006 ], [ -82.018902630999946, 28.937154654000039 ], [ -82.018848507999962, 28.937123262000057 ], [ -82.018778263999934, 28.937077692000059 ], [ -82.01865338999994, 28.936980270000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015128209999943, 28.934294288000046 ], [ -82.015294009999934, 28.934294269000077 ], [ -82.015488467999944, 28.934294247000025 ], [ -82.015605143999949, 28.934294234000049 ], [ -82.015684974999942, 28.934305029000029 ], [ -82.01573000999997, 28.934326632000079 ], [ -82.015772997999989, 28.934348235000073 ], [ -82.015814614999954, 28.934391082000047 ], [ -82.015835489999972, 28.934431583000048 ], [ -82.015851249999969, 28.934490175000064 ], [ -82.015852912999947, 28.93467570100006 ], [ -82.01585132799994, 28.935006483000052 ], [ -82.015853014999948, 28.935350210000024 ], [ -82.015854700999967, 28.935679554000046 ], [ -82.015851469999973, 28.935935552000046 ], [ -82.01585648799994, 28.936304817000064 ], [ -82.015853226, 28.936735182000064 ], [ -82.015853257999936, 28.936946596000041 ], [ -82.015854934999936, 28.937215537000043 ], [ -82.015851698999938, 28.937441331000059 ], [ -82.015854993999938, 28.937603846000059 ], [ -82.015851746999942, 28.937760609000065 ], [ -82.015845774999946, 28.937819447000038 ], [ -82.015830507999965, 28.937856970000041 ], [ -82.015788007999959, 28.93790874900003 ], [ -82.015734060999989, 28.937944711000057 ], [ -82.015681745999984, 28.937963413000034 ], [ -82.015565504999984, 28.937962643000049 ], [ -82.015405014999942, 28.937962662000075 ], [ -82.015262609999979, 28.937962678000076 ], [ -82.015131505999989, 28.937962693000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015128209999943, 28.934294288000046 ], [ -82.015135230999988, 28.93604139100006 ], [ -82.01513532499996, 28.93669010900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014411786999972, 28.934294367000064 ], [ -82.014579634999961, 28.934294349000027 ], [ -82.014841640999975, 28.934294320000049 ], [ -82.015128209999943, 28.934294288000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014411786999972, 28.934294367000064 ], [ -82.014407969999979, 28.934822793000023 ], [ -82.014411219999943, 28.935720392000064 ], [ -82.014415664999945, 28.936686214000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01359507899997, 28.934398890000068 ], [ -82.013642153999967, 28.934366474000058 ], [ -82.013697416999946, 28.934339458000068 ], [ -82.013773148999974, 28.934312441000031 ], [ -82.013848884999959, 28.934298027000068 ], [ -82.013947135999956, 28.934296217000053 ], [ -82.014188671999989, 28.934296192000033 ], [ -82.014411786999972, 28.934294367000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01359507899997, 28.934398890000068 ], [ -82.013657260999935, 28.93449309500005 ], [ -82.013682131999985, 28.934542804000046 ], [ -82.013691176999941, 28.934578594000072 ], [ -82.013691882999979, 28.934680877000062 ], [ -82.013689, 28.935044935000064 ], [ -82.013689087999978, 28.935713581000073 ], [ -82.013697272999934, 28.936690464000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013180580999972, 28.934592869000028 ], [ -82.013316716999952, 28.934557377000033 ], [ -82.013371982999956, 28.934544767000034 ], [ -82.01341701299998, 28.934528556000032 ], [ -82.01346818199994, 28.934499741000025 ], [ -82.013541864999979, 28.934443912000063 ], [ -82.01359507899997, 28.934398890000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012063492999971, 28.93723699800006 ], [ -82.01237253499994, 28.937295964000043 ], [ -82.012690693999957, 28.937321454000028 ], [ -82.013106231999984, 28.937328616000059 ], [ -82.013698320999936, 28.937330537000037 ], [ -82.014401303999989, 28.937330463000023 ], [ -82.014939279999965, 28.937330405000068 ], [ -82.015131413999939, 28.937328395000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012344666999979, 28.936586816000045 ], [ -82.012299643999938, 28.936673252000048 ], [ -82.012223923999954, 28.936828116000072 ], [ -82.012152299999968, 28.937000987000033 ], [ -82.012090909999984, 28.937163050000038 ], [ -82.012063492999971, 28.93723699800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012344666999979, 28.936586816000045 ], [ -82.012389639999981, 28.936602472000061 ], [ -82.012525643999936, 28.936644400000034 ], [ -82.012679426999966, 28.936672919000046 ], [ -82.012862909999967, 28.936688371000059 ], [ -82.013297675, 28.936693486000024 ], [ -82.013697272999934, 28.936690464000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011337758999957, 28.938423579000073 ], [ -82.011824946, 28.938425339000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011895500999969, 28.937895523000066 ], [ -82.011883863999969, 28.937948781000046 ], [ -82.011872227999959, 28.938019452000049 ], [ -82.011848811999982, 28.938191116000041 ], [ -82.011824946, 28.938425339000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011824946, 28.938425339000048 ], [ -82.011817384999972, 28.938482183000076 ], [ -82.011817409999935, 28.938707700000066 ], [ -82.011817426999983, 28.938850712000033 ], [ -82.011817439999959, 28.938965876000054 ], [ -82.011819118999938, 28.939056723000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012145870999973, 28.935795737000035 ], [ -82.012084425999944, 28.935971152000036 ], [ -82.012067577999971, 28.936039534000031 ], [ -82.01202892699996, 28.936148549000052 ], [ -82.011962085999983, 28.936288309000076 ], [ -82.011847667999973, 28.936508362000041 ], [ -82.011738153999943, 28.936739919000047 ], [ -82.011654798999984, 28.93695565400003 ], [ -82.01157961499996, 28.937157006000064 ], [ -82.011517510999965, 28.937365548000059 ], [ -82.011458678999986, 28.937592787000028 ], [ -82.011417825999956, 28.937772564000056 ], [ -82.011390048999942, 28.937920699000074 ], [ -82.011362287999987, 28.938104861000056 ], [ -82.011337758999957, 28.938423579000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011241360999975, 28.935927523000032 ], [ -82.011156516999961, 28.936088534000078 ], [ -82.011037686999941, 28.936337853000055 ], [ -82.010942489999934, 28.93654732300007 ], [ -82.010862678999956, 28.936747203000039 ], [ -82.010791056999949, 28.93695428500007 ], [ -82.010741947999975, 28.937134354000079 ], [ -82.010696933999952, 28.937330630000076 ], [ -82.010664201999987, 28.937517903000071 ], [ -82.010645071999988, 28.937679299000024 ], [ -82.01062828299996, 28.937842595000063 ], [ -82.010615600999984, 28.938032360000079 ], [ -82.010615166999969, 28.938425439000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010615166999969, 28.938425439000071 ], [ -82.011337758999957, 28.938423579000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009902809999971, 28.938425494000057 ], [ -82.010615166999969, 28.938425439000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010346476999985, 28.935881455000072 ], [ -82.010277784999971, 28.936047709000036 ], [ -82.010191019999979, 28.936307266000028 ], [ -82.010100001999945, 28.936565621000057 ], [ -82.010023665999938, 28.936796848000029 ], [ -82.009975225999938, 28.936990613000035 ], [ -82.009934204999979, 28.937193500000035 ], [ -82.009915269999965, 28.937398049000024 ], [ -82.009902589999967, 28.93762459800007 ], [ -82.009898516999954, 28.937946029000045 ], [ -82.009902809999971, 28.938425494000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009184311999945, 28.93842554500003 ], [ -82.009520019999968, 28.938425521000056 ], [ -82.009902809999971, 28.938425494000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008465813999976, 28.938423791000048 ], [ -82.009184311999945, 28.93842554500003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009477581999988, 28.935877271000038 ], [ -82.009408360999942, 28.93604625100005 ], [ -82.009333409999954, 28.936318261000054 ], [ -82.009280673999967, 28.936554439000076 ], [ -82.009236338999983, 28.936797836000039 ], [ -82.009206852999966, 28.93700582200006 ], [ -82.009189868999954, 28.937191462000044 ], [ -82.009182172999942, 28.937386563000075 ], [ -82.009178105999979, 28.937692675000051 ], [ -82.009184311999945, 28.93842554500003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008459722999987, 28.93905402300004 ], [ -82.008463311999947, 28.938790853000057 ], [ -82.008463294999956, 28.938577347000034 ], [ -82.008465813999976, 28.938423791000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008459722999987, 28.93905402300004 ], [ -82.008837033999953, 28.939053909000052 ], [ -82.009769812999934, 28.939053934000071 ], [ -82.010674594999955, 28.939055666000058 ], [ -82.011819118999938, 28.939056723000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008459773999959, 28.939686055000038 ], [ -82.009030894999967, 28.939686018000032 ], [ -82.010002195999959, 28.939691097000036 ], [ -82.011804909999967, 28.93968801300008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008459773999959, 28.939686055000038 ], [ -82.008459763999952, 28.939561809000054 ], [ -82.008459741999957, 28.939288109000074 ], [ -82.008459722999987, 28.93905402300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008459825999978, 28.940319887000044 ], [ -82.00845981599997, 28.940193841000053 ], [ -82.008459795999954, 28.93996695800007 ], [ -82.008459773999959, 28.939686055000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008459825999978, 28.940319887000044 ], [ -82.008877421999955, 28.940321662000031 ], [ -82.01023665699995, 28.940321565000033 ], [ -82.011802644999989, 28.940326840000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011804909999967, 28.93968801300008 ], [ -82.01180553599994, 28.939809585000035 ], [ -82.011804470999948, 28.939955498000074 ], [ -82.011808772999984, 28.940216999000029 ], [ -82.011802644999989, 28.940326840000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011802644999989, 28.940326840000068 ], [ -82.011806168999954, 28.940497548000053 ], [ -82.011806195999952, 28.940741629000058 ], [ -82.011806799999988, 28.940861635000033 ], [ -82.011806810999985, 28.940958871000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011806810999985, 28.940958871000078 ], [ -82.011806840999952, 28.941227169000058 ], [ -82.011808928999983, 28.941589102000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012518762999946, 28.941587520000041 ], [ -82.012409839999975, 28.941589491000059 ], [ -82.012257795999972, 28.941589505000024 ], [ -82.012067282999965, 28.941591133000031 ], [ -82.011808928999983, 28.941589102000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00846192399996, 28.940953721000028 ], [ -82.008850864999943, 28.940953696000065 ], [ -82.009243898999955, 28.940957270000069 ], [ -82.010151367999981, 28.940959746000033 ], [ -82.010985759999983, 28.940959681000038 ], [ -82.011806810999985, 28.940958871000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00846192399996, 28.940953721000028 ], [ -82.008461914999941, 28.940842079000049 ], [ -82.00846189799995, 28.940636805000054 ], [ -82.008459835999986, 28.940445934000024 ], [ -82.008459825999978, 28.940319887000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01396914999998, 28.939852032000033 ], [ -82.014021318999937, 28.939851998000051 ], [ -82.014130507999937, 28.939852015000042 ], [ -82.014258447999964, 28.939861698000072 ], [ -82.014356708999969, 28.939881494000076 ], [ -82.014468373999989, 28.939917640000033 ], [ -82.014566884999965, 28.939956797000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012551992999988, 28.938594529000056 ], [ -82.012539414999935, 28.938750791000075 ], [ -82.012528631999942, 28.939228036000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012528631999942, 28.939228036000031 ], [ -82.012527023999951, 28.939852174000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012528631999942, 28.939228036000031 ], [ -82.013596598999982, 28.939227432000052 ], [ -82.01435222899994, 28.939229073000035 ], [ -82.014561703999959, 28.939230769000062 ], [ -82.014634372999978, 28.939231583000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013241405999963, 28.939852105000057 ], [ -82.013249477999977, 28.941558023000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01396914999998, 28.939852032000033 ], [ -82.013970043999961, 28.941556149000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013970043999961, 28.941556149000064 ], [ -82.013734631999966, 28.941557975000023 ], [ -82.013448041999936, 28.941558004000058 ], [ -82.013249477999977, 28.941558023000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015135132999944, 28.941560609000078 ], [ -82.014986462999957, 28.941560174000074 ], [ -82.014775956999983, 28.941559414000039 ], [ -82.014440869999987, 28.941559701000074 ], [ -82.014168609999956, 28.941559730000051 ], [ -82.013970043999961, 28.941556149000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006760315999941, 28.935887130000026 ], [ -82.006581008999945, 28.935982540000055 ], [ -82.006019142999946, 28.936359356000025 ], [ -82.005970015999935, 28.936391770000057 ], [ -82.005940848999956, 28.936409328000025 ], [ -82.005904004999934, 28.93644039000003 ], [ -82.005880977999936, 28.936468752000053 ], [ -82.005851809999967, 28.936505216000057 ], [ -82.005841065999959, 28.936524125000062 ], [ -82.005830319999973, 28.93654573200007 ], [ -82.005682953999951, 28.936832044000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005682953999951, 28.936832044000028 ], [ -82.005839218999938, 28.936950248000073 ], [ -82.00589621599994, 28.936993546000053 ], [ -82.005927306, 28.937013296000032 ], [ -82.005946304999952, 28.937026208000077 ], [ -82.005973075999975, 28.937039881000032 ], [ -82.006034390999957, 28.937060389000067 ], [ -82.00611902199995, 28.937086213000043 ], [ -82.006281375999947, 28.937137862000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006917654999938, 28.936523796000074 ], [ -82.006785664999938, 28.936592407000035 ], [ -82.006625911999947, 28.936698765000074 ], [ -82.006554238999968, 28.936743589000059 ], [ -82.006496382999956, 28.936785373000077 ], [ -82.006471340999951, 28.936807404000035 ], [ -82.006450615999938, 28.936824117000072 ], [ -82.006434208999963, 28.936840071000063 ], [ -82.006416075999937, 28.936856785000032 ], [ -82.006401395999944, 28.936873497000079 ], [ -82.006384125999944, 28.936897047000059 ], [ -82.006370310999955, 28.936919078000074 ], [ -82.006353039999965, 28.936952503000043 ], [ -82.006323682999948, 28.937017075000028 ], [ -82.006308141999966, 28.937059617000045 ], [ -82.006281375999947, 28.937137862000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006987837999986, 28.937357663000057 ], [ -82.007056924999972, 28.937391084000069 ], [ -82.007246822999946, 28.937458856000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006281375999947, 28.937137862000043 ], [ -82.006939476999946, 28.937347536000061 ], [ -82.006987837999986, 28.937357663000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006987837999986, 28.937357663000057 ], [ -82.007028136999963, 28.937336391000031 ], [ -82.007061526999962, 28.937317145000065 ], [ -82.007082249999939, 28.937294861000055 ], [ -82.007092611999951, 28.937263461000043 ], [ -82.007096062999949, 28.937223958000061 ], [ -82.007092606999947, 28.937185470000031 ], [ -82.006988951999972, 28.936797545000047 ], [ -82.006917654999938, 28.936523796000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005136730999936, 28.936489589000075 ], [ -82.005165767999983, 28.936492342000065 ], [ -82.005186494999975, 28.936496329000079 ], [ -82.005203333999987, 28.93650145600003 ], [ -82.005222763999939, 28.936507152000047 ], [ -82.005241222999985, 28.936514653000074 ], [ -82.005263676999959, 28.936526047000029 ], [ -82.005285266999977, 28.936538960000064 ], [ -82.005305992999979, 28.93655263200003 ], [ -82.005388466999989, 28.936611250000055 ], [ -82.005682953999951, 28.936832044000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006410416999984, 28.935352331000047 ], [ -82.00588264199996, 28.935711350000076 ], [ -82.005453632999945, 28.93599732000007 ], [ -82.005369870999971, 28.936060374000078 ], [ -82.005343102999973, 28.936082405000036 ], [ -82.005328421999934, 28.93609987800005 ], [ -82.005313742999988, 28.936118110000052 ], [ -82.005301653999936, 28.936133303000076 ], [ -82.005287836999969, 28.936156095000058 ], [ -82.005258479999952, 28.936219146000042 ], [ -82.005136730999936, 28.936489589000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006760315999941, 28.935887130000026 ], [ -82.006735142999958, 28.93580582900006 ], [ -82.006710956999939, 28.935704797000028 ], [ -82.006700591999959, 28.935664534000068 ], [ -82.006694451999977, 28.935644772000046 ], [ -82.006687635999981, 28.935630350000054 ], [ -82.006682454999975, 28.935618957000031 ], [ -82.006674680999936, 28.935604523000052 ], [ -82.006659998999965, 28.935582494000073 ], [ -82.006642727999974, 28.935563504000072 ], [ -82.006607318999954, 28.935529321000047 ], [ -82.006558093999956, 28.935486783000044 ], [ -82.006410416999984, 28.935352331000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006230523999989, 28.934756820000075 ], [ -82.005937023999934, 28.934962776000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006410416999984, 28.935352331000047 ], [ -82.006033743999978, 28.935006325000074 ], [ -82.006010713999956, 28.934985057000063 ], [ -82.00599492799995, 28.934977273000072 ], [ -82.005975019999937, 28.934969866000074 ], [ -82.005937023999934, 28.934962776000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005937023999934, 28.934962776000077 ], [ -82.005890965999981, 28.934967844000028 ], [ -82.005842609999945, 28.934989115000064 ], [ -82.00566990599998, 28.935108642000046 ], [ -82.005383217999963, 28.935302112000045 ], [ -82.004860495999935, 28.935653600000023 ], [ -82.004830064999965, 28.935681020000061 ], [ -82.00481502699995, 28.935695354000075 ], [ -82.004802493999989, 28.935705276000078 ], [ -82.00477617599995, 28.935733943000059 ], [ -82.004763641999944, 28.935753790000035 ], [ -82.00474881599996, 28.935777173000076 ], [ -82.004733847999944, 28.935805534000053 ], [ -82.004522043999941, 28.936223312000038 ], [ -82.004447169999935, 28.936359585000048 ], [ -82.004428749999988, 28.936403140000039 ], [ -82.004416084999946, 28.936439603000053 ], [ -82.004399969999952, 28.936542917000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995753151999963, 28.956144490000042 ], [ -81.995728330999953, 28.956143114000042 ], [ -81.995564988999945, 28.956133512000065 ], [ -81.995409389999963, 28.956129904000079 ], [ -81.995259932999943, 28.956120896000073 ], [ -81.995202609999978, 28.956110090000038 ], [ -81.995160784999939, 28.956097372000045 ], [ -81.995114573999956, 28.956070473000068 ], [ -81.99507977199994, 28.956032658000026 ], [ -81.995051109999963, 28.955987640000046 ], [ -81.995036781999943, 28.955940823000049 ], [ -81.995034736999969, 28.955870597000057 ], [ -81.995034740999984, 28.955775163000055 ], [ -81.995036794999976, 28.955659920000073 ], [ -81.995034754999949, 28.955501463000076 ], [ -81.995034760999943, 28.955373615000042 ], [ -81.995034765999947, 28.955269178000037 ], [ -81.995032722999952, 28.955177343000059 ], [ -81.995032728999945, 28.955062101000067 ], [ -81.995034780999958, 28.954952261000074 ], [ -81.995034784999973, 28.954873033000069 ], [ -81.995040932999984, 28.954746987000078 ], [ -81.995069604999969, 28.954554318000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995069604999969, 28.954554318000078 ], [ -81.995178567999972, 28.954575546000058 ], [ -81.995337648999964, 28.954602366000074 ], [ -81.995487349999962, 28.954626779000023 ], [ -81.995743365999942, 28.954667009000048 ], [ -81.995768185999964, 28.954670792000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994386712999983, 28.954296723000027 ], [ -81.994551640999987, 28.954399441000078 ], [ -81.994635577999986, 28.954440860000034 ], [ -81.994707232999986, 28.954466072000059 ], [ -81.994813692999969, 28.954494886000077 ], [ -81.994885348999958, 28.95451289600004 ], [ -81.994971332999967, 28.954532707000055 ], [ -81.995069604999969, 28.954554318000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993686479999951, 28.956151784000042 ], [ -81.993800572999987, 28.95615465700007 ], [ -81.993970082999965, 28.956151797000075 ], [ -81.994089301999963, 28.956153062000055 ], [ -81.994203953999943, 28.956153067000059 ], [ -81.994259232, 28.956145867000032 ], [ -81.99430427599998, 28.95612426100007 ], [ -81.994330893999972, 28.956090049000068 ], [ -81.99434522699994, 28.956043233000059 ], [ -81.994351605999952, 28.955940995000049 ], [ -81.994352400999958, 28.955707915000062 ], [ -81.994345405999979, 28.955431469000075 ], [ -81.994348087999981, 28.955054848000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99087001099997, 28.955236543000069 ], [ -81.99094254399995, 28.955166296000073 ], [ -81.991045045999954, 28.955075144000034 ], [ -81.991112996999959, 28.955017415000043 ], [ -81.991176340999971, 28.954966776000049 ], [ -81.991214345999936, 28.954935379000062 ], [ -81.991255807999949, 28.954906009000069 ], [ -81.991292660999989, 28.954890818000024 ], [ -81.991330663999975, 28.954887782000071 ], [ -81.991360607, 28.954888797000024 ], [ -81.991398609999976, 28.95489791500006 ], [ -81.991427397999985, 28.954917161000026 ], [ -81.991461945999959, 28.954942485000061 ], [ -81.991489580999939, 28.954967809000038 ], [ -81.991519520999987, 28.954996171000062 ], [ -81.991559824999968, 28.95502149500004 ], [ -81.991596676999961, 28.955033653000044 ], [ -81.991647347999958, 28.955045810000058 ], [ -81.991706986999986, 28.955054711000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99087001099997, 28.955236543000069 ], [ -81.991034625999987, 28.955402775000039 ], [ -81.991082112999948, 28.95544471900007 ], [ -81.991142692999972, 28.955496632000063 ], [ -81.991178455999943, 28.955522074000044 ], [ -81.991243084999951, 28.955552220000072 ], [ -81.991289706999964, 28.955561486000079 ], [ -81.99132945599996, 28.955567418000044 ], [ -81.991390438999986, 28.95556932900007 ], [ -81.991706945999965, 28.955569349000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989928589999977, 28.95521687300004 ], [ -81.990022246999956, 28.955312765000031 ], [ -81.990083660999971, 28.955368140000076 ], [ -81.990125116999934, 28.955404607000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989928589999977, 28.95521687300004 ], [ -81.990068331999964, 28.955100741000024 ], [ -81.990255676999936, 28.954935995000028 ], [ -81.990390811999987, 28.95482256300005 ], [ -81.990504158999954, 28.954730937000079 ], [ -81.990610556999968, 28.954640298000072 ], [ -81.990698144999953, 28.954565717000037 ], [ -81.990780125999947, 28.954494105000038 ], [ -81.990870187999974, 28.954411863000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990125116999934, 28.955404607000048 ], [ -81.990194207999934, 28.955464034000045 ], [ -81.990269441999942, 28.955531562000033 ], [ -81.99033239299996, 28.955589639000038 ], [ -81.990384961999951, 28.955637461000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990384961999951, 28.955637461000038 ], [ -81.990535084999976, 28.95551267500008 ], [ -81.990668684999946, 28.955395191000036 ], [ -81.990784043999952, 28.955302613000072 ], [ -81.99087001099997, 28.955236543000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99041699199995, 28.953990660000045 ], [ -81.990513718999978, 28.954078450000054 ], [ -81.990601234999986, 28.954162186000076 ], [ -81.990709835999951, 28.954257986000073 ], [ -81.990870187999974, 28.954411863000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989762834999965, 28.954414668000027 ], [ -81.989850979999972, 28.95441241900005 ], [ -81.989907562999974, 28.954400259000067 ], [ -81.989949057, 28.954382570000064 ], [ -81.990003125999976, 28.954349396000055 ], [ -81.990100198999983, 28.954270749000045 ], [ -81.990150037999967, 28.954231219000064 ], [ -81.990203004999955, 28.954189282000073 ], [ -81.990298148999955, 28.954106397000032 ], [ -81.99041699199995, 28.953990660000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989762834999965, 28.954414668000027 ], [ -81.989764365999974, 28.954457884000078 ], [ -81.989765897999973, 28.954497048000064 ], [ -81.989764356999956, 28.954545666000058 ], [ -81.989764348999984, 28.954630747000067 ], [ -81.989767412999981, 28.954692869000041 ], [ -81.989765871999964, 28.95476444600007 ], [ -81.98976586699996, 28.954819816000054 ], [ -81.989770466999971, 28.954880588000037 ], [ -81.989776602999939, 28.95493460800003 ], [ -81.98978888299996, 28.954981877000023 ], [ -81.989804232999973, 28.955029145000026 ], [ -81.98982725999997, 28.955083167000055 ], [ -81.989857964999942, 28.955135838000047 ], [ -81.989898934999985, 28.955182216000026 ], [ -81.989928589999977, 28.95521687300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989488755999957, 28.953983243000039 ], [ -81.989615457999946, 28.954108094000048 ], [ -81.989652305999982, 28.95414726100006 ], [ -81.989684546999968, 28.954193180000061 ], [ -81.989710323999986, 28.954247911000039 ], [ -81.989733643999955, 28.954307408000034 ], [ -81.989749966999966, 28.954360750000035 ], [ -81.989762834999965, 28.954414668000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98798954199998, 28.953463390000024 ], [ -81.988130899999987, 28.953589402000034 ], [ -81.988279797999951, 28.953730337000025 ], [ -81.988404704999937, 28.953840827000079 ], [ -81.988486336999983, 28.953917767000064 ], [ -81.988562137999963, 28.953989578000062 ], [ -81.98863794, 28.954051131000028 ], [ -81.988696337999954, 28.954110030000038 ], [ -81.988734034999936, 28.954144849000045 ], [ -81.988786808999976, 28.954189617000054 ], [ -81.988832044999981, 28.95422940900005 ], [ -81.98886220199995, 28.954255938000074 ], [ -81.988929485999961, 28.954294778000076 ], [ -81.988999462999971, 28.954307606000043 ], [ -81.989057776999971, 28.954305047000048 ], [ -81.989121925999939, 28.954281972000047 ], [ -81.98919482499997, 28.954229406000024 ], [ -81.989311464999957, 28.954130941000074 ], [ -81.989417387999936, 28.954039204000026 ], [ -81.989488755999957, 28.953983243000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989488755999957, 28.953983243000039 ], [ -81.989698705999956, 28.953798619000054 ], [ -81.989959458999977, 28.953576027000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98894964599998, 28.952657846000079 ], [ -81.989081028999976, 28.95277621300005 ], [ -81.989177562999942, 28.952864572000067 ], [ -81.989280543999939, 28.952956024000059 ], [ -81.989387162999947, 28.95305376400006 ], [ -81.989474676999976, 28.953131761000066 ], [ -81.989573704999941, 28.953224954000063 ], [ -81.98966726499998, 28.95331008900007 ], [ -81.989766389999943, 28.953398570000047 ], [ -81.989859683999953, 28.95348679500006 ], [ -81.989959458999977, 28.953576027000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989959458999977, 28.953576027000054 ], [ -81.990058486999942, 28.95366761400004 ], [ -81.990165770999965, 28.953763675000062 ], [ -81.990276124, 28.953865140000062 ], [ -81.990349819999949, 28.953930982000031 ], [ -81.99041699199995, 28.953990660000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987538830999938, 28.953050899000061 ], [ -81.987658387999943, 28.952938075000077 ], [ -81.98787779099996, 28.952743473000055 ], [ -81.988049129, 28.952602168000055 ], [ -81.988108131999979, 28.952550035000058 ], [ -81.988154200999986, 28.952511550000054 ], [ -81.988202570999988, 28.952478129000042 ], [ -81.988256160999981, 28.952448317000062 ], [ -81.988314475999971, 28.952430371000048 ], [ -81.988375706999989, 28.952417555000068 ], [ -81.988460262999979, 28.952409869000064 ], [ -81.98853898599998, 28.952409876000047 ], [ -81.988615357999947, 28.952424149000024 ], [ -81.988685318999956, 28.952448907000075 ], [ -81.988740160999953, 28.952476569000055 ], [ -81.98881272999995, 28.952537268000071 ], [ -81.988919032999945, 28.952630096000064 ], [ -81.98894964599998, 28.952657846000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989182260999939, 28.951990867000063 ], [ -81.989230479999947, 28.952036153000051 ], [ -81.989501058999963, 28.952292211000042 ], [ -81.989674974999957, 28.952450705000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969671099999971, 28.952005631000077 ], [ -81.969344141999954, 28.952023348000068 ], [ -81.968986822999966, 28.952045691000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968986822999966, 28.952045691000023 ], [ -81.968825597999967, 28.95205173100004 ], [ -81.968589873999974, 28.952066553000066 ], [ -81.968447748999949, 28.952069810000069 ], [ -81.968389142999968, 28.95206074500004 ], [ -81.968328115999952, 28.952037435000079 ], [ -81.968295878999982, 28.952013118000025 ], [ -81.968268250999984, 28.951984238000023 ], [ -81.968238347999943, 28.951921729000048 ], [ -81.96820846199995, 28.951806588000068 ], [ -81.968178485999942, 28.95157232300005 ], [ -81.968153968999957, 28.951413860000059 ], [ -81.968135588999985, 28.951264400000071 ], [ -81.968119252999941, 28.951125746000059 ], [ -81.968111098999941, 28.951012302000038 ], [ -81.968104014999938, 28.950908509000044 ], [ -81.968110667999952, 28.950811404000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968840259, 28.950822207000044 ], [ -81.968840778999947, 28.951004079000029 ], [ -81.968866892999984, 28.951231066000048 ], [ -81.968898327999966, 28.951447065000025 ], [ -81.968930342999954, 28.951665303000027 ], [ -81.968956465999952, 28.951862684000048 ], [ -81.968986822999966, 28.952045691000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970391781999979, 28.951973081000062 ], [ -81.970109639999976, 28.95198719800004 ], [ -81.969740976999958, 28.952005647000078 ], [ -81.969671099999971, 28.952005631000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971102346999942, 28.95195691300006 ], [ -81.970762397999977, 28.951956840000037 ], [ -81.970552640999983, 28.951966336000055 ], [ -81.970391781999979, 28.951973081000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970311956999979, 28.950853356000039 ], [ -81.970303595999951, 28.950993620000077 ], [ -81.970312385999989, 28.951123012000039 ], [ -81.970332940999981, 28.951267933000054 ], [ -81.97035643199996, 28.951428382000074 ], [ -81.970380331999934, 28.951745182000025 ], [ -81.970391781999979, 28.951973081000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97254202299996, 28.95195913200007 ], [ -81.97226356699997, 28.951959356000032 ], [ -81.97182264099996, 28.951957097000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968024755999977, 28.938071728000068 ], [ -81.968343858999958, 28.938065004000066 ], [ -81.968427773999963, 28.938065024000025 ], [ -81.968882686999962, 28.938059302000056 ], [ -81.968913603999965, 28.938059309000039 ], [ -81.968931269999985, 28.938059313000053 ], [ -81.968950040999971, 28.938059318000057 ], [ -81.968971019999969, 28.938059323000061 ], [ -81.968989790999956, 28.938059327000076 ], [ -81.969009665999977, 28.93805836000007 ], [ -81.969028851999951, 28.938059458000055 ], [ -81.969046791999972, 28.938060675000031 ], [ -81.969060593999984, 28.938060679000046 ], [ -81.96907701799995, 28.938061289000075 ], [ -81.96909137199998, 28.938061293000032 ], [ -81.969106829999987, 28.938063238000041 ], [ -81.969123908999961, 28.938064791000045 ], [ -81.969141160999982, 28.93806783000008 ], [ -81.969161862999954, 28.938070871000036 ], [ -81.969180838999989, 28.938075427000058 ], [ -81.969199814999968, 28.938079985000059 ], [ -81.969222240999954, 28.93808454200007 ], [ -81.969244668999977, 28.93808910000007 ], [ -81.969286070999942, 28.938099733000058 ], [ -81.969322124999962, 28.938112824000029 ], [ -81.969356798999968, 28.938125549000063 ], [ -81.969396475999986, 28.938139217000071 ], [ -81.969432698999981, 28.93815743600004 ], [ -81.969468926, 28.938175657000045 ], [ -81.969499973999973, 28.938195393000058 ], [ -81.969539646999976, 28.938219684000046 ], [ -81.969575869999971, 28.938245492000078 ], [ -81.96960519199996, 28.938266744000032 ], [ -81.969631064999987, 28.938287998000078 ], [ -81.969682692999982, 28.938327326000035 ], [ -81.969719529999963, 28.938356706000036 ], [ -81.969755214999964, 28.938391153000055 ], [ -81.969782841999972, 28.938416481000047 ], [ -81.969815073999939, 28.938450925000041 ], [ -81.969846151999946, 28.938483344000076 ], [ -81.969885289999979, 28.938524881000035 ], [ -81.969912200999943, 28.938559716000043 ], [ -81.970112234999988, 28.938892120000048 ], [ -81.970408841999983, 28.939377826000054 ], [ -81.970616568999958, 28.939727806000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972891706999974, 28.901981630000023 ], [ -81.972954080999955, 28.901956726000037 ], [ -81.973046174999979, 28.90191623000004 ], [ -81.97315361699998, 28.901866282000071 ], [ -81.97324417599998, 28.901824435000037 ], [ -81.973346317999983, 28.90177499300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973652669999979, 28.902228269000034 ], [ -81.973587872999985, 28.902137820000064 ], [ -81.973506560999965, 28.902028414000029 ], [ -81.973448264999945, 28.901940618000026 ], [ -81.973385366999935, 28.901837968000052 ], [ -81.973346317999983, 28.90177499300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973346317999983, 28.90177499300006 ], [ -81.97331565099995, 28.901722506000056 ], [ -81.973265713999979, 28.901627266000048 ], [ -81.973228897999945, 28.901554331000057 ], [ -81.97318594799998, 28.901473292000048 ], [ -81.973156805999963, 28.901405761000035 ], [ -81.973121528999968, 28.901324724000062 ], [ -81.973072448999972, 28.901208571000041 ], [ -81.973032574999934, 28.901099173000034 ], [ -81.973004969999977, 28.901018137000051 ], [ -81.972980434999954, 28.900938452000048 ], [ -81.972960503999957, 28.900862820000043 ], [ -81.972939995, 28.900809550000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972939995, 28.900809550000076 ], [ -81.972925109999949, 28.900747728000056 ], [ -81.972908378999989, 28.900650780000035 ], [ -81.972886921999986, 28.900542736000034 ], [ -81.972860870999966, 28.90039147400006 ], [ -81.972840965999978, 28.900214554000058 ], [ -81.972833316999981, 28.900125420000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972833316999981, 28.900125420000052 ], [ -81.973082806999969, 28.900108959000079 ], [ -81.973795992999953, 28.89995736000003 ], [ -81.974277129999962, 28.899843181000051 ], [ -81.974424025999951, 28.899809489000063 ], [ -81.974479380999981, 28.899783273000025 ], [ -81.974515578999956, 28.899751434000052 ], [ -81.974545389999946, 28.899713974000065 ], [ -81.97456257999994, 28.899670049000065 ], [ -81.974568828999963, 28.899625933000038 ], [ -81.974558197999954, 28.899569731000042 ], [ -81.97446929399996, 28.899338286000045 ], [ -81.974382232999972, 28.899113095000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972833316999981, 28.900125420000052 ], [ -81.972827199999983, 28.900040336000075 ], [ -81.972813431999953, 28.899864768000043 ], [ -81.972811941999964, 28.899697304000028 ], [ -81.972813514999984, 28.899547400000074 ], [ -81.972818150999956, 28.899424504000024 ], [ -81.972828925999977, 28.899302961000046 ], [ -81.972844303999977, 28.899184120000029 ], [ -81.97286275099998, 28.89905987700007 ], [ -81.972887338999953, 28.898938337000061 ], [ -81.972910387999946, 28.898823548000053 ], [ -81.972936512999979, 28.898688503000074 ], [ -81.972973389999936, 28.89851429600003 ], [ -81.97300719499998, 28.898350892000053 ], [ -81.973040997999988, 28.898192889000029 ], [ -81.973073267999951, 28.898032186000023 ], [ -81.973102462999975, 28.897886338000035 ], [ -81.973130118999961, 28.897766147000027 ], [ -81.973145483999986, 28.897691873000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98272714899997, 28.872237206000079 ], [ -81.983107547999964, 28.872338695000053 ], [ -81.983811482999954, 28.872535452000079 ], [ -81.984013890999961, 28.872591447000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982633039999939, 28.872917869000048 ], [ -81.982653432999939, 28.872654505000071 ], [ -81.982661131999976, 28.872491093000065 ], [ -81.982690303999959, 28.87236279800004 ], [ -81.98272714899997, 28.872237206000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981938173999936, 28.872036797000078 ], [ -81.982059766999953, 28.872058851000077 ], [ -81.982262282999955, 28.87211019700004 ], [ -81.98272714899997, 28.872237206000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981119178999961, 28.87215160900007 ], [ -81.981356576999985, 28.872071543000061 ], [ -81.981565733999958, 28.872034476000067 ], [ -81.981709957999954, 28.872025042000075 ], [ -81.981818790999966, 28.872026159000029 ], [ -81.981938173999936, 28.872036797000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978707946999975, 28.875571150000042 ], [ -81.97872422599994, 28.875417144000039 ], [ -81.978740090999963, 28.875356675000035 ], [ -81.978779614999951, 28.875266372000056 ], [ -81.97884318399997, 28.875143885000057 ], [ -81.978892091999967, 28.875026442000035 ], [ -81.978931622999937, 28.874886520000075 ], [ -81.978962167999953, 28.874758989000043 ], [ -81.978978046999941, 28.874627586000031 ], [ -81.978976756999941, 28.874472922000052 ], [ -81.978962257999967, 28.874308953000025 ], [ -81.978937181999981, 28.874179869000045 ], [ -81.978857410999979, 28.873940084000026 ], [ -81.978820998999936, 28.873792611000056 ], [ -81.978809805999958, 28.873725215000036 ], [ -81.978799890999937, 28.873643759000061 ], [ -81.978797268999983, 28.873550728000055 ], [ -81.97880786199994, 28.873428626000077 ], [ -81.978830344999949, 28.873318156000039 ], [ -81.978865169999949, 28.873214425000072 ], [ -81.978897407999966, 28.873125296000069 ], [ -81.97893118199994, 28.873024013000077 ], [ -81.978966502999981, 28.872910005000051 ], [ -81.978992601999948, 28.872791734000032 ], [ -81.979011041999968, 28.872645883000075 ], [ -81.979014697999958, 28.872553303000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961587188999943, 28.933877039000038 ], [ -81.961592620999966, 28.933883214000048 ], [ -81.961599133999982, 28.933893042000079 ], [ -81.961604714999964, 28.933904508000069 ], [ -81.961608435999949, 28.933911880000039 ], [ -81.961614015999942, 28.933928259000027 ], [ -81.961615106999943, 28.933940460000031 ], [ -81.961614005999934, 28.933953645000031 ], [ -81.961612137999964, 28.933968385000071 ], [ -81.961609341999974, 28.933979030000046 ], [ -81.961604681999972, 28.933994588000076 ], [ -81.961599091999972, 28.934009326000023 ], [ -81.961590706999971, 28.934024884000053 ], [ -81.961576734999937, 28.934046991000059 ], [ -81.961562762999961, 28.934070734000045 ], [ -81.961497560999987, 28.934173899000029 ], [ -81.961335489999954, 28.934428973000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960338281999952, 28.932615877000046 ], [ -81.960358725999981, 28.932631564000076 ], [ -81.96038012799994, 28.932655319000048 ], [ -81.960395012999982, 28.932679890000031 ], [ -81.960423848999937, 28.932737223000061 ], [ -81.960451753999962, 28.932791279000071 ], [ -81.960484314999974, 28.932846975000075 ], [ -81.960514084999943, 28.932895298000062 ], [ -81.960547575999954, 28.932950176000077 ], [ -81.960577346999969, 28.932994405000045 ], [ -81.960622007999973, 28.933055758000023 ], [ -81.960650691999945, 28.933093874000065 ], [ -81.960699943999941, 28.933155813000042 ], [ -81.960730253999941, 28.933190597000078 ], [ -81.960778965999964, 28.933249678000038 ], [ -81.960814687999971, 28.933291607000058 ], [ -81.960859611999979, 28.933344017000024 ], [ -81.960892631999968, 28.933374989000072 ], [ -81.96094459699998, 28.933424068000079 ], [ -81.960976531999961, 28.933453612000051 ], [ -81.961031744999957, 28.933505072000059 ], [ -81.961076675999948, 28.933540334000043 ], [ -81.961134055999935, 28.933585605000076 ], [ -81.961184941999988, 28.933623250000039 ], [ -81.961252068999954, 28.933670428000028 ], [ -81.961305662999962, 28.93370378700007 ], [ -81.96137633099994, 28.933750286000077 ], [ -81.96151985299997, 28.933829631000037 ], [ -81.961557257999971, 28.933853722000038 ], [ -81.961576801999968, 28.933866011000077 ], [ -81.961587177999945, 28.933877026000062 ], [ -81.961587188999943, 28.933877039000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958355653999945, 28.931687543000066 ], [ -81.958355815999937, 28.931769707000058 ], [ -81.958357741999976, 28.931840524000052 ], [ -81.958363170999974, 28.931946753000034 ], [ -81.958368418999953, 28.932017229000053 ], [ -81.95837912199994, 28.932123116000071 ], [ -81.958387887999947, 28.932193593000079 ], [ -81.958403867999948, 28.932298793000029 ], [ -81.958408629999951, 28.932319881000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958408629999951, 28.932319881000069 ], [ -81.958422413999983, 28.932382723000046 ], [ -81.958443670999941, 28.932487237000032 ], [ -81.958459274999939, 28.932556685000065 ], [ -81.958485610999958, 28.932660170000077 ], [ -81.958504927999968, 28.932728931000042 ], [ -81.958525416999976, 28.932797348000065 ], [ -81.958565003999979, 28.932931961000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958355653999945, 28.931687543000066 ], [ -81.958215251999945, 28.931707552000034 ], [ -81.958043027999963, 28.931735340000046 ], [ -81.95791735399996, 28.931752499000027 ], [ -81.957822397999962, 28.931764753000039 ], [ -81.957727908999971, 28.931776870000078 ], [ -81.957637299999988, 28.931787761000066 ], [ -81.957540329999972, 28.931794964000062 ], [ -81.957432342999937, 28.931806394000034 ], [ -81.957141899999954, 28.931825956000068 ], [ -81.957046017999971, 28.931831658000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957046017999971, 28.931831658000078 ], [ -81.956975269999987, 28.931833273000052 ], [ -81.956545041999959, 28.93184855800007 ], [ -81.956141655999943, 28.931858254000076 ], [ -81.956017331999988, 28.931858533000025 ], [ -81.955963906999955, 28.931865230000028 ], [ -81.955934648999971, 28.931871933000025 ], [ -81.955905386999973, 28.931886471000041 ], [ -81.955882623999969, 28.931900483000049 ], [ -81.955865814999981, 28.931910791000064 ], [ -81.955849594999961, 28.931921788000068 ], [ -81.955826502999969, 28.931940156000053 ], [ -81.95580105099998, 28.931965883000032 ], [ -81.955781958999978, 28.931997208000041 ], [ -81.955760315999953, 28.932044197000039 ], [ -81.955748847999985, 28.932090071000061 ], [ -81.955744999, 28.932168398000044 ], [ -81.955750570999953, 28.932495919000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028800941999975, 28.934637230000078 ], [ -82.028800976999946, 28.934637810000027 ], [ -82.028806220999968, 28.934723537000025 ], [ -82.028803765999953, 28.935325406000061 ], [ -82.028779738999958, 28.937802297000076 ], [ -82.028779884999949, 28.938330264000058 ], [ -82.028760394999949, 28.941119357000048 ], [ -82.028755672999978, 28.942357962000074 ], [ -82.028756036999937, 28.943676764000031 ], [ -82.028763912999977, 28.944685912000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028767164999977, 28.930967299000031 ], [ -82.029214573, 28.930964630000062 ], [ -82.029348775999949, 28.930967253000063 ], [ -82.029450264, 28.930966733000048 ], [ -82.029771437999955, 28.930969334000054 ], [ -82.030161121999981, 28.930943953000053 ], [ -82.030786535999937, 28.930945100000031 ], [ -82.031744497999966, 28.930948436000051 ], [ -82.031939272999978, 28.930969944000026 ], [ -82.032273521999969, 28.930975781000029 ], [ -82.032842823999943, 28.930975988000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028767164999977, 28.930967299000031 ], [ -82.028760071999955, 28.932242354000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028753853999945, 28.928950150000048 ], [ -82.028757877999965, 28.929670400000077 ], [ -82.028774680999959, 28.930477033000045 ], [ -82.028767164999977, 28.930967299000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026826920999952, 28.928455027000041 ], [ -82.027304910999987, 28.928459472000043 ], [ -82.02742884099996, 28.928471906000027 ], [ -82.027517365999984, 28.928493693000064 ], [ -82.027637767999977, 28.928555968000069 ], [ -82.028119390999962, 28.928839331000063 ], [ -82.028192829999966, 28.928876520000074 ], [ -82.028283688999977, 28.928912022000077 ], [ -82.028386656999942, 28.928936865000026 ], [ -82.028507789999935, 28.928943944000025 ], [ -82.028753853999945, 28.928950150000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028753853999945, 28.928950150000048 ], [ -82.028925687999958, 28.928945144000068 ], [ -82.029066775999979, 28.928934661000028 ], [ -82.029103996999936, 28.928925801000048 ], [ -82.029188549999958, 28.928900664000025 ], [ -82.029292498999951, 28.928849685000046 ], [ -82.029394958999944, 28.92878825300005 ], [ -82.029470680999964, 28.928713763000076 ], [ -82.02959986999997, 28.928636647000076 ], [ -82.029766183999982, 28.928546457000039 ], [ -82.029892406999977, 28.928487633000032 ], [ -82.029972599999951, 28.928465404000065 ], [ -82.030014179999966, 28.928448409000055 ], [ -82.030259231999935, 28.928448354000068 ], [ -82.030770618999952, 28.928448293000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013169330999972, 28.897932420000075 ], [ -82.013055004999956, 28.89795179500004 ], [ -82.012921115999973, 28.897958737000067 ], [ -82.012759661999951, 28.897958753000069 ], [ -82.01238630499995, 28.897960262000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01238630499995, 28.897960262000026 ], [ -82.012378804999969, 28.898035597000046 ], [ -82.012314690999972, 28.898069687000032 ], [ -82.012231995999969, 28.898093953000057 ], [ -82.012113855999985, 28.898066240000048 ], [ -82.011987837999982, 28.898028132000036 ], [ -82.011857881999958, 28.897990024000023 ], [ -82.011668853999936, 28.897920734000024 ], [ -82.011534961999985, 28.897899952000046 ], [ -82.011468015999981, 28.897882631000073 ], [ -82.011365625999986, 28.897841055000072 ], [ -82.011282924999989, 28.897792547000051 ], [ -82.01116871499994, 28.897698990000038 ], [ -82.011019063999981, 28.897595042000034 ], [ -82.010893043999943, 28.897518814000023 ], [ -82.010833970999954, 28.897477234000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020744161999971, 28.882910956000046 ], [ -82.020504310999968, 28.882802927000057 ], [ -82.016976925999984, 28.882793799000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033449132999976, 28.870253443000024 ], [ -82.033329738999953, 28.87025886400005 ], [ -82.033048407999956, 28.870283629000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033048407999956, 28.870283629000028 ], [ -82.033078115999956, 28.870313172000067 ], [ -82.033091042999956, 28.87035977000005 ], [ -82.033088486999986, 28.870441607000032 ], [ -82.033089831999973, 28.870615507000025 ], [ -82.033092452999938, 28.870734850000076 ], [ -82.033103369999935, 28.870819437000023 ], [ -82.033081987999935, 28.870967655000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087794698999971, 28.56417596700004 ], [ -82.087499659999935, 28.564173164000067 ], [ -82.087158845999966, 28.564177875000041 ], [ -82.086875674999987, 28.564172068000062 ], [ -82.086358508999979, 28.564167906000023 ], [ -82.086056849999977, 28.564171231000046 ], [ -82.085555013999965, 28.564097809000032 ], [ -82.085231660999966, 28.564026157000058 ], [ -82.085111818999962, 28.564002282000047 ], [ -82.084429085999943, 28.564042627000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087786980999965, 28.566558347000068 ], [ -82.087787642999956, 28.565549439000051 ], [ -82.087794698999971, 28.56417596700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091434892999985, 28.566602987000067 ], [ -82.091042456999958, 28.566605041000059 ], [ -82.090669417999948, 28.566609781000068 ], [ -82.09022006899994, 28.566608584000051 ], [ -82.089911464999943, 28.56661328000007 ], [ -82.089719855999988, 28.566611910000063 ], [ -82.089365466999936, 28.566615137000042 ], [ -82.089194204999956, 28.56661375300007 ], [ -82.088822842999946, 28.566596032000064 ], [ -82.088609185999985, 28.566590185000052 ], [ -82.088281914999982, 28.566576926000039 ], [ -82.087920733999965, 28.566568178000068 ], [ -82.087786980999965, 28.566558347000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.095242854999981, 28.580766002000075 ], [ -82.095175523999956, 28.58090579900005 ], [ -82.09495842299998, 28.581368944000076 ], [ -82.094808646999979, 28.581683788000078 ], [ -82.094673953999973, 28.581934213000068 ], [ -82.094594216999951, 28.582058221000068 ], [ -82.094540596999934, 28.582138462000046 ], [ -82.094408585999986, 28.582307468000067 ], [ -82.094277932999944, 28.582458244000065 ], [ -82.094211173999952, 28.582529221000073 ], [ -82.094158068999945, 28.582583313000043 ], [ -82.094109487999958, 28.582627891000072 ], [ -82.09404845399996, 28.58268359300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107913985999971, 28.584107380000034 ], [ -82.107704195999986, 28.584052958000029 ], [ -82.107368009999959, 28.583982020000064 ], [ -82.10696188999998, 28.583889776000035 ], [ -82.106563858999948, 28.583816513000045 ], [ -82.106321819999948, 28.583781102000046 ], [ -82.106144322999967, 28.58375038500003 ], [ -82.105921112999965, 28.583719705000078 ], [ -82.105579538999962, 28.583636900000045 ], [ -82.104770043999963, 28.583499867000057 ], [ -82.104493036999941, 28.583450239000058 ], [ -82.104245629, 28.58341957500005 ], [ -82.104121925999948, 28.583405428000049 ], [ -82.103990145999944, 28.583381795000037 ], [ -82.103820723999945, 28.583358190000069 ], [ -82.103581378999934, 28.58332514500006 ], [ -82.103339333999941, 28.583280234000028 ], [ -82.103086541999971, 28.583242451000046 ], [ -82.102266302999965, 28.58311253200003 ], [ -82.101316984999983, 28.58296609100006 ], [ -82.100658127999964, 28.582881138000062 ], [ -82.100192885999945, 28.58281265200003 ], [ -82.09990784699994, 28.58279387400006 ], [ -82.099620131999984, 28.582789338000055 ], [ -82.098759671999971, 28.582770981000067 ], [ -82.098471967999956, 28.582775936000075 ], [ -82.097802438999963, 28.582778795000024 ], [ -82.097135595999987, 28.582779274000075 ], [ -82.096632767999949, 28.582770139000047 ], [ -82.096014314999934, 28.582758710000064 ], [ -82.095488623999984, 28.582757482000034 ], [ -82.094840403999967, 28.582749952000029 ], [ -82.094246130999977, 28.582759262000025 ], [ -82.094161875999987, 28.582745010000053 ], [ -82.094103675999975, 28.58272108400007 ], [ -82.09404845399996, 28.58268359300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09404845399996, 28.58268359300007 ], [ -82.093926442999987, 28.582789774000048 ], [ -82.093814309999971, 28.582871307000062 ], [ -82.093650926999942, 28.582987003000028 ], [ -82.093492658999935, 28.583084788000065 ], [ -82.093310539999948, 28.583183433000045 ], [ -82.093026385999963, 28.583324249000043 ], [ -82.092750813999942, 28.583462533000045 ], [ -82.092260691999968, 28.583704533000059 ], [ -82.091741007999985, 28.583960865000051 ], [ -82.091478625999969, 28.584090112000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091478625999969, 28.584090112000069 ], [ -82.091351007999947, 28.584157324000046 ], [ -82.091228957999988, 28.584223086000065 ], [ -82.09109069799996, 28.584298120000028 ], [ -82.090939096999989, 28.584390004000056 ], [ -82.090778915999977, 28.584488630000067 ], [ -82.090671178999969, 28.584560276000047 ], [ -82.090565587999947, 28.58462952900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.250184097999977, 28.63624788900006 ], [ -82.25022682499997, 28.636258275000046 ], [ -82.250271899999973, 28.636258192000071 ], [ -82.251394023999978, 28.636256114000048 ], [ -82.251892172999987, 28.636236353000072 ], [ -82.252048718999959, 28.636223503000053 ], [ -82.252193186999989, 28.636177024000062 ], [ -82.252286411999989, 28.636156697000047 ], [ -82.252413879999949, 28.636147476000076 ], [ -82.25255150299995, 28.636157684000068 ], [ -82.252795934999938, 28.636190716000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014373532999969, 28.917384097000024 ], [ -82.014705359999937, 28.917386260000058 ], [ -82.015282225999954, 28.917386195000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014371076999964, 28.917711329000042 ], [ -82.014373532999969, 28.917384097000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015846160999956, 28.915370465000024 ], [ -82.015909040999986, 28.915189631000032 ], [ -82.016027785999938, 28.914921322000055 ], [ -82.016089545999989, 28.914805031000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016089545999989, 28.914805031000071 ], [ -82.016163396999957, 28.914704697000047 ], [ -82.016335056999935, 28.914480438000055 ], [ -82.016441069999985, 28.914359345000037 ], [ -82.01667144399994, 28.914085863000025 ], [ -82.016780500999971, 28.91397285000005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975574700999971, 28.870026792000033 ], [ -81.975651307999954, 28.869959845000039 ], [ -81.975776900999961, 28.869854075000035 ], [ -81.975943761999986, 28.869699361000073 ], [ -81.976069356999972, 28.869587274000025 ], [ -81.976198536999959, 28.869476766000048 ], [ -81.976322336999942, 28.869363099000054 ], [ -81.976424606999956, 28.86926995500005 ], [ -81.976519696999958, 28.869184705000066 ], [ -81.976611197999944, 28.86911682300007 ], [ -81.976675765999971, 28.869071904000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978406139999947, 28.868987335000043 ], [ -81.978429148999965, 28.869048129000078 ], [ -81.978427073999967, 28.869092034000062 ], [ -81.978412893999973, 28.869160616000045 ], [ -81.978386904999979, 28.869239588000028 ], [ -81.978352621999989, 28.869309408000049 ], [ -81.978306595999982, 28.869397528000036 ], [ -81.978240461999974, 28.869513902000051 ], [ -81.978150711999945, 28.869657293000046 ], [ -81.978086940999958, 28.869761199000038 ], [ -81.978023170999961, 28.869863026000075 ], [ -81.977968852999936, 28.869919132000064 ], [ -81.977928708999968, 28.869950300000028 ], [ -81.97789328999994, 28.869966920000024 ], [ -81.977824813999973, 28.869985614000029 ], [ -81.977744536999978, 28.869991835000064 ], [ -81.977676034999945, 28.869984233000025 ], [ -81.977591075999953, 28.869946088000063 ], [ -81.977515533999963, 28.869898273000047 ], [ -81.977437628999951, 28.869846302000042 ], [ -81.977295985999945, 28.869746519000046 ], [ -81.977182673999948, 28.869657132000043 ], [ -81.977090609999948, 28.869576062000078 ], [ -81.977007988999958, 28.869499150000024 ], [ -81.976927732999968, 28.869411848000027 ], [ -81.976854560999982, 28.86931831000004 ], [ -81.976800272999981, 28.869243481000069 ], [ -81.976757785999951, 28.869189437000045 ], [ -81.976675765999971, 28.869071904000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961865453999962, 28.884824768000044 ], [ -81.961890452999967, 28.884826150000038 ], [ -81.961936544999958, 28.884823069000049 ], [ -81.96202618999996, 28.884816907000072 ], [ -81.962233414999957, 28.884794963000047 ], [ -81.96247442799995, 28.884769935000065 ], [ -81.962651900999958, 28.884750606000068 ], [ -81.962810621999949, 28.884724224000024 ], [ -81.962993961999985, 28.884689979000029 ], [ -81.963168967999934, 28.884650492000048 ], [ -81.963347492999958, 28.884597255000074 ], [ -81.963524260999975, 28.884540580000078 ], [ -81.963631419999956, 28.884504224000068 ], [ -81.963720080999963, 28.884467753000024 ], [ -81.963781678999965, 28.884416736000048 ], [ -81.963814883999987, 28.884364966000078 ], [ -81.963826083999948, 28.88430517200004 ], [ -81.963822586999981, 28.884253260000037 ], [ -81.963797617999944, 28.884173154000052 ], [ -81.963769122999963, 28.884111609000058 ], [ -81.963719161999961, 28.884009493000065 ], [ -81.963677755999981, 28.883950705000075 ], [ -81.963635532999945, 28.883912192000025 ], [ -81.963588937999987, 28.883890166000072 ], [ -81.96349827399996, 28.883874981000076 ], [ -81.963452909999944, 28.883878742000036 ], [ -81.963412871999935, 28.883887541000036 ], [ -81.963273490999939, 28.88393731900004 ], [ -81.963140729999964, 28.883982422000031 ], [ -81.962991027999976, 28.884028369000077 ], [ -81.962846602999946, 28.884062306000033 ], [ -81.962677870999983, 28.884098753000046 ], [ -81.962483645999953, 28.884120884000026 ], [ -81.962292439999942, 28.884136644000023 ], [ -81.962135415999967, 28.884139694000055 ], [ -81.961937187, 28.884134826000036 ], [ -81.961764008999978, 28.88412691700006 ], [ -81.961685944999942, 28.884129882000025 ], [ -81.961633894999977, 28.884146795000049 ], [ -81.96159315899996, 28.884166698000058 ], [ -81.961556944999984, 28.884195565000027 ], [ -81.961520718999964, 28.884258285000044 ], [ -81.961479950999944, 28.884362825000039 ], [ -81.961446080999963, 28.884451993000027 ], [ -81.961403272999974, 28.884549614000036 ], [ -81.961339545999977, 28.884708422000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961339545999977, 28.884708422000074 ], [ -81.961408479999989, 28.884731818000034 ], [ -81.961569193999935, 28.884786868000049 ], [ -81.961653860999945, 28.884808212000053 ], [ -81.961728205999975, 28.884822077000024 ], [ -81.961808275999942, 28.88482461600006 ], [ -81.961865453999962, 28.884824768000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958965071999955, 28.879349320000074 ], [ -81.959021073999963, 28.879348163000031 ], [ -81.959225079999953, 28.879347052000071 ], [ -81.959509096999966, 28.879320145000065 ], [ -81.959797102999971, 28.879319059000068 ], [ -81.960247703999983, 28.879329340000027 ], [ -81.961010873999953, 28.879345900000033 ], [ -81.96111422499996, 28.879329392000045 ], [ -81.961220711999943, 28.879299103000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958233075999942, 28.879297459000043 ], [ -81.958502415999988, 28.879295194000065 ], [ -81.958746408999957, 28.879329303000077 ], [ -81.95887307299995, 28.879344598000046 ], [ -81.958965071999955, 28.879349320000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958233075999942, 28.879297459000043 ], [ -81.958227556999987, 28.879225765000058 ], [ -81.958174615999951, 28.878781066000045 ], [ -81.958120102999942, 28.878392593000058 ], [ -81.958105501999967, 28.878230635000079 ], [ -81.958106863999944, 28.878156701000023 ], [ -81.958117562999973, 28.878076901000043 ], [ -81.958126920999973, 28.878017051000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971065597999939, 28.871136762000049 ], [ -81.971066792999977, 28.871054215000072 ], [ -81.971066806999943, 28.871003656000028 ], [ -81.971060957999953, 28.870960318000073 ], [ -81.971040868999978, 28.87091173500005 ], [ -81.970945703999973, 28.870751087000031 ], [ -81.970658558999958, 28.870299553000052 ], [ -81.970603552999989, 28.87019437400005 ], [ -81.970548151999935, 28.870081481000057 ], [ -81.970516792999945, 28.869971724000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97135425099998, 28.86977911200006 ], [ -81.971421947999943, 28.870001598000044 ], [ -81.971477194999977, 28.870145716000025 ], [ -81.971554095999977, 28.870304255000065 ], [ -81.971622819999936, 28.870439290000036 ], [ -81.971680978999984, 28.87052077900006 ], [ -81.971741790999943, 28.870578991000059 ], [ -81.971889861999955, 28.870690761000048 ], [ -81.972080241999947, 28.870814181000071 ], [ -81.972167500999944, 28.870874725000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97452156099996, 28.868751762000045 ], [ -81.974516792999964, 28.869011336000028 ], [ -81.974516767999944, 28.869113867000067 ], [ -81.974529346999987, 28.869169291000048 ], [ -81.974557668999978, 28.869213633000072 ], [ -81.974614322999969, 28.869257982000079 ], [ -81.974739047999947, 28.869340585000032 ], [ -81.974878979999971, 28.869439168000042 ], [ -81.975001469999938, 28.869540707000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975001469999938, 28.869540707000056 ], [ -81.975350081999977, 28.869233044000055 ], [ -81.975356955999985, 28.869149786000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989875615999949, 28.870771577000028 ], [ -81.990011020999987, 28.87064938900005 ], [ -81.990134836999971, 28.870531339000024 ], [ -81.990208207999956, 28.870472818000053 ], [ -81.99031023699996, 28.870416319000071 ], [ -81.99042041499996, 28.87036678100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007588240999951, 28.917978267000024 ], [ -82.007699028, 28.917976271000043 ], [ -82.007793988999936, 28.917976266000039 ], [ -82.007897348999961, 28.917967371000032 ], [ -82.008006961999968, 28.917955744000039 ], [ -82.008129492999956, 28.917937036000069 ], [ -82.008230768999965, 28.917922729000054 ], [ -82.008307036999952, 28.917913923000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995445611999969, 28.879109562000053 ], [ -81.995552952999958, 28.879053679000037 ], [ -81.996018600999946, 28.878750307000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996018600999946, 28.878750307000075 ], [ -81.99692192699996, 28.878162669000062 ], [ -81.99699839699997, 28.878103285000066 ], [ -81.997061765999945, 28.878041100000075 ], [ -81.997104097999966, 28.877982554000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996249890999934, 28.879196078000064 ], [ -81.996018600999946, 28.878750307000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998275846999945, 28.879374191000068 ], [ -81.998011149999968, 28.879224059000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996249890999934, 28.879196078000064 ], [ -81.996438867999984, 28.879154834000076 ], [ -81.996615751999968, 28.879128226000034 ], [ -81.996695877999969, 28.879108268000039 ], [ -81.996760886999937, 28.879080326000064 ], [ -81.996813800999973, 28.879045731000076 ], [ -81.996878809999941, 28.878992506000031 ], [ -81.996957426999984, 28.878915330000041 ], [ -81.997038858999986, 28.878839685000059 ], [ -81.997082908999971, 28.878814205000026 ], [ -81.997125238999956, 28.878800899000055 ], [ -81.997164547999944, 28.878792917000055 ], [ -81.997203852999974, 28.878792918000045 ], [ -81.997250720999943, 28.878799571000059 ], [ -81.997359567999979, 28.878854130000036 ], [ -81.997602965999988, 28.878999174000057 ], [ -81.997636225999941, 28.879020465000053 ], [ -81.99767553099997, 28.879045748000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99767553099997, 28.879045748000067 ], [ -81.997745073999965, 28.879077685000027 ], [ -81.997943871999951, 28.879186038000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996192420999989, 28.879793536000079 ], [ -81.996478156999956, 28.879745640000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996478156999956, 28.879745640000067 ], [ -81.996249890999934, 28.879196078000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996125199999938, 28.881267158000071 ], [ -81.995937652999942, 28.880445321000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98153795099995, 28.871219091000057 ], [ -81.981608819999963, 28.871015630000045 ], [ -81.981637934999981, 28.870875959000045 ], [ -81.981632712999954, 28.87048952400005 ], [ -81.981619504999969, 28.87040571600005 ], [ -81.981608932999961, 28.870370797000078 ], [ -81.981590427999947, 28.870331219000036 ], [ -81.98154018799994, 28.870282326000051 ], [ -81.981471432999967, 28.87024739800006 ], [ -81.981368293999935, 28.870238072000063 ], [ -81.981175233999977, 28.870247357000039 ], [ -81.980889611999942, 28.870251972000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963983652999957, 28.930866501000025 ], [ -81.964103132999981, 28.930704290000051 ], [ -81.964121237999962, 28.930688328000031 ], [ -81.964148981999983, 28.930672418000029 ], [ -81.964195147999988, 28.930655212000033 ], [ -81.964604493999957, 28.930574612000044 ], [ -81.964653897999938, 28.930564278000077 ], [ -81.96469154, 28.930551871000034 ], [ -81.964738593999982, 28.93053532700003 ], [ -81.964795055999957, 28.93051878600005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969167554999956, 28.934050753000065 ], [ -81.969207346999951, 28.934070767000037 ], [ -81.969231505999971, 28.93408327700007 ], [ -81.969265612999948, 28.934103290000053 ], [ -81.969289772999957, 28.934118299000033 ], [ -81.969311088999973, 28.93413331000005 ], [ -81.969329485999936, 28.934148241000059 ], [ -81.969348629999956, 28.934161652000057 ], [ -81.969367579999982, 28.934175408000044 ], [ -81.969386137999948, 28.934189507000042 ], [ -81.969404499999939, 28.93420360600004 ], [ -81.969422473999941, 28.934218048000048 ], [ -81.969440249999934, 28.934233178000056 ], [ -81.969457636999948, 28.934248309000054 ], [ -81.969474824999963, 28.934263439000063 ], [ -81.969490954999969, 28.934278626000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009336755999982, 28.92402359600004 ], [ -82.009237078999945, 28.923624477000033 ], [ -82.009174493999978, 28.923273204000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009536826999977, 28.925584231000073 ], [ -82.009384392999948, 28.925572683000041 ], [ -82.009293163999985, 28.925548433000074 ], [ -82.009158475999982, 28.925488003000055 ], [ -82.009130157999948, 28.925460325000074 ], [ -82.009108131999938, 28.925434033000045 ], [ -82.009087225999963, 28.925394023000024 ], [ -82.009077119999972, 28.925355805000038 ], [ -82.009070040999973, 28.925280255000075 ], [ -82.009065994999958, 28.92521626000007 ], [ -82.009053864999942, 28.925141599000028 ], [ -82.009036685999945, 28.925081161000037 ], [ -82.008989184999962, 28.924908731000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008989184999962, 28.924908731000073 ], [ -82.009228785999937, 28.924839042000031 ], [ -82.009535237999955, 28.92473749100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01123393499995, 28.925697229000036 ], [ -82.011251712999979, 28.925515896000036 ], [ -82.01126346999996, 28.925036766000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96508328699997, 28.877620157000024 ], [ -81.96496390599998, 28.877259783000056 ], [ -81.964869163999936, 28.87703130500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964202182999941, 28.877721590000078 ], [ -81.964177959999972, 28.877597448000074 ], [ -81.964173417999973, 28.877514183000073 ], [ -81.964188045999947, 28.87738467500003 ], [ -81.964197945999956, 28.877349866000031 ], [ -81.964225153999962, 28.877297657000042 ], [ -81.964252356999964, 28.877260677000038 ], [ -81.964290680999966, 28.87723022800003 ], [ -81.964343836999944, 28.877198694000072 ], [ -81.964518122999948, 28.877143261000072 ], [ -81.964773986999944, 28.877062827000032 ], [ -81.964869163999936, 28.87703130500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964869163999936, 28.87703130500006 ], [ -81.96475154999996, 28.876725145000023 ], [ -81.96463747599995, 28.876432231000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96463747599995, 28.876432231000024 ], [ -81.964578519999975, 28.876228216000072 ], [ -81.964540208999949, 28.876056744000039 ], [ -81.964333930999942, 28.875095467000051 ], [ -81.964162515999988, 28.874326877000044 ], [ -81.964148270999942, 28.874269287000061 ], [ -81.964121725999973, 28.874219919000041 ], [ -81.964075997999942, 28.874157124000078 ], [ -81.964016992999973, 28.874091296000074 ], [ -81.963906840999982, 28.87398735000005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963967944, 28.876645053000061 ], [ -81.964046641999971, 28.876613744000053 ], [ -81.964266822999946, 28.876541867000071 ], [ -81.964563312999985, 28.876452879000055 ], [ -81.96463747599995, 28.876432231000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962661625999942, 28.877388994000057 ], [ -81.962947177999979, 28.877420248000078 ], [ -81.963186141999984, 28.877451153000038 ], [ -81.963250438999978, 28.877451507000046 ], [ -81.963303558999939, 28.877441395000062 ], [ -81.963350064999986, 28.877420358000052 ], [ -81.963387618999946, 28.877396816000044 ], [ -81.963417291999974, 28.877367451000055 ], [ -81.963440785999978, 28.87733264700006 ], [ -81.963463015999935, 28.877266464000058 ], [ -81.963524907999954, 28.877110749000053 ], [ -81.96357190599997, 28.877017207000051 ], [ -81.963623843999983, 28.876932369000031 ], [ -81.96370666599995, 28.876839825000047 ], [ -81.963786384999935, 28.876763858000061 ], [ -81.963859454999977, 28.876707373000045 ], [ -81.963967944, 28.876645053000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961935431999962, 28.877296332000071 ], [ -81.962146765999989, 28.877324674000079 ], [ -81.962529888999939, 28.877371559000039 ], [ -81.962661625999942, 28.877388994000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961935431999962, 28.877296332000071 ], [ -81.96196439299996, 28.877195906000054 ], [ -81.962066322999988, 28.876915361000044 ], [ -81.962148302999935, 28.876708852000036 ], [ -81.962205906999941, 28.87657247900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98334708799996, 28.913093759000049 ], [ -81.983549260999951, 28.913171525000052 ], [ -81.983771560999969, 28.913273652000044 ], [ -81.983917005999956, 28.913348278000058 ], [ -81.984030675999975, 28.913403239000047 ], [ -81.984125608999989, 28.913440713000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96130218899998, 28.883379927000078 ], [ -81.961510029999943, 28.883421963000046 ], [ -81.961660991999963, 28.883451902000047 ], [ -81.961788051999974, 28.883474084000056 ], [ -81.961903792999976, 28.88348740400005 ], [ -81.962027083999942, 28.883496298000068 ], [ -81.962213281999936, 28.88349635000003 ], [ -81.962393255999984, 28.883480742000074 ], [ -81.962589934999983, 28.883447794000062 ], [ -81.962704807999955, 28.883422298000028 ], [ -81.962847170999964, 28.883379109000032 ], [ -81.963072212999975, 28.883307241000068 ], [ -81.963346506999983, 28.883226484000033 ], [ -81.963585572999989, 28.883151252000062 ], [ -81.963805763999972, 28.883084874000076 ], [ -81.963970590999963, 28.88303619800007 ], [ -81.964101711999945, 28.883000546000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964819874999989, 28.882867752000038 ], [ -81.964875928999959, 28.882858485000042 ], [ -81.965026315999978, 28.882837897000059 ], [ -81.965182210999956, 28.882817273000057 ], [ -81.965318267999976, 28.882793801000048 ], [ -81.96535709799997, 28.882781885000043 ], [ -81.965393307999989, 28.882761674000051 ], [ -81.965438891999952, 28.882726541000068 ], [ -81.965460287999974, 28.88269886300003 ], [ -81.965478978999954, 28.88266253300003 ], [ -81.965485473999934, 28.882630218000031 ], [ -81.965486741999939, 28.882597 ], [ -81.965467562999947, 28.882480719000057 ], [ -81.965444655999988, 28.882344354000054 ], [ -81.965418882999984, 28.882195362000061 ], [ -81.965401397999983, 28.881976895000037 ], [ -81.965392651999935, 28.88179419100004 ], [ -81.965393673999984, 28.881657798000049 ], [ -81.965387527999951, 28.881581739000069 ], [ -81.96537606399994, 28.88154133300003 ], [ -81.965338782999936, 28.88149334600007 ], [ -81.965287153999952, 28.881452930000023 ], [ -81.965208805999964, 28.881426389000069 ], [ -81.965029730999959, 28.881390590000024 ], [ -81.964789922999955, 28.881342397000026 ], [ -81.964702435999982, 28.881323466000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964819874999989, 28.882867752000038 ], [ -81.964741670999956, 28.882541135000054 ], [ -81.96471183899996, 28.88235983900006 ], [ -81.964695864999953, 28.88224567900005 ], [ -81.964672964999977, 28.881980028000044 ], [ -81.964669284999957, 28.881707633000076 ], [ -81.964674388999981, 28.881490605000067 ], [ -81.96468467699998, 28.881397221000043 ], [ -81.964702435999982, 28.881323466000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963975688999938, 28.88237427200005 ], [ -81.963969977999966, 28.882293465000032 ], [ -81.963949969999987, 28.882076295000047 ], [ -81.963943309999934, 28.881883500000072 ], [ -81.96394338999994, 28.881652077000069 ], [ -81.963951012999985, 28.881438372000048 ], [ -81.963958840999965, 28.881313698000042 ], [ -81.963980473999982, 28.881181638000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963980473999982, 28.881181638000044 ], [ -81.963946104999934, 28.881174411000075 ], [ -81.963847681999937, 28.881153758000039 ], [ -81.963774566999973, 28.881140094000045 ], [ -81.963711666999984, 28.881124574000069 ], [ -81.963660091999941, 28.881106844000044 ], [ -81.963619840999968, 28.881089117000045 ], [ -81.963585878999936, 28.881071391000035 ], [ -81.963549402999945, 28.88105144900004 ], [ -81.963510411999948, 28.881021542000042 ], [ -81.963408543999947, 28.880920751000076 ], [ -81.963367042999948, 28.880874234000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978647440999964, 28.876208849000079 ], [ -81.978668230999972, 28.875904607000052 ], [ -81.978707946999975, 28.875571150000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980877486999987, 28.874066964000065 ], [ -81.98111090499998, 28.874140130000058 ], [ -81.98137049099995, 28.874223774000029 ], [ -81.981425724999951, 28.874226483000029 ], [ -81.981473290999986, 28.874217037000051 ], [ -81.981520857999953, 28.874198135000029 ], [ -81.981566892999979, 28.874169781000035 ], [ -81.981596049999951, 28.874136023000062 ], [ -81.981620605999979, 28.874096861000055 ], [ -81.981725365999978, 28.873747689000027 ], [ -81.981838508999942, 28.873320387000035 ], [ -81.98189481299994, 28.873022338000055 ], [ -81.981923037999934, 28.872783565000077 ], [ -81.981933632999983, 28.872628514000041 ], [ -81.981931896999981, 28.872478114000046 ], [ -81.981921647999968, 28.872261409000032 ], [ -81.981938173999936, 28.872036797000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992704743, 28.951223091000031 ], [ -81.992743322999956, 28.951248161000024 ], [ -81.992863997999962, 28.951312049000023 ], [ -81.992894681999985, 28.951325979000046 ], [ -81.992920983999966, 28.951336623000032 ], [ -81.993166828999961, 28.951427282000054 ], [ -81.993294185999957, 28.951463424000053 ], [ -81.99339824499998, 28.951486009000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987113046, 28.950179527000046 ], [ -81.987044944, 28.95003027000007 ], [ -81.98701465399995, 28.949960222000072 ], [ -81.986978576999945, 28.949891928000056 ], [ -81.986938124999938, 28.949825558000043 ], [ -81.986915163999981, 28.949790931000052 ], [ -81.98688892399997, 28.949762074000034 ], [ -81.986855027, 28.949739948000058 ], [ -81.986809101999938, 28.949715898000079 ], [ -81.986763174999965, 28.949700504000077 ], [ -81.986715060999984, 28.949692805000041 ], [ -81.986672413999941, 28.949688954000067 ], [ -81.986628670999949, 28.949690873000065 ], [ -81.986601333999943, 28.949695679000058 ], [ -81.986567879999939, 28.949704639000061 ], [ -81.986512754999978, 28.949727411000026 ], [ -81.98645479299995, 28.949755297000024 ], [ -81.986377147999974, 28.949790877000055 ], [ -81.98628419299996, 28.949836074000075 ], [ -81.986225136999963, 28.949865884000076 ], [ -81.986167175999981, 28.949896657000068 ], [ -81.986113588999956, 28.949927430000059 ], [ -81.986063282999964, 28.949955318000036 ], [ -81.986014070999943, 28.949982243000079 ], [ -81.985971418999952, 28.95000628300005 ], [ -81.985925982999959, 28.950035 ], [ -81.98590033399995, 28.950053406000052 ], [ -81.985882833999938, 28.950075526000035 ], [ -81.985868615999948, 28.950100532000079 ], [ -81.985850019999987, 28.950136118000046 ], [ -81.985840172999985, 28.950173628000073 ], [ -81.985836886999948, 28.950209215000029 ], [ -81.985845629999972, 28.950254422000057 ], [ -81.985856560999935, 28.950280392000025 ], [ -81.985872961999974, 28.950308286000052 ], [ -81.985913829999959, 28.950355741000067 ], [ -81.985975517999975, 28.950413629000025 ], [ -81.986038061999977, 28.950475661000041 ], [ -81.98611122899996, 28.950536641000042 ], [ -81.986164900999938, 28.950562239000078 ], [ -81.986195517999988, 28.95057089900007 ], [ -81.98623269899997, 28.950573787000053 ], [ -81.986256755999989, 28.950574751000033 ], [ -81.986290655999937, 28.950569947000076 ], [ -81.986327838999955, 28.950558408000063 ], [ -81.986473289999935, 28.950477630000023 ], [ -81.986613271999943, 28.950400697000077 ], [ -81.986732475999986, 28.950343 ], [ -81.986983223999971, 28.950232850000077 ], [ -81.987113046, 28.950179527000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987113046, 28.950179527000046 ], [ -81.987212559999989, 28.950144911000052 ], [ -81.987410497999974, 28.950083372000051 ], [ -81.987549381999941, 28.950043950000065 ], [ -81.987703024999973, 28.950008626000056 ], [ -81.987877449999985, 28.949971843000071 ], [ -81.988038382999946, 28.949945728000046 ], [ -81.988229494999985, 28.94992546800006 ], [ -81.988437891, 28.949909855000044 ], [ -81.988644931999943, 28.949904743000047 ], [ -81.988868012999944, 28.94990861000008 ], [ -81.989063388999966, 28.949922732000061 ], [ -81.989200625999956, 28.94993829200007 ], [ -81.989349343999947, 28.94995754100006 ], [ -81.989479834999941, 28.949979836000068 ], [ -81.989594995999937, 28.950001550000025 ], [ -81.989704735999965, 28.950023935000047 ], [ -81.989799869999956, 28.950045102000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989799869999956, 28.950045102000047 ], [ -81.989921247999973, 28.950080699000068 ], [ -81.990038960999982, 28.950118179000071 ], [ -81.990179080999951, 28.950163596000039 ], [ -81.990359740999963, 28.950229814000068 ], [ -81.990474070999937, 28.950273891000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990730252999981, 28.949165966000066 ], [ -81.99068678499998, 28.949371889000076 ], [ -81.99064193199996, 28.949574831000064 ], [ -81.990603644999965, 28.949739300000033 ], [ -81.990580050999938, 28.949842204000049 ], [ -81.990548174999958, 28.949983567000061 ], [ -81.990509993999979, 28.950155135000045 ], [ -81.990474070999937, 28.950273891000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99002504799995, 28.949071591000063 ], [ -81.990101107999976, 28.949084101000039 ], [ -81.990281899999957, 28.949114893000058 ], [ -81.990462693999973, 28.949139273000071 ], [ -81.99061286999995, 28.94915338900006 ], [ -81.990730252999981, 28.949165966000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99002504799995, 28.949071591000063 ], [ -81.989941906999945, 28.949420408000037 ], [ -81.989865389999977, 28.94976274000004 ], [ -81.989799869999956, 28.950045102000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990181867999979, 28.948383585000045 ], [ -81.990143198999988, 28.948545804000048 ], [ -81.990038176999974, 28.949004907000074 ], [ -81.99002504799995, 28.949071591000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990334203999964, 28.947692584000038 ], [ -81.990479495999978, 28.947718906000034 ], [ -81.990665241999977, 28.947746885000072 ], [ -81.990816749999965, 28.947758724000039 ], [ -81.991174568999952, 28.94777683600006 ], [ -81.991343197999981, 28.947776847000057 ], [ -81.991528278999965, 28.947776859000044 ], [ -81.991619506999939, 28.947778687000039 ], [ -81.991651582999964, 28.947783819000051 ], [ -81.991709902999958, 28.947799212000064 ], [ -81.991775047999965, 28.947823903000028 ], [ -81.991853188999983, 28.947867319000068 ], [ -81.991914878999978, 28.947921587000053 ], [ -81.991959208999958, 28.947972356000037 ], [ -81.991991281999958, 28.948018525000066 ], [ -81.992013147999955, 28.948067260000073 ], [ -81.992030023999973, 28.948124179000047 ], [ -81.992038652999952, 28.94819325900005 ], [ -81.992038644, 28.948316373000068 ], [ -81.992038629999968, 28.948502327000028 ], [ -81.992035681999937, 28.948917834000042 ], [ -81.992037120999953, 28.949179450000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990730252999981, 28.949165966000066 ], [ -81.990861866999978, 28.949173211000073 ], [ -81.991001706999953, 28.949176837000039 ], [ -81.991147722999983, 28.949179395000044 ], [ -81.991321227999947, 28.949179406000042 ], [ -81.99152535199994, 28.949179419000075 ], [ -81.991767384999946, 28.949178152000059 ], [ -81.992037120999953, 28.949179450000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991253440999969, 28.94983989900004 ], [ -81.991417545, 28.949873790000026 ], [ -81.991603052999949, 28.949895195000067 ], [ -81.992032687999938, 28.949938651000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992037120999953, 28.949179450000031 ], [ -81.992035638999937, 28.949483388000033 ], [ -81.992038537999974, 28.949705248000043 ], [ -81.992038527999966, 28.949836056000038 ], [ -81.992032687999938, 28.949938651000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992032687999938, 28.949938651000025 ], [ -81.992023932999984, 28.950032268000029 ], [ -81.992007885999953, 28.950143838000031 ], [ -81.991990381999983, 28.950232325000059 ], [ -81.991970850999962, 28.950316361000034 ], [ -81.991946627999937, 28.950406733000079 ], [ -81.991912033999938, 28.950508194000065 ], [ -81.991864727999939, 28.950628836000078 ], [ -81.991791774999967, 28.950806401000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993097981999938, 28.949413359000062 ], [ -81.993100001999949, 28.949511659000052 ], [ -81.993098521999968, 28.949854069000025 ], [ -81.993094271999951, 28.949955790000047 ], [ -81.993088677999935, 28.950062915000046 ], [ -81.993077902999971, 28.950182523000024 ], [ -81.993045078999955, 28.950371515000029 ], [ -81.993026077999957, 28.950456034000069 ], [ -81.992966841999987, 28.950664386000028 ], [ -81.992908726999985, 28.950826545000041 ], [ -81.992850611999984, 28.950971998000057 ], [ -81.992830495999954, 28.951014257000054 ], [ -81.992757412999936, 28.951143472000069 ], [ -81.992704743, 28.951223091000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99382338099997, 28.949413639000056 ], [ -81.993823942999938, 28.94963444800004 ], [ -81.993810507999967, 28.95007965800005 ], [ -81.993796901999985, 28.950211901000046 ], [ -81.993774733999942, 28.950380395000025 ], [ -81.993737101999955, 28.95055687200005 ], [ -81.99370209999995, 28.950696657000037 ], [ -81.99367876499997, 28.95079155600007 ], [ -81.993653972999937, 28.950864653000053 ], [ -81.99360261299995, 28.951016375000052 ], [ -81.993473911999956, 28.951315739000052 ], [ -81.99339824499998, 28.951486009000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994485401999953, 28.949282511000035 ], [ -81.99441305199997, 28.949313360000076 ], [ -81.994336252999972, 28.949344262000068 ], [ -81.994259148999959, 28.949368081000046 ], [ -81.994178955999985, 28.949388596000063 ], [ -81.994092930999955, 28.949405264000063 ], [ -81.994017112999984, 28.949410392000061 ], [ -81.99382338099997, 28.949413639000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999915242999975, 28.950582738000037 ], [ -81.999960077999958, 28.950646219000078 ], [ -81.999967732999949, 28.95067507400006 ], [ -81.999969920999945, 28.950703929000042 ], [ -81.999967732999949, 28.950873209000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999915242999975, 28.950582738000037 ], [ -81.999893781999958, 28.950590072000068 ], [ -81.999873278999985, 28.950593679000065 ], [ -81.999849493999989, 28.950595844000077 ], [ -81.999591145999943, 28.950603778000072 ], [ -81.999323793999963, 28.950605190000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000216547999969, 28.948850495000045 ], [ -82.000189116999934, 28.948995258000025 ], [ -82.000164430999973, 28.949076883000032 ], [ -82.000152128999957, 28.949094194000054 ], [ -82.000140646999967, 28.949106458000074 ], [ -82.00010537999998, 28.949144690000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00010537999998, 28.949144690000026 ], [ -82.000118501999964, 28.949159118000068 ], [ -82.000128389999986, 28.949176712000053 ], [ -82.000132445999952, 28.949200957000073 ], [ -82.000131761999967, 28.949223368000048 ], [ -82.000119641999959, 28.949320345000046 ], [ -82.000105060999942, 28.949417809000067 ], [ -82.000075695999953, 28.949613748000047 ], [ -82.000058070999955, 28.949776530000065 ], [ -82.000033833999964, 28.949952878000033 ], [ -82.000007077999953, 28.95018406500003 ], [ -81.999980717999961, 28.950484753000069 ], [ -81.999976618999938, 28.950510721000057 ], [ -81.999966776999941, 28.950530198000024 ], [ -81.999953653999967, 28.950548233000063 ], [ -81.999932738999973, 28.950570235000043 ], [ -81.999915242999975, 28.950582738000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999509958999965, 28.948960741000064 ], [ -81.999664963999976, 28.949003302000051 ], [ -81.999798646999977, 28.949038649000045 ], [ -81.999972165999964, 28.949085186000048 ], [ -82.000008602999969, 28.949094916000035 ], [ -82.00004058899998, 28.949105015000043 ], [ -82.000066924999942, 28.949118086000055 ], [ -82.00010537999998, 28.949144690000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999509958999965, 28.948960741000064 ], [ -81.99949109399995, 28.94904153400006 ], [ -81.999463449999951, 28.949194854000041 ], [ -81.999443498999938, 28.949315489000071 ], [ -81.99941856199996, 28.949477799000078 ], [ -81.999396117999936, 28.949657654000077 ], [ -81.99937367299998, 28.949826545000064 ], [ -81.999356215999967, 28.950006401000053 ], [ -81.999338130999945, 28.950216763000071 ], [ -81.999323793999963, 28.950605190000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998646328999939, 28.950613390000058 ], [ -81.998661201999937, 28.950369519000049 ], [ -81.998666838999952, 28.950184897000042 ], [ -81.998689805999959, 28.949899236000078 ], [ -81.998716380999952, 28.949663790000045 ], [ -81.998740659999953, 28.949462808000078 ], [ -81.998774622999974, 28.949250229000029 ], [ -81.998805501999982, 28.949066653000045 ], [ -81.998817583999937, 28.948988673000031 ], [ -81.998832546999949, 28.948925065000026 ], [ -81.99884072499998, 28.948897257000056 ], [ -81.998853027999985, 28.948874894000028 ], [ -81.99887244699994, 28.94884829700004 ], [ -81.998892394999984, 28.948830169000075 ], [ -81.998909616999981, 28.948820792000049 ], [ -81.998926020999988, 28.94881646400006 ], [ -81.99894242299996, 28.948815743000068 ], [ -81.998954724999976, 28.948817906000045 ], [ -81.999030996999977, 28.948834499000043 ], [ -81.99917792399998, 28.948868315000027 ], [ -81.999340013999984, 28.948914924000064 ], [ -81.999509958999965, 28.948960741000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999323793999963, 28.950605190000033 ], [ -81.999161700999935, 28.950609576000033 ], [ -81.998955527999954, 28.950609064000048 ], [ -81.998646328999939, 28.950613390000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998646328999939, 28.950613390000058 ], [ -81.998225589999947, 28.950613385000054 ], [ -81.997909223999955, 28.950612031000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997909223999955, 28.950612031000048 ], [ -81.997913117999985, 28.950348639000026 ], [ -81.997923783999966, 28.950117800000044 ], [ -81.997946752999951, 28.949822041000061 ], [ -81.997950854999942, 28.949775872000032 ], [ -81.997980384999948, 28.94954070600005 ], [ -81.997989407999967, 28.949457749000032 ], [ -81.99799761099996, 28.94937912000006 ], [ -81.997996794999949, 28.949325008000073 ], [ -81.997991872999989, 28.94927235800003 ], [ -81.997983671999975, 28.949226190000047 ], [ -81.997972566999977, 28.949183011000059 ], [ -81.997960708999983, 28.949146839000036 ], [ -81.997942700999943, 28.949105512000074 ], [ -81.997917242999961, 28.949060275000079 ], [ -81.997894010999971, 28.949026248000052 ], [ -81.997868856999958, 28.948988138000061 ], [ -81.997843397999986, 28.948955430000069 ], [ -81.997788483999955, 28.948900768000044 ], [ -81.997733766999943, 28.948849544000041 ], [ -81.997656219999953, 28.948799701000041 ], [ -81.997565313999985, 28.948755691000031 ], [ -81.997462073999941, 28.948716174000026 ], [ -81.997414505999984, 28.94870174600004 ], [ -81.997363656999937, 28.948690203000069 ], [ -81.997289025999976, 28.94868298800003 ], [ -81.997211405999963, 28.948681084000043 ], [ -81.997093761999963, 28.948681082000064 ], [ -81.996971622, 28.94868520600005 ], [ -81.996885635999945, 28.948688985000047 ], [ -81.996750012999939, 28.948701014000051 ], [ -81.996625440999935, 28.948710648000031 ], [ -81.996519412999987, 28.948720603000027 ], [ -81.996416395999972, 28.94873202000008 ], [ -81.99631551899995, 28.948746444000051 ], [ -81.99621822499995, 28.948760525000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99531507599994, 28.948973524000053 ], [ -81.995233590999987, 28.948995353000043 ], [ -81.995150145999958, 28.949022261000039 ], [ -81.995038887999954, 28.949061399000072 ], [ -81.994916502999956, 28.949102985000025 ], [ -81.994761485999959, 28.94916405400005 ], [ -81.994618272999958, 28.949220248000074 ], [ -81.994485401999953, 28.949282511000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99621822499995, 28.948760525000068 ], [ -81.996072426999945, 28.948784273000058 ], [ -81.995953451999981, 28.948807524000074 ], [ -81.995809351999981, 28.948841246000029 ], [ -81.99564524699997, 28.948877937000077 ], [ -81.995503392999979, 28.948917075000054 ], [ -81.99531507599994, 28.948973524000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99531507599994, 28.948973524000053 ], [ -81.995330382999953, 28.949024501000054 ], [ -81.995351156999959, 28.949099525000065 ], [ -81.99536974199998, 28.949199556000053 ], [ -81.995376300999965, 28.949244761000045 ], [ -81.99540879999995, 28.949457738000035 ], [ -81.99543104299994, 28.949646116000054 ], [ -81.995453760999965, 28.94990582500003 ], [ -81.995450729999959, 28.950021015000061 ], [ -81.995437593999952, 28.950146310000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994485401999953, 28.949282511000035 ], [ -81.994515762999981, 28.949362961000077 ], [ -81.994531798999958, 28.949406565000061 ], [ -81.994542002999935, 28.94944247400008 ], [ -81.994545553999956, 28.949472171000025 ], [ -81.994549576999987, 28.94964677300004 ], [ -81.994541903999959, 28.949989183000071 ], [ -81.994521114999941, 28.950234446000024 ], [ -81.994498140999951, 28.95040565000005 ], [ -81.994483918999947, 28.950497985000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994483918999947, 28.950497985000027 ], [ -81.994467504999989, 28.950591728000063 ], [ -81.994437326999957, 28.950731285000074 ], [ -81.99440044499994, 28.950862979000078 ], [ -81.994344565999938, 28.951064453000072 ], [ -81.994327342999952, 28.951119369000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994483918999947, 28.950497985000027 ], [ -81.994562652999946, 28.950517225000056 ], [ -81.994766683999956, 28.95058294200004 ], [ -81.995025212999963, 28.950664402000029 ], [ -81.995239543999958, 28.950727890000053 ], [ -81.995433096999989, 28.950775987000043 ], [ -81.995631025999955, 28.950826009000025 ], [ -81.995875975999979, 28.950876031000064 ], [ -81.99613842399998, 28.95092894000004 ], [ -81.996367109999937, 28.95096128800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996367109999937, 28.95096128800003 ], [ -81.996452406999936, 28.950966339000047 ], [ -81.996747674999938, 28.950973141000077 ], [ -81.997016672999962, 28.950979338000025 ], [ -81.997102655999981, 28.950979479000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99621822499995, 28.948760525000068 ], [ -81.996260817999939, 28.94901623800007 ], [ -81.996302239999977, 28.949228693000066 ], [ -81.996344051999984, 28.949495120000051 ], [ -81.996372768999947, 28.949759484000026 ], [ -81.996388877999948, 28.949985397000034 ], [ -81.996396524999966, 28.950209502000064 ], [ -81.996395423999957, 28.950455730000044 ], [ -81.996387760999937, 28.950662521000027 ], [ -81.996376135999981, 28.950836491000075 ], [ -81.996367109999937, 28.95096128800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108505053999977, 28.641160629000069 ], [ -82.108514490999937, 28.640493889000027 ], [ -82.108509162999951, 28.640323450000039 ], [ -82.108509024999989, 28.640189369000041 ], [ -82.108512632999975, 28.640077246000033 ], [ -82.108517990999985, 28.640002461000051 ], [ -82.108522254999968, 28.639922881000075 ], [ -82.108542839999984, 28.639861506000045 ], [ -82.10856017499998, 28.63981067900005 ], [ -82.108572094999943, 28.63977615400006 ], [ -82.108618751999984, 28.63970517000007 ], [ -82.10868362399998, 28.639636994000057 ], [ -82.108741420999934, 28.639575642000068 ], [ -82.108899817999941, 28.639450470000043 ], [ -82.109081195999977, 28.639296047000073 ], [ -82.109558102999983, 28.638886011000068 ], [ -82.109678143999986, 28.638785651000035 ], [ -82.109749524999984, 28.638731164000035 ], [ -82.109814427999936, 28.638693870000054 ], [ -82.109918271999959, 28.638630762000048 ], [ -82.110976341999958, 28.638154361000034 ], [ -82.111404757999935, 28.637959211000066 ], [ -82.111648180999964, 28.637853016000065 ], [ -82.111953233999941, 28.637686613000028 ], [ -82.112206347999972, 28.637534575000075 ], [ -82.112326420999977, 28.637468587000058 ], [ -82.112404305999974, 28.637425553000071 ], [ -82.112488662999965, 28.637362460000077 ], [ -82.112527570999987, 28.63730799800004 ], [ -82.112540475999936, 28.637230641000031 ], [ -82.112543588999984, 28.637104592000071 ], [ -82.112555405999956, 28.636007406000033 ], [ -82.112574647999963, 28.635781079000026 ], [ -82.112580918999981, 28.635571952000078 ], [ -82.112560564999967, 28.634755531000053 ], [ -82.112565798999981, 28.633575274000066 ], [ -82.112590411999975, 28.632297601000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108493291999935, 28.646590355000058 ], [ -82.108498409999982, 28.645705908000025 ], [ -82.108491882999942, 28.644708776000073 ], [ -82.108490792999987, 28.64364998800005 ], [ -82.108493416999977, 28.642936170000041 ], [ -82.108516480999981, 28.642736992000039 ], [ -82.108539057999963, 28.642588009000065 ], [ -82.108568145999982, 28.642453346000025 ], [ -82.108580965999977, 28.642290048000064 ], [ -82.108558064999954, 28.64212391500007 ], [ -82.108538488999955, 28.642035125000064 ], [ -82.108505893999961, 28.641914834000033 ], [ -82.108505795999974, 28.641820299000074 ], [ -82.108502401999942, 28.641677068000035 ], [ -82.108501113999978, 28.64155659000005 ], [ -82.108505053999977, 28.641160629000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056584489999977, 28.596341983000059 ], [ -82.055575094999938, 28.596342401000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058633868999948, 28.596726045000025 ], [ -82.058642507999934, 28.596520057000077 ], [ -82.05863655099995, 28.596301203000053 ], [ -82.057145783999943, 28.596306989000027 ], [ -82.056799258999945, 28.596337685000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056799258999945, 28.596337685000037 ], [ -82.056584489999977, 28.596341983000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056527065999944, 28.59726605000003 ], [ -82.055565309999963, 28.597261297000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056793783999979, 28.597266408000053 ], [ -82.056527065999944, 28.59726605000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.097151125999972, 28.573713487000077 ], [ -82.097087687999988, 28.573632522000025 ], [ -82.097032984999942, 28.573545764000073 ], [ -82.096960751999973, 28.573405012000023 ], [ -82.096936638999978, 28.573320161000026 ], [ -82.096934334999958, 28.573189003000039 ], [ -82.096964224999965, 28.573070736000034 ], [ -82.097002663999945, 28.572945224000023 ], [ -82.097059037999941, 28.572815732000038 ], [ -82.097062363999953, 28.572678620000033 ], [ -82.09703462799996, 28.572544576000041 ], [ -82.096972373999961, 28.572404463000055 ], [ -82.096889392999969, 28.572246084000028 ], [ -82.096854801999939, 28.572163843000055 ], [ -82.096844405999946, 28.572118147000026 ], [ -82.096851220999952, 28.572020642000041 ], [ -82.096854553999947, 28.571892669000079 ], [ -82.096870782999986, 28.571710989000053 ], [ -82.096875246999957, 28.571659666000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087548291999951, 28.555520391000073 ], [ -82.087621584999965, 28.555552854000041 ], [ -82.087698842999941, 28.555586898000058 ], [ -82.087761614999977, 28.555614558000059 ], [ -82.087807486999964, 28.555635837000068 ], [ -82.087854322999988, 28.555654238000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087548291999951, 28.555520391000073 ], [ -82.087586718999944, 28.55545492400006 ], [ -82.08761309199997, 28.555420592000075 ], [ -82.087660711999945, 28.555355508000048 ], [ -82.087703997999938, 28.555286600000045 ], [ -82.087738595999951, 28.555198562000044 ], [ -82.087751512999944, 28.555095235000067 ], [ -82.087751435999962, 28.555003394000039 ], [ -82.087751338999965, 28.554884767000033 ], [ -82.087705724999978, 28.554581166000048 ], [ -82.087629916999958, 28.554342775000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086529197999937, 28.554499566000061 ], [ -82.086613807999981, 28.55464657300007 ], [ -82.086709384999949, 28.554765088000067 ], [ -82.086812607999946, 28.554895072000079 ], [ -82.08689289199998, 28.555005941000047 ], [ -82.086996114999977, 28.555132102000073 ], [ -82.087091690999955, 28.555227679000041 ], [ -82.087191090999966, 28.555319432000033 ], [ -82.087282844999947, 28.555388248000042 ], [ -82.087382243999969, 28.555457063000063 ], [ -82.087472513999955, 28.555509290000032 ], [ -82.087548291999951, 28.555520391000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087779222999984, 28.567945750000035 ], [ -82.087786980999965, 28.566558347000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970376134999981, 28.929979611000078 ], [ -81.970530534999966, 28.930928883000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970530534999966, 28.930928883000036 ], [ -81.970648349999976, 28.931678072000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009592396999949, 28.930729275000033 ], [ -82.009589893999987, 28.931323857000052 ], [ -82.009591182999941, 28.931417404000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009591182999941, 28.931417404000058 ], [ -82.009589380999955, 28.931504193000023 ], [ -82.009587961999955, 28.932124453000029 ], [ -82.009587963999934, 28.932138548000069 ], [ -82.009594677999985, 28.932767566000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007442412999978, 28.931348592000063 ], [ -82.008660754999937, 28.931350344000066 ], [ -82.009311594999986, 28.931360443000074 ], [ -82.009442562999936, 28.93138022200003 ], [ -82.009591182999941, 28.931417404000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01031620599997, 28.931579900000031 ], [ -82.010314406999953, 28.93177931200006 ], [ -82.010312018999969, 28.934292154000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005716071999984, 28.930192236000039 ], [ -82.006073744999981, 28.930478678000043 ], [ -82.006262832999937, 28.930636585000059 ], [ -82.006489883999961, 28.930828722000058 ], [ -82.00672555899996, 28.931023386000049 ], [ -82.006889382999987, 28.931162431000075 ], [ -82.006964108999966, 28.931215520000023 ], [ -82.007075377999968, 28.931273088000069 ], [ -82.007173443999989, 28.931307352000033 ], [ -82.007255441999973, 28.931328761000032 ], [ -82.007409261999953, 28.931346419000079 ], [ -82.007442412999978, 28.931348592000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007124395999938, 28.931951176000041 ], [ -82.007172435999962, 28.931881013000066 ], [ -82.007219393999947, 28.931800545000044 ], [ -82.007288925999944, 28.931673483000054 ], [ -82.007351770999946, 28.931546421000064 ], [ -82.007397233999939, 28.931452302000025 ], [ -82.007442412999978, 28.931348592000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005436458999952, 28.930913309000061 ], [ -82.005565237999974, 28.931051047000039 ], [ -82.005675116999953, 28.931182014000058 ], [ -82.005720280999981, 28.931230195000069 ], [ -82.005782925999938, 28.931299010000032 ], [ -82.005849029999979, 28.931359684000029 ], [ -82.005895015999954, 28.931402662000039 ], [ -82.00594100099994, 28.931435527000076 ], [ -82.005981237999947, 28.931465865000064 ], [ -82.006027223, 28.931503787000054 ], [ -82.006084702999942, 28.931541708000054 ], [ -82.00613931099997, 28.931577100000027 ], [ -82.006182420999949, 28.931599853000023 ], [ -82.006245650999972, 28.931640302000062 ], [ -82.006328997999958, 28.931685807000065 ], [ -82.006423840999958, 28.93173383900006 ], [ -82.006524412999966, 28.931780727000046 ], [ -82.006620157999976, 28.931817851000062 ], [ -82.006719854999972, 28.931848069000068 ], [ -82.00683324299996, 28.931881876000034 ], [ -82.006989868999938, 28.931920752000053 ], [ -82.007056170999988, 28.931937654000023 ], [ -82.007124395999938, 28.931951176000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007124395999938, 28.931951176000041 ], [ -82.007252193999989, 28.931960467000067 ], [ -82.007401134999952, 28.931974830000058 ], [ -82.007518362999974, 28.931981585000074 ], [ -82.007673067999974, 28.931989185000077 ], [ -82.007815280999978, 28.932000165000034 ], [ -82.007936352999934, 28.932007766000027 ], [ -82.008076643999971, 28.932016211000075 ], [ -82.008224091999978, 28.932023331000039 ], [ -82.008371638999961, 28.932028026000069 ], [ -82.008939799999951, 28.932065863000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003595937999989, 28.932554904000028 ], [ -82.004274555999984, 28.933340473000044 ], [ -82.004300740999952, 28.933372787000053 ], [ -82.004317544999935, 28.933394101000033 ], [ -82.004333567999936, 28.933415414000024 ], [ -82.004349396999942, 28.933437416000061 ], [ -82.004364833999944, 28.933459416000062 ], [ -82.004379684999947, 28.933481761000053 ], [ -82.004394144999935, 28.933504450000044 ], [ -82.004408214999955, 28.933527138000045 ], [ -82.004650598999945, 28.933924795000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00209300399996, 28.933315277000077 ], [ -82.002156025999966, 28.933413920000078 ], [ -82.002193016999968, 28.933471461000067 ], [ -82.002234118, 28.933524893000026 ], [ -82.002293446999943, 28.933588244000077 ], [ -82.002362148999964, 28.933666860000073 ], [ -82.002388631999963, 28.933696232000045 ], [ -82.002413962999981, 28.933722567000075 ], [ -82.002435839999976, 28.933744850000039 ], [ -82.002458868999952, 28.933767131000025 ], [ -82.002485349999972, 28.933787389000031 ], [ -82.002514134999956, 28.933810684000036 ], [ -82.002541768999947, 28.933829929000069 ], [ -82.002580917999978, 28.933854237000048 ], [ -82.002624670999978, 28.933881584000062 ], [ -82.002668424999968, 28.933905892000041 ], [ -82.002715632, 28.933928174000073 ], [ -82.002772050999965, 28.933950457000037 ], [ -82.00282040999997, 28.933965648000026 ], [ -82.002867616999936, 28.93397982700003 ], [ -82.002906763999988, 28.933990969000035 ], [ -82.002947063999954, 28.93400514800004 ], [ -82.002989665999962, 28.934023378000063 ], [ -82.003016147999972, 28.934039584000061 ], [ -82.003043781999963, 28.934060854000052 ], [ -82.00306681099994, 28.934078072000034 ], [ -82.003086384999961, 28.934095290000073 ], [ -82.003104806999943, 28.934117573000037 ], [ -82.003123230999961, 28.934143907000077 ], [ -82.003139350999959, 28.934173280000039 ], [ -82.003145108999945, 28.934189486000037 ], [ -82.003153167999983, 28.934208730000023 ], [ -82.003158925999969, 28.934231013000044 ], [ -82.003164684999945, 28.934251271000051 ], [ -82.00316928999996, 28.934282669000027 ], [ -82.003169156999945, 28.934453646000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003169156999945, 28.934453646000065 ], [ -82.003177421999965, 28.93475741900005 ], [ -82.003177421999965, 28.934784006000029 ], [ -82.003172240999959, 28.934808315000055 ], [ -82.00316533299997, 28.934829586000035 ], [ -82.003149790999942, 28.934867569000062 ], [ -82.002881392999939, 28.935479788000066 ], [ -82.002844006999965, 28.935560231000068 ], [ -82.002825130999952, 28.935585657000047 ], [ -82.002800947999958, 28.935610046000079 ], [ -82.002740607999954, 28.935675443000036 ], [ -82.002695635999942, 28.935727553000049 ], [ -82.00265494699994, 28.935774666000043 ], [ -82.002629248999938, 28.935818924000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001435101999959, 28.944168973000046 ], [ -82.001348961999952, 28.944193795000047 ], [ -82.001273217999938, 28.944221230000039 ], [ -82.001236086999938, 28.944239520000053 ], [ -82.001207191999981, 28.944258895000075 ], [ -82.001171513999964, 28.944288844000027 ], [ -82.001143579999962, 28.94432805200006 ], [ -82.001123566999979, 28.944362630000057 ], [ -82.001108557999942, 28.944392809000078 ], [ -82.001101411999969, 28.944425500000079 ], [ -82.001098551999974, 28.944457563000071 ], [ -82.001102840999977, 28.94449151300006 ], [ -82.001111552999987, 28.944517527000073 ], [ -82.001143582999987, 28.944578272000058 ], [ -82.001309437999964, 28.944762958000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001435101999959, 28.944168973000046 ], [ -82.001716340999963, 28.944077528000037 ], [ -82.002081694999958, 28.943958511000062 ], [ -82.002448345999937, 28.94382386500007 ], [ -82.003031863999979, 28.94360381000007 ], [ -82.003255194999952, 28.943514687000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003766344999974, 28.945852682000066 ], [ -82.004006908999941, 28.945828276000043 ], [ -82.00429827499994, 28.945803171000023 ], [ -82.004549087999976, 28.945784243000048 ], [ -82.004619089999949, 28.945780029000048 ], [ -82.004665674999956, 28.945778450000034 ], [ -82.00472659199994, 28.945778448000056 ], [ -82.004773176999947, 28.945778447000066 ], [ -82.004819761999954, 28.94578475000003 ], [ -82.004871721999962, 28.94579262700006 ], [ -82.004916513999945, 28.945800506000069 ], [ -82.004959514999939, 28.945808384000031 ], [ -82.005007891999981, 28.945822566000061 ], [ -82.005058060999943, 28.945838324000079 ], [ -82.005268501999979, 28.945898233000037 ], [ -82.005344655999977, 28.945919606000075 ], [ -82.005430532999981, 28.945943832000069 ], [ -82.005802292999988, 28.946021955000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001461838999944, 28.945792017000031 ], [ -82.001587948999941, 28.945872162000057 ], [ -82.001679878999937, 28.945940520000079 ], [ -82.001791783999977, 28.94601018700007 ], [ -82.002055501999962, 28.946090110000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968613526999945, 28.877461565000033 ], [ -81.968648384999938, 28.877468962000023 ], [ -81.968799102999981, 28.877504808000026 ], [ -81.968921770999941, 28.877533311000036 ], [ -81.969023017999973, 28.877557510000031 ], [ -81.96909203499996, 28.877569676000064 ], [ -81.969159522999973, 28.877566991000037 ], [ -81.969225480999967, 28.877546756000072 ], [ -81.969263832999957, 28.877523815000075 ], [ -81.969314663999967, 28.877478862000032 ], [ -81.969362021999984, 28.877395548000038 ], [ -81.969428622999942, 28.877266672000076 ], [ -81.969484859999966, 28.877169040000069 ], [ -81.969501136999952, 28.877145609000024 ], [ -81.969544040999949, 28.877114371000062 ], [ -81.969588423999937, 28.877090947000056 ], [ -81.969644634999952, 28.877080544000023 ], [ -81.96969936499994, 28.877077953000025 ], [ -81.969756301999951, 28.877090576000057 ], [ -81.969809977999944, 28.877114887000062 ], [ -81.96992959399995, 28.877178364000031 ], [ -81.970089812999959, 28.877260311000043 ], [ -81.970199497999943, 28.87732152500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959816591999981, 28.946497181000041 ], [ -81.960192307999989, 28.946407393000072 ], [ -81.960428276999949, 28.946345952000058 ], [ -81.960822002999976, 28.946219972000051 ], [ -81.961028493999947, 28.946140488000026 ], [ -81.961127475999945, 28.946096991000047 ], [ -81.961295977999953, 28.946018068000058 ], [ -81.961473913999953, 28.945931998000049 ], [ -81.961685534999958, 28.945820998000045 ], [ -81.961774281999965, 28.94576849200007 ], [ -81.961834013999976, 28.94573549100005 ], [ -81.961878383999988, 28.945717493000075 ], [ -81.961931280999977, 28.945710004000034 ], [ -81.961992706, 28.945714523000049 ], [ -81.962133789999939, 28.945733916000052 ], [ -81.962189438999985, 28.945743657000037 ], [ -81.962218944999961, 28.945759361000057 ], [ -81.962269864999939, 28.945797433000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01131784599994, 28.914479691000054 ], [ -82.011496050999938, 28.914512684000044 ], [ -82.011749290999944, 28.914541546000066 ], [ -82.011999124999988, 28.914552942000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010550038999952, 28.914324527000076 ], [ -82.011167873999966, 28.914451124000038 ], [ -82.01131784599994, 28.914479691000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011277709999945, 28.915346643000078 ], [ -82.011240829999963, 28.915263224000057 ], [ -82.011197639999978, 28.915172994000045 ], [ -82.011162542999955, 28.91506851500003 ], [ -82.011146340999971, 28.91497828100006 ], [ -82.011157125999944, 28.914888047000034 ], [ -82.011207660999958, 28.914765540000076 ], [ -82.011278540999967, 28.914584091000052 ], [ -82.01131784599994, 28.914479691000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011733858999946, 28.913225915000055 ], [ -82.011765131999937, 28.913326315000063 ], [ -82.011855825999987, 28.913590382000052 ], [ -82.011923541999977, 28.913792931000046 ], [ -82.01193565799997, 28.913840028000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011727143999963, 28.912815508000051 ], [ -82.011720925999953, 28.912947864000046 ], [ -82.011720947999947, 28.913148211000077 ], [ -82.011733858999946, 28.913225915000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010579623999945, 28.913685944000065 ], [ -82.010589802999959, 28.913460268000051 ], [ -82.010593995999955, 28.913306806000037 ], [ -82.010601195999982, 28.913245941000071 ], [ -82.010621619999938, 28.913195900000062 ], [ -82.010659122999982, 28.913150174000066 ], [ -82.010719677999987, 28.913109604000056 ], [ -82.010765469999967, 28.913092498000026 ], [ -82.010810144999937, 28.913082351000071 ], [ -82.010876436999979, 28.913087417000042 ], [ -82.010952817999964, 28.913101359000052 ], [ -82.011255461999951, 28.91316093100005 ], [ -82.011503341999969, 28.91320909500007 ], [ -82.011591610999972, 28.913224553000077 ], [ -82.011655700999938, 28.913227297000049 ], [ -82.011733858999946, 28.913225915000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02758098299995, 28.920875342000045 ], [ -82.027577399999984, 28.921017114000051 ], [ -82.027570860999958, 28.921445797000047 ], [ -82.027552493999963, 28.921647644000075 ], [ -82.027525740999977, 28.921800873000052 ], [ -82.027498995999963, 28.92197767600004 ], [ -82.027490537999938, 28.922057419000055 ], [ -82.02749434499998, 28.922104532000048 ], [ -82.027507669999977, 28.922149266000076 ], [ -82.027520994999975, 28.922182578000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026895256999978, 28.919377419000057 ], [ -82.027094019999936, 28.919430419000037 ], [ -82.027348360999952, 28.919500810000045 ], [ -82.027454810999984, 28.91953559500007 ], [ -82.027492681999945, 28.919551670000033 ], [ -82.027530175999971, 28.919577845000049 ], [ -82.027556190999974, 28.919604942000035 ], [ -82.027578231999939, 28.919642477000025 ], [ -82.027592158999937, 28.919680566000068 ], [ -82.027589862999946, 28.920223825000051 ], [ -82.02758098299995, 28.920875342000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025750105999975, 28.920772080000063 ], [ -82.02617960699996, 28.920856506000064 ], [ -82.026510953999946, 28.920916972000043 ], [ -82.026746333999938, 28.920948786000054 ], [ -82.026889370999982, 28.920956721000039 ], [ -82.026988950999964, 28.920953515000065 ], [ -82.027092149999987, 28.920943937000061 ], [ -82.027390662999949, 28.920897234000051 ], [ -82.02758098299995, 28.920875342000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968330568999988, 28.933021396000072 ], [ -81.96846762499996, 28.933120382000027 ], [ -81.968514223999989, 28.93314824600003 ], [ -81.968546215999936, 28.933167665000042 ], [ -81.968580549999956, 28.93318344100004 ], [ -81.968611387999943, 28.933193447000065 ], [ -81.968644796999968, 28.933202049000045 ], [ -81.968678207999972, 28.933209964000071 ], [ -81.96871181299997, 28.93321753400005 ], [ -81.968745613999943, 28.933224419000055 ], [ -81.968779610999945, 28.933230958000024 ], [ -81.968813607999948, 28.933236811000029 ], [ -81.968847798999946, 28.933242319000044 ], [ -81.968881992999968, 28.933247140000049 ], [ -81.968916379999939, 28.933251272000064 ], [ -81.968950767999956, 28.933255406000058 ], [ -81.968985351999947, 28.933258508000051 ], [ -81.969019935999938, 28.933261267000034 ], [ -81.969054519999986, 28.933263680000039 ], [ -81.969089103999977, 28.933265407000079 ], [ -81.969123688999957, 28.933266447000051 ], [ -81.969158467999989, 28.933267142000034 ], [ -81.969193247999954, 28.933267150000063 ], [ -81.969258281999942, 28.933261448000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008846238, 28.910183333000077 ], [ -82.008912371999941, 28.910180267000044 ], [ -82.008988948999956, 28.910172605000071 ], [ -82.00922737999997, 28.910146556000029 ], [ -82.00932897499996, 28.910146733000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996367109999937, 28.95096128800003 ], [ -81.996356035999952, 28.951050136000049 ], [ -81.996318844999962, 28.951334835000068 ], [ -81.996270957999968, 28.951597261000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994327342999952, 28.951119369000025 ], [ -81.994577927999956, 28.95119627300005 ], [ -81.994831624999961, 28.951276115000042 ], [ -81.995047123999939, 28.951339047000033 ], [ -81.995272420999981, 28.951395324000032 ], [ -81.995517189999987, 28.95145649400007 ], [ -81.995781430999955, 28.951505432000033 ], [ -81.995984478999958, 28.951547027000061 ], [ -81.996067921999952, 28.951561707000053 ], [ -81.996192838999946, 28.951582651000024 ], [ -81.996270957999968, 28.951597261000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996270957999968, 28.951597261000074 ], [ -81.996251885999982, 28.951693564000038 ], [ -81.996199455999943, 28.951970475000053 ], [ -81.996147580999946, 28.952217945000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994081923999943, 28.951708422000024 ], [ -81.994243249999954, 28.951759805000052 ], [ -81.994476890999977, 28.951840548000064 ], [ -81.994891329999973, 28.95196044100004 ], [ -81.99533835699998, 28.952065951000066 ], [ -81.995703599999956, 28.952141948000076 ], [ -81.996075406999978, 28.952208324000026 ], [ -81.996147580999946, 28.952217945000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992465104999951, 28.947800451000035 ], [ -81.992521030999967, 28.947927793000076 ], [ -81.99253747299997, 28.947971666000058 ], [ -81.992552048999983, 28.948024245000056 ], [ -81.992563793999977, 28.948089863000064 ], [ -81.992575070999976, 28.949413331000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99285009099998, 28.947516851000046 ], [ -81.992971803999978, 28.947606035000035 ], [ -81.993053811999971, 28.947667596000031 ], [ -81.993072401999939, 28.947688757000037 ], [ -81.993087706999972, 28.947721460000025 ], [ -81.993096453999954, 28.947749353000063 ], [ -81.993101919999958, 28.947777246000044 ], [ -81.993104104999986, 28.947804178000069 ], [ -81.993103422, 28.947849684000062 ], [ -81.99310341599994, 28.947948083000028 ], [ -81.993101925999952, 28.948110072000077 ], [ -81.993101702, 28.948537386000055 ], [ -81.993105391999961, 28.948898349000046 ], [ -81.993097981999938, 28.949413359000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99285009099998, 28.947516851000046 ], [ -81.992697328999952, 28.947673348000023 ], [ -81.992650304999984, 28.947710856000072 ], [ -81.992626247999965, 28.947730091000039 ], [ -81.99258851999997, 28.947751089000064 ], [ -81.992465104999951, 28.947800451000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993277861999957, 28.947030667000035 ], [ -81.993187255999942, 28.947133789000077 ], [ -81.993059305999964, 28.947273249000034 ], [ -81.992982756999936, 28.947362694000049 ], [ -81.992902923999964, 28.947455025000068 ], [ -81.99285009099998, 28.947516851000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993606090999947, 28.94672984400006 ], [ -81.993540479999979, 28.946764467000037 ], [ -81.993504392999967, 28.946792357000049 ], [ -81.993479241999978, 28.94680967000005 ], [ -81.993366705999961, 28.946938061000026 ], [ -81.993277861999957, 28.947030667000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993606090999947, 28.94672984400006 ], [ -81.993748377999964, 28.946961231000046 ], [ -81.993801014999974, 28.947068315000024 ], [ -81.993813833, 28.947111698000072 ], [ -81.993817110999942, 28.94713766700005 ], [ -81.993820749999941, 28.947195656000076 ], [ -81.993819162999955, 28.947439058000043 ], [ -81.993813644999989, 28.948219429000062 ], [ -81.993813981999949, 28.949141434000069 ], [ -81.99382338099997, 28.949413639000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995600822999961, 28.946663214000068 ], [ -81.99500857299995, 28.946663193000063 ], [ -81.994217359999936, 28.946658696000043 ], [ -81.993873425999936, 28.946663146000049 ], [ -81.993813858999943, 28.946665412000073 ], [ -81.993773399999952, 28.946671180000067 ], [ -81.993702322, 28.946691376000047 ], [ -81.993645457999946, 28.946709647000034 ], [ -81.993606090999947, 28.94672984400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996340375999978, 28.944891694000034 ], [ -81.99624248899994, 28.944949935000068 ], [ -81.996147927999971, 28.945009128000038 ], [ -81.996106375999943, 28.945052409000027 ], [ -81.996084503999953, 28.945082225000078 ], [ -81.996072474999949, 28.945124546000045 ], [ -81.996065911999949, 28.945183216000032 ], [ -81.996065907999935, 28.945289978000062 ], [ -81.996064800999989, 28.945346419000032 ], [ -81.996066996999957, 28.945408283000063 ], [ -81.996071377999954, 28.945476653000071 ], [ -81.996081206999975, 28.945508314000051 ], [ -81.996100385999966, 28.945542952000039 ], [ -81.996250531999976, 28.945722199000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99751588099997, 28.94456191300003 ], [ -81.997243605999984, 28.944561907000036 ], [ -81.997065370999962, 28.944558056000062 ], [ -81.99693634099998, 28.944558053000037 ], [ -81.996900254999957, 28.944562862000055 ], [ -81.996878385999935, 28.944568632000028 ], [ -81.996852142999956, 28.944584020000036 ], [ -81.996761800999934, 28.944634176000079 ], [ -81.996673517999966, 28.944685499000059 ], [ -81.996587146999957, 28.944736143000057 ], [ -81.996467873999961, 28.94480849200005 ], [ -81.996340375999978, 28.944891694000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99751588099997, 28.94456191300003 ], [ -81.997508573999937, 28.944719306000025 ], [ -81.997492574999967, 28.944805204000033 ], [ -81.997471040999983, 28.94485815400003 ], [ -81.997433899999976, 28.944942362000063 ], [ -81.997380272999976, 28.945008399000073 ], [ -81.997312344999955, 28.945068144000061 ], [ -81.997230118999937, 28.945121603000075 ], [ -81.997130014999982, 28.945181347000073 ], [ -81.997022759999936, 28.945250527000042 ], [ -81.996894056999963, 28.945325995000076 ], [ -81.996729599999981, 28.945426618000056 ], [ -81.996440013999973, 28.945599564000076 ], [ -81.996250531999976, 28.945722199000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998261505999949, 28.943905598000072 ], [ -81.99805811899995, 28.943922908000047 ], [ -81.997939205999955, 28.943935891000024 ], [ -81.99790804099996, 28.943943104000027 ], [ -81.997880976999966, 28.943953924000027 ], [ -81.997845712999947, 28.943977729000039 ], [ -81.997821816999988, 28.943994920000023 ], [ -81.997762590999969, 28.944047013000045 ], [ -81.997690205999959, 28.944110683000076 ], [ -81.997607126999981, 28.944189906000076 ], [ -81.997564002, 28.944236816000057 ], [ -81.997554570999966, 28.944251123000072 ], [ -81.997546504999946, 28.944267594000053 ], [ -81.997541447999936, 28.944285748000027 ], [ -81.99753885299998, 28.944304584000065 ], [ -81.997532286999956, 28.944409945000075 ], [ -81.997529005, 28.944482081000046 ], [ -81.99751588099997, 28.94456191300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998226520999935, 28.943378486000029 ], [ -81.99824560199994, 28.943480648000047 ], [ -81.998256640999955, 28.943612611000049 ], [ -81.998259416999986, 28.943783658000029 ], [ -81.998261505999949, 28.943905598000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998624591999942, 28.943872460000023 ], [ -81.998261505999949, 28.943905598000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998261505999949, 28.943905598000072 ], [ -81.99827626299998, 28.94413355100005 ], [ -81.998286102999941, 28.944224444000042 ], [ -81.998291842999947, 28.944264840000073 ], [ -81.998300863999987, 28.94431245100003 ], [ -81.998346786999946, 28.944495680000045 ], [ -81.998366466999983, 28.944566374000033 ], [ -81.998375488999955, 28.944605327000033 ], [ -81.998381139999935, 28.944646098000078 ], [ -81.998390247999964, 28.944757536000054 ], [ -81.998386966999988, 28.944793605000029 ], [ -81.998380404999978, 28.944839051000031 ], [ -81.998366461999979, 28.944896760000063 ], [ -81.998348419999957, 28.944945091000079 ], [ -81.998301670999979, 28.945043919000057 ], [ -81.998270152999964, 28.945095356000024 ], [ -81.998227859999986, 28.945160058000056 ], [ -81.998172175999969, 28.945227006000039 ], [ -81.998104840999986, 28.94530144600003 ], [ -81.998023647999958, 28.945382237000047 ], [ -81.998004785999967, 28.945398107000074 ], [ -81.997900628999957, 28.945473127000071 ], [ -81.99774281699996, 28.945577985000057 ], [ -81.997584883999934, 28.945676381000055 ], [ -81.997269952999943, 28.945859770000027 ], [ -81.99652869199997, 28.946315951000031 ], [ -81.996196367999971, 28.946518527000023 ], [ -81.996068044999959, 28.94658219300004 ], [ -81.995939723999982, 28.946625601000051 ], [ -81.995811401999958, 28.946651644000042 ], [ -81.995706112999983, 28.946663217000037 ], [ -81.995600822999961, 28.946663214000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996045135999964, 28.943376414000056 ], [ -81.996045127999935, 28.943591734000051 ], [ -81.996045122999988, 28.943707497000048 ], [ -81.996046460999935, 28.943857180000066 ], [ -81.996053021999955, 28.943884111000045 ], [ -81.996065047999934, 28.943905271000062 ], [ -81.99608472999995, 28.943925471000057 ], [ -81.996097316999965, 28.943935552000028 ], [ -81.996121445999961, 28.943948287000069 ], [ -81.996191888999988, 28.943953366000073 ], [ -81.99630670199997, 28.943954331000043 ], [ -81.996536330999959, 28.943955299000038 ], [ -81.996699255999943, 28.943955304000042 ], [ -81.996866344999944, 28.94395525300007 ], [ -81.997008708999942, 28.943953387000079 ], [ -81.997130084999981, 28.943953389000058 ], [ -81.997194597999965, 28.943953391000036 ], [ -81.997218725999971, 28.94395376600005 ], [ -81.997255903999985, 28.943948315000057 ], [ -81.99729801899997, 28.943932110000048 ], [ -81.997340134999945, 28.943911273000026 ], [ -81.997400675999984, 28.943858023000075 ], [ -81.997458582999968, 28.943809403000046 ], [ -81.997516082999937, 28.943761994000056 ], [ -81.997553341999946, 28.943723739000063 ], [ -81.997569663999968, 28.943703324000069 ], [ -81.997579664999989, 28.943682066000065 ], [ -81.997581692999972, 28.943661965000047 ], [ -81.997581693999962, 28.94361387400005 ], [ -81.997582441999953, 28.94337835400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998201036999944, 28.942215019000059 ], [ -81.997989582999935, 28.942210577000026 ], [ -81.997591566999972, 28.942211532000044 ], [ -81.996916909999982, 28.942210557000067 ], [ -81.996345240999972, 28.942214157000024 ], [ -81.996167895999974, 28.942210537000051 ], [ -81.996137279999971, 28.942217270000071 ], [ -81.996108850999974, 28.942225925000059 ], [ -81.99608260499997, 28.942249970000034 ], [ -81.996067295999978, 28.942269206000049 ], [ -81.996053082999936, 28.942295175000027 ], [ -81.996048705999954, 28.942312488000027 ], [ -81.996045424999977, 28.942355770000063 ], [ -81.996045169999945, 28.942478090000066 ], [ -81.996045164999941, 28.942605429000025 ], [ -81.996047793999935, 28.942686464000076 ], [ -81.996053053999958, 28.942797597000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999527459999968, 28.942283664000058 ], [ -81.99953900099996, 28.942313507000051 ], [ -81.99954556199998, 28.942347171000051 ], [ -81.999548841999967, 28.942445277000047 ], [ -81.999548840999978, 28.942563582000048 ], [ -81.999549933999958, 28.942761719000032 ], [ -81.999569570999938, 28.943223663000026 ], [ -81.999585362999937, 28.943432038000026 ], [ -81.999603787999945, 28.943640411000047 ], [ -81.999622210999974, 28.943781643000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997001299999965, 28.918388370000059 ], [ -81.997028796999984, 28.918278727000029 ], [ -81.99704849799997, 28.918198288000042 ], [ -81.997067695999988, 28.918121850000034 ], [ -81.99708284899998, 28.918047189000049 ], [ -81.997093836999966, 28.918000241000072 ], [ -81.997095983999941, 28.917982305000066 ], [ -81.99709917399997, 28.917920964000075 ], [ -81.997095988999945, 28.917831204000038 ], [ -81.997090794999963, 28.917729664000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998835912999937, 28.919624946000056 ], [ -81.998757781999984, 28.919503112000029 ], [ -81.99867825299998, 28.919405271000073 ], [ -81.998589073999938, 28.919328012000051 ], [ -81.998498154999936, 28.919268459000079 ], [ -81.998371136999936, 28.919208970000057 ], [ -81.998225199999979, 28.919154996000032 ], [ -81.998109933999956, 28.919101021000074 ], [ -81.998002287999952, 28.919043609000028 ], [ -81.997864164999953, 28.918959039000072 ], [ -81.997712200999956, 28.918843589000062 ], [ -81.997584915999937, 28.918725373000029 ], [ -81.997540465999975, 28.918682708000063 ], [ -81.997480864999943, 28.918608046000031 ], [ -81.997429343999954, 28.918555604000062 ], [ -81.997387872, 28.918519682000067 ], [ -81.997326333, 28.918478347000075 ], [ -81.99726607499997, 28.918455853000069 ], [ -81.997174772999983, 28.918430146000048 ], [ -81.997088949999977, 28.91840604500004 ], [ -81.997001299999965, 28.918388370000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998202522999975, 28.91997146600005 ], [ -81.998123345999943, 28.919911076000062 ], [ -81.998056670999972, 28.919855078000069 ], [ -81.99799302699995, 28.919810636000079 ], [ -81.99790210599997, 28.919746639000039 ], [ -81.997833409999942, 28.919703086000027 ], [ -81.997764557999972, 28.919664029000046 ], [ -81.997650808999936, 28.919604648000075 ], [ -81.997512564999965, 28.919521037000038 ], [ -81.997406654999963, 28.91945034400004 ], [ -81.997315353999966, 28.919387684000071 ], [ -81.997224052999968, 28.919313780000039 ], [ -81.997147359999985, 28.919246300000054 ], [ -81.997086858999978, 28.919192885000029 ], [ -81.99702422699994, 28.919127111000023 ], [ -81.996983818999979, 28.919085335000034 ], [ -81.996952502999989, 28.919044449000069 ], [ -81.996934319, 28.919011562000037 ], [ -81.996915072999968, 28.918961082000067 ], [ -81.996906329999945, 28.918908907000059 ], [ -81.996900985999957, 28.918863127000066 ], [ -81.996903008999936, 28.918819574000054 ], [ -81.996913111999959, 28.918761801000073 ], [ -81.996944430999974, 28.918632922000029 ], [ -81.996971741999971, 28.918516924000073 ], [ -81.997001299999965, 28.918388370000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995318926999971, 28.92050000100005 ], [ -81.995494563999955, 28.920406736000075 ], [ -81.99585203099997, 28.920238186000063 ], [ -81.995991727999979, 28.920175900000061 ], [ -81.996098814999982, 28.920132350000074 ], [ -81.996251362999942, 28.920084357000064 ], [ -81.996522545999937, 28.91999790400007 ], [ -81.996718099999953, 28.919932381000024 ], [ -81.996764870999982, 28.919915236000065 ], [ -81.996791848999976, 28.919903051000063 ], [ -81.99683325999996, 28.919866442000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996181390999936, 28.918851051000047 ], [ -81.996121132999974, 28.918838196000024 ], [ -81.996020699999974, 28.918810882000059 ], [ -81.995935705999955, 28.918785386000025 ], [ -81.995839585999988, 28.918749973000047 ], [ -81.995731744999944, 28.918709749000072 ], [ -81.995642465999936, 28.918672618000073 ], [ -81.995563147999974, 28.918635488000064 ], [ -81.995472108999934, 28.918591138000068 ], [ -81.995406467999942, 28.918559852000044 ], [ -81.995323161999977, 28.918520064000063 ], [ -81.995259749999946, 28.918494873000043 ], [ -81.99518986299995, 28.918481501000031 ], [ -81.995124948999944, 28.918481461000056 ], [ -81.995049255999959, 28.918499168000039 ], [ -81.994988384999942, 28.918523052000069 ], [ -81.994949701999985, 28.918551241000046 ], [ -81.994904993999967, 28.918597165000051 ], [ -81.994872136999959, 28.918647495000073 ], [ -81.994843414999934, 28.918699405000041 ], [ -81.994814889999986, 28.918748219000065 ], [ -81.994774444999962, 28.918816630000038 ], [ -81.994743964999941, 28.918873009000038 ], [ -81.994708600999957, 28.918936606000045 ], [ -81.994666398999982, 28.919003297000074 ], [ -81.994639435999943, 28.919049362000067 ], [ -81.994607391999978, 28.919102646000056 ], [ -81.994572027999936, 28.919144241000026 ], [ -81.994514782999943, 28.919199243000037 ], [ -81.994471018999945, 28.919228806000035 ], [ -81.994395019999956, 28.919259743000055 ], [ -81.994342855999946, 28.919267304000073 ], [ -81.994275037999955, 28.919271309000067 ], [ -81.994221532999973, 28.919265924000058 ], [ -81.994159212999989, 28.919248044000028 ], [ -81.994104310999944, 28.91922330500006 ], [ -81.994045718999985, 28.91918508200007 ], [ -81.99400409499998, 28.919147311000074 ], [ -81.993977026999971, 28.919120195000062 ], [ -81.993953793999935, 28.919088197000065 ], [ -81.993938641999989, 28.919057976000033 ], [ -81.993924382999978, 28.919021269000041 ], [ -81.993916422999973, 28.91896553600003 ], [ -81.993918444999963, 28.918924650000065 ], [ -81.993928550999954, 28.918883765000032 ], [ -81.99396391199997, 28.918809106000026 ], [ -81.994024243999945, 28.918708309000067 ], [ -81.994079927999962, 28.91861171000005 ], [ -81.994137371999955, 28.91851408000008 ], [ -81.994192860999988, 28.918417481000063 ], [ -81.994250303999934, 28.918318132000024 ], [ -81.994310871999971, 28.918229439000072 ], [ -81.994373198999938, 28.918152092000071 ], [ -81.994420478999984, 28.918107747000079 ], [ -81.994492961999981, 28.918051371000047 ], [ -81.994546883999988, 28.918014246000041 ], [ -81.994599048999987, 28.917978838000067 ], [ -81.994668209999986, 28.917941714000051 ], [ -81.994740975999946, 28.917909241000075 ], [ -81.99476890699998, 28.91790002700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99476890699998, 28.91790002700003 ], [ -81.994833766999989, 28.917877651000026 ], [ -81.994890339999984, 28.917863432000047 ], [ -81.994954993999954, 28.917850991000023 ], [ -81.995037258999957, 28.917842376000067 ], [ -81.995123220999972, 28.91783619000006 ], [ -81.995197459999986, 28.917836193000028 ], [ -81.995285176999971, 28.917842385000029 ], [ -81.995369378999953, 28.917854076000026 ], [ -81.995460417999936, 28.917875049000031 ], [ -81.995541297999978, 28.917903241000033 ], [ -81.995637415999965, 28.917946217000065 ], [ -81.995701494999935, 28.917975784000078 ], [ -81.995767135999984, 28.918008445000055 ], [ -81.995848015999968, 28.918046951000065 ], [ -81.99590877299994, 28.918076517000031 ], [ -81.99597109299998, 28.918104709000033 ], [ -81.996040250999954, 28.918130150000025 ], [ -81.996101590999956, 28.918153421000056 ], [ -81.996150464999971, 28.918173900000056 ], [ -81.996219122999946, 28.918201545000045 ], [ -81.996294627999987, 28.918229299000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996458351999934, 28.917581494000046 ], [ -81.996446825999953, 28.917577712000025 ], [ -81.996316714999978, 28.917529236000064 ], [ -81.996211721999941, 28.917483751000077 ], [ -81.996107670999947, 28.917431306000026 ], [ -81.996019784999987, 28.917382418000045 ], [ -81.995937958999946, 28.917340641000067 ], [ -81.995848050999939, 28.917297086000076 ], [ -81.995745011999986, 28.917248197000049 ], [ -81.995620644999974, 28.91719884500003 ], [ -81.995570438999948, 28.917180968000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995570438999948, 28.917180968000025 ], [ -81.995485260999942, 28.917150369000069 ], [ -81.995357095999964, 28.917116638000039 ], [ -81.995204917999956, 28.917079885000078 ], [ -81.995134850999989, 28.917065078000064 ], [ -81.995078279999973, 28.917049077000058 ], [ -81.99503483999996, 28.917033077000042 ], [ -81.994992412999977, 28.917005522000068 ], [ -81.994963117999987, 28.916972633000057 ], [ -81.994940894999957, 28.916936192000037 ], [ -81.994928775999938, 28.916884640000035 ], [ -81.994929467999953, 28.916806572000041 ], [ -81.994929472999956, 28.916709970000056 ], [ -81.994934556999965, 28.916621619000068 ], [ -81.994934561999969, 28.91652020500004 ], [ -81.994934568999952, 28.916383726000049 ], [ -81.994934574999945, 28.916260310000041 ], [ -81.994934580999939, 28.916141363000065 ], [ -81.994934586999989, 28.91600935200006 ], [ -81.994930171999954, 28.915880858000037 ], [ -81.994929518999982, 28.915758051000068 ], [ -81.994924122999976, 28.915610654000034 ], [ -81.994914700999971, 28.91546429300007 ], [ -81.994910666999942, 28.915355857000065 ], [ -81.994906629999946, 28.915277640000056 ], [ -81.994899463999957, 28.915163316000076 ], [ -81.994874415999959, 28.915017644000045 ], [ -81.99484666799998, 28.914908865000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994660530999965, 28.914254295000035 ], [ -81.995554654999978, 28.914064082000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99484666799998, 28.914908865000029 ], [ -81.994827181999938, 28.914846259000058 ], [ -81.994792840999935, 28.914732489000073 ], [ -81.994762540999943, 28.914620495000065 ], [ -81.994731229999957, 28.914504058000034 ], [ -81.994702950999965, 28.91440628600003 ], [ -81.994670629999973, 28.914296958000079 ], [ -81.994660530999965, 28.914254295000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994268537999972, 28.913591197000073 ], [ -81.994506486999967, 28.913493575000075 ], [ -81.994615113999942, 28.913457016000052 ], [ -81.994723204999957, 28.913428577000047 ], [ -81.994833313999948, 28.913409916000035 ], [ -81.994969688999959, 28.913395700000024 ], [ -81.99513417299994, 28.913386339000056 ], [ -81.99526799299997, 28.913376030000052 ], [ -81.995372507999946, 28.913367440000059 ], [ -81.995479174999957, 28.913355411000055 ], [ -81.995576071999949, 28.913336851000054 ], [ -81.99571913799997, 28.913294414000063 ], [ -81.995929874999945, 28.913314828000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994660530999965, 28.914254295000035 ], [ -81.994639098999983, 28.91417632100007 ], [ -81.994614098999989, 28.914083844000061 ], [ -81.994598189999977, 28.914040857000032 ], [ -81.994586837999975, 28.914017547000071 ], [ -81.994567915999937, 28.913988687000028 ], [ -81.994497910999939, 28.913897868000049 ], [ -81.994430231999957, 28.913810761000036 ], [ -81.994338664999987, 28.91369158200007 ], [ -81.994268537999972, 28.913591197000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993880747999981, 28.912887247000072 ], [ -81.993965601999946, 28.912880139000038 ], [ -81.994185820999974, 28.912860595000041 ], [ -81.99441109199995, 28.912830384000074 ], [ -81.994593650999946, 28.912798116000033 ], [ -81.99482808099998, 28.912750340000059 ], [ -81.995043169999974, 28.912699125000074 ], [ -81.995249292999972, 28.912632076000079 ], [ -81.995461120999948, 28.91262002600007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994268537999972, 28.913591197000073 ], [ -81.994221021999977, 28.913535804000048 ], [ -81.99415750299994, 28.913453440000069 ], [ -81.994101948999969, 28.913371666000046 ], [ -81.994047403999957, 28.913282782000067 ], [ -81.993998185999942, 28.913184840000042 ], [ -81.99394818199994, 28.91307929900006 ], [ -81.993923179999967, 28.913017418000038 ], [ -81.993898178999984, 28.912942473000044 ], [ -81.993880747999981, 28.912887247000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993856871999981, 28.912202400000069 ], [ -81.993953519999934, 28.912215296000056 ], [ -81.994064857999945, 28.91222020400005 ], [ -81.994149539999967, 28.912218694000046 ], [ -81.994226912999977, 28.912208337000038 ], [ -81.994302604999973, 28.912190581000061 ], [ -81.994400160999987, 28.912159505000034 ], [ -81.994502764999936, 28.912123990000055 ], [ -81.994578456999989, 28.912092915000073 ], [ -81.994669287999955, 28.912055918000078 ], [ -81.994737791999967, 28.912023941000029 ], [ -81.994814459999986, 28.912015717000031 ], [ -81.994915824999964, 28.912015717000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993880747999981, 28.912887247000072 ], [ -81.993854486999965, 28.912810806000039 ], [ -81.993826209999952, 28.912698812000031 ], [ -81.993807945999947, 28.912594566000053 ], [ -81.993798946999959, 28.912484604000042 ], [ -81.993801981999979, 28.912436607000075 ], [ -81.993809055999975, 28.912378833000048 ], [ -81.993824211999936, 28.912313060000031 ], [ -81.993835325999953, 28.912270398000032 ], [ -81.993856871999981, 28.912202400000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995570438999948, 28.917180968000025 ], [ -81.995600555999943, 28.91713975600004 ], [ -81.99561166899997, 28.917115757000033 ], [ -81.995622782999988, 28.917065983000043 ], [ -81.99564253799997, 28.916960608000068 ], [ -81.995653173999983, 28.916815116000066 ], [ -81.995656210999982, 28.916661350000027 ], [ -81.995660186999942, 28.916448251000077 ], [ -81.995662219999986, 28.916151383000056 ], [ -81.995662229999937, 28.915908733000038 ], [ -81.995653145999938, 28.915706969000041 ], [ -81.995644062999986, 28.915517648000048 ], [ -81.995636995999973, 28.915381658000058 ], [ -81.995632961999945, 28.915243890000056 ], [ -81.995623077999937, 28.915094929000077 ], [ -81.995603743999936, 28.914961543000061 ], [ -81.995579914999951, 28.914841221000074 ], [ -81.99556858699998, 28.914781747000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996368512999936, 28.916761239000039 ], [ -81.996484577, 28.916822251000042 ], [ -81.996606810999936, 28.916876472000069 ], [ -81.996726014999979, 28.916916473000072 ], [ -81.996913913999947, 28.916967141000043 ], [ -81.996997759999942, 28.916987585000072 ], [ -81.997093692999954, 28.916997088000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996373505999941, 28.915382349000026 ], [ -81.996371486999976, 28.915334353000048 ], [ -81.996362397999974, 28.91521702700004 ], [ -81.996357349999982, 28.915137034000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996368512999936, 28.916761239000039 ], [ -81.996384572999943, 28.916680036000059 ], [ -81.996388639999964, 28.916619604000061 ], [ -81.996390641999938, 28.916446275000055 ], [ -81.996395492999966, 28.916165819000071 ], [ -81.996391009999968, 28.915889077000031 ], [ -81.996381578999944, 28.915621443000077 ], [ -81.996373505999941, 28.915382349000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997082660999979, 28.915417031000061 ], [ -81.997207925999987, 28.91542503200003 ], [ -81.997358444999975, 28.915429480000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997093692999954, 28.916997088000073 ], [ -81.997094477999951, 28.916830700000048 ], [ -81.997101325999949, 28.916512018000049 ], [ -81.997103481999943, 28.916241466000031 ], [ -81.997101338999983, 28.916036574000032 ], [ -81.997093762999953, 28.915826780000032 ], [ -81.997090735999961, 28.915688123000052 ], [ -81.997088718999976, 28.91553435700007 ], [ -81.997082660999979, 28.915417031000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996373505999941, 28.915382349000026 ], [ -81.996878602999971, 28.915401917000054 ], [ -81.997082660999979, 28.915417031000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996060421999971, 28.916632142000026 ], [ -81.99612861199995, 28.916656808000027 ], [ -81.996298183999954, 28.916728922000061 ], [ -81.996368512999936, 28.916761239000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999527907999948, 28.919303519000039 ], [ -81.999457379999967, 28.919229262000044 ], [ -81.999370245999955, 28.919141255000056 ], [ -81.999278814999968, 28.919045341000071 ], [ -81.999169996999967, 28.918934301000036 ], [ -81.999065670999983, 28.918846293000058 ], [ -81.99895681299995, 28.918770007000035 ], [ -81.998834944999942, 28.918704655000056 ], [ -81.998713037999948, 28.918646899000066 ], [ -81.998600207999971, 28.918604248000065 ], [ -81.998502645999963, 28.918559848000029 ], [ -81.998413496999945, 28.918519888000048 ], [ -81.998315934999937, 28.918460689000028 ], [ -81.998230148999937, 28.91839408900006 ], [ -81.998146043999952, 28.918318609000039 ], [ -81.998065304999955, 28.918228331000023 ], [ -81.998007774999962, 28.918156665000026 ], [ -81.997953903999985, 28.918064638000033 ], [ -81.99790339499998, 28.917960644000061 ], [ -81.997882181999955, 28.917909092000059 ], [ -81.997862988999941, 28.917859319000058 ], [ -81.997844806999979, 28.917761546000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997844806999979, 28.917761546000065 ], [ -81.997833411999977, 28.917677106000042 ], [ -81.997832158999984, 28.917308564000052 ], [ -81.997830401999977, 28.917211619000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997844806999979, 28.917761546000065 ], [ -81.997775102999981, 28.917759768000053 ], [ -81.997733881999977, 28.917758567000078 ], [ -81.997618616999944, 28.917758565000042 ], [ -81.997498466999957, 28.917754093000042 ], [ -81.997353310999983, 28.917749621000041 ], [ -81.997232966999945, 28.917741025000055 ], [ -81.997090794999963, 28.917729664000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998502060999954, 28.91781123100003 ], [ -81.998331646999986, 28.91779585200004 ], [ -81.998104428999966, 28.917776626000034 ], [ -81.997844806999979, 28.917761546000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001740487999939, 28.921889398000076 ], [ -82.00169078, 28.921784380000076 ], [ -82.001618039999983, 28.921662611000045 ], [ -82.001539235999985, 28.921529288000045 ], [ -82.001442538999981, 28.921389550000072 ], [ -82.001385488999972, 28.921307388000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000832250999963, 28.923042546000033 ], [ -82.000885511999968, 28.923012920000076 ], [ -82.000950658999955, 28.922983487000067 ], [ -82.001188357999979, 28.922899835000067 ], [ -82.001320412999974, 28.922845616000075 ], [ -82.001438379999968, 28.922789848000036 ], [ -82.001568673999941, 28.922724785000071 ], [ -82.001766288999988, 28.922622674000024 ], [ -82.002011044999961, 28.922493658000064 ], [ -82.002081762999978, 28.922458104000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002502074999938, 28.92296884600006 ], [ -82.002452448999975, 28.922910061000039 ], [ -82.002378594999982, 28.92282205500004 ], [ -82.002265274999957, 28.922691765000025 ], [ -82.002160943999968, 28.922557694000034 ], [ -82.002081762999978, 28.922458104000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002081762999978, 28.922458104000043 ], [ -82.002051452999979, 28.922410996000053 ], [ -82.001991846999942, 28.92231233900003 ], [ -82.001911022999934, 28.922169239000027 ], [ -82.001825672999985, 28.922028970000042 ], [ -82.001740487999939, 28.921889398000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002816223999957, 28.923784406000038 ], [ -82.002830398999947, 28.923543347000077 ], [ -82.002822315999936, 28.92347490700007 ], [ -82.002793014999952, 28.923383358000024 ], [ -82.002725421999969, 28.923251176000065 ], [ -82.002647947999947, 28.923139645000049 ], [ -82.002552677999972, 28.923028661000046 ], [ -82.002502074999938, 28.92296884600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001938586999984, 28.923909199000036 ], [ -82.001963246999935, 28.923709349000035 ], [ -82.001963243999967, 28.923629593000044 ], [ -82.001943779999976, 28.923465527000076 ], [ -82.001931250999974, 28.923420704000023 ], [ -82.001898920999963, 28.923351376000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001084587999969, 28.92360022400004 ], [ -82.001161284999966, 28.923587370000064 ], [ -82.001300081999943, 28.923549484000034 ], [ -82.001513096999986, 28.923483838000038 ], [ -82.001771791999943, 28.923403814000039 ], [ -82.001898920999963, 28.923351376000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001898920999963, 28.923351376000028 ], [ -82.001969881999969, 28.923314349000066 ], [ -82.002059552999981, 28.923263381000027 ], [ -82.002195145999963, 28.923176491000049 ], [ -82.002502074999938, 28.92296884600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001103526999941, 28.92412637700005 ], [ -82.001079415999982, 28.923876827000072 ], [ -82.001072520999969, 28.923802908000027 ], [ -82.00107251999998, 28.923741580000069 ], [ -82.00108161299994, 28.923660697000059 ], [ -82.001084587999969, 28.92360022400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001084587999969, 28.92360022400004 ], [ -82.001085652999961, 28.923559371000067 ], [ -82.001075549999939, 28.923499819000028 ], [ -82.001055366999935, 28.923417071000074 ], [ -82.001040793999948, 28.923380460000033 ], [ -82.001018844999976, 28.923333527000068 ], [ -82.000993933999951, 28.923291138000025 ], [ -82.000963698999954, 28.923250762000066 ], [ -82.000841784999977, 28.923059279000029 ], [ -82.000832250999963, 28.923042546000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000196269999947, 28.923907085000053 ], [ -82.000303919999965, 28.923633044000042 ], [ -82.000320874999943, 28.923585150000065 ], [ -82.000353201999985, 28.923514933000035 ], [ -82.000412808999954, 28.923412718000066 ], [ -82.000469382999938, 28.923330946000078 ], [ -82.00053404099998, 28.923259839000025 ], [ -82.00059364599997, 28.923205621000079 ], [ -82.000658303999955, 28.923149625000065 ], [ -82.000750236999977, 28.923081185000058 ], [ -82.000832250999963, 28.923042546000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999438382999983, 28.923417063000045 ], [ -81.999529785999982, 28.923344238000027 ], [ -81.999609298999985, 28.923261753000077 ], [ -81.999700700999938, 28.92316663500003 ], [ -81.999812159999976, 28.923038999000028 ], [ -81.999992533999944, 28.922835871000075 ], [ -82.000071334999973, 28.922762099000067 ], [ -82.000169331999984, 28.922676771000056 ], [ -82.000249141999973, 28.922619886000064 ], [ -82.000331463999942, 28.922569056000043 ], [ -82.000494600999957, 28.922475548000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998750498999982, 28.922955094000031 ], [ -81.99892398999998, 28.922807633000048 ], [ -81.999296179999988, 28.922513706000075 ], [ -81.999657127999967, 28.922227914000075 ], [ -81.999756131999959, 28.922151475000078 ], [ -81.999866250999958, 28.922078591000059 ], [ -82.000128274999952, 28.921915193000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996294627999987, 28.918229299000075 ], [ -81.996319362999941, 28.918125044000078 ], [ -81.996362022999961, 28.91794899000007 ], [ -81.996434543999953, 28.917645081000046 ], [ -81.996458351999934, 28.917581494000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004316596999956, 28.921818183000028 ], [ -82.004209639999942, 28.921774937000066 ], [ -82.004081706999955, 28.921716197000023 ], [ -82.003986993999945, 28.92167620400005 ], [ -82.00392637799996, 28.921650873000033 ], [ -82.003860457999963, 28.921631543000046 ], [ -82.00375059299995, 28.921619547000034 ], [ -82.003588606999983, 28.92161842400003 ], [ -82.003576414999941, 28.921619662000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003593326999976, 28.921729342000049 ], [ -82.003642321999962, 28.921725160000051 ], [ -82.003805150999938, 28.921732204000079 ], [ -82.004014275999964, 28.921768862000079 ], [ -82.004216670999938, 28.921805901000027 ], [ -82.004316596999956, 28.921818183000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004316596999956, 28.921818183000028 ], [ -82.004436314999964, 28.921854176000068 ], [ -82.004601493999985, 28.921906834000026 ], [ -82.004664979999973, 28.921932621000053 ], [ -82.004775009999946, 28.921974822000038 ], [ -82.00485002399995, 28.922017485000026 ], [ -82.004900693999957, 28.922051509000028 ], [ -82.00499105199998, 28.922121322000066 ], [ -82.005043243999978, 28.922172132000071 ], [ -82.005084918999955, 28.922224128000039 ], [ -82.005124321999972, 28.922277455000028 ], [ -82.005205572999955, 28.92241903200005 ], [ -82.005264587999989, 28.92252574500003 ], [ -82.005330434999962, 28.922642755000027 ], [ -82.005379336999965, 28.922736286000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005379336999965, 28.922736286000031 ], [ -82.005440311999962, 28.922841403000064 ], [ -82.005508870999961, 28.922966706000068 ], [ -82.005583519999959, 28.923101496000072 ], [ -82.005648095999959, 28.923219540000048 ], [ -82.005697445999942, 28.923303731000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005697445999942, 28.923303731000033 ], [ -82.005767718999948, 28.923400312000069 ], [ -82.005830776999971, 28.923477037000055 ], [ -82.005912400999989, 28.92356133100003 ], [ -82.005990447999977, 28.923627989000067 ], [ -82.00608819699994, 28.923701980000033 ], [ -82.006149572999959, 28.923743308000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005357558999947, 28.924241524000024 ], [ -82.005530212999986, 28.924172605000024 ], [ -82.005664619999948, 28.924109147000024 ], [ -82.005788526999936, 28.924036514000079 ], [ -82.005891486999985, 28.923978412000054 ], [ -82.006009405999976, 28.923894636000057 ], [ -82.006033651999985, 28.923875971000029 ], [ -82.006049562999976, 28.923859305000065 ], [ -82.006085929999983, 28.923815306000051 ], [ -82.006149572999959, 28.923743308000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008180292999953, 28.924527144000024 ], [ -82.008293300999981, 28.924646587000041 ], [ -82.008376147999968, 28.924754528000051 ], [ -82.008439369999962, 28.924860393000074 ], [ -82.008512154999949, 28.925019915000064 ], [ -82.008520542999975, 28.925038357000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008180292999953, 28.924527144000024 ], [ -82.008229541999981, 28.924486477000073 ], [ -82.008262877999982, 28.924465143000077 ], [ -82.008427698999981, 28.924387372000069 ], [ -82.008957738999982, 28.924175914000045 ], [ -82.009336755999982, 28.92402359600004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008069086999967, 28.925672087000066 ], [ -82.008089590999987, 28.925549700000033 ], [ -82.008094858999982, 28.925442787000065 ], [ -82.008084103999977, 28.925333810000041 ], [ -82.008060845999978, 28.925212802000033 ], [ -82.008043949999944, 28.925112443000046 ], [ -82.008042857999953, 28.925050540000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008025068999984, 28.925913054000034 ], [ -82.008032175999972, 28.925875948000055 ], [ -82.008064399999967, 28.925699245000033 ], [ -82.008069086999967, 28.925672087000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005726093999954, 28.925180557000033 ], [ -82.005798838999965, 28.925251883000044 ], [ -82.005868550999935, 28.925311208000039 ], [ -82.005935233999935, 28.925359202000038 ], [ -82.005978425999956, 28.925389197000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005978425999956, 28.925389197000072 ], [ -82.006004189999942, 28.925407862000043 ], [ -82.006057988999942, 28.925440524000066 ], [ -82.006113305999975, 28.925471186000038 ], [ -82.006202421999944, 28.925511985000071 ], [ -82.00628379699998, 28.925544506000051 ], [ -82.006361853999977, 28.925574889000075 ], [ -82.006441405999965, 28.925599827000042 ], [ -82.006497477999972, 28.925613157000043 ], [ -82.006577797999967, 28.925633152000046 ], [ -82.00664523599994, 28.925644481000063 ], [ -82.006708126999968, 28.925653144000023 ], [ -82.00677405, 28.92565914100004 ], [ -82.00689172899996, 28.925661495000043 ], [ -82.007117391999941, 28.925664921000077 ], [ -82.007595289999983, 28.925666270000079 ], [ -82.008069086999967, 28.925672087000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005978425999956, 28.925389197000072 ], [ -82.00601024599996, 28.925320535000026 ], [ -82.006157652999946, 28.925041014000044 ], [ -82.006257991999973, 28.924845891000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006257991999973, 28.924845891000075 ], [ -82.006329565999977, 28.924707199000068 ], [ -82.006398152999964, 28.924571238000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006257991999973, 28.924845891000075 ], [ -82.006321641999989, 28.924861220000025 ], [ -82.006365590999962, 28.924875216000032 ], [ -82.006403476999935, 28.92489388000007 ], [ -82.00655504599996, 28.924968458000023 ], [ -82.00662852499994, 28.924995196000054 ], [ -82.006692173999966, 28.925014524000062 ], [ -82.006749003999971, 28.925027187000069 ], [ -82.006827212999951, 28.925034793000066 ], [ -82.006959680999955, 28.925040975000059 ], [ -82.007489740999972, 28.925044040000046 ], [ -82.008042857999953, 28.925050540000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008520542999975, 28.925038357000062 ], [ -82.008602909999979, 28.925014906000058 ], [ -82.008837644999971, 28.924946961000046 ], [ -82.008989184999962, 28.924908731000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009878457999946, 28.927208948000043 ], [ -82.009885508999957, 28.926990297000032 ], [ -82.009890556999949, 28.926956521000079 ], [ -82.009896617999971, 28.926929856000072 ], [ -82.009908735999943, 28.92688363700006 ], [ -82.009965300999966, 28.926753864000034 ], [ -82.009999643999947, 28.926663201000054 ], [ -82.010012771999982, 28.926611648000062 ], [ -82.010021860999984, 28.92655742900007 ], [ -82.01002488599994, 28.926497877000031 ], [ -82.01002688899996, 28.926321001000076 ], [ -82.010028887999965, 28.926094351000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009878457999946, 28.927208948000043 ], [ -82.008560356999965, 28.927184512000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012290486999973, 28.927231990000053 ], [ -82.011381885999981, 28.927224270000067 ], [ -82.010356547999947, 28.927216988000055 ], [ -82.009878457999946, 28.927208948000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959643791999952, 28.954618050000079 ], [ -81.959498075999988, 28.954745561000038 ], [ -81.959424803, 28.954817603000038 ], [ -81.959404047999953, 28.954842398000039 ], [ -81.959351516999959, 28.954925676000073 ], [ -81.959299349999981, 28.954991173000053 ], [ -81.958865691999961, 28.955337129000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958865691999961, 28.955337129000043 ], [ -81.961747973999934, 28.958174338000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962582434999945, 28.957513759000051 ], [ -81.962046013999952, 28.95794294600006 ], [ -81.961747973999934, 28.958174338000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961747973999934, 28.958174338000049 ], [ -81.960607222999954, 28.959063724000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961747973999934, 28.958174338000049 ], [ -81.961811267999963, 28.958231133000027 ], [ -81.962025964999953, 28.958453936000069 ], [ -81.962264243999982, 28.958690939000064 ], [ -81.962471225999934, 28.958897196000066 ], [ -81.962521136999953, 28.958959612000058 ], [ -81.962550850999946, 28.959019837000028 ], [ -81.962591271999941, 28.959120022000036 ], [ -81.962688234999973, 28.959491189000062 ], [ -81.96272554799998, 28.959583162000058 ], [ -81.962785266999958, 28.959675143000027 ], [ -81.962854818999972, 28.959744761000024 ], [ -81.962910671999964, 28.959787359000075 ], [ -81.962975216999951, 28.959824501000071 ], [ -81.963067072999934, 28.959870384000055 ], [ -81.963158638999971, 28.959901870000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959887020999986, 28.930240001000072 ], [ -81.95987105599994, 28.930266716000062 ], [ -81.959843488, 28.930314836000036 ], [ -81.959817090999934, 28.930363301000057 ], [ -81.959791670999948, 28.930412109000031 ], [ -81.959767033999981, 28.930461262000051 ], [ -81.959732616999986, 28.930534821000037 ], [ -81.959710518999941, 28.930585004000079 ], [ -81.959683724999934, 28.930649627000037 ], [ -81.959663971999987, 28.930700499000068 ], [ -81.959640304999937, 28.930765809000036 ], [ -81.959622699999954, 28.930817371000046 ], [ -81.959601961999965, 28.93088337000006 ], [ -81.959586701999967, 28.930935275000024 ], [ -81.959568894999961, 28.931002306000039 ], [ -81.959556175999978, 28.931054901000039 ], [ -81.959541298999966, 28.931122277000043 ], [ -81.959530922999988, 28.931175215000053 ], [ -81.959519173999979, 28.931242934000068 ], [ -81.95951114099995, 28.931296217000067 ], [ -81.959504205999963, 28.931345214000032 ], [ -81.959502321999935, 28.931365658000061 ], [ -81.959502320999945, 28.931366689000072 ], [ -81.959496632999958, 28.931420316000072 ], [ -81.95949113599994, 28.931488727000044 ], [ -81.959487989999957, 28.931542355000033 ], [ -81.959485423, 28.931610765000073 ], [ -81.959484619999955, 28.931664738000052 ], [ -81.959485375999975, 28.931733150000071 ], [ -81.959486916999936, 28.931787123000049 ], [ -81.95949079899998, 28.931855536000057 ], [ -81.959494880999955, 28.931909166000025 ], [ -81.959501692999936, 28.931977580000023 ], [ -81.959508118999963, 28.932031210000048 ], [ -81.959518058999947, 28.932099282000024 ], [ -81.959527025999989, 28.932152226000028 ], [ -81.959539895999967, 28.932219954000061 ], [ -81.959551207999937, 28.932272898000065 ], [ -81.959567203999939, 28.932339940000077 ], [ -81.95958105699998, 28.932392542000059 ], [ -81.959593683999969, 28.932444710000027 ], [ -81.959609485999977, 28.932510360000038 ], [ -81.959636590999935, 28.932587949000037 ], [ -81.959656915999972, 28.932657580000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960439981999968, 28.930629977000024 ], [ -81.960383405999949, 28.93069926700008 ], [ -81.960351941999988, 28.930754580000041 ], [ -81.960332064999989, 28.930799705000027 ], [ -81.960310532999983, 28.930849196000054 ], [ -81.96027905699998, 28.93093944900005 ], [ -81.960247573999936, 28.931042805000061 ], [ -81.960227691999989, 28.931102487000032 ], [ -81.960199511999974, 28.931227681000053 ], [ -81.960177948999956, 28.931355788000076 ], [ -81.960161351999943, 28.931480985000064 ], [ -81.96015633899998, 28.931610554000031 ], [ -81.960159878999946, 28.931733073000032 ], [ -81.960162967999963, 28.931851695000034 ], [ -81.960169206999979, 28.931939971000077 ], [ -81.960179349999976, 28.932021106000036 ], [ -81.960194228999967, 28.93210825400007 ], [ -81.960218171999941, 28.932203447000063 ], [ -81.96025543099995, 28.932337734000043 ], [ -81.960263891999944, 28.932388463000052 ], [ -81.960263876999988, 28.932425762000037 ], [ -81.960250298999938, 28.932454104000044 ], [ -81.960233329999937, 28.93247946300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959774085999982, 28.932745220000072 ], [ -81.959799224999983, 28.932728848000068 ], [ -81.959819709999977, 28.932718209000029 ], [ -81.960199553999985, 28.932607768000025 ], [ -81.960248895999939, 28.932597138000062 ], [ -81.960278682999956, 28.932597147000024 ], [ -81.960312192999936, 28.932604526000034 ], [ -81.960338281999952, 28.932615877000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959774085999982, 28.932745220000072 ], [ -81.959758252999961, 28.932766506000064 ], [ -81.959748001999969, 28.932793527000058 ], [ -81.959744266999962, 28.932821369000067 ], [ -81.959743326999956, 28.932848393000029 ], [ -81.959755414999961, 28.932880333000071 ], [ -81.959816806999982, 28.932999093000035 ], [ -81.959854034999978, 28.933064714000068 ], [ -81.959889367999949, 28.93313014000006 ], [ -81.959939604999988, 28.933209590000047 ], [ -81.959976818999962, 28.933264467000072 ], [ -81.960009381999953, 28.933314430000053 ], [ -81.960047526999972, 28.933366852000063 ], [ -81.960081952999985, 28.933414359000039 ], [ -81.960121962999949, 28.933464324000056 ], [ -81.960161973999959, 28.933510195000053 ], [ -81.960202912999989, 28.933559341000034 ], [ -81.960245713999939, 28.933613402000049 ], [ -81.960278280999944, 28.93365108100005 ], [ -81.960319223999988, 28.933692858000029 ], [ -81.960359236999977, 28.933735452000064 ], [ -81.960407624999959, 28.933783781000045 ], [ -81.960454154999979, 28.933825560000059 ], [ -81.96050254499994, 28.933867338000027 ], [ -81.960557449999953, 28.933913214000029 ], [ -81.960603980999963, 28.933953354000039 ], [ -81.960652373999949, 28.93399267500007 ], [ -81.960701694999955, 28.934031997000034 ], [ -81.960753810999961, 28.934069682000029 ], [ -81.960799411999972, 28.934104909000041 ], [ -81.960850598999968, 28.934140137000043 ], [ -81.960903644999973, 28.934177003000059 ], [ -81.960963208999942, 28.934215508000079 ], [ -81.961006951999934, 28.934243365000043 ], [ -81.961069306999946, 28.934281871000053 ], [ -81.961123288999943, 28.934312186000056 ], [ -81.961179131999984, 28.93434250100006 ], [ -81.961232181999947, 28.934369540000034 ], [ -81.961335489999954, 28.934428973000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955750570999953, 28.932495919000075 ], [ -81.955761029999962, 28.933715005000067 ], [ -81.955773718999978, 28.934562980000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955750570999953, 28.932495919000075 ], [ -81.956165748999979, 28.932490322000035 ], [ -81.956489698999974, 28.932484694000038 ], [ -81.956799688, 28.932474149000029 ], [ -81.957204628999989, 28.93246199500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957046017999971, 28.931831658000078 ], [ -81.957204628999989, 28.93246199500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957204628999989, 28.93246199500004 ], [ -81.95737995199994, 28.93244485300005 ], [ -81.95749879899995, 28.932436702000075 ], [ -81.957620748999943, 28.932426913000029 ], [ -81.957728734999989, 28.932416301000046 ], [ -81.957825552999964, 28.932406505000074 ], [ -81.957919887999935, 28.932391794000068 ], [ -81.958014842999944, 28.932377083000063 ], [ -81.958158207999986, 28.932355837000046 ], [ -81.958305296999981, 28.932332953000071 ], [ -81.958408629999951, 28.932319881000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957353314999978, 28.933084411000038 ], [ -81.957454416999951, 28.933077149000042 ], [ -81.957606045999967, 28.933064134000062 ], [ -81.957698666999988, 28.933055225000032 ], [ -81.957791287999953, 28.933045285000048 ], [ -81.957883711999955, 28.933035 ], [ -81.957975942999951, 28.933023684000034 ], [ -81.958068172999958, 28.933011337000039 ], [ -81.958160208999971, 28.932998646000044 ], [ -81.958252048999952, 28.932984923000049 ], [ -81.95834369499994, 28.932970513000043 ], [ -81.958435338999948, 28.932955415000038 ], [ -81.958565003999979, 28.932931961000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957204628999989, 28.93246199500004 ], [ -81.957236230999968, 28.932575833000044 ], [ -81.957277125999951, 28.932736353000053 ], [ -81.957294784999988, 28.932803507000074 ], [ -81.957309650999946, 28.932871482000053 ], [ -81.957322653999938, 28.932941094000057 ], [ -81.957344024999941, 28.933039369000028 ], [ -81.957353314999978, 28.933084411000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957362210999975, 28.93371365400003 ], [ -81.957353496999986, 28.933780255000045 ], [ -81.957343540999943, 28.933843582000065 ], [ -81.957329847999972, 28.933938571000056 ], [ -81.957316164999952, 28.934012814000027 ], [ -81.957299989999967, 28.934108895000065 ], [ -81.957284510999955, 28.934185869000032 ], [ -81.957183475999955, 28.934549454000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957362210999975, 28.93371365400003 ], [ -81.957456544999957, 28.933709317000023 ], [ -81.957606732999977, 28.933699537000052 ], [ -81.957701067999949, 28.933690832000025 ], [ -81.957789195999965, 28.933682125000075 ], [ -81.95788104899998, 28.93367123400003 ], [ -81.957982831999971, 28.933658164000065 ], [ -81.958085853999989, 28.933648369000025 ], [ -81.95819136199998, 28.933634207000068 ], [ -81.958284456999934, 28.933622225000079 ], [ -81.958368863999965, 28.933608057000072 ], [ -81.958458235999956, 28.933592799000053 ], [ -81.958556296999973, 28.933575358000041 ], [ -81.958663046999959, 28.933555738000052 ], [ -81.958708974, 28.933550293000053 ], [ -81.958751172999939, 28.933552490000068 ], [ -81.958790888999943, 28.933560144000069 ], [ -81.958825637999951, 28.933571074000042 ], [ -81.958844251999949, 28.933580907000078 ], [ -81.958862864999958, 28.933592923000049 ], [ -81.958885198999951, 28.933610400000077 ], [ -81.958921177999969, 28.933652994000056 ], [ -81.959216731999959, 28.934068683000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958437763999939, 28.936537546000068 ], [ -81.960062248999975, 28.935814162000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960062248999975, 28.935814162000042 ], [ -81.960163903999955, 28.935767435000059 ], [ -81.96025360799996, 28.935731880000048 ], [ -81.960339796999961, 28.935691682000027 ], [ -81.960422465999955, 28.935654578000026 ], [ -81.960478130999945, 28.935623206000059 ], [ -81.960522823999952, 28.93559483100006 ], [ -81.960557586999983, 28.935570819000077 ], [ -81.960589867999943, 28.935547899000028 ], [ -81.960612215999959, 28.935530436000079 ], [ -81.960637794999968, 28.935507346000065 ], [ -81.960662816999957, 28.935482258000036 ], [ -81.960686859999953, 28.935456138000063 ], [ -81.960714227999972, 28.935423831000037 ], [ -81.960807938999949, 28.935301491000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959562227999982, 28.935320484000044 ], [ -81.959623496999939, 28.935363223000024 ], [ -81.959696087999987, 28.935413197000059 ], [ -81.959779428, 28.935468415000059 ], [ -81.959815958999968, 28.935492491000048 ], [ -81.959852878999982, 28.935516223000036 ], [ -81.959866943999941, 28.935525853000058 ], [ -81.959879250999961, 28.935535138000034 ], [ -81.959890970999936, 28.935545112000057 ], [ -81.95990210399998, 28.935555772000043 ], [ -81.959912651999957, 28.93556677600003 ], [ -81.959923394999976, 28.935579155000028 ], [ -81.959934488999977, 28.93559029000005 ], [ -81.959948136999969, 28.935607762000075 ], [ -81.95996053999994, 28.935628512000051 ], [ -81.960062248999975, 28.935814162000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958098311999947, 28.935977664000063 ], [ -81.959499687999937, 28.935354450000034 ], [ -81.959562227999982, 28.935320484000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958098311999947, 28.935977664000063 ], [ -81.958135530999982, 28.936023535000061 ], [ -81.958169024999961, 28.936070223000058 ], [ -81.958215539999969, 28.936146396000026 ], [ -81.958437763999939, 28.936537546000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957997277999937, 28.93720926900005 ], [ -81.957987992999961, 28.937147849000041 ], [ -81.957986142999971, 28.937118368000029 ], [ -81.957988020999949, 28.937078241000052 ], [ -81.957998288999988, 28.937016940000035 ], [ -81.95801957599997, 28.936949930000026 ], [ -81.958042531, 28.936902317000033 ], [ -81.958061890999943, 28.936863646000063 ], [ -81.958082145999981, 28.936828503000072 ], [ -81.958105430999979, 28.936794936000069 ], [ -81.958132441999965, 28.936760550000031 ], [ -81.958153989999971, 28.936735768000062 ], [ -81.958183664999979, 28.936707338000076 ], [ -81.958203220999962, 28.936690147000036 ], [ -81.958219983999982, 28.936674592000031 ], [ -81.958236745999955, 28.936659858000041 ], [ -81.958253507999984, 28.936645122000073 ], [ -81.958273994999956, 28.936630388000026 ], [ -81.958296342999972, 28.936614836000047 ], [ -81.958319620999987, 28.936600103000046 ], [ -81.958437763999939, 28.936537546000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959073412999942, 28.937550302000034 ], [ -81.959111413999949, 28.937677210000061 ], [ -81.959119783999938, 28.937699322000071 ], [ -81.95913094499997, 28.93772225400005 ], [ -81.959143970999946, 28.937745188000065 ], [ -81.959156064999945, 28.937763208000035 ], [ -81.959172813999942, 28.93778614200005 ], [ -81.959188629999971, 28.937806619000071 ], [ -81.95920351999996, 28.937822183000037 ], [ -81.959215615999938, 28.937834471000031 ], [ -81.959231579999937, 28.937846668000077 ], [ -81.959244275999936, 28.937858360000064 ], [ -81.95928037799996, 28.937882713000079 ], [ -81.959313023999982, 28.937903468000059 ], [ -81.959398264999948, 28.937956154000062 ], [ -81.959451083999966, 28.937988497000049 ], [ -81.959496201999968, 28.938015227000051 ], [ -81.959528846999945, 28.938034386000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960190709999949, 28.937317370000073 ], [ -81.960299128999964, 28.937268111000037 ], [ -81.960327990999986, 28.937259931000028 ], [ -81.960355920999973, 28.937256662000038 ], [ -81.960607270999958, 28.937254280000047 ], [ -81.960845586999937, 28.937260900000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955513469999971, 28.937844861000031 ], [ -81.955812770999955, 28.937772798000026 ], [ -81.955836046999934, 28.937765435000074 ], [ -81.95586770999995, 28.937739240000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955561915999965, 28.937016505000031 ], [ -81.955536591999987, 28.937051249000035 ], [ -81.95552541099994, 28.937072537000063 ], [ -81.955517954999948, 28.937094646000048 ], [ -81.955517014999941, 28.937114300000076 ], [ -81.955519533999961, 28.937132708000036 ], [ -81.955815596999969, 28.937692545000061 ], [ -81.955827692999947, 28.937708928000063 ], [ -81.955843511999944, 28.93772367300005 ], [ -81.95586770999995, 28.937739240000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955082301999937, 28.937042910000059 ], [ -81.955561915999965, 28.937016505000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95586770999995, 28.937739240000042 ], [ -81.955897497999956, 28.937744164000037 ], [ -81.955925425999965, 28.937744173000056 ], [ -81.955947768999977, 28.937740904000066 ], [ -81.956345314999965, 28.937654230000078 ], [ -81.956894945999977, 28.937535002000061 ], [ -81.957177127999955, 28.937461780000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955561915999965, 28.937016505000031 ], [ -81.956118939999953, 28.936983694000048 ], [ -81.956228949999968, 28.93698751200003 ], [ -81.956248292999987, 28.936988893000034 ], [ -81.95626998299997, 28.936990963000028 ], [ -81.956291476, 28.936993720000032 ], [ -81.956312967999963, 28.936997165000037 ], [ -81.956334263999963, 28.937001297000052 ], [ -81.956355560999953, 28.937006117000067 ], [ -81.956376465999938, 28.937011280000036 ], [ -81.956397176999985, 28.937017474000072 ], [ -81.95660681399994, 28.937082173000078 ], [ -81.956868812999971, 28.937162700000044 ], [ -81.956975747999934, 28.937195810000048 ], [ -81.957034503999978, 28.937219416000062 ], [ -81.957067371999983, 28.937237365000044 ], [ -81.957092497999952, 28.937260302000027 ], [ -81.95710924399998, 28.937285693000035 ], [ -81.957123195999941, 28.937315179000052 ], [ -81.957139007999956, 28.937347122000062 ], [ -81.957177127999955, 28.937461780000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957177127999955, 28.937461780000035 ], [ -81.957279545999938, 28.937428238000052 ], [ -81.957340064999983, 28.937405328000068 ], [ -81.957369580999966, 28.937391963000039 ], [ -81.95739733299996, 28.937380628000028 ], [ -81.95742488999997, 28.937368948000028 ], [ -81.957452054999976, 28.937356581000074 ], [ -81.957505019999985, 28.937331501000074 ], [ -81.957530426999938, 28.937319477000074 ], [ -81.957544887999973, 28.937312950000035 ], [ -81.95755954699996, 28.937306422000063 ], [ -81.957574202999979, 28.937300583000024 ], [ -81.95758905699995, 28.937294743000052 ], [ -81.957604104999973, 28.93728890400007 ], [ -81.95761915199995, 28.937283752000042 ], [ -81.957634200999962, 28.93727860100006 ], [ -81.957649639999943, 28.937273449000031 ], [ -81.95766488299995, 28.93726898400007 ], [ -81.957680321999987, 28.937264520000042 ], [ -81.957695954999963, 28.937260399000024 ], [ -81.957711588999985, 28.937256280000042 ], [ -81.957729957999959, 28.937251816000071 ], [ -81.957745786999965, 28.937248383000053 ], [ -81.957761615999971, 28.937245294000036 ], [ -81.957777444999977, 28.937242549000075 ], [ -81.957793468999967, 28.937239803000068 ], [ -81.957865965999986, 28.937228138000023 ], [ -81.95788160099994, 28.937224017000062 ], [ -81.957997277999937, 28.93720926900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960190709999949, 28.937317370000073 ], [ -81.960220290999985, 28.937321316000066 ], [ -81.960247284, 28.937330332000045 ], [ -81.960266827999988, 28.937344259000042 ], [ -81.960282646999985, 28.937361462000069 ], [ -81.960294743999953, 28.937376206000067 ], [ -81.960300323999945, 28.937388491000036 ], [ -81.96030497299995, 28.937405689000059 ], [ -81.960307530999955, 28.937435735000065 ], [ -81.960305204999941, 28.937446765000061 ], [ -81.960303342999964, 28.937457388000041 ], [ -81.960299413999962, 28.937469129000078 ], [ -81.960288703999936, 28.937491927000053 ], [ -81.960275453999941, 28.937515803000053 ], [ -81.960265229999948, 28.937529691000066 ], [ -81.96025779699994, 28.937538678000067 ], [ -81.960253149999971, 28.937545214000068 ], [ -81.960245249999957, 28.937554608000028 ], [ -81.960231530999977, 28.937570842000071 ], [ -81.960215222999977, 28.937590735000072 ], [ -81.960197527999981, 28.937608746000024 ], [ -81.960177039999962, 28.937627575000079 ], [ -81.960143513999981, 28.937658684000041 ], [ -81.960118370999965, 28.937681605000023 ], [ -81.960082050999972, 28.937715170000047 ], [ -81.96003828399995, 28.937754464000079 ], [ -81.959957268999972, 28.937814221000053 ], [ -81.959837123999989, 28.937909125000033 ], [ -81.959662802999958, 28.938030597000079 ], [ -81.959631146999982, 28.93804287100005 ], [ -81.959594838999976, 28.938046955000061 ], [ -81.959562256999959, 28.93804367000007 ], [ -81.959528846999945, 28.938034386000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962030808999941, 28.941385781000065 ], [ -81.962075897999966, 28.941360510000038 ], [ -81.962108488999945, 28.941338408000036 ], [ -81.962135229999944, 28.94132094400004 ], [ -81.962168086999952, 28.94129420400003 ], [ -81.96219509499997, 28.941265550000026 ], [ -81.962228624999966, 28.941223795000042 ], [ -81.962247254999966, 28.941193501000043 ], [ -81.962268681999944, 28.94115338000006 ], [ -81.962284525999962, 28.941104250000024 ], [ -81.962295721999965, 28.941037922000078 ], [ -81.962299969999947, 28.94096015100007 ], [ -81.962301325999988, 28.940819952000027 ], [ -81.96230703699996, 28.940642393000076 ], [ -81.962340666999978, 28.940318116000071 ], [ -81.962512570999934, 28.938629578000075 ], [ -81.962538715999983, 28.938415849000023 ], [ -81.962554562999969, 28.938352798000039 ], [ -81.962570402999972, 28.938311858000077 ], [ -81.962610599999948, 28.938201413000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959924923999949, 28.939809450000041 ], [ -81.95990461699995, 28.940084633000026 ], [ -81.959899831999962, 28.940281685000059 ], [ -81.959898401999965, 28.940369513000064 ], [ -81.959901885999955, 28.940389782000068 ], [ -81.95991165099997, 28.940413739000064 ], [ -81.959920721999936, 28.940427867000039 ], [ -81.959927000999983, 28.940440152000065 ], [ -81.959938167999951, 28.940452439000069 ], [ -81.959945844999936, 28.940460426000072 ], [ -81.959953522999967, 28.940467799000032 ], [ -81.959961200999942, 28.94047394200004 ], [ -81.959970275999979, 28.940481929000043 ], [ -81.959982838999963, 28.940491145000067 ], [ -81.959996798999953, 28.940501591000043 ], [ -81.960014949999959, 28.940512652000052 ], [ -81.960033796999937, 28.940523099000075 ], [ -81.960057533999986, 28.940531090000036 ], [ -81.96008767099994, 28.940536114000054 ], [ -81.960133285999973, 28.940542680000078 ], [ -81.960179832999984, 28.940545969000027 ], [ -81.960241208999946, 28.940553900000054 ], [ -81.960332649999941, 28.940576911000051 ], [ -81.960400449999952, 28.940598444000045 ], [ -81.960449780999966, 28.940621388000068 ], [ -81.960483290999946, 28.940636957000038 ], [ -81.96051586699997, 28.940654163000033 ], [ -81.960549477999962, 28.940673505000063 ], [ -81.960592576999943, 28.94070569400003 ], [ -81.960622615999966, 28.940726387000041 ], [ -81.961351417999936, 28.941210401000035 ], [ -81.961544359999948, 28.941332204000048 ], [ -81.961580741999967, 28.941352106000068 ], [ -81.961601074999976, 28.941362646000073 ], [ -81.961632945999952, 28.941379390000066 ], [ -81.961652298, 28.941387414000076 ], [ -81.961688599999945, 28.941399708000063 ], [ -81.961728627999946, 28.941409546000045 ], [ -81.961756558, 28.941414467000072 ], [ -81.96179006999995, 28.941417752000064 ], [ -81.961827306999965, 28.941419400000029 ], [ -81.961864546999948, 28.941418592000048 ], [ -81.961912957999971, 28.941414512000051 ], [ -81.961978129999977, 28.941403065000031 ], [ -81.962030808999941, 28.941385781000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962610599999948, 28.938201413000058 ], [ -81.962214769999946, 28.938033636000057 ], [ -81.961511781999945, 28.937760742000023 ], [ -81.961475481999969, 28.937745990000053 ], [ -81.961437783999941, 28.937730011000042 ], [ -81.961407067999971, 28.937717105000047 ], [ -81.961377049999953, 28.937703584000076 ], [ -81.961348428999941, 28.937692520000041 ], [ -81.96131841, 28.937681456000064 ], [ -81.961284202999934, 28.937671006000073 ], [ -81.961258370999985, 28.937664856000026 ], [ -81.961233935999985, 28.937661164000076 ], [ -81.961216480999951, 28.937659931000042 ], [ -81.961197629999958, 28.937660539000035 ], [ -81.961175286999946, 28.937660533000042 ], [ -81.96115783099998, 28.937662985000031 ], [ -81.961141771999962, 28.937665436000032 ], [ -81.961127107999971, 28.937668504000044 ], [ -81.961110349999956, 28.937673412000038 ], [ -81.961090797999987, 28.937681391000069 ], [ -81.961073339999984, 28.937690599000064 ], [ -81.961056576999965, 28.937702264000052 ], [ -81.961041210999952, 28.937715771000057 ], [ -81.961027243, 28.937730507000026 ], [ -81.961013971999989, 28.937745243000052 ], [ -81.960999301999948, 28.937764892000075 ], [ -81.960969961999979, 28.937804191000055 ], [ -81.960836794999977, 28.937981690000072 ], [ -81.960744424999973, 28.938090685000077 ], [ -81.96065731799996, 28.938173473000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957662991999939, 28.935192550000068 ], [ -81.957750500999964, 28.935182750000024 ], [ -81.958012102999987, 28.935142705000032 ], [ -81.958129402999987, 28.935128002000056 ], [ -81.958266254999955, 28.935110848000079 ], [ -81.958365867999987, 28.935095318000037 ], [ -81.958425449999936, 28.935083873000053 ], [ -81.958475724999971, 28.935069966000071 ], [ -81.958508309999957, 28.935061788000041 ], [ -81.958534377999968, 28.935055245000058 ], [ -81.958560446999968, 28.935047883000038 ], [ -81.95858586099996, 28.93503931500004 ], [ -81.958621261999951, 28.93502815100004 ], [ -81.958671473999971, 28.935008293000067 ], [ -81.958734238999966, 28.934984022000037 ], [ -81.958799516999989, 28.934955335000041 ], [ -81.958849728999951, 28.934935476000078 ], [ -81.958894919999977, 28.93491782500007 ], [ -81.958945505999964, 28.934907568000028 ], [ -81.958991431999948, 28.934905399000058 ], [ -81.959033631999944, 28.934911962000058 ], [ -81.959074585999986, 28.934927262000031 ], [ -81.959113052999953, 28.93495129400003 ], [ -81.95914591899998, 28.934975315000031 ], [ -81.959165165999934, 28.93499389200008 ], [ -81.95919990799996, 28.935026660000062 ], [ -81.95924193999997, 28.935064479000062 ], [ -81.959289244, 28.935106393000069 ], [ -81.959363695999969, 28.93516319400004 ], [ -81.959428216999981, 28.935218899000063 ], [ -81.959562227999982, 28.935320484000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957183475999955, 28.934549454000035 ], [ -81.957303128999968, 28.934596953000039 ], [ -81.957361451999986, 28.93462863700006 ], [ -81.957416050999939, 28.934663594000028 ], [ -81.957448310999951, 28.934690901000067 ], [ -81.957479327999977, 28.934722575000023 ], [ -81.95751778999994, 28.934762986000067 ], [ -81.957553766, 28.934807765000073 ], [ -81.957584776999965, 28.934856910000065 ], [ -81.957608339999979, 28.93490495900005 ], [ -81.95763065999995, 28.934958469000037 ], [ -81.957643054999949, 28.935002147000034 ], [ -81.957650483999942, 28.935045825000032 ], [ -81.957656672999974, 28.935085135000065 ], [ -81.957659139999976, 28.935124443000063 ], [ -81.957662991999939, 28.935192550000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957662991999939, 28.935192550000068 ], [ -81.957672278999951, 28.935246601000074 ], [ -81.957679822999978, 28.935288427000046 ], [ -81.957689845999937, 28.935334803000046 ], [ -81.957704880999984, 28.935398845000066 ], [ -81.957722430999979, 28.935451848000071 ], [ -81.957757804999972, 28.935535702000038 ], [ -81.95778513099998, 28.935588777000078 ], [ -81.957810458999973, 28.935637839000037 ], [ -81.957840316999977, 28.935685955000054 ], [ -81.957884864999983, 28.935747604000028 ], [ -81.957918090999954, 28.93579197400004 ], [ -81.957955008999988, 28.935835949000079 ], [ -81.957995950999987, 28.935882639000056 ], [ -81.958034102999989, 28.935919501000058 ], [ -81.958098311999947, 28.935977664000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956486799999936, 28.934532 ], [ -81.956770526999946, 28.934520761000044 ], [ -81.956917032999968, 28.934517522000078 ], [ -81.957079362999934, 28.934526074000075 ], [ -81.957183475999955, 28.934549454000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954332986999987, 28.93122508600004 ], [ -81.954312355999946, 28.931225427000072 ], [ -81.954289314999983, 28.931231561000061 ], [ -81.954270458999986, 28.931241381000063 ], [ -81.954249508999965, 28.931256114000064 ], [ -81.954236238999954, 28.931267165000065 ], [ -81.954223665999962, 28.93128067300006 ], [ -81.954208997999956, 28.931292952000035 ], [ -81.954195006999953, 28.931305482000027 ], [ -81.954183670999953, 28.931315105000067 ], [ -81.954167445999985, 28.931329881000067 ], [ -81.95415200399998, 28.931345346000057 ], [ -81.954137731999936, 28.931361499000047 ], [ -81.954124242999967, 28.931377995000048 ], [ -81.954115835999971, 28.931389680000052 ], [ -81.954104104999942, 28.931407553000042 ], [ -81.954093546999957, 28.931425769000043 ], [ -81.954083963999949, 28.931444329000044 ], [ -81.954075553999985, 28.931463578000034 ], [ -81.954070662999982, 28.931476641000074 ], [ -81.954064206999988, 28.931496234000065 ], [ -81.954060487999982, 28.931509640000058 ], [ -81.954055985999958, 28.931529578000038 ], [ -81.95405363499998, 28.931543328000032 ], [ -81.954051280999977, 28.931563610000069 ], [ -81.95405029799997, 28.931577361000052 ], [ -81.954049703999942, 28.931596268000078 ], [ -81.95405625099994, 28.932245015000035 ], [ -81.954054717999952, 28.93278424500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954286764999949, 28.929654120000066 ], [ -81.954399464999938, 28.929640733000042 ], [ -81.954438450999987, 28.929637387000071 ], [ -81.954456574999938, 28.929636554000069 ], [ -81.954479469999967, 28.929637400000047 ], [ -81.954495687999952, 28.929638245000035 ], [ -81.954516672999944, 28.929641609000043 ], [ -81.954536702999974, 28.929648330000077 ], [ -81.954559593999988, 28.929655052000044 ], [ -81.954626360999953, 28.929678571000068 ], [ -81.954753053, 28.929724630000067 ], [ -81.954883742999982, 28.929778990000045 ], [ -81.954921836999972, 28.929794816000026 ], [ -81.954938050999942, 28.929802385000073 ], [ -81.954952114999969, 28.929810985000074 ], [ -81.954965005999952, 28.92982095800005 ], [ -81.954977084999939, 28.929834645000028 ], [ -81.954987252999956, 28.929849195000031 ], [ -81.954998690999957, 28.929871578000075 ], [ -81.955003768999973, 28.929892840000036 ], [ -81.955005031999974, 28.929915220000055 ], [ -81.955004380999981, 28.929946365000035 ], [ -81.955014693999942, 28.931039662000046 ], [ -81.955011277999972, 28.931069046000061 ], [ -81.955002190999949, 28.931094839000025 ], [ -81.954983322999965, 28.931135368000071 ], [ -81.95496306299998, 28.931164842000044 ], [ -81.954950491999966, 28.931177736000052 ], [ -81.954937058999974, 28.931190897000079 ], [ -81.954925526999943, 28.931203269000036 ], [ -81.954913015999978, 28.931214609000051 ], [ -81.954899724999962, 28.931225262000055 ], [ -81.954885456999989, 28.931234884000048 ], [ -81.95487060399995, 28.931243816000062 ], [ -81.954854968999939, 28.931251718000055 ], [ -81.954838747999986, 28.931258588000048 ], [ -81.95482213799994, 28.931264426000041 ], [ -81.954804941999953, 28.931269577000023 ], [ -81.954787549999935, 28.931273353000051 ], [ -81.954769768999938, 28.931276098000069 ], [ -81.954751791999968, 28.931277811000029 ], [ -81.954733815999987, 28.931278148000047 ], [ -81.954697713999963, 28.931280220000076 ], [ -81.954659315999947, 28.931279592000067 ], [ -81.95460835199998, 28.931277732000069 ], [ -81.954564368999968, 28.93127587500004 ], [ -81.95451759499997, 28.931270332000054 ], [ -81.95446663499996, 28.931258645000071 ], [ -81.954414975999953, 28.931246958000031 ], [ -81.954332986999987, 28.93122508600004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954196606999972, 28.925096944000074 ], [ -81.954217699999958, 28.925113108000062 ], [ -81.954234887999974, 28.925124803000074 ], [ -81.954252466999947, 28.925136153000039 ], [ -81.954270436999934, 28.925147161000041 ], [ -81.954288798999983, 28.925157480000053 ], [ -81.954307744999937, 28.925167113000043 ], [ -81.954326888999958, 28.925176058000034 ], [ -81.954346423999937, 28.925184659000024 ], [ -81.95436634899994, 28.925192572000071 ], [ -81.954386468999985, 28.925199798000051 ], [ -81.954402487999971, 28.925205304000031 ], [ -81.954423, 28.925211499000056 ], [ -81.95444390199998, 28.925217007000072 ], [ -81.954465001999949, 28.92522182600004 ], [ -81.95448629699996, 28.925226302000056 ], [ -81.954507786999955, 28.92522974700006 ], [ -81.954529276999949, 28.925232849000054 ], [ -81.954550962999974, 28.925234918000058 ], [ -81.954572842999937, 28.925236645000041 ], [ -81.95459531299997, 28.925237684000024 ], [ -81.954653142999973, 28.92523907900005 ], [ -81.95484070599997, 28.925243954000052 ], [ -81.954909655999984, 28.92524776700003 ], [ -81.954955573999939, 28.925252151000052 ], [ -81.95499652899997, 28.925254348000067 ], [ -81.955041205999976, 28.925259822000044 ], [ -81.955092119999961, 28.925265087000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955092119999961, 28.925265087000071 ], [ -81.955160826999986, 28.925275167000052 ], [ -81.955211581999947, 28.925290644000029 ], [ -81.95525453099998, 28.925302682000051 ], [ -81.955307236999943, 28.925323312000046 ], [ -81.955362609999952, 28.925351646000024 ], [ -81.955418444999964, 28.925386605000028 ], [ -81.955555114999981, 28.925508903000036 ], [ -81.955676116999939, 28.925627464000058 ], [ -81.955806873999961, 28.925758051000059 ], [ -81.955961054999989, 28.925902387000065 ], [ -81.956208912999955, 28.926142943000059 ], [ -81.956534835999946, 28.926464255000042 ], [ -81.956624614999953, 28.926548451000031 ], [ -81.956665596999983, 28.926591405000067 ], [ -81.956712436999965, 28.926639516000023 ], [ -81.956741707999981, 28.926675596000052 ], [ -81.956767075999949, 28.926709960000039 ], [ -81.956807558999969, 28.926768540000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956807558999969, 28.926768540000069 ], [ -81.956855021999957, 28.926865476000046 ], [ -81.95692446399994, 28.927013994000049 ], [ -81.956967863999978, 28.927107911000064 ], [ -81.956982742999969, 28.927141763000066 ], [ -81.957012504999966, 28.927202918000035 ], [ -81.957038545999978, 28.92725533600003 ], [ -81.957054938999988, 28.927282244000025 ], [ -81.957067434999942, 28.927300813000045 ], [ -81.957108482999956, 28.927367940000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955892799999958, 28.927251066000053 ], [ -81.956161127999962, 28.92713057900005 ], [ -81.956221952999954, 28.927104394000025 ], [ -81.95625671199997, 28.927089119000073 ], [ -81.956281537999985, 28.927078208000069 ], [ -81.956302120999965, 28.927067492000049 ], [ -81.956323226999984, 28.92705649800007 ], [ -81.956336711999938, 28.927048940000077 ], [ -81.956354691999934, 28.927038288000062 ], [ -81.956491298999936, 28.926955826000039 ], [ -81.956807558999969, 28.926768540000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954038441999955, 28.921738620000042 ], [ -81.953987187999985, 28.921814476000065 ], [ -81.95395233499994, 28.921877348000066 ], [ -81.953927198999963, 28.921959521000076 ], [ -81.953933846999973, 28.922598509000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954992004999951, 28.922620615000028 ], [ -81.954973484999982, 28.922736711000027 ], [ -81.954959801999962, 28.922806586000036 ], [ -81.954953576999969, 28.92285571900004 ], [ -81.954949834999979, 28.922895025000059 ], [ -81.95494734, 28.922925598000063 ], [ -81.954944845999989, 28.92295398400006 ], [ -81.95494359199995, 28.922983465000073 ], [ -81.954944817999944, 28.92301840600004 ], [ -81.954949763999934, 28.923060991000057 ], [ -81.954952233999961, 28.923088290000067 ], [ -81.954958424999973, 28.923123231000034 ], [ -81.954965554999944, 28.923152724000033 ], [ -81.954979992999938, 28.923196733000054 ], [ -81.954988165999964, 28.923226969000041 ], [ -81.955000563999988, 28.923256454000068 ], [ -81.955012960999966, 28.923287031000029 ], [ -81.955025360999969, 28.923314332000075 ], [ -81.955040240999949, 28.923342726000044 ], [ -81.95505884399995, 28.923373304000052 ], [ -81.955074965999984, 28.923400607000076 ], [ -81.955094810999981, 28.923427911000033 ], [ -81.95511713999997, 28.923453031000065 ], [ -81.955148150999946, 28.92348798200004 ], [ -81.955170478999946, 28.923513102000072 ], [ -81.955199012999969, 28.923540409000054 ], [ -81.955267245999948, 28.923599394000064 ], [ -81.955342210999959, 28.923669545000052 ], [ -81.955621194999935, 28.923921146000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956333985999947, 28.921949831000063 ], [ -81.956702058999952, 28.921945621000077 ], [ -81.956868516999975, 28.921943611000074 ], [ -81.956894305999981, 28.921943620000036 ], [ -81.956918921999943, 28.921943972000065 ], [ -81.956949010999949, 28.921945700000038 ], [ -81.956978900999957, 28.921948117000056 ], [ -81.957008594999934, 28.92195156400004 ], [ -81.957038095999962, 28.921956042000033 ], [ -81.957067593999966, 28.921961208000027 ], [ -81.957096896999985, 28.921967405000032 ], [ -81.95712552699996, 28.921977101000039 ], [ -81.957156550999969, 28.921986938000032 ], [ -81.957196258999943, 28.921998962000032 ], [ -81.957405965999953, 28.922073276000049 ], [ -81.957507720999956, 28.922104973000046 ], [ -81.957542286999967, 28.922113652000064 ], [ -81.957576083999982, 28.922123289000069 ], [ -81.957610073999945, 28.922132237000028 ], [ -81.957642981999982, 28.922138863000043 ], [ -81.957681453999953, 28.92214215100006 ], [ -81.957719922999956, 28.922146531000067 ], [ -81.957750948999944, 28.922149816000058 ], [ -81.957788180999955, 28.922150920000036 ], [ -81.957826652999984, 28.922154208000052 ], [ -81.95790111599996, 28.922154232000025 ], [ -81.958058732999973, 28.922149912000066 ], [ -81.958237445999941, 28.922145601000068 ], [ -81.958335488999978, 28.922144539000044 ], [ -81.958398783999939, 28.922145651000051 ], [ -81.958460833999936, 28.922150037000051 ], [ -81.958505509999952, 28.922155511000028 ], [ -81.958539017999954, 28.922159888000067 ], [ -81.958566317999953, 28.92216426400006 ], [ -81.958597342999951, 28.922171916000025 ], [ -81.958648219999986, 28.922185035000041 ], [ -81.958804578999946, 28.922223298000063 ], [ -81.958959074999939, 28.922264291000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959145411999941, 28.921284386000025 ], [ -81.959144037999977, 28.921316667000042 ], [ -81.959140698999988, 28.92136032600007 ], [ -81.959136970999964, 28.92140364100004 ], [ -81.959128732999943, 28.921484770000063 ], [ -81.959119129999976, 28.921561085000064 ], [ -81.959106787999985, 28.921646682000073 ], [ -81.959094253999979, 28.921722653000074 ], [ -81.959078200999954, 28.921807561000037 ], [ -81.95906234499995, 28.921883187000049 ], [ -81.959042970999974, 28.921967406000078 ], [ -81.959023793999961, 28.922042344000033 ], [ -81.959000901999957, 28.922126218000074 ], [ -81.958978601999945, 28.922200467000039 ], [ -81.958959074999939, 28.922264291000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956335385999978, 28.921313115000032 ], [ -81.957128758999943, 28.921302265000065 ], [ -81.958133877999956, 28.921284042000025 ], [ -81.95860377799994, 28.921271210000043 ], [ -81.959145411999941, 28.921284386000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959145411999941, 28.921284386000025 ], [ -81.959219871999949, 28.921288777000029 ], [ -81.959371278999981, 28.921292098000038 ], [ -81.959443261999979, 28.92128556800003 ], [ -81.959490423999966, 28.921280123000031 ], [ -81.959676591999937, 28.921250698000051 ], [ -81.959965773999954, 28.921206018000078 ], [ -81.960434918999965, 28.921127541000033 ], [ -81.960500700999944, 28.921106814000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960407644999975, 28.920571308000035 ], [ -81.960410878999937, 28.920747236000068 ], [ -81.960411842999974, 28.920776458000034 ], [ -81.960412813999937, 28.920791928000028 ], [ -81.960414176999961, 28.920807053000033 ], [ -81.960415732999934, 28.920822180000073 ], [ -81.960417680999967, 28.920837308000046 ], [ -81.960419823999985, 28.920852435000029 ], [ -81.96042235799996, 28.920867561000023 ], [ -81.960425088999955, 28.920882344000063 ], [ -81.960428207999939, 28.920897472000036 ], [ -81.960431717999938, 28.920912599000076 ], [ -81.960435230999963, 28.92092738100007 ], [ -81.96043932699996, 28.920942166000032 ], [ -81.960452343999975, 28.920992153000043 ], [ -81.960464740999953, 28.921030372000075 ], [ -81.96048086199994, 28.921064226000055 ], [ -81.960500700999944, 28.921106814000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960500700999944, 28.921106814000041 ], [ -81.960525510999958, 28.921141762000047 ], [ -81.960765120999952, 28.921507466000037 ], [ -81.960772930999951, 28.921519501000034 ], [ -81.960782888999972, 28.921534287000043 ], [ -81.960792847999983, 28.921547697000051 ], [ -81.960803196999962, 28.921560763000059 ], [ -81.960814133999975, 28.921573830000057 ], [ -81.960835420999956, 28.92159652600003 ], [ -81.960847919999935, 28.921608218000074 ], [ -81.960860614999945, 28.921619566000061 ], [ -81.960873894999963, 28.921630915000037 ], [ -81.960887566999986, 28.921641575000024 ], [ -81.960901630999956, 28.921651549000046 ], [ -81.96092878099995, 28.921669433000034 ], [ -81.960943819999954, 28.921678376000045 ], [ -81.960959446999937, 28.921686631000057 ], [ -81.960975269999949, 28.921694886000068 ], [ -81.960991483999976, 28.921702454000069 ], [ -81.961007891999941, 28.92170933400007 ], [ -81.96103289499996, 28.921718967000061 ], [ -81.961050087, 28.921724472000051 ], [ -81.961067277999973, 28.92172963400003 ], [ -81.96108441399997, 28.921732881000025 ], [ -81.961107304999985, 28.921737363000034 ], [ -81.961137828999938, 28.921740729000078 ], [ -81.961175981999986, 28.921742979000044 ], [ -81.961215408999976, 28.921742990000041 ], [ -81.961584245999973, 28.921736381000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957036680999977, 28.90876008400005 ], [ -81.957077259999949, 28.908899549000068 ], [ -81.957134425999982, 28.909247735000065 ], [ -81.957188415999951, 28.909585686000071 ], [ -81.957203836999952, 28.909696822000058 ], [ -81.957234731999961, 28.909783016000063 ], [ -81.957286243999988, 28.909878289000062 ], [ -81.95730942199998, 28.909930461000044 ], [ -81.957327438999982, 28.909993970000073 ], [ -81.957345460999989, 28.910043872000074 ], [ -81.957350581999947, 28.910125522000044 ], [ -81.957335089999958, 28.910191289000068 ], [ -81.957311872999981, 28.91023664100004 ], [ -81.95727833899997, 28.910300135000057 ], [ -81.957244808999974, 28.91035228800007 ], [ -81.957203552999943, 28.910388564000073 ], [ -81.957166893999954, 28.910407792000058 ], [ -81.957105584999965, 28.910436160000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042723514999977, 28.857254049000062 ], [ -82.042459565999934, 28.857027207000044 ], [ -82.042435203999958, 28.85700934700003 ], [ -82.042406784999969, 28.85700220800004 ], [ -82.042370251999955, 28.857004006000068 ], [ -82.042343871999947, 28.857016522000038 ], [ -82.04231546799997, 28.857043333000036 ], [ -82.042232883999986, 28.857117362000054 ], [ -82.042189192999956, 28.857133651000026 ], [ -82.042147177999937, 28.85713366400006 ], [ -82.042110200999957, 28.857127758000047 ], [ -82.042066494999972, 28.857105578000073 ], [ -82.042021095999985, 28.857053807000057 ], [ -82.041937920999942, 28.856966619000048 ], [ -82.041828273999954, 28.856854082000041 ], [ -82.041710508999984, 28.856739763000064 ], [ -82.041629292999971, 28.856664741000031 ], [ -82.04154807499998, 28.856584360000056 ], [ -82.041430316999936, 28.856484335000061 ], [ -82.041267895999965, 28.856362880000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04003557599998, 28.858158109000044 ], [ -82.03995116699997, 28.858189826000057 ], [ -82.039925427999947, 28.85819630900005 ], [ -82.039907839999955, 28.858199132000038 ], [ -82.039880581999967, 28.858199834000061 ], [ -82.03800984999998, 28.858205966000071 ], [ -82.037142788999972, 28.858203393000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034505941999953, 28.860821724000061 ], [ -82.034508786999936, 28.860209402000066 ], [ -82.034511520999956, 28.859953297000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034505941999953, 28.860821724000061 ], [ -82.034504378999941, 28.86117534300007 ], [ -82.034506384999986, 28.862162219000027 ], [ -82.034509567999976, 28.862575480000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034509567999976, 28.862575480000032 ], [ -82.034520844999975, 28.863534768000079 ], [ -82.034522563999985, 28.863836087000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039883072999942, 28.864979984000058 ], [ -82.039650129999984, 28.865493714000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039650129999984, 28.865493714000024 ], [ -82.03907344199996, 28.865491591000023 ], [ -82.038625444, 28.86550197300005 ], [ -82.038625054999955, 28.865501982000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039650129999984, 28.865493714000024 ], [ -82.039062430999934, 28.866729958000064 ], [ -82.038901837999958, 28.867066855000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036089281999978, 28.872697560000063 ], [ -82.036078808999946, 28.872886163000032 ], [ -82.036078875999976, 28.87308095000003 ], [ -82.036085946999947, 28.873210806000031 ], [ -82.036100044999955, 28.873349934000032 ], [ -82.036149321999972, 28.873640554000076 ], [ -82.036203512999975, 28.873921897000059 ], [ -82.036211976999937, 28.874018361000026 ], [ -82.036212013999943, 28.874124720000054 ], [ -82.036200813999983, 28.874240976000067 ], [ -82.036181173999978, 28.874330026000052 ], [ -82.036136275999979, 28.874513075000038 ], [ -82.035917365999978, 28.875321959000075 ], [ -82.035687229999951, 28.876185260000057 ], [ -82.033688672999972, 28.883677017000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033688672999972, 28.883677017000025 ], [ -82.033238565999966, 28.883690444000024 ], [ -82.032061604999967, 28.883727040000053 ], [ -82.031781059999958, 28.88372855700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031781059999958, 28.88372855700004 ], [ -82.031481632999942, 28.883740493000062 ], [ -82.031126921999942, 28.883736137000028 ], [ -82.030674721999958, 28.883722888000079 ], [ -82.028878500999951, 28.883683234000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020744161999971, 28.882910956000046 ], [ -82.020589161999965, 28.883154699000045 ], [ -82.020583141999964, 28.884990295000023 ], [ -82.020587061999947, 28.885425654000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025774791999936, 28.893718052000054 ], [ -82.020574778999958, 28.893691347000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020570447999944, 28.894468615000051 ], [ -82.01988905099995, 28.89446969100004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01988905099995, 28.89446969100004 ], [ -82.01988900799995, 28.894394861000023 ], [ -82.019882339999981, 28.894228441000052 ], [ -82.019888919999971, 28.893942315000061 ], [ -82.019892188999961, 28.893676627000048 ], [ -82.019885529999954, 28.893559842000059 ], [ -82.019875344999946, 28.893515876000038 ], [ -82.019845699999962, 28.893457658000045 ], [ -82.019826008999985, 28.893417247000059 ], [ -82.019789286999981, 28.893381756000053 ], [ -82.019719603999988, 28.893323374000033 ], [ -82.019616747999976, 28.893270835000067 ], [ -82.019480716999965, 28.893218301000047 ], [ -82.019303655999977, 28.893162836000045 ], [ -82.019218384999988, 28.893131431000029 ], [ -82.019146727999953, 28.893091839000078 ], [ -82.019103057999985, 28.893057168000041 ], [ -82.019061528999941, 28.893012941000052 ], [ -82.019034621999936, 28.892973490000031 ], [ -82.019005470999957, 28.892916285000069 ], [ -82.018933706999974, 28.892746637000073 ], [ -82.018730766999965, 28.892287039000053 ], [ -82.01863783899995, 28.89208267500004 ], [ -82.018568149999965, 28.891974658000038 ], [ -82.018422648999945, 28.891805323000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015584370999989, 28.891776415000038 ], [ -82.015493816999935, 28.89169368000006 ], [ -82.015405188999978, 28.891626559000031 ], [ -82.015324483999962, 28.891575276000026 ], [ -82.015198943999962, 28.891514136000069 ], [ -82.015084615999967, 28.891474693000077 ], [ -82.014977012999964, 28.891445113000032 ], [ -82.014822338999977, 28.891423430000032 ], [ -82.01433366599997, 28.89142348300004 ], [ -82.013959290999935, 28.891432243000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017285042999958, 28.891427638000039 ], [ -82.017236560999947, 28.891427089000047 ], [ -82.016615632999958, 28.891425194000078 ], [ -82.016308531999982, 28.891425232000074 ], [ -82.016221110999936, 28.891441025000063 ], [ -82.016131449999989, 28.891458790000058 ], [ -82.016050754999981, 28.891482472000064 ], [ -82.01596333599997, 28.89151602000004 ], [ -82.015898334999974, 28.891551538000044 ], [ -82.015846783999962, 28.891587053000023 ], [ -82.015757125999983, 28.891644273000054 ], [ -82.015656265999951, 28.891723196000044 ], [ -82.015584370999989, 28.891776415000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015826457999935, 28.892430163000029 ], [ -82.01582476599998, 28.892362104000028 ], [ -82.015817742999957, 28.892245958000046 ], [ -82.015804281999976, 28.892180858000074 ], [ -82.015790822999975, 28.892125623000027 ], [ -82.015772882999954, 28.892072360000043 ], [ -82.015741487999946, 28.891999372000043 ], [ -82.015705613999955, 28.891936249000025 ], [ -82.015635815999985, 28.891842954000026 ], [ -82.015584370999989, 28.891776415000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01612128499994, 28.893806836000067 ], [ -82.016085569999973, 28.893757305000065 ], [ -82.016046892999952, 28.893702567000048 ], [ -82.01601494099998, 28.893646347000072 ], [ -82.015981304999968, 28.893581250000068 ], [ -82.015950155999974, 28.893516890000058 ], [ -82.015915867999979, 28.89343294300005 ], [ -82.015888799999971, 28.893344529000046 ], [ -82.015867637999975, 28.893266794000056 ], [ -82.015851788999953, 28.893187700000055 ], [ -82.015841661999957, 28.893142958000055 ], [ -82.015834963999964, 28.893094489000077 ], [ -82.015829910999969, 28.893038266000076 ], [ -82.015826457999935, 28.892430163000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017025493999938, 28.894396363000055 ], [ -82.016976734999957, 28.894380095000031 ], [ -82.016917887999966, 28.894360868000035 ], [ -82.016852314999937, 28.89433572300004 ], [ -82.016788420999944, 28.894309100000044 ], [ -82.016717802999949, 28.894275078000078 ], [ -82.016647184999954, 28.894238097000027 ], [ -82.016578245999938, 28.894199637000042 ], [ -82.016519396999968, 28.89416413500004 ], [ -82.016448775999947, 28.894112358000029 ], [ -82.016369747999988, 28.894051706000027 ], [ -82.016281505999984, 28.893980852000027 ], [ -82.016181062999976, 28.893878344000029 ], [ -82.01612128499994, 28.893806836000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018323104, 28.894465918000037 ], [ -82.017502982999986, 28.894458445000055 ], [ -82.017403787999967, 28.894454018000033 ], [ -82.017270964999966, 28.894439241000043 ], [ -82.017200349999939, 28.894430371000055 ], [ -82.017119647999948, 28.894417066000074 ], [ -82.017025493999938, 28.894396363000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01988905099995, 28.89446969100004 ], [ -82.019106907999969, 28.894462665000049 ], [ -82.018323104, 28.894465918000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01988905099995, 28.89446969100004 ], [ -82.019884393999973, 28.894630551000034 ], [ -82.019885510999984, 28.895405038000035 ], [ -82.019882163999966, 28.895481976000042 ], [ -82.019873770999936, 28.895547079000039 ], [ -82.019849397999963, 28.895615109000062 ], [ -82.019824204999964, 28.895659468000076 ], [ -82.019788931999983, 28.895708264000064 ], [ -82.019746937999969, 28.895752626000046 ], [ -82.019699901999957, 28.895786638000061 ], [ -82.019636064999986, 28.895823611000026 ], [ -82.019567882, 28.895850720000055 ], [ -82.019503346999954, 28.895866507000051 ], [ -82.019421566999938, 28.895871169000031 ], [ -82.018984431999968, 28.895869752000067 ], [ -82.017551974999947, 28.895866988000023 ], [ -82.017404021999937, 28.895861088000061 ], [ -82.017319955999938, 28.895849263000059 ], [ -82.017244293999966, 28.895821161000072 ], [ -82.017177035999964, 28.89578270100003 ], [ -82.017124907999971, 28.895741279000049 ], [ -82.017089594999959, 28.895699856000078 ], [ -82.017052597999964, 28.895651035000071 ], [ -82.017027371999973, 28.895597774000066 ], [ -82.017008292999947, 28.895550093000054 ], [ -82.017002134999984, 28.89549420700007 ], [ -82.016998762999947, 28.895429107000041 ], [ -82.016996733999974, 28.89513323500006 ], [ -82.017010378999942, 28.894496976000028 ], [ -82.017025493999938, 28.894396363000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013959290999935, 28.891432243000054 ], [ -82.013324190999981, 28.891422600000055 ], [ -82.012689921999936, 28.891425299000048 ], [ -82.012600148999979, 28.891432535000035 ], [ -82.012532901999975, 28.891446349000034 ], [ -82.012467896999965, 28.891464111000062 ], [ -82.012388656999974, 28.891488959000071 ], [ -82.012326678999955, 28.891513442000075 ], [ -82.012254952999967, 28.891552904000037 ], [ -82.012189949999936, 28.891594337000072 ], [ -82.012131585999953, 28.891633925000065 ], [ -82.012064431999988, 28.891696933000048 ], [ -82.012001673999976, 28.89176795700007 ], [ -82.011950124999942, 28.891837009000028 ], [ -82.011907543999939, 28.891915923000056 ], [ -82.011876167999958, 28.891986945000042 ], [ -82.011853760999941, 28.892061912000031 ], [ -82.011820156999988, 28.892247354000062 ], [ -82.011766388999945, 28.892513681000025 ], [ -82.011730540999963, 28.892685314000062 ], [ -82.011683483999946, 28.892839193000043 ], [ -82.011629698999968, 28.892977291000079 ], [ -82.011531092999974, 28.893214030000024 ], [ -82.011387660999958, 28.893519821000041 ], [ -82.01129627499995, 28.893702083000051 ], [ -82.011260127999947, 28.893755114000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015826457999935, 28.892430163000029 ], [ -82.017025172999979, 28.892428538000047 ], [ -82.017144539999947, 28.892430002000026 ], [ -82.017255501999955, 28.892432946000042 ], [ -82.017337883999971, 28.892441813000062 ], [ -82.017398409999942, 28.892458082000076 ], [ -82.017457255999943, 28.892475828000045 ], [ -82.017502653999941, 28.892499496000028 ], [ -82.017548051999938, 28.892529081000077 ], [ -82.017586726, 28.892557188000069 ], [ -82.017623717999982, 28.892597132000049 ], [ -82.017665760999989, 28.892660747000036 ], [ -82.017721082999969, 28.892782376000071 ], [ -82.017785267999955, 28.892937164000045 ], [ -82.017868107999959, 28.893125136000037 ], [ -82.017940442999986, 28.893294816000036 ], [ -82.018012775999978, 28.893443284000057 ], [ -82.018093135999948, 28.893552864000071 ], [ -82.018153406999943, 28.893637700000056 ], [ -82.018205640999952, 28.89370486200005 ], [ -82.01825787599995, 28.893782629000043 ], [ -82.018279614999983, 28.893825086000049 ], [ -82.018294044999948, 28.893863933000034 ], [ -82.018308209999987, 28.893904979000069 ], [ -82.018318160999968, 28.893952310000032 ], [ -82.01832219399995, 28.894037153000056 ], [ -82.018322207999972, 28.894114927000032 ], [ -82.018323104, 28.894465918000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020549123999956, 28.898339144000033 ], [ -82.020215509999957, 28.898339194000073 ], [ -82.020128478999936, 28.898337611000045 ], [ -82.020048700999951, 28.89833443200007 ], [ -82.019954414999972, 28.898313703000042 ], [ -82.019858388999978, 28.898284549000039 ], [ -82.019727668999963, 28.89824806200005 ], [ -82.019607793999967, 28.898197850000031 ], [ -82.01941371199996, 28.898112490000074 ], [ -82.019271000999936, 28.898029632000032 ], [ -82.019054946999972, 28.897882694000032 ], [ -82.018931635999934, 28.897805774000062 ], [ -82.018853166999975, 28.897766330000024 ], [ -82.018767973999957, 28.897734778000029 ], [ -82.018698476999987, 28.897715060000053 ], [ -82.018617771999971, 28.897699290000048 ], [ -82.018512403999978, 28.89767957600003 ], [ -82.018326334999983, 28.89765198300006 ], [ -82.018092266999986, 28.897625452000057 ], [ -82.017935299999976, 28.897615428000051 ], [ -82.017786895999961, 28.89760289000003 ], [ -82.017612801999974, 28.897572775000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017561762999946, 28.899534224000035 ], [ -82.017518955999947, 28.899546787000077 ], [ -82.01748151299995, 28.899553833000027 ], [ -82.017443402999959, 28.899559756000031 ], [ -82.017396325999982, 28.899559762000024 ], [ -82.017079449999983, 28.899559400000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018898494999974, 28.902999960000045 ], [ -82.018950638999968, 28.902731804000041 ], [ -82.019018184999936, 28.902414523000061 ], [ -82.019025478999936, 28.902376645000061 ], [ -82.019039345999943, 28.902347791000068 ], [ -82.019057602999965, 28.902318344000037 ], [ -82.019082209999965, 28.902287863000026 ], [ -82.019116252999936, 28.902260116000036 ], [ -82.019162749999964, 28.902239010000073 ], [ -82.019243493999966, 28.902219500000058 ], [ -82.019367432999957, 28.902219482000078 ], [ -82.019536442999936, 28.902226067000072 ], [ -82.01982136099997, 28.902225586000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018189850999988, 28.902943205000042 ], [ -82.018173479999973, 28.902834729000062 ], [ -82.018165076999935, 28.902758792000043 ], [ -82.018179445999976, 28.90267969000007 ], [ -82.018210720999946, 28.902527001000067 ], [ -82.018229482999971, 28.902431156000034 ], [ -82.018229764999944, 28.902405606000059 ], [ -82.018225977999975, 28.902378975000033 ], [ -82.018213360999937, 28.902344577000065 ], [ -82.018198224999935, 28.902319056000067 ], [ -82.018179305, 28.902296866000029 ], [ -82.018152819999955, 28.902273566000076 ], [ -82.018126333999987, 28.902254705000075 ], [ -82.018086731999972, 28.902239489000067 ], [ -82.018004102999953, 28.902219671000069 ], [ -82.017891428999974, 28.902219686000024 ], [ -82.017726178999965, 28.902219708000075 ], [ -82.017544988999987, 28.902224821000061 ], [ -82.017502114999957, 28.902234814000053 ], [ -82.017466807999938, 28.902250354000046 ], [ -82.017435286999955, 28.902273661000038 ], [ -82.017407547999937, 28.902296967000041 ], [ -82.017387375999988, 28.902325821000034 ], [ -82.017373160999966, 28.902355256000078 ], [ -82.017361906999952, 28.902437881000026 ], [ -82.017373202999977, 28.902606430000048 ], [ -82.017369469999949, 28.902741933000073 ], [ -82.017343199999971, 28.902867523000054 ], [ -82.017288246999954, 28.903009608000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017288246999954, 28.903009608000048 ], [ -82.017256851999946, 28.903069134000077 ], [ -82.01713669999998, 28.903264140000033 ], [ -82.016915168999958, 28.903634320000037 ], [ -82.016798774999984, 28.903859070000067 ], [ -82.016723684999988, 28.904014410000059 ], [ -82.016674870999964, 28.90408381900005 ], [ -82.016629806999958, 28.904130094000038 ], [ -82.016602037999974, 28.90415355600004 ], [ -82.016575557999943, 28.904167985000072 ], [ -82.016539677999958, 28.904186289000052 ], [ -82.016487097999971, 28.904199515000073 ], [ -82.016373954999949, 28.904199375000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015266271999963, 28.903407174000051 ], [ -82.015314383999964, 28.903431309000041 ], [ -82.015356000999986, 28.903450170000042 ], [ -82.015410230999976, 28.903472357000055 ], [ -82.015478331999986, 28.903495652000061 ], [ -82.015560302999972, 28.903515617000039 ], [ -82.015632183999969, 28.903520047000029 ], [ -82.015701542999977, 28.903523369000027 ], [ -82.015769431999956, 28.903530982000063 ], [ -82.015828113999987, 28.903541928000038 ], [ -82.015888574999963, 28.903557568000053 ], [ -82.015947479999966, 28.903575849000049 ], [ -82.016018542999973, 28.903613734000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015266271999963, 28.903407174000051 ], [ -82.015230190999944, 28.903454297000053 ], [ -82.015142898999954, 28.903552284000057 ], [ -82.015035724999962, 28.903665481000075 ], [ -82.014923504999956, 28.903765365000027 ], [ -82.014816325999959, 28.903845274000048 ], [ -82.01470788599994, 28.903920744000061 ], [ -82.014600706999943, 28.903997324000045 ], [ -82.014532617999976, 28.904055033000077 ], [ -82.014479659999949, 28.90411163300007 ], [ -82.014433008999958, 28.904170451000027 ], [ -82.014395186999934, 28.904235925000023 ], [ -82.014214901999935, 28.904594369000051 ], [ -82.014078744999949, 28.904874022000058 ], [ -82.014003098999979, 28.905008300000077 ], [ -82.013972837999972, 28.905044922000059 ], [ -82.013941313999965, 28.905073777000041 ], [ -82.013898440999981, 28.905098194000061 ], [ -82.013865653999972, 28.905112624000026 ], [ -82.013472529999945, 28.905236172000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013960859999941, 28.924062320000075 ], [ -82.013984605999951, 28.924044767000055 ], [ -82.01401816799995, 28.924026284000036 ], [ -82.014043492999974, 28.924016348000066 ], [ -82.01407674099994, 28.924011330000042 ], [ -82.014170951999972, 28.92400976700003 ], [ -82.01427098399995, 28.924009756000032 ], [ -82.014398369999981, 28.924009743000056 ], [ -82.014518720999945, 28.924009730000023 ], [ -82.014611720999937, 28.924009720000072 ], [ -82.014654506999989, 28.924009715000068 ], [ -82.014756298999941, 28.924009704000071 ], [ -82.014859847999958, 28.924009693000073 ], [ -82.014963397999963, 28.924014150000062 ], [ -82.015046434999988, 28.924023079000051 ], [ -82.015121068999974, 28.924030633000029 ], [ -82.015207621999934, 28.924035093000043 ], [ -82.015311172999986, 28.924038175000078 ], [ -82.015407882999966, 28.924039539000034 ], [ -82.015519832999985, 28.924038151000047 ], [ -82.015642138999965, 28.924038137000025 ], [ -82.015711693999947, 28.924040879000074 ], [ -82.015771425999958, 28.924053005000076 ], [ -82.015813051999942, 28.924075195000057 ], [ -82.015845730999956, 28.924102056000038 ], [ -82.015874864999944, 28.924130670000068 ], [ -82.015891458999988, 28.924166336000042 ], [ -82.015901624999969, 28.924208276000059 ], [ -82.015906910999945, 28.924272562000056 ], [ -82.015906918999974, 28.924326191000034 ], [ -82.015906929999971, 28.924396321000074 ], [ -82.015906940999969, 28.924470921000079 ], [ -82.015905194999959, 28.924554458000046 ], [ -82.015896607999935, 28.924620121000032 ], [ -82.015887556999985, 28.924655544000075 ], [ -82.015868642999976, 28.924686617000077 ], [ -82.015839637999989, 28.92471658200003 ], [ -82.015804324999976, 28.924740998000061 ], [ -82.015767680999943, 28.924762116000068 ], [ -82.015723605999938, 28.924776517000055 ], [ -82.015687027999945, 28.92477763100004 ], [ -82.01564540399994, 28.924778746000072 ], [ -82.015583599999957, 28.924778753000055 ], [ -82.015506658999982, 28.924778762000074 ], [ -82.015390618999959, 28.924779885000078 ], [ -82.015260482999963, 28.924780051000027 ], [ -82.015168849999952, 28.924780062000025 ], [ -82.015087376999986, 28.924778696000033 ], [ -82.015026223999939, 28.92477251400004 ], [ -82.014937910999947, 28.924756023000043 ], [ -82.014853113999948, 28.924738156000046 ], [ -82.01477671899994, 28.924722007000071 ], [ -82.014691923999976, 28.924705515000028 ], [ -82.014615527999979, 28.92469796000006 ], [ -82.014534055999945, 28.924696594000068 ], [ -82.01441878299994, 28.924696607000044 ], [ -82.014301751999938, 28.924696619000031 ], [ -82.014198202999978, 28.924698005000039 ], [ -82.014082732999952, 28.924696642000072 ], [ -82.014001261999965, 28.924694932000079 ], [ -82.013873289999935, 28.924697695000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012077020999982, 28.925042522000069 ], [ -82.012206619999972, 28.925044175000039 ], [ -82.012441225999964, 28.925043320000043 ], [ -82.01282718899995, 28.925044117000027 ], [ -82.013381537999976, 28.925049887000057 ], [ -82.013869037999939, 28.925046284000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012077020999982, 28.925042522000069 ], [ -82.01207199299995, 28.925429769000061 ], [ -82.012075514999935, 28.925477553000064 ], [ -82.012088734999963, 28.925540693000073 ], [ -82.012117597999975, 28.925592879000078 ], [ -82.012154611999961, 28.925631182000075 ], [ -82.01221557599996, 28.925663738000026 ], [ -82.012274359999935, 28.925680971000077 ], [ -82.012341840999966, 28.925683451000054 ], [ -82.012433473999977, 28.925685162000036 ], [ -82.012545621999948, 28.925685151000039 ], [ -82.01276112499994, 28.925685131000023 ], [ -82.012983271999985, 28.925686485000028 ], [ -82.013200533999964, 28.925687840000023 ], [ -82.013405878999947, 28.925689538000029 ], [ -82.013543229999982, 28.925689525000053 ], [ -82.013646781999967, 28.925689514000055 ], [ -82.013687174999973, 28.925684867000029 ], [ -82.013714771999958, 28.925677475000043 ], [ -82.013753649999956, 28.925659594000024 ], [ -82.01378460799998, 28.925640748000035 ], [ -82.013813930999959, 28.925619939000057 ], [ -82.013833792999947, 28.925597465000067 ], [ -82.013847029999965, 28.925569858000074 ], [ -82.013864018999982, 28.925513133000038 ], [ -82.013869092999983, 28.925459504000059 ], [ -82.013870838999935, 28.925362559000064 ], [ -82.01387082399998, 28.925253582000039 ], [ -82.013869049999983, 28.925135323000063 ], [ -82.013869037999939, 28.925046284000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01126346999996, 28.925036766000062 ], [ -82.012077020999982, 28.925042522000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010281535, 28.925028523000037 ], [ -82.01126346999996, 28.925036766000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010287691999963, 28.924425058000054 ], [ -82.010287695999978, 28.924468030000071 ], [ -82.010287711999979, 28.924625823000042 ], [ -82.010284602999945, 28.924791524000057 ], [ -82.010281686999974, 28.924946567000063 ], [ -82.010281535, 28.925028523000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010281535, 28.925028523000037 ], [ -82.010281704999954, 28.925125674000071 ], [ -82.010281720999956, 28.925291376000075 ], [ -82.010284662999936, 28.925398289000043 ], [ -82.010295188999976, 28.925473268000076 ], [ -82.01032042199995, 28.92552653000007 ], [ -82.010337768999989, 28.925601515000039 ], [ -82.010333010999943, 28.925663381000049 ], [ -82.010321112999975, 28.925703832000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994190505999939, 28.926667834000057 ], [ -81.994152238999959, 28.926730952000071 ], [ -81.994123086999934, 28.926784214000065 ], [ -81.994106003999946, 28.926831803000027 ], [ -81.99408736099997, 28.926886459000059 ], [ -81.994062505999977, 28.926968444000067 ], [ -81.99403267799994, 28.927082131000077 ], [ -81.994011548999936, 28.927196911000067 ], [ -81.993954371999962, 28.927517201000057 ], [ -81.99393945099996, 28.927694290000034 ], [ -81.993936953999935, 28.927896523000072 ], [ -81.993938174999982, 28.92826272800005 ], [ -81.993939405999981, 28.928446376000068 ], [ -81.993943145999935, 28.928718400000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983302542, 28.920096150000063 ], [ -81.983305714999972, 28.921259158000055 ], [ -81.983298098999967, 28.922351846000026 ], [ -81.983301189999963, 28.923416564000036 ], [ -81.983307697999976, 28.923473133000073 ], [ -81.983316307999985, 28.923521615000027 ], [ -81.983341806999988, 28.923576134000029 ], [ -81.983383469999978, 28.923633752000057 ], [ -81.983434062999947, 28.923693990000061 ], [ -81.983514420999938, 28.923764707000032 ], [ -81.983594781999955, 28.923822330000064 ], [ -81.983672165999963, 28.923877334000053 ], [ -81.983728716999963, 28.923903529000029 ], [ -81.983806104999985, 28.92392972600004 ], [ -81.983912246999978, 28.923953515000051 ], [ -81.983984696999983, 28.923963791000062 ], [ -81.984338732999959, 28.923974484000041 ], [ -81.984630640999967, 28.923983852000049 ], [ -81.984713968999984, 28.923987445000023 ], [ -81.984797844999946, 28.923999689000027 ], [ -81.984878563999985, 28.924018932000024 ], [ -81.984960964999971, 28.924048534000065 ], [ -81.985036636999951, 28.924088489000042 ], [ -81.985106862999942, 28.924139379000053 ], [ -81.985523536999949, 28.924534860000051 ], [ -81.985591986999964, 28.924623906000079 ], [ -81.985654480999983, 28.924744378000071 ], [ -81.985702089999961, 28.924875321000059 ], [ -81.985829954999986, 28.925363854000068 ], [ -81.98583894099994, 28.925425281000059 ], [ -81.985832977999962, 28.925490751000041 ], [ -81.985818086999984, 28.925553600000057 ], [ -81.985788311999954, 28.925611210000056 ], [ -81.985737701999938, 28.925658343000066 ], [ -81.985234598999966, 28.925962066000068 ], [ -81.985034667999969, 28.926093296000033 ], [ -81.984895221999977, 28.926205576000029 ], [ -81.984799953999982, 28.926299842000049 ], [ -81.984731478999947, 28.92638101700004 ], [ -81.984668953999972, 28.926470047000066 ], [ -81.984612381999966, 28.926564317000043 ], [ -81.984582605999947, 28.926635022000028 ], [ -81.984543894999945, 28.926716199000055 ], [ -81.984505184999989, 28.926813090000053 ], [ -81.984457540999983, 28.926923073000069 ], [ -81.984421804999954, 28.927022582000063 ], [ -81.984278843999959, 28.92755156100003 ], [ -81.984263943999963, 28.927653691000046 ], [ -81.984252018999939, 28.927771535000034 ], [ -81.984219251999946, 28.927926039000056 ], [ -81.984177561999957, 28.928028167000036 ], [ -81.984126942999978, 28.928122438000059 ], [ -81.98407335099995, 28.92819313900003 ], [ -81.983879826999953, 28.928415713000049 ], [ -81.983525535999945, 28.928777061000062 ], [ -81.983448124999938, 28.928873947000056 ], [ -81.98337070599996, 28.929012734000025 ], [ -81.983340924999936, 28.929093911000052 ], [ -81.983323050999957, 28.929180330000065 ], [ -81.983308153999985, 28.929264129000046 ], [ -81.983308134999959, 28.929384592000076 ], [ -81.983308109999939, 28.929539100000056 ], [ -81.983316815999956, 28.930934913000044 ], [ -81.983316626999965, 28.932113365000077 ], [ -81.983313389999978, 28.933742246000065 ], [ -81.983312955999963, 28.936450066000077 ], [ -81.983312671999954, 28.938220361000049 ], [ -81.983309429999963, 28.939880666000079 ], [ -81.983312384999977, 28.940014224000038 ], [ -81.983330227999943, 28.94013207200004 ], [ -81.983365939999942, 28.940218496000057 ], [ -81.983416537999972, 28.940297066000028 ], [ -81.98353560299995, 28.94041754400007 ], [ -81.983755882999958, 28.940579935000073 ], [ -81.984228138999981, 28.940934727000069 ], [ -81.985502850999978, 28.941874753000036 ], [ -81.986580888999981, 28.942670031000034 ], [ -81.987840120999977, 28.943597198000077 ], [ -81.988185445999989, 28.943856488000051 ], [ -81.988337266999963, 28.944005771000036 ], [ -81.988408346999961, 28.944100983000055 ], [ -81.988474191999956, 28.944238854000048 ], [ -81.988633208999943, 28.944645199000036 ], [ -81.988944455999956, 28.945519476000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087794698999971, 28.56417596700004 ], [ -82.087793601999977, 28.562854145000074 ], [ -82.087792088999947, 28.561599105000028 ], [ -82.087784533, 28.559757507000029 ], [ -82.087777991999985, 28.559140094000043 ], [ -82.087777137999979, 28.558110180000028 ], [ -82.087776595999969, 28.556945532000043 ], [ -82.087773337999977, 28.555782142000055 ], [ -82.08778295999997, 28.555744633000074 ], [ -82.087806098999977, 28.555708819000074 ], [ -82.087854322999988, 28.555654238000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090565587999947, 28.58462952900004 ], [ -82.090298450999967, 28.584822592000023 ], [ -82.09011632499994, 28.584974930000044 ], [ -82.090058174999967, 28.585025492000057 ], [ -82.090000977999978, 28.585073526000031 ], [ -82.089943871999935, 28.585121870000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.089943871999935, 28.585121870000023 ], [ -82.089995613999974, 28.585167257000023 ], [ -82.090008700999988, 28.585181302000024 ], [ -82.090017304999947, 28.585200663000023 ], [ -82.090021140999966, 28.585225080000043 ], [ -82.090017352999951, 28.585257080000076 ], [ -82.089998314999946, 28.585308457000053 ], [ -82.089922525999953, 28.585441734000028 ], [ -82.08991449399997, 28.585459238000055 ], [ -82.089910696999937, 28.585479450000037 ], [ -82.089907856999957, 28.585505554000065 ], [ -82.089905043999977, 28.585563658000069 ], [ -82.08990823399995, 28.585660293000046 ], [ -82.089910893999956, 28.585710169000038 ], [ -82.089914740999973, 28.585748901000045 ], [ -82.089917638999964, 28.585791 ], [ -82.089920537999944, 28.585834784000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.089943871999935, 28.585121870000023 ], [ -82.089709919999962, 28.585335576000034 ], [ -82.089563710999983, 28.585482058000025 ], [ -82.089417509999976, 28.58563887400004 ], [ -82.0893142, 28.585757773000068 ], [ -82.089247986999965, 28.585836913000037 ], [ -82.08916411499996, 28.585936979000053 ], [ -82.089074032999974, 28.586051276000035 ], [ -82.089026901999944, 28.586118300000066 ], [ -82.088954479999984, 28.586215183000036 ], [ -82.088859194999941, 28.58634997200005 ], [ -82.088777257999936, 28.586474647000045 ], [ -82.088670558, 28.586649020000038 ], [ -82.088611496999988, 28.586751787000026 ], [ -82.088530801, 28.586893208000049 ], [ -82.088462622999941, 28.587027583000065 ], [ -82.088381954999988, 28.587192325000046 ], [ -82.088310705999959, 28.587354897000068 ], [ -82.088207508999972, 28.587611570000035 ], [ -82.088135487999978, 28.587816557000053 ], [ -82.088079057999948, 28.588002591000077 ], [ -82.088034303999962, 28.588149006000037 ], [ -82.087987631999965, 28.588335032000032 ], [ -82.087952661999964, 28.588517606000039 ], [ -82.08791770299996, 28.588712236000049 ], [ -82.087890545999983, 28.58890341700004 ], [ -82.087876944999948, 28.589066195000044 ], [ -82.087859665999986, 28.589311595000027 ], [ -82.087850375999949, 28.589871312000071 ], [ -82.087848388999987, 28.590291382000032 ], [ -82.087837776999947, 28.591145738000023 ], [ -82.087826935999942, 28.592188529000055 ], [ -82.087815919999969, 28.593022074000032 ], [ -82.087810764999972, 28.593863365000061 ], [ -82.087799493999967, 28.594386917000065 ], [ -82.087798789999965, 28.594895693000069 ], [ -82.087791612, 28.595442182000056 ], [ -82.08778704499997, 28.595843033000051 ], [ -82.087777973999948, 28.596669687000031 ], [ -82.087772173999952, 28.597309840000037 ], [ -82.087764167999978, 28.598009581000042 ], [ -82.087752642999988, 28.599061819000042 ], [ -82.087751810999976, 28.599212864000037 ], [ -82.087750188999962, 28.599558943000034 ], [ -82.087743429999989, 28.599716254000043 ], [ -82.087738940999941, 28.599800616000039 ], [ -82.087731379, 28.599885667000024 ], [ -82.087716207999961, 28.599999352000054 ], [ -82.087669707999964, 28.600234679000039 ], [ -82.08762496099996, 28.600398316000053 ], [ -82.087570449999987, 28.600553348000062 ], [ -82.087531504999959, 28.600651538000079 ], [ -82.087475018999953, 28.600779015000057 ], [ -82.087400989999935, 28.600928894000049 ], [ -82.087334479999981, 28.601049621000072 ], [ -82.087238237999941, 28.601199567000037 ], [ -82.087147699999946, 28.601325089000056 ], [ -82.087070497999946, 28.601422815000035 ], [ -82.086968894999984, 28.601541219000069 ], [ -82.086876648999976, 28.601640492000058 ], [ -82.086781105999989, 28.601733551000052 ], [ -82.086654353999961, 28.601843852000059 ], [ -82.086581429999967, 28.601904774000047 ], [ -82.086525172999984, 28.601947755000026 ], [ -82.086457472999939, 28.602000004000047 ], [ -82.086401213999977, 28.602040458000033 ], [ -82.086321108999982, 28.602093558000036 ], [ -82.086208581999983, 28.602166886000077 ], [ -82.086143374999949, 28.602204114000074 ], [ -82.085963484, 28.602304294000078 ], [ -82.085772731999953, 28.602392829000053 ], [ -82.085697381999978, 28.602426559000037 ], [ -82.085617261999971, 28.602458606000027 ], [ -82.085541909999961, 28.602488126000026 ], [ -82.085462738999979, 28.602515962000041 ], [ -82.085296763999963, 28.602568274000078 ], [ -82.085217588999967, 28.602590217000056 ], [ -82.085126010999943, 28.602613009000038 ], [ -82.085051603999943, 28.602631580000036 ], [ -82.084963119999941, 28.602648320000071 ], [ -82.084876071999986, 28.602666214000067 ], [ -82.084775900999944, 28.602681434000033 ], [ -82.084674775999986, 28.602697495000029 ], [ -82.084486825999988, 28.602714454000079 ], [ -82.084193918999972, 28.602727266000045 ], [ -82.083918177999976, 28.602729964000048 ], [ -82.083608087999949, 28.602733522000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.083608087999949, 28.602733522000051 ], [ -82.083633520999967, 28.599385631000075 ], [ -82.08363673499997, 28.599272429000052 ], [ -82.083630333999963, 28.59919964900007 ], [ -82.083609143, 28.59914180800007 ], [ -82.083579507999957, 28.599102635000065 ], [ -82.08353718799998, 28.599069069000052 ], [ -82.083465277999949, 28.599050451000039 ], [ -82.082173255999976, 28.599051240000051 ], [ -82.081238599999949, 28.599049937000075 ], [ -82.080772199999956, 28.599050915000078 ], [ -82.080308807999984, 28.599051695000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.083608087999949, 28.602733522000051 ], [ -82.082555585999955, 28.602744366000024 ], [ -82.081666343999984, 28.602752483000074 ], [ -82.080992727999956, 28.602753729000028 ], [ -82.080314338999983, 28.602750764000064 ], [ -82.079478518999963, 28.602747045000058 ], [ -82.078868827999941, 28.602744876000031 ], [ -82.077630363999958, 28.602738855000041 ], [ -82.076931937999973, 28.602735042000063 ], [ -82.076277344999937, 28.602732705000051 ], [ -82.075693862999969, 28.602731309000035 ], [ -82.074282968999967, 28.60272261800003 ], [ -82.073367299999973, 28.602721861000077 ], [ -82.07277096599995, 28.60271797200005 ], [ -82.071242624999968, 28.602713917000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054699071999949, 28.606351284000027 ], [ -82.054698955999982, 28.606128230000024 ], [ -82.054714338999986, 28.605862124000055 ], [ -82.054716252999981, 28.605279052000071 ], [ -82.054715751999936, 28.604312484000047 ], [ -82.054715140999974, 28.602959703000067 ], [ -82.054715986999952, 28.602752561000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054715986999952, 28.602752561000045 ], [ -82.054716446999976, 28.601103815000045 ], [ -82.05471595399996, 28.600153022000029 ], [ -82.054718717999947, 28.598801731000037 ], [ -82.054718582999953, 28.598541868000041 ], [ -82.054717919999973, 28.597260894000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.080308807999984, 28.599051695000071 ], [ -82.080129359999944, 28.599051297000074 ], [ -82.079230651999978, 28.599049958000023 ], [ -82.077604522999934, 28.599049033000028 ], [ -82.07620253999994, 28.599047961000053 ], [ -82.075322870999969, 28.599055918000033 ], [ -82.073794008999982, 28.599049293000064 ], [ -82.072791683999981, 28.599046102000045 ], [ -82.071528284999943, 28.599047492000068 ], [ -82.071339372999944, 28.599047591000044 ], [ -82.071247066999945, 28.59905016600004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071247066999945, 28.59905016600004 ], [ -82.069678193999948, 28.599064251000073 ], [ -82.068664216999935, 28.599064768000062 ], [ -82.067209642999956, 28.599068160000058 ], [ -82.066488388999971, 28.599063190000038 ], [ -82.064668666999978, 28.599072059000036 ], [ -82.063727116999985, 28.599072504000048 ], [ -82.063452500999972, 28.599076962000026 ], [ -82.063339329999963, 28.599070356000027 ], [ -82.06325633199998, 28.599057078000044 ], [ -82.063202001999969, 28.59904079000006 ], [ -82.063139368999941, 28.599017182000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071242624999968, 28.602713917000074 ], [ -82.071246124999959, 28.602116316000036 ], [ -82.071237449999956, 28.601249685000028 ], [ -82.071244320999938, 28.600695703000042 ], [ -82.071241553999982, 28.600175816000046 ], [ -82.071240882999973, 28.599180787000023 ], [ -82.071247066999945, 28.59905016600004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062929639999936, 28.595409674000052 ], [ -82.062858819999974, 28.595415431000049 ], [ -82.062797266999951, 28.595416051000029 ], [ -82.062588326999958, 28.595418307000045 ], [ -82.060698615999968, 28.595417143000077 ], [ -82.059560853999983, 28.595415072000037 ], [ -82.058825683999942, 28.595412818000057 ], [ -82.058408510999982, 28.595420723000075 ], [ -82.057585825999979, 28.59542622400005 ], [ -82.057469480999941, 28.595426273000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068902168999955, 28.595426097000029 ], [ -82.066997130999937, 28.595398730000056 ], [ -82.064998756999955, 28.595399702000066 ], [ -82.063825992999966, 28.595405407000044 ], [ -82.06313357199997, 28.59540176400003 ], [ -82.062994748999984, 28.595400802000029 ], [ -82.062929639999936, 28.595409674000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063139368999941, 28.599017182000068 ], [ -82.063087288999952, 28.598979586000041 ], [ -82.063041888999976, 28.598939184000074 ], [ -82.062996061999968, 28.598889525000061 ], [ -82.062964547999968, 28.598840701000029 ], [ -82.062936282999942, 28.598782569000036 ], [ -82.062921157999938, 28.598721318000059 ], [ -82.062932842999942, 28.597440487000028 ], [ -82.062930726, 28.596001376000061 ], [ -82.062929639999936, 28.595409674000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06720205299996, 28.591895470000054 ], [ -82.06539195299996, 28.591873980000059 ], [ -82.064570257999947, 28.591875594000044 ], [ -82.063574758999948, 28.591865926000025 ], [ -82.06297657999994, 28.591863047000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062929639999936, 28.595409674000052 ], [ -82.062938746999976, 28.594640441000024 ], [ -82.062954421999962, 28.59352956400005 ], [ -82.062970168999982, 28.592511737000052 ], [ -82.06297657999994, 28.591863047000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06297657999994, 28.591863047000061 ], [ -82.062971258999937, 28.590942019000067 ], [ -82.062972213999956, 28.59058772700007 ], [ -82.062967326999967, 28.590219020000063 ], [ -82.062974174999965, 28.589961537000079 ], [ -82.062973930999988, 28.589551631000063 ], [ -82.06298774399994, 28.589234410000074 ], [ -82.06297546199994, 28.588204498000039 ], [ -82.062970109999981, 28.588142105000031 ], [ -82.062962440999968, 28.588081480000028 ], [ -82.062956673999963, 28.588004702000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054719054999964, 28.595441239000024 ], [ -82.054720241999973, 28.595058168000037 ], [ -82.05471817199998, 28.593736534000072 ], [ -82.054714778999937, 28.59253321500006 ], [ -82.054717573999937, 28.591500376000056 ], [ -82.054716550999956, 28.590605943000071 ], [ -82.054716410999958, 28.590334462000044 ], [ -82.05471566999995, 28.588903684000059 ], [ -82.054723579999973, 28.588125923000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07521230499998, 28.614243593000026 ], [ -82.075232157999949, 28.613725270000032 ], [ -82.075241404999986, 28.613387585000055 ], [ -82.075266361999979, 28.612904771000046 ], [ -82.075288173999979, 28.612447076000024 ], [ -82.075310071999979, 28.612112173000071 ], [ -82.07531830399995, 28.611691527000062 ], [ -82.075334792999968, 28.611300051000057 ], [ -82.075367360999962, 28.610783257000037 ], [ -82.075380679999967, 28.610344178000048 ], [ -82.075375956999949, 28.610091563000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054699813999946, 28.613703288000067 ], [ -82.056096631999935, 28.613703611000062 ], [ -82.056531223999968, 28.613703430000044 ], [ -82.056783863999954, 28.613706059000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054699813999946, 28.613703288000067 ], [ -82.054702108999948, 28.614020175000064 ], [ -82.054701344999955, 28.614200652000079 ], [ -82.054712914999982, 28.614431926000066 ], [ -82.054723194999951, 28.61462952100004 ], [ -82.054723588999934, 28.615390723000075 ], [ -82.054727704999948, 28.616346577000058 ], [ -82.054728224999963, 28.617350319000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054720177999968, 28.612585419000027 ], [ -82.054717535999941, 28.612837334000062 ], [ -82.054698283999983, 28.613123497000061 ], [ -82.054699813999946, 28.613703288000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054699813999946, 28.613703288000067 ], [ -82.054604387999973, 28.613696591000064 ], [ -82.053340507999962, 28.613685157000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053366456999981, 28.607528643000023 ], [ -82.053366432999951, 28.607018822000043 ], [ -82.053371938999987, 28.606348204000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050618107999981, 28.607515873000068 ], [ -82.050616196999954, 28.607187853000028 ], [ -82.050614300999939, 28.606709899000066 ], [ -82.050614263999989, 28.606631976000074 ], [ -82.050614236999934, 28.606575872000064 ], [ -82.050607496999987, 28.606536973000061 ], [ -82.050595575999978, 28.606505458000072 ], [ -82.050582335999934, 28.606480946000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050582335999934, 28.606480946000033 ], [ -82.050555861999953, 28.606449435000059 ], [ -82.050514838999959, 28.606421431000058 ], [ -82.050481759999968, 28.606407434000062 ], [ -82.050434020999944, 28.606395158000055 ], [ -82.050123204999977, 28.606382806000056 ], [ -82.049960736999935, 28.606385984000042 ], [ -82.049671119999971, 28.606386090000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05199259799997, 28.608698164000032 ], [ -82.05155971399995, 28.608691715000077 ], [ -82.050608352999973, 28.608688370000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046366040999942, 28.609816275000071 ], [ -82.04628667299994, 28.609838192000041 ], [ -82.046186471999988, 28.609862742000075 ], [ -82.046066426999971, 28.609889051000039 ], [ -82.045942699999955, 28.609912395000038 ], [ -82.045720256999971, 28.609949279000034 ], [ -82.045515189999946, 28.609976954000047 ], [ -82.045330972999977, 28.609992352000063 ], [ -82.045178033999946, 28.60999853800007 ], [ -82.045018142999936, 28.609998591000078 ], [ -82.044837394999945, 28.610001717000046 ], [ -82.044698359999984, 28.610001763000071 ], [ -82.044517611999936, 28.610001823000061 ], [ -82.043217614999946, 28.609996110000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048356070999944, 28.608995587000038 ], [ -82.048153113999945, 28.609076078000044 ], [ -82.047972972999958, 28.609154427000078 ], [ -82.047723413999961, 28.60926278200003 ], [ -82.047490774999972, 28.609363665000046 ], [ -82.047313125999949, 28.60944586200003 ], [ -82.047118555999987, 28.609535531000063 ], [ -82.046918906999963, 28.609619601000077 ], [ -82.046742943999959, 28.609691343000065 ], [ -82.046578341999975, 28.609747907000042 ], [ -82.046454335999954, 28.609789978000038 ], [ -82.046366040999942, 28.609816275000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049660542999959, 28.61000092300003 ], [ -82.048911135999958, 28.610012386000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048911135999958, 28.610012386000051 ], [ -82.048884053999984, 28.608834491000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048911135999958, 28.610012386000051 ], [ -82.048849618999952, 28.610014160000048 ], [ -82.048283055999946, 28.610034275000032 ], [ -82.047937829999967, 28.610025437000047 ], [ -82.046908930999962, 28.610019824000062 ], [ -82.04663478599997, 28.610019918000035 ], [ -82.046570477999978, 28.610016954000059 ], [ -82.04653480099995, 28.610008845000038 ], [ -82.046500064999975, 28.609991346000072 ], [ -82.046474260999958, 28.609974718000046 ], [ -82.046454407999988, 28.609954586000072 ], [ -82.046435058999975, 28.609930385000041 ], [ -82.046366040999942, 28.609816275000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050597104999952, 28.610133785000073 ], [ -82.050537415999941, 28.610123865000048 ], [ -82.05046895299995, 28.610123890000068 ], [ -82.050397516999965, 28.61012917100004 ], [ -82.050369665999938, 28.610133870000027 ], [ -82.050310103999948, 28.610148227000025 ], [ -82.050258627999938, 28.610171250000064 ], [ -82.050222916999985, 28.610192276000078 ], [ -82.050169349999976, 28.610236686000064 ], [ -82.050126043999967, 28.610270154000034 ], [ -82.050082734999989, 28.610298842000077 ], [ -82.050029503999951, 28.610332442000072 ], [ -82.049968993999983, 28.610362234000036 ], [ -82.049889634999943, 28.610399913000037 ], [ -82.04983098699995, 28.610427960000038 ], [ -82.049769604999938, 28.610459497000079 ], [ -82.049721992999935, 28.610488409000027 ], [ -82.049678350999955, 28.610520821000023 ], [ -82.04963272699996, 28.610558487000048 ], [ -82.049600992999956, 28.61059614800007 ], [ -82.049581976999946, 28.610626369000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049581976999946, 28.610626369000045 ], [ -82.049570264999943, 28.610658326000078 ], [ -82.049566309999989, 28.610688097000036 ], [ -82.049565185999938, 28.610846913000046 ], [ -82.049565307999956, 28.611106876000065 ], [ -82.049569763999955, 28.611368749000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049569763999955, 28.611368749000064 ], [ -82.049573663, 28.611555797000051 ], [ -82.049570891999963, 28.611994464000077 ], [ -82.049571007999987, 28.612241378000078 ], [ -82.049576179999974, 28.612691425000037 ], [ -82.049585203999982, 28.613689712000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054720177999968, 28.612585419000027 ], [ -82.05479831599996, 28.612589339000067 ], [ -82.054899535999937, 28.612612063000029 ], [ -82.05500968399997, 28.612634784000079 ], [ -82.055110903999946, 28.612659259000054 ], [ -82.055205179999973, 28.612682861000053 ], [ -82.055316148999964, 28.612729477000073 ], [ -82.05545030199994, 28.612760688000037 ], [ -82.055498923999949, 28.612766798000052 ], [ -82.055638832999989, 28.612775495000051 ], [ -82.055942555999934, 28.612773243000049 ], [ -82.056529771999976, 28.612777114000039 ], [ -82.05749932599997, 28.612770681000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05760033699994, 28.610188857000026 ], [ -82.057570076, 28.611041430000057 ], [ -82.057570142999964, 28.611737126000037 ], [ -82.057576199999971, 28.611927124000033 ], [ -82.057574388999967, 28.612244961000044 ], [ -82.057566487999964, 28.61231063200006 ], [ -82.057560562999981, 28.612364921000051 ], [ -82.05749932599997, 28.612770681000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05749932599997, 28.612770681000029 ], [ -82.057517478999955, 28.612994781000054 ], [ -82.057550238999966, 28.613447144000077 ], [ -82.057562244999986, 28.613699706000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071221507999951, 28.620950910000033 ], [ -82.07099982699998, 28.620944817000066 ], [ -82.070647959999974, 28.620945 ], [ -82.069317910999985, 28.620958106000046 ], [ -82.069042611999976, 28.620961341000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069042611999976, 28.620961341000054 ], [ -82.067185127999949, 28.620975399000031 ], [ -82.065163493999989, 28.620975256000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069042611999976, 28.620961341000054 ], [ -82.069042546999981, 28.620862356000032 ], [ -82.069038850999959, 28.620688272000052 ], [ -82.06903867799997, 28.620423165000034 ], [ -82.069038499999976, 28.620152035000046 ], [ -82.069038294999984, 28.619838726000069 ], [ -82.069038109999951, 28.619555543000047 ], [ -82.069037920999961, 28.619266337000056 ], [ -82.069034315999943, 28.61897411800004 ], [ -82.069034143999943, 28.618712025000036 ], [ -82.069031980999966, 28.618088325000031 ], [ -82.069029158999967, 28.617888905000029 ], [ -82.069028208999953, 28.617623561000073 ], [ -82.069026773999951, 28.617425971000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075400532999936, 28.631958021000059 ], [ -82.07539983199996, 28.630976696000062 ], [ -82.075413213, 28.628116623000039 ], [ -82.075421202999962, 28.626734938000027 ], [ -82.075424427999963, 28.625995580000051 ], [ -82.075428211999963, 28.625351591000026 ], [ -82.075425898999981, 28.624663680000026 ], [ -82.075429447999966, 28.624114162000069 ], [ -82.075424648999956, 28.62291401300007 ], [ -82.075418849999949, 28.620957560000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056754628999954, 28.622829663000061 ], [ -82.056762751999941, 28.622697106000032 ], [ -82.056817081999952, 28.622145179000029 ], [ -82.056820776999984, 28.622072621000029 ], [ -82.056820749999986, 28.622021023000059 ], [ -82.05681594899994, 28.621969426000078 ], [ -82.056812332999982, 28.621904140000026 ], [ -82.056816906999984, 28.621819821000031 ], [ -82.056836005999969, 28.621778842000026 ], [ -82.056840885999975, 28.621738802000039 ], [ -82.056812096999977, 28.621465027000056 ], [ -82.056807293999952, 28.62141237700007 ], [ -82.056802495999989, 28.621367099000054 ], [ -82.056811985999957, 28.621257580000076 ], [ -82.056819184999938, 28.620976300000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058841412999982, 28.622807082000065 ], [ -82.058843537999962, 28.621720144000051 ], [ -82.058849931999987, 28.621147701000041 ], [ -82.05885951199997, 28.620977838000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059874558, 28.619177078000064 ], [ -82.059880132999979, 28.619374701000027 ], [ -82.059888057999956, 28.62009461100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059888057999956, 28.62009461100007 ], [ -82.059891966999942, 28.62097497700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058880182999985, 28.620085806000077 ], [ -82.059784939999986, 28.620088120000048 ], [ -82.059888057999956, 28.62009461100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059888057999956, 28.62009461100007 ], [ -82.060063486999979, 28.620091374000026 ], [ -82.060170064999966, 28.620097591000047 ], [ -82.060896604999982, 28.620104497000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013868144999947, 28.649956073000055 ], [ -82.01390188299996, 28.648866551000026 ], [ -82.013930640999945, 28.648356647000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029830111999956, 28.650006178000069 ], [ -82.028166399999975, 28.649993230000064 ], [ -82.025404127999934, 28.649981103000073 ], [ -82.023844837999945, 28.649979293000058 ], [ -82.021643603999962, 28.649977202000059 ], [ -82.020572279999953, 28.649967525000079 ], [ -82.019205228999965, 28.649967726000057 ], [ -82.016711054999973, 28.649963134000075 ], [ -82.013868144999947, 28.649956073000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054777279999939, 28.639222651000068 ], [ -82.053912027999957, 28.639215639000042 ], [ -82.053028212999948, 28.639228991000039 ], [ -82.052299434999952, 28.639229275000048 ], [ -82.051961897999945, 28.639236172000039 ], [ -82.05160134099998, 28.639231798000026 ], [ -82.050823965999939, 28.639207276000036 ], [ -82.049859940999966, 28.639224553000076 ], [ -82.049166954999976, 28.63921014400006 ], [ -82.047998348999954, 28.639203795000071 ], [ -82.046730011999955, 28.639188446000048 ], [ -82.046637955999984, 28.639187350000043 ], [ -82.046574029999988, 28.639193012000078 ], [ -82.046547443999941, 28.639212874000066 ], [ -82.046533138999962, 28.639248296000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054777279999939, 28.639222651000068 ], [ -82.054776060999984, 28.638692371000047 ], [ -82.054776756999956, 28.637450416000036 ], [ -82.054773697999963, 28.636753484000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054778129999988, 28.639241560000073 ], [ -82.054777279999939, 28.639222651000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056287600999951, 28.63927426500004 ], [ -82.056099839999945, 28.639255855000044 ], [ -82.055580880999969, 28.639247524000041 ], [ -82.054778129999988, 28.639241560000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05479489399994, 28.648871602000042 ], [ -82.053953275999959, 28.648858935000078 ], [ -82.053940620999981, 28.648838392000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053940620999981, 28.648838392000073 ], [ -82.053901997999958, 28.648794377000058 ], [ -82.053860714999985, 28.648754472000064 ], [ -82.053859373999956, 28.648735098000031 ], [ -82.053858698999989, 28.648718074000044 ], [ -82.053879582999969, 28.648587559000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067108299999973, 28.65741650800004 ], [ -82.067111115999978, 28.656250840000041 ], [ -82.067115443999967, 28.655202191000058 ], [ -82.067123153999944, 28.653565814000046 ], [ -82.067132811999954, 28.650161361000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071254575999944, 28.65018811300007 ], [ -82.071243063999987, 28.649063732000059 ], [ -82.071249077999937, 28.647666091000076 ], [ -82.071261468999978, 28.646472750000044 ], [ -82.071264432999953, 28.645977950000031 ], [ -82.071277228999975, 28.645381276000023 ], [ -82.071274858999971, 28.644318598000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096093162999978, 28.652660045000061 ], [ -82.096092454999962, 28.652031554000075 ], [ -82.096124221999958, 28.650865105000037 ], [ -82.096124305999979, 28.650257115000045 ], [ -82.096124306999968, 28.650249089000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075245712999958, 28.547871 ], [ -82.075249979999967, 28.547046093000063 ], [ -82.075246783999944, 28.545961934000047 ], [ -82.07523168299997, 28.545199173000071 ], [ -82.075219247999939, 28.54477494200006 ], [ -82.075223861999973, 28.544438551000042 ], [ -82.075189601999966, 28.544031472000029 ], [ -82.075179731999981, 28.543800077000071 ], [ -82.075179573999947, 28.543577245000051 ], [ -82.075193894999984, 28.543242990000067 ], [ -82.07519124099997, 28.542921599000067 ], [ -82.07519337399998, 28.542508074000068 ], [ -82.075191703999963, 28.542435337000029 ], [ -82.075183595999988, 28.542405234000057 ], [ -82.075168282999982, 28.542363120000061 ], [ -82.075152681999953, 28.542335612000045 ], [ -82.075131236999937, 28.542304668000043 ], [ -82.075091274999977, 28.54225309800006 ], [ -82.074710021999977, 28.54180985000005 ], [ -82.074431500999935, 28.541507942000067 ], [ -82.074398361999954, 28.541464965000046 ], [ -82.074379841999985, 28.541439180000054 ], [ -82.074364239999966, 28.541407372000037 ], [ -82.074351553999975, 28.541370404000077 ], [ -82.074342762999947, 28.541331714000023 ], [ -82.074331963999953, 28.541207038000039 ], [ -82.07431593299998, 28.540911338000058 ], [ -82.074312062, 28.540889643000071 ], [ -82.074300193999989, 28.540869728000075 ], [ -82.074287962999961, 28.540852779000033 ], [ -82.074253025999951, 28.540815804000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062817395999957, 28.551476100000059 ], [ -82.062808797999935, 28.550534159000051 ], [ -82.062801196999942, 28.549737916000026 ], [ -82.062797771999954, 28.549076386000024 ], [ -82.062800737999964, 28.548963898000068 ], [ -82.062803704999965, 28.548851410000054 ], [ -82.062803583999937, 28.548647861000063 ], [ -82.062800271999947, 28.548179167000058 ], [ -82.062781797999946, 28.547715836000066 ], [ -82.06277840499996, 28.547107872000026 ], [ -82.062745444999962, 28.545998283000074 ], [ -82.062733280999964, 28.545946866000065 ], [ -82.062718690999986, 28.545895450000046 ], [ -82.062540941999941, 28.545624223000061 ], [ -82.062370955999938, 28.545402005000028 ], [ -82.062295038999935, 28.545252057000027 ], [ -82.062232286999972, 28.545043012000065 ], [ -82.062109546999977, 28.544445985000038 ], [ -82.062094271999968, 28.544258513000045 ], [ -82.062078788999941, 28.544146257000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054578738999965, 28.481288645000063 ], [ -82.05442495799997, 28.481274135000035 ], [ -82.054145934999951, 28.481259529000056 ], [ -82.053687836999984, 28.481233953000071 ], [ -82.053125626999986, 28.481204739000077 ], [ -82.052225777, 28.481153882000058 ], [ -82.052018371999964, 28.481143338000038 ], [ -82.051817971999981, 28.481139013000075 ], [ -82.051647231999937, 28.481142757000043 ], [ -82.051513974999978, 28.481147590000035 ], [ -82.051354065999988, 28.481159427000023 ], [ -82.051184166999974, 28.481177151000054 ], [ -82.051044249999961, 28.48119192200005 ], [ -82.05086436199997, 28.481221426000047 ], [ -82.050427967999951, 28.481298121000066 ], [ -82.049481614999934, 28.481462979000071 ], [ -82.049256196999977, 28.481505554000023 ], [ -82.049060838999935, 28.481549446000031 ], [ -82.048810987999957, 28.481609846000026 ], [ -82.048527368999942, 28.481687738000062 ], [ -82.048184737999975, 28.481781973000068 ], [ -82.04759579499995, 28.481947021000053 ], [ -82.047094788999971, 28.482081422000078 ], [ -82.047014632999947, 28.482099211000047 ], [ -82.04692756299994, 28.482108205000031 ], [ -82.046872613999938, 28.482111958000075 ], [ -82.046791455999937, 28.482112733000065 ], [ -82.046639281999944, 28.482102328000053 ], [ -82.046542901999942, 28.48209115700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034618129999956, 28.549720961000048 ], [ -82.034755401999973, 28.549720926000077 ], [ -82.035526495999989, 28.549722492000058 ], [ -82.035622701999955, 28.549715080000055 ], [ -82.035718904999953, 28.549692895000078 ], [ -82.035815101999958, 28.549655934000043 ], [ -82.035894560999964, 28.549604204000048 ], [ -82.03595009999998, 28.54954480400005 ], [ -82.03598655199994, 28.549500762000037 ], [ -82.036024172999987, 28.54942688400007 ], [ -82.03605343299995, 28.549360393000029 ], [ -82.036070132999953, 28.549271745000055 ], [ -82.036074292999956, 28.549201568000058 ], [ -82.036078446999966, 28.549116617000038 ], [ -82.036082313999941, 28.548189553000043 ], [ -82.036085901999968, 28.546442537000075 ], [ -82.036103939999975, 28.545827369000051 ], [ -82.036106411999981, 28.545261081000035 ], [ -82.036106139999958, 28.544462366000062 ], [ -82.03610896899994, 28.544315383000026 ], [ -82.036130925999942, 28.544146902000023 ], [ -82.036168732999954, 28.544023748000029 ], [ -82.036212748999958, 28.543922297000051 ], [ -82.036284153999986, 28.543808480000052 ], [ -82.036354548999952, 28.543704306000052 ], [ -82.036421442999938, 28.543621553000037 ], [ -82.03650559, 28.543524447000038 ], [ -82.03658199399996, 28.543423540000049 ], [ -82.036622122999972, 28.543349660000047 ], [ -82.036652211999979, 28.543269872000053 ], [ -82.036729110999943, 28.543089610000038 ], [ -82.036816028999965, 28.542850249000026 ], [ -82.036842763999971, 28.542749779000076 ], [ -82.036899601999949, 28.54261679800004 ], [ -82.036976512999956, 28.542469039000025 ], [ -82.03712033499994, 28.542285802000038 ], [ -82.03724409299997, 28.542140984000071 ], [ -82.037418018999972, 28.541928192000057 ], [ -82.037598632999959, 28.541709488000038 ], [ -82.037732417999962, 28.541538073000027 ], [ -82.037862867999934, 28.541396207000048 ], [ -82.037953175999974, 28.541292764000048 ], [ -82.038169849999974, 28.54107924300007 ], [ -82.038285089999988, 28.541003977000059 ], [ -82.03839727899998, 28.540943104000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005390185999943, 28.569246574000033 ], [ -82.00530381599998, 28.569263378000073 ], [ -82.005167210999957, 28.569284540000069 ], [ -82.005011432999936, 28.569303587000036 ], [ -82.004654341999981, 28.569350145000044 ], [ -82.004321215999937, 28.569384008000043 ], [ -82.004095936999988, 28.569428447000064 ], [ -82.003971315999934, 28.569464418000052 ], [ -82.003853883999966, 28.569506736000051 ], [ -82.003753227999937, 28.569568095000079 ], [ -82.003642986999978, 28.569650610000053 ], [ -82.003537539999968, 28.569747937000045 ], [ -82.003425205999974, 28.569876760000056 ], [ -82.003310909999982, 28.570003967000048 ], [ -82.003228389999947, 28.570116081000037 ], [ -82.003125337999961, 28.570240911000042 ], [ -82.00300550999998, 28.570344585000043 ], [ -82.002902457999937, 28.570414406000054 ], [ -82.002827064999963, 28.570458353000049 ], [ -82.002742555999987, 28.570487367000055 ], [ -82.00259329499994, 28.570499041000062 ], [ -82.001653818999955, 28.570545602000038 ], [ -82.000606493999953, 28.570600619000061 ], [ -81.999803623999981, 28.570638704000032 ], [ -81.997792850999986, 28.570746589000066 ], [ -81.996515443999954, 28.570807917000025 ], [ -81.995537616999968, 28.570854435000058 ], [ -81.994607721999955, 28.570892485000059 ], [ -81.993052298999942, 28.570991852000077 ], [ -81.992366859999947, 28.571017204000043 ], [ -81.991638277999982, 28.571063708000054 ], [ -81.989772521999953, 28.571152239000071 ], [ -81.988744299999951, 28.571203967000031 ], [ -81.986971910999955, 28.571294991000059 ], [ -81.986631517999967, 28.571311539000078 ], [ -81.986439939999968, 28.571319290000076 ], [ -81.986262585999953, 28.57133619800004 ], [ -81.986109197999951, 28.571348878000038 ], [ -81.98595581099994, 28.571370019000028 ], [ -81.985816801999988, 28.571393277000027 ], [ -81.985694842999976, 28.571408844000075 ], [ -81.985526800999935, 28.571441908000054 ], [ -81.985363824, 28.571477858000037 ], [ -81.985107373999938, 28.57154765000007 ], [ -81.983971319999966, 28.571833143000049 ], [ -81.983305024999936, 28.571987511000032 ], [ -81.982590789999961, 28.572167257000046 ], [ -81.982411032999948, 28.572222242000066 ], [ -81.982202509999979, 28.572298382000042 ], [ -81.982077869999955, 28.572370301000035 ], [ -81.981964461999951, 28.572438594000062 ], [ -81.981858128999988, 28.572521778000066 ], [ -81.981756674999986, 28.572615683000038 ], [ -81.981653824999967, 28.572747280000044 ], [ -81.981581672999937, 28.572869546000049 ], [ -81.981514543999936, 28.572998596000048 ], [ -81.981480974999954, 28.573085336000076 ], [ -81.981461788, 28.573167847000036 ], [ -81.981449787999964, 28.573254589000044 ], [ -81.981444980999981, 28.573334986000077 ], [ -81.981442564999952, 28.573445005000053 ], [ -81.98143534999997, 28.573588873000062 ], [ -81.981437487999983, 28.575063533000048 ], [ -81.981432581999968, 28.575698251000063 ], [ -81.981418171999962, 28.575871738000046 ], [ -81.981394180999985, 28.576002910000057 ], [ -81.981343823999964, 28.576144657000043 ], [ -81.981276696999942, 28.57624620200005 ], [ -81.981207177999977, 28.576320243000055 ], [ -81.981130468999936, 28.576392167000051 ], [ -81.981044174999965, 28.576453511000068 ], [ -81.98093870699995, 28.576510620000079 ], [ -81.980804477999982, 28.576565611000035 ], [ -81.980706207999958, 28.576584637000053 ], [ -81.980586368, 28.576590968000062 ], [ -81.980370658999959, 28.576599400000077 ], [ -81.980269990999943, 28.576614195000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002071649999948, 28.619394295000063 ], [ -82.002065412999968, 28.619279615000039 ], [ -82.002044947999934, 28.619155484000032 ], [ -82.00201425399996, 28.619052796000062 ], [ -82.001993789999972, 28.619004272000041 ], [ -82.001982279999936, 28.618976062000058 ], [ -82.001968211999952, 28.618952363000062 ], [ -82.001822154999957, 28.61877660500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003585014999942, 28.617507716000034 ], [ -82.003381643999944, 28.617628588000059 ], [ -82.003262065999934, 28.617689936000033 ], [ -82.003070183999967, 28.617822450000062 ], [ -82.002299876999984, 28.618401582000047 ], [ -82.001822154999957, 28.61877660500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001822154999957, 28.61877660500005 ], [ -82.001776178999989, 28.618811329000039 ], [ -82.00166304399994, 28.618875192000075 ], [ -82.001598545999968, 28.618899519000024 ], [ -82.001523517999942, 28.618920584000023 ], [ -82.001468951999982, 28.618928108000034 ], [ -82.001400745999945, 28.618931118000035 ], [ -82.001353853999944, 28.618932875000041 ], [ -82.001292467999974, 28.618932875000041 ], [ -82.00116060199997, 28.618934882000076 ], [ -82.000851397999952, 28.618936889000054 ], [ -81.999852632999989, 28.618963542000074 ], [ -81.998904737999965, 28.619002192000039 ], [ -81.997405373999982, 28.619063881000045 ], [ -81.997329731999969, 28.619071732000066 ], [ -81.997251863999963, 28.619073693000075 ], [ -81.99718289499998, 28.619081544000039 ], [ -81.99715779099995, 28.619092444000046 ], [ -81.997136048999948, 28.619107113000041 ], [ -81.997125817999972, 28.619124040000031 ], [ -81.997119422999958, 28.619147738000038 ], [ -81.997116148999964, 28.619211109000048 ], [ -81.997116146999986, 28.61927589000004 ], [ -81.997110464999935, 28.619374557000071 ], [ -81.997104068999988, 28.61939712700007 ], [ -81.99709127999995, 28.619414053000071 ], [ -81.997070817999941, 28.619434366000064 ], [ -81.997043961999964, 28.61944903400007 ], [ -81.997024776999979, 28.619454676000032 ], [ -81.996910956999955, 28.619454674000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998640164999983, 28.61615850000004 ], [ -81.998075076999953, 28.616619823000065 ], [ -81.997578952999959, 28.617032068000071 ], [ -81.997469939999974, 28.617120406000026 ], [ -81.997398745999988, 28.617181261000042 ], [ -81.997303079999938, 28.617271562000042 ], [ -81.997214087999964, 28.61737167800004 ], [ -81.997151791999954, 28.617458054000053 ], [ -81.997093014999962, 28.617545810000024 ], [ -81.997033875999989, 28.617646510000043 ], [ -81.996998276999989, 28.617711291000035 ], [ -81.996968279999976, 28.617775162000044 ], [ -81.996933754999986, 28.617884043000061 ], [ -81.996911503999968, 28.61797434500005 ], [ -81.996891477999952, 28.618076427000062 ], [ -81.996875901999942, 28.618196176000026 ], [ -81.996875898999974, 28.618286480000052 ], [ -81.996875895999949, 28.618408192000061 ], [ -81.996880339999962, 28.618555425000068 ], [ -81.996884785999953, 28.618694806000065 ], [ -81.996889230999955, 28.618853818000048 ], [ -81.996895900999959, 28.618991235000067 ], [ -81.996904790999963, 28.619321037000077 ], [ -81.996910956999955, 28.619454674000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015427946999978, 28.600157230000036 ], [ -82.015401702999952, 28.600135801000079 ], [ -82.015377407999949, 28.600126777000071 ], [ -82.015342883999949, 28.600120010000069 ], [ -82.015182276999951, 28.600117235000027 ], [ -82.015091578999943, 28.600117245000035 ], [ -82.014821194999968, 28.600116682000078 ], [ -82.014547387999983, 28.600112730000035 ], [ -82.014337485999988, 28.60011275200003 ], [ -82.014086120999934, 28.600112778000039 ], [ -82.013855486999944, 28.600105941000038 ], [ -82.013598940999941, 28.600105967000047 ], [ -82.013412359999961, 28.600103699000044 ], [ -82.013243920999969, 28.600106002000075 ], [ -82.013008104999983, 28.600103739000076 ], [ -82.012746374999949, 28.60010376300005 ], [ -82.012461322999968, 28.600103790000048 ], [ -82.012274742999978, 28.600099233000037 ], [ -82.012103711999941, 28.600099249000039 ], [ -82.01196896, 28.600103834000038 ], [ -82.011829025999987, 28.600103847000071 ], [ -82.01167613299998, 28.600099286000045 ], [ -82.011546563999957, 28.600101583000026 ], [ -82.011325260999968, 28.60011372300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015439445999959, 28.606254784000043 ], [ -82.015448075999984, 28.605836855000064 ], [ -82.015448024999955, 28.605487943000071 ], [ -82.015452278999987, 28.604870635000054 ], [ -82.015452592999964, 28.604564075000042 ], [ -82.015452515999982, 28.604035205000059 ], [ -82.01545243299995, 28.603474174000041 ], [ -82.015453279999974, 28.603078821000054 ], [ -82.015455770999949, 28.602633079000043 ], [ -82.015456978999964, 28.602152354000054 ], [ -82.015462023999987, 28.601662601000044 ], [ -82.015461957999946, 28.601213474000076 ], [ -82.01546316799994, 28.600747420000062 ], [ -82.015463126999975, 28.600467561000073 ], [ -82.015465651999989, 28.600252025000032 ], [ -82.015461209999955, 28.60021890400003 ], [ -82.015448679999963, 28.600181012000064 ], [ -82.015427946999978, 28.600157230000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046538017999978, 28.599169352000047 ], [ -82.045649644999969, 28.599150437000048 ], [ -82.04534481099995, 28.599142854000036 ], [ -82.044813527999963, 28.599131499000066 ], [ -82.044517390999943, 28.599093165000056 ], [ -82.044356255999958, 28.599070157000028 ], [ -82.043989958999987, 28.599076947000071 ], [ -82.04387074899995, 28.599066845000038 ], [ -82.043840585999988, 28.599056715000074 ], [ -82.043810597999936, 28.599040722000041 ], [ -82.04377827199994, 28.599011262000033 ], [ -82.043761028999938, 28.59899415600006 ], [ -82.043752445999985, 28.598979394000025 ], [ -82.043740548999949, 28.598957088000077 ], [ -82.043735154999979, 28.598939977000043 ], [ -82.043728683999973, 28.598920016000079 ], [ -82.043720055999984, 28.59889245100004 ], [ -82.043706042999986, 28.598869640000032 ], [ -82.043674786999986, 28.59882116700004 ], [ -82.043652159999965, 28.598806915000068 ], [ -82.043620919999967, 28.598799320000069 ], [ -82.043591833999983, 28.598793625000042 ], [ -82.043419873999937, 28.598789902000078 ], [ -82.042963934999989, 28.59879464100004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042403535999938, 28.600019005000036 ], [ -82.042403708999984, 28.59878887900004 ], [ -82.042403455999988, 28.598158710000064 ], [ -82.042395057999954, 28.597336288000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034146865999958, 28.578021567000064 ], [ -82.03414657999997, 28.577134716000046 ], [ -82.034156884999959, 28.576240159000065 ], [ -82.034160693999979, 28.574769992000029 ], [ -82.034156019999955, 28.573562731000038 ], [ -82.034159353999939, 28.572954933000062 ], [ -82.034164157999953, 28.57197910800005 ], [ -82.034165110999936, 28.57042890300005 ], [ -82.034165412999982, 28.569609848000027 ], [ -82.034165015999974, 28.56862553600007 ], [ -82.03415776099996, 28.568020855000043 ], [ -82.034171403999949, 28.566540316000044 ], [ -82.034171156999946, 28.565773555000078 ], [ -82.034174150999945, 28.564112238000064 ], [ -82.034159674999955, 28.56301820300007 ], [ -82.034152482999957, 28.562606771000048 ], [ -82.034173386999953, 28.561746495000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034478581999963, 28.588030856000046 ], [ -82.034416701999987, 28.587993535000066 ], [ -82.03435002599997, 28.587940916000036 ], [ -82.034276972999976, 28.587875410000038 ], [ -82.03421437999998, 28.587804787000039 ], [ -82.034182353999938, 28.587761129000057 ], [ -82.034163426999953, 28.587725172000034 ], [ -82.034143040999936, 28.587682794000045 ], [ -82.03412992899996, 28.587633991000075 ], [ -82.03412409799995, 28.587598032000074 ], [ -82.034119428999986, 28.587522406000062 ], [ -82.034110521999935, 28.587389405000067 ], [ -82.034127485999988, 28.585022731000038 ], [ -82.034131732999981, 28.584451599000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03606358899998, 28.58811173600003 ], [ -82.034706305999975, 28.58810905200005 ], [ -82.034659738999949, 28.588101358000074 ], [ -82.034610261999944, 28.588089812000078 ], [ -82.034562802999972, 28.588073865000069 ], [ -82.034478581999963, 28.588030856000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042308982999941, 28.588112429000034 ], [ -82.040272091999952, 28.58811907300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040272091999952, 28.58811907300003 ], [ -82.039461319999987, 28.588117891000024 ], [ -82.038266971999974, 28.588118234000035 ], [ -82.037559378999958, 28.588117443000044 ], [ -82.03606358899998, 28.58811173600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040272091999952, 28.58811907300003 ], [ -82.040274685999975, 28.587454756000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058818232999954, 28.579002568000078 ], [ -82.058806986999969, 28.577885758000036 ], [ -82.058810223999956, 28.577331731000072 ], [ -82.058803055999988, 28.577194011000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063335723999955, 28.577252927000075 ], [ -82.063112220999983, 28.577253031000055 ], [ -82.062909798999954, 28.577241957000069 ], [ -82.062707373999956, 28.577230883000027 ], [ -82.062559773999965, 28.577223506000053 ], [ -82.062399525999979, 28.577219858000035 ], [ -82.062192889999949, 28.577216229000044 ], [ -82.062015774999963, 28.57721631000004 ], [ -82.061821785999939, 28.57720523200004 ], [ -82.061716358999945, 28.577205280000044 ], [ -82.061513940999987, 28.577201650000063 ], [ -82.061231398999951, 28.577198056000043 ], [ -82.060086662999936, 28.577190319000067 ], [ -82.058803055999988, 28.577194011000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137453074999939, 28.624870993000059 ], [ -82.137901267999951, 28.624889495000048 ], [ -82.138865867999982, 28.624888511000051 ], [ -82.139861427999961, 28.624904857000047 ], [ -82.140390141999944, 28.624911755000028 ], [ -82.141354748999959, 28.624915715000043 ], [ -82.142392480999945, 28.624924555000064 ], [ -82.142606222999973, 28.624931773000071 ], [ -82.14274970799994, 28.624976287000038 ], [ -82.142865060999952, 28.625013384000056 ], [ -82.142977609999946, 28.625057931000072 ], [ -82.143084560999966, 28.625119851000079 ], [ -82.143216843999937, 28.625199115000044 ], [ -82.143312552999987, 28.625266010000075 ], [ -82.14343359999998, 28.625355210000066 ], [ -82.143560283999989, 28.625451848000068 ], [ -82.143712303999962, 28.625568311000052 ], [ -82.143957282999963, 28.625796333000039 ], [ -82.144286722999937, 28.626091264000024 ], [ -82.144531734999987, 28.626341618000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134772989999988, 28.617514162000077 ], [ -82.138362036999979, 28.617539200000067 ], [ -82.138521967999964, 28.617577521000044 ], [ -82.138537746999987, 28.617577505000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134772989999988, 28.617514162000077 ], [ -82.135229193999976, 28.616658096000037 ], [ -82.135449511, 28.616135018000023 ], [ -82.135706284999969, 28.615637616000072 ], [ -82.135825902999954, 28.615413025000066 ], [ -82.136016038999969, 28.615025538000054 ], [ -82.136402198999974, 28.614234041000032 ], [ -82.136833710999952, 28.613293529000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136288857999944, 28.611704037000038 ], [ -82.136400594999941, 28.61174212800006 ], [ -82.136701580999954, 28.611856562000071 ], [ -82.13684696699994, 28.611908160000041 ], [ -82.136941331999935, 28.611935063000033 ], [ -82.137007642999947, 28.611954119000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135625195999978, 28.611461685000052 ], [ -82.13618633699997, 28.611661352000056 ], [ -82.136288857999944, 28.611704037000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135977571999945, 28.612475505000077 ], [ -82.136039166999979, 28.612324884000031 ], [ -82.136103979999973, 28.612159426000062 ], [ -82.136199350999959, 28.611868316000027 ], [ -82.136248845999944, 28.611757521000072 ], [ -82.136288857999944, 28.611704037000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137062714999956, 28.611955862000059 ], [ -82.137101874999985, 28.611878657000034 ], [ -82.137312963999989, 28.611480234000055 ], [ -82.137564692999945, 28.610967034000055 ], [ -82.137585032999937, 28.61092426700003 ], [ -82.137602804999972, 28.610868005000043 ], [ -82.137599981999983, 28.610822215000042 ], [ -82.137592177999977, 28.610787014000039 ], [ -82.137576599999989, 28.610740085000032 ], [ -82.137464677999958, 28.610517182000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120870025999977, 28.602602339000043 ], [ -82.120974894999961, 28.602602245000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117881952999937, 28.602612727000064 ], [ -82.117997807999984, 28.602612626000052 ], [ -82.118202922999956, 28.602612448000059 ], [ -82.11839631099997, 28.602607108000029 ], [ -82.118569192999985, 28.602606957000035 ], [ -82.118730354999968, 28.602606816000048 ], [ -82.118935466999972, 28.602604049000036 ], [ -82.11923141699998, 28.602601203000063 ], [ -82.119407227999943, 28.602601049000043 ], [ -82.119559599999945, 28.60260091400005 ], [ -82.11993173999997, 28.602603172000045 ], [ -82.120148572999938, 28.602600394000035 ], [ -82.12035661799996, 28.602600209000059 ], [ -82.120588103999978, 28.602600004000067 ], [ -82.120807873, 28.60260239400003 ], [ -82.120870025999977, 28.602602339000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115793876999987, 28.603129399000068 ], [ -82.115976295999985, 28.603029227000036 ], [ -82.116115493999985, 28.60295880700005 ], [ -82.116434765999941, 28.60281468200003 ], [ -82.116811668999958, 28.602619551000032 ], [ -82.116936744999975, 28.602609407000045 ], [ -82.117064677999963, 28.602609297000072 ], [ -82.117247670999973, 28.602610691000052 ], [ -82.117414689999976, 28.602607961000047 ], [ -82.117622738999955, 28.602610366000079 ], [ -82.117833714999961, 28.602612769000075 ], [ -82.117881952999937, 28.602612727000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120766397999944, 28.708308097000042 ], [ -82.120770043999983, 28.708135217000063 ], [ -82.12076402699995, 28.706243078000057 ], [ -82.120763070999942, 28.705410563000044 ], [ -82.120752463999963, 28.704209254000034 ], [ -82.120742267999958, 28.703365900000051 ], [ -82.120753340999954, 28.702294736000056 ], [ -82.120774471999937, 28.700354060000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120774471999937, 28.700354060000052 ], [ -82.120801849999964, 28.697793731000047 ], [ -82.120810763999941, 28.695039238000049 ], [ -82.120809923999957, 28.69430802200003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139037851999944, 28.799508051000032 ], [ -82.139527038999972, 28.799492458000032 ], [ -82.139949053999942, 28.799494261000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139949053999942, 28.799494261000063 ], [ -82.139950177999935, 28.799494267000057 ], [ -82.140853732999972, 28.799474406000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139926629999934, 28.797017195000024 ], [ -82.139937108999959, 28.797953828000061 ], [ -82.139937287999942, 28.798699585000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139937287999942, 28.798699585000065 ], [ -82.139949053999942, 28.799494261000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135637349999968, 28.804220947000033 ], [ -82.135771640999963, 28.804416584000023 ], [ -82.135790917999941, 28.804470699000035 ], [ -82.135796099999936, 28.804518060000078 ], [ -82.135794199999964, 28.804561939000052 ], [ -82.135793675999935, 28.804609382000024 ], [ -82.135783197999956, 28.80465580300006 ], [ -82.135757456999954, 28.804821188000062 ], [ -82.135752794999974, 28.80483700700006 ], [ -82.135759444999962, 28.804885759000058 ], [ -82.135768460999941, 28.804926350000073 ], [ -82.135787721999975, 28.80496918800003 ], [ -82.135815939999986, 28.805006377000041 ], [ -82.135851847999959, 28.805050324000035 ], [ -82.135885187999975, 28.805087508000042 ], [ -82.136143308999976, 28.805290244000048 ], [ -82.136168178999981, 28.805302006000034 ], [ -82.136671237999963, 28.805483366000033 ], [ -82.136734112999989, 28.805502954000076 ], [ -82.136808931999951, 28.80551353900006 ], [ -82.137313496, 28.805572143000063 ], [ -82.137412105999942, 28.805584449000037 ], [ -82.137470532999941, 28.805585277000034 ], [ -82.137520936999977, 28.805579827000031 ], [ -82.137568293999948, 28.805565117000071 ], [ -82.137600278999969, 28.80554591300006 ], [ -82.137624568999968, 28.805516564000072 ], [ -82.137642424999967, 28.805463539000073 ], [ -82.137651926999979, 28.805406592000054 ], [ -82.137657278999939, 28.804825109000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135568951999971, 28.804121304000034 ], [ -82.135637349999968, 28.804220947000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032782328999986, 28.741264064000063 ], [ -82.031487929999969, 28.741261660000077 ], [ -82.029958996999937, 28.741278881000028 ], [ -82.029611630999966, 28.741259673000059 ], [ -82.029423679999979, 28.741250963000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982772196999974, 28.878883832000042 ], [ -81.982926139999961, 28.879000766000047 ], [ -81.983252424999989, 28.879250941000066 ], [ -81.983421174999989, 28.879396738000025 ], [ -81.98352078299996, 28.879495064000025 ], [ -81.983692828999949, 28.879686398000047 ], [ -81.983903417999954, 28.879907069000069 ], [ -81.984002732999954, 28.879995357000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01000948099994, 28.908749087000047 ], [ -82.00999700899996, 28.908541351000054 ], [ -82.009983474999956, 28.908441861000028 ], [ -82.009976973999983, 28.908347607000053 ], [ -82.009962992999988, 28.908249337000029 ], [ -82.009951262999948, 28.908154799000044 ], [ -82.009931135999977, 28.90808329500004 ], [ -82.009899085999962, 28.907955756000035 ], [ -82.009876304999977, 28.907890623000071 ], [ -82.009843838999984, 28.907827790000056 ], [ -82.009801637999942, 28.907782093000037 ], [ -82.009765523999988, 28.907756748000054 ], [ -82.009711962999972, 28.907737472000065 ], [ -82.009571167999979, 28.907719274000044 ], [ -82.009460802999968, 28.907707858000038 ], [ -82.009356931999946, 28.907693583000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962746615999947, 28.881801241000062 ], [ -81.96282529299998, 28.881804813000031 ], [ -81.963248648999979, 28.881810529000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972167500999944, 28.870874725000078 ], [ -81.972302355999943, 28.870960885000045 ], [ -81.972471581999969, 28.871074987000043 ], [ -81.972683117999964, 28.871224018000078 ], [ -81.972796915999936, 28.871317914000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972796915999936, 28.871317914000031 ], [ -81.973102491999953, 28.871590267000045 ], [ -81.973281793999945, 28.871737628000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973361182999952, 28.870871425000075 ], [ -81.973254993999944, 28.87096811400005 ], [ -81.973154980999936, 28.871050677000028 ], [ -81.973045092999939, 28.871128892000058 ], [ -81.972927632999983, 28.871210322000024 ], [ -81.972796915999936, 28.871317914000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972796915999936, 28.871317914000031 ], [ -81.97273394399997, 28.871375493000073 ], [ -81.972638865999954, 28.871461317000069 ], [ -81.972531442, 28.871553657000049 ], [ -81.972445006999976, 28.871640570000068 ], [ -81.972424011999976, 28.871674250000069 ], [ -81.972412892999955, 28.871704674000057 ], [ -81.972411651999948, 28.87173292600005 ], [ -81.972412877999943, 28.871763352000073 ], [ -81.972419040999966, 28.871797038000068 ], [ -81.972428909999962, 28.87182529200004 ], [ -81.972447417999945, 28.871861154000044 ], [ -81.972493078999946, 28.871912235000025 ], [ -81.97255602499996, 28.871964406000075 ], [ -81.97262143599994, 28.872022010000023 ], [ -81.972730488999957, 28.872113292000051 ], [ -81.972872412999948, 28.872238435000043 ], [ -81.973033413999985, 28.872378867000066 ], [ -81.97322815299998, 28.872543607000068 ], [ -81.973386090999952, 28.872677288000034 ], [ -81.973529007999957, 28.872807172000023 ], [ -81.973649832999968, 28.872904141000049 ], [ -81.973701971999958, 28.872933852000074 ], [ -81.973760243999948, 28.872967613000071 ], [ -81.973847656999965, 28.873005430000035 ], [ -81.973963307999952, 28.873042904000044 ], [ -81.974073096999973, 28.873066223000023 ], [ -81.974198221999984, 28.873080508000044 ], [ -81.974321672999963, 28.873080532000074 ], [ -81.974494498999945, 28.873086360000059 ], [ -81.974665107999954, 28.873086586000056 ], [ -81.97477706899997, 28.873092007000025 ], [ -81.974887490999947, 28.873112278000065 ], [ -81.975004740999964, 28.873150204000069 ], [ -81.975124884999957, 28.873208181000052 ], [ -81.975339885999972, 28.873333763000062 ], [ -81.97558371599996, 28.873464757000079 ], [ -81.975835865999954, 28.873583557000075 ], [ -81.975994708999963, 28.873661932000061 ], [ -81.976122240999985, 28.873714001000053 ], [ -81.976191366999956, 28.873737195000047 ], [ -81.976255558999981, 28.873741553000059 ], [ -81.976332923999962, 28.873732873000051 ], [ -81.976385600999947, 28.873705355000027 ], [ -81.976428405999968, 28.87366914100005 ], [ -81.976464631999988, 28.873605400000031 ], [ -81.976497568999946, 28.873530066000058 ], [ -81.976543675999949, 28.873446043000058 ], [ -81.976593074999982, 28.873359121000078 ], [ -81.97663917899996, 28.873286687000075 ], [ -81.976705038999967, 28.873196872000051 ], [ -81.97675443199995, 28.873133131000031 ], [ -81.976808765999976, 28.873063598000044 ], [ -81.976861450999934, 28.873002755000073 ], [ -81.976917427999979, 28.872941914000023 ], [ -81.976996455999938, 28.872850652000068 ], [ -81.977075483999954, 28.872755042000051 ], [ -81.977152865999983, 28.87266377900005 ], [ -81.977222015999985, 28.872578310000051 ], [ -81.977281288999961, 28.872495737000065 ], [ -81.977327392999939, 28.872417508000069 ], [ -81.977342219999969, 28.872359557000038 ], [ -81.977334847999941, 28.872295724000026 ], [ -81.977308413999936, 28.872235194000041 ], [ -81.977271395999935, 28.872197941000024 ], [ -81.977218812999979, 28.872163945000068 ], [ -81.977126646999977, 28.872126260000073 ], [ -81.976999918, 28.872078427000076 ], [ -81.976846468999952, 28.872004529000037 ], [ -81.976843149, 28.872002809000037 ], [ -81.976685568999983, 28.871929143000045 ], [ -81.976557198999956, 28.871862475000057 ], [ -81.976404141999978, 28.871781314000032 ], [ -81.976268121999965, 28.871703621000051 ], [ -81.976159561999964, 28.871636909000074 ], [ -81.976044558999945, 28.871564695000075 ], [ -81.975941689999956, 28.871495813000024 ], [ -81.975864341999966, 28.871446540000079 ], [ -81.975822900999958, 28.871419118000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116894238999976, 28.654032518000065 ], [ -82.117386560999989, 28.653014478000046 ], [ -82.117554039999959, 28.652706841000054 ], [ -82.118187896999984, 28.651416568000059 ], [ -82.118712781999989, 28.650333307000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115555105999988, 28.656671521000078 ], [ -82.11588777299994, 28.656016779000026 ], [ -82.116262899999981, 28.655275655000025 ], [ -82.116554521999944, 28.654714798000043 ], [ -82.116894238999976, 28.654032518000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115555105999988, 28.656671521000078 ], [ -82.115702787999965, 28.656721470000036 ], [ -82.115953114999968, 28.656725096000059 ], [ -82.116712795999945, 28.656730203000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11505800499998, 28.657619318000059 ], [ -82.115555105999988, 28.656671521000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112671488999979, 28.657551913000077 ], [ -82.114615382999943, 28.657601756000076 ], [ -82.114818240999966, 28.657606734000069 ], [ -82.11505800499998, 28.657619318000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11505800499998, 28.657619318000059 ], [ -82.115343938999956, 28.657614717000058 ], [ -82.116048046999936, 28.657618332000027 ], [ -82.11671596399998, 28.657624923000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114218803999961, 28.659293227000035 ], [ -82.114304368999967, 28.659119634000035 ], [ -82.114644043999988, 28.658371873000078 ], [ -82.114940994999984, 28.657768746000045 ], [ -82.11505800499998, 28.657619318000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114218803999961, 28.659293227000035 ], [ -82.114416453999979, 28.659328490000064 ], [ -82.114998744, 28.659330397000076 ], [ -82.115281723999942, 28.659330156000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11331546699995, 28.661253883000029 ], [ -82.113448794999954, 28.66093120000005 ], [ -82.113597225999968, 28.660581809000064 ], [ -82.113806092999937, 28.660143383000047 ], [ -82.114218803999961, 28.659293227000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11331546699995, 28.661253883000029 ], [ -82.114895283999942, 28.661269209000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11331546699995, 28.661253883000029 ], [ -82.11315000999997, 28.661269407000077 ], [ -82.113041179999982, 28.661268369000027 ], [ -82.112901562, 28.661269291000053 ], [ -82.112753943999962, 28.66126941400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11331546699995, 28.661253883000029 ], [ -82.11321486099996, 28.661516473000063 ], [ -82.113129390999973, 28.661781274000077 ], [ -82.113053982999986, 28.662021597000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113053982999986, 28.662021597000034 ], [ -82.113955729999986, 28.662038004000067 ], [ -82.114893958999971, 28.662050651000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113053982999986, 28.662021597000034 ], [ -82.11297609199994, 28.662299741000027 ], [ -82.112913358999947, 28.662600118000057 ], [ -82.112890808999964, 28.662740288000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112890808999964, 28.662740288000066 ], [ -82.113330642999983, 28.662756540000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112890808999964, 28.662740288000066 ], [ -82.11285320199994, 28.662951660000033 ], [ -82.112823166999988, 28.663167473000044 ], [ -82.112785655999971, 28.663467828000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112785655999971, 28.663467828000023 ], [ -82.113330428999973, 28.663455746000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112750133999953, 28.663800803000072 ], [ -82.112728219999951, 28.664006236000034 ], [ -82.112708226999985, 28.664179774000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112785655999971, 28.663467828000023 ], [ -82.112750133999953, 28.663800803000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112750133999953, 28.663800803000072 ], [ -82.112508383999966, 28.663797459000079 ], [ -82.112317016999953, 28.663796454000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112708226999985, 28.664179774000047 ], [ -82.112647924999976, 28.664911795000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112647924999976, 28.664911795000023 ], [ -82.113335524999968, 28.664907285000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112647924999976, 28.664911795000023 ], [ -82.112456545999976, 28.664907043000028 ], [ -82.112242823999964, 28.664905471000054 ], [ -82.112183349999952, 28.664905521000037 ], [ -82.112146853999946, 28.664902565000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112647924999976, 28.664911795000023 ], [ -82.112591666999947, 28.665078410000035 ], [ -82.112545316999956, 28.665517673000068 ], [ -82.112478161999945, 28.666182824000032 ], [ -82.112416319999966, 28.666731801000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112416319999966, 28.666731801000026 ], [ -82.112546619999989, 28.666732872000068 ], [ -82.113322685999947, 28.66673589800007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112416319999966, 28.666731801000026 ], [ -82.112328184999967, 28.667459326000028 ], [ -82.112305688999982, 28.667652887000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112305688999982, 28.667652887000031 ], [ -82.112815840999986, 28.667630332000044 ], [ -82.11331882099995, 28.66762204500003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112305688999982, 28.667652887000031 ], [ -82.112273948999984, 28.66804667200006 ], [ -82.112251501999935, 28.668285281000067 ], [ -82.112234652999973, 28.668450475000043 ], [ -82.112227213999972, 28.668570610000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112227213999972, 28.668570610000074 ], [ -82.111878688, 28.668556868000053 ], [ -82.111814269999968, 28.66855692200005 ], [ -82.111702258999969, 28.668556513000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112227213999972, 28.668570610000074 ], [ -82.112389638999957, 28.668583824000052 ], [ -82.112984329999961, 28.668580961000032 ], [ -82.113324490999958, 28.668589676000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112185281999984, 28.670315864000031 ], [ -82.113319542999989, 28.670314682000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111660395999934, 28.674861203000034 ], [ -82.113591421999956, 28.674865109000052 ], [ -82.113802714999963, 28.674874738000028 ], [ -82.113912071999948, 28.674882819000061 ], [ -82.114004758999954, 28.674900721000029 ], [ -82.114112277999936, 28.674923512000078 ], [ -82.114199411999948, 28.67494795600004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111203151999973, 28.679002714000035 ], [ -82.11138595999995, 28.679002880000041 ], [ -82.11151876699995, 28.679002771000057 ], [ -82.113314953999975, 28.679010879000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110743990999936, 28.683155900000031 ], [ -82.111481797999943, 28.683153839000056 ], [ -82.113532801999952, 28.683169414000076 ], [ -82.115191881999976, 28.683169934000034 ], [ -82.116713802999982, 28.683178230000067 ], [ -82.118466520999959, 28.68319206700005 ], [ -82.120814738999968, 28.683220712000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110549798999955, 28.68482569300005 ], [ -82.110563044999935, 28.684712818000037 ], [ -82.110576318999961, 28.684540770000069 ], [ -82.110619693, 28.684205559000077 ], [ -82.110679614999981, 28.683612278000055 ], [ -82.110743990999936, 28.683155900000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.205672794999941, 28.601940847000037 ], [ -82.205189873999984, 28.602005753000071 ], [ -82.204381661999946, 28.602128457000049 ], [ -82.203368384999976, 28.602291922000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019689029999938, 28.938753968000071 ], [ -82.018061910999961, 28.938759277000031 ], [ -82.017806721999989, 28.938804190000042 ], [ -82.017627068999957, 28.938881767000055 ], [ -82.017402502999971, 28.938961386000074 ], [ -82.017202718999954, 28.938989532000051 ], [ -82.016354768999975, 28.938985858000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01636386399997, 28.939793167000062 ], [ -82.016365470999972, 28.939934067000024 ], [ -82.016346007999971, 28.941018838000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010550038999952, 28.914324527000076 ], [ -82.010552378999989, 28.914282929000024 ], [ -82.010555292999982, 28.914120665000041 ], [ -82.010566789999984, 28.913826047000043 ], [ -82.010579623999945, 28.913685944000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010579623999945, 28.913685944000065 ], [ -82.011545337999962, 28.913866533000032 ], [ -82.01164633999997, 28.913881651000054 ], [ -82.011738741999977, 28.913876486000049 ], [ -82.011865721999982, 28.91385378700005 ], [ -82.01193565799997, 28.913840028000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955297480999945, 28.881482596000069 ], [ -81.955297585999972, 28.881237824000038 ], [ -81.955294939999987, 28.881030526000075 ], [ -81.955292546999942, 28.88069018300007 ], [ -81.955289953999966, 28.880361186000073 ], [ -81.955287510999938, 28.880135323000047 ], [ -81.955284883, 28.879890551000074 ], [ -81.955284970999969, 28.879685315000074 ], [ -81.955287780999981, 28.879505864000066 ], [ -81.955285093999976, 28.879396197000062 ], [ -81.955279944999972, 28.879343010000071 ], [ -81.955261119999989, 28.879303804000074 ], [ -81.955232016999958, 28.879264593000073 ], [ -81.955187494999961, 28.879226886000026 ], [ -81.955144678999943, 28.879204257000026 ], [ -81.955093294999983, 28.879193686000065 ], [ -81.955007647999935, 28.879189133000068 ], [ -81.954923712999971, 28.879187599000034 ], [ -81.95482607699995, 28.879180027000075 ], [ -81.954762703999961, 28.879163421000044 ], [ -81.954683898999974, 28.879141944000025 ], [ -81.954596809999941, 28.879111662000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955297480999945, 28.881482596000069 ], [ -81.955512000999988, 28.881482520000077 ], [ -81.955828907999944, 28.881482625000046 ], [ -81.955960810999954, 28.881484176000072 ], [ -81.956101278999938, 28.881479698000078 ], [ -81.956236609999962, 28.881473711000069 ], [ -81.956390786999975, 28.881463207000024 ], [ -81.956534683999962, 28.881451192000043 ], [ -81.956705991999968, 28.881437678000054 ], [ -81.956945820999977, 28.881422678000035 ], [ -81.957159946, 28.88142576100006 ], [ -81.957387369999935, 28.881436863000033 ], [ -81.957625819999976, 28.88145309500004 ], [ -81.957822871999952, 28.881457632000036 ], [ -81.957959909999943, 28.881466721000038 ], [ -81.958115809999981, 28.881476626000051 ], [ -81.958269507999944, 28.881476673000066 ], [ -81.958357331999935, 28.881462322000061 ], [ -81.958432713999969, 28.881436715000063 ], [ -81.958494711999947, 28.881406955000045 ], [ -81.958591475999981, 28.881345527000065 ], [ -81.958691917999943, 28.881279903000063 ], [ -81.958794241999954, 28.881231778000028 ], [ -81.95889703499995, 28.881201654000051 ], [ -81.959001814999965, 28.881173940000053 ], [ -81.959090758999935, 28.881161342000041 ], [ -81.959168222999949, 28.881158840000069 ], [ -81.959254295999983, 28.881153815000062 ], [ -81.959452263999935, 28.881141250000042 ], [ -81.959590430999981, 28.88113536000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954568633999941, 28.881484924000063 ], [ -81.954570789999934, 28.880467224000029 ], [ -81.954557879999982, 28.879287059000035 ], [ -81.954578006999952, 28.879186059000062 ], [ -81.954596809999941, 28.879111662000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954568633999941, 28.881484924000063 ], [ -81.954624682999963, 28.881484777000026 ], [ -81.954743813999983, 28.881484817000057 ], [ -81.954931884999951, 28.881484880000073 ], [ -81.955157063999934, 28.881482549000054 ], [ -81.955297480999945, 28.881482596000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954596809999941, 28.879111662000071 ], [ -81.954543468999987, 28.879098516000056 ], [ -81.954464685999938, 28.879069842000035 ], [ -81.954368771999953, 28.879038148000063 ], [ -81.954312250999976, 28.879021544000068 ], [ -81.954255727999964, 28.87901097200006 ], [ -81.95418207299997, 28.879003408000074 ], [ -81.954110129999947, 28.87900036700006 ], [ -81.954029616999946, 28.87900637100006 ], [ -81.953976508999972, 28.879019923000044 ], [ -81.953923393999958, 28.879047043000071 ], [ -81.953878839999959, 28.879084721000027 ], [ -81.953849611999942, 28.87913684800003 ], [ -81.953839401999971, 28.879175169000064 ], [ -81.95383355599995, 28.879230007000046 ], [ -81.953833488999976, 28.879381613000078 ], [ -81.953833405999944, 28.879570691000026 ], [ -81.953836053999964, 28.879766303000054 ], [ -81.953835973999958, 28.879945754000062 ], [ -81.953835893999951, 28.88012761400006 ], [ -81.953838340999937, 28.88033525700007 ], [ -81.953840997999976, 28.880507836000049 ], [ -81.953843657999982, 28.880675600000075 ], [ -81.953846116999955, 28.880859866000037 ], [ -81.953846028999976, 28.881057884000029 ], [ -81.953849291999973, 28.881199723000066 ], [ -81.953856462999966, 28.881309876000046 ], [ -81.953872451999985, 28.881367981000039 ], [ -81.953902816999971, 28.881410501000062 ], [ -81.953954442999986, 28.881448395000064 ], [ -81.954029023999965, 28.881478723000043 ], [ -81.954142494999985, 28.881484614000044 ], [ -81.954333301999952, 28.881484679000039 ], [ -81.954516096999953, 28.881484740000076 ], [ -81.954568633999941, 28.881484924000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955968148999943, 28.879356211000072 ], [ -81.956161210999937, 28.879351872000029 ], [ -81.956370541999945, 28.879335603000072 ], [ -81.956733620999955, 28.879300068000077 ], [ -81.956753041999946, 28.879298165000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957487173999937, 28.879321718000028 ], [ -81.957489518999978, 28.879247073000045 ], [ -81.957453449999946, 28.878941588000032 ], [ -81.957410541999934, 28.878633505000039 ], [ -81.957385408999983, 28.878435786000068 ], [ -81.957374781999988, 28.878338376000045 ], [ -81.957369504999974, 28.878199892000055 ], [ -81.957374880999964, 28.878095445000042 ], [ -81.957392252999966, 28.878001564000044 ], [ -81.957416573999978, 28.877911309000069 ], [ -81.957453903999976, 28.877827990000071 ], [ -81.957496960999947, 28.877772451000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956753041999946, 28.879298165000023 ], [ -81.956999715999984, 28.879295897000077 ], [ -81.95710721599994, 28.879300188000059 ], [ -81.957487173999937, 28.879321718000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957487173999937, 28.879321718000028 ], [ -81.957564605999949, 28.879327462000049 ], [ -81.957715347999965, 28.879329017000032 ], [ -81.957838685999945, 28.879321517000051 ], [ -81.958157072999938, 28.879303303000029 ], [ -81.958233075999942, 28.879297459000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955812243999958, 28.878712732000054 ], [ -81.955864166999959, 28.878402179000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955864166999959, 28.878402179000034 ], [ -81.955728325999985, 28.878366515000039 ], [ -81.955664798999976, 28.878344703000039 ], [ -81.955545496999946, 28.878295503000061 ], [ -81.955423501999974, 28.878238493000026 ], [ -81.955356281999968, 28.878204513000071 ], [ -81.955309431999979, 28.878175035000027 ], [ -81.955215734999967, 28.878108223000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954847834999953, 28.878563150000048 ], [ -81.954955100999939, 28.878420456000072 ], [ -81.955215734999967, 28.878108223000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955215734999967, 28.878108223000027 ], [ -81.955163280999955, 28.878074464000065 ], [ -81.955077346999985, 28.877998768000054 ], [ -81.954984248999949, 28.877916765000066 ], [ -81.954893546999983, 28.877822151000032 ], [ -81.954817165999941, 28.877742255000044 ], [ -81.954775474999963, 28.877683744000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953766721999955, 28.878186207000056 ], [ -81.95393841799995, 28.878117273000043 ], [ -81.954074371, 28.878059828000062 ], [ -81.954206291999981, 28.877998800000057 ], [ -81.954775474999963, 28.877683744000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954775474999963, 28.877683744000024 ], [ -81.954745569999943, 28.87764134300005 ], [ -81.95468114199997, 28.877534127000047 ], [ -81.954616718999944, 28.877412199000048 ], [ -81.954549913999983, 28.877277658000025 ], [ -81.954474437999977, 28.877128751000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953775723999968, 28.87741003900004 ], [ -81.95390982899994, 28.877348817000041 ], [ -81.954015752999965, 28.877299257000061 ], [ -81.954474437999977, 28.877128751000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953749372999937, 28.876590585000031 ], [ -81.954242210999951, 28.876489360000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954242210999951, 28.876489360000051 ], [ -81.954220767999971, 28.876380057000063 ], [ -81.954194555999948, 28.876251835000062 ], [ -81.954185048999989, 28.876150943000027 ], [ -81.95418032799995, 28.876024831000052 ], [ -81.954175598999939, 28.875919737000061 ], [ -81.954179545999978, 28.875805532000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954179545999978, 28.875805532000072 ], [ -81.954187632999947, 28.875705353000058 ], [ -81.954204402999949, 28.875579248000065 ], [ -81.954225945999951, 28.875461550000068 ], [ -81.954252256999951, 28.875362774000052 ], [ -81.954285732999949, 28.875257692000048 ], [ -81.954355047999968, 28.875110586000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953741380999986, 28.875808300000074 ], [ -81.954013981999935, 28.875793205000036 ], [ -81.954179545999978, 28.875805532000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953728783999964, 28.87500404900004 ], [ -81.954042265999988, 28.875028507000025 ], [ -81.954175980999935, 28.875049572000023 ], [ -81.954269097999941, 28.875076927000066 ], [ -81.954355047999968, 28.875110586000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007643458999951, 28.924194229000079 ], [ -82.007683639999982, 28.924109530000067 ], [ -82.007769759999974, 28.923991457000056 ], [ -82.007841735999989, 28.923913365000033 ], [ -82.007873554999946, 28.923880019000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007873554999946, 28.923880019000023 ], [ -82.007822827999973, 28.923829330000046 ], [ -82.007753718999936, 28.923777349000034 ], [ -82.007715660999963, 28.923754443000064 ], [ -82.007668587999945, 28.923735942000064 ], [ -82.007598480999945, 28.923719206000044 ], [ -82.007441583999935, 28.923686162000024 ], [ -82.007260073999987, 28.923641787000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007260073999987, 28.923641787000065 ], [ -82.007209080999985, 28.923631477000072 ], [ -82.00693554999998, 28.923572362000073 ], [ -82.006817973999944, 28.923545218000072 ], [ -82.006681767999964, 28.923509981000052 ], [ -82.006532205999974, 28.923451249000038 ], [ -82.006410685999981, 28.923377241000026 ], [ -82.006298513, 28.923293836000028 ], [ -82.006230406999975, 28.923224524000034 ], [ -82.006162298999982, 28.92313641800007 ], [ -82.006096863999971, 28.92304831000007 ], [ -82.006055463999985, 28.922955503000026 ], [ -82.006028750999974, 28.922843896000074 ], [ -82.006024347999983, 28.922749929000076 ], [ -82.006036751999943, 28.922673548000034 ], [ -82.006052770999986, 28.922585438000056 ], [ -82.006070124999951, 28.922505550000039 ], [ -82.006088649999981, 28.922442256000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006088649999981, 28.922442256000068 ], [ -82.006110679999949, 28.922405250000054 ], [ -82.006147732999978, 28.922371765000037 ], [ -82.006175773999985, 28.922352380000063 ], [ -82.006212197999957, 28.922334800000044 ], [ -82.006240868999953, 28.922325944000079 ], [ -82.006276922999973, 28.922322418000078 ], [ -82.006350030999954, 28.922324177000064 ], [ -82.006696833999968, 28.922379091000039 ], [ -82.006936450999945, 28.922410740000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005696732999979, 28.922286449000069 ], [ -82.006088649999981, 28.922442256000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006840333999946, 28.922872122000058 ], [ -82.006936450999945, 28.922410740000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008440308, 28.922638355000061 ], [ -82.008562373999951, 28.922648478000042 ], [ -82.008825730999945, 28.922658149000029 ], [ -82.009068776999982, 28.922668790000046 ], [ -82.009242074999975, 28.922673935000034 ], [ -82.00943041499994, 28.92268457800003 ], [ -82.009627939999973, 28.922692816000051 ], [ -82.009876840999937, 28.922704558000078 ], [ -82.00991690099994, 28.922716010000045 ], [ -82.009956170999942, 28.922738170000059 ], [ -82.009990743999936, 28.922763867000072 ], [ -82.010020063999946, 28.922789044000069 ], [ -82.010053079999977, 28.922835551000048 ], [ -82.010065595999947, 28.92288529800004 ], [ -82.010065606999945, 28.923002870000062 ], [ -82.010068747999981, 28.923157913000068 ], [ -82.010065635999979, 28.923302299000056 ], [ -82.010065649999945, 28.923449436000055 ], [ -82.01007171599997, 28.923548100000062 ], [ -82.010082522999937, 28.923633136000035 ], [ -82.010112472999936, 28.923730393000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057878442999936, 28.856760780000059 ], [ -82.057878839999944, 28.857478095000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01626996899995, 28.898277442000051 ], [ -82.015453893999961, 28.898555443000078 ], [ -82.014710560999958, 28.898788664000051 ], [ -82.014430889999971, 28.898881618000075 ], [ -82.014288197999974, 28.898919306000039 ], [ -82.014165480999964, 28.898934387000054 ], [ -82.014048469999977, 28.89894193400005 ], [ -82.013937167999984, 28.898944457000027 ], [ -82.013874378999958, 28.898931907000076 ], [ -82.013837274999958, 28.898906795000073 ], [ -82.013785896999934, 28.898859083000048 ], [ -82.013685997999971, 28.898766170000044 ], [ -82.013588953999943, 28.898688324000034 ], [ -82.013460515999952, 28.898605460000056 ], [ -82.013406285999963, 28.898560260000068 ], [ -82.013372032999939, 28.898515057000054 ], [ -82.01332636099994, 28.898439718000077 ], [ -82.013260694999985, 28.898228762000031 ], [ -82.013169330999972, 28.897932420000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133316190999949, 28.878875336000078 ], [ -82.133501731999957, 28.878741842000068 ], [ -82.133628862999956, 28.878670993000071 ], [ -82.133759377, 28.878626662000045 ], [ -82.133930985999939, 28.878601377000052 ], [ -82.13401117799998, 28.878601298000035 ], [ -82.134093050999979, 28.87860856900005 ], [ -82.134173268999973, 28.878627605000077 ], [ -82.135082228999977, 28.878905987000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.077500237999971, 28.894480145000045 ], [ -82.077311785999939, 28.89448025300004 ], [ -82.07702601799997, 28.894480707000071 ], [ -82.076898141999948, 28.894480780000038 ], [ -82.075487889999977, 28.89446012600007 ], [ -82.074608732999934, 28.894450066000047 ], [ -82.072398847999978, 28.894419620000065 ], [ -82.072189036999987, 28.894398632000048 ], [ -82.072043158999975, 28.89437233600006 ], [ -82.07190127299998, 28.894337245000031 ], [ -82.071763378999947, 28.894298633000062 ], [ -82.07162148499998, 28.894251233000034 ], [ -82.071487574999935, 28.894195036000042 ], [ -82.071355657999959, 28.894128288000047 ], [ -82.071231727999987, 28.89405626100006 ], [ -82.071105793999948, 28.893973684000059 ], [ -82.070995840999956, 28.893884065000066 ], [ -82.070875884999964, 28.893776867000042 ], [ -82.070789906999948, 28.893687237000051 ], [ -82.070695923999949, 28.893576508000024 ], [ -82.07061792899998, 28.893472805000044 ], [ -82.070559919999937, 28.893374366000046 ], [ -82.070501911999941, 28.893281204000061 ], [ -82.070455501999959, 28.893190386000072 ], [ -82.070420197999965, 28.893108620000078 ], [ -82.07039131099998, 28.893040950000056 ], [ -82.070370034999939, 28.892982557000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070370034999939, 28.892982557000039 ], [ -82.07031742099997, 28.892767433000074 ], [ -82.070298083999944, 28.892603872000052 ], [ -82.070293903999982, 28.892346534000069 ], [ -82.070303189999947, 28.890907394000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070370034999939, 28.892982557000039 ], [ -82.070324478999964, 28.89299862200005 ], [ -82.070298700999956, 28.893061458000034 ], [ -82.070288099999971, 28.893105573000071 ], [ -82.070275737999964, 28.893175768000049 ], [ -82.070271096999988, 28.893652503000055 ], [ -82.070271562999949, 28.894344669000077 ], [ -82.070277704999967, 28.894548089000068 ], [ -82.070269420999978, 28.895620686000029 ], [ -82.070258996999939, 28.896425228000055 ], [ -82.070249874999945, 28.897155657000042 ], [ -82.070250681999937, 28.898354230000052 ], [ -82.070253966999985, 28.899419680000051 ], [ -82.070233001999952, 28.900655499000038 ], [ -82.070227335999959, 28.90176100900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959816591999981, 28.946497181000041 ], [ -81.959923442, 28.946957454000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959897694999938, 28.945207727000025 ], [ -81.959822240999983, 28.945255938000059 ], [ -81.959763547999955, 28.945317550000027 ], [ -81.959718732999988, 28.945379446000061 ], [ -81.959686719, 28.945442424000078 ], [ -81.959654883999974, 28.945531321000033 ], [ -81.959625208999967, 28.945654072000025 ], [ -81.959621349999964, 28.945704724000052 ], [ -81.959626450999963, 28.945750877000023 ], [ -81.959676288999958, 28.945977861000074 ], [ -81.959816591999981, 28.946497181000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143870370999934, 28.800278805000062 ], [ -82.143880810999974, 28.80323977300003 ], [ -82.143866650999939, 28.804632598000069 ], [ -82.143857337999975, 28.804671799000062 ], [ -82.143838652999989, 28.804708604000041 ], [ -82.143811375999974, 28.804740948000074 ], [ -82.143777065999984, 28.804767112000036 ], [ -82.143746057999977, 28.804782959000079 ], [ -82.143132295999976, 28.805000491000044 ], [ -82.14309895599996, 28.805012278000049 ], [ -82.143080267999949, 28.805016650000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141355779999969, 28.800303352000071 ], [ -82.14302596899995, 28.800294295000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14302596899995, 28.800294295000072 ], [ -82.143004478999956, 28.801783509000074 ], [ -82.143009115999973, 28.803312548000065 ], [ -82.143031435999944, 28.804724813000064 ], [ -82.143038718999946, 28.804870336000079 ], [ -82.143044026999974, 28.804906394000056 ], [ -82.143056599999966, 28.804935934000071 ], [ -82.143065711999952, 28.804957986000034 ], [ -82.143073563999963, 28.804984190000027 ], [ -82.143080267999949, 28.805016650000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14302596899995, 28.800294295000072 ], [ -82.143870370999934, 28.800278805000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140370173999941, 28.80365583300005 ], [ -82.140228003999937, 28.804565324000066 ], [ -82.140146460999972, 28.805063864000033 ], [ -82.140072551999936, 28.805552291000026 ], [ -82.140025535999939, 28.805639621000068 ], [ -82.139994330999968, 28.805674775000057 ], [ -82.139960951999967, 28.805696641000054 ], [ -82.139927561999968, 28.805709965000062 ], [ -82.139900630999989, 28.80571853500004 ], [ -82.139877511999941, 28.805725003000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139014716999952, 28.793168618000038 ], [ -82.139014165999981, 28.793336390000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133856499999979, 28.793362239000032 ], [ -82.134564971999964, 28.793350013000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134958332999986, 28.802269404000072 ], [ -82.134971375999953, 28.802356262000046 ], [ -82.135002011999973, 28.802393279000057 ], [ -82.135046057999944, 28.802450490000069 ], [ -82.13509776099994, 28.802516113000024 ], [ -82.135162880999985, 28.802606982000043 ], [ -82.135206943999947, 28.802677665000033 ], [ -82.135249094999949, 28.802748349000069 ], [ -82.135285561999979, 28.80285777000006 ], [ -82.135302869999975, 28.802936899000031 ], [ -82.135314407999942, 28.802989091000029 ], [ -82.135337455999945, 28.803071584000065 ], [ -82.135360486999957, 28.803140602000042 ], [ -82.135379664999959, 28.803186050000079 ], [ -82.135394998999971, 28.803216346000056 ], [ -82.135410328999967, 28.80324495800005 ], [ -82.135427562999951, 28.803265149000026 ], [ -82.13544670999994, 28.803287021000074 ], [ -82.135479253999961, 28.803320669000072 ], [ -82.135521347999941, 28.803345885000056 ], [ -82.135553870999956, 28.803364376000047 ], [ -82.135594061999939, 28.803386058000058 ], [ -82.135617149999973, 28.803392811000037 ], [ -82.135644625999987, 28.803392784000039 ], [ -82.135678684999959, 28.803384036000068 ], [ -82.135714228999973, 28.803367678000029 ], [ -82.135754604999988, 28.803328072000056 ], [ -82.13581321199996, 28.803269986000032 ], [ -82.135864856999945, 28.803217335000056 ], [ -82.135892919999947, 28.803187397000045 ], [ -82.135920201999966, 28.803157117000069 ], [ -82.135934425999949, 28.803140258000042 ], [ -82.136026408999953, 28.803042188000063 ], [ -82.136059364999937, 28.803023246000066 ], [ -82.136096428999963, 28.803012208000041 ], [ -82.136135649999972, 28.803009418000045 ], [ -82.136174296999968, 28.803015223000045 ], [ -82.136300251999955, 28.803143170000055 ], [ -82.136322280999934, 28.80317928900007 ], [ -82.136344313999984, 28.803219280000064 ], [ -82.13635316899996, 28.80326702800005 ], [ -82.136342972999955, 28.803316087000042 ], [ -82.136325437999972, 28.803353536000031 ], [ -82.13630057599994, 28.80339228400004 ], [ -82.136218209999981, 28.803468285000065 ], [ -82.13615217499995, 28.803560828000059 ], [ -82.13611601599996, 28.803667093000058 ], [ -82.136128864999989, 28.803756663000058 ], [ -82.136144570999988, 28.803813440000056 ], [ -82.136172, 28.803871926000056 ], [ -82.136246426999946, 28.804009531000077 ], [ -82.136342239999976, 28.804151942000033 ], [ -82.136547661999941, 28.804394444000025 ], [ -82.136811638999973, 28.804659763000075 ], [ -82.136867137999957, 28.804701807000072 ], [ -82.136928361999935, 28.804735425000047 ], [ -82.137033575999965, 28.804782468000042 ], [ -82.137108159999968, 28.80479923200005 ], [ -82.137215252999965, 28.804821016000062 ], [ -82.137460386999976, 28.804838717000052 ], [ -82.137657278999939, 28.804825109000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135710997, 28.800317076000056 ], [ -82.135522209999976, 28.80068731700004 ], [ -82.135317708999935, 28.801104726000062 ], [ -82.135194771999977, 28.801393650000023 ], [ -82.135012935999953, 28.801893892000066 ], [ -82.134974751999948, 28.802112711000063 ], [ -82.134958332999986, 28.802269404000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134909643999947, 28.800268275000064 ], [ -82.134944273999963, 28.800276954000026 ], [ -82.135061757999949, 28.800296984000056 ], [ -82.135200868999959, 28.800309369000047 ], [ -82.135420661999945, 28.800317359000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133702347999986, 28.799311799000066 ], [ -82.133751704999952, 28.799413647000051 ], [ -82.133808439999939, 28.799511154000072 ], [ -82.133860226999957, 28.799589153000056 ], [ -82.133924327999978, 28.799671475000025 ], [ -82.134000743999934, 28.799762456000053 ], [ -82.134087000999955, 28.799849092000045 ], [ -82.134151065999959, 28.799903230000041 ], [ -82.134232860999987, 28.799964721000038 ], [ -82.134422049999955, 28.800089412000034 ], [ -82.134534358999986, 28.800144803000023 ], [ -82.134654534999981, 28.800193246000049 ], [ -82.134768788999963, 28.800231290000056 ], [ -82.134909643999947, 28.800268275000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133842451999953, 28.801089022000042 ], [ -82.134091543999943, 28.800944299000037 ], [ -82.134629448999988, 28.800592191000078 ], [ -82.134725832999948, 28.800514046000046 ], [ -82.134794678999981, 28.800458475000028 ], [ -82.134849688999964, 28.80036302600007 ], [ -82.134909643999947, 28.800268275000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014535335999938, 28.91930596900005 ], [ -82.014633247999939, 28.919242281000038 ], [ -82.014797142999953, 28.919141127000046 ], [ -82.014920594999978, 28.919060581000053 ], [ -82.01497593299996, 28.919010007000054 ], [ -82.015007856999944, 28.918965054000068 ], [ -82.015024876999973, 28.91889575700003 ], [ -82.015025926999954, 28.918857671000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015025926999954, 28.918857671000069 ], [ -82.015026992999935, 28.918818970000075 ], [ -82.015022725999984, 28.918736563000039 ], [ -82.015005667999958, 28.918538041000033 ], [ -82.015012040999977, 28.918451889000039 ], [ -82.015035442999988, 28.918360115000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015025926999954, 28.918857671000069 ], [ -82.015220050999972, 28.91885153000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958224020999978, 28.937515473000076 ], [ -81.958232812999938, 28.937520977000077 ], [ -81.95824179899995, 28.937526480000031 ], [ -81.958250785999951, 28.937531640000032 ], [ -81.958259966999947, 28.937536799000043 ], [ -81.958269344999962, 28.937541959000043 ], [ -81.958278721999989, 28.937546774000054 ], [ -81.958288098999958, 28.937551590000055 ], [ -81.958297672999947, 28.937556061000066 ], [ -81.958307245999947, 28.937560534000056 ], [ -81.958317014999977, 28.937565006000057 ], [ -81.958326782999961, 28.937569134000057 ], [ -81.958336745999986, 28.937572919000047 ], [ -81.958346709999944, 28.937576703000047 ], [ -81.958356672999969, 28.937580488000037 ], [ -81.958366832999957, 28.937583929000027 ], [ -81.958376992999945, 28.937587370000074 ], [ -81.958387151999943, 28.937590810000074 ], [ -81.958397506999972, 28.937593907000064 ], [ -81.958407861999945, 28.937596661000043 ], [ -81.958418412999947, 28.937599414000033 ], [ -81.958428767999976, 28.937601825000058 ], [ -81.958439318999979, 28.937604578000048 ], [ -81.958449870999971, 28.937606644000027 ], [ -81.958460615999968, 28.937608710000063 ], [ -81.958471166999971, 28.937610776000042 ], [ -81.958481912999957, 28.937612498000078 ], [ -81.958492658999944, 28.937614220000057 ], [ -81.958503405999977, 28.937615599000026 ], [ -81.958514152999953, 28.937616977000062 ], [ -81.95852489899994, 28.93761801100004 ], [ -81.958535842999936, 28.937618702000066 ], [ -81.958566840999936, 28.937622994000037 ], [ -81.958586389999937, 28.937623819000066 ], [ -81.958602214999985, 28.93762382400007 ], [ -81.95867203499995, 28.937625483000033 ], [ -81.958726231999947, 28.937621881000041 ], [ -81.958798472999945, 28.937611093000044 ], [ -81.958905759999936, 28.937589467000066 ], [ -81.959073412999942, 28.937550302000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957997277999937, 28.93720926900005 ], [ -81.958006572999977, 28.937245305000033 ], [ -81.958016799999939, 28.93727560800005 ], [ -81.958029820999968, 28.937305911000067 ], [ -81.958046564999961, 28.937337853000031 ], [ -81.958062380999934, 28.937359969000056 ], [ -81.958076337999955, 28.937379627000041 ], [ -81.95809866899998, 28.937407477000079 ], [ -81.958125653999957, 28.937437784000053 ], [ -81.958145194999986, 28.937458264000043 ], [ -81.958181435999961, 28.937485551000066 ], [ -81.958189836999964, 28.937491742000077 ], [ -81.958198235999987, 28.937497933000031 ], [ -81.958206635999943, 28.937503780000043 ], [ -81.958215231999986, 28.937509626000065 ], [ -81.958224020999978, 28.937515473000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120580192999967, 28.785612442000058 ], [ -82.120657505999986, 28.785631798000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121932131999984, 28.790501047000078 ], [ -82.122318084999961, 28.791163513000072 ], [ -82.122366722999971, 28.791222686000026 ], [ -82.12260699899997, 28.791579751000029 ], [ -82.122652850999941, 28.791631573000075 ], [ -82.12270523899997, 28.791677626000023 ], [ -82.122742327999958, 28.791694879000033 ], [ -82.122796871999981, 28.791719801000056 ], [ -82.122886309999956, 28.791750454000066 ], [ -82.122938655999974, 28.791761932000043 ], [ -82.12299754199995, 28.791771483000048 ], [ -82.123086950999948, 28.791777164000052 ], [ -82.123167629999955, 28.791775169000061 ], [ -82.123252659999935, 28.791765488000067 ], [ -82.123334975999967, 28.791739385000028 ], [ -82.123409353999989, 28.791715042000078 ], [ -82.123468582999976, 28.79169799400006 ], [ -82.123563610999952, 28.791657851000025 ], [ -82.123682085999974, 28.791637108000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123682085999974, 28.791637108000032 ], [ -82.123861216999956, 28.791639371000031 ], [ -82.124006251999958, 28.791679065000039 ], [ -82.124125224999943, 28.791721895000023 ], [ -82.12423943999994, 28.791805176000025 ], [ -82.124282269999981, 28.791867042000035 ], [ -82.124320340999986, 28.791933667000023 ], [ -82.124372688999983, 28.792169234000028 ], [ -82.124413139999945, 28.79228820700007 ], [ -82.124483232999978, 28.792392484000061 ], [ -82.124529069999937, 28.792430859000035 ], [ -82.124625047999984, 28.792457662000061 ], [ -82.124744998999972, 28.792474839000079 ], [ -82.12487153099994, 28.79252466500003 ], [ -82.124936960999946, 28.792536131000077 ], [ -82.124980595999943, 28.792557219000059 ], [ -82.125063496999985, 28.792589797000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122589033999986, 28.790140256000029 ], [ -82.123067297999967, 28.789870543000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122343306999937, 28.79024929600007 ], [ -82.122589033999986, 28.790140256000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122589033999986, 28.790140256000029 ], [ -82.122900993999963, 28.790615788000025 ], [ -82.123143902999971, 28.790955436000047 ], [ -82.123625506999986, 28.791565545000026 ], [ -82.123682085999974, 28.791637108000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119830811999975, 28.786547275000032 ], [ -82.119872689999966, 28.786531095000043 ], [ -82.119932652999978, 28.786525384000072 ], [ -82.120013554999957, 28.786524432000078 ], [ -82.120581864999963, 28.786536805000026 ], [ -82.120704906999947, 28.786524670000063 ], [ -82.120729295999979, 28.786523480000028 ], [ -82.120761656999946, 28.786524432000078 ], [ -82.12078545199995, 28.786520625000037 ], [ -82.120809245999965, 28.786512059000074 ], [ -82.120829233999984, 28.786493975000042 ], [ -82.120843510999975, 28.786477795000053 ], [ -82.12085588399998, 28.786463518000062 ], [ -82.120871111999975, 28.786451145000058 ], [ -82.120883321999941, 28.786437785000032 ], [ -82.121119266999983, 28.786138826000069 ], [ -82.121167420999939, 28.78610406100006 ], [ -82.121239938999963, 28.786046584000076 ], [ -82.121318705999954, 28.785995633000027 ], [ -82.121402946999979, 28.785951897000075 ], [ -82.121564408999973, 28.785880070000076 ], [ -82.121876747999977, 28.785757347000072 ], [ -82.122166516999982, 28.785679620000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126647813999966, 28.77483455600003 ], [ -82.126804209999989, 28.774848188000078 ], [ -82.128978094, 28.77501422000006 ], [ -82.132460401999936, 28.775277022000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118481086999964, 28.770424820000073 ], [ -82.118485575999955, 28.770666217000041 ], [ -82.118483508999986, 28.770703358000048 ], [ -82.118465623999953, 28.770724415000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114963460999945, 28.770712995000054 ], [ -82.114976591999948, 28.770721244000072 ], [ -82.115254788999948, 28.77072286300006 ], [ -82.115838568999948, 28.770716793000076 ], [ -82.116245337999942, 28.77072944300005 ], [ -82.117528843999935, 28.770745045000069 ], [ -82.118426644999943, 28.770736834000047 ], [ -82.118464567, 28.77072565800006 ], [ -82.118465623999953, 28.770724415000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116015110999967, 28.770890259000055 ], [ -82.116620637999972, 28.770872451000059 ], [ -82.117510062999941, 28.770865771000047 ], [ -82.117771887999936, 28.770879576000027 ], [ -82.117869377999966, 28.77089341900006 ], [ -82.117933027999982, 28.770916494000062 ], [ -82.11798272599998, 28.77095367000004 ], [ -82.118017023999982, 28.770998903000077 ], [ -82.118065248999983, 28.771165585000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003740716999971, 28.924002554000026 ], [ -82.003696561999959, 28.923856894000039 ], [ -82.003605841999956, 28.923592401000064 ], [ -82.003486614999986, 28.923270906000027 ], [ -82.003351835999979, 28.922972212000047 ], [ -82.003222243999971, 28.922698598000068 ], [ -82.003015810999955, 28.922323777000031 ], [ -82.003001214999983, 28.922300429000074 ], [ -82.002993605999961, 28.922282486000029 ], [ -82.002987944999973, 28.922265405000076 ], [ -82.002978653999946, 28.922226882000075 ], [ -82.002974672999983, 28.922194193000053 ], [ -82.002978651999967, 28.922162673000059 ], [ -82.002982633999977, 28.922142827000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004045687999962, 28.927141831000029 ], [ -82.004042812999955, 28.926904351000076 ], [ -82.004042802999948, 28.926656273000049 ], [ -82.004044455999974, 28.926539529000024 ], [ -82.004044452999949, 28.92644759500007 ], [ -82.004042789999971, 28.926322096000035 ], [ -82.004044441999952, 28.926174709000065 ], [ -82.004042776999938, 28.925986460000047 ], [ -82.004041333999965, 28.925845159000062 ], [ -82.004029491999972, 28.925614343000063 ], [ -82.00400243699994, 28.925309330000061 ], [ -82.003976510999962, 28.925079037000046 ], [ -82.003955008999981, 28.924950033000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008619274999944, 28.925777933000063 ], [ -82.008619346999978, 28.92572371600005 ], [ -82.008617149999964, 28.925423867000063 ], [ -82.008589347999987, 28.925237465000066 ], [ -82.008544140999959, 28.925114926000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008618866999939, 28.926085013000034 ], [ -82.008731660999956, 28.926083776000041 ], [ -82.009307532999969, 28.926088181000068 ], [ -82.009783383999945, 28.926092591000042 ], [ -82.010028887999965, 28.926094351000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964865980999946, 28.922276271000044 ], [ -81.964674219999949, 28.922298073000036 ], [ -81.964627788999962, 28.922311034000074 ], [ -81.964575643999979, 28.922332097000037 ], [ -81.964533357999983, 28.922363081000071 ], [ -81.964503753999963, 28.922394067000027 ], [ -81.964475555999968, 28.922438692000071 ], [ -81.964455813999962, 28.922479600000031 ], [ -81.96444734499994, 28.922516791000078 ], [ -81.964443104999987, 28.922555223000074 ], [ -81.964444500999946, 28.922594896000078 ], [ -81.964458259999958, 28.922654024000053 ], [ -81.964540657999976, 28.922851536000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963992648999977, 28.940624926000055 ], [ -81.964600771999983, 28.940587717000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000697847999959, 28.951709830000027 ], [ -82.000686363999989, 28.951513902000045 ], [ -82.000676000999988, 28.951279236000062 ], [ -82.00067341, 28.951083303000075 ], [ -82.000673407999955, 28.950830412000073 ], [ -82.00068635699995, 28.950418039000056 ], [ -82.000710995999953, 28.950021237000044 ], [ -82.00073833099998, 28.949780799000052 ], [ -82.000771830999952, 28.949561395000046 ], [ -82.000816429999986, 28.949279315000069 ], [ -82.000871099999983, 28.949021703000028 ], [ -82.000917959999981, 28.948801875000072 ], [ -82.000988248999988, 28.948513350000042 ], [ -82.001033435999943, 28.948347059000071 ], [ -82.001059336999958, 28.948196691000078 ], [ -82.001087826999935, 28.948021261000065 ], [ -82.001105956999936, 28.947807101000024 ], [ -82.001124084999958, 28.947542817000055 ], [ -82.001124082999979, 28.94738333600003 ], [ -82.001116310999976, 28.947187402000054 ], [ -82.001100767999958, 28.947037035000051 ], [ -82.001080043999934, 28.946841100000029 ], [ -82.001059320999957, 28.946690733000025 ], [ -82.001025646999949, 28.946524416000045 ], [ -82.000986792999981, 28.946364936000066 ], [ -82.000953118999973, 28.946253299000034 ], [ -82.000914264999949, 28.946118879000039 ], [ -82.000867640999957, 28.945991294000066 ], [ -82.000815835999958, 28.945827257000076 ], [ -82.000684724999985, 28.945435791000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000684724999985, 28.945435791000079 ], [ -82.000950757999988, 28.945372969000061 ], [ -82.001322132999974, 28.94527402600005 ], [ -82.00167922299994, 28.945173511000064 ], [ -82.00202029999997, 28.945094078000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002335098999936, 28.959883436000041 ], [ -82.002312112999959, 28.959809626000037 ], [ -82.001803575999986, 28.95735952800004 ], [ -82.001780382999982, 28.957238606000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001780383999971, 28.957238606000033 ], [ -82.001313449999941, 28.954996152000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001178377999963, 28.957421131000046 ], [ -82.00153796099994, 28.957325172000026 ], [ -82.001651243999959, 28.957262943000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001172204999989, 28.955020734000072 ], [ -82.001466376999986, 28.956415615000026 ], [ -82.001562244999946, 28.956852258000026 ], [ -82.001651243999959, 28.957262943000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001651243999959, 28.957262943000046 ], [ -82.001776151999934, 28.957950876000041 ], [ -82.002035818999957, 28.959188976000064 ], [ -82.002187507999963, 28.959886340000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999633438999979, 28.958081177000054 ], [ -81.999704866999934, 28.958070182000029 ], [ -81.999809680999988, 28.958048022000071 ], [ -81.999921429999972, 28.958018537000044 ], [ -82.000024503999953, 28.957980666000026 ], [ -82.000110215999939, 28.957941403000063 ], [ -82.000217561999989, 28.957887496000069 ], [ -82.000301371999967, 28.95783999300005 ], [ -82.00037587099996, 28.957794128000046 ], [ -82.000456635999967, 28.957729387000029 ], [ -82.000558419999948, 28.957655574000057 ], [ -82.00066555899997, 28.95758647200006 ], [ -82.000813716999971, 28.957500478000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998744220999981, 28.958001865000028 ], [ -81.998867272999973, 28.958020172000033 ], [ -81.998922739999955, 28.958032487000025 ], [ -81.999022736999962, 28.95805447500004 ], [ -81.999104877999969, 28.958073321000029 ], [ -81.999197733999949, 28.958084315000065 ], [ -81.999281659999951, 28.958093738000059 ], [ -81.999363802999937, 28.958100021000064 ], [ -81.999448361999953, 28.958100438000031 ], [ -81.999528084999952, 28.958093740000038 ], [ -81.999633438999979, 28.958081177000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999633438999979, 28.958081177000054 ], [ -81.999662010999941, 28.958274346000053 ], [ -81.99966686099998, 28.95833533800004 ], [ -81.999676294999972, 28.95839370300007 ], [ -81.999683436999987, 28.958456522000063 ], [ -81.999692657999958, 28.958530259000042 ], [ -81.999700476999976, 28.95859592000005 ], [ -81.999706143999958, 28.958694584000057 ], [ -81.999709856999971, 28.958825905000026 ], [ -81.999711028999968, 28.958942788000058 ], [ -81.999704969999982, 28.959031140000036 ], [ -81.999705948999974, 28.959139771000025 ], [ -81.999712992999946, 28.959401286000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007802796999954, 28.955534999000065 ], [ -82.007428224999956, 28.955738353000072 ], [ -82.006568011999946, 28.956246253000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006798413999945, 28.957502859000044 ], [ -82.006828396999936, 28.957482218000052 ], [ -82.006864898999936, 28.957455846000073 ], [ -82.006909219999955, 28.957426033000047 ], [ -82.006948327999964, 28.957399659000032 ], [ -82.006986132999941, 28.957366406000062 ], [ -82.007007985999962, 28.957333544000051 ], [ -82.007022800999948, 28.957300172000032 ], [ -82.007028977999937, 28.95727191900005 ], [ -82.007027841999957, 28.957234550000067 ], [ -82.007018713999969, 28.957200152000041 ], [ -82.007000458999983, 28.957150851000051 ], [ -82.006974380999964, 28.957090084000072 ], [ -82.006947000999958, 28.95703390400007 ], [ -82.006905276999987, 28.956946767000034 ], [ -82.006860945999961, 28.956852750000053 ], [ -82.006814525999971, 28.956760655000039 ], [ -82.006776158999969, 28.95667631200007 ], [ -82.006739710999966, 28.956600402000049 ], [ -82.006568011999946, 28.956246253000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005345344999967, 28.956811641000058 ], [ -82.00511479499994, 28.956863977000069 ], [ -82.004932936999978, 28.956909186000075 ], [ -82.004742729999975, 28.956959811000047 ], [ -82.004636499999947, 28.956985852000059 ], [ -82.004559873999938, 28.957002704000047 ], [ -82.004501516999937, 28.957016623000072 ], [ -82.004413975999967, 28.957035873000052 ], [ -82.004302134999989, 28.957057852000048 ], [ -82.004175671999974, 28.957080792000056 ], [ -82.004061381999975, 28.957102183000075 ], [ -82.003939799999955, 28.957123573000047 ], [ -82.003806055999974, 28.957140687000049 ], [ -82.003677176999986, 28.957157799000072 ], [ -82.003555480999978, 28.95716821700006 ], [ -82.003425318999973, 28.957182316000058 ], [ -82.003297073999988, 28.957192090000035 ], [ -82.003208256999983, 28.957198984000058 ], [ -82.00310245999998, 28.957203583000023 ], [ -82.003012337999962, 28.957208179000077 ], [ -82.00293527599996, 28.957215073000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982518837999976, 28.907426351000026 ], [ -81.982612230999962, 28.907477583000059 ], [ -81.982651673999953, 28.907514228000025 ], [ -81.982695496999952, 28.907568228000059 ], [ -81.982743696999989, 28.907647299000075 ], [ -81.982800655999938, 28.907778439000026 ], [ -81.982879519999983, 28.907980932000044 ], [ -81.982934287999967, 28.908108214000038 ], [ -81.982991252999966, 28.908212355000046 ], [ -81.983092040999964, 28.908370497000078 ], [ -81.983184065999978, 28.908497784000076 ], [ -81.983278287999951, 28.908600001000025 ], [ -81.983376892999956, 28.908698362000052 ], [ -81.983466736999958, 28.908775510000055 ], [ -81.983501796999974, 28.90880444000004 ], [ -81.983620127999984, 28.908900875000029 ], [ -81.983703399999968, 28.908962595000048 ], [ -81.983852412999966, 28.909060961000023 ], [ -81.983979513999941, 28.909136184000033 ], [ -81.984124754999982, 28.909210253000026 ], [ -81.984278335999988, 28.909276111000054 ], [ -81.98441354199997, 28.909324641000069 ], [ -81.984601893999979, 28.909383093000031 ], [ -81.984807897999985, 28.909425541000076 ], [ -81.984990696999944, 28.909445658000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985114563999957, 28.90945675200004 ], [ -81.985226489999945, 28.909464157000059 ], [ -81.985384285999942, 28.909460317000025 ], [ -81.985680155999944, 28.909441064000077 ], [ -81.985899317999952, 28.909427589000074 ], [ -81.986394625999935, 28.909392928000045 ], [ -81.98699951499998, 28.909350563000032 ], [ -81.987376474999962, 28.90932360100004 ], [ -81.987613168999985, 28.909308195000051 ], [ -81.98813258499996, 28.90926967300004 ], [ -81.988623507999989, 28.909236934000035 ], [ -81.989136345999952, 28.909204192000061 ], [ -81.989537411999947, 28.909175299000026 ], [ -81.99001956799998, 28.909142552000048 ], [ -81.990222312999947, 28.909128794000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984684593999987, 28.910491639000043 ], [ -81.984717890999946, 28.910455302000059 ], [ -81.984766115999946, 28.910397455000066 ], [ -81.98481921299998, 28.910329391000062 ], [ -81.984864758999947, 28.910256692000075 ], [ -81.984917371999984, 28.910158348000039 ], [ -81.984962229999951, 28.910012476000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039344522999954, 28.95198318100006 ], [ -82.038852365999958, 28.949056576000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037682367999935, 28.941975070000069 ], [ -82.037557704999983, 28.941207870000028 ], [ -82.037459377999937, 28.940567913000052 ], [ -82.037377441999979, 28.940043007000043 ], [ -82.037279169999977, 28.939554058000056 ], [ -82.03721362999994, 28.939151390000063 ], [ -82.037156277999941, 28.938791865000042 ], [ -82.037139853999975, 28.93857614500007 ], [ -82.037114755999937, 28.938319737000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049526964999984, 28.945645488000025 ], [ -82.047204042999965, 28.945651883000039 ], [ -82.045365749999974, 28.945649351000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040738158999943, 28.933573830000057 ], [ -82.040563992999978, 28.933573883000065 ], [ -82.040165981999962, 28.933572366000078 ], [ -82.038095148999957, 28.933569327000043 ], [ -82.038037508999935, 28.933569344000034 ], [ -82.037483597999938, 28.933560618000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036605685999973, 28.934651283000051 ], [ -82.036834470999963, 28.934610306000025 ], [ -82.036973663999959, 28.934594893000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06215573999998, 28.810864024000068 ], [ -82.062111327999958, 28.810889633000045 ], [ -82.062059352999938, 28.810900460000028 ], [ -82.062018035999984, 28.810903512000039 ], [ -82.061987047999935, 28.810906559000045 ], [ -82.061911297999984, 28.810906594000073 ], [ -82.061504996999986, 28.810906779000049 ], [ -82.058729751999977, 28.810895884000047 ], [ -82.058254817999966, 28.810896494000076 ], [ -82.058188710999957, 28.81090299300007 ], [ -82.058144639999966, 28.810906246000059 ], [ -82.058115264999969, 28.810919198000079 ], [ -82.058107932999974, 28.810945080000067 ], [ -82.058096943999942, 28.810996841000076 ], [ -82.058104330999981, 28.811072047000039 ], [ -82.058105498999964, 28.812052047000066 ], [ -82.05809826899997, 28.812079316000052 ], [ -82.058075233999944, 28.812111812000069 ], [ -82.058055487, 28.812135605000037 ], [ -82.058040345999984, 28.81215127400003 ], [ -82.058020596999938, 28.812169267000058 ], [ -82.058000185999958, 28.812184359000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.085749592999946, 28.683002558000055 ], [ -82.085407895999936, 28.682987581000077 ], [ -82.084649866999939, 28.682980461000056 ], [ -82.084121531999983, 28.682960533000028 ], [ -82.083570229999964, 28.68294568400006 ], [ -82.083458242999939, 28.682938156000034 ], [ -82.082608310999944, 28.682903229000033 ], [ -82.082407313999965, 28.68289575600005 ], [ -82.082318301999976, 28.682893278000051 ], [ -82.082232165999983, 28.682895863000056 ], [ -82.08216613999997, 28.682913627000062 ], [ -82.082094379999944, 28.682944054000075 ], [ -82.082028370999979, 28.682984606000048 ], [ -82.081916453999952, 28.683065699000053 ], [ -82.081844713999942, 28.683121448000065 ], [ -82.081775853999943, 28.683184789000052 ], [ -82.081678287999978, 28.683263341000043 ], [ -82.081368442999974, 28.683592692000047 ], [ -82.081101607999983, 28.683848586000067 ], [ -82.080605189999972, 28.684269199000028 ], [ -82.080318265999949, 28.684542828000076 ], [ -82.080114531999982, 28.684717660000047 ], [ -82.079973964999965, 28.68488738800005 ], [ -82.079870371999959, 28.685034161000033 ], [ -82.079776098999957, 28.685226795000062 ], [ -82.079641376999973, 28.685533250000049 ], [ -82.079601283999978, 28.685672535000037 ], [ -82.079609994999942, 28.685801663000063 ], [ -82.079633122999951, 28.68600927600005 ], [ -82.079646195999942, 28.686208348000036 ], [ -82.079635776999964, 28.686670449000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10313722799998, 28.708759009000062 ], [ -82.101308318999941, 28.70874651500003 ], [ -82.100775448999968, 28.70875122800004 ], [ -82.100095941999939, 28.708730578000029 ], [ -82.100053439999954, 28.708727981000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100053439999954, 28.708727981000038 ], [ -82.100052134999942, 28.708727902000078 ], [ -82.099935074999962, 28.708616474000053 ], [ -82.099778981999975, 28.708481470000038 ], [ -82.099519171999987, 28.708299138000029 ], [ -82.099033554999949, 28.707998780000025 ], [ -82.098382046999973, 28.707605565000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087920295999936, 28.668430330000035 ], [ -82.087350255999979, 28.668430699000055 ], [ -82.084435420999966, 28.668458693000048 ], [ -82.084234643999935, 28.66851035600007 ], [ -82.084034991999943, 28.668611140000053 ], [ -82.083722767999973, 28.668818711000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957530095999971, 28.931048231000034 ], [ -81.957608543999982, 28.931014610000034 ], [ -81.957686991999935, 28.931000347000065 ], [ -81.957807210999988, 28.931003403000034 ], [ -81.957912384999986, 28.931025804000058 ], [ -81.958262470999955, 28.931128501000046 ], [ -81.958277708999958, 28.931133663000026 ], [ -81.958292556999936, 28.931139856000073 ], [ -81.958306230999938, 28.931147767000027 ], [ -81.958319122999967, 28.931156709000049 ], [ -81.958330841999953, 28.931166682000026 ], [ -81.958341389999987, 28.931177686000069 ], [ -81.958350371999984, 28.931189721000067 ], [ -81.958357985999953, 28.931202443000075 ], [ -81.958364038999946, 28.931215852000037 ], [ -81.958368526999948, 28.931229604000066 ], [ -81.958371256999953, 28.931243700000039 ], [ -81.958372228999963, 28.931258139000079 ], [ -81.958371635999981, 28.931272577000072 ], [ -81.958362782999984, 28.931425898000043 ], [ -81.95835806499997, 28.931496716000026 ], [ -81.958354317999977, 28.931581971000071 ], [ -81.958352531999935, 28.931652444000065 ], [ -81.958355653999945, 28.931687543000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964310378999983, 28.938273591000041 ], [ -81.964005095999937, 28.938309569000069 ], [ -81.963614788999962, 28.938346580000029 ], [ -81.96335634999997, 28.938348830000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96335634999997, 28.938348830000052 ], [ -81.963198124999963, 28.938344147000066 ], [ -81.96300826199996, 28.938313938000078 ], [ -81.962763030999952, 28.938251237000031 ], [ -81.962610599999948, 28.938201413000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000530058999971, 28.933021455000073 ], [ -82.000615796999966, 28.932905161000065 ], [ -82.000696599999969, 28.932808561000058 ], [ -82.000783142999978, 28.93271922200006 ], [ -82.000936936999949, 28.93257343700003 ], [ -82.001141460999975, 28.932438993000062 ], [ -82.001652775999958, 28.932086726000023 ], [ -82.002273277999961, 28.931673035000074 ], [ -82.003070928999989, 28.931135338000047 ], [ -82.003182805999984, 28.931060606000074 ], [ -82.003276036999978, 28.930989521000072 ], [ -82.003375482999957, 28.930905677000055 ], [ -82.003537828999981, 28.930758931000071 ], [ -82.003638597999952, 28.930655967000064 ], [ -82.003771911999934, 28.930493374000037 ], [ -82.003945214999987, 28.930242218000046 ], [ -82.004015651999964, 28.930121922000069 ], [ -82.00410059099994, 28.929939654000066 ], [ -82.004148235999935, 28.929799309000032 ], [ -82.004193809999947, 28.929606107000041 ], [ -82.004221635999954, 28.929338077000068 ], [ -82.004220725999971, 28.929181428000049 ], [ -82.004211298999962, 28.929047389000061 ], [ -82.004135753999947, 28.92850158400006 ], [ -82.004062562999934, 28.927964575000033 ], [ -82.004043969999941, 28.927744742000073 ], [ -82.00404662699998, 28.927466323000033 ], [ -82.004042962999961, 28.927269466000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00023063499998, 28.941913967000062 ], [ -82.000230642999952, 28.941911625000046 ], [ -82.000230444999943, 28.941174506000038 ], [ -82.000230443999953, 28.940809976000025 ], [ -82.000232514999936, 28.940503772000056 ], [ -82.000238446999958, 28.939524423000023 ], [ -82.000234541999987, 28.939050417000033 ], [ -82.000238442999944, 28.937858533000053 ], [ -82.000244298999974, 28.936788584000055 ], [ -82.000245834999987, 28.936540432000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003903666999975, 28.927267658000062 ], [ -82.00390896, 28.92753850400004 ], [ -82.003908969999941, 28.927784561000067 ], [ -82.003890848999959, 28.927975939000078 ], [ -82.003867545999981, 28.928112639000062 ], [ -82.003754560999937, 28.929013759000043 ], [ -82.003738096999939, 28.92918344800006 ], [ -82.003740697999945, 28.929486463000046 ], [ -82.003738120999969, 28.929857827000035 ], [ -82.003727766999987, 28.929985413000054 ], [ -82.003704462999963, 28.930099329000029 ], [ -82.003678568999987, 28.93021096700005 ], [ -82.003631956999982, 28.930327162000026 ], [ -82.003559447999976, 28.930470698000079 ], [ -82.003468809999958, 28.930609677000064 ], [ -82.003388528999949, 28.93070764600003 ], [ -82.003311251999946, 28.930787207000037 ], [ -82.003240914999935, 28.930848905000062 ], [ -82.003173580999942, 28.930908143000067 ], [ -82.003099929999962, 28.930960363000054 ], [ -82.003017057999955, 28.931016867000039 ], [ -82.002927554999985, 28.931079021000073 ], [ -82.002704835999964, 28.931227117000049 ], [ -82.002280111999937, 28.931509634000065 ], [ -82.001902001999952, 28.931764810000061 ], [ -82.001710357999968, 28.931887842000037 ], [ -82.001285628999938, 28.93217491300004 ], [ -82.000995567999951, 28.932375407000052 ], [ -82.000845358999982, 28.932482489000051 ], [ -82.000759893999941, 28.932553116000065 ], [ -82.000604504999956, 28.932708043000048 ], [ -82.000498321999942, 28.932840185000032 ], [ -82.000402043999941, 28.932976740000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000556560999939, 28.945511879000037 ], [ -82.000576733999935, 28.945578764000061 ], [ -82.000693294999962, 28.945909118000031 ], [ -82.000790427999959, 28.946173969000029 ], [ -82.00083899599997, 28.946336299000052 ], [ -82.000894039999935, 28.946547041000031 ], [ -82.000932894999949, 28.946766327000034 ], [ -82.000955558999976, 28.946925809000049 ], [ -82.000971750999952, 28.947073898000042 ], [ -82.000981465999985, 28.947259010000039 ], [ -82.000981466999974, 28.947398557000042 ], [ -82.000984704999951, 28.947475449000024 ], [ -82.000981468999953, 28.947580820000042 ], [ -82.000978230999976, 28.947683344000041 ], [ -82.000968519999958, 28.947785868000039 ], [ -82.000962043999948, 28.947899783000025 ], [ -82.000949093999964, 28.948002307000024 ], [ -82.000916716999939, 28.948201658000073 ], [ -82.000887578999937, 28.948352597000053 ], [ -82.000858439999945, 28.948483599000042 ], [ -82.000793685999952, 28.948722821000047 ], [ -82.000728931999959, 28.94904178400003 ], [ -82.000686840999947, 28.949241135000079 ], [ -82.000660939999989, 28.94939207300007 ], [ -82.000635037999984, 28.949557250000055 ], [ -82.00060265999997, 28.949765146000061 ], [ -82.000579997999978, 28.950001519000068 ], [ -82.000560571999983, 28.950237893000065 ], [ -82.000547621999942, 28.950442941000063 ], [ -82.000537906999966, 28.950591030000055 ], [ -82.000534671999958, 28.950767599000073 ], [ -82.000531434999971, 28.95095271100007 ], [ -82.000534673999937, 28.951177693000034 ], [ -82.000541150999936, 28.95135711000006 ], [ -82.000554103999946, 28.951633354000023 ], [ -82.000560579999956, 28.951718790000029 ], [ -82.000561313999981, 28.951726283000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000053205999961, 28.932689819000075 ], [ -82.000096626999948, 28.932739476000052 ], [ -82.000145474999954, 28.932795816000066 ], [ -82.000212776999945, 28.932858843000076 ], [ -82.000295276999964, 28.932916139000042 ], [ -82.000402043999941, 28.932976740000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990670785999953, 28.656033035000064 ], [ -81.990674017999936, 28.656215038000028 ], [ -81.990688035999938, 28.656418422000058 ], [ -81.990727961999937, 28.656535844000075 ], [ -81.990781199999958, 28.656645439000044 ], [ -81.990847747999965, 28.65675112100007 ], [ -81.990946167999937, 28.656853063000028 ], [ -81.99107229599997, 28.656971975000033 ], [ -81.991073216999951, 28.656972636000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124958628999934, 28.654127414000072 ], [ -82.124977679999972, 28.654061746000025 ], [ -82.124984324999957, 28.654047027000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13332152299995, 28.646745122000027 ], [ -82.134488251999983, 28.646740072000057 ], [ -82.135964332999947, 28.646756642000071 ], [ -82.137339991999966, 28.646772086000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133274820999986, 28.648581924000041 ], [ -82.13327964299998, 28.648485978000053 ], [ -82.133267945999989, 28.647107222000045 ], [ -82.133265858999948, 28.646997555000041 ], [ -82.13327239299997, 28.646928134000063 ], [ -82.13329312999997, 28.646866471000067 ], [ -82.133306625999978, 28.646823124000036 ], [ -82.133317242999965, 28.646785238000064 ], [ -82.13332152299995, 28.646745122000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.152032566999935, 28.657583868000074 ], [ -82.152029550999941, 28.65756299700007 ], [ -82.152028231999964, 28.657534969000039 ], [ -82.152028066999947, 28.657473444000061 ], [ -82.152037485999983, 28.657138146000079 ], [ -82.152054724999971, 28.657059684000046 ], [ -82.152087169999959, 28.656996513000024 ], [ -82.152147840999987, 28.65695435300006 ], [ -82.152219403999936, 28.656944708000026 ], [ -82.152318430999969, 28.656939643000044 ], [ -82.152709121999976, 28.656945829000051 ], [ -82.153164103999984, 28.656949243000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.161864737999963, 28.656094490000044 ], [ -82.161865276999947, 28.655686112000069 ], [ -82.161868996999942, 28.655284335000033 ], [ -82.16187888099995, 28.654658703000052 ], [ -82.161880799999949, 28.654496078000079 ], [ -82.161871543999951, 28.654418158000055 ], [ -82.161841037999977, 28.65423819800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.239161156999955, 28.645475403000034 ], [ -82.240032990999964, 28.645479506000072 ], [ -82.240999767999938, 28.645482399000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.240999767999938, 28.645482399000059 ], [ -82.241001983, 28.645482405000052 ], [ -82.241029386999969, 28.645480970000051 ], [ -82.241257732999941, 28.645469005000052 ], [ -82.241313774999981, 28.645459268000025 ], [ -82.241371916999981, 28.645442741000068 ], [ -82.241413776999934, 28.645430348000048 ], [ -82.241462610999974, 28.645413837000035 ], [ -82.241520700999956, 28.645374728000036 ], [ -82.241578780999987, 28.645331513000031 ], [ -82.241618245999973, 28.645288330000028 ], [ -82.24165998899997, 28.645224614000028 ], [ -82.241690077999976, 28.645152706000033 ], [ -82.241849530999957, 28.644663819000073 ], [ -82.24189234399995, 28.644559043000072 ], [ -82.241940940999939, 28.644439885000054 ], [ -82.241996538999956, 28.644328926000071 ], [ -82.242049827999949, 28.644226183000058 ], [ -82.242105466999988, 28.644133701000044 ], [ -82.242175064999969, 28.644039141000064 ], [ -82.242409332999955, 28.643702037000025 ], [ -82.242446434999977, 28.643644487000074 ], [ -82.242492732999949, 28.643537652000077 ], [ -82.242529702999946, 28.643422620000024 ], [ -82.242881712999974, 28.642261434000034 ], [ -82.243020197999954, 28.642108217000043 ], [ -82.243179307999981, 28.641860713000028 ], [ -82.243258862999937, 28.641754639000055 ], [ -82.243326631999935, 28.641660352000031 ], [ -82.243364935999978, 28.641577850000033 ], [ -82.243391453999948, 28.641459991000033 ], [ -82.243403239999964, 28.641271416000052 ], [ -82.243409132999943, 28.640991500000041 ], [ -82.243403503999957, 28.640851653000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.19538388899997, 28.690919238000049 ], [ -82.195362837999937, 28.690160477000063 ], [ -82.19540030099995, 28.689922636000063 ], [ -82.19540993399994, 28.689861505000067 ], [ -82.195479229999989, 28.689852810000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.195479229999989, 28.689852810000048 ], [ -82.195491381999943, 28.689880111000036 ], [ -82.195506351999938, 28.689923062000048 ], [ -82.195559297999978, 28.690004158000079 ], [ -82.195627205999983, 28.690122237000026 ], [ -82.195700500999976, 28.690225984000051 ], [ -82.195784637999964, 28.690335683000058 ], [ -82.195859251999934, 28.690420328000073 ], [ -82.195937488999959, 28.690499142000078 ], [ -82.196039392999978, 28.690575675000048 ], [ -82.196152402999985, 28.690652192000073 ], [ -82.196259827999938, 28.690712402000031 ], [ -82.196370942999977, 28.69076607900007 ], [ -82.196491524999942, 28.690820497000061 ], [ -82.196606411999937, 28.690868078000051 ], [ -82.196678779999957, 28.690899170000023 ], [ -82.196817713999963, 28.690929845000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.195379548999938, 28.688954919000025 ], [ -82.195382001999974, 28.68905574300004 ], [ -82.195382004999942, 28.689055884000027 ], [ -82.195383804999949, 28.68912989100005 ], [ -82.195442109999988, 28.689692429000047 ], [ -82.195467205999989, 28.689792664000038 ], [ -82.195479229999989, 28.689852810000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.224008995999952, 28.638167425000063 ], [ -82.222973003999982, 28.638181410000072 ], [ -82.222910233999983, 28.638173605000077 ], [ -82.222856415999956, 28.638160511000024 ], [ -82.222813697999982, 28.638132179000024 ], [ -82.22276441799994, 28.638101247000066 ], [ -82.222625909999977, 28.637968436000051 ], [ -82.222338387999969, 28.637663091000036 ], [ -82.222075948999986, 28.63739077300005 ], [ -82.221930311999984, 28.637255559000039 ], [ -82.221837963999974, 28.637190979000025 ], [ -82.221697195, 28.637116778000063 ], [ -82.221588140999984, 28.637079739000058 ], [ -82.221155329999988, 28.636875760000066 ], [ -82.220912512999973, 28.636752103000049 ], [ -82.220752825999966, 28.636681792000047 ], [ -82.220654649999972, 28.63666977500003 ], [ -82.220400139999981, 28.636701307000067 ], [ -82.220062793999944, 28.636722151000072 ], [ -82.219894058999955, 28.636743696000053 ], [ -82.219728707999934, 28.636761967000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.24043310199994, 28.625285899000062 ], [ -82.240439501999958, 28.625300493000054 ], [ -82.240445661999956, 28.625332704000073 ], [ -82.240454888999977, 28.625375652000059 ], [ -82.240464160999977, 28.625437397000042 ], [ -82.240470931999937, 28.625738134000073 ], [ -82.240466295999965, 28.626374548000058 ], [ -82.240452730999948, 28.627099592000036 ], [ -82.240451915999984, 28.628077027000074 ], [ -82.240434920999974, 28.628632905000075 ], [ -82.240445312999952, 28.628930656000023 ], [ -82.240447945999961, 28.629006133000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958965071999955, 28.879349320000074 ], [ -81.958959813999968, 28.879158026000027 ], [ -81.958925253999951, 28.878876391000063 ], [ -81.958893795999984, 28.878621340000052 ], [ -81.958850888999962, 28.878298106000045 ], [ -81.958841503999963, 28.878247292000026 ], [ -81.95882224199994, 28.878189515000031 ], [ -81.958786878999945, 28.878141653000057 ], [ -81.958741557999986, 28.878109953000035 ], [ -81.958694896999987, 28.878092335000076 ], [ -81.958648232999963, 28.878084106000074 ], [ -81.958574902999942, 28.878073521000033 ], [ -81.958466907999934, 28.878060579000078 ], [ -81.958346911999968, 28.878044112000055 ], [ -81.958201585999973, 28.878024116000063 ], [ -81.958126920999973, 28.878017051000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958126920999973, 28.878017051000029 ], [ -81.958053929999949, 28.877998938000076 ], [ -81.957934619999946, 28.877967617000024 ], [ -81.957827421, 28.877932518000023 ], [ -81.957739945999947, 28.877897425000072 ], [ -81.957644313999936, 28.877856120000047 ], [ -81.957545667999966, 28.877803278000044 ], [ -81.957496960999947, 28.877772451000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956753041999946, 28.879298165000023 ], [ -81.95675040499998, 28.879228923000028 ], [ -81.956711866999967, 28.878913218000037 ], [ -81.956671983999968, 28.878631547000055 ], [ -81.956648056999938, 28.878454328000032 ], [ -81.956642740999939, 28.87841325100004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957496960999947, 28.877772451000055 ], [ -81.957414077999942, 28.877718900000048 ], [ -81.957313733999968, 28.87763773000006 ], [ -81.957224436, 28.87755203100005 ], [ -81.957140466999988, 28.877473373000043 ], [ -81.957068494999987, 28.877404110000043 ], [ -81.957029842999987, 28.877368890000071 ], [ -81.956996523999976, 28.877334846000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956642740999939, 28.87841325100004 ], [ -81.956634804999965, 28.878258337000034 ], [ -81.956641547999936, 28.878074087000073 ], [ -81.95666027599998, 28.877925049000055 ], [ -81.95669234099995, 28.877771320000079 ], [ -81.956739059999961, 28.877645761000053 ], [ -81.95679643699998, 28.877540158000045 ], [ -81.95684446599995, 28.877473279000071 ], [ -81.956929836999961, 28.877379421000057 ], [ -81.956996523999976, 28.877334846000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956996523999976, 28.877334846000053 ], [ -81.956919217999939, 28.877263232000075 ], [ -81.956847246999985, 28.877192794000052 ], [ -81.95675661699994, 28.877107095000042 ], [ -81.956669983999973, 28.877023744000041 ], [ -81.95658201599997, 28.876947432000065 ], [ -81.956511378999949, 28.876876995000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956511378999949, 28.876876995000032 ], [ -81.956446071999949, 28.876811253000028 ], [ -81.956388770999979, 28.876738473000046 ], [ -81.956340797999985, 28.876669216000039 ], [ -81.956286257999977, 28.876590928000041 ], [ -81.956263514999989, 28.876553006000051 ], [ -81.956234203999941, 28.876500186000044 ], [ -81.956186037999942, 28.876412238000057 ], [ -81.956145485999969, 28.876309233000029 ], [ -81.956109708999975, 28.876210436000065 ], [ -81.956088255999987, 28.876117947000068 ], [ -81.956078746999935, 28.876017055000034 ], [ -81.956076391999943, 28.875937185000055 ], [ -81.95608597599994, 28.875861520000058 ], [ -81.95609555599998, 28.875792163000028 ], [ -81.956112300999962, 28.875722807000045 ], [ -81.956150554999965, 28.875611422000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956223257999966, 28.877167949000068 ], [ -81.956280617999937, 28.877099899000029 ], [ -81.956388664999963, 28.876990791000026 ], [ -81.956454022999935, 28.876929787000051 ], [ -81.956511378999949, 28.876876995000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956223257999966, 28.877167949000068 ], [ -81.956167827999934, 28.877118155000062 ], [ -81.956101969999963, 28.877056420000031 ], [ -81.956060652999952, 28.877017677000026 ], [ -81.956018007999944, 28.876967200000024 ], [ -81.955930060999947, 28.876838078000048 ], [ -81.955832794999935, 28.876680785000076 ], [ -81.955782170999953, 28.876578668000036 ], [ -81.955711571999984, 28.876421386000061 ], [ -81.955647653999961, 28.876227723000056 ], [ -81.955630353999936, 28.876151435000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955630353999936, 28.876151435000054 ], [ -81.955619723999973, 28.876065760000074 ], [ -81.955617113999949, 28.87593079800007 ], [ -81.95561713799998, 28.875873293000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954993082999977, 28.876017436000041 ], [ -81.955155734999948, 28.876049177000027 ], [ -81.955565023999952, 28.876143198000079 ], [ -81.955630353999936, 28.876151435000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954574463999961, 28.875915194000072 ], [ -81.954774443999952, 28.875959858000044 ], [ -81.954919232999941, 28.87599474600006 ], [ -81.954993082999977, 28.876017436000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955940210999984, 28.87806564400006 ], [ -81.955945588999953, 28.877958850000027 ], [ -81.955966984999975, 28.877809813000056 ], [ -81.955980353999962, 28.877726493000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955980353999962, 28.877726493000068 ], [ -81.955912356999988, 28.877717082000061 ], [ -81.955871026999944, 28.877710027000035 ], [ -81.955815032999965, 28.877692405000062 ], [ -81.955753713999968, 28.877660699000046 ], [ -81.955676401999938, 28.877607862000048 ], [ -81.955581763999987, 28.877538590000029 ], [ -81.955547109999941, 28.877509238000073 ], [ -81.95541650499996, 28.877366019000078 ], [ -81.955344552999975, 28.877250985000046 ], [ -81.955288597999981, 28.877146517000028 ], [ -81.955231312999956, 28.877032662000033 ], [ -81.955152712999961, 28.876875375000054 ], [ -81.955080778999957, 28.876722786000073 ], [ -81.955022177999979, 28.876571374000036 ], [ -81.954976909999971, 28.876418794000074 ], [ -81.954952951999985, 28.876322554000069 ], [ -81.954928998999947, 28.876214576000052 ], [ -81.954923698999949, 28.876135944000055 ], [ -81.954931714999987, 28.87610191300007 ], [ -81.954947727999979, 28.876070232000075 ], [ -81.954993082999977, 28.876017436000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955980353999962, 28.877726493000068 ], [ -81.956029753999985, 28.877566902000069 ], [ -81.956067131999987, 28.877463639000041 ], [ -81.95610850099996, 28.877379156000075 ], [ -81.956169882999973, 28.877264165000042 ], [ -81.956223257999966, 28.877167949000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981926862999956, 28.895087428000068 ], [ -81.982108394999955, 28.895132851000028 ], [ -81.982224567999936, 28.895163120000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982144979999987, 28.896164637000027 ], [ -81.982116527999949, 28.896102038000038 ], [ -81.982103496999969, 28.896048830000041 ], [ -81.982092837999971, 28.895988320000072 ], [ -81.982084549999968, 28.895916334000049 ], [ -81.982082193999986, 28.895838090000041 ], [ -81.982082206999962, 28.895761932000028 ], [ -81.982084588999953, 28.895692033000046 ], [ -81.982094081999946, 28.895639872000061 ], [ -81.982108316999984, 28.895585624000034 ], [ -81.982180676999974, 28.895328993000078 ], [ -81.982224567999936, 28.895163120000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982144979999987, 28.896164637000027 ], [ -81.982186354999953, 28.896146516000044 ], [ -81.982329340999968, 28.896090843000025 ], [ -81.982436983999946, 28.896060890000058 ], [ -81.982554592999975, 28.896042241000032 ], [ -81.982639892999941, 28.896033834000036 ], [ -81.982771268999954, 28.896025163000047 ], [ -81.982886697999959, 28.89602317300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982886697999959, 28.89602317300006 ], [ -81.982884407999961, 28.895822855000063 ], [ -81.982888690999971, 28.895798585000023 ], [ -81.982907249999982, 28.895748616000049 ], [ -81.982958646999975, 28.895660100000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983700004999946, 28.896047332000023 ], [ -81.983772144999989, 28.89606271100007 ], [ -81.983938443999989, 28.896114857000043 ], [ -81.984157362999952, 28.896196266000061 ], [ -81.984349355999939, 28.896264357000064 ], [ -81.984401540999954, 28.896281695000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983700004999946, 28.896047332000023 ], [ -81.983759661999954, 28.895811767000055 ], [ -81.983775826999988, 28.895756899000048 ], [ -81.983771067999953, 28.895725966000043 ], [ -81.983737755999982, 28.895654583000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982886697999959, 28.89602317300006 ], [ -81.982964154999934, 28.896022515000027 ], [ -81.983179824999979, 28.896017864000044 ], [ -81.983414378999953, 28.896014663000074 ], [ -81.983578448999936, 28.896024996000051 ], [ -81.983656720999988, 28.896036634000041 ], [ -81.983700004999946, 28.896047332000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013416073999963, 28.915345633000072 ], [ -82.013416111999959, 28.915641281000035 ], [ -82.01341924999997, 28.915860469000052 ], [ -82.013434827999959, 28.915897006000023 ], [ -82.013459056999977, 28.915935065000042 ], [ -82.013488476999953, 28.915963988000044 ], [ -82.013523086999953, 28.915988344000027 ], [ -82.013569809999979, 28.916011175000051 ], [ -82.013628642999947, 28.916021826000076 ], [ -82.013945295999974, 28.916023318000043 ], [ -82.014619666999977, 28.916022678000047 ], [ -82.01521784199997, 28.916024285000049 ], [ -82.015512649999948, 28.916025089000073 ], [ -82.015587216999961, 28.91605426700005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016780500999971, 28.91397285000005 ], [ -82.016823120999959, 28.91402587500005 ], [ -82.016866363999952, 28.914082930000063 ], [ -82.016961739999942, 28.914177154000072 ], [ -82.017032120999943, 28.914237515000025 ], [ -82.017118335999953, 28.914296325000066 ], [ -82.01722214199998, 28.914341203000049 ], [ -82.017327704999957, 28.914376791000052 ], [ -82.017459655999971, 28.914406184000029 ], [ -82.017589846999954, 28.914430935000041 ], [ -82.017751707999935, 28.914463419000072 ], [ -82.017924121999954, 28.914488165000023 ], [ -82.018064866999964, 28.914503625000066 ], [ -82.018224963999955, 28.914509795000072 ], [ -82.018367466999962, 28.914512872000046 ], [ -82.018536359999985, 28.914522136000073 ], [ -82.018680624999945, 28.914534499000069 ], [ -82.018756487999951, 28.914542275000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962746615999947, 28.881801241000062 ], [ -81.962753274999955, 28.881582300000048 ], [ -81.962749555999949, 28.881286013000079 ], [ -81.962746741999979, 28.881076699000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962746741999979, 28.881076699000062 ], [ -81.962850725999942, 28.881072355000072 ], [ -81.962934201999985, 28.881056818000047 ], [ -81.963006777999965, 28.881039051000073 ], [ -81.963099026999942, 28.881009249000044 ], [ -81.963183151999942, 28.880978251000045 ], [ -81.96325001699995, 28.880946175000076 ], [ -81.963322998999956, 28.880907440000044 ], [ -81.963367042999948, 28.880874234000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962021355, 28.880929456000047 ], [ -81.962082281999983, 28.880946318000042 ], [ -81.962297633999981, 28.881013458000041 ], [ -81.96238191499998, 28.881037841000079 ], [ -81.962457391999976, 28.881057793000025 ], [ -81.962531614999989, 28.881067780000024 ], [ -81.962610870999981, 28.881075552000027 ], [ -81.962673772999949, 28.881078893000051 ], [ -81.962746741999979, 28.881076699000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96275118899996, 28.882717705000061 ], [ -81.962731098999939, 28.882605862000048 ], [ -81.962717286999975, 28.882532777000051 ], [ -81.962707243999944, 28.882469659000037 ], [ -81.962706006999952, 28.882412081000041 ], [ -81.962717377, 28.882280316000049 ], [ -81.962730019999981, 28.882108688000073 ], [ -81.962740147999966, 28.881925988000035 ], [ -81.962746615999947, 28.881801241000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963975688999938, 28.88237427200005 ], [ -81.963769318999937, 28.88242056100006 ], [ -81.96360447099994, 28.882471396000028 ], [ -81.963407978999953, 28.882532536000042 ], [ -81.963182578999977, 28.882603636000056 ], [ -81.962977296999952, 28.882667178000077 ], [ -81.962838002999945, 28.882701120000036 ], [ -81.96275118899996, 28.882717705000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961519192999958, 28.880906150000044 ], [ -81.961785675999977, 28.880892 ], [ -81.961843511999973, 28.880892634000077 ], [ -81.961921508999978, 28.880905945000052 ], [ -81.962021355, 28.880929456000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961528207999947, 28.881941168000026 ], [ -81.961540021999951, 28.881697549000023 ], [ -81.961540151999941, 28.881344323000064 ], [ -81.961528935999979, 28.881053103000056 ], [ -81.961519192999958, 28.880906150000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980173311999977, 28.868159068000068 ], [ -81.980199775999949, 28.868058972000028 ], [ -81.980246051999984, 28.867867180000076 ], [ -81.980272855999942, 28.867723143000035 ], [ -81.980281787999957, 28.867690409000033 ], [ -81.980301132999955, 28.867645889000073 ], [ -81.980335354999966, 28.867606611000042 ], [ -81.980375524999943, 28.867580428000053 ], [ -81.980418666999981, 28.867563411000049 ], [ -81.980473709999956, 28.867551634000051 ], [ -81.980534948999946, 28.867545261000032 ], [ -81.980777175999947, 28.867543820000037 ], [ -81.981013700999938, 28.867533378000076 ], [ -81.981217497999978, 28.867534716000023 ], [ -81.981296302999965, 28.86755342500004 ], [ -81.981389393999962, 28.867568658000039 ], [ -81.981481637999934, 28.86757288900003 ], [ -81.98156795899996, 28.867569504000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022163556999942, 28.91561256500006 ], [ -82.022211220999964, 28.915613562000033 ], [ -82.022302041999978, 28.915611674000047 ], [ -82.022395194999945, 28.915612751000026 ], [ -82.022513185999969, 28.91561163800003 ], [ -82.022621889999982, 28.915614610000034 ], [ -82.022718269999984, 28.915624078000064 ], [ -82.022801, 28.915638412000078 ], [ -82.022878297999966, 28.915657489000068 ], [ -82.022940311999946, 28.915679478000072 ], [ -82.023020329999952, 28.915712024000072 ], [ -82.023086346999946, 28.915748091000069 ], [ -82.023146362999967, 28.915783279000038 ], [ -82.023183373999984, 28.915811432000055 ], [ -82.023224386999971, 28.915845744000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021417876999976, 28.915594888000044 ], [ -82.021476382999936, 28.915602731000035 ], [ -82.021608990999937, 28.915606323000077 ], [ -82.021710836999944, 28.915608491000057 ], [ -82.021834, 28.915609584000038 ], [ -82.021944613999949, 28.915610506000064 ], [ -82.022060034999981, 28.915611535000039 ], [ -82.022163556999942, 28.91561256500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997005456999943, 28.954796606000059 ], [ -81.997150455999986, 28.954805638000039 ], [ -81.997315984999943, 28.954811284000073 ], [ -81.99744237699997, 28.954816365000056 ], [ -81.997724674999972, 28.95481637000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996500613999956, 28.954761742000073 ], [ -81.996660283999972, 28.954774026000052 ], [ -81.996774486999982, 28.954781929000035 ], [ -81.996889971999963, 28.954792090000069 ], [ -81.997005456999943, 28.954796606000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997013833999972, 28.953503127000033 ], [ -81.997222347, 28.953510038000047 ], [ -81.997485394999956, 28.953521329000068 ], [ -81.997553401999937, 28.953531488000067 ], [ -81.997617558999934, 28.953552932000036 ], [ -81.997667600999989, 28.953591304000042 ], [ -81.997703528999978, 28.953633062000051 ], [ -81.997718643999974, 28.953678585000034 ], [ -81.997726019999959, 28.953737419000049 ], [ -81.997725290999938, 28.953798472000074 ], [ -81.997725288999959, 28.95386572600006 ], [ -81.99772528699998, 28.95395344800005 ], [ -81.99772620899995, 28.954045099000041 ], [ -81.997725283999955, 28.954152286000067 ], [ -81.997725279999941, 28.954283868000061 ], [ -81.997725277999962, 28.954380363000041 ], [ -81.997725274999937, 28.954509023000071 ], [ -81.997725272999958, 28.954631834000054 ], [ -81.997725269999989, 28.954740025000035 ], [ -81.997724674999972, 28.95481637000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997013833999972, 28.953503127000033 ], [ -81.997006766999959, 28.953837320000048 ], [ -81.997006761999955, 28.954019021000079 ], [ -81.99700547599997, 28.954143163000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99700547599997, 28.954143163000026 ], [ -81.997007163999967, 28.954228298000032 ], [ -81.997007157999974, 28.954432982000071 ], [ -81.997005456999943, 28.954796606000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994769791999943, 28.953796247000071 ], [ -81.994846778999943, 28.953836878000061 ], [ -81.995054649999986, 28.953886543000067 ], [ -81.995230441999979, 28.953920407000055 ], [ -81.995395966999979, 28.953952012000059 ], [ -81.995584590999954, 28.953983619000041 ], [ -81.995816842999943, 28.954023126000038 ], [ -81.996061924999935, 28.954054734000067 ], [ -81.996257392999951, 28.954079944000057 ], [ -81.996457137999982, 28.954102145000036 ], [ -81.996725746999971, 28.954127357000061 ], [ -81.99700547599997, 28.954143163000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994769791999943, 28.953796247000071 ], [ -81.994818555999984, 28.953728535000039 ], [ -81.994901965999986, 28.953615681000031 ], [ -81.995008475999953, 28.953474612000036 ], [ -81.995072272999948, 28.953409499000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994386712999983, 28.954296723000027 ], [ -81.994408964999934, 28.95427849400005 ], [ -81.994477128999961, 28.954196052000043 ], [ -81.994546950999961, 28.954099561000078 ], [ -81.994614517999935, 28.954007284000056 ], [ -81.994667131999961, 28.953935057000024 ], [ -81.99471846199998, 28.953862831000038 ], [ -81.994769791999943, 28.953796247000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983307285999956, 28.915038223000067 ], [ -81.983420154999976, 28.914951539000072 ], [ -81.983484168999951, 28.914903381000045 ], [ -81.983540707999964, 28.91486057000003 ], [ -81.983596002999946, 28.914816230000042 ], [ -81.983627461999959, 28.914780481000037 ], [ -81.98367064599995, 28.914714824000043 ], [ -81.983689991999938, 28.914676667000037 ], [ -81.983711494999966, 28.914598289000025 ], [ -81.983718729999964, 28.914545348000047 ], [ -81.983716394999988, 28.914482093000061 ], [ -81.983701950999944, 28.914409898000031 ], [ -81.983663479999962, 28.914314667000042 ], [ -81.983627543999944, 28.914257594000048 ], [ -81.983569726999974, 28.914194333000069 ], [ -81.983509562999984, 28.914151697000079 ], [ -81.983420685999988, 28.914092556000071 ], [ -81.983353292999936, 28.914048201000071 ], [ -81.983293128999946, 28.914014160000079 ], [ -81.983235503999936, 28.913984588000062 ], [ -81.983168110999941, 28.913950890000024 ], [ -81.983105600999977, 28.913923380000028 ], [ -81.983040555999935, 28.913896575000024 ], [ -81.982987808999951, 28.913874548000024 ], [ -81.982927868, 28.913849202000051 ], [ -81.982872359999988, 28.913825717000066 ], [ -81.982812194999951, 28.913800613000035 ], [ -81.982771366999941, 28.913783419000026 ], [ -81.982620074999943, 28.913729285000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982573080999941, 28.91466160300007 ], [ -81.982725429999959, 28.914715373000035 ], [ -81.98285507199995, 28.914766215000043 ], [ -81.982930865999947, 28.914789197000061 ], [ -81.982994025999972, 28.914816622000046 ], [ -81.983058883999945, 28.914852180000025 ], [ -81.983121184999959, 28.914889256000038 ], [ -81.983185183999979, 28.914934466000034 ], [ -81.983254529999954, 28.914994223000065 ], [ -81.983307285999956, 28.915038223000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981578624999941, 28.915290509000044 ], [ -81.981748986999946, 28.915332345000024 ], [ -81.981798437999942, 28.915346166000063 ], [ -81.981858324999962, 28.915364617000023 ], [ -81.981931685999939, 28.91538833900006 ], [ -81.982008605999965, 28.915414886000065 ], [ -81.98207834599998, 28.915438273000063 ], [ -81.982145741999943, 28.915463721000037 ], [ -81.982210792999979, 28.915486763000047 ], [ -81.982276031999959, 28.915508265000028 ], [ -81.982349391999946, 28.915535939000051 ], [ -81.982427239999936, 28.915563109000061 ], [ -81.982501666999951, 28.915588558000024 ], [ -81.982547377999936, 28.915601284000047 ], [ -81.982597974999976, 28.915611948000048 ], [ -81.982626693999975, 28.915611952000063 ], [ -81.982694093999953, 28.915603366000028 ], [ -81.982732582999972, 28.915590651000059 ], [ -81.982804678999969, 28.915533593000077 ], [ -81.982850404999965, 28.91547653300006 ], [ -81.982901010999967, 28.915421535000064 ], [ -81.982963536999989, 28.915355881000039 ], [ -81.983028407999939, 28.91528816500005 ], [ -81.983086243999935, 28.915233168000043 ], [ -81.983148767999978, 28.915176109000072 ], [ -81.983201716999986, 28.915129362000073 ], [ -81.983290617999955, 28.915053398000055 ], [ -81.983307285999956, 28.915038223000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956469977999973, 28.892692053000076 ], [ -81.956437103999974, 28.892661722000071 ], [ -81.956402670999978, 28.892617609000069 ], [ -81.956377637999935, 28.892562474000044 ], [ -81.956363565999936, 28.892507343000034 ], [ -81.956357336999986, 28.892421893000062 ], [ -81.956357397999966, 28.892277185000069 ], [ -81.956359035999981, 28.892104912000036 ], [ -81.956366881999941, 28.892069081000045 ], [ -81.956377859999975, 28.892033252000033 ], [ -81.956402930999957, 28.891993294000031 ], [ -81.956465591999972, 28.891945078000049 ], [ -81.956521976999966, 28.89192580100007 ], [ -81.956622530999937, 28.891912927000078 ], [ -81.956747487999962, 28.891913470000077 ], [ -81.956885300999943, 28.891905246000078 ], [ -81.957053285999962, 28.891882218000035 ], [ -81.957201659999953, 28.891848840000023 ], [ -81.95733151099995, 28.89182078500005 ], [ -81.957435662999956, 28.89180826300003 ], [ -81.957514128999946, 28.891810798000051 ], [ -81.957594737999955, 28.891825536000056 ], [ -81.957692440999949, 28.891863587000046 ], [ -81.957867853999971, 28.891944262000038 ], [ -81.958069154999976, 28.892040681000026 ], [ -81.958231989999945, 28.892116531000056 ], [ -81.958408916999986, 28.892196520000027 ], [ -81.958600355999977, 28.892272454000079 ], [ -81.958820050999975, 28.892362247000051 ], [ -81.959096289999934, 28.892476502000079 ], [ -81.959149524999987, 28.892501325000069 ], [ -81.95919023099998, 28.892530280000074 ], [ -81.959230915999967, 28.892572420000079 ], [ -81.959254408999982, 28.892606098000044 ], [ -81.959270049999986, 28.892652961000067 ], [ -81.959265325999979, 28.892720491000034 ], [ -81.959238678999952, 28.892785257000071 ], [ -81.959192522999956, 28.892858432000025 ], [ -81.959115918999942, 28.892956386000037 ], [ -81.958985376999976, 28.893135799000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956891575999975, 28.894225897000069 ], [ -81.957057916999986, 28.894222912000032 ], [ -81.957270691999952, 28.894212905000074 ], [ -81.957446423999954, 28.894189346000076 ], [ -81.957621643999971, 28.89414161600007 ], [ -81.95780332399994, 28.894068792000041 ], [ -81.957988130999979, 28.893979123000065 ], [ -81.958160053999961, 28.893875699000034 ], [ -81.958367152999983, 28.89372725100003 ], [ -81.95860610699998, 28.893531028000041 ], [ -81.958808075999968, 28.893322780000062 ], [ -81.958985376999976, 28.893135799000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956889039999965, 28.89344419300005 ], [ -81.957083624999939, 28.893451825000056 ], [ -81.957316974999969, 28.893452615000058 ], [ -81.957416704999957, 28.893442786000037 ], [ -81.957500598999957, 28.893429102000027 ], [ -81.957599479999942, 28.893399428000066 ], [ -81.957679387999974, 28.893368517000056 ], [ -81.957756099999983, 28.893333386000052 ], [ -81.957856790999983, 28.893271545000061 ], [ -81.957974070999967, 28.893182463000073 ], [ -81.958071174999986, 28.893098122000026 ], [ -81.958129919999976, 28.893043298000066 ], [ -81.958275605999972, 28.892839971000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959596011999963, 28.893461197000079 ], [ -81.959835769999984, 28.893197592000035 ], [ -81.959998325999948, 28.893063222000023 ], [ -81.960262656999987, 28.892892443000051 ], [ -81.960477806999961, 28.892739798000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957122676999973, 28.895010051000042 ], [ -81.957385758999976, 28.894949077000035 ], [ -81.95770749999997, 28.894836761000079 ], [ -81.957939483999951, 28.894727271000079 ], [ -81.958183020999968, 28.894611835000035 ], [ -81.958444724999936, 28.894474359000071 ], [ -81.958622250999952, 28.894373346000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958914260999961, 28.894712366000078 ], [ -81.959092818999977, 28.894586920000052 ], [ -81.959358274999943, 28.894373335000068 ], [ -81.959478159999946, 28.894266498000036 ], [ -81.959596522999959, 28.894158037000068 ], [ -81.95977824299996, 28.893970731000024 ], [ -81.959913044999951, 28.893817935000072 ], [ -81.95998205099994, 28.893741355000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958914260999961, 28.894712366000078 ], [ -81.958705732999988, 28.894478113000048 ], [ -81.958622250999952, 28.894373346000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957943881999938, 28.895213617000024 ], [ -81.958002879999981, 28.895185101000038 ], [ -81.958352631999958, 28.895020088000024 ], [ -81.958570299999963, 28.894911669000066 ], [ -81.958713943999953, 28.894834605000028 ], [ -81.95881794099995, 28.894772986000078 ], [ -81.958914260999961, 28.894712366000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96154392699998, 28.87722621000006 ], [ -81.961712405999947, 28.877261263000037 ], [ -81.961879816999954, 28.877288701000055 ], [ -81.961935431999962, 28.877296332000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961839406999957, 28.876413647000049 ], [ -81.962011629999949, 28.876494557000058 ], [ -81.962205906999941, 28.87657247900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978682578999951, 28.871702284000037 ], [ -81.978684986999951, 28.871497500000032 ], [ -81.978685103999965, 28.871238098000049 ], [ -81.978685147999954, 28.871023929000046 ], [ -81.978703674999963, 28.870954095000059 ], [ -81.978740709999954, 28.87090521500005 ], [ -81.978809478999949, 28.870867978000035 ], [ -81.978883532999987, 28.870844712000064 ], [ -81.979153289999942, 28.870837770000037 ], [ -81.979306679999979, 28.870835466000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978979954999943, 28.87010138100004 ], [ -81.979188619999945, 28.870137815000078 ], [ -81.979400366999982, 28.87016707500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973119001999976, 28.935750665000057 ], [ -81.973487826999985, 28.936008113000071 ], [ -81.973600830999942, 28.936082703000068 ], [ -81.973729980999963, 28.936164397000027 ], [ -81.974200953999969, 28.936470948000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97240512999997, 28.935252362000028 ], [ -81.973119001999976, 28.935750665000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973119001999976, 28.935750665000057 ], [ -81.972901920999959, 28.935994728000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972243650999985, 28.937272433000032 ], [ -81.972318945999973, 28.937256965000074 ], [ -81.973040633999972, 28.937254654000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973879428999965, 28.937256714000057 ], [ -81.974418662999938, 28.937257269000042 ], [ -81.97451994499994, 28.937283849000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968063211999947, 28.937273506000054 ], [ -81.968036653999945, 28.937381213000037 ], [ -81.968015556999944, 28.937498426000047 ], [ -81.968013784999982, 28.937536136000062 ], [ -81.968024755999977, 28.938071728000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973440078999943, 28.939261176000059 ], [ -81.973572021999985, 28.939273231000072 ], [ -81.973701285999937, 28.939279929000065 ], [ -81.973946234999971, 28.93928287600005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97852353899998, 28.939978521000057 ], [ -81.978662468999971, 28.939896163000071 ], [ -81.978708722999954, 28.939872354000045 ], [ -81.978741110999977, 28.939857165000035 ], [ -81.978775661999975, 28.939836279000076 ], [ -81.978814530999955, 28.939813493000031 ], [ -81.978844892999973, 28.93979044200006 ], [ -81.978868386999977, 28.939774644000067 ], [ -81.978884970999957, 28.939760061000072 ], [ -81.978902937999976, 28.939741831000049 ], [ -81.978919523999934, 28.939724816000023 ], [ -81.978937490999954, 28.939705371000059 ], [ -81.978956841999945, 28.939683494000064 ], [ -81.978969280999934, 28.939666479000039 ], [ -81.978985867999938, 28.939644602000044 ], [ -81.978998306999983, 28.939627587000075 ], [ -81.979009365999957, 28.93961057100006 ], [ -81.979020424999987, 28.939591125000049 ], [ -81.979028716999949, 28.939575325000078 ], [ -81.979038393999986, 28.939553447000037 ], [ -81.979050838999967, 28.939518199000076 ], [ -81.979064667999978, 28.939461072000029 ], [ -81.979074352999987, 28.939401513000064 ], [ -81.979073035999988, 28.939075754000044 ], [ -81.979071869999984, 28.938544624000031 ], [ -81.979069651999964, 28.938521217000073 ], [ -81.979063634999989, 28.938502147000065 ], [ -81.979051595999977, 28.938483076000068 ], [ -81.978964073999975, 28.93837647600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967505792999987, 28.878565606000052 ], [ -81.967561044999968, 28.878452218000064 ], [ -81.967634711999949, 28.87830778600005 ], [ -81.967693272999952, 28.878191943000047 ], [ -81.967737681999949, 28.878082592000055 ], [ -81.967788193, 28.877977071000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967788193, 28.877977071000032 ], [ -81.967811694999966, 28.877906847000077 ], [ -81.967836865999971, 28.877828737000073 ], [ -81.967867953999985, 28.877746724000076 ], [ -81.967910893999942, 28.87760482300007 ], [ -81.967930141999943, 28.877542335000044 ], [ -81.967958263999947, 28.877482452000038 ], [ -81.967981940999948, 28.877449910000053 ], [ -81.968015969999954, 28.877421275000074 ], [ -81.968063309999934, 28.87740436100006 ], [ -81.968113604999985, 28.877393957000038 ], [ -81.968175222999946, 28.877389782000023 ], [ -81.96830586699997, 28.877407688000062 ], [ -81.968456816999947, 28.877432820000024 ], [ -81.968613526999945, 28.877461565000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970832245999986, 28.87764714900004 ], [ -81.970863301999941, 28.877663005000045 ], [ -81.971034545999942, 28.877749331000075 ], [ -81.971185629999979, 28.87782569500007 ], [ -81.971355755, 28.877912131000073 ], [ -81.971470260999979, 28.877972636000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970199497999943, 28.87732152500007 ], [ -81.970235146999983, 28.877340060000051 ], [ -81.970369682999944, 28.877404720000072 ], [ -81.970508510999935, 28.877480038000044 ], [ -81.970691861999967, 28.877573242000039 ], [ -81.970832245999986, 28.87764714900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970832245999986, 28.87764714900004 ], [ -81.970721251999976, 28.877845018000073 ], [ -81.970659092999938, 28.877960878000067 ], [ -81.970591010999954, 28.878107981000028 ], [ -81.970503684999983, 28.878296743000078 ], [ -81.970425237999962, 28.878476392000039 ], [ -81.970355669999947, 28.878640421000057 ], [ -81.970290539999951, 28.878799242000071 ], [ -81.970213572999967, 28.878974987000049 ], [ -81.970145483999943, 28.879136411000047 ], [ -81.970095155999957, 28.879258782000079 ], [ -81.970022627999981, 28.879426715000079 ], [ -81.969963417999963, 28.879571218000024 ], [ -81.969917530999965, 28.879679267000029 ], [ -81.969883486999947, 28.879756073000067 ], [ -81.969846493999967, 28.879804238000077 ], [ -81.969794710999963, 28.879841982000073 ], [ -81.969732576999945, 28.879865403000053 ], [ -81.969682282999941, 28.879867995000041 ], [ -81.969633048999981, 28.879862780000053 ], [ -81.969446959999971, 28.879815937000046 ], [ -81.969195434999961, 28.879749281000045 ], [ -81.96912513999996, 28.879728339000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95868485799997, 28.926740694000046 ], [ -81.959111941999936, 28.926625676000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959111941999936, 28.926625676000072 ], [ -81.95913010299995, 28.926664661000075 ], [ -81.959144858999935, 28.926701646000026 ], [ -81.959160749999967, 28.926735633000078 ], [ -81.959177776999979, 28.926774617000035 ], [ -81.959197076999942, 28.926807607000057 ], [ -81.959212972999978, 28.92683359800003 ], [ -81.95922432499998, 28.926853592000043 ], [ -81.959236813999951, 28.926873585000067 ], [ -81.959253845999967, 28.926897576000044 ], [ -81.959272013999964, 28.92692057000005 ], [ -81.959286775999942, 28.926940565000052 ], [ -81.959299266999949, 28.926956560000065 ], [ -81.959312811999951, 28.926974939000047 ], [ -81.959327847999987, 28.926992133000056 ], [ -81.95934327599997, 28.927008982000075 ], [ -81.959359095999957, 28.927025489000073 ], [ -81.959375111999975, 28.927041650000035 ], [ -81.959391517999961, 28.927057813000033 ], [ -81.959419641999943, 28.927084292000075 ], [ -81.959436830999948, 28.927099424000062 ], [ -81.959454407999942, 28.92711455500006 ], [ -81.959472181999956, 28.927129686000058 ], [ -81.959490347999974, 28.927144131000034 ], [ -81.959508708999977, 28.927158230000032 ], [ -81.959527459999947, 28.927172331000065 ], [ -81.959558906999973, 28.927195030000064 ], [ -81.959578439999973, 28.92720809900004 ], [ -81.959597972999973, 28.927221169000063 ], [ -81.959617897999976, 28.927233551000029 ], [ -81.959638016999975, 28.927245932000062 ], [ -81.959658526999988, 28.927257970000028 ], [ -81.959679232999974, 28.927269666000029 ], [ -81.959703455999943, 28.927283080000052 ], [ -81.959741938999969, 28.927302686000075 ], [ -81.959765966999953, 28.927314725000031 ], [ -81.959785891999957, 28.927325389000032 ], [ -81.959805425999946, 28.927336052000044 ], [ -81.959824959999935, 28.927347059000056 ], [ -81.959844102999966, 28.927358409000078 ], [ -81.959863245999941, 28.927370103000044 ], [ -81.959881996999968, 28.927382142000056 ], [ -81.959918328999947, 28.927406905000055 ], [ -81.959936299999981, 28.927419629000042 ], [ -81.959954073999938, 28.927432698000075 ], [ -81.959971653999958, 28.927446111000052 ], [ -81.959988841999973, 28.927459867000039 ], [ -81.960005834999947, 28.927473623000026 ], [ -81.960022436999964, 28.92748772300007 ], [ -81.960038843999939, 28.927502166000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959044122999956, 28.925978494000049 ], [ -81.959053065999967, 28.926116925000031 ], [ -81.959059833999959, 28.926240863000032 ], [ -81.959060954999984, 28.926278842000045 ], [ -81.959062075999952, 28.926314825000077 ], [ -81.959066599999971, 28.926368797000066 ], [ -81.959069992999957, 28.926404779000052 ], [ -81.959073381999985, 28.926453755000068 ], [ -81.959076778999986, 28.926487738000048 ], [ -81.95908471499996, 28.926525720000029 ], [ -81.959093791999976, 28.92655770600004 ], [ -81.959102865999967, 28.926594690000059 ], [ -81.959111941999936, 28.926625676000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959004148999952, 28.92532316300003 ], [ -81.959010030999934, 28.925348997000071 ], [ -81.959014094999986, 28.925381285000071 ], [ -81.959017346999985, 28.925407114000052 ], [ -81.959019782999974, 28.925432226000055 ], [ -81.959024666999937, 28.925458057000071 ], [ -81.959026577999964, 28.925482174000024 ], [ -81.959029525999938, 28.925541284000076 ], [ -81.959031600999936, 28.925624155000037 ], [ -81.959040805999962, 28.925790507000045 ], [ -81.959044133999953, 28.925951640000051 ], [ -81.959044122999956, 28.925978494000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958959074999939, 28.922264291000033 ], [ -81.958939573999942, 28.922329170000069 ], [ -81.958919205999962, 28.922387336000043 ], [ -81.958898837999982, 28.922445503000063 ], [ -81.958879369999977, 28.922504819000039 ], [ -81.958848276999959, 28.922574251000071 ], [ -81.958817773999954, 28.922638873000039 ], [ -81.958786097999962, 28.922703148000039 ], [ -81.958775147999972, 28.922726523000051 ], [ -81.958755983999936, 28.922771208000029 ], [ -81.958746400999985, 28.922795269000062 ], [ -81.958737599999949, 28.922818987000028 ], [ -81.958728992999966, 28.922843048000061 ], [ -81.958720973999959, 28.922867454000027 ], [ -81.958713539999962, 28.922891517000039 ], [ -81.95870395299994, 28.922925548000023 ], [ -81.958697495999957, 28.922949954000046 ], [ -81.958691624999972, 28.922974704000069 ], [ -81.958686143999955, 28.922999454000035 ], [ -81.958681250999973, 28.923024204000058 ], [ -81.958676942999944, 28.92304929900007 ], [ -81.958671850999963, 28.923081612000033 ], [ -81.958668713999941, 28.923106706000056 ], [ -81.95866577299995, 28.923131802000057 ], [ -81.958663614999978, 28.923156896000023 ], [ -81.958661845999984, 28.923181992000025 ], [ -81.958660467999948, 28.923207087000037 ], [ -81.958659673999989, 28.923239745000046 ], [ -81.958659467999951, 28.923265185000048 ], [ -81.958659848999957, 28.92329028100005 ], [ -81.958660619999989, 28.923315377000051 ], [ -81.958662173999983, 28.923340817000053 ], [ -81.958663922999961, 28.923365913000055 ], [ -81.958665532999987, 28.923401510000076 ], [ -81.958668775999968, 28.923447428000031 ], [ -81.958673249999947, 28.923493801000063 ], [ -81.958678533999944, 28.923517265000044 ], [ -81.958686130999979, 28.923555532000023 ], [ -81.958700246999967, 28.923604325000042 ], [ -81.958718525999984, 28.923657914000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956128464999949, 28.92438562500007 ], [ -81.956735103999961, 28.923869600000046 ], [ -81.956910062999953, 28.923719222000045 ], [ -81.956966399999942, 28.923657839000043 ], [ -81.956986764999954, 28.923620050000068 ], [ -81.957001193999986, 28.923568844000044 ], [ -81.956998115999966, 28.923510644000032 ], [ -81.956986959999938, 28.923457321000058 ], [ -81.95694137299995, 28.923318828000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957645015999958, 28.925771701000031 ], [ -81.957944052999949, 28.926036838000073 ], [ -81.957977962999962, 28.926056245000041 ], [ -81.958015264999972, 28.926072668000074 ], [ -81.958054263999941, 28.92608610800005 ], [ -81.958086482999988, 28.926093578000064 ], [ -81.958118700999989, 28.926101047000031 ], [ -81.958159399999943, 28.926105535000033 ], [ -81.958198403999972, 28.926107040000034 ], [ -81.958227232999945, 28.926108541000076 ], [ -81.958259987999952, 28.926107262000073 ], [ -81.958297697999967, 28.926102461000028 ], [ -81.958335213999987, 28.926095597000028 ], [ -81.958360809999988, 28.926089417000071 ], [ -81.958444637999946, 28.926067098000033 ], [ -81.95862968199998, 28.926017994000063 ], [ -81.958679704999952, 28.926005977000045 ], [ -81.958710666999934, 28.925998348000064 ], [ -81.958741195999949, 28.925992762000078 ], [ -81.958765361999951, 28.925989413000025 ], [ -81.958794617999956, 28.925984945000039 ], [ -81.95882365999995, 28.92598290400008 ], [ -81.958856941999954, 28.92598048900004 ], [ -81.958888738999974, 28.925980498000058 ], [ -81.958920536999983, 28.925979389000076 ], [ -81.958979043999989, 28.925979407000057 ], [ -81.959044122999956, 28.925978494000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957121493999978, 28.92529438400004 ], [ -81.95738314099998, 28.92553851200006 ], [ -81.957645015999958, 28.925771701000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957645015999958, 28.925771701000031 ], [ -81.957888123999965, 28.925564431000055 ], [ -81.957939117999956, 28.925524482000071 ], [ -81.957958269999949, 28.925509018000071 ], [ -81.957975467999972, 28.925495961000024 ], [ -81.957993252999984, 28.925483590000056 ], [ -81.958011623999937, 28.925471908000077 ], [ -81.958030384999972, 28.925460568000062 ], [ -81.958049535999976, 28.925449917000037 ], [ -81.958069077999937, 28.925439610000069 ], [ -81.958089204999965, 28.925430335000044 ], [ -81.958109528999955, 28.92542140300003 ], [ -81.958130046999941, 28.925413159000072 ], [ -81.958151149999935, 28.925405602000069 ], [ -81.958168863999958, 28.92539890300003 ], [ -81.958291870999972, 28.925360610000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972901245999935, 28.903272466000033 ], [ -81.97274787899994, 28.903037483000048 ], [ -81.972492502999955, 28.902668970000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971030029999952, 28.903286364000053 ], [ -81.971206581, 28.903221573000053 ], [ -81.971376177999957, 28.903171460000067 ], [ -81.971555507999938, 28.903111562000049 ], [ -81.97176959799998, 28.903018646000078 ], [ -81.972076833999949, 28.902869484000064 ], [ -81.97232312999995, 28.902751091000027 ], [ -81.972492502999955, 28.902668970000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954838388999974, 28.941350109000041 ], [ -81.955273115999944, 28.94307469000006 ], [ -81.955290848999937, 28.943130930000052 ], [ -81.95532247899996, 28.943238166000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955230871999959, 28.945243516000062 ], [ -81.955233537999959, 28.945260565000069 ], [ -81.955236873, 28.945275261000063 ], [ -81.955242881999936, 28.945291135000048 ], [ -81.955252989999963, 28.945309070000064 ], [ -81.955255526999963, 28.945312508000029 ], [ -81.955260801999941, 28.945318698000051 ], [ -81.955266465999955, 28.945324888000073 ], [ -81.955272130999958, 28.945330733000048 ], [ -81.955275058999973, 28.945333828000059 ], [ -81.955281310999965, 28.945339331000071 ], [ -81.955290882999975, 28.945347584000046 ], [ -81.955297524999935, 28.945352743000058 ], [ -81.955301040999984, 28.945355495000058 ], [ -81.955307878999974, 28.945360310000069 ], [ -81.955315107, 28.945365125000023 ], [ -81.955322530999979, 28.945369597000024 ], [ -81.955329954999968, 28.945373724000035 ], [ -81.955333861999975, 28.945375789000025 ], [ -81.955341480999948, 28.945379573000025 ], [ -81.955345584999975, 28.945381293000025 ], [ -81.955353399999979, 28.945385078000072 ], [ -81.955357502999959, 28.945386454000072 ], [ -81.955365708999977, 28.945389550000073 ], [ -81.955369812999947, 28.945391270000073 ], [ -81.95537821399995, 28.945394023000063 ], [ -81.955382316999987, 28.945395056000052 ], [ -81.955390914999953, 28.945397465000042 ], [ -81.955395213999964, 28.945398842000031 ], [ -81.956305749999956, 28.945645972000079 ], [ -81.956324116999951, 28.945650791000048 ], [ -81.956342484999936, 28.945655265000028 ], [ -81.956360851999989, 28.945659397000043 ], [ -81.956379414999958, 28.945663529000058 ], [ -81.956398172999968, 28.945667315000037 ], [ -81.956416931999968, 28.945670759000052 ], [ -81.956435689999978, 28.945673860000056 ], [ -81.956454447999988, 28.945676616000071 ], [ -81.956473403999951, 28.945679029000075 ], [ -81.956502127999954, 28.945682476000059 ], [ -81.956521082999984, 28.945684201000063 ], [ -81.956540232999942, 28.945685582000067 ], [ -81.956559188999961, 28.945686963000071 ], [ -81.956578339999965, 28.945687657000065 ], [ -81.956597293999948, 28.945688350000069 ], [ -81.956616443999962, 28.945688700000062 ], [ -81.956635595999956, 28.945688707000045 ], [ -81.956654551999975, 28.945688369000038 ], [ -81.956673702999979, 28.945688031000032 ], [ -81.956692853999982, 28.945687006000071 ], [ -81.956711809999945, 28.945685981000054 ], [ -81.956742685999984, 28.945683584000051 ], [ -81.956761642999936, 28.945681528000023 ], [ -81.956780598999956, 28.945679471000062 ], [ -81.956799555999964, 28.945677071000034 ], [ -81.956818316999943, 28.945674326000074 ], [ -81.956837076999989, 28.945671239000035 ], [ -81.956855838999957, 28.945667807000063 ], [ -81.956874600999981, 28.945664031000035 ], [ -81.956893167999965, 28.945660257000043 ], [ -81.956994755999972, 28.945639455000048 ], [ -81.95708738899998, 28.945611844000041 ], [ -81.95719928699998, 28.945570920000023 ], [ -81.957323162999955, 28.94552823500004 ], [ -81.957464042999959, 28.945472739000024 ], [ -81.957577029999982, 28.945426308000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955273138999985, 28.94470885800007 ], [ -81.955245830999957, 28.944982138000057 ], [ -81.955229753999959, 28.945156460000078 ], [ -81.955230871999959, 28.945243516000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010470495999982, 28.905284789000063 ], [ -82.010566062999942, 28.905289286000027 ], [ -82.010704296999961, 28.905305793000025 ], [ -82.010836438999945, 28.905318906000048 ], [ -82.010945988999936, 28.905336036000051 ], [ -82.011055538999983, 28.90534887900003 ], [ -82.011148047999939, 28.905361725000034 ], [ -82.011262466999938, 28.905372425000053 ], [ -82.011389058999953, 28.90539383600003 ], [ -82.011496177999959, 28.90542595900007 ], [ -82.011593557999959, 28.905458083000042 ], [ -82.011688504999938, 28.90549449100007 ], [ -82.011768844999949, 28.90552447400006 ], [ -82.011871094999947, 28.905565166000031 ], [ -82.011970909999945, 28.905605859000048 ], [ -82.012073161999979, 28.905646549000039 ], [ -82.012165674999949, 28.905693668000026 ], [ -82.012250883999968, 28.90573650400006 ], [ -82.012340964999964, 28.905790049000075 ], [ -82.012418872999945, 28.90584573700005 ], [ -82.012506518999942, 28.905903567000053 ], [ -82.012586861999978, 28.905959255000027 ], [ -82.012655032999987, 28.906008518000078 ], [ -82.012691552999968, 28.906042790000072 ], [ -82.012732942999946, 28.906089912000027 ], [ -82.012774336999939, 28.906154173000061 ], [ -82.012800154999979, 28.906224591000068 ], [ -82.012808758999938, 28.906283376000033 ], [ -82.01281462999998, 28.906365195000035 ], [ -82.012814642999956, 28.906467296000073 ], [ -82.012814656999979, 28.906582118000074 ], [ -82.012815785999976, 28.90667899400006 ], [ -82.012810935999937, 28.906826803000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009408371999939, 28.905565629000023 ], [ -82.009492657999942, 28.905520370000033 ], [ -82.009588889999975, 28.905474641000069 ], [ -82.009670364999977, 28.905436813000051 ], [ -82.009758, 28.905402533000029 ], [ -82.009850503999985, 28.905368252000073 ], [ -82.009940574999973, 28.905340397000032 ], [ -82.010025777999942, 28.905318969000064 ], [ -82.010125586999948, 28.905301825000038 ], [ -82.010253696999939, 28.905289230000051 ], [ -82.010390937999944, 28.905286809000074 ], [ -82.010470495999982, 28.905284789000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010632030999943, 28.906132938000042 ], [ -82.010616604999939, 28.906064419000074 ], [ -82.010598677999951, 28.905990088000067 ], [ -82.010575631999984, 28.905908999000076 ], [ -82.010543623999979, 28.905818901000032 ], [ -82.010498092999967, 28.905687383000043 ], [ -82.010478608999961, 28.905610267000043 ], [ -82.010473734999948, 28.905558856000027 ], [ -82.010468860999936, 28.905513871000039 ], [ -82.010470495999982, 28.905284789000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961605805999966, 28.872899478000079 ], [ -81.961847205999959, 28.873083770000051 ], [ -81.962026098999957, 28.873218978000068 ], [ -81.96218565199996, 28.873336089000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96218565199996, 28.873336089000077 ], [ -81.962449158999959, 28.873531983000078 ], [ -81.962638930999958, 28.873679966000054 ], [ -81.962737211, 28.87376764000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96218565199996, 28.873336089000077 ], [ -81.962704461999977, 28.872834013000045 ], [ -81.962811537999983, 28.872749780000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962737211, 28.87376764000004 ], [ -81.963089509999975, 28.873478764000026 ], [ -81.963409998999964, 28.873229819000073 ], [ -81.963732911999955, 28.872969167000065 ], [ -81.963824827999986, 28.872888310000064 ], [ -81.963868369999943, 28.872843624000041 ], [ -81.963914336999949, 28.872780846000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963914336999949, 28.872780846000069 ], [ -81.963950627999964, 28.872722322000072 ], [ -81.963986919999968, 28.872664864000058 ], [ -81.964041354999949, 28.87258399500007 ], [ -81.964087319999976, 28.872526539000035 ], [ -81.964142950999985, 28.872481854000057 ], [ -81.964228815999945, 28.872416960000066 ], [ -81.964314677999937, 28.872362705000057 ], [ -81.964387237999972, 28.872314835000054 ], [ -81.964425941999934, 28.87227333900006 ], [ -81.964448928999957, 28.872230775000048 ], [ -81.964462244999936, 28.872179696000046 ], [ -81.964459844999965, 28.872131803000059 ], [ -81.96444990699996, 28.872085603000073 ], [ -81.964353604999985, 28.871939354000062 ], [ -81.964296296999976, 28.87186194800006 ], [ -81.964239469999939, 28.871805691000077 ], [ -81.964145242999962, 28.871767144000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960311336999951, 28.873324436000075 ], [ -81.961058372999958, 28.872495315000037 ], [ -81.961488254999949, 28.872009972000058 ], [ -81.961634500999935, 28.871850140000049 ], [ -81.961688531999982, 28.871761281000033 ], [ -81.961732631999951, 28.871718817000044 ], [ -81.961781172999963, 28.871677415000079 ], [ -81.961849701999938, 28.871633157000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013249477999977, 28.941558023000027 ], [ -82.013065241999982, 28.941563444000053 ], [ -82.012866678999956, 28.941572466000025 ], [ -82.012644725999962, 28.941581615000075 ], [ -82.012518762999946, 28.941587520000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011808928999983, 28.941589102000023 ], [ -82.011403609999945, 28.941589137000051 ], [ -82.011053560999983, 28.941587366000078 ], [ -82.010621630999935, 28.941589201000056 ], [ -82.010222452999983, 28.941591033000066 ], [ -82.009879076999937, 28.941588762000038 ], [ -82.009488081999962, 28.941588790000026 ], [ -82.00909368899994, 28.941588818000071 ], [ -82.008823391999954, 28.941588836000051 ], [ -82.008716292999964, 28.941588843000034 ], [ -82.008652679999955, 28.941584950000049 ], [ -82.008599554999989, 28.941568840000059 ], [ -82.00855009299994, 28.941541450000045 ], [ -82.008520780999959, 28.941515671000047 ], [ -82.008487803999969, 28.941478611000036 ], [ -82.008469479999974, 28.941433493000034 ], [ -82.008463982999956, 28.941393210000058 ], [ -82.008464, 28.941306651000048 ], [ -82.008461939999961, 28.941155395000067 ], [ -82.00846192399996, 28.940953721000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008465813999976, 28.938423791000048 ], [ -82.008464431999982, 28.938257090000036 ], [ -82.008464401999959, 28.937887186000069 ], [ -82.008460450999962, 28.937361897000073 ], [ -82.008460413999956, 28.936905707000051 ], [ -82.008464297999978, 28.936604902000056 ], [ -82.00846573299998, 28.936310306000053 ], [ -82.008470576999969, 28.936250590000043 ], [ -82.008484590999956, 28.936173818000043 ], [ -82.008500949999984, 28.936119629000075 ], [ -82.008533667999984, 28.936033744000042 ], [ -82.008574564999947, 28.935943770000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024094943999955, 28.91765908800005 ], [ -82.024248621999959, 28.91781041400003 ], [ -82.024481977999983, 28.91800429400007 ], [ -82.024611640999979, 28.918112489000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023478010999952, 28.916750055000023 ], [ -82.023479104999979, 28.916838976000065 ], [ -82.023488793999945, 28.916899516000058 ], [ -82.023500632999969, 28.916947759000038 ], [ -82.023524297999984, 28.917000728000062 ], [ -82.023561941999958, 28.917063155000051 ], [ -82.023601735999989, 28.917118014000039 ], [ -82.023646903999975, 28.917169089000026 ], [ -82.023766790999957, 28.917294079000044 ], [ -82.023991879999983, 28.917541311000036 ], [ -82.024094943999955, 28.91765908800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021916569999973, 28.916741252000065 ], [ -82.021970990999989, 28.916741620000039 ], [ -82.022168928999974, 28.916741211000044 ], [ -82.022336320999955, 28.916746373000024 ], [ -82.022578179999982, 28.916746332000059 ], [ -82.022794250999937, 28.916746296000042 ], [ -82.022984729999962, 28.916746264000039 ], [ -82.023190445999944, 28.916746228000079 ], [ -82.023303755999962, 28.916746209000053 ], [ -82.023415614999976, 28.916747679000025 ], [ -82.023478010999952, 28.916750055000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023478010999952, 28.916750055000023 ], [ -82.023570637999967, 28.916749412000058 ], [ -82.023678653, 28.916751153000064 ], [ -82.023843936999981, 28.916755053000031 ], [ -82.023993699999949, 28.916754618000027 ], [ -82.024178725999946, 28.916754585000035 ], [ -82.024358523999979, 28.916759429000024 ], [ -82.024481992999938, 28.916759407000029 ], [ -82.024574593999944, 28.916759390000038 ], [ -82.02467833299994, 28.916759371000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02349686499997, 28.916402598000047 ], [ -82.023493449999989, 28.916493024000033 ], [ -82.02349118799998, 28.916561152000043 ], [ -82.023483367999972, 28.916667755000049 ], [ -82.023478010999952, 28.916750055000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966282292999949, 28.866935117000025 ], [ -81.966163992999952, 28.866966568000066 ], [ -81.966037988999972, 28.866997291000075 ], [ -81.965938398999981, 28.867017364000048 ], [ -81.965866874999961, 28.867021382000075 ], [ -81.96580727099996, 28.867020559000025 ], [ -81.965746752999962, 28.867015701000071 ], [ -81.965639471999964, 28.866999530000044 ], [ -81.965580045999957, 28.866988036000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967038819999971, 28.866865079000036 ], [ -81.966933371999971, 28.866854560000036 ], [ -81.966829756999971, 28.866846463000059 ], [ -81.96668854099994, 28.866850463000048 ], [ -81.966558323999948, 28.866868996000051 ], [ -81.966465702999983, 28.866889153000045 ], [ -81.966366661999984, 28.866913344000068 ], [ -81.966282292999949, 28.866935117000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967072414999961, 28.86788094800005 ], [ -81.967038577999972, 28.86715042000003 ], [ -81.967032378999988, 28.866934495000066 ], [ -81.967038819999971, 28.866865079000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967769567999937, 28.868030293000061 ], [ -81.967795142999989, 28.867952408000065 ], [ -81.96779762999995, 28.867815724000025 ], [ -81.967793996999944, 28.867705946000058 ], [ -81.967786706999959, 28.867554194000036 ], [ -81.967780633999951, 28.867425043000026 ], [ -81.967770479999956, 28.86728609100004 ], [ -81.967763573999946, 28.867235320000077 ], [ -81.967748591999964, 28.86719266800003 ], [ -81.967723224999986, 28.867156109000064 ], [ -81.967682863999983, 28.867120559000057 ], [ -81.967614818999948, 28.867079927000077 ], [ -81.967493719999936, 28.867014911000069 ], [ -81.967364544999953, 28.86695598700004 ], [ -81.967252459999941, 28.866914370000075 ], [ -81.967113103999964, 28.866875709000055 ], [ -81.967038819999971, 28.866865079000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967769567999937, 28.868030293000061 ], [ -81.968244815999981, 28.868168948000061 ], [ -81.968465747999971, 28.86823597800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968465747999971, 28.86823597800003 ], [ -81.968489000999966, 28.868161722000025 ], [ -81.968562432999988, 28.86791850700007 ], [ -81.968582024999989, 28.867817345000049 ], [ -81.968595518999962, 28.867669902000046 ], [ -81.968599223999945, 28.867545058000076 ], [ -81.96859176199996, 28.867386270000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967975839999951, 28.86943208200006 ], [ -81.968009672999983, 28.869442921000029 ], [ -81.968106560999956, 28.869474083000057 ], [ -81.968219022999961, 28.869507276000036 ], [ -81.968302395999956, 28.869539266000061 ], [ -81.968369535999955, 28.869577039000035 ], [ -81.968415666999988, 28.869616313000051 ], [ -81.968475631999979, 28.869681312000068 ], [ -81.968561728999987, 28.869793703000028 ], [ -81.968657051999969, 28.869918282000071 ], [ -81.968877887999952, 28.870206566000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968123659999947, 28.871020451000049 ], [ -81.968286336999938, 28.870874493000031 ], [ -81.968358801999955, 28.870802671000035 ], [ -81.968437689999973, 28.870716321000032 ], [ -81.968541536999965, 28.870590708000066 ], [ -81.968660607999936, 28.870436279000046 ], [ -81.968787382999949, 28.870295873000032 ], [ -81.968877887999952, 28.870206566000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967538827999988, 28.871362935000036 ], [ -81.967662369999971, 28.871299228000055 ], [ -81.967753166999955, 28.871254451000027 ], [ -81.967826082999977, 28.871215118000066 ], [ -81.967904501999953, 28.871167311000079 ], [ -81.967990425999972, 28.871111787000075 ], [ -81.968123659999947, 28.871020451000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013562707999938, 28.917417077000039 ], [ -82.013670684999965, 28.917386239000052 ], [ -82.013859124999954, 28.917380237000032 ], [ -82.014373532999969, 28.917384097000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985556203999977, 28.87013151900004 ], [ -81.98547569699997, 28.869953296000062 ], [ -81.985308199999963, 28.869533325000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985308199999963, 28.869533325000077 ], [ -81.985491217999936, 28.869477526000026 ], [ -81.985643067999945, 28.869439353000075 ], [ -81.985843724999938, 28.869405959000062 ], [ -81.986063360999935, 28.86938927500006 ], [ -81.986315530999946, 28.869389301000069 ], [ -81.986619218999977, 28.869403652000074 ], [ -81.987041654999985, 28.869431061000057 ], [ -81.987112558999968, 28.86944840600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985308199999963, 28.869533325000077 ], [ -81.985215489999973, 28.869313771000066 ], [ -81.985079330999952, 28.868968108000047 ], [ -81.985045551999974, 28.868910558000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985851542999967, 28.871387703000039 ], [ -81.986334627999952, 28.871368202000042 ], [ -81.986736662999988, 28.871358521000047 ], [ -81.986982397999952, 28.87136599300004 ], [ -81.987086786999953, 28.871390275000067 ], [ -81.987149813999963, 28.871412820000046 ], [ -81.987223636999943, 28.871446818000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985851542999967, 28.871387703000039 ], [ -81.985845168999958, 28.871235709000075 ], [ -81.985823237999966, 28.87104465300007 ], [ -81.985763846999987, 28.870758263000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985561821999966, 28.87262725000005 ], [ -81.98571213799994, 28.872329672000035 ], [ -81.985776129999977, 28.872212379000075 ], [ -81.985834301999944, 28.872072291000052 ], [ -81.985855738999987, 28.871978 ], [ -81.985865692999937, 28.871847813000045 ], [ -81.985856643999966, 28.871508173000052 ], [ -81.985851542999967, 28.871387703000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972534613999983, 28.950367779000032 ], [ -81.97254738099997, 28.95087780800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970405605999986, 28.87124599200007 ], [ -81.970474776999936, 28.871220211000036 ], [ -81.970565046, 28.871190309000042 ], [ -81.97071041099997, 28.871150099000033 ], [ -81.970847565999975, 28.871132588000023 ], [ -81.970957754999972, 28.871130547000064 ], [ -81.971065597999939, 28.871136762000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969763146999981, 28.871539921000078 ], [ -81.969871007999984, 28.871482161000074 ], [ -81.969991764999975, 28.871419248000052 ], [ -81.970103139999935, 28.871368713000038 ], [ -81.970252029999983, 28.871306836000031 ], [ -81.970405605999986, 28.87124599200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968123659999947, 28.871020451000049 ], [ -81.968175000999963, 28.871072494000032 ], [ -81.96822263699994, 28.871112727000025 ], [ -81.96828218099995, 28.87116087000004 ], [ -81.968336454999985, 28.871204199000033 ], [ -81.968399317999967, 28.871258187000024 ], [ -81.968467497999939, 28.871306903000061 ], [ -81.968538884999987, 28.871367445000033 ], [ -81.968607631999987, 28.871418675000029 ], [ -81.968686952999974, 28.871486204000064 ], [ -81.968776845999969, 28.87156770200005 ], [ -81.968869386999984, 28.871642217000044 ], [ -81.968940773999975, 28.871705087000066 ], [ -81.96900687599998, 28.871758644000067 ], [ -81.96907033399998, 28.871809873000075 ], [ -81.969141730999979, 28.871842481000044 ], [ -81.969210489999966, 28.871849481000027 ], [ -81.969271894999963, 28.871845230000076 ], [ -81.969316444999947, 28.871827698000061 ], [ -81.969357479999985, 28.87180191300007 ], [ -81.969411413999978, 28.871761683000045 ], [ -81.969499346999953, 28.871705985000062 ], [ -81.969588452999972, 28.871647190000033 ], [ -81.969682248999959, 28.871589430000029 ], [ -81.969763146999981, 28.871539921000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971065597999939, 28.871136762000049 ], [ -81.971118346999958, 28.871140901000047 ], [ -81.971176953999986, 28.871150199000056 ], [ -81.97125079999995, 28.871166724000034 ], [ -81.971341052999946, 28.871192539000049 ], [ -81.971433353999942, 28.871228611000049 ], [ -81.971506230999978, 28.871265678000043 ], [ -81.971556472999964, 28.871288967000055 ], [ -81.971611543999984, 28.871310110000024 ], [ -81.971665463999955, 28.871317343000044 ], [ -81.971712354999966, 28.871313226000041 ], [ -81.971749866999971, 28.871303947000058 ], [ -81.971795588999953, 28.871286416000032 ], [ -81.971835453999972, 28.87125340700004 ], [ -81.971883528999967, 28.871202857000071 ], [ -81.971933361999959, 28.87114766600007 ], [ -81.97199902899996, 28.871065132000069 ], [ -81.97206781899996, 28.870990855000059 ], [ -81.972167500999944, 28.870874725000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969763146999981, 28.871539921000078 ], [ -81.969731509999974, 28.871490386000062 ], [ -81.969599099999982, 28.871314944000062 ], [ -81.969477794999989, 28.871188412000038 ], [ -81.969348241999967, 28.871067330000074 ], [ -81.969184313999961, 28.870929945000057 ], [ -81.969002751999938, 28.870757808000064 ], [ -81.968975388, 28.870707839000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970405605999986, 28.87124599200007 ], [ -81.970356395999943, 28.87117065700005 ], [ -81.970088059999966, 28.870812555000043 ], [ -81.969783296999935, 28.870420370000033 ], [ -81.969634660999986, 28.870194187000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008307036999952, 28.917913923000071 ], [ -82.008385807999957, 28.917900717000066 ], [ -82.008513337999943, 28.917882009000039 ], [ -82.008672127999944, 28.917856696000058 ], [ -82.008846740999957, 28.917832726000029 ], [ -82.009000367999988, 28.917807101000051 ], [ -82.009019317999957, 28.91780435000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007569367999963, 28.916874463000056 ], [ -82.008286063999947, 28.916872928000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008307036999952, 28.917913923000071 ], [ -82.008286063999947, 28.916872928000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009019317999957, 28.91780435000004 ], [ -82.009182488999954, 28.917783468000039 ], [ -82.00939445299997, 28.917753615000038 ], [ -82.009630238999989, 28.917715400000077 ], [ -82.009736445999977, 28.91770604900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008286063999947, 28.916872928000032 ], [ -82.00900156199998, 28.916872630000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00900156199998, 28.916872630000057 ], [ -82.009341780999989, 28.916874066000048 ], [ -82.009489434999978, 28.916872063000028 ], [ -82.009559798999987, 28.916881404000037 ], [ -82.009622197999988, 28.916905928000062 ], [ -82.009666010999979, 28.916937463000068 ], [ -82.009690708999983, 28.916967893000049 ], [ -82.009712482999987, 28.916997031000051 ], [ -82.009723106999957, 28.917026232000069 ], [ -82.009729593999964, 28.917066211000076 ], [ -82.009734488999982, 28.917181375000041 ], [ -82.009734517999959, 28.917492494000044 ], [ -82.009736445999977, 28.91770604900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009736445999977, 28.91770604900006 ], [ -82.009774946999983, 28.917704878000052 ], [ -82.009885355999984, 28.917709547000072 ], [ -82.009978288999946, 28.917725692000033 ], [ -82.010066634999987, 28.917751930000065 ], [ -82.010140574, 28.917783400000076 ], [ -82.010223667999981, 28.917828152000027 ], [ -82.010291500999983, 28.917865446000064 ], [ -82.01035933299994, 28.917904231000023 ], [ -82.010421462999943, 28.917941072000076 ], [ -82.010499417999938, 28.917982319000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010499417999938, 28.917982319000032 ], [ -82.010723267999936, 28.917674826000052 ], [ -82.010815039999954, 28.917553686000076 ], [ -82.010860924999974, 28.917482011000061 ], [ -82.010901069999989, 28.917393178000054 ], [ -82.010930890999987, 28.917291221000028 ], [ -82.010942355999987, 28.917229645000077 ], [ -82.010948083999949, 28.917140814000049 ], [ -82.010950354999977, 28.916921765000041 ], [ -82.010950323999964, 28.916621962000079 ], [ -82.010956214999965, 28.916450412000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966066246999958, 28.887412665000056 ], [ -81.965990456999975, 28.887395301000026 ], [ -81.965790373999937, 28.887339216000044 ], [ -81.965585615999942, 28.887285687000031 ], [ -81.965440099999967, 28.887245625000048 ], [ -81.965368789999957, 28.887225086000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965198727999962, 28.888225985000076 ], [ -81.965357219999987, 28.887277624000035 ], [ -81.965368789999957, 28.887225086000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96590101399994, 28.888396137000029 ], [ -81.966066246999958, 28.887412665000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965198727999962, 28.888225985000076 ], [ -81.965343047999966, 28.888262807000046 ], [ -81.965530354999942, 28.888308995000045 ], [ -81.965714375999937, 28.888353228000028 ], [ -81.965838194999947, 28.888383043000033 ], [ -81.96590101399994, 28.888396137000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96448178199995, 28.888120944000036 ], [ -81.96459118699994, 28.887448887000062 ], [ -81.964642852999987, 28.887146031000043 ], [ -81.964660060999961, 28.887083582000059 ], [ -81.964684688999967, 28.887035754000067 ], [ -81.964713414999949, 28.88699514700005 ], [ -81.964758551999978, 28.886950033000062 ], [ -81.964829327999951, 28.886901314000056 ], [ -81.964881636999962, 28.88687154400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965368789999957, 28.887225086000058 ], [ -81.965282588999969, 28.88719188500005 ], [ -81.965212109999982, 28.887159179000037 ], [ -81.965151256999945, 28.887126129000023 ], [ -81.96509313599995, 28.88708643700005 ], [ -81.965022076999958, 28.88702862100007 ], [ -81.964958515999967, 28.886968135000075 ], [ -81.964918537999949, 28.886920290000035 ], [ -81.964881636999962, 28.88687154400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963477570999942, 28.88723720400003 ], [ -81.963885983999944, 28.88730053200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963885983999944, 28.88730053200004 ], [ -81.963976984999988, 28.886766667000074 ], [ -81.96399056499996, 28.886658393000062 ], [ -81.963994425999942, 28.886626775000025 ], [ -81.963993793999975, 28.886597978000054 ], [ -81.963989314999935, 28.886562968000078 ], [ -81.96394959099996, 28.886413893000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964881636999962, 28.88687154400003 ], [ -81.964842694999959, 28.886796858000025 ], [ -81.964805033999937, 28.886709225000061 ], [ -81.964773777999937, 28.886607827000034 ], [ -81.964753906999988, 28.886491411000065 ], [ -81.964742550999972, 28.886422563000053 ], [ -81.964737111999966, 28.886400016000039 ], [ -81.964725501999965, 28.886371237000048 ], [ -81.964712322999958, 28.886348816000066 ], [ -81.964694227999985, 28.88632616700005 ], [ -81.964671158999977, 28.886301945000071 ], [ -81.964649363999968, 28.886283207000076 ], [ -81.964611758, 28.886264810000057 ], [ -81.964563405999968, 28.886247274000027 ], [ -81.964509362999934, 28.886242253000034 ], [ -81.964460757999973, 28.886247585000035 ], [ -81.964416910999944, 28.886257249000039 ], [ -81.964320185999952, 28.886292272000048 ], [ -81.964142079999988, 28.886352963000036 ], [ -81.96394959099996, 28.886413893000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96394959099996, 28.886413893000054 ], [ -81.963828323999962, 28.886444351000023 ], [ -81.963708341999961, 28.886473680000051 ], [ -81.963480404999984, 28.886526576000051 ], [ -81.963239905999956, 28.886575847000074 ], [ -81.962944745999948, 28.886627365000038 ], [ -81.96271147799996, 28.886674866000078 ], [ -81.962599108999939, 28.886706128000071 ], [ -81.962510914999939, 28.886744907000036 ], [ -81.96234874299995, 28.886838743000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956068998999967, 28.871002093000072 ], [ -81.956157317999953, 28.870999901000062 ], [ -81.956335219999971, 28.870996627000068 ], [ -81.956482843999936, 28.870988900000043 ], [ -81.956630064999956, 28.870981204000032 ], [ -81.956694527999957, 28.870998039000028 ], [ -81.956751819999965, 28.871037992000026 ], [ -81.956794778999949, 28.871090553000045 ], [ -81.956823406999945, 28.871155719000058 ], [ -81.956852037999965, 28.871210376000079 ], [ -81.956899086999954, 28.871277790000079 ], [ -81.956943226999954, 28.871327782000037 ], [ -81.956981064999979, 28.871358890000067 ], [ -81.957018097999935, 28.871388081000077 ], [ -81.957181448999961, 28.871479517000068 ], [ -81.957336622999946, 28.871567845000072 ], [ -81.957518061999963, 28.87165617900007 ], [ -81.95770427399998, 28.871755026000073 ], [ -81.957925827999986, 28.871871213000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955268946999979, 28.871108971000069 ], [ -81.955459990999941, 28.871069099000067 ], [ -81.955605661999982, 28.871037620000038 ], [ -81.955756103999988, 28.871018752000055 ], [ -81.955923257999984, 28.871006196000053 ], [ -81.956068998999967, 28.871002093000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957302610999989, 28.872988684000063 ], [ -81.957357591999937, 28.872845776000077 ], [ -81.957441255999981, 28.872625109000069 ], [ -81.95754870899998, 28.872403510000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95754870899998, 28.872403510000026 ], [ -81.957221821999951, 28.872260279000045 ], [ -81.957139828999971, 28.872216940000044 ], [ -81.957045220999987, 28.872164712000028 ], [ -81.956846956999982, 28.872049458000049 ], [ -81.956587188999947, 28.87189518200006 ], [ -81.956528341999956, 28.871856152000078 ], [ -81.956426767999972, 28.871773536000035 ], [ -81.956372766999948, 28.871724081000025 ], [ -81.956314587999941, 28.871657897000034 ], [ -81.956268096999963, 28.871599661000062 ], [ -81.95621196899998, 28.871519142000068 ], [ -81.95616470799996, 28.871429705000025 ], [ -81.95613067499994, 28.871351952000055 ], [ -81.956104208999989, 28.871277534000058 ], [ -81.956085323999957, 28.87118423700008 ], [ -81.956068970999979, 28.871066508000069 ], [ -81.956068998999967, 28.871002093000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95754870899998, 28.872403510000026 ], [ -81.957673050999972, 28.872200607000025 ], [ -81.957811625999966, 28.872005178000052 ], [ -81.957925827999986, 28.871871213000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957302610999989, 28.872988684000063 ], [ -81.957168902999967, 28.87295711400003 ], [ -81.957131799999956, 28.872950626000033 ], [ -81.957097272999988, 28.872942378000062 ], [ -81.957068405999962, 28.872933115000023 ], [ -81.957041913999944, 28.872922277000043 ], [ -81.956769870999949, 28.872770231000061 ], [ -81.956329856999957, 28.872520270000052 ], [ -81.955974284999968, 28.872284950000051 ], [ -81.95592486399994, 28.87224991100004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955183309999939, 28.870356480000055 ], [ -81.955185885999981, 28.869915093000031 ], [ -81.955195614, 28.869503133000023 ], [ -81.955195746999948, 28.869192060000046 ], [ -81.955199862999962, 28.868681898000034 ], [ -81.955181719999985, 28.868494241000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953722198999969, 28.868299355000033 ], [ -81.954272008999965, 28.86842667600007 ], [ -81.954730421999955, 28.86851721000005 ], [ -81.95484980599997, 28.868527759000074 ], [ -81.955005013999937, 28.868519405000029 ], [ -81.955181719999985, 28.868494241000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958811647999937, 28.870872769000073 ], [ -81.958360382999956, 28.870545900000025 ], [ -81.958298490999937, 28.870489503000044 ], [ -81.958276559999945, 28.870460337000054 ], [ -81.958261538999977, 28.870432549000043 ], [ -81.958218816999988, 28.870334479000064 ], [ -81.958172691999948, 28.870213014000058 ], [ -81.95816469, 28.870191943000066 ], [ -81.958149942999967, 28.870126366000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967039801999988, 28.882951105000075 ], [ -81.967109156999982, 28.882923412000025 ], [ -81.967280767999966, 28.882844480000074 ], [ -81.967386254999951, 28.882793243000037 ], [ -81.967438210999944, 28.882765545000041 ], [ -81.967487021999943, 28.88272676400004 ], [ -81.967532688999938, 28.882678283000075 ], [ -81.967565759999957, 28.882632569000066 ], [ -81.967592539999941, 28.882578542000033 ], [ -81.967618534999986, 28.88250765600003 ], [ -81.967738294999947, 28.882110512000054 ], [ -81.967876263999983, 28.881633703000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982819956999947, 28.912939796000046 ], [ -81.983102931999952, 28.91302044400004 ], [ -81.98327944, 28.913071820000027 ], [ -81.98334708799996, 28.913093759000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98334708799996, 28.913093759000049 ], [ -81.983376789999966, 28.912897436000037 ], [ -81.983392236999975, 28.912788831000057 ], [ -81.983408600999951, 28.912684788000035 ], [ -81.983415836999939, 28.912640442000054 ], [ -81.983427766999966, 28.912553467000066 ], [ -81.983439894999947, 28.912449991000074 ], [ -81.983454368999958, 28.91234410900006 ], [ -81.983462777999989, 28.912287731000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960891273999948, 28.894753154000057 ], [ -81.960899653999945, 28.894801285000028 ], [ -81.960960299999954, 28.895063263000054 ], [ -81.96100886399995, 28.895255792000057 ], [ -81.961055568999939, 28.895403704000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95894709099997, 28.89612390700006 ], [ -81.959519664999959, 28.896421449000059 ], [ -81.959598169999936, 28.896463295000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959598169999936, 28.896463295000046 ], [ -81.960017837999942, 28.896683555000038 ], [ -81.960039711999968, 28.896692156000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95945011699996, 28.897142949000056 ], [ -81.959665145999963, 28.897020353000073 ], [ -81.95988396599995, 28.896876032000023 ], [ -81.959932614999957, 28.896844075000047 ], [ -81.960039711999968, 28.896692156000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958897301999968, 28.89756225900004 ], [ -81.959178856999984, 28.89733579500006 ], [ -81.959371312999963, 28.89720279900007 ], [ -81.95945011699996, 28.897142949000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958023877999949, 28.896399676000044 ], [ -81.958972572999983, 28.89688641500004 ], [ -81.959294378999971, 28.897053089000053 ], [ -81.95945011699996, 28.897142949000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960039711999968, 28.896692156000029 ], [ -81.960151418999942, 28.896737225000038 ], [ -81.96024867999995, 28.896769225000071 ], [ -81.960363079, 28.896787670000037 ], [ -81.960463792999974, 28.896792427000037 ], [ -81.960546541999975, 28.89679062700003 ], [ -81.960771371999954, 28.896763879000048 ], [ -81.961032729999943, 28.896731982000063 ], [ -81.961495671999955, 28.896672297000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961055568999939, 28.895403704000046 ], [ -81.961098500999981, 28.89550771100005 ], [ -81.961168267999938, 28.895673174000024 ], [ -81.961228640999934, 28.89581972700006 ], [ -81.961330602999965, 28.896073830000034 ], [ -81.961416647999954, 28.896338390000039 ], [ -81.961458229999948, 28.896507617000054 ], [ -81.961495671999955, 28.896672297000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992701133999958, 28.866116885000054 ], [ -81.992701133999958, 28.866113447000032 ], [ -81.993316656, 28.866116841000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992132597999955, 28.866117958000075 ], [ -81.992701133999958, 28.866116885000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982183723999981, 28.913462957000036 ], [ -81.98205121899997, 28.913476400000036 ], [ -81.98195328099996, 28.913486962000036 ], [ -81.981857316999935, 28.913497077000045 ], [ -81.981776578999984, 28.913502985000036 ], [ -81.981664129999956, 28.913515127000039 ], [ -81.981542224999941, 28.913529205000032 ], [ -81.981395310999972, 28.913546346000032 ], [ -81.981238318999942, 28.913564084000029 ], [ -81.981054413999971, 28.913581817000079 ], [ -81.980897422999988, 28.913595608000037 ], [ -81.980758373999947, 28.913609402000077 ], [ -81.980612593999979, 28.913627140000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980754050999963, 28.912719449000065 ], [ -81.980852725999966, 28.912739196000075 ], [ -81.980967103999944, 28.912731319000045 ], [ -81.981157735999943, 28.912711612000066 ], [ -81.981384996999964, 28.912687556000037 ], [ -81.981629765999969, 28.91265856900003 ], [ -81.981872799999962, 28.912621945000069 ], [ -81.982128840999962, 28.912573616000032 ], [ -81.982376330999955, 28.912527184000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970917758999974, 28.888278907000029 ], [ -81.970717761999936, 28.888278864000029 ], [ -81.970563467999966, 28.888278830000047 ], [ -81.970419774999982, 28.88827853600003 ], [ -81.970366619999936, 28.888282684000046 ], [ -81.970320137999977, 28.888297115000057 ], [ -81.970287570999972, 28.888314285000035 ], [ -81.970258824999974, 28.888335359000052 ], [ -81.970237260999966, 28.888363809000055 ], [ -81.970223401999988, 28.88838979600007 ], [ -81.970209702999966, 28.888416501000052 ], [ -81.970201312999961, 28.888446009000063 ], [ -81.970195238999963, 28.888528676000078 ], [ -81.970188151999935, 28.888720159000059 ], [ -81.970184588999984, 28.888889984000059 ], [ -81.970173966999937, 28.889149191000058 ], [ -81.970160033999946, 28.889383645000066 ], [ -81.970149445999937, 28.889525624000044 ], [ -81.970135334999952, 28.889692353000044 ], [ -81.970129498999938, 28.889803657000073 ], [ -81.970137442999942, 28.889837208000074 ], [ -81.970153, 28.889876208000032 ], [ -81.970176942999956, 28.889905723000027 ], [ -81.970212415999981, 28.889933014000064 ], [ -81.970249980999938, 28.889953167000044 ], [ -81.970296681999969, 28.889970040000037 ], [ -81.970457154999963, 28.889973238000039 ], [ -81.970590085999959, 28.889970104000042 ], [ -81.970667929999934, 28.889964852000048 ], [ -81.970730208999953, 28.889944841000045 ], [ -81.970784102999971, 28.889908388000038 ], [ -81.970812859999967, 28.889877406000039 ], [ -81.970836662999943, 28.889831392000076 ], [ -81.970854272999986, 28.88971691900008 ], [ -81.970868190999965, 28.889535063000039 ], [ -81.970882298999982, 28.88936833300005 ], [ -81.970896420999964, 28.889155538000068 ], [ -81.970907014999966, 28.888988807000032 ], [ -81.970910587999981, 28.888781853000069 ], [ -81.970914187999938, 28.888479672000074 ], [ -81.970917743999962, 28.888331506000043 ], [ -81.970917758999974, 28.888278907000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993532921999986, 28.954432860000054 ], [ -81.993669230999956, 28.954432867000037 ], [ -81.993868582999937, 28.954432825000026 ], [ -81.994005247999951, 28.954430408000064 ], [ -81.994094992999976, 28.954430412000079 ], [ -81.994183036999971, 28.954410838000058 ], [ -81.994265847999941, 28.954385987000023 ], [ -81.994337313999949, 28.954344582000033 ], [ -81.994386712999983, 28.954296723000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995072272999948, 28.953409499000031 ], [ -81.995154923999962, 28.953354653000076 ], [ -81.995195310999975, 28.953334921000078 ], [ -81.995240183999954, 28.953321110000047 ], [ -81.995292909999989, 28.953307297000038 ], [ -81.995344513999953, 28.953301379000038 ], [ -81.995393873999944, 28.953297434000035 ], [ -81.995442111999978, 28.953299410000056 ], [ -81.995738269999947, 28.953351713000075 ], [ -81.995991798999967, 28.953394148000029 ], [ -81.996234110999978, 28.953424742000038 ], [ -81.996469690999959, 28.953453361000072 ], [ -81.996744536999984, 28.953480995000064 ], [ -81.996873545999961, 28.953490865000049 ], [ -81.997013833999972, 28.953503127000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987039807999963, 28.873953865000033 ], [ -81.987159299999973, 28.874077477000071 ], [ -81.987324699999988, 28.874270292000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985556203999977, 28.87013151900004 ], [ -81.985717677999958, 28.870085411000048 ], [ -81.985867763999977, 28.870051057000069 ], [ -81.986012965999976, 28.870032813000023 ], [ -81.986154506999981, 28.870027458000038 ], [ -81.98631815799996, 28.870033739000064 ], [ -81.986509180999974, 28.870047763000059 ], [ -81.986736477999955, 28.870067724000023 ], [ -81.986918277999962, 28.870077711000079 ], [ -81.987131853999983, 28.870073738000031 ], [ -81.987207097999942, 28.87006569700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987207097999942, 28.87006569700003 ], [ -81.987230668999985, 28.870221965000042 ], [ -81.987236612999936, 28.870315360000063 ], [ -81.987230695999983, 28.870374307000077 ], [ -81.987214930999983, 28.870441923000044 ], [ -81.987185378999982, 28.870502600000066 ], [ -81.987126279999984, 28.870571946000041 ], [ -81.987057334999975, 28.87063435400006 ], [ -81.986978737999948, 28.870681395000076 ], [ -81.986903765999955, 28.870702103000042 ], [ -81.986800835999986, 28.87071816100007 ], [ -81.986467301999937, 28.87073119300004 ], [ -81.986136392999981, 28.870737828000074 ], [ -81.985840288999952, 28.870748659000071 ], [ -81.985763846999987, 28.870758263000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975029105999965, 28.854299603000072 ], [ -81.974887513999988, 28.854333176000068 ], [ -81.974776575999954, 28.854350693000072 ], [ -81.974513157999979, 28.854370036000034 ], [ -81.974354433999963, 28.854381984000042 ], [ -81.974245594999957, 28.854391943000053 ], [ -81.974199813999974, 28.85438676900003 ], [ -81.974157167999977, 28.854381947000036 ], [ -81.974119575999964, 28.854363183000032 ], [ -81.974089152999966, 28.854347998000037 ], [ -81.974012080999955, 28.854258154000036 ], [ -81.973903280999934, 28.854116402000045 ], [ -81.973789944999965, 28.853976647000025 ], [ -81.973752787999956, 28.853939831000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973752787999956, 28.853939831000048 ], [ -81.973672619999945, 28.853860394000037 ], [ -81.97357991299998, 28.853801691000058 ], [ -81.973491957999954, 28.853748569000061 ], [ -81.973363739999968, 28.853695099000049 ], [ -81.973246076999942, 28.853654153000036 ], [ -81.973167269999976, 28.853622219000044 ], [ -81.97309791899994, 28.85359445000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97309791899994, 28.85359445000006 ], [ -81.973034875999986, 28.853556967000031 ], [ -81.972974988999965, 28.853509772000052 ], [ -81.972842615, 28.853364031000069 ], [ -81.97267715299995, 28.853173874000049 ], [ -81.97253059999997, 28.853005925000048 ], [ -81.972412413999962, 28.852865736000069 ], [ -81.972316289999981, 28.852750532000073 ], [ -81.972237501999984, 28.852651985000023 ], [ -81.972187080999959, 28.852572872000053 ], [ -81.97215241899994, 28.852507641000045 ], [ -81.972117762999972, 28.852422980000028 ], [ -81.972087839999972, 28.852324442000054 ], [ -81.972074249999935, 28.852245050000079 ], [ -81.972062659999949, 28.852171784000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97309791899994, 28.85359445000006 ], [ -81.973204132999967, 28.853497619000052 ], [ -81.973302729999943, 28.853423604000056 ], [ -81.973397126999942, 28.853362989000061 ], [ -81.973510658999942, 28.853288902000031 ], [ -81.97360505599994, 28.853221549000068 ], [ -81.973627657999941, 28.853205981000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973627657999941, 28.853205981000031 ], [ -81.973730065999973, 28.853147464000074 ], [ -81.973833389999982, 28.853080112000043 ], [ -81.973933509999938, 28.853014529000063 ], [ -81.974007607999965, 28.852968748000023 ], [ -81.974062790999938, 28.852922963000026 ], [ -81.974094210999965, 28.85287719400003 ], [ -81.974111677999986, 28.852831379000065 ], [ -81.974117994999972, 28.852786972000047 ], [ -81.974109552999948, 28.852735716000041 ], [ -81.974091218999945, 28.852700926000068 ], [ -81.974059702999966, 28.852662062000036 ], [ -81.974009272999979, 28.852605155000049 ], [ -81.973911573999942, 28.852489952000042 ], [ -81.973804414999961, 28.852370583000038 ], [ -81.973727197999949, 28.852283138000075 ], [ -81.973635798999965, 28.852177651000034 ], [ -81.973539675999973, 28.852062448000027 ], [ -81.973448278999967, 28.85195002100005 ], [ -81.973396276999949, 28.851887561000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973396276999949, 28.851887561000069 ], [ -81.973360034999985, 28.85183898300005 ], [ -81.973306459999947, 28.851764033000052 ], [ -81.973235550999959, 28.851668263000079 ], [ -81.973169369999937, 28.85157943300004 ], [ -81.973087430999954, 28.851475334000042 ], [ -81.973046459999978, 28.851422592000063 ], [ -81.973018098999944, 28.851372626000057 ], [ -81.972994468999957, 28.851318499000058 ], [ -81.972969269999965, 28.851240779000079 ], [ -81.972934622999958, 28.851118649000057 ], [ -81.972881075999965, 28.850941005000038 ], [ -81.972829106999939, 28.850757810000061 ], [ -81.972769257999971, 28.850567674000047 ], [ -81.972737775999974, 28.850401136000073 ], [ -81.972739150999985, 28.850315972000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972739150999985, 28.850315972000033 ], [ -81.972748257999967, 28.850253545000044 ], [ -81.97277362799997, 28.85015383800004 ], [ -81.972834878999947, 28.850020230000041 ], [ -81.972894856999972, 28.849893359000077 ], [ -81.972936970999967, 28.849783327000068 ], [ -81.972958684999981, 28.849658693000038 ], [ -81.972958717999973, 28.849528441000075 ], [ -81.972965129999977, 28.849393699000075 ], [ -81.972972825999989, 28.849228640000035 ], [ -81.972974142999988, 28.849065825000025 ], [ -81.972983105999958, 28.848927714000069 ], [ -81.972985686999948, 28.848809815000038 ], [ -81.972978058999956, 28.848718861000066 ], [ -81.972952567999982, 28.848657099000036 ], [ -81.972901566999951, 28.848604315000046 ], [ -81.972864879999975, 28.848583690000055 ], [ -81.972811025999988, 28.848563873000046 ], [ -81.972717926999962, 28.848558240000045 ], [ -81.972604415999967, 28.848572814000079 ], [ -81.972480514999972, 28.848589882000056 ], [ -81.972375299999953, 28.848614688000055 ], [ -81.97232648399995, 28.848640462000049 ], [ -81.972292849999974, 28.848674833000075 ], [ -81.972271146999958, 28.848717801000078 ], [ -81.972258116999967, 28.848773187000063 ], [ -81.972252653999988, 28.848919292000062 ], [ -81.972247192999987, 28.849058712000044 ], [ -81.972245873999952, 28.849197053000069 ], [ -81.972240727999974, 28.849359866000043 ], [ -81.972234378999985, 28.849459934000038 ], [ -81.972226293999938, 28.849519816000054 ], [ -81.972217929999942, 28.849571775000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97167342299997, 28.849491951000061 ], [ -81.972217929999942, 28.849571775000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972272357999941, 28.851514457000064 ], [ -81.972288633999938, 28.851490586000068 ], [ -81.972298644999967, 28.851459993000049 ], [ -81.972297327999968, 28.851419921000058 ], [ -81.972290827999984, 28.851392227000076 ], [ -81.972272405999945, 28.851331106000032 ], [ -81.972240977999945, 28.851226057000076 ], [ -81.972210293999979, 28.851120961000049 ], [ -81.972184811999966, 28.851028880000058 ], [ -81.972172384999965, 28.850990251000042 ], [ -81.972158829999955, 28.850960373000078 ], [ -81.972143215999949, 28.850942799000052 ], [ -81.972125864999953, 28.850933628000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972125864999953, 28.850933628000064 ], [ -81.972131942999965, 28.85091529500005 ], [ -81.972135418999983, 28.850893904000031 ], [ -81.972117216999948, 28.85081903300005 ], [ -81.972095544999945, 28.850742632000049 ], [ -81.97206172999995, 28.850642547000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970302476999962, 28.85040267100004 ], [ -81.970379341999944, 28.850457086000063 ], [ -81.970475556999986, 28.850516156000026 ], [ -81.970560684999953, 28.850567908000073 ], [ -81.97067597299997, 28.850621626000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97067597299997, 28.850621626000077 ], [ -81.970765772999982, 28.850658315000032 ], [ -81.970843860999935, 28.850682397000071 ], [ -81.970957090999946, 28.850715653000066 ], [ -81.971067716999983, 28.850746618000073 ], [ -81.971200468999939, 28.850784463000025 ], [ -81.971328015999973, 28.850817722000045 ], [ -81.971460767999986, 28.850855566000064 ], [ -81.971611742999983, 28.850896851000073 ], [ -81.971718902999953, 28.850916736000045 ], [ -81.971820423999986, 28.850928216000057 ], [ -81.971931034999955, 28.850930016000063 ], [ -81.972035326999958, 28.850928219000025 ], [ -81.972081609999975, 28.850929035000036 ], [ -81.972125864999953, 28.850933628000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993032169999935, 28.893236236000064 ], [ -81.992912584999942, 28.893181046000052 ], [ -81.992717662999951, 28.893096465000042 ], [ -81.992539342999976, 28.893014292000032 ], [ -81.99239197199995, 28.892955888000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99370315699997, 28.895906748000073 ], [ -81.993922230999942, 28.895776964000049 ], [ -81.994125375999943, 28.895649087000038 ], [ -81.994325783999955, 28.895501960000047 ], [ -81.994520528999942, 28.895356893000042 ], [ -81.994663315999958, 28.895238638000023 ], [ -81.99484165299998, 28.895071913000038 ], [ -81.994984440999986, 28.89493440800004 ], [ -81.995079488999977, 28.894838850000042 ], [ -81.995116093999968, 28.894789338000066 ], [ -81.995135762999951, 28.894727436000039 ], [ -81.99513107699994, 28.894677916000035 ], [ -81.995114666999939, 28.894622208000044 ], [ -81.995093567999959, 28.894580941000072 ], [ -81.995044334999989, 28.894508724000048 ], [ -81.994955248999986, 28.894386986000029 ], [ -81.994783491999954, 28.894188400000075 ], [ -81.994781343999989, 28.894185651000043 ], [ -81.994601238999962, 28.894013517000076 ], [ -81.994376172999978, 28.89384844500006 ], [ -81.994256603999986, 28.893784477000054 ], [ -81.994070599999986, 28.893697800000041 ], [ -81.993716689999985, 28.893540677000033 ], [ -81.993365319999953, 28.893386303000057 ], [ -81.993104577999986, 28.893267687000048 ], [ -81.993032169999935, 28.893236236000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992748100999961, 28.893553005000058 ], [ -81.992989896999973, 28.893291666000039 ], [ -81.993032169999935, 28.893236236000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991886423999972, 28.895158400000071 ], [ -81.991880563999985, 28.895161150000035 ], [ -81.991702227999951, 28.895228863000057 ], [ -81.991543036999985, 28.895281795000074 ], [ -81.991386976999934, 28.895331232000046 ], [ -81.991320701999939, 28.895365692000041 ], [ -81.991281536999963, 28.895400153000026 ], [ -81.991248395999946, 28.895455821000041 ], [ -81.991239219999954, 28.895493145000046 ], [ -81.991235575999951, 28.895540296000036 ], [ -81.991243770999972, 28.895653744000072 ], [ -81.99126036399997, 28.895774411000048 ], [ -81.991268556999955, 28.895888203000027 ], [ -81.991268549999972, 28.895977585000026 ], [ -81.991279478999957, 28.896088625000061 ], [ -81.991288854999937, 28.896133802000065 ], [ -81.991305572999977, 28.896174247000033 ], [ -81.991333981999958, 28.89620529900003 ], [ -81.991371840999989, 28.896232574000067 ], [ -81.991409804999989, 28.896252967000066 ], [ -81.991452325999944, 28.896269808000056 ], [ -81.99160410199994, 28.896310431000074 ], [ -81.991792575999966, 28.896346836000077 ], [ -81.992003906999969, 28.896371441000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99055257599997, 28.894933527000035 ], [ -81.990717052999969, 28.894880895000028 ], [ -81.991088988999934, 28.89475304900003 ], [ -81.991223814999955, 28.894702486000028 ], [ -81.991308909999987, 28.894667481000056 ], [ -81.991409247999968, 28.894622710000078 ], [ -81.991800466999962, 28.894415588000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991800466999962, 28.894415588000072 ], [ -81.991858478999973, 28.894476131000033 ], [ -81.991894622999951, 28.894508024000061 ], [ -81.991941322999935, 28.894543919000057 ], [ -81.991989424999986, 28.894571689000031 ], [ -81.992052776999969, 28.894604899000058 ], [ -81.992269661999956, 28.894697696000037 ], [ -81.992417910999961, 28.894766462000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983396280999955, 28.854053532000023 ], [ -81.983429366999985, 28.853893395000057 ], [ -81.983447895999973, 28.853763697000034 ], [ -81.983466716999942, 28.853553600000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98899488099994, 28.854617595000036 ], [ -81.989157886999976, 28.854270193000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987833002999935, 28.856334682000067 ], [ -81.987917445999983, 28.856187635000026 ], [ -81.987971314999982, 28.856050778000053 ], [ -81.988077199999964, 28.85571961900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987093397999956, 28.855916834000027 ], [ -81.987147266999955, 28.855800361000036 ], [ -81.987231709999946, 28.855666417000066 ], [ -81.987371180999958, 28.855476532000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985446756999977, 28.855085506000023 ], [ -81.985895081999956, 28.854911082000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99628159699995, 28.861031397000033 ], [ -81.996288106999941, 28.861032959000056 ], [ -81.996298837999973, 28.86103207900004 ], [ -81.99631216299997, 28.861030651000078 ], [ -81.996325487999968, 28.861023989000046 ], [ -81.996342143999982, 28.861013995000064 ], [ -81.996355944999948, 28.861004953000077 ], [ -81.996668130999979, 28.860618529000078 ], [ -81.996672413999988, 28.86060853500004 ], [ -81.996673840999961, 28.860599969000077 ], [ -81.996670175999952, 28.860587358000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999805110999944, 28.863372925000078 ], [ -82.00001687799994, 28.862983770000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006679141999939, 28.861253033000025 ], [ -82.006674719999978, 28.860658995000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007029193999983, 28.859071387000029 ], [ -82.006831175999935, 28.858603164000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004618287999961, 28.860050112000067 ], [ -82.005043762999946, 28.859962217000032 ], [ -82.005092303999959, 28.859954603000062 ], [ -82.005140843999982, 28.859957458000054 ], [ -82.005220794999957, 28.85996792800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013674888999958, 28.861824807000062 ], [ -82.013192181999955, 28.861867327000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014345771999956, 28.858539458000052 ], [ -82.015951166999969, 28.858552257000042 ], [ -82.016033085999936, 28.858561419000068 ], [ -82.016080667999972, 28.858574229000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979049711999949, 28.912235739000039 ], [ -81.979089979999969, 28.912218712000026 ], [ -81.979145357999982, 28.912196603000041 ], [ -81.979211541999973, 28.912186876000078 ], [ -81.97930314599995, 28.912172634000058 ], [ -81.979417797999986, 28.912155508000069 ], [ -81.979521727999952, 28.912137991000066 ], [ -81.979627809999954, 28.912120474000062 ], [ -81.979727637999986, 28.912106394000034 ], [ -81.97982961699995, 28.912088878000077 ], [ -81.979903267999987, 28.912076856000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979049711999949, 28.912235739000039 ], [ -81.978706496999962, 28.911872449000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970284309999954, 28.920705601000066 ], [ -81.970296637999979, 28.920984670000053 ], [ -81.970331132999945, 28.921387296000034 ], [ -81.97036994299998, 28.921741723000025 ], [ -81.970401894999952, 28.922065942000074 ], [ -81.970439572999965, 28.922463148000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996762166999986, 28.921409355000037 ], [ -81.99693565299998, 28.921298955000054 ], [ -81.997226512999987, 28.921163494000041 ], [ -81.997338658, 28.921122057000048 ], [ -81.997441829999957, 28.921104299000035 ], [ -81.997533787999942, 28.921084568000026 ], [ -81.997605559999954, 28.921064836000028 ], [ -81.997695274999955, 28.921035239000048 ], [ -81.997807418999969, 28.920991829000059 ], [ -81.997885918999941, 28.920958284000051 ], [ -81.997958293999943, 28.920922006000069 ], [ -81.998047969999959, 28.920867003000069 ], [ -81.998240201999977, 28.920741311000029 ], [ -81.998479066999948, 28.920587397000077 ], [ -81.998696994999989, 28.92044588400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957004149999989, 28.928188916000067 ], [ -81.957017259999986, 28.928386250000074 ], [ -81.957022169999959, 28.928442689000065 ], [ -81.95700980099997, 28.928520830000025 ], [ -81.956984957999964, 28.928630398000053 ], [ -81.956938020999985, 28.92881417500007 ], [ -81.95688914699997, 28.928963598000053 ], [ -81.956852002999938, 28.929080389000035 ], [ -81.956832452999947, 28.929138784000031 ], [ -81.956816818999982, 28.929171415000042 ], [ -81.95680118599995, 28.929204046000052 ], [ -81.956764057999976, 28.929276177000077 ], [ -81.956723020999959, 28.929358612000044 ], [ -81.956652165999969, 28.929480246000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983294538999985, 28.878405617000055 ], [ -81.983673477999957, 28.878644813000051 ], [ -81.984023279999974, 28.878871741000069 ], [ -81.984139879999987, 28.878956387000073 ], [ -81.98429738599998, 28.879105861000028 ], [ -81.984555126999965, 28.879350783000064 ], [ -81.984731132999968, 28.879509290000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006487270999969, 28.909606095000072 ], [ -82.006549781999979, 28.909602310000025 ], [ -82.006638666999947, 28.909596805000035 ], [ -82.006721298999935, 28.909591302000024 ], [ -82.006797484999936, 28.909588203000055 ], [ -82.006876796999961, 28.909585449000076 ], [ -82.006969001999948, 28.90958269500004 ], [ -82.00705475999996, 28.909579939000025 ], [ -82.007134070999939, 28.909574435000025 ], [ -82.007216703999973, 28.909568931000024 ], [ -82.007315158999972, 28.909565830000076 ], [ -82.00742631199995, 28.909563075000051 ], [ -82.007543716999976, 28.909560318000047 ], [ -82.007670889999986, 28.909560311000064 ], [ -82.007826386999966, 28.909560302000045 ], [ -82.007959810999978, 28.909560294000073 ], [ -82.008090108999966, 28.909560287000033 ], [ -82.008204389999946, 28.909560280000051 ], [ -82.008318667999959, 28.909560273000068 ], [ -82.008423568999945, 28.909560266000028 ], [ -82.008498107999969, 28.909560088000035 ], [ -82.008579905999966, 28.909560083000031 ], [ -82.008668665999949, 28.909566201000075 ], [ -82.008722066999951, 28.909588092000035 ], [ -82.008768094999937, 28.909610953000026 ], [ -82.008799136999983, 28.909643082000059 ], [ -82.008823568999958, 28.909684108000079 ], [ -82.008839679999937, 28.909739003000027 ], [ -82.008842811999955, 28.909811884000078 ], [ -82.008845943999972, 28.909895765000044 ], [ -82.008845952999934, 28.90999339800004 ], [ -82.008846238, 28.910183333000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006498640999951, 28.910242427000071 ], [ -82.006816475999983, 28.91022831600003 ], [ -82.007318329999976, 28.910200444000054 ], [ -82.007645540999988, 28.910189081000055 ], [ -82.008007525999972, 28.910191810000072 ], [ -82.008442765999973, 28.910191783000073 ], [ -82.008748774999958, 28.910190997000029 ], [ -82.008846238, 28.910183333000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005776982999976, 28.909634661000041 ], [ -82.005847699999947, 28.909633283000062 ], [ -82.005946707999954, 28.909629136000035 ], [ -82.006059892999986, 28.909628 ], [ -82.006194053999934, 28.909621923000032 ], [ -82.006295634999958, 28.909616418000041 ], [ -82.00640991399996, 28.909610912000062 ], [ -82.006487270999969, 28.909606095000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960010097999941, 28.902863615000058 ], [ -81.959915064999961, 28.902865340000062 ], [ -81.959731561999945, 28.902867341000047 ], [ -81.959569234999947, 28.902868482000031 ], [ -81.959492126999976, 28.902872030000026 ], [ -81.959431252999934, 28.902876774000049 ], [ -81.959379844999944, 28.902886281000065 ], [ -81.959343314999956, 28.902900554000041 ], [ -81.959310842999969, 28.902923161000047 ], [ -81.959285130999945, 28.902945770000031 ], [ -81.959259417999988, 28.902976712000054 ], [ -81.959243169, 28.90301598700006 ], [ -81.959235040999943, 28.903049315000032 ], [ -81.959232319999956, 28.903087406000054 ], [ -81.959234783999989, 28.903172129000041 ], [ -81.95923475099994, 28.903256699000053 ], [ -81.959234716999958, 28.903341268000077 ], [ -81.95923468899997, 28.903413461000071 ], [ -81.959234661999972, 28.903482218000079 ], [ -81.959231749999958, 28.903576329000032 ], [ -81.959227157999976, 28.903642350000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983198781999988, 28.877571271000079 ], [ -81.983288353999967, 28.877640932000077 ], [ -81.983427062999965, 28.877743773000077 ], [ -81.983575385999984, 28.877821085000051 ], [ -81.983694755999977, 28.87788518800005 ], [ -81.983801834999952, 28.877932328000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982065705999958, 28.877680404000046 ], [ -81.982491916999948, 28.877296802000046 ], [ -81.982620820999955, 28.87718641400005 ], [ -81.982675877999952, 28.87716466300003 ], [ -81.982730149999952, 28.877158067000039 ], [ -81.982787573999985, 28.877162020000071 ], [ -81.982847947999971, 28.877177970000048 ], [ -81.982884343999956, 28.877197590000037 ], [ -81.982923410999945, 28.87722846500003 ], [ -81.982989807999957, 28.877332101000036 ], [ -81.983089408999945, 28.877459656000042 ], [ -81.983198781999988, 28.877571271000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982310407999989, 28.878291235000063 ], [ -81.982397488999936, 28.878264184000045 ], [ -81.982440380999947, 28.878245358000072 ], [ -81.982481830999973, 28.878219693000062 ], [ -81.982599515999937, 28.878122830000052 ], [ -81.982914766999954, 28.877825237000025 ], [ -81.983198781999988, 28.877571271000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978406139999947, 28.868987335000043 ], [ -81.978649711999935, 28.868880860000047 ], [ -81.978706818999967, 28.868855162000045 ], [ -81.978752504999989, 28.868818043000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97780040899994, 28.876995314000055 ], [ -81.97785681299996, 28.876646638000068 ], [ -81.97798722899995, 28.87549331300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976908207999941, 28.876977368000041 ], [ -81.977047790999961, 28.876501153000049 ], [ -81.977187150999953, 28.875954856000078 ], [ -81.977221149999934, 28.875782149000031 ], [ -81.977270283999985, 28.875423445000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97360432499994, 28.901360050000051 ], [ -81.973782953999944, 28.901345626000079 ], [ -81.973993921999977, 28.901311274000079 ], [ -81.974095156999965, 28.901293148000036 ], [ -81.974340748999964, 28.901235457000041 ], [ -81.974427477999939, 28.901210392000053 ], [ -81.974608842999942, 28.901157975000046 ], [ -81.975111341999934, 28.901002920000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959873688999949, 28.887527115000069 ], [ -81.959844401999987, 28.887311455000031 ], [ -81.959830389999979, 28.887096454000073 ], [ -81.95983204199996, 28.886877324000068 ], [ -81.959860313999968, 28.886652689000073 ], [ -81.959894821999967, 28.886503856000047 ], [ -81.959944992999965, 28.886345379000034 ], [ -81.960015785999985, 28.886173890000066 ], [ -81.960173795999935, 28.885881 ], [ -81.960469956999987, 28.885349108000071 ], [ -81.960525550999989, 28.885246857000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958739872999956, 28.887672053000074 ], [ -81.958873302999962, 28.887655936000044 ], [ -81.959033365999971, 28.887637726000037 ], [ -81.959200836999969, 28.887615603000029 ], [ -81.959360898999989, 28.887597393000078 ], [ -81.959464640999954, 28.887584381000067 ], [ -81.959583445999954, 28.887573988000042 ], [ -81.959873688999949, 28.887527115000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958795472999952, 28.888326968000058 ], [ -81.958787107999967, 28.888266313000031 ], [ -81.958767901999977, 28.88811370600007 ], [ -81.958754623999937, 28.887961102000077 ], [ -81.958741782999937, 28.887736786000062 ], [ -81.958739872999956, 28.887672053000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95798855299995, 28.887680445000058 ], [ -81.958099699999934, 28.887680480000029 ], [ -81.958341262999966, 28.887680554000042 ], [ -81.958527995999987, 28.887675396000077 ], [ -81.958671747999972, 28.887671526000076 ], [ -81.958739872999956, 28.887672053000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957261074999963, 28.887685980000072 ], [ -81.957333880999954, 28.887686003000056 ], [ -81.95750434699994, 28.887686109000072 ], [ -81.957710983999959, 28.887686174000066 ], [ -81.957895742999938, 28.887683839000033 ], [ -81.95798855299995, 28.887680445000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958020528999953, 28.888765185000068 ], [ -81.958003616999974, 28.888230242000077 ], [ -81.95798855299995, 28.887680445000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954046193999943, 28.890407814000071 ], [ -81.954044306999947, 28.89050523800006 ], [ -81.95404425199996, 28.890630266000073 ], [ -81.954044211999985, 28.890722819000075 ], [ -81.954043462999948, 28.890838796000025 ], [ -81.954068224999958, 28.89093712600004 ], [ -81.954090225999948, 28.890974515000039 ], [ -81.954128956999966, 28.891007004000073 ], [ -81.954180605999966, 28.891037872000027 ], [ -81.954241483999965, 28.891054130000043 ], [ -81.954382238999983, 28.891057210000042 ], [ -81.954543566999973, 28.891057265000029 ], [ -81.954737709999961, 28.891057330000024 ], [ -81.954881709999938, 28.891054346000033 ], [ -81.954977652999958, 28.891049508000037 ], [ -81.955023781999955, 28.891044652000062 ], [ -81.955056996999986, 28.891033296000046 ], [ -81.955112359999987, 28.891002464000053 ], [ -81.955149275999986, 28.890966753000043 ], [ -81.955177980999963, 28.890928097000028 ], [ -81.955185928999981, 28.890903151000032 ], [ -81.955189908999955, 28.89087096600008 ], [ -81.955197337999948, 28.890755682000076 ], [ -81.955200995999974, 28.890603011000053 ], [ -81.955205148999937, 28.890482690000056 ], [ -81.955208556999935, 28.890409829000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004590699999937, 28.911315091000063 ], [ -82.004634654999961, 28.911332278000032 ], [ -82.00501193499997, 28.911484820000055 ], [ -82.005152352999971, 28.911529049000023 ], [ -82.005226895999954, 28.911545824000029 ], [ -82.00533437699994, 28.911570226000038 ], [ -82.005462658999988, 28.911591575000045 ], [ -82.005587403999982, 28.911603483000079 ], [ -82.005752672999961, 28.911611726000046 ], [ -82.005920872, 28.911603469000056 ], [ -82.006154339999966, 28.911576292000063 ], [ -82.006516108999961, 28.911523340000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006516108999961, 28.911523340000031 ], [ -82.007051567999952, 28.911491342000033 ], [ -82.007486811999968, 28.911472068000023 ], [ -82.007870532999959, 28.91146485400003 ], [ -82.008411029999934, 28.911508110000057 ], [ -82.008714769999983, 28.911541069000066 ], [ -82.008792897999967, 28.911538200000052 ], [ -82.008864280999944, 28.911529872000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004144850999978, 28.919750022000073 ], [ -82.004179621999981, 28.919648950000067 ], [ -82.004209311999944, 28.919488749000038 ], [ -82.004209304999961, 28.919335769000043 ], [ -82.004205, 28.919168005000074 ], [ -82.004200889999936, 28.918977898000037 ], [ -82.004188183999986, 28.918817354000055 ], [ -82.004184284999951, 28.918764947000057 ], [ -82.004170213999942, 28.918689649000044 ], [ -82.004163668999979, 28.918654167000057 ], [ -82.004150280999966, 28.91861228700003 ], [ -82.004126829999962, 28.918552461000047 ], [ -82.004065860999958, 28.918430745000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003165466999974, 28.918454494000059 ], [ -82.003270981999947, 28.918458617000056 ], [ -82.003540631999954, 28.918463768000038 ], [ -82.003832556999953, 28.918465823000076 ], [ -82.003942761999951, 28.918467883000062 ], [ -82.003995517999954, 28.918454472000064 ], [ -82.004065860999958, 28.918430745000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002165402999935, 28.917727305000028 ], [ -82.002360514999964, 28.918147720000036 ], [ -82.002430067999967, 28.918280417000062 ], [ -82.002464843999974, 28.91833129500003 ], [ -82.002511340999945, 28.918365329000039 ], [ -82.002542926, 28.918380239000044 ], [ -82.00258864999995, 28.918388489000051 ], [ -82.002731520999987, 28.918409671000063 ], [ -82.003027123999971, 28.918445213000041 ], [ -82.003165466999974, 28.918454494000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003165466999974, 28.918454494000059 ], [ -82.003168356999936, 28.918348469000023 ], [ -82.003168651999943, 28.918248251000023 ], [ -82.003168648999974, 28.918138224000074 ], [ -82.003160308999952, 28.918061205000072 ], [ -82.003149884999971, 28.917958513000031 ], [ -82.003120699999954, 28.917806311000049 ], [ -82.003070673999957, 28.917608264000023 ], [ -82.003025413999978, 28.917462145000059 ], [ -82.003003998999986, 28.917397900000026 ], [ -82.002993290999939, 28.91735269000003 ], [ -82.002993290999939, 28.917295583000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99042041499996, 28.87036678100003 ], [ -81.990192567999941, 28.869941510000046 ], [ -81.990096498999947, 28.86975224400004 ], [ -81.990086555999937, 28.869714608000038 ], [ -81.99007391899994, 28.869655304000048 ], [ -81.990066862999981, 28.869603106000056 ], [ -81.990067627999963, 28.869567811000024 ], [ -81.990068258999941, 28.869480327000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990066709999951, 28.868847702000039 ], [ -81.990069920999986, 28.867939781000075 ], [ -81.990071009999951, 28.867323847000023 ], [ -81.990070438999965, 28.867276634000063 ], [ -81.99007361799994, 28.867244944000049 ], [ -81.990082092999955, 28.867205795000075 ], [ -81.990095860999986, 28.867175968000026 ], [ -81.990117040999962, 28.86714614300007 ], [ -81.99014245799998, 28.867119114000047 ], [ -81.990175284999964, 28.867098610000028 ], [ -81.990212346999954, 28.867082768000046 ], [ -81.990249408999944, 28.867074381000066 ], [ -81.990355900999987, 28.867073253000058 ], [ -81.99073059899996, 28.86707590900005 ], [ -81.990792499999941, 28.867076602000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971470260999979, 28.877972636000038 ], [ -81.971535693999954, 28.878004331000056 ], [ -81.971625801999949, 28.87804751300007 ], [ -81.971711520999975, 28.878094285000032 ], [ -81.971817548, 28.878155156000048 ], [ -81.971911469999952, 28.878205367000078 ], [ -81.972095673999945, 28.878300379000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971525398999972, 28.880209019000063 ], [ -81.971515421999982, 28.880120479000027 ], [ -81.971522903999983, 28.880030691000059 ], [ -81.971534127999973, 28.879958363000071 ], [ -81.971582023999986, 28.879732084000068 ], [ -81.971646417999978, 28.879349200000036 ], [ -81.971674312999937, 28.879222832000039 ], [ -81.971740797999985, 28.879021024000053 ], [ -81.971841582999957, 28.878785272000073 ], [ -81.971925207999959, 28.878600443000039 ], [ -81.971968093999976, 28.878509915000052 ], [ -81.972095673999945, 28.878300379000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970586373999936, 28.880129208000028 ], [ -81.970662626999967, 28.879907302000049 ], [ -81.970735565999973, 28.879630048000024 ], [ -81.970782754999959, 28.879475391000028 ], [ -81.97083422299994, 28.879349027000046 ], [ -81.971007919999977, 28.878935990000059 ], [ -81.971207350999975, 28.878455054000028 ], [ -81.971280392999972, 28.878289396000071 ], [ -81.971470260999979, 28.877972636000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000037132999978, 28.886016392000045 ], [ -82.000307259999943, 28.885986231000061 ], [ -82.000934197999982, 28.885918809000032 ], [ -82.00142002399997, 28.885860256000058 ], [ -82.001841339999942, 28.885798154000042 ], [ -82.002412007999965, 28.88570468000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994759776999956, 28.886436196000034 ], [ -81.994759829999964, 28.886436196000034 ], [ -81.995147928999984, 28.886436211000046 ], [ -81.99600454299997, 28.886388454000041 ], [ -81.99698449999994, 28.886307935000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998678429999984, 28.88615832000005 ], [ -81.999369876999936, 28.886085583000067 ], [ -81.999475954, 28.886074583000038 ], [ -81.999476664999975, 28.886074509000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998678429999984, 28.88615832000005 ], [ -81.998667090999959, 28.886061849000043 ], [ -81.998647436999988, 28.885988664000024 ], [ -81.998612664999939, 28.885923462000051 ], [ -81.998567306999973, 28.885856929000056 ], [ -81.998497761999943, 28.885757131000048 ], [ -81.998456940999972, 28.885701243000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995729679999954, 28.884073633000071 ], [ -81.995656271999962, 28.884309556000062 ], [ -81.995551199999966, 28.884620570000038 ], [ -81.995439759999954, 28.884939990000078 ], [ -81.99531830799998, 28.885293273000059 ], [ -81.995221910999987, 28.885572705000072 ], [ -81.995175413999959, 28.885725394000076 ], [ -81.995168607999972, 28.885774296000079 ], [ -81.995169740999984, 28.885806231000061 ], [ -81.995175408999955, 28.885835172000043 ], [ -81.995184477999942, 28.885859124000035 ], [ -81.995195817999956, 28.88587708700004 ], [ -81.995211690999952, 28.88590203800004 ], [ -81.995229833999986, 28.885919005000062 ], [ -81.995253455999944, 28.885936470000047 ], [ -81.995291756999961, 28.885957761000043 ], [ -81.995330057999979, 28.885973731000036 ], [ -81.995372390999989, 28.885982603000059 ], [ -81.995442945999969, 28.885984380000025 ], [ -81.995640284999979, 28.885971119000033 ], [ -81.996130570999981, 28.885937511000066 ], [ -81.996668610999961, 28.88589829700004 ], [ -81.997151121999934, 28.885859241000048 ], [ -81.997795627999949, 28.885803054000064 ], [ -81.99822794499994, 28.885766963000037 ], [ -81.998317844999974, 28.885753136000062 ], [ -81.998387391999984, 28.885735840000052 ], [ -81.998456940999972, 28.885701243000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998484628999961, 28.881998807000059 ], [ -81.998506803999987, 28.881933164000031 ], [ -81.998567277999939, 28.881842680000034 ], [ -81.998641864999968, 28.88176816500004 ], [ -81.998725637999939, 28.88169029200003 ], [ -81.998756010999955, 28.881645968000043 ], [ -81.99877264099996, 28.881604718000062 ], [ -81.998777176999965, 28.881543509000039 ], [ -81.99876659499995, 28.88149826800003 ], [ -81.998742404999973, 28.881450364000045 ], [ -81.998701586999971, 28.881405122000047 ], [ -81.998371757999962, 28.881074454000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998484628999961, 28.881998807000059 ], [ -81.998262308999983, 28.882003060000045 ], [ -81.997950565999986, 28.882025746000068 ], [ -81.997459358999947, 28.882072332000064 ], [ -81.997123580999983, 28.882100247000039 ], [ -81.997014727999954, 28.882109559000071 ], [ -81.996912488999953, 28.882109722000052 ], [ -81.996869400999969, 28.882099742000037 ], [ -81.996826313999975, 28.882084771000052 ], [ -81.996796834999941, 28.88206281500004 ], [ -81.996771888999945, 28.882040859000028 ], [ -81.996748078999985, 28.882012914000029 ], [ -81.996731071999989, 28.881982976000074 ], [ -81.996722000999966, 28.881951039000057 ], [ -81.996714064999935, 28.881914115000029 ], [ -81.996706134999954, 28.881671604000076 ], [ -81.996711804999961, 28.881639669000037 ], [ -81.996723145999965, 28.881613722000054 ], [ -81.996737885999949, 28.881585779000034 ], [ -81.99675489599997, 28.881562826000049 ], [ -81.996777573999964, 28.881537876000039 ], [ -81.996801386999948, 28.881517917000053 ], [ -81.996824064999942, 28.881505943000036 ], [ -81.996862616999977, 28.881489975000079 ], [ -81.996893231999934, 28.88148398800007 ], [ -81.997029788999953, 28.881470534000073 ], [ -81.997225464999985, 28.881452722000063 ], [ -81.997421622, 28.881441086000052 ], [ -81.997644996999952, 28.881421130000035 ], [ -81.99774591299996, 28.881414147000044 ], [ -81.997833220999951, 28.881403170000056 ], [ -81.997909191999952, 28.881387204000077 ], [ -81.997964751999973, 28.881369241000073 ], [ -81.998033920999944, 28.88134229700006 ], [ -81.998087212999963, 28.88131435300005 ], [ -81.998133702999951, 28.881289405000075 ], [ -81.998179057999948, 28.881256471000029 ], [ -81.998244327999942, 28.881199354000046 ], [ -81.998371757999962, 28.881074454000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998573381999961, 28.883888910000053 ], [ -81.99862176399995, 28.883721251000054 ], [ -81.998635662999959, 28.883629468000038 ], [ -81.998655028999963, 28.883489719000067 ], [ -81.998665613999947, 28.883344679000061 ], [ -81.998671638999951, 28.883198725000057 ], [ -81.998667141999988, 28.883079950000024 ], [ -81.998659233999945, 28.88300322200007 ], [ -81.998650164999958, 28.882894110000052 ], [ -81.998622162999936, 28.882743422000033 ], [ -81.998541197999941, 28.882398977000037 ], [ -81.998483868999983, 28.882172900000057 ], [ -81.998477823999963, 28.882111690000045 ], [ -81.998474800999986, 28.882051812000043 ], [ -81.998484628999961, 28.881998807000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000037132999978, 28.886016392000045 ], [ -81.999988667999958, 28.885654015000057 ], [ -81.999979596999935, 28.885506312000075 ], [ -81.999984131999952, 28.885346636000065 ], [ -82.000003786999969, 28.885181636000027 ], [ -82.000024952999979, 28.885068532000048 ], [ -82.000053678999961, 28.884963411000058 ], [ -82.000094499999989, 28.884835670000029 ], [ -82.00012322699996, 28.884778452000035 ], [ -82.000154975999976, 28.88472256600005 ], [ -82.000195796999947, 28.884679985000048 ], [ -82.000245689999986, 28.884640066000031 ], [ -82.000294069999939, 28.884610791000057 ], [ -82.000357596999947, 28.884581724000043 ], [ -82.00043633599995, 28.88455809800007 ], [ -82.000536549999936, 28.88454549800008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998371757999962, 28.881074454000043 ], [ -81.998860893999961, 28.880601008000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998860893999961, 28.880601008000042 ], [ -81.999340147999987, 28.88014460200003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999340147999987, 28.88014460200003 ], [ -81.999524590999954, 28.879964965000056 ], [ -81.999641002999965, 28.879849200000024 ], [ -81.999690892, 28.879780006000033 ], [ -81.999731711999971, 28.879710813000031 ], [ -81.999791736999953, 28.879586015000029 ], [ -81.999860215999945, 28.87944202500006 ], [ -81.999882893999938, 28.879388798000036 ], [ -81.999913186999947, 28.879342529000041 ], [ -81.999976624999988, 28.879292992000046 ], [ -82.000032562999934, 28.879269040000054 ], [ -82.000106641999935, 28.87926238700004 ], [ -82.000179208999953, 28.879270371000075 ], [ -82.000383303999968, 28.879320935000067 ], [ -82.000539020999952, 28.87936750700004 ], [ -82.000596911999935, 28.879409834000057 ], [ -82.000635776999957, 28.879469966000045 ], [ -82.000647871999945, 28.879511216000026 ], [ -82.000650892999943, 28.879560279000032 ], [ -82.000647872999934, 28.879644279000047 ], [ -82.000634266999953, 28.879716134000034 ], [ -82.00059949499996, 28.879814603000057 ], [ -82.000549605999936, 28.879905087000054 ], [ -82.000505762999978, 28.879963635000024 ], [ -82.000448313999982, 28.880026175000069 ], [ -82.000312250999968, 28.88015391700003 ], [ -82.00017165099996, 28.880288312000062 ], [ -82.000102111999979, 28.880354088000047 ], [ -82.000055239999938, 28.880382788000077 ], [ -82.000008374999936, 28.880402747000062 ], [ -81.999966042999972, 28.880412061000072 ], [ -81.999905570999942, 28.880409401000065 ], [ -81.999852656999963, 28.880397425000069 ], [ -81.999656118999951, 28.880308272000036 ], [ -81.999340147999987, 28.88014460200003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999471730999971, 28.881043207000062 ], [ -81.99923550799997, 28.880897029000039 ], [ -81.998860893999961, 28.880601008000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995937652999942, 28.880445321000025 ], [ -81.996633977999977, 28.880316435000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995937652999942, 28.880445321000025 ], [ -81.995887265999954, 28.880251933000068 ], [ -81.995843179999952, 28.880067637000025 ], [ -81.99580690099998, 28.879937234000067 ], [ -81.995778178999956, 28.879848079000055 ], [ -81.995732830999941, 28.87972565900003 ], [ -81.995692014999975, 28.879617875000065 ], [ -81.99560841899995, 28.879429559000073 ], [ -81.995445611999969, 28.879109562000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995445611999969, 28.879109562000053 ], [ -81.995199115999981, 28.878728776000059 ], [ -81.995179551999968, 28.878693061000035 ], [ -81.995171994999964, 28.878655803000072 ], [ -81.995171996999943, 28.878619876000073 ], [ -81.995171997999989, 28.878587941000035 ], [ -81.99518336899996, 28.878544704000035 ], [ -81.995197701999984, 28.878517418000058 ], [ -81.995226426999977, 28.878485483000077 ], [ -81.995259688999965, 28.878460201000053 ], [ -81.996260523999979, 28.877808218000041 ], [ -81.99641321699994, 28.877708425000037 ], [ -81.996466129999988, 28.877691128000038 ], [ -81.996514507999962, 28.877681815000074 ], [ -81.99655986199997, 28.877685808000024 ], [ -81.996617308999987, 28.877701777000027 ], [ -81.996980132999965, 28.877905374000079 ], [ -81.997104097999966, 28.877982554000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997104097999966, 28.877982554000027 ], [ -81.997980927999947, 28.878478899000072 ], [ -81.998599248999938, 28.878831527000045 ], [ -81.998767058999988, 28.878922013000079 ], [ -81.998968128999934, 28.879001854000023 ], [ -81.999212381999939, 28.879086584000049 ], [ -81.999252938999973, 28.879095487000029 ], [ -81.999302431999979, 28.879100246000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969258281999942, 28.933261448000053 ], [ -81.969297310999934, 28.933545976000062 ], [ -81.969299455999987, 28.933562821000066 ], [ -81.969300818999955, 28.933575886000028 ], [ -81.969301986999938, 28.933589293000068 ], [ -81.969302765999942, 28.933602356000051 ], [ -81.969303347999983, 28.933615420000024 ], [ -81.969303539999942, 28.933628827000064 ], [ -81.969303730999968, 28.933641890000047 ], [ -81.969303531999969, 28.93365529700003 ], [ -81.969302940999967, 28.933668361000059 ], [ -81.969302350999953, 28.933681769000032 ], [ -81.969301174999941, 28.933694832000072 ], [ -81.96929999799994, 28.933707896000044 ], [ -81.96929843199996, 28.933721303000027 ], [ -81.969296668999959, 28.933734365000078 ], [ -81.969294710999975, 28.93374742900005 ], [ -81.969292361999976, 28.933760492000033 ], [ -81.969289819999972, 28.933773554000027 ], [ -81.969286883999985, 28.933786617000067 ], [ -81.969283949999976, 28.93379933600005 ], [ -81.969280622999975, 28.933812399000033 ], [ -81.969276905999948, 28.933825117000026 ], [ -81.969273190999957, 28.933837837000056 ], [ -81.969269082999972, 28.933850556000039 ], [ -81.969264781999982, 28.933863274000032 ], [ -81.969260087999942, 28.933875993000072 ], [ -81.969255198999974, 28.933888368000055 ], [ -81.969250115999955, 28.933900742000048 ], [ -81.969244835999973, 28.933913117000031 ], [ -81.969239166999955, 28.933925492000071 ], [ -81.969233496999948, 28.933937522000065 ], [ -81.969227435999983, 28.933949897000048 ], [ -81.969220983999946, 28.933961584000031 ], [ -81.969214531999967, 28.93397361500007 ], [ -81.969207689999962, 28.933985301000064 ], [ -81.969200651999984, 28.933996988000047 ], [ -81.969193419999954, 28.93400867500003 ], [ -81.969167554999956, 28.934050753000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966391126999952, 28.932811747000073 ], [ -81.966440516999967, 28.932844872000032 ], [ -81.966473443999973, 28.932867644000055 ], [ -81.96651107699995, 28.932892487000061 ], [ -81.966544003999957, 28.932913190000079 ], [ -81.966579282999987, 28.932935963000034 ], [ -81.966619266999942, 28.93296080600004 ], [ -81.966687474999958, 28.933002213000066 ], [ -81.967732002999981, 28.933562455000072 ], [ -81.967772833999959, 28.93358481000007 ], [ -81.967813859999978, 28.933606478000058 ], [ -81.96785547099995, 28.933627457000057 ], [ -81.967897475999962, 28.933647751000024 ], [ -81.967939868999963, 28.933667356000058 ], [ -81.967982654999958, 28.933686275000071 ], [ -81.968025831999967, 28.933704505000037 ], [ -81.9680694, 28.93372239200005 ], [ -81.968113161999952, 28.933739247000062 ], [ -81.968157317999953, 28.933755415000064 ], [ -81.968201861999944, 28.933771240000056 ], [ -81.968246602999955, 28.933786032000057 ], [ -81.96829173499998, 28.933800482000038 ], [ -81.968336127999976, 28.933811739000078 ], [ -81.968383028999938, 28.933824253000068 ], [ -81.968428507999988, 28.933835517000034 ], [ -81.968478252999944, 28.933848033000061 ], [ -81.968523732999984, 28.933858046000068 ], [ -81.968567792999977, 28.933866809000051 ], [ -81.968617538999979, 28.933875574000069 ], [ -81.96868718099995, 28.933888093000064 ], [ -81.96874971799997, 28.933899361000044 ], [ -81.968805147999944, 28.933910628000035 ], [ -81.968850627999984, 28.933921891000068 ], [ -81.968896108999957, 28.933934405000059 ], [ -81.968941586999961, 28.933949420000033 ], [ -81.968979960999945, 28.933960683000066 ], [ -81.969014068999968, 28.933974445000047 ], [ -81.969049599999948, 28.933989457000052 ], [ -81.969078022999952, 28.934001967000029 ], [ -81.969117813999958, 28.934021983000036 ], [ -81.969167554999956, 28.934050753000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021105371999965, 28.915511454000068 ], [ -82.02125259099995, 28.915193505000047 ], [ -82.021327680999946, 28.915031554000052 ], [ -82.021348333999981, 28.91500015400004 ], [ -82.021382130999939, 28.914966274000051 ], [ -82.02141499399994, 28.914949744000069 ], [ -82.021448795999959, 28.914937346000045 ], [ -82.021487295999975, 28.914929904000076 ], [ -82.021547393999981, 28.914927415000079 ], [ -82.021734223999943, 28.914927202000058 ], [ -82.022173587999987, 28.914929880000045 ], [ -82.022791703999985, 28.914932184000065 ], [ -82.023356880999984, 28.914937244000043 ], [ -82.023465304999945, 28.914937913000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970550913999944, 28.900792021000029 ], [ -81.970652767, 28.900463216000048 ], [ -81.970709541999952, 28.900260646000049 ], [ -81.970752261999962, 28.900101773000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970550913999944, 28.900792021000029 ], [ -81.970600958999967, 28.90079496900006 ], [ -81.970811442999945, 28.900812475000066 ], [ -81.971141229999944, 28.900857801000029 ], [ -81.971393395999939, 28.900888106000025 ], [ -81.971614705999968, 28.900901560000079 ], [ -81.971874497999977, 28.900901615000066 ], [ -81.971964970999977, 28.900903017000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969799701999989, 28.900727963000065 ], [ -81.970020603999956, 28.90076833300003 ], [ -81.970180968999955, 28.900775568000029 ], [ -81.970350732999975, 28.900778765000041 ], [ -81.970550913999944, 28.900792021000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954100772999936, 28.899976095000056 ], [ -81.954196679999939, 28.89997853400007 ], [ -81.954367398999977, 28.899978592000025 ], [ -81.954505891999986, 28.899971419000053 ], [ -81.954630454999972, 28.899951580000049 ], [ -81.954707480999957, 28.899927507000029 ], [ -81.954801852999935, 28.899894169000049 ], [ -81.954898000999947, 28.899848980000058 ], [ -81.95500035799995, 28.899790559000053 ], [ -81.955260739999972, 28.899648461000027 ], [ -81.955380827999988, 28.899596033000023 ], [ -81.955472620999956, 28.899563218000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955693555999972, 28.900171540000031 ], [ -81.955655753999963, 28.90010032400005 ], [ -81.955592109999941, 28.899943484000062 ], [ -81.955546118999962, 28.899820758000033 ], [ -81.95550129999998, 28.899670657000058 ], [ -81.955472620999956, 28.899563218000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955472620999956, 28.899563218000026 ], [ -81.955423654999947, 28.899381404000053 ], [ -81.955383104999953, 28.899211592000029 ], [ -81.955344266999987, 28.898997095000027 ], [ -81.955334650999987, 28.89893597300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955334650999987, 28.89893597300005 ], [ -81.955305433999968, 28.898773662000053 ], [ -81.95529193699997, 28.898670885000058 ], [ -81.955268320999949, 28.898486182000056 ], [ -81.955263295999941, 28.898361065000074 ], [ -81.955263330999969, 28.898280634000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954095777999953, 28.899342510000054 ], [ -81.954167530999939, 28.899347921000071 ], [ -81.954266276999988, 28.899338476000025 ], [ -81.954327640999963, 28.899328493000041 ], [ -81.954636168999969, 28.899199574000079 ], [ -81.954995295999936, 28.899041709000073 ], [ -81.955236280999941, 28.898954910000043 ], [ -81.955334650999987, 28.89893597300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956565986999976, 28.899737096000024 ], [ -81.956492160999971, 28.899634142000025 ], [ -81.95638557999996, 28.899465312000075 ], [ -81.956311433999986, 28.89936265700004 ], [ -81.956277763999935, 28.89932910400006 ], [ -81.956242317999966, 28.899302571000078 ], [ -81.956202435999955, 28.899282277000054 ], [ -81.956152805999977, 28.899261980000063 ], [ -81.956064175999984, 28.899239330000057 ], [ -81.955831119999971, 28.899202666000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955693555999972, 28.900171540000031 ], [ -81.955822748999935, 28.900128964000032 ], [ -81.95592641099995, 28.900087350000035 ], [ -81.95602938199994, 28.900043579000055 ], [ -81.956143687999941, 28.899983151000072 ], [ -81.956247840999936, 28.899923151000053 ], [ -81.956565986999976, 28.899737096000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954107521999958, 28.900618617000077 ], [ -81.954159089999962, 28.900618635000058 ], [ -81.954300509999939, 28.900618683000062 ], [ -81.954492328999947, 28.900614279000024 ], [ -81.954694897999957, 28.900593033000064 ], [ -81.954906476999952, 28.900545169000054 ], [ -81.955024985999955, 28.90050571300003 ], [ -81.955134517999966, 28.900463093000042 ], [ -81.955235075999951, 28.900417311000069 ], [ -81.955348190999985, 28.900358796000035 ], [ -81.955618147999985, 28.900201845000026 ], [ -81.955693555999972, 28.900171540000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955671695999968, 28.930252118000055 ], [ -81.955832868999948, 28.930265313000064 ], [ -81.955954043999952, 28.930283800000041 ], [ -81.956041898999956, 28.930303648000063 ], [ -81.956866865999984, 28.930634188000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976803821999965, 28.898718877000078 ], [ -81.97768266099996, 28.898465316000056 ], [ -81.977755527999989, 28.898424762000047 ], [ -81.977794405999987, 28.898386265000056 ], [ -81.977817540999979, 28.898346525000079 ], [ -81.977830120999954, 28.898281182000062 ], [ -81.977797070999941, 28.897793937000074 ], [ -81.97779492899997, 28.89776299600004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977759566999964, 28.899629705000052 ], [ -81.977766263999968, 28.899371529000064 ], [ -81.977752955999961, 28.899282589000052 ], [ -81.977703140999949, 28.899082562000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976810318999981, 28.901070516000061 ], [ -81.97718350699995, 28.901048461000073 ], [ -81.977564337, 28.900978313000053 ], [ -81.977608088999943, 28.90096002000007 ], [ -81.977650199999971, 28.900936355000056 ], [ -81.977688803999968, 28.900898281000025 ], [ -81.977708693999944, 28.90086431900005 ], [ -81.977722738999944, 28.900820066000051 ], [ -81.977743675999989, 28.900270982000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977743675999989, 28.900270982000052 ], [ -81.977747358999977, 28.90009105300004 ], [ -81.977759566999964, 28.899629705000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976708334999955, 28.900278179000054 ], [ -81.977743675999989, 28.900270982000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983868052999981, 28.873183420000032 ], [ -81.983874530999969, 28.873088136000035 ], [ -81.983892321999974, 28.872981475000074 ], [ -81.983918185999983, 28.872891881000044 ], [ -81.983946486999969, 28.872792205000053 ], [ -81.984013890999961, 28.872591447000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984010244, 28.873745134000046 ], [ -81.98394673599995, 28.873591342000054 ], [ -81.983927780999977, 28.873537549000048 ], [ -81.983892257999969, 28.873392483000032 ], [ -81.983880960999954, 28.873307151000063 ], [ -81.983868052999981, 28.873183420000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982633039999939, 28.872917869000048 ], [ -81.982718736999971, 28.872928657000045 ], [ -81.982914619999974, 28.872958317000041 ], [ -81.983046016999936, 28.872989662000066 ], [ -81.983193134999965, 28.873033787000054 ], [ -81.98339866699996, 28.873087296000051 ], [ -81.983541376999938, 28.873126766000041 ], [ -81.983686340999952, 28.873156866000045 ], [ -81.983797215999971, 28.873176879000027 ], [ -81.983868052999981, 28.873183420000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958492813999953, 28.886256413000069 ], [ -81.959356828999944, 28.886281664000023 ], [ -81.959453240999949, 28.886305140000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959736002999989, 28.885698019000074 ], [ -81.95969390199997, 28.885781560000055 ], [ -81.959605631999978, 28.885930012000074 ], [ -81.959524056999953, 28.886105693000047 ], [ -81.959462135999956, 28.886272763000079 ], [ -81.959453240999949, 28.886305140000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959453240999949, 28.886305140000047 ], [ -81.959415126999943, 28.886444703000052 ], [ -81.959371746999977, 28.886640139000065 ], [ -81.959359183999936, 28.886731094000027 ], [ -81.959340364999946, 28.88680275400003 ], [ -81.959321089999946, 28.88683771500007 ], [ -81.959301191999941, 28.886866139000063 ], [ -81.95925419799994, 28.886904714000025 ], [ -81.959193118999963, 28.886925369000039 ], [ -81.959102289999976, 28.886936366000043 ], [ -81.958874144999982, 28.886934690000032 ], [ -81.958696971999984, 28.886934483000061 ], [ -81.958660055999985, 28.886926841000047 ], [ -81.958621998999945, 28.886913431000039 ], [ -81.958580788999939, 28.886890888000039 ], [ -81.95853991499996, 28.886858680000046 ], [ -81.958511957999974, 28.886815111000033 ], [ -81.958499070999949, 28.88675261000003 ], [ -81.958494801999962, 28.886663597000052 ], [ -81.958493862999944, 28.886491786000079 ], [ -81.958492813999953, 28.886256413000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964072200999965, 28.903490126000065 ], [ -81.964108934999956, 28.903462633000061 ], [ -81.964186307999967, 28.903403524000055 ], [ -81.964250203999939, 28.90334131700007 ], [ -81.964303943999937, 28.903282202000071 ], [ -81.964372606999973, 28.903202677000024 ], [ -81.964433052999937, 28.903127865000044 ], [ -81.964473354999939, 28.903064863000054 ], [ -81.964503580999974, 28.903015149000055 ], [ -81.964533810999967, 28.902957560000061 ], [ -81.964569075999975, 28.902901448000023 ], [ -81.964590906999945, 28.902861578000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961648173999947, 28.902114346000076 ], [ -81.961508912999989, 28.902075116000049 ], [ -81.961291721999942, 28.902019362000033 ], [ -81.961093395999967, 28.901964781000061 ], [ -81.960935214999949, 28.901926229000026 ], [ -81.960819838999953, 28.901894090000042 ], [ -81.960738197999945, 28.901870689000077 ], [ -81.960652511999967, 28.901849140000024 ], [ -81.960539367999957, 28.901819065000041 ], [ -81.960393361999934, 28.90179574900003 ], [ -81.960238537999942, 28.901777933000062 ], [ -81.96001413099998, 28.901768375000074 ], [ -81.95971683099998, 28.901774816000056 ], [ -81.959366778999936, 28.901777672000037 ], [ -81.958979705, 28.901777555000024 ], [ -81.958632990999945, 28.90177800400005 ], [ -81.958476398999949, 28.90176811300006 ], [ -81.958475901999975, 28.901768082000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970501552999963, 28.858861156000046 ], [ -81.97049117399996, 28.858738920000064 ], [ -81.970494683999959, 28.858601409000073 ], [ -81.970510350999973, 28.858434871000043 ], [ -81.970531218999952, 28.858291251000026 ], [ -81.970549629999937, 28.858184643000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967079119999937, 28.859118901000045 ], [ -81.967172218999963, 28.858955957000035 ], [ -81.967243412999949, 28.858844438000062 ], [ -81.967316328999971, 28.85877417100005 ], [ -81.967370143999972, 28.858743625000045 ], [ -81.967417010999952, 28.858725302000039 ], [ -81.967479496999943, 28.858706982000058 ], [ -81.967561071999967, 28.858694778000029 ], [ -81.967632232999961, 28.858693268000025 ], [ -81.967767604999949, 28.858708578000062 ], [ -81.967975862999936, 28.858749881000051 ], [ -81.968187592999982, 28.85878813100004 ], [ -81.968347257999937, 28.858821782000064 ], [ -81.968475687999955, 28.858837091000055 ], [ -81.968593705999979, 28.858841702000063 ], [ -81.968715197999984, 28.858840202000067 ], [ -81.968913266999948, 28.858835219000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970549629999937, 28.858184643000072 ], [ -81.970647171999985, 28.858199112000079 ], [ -81.970685448999973, 28.858201663000045 ], [ -81.970750542999951, 28.85819803000004 ], [ -81.970869592999975, 28.858175598000059 ], [ -81.970993746999966, 28.85815017300007 ], [ -81.97117402799995, 28.858102304000056 ], [ -81.97133390099998, 28.858055925000031 ], [ -81.971430722999969, 28.85802211500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971430722999969, 28.85802211500004 ], [ -81.971409593999965, 28.857942648000062 ], [ -81.971399708999968, 28.857867798000029 ], [ -81.971392951999974, 28.857706105000034 ], [ -81.971386217999964, 28.857454582000059 ], [ -81.971379472999956, 28.857244980000075 ], [ -81.971365935999984, 28.856997449000062 ], [ -81.971348673999955, 28.85673188800007 ], [ -81.971338310999954, 28.856540898000048 ], [ -81.971329696999987, 28.856311708000078 ], [ -81.971328009, 28.856137527000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971328009, 28.856137527000044 ], [ -81.971325776999947, 28.856102383000064 ], [ -81.971320377999973, 28.856016437000051 ], [ -81.971307410999941, 28.855835950000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971328009, 28.856137527000044 ], [ -81.97155663999996, 28.856137127000068 ], [ -81.971738037999955, 28.856137165000064 ], [ -81.971902846999967, 28.856139382000038 ], [ -81.972015306999936, 28.856140980000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972015306999936, 28.856140980000077 ], [ -81.972128688999987, 28.856139444000064 ], [ -81.972355206999964, 28.856139476000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971430722999969, 28.85802211500004 ], [ -81.971556705999944, 28.857978121000031 ], [ -81.971723384999962, 28.857915277000075 ], [ -81.971867304999989, 28.857848902000057 ], [ -81.971983605999981, 28.857784754000079 ], [ -81.972044360999973, 28.857746567000049 ], [ -81.972072138999977, 28.85771907000003 ], [ -81.972086030999947, 28.857685460000027 ], [ -81.97209124699998, 28.857648791000031 ], [ -81.972044665999988, 28.856605218000027 ], [ -81.97203258199994, 28.856360750000078 ], [ -81.972015306999936, 28.856140980000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969447230999947, 28.856028094000067 ], [ -81.969574048999959, 28.855972052000027 ], [ -81.969616465999934, 28.855962815000055 ], [ -81.969676343999936, 28.855959390000066 ], [ -81.969844258999956, 28.855957136000029 ], [ -81.970031696999968, 28.85595717800004 ], [ -81.970267297999953, 28.855957230000058 ], [ -81.970579696999948, 28.855957298000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969092070999977, 28.85537253800004 ], [ -81.969227312999976, 28.85533390300003 ], [ -81.969410989999972, 28.85532562800006 ], [ -81.96961534899998, 28.855325674000028 ], [ -81.969762436999986, 28.855325707000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969762436999986, 28.855325707000077 ], [ -81.96980018499994, 28.855325715000049 ], [ -81.969985018999978, 28.855324611000071 ], [ -81.970290907999981, 28.855323533000046 ], [ -81.970484481999961, 28.855323862000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968578933999936, 28.854455120000068 ], [ -81.968713636999951, 28.854486314000042 ], [ -81.968879533999939, 28.854494822000049 ], [ -81.969032887999958, 28.85449970600007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969762436999986, 28.855325707000077 ], [ -81.969759882999938, 28.855154963000075 ], [ -81.969759909999937, 28.855060996000077 ], [ -81.969757342999969, 28.854934943000046 ], [ -81.969759111999963, 28.854816148000054 ], [ -81.969753724999975, 28.854692004000071 ], [ -81.969751594999934, 28.854557356000043 ], [ -81.969751631999941, 28.854429394000078 ], [ -81.969759244999977, 28.854356819000031 ], [ -81.969779874999972, 28.854287113000055 ], [ -81.969816781999953, 28.854195447000052 ], [ -81.969875381999941, 28.854103784000074 ], [ -81.969958936999944, 28.853985391000037 ], [ -81.970017534999954, 28.853902324000046 ], [ -81.970070704999955, 28.853830714000026 ], [ -81.970146659999955, 28.853739056000052 ], [ -81.970242137999946, 28.853648357000054 ], [ -81.970330024999953, 28.853556701000059 ], [ -81.970401633999984, 28.85348891700005 ], [ -81.970443946999978, 28.85345359300004 ], [ -81.970489511999972, 28.853423045000056 ], [ -81.970542669999986, 28.853394408000042 ], [ -81.970600164999951, 28.853365772000075 ], [ -81.970662000999937, 28.853340002000039 ], [ -81.970742275999953, 28.853313281000055 ], [ -81.970846414999983, 28.85328179000004 ], [ -81.970918009999934, 28.853259843000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968181308999988, 28.853286505000028 ], [ -81.96830588499995, 28.853353628000036 ], [ -81.968464866999966, 28.853442595000047 ], [ -81.968523576999985, 28.853482541000062 ], [ -81.968569122999952, 28.853519221000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968569122999952, 28.853519221000056 ], [ -81.968618564999986, 28.85358455100004 ], [ -81.968654998999966, 28.853624667000076 ], [ -81.968703145999939, 28.853667077000068 ], [ -81.968746087999989, 28.853706049000039 ], [ -81.96877541799995, 28.853726128000062 ], [ -81.968909175999954, 28.853792033000047 ], [ -81.969178985999974, 28.853903226000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971062099999983, 28.853886317000047 ], [ -81.971101536999981, 28.853869739000061 ], [ -81.971152276999987, 28.853859236000062 ], [ -81.971197697999969, 28.853851013000053 ], [ -81.971263864999969, 28.853845297000078 ], [ -81.971334369999965, 28.853848177000032 ], [ -81.97138860299998, 28.853852009000036 ], [ -81.971488393999948, 28.853855850000059 ], [ -81.971541598999977, 28.853850255000054 ], [ -81.971585469, 28.853835498000024 ], [ -81.971618565999961, 28.853824364000047 ], [ -81.971657621999952, 28.853799543000036 ], [ -81.971692339999947, 28.853767083000037 ], [ -81.971714044999942, 28.853729845000032 ], [ -81.971728159999941, 28.853674460000036 ], [ -81.971739031999959, 28.85358278800004 ], [ -81.971735045999935, 28.853484383000023 ], [ -81.971728236, 28.853391797000029 ], [ -81.971716803999982, 28.853296263000061 ], [ -81.97169833099997, 28.853234827000051 ], [ -81.971678399999973, 28.853172149000045 ], [ -81.971613357999956, 28.853026029000034 ], [ -81.97153217999994, 28.852851571000031 ], [ -81.971451513999966, 28.852692013000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972772009999971, 28.852101152000046 ], [ -81.972841370999959, 28.852090064000038 ], [ -81.973057331999939, 28.852049863000047 ], [ -81.973134576999939, 28.852027673000066 ], [ -81.973202364999963, 28.851999931000023 ], [ -81.973290937999934, 28.851951797000027 ], [ -81.973396276999949, 28.851887561000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968569122999952, 28.853519221000056 ], [ -81.968638127999952, 28.853457357000025 ], [ -81.968673284999966, 28.853411527000048 ], [ -81.968742302999942, 28.853306117000045 ], [ -81.968841266999959, 28.853169774000037 ], [ -81.968923304999976, 28.85304947000003 ], [ -81.968985805999978, 28.852970414000026 ], [ -81.969047754999963, 28.852891778000071 ], [ -81.969177034999973, 28.852768044000072 ], [ -81.969308576999936, 28.852654290000032 ], [ -81.969474140999978, 28.852502617000027 ], [ -81.969621565999944, 28.852350939000075 ], [ -81.969744046999949, 28.852205244000061 ], [ -81.969859724999935, 28.852063540000074 ], [ -81.969923238999968, 28.851967736000063 ], [ -81.969983585999955, 28.851875524000036 ], [ -81.970031321999954, 28.851837337000063 ], [ -81.970098578999966, 28.851808703000074 ], [ -81.970165830999974, 28.851804898000069 ], [ -81.970345874999964, 28.851846956000031 ], [ -81.970582315999934, 28.851911944000051 ], [ -81.970755848999943, 28.851963548000072 ], [ -81.970909860999939, 28.852003689000071 ], [ -81.971074718999944, 28.852049562000047 ], [ -81.971259099999941, 28.852099259000056 ], [ -81.971382745999961, 28.852127933000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970752261999962, 28.900101773000074 ], [ -81.970778477999943, 28.899977940000042 ], [ -81.970805054999971, 28.899863080000046 ], [ -81.970854869999982, 28.899564855000051 ], [ -81.970847335999963, 28.899512835000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98569013599996, 28.868783850000057 ], [ -81.98584124599995, 28.868763083000033 ], [ -81.986063185999967, 28.868750636000073 ], [ -81.986285759999987, 28.868750660000046 ], [ -81.986650138999948, 28.868767235000064 ], [ -81.986827405999975, 28.868776539000066 ], [ -81.98689578799997, 28.868790599000079 ], [ -81.986929498999984, 28.868804853000029 ], [ -81.986964914999987, 28.868824239000048 ], [ -81.987008241999945, 28.868862385000057 ], [ -81.987025575999951, 28.868891010000027 ], [ -81.987041585999975, 28.868933303000063 ], [ -81.987071812999943, 28.869111865000036 ], [ -81.987112558999968, 28.86944840600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98506287899994, 28.870896655000024 ], [ -81.984995110999989, 28.870675751000078 ], [ -81.984867128999952, 28.870365394000032 ], [ -81.984597385999962, 28.869703069000025 ], [ -81.984456055999942, 28.869341839000072 ], [ -81.984425818999966, 28.869263520000061 ], [ -81.98441231299995, 28.869217595000066 ], [ -81.984413375999964, 28.869174238000028 ], [ -81.984430053999972, 28.869123974000047 ], [ -81.984459605999973, 28.869071965000046 ], [ -81.98448521399996, 28.86904596200003 ], [ -81.984530825999968, 28.869022729000051 ], [ -81.984621126999969, 28.868993964000026 ], [ -81.984839758999954, 28.868948911000075 ], [ -81.985045551999974, 28.868910558000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991942653999956, 28.951630162000072 ], [ -81.992168560999971, 28.951718673000073 ], [ -81.992639978999989, 28.951910865000059 ], [ -81.993262055999935, 28.952155460000029 ], [ -81.993780454999978, 28.95235445000003 ], [ -81.994242306, 28.952503695000075 ], [ -81.994751286999985, 28.952648796000062 ], [ -81.995302684999956, 28.95278146000004 ], [ -81.995854084999962, 28.952885106000053 ], [ -81.996513882999977, 28.952972172000045 ], [ -81.997140693999938, 28.953030218000038 ], [ -81.997885326999949, 28.953050958000063 ], [ -81.998076044999948, 28.953045618000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983721042999946, 28.953101360000062 ], [ -81.983826614999941, 28.953074844000071 ], [ -81.983950285999981, 28.953043024000067 ], [ -81.984058875999949, 28.953011202000027 ], [ -81.98416143299994, 28.952979380000045 ], [ -81.984270023999954, 28.952939599000047 ], [ -81.984384647999946, 28.952894515000025 ], [ -81.98449323899996, 28.952849427000046 ], [ -81.984623322999937, 28.952789420000045 ], [ -81.984721357999945, 28.952736376000075 ], [ -81.984826934999944, 28.952676697000072 ], [ -81.984924969999952, 28.952617018000069 ], [ -81.985011695999958, 28.952557339000066 ], [ -81.985117273999947, 28.952484396000045 ], [ -81.985279412999944, 28.952365034000024 ], [ -81.985434012999974, 28.95222909000006 ], [ -81.985788457999945, 28.951933996000037 ], [ -81.986124048999955, 28.951652163000063 ], [ -81.986437015999968, 28.951370326000074 ], [ -81.986798992, 28.951115022000067 ], [ -81.987036531999934, 28.950989034000031 ], [ -81.987209972999949, 28.950902832000054 ], [ -81.987364559999946, 28.950836525000057 ], [ -81.987583240999982, 28.950763591000054 ], [ -81.987718973999961, 28.950723810000056 ], [ -81.987866014999952, 28.950687346000052 ], [ -81.988016828999946, 28.950657515000046 ], [ -81.988201861999983, 28.950632368000072 ], [ -81.988304873999937, 28.950618954000049 ], [ -81.988381178999987, 28.950608895000073 ], [ -81.988552863999985, 28.950598841000044 ], [ -81.988777961999972, 28.950598860000071 ], [ -81.989052655999956, 28.950619017000065 ], [ -81.989293010999972, 28.95064923800004 ], [ -81.98957532999998, 28.950709662000065 ], [ -81.989960654999948, 28.950837208000053 ], [ -81.990292566999983, 28.950968103000037 ], [ -81.990846058999978, 28.951186264000057 ], [ -81.991439850999939, 28.951426721000075 ], [ -81.991942653999956, 28.951630162000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991942653999956, 28.951630162000072 ], [ -81.991897206999965, 28.95174365500003 ], [ -81.991847271999973, 28.951838214000077 ], [ -81.991805835999969, 28.951907274000064 ], [ -81.991759086999934, 28.951992271000051 ], [ -81.991712906999965, 28.95207931300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991712906999965, 28.95207931300007 ], [ -81.991667336999967, 28.952179496000042 ], [ -81.991623661999938, 28.952301387000034 ], [ -81.99160087599995, 28.952368174000071 ], [ -81.991585679999957, 28.952456672000039 ], [ -81.991581880999945, 28.952500084000064 ], [ -81.991576415999987, 28.952579606000029 ], [ -81.991572135999945, 28.952676035000025 ], [ -81.991569243999948, 28.952827271000046 ], [ -81.99156577499997, 28.953040656000042 ], [ -81.991563351999957, 28.953184110000052 ], [ -81.991564710999967, 28.953304775000049 ], [ -81.991551523999988, 28.953447337000057 ], [ -81.991521592999959, 28.953567222000061 ], [ -81.991458411999986, 28.95373681500007 ], [ -81.99139523499997, 28.953847926000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992257840999969, 28.95100276900007 ], [ -81.992069868999977, 28.951358417000051 ], [ -81.991990122999937, 28.951517039000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991791774999967, 28.950806401000079 ], [ -81.991883873999939, 28.950841506000074 ], [ -81.992002605999971, 28.950886272000048 ], [ -81.992095895999967, 28.95092730500005 ], [ -81.992257840999969, 28.95100276900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992257840999969, 28.95100276900007 ], [ -81.99242481999994, 28.951058237000041 ], [ -81.992500635999988, 28.951096714000073 ], [ -81.992589572999975, 28.951149299000065 ], [ -81.992704743, 28.951223091000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992575070999976, 28.949413331000073 ], [ -81.992570708999949, 28.949889949000067 ], [ -81.992568356999982, 28.949933935000047 ], [ -81.992547956999942, 28.950117005000038 ], [ -81.992505380999944, 28.950341019000064 ], [ -81.992465121999942, 28.95048988700006 ], [ -81.992426826999974, 28.950627084000075 ], [ -81.992377610999938, 28.950745682000047 ], [ -81.992322396999953, 28.950857504000055 ], [ -81.992257840999969, 28.95100276900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991990122999937, 28.951517039000066 ], [ -81.990091624999934, 28.950756166000076 ], [ -81.989802320999956, 28.950648285000057 ], [ -81.989646841999956, 28.950598807000063 ], [ -81.989390193999952, 28.950541517000033 ], [ -81.989134078999939, 28.950502745000051 ], [ -81.988872731999948, 28.950485265000054 ], [ -81.988664316999973, 28.950473609000028 ], [ -81.988439357999937, 28.950485229000037 ], [ -81.988178006999988, 28.950505574000033 ], [ -81.987956353999948, 28.950543382000035 ], [ -81.987784321999982, 28.95058410200005 ], [ -81.987618904999977, 28.950624824000045 ], [ -81.987460105999958, 28.950668455000027 ], [ -81.987294688999953, 28.950732454000047 ], [ -81.987041821999981, 28.950836381000045 ], [ -81.986884444999987, 28.950918638000076 ], [ -81.986669394999979, 28.951049556000044 ], [ -81.986424563999947, 28.95122120700006 ], [ -81.986187800999971, 28.95142643500003 ], [ -81.985729755999955, 28.951808903000028 ], [ -81.985532011999965, 28.951989680000054 ], [ -81.985120964999965, 28.952320952000036 ], [ -81.984932373999982, 28.952460599000062 ], [ -81.984727240999973, 28.952588604000027 ], [ -81.984571739999978, 28.952678789000061 ], [ -81.984388207999984, 28.952767463000043 ], [ -81.984168104999981, 28.952847507000058 ], [ -81.98394974699994, 28.952917314000047 ], [ -81.983738007999989, 28.952972575000047 ], [ -81.983652051999968, 28.952989509000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998068473999979, 28.952920777000031 ], [ -81.998068408999984, 28.952920778000077 ], [ -81.997993725999947, 28.952922461000071 ], [ -81.997437606999938, 28.952914161000024 ], [ -81.997154834999947, 28.952901720000057 ], [ -81.996890915999984, 28.952885134000041 ], [ -81.996504462999951, 28.952843673000075 ], [ -81.996085018999963, 28.952793920000033 ], [ -81.995637299999942, 28.952719294000076 ], [ -81.995189582999956, 28.952632231000052 ], [ -81.994770142999982, 28.952524442000026 ], [ -81.994407260999935, 28.952420800000027 ], [ -81.994044377999955, 28.952313011000058 ], [ -81.993601378999983, 28.952163765000023 ], [ -81.993092406999949, 28.951956485000039 ], [ -81.992503320999958, 28.951724326000033 ], [ -81.991990122999937, 28.951517039000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981499185999951, 28.917448285000035 ], [ -81.981380863999959, 28.91737715000005 ], [ -81.981308648999971, 28.91732541600004 ], [ -81.98121963899996, 28.917260380000073 ], [ -81.981137348999937, 28.91719682300004 ], [ -81.981055061999939, 28.917122921000043 ], [ -81.980947581999942, 28.917025370000033 ], [ -81.980858577999982, 28.916933733000064 ], [ -81.98078469099994, 28.916845055000067 ], [ -81.980692332999979, 28.916734205000068 ], [ -81.98060669299997, 28.916615969000077 ], [ -81.980517698999961, 28.916472608000049 ], [ -81.980472363999979, 28.916398712000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980472363999979, 28.916398712000046 ], [ -81.980448857999988, 28.916352897000024 ], [ -81.980418636999957, 28.916290824000043 ], [ -81.980361548999952, 28.91619032400007 ], [ -81.980310799999984, 28.916112181000074 ], [ -81.980269194999948, 28.916057308000063 ], [ -81.980156686999976, 28.915921333000028 ], [ -81.980102952999971, 28.915845958000034 ], [ -81.980066012999941, 28.915782406000062 ], [ -81.980011155999989, 28.915679268000076 ], [ -81.979959450999957, 28.915532513000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982006571999989, 28.914562153000077 ], [ -81.982110294999984, 28.914461800000026 ], [ -81.982198074999985, 28.91438262500003 ], [ -81.982288552999989, 28.914298678000023 ], [ -81.98234077099994, 28.914244276000034 ], [ -81.982387878999987, 28.914185084000053 ], [ -81.98244508199997, 28.914100734000044 ], [ -81.982488826999941, 28.914026741000043 ], [ -81.982530892999989, 28.913943868000047 ], [ -81.982569592999937, 28.913856556000042 ], [ -81.982600039999966, 28.913778240000056 ], [ -81.982620074999943, 28.913729285000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981578624999941, 28.915290509000044 ], [ -81.981592436999961, 28.915243290000035 ], [ -81.98162268599998, 28.915153518000068 ], [ -81.981660491999946, 28.915069565000067 ], [ -81.981707747999963, 28.914969819000078 ], [ -81.981771065999965, 28.914863426000068 ], [ -81.981844037999963, 28.914758311000071 ], [ -81.98190451499994, 28.914678517000027 ], [ -81.981967514999951, 28.914602049000052 ], [ -81.982006571999989, 28.914562153000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009592396999949, 28.930729275000033 ], [ -82.009641565999971, 28.930722800000069 ], [ -82.009658974999979, 28.930719061000048 ], [ -82.009683649999943, 28.930712545000063 ], [ -82.00972066199995, 28.930702413000063 ], [ -82.009750271999962, 28.930692281000063 ], [ -82.009788105999974, 28.930681424000056 ], [ -82.009817716999976, 28.930679251000072 ], [ -82.009858018999978, 28.930678524000029 ], [ -82.010294774999977, 28.930680662000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010294774999977, 28.930680662000043 ], [ -82.010301972999969, 28.929828943000075 ], [ -82.010302168999942, 28.929824474000043 ], [ -82.010302168999942, 28.929820692000078 ], [ -82.010302558999967, 28.929817255000046 ], [ -82.010302753999952, 28.929813817000024 ], [ -82.010303143999977, 28.92981003500006 ], [ -82.010303534999935, 28.929806597000038 ], [ -82.010304121, 28.929802815000073 ], [ -82.010304705999943, 28.929799378000041 ], [ -82.010305487999972, 28.929795940000076 ], [ -82.010306073999971, 28.929792158000055 ], [ -82.010306854999953, 28.929788720000033 ], [ -82.010307830999977, 28.929785282000068 ], [ -82.010308807999934, 28.929781845000036 ], [ -82.010309783999958, 28.929778407000072 ], [ -82.010310761999961, 28.929774626000039 ], [ -82.010311932999969, 28.929771188000075 ], [ -82.010313105999955, 28.929767750000053 ], [ -82.010314471999948, 28.929764312000032 ], [ -82.010315839999976, 28.929761217000078 ], [ -82.010317206999957, 28.929757780000045 ], [ -82.010318769999969, 28.929754342000024 ], [ -82.010320331999935, 28.929750904000059 ], [ -82.010321894999947, 28.929747810000038 ], [ -82.010323654, 28.929744372000073 ], [ -82.01032541099994, 28.929741278000051 ], [ -82.010327169999982, 28.92973784000003 ], [ -82.010329122999963, 28.929734746000065 ], [ -82.010330881999948, 28.929731652000044 ], [ -82.01033302999997, 28.929728557000033 ], [ -82.01033498399994, 28.929725464000057 ], [ -82.010337131999961, 28.929722370000036 ], [ -82.010339281999961, 28.929719276000071 ], [ -82.010341626999946, 28.92971618200005 ], [ -82.010343970999941, 28.929713087000039 ], [ -82.010346315999982, 28.929710337000074 ], [ -82.010348658999987, 28.929707243000053 ], [ -82.010351198999956, 28.929704492000042 ], [ -82.010353738999981, 28.929701742000077 ], [ -82.01035627899995, 28.929698992000056 ], [ -82.01035901299997, 28.929696241000045 ], [ -82.010361748999969, 28.929693491000023 ], [ -82.010364482999989, 28.929690740000069 ], [ -82.010367218999988, 28.929688334000048 ], [ -82.010370149999972, 28.929685583000037 ], [ -82.010373079999965, 28.929683177000072 ], [ -82.010376010999948, 28.929680426000061 ], [ -82.010378940999942, 28.92967802000004 ], [ -82.010382066999966, 28.92967561200004 ], [ -82.010385192999934, 28.929673549000029 ], [ -82.010388318999958, 28.929671143000064 ], [ -82.010391444999982, 28.929668736000053 ], [ -82.01039476699998, 28.929666673000042 ], [ -82.010397892999947, 28.929664611000078 ], [ -82.010401213999955, 28.929662548000067 ], [ -82.010404730999937, 28.929660485000056 ], [ -82.010408051999946, 28.929658422000045 ], [ -82.010411568999984, 28.929656358000045 ], [ -82.010414889999936, 28.929654639000034 ], [ -82.010418602999948, 28.92965257700007 ], [ -82.010422119999987, 28.929650858000059 ], [ -82.010425635999979, 28.929649139000048 ], [ -82.010429347999946, 28.929647420000038 ], [ -82.010432863999938, 28.929645701000027 ], [ -82.01043657699995, 28.929644324000037 ], [ -82.010440289999963, 28.929642949000026 ], [ -82.010444001999986, 28.929641230000072 ], [ -82.010447909999982, 28.929639855000062 ], [ -82.010451620999959, 28.929638480000051 ], [ -82.010455528999955, 28.929637447000061 ], [ -82.010459241999968, 28.929636072000051 ], [ -82.010463148999975, 28.92963504100004 ], [ -82.010467056999971, 28.92963400900004 ], [ -82.010470963999978, 28.929632978000029 ], [ -82.010475066999959, 28.929631946000029 ], [ -82.010478975999945, 28.929630914000029 ], [ -82.010482883999941, 28.929630227000075 ], [ -82.010486985999989, 28.929629195000075 ], [ -82.010490893999986, 28.929628507000075 ], [ -82.010494995999977, 28.929627819000075 ], [ -82.010498903999974, 28.929627475000075 ], [ -82.010503005999965, 28.929626788000064 ], [ -82.010507109999935, 28.929626443000075 ], [ -82.010511212999972, 28.929625755000075 ], [ -82.010515120999969, 28.929625411000075 ], [ -82.01051922399995, 28.929625067000075 ], [ -82.010523326999987, 28.929625067000075 ], [ -82.010527430999957, 28.929624723000074 ], [ -82.010531532999948, 28.929624722000028 ], [ -82.010535636999975, 28.929624722000028 ], [ -82.010539739999956, 28.929624722000028 ], [ -82.01103805799994, 28.929631289000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010294774999977, 28.930680662000043 ], [ -82.011027634999948, 28.930683500000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01103805799994, 28.929631289000042 ], [ -82.011027634999948, 28.930683500000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01103805799994, 28.929631289000042 ], [ -82.011173859999985, 28.929630752000037 ], [ -82.011179330999937, 28.929630752000037 ], [ -82.011184802999935, 28.929630751000047 ], [ -82.011190078999959, 28.929630751000047 ], [ -82.011195548999979, 28.929630750000058 ], [ -82.011201019999987, 28.929630750000058 ], [ -82.011529661999987, 28.929634847000045 ], [ -82.011536889999945, 28.929635190000056 ], [ -82.011540993999972, 28.929635190000056 ], [ -82.011545096999953, 28.929635533000067 ], [ -82.01154920099998, 28.929635877000067 ], [ -82.011553107999987, 28.929636221000067 ], [ -82.011557210999968, 28.929636907000031 ], [ -82.011561314999938, 28.929637251000031 ], [ -82.011565417999975, 28.929637939000031 ], [ -82.011569325999972, 28.929638625000052 ], [ -82.011573427999963, 28.929639313000052 ], [ -82.011577335999959, 28.929639999000074 ], [ -82.01158143899994, 28.929640687000074 ], [ -82.011585346999937, 28.929641718000028 ], [ -82.011589253999944, 28.929642405000038 ], [ -82.01159316199994, 28.929643436000049 ], [ -82.011597069999937, 28.92964446700006 ], [ -82.011600978, 28.92964584200007 ], [ -82.011604885999986, 28.929646872000035 ], [ -82.011608793999983, 28.929648248000035 ], [ -82.011612506999938, 28.929649279000046 ], [ -82.011616414999935, 28.929650653000067 ], [ -82.011620127999947, 28.929652028000078 ], [ -82.01162384099996, 28.929653746000042 ], [ -82.011627551999936, 28.929655122000042 ], [ -82.011631264999949, 28.929656841000053 ], [ -82.011634781999987, 28.929658559000075 ], [ -82.011638494999943, 28.929659934000028 ], [ -82.011642010999935, 28.92966199600005 ], [ -82.011645528999964, 28.929663715000061 ], [ -82.011649045999945, 28.929665433000025 ], [ -82.011652562999984, 28.929667495000047 ], [ -82.011656079999966, 28.929669213000068 ], [ -82.011659401999964, 28.929671276000079 ], [ -82.011662723999962, 28.929673339000033 ], [ -82.011666045999959, 28.929675745000054 ], [ -82.011669366999968, 28.929677807000076 ], [ -82.011672493999981, 28.92967986900004 ], [ -82.011675619999949, 28.929682276000051 ], [ -82.011678746999962, 28.929684681000026 ], [ -82.011681872999986, 28.929687088000037 ], [ -82.011684998999954, 28.929689495000048 ], [ -82.011687930999983, 28.929691900000023 ], [ -82.011690860999977, 28.929694307000034 ], [ -82.011693793999939, 28.929696712000066 ], [ -82.011696527999959, 28.929699463000077 ], [ -82.011699459999988, 28.929702212000052 ], [ -82.011702195999987, 28.929704619000063 ], [ -82.011704735999956, 28.929707369000027 ], [ -82.011707471999955, 28.929710119000049 ], [ -82.01171001199998, 28.92971321300007 ], [ -82.011712551999949, 28.929715962000046 ], [ -82.01171489799998, 28.929718713000057 ], [ -82.011717437999948, 28.929721807000078 ], [ -82.011719783, 28.929724556000053 ], [ -82.011721931999944, 28.929727650000075 ], [ -82.011724276999985, 28.92973074400004 ], [ -82.011726425999939, 28.929733838000061 ], [ -82.011728576999985, 28.929736931000036 ], [ -82.011730530999955, 28.929740025000058 ], [ -82.011732484999982, 28.929743119000079 ], [ -82.011734438999952, 28.929746213000044 ], [ -82.011736196999948, 28.929749307000066 ], [ -82.011738151999964, 28.92975274500003 ], [ -82.011739714999976, 28.929755838000062 ], [ -82.011741473999962, 28.929759276000027 ], [ -82.011743038999953, 28.929762713000059 ], [ -82.011744601999965, 28.929765807000024 ], [ -82.011745968999946, 28.929769245000045 ], [ -82.011747336999974, 28.929772682000078 ], [ -82.011748705999935, 28.929776120000042 ], [ -82.011750073999963, 28.929779558000064 ], [ -82.01175124599996, 28.929782995000039 ], [ -82.011752222999974, 28.929786433000061 ], [ -82.011753395999961, 28.929789871000025 ], [ -82.011754373999963, 28.929793308000058 ], [ -82.011755349999987, 28.929796746000079 ], [ -82.011756132999949, 28.929800528000044 ], [ -82.011756914999978, 28.929803965000076 ], [ -82.011757501999966, 28.929807403000041 ], [ -82.011758283999939, 28.929811185000062 ], [ -82.011758869999937, 28.929814622000038 ], [ -82.011759259999963, 28.929818060000059 ], [ -82.011759651999967, 28.929821842000024 ], [ -82.011760042999981, 28.929825280000045 ], [ -82.011760434999985, 28.929829060000031 ], [ -82.011760630999959, 28.929832498000053 ], [ -82.011760631999948, 28.929836280000075 ], [ -82.011760826999989, 28.92983971700005 ], [ -82.011760826999989, 28.929843155000071 ], [ -82.011749989999942, 28.930778228000065 ], [ -82.011749795999947, 28.930782697000041 ], [ -82.011749599999973, 28.930786479000062 ], [ -82.011749405999979, 28.930789917000027 ], [ -82.011749015999953, 28.930793354000059 ], [ -82.011748820999969, 28.930797136000024 ], [ -82.01174823499997, 28.930800574000045 ], [ -82.011747844999945, 28.930804356000067 ], [ -82.011747258999947, 28.930807793000042 ], [ -82.011746476999974, 28.930811231000064 ], [ -82.011745695999934, 28.930815012000039 ], [ -82.011744914999952, 28.930818450000061 ], [ -82.011744133999969, 28.930821888000025 ], [ -82.011743157999945, 28.930825325000058 ], [ -82.011742180999988, 28.930829107000079 ], [ -82.011741008999934, 28.930832545000044 ], [ -82.011739835999947, 28.930835983000065 ], [ -82.011738664999939, 28.93083942100003 ], [ -82.011737493999988, 28.930842859000052 ], [ -82.01173612599996, 28.930845953000073 ], [ -82.011734563999937, 28.930849391000038 ], [ -82.011733195999966, 28.93085282800007 ], [ -82.011731632999954, 28.930856266000035 ], [ -82.011730069999942, 28.930859361000046 ], [ -82.011728311999946, 28.930862799000067 ], [ -82.01172655299996, 28.930865893000032 ], [ -82.011724795999953, 28.930869331000054 ], [ -82.011722842999973, 28.930872425000075 ], [ -82.011720888999946, 28.93087551900004 ], [ -82.011718935999966, 28.930878613000061 ], [ -82.011716785999965, 28.930881708000072 ], [ -82.011714637999944, 28.930884802000037 ], [ -82.011712487999944, 28.930887896000058 ], [ -82.011710339, 28.930890990000023 ], [ -82.011707995999984, 28.930894084000045 ], [ -82.011705651999989, 28.930896835000055 ], [ -82.011703110999974, 28.930899929000077 ], [ -82.011700766, 28.930902679000042 ], [ -82.011698227999943, 28.930905430000053 ], [ -82.011695686999985, 28.930908180000074 ], [ -82.011692951999976, 28.930910931000028 ], [ -82.011690216999966, 28.93091368100005 ], [ -82.011687481999957, 28.930916431000071 ], [ -82.011684746999947, 28.930919182000025 ], [ -82.011681816999953, 28.930921588000047 ], [ -82.01167888599997, 28.930923995000057 ], [ -82.011675955999976, 28.930926745000079 ], [ -82.011673024999936, 28.930929152000033 ], [ -82.01166989799998, 28.930931559000044 ], [ -82.011666772999945, 28.930933621000065 ], [ -82.011663645999988, 28.930936029000065 ], [ -82.011660520999953, 28.930938436000076 ], [ -82.011657199999945, 28.930940498000041 ], [ -82.011653876999958, 28.930942561000052 ], [ -82.011650556999939, 28.930944624000063 ], [ -82.011647234999941, 28.930946687000073 ], [ -82.011643914, 28.930948750000027 ], [ -82.011640396999951, 28.930950813000038 ], [ -82.011636880999959, 28.930952532000049 ], [ -82.011633363999977, 28.93095459500006 ], [ -82.011629847999984, 28.930956314000071 ], [ -82.011626329999956, 28.930958033000024 ], [ -82.011622616999944, 28.930959752000035 ], [ -82.011618905999967, 28.930961472000035 ], [ -82.011615192999955, 28.930962847000046 ], [ -82.011611480999989, 28.930964223000046 ], [ -82.011607768999966, 28.930965942000057 ], [ -82.011604056999943, 28.930967319000047 ], [ -82.011600149999936, 28.930968694000057 ], [ -82.01159643699998, 28.930969725000068 ], [ -82.011592528999984, 28.930971100000079 ], [ -82.011588620999987, 28.930972133000068 ], [ -82.01158471399998, 28.930973164000079 ], [ -82.011580805999984, 28.930974196000079 ], [ -82.011576898999976, 28.930975227000033 ], [ -82.01157299099998, 28.930976259000033 ], [ -82.011569082999983, 28.930976947000033 ], [ -82.011564980999935, 28.930977978000044 ], [ -82.011561072999939, 28.930978667000034 ], [ -82.011556968999969, 28.930979355000034 ], [ -82.011552865999988, 28.930979698000044 ], [ -82.011548958999981, 28.930980386000044 ], [ -82.011544854999954, 28.930980731000034 ], [ -82.011540751999974, 28.930981418000044 ], [ -82.011536647999947, 28.930981762000044 ], [ -82.011532545999955, 28.930982107000034 ], [ -82.011528637999959, 28.930982107000034 ], [ -82.011524534999978, 28.930982451000034 ], [ -82.011520432999987, 28.930982452000023 ], [ -82.01151632899996, 28.930982452000023 ], [ -82.011512225999979, 28.93098245300007 ], [ -82.011262126999952, 28.930979380000053 ], [ -82.011254897999947, 28.930979381000043 ], [ -82.011250793999977, 28.930979037000043 ], [ -82.01124668999995, 28.930978693000043 ], [ -82.01124258699997, 28.930978350000032 ], [ -82.011238483999989, 28.930978006000032 ], [ -82.011234380999952, 28.930977663000078 ], [ -82.011230472999955, 28.930976976000068 ], [ -82.011226368999985, 28.930976632000068 ], [ -82.011222265999947, 28.930975945000057 ], [ -82.011218357999951, 28.930975258000046 ], [ -82.01121425599996, 28.930974570000046 ], [ -82.011210347999963, 28.930973540000025 ], [ -82.011206439999967, 28.930972852000025 ], [ -82.011202336999986, 28.930971821000071 ], [ -82.011198429, 28.93097079100005 ], [ -82.011194520999936, 28.93096975900005 ], [ -82.011190613999986, 28.930968729000028 ], [ -82.011186705999989, 28.930967354000074 ], [ -82.011182992999977, 28.930966322000074 ], [ -82.011179084999981, 28.930964947000064 ], [ -82.011175371999968, 28.930963572000053 ], [ -82.011171658999956, 28.930962198000032 ], [ -82.011167750999959, 28.930960823000078 ], [ -82.011164233999978, 28.930959104000067 ], [ -82.011160521999955, 28.930957729000056 ], [ -82.011156808999942, 28.930956010000045 ], [ -82.01115329199996, 28.930954292000024 ], [ -82.011149579999937, 28.93095257300007 ], [ -82.011146061999966, 28.930950854000059 ], [ -82.011142544999984, 28.930948793000027 ], [ -82.011139027999945, 28.930947074000073 ], [ -82.011135705999948, 28.930945012000052 ], [ -82.01113238399995, 28.930942949000041 ], [ -82.011128866999968, 28.930940887000077 ], [ -82.011125740999944, 28.930938824000066 ], [ -82.011122418999946, 28.930936762000044 ], [ -82.011119096999948, 28.930934356000023 ], [ -82.011115970999981, 28.930932293000069 ], [ -82.011112843999967, 28.930929888000037 ], [ -82.011109719, 28.930927481000026 ], [ -82.011106785999971, 28.930925074000072 ], [ -82.011103658999957, 28.93092266900004 ], [ -82.011100728999963, 28.930919918000029 ], [ -82.011097992999964, 28.930917513000054 ], [ -82.011095061999981, 28.930914762000043 ], [ -82.011092325999982, 28.930912357000068 ], [ -82.011089589999983, 28.930909606000057 ], [ -82.011086854999974, 28.930906856000036 ], [ -82.011084314999948, 28.93090410700006 ], [ -82.011081772999944, 28.930901356000049 ], [ -82.011079233999965, 28.930898607000074 ], [ -82.01107669299995, 28.930895513000053 ], [ -82.011074347999966, 28.930892762000042 ], [ -82.011072001999935, 28.930889669000067 ], [ -82.011069658999986, 28.930886919000045 ], [ -82.011067508999986, 28.930883825000024 ], [ -82.011065358999986, 28.930880731000059 ], [ -82.011063209999975, 28.930877637000037 ], [ -82.011061059999975, 28.930874544000062 ], [ -82.011059104999958, 28.930871450000041 ], [ -82.011057346999962, 28.930868013000065 ], [ -82.011055392999936, 28.930864918000054 ], [ -82.01105363399995, 28.930861824000033 ], [ -82.011051875999954, 28.930858387000058 ], [ -82.011050310999963, 28.930855293000036 ], [ -82.011048551999977, 28.930851855000071 ], [ -82.011047184999939, 28.930848418000039 ], [ -82.011045621999983, 28.930844980000074 ], [ -82.011044252999966, 28.930841887000042 ], [ -82.011042884999938, 28.930838449000078 ], [ -82.011041712999941, 28.930835011000056 ], [ -82.011040538999964, 28.930831574000024 ], [ -82.011039366999967, 28.930828136000059 ], [ -82.011038389999953, 28.930824354000038 ], [ -82.011037411999951, 28.930820917000062 ], [ -82.011036434999937, 28.930817479000041 ], [ -82.011035652999965, 28.930814041000076 ], [ -82.011034869999946, 28.930810604000044 ], [ -82.011034088999963, 28.930806822000079 ], [ -82.011033502999965, 28.930803384000058 ], [ -82.011032914999987, 28.930799946000036 ], [ -82.011032329999978, 28.930796165000061 ], [ -82.011031938999963, 28.930792727000039 ], [ -82.011031546999959, 28.930788946000064 ], [ -82.011031350999986, 28.930785509000032 ], [ -82.011031155999945, 28.930781727000067 ], [ -82.011030958999982, 28.930778289000045 ], [ -82.011030958999982, 28.930774507000024 ], [ -82.011030957999935, 28.930771070000048 ], [ -82.011027634999948, 28.930683500000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975768975999983, 28.889895240000044 ], [ -81.975887780999983, 28.888978497000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955273138999985, 28.94470885800007 ], [ -81.956204770999989, 28.94495385700003 ], [ -81.956274827999948, 28.944963275000077 ], [ -81.956343146999984, 28.944968844000073 ], [ -81.956515882999952, 28.944951192000076 ], [ -81.956599375999986, 28.944935280000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96338858699994, 28.897732694000069 ], [ -81.963376110999945, 28.897645950000026 ], [ -81.963360794999971, 28.897390614000074 ], [ -81.963381421999941, 28.897144325000056 ], [ -81.963390645999937, 28.897081282000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963390645999937, 28.897081282000045 ], [ -81.963504131999969, 28.897089945000062 ], [ -81.963933495999981, 28.897072168000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963390645999937, 28.897081282000045 ], [ -81.963408919999949, 28.89690743400007 ], [ -81.963427788999979, 28.89671953800007 ], [ -81.963427227999944, 28.896643577000077 ], [ -81.963423052999985, 28.896560966000038 ], [ -81.963402924999968, 28.896390245000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001685007999981, 28.91018241200004 ], [ -82.001577759999975, 28.910159036000039 ], [ -82.001476396999976, 28.910135811000032 ], [ -82.001386690999936, 28.910100293000028 ], [ -82.001301470999977, 28.910047015000032 ], [ -82.001247647999946, 28.909997683000029 ], [ -82.00119448099997, 28.909943148000025 ], [ -82.001151213999947, 28.909881260000077 ], [ -82.001115708999976, 28.909810160000063 ], [ -82.001062658999956, 28.909699466000063 ], [ -82.00100323099997, 28.909567546000062 ], [ -82.000953525999989, 28.909462076000068 ], [ -82.000903508999954, 28.909391392000032 ], [ -82.000765580999939, 28.909244690000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000685252999972, 28.910807189000025 ], [ -82.000492550999979, 28.910510395000074 ], [ -82.000383982999949, 28.910333431000026 ], [ -82.000281076999954, 28.910133846000065 ], [ -82.000084695999988, 28.909716604000039 ], [ -82.000045600999954, 28.909626711000044 ], [ -82.000036630999944, 28.909585272000072 ], [ -82.00003438799996, 28.909526073000052 ], [ -82.000029902999984, 28.909462928000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990287511999952, 28.888888464000047 ], [ -81.990616775999968, 28.88897442800004 ], [ -81.990800435999972, 28.889044285000068 ], [ -81.991020370999934, 28.889160043000061 ], [ -81.99216993999994, 28.889766766000037 ], [ -81.993033825999987, 28.890221804000078 ], [ -81.993369807999954, 28.890389587000072 ], [ -81.993466094999974, 28.890440129000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974372449999976, 28.903400028000078 ], [ -81.974339397999984, 28.903331219000052 ], [ -81.974295323999968, 28.903244167000025 ], [ -81.974244098999975, 28.903156065000076 ], [ -81.974197639999943, 28.903072161000068 ], [ -81.974155945999939, 28.903001889000052 ], [ -81.974096381999971, 28.902907494000033 ], [ -81.974036816999956, 28.902807854000059 ], [ -81.97397486999995, 28.902709264000066 ], [ -81.973914113999967, 28.902615917000048 ], [ -81.973843827999985, 28.902505789000031 ], [ -81.97375924399995, 28.902378878000036 ], [ -81.973671085999968, 28.902250919000039 ], [ -81.973652669999979, 28.902228269000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977337784999975, 28.889390879000075 ], [ -81.978444617999969, 28.889538584000036 ], [ -81.978607313999987, 28.889563827000075 ], [ -81.978765547999956, 28.889578104000066 ], [ -81.978866913, 28.889578579000045 ], [ -81.978923781999981, 28.889573345000031 ], [ -81.978979699999968, 28.889565016000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977260225999942, 28.890000257000054 ], [ -81.97768913699997, 28.890103256000032 ], [ -81.978273680999962, 28.890235018000055 ], [ -81.978661145999979, 28.890327063000029 ], [ -81.978824091999968, 28.890356690000033 ], [ -81.978961968999954, 28.890366945000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977348599999971, 28.888792027000079 ], [ -81.977367545999982, 28.888788593000072 ], [ -81.977565206999941, 28.888758718000076 ], [ -81.977771455999971, 28.888753595000026 ], [ -81.978409527999986, 28.888786014000061 ], [ -81.978754042999981, 28.888798114000053 ], [ -81.978864687999987, 28.888801683000054 ], [ -81.978928933999953, 28.888800494000066 ], [ -81.978977712999949, 28.88878859600004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974842819999935, 28.889915848000044 ], [ -81.975209340999982, 28.88879572500008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992201913999963, 28.869724259000066 ], [ -81.992274386999952, 28.869779440000059 ], [ -81.992491794999978, 28.870060502000058 ], [ -81.992623021999975, 28.870232934000057 ], [ -81.992660236999939, 28.870291559000066 ], [ -81.992677795999953, 28.870354654000039 ], [ -81.992675897999959, 28.870413980000023 ], [ -81.992654346999984, 28.870462258000032 ], [ -81.992613208999956, 28.870510534000061 ], [ -81.992554441999971, 28.870550189000028 ], [ -81.992372362999959, 28.870621237000023 ], [ -81.992290557, 28.870654348000073 ], [ -81.992167849999987, 28.870681617000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965233448999982, 28.86906914900004 ], [ -81.965289135999967, 28.869020334000027 ], [ -81.965377332999935, 28.868970560000037 ], [ -81.965601922999952, 28.868863661000034 ], [ -81.965829961999987, 28.868748453000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985369206999962, 28.884673638000038 ], [ -81.985429741999951, 28.884601176000047 ], [ -81.98547782199995, 28.884541117000026 ], [ -81.98553947299996, 28.884452438000039 ], [ -81.98558531599997, 28.884377177000033 ], [ -81.985622518999946, 28.884290646000068 ], [ -81.985738205999951, 28.883951401000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984755709999945, 28.885023537000052 ], [ -81.984859618999963, 28.884972669000035 ], [ -81.985036420999961, 28.884889153000074 ], [ -81.98515679999997, 28.884823585000049 ], [ -81.985265713999979, 28.884751710000046 ], [ -81.985333070999957, 28.884705054000051 ], [ -81.985369206999962, 28.884673638000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989350807999983, 28.873369601000036 ], [ -81.989276228999984, 28.873329985000055 ], [ -81.989148738999972, 28.873255586000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991234913999961, 28.945966278000071 ], [ -81.991232251999975, 28.946036144000061 ], [ -81.991222936999975, 28.946088710000026 ], [ -81.991215617999956, 28.946139946000073 ], [ -81.991182924999976, 28.946225984000023 ], [ -81.991173094999965, 28.946274383000059 ], [ -81.991165228999989, 28.946334881000041 ], [ -81.991165203999969, 28.946630461000041 ], [ -81.991165172999956, 28.946991725000032 ], [ -81.991166642999985, 28.947309992000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992907242999934, 28.946631160000038 ], [ -81.992980732999968, 28.946746907000033 ], [ -81.993022070999984, 28.946810293000055 ], [ -81.993088571999976, 28.946890549000045 ], [ -81.993277861999957, 28.947030667000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980274554999937, 28.950333969000042 ], [ -81.980275337999956, 28.950465343000076 ], [ -81.980272480999986, 28.950518126000077 ], [ -81.980256204999989, 28.950586870000052 ], [ -81.980234145999987, 28.950646339000059 ], [ -81.980191503999947, 28.950720026000056 ], [ -81.980145922999952, 28.95079112600007 ], [ -81.98010181099994, 28.950864813000067 ], [ -81.980047406999972, 28.950954012000068 ], [ -81.979993007999951, 28.951021233000063 ], [ -81.979934198999956, 28.95108069500003 ], [ -81.979869512999983, 28.951136280000071 ], [ -81.979798946999949, 28.951185398000064 ], [ -81.979744553999979, 28.951216419000048 ], [ -81.979682810999975, 28.951247437000063 ], [ -81.979621069999951, 28.951271993000034 ], [ -81.979555570999935, 28.95129459900005 ], [ -81.979484484999944, 28.951311261000058 ], [ -81.979401551999956, 28.95132792000004 ], [ -81.979299664999985, 28.951338325000052 ], [ -81.979216733999976, 28.951346648000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981874642999969, 28.87694962300003 ], [ -81.981901987999947, 28.876923499000043 ], [ -81.982346761999963, 28.876510932000031 ], [ -81.982488696999951, 28.876378516000045 ], [ -81.982612947999939, 28.876251505000027 ], [ -81.982721263999963, 28.876136255000063 ], [ -81.982904155999961, 28.875891543000023 ], [ -81.982964118999973, 28.875821587000075 ], [ -81.983049778999941, 28.875711656000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984216784999944, 28.876698051000062 ], [ -81.984328584999957, 28.876524812000071 ], [ -81.984470642999952, 28.876259238000046 ], [ -81.984528247999947, 28.87617708700003 ], [ -81.984796401999972, 28.875836254000035 ], [ -81.985080495999966, 28.875476884000079 ], [ -81.985366469999974, 28.875100403000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012598360999959, 28.912834005000036 ], [ -82.012670496999988, 28.912832904000027 ], [ -82.01281228299996, 28.912833985000077 ], [ -82.012956557999985, 28.912840538000069 ], [ -82.013210282999978, 28.912864587000058 ], [ -82.013390628999957, 28.912891929000068 ], [ -82.013568487999976, 28.912920364000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012598360999959, 28.912834005000036 ], [ -82.01259681099998, 28.912742288000061 ], [ -82.012596801999962, 28.912667344000056 ], [ -82.012596791999954, 28.912584150000043 ], [ -82.012596777999988, 28.912464515000067 ], [ -82.012596769999959, 28.91240057300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013296360999959, 28.909551966000038 ], [ -82.013451468999961, 28.909551950000036 ], [ -82.013732380999954, 28.909551922000048 ], [ -82.013978520999956, 28.909549147000064 ], [ -82.014117218999957, 28.909549132000052 ], [ -82.014303385999938, 28.909549113000025 ], [ -82.014489553999965, 28.909549093000066 ], [ -82.014644270999952, 28.909549076000076 ], [ -82.015139676, 28.909546270000078 ], [ -82.015284819999977, 28.909546254000077 ], [ -82.015429964999953, 28.909546238000075 ], [ -82.015578233999975, 28.909546220000038 ], [ -82.015714001999982, 28.909543455000062 ], [ -82.015878095999938, 28.909546185000067 ], [ -82.016029490999983, 28.909546168000077 ], [ -82.016142989999935, 28.909546154000054 ], [ -82.016231482999956, 28.909548894000068 ], [ -82.016287432999945, 28.909557722000045 ], [ -82.01633966199995, 28.909577065000065 ], [ -82.016391895999959, 28.909623012000054 ], [ -82.01642213699995, 28.909661706000065 ], [ -82.01643864, 28.909712497000044 ], [ -82.016442886999982, 28.90977954300007 ], [ -82.016436648999957, 28.909865488000037 ], [ -82.016423969999948, 28.90997377900004 ], [ -82.016414617999942, 28.910134669000058 ], [ -82.01641286499995, 28.910164921000046 ], [ -82.016405069999962, 28.910287651000033 ], [ -82.016395704999979, 28.910373597000046 ], [ -82.016386147999981, 28.910468137000066 ], [ -82.016373663999957, 28.910584678000077 ], [ -82.01636732999998, 28.910728337000023 ], [ -82.016370088999963, 28.910793639000076 ], [ -82.016378351999947, 28.910892803000024 ], [ -82.016389352999965, 28.910967644000038 ], [ -82.016405188999954, 28.911048086000051 ], [ -82.016424153999935, 28.911142622000057 ], [ -82.016442350999966, 28.911242411000046 ], [ -82.016452634999951, 28.911316057000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016452634999951, 28.911316057000079 ], [ -82.016454807999935, 28.911366070000042 ], [ -82.016458975999967, 28.911456487000066 ], [ -82.016462115999957, 28.911550681000051 ], [ -82.016459010999938, 28.911681318000035 ], [ -82.016459033999979, 28.911825704000023 ], [ -82.016461989999982, 28.911989341000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012599300999966, 28.910729471000025 ], [ -82.012599690999934, 28.910709876000055 ], [ -82.01259988399994, 28.910695781000072 ], [ -82.012602793999974, 28.910529392000058 ], [ -82.012593404999961, 28.910426603000076 ], [ -82.012593392999975, 28.910324158000037 ], [ -82.012599629999954, 28.910204522000072 ], [ -82.012599612999963, 28.910062886000048 ], [ -82.012599595999973, 28.909921594000025 ], [ -82.012599583999986, 28.909827055000051 ], [ -82.012599575999957, 28.909760362000043 ], [ -82.01260347799996, 28.909721926000032 ], [ -82.012618513999939, 28.909679916000073 ], [ -82.012631451999937, 28.909652158000029 ], [ -82.012646834999941, 28.909629722000034 ], [ -82.012669689999939, 28.909601268000074 ], [ -82.012705133999987, 28.909581568000078 ], [ -82.012738444999968, 28.909566115000075 ], [ -82.012770424999985, 28.909555296000065 ], [ -82.012795290999975, 28.909552014000042 ], [ -82.012911913999972, 28.909549253000023 ], [ -82.013053931999934, 28.909551989000079 ], [ -82.013246351999953, 28.909551971000042 ], [ -82.013296360999959, 28.909551966000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962816376999967, 28.861219960000028 ], [ -81.962935258999948, 28.861159045000079 ], [ -81.963013857999954, 28.861112867000031 ], [ -81.963119552999956, 28.861038946000065 ], [ -81.963222242999962, 28.860965737000072 ], [ -81.963343730999952, 28.860883672000057 ], [ -81.963482605999957, 28.860811134000073 ], [ -81.963671916999942, 28.860744591000071 ], [ -81.963786808999942, 28.860709992000068 ], [ -81.963899627999979, 28.860702383000046 ], [ -81.963967314999934, 28.860710041000061 ], [ -81.96406449899996, 28.860740624000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963177543999961, 28.862001095000039 ], [ -81.963356347999934, 28.861825367000051 ], [ -81.963423751999983, 28.861762046000024 ], [ -81.963508741999988, 28.861690391000025 ], [ -81.963613204999945, 28.861606274000053 ], [ -81.963699961999964, 28.861540852000076 ], [ -81.963829208999982, 28.861448952000046 ], [ -81.963947537999957, 28.861375021000072 ], [ -81.964066037999942, 28.86131206400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963514224999983, 28.862717790000033 ], [ -81.96366218199995, 28.862600224000062 ], [ -81.963844799999947, 28.862430638000035 ], [ -81.96395281599996, 28.862316917000044 ], [ -81.964078535999988, 28.862186059000067 ], [ -81.964114022999979, 28.862148130000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964114022999979, 28.862148130000037 ], [ -81.96418926399997, 28.86207928500005 ], [ -81.964248946999987, 28.862020095000048 ], [ -81.964322193999976, 28.861949926000079 ], [ -81.964399239999977, 28.861872118000065 ], [ -81.964467063999962, 28.861798128000032 ], [ -81.964501792999954, 28.86174991300004 ], [ -81.964539737999985, 28.861688055000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964398855999946, 28.863024592000045 ], [ -81.964478256999939, 28.862890791000041 ], [ -81.964543889999959, 28.862791489000074 ], [ -81.964612269999975, 28.862677868000048 ], [ -81.96465352599995, 28.862575700000036 ], [ -81.964666569999963, 28.862499308000054 ], [ -81.964667692999967, 28.862367996000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965375386999938, 28.863100187000043 ], [ -81.965380928999934, 28.862853321000046 ], [ -81.965382711999951, 28.862809692000042 ], [ -81.965389821999963, 28.862723990000063 ], [ -81.965398705999974, 28.862624266000068 ], [ -81.965402276999953, 28.86253077300006 ], [ -81.965392260999977, 28.862429923000036 ], [ -81.965369210999938, 28.862323024000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964114022999979, 28.862148130000037 ], [ -81.964209462999975, 28.86221080100006 ], [ -81.964291018999972, 28.862264297000024 ], [ -81.964382993999948, 28.86230710500007 ], [ -81.964471501999981, 28.862337685000057 ], [ -81.964542665999943, 28.862352790000045 ], [ -81.964586347999955, 28.862360936000073 ], [ -81.964635072999954, 28.862367604000042 ], [ -81.964667692999967, 28.862367996000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964667692999967, 28.862367996000046 ], [ -81.964813062999951, 28.862365449000038 ], [ -81.965018397999984, 28.862353037000048 ], [ -81.96520426099994, 28.862339061000057 ], [ -81.965369210999938, 28.862323024000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965369210999938, 28.862323024000034 ], [ -81.965476863999982, 28.862311083000066 ], [ -81.965705216999936, 28.862278419000063 ], [ -81.96591852399996, 28.862245334000079 ], [ -81.966035690999945, 28.862210985000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964107054999943, 28.859895127000073 ], [ -81.964134175999959, 28.860007246000066 ], [ -81.964151486999981, 28.860140179000041 ], [ -81.964161844999978, 28.86030061200006 ], [ -81.964153123999949, 28.860425899000063 ], [ -81.964135733999967, 28.860529792000079 ], [ -81.96410618699997, 28.860644377000028 ], [ -81.96406449899996, 28.860740624000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96406449899996, 28.860740624000073 ], [ -81.964024543999983, 28.860844512000028 ], [ -81.964010634999966, 28.860911736000048 ], [ -81.964005403999977, 28.860982019000062 ], [ -81.964001909, 28.861052302000076 ], [ -81.96400882599994, 28.861127170000032 ], [ -81.964024421999966, 28.861198987000023 ], [ -81.964046960999951, 28.86126622200004 ], [ -81.964066037999942, 28.86131206400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965768978999961, 28.861627853000073 ], [ -81.965876208999987, 28.861607421000031 ], [ -81.966094478999935, 28.86156545800003 ], [ -81.966348334999964, 28.86151013500006 ], [ -81.966461159999938, 28.861485334000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973645774999966, 28.893849921000026 ], [ -81.97354175199996, 28.893900921000068 ], [ -81.973480289999941, 28.893928953000056 ], [ -81.973393046999945, 28.893973905000053 ], [ -81.973239926999952, 28.894054849000042 ], [ -81.973163546999956, 28.894090078000033 ], [ -81.973083441999961, 28.894125306000035 ], [ -81.972959745999958, 28.894170336000059 ], [ -81.972835269999962, 28.894219199000077 ], [ -81.972718180999948, 28.894258515000047 ], [ -81.972601094999959, 28.894295958000043 ], [ -81.972461770999985, 28.894332647000056 ], [ -81.972305293999966, 28.894362941000054 ], [ -81.972219605999953, 28.894375217000061 ], [ -81.972128329999975, 28.894386673000042 ], [ -81.971929946999978, 28.894403845000056 ], [ -81.971767888999977, 28.894407909000051 ], [ -81.971646813999939, 28.89440542400007 ], [ -81.971513630999937, 28.894399659000044 ], [ -81.971358572999975, 28.894385906000025 ], [ -81.971225846999971, 28.894379107000077 ], [ -81.971074968999972, 28.894373338000037 ], [ -81.97087566, 28.894368377000035 ], [ -81.970700052999973, 28.894368720000045 ], [ -81.97057687399996, 28.894372012000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978249425999934, 28.894136693000064 ], [ -81.978155041999969, 28.894098704000044 ], [ -81.978047682999943, 28.894045764000055 ], [ -81.977925828999958, 28.89398949200006 ], [ -81.977776583999969, 28.893912239000031 ], [ -81.977648078999948, 28.893842297000049 ], [ -81.977559091999979, 28.893797187000075 ], [ -81.977454371999954, 28.893748259000063 ], [ -81.977362236999966, 28.893709340000044 ], [ -81.977259763999939, 28.893666601000064 ], [ -81.977135716999953, 28.893619112000067 ], [ -81.977016673999969, 28.893577703000062 ], [ -81.976892813999939, 28.893537520000052 ], [ -81.976729199999966, 28.89349481000005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982224567999936, 28.895163120000063 ], [ -81.982319401999973, 28.895180869000058 ], [ -81.982656844999951, 28.89524244100005 ], [ -81.982852205999961, 28.895265442000039 ], [ -81.983044279999945, 28.895281913000076 ], [ -81.983422227999938, 28.895291664000069 ], [ -81.983634578999954, 28.895285952000052 ], [ -81.983784530999969, 28.895277774000078 ], [ -81.983997398999975, 28.895261928000025 ], [ -81.984083286999976, 28.895250513000065 ], [ -81.984084218999953, 28.895250389000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985849672999962, 28.895028230000037 ], [ -81.986019840999973, 28.895021891000056 ], [ -81.986381211999969, 28.895014552000077 ], [ -81.986944684999969, 28.895023623000043 ], [ -81.987200437999945, 28.895019228000024 ], [ -81.987427233999938, 28.895005420000075 ], [ -81.987684266999963, 28.894980899000075 ], [ -81.987828584999988, 28.894963551000046 ], [ -81.987992630999941, 28.894940724000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987992630999941, 28.894940724000037 ], [ -81.988092136999967, 28.894923736000067 ], [ -81.988297039999964, 28.894884411000078 ], [ -81.988625818999935, 28.894810673000052 ], [ -81.988961339999946, 28.894717866000065 ], [ -81.989254135999943, 28.894620125000074 ], [ -81.989417147999973, 28.89456074800006 ], [ -81.989712020999946, 28.894440164000059 ], [ -81.990133227999934, 28.894238131000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990133227999934, 28.894238131000066 ], [ -81.990280908999978, 28.894148544000075 ], [ -81.990369391999934, 28.894098553000049 ], [ -81.990615336999952, 28.893949579000036 ], [ -81.990794113999982, 28.893827286000032 ], [ -81.99094127799998, 28.893720745000053 ], [ -81.991125695999983, 28.893578142000024 ], [ -81.991361344999973, 28.893377348000058 ], [ -81.991547628999967, 28.893201960000056 ], [ -81.991678958999955, 28.893070828000077 ], [ -81.991863381999963, 28.892870031000029 ], [ -81.991966178999974, 28.892762780000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99239197199995, 28.892955888000074 ], [ -81.992319735999956, 28.892923333000056 ], [ -81.992201847999979, 28.892874265000046 ], [ -81.992056876999982, 28.892808692000074 ], [ -81.991966178999974, 28.892762780000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991619527999944, 28.891346226000053 ], [ -81.99171034799997, 28.891364796000062 ], [ -81.991833397999983, 28.891352084000061 ], [ -81.992050591999941, 28.891313937000064 ], [ -81.992233111999951, 28.891307287000075 ], [ -81.992370155999936, 28.891310950000047 ], [ -81.992495777999977, 28.891332885000054 ], [ -81.992613802999983, 28.89135830400005 ], [ -81.992694071999949, 28.891385891000027 ], [ -81.992781279999974, 28.891419703000054 ], [ -81.992859143999965, 28.891458082000042 ], [ -81.992927662999989, 28.891500115000042 ], [ -81.993042548999938, 28.891579185000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991966178999974, 28.892762780000055 ], [ -81.992045940999958, 28.892667593000056 ], [ -81.992291833999957, 28.892399591000071 ], [ -81.992911221999975, 28.891721792000055 ], [ -81.993042548999938, 28.891579185000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993333635999988, 28.891259258000048 ], [ -81.99357437499998, 28.890993996000077 ], [ -81.993605498999955, 28.890960149000023 ], [ -81.993605567999964, 28.890960074000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993466094999974, 28.890440129000069 ], [ -81.99387055699998, 28.890671897000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99387055699998, 28.890671897000061 ], [ -81.994030754999983, 28.890487489000066 ], [ -81.994107128999985, 28.890389955000046 ], [ -81.994171394999967, 28.890298980000068 ], [ -81.994251494999958, 28.890177679000033 ], [ -81.994343703999959, 28.89002195300003 ], [ -81.994425667999963, 28.889863769000044 ], [ -81.99449552599998, 28.889710501000025 ], [ -81.994543028999942, 28.889585921000048 ], [ -81.994603572999949, 28.889400687000034 ], [ -81.994630779999966, 28.889302374000067 ], [ -81.994654805999971, 28.889203159000033 ], [ -81.994684616999962, 28.889046610000037 ], [ -81.99470604399994, 28.888887604000047 ], [ -81.994720955999981, 28.888683516000071 ], [ -81.994721896999977, 28.888473692000048 ], [ -81.99471538399996, 28.888354846000027 ], [ -81.994710731999987, 28.888289276000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995195500999955, 28.888242769000044 ], [ -81.994710731999987, 28.888289276000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994710731999987, 28.888289276000023 ], [ -81.99469490599995, 28.888166332000026 ], [ -81.994650218999936, 28.887869624000075 ], [ -81.994600873999957, 28.887564721000047 ], [ -81.994560597999964, 28.88731454200007 ], [ -81.994510568999942, 28.886996715000066 ], [ -81.994504984999935, 28.886931964000041 ], [ -81.994499403999953, 28.886822954000024 ], [ -81.99451152499995, 28.886515594000059 ], [ -81.994534473999977, 28.886413154000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994534473999977, 28.886413154000024 ], [ -81.994574918999945, 28.886117162000062 ], [ -81.994640080999943, 28.885796785000025 ], [ -81.994719250999935, 28.88556073500007 ], [ -81.994910189999985, 28.885018149000075 ], [ -81.994942789999982, 28.884923074000028 ], [ -81.995101126999941, 28.884460809000075 ], [ -81.99521862499995, 28.884124770000028 ], [ -81.995264329999941, 28.883974616000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979485352999973, 28.875634326000068 ], [ -81.979721436999966, 28.874720596000031 ], [ -81.979819457999952, 28.874395618000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978266324999936, 28.94990641000004 ], [ -81.978750025999943, 28.949904808000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977759566999964, 28.899629705000052 ], [ -81.977553822999937, 28.899618393000026 ], [ -81.977437388999988, 28.899609755000029 ], [ -81.977363393999951, 28.899605913000073 ], [ -81.97727307599996, 28.899600151000072 ], [ -81.977175140999975, 28.899594390000061 ], [ -81.977106585999934, 28.899587674000031 ], [ -81.977055445999952, 28.899574260000065 ], [ -81.977021714999978, 28.899558933000037 ], [ -81.976987986999973, 28.899535944000036 ], [ -81.976959698999963, 28.899505296000029 ], [ -81.976940119999938, 28.899479438000071 ], [ -81.976923802999977, 28.899446878000049 ], [ -81.976916191999976, 28.899420064000026 ], [ -81.976910766999936, 28.899348243000077 ], [ -81.976900996999973, 28.89924290700003 ], [ -81.976891223999985, 28.899146189000078 ], [ -81.976880362999964, 28.89905234400004 ], [ -81.976853186999961, 28.898924980000061 ], [ -81.976827097999944, 28.89880144600005 ], [ -81.976803821999965, 28.898718877000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976803821999965, 28.898718877000078 ], [ -81.976791913999989, 28.898681402000079 ], [ -81.976752063999982, 28.898577356000033 ], [ -81.976712910999936, 28.898482548000061 ], [ -81.976668318999941, 28.898384866000072 ], [ -81.97661937099997, 28.898295802000064 ], [ -81.976566514999945, 28.898203445000036 ], [ -81.976521958999967, 28.898136879000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975553488999935, 28.897189187000038 ], [ -81.975507795999988, 28.897130391000076 ], [ -81.975459366999985, 28.897081223000043 ], [ -81.975410738999983, 28.897045117000062 ], [ -81.975351857999954, 28.897014314000046 ], [ -81.975298829999986, 28.896995593000042 ], [ -81.975225571999943, 28.89698132500007 ], [ -81.975181153999984, 28.896980134000046 ], [ -81.975123234999955, 28.896982497000067 ], [ -81.975042505999966, 28.897002613000041 ], [ -81.974948274999974, 28.897038132000034 ], [ -81.974865773999966, 28.89706805000003 ], [ -81.97479838199996, 28.897090726000044 ], [ -81.97473118399995, 28.897113747000049 ], [ -81.974663986999985, 28.897136768000053 ], [ -81.974589365999975, 28.897163225000043 ], [ -81.974499702999935, 28.89719586700005 ], [ -81.974433504, 28.897219074000077 ], [ -81.97435732799994, 28.897236297000063 ], [ -81.974274626999943, 28.897243942000046 ], [ -81.974188660999971, 28.897246798000026 ], [ -81.974123105, 28.897242899000048 ], [ -81.974038306999944, 28.897232222000071 ], [ -81.973985182999968, 28.897219946000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973985182999968, 28.897219946000064 ], [ -81.973911788999942, 28.897197847000029 ], [ -81.973815440999942, 28.897171076000063 ], [ -81.973712073999934, 28.897144243000071 ], [ -81.973583377999944, 28.89710775900005 ], [ -81.973375833999967, 28.897049887000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990797616999942, 28.868845348000036 ], [ -81.990943094999977, 28.868844326000044 ], [ -81.991030422999984, 28.86884625700003 ], [ -81.991120185999989, 28.868859432000079 ], [ -81.991214744, 28.868896566000046 ], [ -81.991291394999962, 28.868944311000064 ], [ -81.991332947999979, 28.868985285000065 ], [ -81.991364528999952, 28.86902625700003 ], [ -81.991408645999968, 28.869103486000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975282983999989, 28.88220259600007 ], [ -81.975517553999964, 28.882228019000024 ], [ -81.97564891199994, 28.882255523000026 ], [ -81.975754797999969, 28.882285266000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981033641999943, 28.950816884000062 ], [ -81.980978439999944, 28.950982951000071 ], [ -81.980951614999981, 28.951043380000044 ], [ -81.980921442999943, 28.951087595000047 ], [ -81.980829256999982, 28.951173071000028 ], [ -81.980690140999968, 28.951305707000074 ], [ -81.980589573999964, 28.951401499000042 ], [ -81.980504092999979, 28.951482555000041 ], [ -81.980435858999954, 28.951560857000061 ], [ -81.980376695999951, 28.951663832000065 ], [ -81.980346518999966, 28.951731629000051 ], [ -81.980321367999977, 28.951802376000046 ], [ -81.980293210999946, 28.951972061000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971150793999982, 28.902532249000046 ], [ -81.971183886999938, 28.902218125000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973276970999962, 28.899341265000032 ], [ -81.973440217999951, 28.899317663000033 ], [ -81.973595597999974, 28.899307829000065 ], [ -81.973750519999953, 28.899285492000047 ], [ -81.973825144999978, 28.899274952000042 ], [ -81.973899772999971, 28.89925855000007 ], [ -81.974147434999963, 28.899189368000066 ], [ -81.974382232999972, 28.899113095000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956642740999939, 28.87841325100004 ], [ -81.956568027999936, 28.878418202000034 ], [ -81.956433397999945, 28.87842844000005 ], [ -81.956236057999945, 28.878436591000025 ], [ -81.956090723999978, 28.87843067700004 ], [ -81.95593895899998, 28.878414580000026 ], [ -81.955864166999959, 28.878402179000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991811412999937, 28.870023280000055 ], [ -81.992150782999943, 28.869762378000075 ], [ -81.992201913999963, 28.869724259000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960001399999953, 28.874949470000047 ], [ -81.96016969599998, 28.875066500000059 ], [ -81.96054172099997, 28.875331764000066 ], [ -81.96084583399994, 28.875555414000075 ], [ -81.961028782999961, 28.875685411000063 ], [ -81.961060746999976, 28.875726559000043 ], [ -81.961076122999941, 28.875755647000062 ], [ -81.961087781999936, 28.875792606000061 ], [ -81.961090863999971, 28.875825838000026 ], [ -81.961090215999945, 28.875862978000043 ], [ -81.961080364999987, 28.875891122000041 ], [ -81.961022869999965, 28.876002589000052 ], [ -81.960873409999977, 28.876322486000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957170986999984, 28.873701170000061 ], [ -81.957245005999937, 28.873711703000026 ], [ -81.957290281999974, 28.873716450000074 ], [ -81.957333350999988, 28.873728545000063 ], [ -81.957422088999976, 28.873770266000065 ], [ -81.957490917999962, 28.873812669000074 ], [ -81.957648472999949, 28.873926218000065 ], [ -81.958507869999949, 28.874544430000071 ], [ -81.959000539999977, 28.874893358000065 ], [ -81.959077633999982, 28.87494332700004 ], [ -81.959144020999986, 28.874969739000051 ], [ -81.959231108999973, 28.874991154000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967382418999989, 28.950801373000047 ], [ -81.967400769999983, 28.951270194000074 ], [ -81.967404451999982, 28.951457700000049 ], [ -81.967389430999958, 28.951651781000066 ], [ -81.967385622999984, 28.951868893000039 ], [ -81.967396296999937, 28.951930387000061 ], [ -81.967443179999975, 28.952051331000064 ], [ -81.967481339999949, 28.952108677000069 ], [ -81.967529880999962, 28.952154363000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992009284999938, 28.895744386000047 ], [ -81.991996855999957, 28.89563023200003 ], [ -81.991964886999938, 28.895422254000039 ], [ -81.99192450399994, 28.895243315000073 ], [ -81.991886423999972, 28.895158400000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992009284999938, 28.895744386000047 ], [ -81.992286040999943, 28.895712192000076 ], [ -81.992535649, 28.895633477000047 ], [ -81.992675471999974, 28.895549584000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992003906999969, 28.896371441000042 ], [ -81.992023481, 28.896008658000028 ], [ -81.992009284999938, 28.895744386000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992003906999969, 28.896371441000042 ], [ -81.992245529999934, 28.896378490000075 ], [ -81.992429331999972, 28.896368875000064 ], [ -81.992619932999958, 28.896342878000041 ], [ -81.992791090999958, 28.896309875000043 ], [ -81.992908322999938, 28.896276868000029 ], [ -81.993091204999985, 28.896214979000035 ], [ -81.993288156999938, 28.896130393000078 ], [ -81.993529812999952, 28.895999370000027 ], [ -81.99370315699997, 28.895906748000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000029902999984, 28.909462928000039 ], [ -82.000108393999938, 28.909464901000035 ], [ -82.000220524999975, 28.909464901000035 ], [ -82.000328135999951, 28.909454223000068 ], [ -82.000417571999947, 28.90943367400007 ], [ -82.000489654999967, 28.909410986000069 ], [ -82.000568265999959, 28.909376684000051 ], [ -82.000649644999953, 28.909329508000042 ], [ -82.00074243499995, 28.909261441000069 ], [ -82.000765580999939, 28.909244690000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002602165999974, 28.90892616900004 ], [ -82.002637078999953, 28.908903837000025 ], [ -82.002687382999966, 28.908872888000076 ], [ -82.00275914499997, 28.908831447000068 ], [ -82.002835193999942, 28.908785625000064 ], [ -82.002910791999966, 28.908746776000044 ], [ -82.002983401999984, 28.908711072000074 ], [ -82.003066375999936, 28.90867752500003 ], [ -82.003146964999985, 28.908649826000044 ], [ -82.003219436999984, 28.908621978000042 ], [ -82.003272692999985, 28.908592669000029 ], [ -82.003310814999963, 28.908561095000039 ], [ -82.003337724999938, 28.908521628000074 ], [ -82.003355663999969, 28.908468350000078 ], [ -82.003355662, 28.908397312000034 ], [ -82.003346689999944, 28.908306541000059 ], [ -82.003337715999976, 28.908225636000054 ], [ -82.00332874299994, 28.908148678000032 ], [ -82.003315269999973, 28.908041496000067 ], [ -82.003305645999944, 28.907959693000066 ], [ -82.003281585999957, 28.907816297000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000765580999939, 28.909244690000037 ], [ -82.000845579999975, 28.909179620000032 ], [ -82.000938368999982, 28.909107084000027 ], [ -82.001067297999953, 28.909011856000063 ], [ -82.001206580999963, 28.908907347000024 ], [ -82.001348549999989, 28.908803844000033 ], [ -82.001474133999977, 28.908701232000055 ], [ -82.001599716999976, 28.908602565000024 ], [ -82.001727543999948, 28.908505873000024 ], [ -82.001826216999973, 28.908424966000041 ], [ -82.001892631999965, 28.908371733000024 ], [ -82.001971983999965, 28.908322355000053 ], [ -82.002005535999956, 28.908309388000077 ], [ -82.002039259999947, 28.908304593000025 ], [ -82.002115508999964, 28.90830261900004 ], [ -82.002164845999971, 28.908310511000025 ], [ -82.002211939999938, 28.908332216000076 ], [ -82.002252307999981, 28.908365761000027 ], [ -82.002306130999955, 28.908434826000075 ], [ -82.002350984999964, 28.908509811000044 ], [ -82.002413628999989, 28.908626121000054 ], [ -82.002475361999984, 28.908725815000025 ], [ -82.002530399999955, 28.908809746000031 ], [ -82.002602165999974, 28.90892616900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989730530999964, 28.951281 ], [ -81.989599692999946, 28.951526793000028 ], [ -81.989540222999949, 28.951627463000079 ], [ -81.989482240999962, 28.951701983000078 ], [ -81.989416684999981, 28.95177310400004 ], [ -81.989347692999957, 28.951841853000076 ], [ -81.989182260999939, 28.951990867000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991712906999965, 28.95207931300007 ], [ -81.991539557999943, 28.952001536000068 ], [ -81.991260100999966, 28.951892999000052 ], [ -81.991043075999983, 28.951809307000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991043075999983, 28.951809307000076 ], [ -81.990880555999979, 28.951743488000034 ], [ -81.990687314999946, 28.951663720000056 ], [ -81.990489614999944, 28.951589181000031 ], [ -81.990387048999935, 28.951548643000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990387048999935, 28.951548643000024 ], [ -81.990183899999977, 28.951460156000053 ], [ -81.990021875999958, 28.951396079000062 ], [ -81.989730530999964, 28.951281 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990387048999935, 28.951548643000024 ], [ -81.990237869999987, 28.951833327000031 ], [ -81.990163008999957, 28.951954330000035 ], [ -81.990094208999949, 28.952047832000062 ], [ -81.990006646999973, 28.95214923900005 ], [ -81.989880975999938, 28.952264739000043 ], [ -81.989674974999957, 28.952450705000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963895381999976, 28.880398343000024 ], [ -81.963995423999961, 28.880307070000072 ], [ -81.964203673999975, 28.880111171000067 ], [ -81.964287475999981, 28.880052751000051 ], [ -81.964376934999962, 28.880009458000075 ], [ -81.964486896999972, 28.879976484000053 ], [ -81.964616967999973, 28.879958642000076 ], [ -81.965102471999955, 28.879951205000054 ], [ -81.965483186999961, 28.879950053000073 ], [ -81.965571819, 28.879943597000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963367042999948, 28.880874234000032 ], [ -81.963463462999982, 28.880800248000071 ], [ -81.963683240999956, 28.880599197000038 ], [ -81.963895381999976, 28.880398343000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963895381999976, 28.880398343000024 ], [ -81.964061919999949, 28.880522086000042 ], [ -81.964111059999937, 28.880545061000078 ], [ -81.964157539999974, 28.880559147000042 ], [ -81.964286602999948, 28.880590940000047 ], [ -81.964621331999979, 28.880657811000049 ], [ -81.964814729999944, 28.88069452700006 ], [ -81.965028964999988, 28.880714225000077 ], [ -81.965224756999987, 28.880721037000058 ], [ -81.965535221999971, 28.880724752000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972492502999955, 28.902668970000036 ], [ -81.972454987999981, 28.902611473000036 ], [ -81.972277813999938, 28.902355321000073 ], [ -81.972206111999981, 28.90224309000007 ], [ -81.97218995299994, 28.902198242000054 ], [ -81.972174587999973, 28.902130559000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972174587999973, 28.902130559000057 ], [ -81.972264323, 28.902115914000035 ], [ -81.972343802999944, 28.902103522000061 ], [ -81.972407897999972, 28.902093383000079 ], [ -81.972477122999976, 28.902083244000039 ], [ -81.97255275599997, 28.902070853000055 ], [ -81.972636193999961, 28.902053457000079 ], [ -81.972723631999941, 28.902034823000065 ], [ -81.972822992999966, 28.902006866000079 ], [ -81.972891706999974, 28.901981630000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971183886999938, 28.902218125000047 ], [ -81.971286978999956, 28.902232187000038 ], [ -81.971388255999955, 28.902236215000073 ], [ -81.971442570999955, 28.902233894000062 ], [ -81.971512963999942, 28.902232647000062 ], [ -81.971599497999989, 28.902229915000078 ], [ -81.971689353999977, 28.902224433000072 ], [ -81.971771108999974, 28.902212981000048 ], [ -81.971870468999953, 28.902193185000044 ], [ -81.971984325999983, 28.902168116000041 ], [ -81.972112471999935, 28.902142703000038 ], [ -81.972174587999973, 28.902130559000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95475500799995, 28.872408579000023 ], [ -81.954907926999965, 28.872172388000024 ], [ -81.955005876999962, 28.872061022000025 ], [ -81.955130094999959, 28.871945461000053 ], [ -81.955275794999977, 28.871846724000079 ], [ -81.955514630999971, 28.871726997000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957063730999948, 28.930190597000035 ], [ -81.957007266999938, 28.930306636000068 ], [ -81.956969017999938, 28.930383654000025 ], [ -81.956943094999986, 28.930439465000063 ], [ -81.956922357999986, 28.930485026000042 ], [ -81.956898554999952, 28.930545476000077 ], [ -81.956866865999984, 28.930634188000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955685544999938, 28.931001725000044 ], [ -81.955882414999962, 28.931087125000033 ], [ -81.955959400999973, 28.931116996000071 ], [ -81.955996145999961, 28.931130386000063 ], [ -81.956045562999975, 28.931147125000052 ], [ -81.956084843999975, 28.931158287000073 ], [ -81.956132996999941, 28.931169451000073 ], [ -81.956187485999976, 28.931180616000063 ], [ -81.956250846999978, 28.931189556000049 ], [ -81.956300266999961, 28.931196262000071 ], [ -81.956343352999966, 28.931200735000061 ], [ -81.956400377999955, 28.931205213000055 ], [ -81.95644219899998, 28.93120857100007 ], [ -81.956492888999946, 28.931210817000078 ], [ -81.956549916999961, 28.931209720000027 ], [ -81.956593005999935, 28.931208620000064 ], [ -81.956657637999967, 28.931207526000037 ], [ -81.956719735999968, 28.931203087000029 ], [ -81.956793865999941, 28.931196966000073 ], [ -81.956880627999965, 28.931191298000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956880627999965, 28.931191298000044 ], [ -81.95694268699998, 28.931427125000027 ], [ -81.957046017999971, 28.931831658000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956866865999984, 28.930634188000056 ], [ -81.956856743999936, 28.930718494000075 ], [ -81.956851021999967, 28.930765239000038 ], [ -81.956847118999974, 28.930809664000037 ], [ -81.956845806999979, 28.930849536000039 ], [ -81.956844492999949, 28.930896240000038 ], [ -81.956844474999968, 28.930940668000062 ], [ -81.956849636999948, 28.93098167900007 ], [ -81.956853360999958, 28.931025840000075 ], [ -81.956862539999975, 28.931093323000027 ], [ -81.956880627999965, 28.931191298000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957353314999978, 28.933084411000038 ], [ -81.957362037999985, 28.933159619000037 ], [ -81.957367173999955, 28.93326746200006 ], [ -81.957368864999978, 28.93335404100003 ], [ -81.95736900299994, 28.933420988000023 ], [ -81.95736881199997, 28.933484665000037 ], [ -81.957368022999958, 28.933543004000057 ], [ -81.957368754999948, 28.933624403000067 ], [ -81.957362210999975, 28.93371365400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957792954999945, 28.928685100000052 ], [ -81.957756376999953, 28.928837772000065 ], [ -81.957727750999936, 28.928947505000053 ], [ -81.957687992999979, 28.929039744000079 ], [ -81.957647202999965, 28.929124494000064 ], [ -81.957599659999971, 28.929205686000046 ], [ -81.957561621999957, 28.929273744000056 ], [ -81.957527652999943, 28.92933475500007 ], [ -81.957501849999971, 28.929378817000043 ], [ -81.957459736999965, 28.929451651000079 ], [ -81.957301128999973, 28.929752207000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960151571999972, 28.890711137000039 ], [ -81.960140276999937, 28.890622782000037 ], [ -81.960123921, 28.890491797000038 ], [ -81.960103265999976, 28.890364250000061 ], [ -81.960085447999973, 28.890228003000061 ], [ -81.960065272999941, 28.890142301000026 ], [ -81.960041406999949, 28.890093787000069 ], [ -81.960008266999978, 28.890055164000046 ], [ -81.95996986199998, 28.890025010000045 ], [ -81.959917272999974, 28.890000477000058 ], [ -81.959747508999953, 28.889932008000073 ], [ -81.959598713999981, 28.889872137000054 ], [ -81.95944074099998, 28.889796096000055 ], [ -81.959279092999964, 28.889716818000068 ], [ -81.959163367999963, 28.889661808000028 ], [ -81.959080700999948, 28.889637530000073 ], [ -81.959012727999948, 28.889629424000077 ], [ -81.958930750999968, 28.88962719500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984325419999948, 28.874294771000052 ], [ -81.98425195599998, 28.874337868000055 ], [ -81.984188402999962, 28.874381498000048 ], [ -81.984132568999939, 28.874440231000051 ], [ -81.984011631999977, 28.87458777300003 ], [ -81.983910650999974, 28.874716678000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984776701999976, 28.874743742000078 ], [ -81.98471514299996, 28.874701782000045 ], [ -81.984643657999982, 28.874645838000049 ], [ -81.984482821999961, 28.874491994000039 ], [ -81.984424977999936, 28.874426487000051 ], [ -81.984386451999967, 28.874376788000063 ], [ -81.984325419999948, 28.874294771000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016452712999978, 28.912628769000037 ], [ -82.01645272899998, 28.912730870000075 ], [ -82.016459192999946, 28.912830565000036 ], [ -82.016459201999965, 28.912889007000047 ], [ -82.016457290999938, 28.912949849000029 ], [ -82.016449203999969, 28.91301634000007 ], [ -82.016433019999965, 28.91307095600007 ], [ -82.016386258999944, 28.913140415000044 ], [ -82.01633056999998, 28.913207361000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01633056999998, 28.913207361000048 ], [ -82.016368612999941, 28.913240825000059 ], [ -82.016396866999969, 28.913271684000051 ], [ -82.016437910999969, 28.913319708000074 ], [ -82.016495426999938, 28.91342288900006 ], [ -82.016565802999935, 28.913561127000037 ], [ -82.016629677999958, 28.913681049000047 ], [ -82.016680189999988, 28.913774727000032 ], [ -82.016732983999987, 28.913873788000046 ], [ -82.016780500999971, 28.91397285000005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014298291999978, 28.913042704000077 ], [ -82.014371160999985, 28.913054570000043 ], [ -82.014480994999985, 28.913061384000059 ], [ -82.014638512999966, 28.913063169000054 ], [ -82.014785225999958, 28.913063153000053 ], [ -82.014937797999949, 28.913063136000062 ], [ -82.015212663999989, 28.913063106000038 ], [ -82.015487529999973, 28.913063074000036 ], [ -82.015646353999955, 28.913063056000055 ], [ -82.015750085999969, 28.913063044000069 ], [ -82.015893264999988, 28.913063897000029 ], [ -82.015982765, 28.913066353000033 ], [ -82.016061561999948, 28.913080688000036 ], [ -82.016130849999968, 28.913098609000031 ], [ -82.01620421299998, 28.913128485000072 ], [ -82.016276220999941, 28.913165530000072 ], [ -82.01633056999998, 28.913207361000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958051004999959, 28.901728290000051 ], [ -81.957902130999969, 28.901704928000072 ], [ -81.957779621999975, 28.901683093000031 ], [ -81.957571563999977, 28.90164057000004 ], [ -81.957415775999948, 28.901602486000058 ], [ -81.957307227999934, 28.901571493000063 ], [ -81.957091029999958, 28.901506491000077 ], [ -81.95700057099998, 28.901468549000072 ], [ -81.956923035999978, 28.901434404000042 ], [ -81.956839038999988, 28.901394570000036 ], [ -81.956727050999973, 28.90133197800003 ], [ -81.956627984999955, 28.901273183000058 ], [ -81.95657414599998, 28.901237150000043 ], [ -81.956503079999948, 28.901187841000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958051004999959, 28.901728290000051 ], [ -81.958064111999988, 28.901630110000042 ], [ -81.95807118099998, 28.901548735000063 ], [ -81.958067188999962, 28.901476201000037 ], [ -81.958059159999948, 28.901446125000064 ], [ -81.958046102999958, 28.901420468000026 ], [ -81.958012949999954, 28.901376231000029 ], [ -81.957854192999946, 28.901219619000074 ], [ -81.957561597999984, 28.900941149000062 ], [ -81.957511573999966, 28.900891346000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958050833999948, 28.902153754000039 ], [ -81.958042911999939, 28.901856545000044 ], [ -81.958051004999959, 28.901728290000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957452392999983, 28.902062207000029 ], [ -81.957569374999935, 28.902080186000035 ], [ -81.957732202999978, 28.902113850000035 ], [ -81.957904080999981, 28.902139555000076 ], [ -81.958050833999948, 28.902153754000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958211096999946, 28.903635627000028 ], [ -81.958211166999945, 28.903459474000044 ], [ -81.958209033999935, 28.903234391000069 ], [ -81.958204212999988, 28.903194019000068 ], [ -81.958196179999959, 28.903168365000056 ], [ -81.958184126999981, 28.903147134000051 ], [ -81.958127863999948, 28.903074584000024 ], [ -81.958090691999985, 28.903025037000077 ], [ -81.958076626999969, 28.90300557300003 ], [ -81.95806457499998, 28.902978150000024 ], [ -81.958057899999972, 28.902948585000047 ], [ -81.958050833999948, 28.902153754000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957417579999969, 28.903724561000047 ], [ -81.957401879999964, 28.903630731000078 ], [ -81.957396893999942, 28.903552123000054 ], [ -81.957400468999936, 28.902163280000025 ], [ -81.95740748299994, 28.902134896000064 ], [ -81.957418582999935, 28.902113751000059 ], [ -81.957452392999983, 28.902062207000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957511573999966, 28.900891346000037 ], [ -81.957384557999944, 28.900758237000048 ], [ -81.957235397999966, 28.900579768000057 ], [ -81.957039369999961, 28.900335154000061 ], [ -81.957021954999959, 28.900313919000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956508208999935, 28.900630281000076 ], [ -81.957021954999959, 28.900313919000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957021954999959, 28.900313919000041 ], [ -81.95688105499994, 28.900126900000032 ], [ -81.95671862599994, 28.89992058200005 ], [ -81.956588015999955, 28.899761026000078 ], [ -81.956565986999976, 28.899737096000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005472690999966, 28.924820824000051 ], [ -82.005444498999964, 28.924619642000039 ], [ -82.005436452999959, 28.924492994000047 ], [ -82.005431876999978, 28.924432186000047 ], [ -82.005420380999965, 28.924392631000046 ], [ -82.005392530999984, 28.924328357000036 ], [ -82.005357558999947, 28.924241524000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967875510999988, 28.908934462000047 ], [ -81.967785221999975, 28.908786864000035 ], [ -81.967721757999982, 28.908676347000039 ], [ -81.967656878999946, 28.90858445300006 ], [ -81.967611344999966, 28.90853680500004 ], [ -81.967558461999943, 28.908491239000057 ], [ -81.967510077999975, 28.90845755600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967510077999975, 28.90845755600003 ], [ -81.967452327999979, 28.908421754000074 ], [ -81.967338050999956, 28.908360887000072 ], [ -81.967134892999979, 28.908259027000042 ], [ -81.966853709999953, 28.908116023000048 ], [ -81.966792575999989, 28.908085068000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967510077999975, 28.90845755600003 ], [ -81.96774745, 28.908175135000079 ], [ -81.967771005999964, 28.90814658100004 ], [ -81.967823116999966, 28.908099468000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968019781999942, 28.931873849000056 ], [ -81.967955612999958, 28.932031672000051 ], [ -81.967936059999943, 28.932076703000064 ], [ -81.96791553099996, 28.932121045000031 ], [ -81.967894219999948, 28.932165387000055 ], [ -81.967872126999964, 28.932209385000078 ], [ -81.967849057999956, 28.932253039000045 ], [ -81.967825009999956, 28.932296006000058 ], [ -81.967800377999936, 28.932338972000025 ], [ -81.967774768999959, 28.932381595000038 ], [ -81.96774818199998, 28.932423528000072 ], [ -81.967721008999945, 28.932465119000028 ], [ -81.967701111999986, 28.932513659000051 ], [ -81.967683291999947, 28.932579453000073 ], [ -81.967658619999952, 28.932650730000034 ], [ -81.967592825999986, 28.932765869000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006947050999941, 28.920237038000039 ], [ -82.007081550999942, 28.920235440000056 ], [ -82.007364342999949, 28.920274839000058 ], [ -82.007620536, 28.920317934000025 ], [ -82.007712891999972, 28.920337674000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007712891999972, 28.920337674000052 ], [ -82.007898508999972, 28.920366246000071 ], [ -82.008067122999989, 28.920379492000052 ], [ -82.008211686999971, 28.920382385000039 ], [ -82.008422881999934, 28.920380997000052 ], [ -82.008495167999968, 28.920380305000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007571906999942, 28.921104763000073 ], [ -82.007624444999976, 28.920961244000068 ], [ -82.007660323999971, 28.920863857000029 ], [ -82.007682108999973, 28.920790816000078 ], [ -82.007691078999983, 28.920715212000061 ], [ -82.007693779999954, 28.920600370000045 ], [ -82.007698280999989, 28.920495638000034 ], [ -82.007700338999939, 28.920404147000056 ], [ -82.007712891999972, 28.920337674000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986640577999935, 28.946960567000076 ], [ -81.986678034999954, 28.947196069000029 ], [ -81.986703420999959, 28.947387657000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986703420999959, 28.947387657000036 ], [ -81.986519468999973, 28.947406368000031 ], [ -81.986350074999962, 28.947420617000034 ], [ -81.986225435999984, 28.947434441000041 ], [ -81.986093789999984, 28.947447926000052 ], [ -81.985985003999986, 28.947460396000054 ], [ -81.985833827999954, 28.947474148000026 ], [ -81.985687962999975, 28.947490339000069 ], [ -81.985514462999959, 28.947507877000078 ], [ -81.98536859799998, 28.947520015000066 ], [ -81.985304283999938, 28.947530844000028 ], [ -81.98526265299995, 28.947545662000039 ], [ -81.985215941999968, 28.94757553900007 ], [ -81.985174790999963, 28.947629817000063 ], [ -81.985152083999935, 28.947690154000043 ], [ -81.985145935999981, 28.947740121000038 ], [ -81.985158209999952, 28.947795493000058 ], [ -81.985191978999978, 28.947861670000066 ], [ -81.98523649699996, 28.947931901000061 ], [ -81.985284083999943, 28.948006184000064 ], [ -81.985340882999935, 28.94807776600004 ], [ -81.985402292999936, 28.948123690000045 ], [ -81.985466775999953, 28.948142604000054 ], [ -81.985568695999973, 28.948142616000041 ], [ -81.985677480999982, 28.948130148000075 ], [ -81.985824104999949, 28.948113523000075 ], [ -81.985989647999986, 28.948101060000056 ], [ -81.986164649999978, 28.948084437000034 ], [ -81.986316002999956, 28.948067813000023 ], [ -81.98651465599994, 28.948042871000041 ], [ -81.986722765999957, 28.948022091000041 ], [ -81.986921417999952, 28.948001311000041 ], [ -81.987066974999948, 28.947983910000062 ], [ -81.987249834999943, 28.94796500700005 ], [ -81.987413332999949, 28.947947991000035 ], [ -81.987630611999975, 28.947925305000069 ], [ -81.987736292999955, 28.947922241000072 ], [ -81.987825032999979, 28.947916572000054 ], [ -81.987879892999956, 28.947895290000076 ], [ -81.987929913999949, 28.947865492000062 ], [ -81.987967027999957, 28.947824340000068 ], [ -81.987996075999945, 28.947761901000035 ], [ -81.988018674999978, 28.947675335000042 ], [ -81.988041271999975, 28.947584511000059 ], [ -81.988050964999957, 28.947490848000029 ], [ -81.988038064999955, 28.947424148000039 ], [ -81.988018708999959, 28.947381571000051 ], [ -81.987979989999985, 28.947338993000074 ], [ -81.987946110999985, 28.947319123000057 ], [ -81.987899323999955, 28.947297831000071 ], [ -81.987787042999969, 28.947285844000078 ], [ -81.987621501999968, 28.947294149000072 ], [ -81.987432311999953, 28.947310773000027 ], [ -81.987257643999953, 28.947325977000048 ], [ -81.987054348999948, 28.947346181000057 ], [ -81.986895826999955, 28.947364260000029 ], [ -81.986703420999959, 28.947387657000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956333985999947, 28.921949831000063 ], [ -81.95634333299995, 28.922580375000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95634333299995, 28.922580375000052 ], [ -81.956497404999936, 28.922579725000048 ], [ -81.956550546999949, 28.922579398000039 ], [ -81.956753148999951, 28.922578775000034 ], [ -81.956783236999968, 28.922579473000042 ], [ -81.956813127999965, 28.922581201000071 ], [ -81.956843018999962, 28.922583961000043 ], [ -81.956872713999985, 28.922587752000027 ], [ -81.956902213999967, 28.922592230000078 ], [ -81.95693171299996, 28.922597396000072 ], [ -81.956960820999939, 28.922603938000066 ], [ -81.956989538999949, 28.922611166000024 ], [ -81.957065919999934, 28.922632849000024 ], [ -81.957100691999983, 28.92264282900004 ], [ -81.957128822999948, 28.922651776000066 ], [ -81.957227726999974, 28.922685795000064 ], [ -81.957274531999985, 28.922709011000052 ], [ -81.957327077999935, 28.92273736900006 ], [ -81.957383013999959, 28.922765727000069 ], [ -81.95742708399996, 28.922792590000029 ], [ -81.957481322999968, 28.922826914000041 ], [ -81.957527087999949, 28.922856762000038 ], [ -81.957567763999975, 28.922888098000044 ], [ -81.957605050999973, 28.922917942000026 ], [ -81.957690533999937, 28.922998617000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956351373999951, 28.920678154000029 ], [ -81.956562446999953, 28.920677726000065 ], [ -81.958827216999964, 28.920633179000049 ], [ -81.958883740999966, 28.920639164000079 ], [ -81.958924434999972, 28.92065111200003 ], [ -81.958958724999945, 28.92066602500006 ], [ -81.958976695, 28.92067428200005 ], [ -81.958994273999963, 28.920683913000062 ], [ -81.959011268999973, 28.920693888000073 ], [ -81.959027478999985, 28.920704894000039 ], [ -81.959043103999988, 28.920716243000072 ], [ -81.959058143999982, 28.920728623000059 ], [ -81.959072203999938, 28.920741691000046 ], [ -81.959086654999965, 28.920761635000076 ], [ -81.95909680799997, 28.920777108000038 ], [ -81.959105787999988, 28.920793267000079 ], [ -81.959113986999967, 28.920809772000041 ], [ -81.959121013999948, 28.920826619000024 ], [ -81.959127258999956, 28.920843809000075 ], [ -81.959132332999957, 28.920861344000059 ], [ -81.959136232999981, 28.920878878000053 ], [ -81.959139350999976, 28.920896754000069 ], [ -81.959141297999963, 28.920914632000063 ], [ -81.959142072999953, 28.920932508000078 ], [ -81.959143792999953, 28.921029110000063 ], [ -81.95914434499997, 28.92111574300003 ], [ -81.959145411999941, 28.921284386000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954178242999944, 28.920568600000024 ], [ -81.954334063999966, 28.920511539000074 ], [ -81.954461354999978, 28.92047861900005 ], [ -81.954562309999972, 28.920469840000067 ], [ -81.955780773999948, 28.920451791000062 ], [ -81.955799138999964, 28.920451797000055 ], [ -81.955819455999972, 28.920452835000049 ], [ -81.955839773999969, 28.920454904000053 ], [ -81.955860091999966, 28.920457661000057 ], [ -81.95588001699997, 28.920461449000072 ], [ -81.955899747999979, 28.920466268000041 ], [ -81.955919085999938, 28.920471775000067 ], [ -81.955938230999948, 28.920478313000046 ], [ -81.95595678799998, 28.920485883000026 ], [ -81.955974952999952, 28.920494139000027 ], [ -81.955992728999945, 28.920503083000028 ], [ -81.956009720999987, 28.92051305800004 ], [ -81.956031009999947, 28.920527160000063 ], [ -81.95604663499995, 28.920538509000039 ], [ -81.956061477999981, 28.920550890000072 ], [ -81.956075342999952, 28.920562583000049 ], [ -81.956089601999963, 28.920573589000071 ], [ -81.956104249999953, 28.920584595000037 ], [ -81.956122008999955, 28.920596489000047 ], [ -81.95613491499995, 28.920604544000071 ], [ -81.956150735999984, 28.920613831000026 ], [ -81.956167142999959, 28.920622774000037 ], [ -81.956188170999951, 28.920635453000045 ], [ -81.956224093999936, 28.920652588000053 ], [ -81.95626451399994, 28.920665774000042 ], [ -81.956309424999972, 28.920673692000037 ], [ -81.956351373999951, 28.920678154000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956351373999951, 28.920678154000029 ], [ -81.956344559999934, 28.920751754000037 ], [ -81.956333252999968, 28.920975346000034 ], [ -81.956335385999978, 28.921313115000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968514161999963, 28.903844341000024 ], [ -81.968940965999934, 28.903762789000041 ], [ -81.969005102999972, 28.903759668000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980472363999979, 28.916398712000046 ], [ -81.98085619699998, 28.916236689000073 ], [ -81.980907195999976, 28.916215162000071 ], [ -81.980943197999977, 28.916190974000074 ], [ -81.980968895999979, 28.916149095000037 ], [ -81.980986979999955, 28.916104361000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975600659999941, 28.902336811000055 ], [ -81.975588691999974, 28.902269715000045 ], [ -81.975573015999942, 28.902198181000074 ], [ -81.975545361999934, 28.90211200300007 ], [ -81.97551770299998, 28.902042686000073 ], [ -81.975477280999939, 28.901935899000023 ], [ -81.975445366999963, 28.901855342000033 ], [ -81.975413452999987, 28.901772909000044 ], [ -81.975383668999939, 28.901694224000039 ], [ -81.975347499999941, 28.901606172000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975223813999946, 28.902382631000023 ], [ -81.975600659999941, 28.902336811000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978150917999983, 28.892099266000059 ], [ -81.978193145999967, 28.89195955100007 ], [ -81.978200615999981, 28.891497192000031 ], [ -81.978202332999956, 28.891095010000072 ], [ -81.978237400999944, 28.890942164000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961249842999962, 28.891449414000078 ], [ -81.96132038199994, 28.891454090000025 ], [ -81.96146321699996, 28.89147741000005 ], [ -81.961583121999979, 28.891508484000042 ], [ -81.961692749999941, 28.891548830000033 ], [ -81.961920386999964, 28.891640193000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961249842999962, 28.891449414000078 ], [ -81.961203286999989, 28.890848954000035 ], [ -81.961187751999944, 28.890606243000036 ], [ -81.961156201999984, 28.890363525000055 ], [ -81.961083410999947, 28.889973258000055 ], [ -81.961089687999959, 28.889918201000057 ], [ -81.961106912999981, 28.889865899000029 ], [ -81.961135080999952, 28.889824614000077 ], [ -81.961174193999966, 28.889791589000026 ], [ -81.961219559999961, 28.889768202000027 ], [ -81.961264921999941, 28.889755827000045 ], [ -81.961339998999961, 28.88974896600007 ], [ -81.961441660999981, 28.889757253000028 ], [ -81.961610962999941, 28.889770207000026 ], [ -81.961727086999986, 28.889788822000071 ], [ -81.961837343999946, 28.889813630000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960762896999938, 28.891455287000042 ], [ -81.960837186999981, 28.89144929400004 ], [ -81.961181069999952, 28.891441634000046 ], [ -81.961249842999962, 28.891449414000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960762896999938, 28.891455287000042 ], [ -81.960754275999989, 28.891318098000056 ], [ -81.96072780999998, 28.890901879000069 ], [ -81.960695034999958, 28.89060418300005 ], [ -81.960663802999989, 28.890374016000067 ], [ -81.960626310999942, 28.890131447000044 ], [ -81.960535634999985, 28.889727612000058 ], [ -81.960463702999959, 28.889458845000036 ], [ -81.96036047299998, 28.889129430000025 ], [ -81.960243158999958, 28.888779337000074 ], [ -81.960103945999947, 28.888364464000063 ], [ -81.959974900999953, 28.887963926000054 ], [ -81.959963936999941, 28.887924947000045 ], [ -81.95989125899996, 28.887624316000029 ], [ -81.959873688999949, 28.887527115000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960808786999962, 28.892113324000036 ], [ -81.960791867999944, 28.891791686000033 ], [ -81.960773734999975, 28.891581128000041 ], [ -81.960773723999978, 28.891580999000041 ], [ -81.960762896999938, 28.891455287000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965181233999942, 28.892656940000052 ], [ -81.965303229999961, 28.892725856000027 ], [ -81.965422044999968, 28.89278699700003 ], [ -81.965547673999936, 28.892849884000043 ], [ -81.965647966999938, 28.892889798000056 ], [ -81.965798717999974, 28.892946492000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965798717999974, 28.892946492000078 ], [ -81.965951032999953, 28.892989664000027 ], [ -81.966166606999934, 28.89303977000003 ], [ -81.966290927999978, 28.893060753000043 ], [ -81.966394090999984, 28.893070090000037 ], [ -81.966474775999984, 28.893059635000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966474775999984, 28.893059635000043 ], [ -81.966451903999939, 28.892862154000056 ], [ -81.966421672999957, 28.892630222000037 ], [ -81.96640916399997, 28.892559915000049 ], [ -81.966401345999941, 28.892522693000046 ], [ -81.966380994999952, 28.892482711000071 ], [ -81.966348110999945, 28.892448240000078 ], [ -81.966313658999979, 28.892423419000067 ], [ -81.966262984999958, 28.89240419500004 ], [ -81.966102370999977, 28.892360994000057 ], [ -81.965896376999979, 28.892287440000075 ], [ -81.965771752999956, 28.892226156000049 ], [ -81.965665256999955, 28.892172367000057 ], [ -81.965537873999949, 28.89209186000005 ], [ -81.965414684999985, 28.892019289000075 ], [ -81.965312885999936, 28.891973772000028 ], [ -81.965214872, 28.891939139000044 ], [ -81.964687967999964, 28.891765052000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96657043099998, 28.894413868000072 ], [ -81.966586744999972, 28.894327151000027 ], [ -81.966592808999962, 28.894237081000028 ], [ -81.966597535999938, 28.894151269000076 ], [ -81.966592871999978, 28.894038576000071 ], [ -81.966577639999969, 28.893915541000069 ], [ -81.966483442999959, 28.893181188000028 ], [ -81.966474775999984, 28.893059635000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96495009399996, 28.89114666200004 ], [ -81.965927251999972, 28.891518116000043 ], [ -81.966300564999983, 28.891682136000043 ], [ -81.966356250999979, 28.891736650000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977259990999983, 28.917204935000029 ], [ -81.977394974999982, 28.917059908000056 ], [ -81.97743703499998, 28.917018475000077 ], [ -81.97747573099997, 28.916981483000029 ], [ -81.977529570999934, 28.916928214000052 ], [ -81.977595181999959, 28.916876426000044 ], [ -81.977672567999946, 28.91682908000007 ], [ -81.977744903999962, 28.916792093000026 ], [ -81.977830696999945, 28.916763987000024 ], [ -81.977916487999948, 28.916740322000066 ], [ -81.97798722999994, 28.916728549000027 ], [ -81.978037830999938, 28.916722026000059 ], [ -81.978107574999967, 28.916719974000046 ], [ -81.978177319999986, 28.916719986000032 ], [ -81.978263863999985, 28.916728594000062 ], [ -81.978328721999958, 28.916738918000078 ], [ -81.978415261999942, 28.916764371000056 ], [ -81.978501996999967, 28.916796357000067 ], [ -81.978595762999987, 28.916834187000063 ], [ -81.978684644999987, 28.91687236100006 ], [ -81.978776065999966, 28.916921191000029 ], [ -81.978862600999946, 28.916971740000065 ], [ -81.978951674999962, 28.917026759000066 ], [ -81.979028636999942, 28.917082118000053 ], [ -81.979107941999985, 28.917149511000048 ], [ -81.979175134999934, 28.917206932000056 ], [ -81.979240178999987, 28.917268134000039 ], [ -81.979307564999942, 28.917339994000031 ], [ -81.979367527999955, 28.917410134000079 ], [ -81.979420456999947, 28.917481992000035 ], [ -81.979480612999964, 28.917564508000055 ], [ -81.979540769999971, 28.917647023000029 ], [ -81.979598386999953, 28.917725413000028 ], [ -81.979644088999976, 28.917788674000064 ], [ -81.979684908999957, 28.917848154000069 ], [ -81.979733150999948, 28.91791588600006 ], [ -81.979778658999976, 28.917977085000075 ], [ -81.979814791999956, 28.918030032000047 ], [ -81.979850922999958, 28.91808504200003 ], [ -81.979882172999964, 28.918129394000061 ], [ -81.97990853899995, 28.918178213000033 ], [ -81.979918101999942, 28.918224624000061 ], [ -81.97993020499996, 28.918277569000054 ], [ -81.979943075999984, 28.918374518000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008124122999959, 28.952214904000073 ], [ -82.008233596999958, 28.952464387000077 ], [ -82.00827093099997, 28.952559955000027 ], [ -82.008308266999961, 28.95266377300004 ], [ -82.008364424999968, 28.95281575000007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955920544999969, 28.870359986000039 ], [ -81.956245401999979, 28.870360092000055 ], [ -81.956486168999959, 28.870348953000075 ], [ -81.956647051999937, 28.870331626000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956647051999937, 28.870331626000052 ], [ -81.956771281999977, 28.870321037000053 ], [ -81.957361745999947, 28.870303260000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957361745999947, 28.870303260000071 ], [ -81.957370729, 28.870390689000033 ], [ -81.957383430999982, 28.870453432000033 ], [ -81.95739709999998, 28.870508636000068 ], [ -81.957429192999939, 28.870597971000052 ], [ -81.957464956999956, 28.870675030000029 ], [ -81.957535785999937, 28.870794630000034 ], [ -81.957617236999965, 28.870895795000024 ], [ -81.957673695999972, 28.870946992000029 ], [ -81.957750085999976, 28.871009893000064 ], [ -81.957834783999942, 28.871068409000031 ], [ -81.958012494999934, 28.871163510000031 ], [ -81.958364590999963, 28.871365410000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006543094999984, 28.908429868000042 ], [ -82.006751687999952, 28.908444025000051 ], [ -82.007043829999986, 28.90847614200004 ], [ -82.007353011999953, 28.908501831000024 ], [ -82.007637846999955, 28.908506100000068 ], [ -82.007752268, 28.908506094000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007752268, 28.908506094000074 ], [ -82.008054145999949, 28.908506076000037 ], [ -82.008373062999965, 28.908497488000023 ], [ -82.008591925999951, 28.908475152000051 ], [ -82.008816895999985, 28.908435782000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011813844999949, 28.907730771000047 ], [ -82.011826582999959, 28.907793020000042 ], [ -82.011834184999941, 28.907940129000053 ], [ -82.011837127999968, 28.908052545000032 ], [ -82.011837309999976, 28.908185010000068 ], [ -82.011837323999941, 28.908311397000034 ], [ -82.011854372999949, 28.908373518000076 ], [ -82.011868908999986, 28.908398666000039 ], [ -82.011893330999953, 28.908431352000036 ], [ -82.011921142999938, 28.908449631000053 ], [ -82.011946892999958, 28.908465621000062 ], [ -82.011977172999934, 28.908481377000044 ], [ -82.012005324999961, 28.908491322000032 ], [ -82.012082580999959, 28.908496409000065 ], [ -82.012157599999966, 28.908496402000026 ], [ -82.012248773999943, 28.908493442000065 ], [ -82.012336414999936, 28.908491292000065 ], [ -82.012504393999961, 28.908482708000065 ], [ -82.01266020199995, 28.908482694000043 ], [ -82.012796533999961, 28.908482681000066 ], [ -82.013047234999988, 28.908464791000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965416214999948, 28.905200551000064 ], [ -81.96557603399998, 28.905111283000053 ], [ -81.965765795999971, 28.905032493000078 ], [ -81.966003398999987, 28.904953399000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966003398999987, 28.904953399000078 ], [ -81.965983072999961, 28.904887748000078 ], [ -81.965950634999956, 28.904780060000064 ], [ -81.965915544999973, 28.904653925000048 ], [ -81.965887330999976, 28.904528463000076 ], [ -81.965867240999955, 28.904439763000028 ], [ -81.965853790999972, 28.904353815000036 ], [ -81.965843845999984, 28.904300527000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963728922999962, 28.905557835000025 ], [ -81.963909442999977, 28.905816136000055 ], [ -81.963954580999939, 28.905859190000058 ], [ -81.964005361999966, 28.90590224500005 ], [ -81.964063046999968, 28.905939268000054 ], [ -81.964118221999968, 28.905963528000029 ], [ -81.964159452, 28.905980503000023 ], [ -81.964196639999955, 28.905987784000047 ], [ -81.964273771999956, 28.905995077000057 ], [ -81.964385337999943, 28.906008439000061 ], [ -81.964452824999967, 28.906026637000025 ], [ -81.964510669999981, 28.906047258000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964510669999981, 28.906047258000058 ], [ -81.964719542999944, 28.905676866000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964510669999981, 28.906047258000058 ], [ -81.964590542999986, 28.906096972000057 ], [ -81.964748905999954, 28.906214581000029 ], [ -81.964951335999956, 28.906362502000036 ], [ -81.96501171999995, 28.906387563000067 ], [ -81.965058752999937, 28.906392541000059 ], [ -81.965128364999941, 28.906387593000034 ], [ -81.965347115999975, 28.906320013000027 ], [ -81.965430253999955, 28.906283744000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987112558999968, 28.86944840600006 ], [ -81.987135815999977, 28.869559840000079 ], [ -81.987166038999987, 28.869779128000062 ], [ -81.987197751999986, 28.869994265000059 ], [ -81.987207097999942, 28.87006569700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009424610999986, 28.955421253000054 ], [ -82.009465021999972, 28.955550352000046 ], [ -82.009503464999966, 28.95566492100005 ], [ -82.009540204999951, 28.955747477000045 ], [ -82.009588023999981, 28.955834681000056 ], [ -82.00964780299995, 28.955914674000041 ], [ -82.009712778999983, 28.955978668000057 ], [ -82.00978078199995, 28.956032611000069 ], [ -82.009879191999971, 28.956106786000078 ], [ -82.010007278999979, 28.956182332000026 ], [ -82.010169731999952, 28.956285351000076 ], [ -82.010354053999947, 28.956406227000059 ], [ -82.010468083999967, 28.956472157000064 ], [ -82.010541497999952, 28.956499627000028 ], [ -82.010604214999944, 28.95651801200006 ], [ -82.010694572999967, 28.956529837000062 ], [ -82.010805471999959, 28.95653257500004 ], [ -82.010971039999959, 28.956531188000042 ], [ -82.011160035999978, 28.956529799000066 ], [ -82.011356843999977, 28.95653115600004 ], [ -82.011472429999969, 28.95653664200006 ], [ -82.01156870799997, 28.956551134000051 ], [ -82.011641364999946, 28.956570203000069 ], [ -82.011723782, 28.956600714000047 ], [ -82.011799671999938, 28.956634480000048 ], [ -82.011862047999955, 28.956671044000075 ], [ -82.011905970999976, 28.95669988700007 ], [ -82.01195043599995, 28.956734216000029 ], [ -82.011987307999959, 28.95676568600004 ], [ -82.012023186999954, 28.956801312000039 ], [ -82.012077769999962, 28.956865305000065 ], [ -82.01211675899998, 28.95692701400003 ], [ -82.01215055199998, 28.956997866000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01222735999994, 28.958027939000033 ], [ -82.012222769999937, 28.958850615000074 ], [ -82.012222851999979, 28.959548822000045 ], [ -82.012228868999955, 28.959594926000079 ], [ -82.012243773999955, 28.959626857000046 ], [ -82.012278507999952, 28.959670638000034 ], [ -82.01231699899995, 28.959700030000079 ], [ -82.012332225999955, 28.959706896000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953989922999938, 28.871974241000032 ], [ -81.954074382999977, 28.871869998000079 ], [ -81.954194603999952, 28.871695855000041 ], [ -81.954233746999989, 28.871639028000061 ], [ -81.954291115999979, 28.871571359000029 ], [ -81.954354378999938, 28.871507465000036 ], [ -81.954442831999984, 28.871431080000036 ], [ -81.95452002199994, 28.871375918000069 ], [ -81.954595601999984, 28.871326415000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013568487999976, 28.912920364000058 ], [ -82.013633163999941, 28.912930206000055 ], [ -82.013807844999974, 28.912961155000062 ], [ -82.013961517999974, 28.912984890000075 ], [ -82.014099576999968, 28.913007856000036 ], [ -82.014219185999934, 28.913026629000058 ], [ -82.014298291999978, 28.913042704000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013568487999976, 28.912920364000058 ], [ -82.013568645999953, 28.913815465000027 ], [ -82.013562042, 28.914100592000068 ], [ -82.013560914999971, 28.914149228000042 ], [ -82.013512491999961, 28.914344105000055 ], [ -82.013448378999954, 28.914569645000029 ], [ -82.013423830999955, 28.914671036000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012596769999959, 28.91240057300007 ], [ -82.01267852899997, 28.912403741000048 ], [ -82.012872551999976, 28.912406640000029 ], [ -82.013147833999938, 28.912422665000065 ], [ -82.013319391999971, 28.912447257000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014033389999952, 28.912555355000052 ], [ -82.01416274099995, 28.912580146000039 ], [ -82.014293750999968, 28.912602019000076 ], [ -82.014415840999959, 28.912620230000073 ], [ -82.014540749999981, 28.912627956000051 ], [ -82.014655102999939, 28.912634136000065 ], [ -82.014758399999948, 28.912636184000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013319391999971, 28.912447257000053 ], [ -82.013404567999942, 28.912456186000043 ], [ -82.013693427999954, 28.912499943000057 ], [ -82.01388413799998, 28.912532024000029 ], [ -82.014033389999952, 28.912555355000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014033389999952, 28.912555355000052 ], [ -82.014029161999986, 28.911339878000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963925590999963, 28.938766885000064 ], [ -81.963878255999987, 28.938820448000058 ], [ -81.963838394999982, 28.93889394200005 ], [ -81.963804592999963, 28.938995805000047 ], [ -81.963800040999956, 28.939073925000059 ], [ -81.963975847999961, 28.940459025000052 ], [ -81.963992648999977, 28.940624926000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963992648999977, 28.940624926000055 ], [ -81.964005215999975, 28.940846433000047 ], [ -81.964024138999946, 28.941940582000029 ], [ -81.964036115999988, 28.942231073000073 ], [ -81.964048299999945, 28.942322453000031 ], [ -81.964072667999972, 28.942396776000066 ], [ -81.964111656999989, 28.942493030000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959968991999972, 28.943309212000031 ], [ -81.959882906999951, 28.943471255000077 ], [ -81.959829519999971, 28.943624483000065 ], [ -81.959797937999952, 28.943976427000052 ], [ -81.959763067999972, 28.944390931000044 ], [ -81.959767031999945, 28.944494267000039 ], [ -81.959773371999972, 28.944559369000046 ], [ -81.959808494999947, 28.944776155000056 ], [ -81.959897694999938, 28.945207727000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957577029999982, 28.945426308000037 ], [ -81.957835655999986, 28.945959292000055 ], [ -81.957930906999934, 28.946169759000043 ], [ -81.958014589999948, 28.94638066300007 ], [ -81.958060282999952, 28.946518893000075 ], [ -81.958090069999969, 28.946641372000045 ], [ -81.958101958999976, 28.946753346000037 ], [ -81.958109870999976, 28.946863572000041 ], [ -81.958107816999984, 28.947024531000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957067986999959, 28.942673205000062 ], [ -81.957103705999941, 28.942817074000061 ], [ -81.957114825999952, 28.942925228000036 ], [ -81.957119586999966, 28.943982316000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95912323899995, 28.946437347000028 ], [ -81.959192724, 28.946484418000068 ], [ -81.959266475999982, 28.946519815000045 ], [ -81.959362540999962, 28.94653934400003 ], [ -81.959419300999969, 28.946545238000056 ], [ -81.959476984999981, 28.946545084000036 ], [ -81.959608059999937, 28.946525500000064 ], [ -81.959816591999981, 28.946497181000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975880691999976, 28.903811783000037 ], [ -81.97603563399997, 28.90378101400006 ], [ -81.976272951999988, 28.903723846000048 ], [ -81.976625166999952, 28.903629369000043 ], [ -81.976996140999972, 28.903508767000062 ], [ -81.977425916999948, 28.903340643000035 ], [ -81.977795241999956, 28.903174197000055 ], [ -81.978009666999981, 28.903062275000025 ], [ -81.978103529999942, 28.902998842000045 ], [ -81.978160766999963, 28.902940439000076 ], [ -81.978191676999984, 28.902894117000073 ], [ -81.978304069999979, 28.902708183000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975222029999941, 28.903811053000027 ], [ -81.975409578999972, 28.903832263000027 ], [ -81.975521737999941, 28.903848396000058 ], [ -81.975609862999988, 28.903849420000029 ], [ -81.975680823999937, 28.903846412000064 ], [ -81.97577238599996, 28.903834343000028 ], [ -81.975880691999976, 28.903811783000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993998713999986, 28.871297331000051 ], [ -81.994064340999955, 28.87121275100003 ], [ -81.994122937999975, 28.871140547000039 ], [ -81.994246636999947, 28.870948448000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992938329999959, 28.885074532000033 ], [ -81.993104172999949, 28.885096307000026 ], [ -81.993249221999974, 28.885107279000067 ], [ -81.993406899999968, 28.885112523000032 ], [ -81.993730867999943, 28.885110198000064 ], [ -81.994016794999936, 28.885091990000035 ], [ -81.994235022999987, 28.885069224000063 ], [ -81.99443651699994, 28.885091274000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014561220999951, 28.918343782000079 ], [ -82.014741146999938, 28.918354830000055 ], [ -82.014874196999983, 28.918357168000057 ], [ -82.014933265999957, 28.918360127000028 ], [ -82.014987408999957, 28.918364495000048 ], [ -82.015035442999988, 28.918360115000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015035442999988, 28.918360115000041 ], [ -82.015083386999947, 28.918346740000061 ], [ -82.015124844999946, 28.918346995000036 ], [ -82.015223983999988, 28.918343864000065 ], [ -82.015318540999942, 28.918341103000046 ], [ -82.01541016699997, 28.918336280000062 ], [ -82.01551058299998, 28.918331112000033 ], [ -82.015588892999972, 28.918330086000026 ], [ -82.015657009999984, 28.918326332000049 ], [ -82.01571076099998, 28.918318279000061 ], [ -82.015759181999954, 28.918292609000048 ], [ -82.015797747999954, 28.918268989000069 ], [ -82.015824768999948, 28.91824149200005 ], [ -82.015846444999966, 28.918213938000065 ], [ -82.015856128999985, 28.918189298000073 ], [ -82.015861337, 28.918155877000061 ], [ -82.015878354999984, 28.918082834000074 ], [ -82.015893244999972, 28.918007917000068 ], [ -82.015912387999947, 28.917919889000075 ], [ -82.015931712999986, 28.917811616000051 ], [ -82.015957483999955, 28.917705730000023 ], [ -82.015977397999961, 28.917617721000056 ], [ -82.015994576999958, 28.917536931000029 ], [ -82.016003855999941, 28.917487246000064 ], [ -82.016010234999953, 28.917444169000078 ], [ -82.016021481999985, 28.917387655000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011299810999958, 28.951729495000052 ], [ -82.011797718999958, 28.951634929000079 ], [ -82.012054096999975, 28.951584264000076 ], [ -82.012270763999936, 28.951539718000049 ], [ -82.012406432999967, 28.951514771000063 ], [ -82.012534270999936, 28.951495290000025 ], [ -82.01267777399994, 28.951461314000028 ], [ -82.012819518999947, 28.951432804000035 ], [ -82.012932913999975, 28.951411421000046 ], [ -82.013003786999946, 28.951402508000058 ], [ -82.013086808999958, 28.95139359500007 ], [ -82.013169833999939, 28.951393587000041 ], [ -82.013279182999952, 28.95140426200004 ], [ -82.013396632999957, 28.951418499000056 ], [ -82.013518132999934, 28.951430955000035 ], [ -82.013633557999981, 28.951441628000055 ], [ -82.013742905999948, 28.951450523000062 ], [ -82.013838079999971, 28.951452295000024 ], [ -82.013931229999969, 28.951452286000062 ], [ -82.014020328999948, 28.951450494000028 ], [ -82.01412157599998, 28.951450484000077 ], [ -82.014232949999951, 28.951441566000028 ], [ -82.014338245999966, 28.951434431000052 ], [ -82.014419244999942, 28.951427299000045 ], [ -82.014514416999987, 28.95142194500005 ], [ -82.014599464999947, 28.95141837400007 ], [ -82.014690587999951, 28.951413021000064 ], [ -82.014877460999969, 28.951395683000044 ], [ -82.015077000999952, 28.951390835000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003796987999976, 28.922222468000029 ], [ -82.003926993999983, 28.922492092000027 ], [ -82.003970282999944, 28.922573047000071 ], [ -82.004027573999963, 28.922650046000058 ], [ -82.004073723999966, 28.922692047000055 ], [ -82.004111915999943, 28.922722846000056 ], [ -82.004170797999961, 28.922757845000035 ], [ -82.004231268999945, 28.922787244000062 ], [ -82.004286966999985, 28.922805444000062 ], [ -82.004351873999951, 28.922818224000025 ], [ -82.004561901999978, 28.922839874000033 ], [ -82.004849304999937, 28.92286475800006 ], [ -82.004944776999935, 28.922870087000035 ], [ -82.004995541999961, 28.922866084000077 ], [ -82.005033425999954, 28.922861417000036 ], [ -82.005066764999981, 28.922854750000056 ], [ -82.005113741999935, 28.92284274900004 ], [ -82.005169811999963, 28.922824081000044 ], [ -82.005379336999965, 28.922736286000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007389857999954, 28.942214260000071 ], [ -82.007333384999981, 28.942380220000075 ], [ -82.007320707999952, 28.942430931000047 ], [ -82.007303419999971, 28.942474726000057 ], [ -82.007274607999989, 28.942528893000031 ], [ -82.007232939999938, 28.942596411000068 ], [ -82.007161099999962, 28.942696492000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962055100999976, 28.934694665000052 ], [ -81.962091039999962, 28.934558282000069 ], [ -81.962140801999965, 28.934428349000029 ], [ -81.962182269999971, 28.93433619800004 ], [ -81.962498580999977, 28.933820815000047 ], [ -81.962556590999952, 28.933744322000052 ], [ -81.963105181999936, 28.933218475000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963196227999958, 28.86527661100007 ], [ -81.963192109999966, 28.864408801000025 ], [ -81.963190878999967, 28.864208263000023 ], [ -81.963190291999979, 28.864024341000061 ], [ -81.963182537999955, 28.863863908000042 ], [ -81.963172157999963, 28.863768220000054 ], [ -81.963150722999956, 28.863642734000052 ], [ -81.963099374999956, 28.863442181000039 ], [ -81.963034354999934, 28.863250220000054 ], [ -81.962940066999977, 28.862997517000053 ], [ -81.962861380999982, 28.862802686000066 ], [ -81.96274121099998, 28.862512546000062 ], [ -81.962594885999977, 28.862175889000071 ], [ -81.962400868999964, 28.861734077000051 ], [ -81.962315751999938, 28.861545446000036 ], [ -81.962199988999942, 28.861293882000041 ], [ -81.962036958999988, 28.860964571000068 ], [ -81.961817550999967, 28.860558085000036 ], [ -81.961760526999967, 28.860464102000037 ], [ -81.961742102999949, 28.860418260000074 ], [ -81.961730183999975, 28.860380058000032 ], [ -81.96172586199998, 28.860337085000026 ], [ -81.961729125999966, 28.860308437000072 ], [ -81.961743333999948, 28.860256926000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961432311999943, 28.860371188000045 ], [ -81.961487623999972, 28.860399279000035 ], [ -81.961540982999963, 28.860429089000036 ], [ -81.961590434999948, 28.860465773000044 ], [ -81.961642481999945, 28.860524803000033 ], [ -81.961685629999977, 28.860594909000042 ], [ -81.961868183999968, 28.860925371000064 ], [ -81.96205549299998, 28.861308166000072 ], [ -81.96213613599997, 28.861482370000033 ], [ -81.962221982999949, 28.861667462000071 ], [ -81.96231953399996, 28.861886936000076 ], [ -81.962410578999936, 28.862102969000034 ], [ -81.962510075999944, 28.862341924000077 ], [ -81.962605660999941, 28.862599785000043 ], [ -81.962684990999946, 28.862814096000079 ], [ -81.962755862999984, 28.863016947000062 ], [ -81.962829984999985, 28.863236413000038 ], [ -81.962897595999948, 28.863461035000057 ], [ -81.962940489999937, 28.863640385000053 ], [ -81.962961268999948, 28.863777902000038 ], [ -81.96297551899994, 28.863973860000044 ], [ -81.962979254999937, 28.864450569000041 ], [ -81.962978452999948, 28.864668208000069 ], [ -81.962981612999954, 28.865145006000034 ], [ -81.962973036999983, 28.865273783000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964539737999985, 28.861688055000059 ], [ -81.964580672999944, 28.86169843700003 ], [ -81.964621306999959, 28.861707939000041 ], [ -81.96473657599995, 28.861721536000061 ], [ -81.964894705999939, 28.861717422000027 ], [ -81.965084725999986, 28.861703476000059 ], [ -81.965281772999958, 28.861686357000053 ], [ -81.965459636999981, 28.861663847000045 ], [ -81.965645357999961, 28.861640975000057 ], [ -81.965768978999961, 28.861627853000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964066037999942, 28.86131206400006 ], [ -81.964083382999945, 28.86134415500004 ], [ -81.964131958999985, 28.861406811000052 ], [ -81.964197889, 28.86148016900006 ], [ -81.964260352999986, 28.861536718000025 ], [ -81.96434364199996, 28.861599384000044 ], [ -81.964435613999967, 28.861646774000064 ], [ -81.964539737999985, 28.861688055000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965768978999961, 28.861627853000073 ], [ -81.965819843999952, 28.861784143000079 ], [ -81.965883911999981, 28.86193783300007 ], [ -81.965959801999986, 28.862075364000077 ], [ -81.966035690999945, 28.862210985000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966868448999946, 28.860933478000049 ], [ -81.966828198999963, 28.86061146000003 ], [ -81.966833164999969, 28.860570205000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966833164999969, 28.860570205000045 ], [ -81.966831947999935, 28.860529402000054 ], [ -81.966831982999963, 28.860417209000047 ], [ -81.966836756999953, 28.860246844000073 ], [ -81.966846250999936, 28.860076479000043 ], [ -81.966864260999955, 28.860000514000035 ], [ -81.966881767999951, 28.859936095000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969172233999984, 28.862665538000044 ], [ -81.96885053699998, 28.862755220000054 ], [ -81.968678693999948, 28.862794905000044 ], [ -81.968489500999965, 28.862820836000026 ], [ -81.968269066999937, 28.862837591000073 ], [ -81.968074669999964, 28.862843657000042 ], [ -81.967970531999981, 28.862839049000058 ], [ -81.967913262999957, 28.862814588000049 ], [ -81.967866409999942, 28.862780963000034 ], [ -81.967831712999953, 28.862730533000047 ], [ -81.967797032999954, 28.86262051600005 ], [ -81.96774501699997, 28.862446322000039 ], [ -81.967692926999973, 28.862298233000047 ], [ -81.967668813999978, 28.862240093000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967668813999978, 28.862240093000025 ], [ -81.967610371999967, 28.862138235000032 ], [ -81.967506580999952, 28.86196368800006 ], [ -81.96743110999995, 28.861795382000025 ], [ -81.967374531999951, 28.861591760000067 ], [ -81.967334216999973, 28.86144478600005 ], [ -81.967324170999973, 28.86138055400005 ], [ -81.967318459999944, 28.861298463000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969172233999984, 28.862665538000044 ], [ -81.969154319999973, 28.862611666000078 ], [ -81.969132731999935, 28.862518626000053 ], [ -81.969113699, 28.862365050000051 ], [ -81.969092522999972, 28.862144816000068 ], [ -81.969082860999947, 28.862049909000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96836994399996, 28.862147 ], [ -81.968341969999983, 28.861938401000032 ], [ -81.968308967999974, 28.861813736000045 ], [ -81.968245778999972, 28.861655506000034 ], [ -81.968222508999986, 28.861597239000048 ], [ -81.968204312999944, 28.861494587000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969082860999947, 28.862049909000064 ], [ -81.969073696999942, 28.861959901000034 ], [ -81.969054881999966, 28.861735514000031 ], [ -81.969052343999977, 28.861655063000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969052343999977, 28.861655063000057 ], [ -81.969047867999961, 28.861513204000062 ], [ -81.96907860999994, 28.861307525000029 ], [ -81.969156569999939, 28.86104991600007 ], [ -81.969180020999943, 28.860981163000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969180020999943, 28.860981163000076 ], [ -81.969234519999986, 28.860821394000027 ], [ -81.969307744999981, 28.860609491000048 ], [ -81.969361090999939, 28.860374996000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971261265999942, 28.863117869000064 ], [ -81.971191842999986, 28.863111743000047 ], [ -81.97104257999996, 28.863096432000077 ], [ -81.970872484999973, 28.863097923000055 ], [ -81.970596512999975, 28.863103974000069 ], [ -81.970427448999942, 28.863113532000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970427448999942, 28.863113532000057 ], [ -81.970324228999971, 28.863117426000031 ], [ -81.970050450999963, 28.86312152000005 ], [ -81.969823878999989, 28.863115237000045 ], [ -81.969711273999962, 28.863096373000076 ], [ -81.969613028999959, 28.863068392000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969613028999959, 28.863068392000059 ], [ -81.969594960999984, 28.863063245000035 ], [ -81.969511381999951, 28.863029811000047 ], [ -81.969415616999981, 28.862971789000028 ], [ -81.969334408999941, 28.862908230000073 ], [ -81.969257531999972, 28.862822163000033 ], [ -81.969196395999973, 28.862721210000075 ], [ -81.969172233999984, 28.862665538000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962360842999942, 28.859725925000077 ], [ -81.962332540999967, 28.859730802000058 ], [ -81.962246010999934, 28.85974447600006 ], [ -81.962185469999952, 28.859761288000072 ], [ -81.962089877999972, 28.859787205000032 ], [ -81.962026777999938, 28.859806322000054 ], [ -81.961957346999952, 28.859831513000074 ], [ -81.961899193999955, 28.859856707000063 ], [ -81.961853875999964, 28.859874614000034 ], [ -81.961805456999969, 28.859894115000031 ], [ -81.961760324999943, 28.859912437000048 ], [ -81.961714327999971, 28.859920063000061 ], [ -81.96167874799994, 28.859920053000053 ], [ -81.961620994999976, 28.859913333000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961780370999975, 28.860160658000041 ], [ -81.961800164999943, 28.860127118000037 ], [ -81.961826213999984, 28.860086637000052 ], [ -81.96184965499998, 28.86005837600004 ], [ -81.961889589999942, 28.86001789900007 ], [ -81.961934726999971, 28.859985061000032 ], [ -81.961998088999962, 28.859950701000059 ], [ -81.962051032999966, 28.859932381000078 ], [ -81.962117861999957, 28.85990795400005 ], [ -81.962195971999961, 28.859885821000034 ], [ -81.962265404999982, 28.859867505000068 ], [ -81.962362606999989, 28.859843849000072 ], [ -81.962383456999987, 28.859838849000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975824751999937, 28.857733406000079 ], [ -81.97582698399998, 28.857733275000044 ], [ -81.97595206799997, 28.857725957000071 ], [ -81.976150032999954, 28.857718830000067 ], [ -81.976339863999954, 28.857711702000074 ], [ -81.976529150999966, 28.857704094000042 ], [ -81.976656064999986, 28.857703162000064 ], [ -81.97674501299997, 28.857702222000057 ], [ -81.976850232999936, 28.857701285000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977567613999952, 28.860318309000036 ], [ -81.977504092999936, 28.860305911000069 ], [ -81.977437708999958, 28.860291003000043 ], [ -81.977360912999984, 28.860268072000054 ], [ -81.977281515999948, 28.860232534000033 ], [ -81.977194310999948, 28.860190120000027 ], [ -81.977113612999972, 28.860145415000034 ], [ -81.977038123999989, 28.860098419000053 ], [ -81.976979556999936, 28.860053718000074 ], [ -81.976930101999983, 28.860011310000061 ], [ -81.97688672299995, 28.859963937000032 ], [ -81.976846814999988, 28.85990892600006 ], [ -81.976798237999958, 28.859817243000066 ], [ -81.976765280999984, 28.85972556300004 ], [ -81.976751417999935, 28.859632357000066 ], [ -81.97675664999997, 28.859519292000073 ], [ -81.976777514999981, 28.859349698000074 ], [ -81.976779276999935, 28.85923205000006 ], [ -81.976770622999936, 28.859118982000041 ], [ -81.976753293999934, 28.858999803000074 ], [ -81.976723814999957, 28.858879092000052 ], [ -81.976706483999976, 28.858772137000074 ], [ -81.976701307999974, 28.858636151000042 ], [ -81.976710004999973, 28.858547534000024 ], [ -81.976736062999976, 28.858437529000071 ], [ -81.976767328999983, 28.858324468000035 ], [ -81.976813034999964, 28.858198352000045 ], [ -81.976848962999952, 28.858043347000034 ], [ -81.976862877999963, 28.857910421000042 ], [ -81.976859426999965, 28.857814162000068 ], [ -81.976850232999936, 28.857701285000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969361090999939, 28.860374996000075 ], [ -81.969362096999987, 28.860370576000037 ], [ -81.969384477999938, 28.860137648000034 ], [ -81.96939537999998, 28.859948572000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966400961999966, 28.859382198000048 ], [ -81.966674366999939, 28.859442257000069 ], [ -81.966975429999934, 28.859506841000041 ], [ -81.967235077999987, 28.859562299000061 ], [ -81.967497910999953, 28.859619160000079 ], [ -81.967728884999985, 28.859671105000075 ], [ -81.96790649899998, 28.859707610000044 ], [ -81.968074553999941, 28.859745515000043 ], [ -81.968201988999965, 28.859772892000024 ], [ -81.968397123999978, 28.859815710000078 ], [ -81.968665534999957, 28.859869766000031 ], [ -81.968905082999981, 28.85990262200005 ], [ -81.969100332999972, 28.859923676000051 ], [ -81.969293414999981, 28.859940910000034 ], [ -81.96939537999998, 28.859948572000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966461159999938, 28.861485334000065 ], [ -81.966426510999952, 28.861284788000034 ], [ -81.966402702999972, 28.861109072000033 ], [ -81.96637889699997, 28.860919988000035 ], [ -81.966361596999946, 28.860750003000078 ], [ -81.966346466999937, 28.860568560000047 ], [ -81.966348708999988, 28.860347012000034 ], [ -81.966357452999944, 28.860146477000058 ], [ -81.966363824999974, 28.85989246400004 ], [ -81.96637497599994, 28.859625082000036 ], [ -81.966380225999956, 28.859491391000063 ], [ -81.966400961999966, 28.859382198000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971783990999938, 28.859700888000077 ], [ -81.971896480999987, 28.859665644000074 ], [ -81.972089149999988, 28.859604568000066 ], [ -81.972269669999946, 28.859540433000063 ], [ -81.97245019099995, 28.859471714000051 ], [ -81.972595997999974, 28.859410627000045 ], [ -81.972781729999951, 28.859325102000071 ], [ -81.972922332999985, 28.859250262000046 ], [ -81.973055991999956, 28.859178478000047 ], [ -81.97319833499995, 28.85908683100007 ], [ -81.973338942999987, 28.858992128000068 ], [ -81.973439627999937, 28.858915753000076 ], [ -81.973538839999947, 28.858832713000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973538839999947, 28.858832713000027 ], [ -81.973282189999964, 28.858590607000053 ], [ -81.973218422999935, 28.858526422000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973218422999935, 28.858526422000068 ], [ -81.973144250999951, 28.858433587000036 ], [ -81.973059671999977, 28.858314393000057 ], [ -81.972973794999973, 28.858174572000053 ], [ -81.972903539999947, 28.858038192000038 ], [ -81.972877520999987, 28.857980031000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96939537999998, 28.859948572000064 ], [ -81.969581955999956, 28.859958164000034 ], [ -81.969759859999954, 28.859966180000072 ], [ -81.969945570999982, 28.859969277000062 ], [ -81.970089627999982, 28.859964726000044 ], [ -81.970275339999944, 28.859957128000076 ], [ -81.970405513999935, 28.85994646000006 ], [ -81.970533952999972, 28.859935794000023 ], [ -81.970645372999968, 28.859924106000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970645372999968, 28.859924106000051 ], [ -81.970943570999964, 28.859882405000064 ], [ -81.971132762999957, 28.859851888000037 ], [ -81.971301125999958, 28.859818310000037 ], [ -81.971474695999973, 28.859781677000058 ], [ -81.971653475999972, 28.859735877000048 ], [ -81.971783990999938, 28.859700888000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970587805999969, 28.859495160000051 ], [ -81.970501552999963, 28.858861156000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970645372999968, 28.859924106000051 ], [ -81.970587805999969, 28.859495160000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969684079, 28.858891533000076 ], [ -81.969695021999939, 28.858561125000051 ], [ -81.96970971199994, 28.858333542000025 ], [ -81.969745481999951, 28.858137423000073 ], [ -81.969793154999934, 28.857950290000076 ], [ -81.969840827999974, 28.857757168000035 ], [ -81.969888501999947, 28.857564048000029 ], [ -81.969914049999943, 28.857423321000056 ], [ -81.969920434999949, 28.857234580000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972877520999987, 28.857980031000068 ], [ -81.97285020399994, 28.857910696000033 ], [ -81.972837197999979, 28.85786657500006 ], [ -81.972815088999937, 28.857794950000027 ], [ -81.972791681999979, 28.857704416000047 ], [ -81.972787134999976, 28.857670037000048 ], [ -81.972777417999964, 28.857495853000046 ], [ -81.972769667999955, 28.857266092000032 ], [ -81.972759317999987, 28.857022006000079 ], [ -81.972748961999969, 28.856799121000051 ], [ -81.972739262999937, 28.856558472000074 ], [ -81.97272825899995, 28.856326419000027 ], [ -81.972717905999957, 28.856094364000057 ], [ -81.972708194999939, 28.855899554000075 ], [ -81.972704333999957, 28.85573129200003 ], [ -81.972700315999987, 28.855698476000043 ], [ -81.972690630999978, 28.85565938600007 ], [ -81.972672903999978, 28.855624331000058 ], [ -81.97264470999994, 28.855593768000062 ], [ -81.972598962999939, 28.85555695000005 ], [ -81.972553609999977, 28.855531677000045 ], [ -81.972503849999953, 28.855518502000052 ], [ -81.972429961999978, 28.855502050000041 ], [ -81.972335594999947, 28.855492480000066 ], [ -81.972185904999947, 28.855492450000042 ], [ -81.971941192999964, 28.855492734000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971941192999964, 28.855492734000052 ], [ -81.971862660999989, 28.855490473000032 ], [ -81.971690407999972, 28.855490628000041 ], [ -81.971496895999962, 28.855490587000077 ], [ -81.971421400999986, 28.855486751000058 ], [ -81.971372807999956, 28.85547757300003 ], [ -81.971333762999961, 28.855463050000026 ], [ -81.971299057999943, 28.85544470800005 ], [ -81.971275632999948, 28.855422548000035 ], [ -81.971253946, 28.85539656900005 ], [ -81.971237465999934, 28.855372118000048 ], [ -81.971227058999943, 28.855346906000079 ], [ -81.97121839, 28.855312526000034 ], [ -81.971208894999961, 28.855132995000076 ], [ -81.97120635899995, 28.854890819000047 ], [ -81.971201203999954, 28.854701357000067 ], [ -81.971217709999962, 28.854634897000039 ], [ -81.971239413999967, 28.854595176000032 ], [ -81.971263719999968, 28.854565387000036 ], [ -81.971293230999947, 28.854538654000066 ], [ -81.97133402299994, 28.854514981000079 ], [ -81.971378283999968, 28.854496655000048 ], [ -81.971424275999937, 28.854492081000046 ], [ -81.971566588999963, 28.854490582000039 ], [ -81.971704563999936, 28.854489849000061 ], [ -81.971767905999968, 28.854502085000036 ], [ -81.971813893, 28.854520429000047 ], [ -81.971848598999941, 28.854541063000056 ], [ -81.971878961999948, 28.854568572000062 ], [ -81.971898912999961, 28.854594550000058 ], [ -81.971915390999982, 28.854631224000059 ], [ -81.97192492399995, 28.854675536000059 ], [ -81.97193006699996, 28.854911599000047 ], [ -81.971934364999981, 28.855071266000039 ], [ -81.971941266999977, 28.855215656000041 ], [ -81.971941192999964, 28.855492734000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973821347999944, 28.858582347000038 ], [ -81.973911270999963, 28.858499967000057 ], [ -81.974084864999952, 28.85835675800007 ], [ -81.974282862999985, 28.858225491000042 ], [ -81.974407624999969, 28.85815150600007 ], [ -81.974499841999943, 28.858099002000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974499841999943, 28.858099002000074 ], [ -81.974686979999944, 28.858013093000068 ], [ -81.974822585999959, 28.85795820800007 ], [ -81.974982596999951, 28.857900941000025 ], [ -81.975131759999954, 28.857853222000074 ], [ -81.975255101999949, 28.857823712000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974499841999943, 28.858099002000074 ], [ -81.974339620999956, 28.857789314000058 ], [ -81.974317698999982, 28.857720332000042 ], [ -81.97431288699994, 28.857652685000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97431288699994, 28.857652685000062 ], [ -81.974210839999955, 28.857688597000049 ], [ -81.973766728999976, 28.857921781000073 ], [ -81.973656074999951, 28.857995413000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969447230999947, 28.856028094000067 ], [ -81.969490163999978, 28.856102590000035 ], [ -81.969605949999959, 28.856314613000052 ], [ -81.969687913999962, 28.856460165000044 ], [ -81.969729548999965, 28.856522055000028 ], [ -81.969759478999947, 28.856551856000067 ], [ -81.969806330999972, 28.856579368000041 ], [ -81.969850608999934, 28.856593018000069 ], [ -81.969896138999957, 28.856601161000071 ], [ -81.969982048999952, 28.856601180000041 ], [ -81.970173394999961, 28.856602369000029 ], [ -81.970319180999979, 28.856602401000032 ], [ -81.970394677999934, 28.856601272000034 ], [ -81.970437665999953, 28.856595705000075 ], [ -81.970481897999946, 28.85657722600007 ], [ -81.970522254999935, 28.856552024000052 ], [ -81.970553502999962, 28.856523383000024 ], [ -81.970583451999971, 28.856486720000078 ], [ -81.97060038799998, 28.856437448000065 ], [ -81.970600419999982, 28.856321709000042 ], [ -81.970592654999962, 28.856161277000069 ], [ -81.970586175999983, 28.856056996000063 ], [ -81.970579696999948, 28.855957298000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970579696999948, 28.855957298000078 ], [ -81.97057971199996, 28.855900002000055 ], [ -81.970573232999982, 28.85579572000006 ], [ -81.970558940999979, 28.85570404200007 ], [ -81.970532936999973, 28.855602048000037 ], [ -81.970512135999968, 28.85550922300007 ], [ -81.970492639999975, 28.855409523000048 ], [ -81.970484481999961, 28.855323862000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969092070999977, 28.85537253800004 ], [ -81.969131096999945, 28.855456201000038 ], [ -81.969242977999954, 28.855662495000047 ], [ -81.969373075999954, 28.855895149000048 ], [ -81.969447230999947, 28.856028094000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969032887999958, 28.85449970600007 ], [ -81.969036750999976, 28.85464180200006 ], [ -81.969039309999971, 28.854794212000058 ], [ -81.969037942999989, 28.855010793000076 ], [ -81.969040492999966, 28.85519185000004 ], [ -81.96905088799997, 28.855251442000053 ], [ -81.969064577999973, 28.855311465000057 ], [ -81.969092070999977, 28.85537253800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970484481999961, 28.855323862000034 ], [ -81.97048487099994, 28.855262841000069 ], [ -81.970483601999945, 28.855148247000045 ], [ -81.970481479999989, 28.854976738000062 ], [ -81.970480431999988, 28.854850686000077 ], [ -81.970477227999936, 28.854674021000051 ], [ -81.970481599999971, 28.854552744000046 ], [ -81.970489206999957, 28.854504043000077 ], [ -81.970508749999965, 28.854438156000072 ], [ -81.970539139999971, 28.854376091000063 ], [ -81.970577120999963, 28.85431593800007 ], [ -81.970625949999942, 28.854251012000077 ], [ -81.970682374999967, 28.854178449000074 ], [ -81.970746392999956, 28.854106841000032 ], [ -81.97079413299997, 28.854058149000025 ], [ -81.970845125999972, 28.854011369000034 ], [ -81.970897202999936, 28.853970317000062 ], [ -81.970954701999972, 28.853936907000048 ], [ -81.971019792999982, 28.853903497000033 ], [ -81.971062099999983, 28.853886317000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971062099999983, 28.853886317000047 ], [ -81.971027689999971, 28.853815304000079 ], [ -81.971010072999945, 28.853751659000068 ], [ -81.970988427999941, 28.853571169000077 ], [ -81.970974227999989, 28.853463785000031 ], [ -81.970955664999963, 28.853355340000064 ], [ -81.970918009999934, 28.853259843000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970918009999934, 28.853259843000046 ], [ -81.970872281999959, 28.853147865000039 ], [ -81.970824705999974, 28.853010117000053 ], [ -81.970794452999939, 28.85291221600005 ], [ -81.970786871999962, 28.852869242000054 ], [ -81.970785799999987, 28.85282244800004 ], [ -81.970790154999975, 28.852764198000045 ], [ -81.970798852999962, 28.852691624000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971451513999966, 28.852692013000024 ], [ -81.971355310999968, 28.852724821000038 ], [ -81.971283692999975, 28.85274043000004 ], [ -81.971211017999963, 28.852747100000045 ], [ -81.971139428999948, 28.852748994000024 ], [ -81.971074349999981, 28.852741341000069 ], [ -81.971007102999977, 28.852727002000051 ], [ -81.970947447999947, 28.852715530000069 ], [ -81.970798852999962, 28.852691624000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971451513999966, 28.852692013000024 ], [ -81.971443161999957, 28.852665978000061 ], [ -81.971387730999936, 28.852493722000077 ], [ -81.971360111999957, 28.852391493000027 ], [ -81.971354926999936, 28.852312423000058 ], [ -81.971366112999988, 28.852199388000031 ], [ -81.971382745999961, 28.852127933000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972062659999949, 28.852171784000063 ], [ -81.972147779999943, 28.852171801000054 ], [ -81.972286495999981, 28.852160727000069 ], [ -81.972453587999951, 28.852145495000059 ], [ -81.972625408999988, 28.852121938000039 ], [ -81.972772009999971, 28.852101152000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973627657999941, 28.853205981000031 ], [ -81.973439276999954, 28.852995339000074 ], [ -81.973326669999949, 28.852867308000043 ], [ -81.973211632999949, 28.852738224000063 ], [ -81.97308871599995, 28.85260497400003 ], [ -81.973003620999975, 28.852506425000058 ], [ -81.972904344999961, 28.852385671000036 ], [ -81.972869678999984, 28.852339867000069 ], [ -81.972830287999955, 28.852277410000056 ], [ -81.972808231999977, 28.852227446000029 ], [ -81.97278933299998, 28.852169157000048 ], [ -81.972772009999971, 28.852101152000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973752787999956, 28.853939831000048 ], [ -81.973850415999948, 28.853861307000045 ], [ -81.973914691999937, 28.853816975000029 ], [ -81.974016736999943, 28.853773078000074 ], [ -81.974123313999939, 28.853745153000034 ], [ -81.974234420999949, 28.853731199000038 ], [ -81.974327413999958, 28.853722364000078 ], [ -81.974420358999964, 28.853695304000041 ], [ -81.974524667999958, 28.853653403000067 ], [ -81.97461991199998, 28.853607509000028 ], [ -81.974710340999934, 28.853567130000044 ], [ -81.974771457999964, 28.853551156000037 ], [ -81.97488567299996, 28.853528314000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970798852999962, 28.852691624000045 ], [ -81.970740281999952, 28.852684926000052 ], [ -81.970658930999946, 28.852683954000042 ], [ -81.970583002999945, 28.852688712000031 ], [ -81.970516834999955, 28.852696337000054 ], [ -81.970446325999944, 28.852710646000048 ], [ -81.970381239999938, 28.852728776000049 ], [ -81.970302707999963, 28.852753990000053 ], [ -81.970207673999937, 28.852791764000074 ], [ -81.970134986999938, 28.852832811000042 ], [ -81.970057958999973, 28.852885315000037 ], [ -81.969991777999951, 28.852940688000047 ], [ -81.969922337999947, 28.853009429000053 ], [ -81.969831197999952, 28.853100127000062 ], [ -81.969730292999941, 28.853201329000058 ], [ -81.969634812999971, 28.853295847000027 ], [ -81.969540672999983, 28.853400589000046 ], [ -81.969445406999967, 28.853520339000056 ], [ -81.969329722999987, 28.853674519000037 ], [ -81.969234410999945, 28.85381333600003 ], [ -81.969178985999974, 28.853903226000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969178985999974, 28.853903226000057 ], [ -81.969137821999936, 28.853984250000053 ], [ -81.969108514999959, 28.85405395500004 ], [ -81.969085717999974, 28.854116020000049 ], [ -81.96907159999995, 28.854170449000037 ], [ -81.969055310999977, 28.85423538200007 ], [ -81.96903901099995, 28.854332782000029 ], [ -81.969032474999949, 28.854426366000041 ], [ -81.969032887999958, 28.85449970600007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97019544799997, 28.851452324000036 ], [ -81.97026273299997, 28.851324376000036 ], [ -81.970321333999948, 28.851223165000079 ], [ -81.970343788999969, 28.851189402000045 ], [ -81.970382958999949, 28.851167028000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970382958999949, 28.851167028000077 ], [ -81.970379061999949, 28.851139524000075 ], [ -81.970382975999939, 28.851107439000032 ], [ -81.97039990899998, 28.851065043000062 ], [ -81.970457205999935, 28.850969943000052 ], [ -81.970537940999975, 28.850841616000025 ], [ -81.970616165999957, 28.850717514000053 ], [ -81.97067597299997, 28.850621626000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972217929999942, 28.849571775000072 ], [ -81.972204738999949, 28.849634536000053 ], [ -81.972177594999948, 28.849742440000057 ], [ -81.972141777, 28.849834107000049 ], [ -81.972088596999981, 28.849952509000047 ], [ -81.97205385999996, 28.850054681000074 ], [ -81.972010071999989, 28.850291011000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965006934999963, 28.85121298200005 ], [ -81.965096823999943, 28.850978089000023 ], [ -81.965167157999986, 28.850833720000026 ], [ -81.965229672999953, 28.850717997000061 ], [ -81.965273949999983, 28.85064925100005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965273949999983, 28.85064925100005 ], [ -81.965363801999956, 28.850522076000061 ], [ -81.965471881999974, 28.850381154000047 ], [ -81.965561728999944, 28.850266583000064 ], [ -81.965668500999982, 28.850139411000043 ], [ -81.965764859999979, 28.850011091000056 ], [ -81.965870329999973, 28.849883919000035 ], [ -81.965970698999968, 28.849764481000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966578016999961, 28.850112799000044 ], [ -81.966440384999942, 28.850051898000061 ], [ -81.966280703999985, 28.849958824000055 ], [ -81.96613788999997, 28.849871205000056 ], [ -81.965970698999968, 28.849764481000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969703450999987, 28.851418982000041 ], [ -81.969798518999937, 28.851242530000036 ], [ -81.96990791099995, 28.851043161000064 ], [ -81.970022511999957, 28.850832335000064 ], [ -81.970126691999951, 28.850651300000038 ], [ -81.970225656999958, 28.850497767000036 ], [ -81.970302476999962, 28.85040267100004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969244198999945, 28.849780349000071 ], [ -81.969103638999968, 28.849743647000025 ], [ -81.96894572399998, 28.849703885000054 ], [ -81.968864167999982, 28.849674836000077 ], [ -81.968809930999953, 28.849648332000072 ], [ -81.968747911999969, 28.849612164000064 ], [ -81.968692391, 28.849567841000066 ], [ -81.968657069999949, 28.849532263000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969703450999987, 28.851418982000041 ], [ -81.969414049999955, 28.851284809000049 ], [ -81.969271976999948, 28.851216976000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969271976999948, 28.851216976000046 ], [ -81.969441271999983, 28.850919071000078 ], [ -81.969549799999982, 28.850709008000024 ], [ -81.969651810999949, 28.850527591000059 ], [ -81.96974079599994, 28.850382460000048 ], [ -81.969815106999988, 28.850268631000063 ], [ -81.969834121999952, 28.850226633000034 ], [ -81.969848018999983, 28.850174687000049 ], [ -81.969846296999947, 28.850130377000028 ], [ -81.969834161999984, 28.850086064000038 ], [ -81.969806407999954, 28.85003716500006 ], [ -81.969783855999935, 28.850008130000049 ], [ -81.96976303699995, 28.849986735000073 ], [ -81.96971618799995, 28.849957693000079 ], [ -81.969579105999969, 28.84989501900003 ], [ -81.969426404999979, 28.849832339000045 ], [ -81.969244198999945, 28.849780349000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969271976999948, 28.851216976000046 ], [ -81.969137497999952, 28.851150098000062 ], [ -81.968892399999959, 28.851031629000033 ], [ -81.968660309999962, 28.850932261000025 ], [ -81.968635125999981, 28.850922791000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968635125999981, 28.850922791000073 ], [ -81.968438825999954, 28.850839665000024 ], [ -81.968229511999937, 28.850749852000035 ], [ -81.967980596999951, 28.850648643000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967980596999951, 28.850648643000056 ], [ -81.967972925999959, 28.850645142000076 ], [ -81.967789293999942, 28.850571240000079 ], [ -81.967691950999949, 28.850542247000078 ], [ -81.967592049999951, 28.850519291000069 ], [ -81.967492083999957, 28.850503593000042 ], [ -81.967430738999951, 28.850491841000064 ], [ -81.967382910999959, 28.850477792000049 ], [ -81.967277998999975, 28.850432492000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965970698999968, 28.849764481000079 ], [ -81.966016163999939, 28.849713211000051 ], [ -81.966132048999953, 28.849575728000048 ], [ -81.966190644999983, 28.849498965000066 ], [ -81.966220649999968, 28.84944499900007 ], [ -81.966246033999937, 28.849393205000069 ], [ -81.966263762999972, 28.849339211000029 ], [ -81.966274766999959, 28.849278680000054 ], [ -81.966275138999947, 28.849213454000051 ], [ -81.966267546999973, 28.849159787000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966166089999945, 28.848413533000041 ], [ -81.966125046999935, 28.848420624000028 ], [ -81.966054758999974, 28.84843053700007 ], [ -81.965967038999963, 28.848439824000025 ], [ -81.965815676999966, 28.848453683000059 ], [ -81.965684330999977, 28.848452731000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966267546999973, 28.849159787000076 ], [ -81.966255867999962, 28.849049775000026 ], [ -81.966239, 28.84888819400004 ], [ -81.966226018999976, 28.848780473000033 ], [ -81.966209139999989, 28.848653652000053 ], [ -81.966179697999962, 28.848465711000074 ], [ -81.966166089999945, 28.848413533000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966860613999984, 28.848265049000076 ], [ -81.966754310999988, 28.848288514000046 ], [ -81.966644971999983, 28.848312934000035 ], [ -81.966514805999964, 28.848343460000024 ], [ -81.966404648999969, 28.848365100000024 ], [ -81.966263153999989, 28.848395346000075 ], [ -81.966166089999945, 28.848413533000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968657069999949, 28.849532263000071 ], [ -81.968627250999987, 28.849485849000075 ], [ -81.968561532999956, 28.849376043000063 ], [ -81.968516221999948, 28.849256260000061 ], [ -81.968470385999979, 28.849132335000036 ], [ -81.96842877399996, 28.849005508000062 ], [ -81.968399321999982, 28.84884201400007 ], [ -81.968385472999955, 28.848724362000041 ], [ -81.968383778999964, 28.848591433000024 ], [ -81.968387279999945, 28.84848753600005 ], [ -81.968392503999951, 28.848431005000066 ], [ -81.968385579999961, 28.848375997000062 ], [ -81.968363035999971, 28.848314876000074 ], [ -81.968335281999941, 28.848275143000023 ], [ -81.968309259999955, 28.848246108000069 ], [ -81.968269353999972, 28.848218596000038 ], [ -81.968229444999963, 28.848197195000068 ], [ -81.968173915999955, 28.848181904000057 ], [ -81.967908398999953, 28.848175728000058 ], [ -81.967753947999938, 28.848175691000051 ], [ -81.967653292999955, 28.848175667000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967694054999981, 28.85221868900004 ], [ -81.967580188999989, 28.852210070000069 ], [ -81.967401182999936, 28.852194098000041 ], [ -81.967206075999968, 28.852190017000055 ], [ -81.967059320999965, 28.852185312000074 ], [ -81.966973585999938, 28.852181343000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968286654999986, 28.852368285000068 ], [ -81.968197136999947, 28.852313692000052 ], [ -81.968107870999972, 28.852275494000025 ], [ -81.967995107999968, 28.852252089000046 ], [ -81.967818258999955, 28.852228093000065 ], [ -81.967694054999981, 28.85221868900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968668392999973, 28.852619541000024 ], [ -81.968919595999978, 28.852391702000034 ], [ -81.969039377999934, 28.852280574000076 ], [ -81.969156557999952, 28.852164861000063 ], [ -81.969275042999982, 28.852033106000079 ], [ -81.969379207999964, 28.851909369000055 ], [ -81.969484677999958, 28.851771881000047 ], [ -81.969540671999937, 28.851689387000079 ], [ -81.969597968999949, 28.851601162000065 ], [ -81.969653965999953, 28.851503770000079 ], [ -81.969703450999987, 28.851418982000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968181308999988, 28.853286505000028 ], [ -81.968310224999982, 28.853104332000044 ], [ -81.968380541999977, 28.853006944000072 ], [ -81.968482111999947, 28.852862579000032 ], [ -81.968549823999979, 28.852768629000025 ], [ -81.968605815999979, 28.852695302000029 ], [ -81.968668392999973, 28.852619541000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968668392999973, 28.852619541000024 ], [ -81.968557776999944, 28.852546175000043 ], [ -81.968388600999958, 28.852431543000023 ], [ -81.968296600999963, 28.852374351000037 ], [ -81.968286654999986, 28.852368285000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962869440999953, 28.851385488000062 ], [ -81.962903061999953, 28.851396001000069 ], [ -81.962943184999972, 28.85142084000006 ], [ -81.963073312999938, 28.851517326000078 ], [ -81.963228398999945, 28.851576575000024 ], [ -81.96331407699995, 28.851608111000075 ], [ -81.963359623999963, 28.851635818000034 ], [ -81.963392151999983, 28.851668294000035 ], [ -81.963431179999986, 28.851727512000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962610291999965, 28.851140949000069 ], [ -81.962791378999952, 28.851290926000047 ], [ -81.962831499999936, 28.851323405000073 ], [ -81.96286185799994, 28.851355882000064 ], [ -81.962869440999953, 28.851385488000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963902850999943, 28.85219556100003 ], [ -81.963846432999958, 28.852238519000025 ], [ -81.963772654999957, 28.852295796000078 ], [ -81.963705384999969, 28.852351165000073 ], [ -81.963625096999976, 28.852417034000041 ], [ -81.963550232999978, 28.852478131000055 ], [ -81.963488386999984, 28.852533501000039 ], [ -81.96342111499996, 28.852593644000024 ], [ -81.963384220999956, 28.852637562000041 ], [ -81.963353835999953, 28.852676706000068 ], [ -81.963331043999972, 28.852713943000026 ], [ -81.963308249999955, 28.852758820000076 ], [ -81.963287624999964, 28.852805605000071 ], [ -81.96326702999994, 28.852850613000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965520444999981, 28.85322876400005 ], [ -81.965520882999954, 28.853226436000057 ], [ -81.965553104999969, 28.853069616000028 ], [ -81.965584475999947, 28.852905065000073 ], [ -81.965604075999977, 28.852785070000039 ], [ -81.965623636999965, 28.852671628000053 ], [ -81.965630818999955, 28.85260115400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963902850999943, 28.85219556100003 ], [ -81.963957067999957, 28.852241413000058 ], [ -81.96399718899994, 28.852278667000064 ], [ -81.964030804999936, 28.852306370000065 ], [ -81.964058998999974, 28.85232738600007 ], [ -81.964098037999975, 28.852353180000023 ], [ -81.964142503999938, 28.85237324600007 ], [ -81.964193073, 28.852392201000043 ], [ -81.964245132999963, 28.852405966000049 ], [ -81.964301098999954, 28.852416294000079 ], [ -81.964364874999944, 28.852426625000078 ], [ -81.964514551999969, 28.852449583000066 ], [ -81.96465251799998, 28.852467954000076 ], [ -81.964800894999939, 28.852488619000042 ], [ -81.964966192999952, 28.852509289000068 ], [ -81.96507812699997, 28.852525361000062 ], [ -81.965209584999968, 28.852543730000036 ], [ -81.965348851999977, 28.852562101000046 ], [ -81.965455579999968, 28.852575880000074 ], [ -81.965630818999955, 28.85260115400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965630818999955, 28.85260115400007 ], [ -81.96563630299994, 28.852529802000049 ], [ -81.965635237999948, 28.852468685000076 ], [ -81.965628749999951, 28.852406612000038 ], [ -81.965616842999964, 28.852334033000034 ], [ -81.965594093999982, 28.852246173000026 ], [ -81.965568092999945, 28.852151627000069 ], [ -81.965546418999963, 28.852088595000055 ], [ -81.965527996999981, 28.852037022000047 ], [ -81.965504147, 28.851997864000055 ], [ -81.965469448999954, 28.851963477000027 ], [ -81.965437106999957, 28.851939464000054 ], [ -81.965396788999954, 28.851922395000031 ], [ -81.965338220999968, 28.85190805600007 ], [ -81.965147326999954, 28.851881268000056 ], [ -81.964915217999987, 28.851849695000055 ], [ -81.964760117999958, 28.851825781000059 ], [ -81.964638639999976, 28.851808560000052 ], [ -81.964565971999946, 28.851794217000077 ], [ -81.964509569999962, 28.851788472000067 ], [ -81.964456422999945, 28.851787504000072 ], [ -81.964409776999958, 28.851796086000036 ], [ -81.964367468999967, 28.851813264000043 ], [ -81.964321904999963, 28.851837125000031 ], [ -81.96424378599994, 28.851901086000055 ], [ -81.963902850999943, 28.85219556100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966370851999955, 28.852747230000034 ], [ -81.966610043999935, 28.852792753000074 ], [ -81.966712869999981, 28.852804237000043 ], [ -81.966824805999977, 28.852813432000062 ], [ -81.967001823999965, 28.852818060000061 ], [ -81.967199668999967, 28.85282154600003 ], [ -81.967366273999971, 28.852831899000023 ], [ -81.967515956999989, 28.852843395000036 ], [ -81.967673447999971, 28.852857184000072 ], [ -81.967758052999955, 28.852862934000029 ], [ -81.967803610999965, 28.852859507000062 ], [ -81.96785437799997, 28.852846914000054 ], [ -81.967896034999967, 28.852829735000057 ], [ -81.967936392999945, 28.852804534000029 ], [ -81.967974150999964, 28.852766727000073 ], [ -81.96800540299995, 28.852725480000061 ], [ -81.968066605, 28.85263954900006 ], [ -81.968130410999947, 28.852551328000061 ], [ -81.968209816999945, 28.852450566000073 ], [ -81.968286654999986, 28.852368285000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965630818999955, 28.85260115400007 ], [ -81.966010037, 28.852671133000058 ], [ -81.966179236999949, 28.852706699000066 ], [ -81.966291167999941, 28.852729647000046 ], [ -81.966370851999955, 28.852747230000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966240698999968, 28.853402008000046 ], [ -81.966253225999935, 28.853333927000051 ], [ -81.966287128999966, 28.853144856000029 ], [ -81.966318420999983, 28.852982141000041 ], [ -81.966370851999955, 28.852747230000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966240698999968, 28.853402008000046 ], [ -81.966638538999973, 28.853461622000054 ], [ -81.966851994999956, 28.853496053000072 ], [ -81.967025105999937, 28.85351786800004 ], [ -81.967165338999962, 28.853536199000075 ], [ -81.96727808299994, 28.853548665000062 ], [ -81.967447147999962, 28.853577870000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966108598999938, 28.85400848300003 ], [ -81.966246557999966, 28.854050535000056 ], [ -81.966441784999972, 28.854111318000037 ], [ -81.966663038999968, 28.854187005000028 ], [ -81.966841399999964, 28.854252935000034 ], [ -81.966915319999941, 28.854274627000052 ], [ -81.966977185999951, 28.854285334000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966108598999938, 28.85400848300003 ], [ -81.966135956999949, 28.853936296000029 ], [ -81.966180292, 28.853689931000076 ], [ -81.966208973999983, 28.853547842000069 ], [ -81.966240698999968, 28.853402008000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965396817999988, 28.853859276000037 ], [ -81.965446211999961, 28.85362690200003 ], [ -81.965479997999978, 28.853444013000058 ], [ -81.965520444999981, 28.85322876400005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965396817999988, 28.853859276000037 ], [ -81.96577410499998, 28.853926655000066 ], [ -81.965973240999972, 28.853972543000054 ], [ -81.966108598999938, 28.85400848300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965219261999948, 28.854477325000062 ], [ -81.965242718999946, 28.854395970000041 ], [ -81.965279205999934, 28.854274509000049 ], [ -81.965318299999979, 28.85414159100003 ], [ -81.965348270999982, 28.854039611000076 ], [ -81.965396817999988, 28.853859276000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967001005999975, 28.855127517000028 ], [ -81.967103044999988, 28.854928370000039 ], [ -81.967250647999947, 28.854661021000027 ], [ -81.967389564999962, 28.854422700000043 ], [ -81.967486801999939, 28.854271461000053 ], [ -81.96763959599997, 28.854049950000046 ], [ -81.967754187999958, 28.853892604000066 ], [ -81.967845343999954, 28.853756258000033 ], [ -81.967967747999978, 28.853591273000063 ], [ -81.968120107999937, 28.853367852000076 ], [ -81.968181308999988, 28.853286505000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96654897999997, 28.856231131000072 ], [ -81.966590679999968, 28.856126127000039 ], [ -81.966689687999974, 28.855875574000038 ], [ -81.966780009, 28.855643353000062 ], [ -81.966868590999979, 28.855427940000027 ], [ -81.966958903999966, 28.855220166000038 ], [ -81.967001005999975, 28.855127517000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96532706399995, 28.855839008000032 ], [ -81.965509278999946, 28.855896353000048 ], [ -81.965676296999959, 28.855976611000074 ], [ -81.965825966999944, 28.856043494000062 ], [ -81.965953949999971, 28.856083634000072 ], [ -81.96609190099997, 28.85611678500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96609190099997, 28.85611678500004 ], [ -81.966323376999981, 28.856173015000024 ], [ -81.96654897999997, 28.856231131000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965932927999972, 28.856819249000068 ], [ -81.965940131999957, 28.856766526000058 ], [ -81.965958881999939, 28.856634782000071 ], [ -81.965984031999938, 28.856512180000038 ], [ -81.966003169999965, 28.856411717000071 ], [ -81.96602427199997, 28.856318497000075 ], [ -81.96609190099997, 28.85611678500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964191718999984, 28.856722519000073 ], [ -81.964207073999944, 28.856658782000068 ], [ -81.964245726999934, 28.856511669000042 ], [ -81.964281124999957, 28.856389445000048 ], [ -81.964312245999963, 28.856331880000027 ], [ -81.964385056999959, 28.856254785000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964191718999984, 28.856722519000073 ], [ -81.964423977999957, 28.85677389600005 ], [ -81.96457395799996, 28.856802604000052 ], [ -81.96472360599995, 28.856822606000037 ], [ -81.964886860999968, 28.85683662100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964818172999969, 28.857474127000046 ], [ -81.964824699999951, 28.857417405000035 ], [ -81.964844935999963, 28.857239789000062 ], [ -81.964864518999946, 28.857067332000042 ], [ -81.964886860999968, 28.85683662100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964818172999969, 28.857474127000046 ], [ -81.964930256999935, 28.857482694000055 ], [ -81.965060673999972, 28.857484933000023 ], [ -81.965249446999962, 28.857477495000069 ], [ -81.96543481599997, 28.857470056000068 ], [ -81.965586175999988, 28.857462610000027 ], [ -81.965693313999964, 28.857461140000055 ], [ -81.965771548999953, 28.85744319500003 ], [ -81.965811307999957, 28.85742228600003 ], [ -81.965847188999987, 28.857397031000062 ], [ -81.965874461999988, 28.857367983000074 ], [ -81.965895732999968, 28.857327945000065 ], [ -81.965909364999959, 28.857247103000077 ], [ -81.965913273999945, 28.857153247000042 ], [ -81.965921334999962, 28.857046488000037 ], [ -81.965921360999971, 28.856967139000062 ], [ -81.965924789999974, 28.856878808000033 ], [ -81.965932927999972, 28.856819249000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964795126999945, 28.85826137600003 ], [ -81.964791266999953, 28.858158542000069 ], [ -81.964778955999975, 28.857965149000051 ], [ -81.964782268999954, 28.857790394000062 ], [ -81.964799900999935, 28.857613352000044 ], [ -81.964818172999969, 28.857474127000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96409267699994, 28.858371856000076 ], [ -81.964080231999958, 28.858306730000038 ], [ -81.96407684899998, 28.858253144000059 ], [ -81.96406077499995, 28.858109051000042 ], [ -81.964050190999956, 28.857896382000035 ], [ -81.96405705799998, 28.857710738000037 ], [ -81.964075258999969, 28.857533080000053 ], [ -81.964093459999958, 28.857353428000067 ], [ -81.964111663999972, 28.857163793000041 ], [ -81.964127592999944, 28.857002106000039 ], [ -81.964166200999955, 28.856828447000055 ], [ -81.964191718999984, 28.856722519000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962689746999956, 28.857840072000045 ], [ -81.962714691999963, 28.857851538000034 ], [ -81.962753739999982, 28.857858233000059 ], [ -81.962832925999976, 28.857858255000053 ], [ -81.962955935999958, 28.857855329000074 ], [ -81.963093262999962, 28.857857372000069 ], [ -81.963352947999965, 28.857858111000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962339148999945, 28.857870819000027 ], [ -81.962469967999937, 28.857870855000044 ], [ -81.962577358999965, 28.857867447000046 ], [ -81.962632247999977, 28.857862019000038 ], [ -81.962689746999956, 28.857840072000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961023829999988, 28.857931466000025 ], [ -81.961170108999966, 28.857887904000052 ], [ -81.961309399999948, 28.857857004000039 ], [ -81.961455196999964, 28.857835273000035 ], [ -81.961600987999987, 28.857823855000049 ], [ -81.961761101999969, 28.857805566000025 ], [ -81.96196161599994, 28.857787788000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96081492999997, 28.857299614000055 ], [ -81.961050591999935, 28.85725264000007 ], [ -81.961245926999936, 28.857207420000066 ], [ -81.961392377999971, 28.85717117300004 ], [ -81.961589819999972, 28.857115844000077 ], [ -81.961758766999935, 28.857073313000058 ], [ -81.961833836999972, 28.857056145000058 ], [ -81.961885909999978, 28.857038971000065 ], [ -81.961939141999949, 28.857005169000047 ], [ -81.961973867999973, 28.856967936000046 ], [ -81.961994490999984, 28.856928789000051 ], [ -81.962004267999987, 28.856889638000041 ], [ -81.962020600999949, 28.856717753000055 ], [ -81.962035847999971, 28.856553507000058 ], [ -81.962046749999956, 28.856399764000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960688049999987, 28.856630352000025 ], [ -81.960805717999961, 28.856623479000064 ], [ -81.96092738699997, 28.856612362000078 ], [ -81.961015905999943, 28.856599782000046 ], [ -81.961089992999973, 28.856583650000061 ], [ -81.961224189999939, 28.856551713000044 ], [ -81.961379104999935, 28.856505920000075 ], [ -81.961544433999961, 28.85646242200005 ], [ -81.961674609999989, 28.856434957000033 ], [ -81.961777449999943, 28.856413213000053 ], [ -81.961877681999965, 28.856401782000034 ], [ -81.961968651999939, 28.856395923000036 ], [ -81.962046749999956, 28.856399764000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964836078999951, 28.858900770000048 ], [ -81.964828532999945, 28.85875943700006 ], [ -81.964820096999972, 28.858576585000037 ], [ -81.964805841999976, 28.858389793000072 ], [ -81.964795126999945, 28.85826137600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963044558999968, 28.859645361000048 ], [ -81.963193517999969, 28.859613847000048 ], [ -81.963351238999962, 28.859585140000036 ], [ -81.963494622999974, 28.859559235000063 ], [ -81.963646765999954, 28.859534735000068 ], [ -81.96382360399997, 28.859506734000036 ], [ -81.964015575999952, 28.859475231000033 ], [ -81.964203016999988, 28.859441412000024 ], [ -81.964393943999937, 28.859408039000073 ], [ -81.96462934799996, 28.859370858000034 ], [ -81.964818104999949, 28.859338440000045 ], [ -81.96488237899996, 28.859329457000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96488237899996, 28.859329457000058 ], [ -81.96501445499996, 28.859312708000061 ], [ -81.965293243999952, 28.859286995000048 ], [ -81.965517788999989, 28.859284188000061 ], [ -81.965695685999947, 28.859287098000038 ], [ -81.965863818999935, 28.859300511000072 ], [ -81.966026040999964, 28.85931938300007 ], [ -81.966208433999952, 28.859344673000066 ], [ -81.966305602999967, 28.859365032000028 ], [ -81.966400938999982, 28.859382367000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96488237899996, 28.859329457000058 ], [ -81.964841467999975, 28.859001041000056 ], [ -81.964836078999951, 28.858900770000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964220729999965, 28.855619083000079 ], [ -81.96432269099995, 28.855628660000036 ], [ -81.964539625999976, 28.855647815000054 ], [ -81.964745711999967, 28.855676518000053 ], [ -81.964934437999943, 28.855718584000044 ], [ -81.965120991999981, 28.855774020000069 ], [ -81.965264158999958, 28.855817984000055 ], [ -81.96532706399995, 28.855839008000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962046749999956, 28.856399764000059 ], [ -81.962051752999969, 28.856365006000033 ], [ -81.962074614999949, 28.856136780000043 ], [ -81.962095304999934, 28.855916193000041 ], [ -81.962111640999979, 28.855736669000066 ], [ -81.962123186999975, 28.855599589000064 ], [ -81.962137542999983, 28.855499897000072 ], [ -81.962153179999973, 28.855451199000072 ], [ -81.962174018999974, 28.855417973000044 ], [ -81.962200712999959, 28.855389332000072 ], [ -81.962237165999966, 28.855369861000042 ], [ -81.962285984999937, 28.855351540000072 ], [ -81.962346513999989, 28.855344108000054 ], [ -81.962437628999965, 28.855346999000062 ], [ -81.962589848999983, 28.855358895000052 ], [ -81.962773809999987, 28.855377281000074 ], [ -81.962983798999971, 28.855407898000067 ], [ -81.963219815999935, 28.855452271000047 ], [ -81.963481866999985, 28.855496651000067 ], [ -81.963716150999971, 28.855537968000078 ], [ -81.963926136999987, 28.855576223000071 ], [ -81.964101417999984, 28.855600716000026 ], [ -81.964220729999965, 28.855619083000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964220729999965, 28.855619083000079 ], [ -81.96424725199995, 28.855463243000031 ], [ -81.964259430999959, 28.855371572000024 ], [ -81.96427508499994, 28.855270733000054 ], [ -81.964290743999982, 28.855156144000034 ], [ -81.964324639999973, 28.855000306000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964324639999973, 28.855000306000079 ], [ -81.964337669999964, 28.854960202000029 ], [ -81.964354612999955, 28.854899472000056 ], [ -81.964389793999942, 28.854791763000037 ], [ -81.964421070999947, 28.854679470000065 ], [ -81.964467978999949, 28.854535095000074 ], [ -81.964475798999956, 28.854505302000064 ], [ -81.964479712999946, 28.854478947000075 ], [ -81.964479720999975, 28.854456028000072 ], [ -81.964472569999941, 28.854432535000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964472569999941, 28.854432535000058 ], [ -81.964525515999981, 28.854387253000027 ], [ -81.964564172999985, 28.854266940000059 ], [ -81.96461543099997, 28.854088188000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96151733399995, 28.854055284000026 ], [ -81.961722990999988, 28.854059926000048 ], [ -81.961886995999976, 28.85406111900005 ], [ -81.961970298999972, 28.854066872000033 ], [ -81.962018453999974, 28.854085221000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962155383999971, 28.854684061000057 ], [ -81.962134784999989, 28.854653497000072 ], [ -81.962125369999967, 28.854619026000023 ], [ -81.962111799999946, 28.854527697000037 ], [ -81.962089717999959, 28.85445283200005 ], [ -81.962059128999954, 28.854392938000046 ], [ -81.962019669999961, 28.854320137000059 ], [ -81.961993652, 28.854275438000059 ], [ -81.961979346999954, 28.854239910000047 ], [ -81.961968945999956, 28.854206675000057 ], [ -81.961968955999964, 28.854178027000046 ], [ -81.961974934999944, 28.854144510000026 ], [ -81.961983619999955, 28.854123026000025 ], [ -81.961996643999953, 28.854102499000078 ], [ -81.962018453999974, 28.854085221000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962104293999971, 28.854984854000065 ], [ -81.962126772999966, 28.854724320000059 ], [ -81.962155383999971, 28.854684061000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962155383999971, 28.854684061000057 ], [ -81.962178157999972, 28.854696481000076 ], [ -81.962215596999954, 28.854703817000029 ], [ -81.962260589999971, 28.854711784000074 ], [ -81.962364718999936, 28.854718498000068 ], [ -81.962482469999941, 28.854729365000026 ], [ -81.962572718999979, 28.85473703100007 ], [ -81.962688992999972, 28.854747757000041 ], [ -81.962790213999938, 28.85475499000006 ], [ -81.962895513999968, 28.854766149000056 ], [ -81.96299096599995, 28.854773816000034 ], [ -81.963114542999961, 28.854790083000069 ], [ -81.963230645999943, 28.854812003000063 ], [ -81.963356480999948, 28.854835991000073 ], [ -81.963478337999959, 28.854857835000075 ], [ -81.963623454999947, 28.854885469000067 ], [ -81.963754549999976, 28.854908480000063 ], [ -81.963899024999989, 28.854931437000062 ], [ -81.964052610999943, 28.854954397000029 ], [ -81.964324639999973, 28.855000306000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962018453999974, 28.854085221000048 ], [ -81.962036678999937, 28.854078350000066 ], [ -81.962064014999953, 28.85407262800004 ], [ -81.96209915999998, 28.85407149200006 ], [ -81.962135605999947, 28.854071502000068 ], [ -81.962175954999964, 28.854073805000041 ], [ -81.96253519399994, 28.854110576000039 ], [ -81.962669257999949, 28.854123218000041 ], [ -81.962791607999975, 28.854134711000029 ], [ -81.962949099999946, 28.854149652000046 ], [ -81.963162440999952, 28.854176195000036 ], [ -81.963308333999976, 28.854199025000071 ], [ -81.963464852999948, 28.854226329000028 ], [ -81.963623311999982, 28.854252969000072 ], [ -81.963791212, 28.854285100000027 ], [ -81.963985144999981, 28.854317238000078 ], [ -81.964172571999939, 28.854344791000074 ], [ -81.964330062999977, 28.854367751000041 ], [ -81.964371711999945, 28.854378075000056 ], [ -81.964402947999986, 28.854387252000038 ], [ -81.964434181999934, 28.854403303000026 ], [ -81.964472569999941, 28.854432535000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96326702999994, 28.852850613000044 ], [ -81.963239274999978, 28.852932378000048 ], [ -81.963201047999974, 28.853063767000037 ], [ -81.963168032999988, 28.853182172000061 ], [ -81.963148916999955, 28.853250922000029 ], [ -81.963144562999958, 28.853293703000077 ], [ -81.963145420999979, 28.853323497000076 ], [ -81.963148011999976, 28.853358640000067 ], [ -81.963159279999957, 28.853392257000053 ], [ -81.963167082999973, 28.853410594000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962463217999982, 28.860503399000038 ], [ -81.962634464999951, 28.860399512000072 ], [ -81.962731676999965, 28.86035064500004 ], [ -81.962844513999983, 28.860288032000028 ], [ -81.962960822999946, 28.860230004000073 ], [ -81.963084071999958, 28.860170449000066 ], [ -81.963214257999937, 28.860126175000062 ], [ -81.963349409999978, 28.860077754000031 ], [ -81.963474631999986, 28.860036100000059 ], [ -81.963613767999959, 28.859990566000079 ], [ -81.963774591999936, 28.859952926000062 ], [ -81.963976266999964, 28.859915529000034 ], [ -81.964107054999943, 28.859895127000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964107054999943, 28.859895127000073 ], [ -81.964333633999956, 28.859857790000035 ], [ -81.964499344999979, 28.859829861000037 ], [ -81.964713625999934, 28.859793483000033 ], [ -81.964816348999989, 28.859778239000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964816348999989, 28.859778239000036 ], [ -81.964873627999964, 28.85976603000006 ], [ -81.965044052999986, 28.859739550000029 ], [ -81.965309716999968, 28.859716487000071 ], [ -81.96539570799996, 28.859723019000057 ], [ -81.965457234999974, 28.85973944400007 ], [ -81.965509292999968, 28.859770015000038 ], [ -81.965557007999962, 28.859815864000041 ], [ -81.965580855999974, 28.85986361700003 ], [ -81.965591686999971, 28.85991900700003 ], [ -81.96559816599995, 28.860010683000041 ], [ -81.965611125999942, 28.860182577000046 ], [ -81.965617578999968, 28.860350649000054 ], [ -81.965615357, 28.860509168000078 ], [ -81.965628290999973, 28.860759367000071 ], [ -81.965647760999957, 28.860931263000055 ], [ -81.965671564, 28.861118437000073 ], [ -81.965695364999988, 28.86131516100005 ], [ -81.965732607999939, 28.861516106000067 ], [ -81.965768978999961, 28.861627853000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966035690999945, 28.862210985000047 ], [ -81.966055206999954, 28.862241549000032 ], [ -81.966131101999963, 28.862365710000063 ], [ -81.966206987999954, 28.862516611000046 ], [ -81.966272027999935, 28.862663688000055 ], [ -81.966321887999982, 28.862789753000072 ], [ -81.96635658699995, 28.86283559900005 ], [ -81.966399966999973, 28.862868078000076 ], [ -81.966448164999974, 28.862884406000035 ], [ -81.966512776999934, 28.862892936000037 ], [ -81.966590882999981, 28.862889135000046 ], [ -81.966838219999943, 28.862872007000078 ], [ -81.966896803999987, 28.862854832000039 ], [ -81.966947648999962, 28.862821165000071 ], [ -81.966987949999975, 28.862780369000063 ], [ -81.967016174999969, 28.862715439000056 ], [ -81.967016195999975, 28.862650502000065 ], [ -81.966979351999953, 28.862526352000032 ], [ -81.966927324999972, 28.862390737000055 ], [ -81.966836263999937, 28.862199725000039 ], [ -81.966738691999979, 28.862018262000049 ], [ -81.966647618999957, 28.861861628000042 ], [ -81.96655386499998, 28.861701222000079 ], [ -81.966461159999938, 28.861485334000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967668813999978, 28.862240093000025 ], [ -81.967785000999982, 28.862240063000058 ], [ -81.967901298999948, 28.862212588000034 ], [ -81.968149507999954, 28.862177506000023 ], [ -81.96836994399996, 28.862147 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96836994399996, 28.862147 ], [ -81.968470617999969, 28.862125632000073 ], [ -81.968659811999942, 28.862098174000039 ], [ -81.968809083999986, 28.862076818000048 ], [ -81.968969272999971, 28.862055437000038 ], [ -81.969082860999947, 28.862049909000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969408066999961, 28.86360280100007 ], [ -81.969613028999959, 28.863068392000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970319970999981, 28.863770608000038 ], [ -81.970425673999955, 28.863258727000073 ], [ -81.970432114999937, 28.863217490000068 ], [ -81.970427448999942, 28.863113532000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971231290999981, 28.863631172000055 ], [ -81.971236881999971, 28.863432614000033 ], [ -81.97124039199997, 28.863290519000032 ], [ -81.971261265999942, 28.863117869000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971261265999942, 28.863117869000064 ], [ -81.971285589, 28.86304147900006 ], [ -81.971322085999986, 28.862862722000045 ], [ -81.971358868999971, 28.862707663000037 ], [ -81.971388127999944, 28.86254493000007 ], [ -81.97139856299998, 28.862467008000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97139856299998, 28.862467008000067 ], [ -81.971417684999949, 28.862361587000066 ], [ -81.971448982999959, 28.862156854000034 ], [ -81.971476804999952, 28.861962816000073 ], [ -81.971485510999969, 28.861866559000077 ], [ -81.971488865999959, 28.861771741000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971488865999959, 28.861771741000041 ], [ -81.971496042999945, 28.861652253000045 ], [ -81.971498457999985, 28.861454878000075 ], [ -81.971496151999986, 28.861253346000069 ], [ -81.971482241999979, 28.861119409000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969805896999958, 28.86238789500004 ], [ -81.970044774999963, 28.862388791000058 ], [ -81.970230491999985, 28.862384249000058 ], [ -81.970522081999945, 28.862379729000054 ], [ -81.970777221999981, 28.86238895200006 ], [ -81.971009792999951, 28.86241344900003 ], [ -81.971282281999947, 28.862444065000034 ], [ -81.97139856299998, 28.862467008000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969052343999977, 28.861655063000057 ], [ -81.969246074999944, 28.861658684000076 ], [ -81.969444321999958, 28.861662884000054 ], [ -81.969611887999974, 28.861669155000072 ], [ -81.969791253999972, 28.861671274000059 ], [ -81.969968613999981, 28.861667600000033 ], [ -81.970166477999953, 28.861663061000058 ], [ -81.970381696999937, 28.861666164000042 ], [ -81.970583027999965, 28.861681487000055 ], [ -81.970789562999983, 28.861705979000078 ], [ -81.970973533999938, 28.861730465000051 ], [ -81.971190479999962, 28.861761070000057 ], [ -81.971346684999958, 28.861770270000079 ], [ -81.971488865999959, 28.861771741000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969180020999943, 28.860981163000076 ], [ -81.969287946999941, 28.861012148000043 ], [ -81.96938550699997, 28.861020881000059 ], [ -81.969522741999981, 28.861025778000055 ], [ -81.969670268999948, 28.861030395000057 ], [ -81.969831681999949, 28.861031960000048 ], [ -81.970015659999945, 28.861030472000039 ], [ -81.970194430999982, 28.861025928000061 ], [ -81.970373201999962, 28.861022912000067 ], [ -81.97055370399994, 28.861032119000072 ], [ -81.970716848999984, 28.861050490000025 ], [ -81.970888669999965, 28.861073445000045 ], [ -81.97106396099997, 28.861099458000069 ], [ -81.971227104999969, 28.861120882000023 ], [ -81.971338182999943, 28.861127019000037 ], [ -81.971407609999972, 28.861123977000034 ], [ -81.971482241999979, 28.861119409000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968477409999934, 28.860910296000043 ], [ -81.968394126999954, 28.861165533000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968663713999945, 28.860301352000079 ], [ -81.968550037999989, 28.860687714000051 ], [ -81.968477409999934, 28.860910296000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966833164999969, 28.860570205000045 ], [ -81.967005234999988, 28.860600044000023 ], [ -81.967374898999935, 28.860678058000076 ], [ -81.967946316999985, 28.860797372000036 ], [ -81.968477409999934, 28.860910296000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966514772999972, 28.859854605000066 ], [ -81.966881767999951, 28.859936095000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966881767999951, 28.859936095000023 ], [ -81.966957276999949, 28.859952580000027 ], [ -81.967199378999965, 28.860003060000054 ], [ -81.967641932999982, 28.860093696000035 ], [ -81.96801159499995, 28.860170562000064 ], [ -81.968284936999964, 28.860227924000071 ], [ -81.968588217, 28.860288729000047 ], [ -81.968663713999945, 28.860301352000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968663713999945, 28.860301352000079 ], [ -81.968805160999977, 28.860320865000062 ], [ -81.969045755999957, 28.860347094000076 ], [ -81.969361090999939, 28.860374996000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97212018099998, 28.863333886000078 ], [ -81.972071805999974, 28.863131703000079 ], [ -81.97206091399994, 28.863029567000069 ], [ -81.972073542999965, 28.862878872000067 ], [ -81.972093089999987, 28.862739812000029 ], [ -81.972123351999983, 28.862540366000076 ], [ -81.97215676899998, 28.862313771000061 ], [ -81.97218703599998, 28.862101028000041 ], [ -81.97220975, 28.861951334000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97220975, 28.861951334000025 ], [ -81.972217296999986, 28.86190158200003 ], [ -81.97223246599998, 28.861662241000033 ], [ -81.972224022999967, 28.861472058000061 ], [ -81.972224062999942, 28.861324996000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972224062999942, 28.861324996000064 ], [ -81.972217569999941, 28.861263878000045 ], [ -81.972211100999971, 28.861114906000068 ], [ -81.972187297999938, 28.860881894000045 ], [ -81.972152631999961, 28.860708087000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972152631999961, 28.860708087000035 ], [ -81.972120985999936, 28.860597594000069 ], [ -81.972009877999938, 28.860299151000049 ], [ -81.971955679999951, 28.860148736000042 ], [ -81.971939420999945, 28.860100985000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971482241999979, 28.861119409000025 ], [ -81.971458478999978, 28.860927150000066 ], [ -81.971427829999982, 28.860810796000067 ], [ -81.971390106999934, 28.860671586000024 ], [ -81.971357420999936, 28.860595309000075 ], [ -81.97132445699998, 28.860549465000076 ], [ -81.971267191999971, 28.860508199000037 ], [ -81.971201247999943, 28.860474572000044 ], [ -81.971135299999958, 28.860456223000028 ], [ -81.971071084999949, 28.860443985000074 ], [ -81.970996454999977, 28.860436329000038 ], [ -81.970848931999967, 28.860421019000057 ], [ -81.970671903999971, 28.860401118000027 ], [ -81.970470576999958, 28.860384267000029 ], [ -81.970262303999959, 28.860379637000051 ], [ -81.970071382999947, 28.860390289000065 ], [ -81.969863108999959, 28.86039024300004 ], [ -81.969660247999968, 28.860390727000038 ], [ -81.969361090999939, 28.860374996000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97220975, 28.861951334000025 ], [ -81.972346734999974, 28.861956778000035 ], [ -81.972412608999946, 28.861955341000055 ], [ -81.97254714099995, 28.861934592000068 ], [ -81.97269347799994, 28.861897225000064 ], [ -81.972858697999982, 28.86185155000004 ], [ -81.972890093999979, 28.861840076000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972890093999979, 28.861840076000078 ], [ -81.973012119999964, 28.861795484000027 ], [ -81.973156097999947, 28.861751883000068 ], [ -81.973342557999956, 28.861706211000069 ], [ -81.973559694999949, 28.861675090000062 ], [ -81.973712056999943, 28.861671848000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973712056999943, 28.861671848000071 ], [ -81.973829438999985, 28.86166909800005 ], [ -81.973949108999989, 28.861685554000076 ], [ -81.974109589999955, 28.861714672000062 ], [ -81.974260544999936, 28.861753278000037 ], [ -81.974487342999964, 28.861796416000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972890093999979, 28.861840076000078 ], [ -81.972922316999984, 28.861938133000024 ], [ -81.972930431999941, 28.861992296000039 ], [ -81.97293290999994, 28.86204471800005 ], [ -81.972915259999979, 28.862160437000057 ], [ -81.972890037999946, 28.862346033000051 ], [ -81.972864814, 28.862537172000032 ], [ -81.972836455999982, 28.862675675000048 ], [ -81.97281753599998, 28.862825261000069 ], [ -81.972824361999983, 28.862884269000062 ], [ -81.97283953699997, 28.862927762000027 ], [ -81.972873195999966, 28.86296468300003 ], [ -81.972915666999938, 28.863007699000036 ], [ -81.972971676999975, 28.863035825000054 ], [ -81.973084961999973, 28.863041388000056 ], [ -81.973207688999935, 28.863038642000049 ], [ -81.973314684999934, 28.863033123000037 ], [ -81.973415386999989, 28.863019292000047 ], [ -81.973453071999984, 28.862998456000071 ], [ -81.973490924999965, 28.862963904000026 ], [ -81.973531853999987, 28.862886346000039 ], [ -81.973557059999962, 28.862764463000076 ], [ -81.973588589999963, 28.862517924000031 ], [ -81.97362641999996, 28.862249223000049 ], [ -81.973661088999961, 28.862030386000072 ], [ -81.973712056999943, 28.861671848000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974335395999958, 28.86306311900006 ], [ -81.974383098999965, 28.862788862000059 ], [ -81.974399652999978, 28.862655896000035 ], [ -81.974423297999977, 28.862479301000064 ], [ -81.974449307999976, 28.862277776000042 ], [ -81.974463511999943, 28.862101180000025 ], [ -81.974477712999942, 28.861934972000029 ], [ -81.974487342999964, 28.861796416000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974487342999964, 28.861796416000061 ], [ -81.974489554999934, 28.861764607000055 ], [ -81.974508481999976, 28.861575547000029 ], [ -81.974512910999977, 28.861409483000045 ], [ -81.974517269999978, 28.861331179000047 ], [ -81.974512943999969, 28.861273881000045 ], [ -81.974502104999942, 28.861237592000066 ], [ -81.974473910999961, 28.861199388000045 ], [ -81.974435421999942, 28.861153773000069 ], [ -81.974378468999987, 28.861122975000058 ], [ -81.974298548999968, 28.861103883000055 ], [ -81.974133325999958, 28.861059902000079 ], [ -81.973970619999989, 28.861025492000067 ], [ -81.973818758999982, 28.86100254400003 ], [ -81.973671230999969, 28.860994876000063 ], [ -81.973532380999984, 28.860994849000065 ], [ -81.973374, 28.861013916000047 ], [ -81.973237311999981, 28.861040628000069 ], [ -81.973107130999949, 28.861076890000049 ], [ -81.97295958899997, 28.861126517000059 ], [ -81.972814030999984, 28.861180464000029 ], [ -81.972660610999981, 28.861230297000077 ], [ -81.972477908999963, 28.861286850000056 ], [ -81.972336881, 28.86131929000004 ], [ -81.972224062999942, 28.861324996000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972152631999961, 28.860708087000035 ], [ -81.97227395699997, 28.86067541400007 ], [ -81.972410598999943, 28.860633965000034 ], [ -81.97263718399995, 28.860563370000079 ], [ -81.972872974999973, 28.860475228000041 ], [ -81.973079096999982, 28.86041797200005 ], [ -81.973259176999989, 28.860383630000058 ], [ -81.973430222, 28.860368231000052 ], [ -81.973606305999965, 28.860356961000036 ], [ -81.973792886999945, 28.860356997000054 ], [ -81.973944250999978, 28.860374524000065 ], [ -81.974079254999936, 28.860391431000039 ], [ -81.974189894999938, 28.860412460000077 ], [ -81.974287516999937, 28.860439217000078 ], [ -81.974350433999973, 28.860443049000025 ], [ -81.974400333999938, 28.860435419000055 ], [ -81.974463253999943, 28.860414423000066 ], [ -81.974530520999963, 28.860370506000038 ], [ -81.97456307799996, 28.860313216000065 ], [ -81.974582632999955, 28.860190987000067 ], [ -81.974591355999962, 28.860009550000029 ], [ -81.974597907999964, 28.859831932000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974597907999964, 28.859831932000077 ], [ -81.974604433999957, 28.859761264000042 ], [ -81.974618335999935, 28.85968028700006 ], [ -81.974630500999979, 28.85962223000007 ], [ -81.974661767999976, 28.859521393000023 ], [ -81.974726012999952, 28.859396116000028 ], [ -81.974802177999948, 28.859257520000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974802177999948, 28.859257522000064 ], [ -81.974833669999953, 28.859195983000063 ], [ -81.974892705999935, 28.859089040000072 ], [ -81.974946533999969, 28.85898515100007 ], [ -81.97501078199997, 28.858856819000039 ], [ -81.975078499999938, 28.858730015000049 ], [ -81.975144482999951, 28.858600154000044 ], [ -81.975202035999985, 28.858499489000053 ], [ -81.975257343999942, 28.858400019000044 ], [ -81.975299017999987, 28.858317520000071 ], [ -81.975328540999953, 28.858239602000026 ], [ -81.975338971999975, 28.858163208000065 ], [ -81.975332049999963, 28.858082226000079 ], [ -81.975318182999956, 28.858004301000051 ], [ -81.97528609799997, 28.857888434000074 ], [ -81.975255101999949, 28.857823712000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974058722999985, 28.858924313000045 ], [ -81.974236026999961, 28.859017488000063 ], [ -81.974361767999937, 28.859069955000052 ], [ -81.974542690999954, 28.859145943000044 ], [ -81.974802177999948, 28.859257522000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971939420999945, 28.860100985000031 ], [ -81.972074091999957, 28.860062816000038 ], [ -81.972179470999947, 28.860031401000072 ], [ -81.972356490999971, 28.859973265000065 ], [ -81.972559475999958, 28.859900589000063 ], [ -81.972734134999939, 28.85984660500003 ], [ -81.972918231999984, 28.859805090000066 ], [ -81.973114126999974, 28.859763576000034 ], [ -81.973319457999935, 28.859740764000037 ], [ -81.973550750999948, 28.859717954000075 ], [ -81.973779675999936, 28.859720077000077 ], [ -81.973973195999974, 28.859738813000035 ], [ -81.974202115999958, 28.859767944000055 ], [ -81.97436023299997, 28.859792906000052 ], [ -81.974597907999964, 28.859831932000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961689456999977, 28.859217362000038 ], [ -81.962098898999955, 28.859203438000065 ], [ -81.96226031499998, 28.859187440000028 ], [ -81.962433451999971, 28.859159986000066 ], [ -81.962496485999964, 28.859152360000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962496485999964, 28.859152360000053 ], [ -81.962575343999958, 28.859141690000058 ], [ -81.962741968999978, 28.859118817000024 ], [ -81.962928115999944, 28.859109701000079 ], [ -81.963105146999965, 28.859108604000028 ], [ -81.963295193999954, 28.859112093000078 ], [ -81.963476131999982, 28.859107559000051 ], [ -81.963595890999954, 28.859099569000023 ], [ -81.963717170999985, 28.859083178000049 ], [ -81.96392762399995, 28.859051721000071 ], [ -81.964207506999969, 28.859001183000032 ], [ -81.964434230999984, 28.858963046000042 ], [ -81.964836078999951, 28.858900770000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962462465999977, 28.858486447000075 ], [ -81.96275473999998, 28.858476090000067 ], [ -81.963036237999972, 28.858472536000079 ], [ -81.963275457999941, 28.858474418000071 ], [ -81.963388878999979, 28.858471002000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963388878999979, 28.858471002000044 ], [ -81.963502308999978, 28.858463586000028 ], [ -81.963699261999977, 28.858439130000079 ], [ -81.963950046999969, 28.858398842000042 ], [ -81.96409267699994, 28.858371856000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96409267699994, 28.858371856000076 ], [ -81.964171332999967, 28.858357367000053 ], [ -81.964451000999986, 28.858311698000023 ], [ -81.964716371999941, 28.858268804000033 ], [ -81.964795126999945, 28.85826137600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961397301999966, 28.85569780000003 ], [ -81.961276808999969, 28.855773855000052 ], [ -81.961128900999938, 28.855837811000072 ], [ -81.961010974999965, 28.855883688000063 ], [ -81.960856763999971, 28.855949519000035 ], [ -81.960754709999946, 28.85599540100003 ], [ -81.960724294999977, 28.856015759000059 ], [ -81.960695646999966, 28.856045545000029 ], [ -81.960676106999983, 28.856086794000078 ], [ -81.960660467999958, 28.856136065000044 ], [ -81.960657122999976, 28.856220944000029 ], [ -81.960666138999954, 28.85636267700005 ], [ -81.960678540999936, 28.856536 ], [ -81.960688049999987, 28.856630352000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960688049999987, 28.856630352000025 ], [ -81.960703187999968, 28.856761757000072 ], [ -81.960738683999978, 28.856980258000078 ], [ -81.960780262999947, 28.857179663000068 ], [ -81.96081492999997, 28.857299614000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96081492999997, 28.857299614000055 ], [ -81.960829660999934, 28.857353859000057 ], [ -81.960860859999968, 28.857466934000058 ], [ -81.960912863999965, 28.857636547000027 ], [ -81.96097961199996, 28.857825264000041 ], [ -81.961023829999988, 28.857931466000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961023829999988, 28.857931466000025 ], [ -81.961046367999984, 28.857995899000059 ], [ -81.961101864999989, 28.858108981000044 ], [ -81.961155620999989, 28.858234285000037 ], [ -81.961211117999937, 28.858347367000079 ], [ -81.961242336999987, 28.858406964000039 ], [ -81.961268356999938, 28.858442113000024 ], [ -81.961290911999981, 28.858465039000066 ], [ -81.961320407999949, 28.858487966000041 ], [ -81.961358624999946, 28.858504470000071 ], [ -81.961400561999938, 28.858515057000034 ], [ -81.961439323999969, 28.858519391000073 ], [ -81.961648897999964, 28.858514867000054 ], [ -81.961917050999944, 28.858504629000038 ], [ -81.962315370999988, 28.85849328200004 ], [ -81.962424715999987, 28.858489874000043 ], [ -81.962462465999977, 28.858486447000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962496485999964, 28.859152360000053 ], [ -81.962486757999955, 28.858945523000045 ], [ -81.962484237999945, 28.858860186000072 ], [ -81.962478979999958, 28.858730684000079 ], [ -81.962462465999977, 28.858486447000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963388878999979, 28.858471002000044 ], [ -81.963370033999979, 28.858189412000058 ], [ -81.963359779999962, 28.858026923000068 ], [ -81.963352947999965, 28.857858111000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963352947999965, 28.857858111000041 ], [ -81.963352696999948, 28.857794966000029 ], [ -81.963364086999945, 28.857649246000051 ], [ -81.963382290999959, 28.857467597000038 ], [ -81.963402757999972, 28.857297926000058 ], [ -81.963420977999988, 28.857066373000066 ], [ -81.963446441999963, 28.856802301000073 ], [ -81.963462779999986, 28.856611317000045 ], [ -81.963484691999952, 28.85642361400005 ], [ -81.96349870399996, 28.856244485000047 ], [ -81.96349936699994, 28.856209868000064 ], [ -81.96349156399998, 28.856189812000025 ], [ -81.963481372, 28.856174769000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962839472999974, 28.856071603000032 ], [ -81.962865508999982, 28.856061870000076 ], [ -81.962895449999962, 28.85605614800005 ], [ -81.962927990999958, 28.856057303000057 ], [ -81.962978102999955, 28.856061900000043 ], [ -81.963099582999973, 28.856084901000031 ], [ -81.963292650999961, 28.856119332000048 ], [ -81.96342606199994, 28.856145151000078 ], [ -81.963446019999935, 28.856149119000065 ], [ -81.96346723399995, 28.856158114000038 ], [ -81.963481372, 28.856174769000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963481372, 28.856174769000063 ], [ -81.963554051999949, 28.856165764000025 ], [ -81.963634316999958, 28.856178630000045 ], [ -81.963755797999966, 28.856198717000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962689746999956, 28.857840072000045 ], [ -81.962671313999977, 28.857818102000067 ], [ -81.96265830699997, 28.857793271000048 ], [ -81.96265397999997, 28.85775602700005 ], [ -81.962658898999962, 28.857631087000073 ], [ -81.962672497999961, 28.857519977000038 ], [ -81.96268977699998, 28.857353237000041 ], [ -81.96270513099995, 28.857215130000043 ], [ -81.962718055999972, 28.857064183000034 ], [ -81.962733993999962, 28.856878542000061 ], [ -81.962749923, 28.85672084600003 ], [ -81.962762061999968, 28.856573883000067 ], [ -81.962775127999976, 28.856435419000036 ], [ -81.962788627999942, 28.856296192000059 ], [ -81.962801697999964, 28.85614722400004 ], [ -81.962803655999949, 28.856131181000023 ], [ -81.96280952099994, 28.856111702000078 ], [ -81.962824497999975, 28.856087642000034 ], [ -81.962839472999974, 28.856071603000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962839472999974, 28.856071603000032 ], [ -81.962814755999943, 28.856031488000042 ], [ -81.962821092999945, 28.855908413000066 ], [ -81.962829934999945, 28.855790101000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964886860999968, 28.85683662100007 ], [ -81.965088664999939, 28.856844659000046 ], [ -81.965274600999976, 28.856836721000036 ], [ -81.965446931999963, 28.856832774000054 ], [ -81.965623797999967, 28.856824834000065 ], [ -81.965815543999952, 28.856818090000047 ], [ -81.965932927999972, 28.856819249000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96517029599994, 28.856221393000055 ], [ -81.96532706399995, 28.855839008000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973443821999979, 28.85712170100004 ], [ -81.973942687999966, 28.857055112000069 ], [ -81.974367584999982, 28.857017830000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974303004999967, 28.85571647300003 ], [ -81.974067226999978, 28.855722129000071 ], [ -81.973888096999985, 28.855730079000068 ], [ -81.973713500999963, 28.855732042000056 ], [ -81.973612252999942, 28.855740785000023 ], [ -81.973542822999946, 28.855766747000075 ], [ -81.973489012999948, 28.855803406000064 ], [ -81.973456026999941, 28.855850764000024 ], [ -81.973435185999961, 28.855905766000035 ], [ -81.973435159999951, 28.856008136000071 ], [ -81.973435132999953, 28.85611509000006 ], [ -81.973443786999951, 28.85620218300005 ], [ -81.973462864999988, 28.85625566300007 ], [ -81.973488888999952, 28.85629233800006 ], [ -81.973534003999987, 28.856333600000028 ], [ -81.973587797999983, 28.856361113000048 ], [ -81.973650274999954, 28.856373349000023 ], [ -81.973728374999951, 28.856371836000051 ], [ -81.973974100999953, 28.85636488800003 ], [ -81.974332531999949, 28.856356346000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97431288699994, 28.857652685000062 ], [ -81.974296037999977, 28.857582816000047 ], [ -81.974302608999949, 28.857494799000051 ], [ -81.974332112999946, 28.857385014000045 ], [ -81.97436059599994, 28.857281401000023 ], [ -81.974370722999936, 28.857133500000032 ], [ -81.974367584999982, 28.857017830000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974367584999982, 28.857017830000075 ], [ -81.974366227999951, 28.856967814000029 ], [ -81.974352679999981, 28.856734257000028 ], [ -81.974345936999953, 28.856490719000078 ], [ -81.974332531999949, 28.856356346000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974332531999949, 28.856356346000041 ], [ -81.974328896999964, 28.856289445000073 ], [ -81.974323744999936, 28.856066368000029 ], [ -81.974311653999962, 28.855837179000048 ], [ -81.974303004999967, 28.85571647300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974303004999967, 28.85571647300003 ], [ -81.974300846999938, 28.855667198000049 ], [ -81.974292208999941, 28.855510584000058 ], [ -81.97429006699997, 28.855397900000071 ], [ -81.974281417999975, 28.85527948500004 ], [ -81.974292285999979, 28.85519927200005 ], [ -81.974324841999987, 28.855138163000049 ], [ -81.974381257999937, 28.855088515000034 ], [ -81.974457195999946, 28.855056062000074 ], [ -81.974579838999944, 28.855049509000025 ], [ -81.974678505999975, 28.855053663000035 ], [ -81.974770302999957, 28.855057529000078 ], [ -81.974852024999961, 28.855069506000063 ], [ -81.974923608999973, 28.85509816800004 ], [ -81.974986507999972, 28.85515738600003 ], [ -81.975014691999945, 28.855231876000062 ], [ -81.975019001999954, 28.855357930000025 ], [ -81.97502979799998, 28.85557374900003 ], [ -81.975036244999956, 28.855829677000031 ], [ -81.975049209999952, 28.856045497000025 ], [ -81.975057838999987, 28.856247946000053 ], [ -81.975071525999965, 28.856514809000032 ], [ -81.975082801999974, 28.856774316000042 ], [ -81.975087305999978, 28.85690007900007 ], [ -81.975094056999978, 28.857119662000059 ], [ -81.975105369999937, 28.857219474000033 ], [ -81.975096276999977, 28.857315289000042 ], [ -81.97507492799997, 28.857365234000042 ], [ -81.975046715999952, 28.857399607000048 ], [ -81.975014167999973, 28.857424430000037 ], [ -81.974976068999979, 28.857443024000077 ], [ -81.974849078999966, 28.857486916000028 ], [ -81.97465178899995, 28.857556746000057 ], [ -81.974521655999979, 28.857607209000037 ], [ -81.974395818999938, 28.857643951000057 ], [ -81.97431288699994, 28.857652685000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970587805999969, 28.859495160000051 ], [ -81.970661485999983, 28.859488207000027 ], [ -81.970899847999988, 28.859455167000078 ], [ -81.971058017999951, 28.859425259000034 ], [ -81.971262107999962, 28.859384879000061 ], [ -81.971459397999979, 28.859338508000064 ], [ -81.971660091, 28.859283158000039 ], [ -81.971855681999955, 28.859224810000057 ], [ -81.972114203, 28.859139525000046 ], [ -81.972308098999974, 28.859064709000052 ], [ -81.972483285999942, 28.858985395000047 ], [ -81.972692495, 28.858877644000074 ], [ -81.972869389999971, 28.858772879000071 ], [ -81.973089533999939, 28.858611195000037 ], [ -81.973218422999935, 28.858526422000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970501552999963, 28.858861156000046 ], [ -81.970590071999936, 28.858850480000058 ], [ -81.970774176999953, 28.85882334300004 ], [ -81.970937446999983, 28.858796430000041 ], [ -81.971105820999981, 28.858760535000044 ], [ -81.971268435999946, 28.85871968400005 ], [ -81.971440271999938, 28.858673883000051 ], [ -81.971613410999964, 28.858620060000078 ], [ -81.971769628999937, 28.858566234000079 ], [ -81.97193105499997, 28.858504388000028 ], [ -81.972082067999963, 28.858442539000066 ], [ -81.972235686999966, 28.858368085000052 ], [ -81.97238800699995, 28.858285609000063 ], [ -81.972502575999954, 28.858211147000077 ], [ -81.972610635999956, 28.858133246000079 ], [ -81.972680940999965, 28.858079401000055 ], [ -81.97274994199995, 28.858033578000061 ], [ -81.97280527099997, 28.858005800000058 ], [ -81.972877520999987, 28.857980031000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968913266999948, 28.858835219000071 ], [ -81.968930334999982, 28.859098202000041 ], [ -81.968939407999983, 28.859229987000049 ], [ -81.968947190999984, 28.859322809000048 ], [ -81.968959837999989, 28.859372577000045 ], [ -81.968986621999989, 28.859406832000047 ], [ -81.96903124399995, 28.859447451000051 ], [ -81.969075035999936, 28.859472727000025 ], [ -81.969141094999941, 28.859493597000039 ], [ -81.96922570199996, 28.859503930000074 ], [ -81.969358471999954, 28.859516566000025 ], [ -81.969534199999941, 28.859522237000078 ], [ -81.969733523999935, 28.859530842000026 ], [ -81.969950740999934, 28.859536180000077 ], [ -81.970209782999973, 28.859528216000058 ], [ -81.970377193, 28.859515153000075 ], [ -81.970502672999942, 28.85950536100006 ], [ -81.970587805999969, 28.859495160000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969920434999949, 28.857234580000068 ], [ -81.969813766999948, 28.857237652000038 ], [ -81.969698124999979, 28.857236130000047 ], [ -81.969556975999978, 28.857231606000028 ], [ -81.969398815999966, 28.857236062000027 ], [ -81.969329086999949, 28.857248022000078 ], [ -81.969266156999936, 28.857273460000044 ], [ -81.969213421999939, 28.857322854000074 ], [ -81.969179393, 28.857379737000031 ], [ -81.969099409999956, 28.857562371000029 ], [ -81.96904834999998, 28.857701595000037 ], [ -81.968997281999975, 28.857864772000028 ], [ -81.96895471199997, 28.858047414000055 ], [ -81.968930855999986, 28.858207603000039 ], [ -81.968896765999943, 28.858468099000049 ], [ -81.968898342999978, 28.85870991400003 ], [ -81.968913266999948, 28.858835219000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970549629999937, 28.858184643000072 ], [ -81.970557278999934, 28.858147737000024 ], [ -81.970578820999947, 28.858046282000032 ], [ -81.970606067999938, 28.857914538000045 ], [ -81.970635021999954, 28.857763332000047 ], [ -81.970652058999974, 28.857652547000043 ], [ -81.970657183999947, 28.857570205000059 ], [ -81.970658911999976, 28.857475885000042 ], [ -81.970647025999938, 28.857408510000027 ], [ -81.970635938999976, 28.857371295000064 ], [ -81.970618134999938, 28.857338139000035 ], [ -81.970588127999974, 28.857302230000073 ], [ -81.970555227999967, 28.857276742000067 ], [ -81.970507786999974, 28.857253367000055 ], [ -81.970451499999967, 28.857242285000041 ], [ -81.970301846999973, 28.857237761000079 ], [ -81.970133486999941, 28.857234729000027 ], [ -81.969968525999946, 28.857233195000049 ], [ -81.969920434999949, 28.857234580000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970382958999949, 28.851167028000077 ], [ -81.97040637899994, 28.851199119000057 ], [ -81.970449324999947, 28.851224339000055 ], [ -81.970514396999988, 28.851251856000033 ], [ -81.970651054999962, 28.851290083000038 ], [ -81.970776866999984, 28.851322579000055 ], [ -81.970904847999975, 28.851358894000043 ], [ -81.97103065999994, 28.851391389000071 ], [ -81.971171655999967, 28.851431527000045 ], [ -81.971305928999982, 28.851467462000073 ], [ -81.971438577999947, 28.85149920300006 ], [ -81.971567316999938, 28.851526723000063 ], [ -81.971705123999982, 28.851544175000072 ], [ -81.971851792999985, 28.851552066000067 ], [ -81.971972954999956, 28.851554336000049 ], [ -81.972083612999938, 28.85155452500004 ], [ -81.972168218999968, 28.851549767000051 ], [ -81.972219199999984, 28.85154213900006 ], [ -81.972248139999977, 28.851529288000052 ], [ -81.972272357999941, 28.851514457000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972272357999941, 28.851514457000064 ], [ -81.972320077999939, 28.851525926000079 ], [ -81.972372162999989, 28.85152634700006 ], [ -81.972458890999974, 28.851517381000065 ], [ -81.972563478999973, 28.851502807000031 ], [ -81.972654034999948, 28.851491596000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972010071999989, 28.850291011000024 ], [ -81.972073705999946, 28.850297427000044 ], [ -81.972223701999951, 28.850305462000051 ], [ -81.972389153999984, 28.85030869700006 ], [ -81.972660107999957, 28.850315902000034 ], [ -81.972739150999985, 28.850315972000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968286654999986, 28.852368285000068 ], [ -81.968407777999971, 28.852234220000071 ], [ -81.968498088, 28.85215081900003 ], [ -81.968613599999969, 28.85204712500007 ], [ -81.968739471999982, 28.851937862000057 ], [ -81.968850042999975, 28.851818115000071 ], [ -81.96896099199995, 28.851686059000031 ], [ -81.96909293899995, 28.851514963000056 ], [ -81.96924334199997, 28.851269443000035 ], [ -81.969271976999948, 28.851216976000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967694054999981, 28.85221868900004 ], [ -81.967707204999954, 28.852073859000029 ], [ -81.967739545999962, 28.851973557000065 ], [ -81.967793990999951, 28.851883742000041 ], [ -81.967865436999944, 28.851808901000027 ], [ -81.967958989999943, 28.851728078000065 ], [ -81.968057647999956, 28.85163976900003 ], [ -81.968163107999942, 28.851549965000061 ], [ -81.968285585, 28.851424234000035 ], [ -81.968370639999989, 28.851329933000045 ], [ -81.968462504999934, 28.851210183000035 ], [ -81.968635125999981, 28.850922791000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968635125999981, 28.850922791000073 ], [ -81.968757996999955, 28.850704625000049 ], [ -81.968811828999947, 28.850599211000031 ], [ -81.96887781199996, 28.85047699200004 ], [ -81.968954215999986, 28.850333387000035 ], [ -81.969030616999987, 28.85019436500005 ], [ -81.969108755999969, 28.85004770300003 ], [ -81.969244198999945, 28.849780349000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966973585999938, 28.852181343000041 ], [ -81.966982792999943, 28.852010803000042 ], [ -81.967008330999988, 28.851920981000035 ], [ -81.967059393999989, 28.851768284000059 ], [ -81.967120654999974, 28.85164104100005 ], [ -81.967172656999935, 28.851557608000064 ], [ -81.96722953699998, 28.851486861000069 ], [ -81.96731459199998, 28.851397053000028 ], [ -81.967406447999963, 28.851307246000033 ], [ -81.967522111999983, 28.851211457000034 ], [ -81.967630978999978, 28.851109677000068 ], [ -81.967731337999965, 28.851015380000035 ], [ -81.96782490399994, 28.850897128000042 ], [ -81.967896767999946, 28.850794650000068 ], [ -81.967980596999951, 28.850648643000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967980596999951, 28.850648643000056 ], [ -81.968010048999986, 28.850597496000034 ], [ -81.968089923999969, 28.850447779000035 ], [ -81.968147224999939, 28.850345422000032 ], [ -81.968206266999971, 28.850232371000061 ], [ -81.968275723999966, 28.850099458000045 ], [ -81.968362544999934, 28.849940576000051 ], [ -81.968450311999959, 28.84977925000004 ], [ -81.968534443999943, 28.849642674000052 ], [ -81.968579578999936, 28.849593790000029 ], [ -81.968657069999949, 28.849532263000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966973585999938, 28.852181343000041 ], [ -81.966816089999952, 28.852171956000063 ], [ -81.966657379999958, 28.852151955000068 ], [ -81.96648053399997, 28.852117975000056 ], [ -81.966422546999979, 28.852096536000033 ], [ -81.96637472499998, 28.852070011000023 ], [ -81.966308246999972, 28.852012134000063 ], [ -81.966267454, 28.851950241000054 ], [ -81.966247070999941, 28.851874380000027 ], [ -81.966251629999988, 28.851800522000076 ], [ -81.966276595999943, 28.851728666000042 ], [ -81.966333314999986, 28.851618889000065 ], [ -81.966387765999968, 28.851515100000029 ], [ -81.966460363999943, 28.851381372000048 ], [ -81.966532957999959, 28.851259623000033 ], [ -81.966632767999954, 28.851117917000067 ], [ -81.966737104999936, 28.851000168000041 ], [ -81.966839164999953, 28.850906371000065 ], [ -81.966948030999959, 28.850806588000069 ], [ -81.967061430999934, 28.850704809000035 ], [ -81.96714308199995, 28.850620989000049 ], [ -81.967207177999967, 28.850535332000049 ], [ -81.967242662, 28.85048520600003 ], [ -81.967277998999975, 28.850432492000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967277998999975, 28.850432492000039 ], [ -81.967310699999985, 28.850391256000023 ], [ -81.967385385999989, 28.850270372000068 ], [ -81.967460051999979, 28.850138990000062 ], [ -81.96757118499994, 28.849929692000046 ], [ -81.967635433999988, 28.849807475000034 ], [ -81.967691007999974, 28.849680671000044 ], [ -81.967718805999937, 28.849576779000074 ], [ -81.967737933999956, 28.849457607000033 ], [ -81.967739497999958, 28.849343823000027 ], [ -81.967739518999963, 28.849276451000037 ], [ -81.967731743999934, 28.849202177000052 ], [ -81.967711380999958, 28.84906643100004 ], [ -81.967682238999942, 28.848912630000029 ], [ -81.967665247999946, 28.848802115000069 ], [ -81.967658225999969, 28.848730330000024 ], [ -81.967647943999964, 28.84864015200003 ], [ -81.967644504999953, 28.848537781000061 ], [ -81.967648021999935, 28.848384990000056 ], [ -81.967653292999955, 28.848175667000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963420559999975, 28.850854129000027 ], [ -81.96365336599996, 28.850937600000066 ], [ -81.963741862999939, 28.850972002000049 ], [ -81.963847278999935, 28.851008700000079 ], [ -81.963968314999988, 28.851044256000023 ], [ -81.964106271999981, 28.851080963000072 ], [ -81.964276771999948, 28.851108511000064 ], [ -81.964430353999944, 28.851129178000065 ], [ -81.964594348999981, 28.851149848000034 ], [ -81.964770055999963, 28.851175104000049 ], [ -81.964943159999962, 28.85120265200004 ], [ -81.965006934999963, 28.85121298200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965006934999963, 28.85121298200005 ], [ -81.965133617999982, 28.851228675000073 ], [ -81.965261167999984, 28.851247808000039 ], [ -81.965389587999937, 28.851265411000043 ], [ -81.965516270999956, 28.851282251000043 ], [ -81.965566600999978, 28.851282264000076 ], [ -81.965610134999963, 28.851275360000045 ], [ -81.965656850999949, 28.851262424000026 ], [ -81.96571413099997, 28.851230353000062 ], [ -81.96575951899996, 28.851191971000048 ], [ -81.965796595999961, 28.851139462000049 ], [ -81.965840875999959, 28.851060787000051 ], [ -81.965898176999985, 28.85096836200006 ], [ -81.966009300999985, 28.850804140000037 ], [ -81.966169026999978, 28.85060631500005 ], [ -81.966333704999954, 28.850407196000049 ], [ -81.966578016999961, 28.850112799000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966578016999961, 28.850112799000044 ], [ -81.966755751999983, 28.849897025000075 ], [ -81.966837254999973, 28.849782510000068 ], [ -81.966891701999941, 28.84968271300005 ], [ -81.966942332999963, 28.849563491000026 ], [ -81.966971951999938, 28.849461624000071 ], [ -81.966991511999936, 28.849345888000073 ], [ -81.966994151999984, 28.849229004000051 ], [ -81.966985072999989, 28.849129306000066 ], [ -81.966970789999948, 28.849020438000025 ], [ -81.96695780899995, 28.848909279000054 ], [ -81.966941579999968, 28.848782076000077 ], [ -81.966923775999987, 28.848638708000067 ], [ -81.966898316999959, 28.848397032000037 ], [ -81.966877518, 28.848316047000026 ], [ -81.966860613999984, 28.848265049000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964075421999951, 28.850287061000074 ], [ -81.964306961999966, 28.850367099000039 ], [ -81.964441013999988, 28.850402659000054 ], [ -81.96459198499997, 28.850441660000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96459198499997, 28.850441660000058 ], [ -81.964658358999941, 28.850462304000075 ], [ -81.964822344999959, 28.850505892000058 ], [ -81.964992839, 28.850550628000065 ], [ -81.965149013999962, 28.850597652000033 ], [ -81.965273949999983, 28.85064925100005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96459198499997, 28.850441660000058 ], [ -81.96463788899996, 28.850333440000043 ], [ -81.964671781999982, 28.850275021000073 ], [ -81.964745662999974, 28.850173551000069 ], [ -81.964836813999966, 28.850054398000054 ], [ -81.964917544999935, 28.849955868000052 ], [ -81.965011297, 28.849845883000057 ], [ -81.965108954999948, 28.849727876000031 ], [ -81.96522093699997, 28.84958924700004 ], [ -81.965329584999949, 28.849452758000041 ], [ -81.965398024999956, 28.849369274000026 ], [ -81.965460526999948, 28.849292511000044 ], [ -81.965507398999989, 28.849246686000072 ], [ -81.965552964999972, 28.849212320000049 ], [ -81.965597743999979, 28.84919766400003 ], [ -81.965642781999975, 28.849187132000054 ], [ -81.965700051999988, 28.849183709000044 ], [ -81.965811984999959, 28.849192905000052 ], [ -81.965910903999941, 28.849191784000027 ], [ -81.965986398999974, 28.849186073000055 ], [ -81.966110052999966, 28.849172353000029 ], [ -81.966206371999988, 28.849164356000074 ], [ -81.966267546999973, 28.849159787000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96326702999994, 28.852850613000044 ], [ -81.96334834399994, 28.852869603000045 ], [ -81.963571771999966, 28.852919321000059 ], [ -81.963724699999943, 28.85295469600004 ], [ -81.963863343999947, 28.852982365000059 ], [ -81.963984819999951, 28.853007608000041 ], [ -81.964124458999947, 28.853032721000034 ], [ -81.964251598999965, 28.853056878000075 ], [ -81.964370040999938, 28.853075244000024 ], [ -81.964491087999988, 28.853090173000055 ], [ -81.964619941999956, 28.85310854200003 ], [ -81.964751957999965, 28.853125455000054 ], [ -81.964897913999948, 28.853146206000076 ], [ -81.965054663999979, 28.853167098000029 ], [ -81.965201740999987, 28.853186616000073 ], [ -81.965436023999985, 28.853214179000076 ], [ -81.965520444999981, 28.85322876400005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961667731999967, 28.852577401000076 ], [ -81.961690500999964, 28.852607392000039 ], [ -81.961725741999942, 28.852633185000059 ], [ -81.961762614999941, 28.852651340000079 ], [ -81.961830942999939, 28.852670554000042 ], [ -81.961918793999985, 28.852692543000046 ], [ -81.962080398999944, 28.852728876000072 ], [ -81.962240918999953, 28.852766164000059 ], [ -81.962322262999976, 28.852784331000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962322262999976, 28.852784331000066 ], [ -81.962435060999951, 28.852813011000023 ], [ -81.962535927999966, 28.852835958000071 ], [ -81.962641136999935, 28.852851265000027 ], [ -81.962753942999939, 28.852852252000048 ], [ -81.962884106999979, 28.852845603000048 ], [ -81.962998001999949, 28.852837039000065 ], [ -81.963106470999946, 28.852837069000032 ], [ -81.963176974999953, 28.852839953000057 ], [ -81.96326702999994, 28.852850613000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96609190099997, 28.85611678500004 ], [ -81.966206457999988, 28.855804043000035 ], [ -81.966254121999953, 28.855658830000039 ], [ -81.966253652999967, 28.855611440000075 ], [ -81.966237131999947, 28.855567766000036 ], [ -81.966208247999987, 28.855525573000079 ], [ -81.966168656999969, 28.855488728000068 ], [ -81.966128512999944, 28.855459604000032 ], [ -81.966073932999961, 28.855429722000054 ], [ -81.965982112999939, 28.855392270000038 ], [ -81.96587158899996, 28.855345830000033 ], [ -81.965778972999942, 28.855303553000056 ], [ -81.965669248999973, 28.855252955000026 ], [ -81.965546821999965, 28.855208011000059 ], [ -81.965403865999974, 28.855173527000034 ], [ -81.965285858999948, 28.855147523000028 ], [ -81.965216442999974, 28.855126115000076 ], [ -81.965176534999955, 28.855103186000065 ], [ -81.965130227999964, 28.855055193000055 ], [ -81.965103672999987, 28.855014547000053 ], [ -81.965093273999969, 28.854970236000042 ], [ -81.965091554999958, 28.854916758000059 ], [ -81.965103720999934, 28.854870924000068 ], [ -81.96511762199998, 28.854815923000046 ], [ -81.965138470999989, 28.854745644000047 ], [ -81.965185380999969, 28.85459439300007 ], [ -81.965219261999948, 28.854477325000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963167082999973, 28.853410594000025 ], [ -81.963207157999989, 28.853459660000055 ], [ -81.963245327999971, 28.853487173000076 ], [ -81.963290443999938, 28.85351163100006 ], [ -81.963333825999939, 28.853526159000069 ], [ -81.963534261999939, 28.85357052300003 ], [ -81.963728623999941, 28.853611065000052 ], [ -81.963907368999969, 28.853647018000061 ], [ -81.964065288999961, 28.853679911000029 ], [ -81.964227550999965, 28.853702872000042 ], [ -81.964390681999987, 28.853725834000045 ], [ -81.96458071099994, 28.853752623000048 ], [ -81.964807184999984, 28.853781713000046 ], [ -81.965081382999983, 28.853817689000039 ], [ -81.965396817999988, 28.853859276000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962322262999976, 28.852784331000066 ], [ -81.962347223999984, 28.85274804900007 ], [ -81.962393887999951, 28.852685992000033 ], [ -81.962445976999959, 28.852617250000037 ], [ -81.96255774499997, 28.852491228000076 ], [ -81.962694462999934, 28.852354709000053 ], [ -81.962849619999986, 28.852222970000071 ], [ -81.963004773999955, 28.852093139000033 ], [ -81.963118699999939, 28.851996721000035 ], [ -81.963251067999977, 28.851886938000064 ], [ -81.963366078999968, 28.851786700000048 ], [ -81.963431179999986, 28.851727512000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963431179999986, 28.851727512000025 ], [ -81.963529914999981, 28.851641593000068 ], [ -81.963676385999975, 28.851526084000056 ], [ -81.963853240999981, 28.851369520000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961453401999961, 28.852867260000039 ], [ -81.96150354599996, 28.852781330000028 ], [ -81.961549852999951, 28.852704248000066 ], [ -81.961614105999956, 28.852597312000057 ], [ -81.961631464999982, 28.852587386000039 ], [ -81.961667731999967, 28.852577401000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961667731999967, 28.852577401000076 ], [ -81.961662969999963, 28.852550374000032 ], [ -81.961663844999975, 28.852533472000061 ], [ -81.961674807999941, 28.852509506000047 ], [ -81.961717576999945, 28.852452548000031 ], [ -81.961771391999946, 28.852381189000027 ], [ -81.961844096999982, 28.852292399000078 ], [ -81.961937420999959, 28.85218165200007 ], [ -81.962051355999961, 28.85205849700003 ], [ -81.962137076999966, 28.851971620000029 ], [ -81.962256431999947, 28.851857061000032 ], [ -81.962411586999963, 28.851731050000069 ], [ -81.962560231999987, 28.851601220000077 ], [ -81.962695856999972, 28.85148857400003 ], [ -81.962797845999944, 28.851408387000049 ], [ -81.962832559999981, 28.851390252000044 ], [ -81.962869440999953, 28.851385488000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965219261999948, 28.854477325000062 ], [ -81.965461352999966, 28.854524370000036 ], [ -81.965640965999967, 28.854564524000068 ], [ -81.965815369999973, 28.85461728100006 ], [ -81.965963619999968, 28.854669771000033 ], [ -81.966101693999974, 28.854729655000028 ], [ -81.966268280999941, 28.854803037000067 ], [ -81.966427057999965, 28.85487756200007 ], [ -81.966576139999972, 28.854944605000071 ], [ -81.966714679999939, 28.855007124000053 ], [ -81.967001005999975, 28.855127517000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96480739499998, 28.861113651000039 ], [ -81.964840286999959, 28.860847783000054 ], [ -81.964849007999987, 28.860724024000035 ], [ -81.964857724999945, 28.860606377000067 ], [ -81.964875133999954, 28.860452062000036 ], [ -81.964883854999982, 28.860322193000059 ], [ -81.964882166999985, 28.860180097000068 ], [ -81.964869195999938, 28.860041054000078 ], [ -81.964845809999986, 28.859908120000057 ], [ -81.964816348999989, 28.859778239000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971939420999945, 28.860100985000031 ], [ -81.971893353999974, 28.859974636000061 ], [ -81.971783990999938, 28.859700888000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977318127999979, 28.863081393000073 ], [ -81.97727899299997, 28.862854645000027 ], [ -81.977272505999963, 28.862754375000065 ], [ -81.977266025999938, 28.862622591000047 ], [ -81.977269305999982, 28.862507998000069 ], [ -81.977292117, 28.862367625000047 ], [ -81.977313955999989, 28.862227877000066 ], [ -81.977344667999944, 28.862090757000033 ], [ -81.977370659999963, 28.861949483000046 ], [ -81.977408459999936, 28.861772890000054 ], [ -81.977439166999943, 28.861648237000054 ], [ -81.977460436999934, 28.861515272000076 ], [ -81.977469910999957, 28.861357374000079 ], [ -81.977477032999957, 28.861168310000039 ], [ -81.97747753799996, 28.861126806000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97747753799996, 28.861126806000073 ], [ -81.977479434999964, 28.860970935000068 ], [ -81.977479458999937, 28.860856665000028 ], [ -81.977493651999964, 28.860709155000052 ], [ -81.977522003999979, 28.860569958000042 ], [ -81.977567613999952, 28.860318309000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978419316999975, 28.862953623000067 ], [ -81.978356990999941, 28.862706167000056 ], [ -81.978340334999984, 28.862603850000028 ], [ -81.978321298999958, 28.862465842000063 ], [ -81.978314160999957, 28.862339730000031 ], [ -81.978314160999957, 28.862189824000041 ], [ -81.978323678999971, 28.862054195000042 ], [ -81.978337955999962, 28.861894771000038 ], [ -81.978373646999955, 28.861723450000056 ], [ -81.97840457999996, 28.861523575000035 ], [ -81.978441968999959, 28.861259505000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979579781999973, 28.862924644000032 ], [ -81.979508267999961, 28.862674518000063 ], [ -81.979477912999982, 28.86257901700003 ], [ -81.979441053999949, 28.862452959000052 ], [ -81.979397923999954, 28.862313394000068 ], [ -81.979360830999951, 28.862197022000032 ], [ -81.979327168999987, 28.862066145000028 ], [ -81.979305953999983, 28.861941484000056 ], [ -81.979298895999989, 28.861823057000038 ], [ -81.979296568999985, 28.86165892300005 ], [ -81.979335753999976, 28.861396594000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980683605999957, 28.863147253000079 ], [ -81.980687917999944, 28.862972156000069 ], [ -81.980677632999971, 28.86285994900004 ], [ -81.980658130999984, 28.862733415000037 ], [ -81.980617480999967, 28.862568683000063 ], [ -81.980571405999967, 28.86241827200007 ], [ -81.980514478999964, 28.862286959000073 ], [ -81.980468397999971, 28.862169972000061 ], [ -81.980416895999952, 28.862036272000068 ], [ -81.980365391999953, 28.861909734000051 ], [ -81.980325558999937, 28.861748416000069 ], [ -81.980313792999937, 28.861559349000061 ], [ -81.980311515999972, 28.861505661000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980311515999972, 28.861505661000024 ], [ -81.980306743999961, 28.861393138000039 ], [ -81.980297331999964, 28.861243546000026 ], [ -81.980290281999942, 28.861079412000038 ], [ -81.98028394499994, 28.860919702000047 ], [ -81.980279174999964, 28.860867812000038 ], [ -81.980266730999972, 28.860817626000028 ], [ -81.980232994999938, 28.860769638000079 ], [ -81.980184144999953, 28.860730353000065 ], [ -81.980105565999963, 28.860693888000071 ], [ -81.980000068999971, 28.860674230000029 ], [ -81.979806545999963, 28.860649270000067 ], [ -81.979509183999937, 28.860607672000071 ], [ -81.97924014299997, 28.860566078000033 ], [ -81.978971101999946, 28.86052240600003 ], [ -81.97871386099996, 28.860484968000037 ], [ -81.978418861999955, 28.860441291000029 ], [ -81.97811441999994, 28.860395534000077 ], [ -81.977833579999981, 28.860351857000069 ], [ -81.977668103999974, 28.860331150000036 ], [ -81.977567613999952, 28.860318309000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97747753799996, 28.861126806000073 ], [ -81.97759420899996, 28.861130948000039 ], [ -81.977746087999947, 28.861147578000043 ], [ -81.977970288999984, 28.861185012000078 ], [ -81.978155747999949, 28.861213548000023 ], [ -81.978317211999979, 28.861239087000058 ], [ -81.978441968999959, 28.861259505000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978441968999959, 28.861259505000078 ], [ -81.978482412999938, 28.861266123000064 ], [ -81.978661774999978, 28.861291083000026 ], [ -81.978810456999952, 28.861313960000075 ], [ -81.978996897999934, 28.861345155000038 ], [ -81.979166820999978, 28.861368034000066 ], [ -81.979324941999948, 28.861395068000036 ], [ -81.979335753999976, 28.861396594000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979335753999976, 28.861396594000041 ], [ -81.979501944999981, 28.861420027000065 ], [ -81.979641184999934, 28.861442901000032 ], [ -81.979808749999961, 28.861465781000049 ], [ -81.979997551999986, 28.861490741000068 ], [ -81.980119747999936, 28.861508688000072 ], [ -81.980194619999963, 28.86151290600003 ], [ -81.980311515999972, 28.861505661000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968913266999948, 28.858835219000071 ], [ -81.968994628999951, 28.858839809000074 ], [ -81.96908661599997, 28.858842122000055 ], [ -81.96921894999997, 28.858857813000043 ], [ -81.969531348999965, 28.858882331000075 ], [ -81.969684079, 28.858891533000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969684079, 28.858891533000076 ], [ -81.969850694999934, 28.858894625000062 ], [ -81.970055496999976, 28.858893144000035 ], [ -81.970216908999987, 28.858885539000028 ], [ -81.970390471999963, 28.858871826000041 ], [ -81.970501552999963, 28.858861156000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961248355999942, 28.85326552600003 ], [ -81.96155848099994, 28.853316340000049 ], [ -81.961682560999975, 28.853339294000079 ], [ -81.961844819999953, 28.853369898000039 ], [ -81.961978443999953, 28.853395146000025 ], [ -81.96208864099998, 28.853415805000054 ], [ -81.962234415999944, 28.853435708000063 ], [ -81.962348085999963, 28.853447964000054 ], [ -81.962471128999937, 28.853460823000034 ], [ -81.962619508999978, 28.853475380000077 ], [ -81.962799126999982, 28.853493 ], [ -81.962888505999956, 28.853493790000073 ], [ -81.96297528499997, 28.85348235400005 ], [ -81.963040371999966, 28.85346480100003 ], [ -81.963115009999967, 28.853435790000049 ], [ -81.963167082999973, 28.853410594000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992709696999952, 28.64969386000007 ], [ -81.992611641999986, 28.649897345000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120969345999981, 28.710415216000058 ], [ -82.121020846999954, 28.71038393300006 ], [ -82.121061868999959, 28.710344851000059 ], [ -82.12110609299998, 28.710288017000039 ], [ -82.121210991999988, 28.710115674000065 ], [ -82.121387625999944, 28.709729338000045 ], [ -82.121728523999934, 28.70900871300006 ], [ -82.122304994999979, 28.70783870200006 ], [ -82.122785411999985, 28.706893363000063 ], [ -82.123231762999978, 28.706046651000065 ], [ -82.123594419999961, 28.705358867000029 ], [ -82.123711842999967, 28.705128743000046 ], [ -82.123854348999942, 28.704855 ], [ -82.12398104, 28.704627908000077 ], [ -82.12417405399998, 28.70427101100006 ], [ -82.124824950999937, 28.703037928000072 ], [ -82.125320896999938, 28.702125430000024 ], [ -82.125637025999936, 28.701519850000068 ], [ -82.125841544999957, 28.701097875000073 ], [ -82.126126694999982, 28.70056627200006 ], [ -82.126501702999974, 28.699760876000028 ], [ -82.126608880999981, 28.699557941000023 ], [ -82.126802229999953, 28.699193474000026 ], [ -82.126991311999973, 28.698859155000036 ], [ -82.127099772999941, 28.698642684000049 ], [ -82.127245457999948, 28.698385095000049 ], [ -82.127388052999947, 28.698141201000055 ], [ -82.127481038999974, 28.697974043000045 ], [ -82.127536832999965, 28.697875393000061 ], [ -82.127608117999955, 28.69774386000006 ], [ -82.127722787999971, 28.697527382000033 ], [ -82.127818839999975, 28.697327355000027 ], [ -82.127942780999945, 28.697072524000077 ], [ -82.128082214999949, 28.696787551000057 ], [ -82.128274362999946, 28.696425839000028 ], [ -82.128469607999989, 28.696058647000029 ], [ -82.128754707999974, 28.695507865000025 ], [ -82.128887994999957, 28.695277675000057 ], [ -82.129042887999958, 28.694937909000032 ], [ -82.129225693999956, 28.694562511000072 ], [ -82.129448853999975, 28.694167901000071 ], [ -82.12965647599998, 28.693767829000024 ], [ -82.129839350999987, 28.693452685000068 ], [ -82.129972590999955, 28.693189627000038 ], [ -82.130127572999982, 28.69292654700007 ], [ -82.130217450999965, 28.69276486800004 ], [ -82.130283067999983, 28.692642598000077 ], [ -82.130356908999943, 28.692507281000076 ], [ -82.130462259999945, 28.692299026000057 ], [ -82.130595475999939, 28.692019534000053 ], [ -82.13077832099998, 28.691685216000053 ], [ -82.130821662999949, 28.691570142000046 ], [ -82.131280300999947, 28.690715174000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065622555999937, 28.748022357000025 ], [ -82.065622557999973, 28.748022243000037 ], [ -82.065634950999936, 28.747375643000055 ], [ -82.065642237999953, 28.746551177000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065642237999953, 28.746551177000072 ], [ -82.065647102999947, 28.74602094200003 ], [ -82.065646517999937, 28.745084399000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066736532999983, 28.746556909000049 ], [ -82.066052532999947, 28.746547917000044 ], [ -82.065642237999953, 28.746551177000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060340064999934, 28.753310993000071 ], [ -82.060286472999962, 28.753301178000072 ], [ -82.060191944999985, 28.753282857000045 ], [ -82.060037125999941, 28.753253412000049 ], [ -82.059903891999966, 28.753226582000025 ], [ -82.059816803999979, 28.753205632000061 ], [ -82.059760231999974, 28.753185982000048 ], [ -82.059734249999963, 28.753177580000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060340064999934, 28.753310993000071 ], [ -82.06037076399997, 28.753207279000037 ], [ -82.060443689999943, 28.752982348000046 ], [ -82.060573055999953, 28.752660785000046 ], [ -82.060674542999948, 28.752451800000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060349935999966, 28.755099468000026 ], [ -82.060275231999981, 28.75476074900007 ], [ -82.06025912299998, 28.754635719000078 ], [ -82.060239208999974, 28.754448715000024 ], [ -82.060230609999962, 28.754256719000068 ], [ -82.060233386999982, 28.754061294000053 ], [ -82.060249462999934, 28.753866705000064 ], [ -82.060266793999972, 28.753674819000025 ], [ -82.060305769999957, 28.753476323000029 ], [ -82.060340064999934, 28.753310993000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060744459999967, 28.756484449000027 ], [ -82.060677536999947, 28.756246478000037 ], [ -82.060580755999979, 28.755913056000054 ], [ -82.060481320999941, 28.755563312000049 ], [ -82.060349935999966, 28.755099468000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060744459999967, 28.756484449000027 ], [ -82.060497730999941, 28.756489079000062 ], [ -82.059829721999961, 28.756502567000041 ], [ -82.058436314999938, 28.756529628000067 ], [ -82.057409369999959, 28.75654662900007 ], [ -82.055198607999955, 28.756588032000025 ], [ -82.054084609999961, 28.75660619100006 ], [ -82.053964725999947, 28.756605017000027 ], [ -82.053788033999979, 28.756599718000075 ], [ -82.053529084, 28.756589084000041 ], [ -82.05330059299996, 28.756567699000072 ], [ -82.053075146999959, 28.756540941000026 ], [ -82.052831412999979, 28.756498084000043 ], [ -82.052575489999981, 28.75644449400005 ], [ -82.052189717999966, 28.756353792000027 ], [ -82.051524103999952, 28.75619198000004 ], [ -82.051164169999936, 28.756107 ], [ -82.051026552999986, 28.756081402000063 ], [ -82.050888935999978, 28.756055803000038 ], [ -82.050736763999964, 28.756031375000077 ], [ -82.050615027999982, 28.756015097000045 ], [ -82.050468154999976, 28.755998829000077 ], [ -82.050335836999977, 28.755989549000049 ], [ -82.050130748999948, 28.755981464000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050130748999948, 28.755981464000058 ], [ -82.050090887999943, 28.757944381000073 ], [ -82.050033357999951, 28.760199483000065 ], [ -82.049823080999943, 28.765076708000038 ], [ -82.049584000999971, 28.765928989000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050130748999948, 28.755981464000058 ], [ -82.04987670099996, 28.755966401000023 ], [ -82.049561796999967, 28.755965351000043 ], [ -82.04917941399998, 28.755963158000043 ], [ -82.045618101999935, 28.755958109000062 ], [ -82.044016878999969, 28.755950904000031 ], [ -82.042420924999988, 28.755951414000037 ], [ -82.038988481999979, 28.75594626000003 ], [ -82.038170313999956, 28.755944946000056 ], [ -82.036332067999979, 28.755937717000052 ], [ -82.034111031999942, 28.755925175000073 ], [ -82.029853178999986, 28.755907451000041 ], [ -82.028490689999956, 28.755904247000046 ], [ -82.028144192999946, 28.755903767000063 ], [ -82.027375021999944, 28.75591307600007 ], [ -82.026925159999962, 28.755914721000067 ], [ -82.026163038999982, 28.755911762000039 ], [ -82.025418558999945, 28.755908795000039 ], [ -82.025137589999986, 28.755901187000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020536054, 28.755865367000069 ], [ -82.020532566999975, 28.756125218000079 ], [ -82.020537125999965, 28.759009037000055 ], [ -82.02054755599994, 28.761497220000024 ], [ -82.020587434999982, 28.762049170000068 ], [ -82.02059746499998, 28.762495991000037 ], [ -82.020547830999988, 28.762899014000027 ], [ -82.020571594999979, 28.76383424200003 ], [ -82.02060774399996, 28.764204426000049 ], [ -82.020607875999985, 28.76487903900005 ], [ -82.020558494999989, 28.76657872100003 ], [ -82.020628188999979, 28.767043054000055 ], [ -82.020548822999956, 28.767962994000072 ], [ -82.020499205999954, 28.768471151000028 ], [ -82.02043963899996, 28.768953027000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013544994999961, 28.75586712300003 ], [ -82.013541631999942, 28.756691388000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018506311999943, 28.755575366000073 ], [ -82.018226936999952, 28.755730624000023 ], [ -82.017924696999955, 28.75583640800005 ], [ -82.016682782999965, 28.755856278000067 ], [ -82.015829366999981, 28.755853758000057 ], [ -82.01528060399994, 28.755864314000064 ], [ -82.014756645999967, 28.755866997000055 ], [ -82.014038189999951, 28.755868821000035 ], [ -82.013544994999961, 28.75586712300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013544994999961, 28.75586712300003 ], [ -82.01309744699995, 28.75586454300003 ], [ -82.012099148999937, 28.755848896000032 ], [ -82.011038332999988, 28.755842866000023 ], [ -82.008351065999989, 28.755838686000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008351065999989, 28.755838686000061 ], [ -82.008345532999954, 28.757138438000027 ], [ -82.008343440999965, 28.758214931000055 ], [ -82.008329709999941, 28.759571576000042 ], [ -82.008319599999936, 28.759621475000074 ], [ -82.008289115999958, 28.759654096000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012290486999973, 28.927231990000053 ], [ -82.012287077999986, 28.926108519000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010028887999965, 28.926094351000074 ], [ -82.010267318, 28.926095222000072 ], [ -82.010877539999967, 28.926098729000046 ], [ -82.011378910999952, 28.92610393800004 ], [ -82.011666478999985, 28.926104163000048 ], [ -82.012287077999986, 28.926108519000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012287077999986, 28.926108519000024 ], [ -82.01314829599994, 28.926113730000054 ], [ -82.013637555999935, 28.92611544500005 ], [ -82.014230084999951, 28.926120676000039 ], [ -82.014354404999949, 28.926121545000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014353598999946, 28.927239487000065 ], [ -82.014354404999949, 28.926121545000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014354404999949, 28.926121545000058 ], [ -82.014448647999984, 28.92612153500005 ], [ -82.015068242999973, 28.926125877000061 ], [ -82.015424160999942, 28.92612848400006 ], [ -82.015529774999948, 28.926135587000033 ], [ -82.015626685999962, 28.926147865000075 ], [ -82.01572393899994, 28.926169022000067 ], [ -82.015832223999951, 28.926201645000049 ], [ -82.01592145799998, 28.926238679000051 ], [ -82.016075867999973, 28.926315398000042 ], [ -82.016196219999983, 28.926390377000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017195877999939, 28.922310469000024 ], [ -82.017206139999985, 28.922086369000056 ], [ -82.017181568999945, 28.921859724000058 ], [ -82.017157679999968, 28.921717999000066 ], [ -82.017136550999965, 28.921640276000062 ], [ -82.017103511999949, 28.921532780000064 ], [ -82.017071094999949, 28.92145320700007 ], [ -82.017033307999952, 28.921365201000071 ], [ -82.016972922999969, 28.921244558000069 ], [ -82.016935027999978, 28.921178222000037 ], [ -82.016889901999946, 28.921103255000048 ], [ -82.01681068299996, 28.920987718000049 ], [ -82.016663279999989, 28.920798098000034 ], [ -82.016490816999976, 28.920618185000023 ], [ -82.016341416999978, 28.920480606000069 ], [ -82.016221428999984, 28.920386421000046 ], [ -82.016091758999949, 28.920292763000077 ], [ -82.01594036299997, 28.920191346000024 ], [ -82.015807013999961, 28.920109333000028 ], [ -82.015681687999972, 28.920036138000057 ], [ -82.015559370999938, 28.919973528000071 ], [ -82.015398954999966, 28.919895926000038 ], [ -82.015205456, 28.919812156000035 ], [ -82.015137279999976, 28.919779528000049 ], [ -82.015037020999955, 28.919725735000043 ], [ -82.014885624999977, 28.919628727000031 ], [ -82.014766313999985, 28.919538773000056 ], [ -82.014637972999935, 28.91941883100003 ], [ -82.014535335999938, 28.91930596900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014535335999938, 28.91930596900005 ], [ -82.014462945999981, 28.919201097000041 ], [ -82.014405459999978, 28.919114950000051 ], [ -82.014339452999934, 28.918995093000035 ], [ -82.01428409, 28.918865871000037 ], [ -82.014218077999942, 28.918693575000077 ], [ -82.014139288999957, 28.918487567000057 ], [ -82.01409031299994, 28.918365837000067 ], [ -82.014045326999963, 28.918247550000046 ], [ -82.013994182999966, 28.918121425000038 ], [ -82.013946444999988, 28.91802188500003 ], [ -82.013877381999976, 28.917890148000026 ], [ -82.013819894999983, 28.917798384000037 ], [ -82.013738988999989, 28.917671037000048 ], [ -82.01363420499996, 28.917519914000025 ], [ -82.01359810799994, 28.917467877000036 ], [ -82.013562707999938, 28.917417077000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013142864999963, 28.916877001000046 ], [ -82.013066224999989, 28.916805838000073 ], [ -82.012967444999958, 28.916733203000035 ], [ -82.012840117999986, 28.916654713000071 ], [ -82.01275590399996, 28.91661326600007 ], [ -82.012686507999945, 28.916580397000075 ], [ -82.012684788999934, 28.916579583000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012481710999964, 28.916510862000052 ], [ -82.012374941999951, 28.916484524000055 ], [ -82.01222957799996, 28.916460722000068 ], [ -82.012067173999981, 28.916449271000033 ], [ -82.011868680999953, 28.916447525000024 ], [ -82.011749383999984, 28.916447535000032 ], [ -82.011479394999981, 28.916450368000028 ], [ -82.01114989499996, 28.91645111400004 ], [ -82.011101004999944, 28.916450937000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008996547999971, 28.916445983000074 ], [ -82.008653029999948, 28.916446462000067 ], [ -82.008463111999959, 28.916446475000043 ], [ -82.008250582999949, 28.916448476000028 ], [ -82.008038054999986, 28.916448489000061 ], [ -82.007660259999966, 28.916443420000064 ], [ -82.007625290999954, 28.916443422000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00900156199998, 28.916872630000057 ], [ -82.008996547999971, 28.916445983000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010956214999965, 28.916450412000074 ], [ -82.010807043999989, 28.916444967000075 ], [ -82.010552410999935, 28.916445870000075 ], [ -82.010266701999967, 28.916445009000029 ], [ -82.009997031999944, 28.91644679500007 ], [ -82.009569971999952, 28.916446826000026 ], [ -82.008996547999971, 28.916445983000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995264329999941, 28.883974616000046 ], [ -81.995319073999951, 28.883784625000033 ], [ -81.995374959999936, 28.883564146000026 ], [ -81.995413147999955, 28.883399402000066 ], [ -81.995471695999981, 28.883097442000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995471695999981, 28.883097442000064 ], [ -81.99550443399994, 28.882883039000035 ], [ -81.995523996999964, 28.882734687000038 ], [ -81.995542629999989, 28.882560926000053 ], [ -81.995551946999967, 28.882449457000064 ], [ -81.995564992999959, 28.882245371000067 ], [ -81.995572448999951, 28.882094559000052 ], [ -81.995577993999973, 28.88180449400005 ], [ -81.995570388999965, 28.881543909000072 ], [ -81.995556649999969, 28.881333943000072 ], [ -81.995542689999979, 28.881166739000037 ], [ -81.995486799999981, 28.880713390000039 ], [ -81.99544586899998, 28.880492181000079 ], [ -81.995400140999948, 28.880280484000025 ], [ -81.995335071999989, 28.880052038000031 ], [ -81.995247547999952, 28.879801228000076 ], [ -81.995195404999947, 28.879675822000024 ], [ -81.995109740999965, 28.879492223000057 ], [ -81.99501197099994, 28.879310261000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99510698499995, 28.879266287000064 ], [ -81.995445611999969, 28.879109562000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994556280999973, 28.878668287000039 ], [ -81.994462139999939, 28.87855791800007 ], [ -81.994258665999951, 28.878329955000027 ], [ -81.99404263699995, 28.878094713000053 ], [ -81.993770364999989, 28.877810399000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993352630999937, 28.87740489600003 ], [ -81.993242773999953, 28.877304966000054 ], [ -81.992983918999983, 28.877065208000033 ], [ -81.992765076999945, 28.876873894000028 ], [ -81.992339825999977, 28.876517830000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004621426999961, 28.932553574000053 ], [ -82.005161593999958, 28.933399575000067 ], [ -82.005287738999982, 28.933618355000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002989287999981, 28.921190822000028 ], [ -82.003001986999948, 28.921186353000053 ], [ -82.003356190999966, 28.921066709000058 ], [ -82.003391535999981, 28.921052268000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003391535999981, 28.921052268000039 ], [ -82.003393148999976, 28.920969717000048 ], [ -82.003389590999973, 28.920836379000036 ], [ -82.003381765999961, 28.920517697000037 ], [ -82.003379223999957, 28.920416283000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003391535999981, 28.921052268000039 ], [ -82.003539623999984, 28.921000973000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002404928999965, 28.920479295000064 ], [ -82.002546209999934, 28.920468855000024 ], [ -82.002809526999954, 28.92044998700004 ], [ -82.003271573999939, 28.920418348000055 ], [ -82.003379223999957, 28.920416283000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002404928999965, 28.920479295000064 ], [ -82.002362910999977, 28.920434181000076 ], [ -82.002111269999943, 28.920181510000077 ], [ -82.002013778999981, 28.920079752000049 ], [ -82.00198818399997, 28.920041250000054 ], [ -82.001977840999984, 28.920014361000028 ], [ -82.001975288999972, 28.919975933000046 ], [ -82.001975286999937, 28.919890676000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009835272999965, 28.913080575000038 ], [ -82.009865465999951, 28.913047362000043 ], [ -82.009950644999947, 28.912896487000069 ], [ -82.010018570999989, 28.912757948000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00925615999995, 28.912986678000038 ], [ -82.00929821699998, 28.91297813500006 ], [ -82.009333805999972, 28.912980031000075 ], [ -82.009380177999958, 28.912992362000068 ], [ -82.00957234599997, 28.913026153000033 ], [ -82.009655175999967, 28.913044532000072 ], [ -82.009729586999981, 28.913053066000032 ], [ -82.009775957999977, 28.91305780600004 ], [ -82.009808311999961, 28.913066343000025 ], [ -82.009835272999965, 28.913080575000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008947639999974, 28.912835035000057 ], [ -82.009036195999954, 28.912868422000031 ], [ -82.00911631799994, 28.912894388000041 ], [ -82.009197921999942, 28.912928802000067 ], [ -82.009216255999945, 28.912943033000033 ], [ -82.00925615999995, 28.912986678000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009838897999941, 28.913933705000034 ], [ -82.009848842999986, 28.913736720000031 ], [ -82.009868541999936, 28.913415287000078 ], [ -82.009878483999955, 28.913184268000066 ], [ -82.00987949599994, 28.913162173000046 ], [ -82.009873022999955, 28.913134657000057 ], [ -82.009857921999981, 28.913103346000071 ], [ -82.009835272999965, 28.913080575000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009171042999981, 28.913849200000072 ], [ -82.00917319499996, 28.913796065000042 ], [ -82.009184598, 28.913396427000066 ], [ -82.009183922999966, 28.913167916000077 ], [ -82.009186076999981, 28.913128063000045 ], [ -82.00919577999997, 28.913086313000065 ], [ -82.009204401999966, 28.913053102000049 ], [ -82.009214105999945, 28.913029380000069 ], [ -82.009230280999986, 28.913005658000031 ], [ -82.00925615999995, 28.912986678000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008692723999957, 28.913799023000024 ], [ -82.00875504399994, 28.913802801000031 ], [ -82.008883393999952, 28.913813106000077 ], [ -82.00914400399995, 28.913844371000039 ], [ -82.009171042999981, 28.913849200000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009171042999981, 28.913849200000072 ], [ -82.009464002999948, 28.913885948000029 ], [ -82.009659362999969, 28.91391378000003 ], [ -82.009838897999941, 28.913933705000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008692723999957, 28.913799023000024 ], [ -82.008691139999939, 28.913758141000073 ], [ -82.008685742999944, 28.913685079000061 ], [ -82.008670486999961, 28.913575562000062 ], [ -82.008644861999983, 28.913428055000054 ], [ -82.008637187999966, 28.913378600000044 ], [ -82.008633948999943, 28.91332641200006 ], [ -82.008633944999985, 28.913279918000057 ], [ -82.008637175999979, 28.913231526000061 ], [ -82.008645796999986, 28.913154667000072 ], [ -82.008653341999945, 28.913112918000024 ], [ -82.008670195999969, 28.913053028000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008670195999969, 28.913053028000036 ], [ -82.008704014999978, 28.912966789000052 ], [ -82.008759003999955, 28.912845331000028 ], [ -82.008841552999968, 28.912682300000029 ], [ -82.008897015999935, 28.912567305000039 ], [ -82.008960080999941, 28.912444772000072 ], [ -82.008989741999983, 28.912384169000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008989741999983, 28.912384169000063 ], [ -82.009036103999961, 28.912285484000051 ], [ -82.009098799999947, 28.912159853000048 ], [ -82.009133720999955, 28.912076877000061 ], [ -82.009190752999984, 28.91192936300007 ], [ -82.009226832999957, 28.911817704000043 ], [ -82.009257093999963, 28.911715265000055 ], [ -82.009279204999984, 28.91160975400004 ], [ -82.009295494999947, 28.911515510000072 ], [ -82.009308291999957, 28.911420243000066 ], [ -82.009321087999979, 28.91129526900005 ], [ -82.009326893999969, 28.911126247000027 ], [ -82.009326879999946, 28.910975665000024 ], [ -82.009326865999981, 28.910814838000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008989741999983, 28.912384169000063 ], [ -82.009146114999965, 28.912439192000079 ], [ -82.009220527999958, 28.912467654000068 ], [ -82.009294938999972, 28.912495164000063 ], [ -82.009397390999936, 28.912533112000062 ], [ -82.009504154999945, 28.912567264000074 ], [ -82.009602291999954, 28.912588131000064 ], [ -82.009689643999934, 28.912599512000043 ], [ -82.009772680999959, 28.912606148000066 ], [ -82.009912874999941, 28.91261183000006 ], [ -82.010049830999947, 28.912609923000048 ], [ -82.010198650999939, 28.91260991200005 ], [ -82.010342077999951, 28.912610850000078 ], [ -82.010460702999978, 28.912615585000026 ], [ -82.010555862999979, 28.912622820000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011727143999963, 28.912815508000051 ], [ -82.011805493999987, 28.912824224000076 ], [ -82.011905598999988, 28.912832974000025 ], [ -82.012017534999984, 28.912841719000028 ], [ -82.012156833999938, 28.912842800000078 ], [ -82.012237882999955, 28.912841010000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.202559981999968, 28.602415484000062 ], [ -82.203368384999976, 28.602291922000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200495152999963, 28.602838748000067 ], [ -82.200519091999979, 28.602794592000066 ], [ -82.200544340999954, 28.602756738000039 ], [ -82.200563123999984, 28.602732644000071 ], [ -82.200587141999961, 28.602708691000032 ], [ -82.200613033999957, 28.602689024000028 ], [ -82.200648740999952, 28.602665626000032 ], [ -82.200683723999987, 28.602647091000051 ], [ -82.200723944999936, 28.602630071000078 ], [ -82.200785373999963, 28.602611645000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.213817458999984, 28.853055415000028 ], [ -82.214158980999969, 28.853010751000056 ], [ -82.215691273999937, 28.852759517000038 ], [ -82.217188669999985, 28.852508653000029 ], [ -82.218360527999948, 28.852306081000052 ], [ -82.219723588999955, 28.852090283000052 ], [ -82.220136750999984, 28.852027774000078 ], [ -82.220673279999971, 28.85190037600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.220673279999971, 28.85190037600006 ], [ -82.220037228999956, 28.851936766000051 ], [ -82.218784626999934, 28.852124893000052 ], [ -82.21822604099998, 28.852200692000054 ], [ -82.216342863999955, 28.852471585000046 ], [ -82.215577383999971, 28.852583844000037 ], [ -82.214496065999981, 28.852755908000063 ], [ -82.213777450999942, 28.852867194000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.220673279999971, 28.85190037600006 ], [ -82.221215361999953, 28.851820666000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137836564999986, 28.873434910000071 ], [ -82.137904290999984, 28.873398805000079 ], [ -82.139467501999945, 28.872474104000048 ], [ -82.139890270999956, 28.872227971000029 ], [ -82.141422807999959, 28.871347044000061 ], [ -82.142068698999935, 28.870976530000064 ], [ -82.14271458099995, 28.870603426000059 ], [ -82.143287065999971, 28.870274364000068 ], [ -82.144085602999951, 28.869815745000039 ], [ -82.145529991999979, 28.868981418000033 ], [ -82.14665301399998, 28.868335131000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141481424999938, 28.606634492000069 ], [ -82.143584378999947, 28.606597288000046 ], [ -82.144643659999986, 28.606577411000046 ], [ -82.145053418999964, 28.606576973000074 ], [ -82.145417646999988, 28.606573905000062 ], [ -82.145608855999967, 28.606565664000073 ], [ -82.145690785999989, 28.606549504000043 ], [ -82.145740068999942, 28.606520321000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141563148999978, 28.607954454000037 ], [ -82.141560051999988, 28.60784017800006 ], [ -82.141549534999967, 28.607679159000043 ], [ -82.141531437999959, 28.607351926000035 ], [ -82.141523768999946, 28.607119483000076 ], [ -82.141517689999944, 28.606975341000066 ], [ -82.141495334999945, 28.606766071000038 ], [ -82.141481424999938, 28.606634492000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140121338999961, 28.606630944000074 ], [ -82.140246770999966, 28.606630076000044 ], [ -82.141481424999938, 28.606634492000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126447817999974, 28.764304177000042 ], [ -82.126451079999981, 28.764683098000035 ], [ -82.126447145999975, 28.765094887000032 ], [ -82.126448554999968, 28.766263889000072 ], [ -82.12643309799995, 28.766302935000056 ], [ -82.126404334999961, 28.766328334000036 ], [ -82.126378203999934, 28.766344410000045 ], [ -82.126337934999981, 28.766365475000043 ], [ -82.126304746999949, 28.766394780000041 ], [ -82.126289294999935, 28.766437730000064 ], [ -82.126284913999939, 28.76647871800003 ], [ -82.126282757999945, 28.766527508000024 ], [ -82.126289724999936, 28.766794870000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16539544699998, 28.574099809000074 ], [ -82.165318707999973, 28.573929661000079 ], [ -82.165295303999983, 28.57384750600005 ], [ -82.165274968999938, 28.573600977000069 ], [ -82.165273917999968, 28.572928825000076 ], [ -82.165272068999968, 28.572345602000041 ], [ -82.165297621999969, 28.571754586000054 ], [ -82.165312237999956, 28.571607206000067 ], [ -82.165318482999965, 28.571545619000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165318482999965, 28.571545619000062 ], [ -82.165324373999965, 28.571487519000073 ], [ -82.165328403, 28.571436744000039 ], [ -82.16532561799994, 28.571407736000026 ], [ -82.165306421999958, 28.571390836000035 ], [ -82.16527217099997, 28.571378791000029 ], [ -82.165182007999988, 28.571375968000041 ], [ -82.165090047999968, 28.571375385000067 ], [ -82.165048955999964, 28.571366974000057 ], [ -82.164778616999968, 28.57124492500003 ], [ -82.164487827999949, 28.571174711000026 ], [ -82.164291469999966, 28.571078721000049 ], [ -82.164226010999982, 28.571042448000071 ], [ -82.164196877999984, 28.570999714000038 ], [ -82.164184689999956, 28.570950545000073 ], [ -82.164210892999961, 28.570666107000079 ], [ -82.164201038999977, 28.570559198000069 ], [ -82.164183949999938, 28.570473683000046 ], [ -82.164152401999957, 28.570437368000057 ], [ -82.164099054999951, 28.570401081000057 ], [ -82.164002133999986, 28.570381951000059 ], [ -82.163357734999977, 28.570339961000059 ], [ -82.162147104999974, 28.570282548000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.161623275999943, 28.570283231000076 ], [ -82.162147104999974, 28.570282548000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966159749999974, 28.919435175000046 ], [ -81.966159783999956, 28.919348783000032 ], [ -81.966162675999954, 28.919326506000061 ], [ -81.966174044999946, 28.919283217000043 ], [ -81.966185087999975, 28.919258397000078 ], [ -81.966271905999974, 28.919088017000036 ], [ -81.966562687999954, 28.918518210000059 ], [ -81.966577247999965, 28.918489665000038 ], [ -81.966585142999975, 28.918468864000033 ], [ -81.966591097999981, 28.918446893000066 ], [ -81.966594230999988, 28.91841656500003 ], [ -81.966594843999985, 28.918284657000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965842362999979, 28.918002459000036 ], [ -81.965842375999955, 28.917997169000046 ], [ -81.965844433999962, 28.917314873000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965842362999979, 28.918002459000036 ], [ -81.965859446999957, 28.918007036000063 ], [ -81.965890538999986, 28.918015681000043 ], [ -81.96597468799996, 28.91804116000003 ], [ -81.966051003999951, 28.918066976000034 ], [ -81.966133812999942, 28.918098025000063 ], [ -81.966215953999949, 28.918132096000079 ], [ -81.96623750699996, 28.918141596000055 ], [ -81.966358502999981, 28.918199507000054 ], [ -81.966405007999981, 28.918222342000035 ], [ -81.966459554999972, 28.918245080000077 ], [ -81.966494316999956, 28.918257437000079 ], [ -81.966528847999939, 28.918268169000044 ], [ -81.966567104999967, 28.918278353000062 ], [ -81.966594843999985, 28.918284657000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965844433999962, 28.917314873000066 ], [ -81.96589404499997, 28.917325032000065 ], [ -81.965932874999964, 28.917333436000035 ], [ -81.96597971999995, 28.917344112000023 ], [ -81.966019271999983, 28.917353585000058 ], [ -81.966066860999945, 28.917365548000078 ], [ -81.966125212999941, 28.917381068000054 ], [ -81.966195722999942, 28.917401093000024 ], [ -81.966246447999936, 28.917416372000048 ], [ -81.966292188999944, 28.917430789000036 ], [ -81.966352219999976, 28.917450845000076 ], [ -81.96639532599994, 28.917464290000055 ], [ -81.966423587999941, 28.917473105000056 ], [ -81.96646343599997, 28.917485123000063 ], [ -81.966499437999971, 28.917495184000074 ], [ -81.966547787999957, 28.917507866000051 ], [ -81.966597142999944, 28.91751984800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965557044999969, 28.919413078000048 ], [ -81.965549609999982, 28.919407828000033 ], [ -81.965541774999963, 28.919401371000049 ], [ -81.965533535999953, 28.919393294000031 ], [ -81.965527880999957, 28.919386745000054 ], [ -81.965521811999963, 28.919378456000061 ], [ -81.96551631799997, 28.919369303000053 ], [ -81.965511743999969, 28.919359702000065 ], [ -81.965507995999985, 28.919349246000024 ], [ -81.96550539499998, 28.919338611000057 ], [ -81.965503783999964, 28.919327452000061 ], [ -81.965503547999958, 28.919297701000062 ], [ -81.965503450999961, 28.919227873000068 ], [ -81.965503277999971, 28.91910445700006 ], [ -81.965503969999986, 28.919080764000057 ], [ -81.965506775999984, 28.919050374000051 ], [ -81.96551076999998, 28.919028036000043 ], [ -81.965515467999978, 28.919007356000066 ], [ -81.965521125999942, 28.918987408000078 ], [ -81.96552937499996, 28.918964262000031 ], [ -81.965547216999937, 28.918921490000059 ], [ -81.965719408999973, 28.918539125000052 ], [ -81.965760229999944, 28.918448284000078 ], [ -81.965806187999988, 28.918346014000065 ], [ -81.965821927999968, 28.918309492000049 ], [ -81.965827516, 28.918293156000061 ], [ -81.965831776999948, 28.918278573000066 ], [ -81.965835830999936, 28.918261020000045 ], [ -81.965839117999963, 28.918241267000042 ], [ -81.965841462999947, 28.918214743000078 ], [ -81.965841847999968, 28.918172454000057 ], [ -81.965842307999935, 28.918020126000044 ], [ -81.965842362999979, 28.918002459000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965504237999937, 28.91978978700007 ], [ -81.965503996999985, 28.919617818000063 ], [ -81.965503880999961, 28.919496241000047 ], [ -81.965504571999986, 28.91948925500003 ], [ -81.965506035999965, 28.919482491000053 ], [ -81.965508900999964, 28.919474344000037 ], [ -81.965513378999958, 28.919465774000059 ], [ -81.965518488999976, 28.919458618000078 ], [ -81.965527026999951, 28.919448519000071 ], [ -81.965557044999969, 28.919413078000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965557044999969, 28.919413078000048 ], [ -81.965568556999983, 28.919419835000042 ], [ -81.965577159999953, 28.919423964000032 ], [ -81.965587194999955, 28.919427917000064 ], [ -81.965597399999979, 28.919431082000074 ], [ -81.965606124999965, 28.91943315900005 ], [ -81.965617926999983, 28.919435101000033 ], [ -81.965630485999952, 28.919436123000025 ], [ -81.965643394999972, 28.919436233000056 ], [ -81.965729487999965, 28.919436140000073 ], [ -81.965779176999945, 28.919436085000029 ], [ -81.965850779999982, 28.919436008000048 ], [ -81.966029522999975, 28.919435813000064 ], [ -81.966159749999974, 28.919435175000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965036156999986, 28.917914574000065 ], [ -81.965111214999979, 28.917913490000046 ], [ -81.965140955999971, 28.917913207000026 ], [ -81.965161337999973, 28.917913200000044 ], [ -81.96518062399997, 28.917913335000037 ], [ -81.965199189999964, 28.917913594000026 ], [ -81.965226772999983, 28.917914210000049 ], [ -81.96524322199997, 28.917914710000048 ], [ -81.965259222999975, 28.917915293000078 ], [ -81.965275307999946, 28.917915974000039 ], [ -81.965290257999982, 28.917916692000063 ], [ -81.965322201999982, 28.917918502000077 ], [ -81.965348736999943, 28.917920292000076 ], [ -81.965381481999941, 28.917922862000069 ], [ -81.965416073999961, 28.917926009000041 ], [ -81.96544901599998, 28.917929421000053 ], [ -81.965487358999951, 28.91793390600003 ], [ -81.965523832999963, 28.917938688000049 ], [ -81.96557510599996, 28.917946267000048 ], [ -81.965618689999985, 28.917953502000046 ], [ -81.965671360999977, 28.917963233000023 ], [ -81.965707349999946, 28.917970510000032 ], [ -81.965740079999989, 28.917977577000045 ], [ -81.965771521999955, 28.917984769000043 ], [ -81.965804644999935, 28.917992783000045 ], [ -81.965842362999979, 28.918002459000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963670771999944, 28.917935044000046 ], [ -81.964008657999955, 28.917929990000061 ], [ -81.964357857999971, 28.917924765000066 ], [ -81.964663529999939, 28.917920191000064 ], [ -81.965036156999986, 28.917914574000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96322872099995, 28.918655929000067 ], [ -81.963243468999963, 28.918614802000036 ], [ -81.963254758999938, 28.918587534000039 ], [ -81.963267265999946, 28.918560353000032 ], [ -81.963274417999969, 28.918545953000034 ], [ -81.963283958999966, 28.918527823000034 ], [ -81.963295348999964, 28.918507568000052 ], [ -81.963311657999952, 28.918480769000041 ], [ -81.963324052999951, 28.918461862000072 ], [ -81.963336053999967, 28.918444588000057 ], [ -81.963357923999979, 28.918415358000061 ], [ -81.963368324999976, 28.918402350000065 ], [ -81.963389206999977, 28.918377740000039 ], [ -81.963403614999947, 28.918361810000079 ], [ -81.963428781999937, 28.918334734000041 ], [ -81.963449476999983, 28.918311347000042 ], [ -81.963467132999938, 28.918290437000053 ], [ -81.963488924999979, 28.918263296000077 ], [ -81.963506248999977, 28.918240557000047 ], [ -81.963518667999949, 28.918223560000058 ], [ -81.963534238999955, 28.918201407000026 ], [ -81.963554660999989, 28.918170513000064 ], [ -81.963572205999981, 28.918142272000068 ], [ -81.963581031, 28.918127373000061 ], [ -81.963590649999958, 28.918110546000037 ], [ -81.963609070999951, 28.918076679000023 ], [ -81.963625115999946, 28.918044247000068 ], [ -81.963638092999986, 28.918016254000065 ], [ -81.963648276999947, 28.917992802000072 ], [ -81.963661243999979, 28.917960653000023 ], [ -81.963670771999944, 28.917935044000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96322872099995, 28.918655929000067 ], [ -81.963299983999946, 28.918671522000068 ], [ -81.96337331899997, 28.918685416000073 ], [ -81.963470382999958, 28.918701045000034 ], [ -81.963625074999982, 28.918723191000026 ], [ -81.963777784999934, 28.918742049000059 ], [ -81.963937097999974, 28.918758569000033 ], [ -81.964116753999974, 28.918773367000028 ], [ -81.964244039999983, 28.918781410000065 ], [ -81.964412860999971, 28.918788966000079 ], [ -81.964604454999971, 28.918793260000029 ], [ -81.964773056999945, 28.918793682000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961398961999976, 28.917287332000058 ], [ -81.961409855999989, 28.917287180000073 ], [ -81.961800578999942, 28.917281756000079 ], [ -81.962170943999979, 28.917276614000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98091743599997, 28.871764252000048 ], [ -81.981048354999984, 28.871715385000073 ], [ -81.981159437999963, 28.871680481000055 ], [ -81.981269612999938, 28.871650145000046 ], [ -81.98137963299996, 28.871629915000028 ], [ -81.981450821999942, 28.871616824000057 ], [ -81.981515073999958, 28.871608227000024 ], [ -81.981626813999981, 28.871602709000058 ], [ -81.981827942999985, 28.87159966300004 ], [ -81.981926379999948, 28.871604963000038 ], [ -81.982019991999948, 28.871615057000042 ], [ -81.982151887999976, 28.871636335000062 ], [ -81.982427791999953, 28.871702796000079 ], [ -81.983364326999947, 28.87195616200006 ], [ -81.984153969999966, 28.872173427000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97974951499998, 28.872072703000072 ], [ -81.979847290999942, 28.872057965000067 ], [ -81.980078668999965, 28.87201912200004 ], [ -81.980274738999981, 28.871971926000072 ], [ -81.980371457, 28.871946032000039 ], [ -81.980562363999979, 28.871888162000062 ], [ -81.980731508999952, 28.871831161000046 ], [ -81.98091743599997, 28.871764252000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979030202, 28.872123439000063 ], [ -81.979212197999971, 28.872116503000029 ], [ -81.979465410999978, 28.872102611000059 ], [ -81.979545473999963, 28.872094183000058 ], [ -81.97954588999994, 28.872094139000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97974951499998, 28.872072703000072 ], [ -81.979761403999987, 28.872150361000024 ], [ -81.97976904099994, 28.87231917500003 ], [ -81.97976287299997, 28.872492039000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976775210999961, 28.875389483000049 ], [ -81.976779915999941, 28.875304262000043 ], [ -81.976776235999978, 28.875099900000066 ], [ -81.976768819999961, 28.874951273000079 ], [ -81.976750245999938, 28.874731608000047 ], [ -81.976742850999983, 28.874482440000065 ], [ -81.976762764999989, 28.874267154000052 ], [ -81.976783899999987, 28.874140390000036 ], [ -81.976837327999988, 28.873954616000049 ], [ -81.976904409999975, 28.873784145000059 ], [ -81.976978936999956, 28.873636624000028 ], [ -81.977039795999985, 28.873536094000031 ], [ -81.977105619999975, 28.873438841000052 ], [ -81.977177651999966, 28.873341591000042 ], [ -81.977278242999944, 28.873226860000045 ], [ -81.977512953999963, 28.87295696800004 ], [ -81.977637147999985, 28.87278322700007 ], [ -81.977828415999966, 28.872458686000073 ], [ -81.977912877999984, 28.872283845000027 ], [ -81.977971260999936, 28.872136321000028 ], [ -81.978033701999948, 28.871974586000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975742146999949, 28.877671995000071 ], [ -81.975809535999986, 28.877596743000026 ], [ -81.975932659999955, 28.877459190000025 ], [ -81.976050645999976, 28.877314958000056 ], [ -81.976157457999989, 28.877166350000039 ], [ -81.976266758999941, 28.876992608000023 ], [ -81.976367370999981, 28.876803565000046 ], [ -81.976441902999966, 28.876644024000029 ], [ -81.976525135999964, 28.876439677000064 ], [ -81.976590979999969, 28.876272485000072 ], [ -81.976628250999966, 28.876164300000028 ], [ -81.976675463999982, 28.87601677400005 ], [ -81.976709015999973, 28.875884547000055 ], [ -81.976747546999945, 28.875695493000023 ], [ -81.976767448999965, 28.875537034000047 ], [ -81.976775210999961, 28.875389483000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975475199999948, 28.877975907000064 ], [ -81.975647012999957, 28.877789176000078 ], [ -81.975742146999949, 28.877671995000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974630248999972, 28.879028353000024 ], [ -81.974695118999989, 28.878924920000031 ], [ -81.974744104999957, 28.878847972000074 ], [ -81.97479999799998, 28.878766019000068 ], [ -81.974885755999935, 28.878654321000056 ], [ -81.97508288299997, 28.878424781000035 ], [ -81.975475199999948, 28.877975907000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967044320999946, 28.879637342000024 ], [ -81.967161100999988, 28.879667458000029 ], [ -81.967246905999957, 28.879686909000043 ], [ -81.967487386999949, 28.879749325000034 ], [ -81.967842281999935, 28.879843941000047 ], [ -81.968584727999939, 28.880040070000064 ], [ -81.969378148999965, 28.88024342500006 ], [ -81.969634392999978, 28.880311319000043 ], [ -81.969972095999935, 28.880396637000047 ], [ -81.970287453999958, 28.880462277000049 ], [ -81.970512179999957, 28.880501668000079 ], [ -81.970718283999986, 28.880531220000023 ], [ -81.971068610999964, 28.880565911000076 ], [ -81.971247267999956, 28.880577182000025 ], [ -81.971458290999976, 28.880584928000076 ], [ -81.971830784999952, 28.880583913000066 ], [ -81.972177032, 28.880567750000068 ], [ -81.972388511999952, 28.880546934000051 ], [ -81.97261055499996, 28.880521782000073 ], [ -81.972743414999968, 28.880502138000054 ], [ -81.973123374999943, 28.880442108000068 ], [ -81.97351595799995, 28.880373724000037 ], [ -81.973859781999977, 28.880316168000036 ], [ -81.974292308999964, 28.880251684000029 ], [ -81.974395802999936, 28.880249227000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965755770999976, 28.872403169000052 ], [ -81.965761727999961, 28.872376545000066 ], [ -81.965764319999948, 28.872354527000027 ], [ -81.965764670999988, 28.87233529100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965764670999988, 28.87233529100007 ], [ -81.965758969999968, 28.872272606000024 ], [ -81.965746870999965, 28.872240624000028 ], [ -81.965724392999959, 28.872207116000027 ], [ -81.96570190999995, 28.872182747000068 ], [ -81.965676830999939, 28.872163579000073 ], [ -81.965630997999938, 28.872132478000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96639201499994, 28.871922643000062 ], [ -81.966396870999972, 28.871919990000038 ], [ -81.966594119999968, 28.871821059000069 ], [ -81.966858839999986, 28.871711485000048 ], [ -81.967149516999939, 28.871580597000047 ], [ -81.967167877999941, 28.871570598000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965448335999952, 28.872582284000032 ], [ -81.965529634999939, 28.872614282000029 ], [ -81.965582997999945, 28.872647796000024 ], [ -81.965633848999971, 28.87268343900007 ], [ -81.965662811999948, 28.872716341000057 ], [ -81.965720720999968, 28.872792745000027 ], [ -81.965776562999963, 28.872881279000069 ], [ -81.965908103999936, 28.873072559000036 ], [ -81.966312589999973, 28.873683916000061 ], [ -81.966599505999966, 28.874109913000041 ], [ -81.966775748999964, 28.874395110000023 ], [ -81.966897133999964, 28.87462245100005 ], [ -81.966941801999951, 28.874712075000048 ], [ -81.966985222999938, 28.874819184000046 ], [ -81.967063380999946, 28.875014822000026 ], [ -81.967136565999965, 28.875232314000073 ], [ -81.967201885999941, 28.87548890100004 ], [ -81.967235767999966, 28.875627946000066 ], [ -81.967255595999973, 28.875745977000065 ], [ -81.967279661999953, 28.87594011300007 ], [ -81.96729189499996, 28.876156687000048 ], [ -81.967295939999985, 28.876333555000031 ], [ -81.967295877999959, 28.876532079000071 ], [ -81.967287625999973, 28.876694505000046 ], [ -81.96725885799998, 28.876893023000036 ], [ -81.967234198999961, 28.87706266400005 ], [ -81.967184918999976, 28.877282834000027 ], [ -81.967131544999972, 28.877484955000057 ], [ -81.967057661999945, 28.877690680000057 ], [ -81.966971476999959, 28.87790362100003 ], [ -81.966922228999977, 28.87801911300005 ], [ -81.96679912899998, 28.878250094000066 ], [ -81.966659611999944, 28.87851355500004 ], [ -81.966507783999987, 28.878802280000059 ], [ -81.966413405999958, 28.878979123000079 ], [ -81.96636614199997, 28.879084904000024 ], [ -81.966341382999985, 28.879151362000073 ], [ -81.966330138999979, 28.879175220000036 ], [ -81.96633000099996, 28.879175512000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966463024999939, 28.879206282000041 ], [ -81.966463038999962, 28.879206244000045 ], [ -81.96646869999995, 28.87919084300006 ], [ -81.966511792999938, 28.879087983000034 ], [ -81.966570268999988, 28.87897429700007 ], [ -81.966644127999984, 28.878844373000049 ], [ -81.966770308999969, 28.878606174000026 ], [ -81.966890670999987, 28.878373278000026 ], [ -81.966992063999953, 28.878177091000055 ], [ -81.967095765999943, 28.877970879000031 ], [ -81.96716117699998, 28.877799542000048 ], [ -81.967228898999963, 28.877618179000024 ], [ -81.967287395999961, 28.87742869300007 ], [ -81.967327429999955, 28.877268981000043 ], [ -81.967358229999945, 28.877128215000027 ], [ -81.967382887999975, 28.876960379000025 ], [ -81.967413698999962, 28.876784422000071 ], [ -81.967429132999939, 28.876605754000025 ], [ -81.967444580999938, 28.876391893000061 ], [ -81.96743541099994, 28.876202391000049 ], [ -81.967429305999985, 28.876053496000054 ], [ -81.967413965999981, 28.875928963000035 ], [ -81.967395566999983, 28.875758408000024 ], [ -81.967361794999988, 28.875563485000043 ], [ -81.967315720999977, 28.87537397400007 ], [ -81.967238908999946, 28.875119483000049 ], [ -81.967183603999956, 28.874943506000079 ], [ -81.96712520899996, 28.874810840000066 ], [ -81.967069889999948, 28.874678178000067 ], [ -81.967016341999965, 28.874565653000047 ], [ -81.966962986999988, 28.874460728000031 ], [ -81.966909629999975, 28.874363452000068 ], [ -81.966847586999961, 28.874254152000049 ], [ -81.966556546999982, 28.873806348000073 ], [ -81.966105492999986, 28.873130529000036 ], [ -81.965805084999943, 28.872680654000078 ], [ -81.965779128999941, 28.872628833000078 ], [ -81.965761757999985, 28.872589487000027 ], [ -81.96575556099998, 28.872561072000053 ], [ -81.965758052999945, 28.872532659000058 ], [ -81.965755770999976, 28.872403169000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964045810999949, 28.873302088000059 ], [ -81.964186902999984, 28.873229021000043 ], [ -81.964595824999947, 28.872941081000079 ], [ -81.964754385999981, 28.872838767000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964689789999966, 28.872740960000044 ], [ -81.964597271999935, 28.872799135000037 ], [ -81.964503974999957, 28.872866743000031 ], [ -81.964428215999988, 28.872936665000054 ], [ -81.964168393999955, 28.873168609000061 ], [ -81.964045810999949, 28.873302088000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965503854999952, 28.872101101000055 ], [ -81.965398167999979, 28.872036417000061 ], [ -81.965353487999948, 28.871990508000067 ], [ -81.965288954999949, 28.871905249000065 ], [ -81.965225670999985, 28.871803599000032 ], [ -81.964966316999949, 28.871421038000051 ], [ -81.964734060999945, 28.87111029700003 ], [ -81.964088952999987, 28.870251469000038 ], [ -81.963925143999973, 28.870041599000047 ], [ -81.96372269699998, 28.869751038000061 ], [ -81.963624337999988, 28.869591290000074 ], [ -81.963532131999955, 28.869426129000033 ], [ -81.963458376999938, 28.86926909400006 ], [ -81.963396919, 28.869122892000064 ], [ -81.963335464999943, 28.868968567000024 ], [ -81.963277104999975, 28.868760101000078 ], [ -81.963243329999955, 28.868605784000067 ], [ -81.963203420999946, 28.868402737000054 ], [ -81.963181969999937, 28.868186159000061 ], [ -81.963169207999954, 28.867832557000042 ], [ -81.963176884999939, 28.867552376000049 ], [ -81.963194711999961, 28.867143228000032 ], [ -81.963194757999986, 28.867012773000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962980038999945, 28.867009749000033 ], [ -81.962983652999981, 28.867504514000075 ], [ -81.962984769999935, 28.867914781000025 ], [ -81.963002374999974, 28.868137153000077 ], [ -81.96304043899994, 28.868359379000026 ], [ -81.963071128999957, 28.868540765000034 ], [ -81.963138694999941, 28.868803378000052 ], [ -81.963190915999974, 28.868979356000068 ], [ -81.963255438999965, 28.869149926000034 ], [ -81.963350705999972, 28.869355695000024 ], [ -81.963395221999974, 28.869454602000076 ], [ -81.963449812999954, 28.869554065000045 ], [ -81.96354436699994, 28.869719600000053 ], [ -81.963763746999973, 28.870043743000053 ], [ -81.964728796999964, 28.871325683000066 ], [ -81.964869446999955, 28.871510625000042 ], [ -81.965118871999948, 28.871884441000077 ], [ -81.965200272999937, 28.87201206800006 ], [ -81.965230549999944, 28.872065882000072 ], [ -81.965250396999977, 28.87211615700005 ], [ -81.965259068999956, 28.872175173000073 ], [ -81.965246904999958, 28.872245317000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958067171999971, 28.866314214000056 ], [ -81.958067208999978, 28.866314215000045 ], [ -81.958082804999947, 28.866314449000072 ], [ -81.958251645999951, 28.866313408000053 ], [ -81.958374551999952, 28.866312354000058 ], [ -81.958477506999941, 28.866315765000024 ], [ -81.958553320999954, 28.86632333700004 ], [ -81.958604217999948, 28.866329910000047 ], [ -81.958671253999967, 28.86633867300003 ], [ -81.958755362999966, 28.866355877000046 ], [ -81.958874080999976, 28.866380374000073 ], [ -81.959035731999961, 28.86642934300005 ], [ -81.959141813999963, 28.86646717800005 ], [ -81.959265570999946, 28.866522807000024 ], [ -81.959379221999939, 28.866582880000067 ], [ -81.959500447999972, 28.866654073000063 ], [ -81.959619610999937, 28.866722290000041 ], [ -81.959683734999942, 28.866752380000037 ], [ -81.959683745999939, 28.866752385000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955538503999946, 28.865886393000039 ], [ -81.95565854299997, 28.865927950000071 ], [ -81.955802510999945, 28.865974695000034 ], [ -81.956123286999969, 28.866063746000066 ], [ -81.956346837999945, 28.866118416000063 ], [ -81.95642038799997, 28.866134832000057 ], [ -81.956623406999938, 28.866175091000059 ], [ -81.956776042999934, 28.866202158000078 ], [ -81.957076046999987, 28.866246069000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95587803899997, 28.86503549300005 ], [ -81.955747506999955, 28.86541088000007 ], [ -81.955664562999971, 28.865590353000073 ], [ -81.955538503999946, 28.865886393000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954296116999956, 28.864235090000079 ], [ -81.954151409999952, 28.864379796000037 ], [ -81.954107898999951, 28.864419536000071 ], [ -81.954072450999945, 28.864460402000077 ], [ -81.954031054999973, 28.864510039000038 ], [ -81.953669593999962, 28.864908578000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953752451999947, 28.864970048000032 ], [ -81.954066909999938, 28.864619103000052 ], [ -81.954147020999983, 28.864534707000075 ], [ -81.954389782999954, 28.864296739000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953752451999947, 28.864970048000032 ], [ -81.953967991999946, 28.865123140000037 ], [ -81.954096448999962, 28.86520514800003 ], [ -81.954250038999987, 28.86529863800007 ], [ -81.954428566, 28.865398309000057 ], [ -81.954559891999963, 28.865467286000069 ], [ -81.954721526999947, 28.865545169000029 ], [ -81.954890740999986, 28.865627501000063 ], [ -81.955062479999981, 28.865705387000048 ], [ -81.955234225999959, 28.865772154000069 ], [ -81.955446381999934, 28.865854499000079 ], [ -81.955538503999946, 28.865886393000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962973036999983, 28.865273783000077 ], [ -81.962845396999967, 28.865272166000068 ], [ -81.96176600299998, 28.86527374700006 ], [ -81.959911953999949, 28.865264649000039 ], [ -81.959689153999989, 28.865264161000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957292729999949, 28.865220755000053 ], [ -81.957145590999971, 28.865200490000063 ], [ -81.956843599999956, 28.865151501000071 ], [ -81.956605827999965, 28.865104060000078 ], [ -81.956371532999981, 28.865048979000051 ], [ -81.956137238999986, 28.864986259000034 ], [ -81.956019228999935, 28.864946495000027 ], [ -81.955876921999959, 28.864899083000068 ], [ -81.955696436999972, 28.864833324000074 ], [ -81.955498603999956, 28.864750751000031 ], [ -81.955305978999945, 28.864665125000045 ], [ -81.95514112099994, 28.864587147000066 ], [ -81.954976268999985, 28.8645 ], [ -81.954807948999985, 28.86440368600006 ], [ -81.954634424999938, 28.864299730000027 ], [ -81.95448423299996, 28.864202464000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95439774, 28.864146249000044 ], [ -81.95428508699996, 28.864079254000046 ], [ -81.954092486999969, 28.863942823000059 ], [ -81.953867353999954, 28.863781170000038 ], [ -81.953594070999941, 28.863589705000038 ], [ -81.953566871999953, 28.863571027000035 ], [ -81.953483815999959, 28.863578001000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953492923999988, 28.862774892000061 ], [ -81.953495636999946, 28.862784260000069 ], [ -81.953518015999975, 28.862825669000074 ], [ -81.953542634999963, 28.862860178000062 ], [ -81.953575094999962, 28.862890748000041 ], [ -81.953617632999965, 28.862920335000069 ], [ -81.953660173999936, 28.862943022000024 ], [ -81.953706077999982, 28.862959795000052 ], [ -81.953853678999963, 28.863002215000051 ], [ -81.954278331999944, 28.863116300000058 ], [ -81.954325856999958, 28.86313272700005 ], [ -81.954384426, 28.863153374000035 ], [ -81.954440384999941, 28.863190063000047 ], [ -81.95457351999994, 28.863271118000057 ], [ -81.954696299999966, 28.863353923000034 ], [ -81.954752454999948, 28.863393898000027 ], [ -81.954791477999947, 28.863422451000076 ], [ -81.954833356999984, 28.863449101000072 ], [ -81.954860909, 28.863468032000071 ], [ -81.954880777999961, 28.863491589000034 ], [ -81.954890414999966, 28.863513004000026 ], [ -81.954894697999976, 28.863534776000051 ], [ -81.954891485999951, 28.86356796900003 ], [ -81.954881134999937, 28.863602234000041 ], [ -81.95485734, 28.863652440000067 ], [ -81.954839066999966, 28.863686096000038 ], [ -81.954828597999949, 28.863705131000074 ], [ -81.95480099599996, 28.863747962000048 ], [ -81.954753406999941, 28.863813635000042 ], [ -81.954696267999964, 28.86387054100004 ], [ -81.954695421999986, 28.863871384000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971779990999948, 28.865298969000037 ], [ -81.970912551999959, 28.865298572000029 ], [ -81.968646281999952, 28.865291823000064 ], [ -81.963196227999958, 28.86527661100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963200881999967, 28.865435713000068 ], [ -81.964352915999939, 28.865440589000059 ], [ -81.965111021999974, 28.865440787000068 ], [ -81.965938557999948, 28.865431142000034 ], [ -81.966378918999965, 28.865422869000042 ], [ -81.966955341999949, 28.865416610000068 ], [ -81.967505164999977, 28.865417728000068 ], [ -81.968609288999971, 28.865419961000043 ], [ -81.970051590999958, 28.865425218000041 ], [ -81.970865686999957, 28.865428354000073 ], [ -81.971771817999979, 28.865428547000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959688511999957, 28.865404399000056 ], [ -81.959688520999975, 28.865404399000056 ], [ -81.960610216999953, 28.86541976500007 ], [ -81.961317946999941, 28.865432499000065 ], [ -81.961946130999934, 28.865432678000047 ], [ -81.962975946999961, 28.865433401000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980745955999964, 28.865426051000043 ], [ -81.981802115999983, 28.865423913000029 ], [ -81.98269858599997, 28.865425951000077 ], [ -81.983828441999947, 28.865424172000075 ], [ -81.985544090999952, 28.865427681000028 ], [ -81.985925382999937, 28.865426244000048 ], [ -81.986757083999976, 28.865425409000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991071806999969, 28.865428699000063 ], [ -81.991717837999943, 28.865434117000063 ], [ -81.992409033999934, 28.865440072000069 ], [ -81.993394179999939, 28.865451952000058 ], [ -81.994249148999984, 28.865462342000058 ], [ -81.994647236999981, 28.86546605500007 ], [ -81.995165424999982, 28.865470511000069 ], [ -81.997031285999981, 28.865476529000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997243134999962, 28.865479699000048 ], [ -81.999949095999966, 28.865469116000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029974871999968, 28.865471384000045 ], [ -82.029250213999944, 28.865465814000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030721225999969, 28.865475991000039 ], [ -82.030299232999937, 28.865474177000067 ], [ -82.029974871999968, 28.865471384000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034531099999981, 28.865479462000053 ], [ -82.034092831999942, 28.865476518000037 ], [ -82.033793422999963, 28.865475829000047 ], [ -82.033505296999977, 28.865475900000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033503871999983, 28.864725366000073 ], [ -82.033513755999934, 28.864961032000053 ], [ -82.033505296999977, 28.865475900000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033505296999977, 28.865475900000035 ], [ -82.033307426999954, 28.865475950000075 ], [ -82.032840522999948, 28.865476829000045 ], [ -82.032092432999946, 28.865477009000074 ], [ -82.031735745999981, 28.865477093000038 ], [ -82.031377322999958, 28.865476413000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033505296999977, 28.865475900000035 ], [ -82.033492259999946, 28.866464825000037 ], [ -82.033486333999974, 28.86692535800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035434975999976, 28.865504055000031 ], [ -82.035203256999978, 28.865499532000058 ], [ -82.03474198899994, 28.86548552000005 ], [ -82.034531099999981, 28.865479462000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036218654999971, 28.865527912000061 ], [ -82.035733086999983, 28.865517728000043 ], [ -82.035434975999976, 28.865504055000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035434975999976, 28.865504055000031 ], [ -82.035434357999975, 28.866494228000079 ], [ -82.035438065999983, 28.867315605000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018224782999937, 28.888095175000046 ], [ -82.018229448999989, 28.888064833000044 ], [ -82.018230871999947, 28.888044187000048 ], [ -82.018194943999958, 28.887776729000052 ], [ -82.018174741999985, 28.887543525000069 ], [ -82.018171829999972, 28.887353412000039 ], [ -82.018174678999969, 28.887178508000034 ], [ -82.018174662999968, 28.887087254000051 ], [ -82.018168897999942, 28.887059371000078 ], [ -82.018156183999963, 28.887023937000038 ], [ -82.018134645999965, 28.886985336000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018275660999961, 28.888435079000033 ], [ -82.018251228999986, 28.888213246000078 ], [ -82.018245124999964, 28.888181939000049 ], [ -82.018224782999937, 28.888095175000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015918674999966, 28.887640947000079 ], [ -82.015903423999987, 28.88760405000005 ], [ -82.015901132999943, 28.88758593700004 ], [ -82.015900367999961, 28.88756111400005 ], [ -82.015897433999953, 28.887335534000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015918674999966, 28.887640947000079 ], [ -82.015930106999974, 28.887622161000024 ], [ -82.015952209999966, 28.887607399000046 ], [ -82.015976602999956, 28.887600016000079 ], [ -82.016005567999969, 28.887594646000025 ], [ -82.016038345999959, 28.887593300000049 ], [ -82.017369375999976, 28.887596547000044 ], [ -82.01736959699997, 28.887596547000044 ], [ -82.017393735999974, 28.887594685000067 ], [ -82.017417140999953, 28.88758916200004 ], [ -82.017439100999979, 28.887580146000062 ], [ -82.017458947999955, 28.887567912000065 ], [ -82.017476079999938, 28.887552830000061 ], [ -82.017489975999979, 28.887535359000026 ], [ -82.017500212999948, 28.887516030000029 ], [ -82.017506480999941, 28.887495429000069 ], [ -82.017508588999988, 28.887474183000052 ], [ -82.017507602999956, 28.887459647000071 ], [ -82.017507543999955, 28.887107938000042 ], [ -82.017507494999961, 28.887037458000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015898173999972, 28.888175640000043 ], [ -82.015896579999946, 28.887711391000039 ], [ -82.015898100999948, 28.887691265000058 ], [ -82.015906481999934, 28.887665100000049 ], [ -82.015918674999966, 28.887640947000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015209095999978, 28.888175535000073 ], [ -82.015898173999972, 28.888175640000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015898173999972, 28.888175640000043 ], [ -82.018092667999952, 28.888176593000026 ], [ -82.01811807699994, 28.888173906000077 ], [ -82.018141452999942, 28.888168535000034 ], [ -82.018169908999937, 28.888156009000056 ], [ -82.018191250999962, 28.888142587000061 ], [ -82.018209542999955, 28.888122906000035 ], [ -82.018224782999937, 28.888095175000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016787732999944, 28.885739619000049 ], [ -82.016811935999954, 28.885555312000065 ], [ -82.016832173999944, 28.885450903000049 ], [ -82.016837798999973, 28.885397911000041 ], [ -82.016840831999957, 28.88531593700003 ], [ -82.016843548999987, 28.884223484000074 ], [ -82.016847636999955, 28.884186202000024 ], [ -82.01685976999994, 28.884149819000072 ], [ -82.016879504999963, 28.884116114000051 ], [ -82.016906131999974, 28.884086306000029 ], [ -82.016938686999936, 28.884061470000063 ], [ -82.016975994999939, 28.88404250800005 ], [ -82.017016704999946, 28.884030101000064 ], [ -82.017059347999975, 28.884024699000065 ], [ -82.017083665999962, 28.884024826000029 ], [ -82.017569748999961, 28.884027309000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977652090999982, 28.871343581000076 ], [ -81.977666469999974, 28.871317015000045 ], [ -81.977673662999962, 28.871287918000064 ], [ -81.977679419999959, 28.871244903000047 ], [ -81.977689513999962, 28.87109055600007 ], [ -81.97770763799997, 28.870760629000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975383245999978, 28.871884516000023 ], [ -81.975522339999941, 28.871727029000056 ], [ -81.975822900999958, 28.871419118000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975383245999978, 28.871884516000023 ], [ -81.975460783999949, 28.87194618500007 ], [ -81.975728859999947, 28.87212465500005 ], [ -81.97612795799995, 28.872355403000029 ], [ -81.976397115999987, 28.872514367000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975003676999961, 28.872382602000073 ], [ -81.975051127999961, 28.872296264000056 ], [ -81.975152493999985, 28.872143514000072 ], [ -81.975266793999936, 28.872003102000065 ], [ -81.975383245999978, 28.871884516000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975003676999961, 28.872382602000073 ], [ -81.975472329999945, 28.872672593000061 ], [ -81.975781220999977, 28.872855196000046 ], [ -81.97602283699996, 28.872970579000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974875304999955, 28.87276117600004 ], [ -81.974895807999985, 28.872673884000051 ], [ -81.974933566999937, 28.872547692000069 ], [ -81.975003676999961, 28.872382602000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975760427999944, 28.870791771000029 ], [ -81.975849233999952, 28.87086286400006 ], [ -81.975926507999986, 28.870925834000047 ], [ -81.976028003999943, 28.871003022000025 ], [ -81.976121425999963, 28.871074118000024 ], [ -81.976244837999957, 28.871158417000061 ], [ -81.976375169999983, 28.871246781000025 ], [ -81.976494327999944, 28.871318557000052 ], [ -81.976658591999978, 28.871410998000044 ], [ -81.976866102999963, 28.871524273000034 ], [ -81.97705603199995, 28.87161229700007 ], [ -81.977181597999959, 28.871663335000051 ], [ -81.977307629999984, 28.871714519000079 ], [ -81.977441289999945, 28.871763883000028 ], [ -81.977589320999982, 28.871819575000075 ], [ -81.977770407999969, 28.871881597000026 ], [ -81.977921315999936, 28.871925903000033 ], [ -81.978033701999948, 28.871974586000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978033701999948, 28.871974586000078 ], [ -81.978142642999956, 28.872011969000027 ], [ -81.978312237999944, 28.872048686000028 ], [ -81.97850914199995, 28.872082877000025 ], [ -81.978674129999945, 28.872102488000053 ], [ -81.979030202, 28.872123439000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958898591999969, 28.928628770000046 ], [ -81.959187120999957, 28.928802647000055 ], [ -81.959230901999945, 28.928838780000035 ], [ -81.959269207999967, 28.928874912000026 ], [ -81.959305352999934, 28.928922775000046 ], [ -81.959330771999987, 28.928970525000068 ], [ -81.959344315999942, 28.929030207000039 ], [ -81.959342600999946, 28.929082426000036 ], [ -81.959329011999955, 28.929136132000053 ], [ -81.959295070999985, 28.929194307000046 ], [ -81.95923073299997, 28.929269814000065 ], [ -81.959159529999965, 28.929361297000071 ], [ -81.959011640999961, 28.92956593200006 ], [ -81.958912109999972, 28.929725013000052 ], [ -81.95883583899996, 28.929852769000036 ], [ -81.958792664999976, 28.929927400000054 ], [ -81.958736538999972, 28.930031124000038 ], [ -81.958709193999937, 28.930082987000048 ], [ -81.958686173, 28.930112079000025 ], [ -81.958638700999984, 28.930150018000063 ], [ -81.958573971999954, 28.930180362000044 ], [ -81.958524168999986, 28.93019427400003 ], [ -81.958467542999983, 28.930204366000055 ], [ -81.958401392999974, 28.930200551000041 ], [ -81.958355375999986, 28.930187885000066 ], [ -81.958297860999949, 28.930167625000024 ], [ -81.958234593999975, 28.930142302000036 ], [ -81.958110936999958, 28.930091658000038 ], [ -81.957962711999983, 28.93002946200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958898591999969, 28.928628770000046 ], [ -81.958844932999966, 28.928673655000068 ], [ -81.958787383999947, 28.928738160000023 ], [ -81.95872983299995, 28.928806460000033 ], [ -81.958665089999954, 28.928879818000041 ], [ -81.958568691999972, 28.928996183000038 ], [ -81.95852264499996, 28.929064487000062 ], [ -81.958464009999943, 28.929147350000051 ], [ -81.958414549999986, 28.929216778000068 ], [ -81.958361177999961, 28.929295142000058 ], [ -81.958314842999982, 28.929365945000029 ], [ -81.958264596999982, 28.929446030000065 ], [ -81.958221191999939, 28.929518210000026 ], [ -81.958174460999942, 28.929600013000027 ], [ -81.958134181999981, 28.929673570000034 ], [ -81.958090967999965, 28.929756750000024 ], [ -81.958053813999982, 28.929831681000053 ], [ -81.958018027999969, 28.929907301000071 ], [ -81.957962711999983, 28.93002946200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956652165999969, 28.929480246000026 ], [ -81.956496501999936, 28.929428964000067 ], [ -81.956424271999936, 28.929401458000029 ], [ -81.956355943999938, 28.929373953000038 ], [ -81.95630323599994, 28.929353324000033 ], [ -81.956244674999937, 28.929320669000049 ], [ -81.956188076999979, 28.929262249000033 ], [ -81.956164658999967, 28.929233041000032 ], [ -81.956145148999951, 28.929196963000038 ], [ -81.95613541299997, 28.929135124000027 ], [ -81.956133491999935, 28.92905954500003 ], [ -81.956174785999963, 28.928365614000029 ], [ -81.956178726999951, 28.928281449000053 ], [ -81.956182647999981, 28.928243660000078 ], [ -81.956186569999943, 28.928202438000028 ], [ -81.956192447999967, 28.928156063000074 ], [ -81.956208092999987, 28.928094231000046 ], [ -81.956231233999972, 28.92803561900007 ], [ -81.956261456999982, 28.927977431000045 ], [ -81.956284303999951, 28.927941383000075 ], [ -81.956320162999987, 28.92788566400003 ], [ -81.956370258999982, 28.927829760000066 ], [ -81.956434711999975, 28.927778251000063 ], [ -81.956526503999953, 28.927714727000023 ], [ -81.956641733999959, 28.927634032000071 ], [ -81.956780393999964, 28.92755162800006 ], [ -81.956938509999986, 28.927457606000075 ], [ -81.957108482999956, 28.927367940000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953947176999975, 28.923838905000025 ], [ -81.953952841999978, 28.924230179000062 ], [ -81.953957927999966, 28.924607046000062 ], [ -81.953958169999964, 28.924626180000075 ], [ -81.953958411999963, 28.924645799000075 ], [ -81.953958653999962, 28.924665901000026 ], [ -81.953958169999964, 28.924682371000074 ], [ -81.953958411999963, 28.924701263000031 ], [ -81.953958653999962, 28.92472233500007 ], [ -81.953960108, 28.924748977000036 ], [ -81.953962486999956, 28.924767393000025 ], [ -81.953969260999941, 28.92478529400006 ], [ -81.953974340999935, 28.92480170400006 ], [ -81.953983491999963, 28.924822221000056 ], [ -81.953992109999945, 28.924843732000056 ], [ -81.954001441999935, 28.92486137700007 ], [ -81.95401160199998, 28.924885246000031 ], [ -81.954023460999963, 28.924909116000038 ], [ -81.954045484999938, 28.924947906000057 ], [ -81.954075985999964, 28.924985206000031 ], [ -81.954120045999957, 28.925032952000038 ], [ -81.954150552999977, 28.925059812000029 ], [ -81.954170891, 28.925076227000034 ], [ -81.954196606999972, 28.925096944000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014295537999942, 28.859156745000064 ], [ -82.01605779199997, 28.859162593000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015744148999943, 28.860113727000055 ], [ -82.015963243999977, 28.859949393000079 ], [ -82.015999079999972, 28.859892081000055 ], [ -82.016021684999941, 28.859825456000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996826514999952, 28.85813360700007 ], [ -81.997086836999983, 28.858241279000026 ], [ -81.997388855999986, 28.858344891000058 ], [ -81.997479613999985, 28.858376296000074 ], [ -81.99757126999998, 28.858405610000034 ], [ -81.997677991999979, 28.858438367000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994107390999943, 28.861162316000048 ], [ -81.994210797999983, 28.861167409000075 ], [ -81.994300944999964, 28.861174298000037 ], [ -81.994390138999961, 28.861187727000072 ], [ -81.994477764999942, 28.861207600000057 ], [ -81.995401812999944, 28.861453480000023 ], [ -81.995486556999936, 28.86147941400003 ], [ -81.995568601999935, 28.861511378000046 ], [ -81.995699043999934, 28.861580952000054 ], [ -81.995797078999942, 28.861647700000049 ], [ -81.995905543999982, 28.861744692000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994963313999961, 28.860648423000043 ], [ -81.994969821999973, 28.860659310000074 ], [ -81.994980885999951, 28.860673634000079 ], [ -81.99499455299997, 28.860687386000052 ], [ -81.995013426999947, 28.860700565000059 ], [ -81.995028396999942, 28.860709160000056 ], [ -81.995047270999976, 28.86071718200003 ], [ -81.99506626699997, 28.860722051000039 ], [ -81.996218777999957, 28.861028718000057 ], [ -81.996241403999989, 28.861032887000079 ], [ -81.996264506999978, 28.861033539000061 ], [ -81.99628159699995, 28.861031397000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994963313999961, 28.860648423000043 ], [ -81.994958107999935, 28.860632380000027 ], [ -81.994956155999944, 28.860621494000043 ], [ -81.99495550499995, 28.860611179000045 ], [ -81.994956157, 28.860600866000027 ], [ -81.994958761999953, 28.860587115000044 ], [ -81.994986751999988, 28.860496587000057 ], [ -81.995131911999977, 28.860092078000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990715191999982, 28.863093344000049 ], [ -81.991254053999967, 28.863091232000045 ], [ -81.991383182999982, 28.863088374000029 ], [ -81.991512066999974, 28.86308082100004 ], [ -81.991640487999973, 28.863068582000039 ], [ -81.991768221999962, 28.863051683000037 ], [ -81.991892898999936, 28.863032861000079 ], [ -81.991971867999951, 28.863018280000063 ], [ -81.992049398999939, 28.862998610000034 ], [ -81.992125072999954, 28.862973963000059 ], [ -81.992198475999942, 28.862944471000048 ], [ -81.992524667999987, 28.862800382000046 ], [ -81.992612776999977, 28.862764240000047 ], [ -81.992703116999962, 28.862732660000063 ], [ -81.992939026999977, 28.862657094000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990635212999962, 28.862463425000044 ], [ -81.990730398999972, 28.862458200000049 ], [ -81.991083755999966, 28.862453837000032 ], [ -81.991220061999968, 28.862450153000054 ], [ -81.991355963, 28.862440182000057 ], [ -81.991491081999982, 28.86242395000005 ], [ -81.991625047999946, 28.862401500000033 ], [ -81.991757490999987, 28.862372897000057 ], [ -81.991888047999964, 28.862338219000037 ], [ -81.99201635999998, 28.862297560000059 ], [ -81.992142071999979, 28.862251034000053 ], [ -81.992288082999949, 28.862192980000032 ], [ -81.992429613999946, 28.862141768000072 ], [ -81.992573233999963, 28.862095280000062 ], [ -81.992691187999981, 28.86205749800007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990511875999971, 28.861844392000023 ], [ -81.990596739999944, 28.861831334000044 ], [ -81.990688102999968, 28.861820745000045 ], [ -81.990780154999982, 28.861816966000049 ], [ -81.991080527999941, 28.861815788000058 ], [ -81.991192849999948, 28.861812383000029 ], [ -81.991304738999986, 28.861803055000053 ], [ -81.991415791999941, 28.861787843000059 ], [ -81.991525607999961, 28.861766799000065 ], [ -81.991633795999974, 28.861739998000076 ], [ -81.991739964999965, 28.861707539000065 ], [ -81.991843732999939, 28.861669536000079 ], [ -81.991989740999941, 28.861611484000036 ], [ -81.992097759999979, 28.861570672000028 ], [ -81.992207446999942, 28.861533466000026 ], [ -81.992443352999942, 28.861457902000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991281223999977, 28.861182668000026 ], [ -81.99127195899996, 28.86093171400006 ], [ -81.991273536999984, 28.86086836100003 ], [ -81.991281734999973, 28.860805404000075 ], [ -81.99129647999996, 28.860743379000041 ], [ -81.991317650999974, 28.86068281200005 ], [ -81.991345065999951, 28.860624219000044 ], [ -81.991378492999957, 28.860568096000065 ], [ -81.991453211999954, 28.860455577000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991123128999959, 28.858239767000043 ], [ -81.99134169499996, 28.858277360000045 ], [ -81.991465352999967, 28.858304105000059 ], [ -81.991569784999967, 28.858328635000078 ], [ -81.991671855999982, 28.85835626000005 ], [ -81.991771544999949, 28.858389961000057 ], [ -81.991868385999965, 28.858429578000028 ], [ -81.991961925999988, 28.858474929000067 ], [ -81.99209633199996, 28.85854852500006 ], [ -81.992227491999984, 28.858626528000059 ], [ -81.992953199999988, 28.859075884000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99057023599994, 28.859470131000023 ], [ -81.990564997999968, 28.859464185000036 ], [ -81.990554889999942, 28.859447939000063 ], [ -81.990547823999975, 28.859430490000079 ], [ -81.990543977999948, 28.859412278000036 ], [ -81.990543448999972, 28.859393760000046 ], [ -81.990552043999969, 28.859306160000074 ], [ -81.990566980999972, 28.859219221000046 ], [ -81.990588198999944, 28.859133303000078 ], [ -81.990615611999942, 28.859048752000035 ], [ -81.990635039999972, 28.858996631000025 ], [ -81.990658651999979, 28.85894877000004 ], [ -81.990672320999977, 28.858914614000071 ], [ -81.99069002899995, 28.858881993000068 ], [ -81.990698663999979, 28.858867602000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99057023599994, 28.859470131000023 ], [ -81.990577893999955, 28.859478823000074 ], [ -81.990593255999954, 28.859491482000067 ], [ -81.990610695999976, 28.859501846000057 ], [ -81.990629776999981, 28.859509655000068 ], [ -81.99072532699995, 28.859540913000046 ], [ -81.990839279999989, 28.859575550000045 ], [ -81.990954946999977, 28.859605471000066 ], [ -81.991072072999941, 28.859630608000032 ], [ -81.991144470999984, 28.859644579000076 ], [ -81.991250472, 28.859668334000048 ], [ -81.991354429999944, 28.859698280000032 ], [ -81.991455877999954, 28.859734281000044 ], [ -81.991554363999967, 28.859776177000072 ], [ -81.991700317999971, 28.859836234000056 ], [ -81.991727218999984, 28.859839290000025 ], [ -81.991749781999943, 28.859838529000058 ], [ -81.991775816999962, 28.85983471000003 ], [ -81.991795775999947, 28.859827835000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987389876999941, 28.851342359000057 ], [ -81.987620091999986, 28.851443413000027 ], [ -81.987748555999985, 28.851509023000062 ], [ -81.987806526999975, 28.851542254000037 ], [ -81.987861553999949, 28.85157915800005 ], [ -81.987913340999967, 28.851619536000044 ], [ -81.98800941199994, 28.85169690400005 ], [ -81.988109061999978, 28.851770679000026 ], [ -81.988212116999989, 28.851840735000053 ], [ -81.988318399999969, 28.851906949000067 ], [ -81.988427722999973, 28.851969207000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987103304999948, 28.852084941000044 ], [ -81.987179115999936, 28.852116054000078 ], [ -81.987293489999956, 28.852144538000061 ], [ -81.987424928999985, 28.85216272200006 ], [ -81.987484448999965, 28.852179315000058 ], [ -81.987541514999975, 28.852201616000059 ], [ -81.987595419999934, 28.852229347000048 ], [ -81.987645499999985, 28.852262170000074 ], [ -81.987692976999938, 28.852297054000076 ], [ -81.987741753999956, 28.85233746800003 ], [ -81.987784724999983, 28.852382700000078 ], [ -81.987817749999977, 28.852422001000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985205883999981, 28.85294211300004 ], [ -81.985055757999987, 28.852525637000042 ], [ -81.985018508999985, 28.852412402000027 ], [ -81.984987835999959, 28.852297648000047 ], [ -81.984963822999987, 28.852181669000061 ], [ -81.984946526999977, 28.852064767000059 ], [ -81.984935994999944, 28.85194724400003 ], [ -81.984932255999979, 28.851829401000032 ], [ -81.984935316999952, 28.851711543000079 ], [ -81.984945169999946, 28.851593973000035 ], [ -81.984961790999989, 28.851476995000041 ], [ -81.984985135999978, 28.851360911000029 ], [ -81.985015144999977, 28.851246021000065 ], [ -81.985035570999969, 28.851185671000053 ], [ -81.985061163999944, 28.851126869000041 ], [ -81.985091777999969, 28.85106995700005 ], [ -81.985127231999968, 28.851015266000047 ], [ -81.985190597999974, 28.850925646000064 ], [ -81.98524363599995, 28.850872821000053 ], [ -81.985354654999981, 28.850807854000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985737693999965, 28.852257073000033 ], [ -81.98586047799995, 28.852243892000047 ], [ -81.985882330999971, 28.852242938000074 ], [ -81.986324067999988, 28.852191282000035 ], [ -81.986345035999989, 28.852187291000064 ], [ -81.986435749999941, 28.852175025000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986435749999941, 28.852175025000065 ], [ -81.986441978999949, 28.852000101000044 ], [ -81.986452736999979, 28.851927363000073 ], [ -81.986471503999951, 28.851855898000053 ], [ -81.986498105999942, 28.851786384000036 ], [ -81.986810351999964, 28.851085588000046 ], [ -81.986840534999942, 28.851012737000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011335552999981, 28.885879484000043 ], [ -82.011291781999944, 28.886291541000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011291781999944, 28.886291541000048 ], [ -82.011479302999987, 28.886308297000028 ], [ -82.011564677999957, 28.886312315000055 ], [ -82.011656912999968, 28.886317674000054 ], [ -82.011746860999949, 28.886319008000044 ], [ -82.011838938999972, 28.886314958000071 ], [ -82.011880970999982, 28.886309157000028 ], [ -82.011883533999935, 28.886308477000057 ], [ -82.011952169999972, 28.886294154000041 ], [ -82.012022229999957, 28.886286940000048 ], [ -82.012092768999935, 28.886286934000054 ], [ -82.012162831999945, 28.886294135000071 ], [ -82.012221376999946, 28.886305871000047 ], [ -82.012274017999971, 28.886318328000073 ], [ -82.012343692999934, 28.886341278000032 ], [ -82.012410043999978, 28.886372618000053 ], [ -82.012462643999982, 28.886404146000075 ], [ -82.012510671999962, 28.886441710000042 ], [ -82.012548027999969, 28.886474580000026 ], [ -82.012576234999983, 28.88650476600003 ], [ -82.012605205999989, 28.886537636000071 ], [ -82.01264256099995, 28.886577886000055 ], [ -82.012695164999968, 28.88662484200006 ], [ -82.01274313, 28.886660775000053 ], [ -82.012769608999974, 28.886677970000051 ], [ -82.012864392999973, 28.886730373000034 ], [ -82.012961978999954, 28.886773081000058 ], [ -82.013024487999985, 28.886797898000054 ], [ -82.013102536999952, 28.88682704200005 ], [ -82.013219399999969, 28.88685967400005 ], [ -82.01333852099998, 28.886885210000059 ], [ -82.013398074999941, 28.886895176000053 ], [ -82.013663152999982, 28.886920864000047 ], [ -82.013919792999957, 28.886940713000058 ], [ -82.014097396999944, 28.886940694000032 ], [ -82.014663509999934, 28.886934120000035 ], [ -82.014963214999966, 28.886927575000072 ], [ -82.01504831799997, 28.886930822000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011291781999944, 28.886291541000048 ], [ -82.01126661099994, 28.886595502000034 ], [ -82.011203077999937, 28.887223436000056 ], [ -82.011163843999952, 28.887623168000061 ], [ -82.011148928999944, 28.887763721000056 ], [ -82.011148935999984, 28.887834088000034 ], [ -82.011154580999971, 28.887914481000053 ], [ -82.011169029999962, 28.888003446000027 ], [ -82.011185381999951, 28.888084058000061 ], [ -82.011209333999943, 28.888158310000051 ], [ -82.011234423999952, 28.888226542000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011234423999952, 28.888226542000041 ], [ -82.011297664999972, 28.888356552000062 ], [ -82.011352277999947, 28.888443527000049 ], [ -82.011406491999935, 28.888517468000032 ], [ -82.011474259999943, 28.888590215000079 ], [ -82.011524030999965, 28.888641741000072 ], [ -82.011605724999981, 28.888711856000043 ], [ -82.011696529999938, 28.888779830000033 ], [ -82.011770961999957, 28.888827332000062 ], [ -82.011925290999955, 28.888904280000077 ], [ -82.012078713999983, 28.888965854000048 ], [ -82.012223653999968, 28.889003849000062 ], [ -82.012338915999976, 28.889024271000039 ], [ -82.012463593999939, 28.889037379000058 ], [ -82.013002964999941, 28.889090999000075 ], [ -82.013187270999936, 28.889110063000032 ], [ -82.013422218999949, 28.889135023000051 ], [ -82.01363827299997, 28.889171217000069 ], [ -82.013775435999946, 28.889206612000066 ], [ -82.01390392199994, 28.889248734000034 ], [ -82.014045641999985, 28.889299834000042 ], [ -82.014194333999967, 28.889371379000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014744313999984, 28.889759626000057 ], [ -82.014823087999957, 28.889855314000044 ], [ -82.014843420999966, 28.88988512800006 ], [ -82.014856513999973, 28.889915162000079 ], [ -82.014869177999969, 28.88995191500004 ], [ -82.014870537999968, 28.889988888000062 ], [ -82.014893561999941, 28.890253066000071 ], [ -82.014897696999981, 28.890370540000049 ], [ -82.014903870999945, 28.890406988000052 ], [ -82.014915324999947, 28.890446869000073 ], [ -82.014939890999983, 28.890483945000028 ], [ -82.01498104999996, 28.890524685000059 ], [ -82.015032492999978, 28.890551842000036 ], [ -82.01507879199994, 28.890569945000038 ], [ -82.015155954999955, 28.890574464000053 ], [ -82.015999579999971, 28.890569839000079 ], [ -82.01732160499995, 28.890574203000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015582049999978, 28.890201103000038 ], [ -82.015565090999985, 28.889970285000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014744313999984, 28.889759626000057 ], [ -82.015010178999944, 28.889561094000044 ], [ -82.015158847999942, 28.889457485000037 ], [ -82.015218742999934, 28.889428293000037 ], [ -82.015279722999935, 28.889408011000057 ], [ -82.015362386999982, 28.889392497000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015565090999985, 28.889970285000061 ], [ -82.015542999, 28.889825463000079 ], [ -82.015526417999979, 28.889747894000038 ], [ -82.01550879399997, 28.889703767000071 ], [ -82.015477614999952, 28.889641752000045 ], [ -82.015445080999939, 28.889579737000076 ], [ -82.015408484999966, 28.889527263000048 ], [ -82.015389504999973, 28.889487906000056 ], [ -82.015374591999944, 28.889449743000057 ], [ -82.015362386999982, 28.889392497000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015362386999982, 28.889392497000074 ], [ -82.015392200999941, 28.889386529000035 ], [ -82.015453182999977, 28.889381752000077 ], [ -82.015594122999971, 28.889382928000032 ], [ -82.016157882999948, 28.88938405500005 ], [ -82.016552369999943, 28.889385684000047 ], [ -82.016569140999934, 28.88938702400003 ], [ -82.016588960999968, 28.889391717000024 ], [ -82.01661030799994, 28.889404461000026 ], [ -82.016627079999978, 28.889415864000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016667354999981, 28.889969023000049 ], [ -82.016659105999963, 28.889478922000023 ], [ -82.016658340999982, 28.889463493000051 ], [ -82.016653764999944, 28.889448734000041 ], [ -82.016641565999976, 28.889431964000039 ], [ -82.016627079999978, 28.889415864000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016627079999978, 28.889415864000057 ], [ -82.016652993999969, 28.889397076000023 ], [ -82.016660613999989, 28.889378291000071 ], [ -82.016662895999957, 28.889344077000032 ], [ -82.016664208999941, 28.889135630000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001815564999958, 28.889050348000069 ], [ -82.00278545599997, 28.889124071000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001772615999982, 28.889663078000069 ], [ -82.001802435999934, 28.889590776000034 ], [ -82.001814384999989, 28.889543444000026 ], [ -82.001823946999934, 28.889506629000039 ], [ -82.001828648999947, 28.889443152000069 ], [ -82.001823943999966, 28.889336229000037 ], [ -82.001819146999935, 28.889200540000047 ], [ -82.001815564999958, 28.889050348000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001815564999958, 28.889050348000069 ], [ -82.001810789999979, 28.888921804000063 ], [ -82.001809590999983, 28.888741938000067 ], [ -82.001811979999957, 28.888586265000072 ], [ -82.00181914999996, 28.888548398000069 ], [ -82.001835880999977, 28.888509480000039 ], [ -82.001866953999979, 28.888465302000043 ], [ -82.001896832999989, 28.88843795300005 ], [ -82.001943730999983, 28.888414169000043 ], [ -82.001991249999946, 28.88839587800004 ], [ -82.002045201999977, 28.88839150900003 ], [ -82.002226938999968, 28.888394172000062 ], [ -82.002467743999944, 28.88840216400007 ], [ -82.002732778999984, 28.888398161000055 ], [ -82.003035674999978, 28.888372830000037 ], [ -82.003208325999935, 28.888351500000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003227488999983, 28.889497471000027 ], [ -82.003223487999946, 28.888887316000023 ], [ -82.003217490999987, 28.888577824000038 ], [ -82.003208325999935, 28.888351500000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003208325999935, 28.888351500000056 ], [ -82.003182573999936, 28.888171118000059 ], [ -82.003163692999976, 28.888059266000027 ], [ -82.00313500599998, 28.887933046000057 ], [ -82.003077632999975, 28.887752129000035 ], [ -82.003053727999941, 28.887684811000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003053727999941, 28.887684811000042 ], [ -82.002952501999971, 28.887419846000057 ], [ -82.002860098999975, 28.887178879000032 ], [ -82.002732207999941, 28.88679916500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003194758999939, 28.886664716000041 ], [ -82.002732207999941, 28.88679916500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002732207999941, 28.88679916500007 ], [ -82.002628223999977, 28.886499391000029 ], [ -82.002556508999987, 28.886260623000055 ], [ -82.002412007999965, 28.88570468000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004521495999938, 28.887712598000064 ], [ -82.004343184999982, 28.887757176000036 ], [ -82.003851686999951, 28.887840616000062 ], [ -82.00375463599994, 28.887849770000059 ], [ -82.003715847999956, 28.887842572000068 ], [ -82.003677601999982, 28.887823640000079 ], [ -82.003644136999981, 28.887804707000043 ], [ -82.00361664899998, 28.887781567000047 ], [ -82.003592743999945, 28.887758427000051 ], [ -82.003577205999989, 28.887731080000037 ], [ -82.003475609999953, 28.887456551000071 ], [ -82.003406094999946, 28.887281739000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002412007999965, 28.88570468000006 ], [ -82.00294490999994, 28.885591642000065 ], [ -82.003514363999955, 28.885458954000057 ], [ -82.004159148999975, 28.885282368000048 ], [ -82.004602534999947, 28.885149821000027 ], [ -82.005275472999983, 28.884924994000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006205499999965, 28.884484990000033 ], [ -82.006211748999988, 28.884481584000071 ], [ -82.006246331999989, 28.884462736000046 ], [ -82.006432030999974, 28.884352971000055 ], [ -82.006612992999976, 28.884237240000061 ], [ -82.006785957999966, 28.884114713000031 ], [ -82.006953264999936, 28.883987431000037 ], [ -82.007120571999963, 28.883852786000034 ], [ -82.00728070699995, 28.883714987000076 ], [ -82.007433670999944, 28.883570875000032 ], [ -82.007584243999986, 28.883422555000038 ], [ -82.007724058999941, 28.88327423800007 ], [ -82.007856702999959, 28.883116453000071 ], [ -82.007990168999982, 28.882955862000074 ], [ -82.008111406999944, 28.88279041100003 ], [ -82.008190569999954, 28.882674610000038 ], [ -82.008197271999961, 28.882664140000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007782392999957, 28.882444187000033 ], [ -82.008197271999961, 28.882664140000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008197271999961, 28.882664140000031 ], [ -82.00828450399996, 28.882531601000039 ], [ -82.008415599999978, 28.88231625800006 ], [ -82.008514186999946, 28.882133571000054 ], [ -82.008573207999973, 28.882015640000077 ], [ -82.008617132999973, 28.881919175000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011007739999968, 28.888768829000071 ], [ -82.010967049999977, 28.88871256300007 ], [ -82.010914957999944, 28.888636172000076 ], [ -82.010878059999982, 28.888569329000063 ], [ -82.010858885999937, 28.888528905000044 ], [ -82.010792685999945, 28.888407328000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011511277999944, 28.889319175000026 ], [ -82.011007739999968, 28.888768829000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010537584999952, 28.889080888000024 ], [ -82.010808739999959, 28.888891901000079 ], [ -82.011007739999968, 28.888768829000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006286670999941, 28.890435253000078 ], [ -82.006520664999982, 28.890334510000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006531104999965, 28.891775993000067 ], [ -82.006525364999959, 28.891470566000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00579831999994, 28.89190061100004 ], [ -82.005801480999935, 28.891397128000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005801480999935, 28.891397128000051 ], [ -82.005792478999979, 28.890753978000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007188462999977, 28.891569384000036 ], [ -82.007568792999962, 28.891625642000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007188462999977, 28.891569384000036 ], [ -82.007207292999965, 28.891513531000044 ], [ -82.007217625999942, 28.891472373000056 ], [ -82.007224562999966, 28.891444743000079 ], [ -82.007227259, 28.891328995000038 ], [ -82.007215519999988, 28.890003912000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008204701999944, 28.892447445000073 ], [ -82.008678654999983, 28.892443378000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008204701999944, 28.892447445000073 ], [ -82.008192247999943, 28.892405671000063 ], [ -82.008179197999937, 28.892361896000068 ], [ -82.008156883999959, 28.892310007000049 ], [ -82.008128193999937, 28.892265131000045 ], [ -82.008091537999974, 28.892217448000054 ], [ -82.008043726999972, 28.892175378000047 ], [ -82.007994321999945, 28.89213611200006 ], [ -82.007919418999961, 28.892094043000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008185667999953, 28.893569413000023 ], [ -82.008618216999935, 28.893560405000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01025158799996, 28.89325952300004 ], [ -82.010136121999949, 28.893350498000075 ], [ -82.010048594999944, 28.89343901500007 ], [ -82.010015143999965, 28.893482337000023 ], [ -82.009984869999982, 28.893537035000065 ], [ -82.009964157999946, 28.893602953000027 ], [ -82.009956197999941, 28.893680088000053 ], [ -82.009955507999962, 28.893819286000053 ], [ -82.009955520999938, 28.893961884000078 ], [ -82.009946668999987, 28.894023692000076 ], [ -82.009929141999976, 28.894061559000079 ], [ -82.009910021999985, 28.894093817000055 ], [ -82.009878151999942, 28.894124674000068 ], [ -82.00983075299996, 28.894153664000044 ], [ -82.009772976999955, 28.894170963000079 ], [ -82.009709691999944, 28.894173341000055 ], [ -82.009495503999972, 28.894174995000071 ], [ -82.00921612999997, 28.89417501500003 ], [ -82.008899504999988, 28.894173397000031 ], [ -82.008545630999947, 28.89417669900007 ], [ -82.008294192999983, 28.894176715000071 ], [ -82.008069378999949, 28.894179489000066 ], [ -82.00787814399996, 28.894180904000052 ], [ -82.007774556999948, 28.894165272000066 ], [ -82.00769646599997, 28.894136035000031 ], [ -82.007653434999952, 28.894109391000029 ], [ -82.007605622999961, 28.894064516000071 ], [ -82.007567372999972, 28.894011224000053 ], [ -82.007548244999953, 28.893967749000069 ], [ -82.007540272999961, 28.89392287000004 ], [ -82.007545050999965, 28.893866772000024 ], [ -82.007554609999943, 28.893821892000062 ], [ -82.007576916999938, 28.893774208000025 ], [ -82.007613564999986, 28.893697071000076 ], [ -82.007661367999958, 28.893621335000034 ], [ -82.007796852999945, 28.893440803000033 ], [ -82.007835056999966, 28.89339132200007 ], [ -82.007904864999944, 28.893286725000053 ], [ -82.007942573999969, 28.893215270000042 ], [ -82.007992851999973, 28.893094796000071 ], [ -82.008055696999975, 28.892917926000052 ], [ -82.008136200999957, 28.892746173000035 ], [ -82.008163286999945, 28.892685866000079 ], [ -82.008185592999951, 28.892621351000059 ], [ -82.008195627999953, 28.892572537000035 ], [ -82.008204707999937, 28.892518971000072 ], [ -82.008204701999944, 28.892447445000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007919418999961, 28.892094043000043 ], [ -82.007955053999979, 28.89200825100005 ], [ -82.007969016999937, 28.891936951000048 ], [ -82.007964345999937, 28.891736165000054 ], [ -82.007958612999971, 28.891456448000042 ], [ -82.007968171999948, 28.891407010000023 ], [ -82.007986096999957, 28.891363883000054 ], [ -82.008021947999964, 28.891317601000026 ], [ -82.00807047099994, 28.891287055000078 ], [ -82.008123535999971, 28.891265002000068 ], [ -82.008159391999982, 28.89125868900004 ], [ -82.008314448999954, 28.891255898000054 ], [ -82.008519317999969, 28.891259163000029 ], [ -82.008962579999945, 28.891259134000052 ], [ -82.009690796999962, 28.891259084000069 ], [ -82.01035755099997, 28.891257394000036 ], [ -82.010689064999951, 28.891255731000058 ], [ -82.010792601999981, 28.891262185000073 ], [ -82.010838817999968, 28.891277609000042 ], [ -82.010878660999936, 28.891304252000054 ], [ -82.010918154999956, 28.891337665000037 ], [ -82.010945599999957, 28.89137577200006 ], [ -82.010961538999936, 28.891406625000059 ], [ -82.010967916999959, 28.891438881000056 ], [ -82.010956772999975, 28.891545468000061 ], [ -82.010931232999951, 28.891731041000071 ], [ -82.010880976999943, 28.89201296400006 ], [ -82.010804652, 28.892367008000065 ], [ -82.010726458999955, 28.892662046000055 ], [ -82.010670598, 28.89278913000004 ], [ -82.010607286999971, 28.892904637000072 ], [ -82.010538617999941, 28.893006726000067 ], [ -82.010421293999968, 28.89313396700004 ], [ -82.01025158799996, 28.89325952300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007919418999961, 28.892094043000043 ], [ -82.007884358999945, 28.892075813000076 ], [ -82.007838142999958, 28.89206319300007 ], [ -82.007775991999949, 28.892050576000031 ], [ -82.007677186999956, 28.892036555000061 ], [ -82.007283563999977, 28.891979078000077 ], [ -82.006931373999976, 28.891927205000059 ], [ -82.006687549999981, 28.891893558000049 ], [ -82.006555280999976, 28.891889357000025 ], [ -82.00645269499995, 28.891893044000028 ], [ -82.006201501999954, 28.891897789000041 ], [ -82.006038954999951, 28.891902004000031 ], [ -82.00579831999994, 28.89190061100004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003314301999978, 28.890425504000063 ], [ -82.003259319999984, 28.890277807000075 ], [ -82.003235156999949, 28.890147098000057 ], [ -82.003229580999971, 28.890017597000053 ], [ -82.003229574999978, 28.889815 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003617325999983, 28.890911282000047 ], [ -82.003525541999977, 28.890766731000042 ], [ -82.003418475999979, 28.890619035000043 ], [ -82.003385762999983, 28.89057624700007 ], [ -82.00334034499997, 28.890492100000074 ], [ -82.003314301999978, 28.890425504000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00374908799995, 28.890216505000069 ], [ -82.003821993999964, 28.890196519000028 ], [ -82.003850676999946, 28.890193362000048 ], [ -82.003876970999954, 28.890192310000032 ], [ -82.003903264999963, 28.89019651600006 ], [ -82.003940221999983, 28.890205692000052 ], [ -82.00406417399995, 28.890248661000044 ], [ -82.004270762999965, 28.89032799000006 ], [ -82.00471603699998, 28.890486391000024 ], [ -82.005088910999973, 28.890631045000077 ], [ -82.005285368999978, 28.89069807900006 ], [ -82.005389613999967, 28.890726302000076 ], [ -82.005513902999951, 28.890747468000029 ], [ -82.005630173999975, 28.89075452000003 ], [ -82.005792478999979, 28.890753978000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00374908799995, 28.890216505000069 ], [ -82.003764626999953, 28.890273305000051 ], [ -82.003788532999977, 28.890325896000036 ], [ -82.003818412999976, 28.890376385000025 ], [ -82.003866223999978, 28.890441598000052 ], [ -82.003938232999985, 28.890539343000057 ], [ -82.004068543999949, 28.890726349000033 ], [ -82.004178183999954, 28.890872844000057 ], [ -82.004207188999942, 28.890905458000077 ], [ -82.004242726999962, 28.890945420000037 ], [ -82.004284560999963, 28.890983284000072 ], [ -82.004351493999934, 28.891032719000066 ], [ -82.004410977999953, 28.891067192000037 ], [ -82.004503572999965, 28.891107934000047 ], [ -82.00475014999995, 28.891195612000047 ], [ -82.004938591999974, 28.891262647000076 ], [ -82.005167126999936, 28.891327914000044 ], [ -82.005387642999949, 28.891373775000034 ], [ -82.005622190999986, 28.891396701000076 ], [ -82.005801480999935, 28.891397128000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003227488999983, 28.889497471000027 ], [ -82.00354946799996, 28.889499153000031 ], [ -82.003717987999948, 28.889499149000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003717987999948, 28.889499149000073 ], [ -82.003719699999976, 28.889770144000067 ], [ -82.003718007999964, 28.890057678000062 ], [ -82.003721593999956, 28.890108167000051 ], [ -82.003734743999985, 28.890167070000075 ], [ -82.00374908799995, 28.890216505000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003717987999948, 28.889499149000073 ], [ -82.003769378999948, 28.889497044000052 ], [ -82.003830334999975, 28.889500198000064 ], [ -82.003880097999968, 28.889508206000073 ], [ -82.003989025999942, 28.889531342000055 ], [ -82.004131758999961, 28.88958092300004 ], [ -82.004514883999946, 28.889723051000033 ], [ -82.004999424999937, 28.889904844000057 ], [ -82.00546518799996, 28.890076719000035 ], [ -82.005566604999956, 28.890106465000031 ], [ -82.005656750999947, 28.890116379000062 ], [ -82.00578941699996, 28.890125664000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00579831999994, 28.89190061100004 ], [ -82.005554497999981, 28.891878183000074 ], [ -82.005415853999978, 28.891857152000057 ], [ -82.005270835999966, 28.891829108000024 ], [ -82.005139869999937, 28.891798278000067 ], [ -82.005016762999958, 28.891761469000073 ], [ -82.004751424999938, 28.891671019000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004751424999938, 28.891671019000057 ], [ -82.00462592599996, 28.891622639000047 ], [ -82.004520746999958, 28.891582672000027 ], [ -82.004408396999963, 28.891540602000077 ], [ -82.004276923999953, 28.891489066000076 ], [ -82.004182501999935, 28.891446995000024 ], [ -82.00410242099997, 28.891402821000042 ], [ -82.004020584999978, 28.891350121000073 ], [ -82.003951821999976, 28.891299745000026 ], [ -82.003892060999988, 28.891245050000066 ], [ -82.003841859999966, 28.891196666000042 ], [ -82.003788853999936, 28.891138201000047 ], [ -82.003617325999983, 28.890911282000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004470567999988, 28.892029708000052 ], [ -82.004510008999944, 28.892007617000047 ], [ -82.004541082999935, 28.891983424000045 ], [ -82.004569766999964, 28.89196028300006 ], [ -82.004603230999976, 28.891929778000076 ], [ -82.004635499999949, 28.891894014000059 ], [ -82.004670157999954, 28.891838265000047 ], [ -82.004751424999938, 28.891671019000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005088168999976, 28.893238235000069 ], [ -82.005186546999937, 28.893059437000034 ], [ -82.005297689999963, 28.892837495000038 ], [ -82.005394490999947, 28.892629226000054 ], [ -82.005410024999946, 28.892577684000059 ], [ -82.005414804999987, 28.892539817000056 ], [ -82.00541121699996, 28.892505106000044 ], [ -82.005400458999986, 28.892469344000062 ], [ -82.005383724999945, 28.892436739000061 ], [ -82.00536101299997, 28.892408340000031 ], [ -82.005328741999961, 28.892385200000035 ], [ -82.005288103999987, 28.892359956000064 ], [ -82.005239099999983, 28.892343130000029 ], [ -82.005147067999985, 28.89232314800006 ], [ -82.005031130999953, 28.892301064000037 ], [ -82.004765293999981, 28.892224211000041 ], [ -82.004688102999978, 28.892194839000069 ], [ -82.004606359999968, 28.89215865500006 ], [ -82.004556626999943, 28.89211806000003 ], [ -82.004521964999981, 28.892083350000064 ], [ -82.004470567999988, 28.892029708000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004287394999949, 28.892993888000035 ], [ -82.004953484999987, 28.893187771000044 ], [ -82.005088168999976, 28.893238235000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004541173999939, 28.89405871200006 ], [ -82.004841155999941, 28.893636913000023 ], [ -82.005039546999967, 28.893329766000079 ], [ -82.005088168999976, 28.893238235000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000180987999954, 28.893707473000063 ], [ -82.000014961999966, 28.893307452000045 ], [ -81.999972499999956, 28.893230550000055 ], [ -81.999909443999968, 28.893163925000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999332378999952, 28.89406404600004 ], [ -81.999824810999939, 28.893858938000051 ], [ -82.000180987999954, 28.893707473000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000180987999954, 28.893707473000063 ], [ -82.000290948999975, 28.893672763000041 ], [ -82.000384175999955, 28.893643310000073 ], [ -82.000451108999982, 28.893624376000048 ], [ -82.000574215999961, 28.893598080000061 ], [ -82.000857481999958, 28.893540228000063 ], [ -82.001065449999942, 28.893499204000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007578443999989, 28.896817561000034 ], [ -82.007641241999977, 28.897597206000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012160043999984, 28.898335036000049 ], [ -82.012228173999972, 28.898345548000066 ], [ -82.012485159999983, 28.898345525000025 ], [ -82.012632178999979, 28.898349719000066 ], [ -82.012693039999988, 28.898357449000059 ], [ -82.01276181999998, 28.898371276000034 ], [ -82.012808950999954, 28.898392009000077 ], [ -82.012868852999986, 28.898424377000026 ], [ -82.012934598999948, 28.898478015000023 ], [ -82.012978829999952, 28.898526395000033 ], [ -82.013013498999953, 28.898574776000032 ], [ -82.013036214999943, 28.898625262000053 ], [ -82.013052419999951, 28.898679394000055 ], [ -82.013071060999948, 28.898803959000077 ], [ -82.013085979999971, 28.898944918000041 ], [ -82.013098430999946, 28.89910384500007 ], [ -82.013100827999949, 28.899157489000061 ], [ -82.013100839999936, 28.899257413000043 ], [ -82.013093475999938, 28.899321902000054 ], [ -82.013074877999941, 28.899538261000032 ], [ -82.013078623999945, 28.899702167000044 ], [ -82.01308236899996, 28.899866072000066 ], [ -82.013052611999967, 28.90021355600004 ], [ -82.013063795999983, 28.900285675000077 ], [ -82.013274303999935, 28.90069601700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010538768999936, 28.897662574000037 ], [ -82.011231672999941, 28.897955090000039 ], [ -82.012111035999965, 28.898320314000046 ], [ -82.012160043999984, 28.898335036000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997375810999984, 28.893316162000076 ], [ -81.997486962999972, 28.893474992000051 ], [ -81.997788474999936, 28.893852416000072 ], [ -81.998155076999979, 28.894298597000045 ], [ -81.998196908999944, 28.894351189000076 ], [ -81.99822200899996, 28.894374330000062 ], [ -81.998256363999985, 28.894396638000046 ], [ -81.998285353999961, 28.894411146000039 ], [ -81.998344730999975, 28.894425004000027 ], [ -81.998422805999951, 28.89442482100003 ], [ -81.998483762999967, 28.894411149000064 ], [ -81.99867749799995, 28.894328849000033 ], [ -81.999332378999952, 28.89406404600004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001065449999942, 28.893499204000079 ], [ -82.00094831499996, 28.893057430000056 ], [ -82.000889746999974, 28.892769225000052 ], [ -82.000873012999989, 28.892665093000062 ], [ -82.000861059999977, 28.892546234000065 ], [ -82.000849105999976, 28.892353747000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997375810999984, 28.893316162000076 ], [ -81.997709025999939, 28.893078776000038 ], [ -81.997788492999973, 28.893017586000042 ], [ -81.997848093999949, 28.892956395000056 ], [ -81.998315268999988, 28.892309561000047 ], [ -81.998536385999955, 28.892001374000074 ], [ -81.998583, 28.891933005000055 ], [ -81.998622897999951, 28.89186369500004 ], [ -81.998645152999984, 28.891797318000044 ], [ -81.99866547299996, 28.891612193000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000849105999976, 28.892353747000072 ], [ -82.000857468999982, 28.891901454000049 ], [ -82.000855077999972, 28.891826773000048 ], [ -82.000846710999951, 28.891757351000024 ], [ -82.000828781999985, 28.891693189000023 ], [ -82.000808462999942, 28.891653219000034 ], [ -82.000778378999939, 28.891623303000074 ], [ -82.000718778999953, 28.891583966000042 ], [ -82.000686553999969, 28.89157222800003 ], [ -82.00065189299994, 28.891562762000035 ], [ -82.000550300999976, 28.891562762000035 ], [ -82.000169032999963, 28.891579592000028 ], [ -81.999387373, 28.891607991000058 ], [ -81.998927220999974, 28.891624818000025 ], [ -81.998814873999947, 28.891621662000034 ], [ -81.99866547299996, 28.891612193000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99866547299996, 28.891612193000071 ], [ -81.998528025999974, 28.891596415000038 ], [ -81.998215646999938, 28.891531506000035 ], [ -81.998043972999938, 28.891496483000026 ], [ -81.997984212999938, 28.891490170000054 ], [ -81.997926842999959, 28.891495430000077 ], [ -81.997875448999935, 28.891509102000043 ], [ -81.997823289999985, 28.891531500000042 ], [ -81.99777385699997, 28.89156484800003 ], [ -81.997743975999981, 28.891599558000053 ], [ -81.997305322999978, 28.892205413000056 ], [ -81.99708420199994, 28.892511495000065 ], [ -81.997062686999982, 28.892560931000048 ], [ -81.997055513999953, 28.892603005000069 ], [ -81.997051926999973, 28.892647182000076 ], [ -81.997054315999947, 28.892680842000061 ], [ -81.997078218999945, 28.89275341900003 ], [ -81.997108543999957, 28.892820603000075 ], [ -81.997139168999979, 28.892899627000077 ], [ -81.997233586999982, 28.893094219000034 ], [ -81.997289759999944, 28.893186783000033 ], [ -81.997375810999984, 28.893316162000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002477653999961, 28.892852068000025 ], [ -82.002425057999972, 28.892606989000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002425057999972, 28.892606989000058 ], [ -82.002409517, 28.892461834000073 ], [ -82.002402342999972, 28.892314576000047 ], [ -82.002403523999988, 28.891731855000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002403523999988, 28.891731855000046 ], [ -82.002800330999946, 28.89172658800004 ], [ -82.003093154999988, 28.891718166000032 ], [ -82.003226603999963, 28.891713019000065 ], [ -82.003301117999968, 28.891709748000039 ], [ -82.003372829999989, 28.891697123000029 ], [ -82.003408685999943, 28.891688708000061 ], [ -82.003460079999968, 28.891672928000048 ], [ -82.003498324999953, 28.891656098000055 ], [ -82.003531788999965, 28.891624542000045 ], [ -82.003581, 28.891555063000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003941748999978, 28.891797033000046 ], [ -82.003877855999974, 28.891766317000076 ], [ -82.003777893999938, 28.89169967600003 ], [ -82.003665814999977, 28.891619706000029 ], [ -82.003581, 28.891555063000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003235363999977, 28.891096523000044 ], [ -82.00327002399996, 28.891089160000035 ], [ -82.003320484999961, 28.891070569000078 ], [ -82.00348102199996, 28.890991259000032 ], [ -82.003617325999983, 28.890911282000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003581, 28.891555063000055 ], [ -82.003481036999972, 28.891457099000036 ], [ -82.003402278999943, 28.891363801000068 ], [ -82.003316641999959, 28.891255350000051 ], [ -82.003258073999973, 28.891171204000045 ], [ -82.003246120999961, 28.891139649000024 ], [ -82.003235363999977, 28.891096523000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001642169999968, 28.89098926500003 ], [ -82.001646948999962, 28.890817814000059 ], [ -82.001655312999958, 28.890661089000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002354505999961, 28.891090231000078 ], [ -82.002599521999969, 28.891101796000044 ], [ -82.002954493999937, 28.891099686000075 ], [ -82.003235363999977, 28.891096523000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001642169999968, 28.89098926500003 ], [ -82.001807106999934, 28.89099767700003 ], [ -82.001982801999986, 28.891036593000024 ], [ -82.002128614999947, 28.891061835000073 ], [ -82.002262475999942, 28.891080765000027 ], [ -82.002354505999961, 28.891090231000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00172108199996, 28.89268062900004 ], [ -82.002050958999973, 28.892663795000033 ], [ -82.002231826999946, 28.892643388000067 ], [ -82.00235334599995, 28.892624871000066 ], [ -82.002425057999972, 28.892606989000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001400764999971, 28.892678529000079 ], [ -82.001513931999966, 28.892680718000065 ], [ -82.00172108199996, 28.89268062900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00172108199996, 28.89268062900004 ], [ -82.00170822399997, 28.892585790000055 ], [ -82.001700758999959, 28.892494452000051 ], [ -82.001697172999968, 28.892384009000068 ], [ -82.001695973999972, 28.892174692000026 ], [ -82.001684014999967, 28.891737125000077 ], [ -82.001651736999975, 28.89127852200005 ], [ -82.001645757999938, 28.891102864000061 ], [ -82.001642169999968, 28.89098926500003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002403523999988, 28.891731855000046 ], [ -82.002396351999948, 28.891667692000055 ], [ -82.002368854999986, 28.891383695000059 ], [ -82.002352116999987, 28.891149135000035 ], [ -82.002354505999961, 28.891090231000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998383003999948, 28.89019643000006 ], [ -81.998778501999936, 28.890290844000049 ], [ -81.998862164999935, 28.890303466000034 ], [ -81.998964949999959, 28.890303467000024 ], [ -81.999707697999952, 28.89027019100007 ], [ -82.000438610999936, 28.890247724000062 ], [ -82.000972820999948, 28.890233757000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998383003999948, 28.89019643000006 ], [ -81.998514370999942, 28.889932162000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998158193999984, 28.890754700000059 ], [ -81.998171339999942, 28.890777840000055 ], [ -81.998190461999968, 28.890793618000032 ], [ -81.998220341999968, 28.89081150100003 ], [ -81.99825739299996, 28.890820967000025 ], [ -81.99849762499997, 28.890875668000035 ], [ -81.998696026999937, 28.890914587000054 ], [ -81.998815136999951, 28.890924185000074 ], [ -81.99895649299998, 28.890924186000063 ], [ -81.999711733999959, 28.890899310000066 ], [ -82.000434666999979, 28.890863766000052 ], [ -82.000942536999958, 28.890852213000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997974128999942, 28.891046058000029 ], [ -81.998088871999983, 28.890794669000059 ], [ -81.998111580999989, 28.89077573700007 ], [ -81.998158193999984, 28.890754700000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998158193999984, 28.890754700000059 ], [ -81.998156998999946, 28.890706316000035 ], [ -81.998158194999974, 28.890663190000055 ], [ -81.998170147999986, 28.890623220000066 ], [ -81.998383003999948, 28.89019643000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001121031999958, 28.887722241000063 ], [ -82.00064058199996, 28.887724347000074 ], [ -82.000290399999983, 28.887735919000079 ], [ -81.999881364999965, 28.887748385000066 ], [ -81.999548211, 28.887756955000043 ], [ -81.999230298999976, 28.887770628000055 ], [ -81.999012780999976, 28.887788507000039 ], [ -81.998949436999965, 28.887806389000048 ], [ -81.99890880199996, 28.88783058100006 ], [ -81.998884898999961, 28.887855825000031 ], [ -81.998857409999971, 28.88789579400003 ], [ -81.998841421999941, 28.887931429000048 ], [ -81.998827285999937, 28.888055831000031 ], [ -81.998809108999978, 28.888238880000074 ], [ -81.998790932999952, 28.888434369000038 ], [ -81.998764677999986, 28.888718716000028 ], [ -81.998740443999964, 28.888965742000039 ], [ -81.998718228999962, 28.889173671000037 ], [ -81.998701038999968, 28.889383412000029 ], [ -81.998699845999965, 28.889424375000033 ], [ -81.998709060999943, 28.889465161000032 ], [ -81.998732066999935, 28.889516800000024 ], [ -81.99874996799997, 28.889544109000042 ], [ -81.99877476599994, 28.889569981000079 ], [ -81.998808443999962, 28.889597675000061 ], [ -81.998847460999968, 28.889623296000025 ], [ -81.99888959499998, 28.889642837000054 ], [ -81.998937331999969, 28.889656491000039 ], [ -81.998980293999978, 28.889660693000053 ], [ -81.999049512999989, 28.889658592000046 ], [ -81.999186753999936, 28.889651241000024 ], [ -81.999430210999947, 28.889641790000042 ], [ -81.999680826999963, 28.88963338800005 ], [ -81.999961279, 28.889623937000067 ], [ -82.000234569999975, 28.889614484000049 ], [ -82.000553801999956, 28.889598420000027 ], [ -82.000818335999952, 28.889596642000072 ], [ -82.001012192999951, 28.889598417000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001118334999944, 28.88836036400005 ], [ -82.001121031999958, 28.887722241000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003053727999941, 28.887684811000042 ], [ -82.002976043999979, 28.887712161000024 ], [ -82.002918675999979, 28.887728992000063 ], [ -82.002867284999979, 28.887740563000079 ], [ -82.002813028999981, 28.887749047000057 ], [ -82.002729842999941, 28.887761603000058 ], [ -82.002640205999967, 28.887766864000071 ], [ -82.002324552999937, 28.88776219500005 ], [ -82.001884736999955, 28.887744320000024 ], [ -82.001121031999958, 28.887722241000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001121031999958, 28.887722241000063 ], [ -82.001117446999956, 28.887635989000046 ], [ -82.001112658999944, 28.887087978000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001112658999944, 28.887087978000068 ], [ -82.001636133999966, 28.887070090000066 ], [ -82.002363879999962, 28.887044475000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001112658999944, 28.887087978000068 ], [ -82.001109070999973, 28.886674602000028 ], [ -82.001111457999968, 28.88657257400007 ], [ -82.001116238999941, 28.886530500000049 ], [ -82.001134974999957, 28.886482836000027 ], [ -82.001155677999975, 28.886451611000041 ], [ -82.001186751999967, 28.886423211000078 ], [ -82.001222604999953, 28.886404278000043 ], [ -82.001262043999986, 28.886388499000077 ], [ -82.001301483999953, 28.886381136000068 ], [ -82.001572779999947, 28.886339060000068 ], [ -82.001949961999969, 28.886284209000053 ], [ -82.002063733999989, 28.886275287000046 ], [ -82.002112274999945, 28.886280997000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000536549999936, 28.88454549800008 ], [ -82.000910561999945, 28.884517145000075 ], [ -82.001134252999975, 28.884499819000041 ], [ -82.001260941999988, 28.884493615000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001260941999988, 28.884493615000054 ], [ -82.001257349999946, 28.883841208000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001257349999946, 28.883841208000035 ], [ -82.001255556, 28.883725243000072 ], [ -82.001265414999978, 28.883669232000045 ], [ -82.001281547999952, 28.883627420000039 ], [ -82.001302162999934, 28.883591132000049 ], [ -82.001323486, 28.883559935000051 ], [ -82.001374763999934, 28.883492520000061 ], [ -82.001451846999942, 28.883399432000033 ], [ -82.001535203999936, 28.883294509000052 ], [ -82.001625731, 28.88318643100007 ], [ -82.001657101999967, 28.883154086000047 ], [ -82.001689368999962, 28.883124897000073 ], [ -82.001734184999975, 28.883090975000073 ], [ -82.001786171999981, 28.883064152000031 ], [ -82.00184263899996, 28.883040485000038 ], [ -82.001902692999977, 28.883015239000031 ], [ -82.001946613999962, 28.882998672000042 ], [ -82.002001288999963, 28.882981315000052 ], [ -82.002061342, 28.882967115000042 ], [ -82.002118706999966, 28.882956070000034 ], [ -82.002184137999961, 28.882948179000039 ], [ -82.002318586999934, 28.882932400000072 ], [ -82.002482612999984, 28.882913463000079 ], [ -82.00264574299996, 28.882893739000053 ], [ -82.002844107999977, 28.882868878000068 ], [ -82.00302260999996, 28.882846431000075 ], [ -82.003186348999975, 28.882825164000053 ], [ -82.003331298999967, 28.882808624000063 ], [ -82.003374451999946, 28.882806156000072 ], [ -82.003408510999975, 28.882812465000029 ], [ -82.003440779999949, 28.882826666000028 ], [ -82.003464980999979, 28.88284402000005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00349640099995, 28.883424051000077 ], [ -82.003499045999945, 28.88296235200005 ], [ -82.003498146999959, 28.882905553000057 ], [ -82.003492769, 28.88288030800004 ], [ -82.003482012999939, 28.882862952000039 ], [ -82.003464980999979, 28.88284402000005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003464980999979, 28.88284402000005 ], [ -82.003484699999944, 28.882808520000026 ], [ -82.003496350999967, 28.882789586000058 ], [ -82.003499038999962, 28.882773019000069 ], [ -82.00350440699998, 28.882480343000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001257349999946, 28.883841208000035 ], [ -82.001407932999939, 28.883840418000034 ], [ -82.001507425999989, 28.883840417000044 ], [ -82.001549553999951, 28.883834894000074 ], [ -82.001606020999986, 28.883814382000025 ], [ -82.001723445999971, 28.88376428600003 ], [ -82.001845577999973, 28.883717034000028 ], [ -82.001969054999961, 28.883669783000073 ], [ -82.002096557999948, 28.88362016800005 ], [ -82.002195875999973, 28.883585910000079 ], [ -82.002289824999934, 28.883561103000034 ], [ -82.002409273999945, 28.883542200000079 ], [ -82.002551538999967, 28.883526841000048 ], [ -82.002680384999962, 28.883511483000063 ], [ -82.00283473099995, 28.883493761000068 ], [ -82.003044102, 28.883468951000054 ], [ -82.003209184999946, 28.883450047000053 ], [ -82.003343100999984, 28.883434897000029 ], [ -82.00349640099995, 28.883424051000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003494588999956, 28.88369128100004 ], [ -82.00349640099995, 28.883424051000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001260941999988, 28.884493615000054 ], [ -82.001658019999979, 28.884457323000049 ], [ -82.001757512999973, 28.884448643000042 ], [ -82.001811292999946, 28.884443120000071 ], [ -82.001868657999978, 28.884431287000041 ], [ -82.001913474999981, 28.884419452000031 ], [ -82.001947535999989, 28.884406830000046 ], [ -82.00203268599995, 28.884359495000069 ], [ -82.002137556999969, 28.884300328000052 ], [ -82.002238389999945, 28.884244655000032 ], [ -82.002291724999964, 28.884219069000039 ], [ -82.002349985999956, 28.884197770000071 ], [ -82.002404661999947, 28.884184357000038 ], [ -82.00246561299997, 28.88417331200003 ], [ -82.002598082999953, 28.884165898000049 ], [ -82.002768088999971, 28.884165894000034 ], [ -82.002963146999946, 28.884164316000067 ], [ -82.003102730999956, 28.884165887000051 ], [ -82.003227995999964, 28.884158009000032 ], [ -82.003326148999975, 28.884156044000065 ], [ -82.003391782999984, 28.884147427000073 ], [ -82.003484105999974, 28.884132198000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000536549999936, 28.88454549800008 ], [ -82.000529388999951, 28.884025747000067 ], [ -82.000525742999969, 28.883700178000026 ], [ -82.00052663699995, 28.883454836000055 ], [ -82.000530222999942, 28.883409869000047 ], [ -82.00053918499998, 28.883369636000054 ], [ -82.000563385999953, 28.883313625000028 ], [ -82.000580416999981, 28.883278913000026 ], [ -82.000605513999972, 28.883241048000059 ], [ -82.00063150699998, 28.883207914000025 ], [ -82.000754302999951, 28.88311088100005 ], [ -82.000819733999947, 28.883054870000024 ], [ -82.000862756999936, 28.883012269000062 ], [ -82.000921913999946, 28.882948370000065 ], [ -82.00098286399998, 28.882866325000066 ], [ -82.001034021999942, 28.882783067000048 ], [ -82.001068012999951, 28.882705392000048 ], [ -82.001092212999936, 28.882643859000041 ], [ -82.001110138999934, 28.882575226000029 ], [ -82.001129856999967, 28.882490026000028 ], [ -82.001135233999946, 28.882440326000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001135233999946, 28.882440326000051 ], [ -82.001208731999952, 28.882452159000024 ], [ -82.001268785999969, 28.88245689200005 ], [ -82.001395166999941, 28.882462413000042 ], [ -82.001443568999946, 28.88246162300004 ], [ -82.001509, 28.88245373500007 ], [ -82.001560985999959, 28.882441111000048 ], [ -82.001622831999953, 28.882422177000024 ], [ -82.001738455999941, 28.882373264000023 ], [ -82.001789754999947, 28.882318884000028 ], [ -82.001846012999977, 28.882288852000045 ], [ -82.001915866, 28.882273675000079 ], [ -82.00202651099994, 28.882260588000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001135233999946, 28.882440326000051 ], [ -82.00113433599995, 28.88232120400005 ], [ -82.001128957999981, 28.882235217000073 ], [ -82.001113718999989, 28.882166584000061 ], [ -82.001102962999937, 28.882117673000039 ], [ -82.001084139999989, 28.88206481800006 ], [ -82.001073382999948, 28.882027740000069 ], [ -82.001067108999962, 28.881985930000042 ], [ -82.001069796999957, 28.881958319000034 ], [ -82.00107696799995, 28.881929919000072 ], [ -82.001094893999948, 28.881890475000034 ], [ -82.001115508999987, 28.881864441000062 ], [ -82.00114419099998, 28.881830518000072 ], [ -82.001201552999987, 28.881785552000053 ], [ -82.001307317999988, 28.881700352000053 ], [ -82.00149554099994, 28.881540995000023 ], [ -82.001671958999964, 28.88139469500004 ], [ -82.001845534999973, 28.881256092000058 ], [ -82.002026269999988, 28.881106465000073 ], [ -82.002240363999988, 28.880922499000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002240363999988, 28.880922499000064 ], [ -82.002324615999953, 28.880852287000039 ], [ -82.002377495999951, 28.880812053000056 ], [ -82.002423206999936, 28.880782863000036 ], [ -82.002476984999987, 28.880753674000061 ], [ -82.002522696999961, 28.880734739000047 ], [ -82.002574680999942, 28.880717384000036 ], [ -82.002643628999976, 28.880703252000046 ], [ -82.002719881999951, 28.880696080000064 ], [ -82.002796066999963, 28.880692135000061 ], [ -82.002902726999935, 28.880689765000056 ], [ -82.002963676999968, 28.880692131000046 ], [ -82.003011181999966, 28.880705541000054 ], [ -82.003060478999942, 28.880729994000035 ], [ -82.003090953999958, 28.880753661000028 ], [ -82.003121427999986, 28.880793105000066 ], [ -82.003144684999938, 28.880840268000043 ], [ -82.003153697999949, 28.880879093000033 ], [ -82.003159001999961, 28.88092374200005 ], [ -82.003167148999978, 28.881057380000072 ], [ -82.003164465999987, 28.881245923000051 ], [ -82.003168056999982, 28.881438411000033 ], [ -82.003172538999934, 28.881475489000024 ], [ -82.00318060799998, 28.881509411000025 ], [ -82.00319763899995, 28.881555165000066 ], [ -82.003252316999976, 28.881652197000051 ], [ -82.003324025999973, 28.881784728000071 ], [ -82.003394838999952, 28.881914891000065 ], [ -82.003405595999936, 28.881960647000028 ], [ -82.003404194999973, 28.88200733900004 ], [ -82.003390360999958, 28.882052157000032 ], [ -82.003364828999963, 28.882092390000025 ], [ -82.003333896999948, 28.882127104000062 ], [ -82.003293562999943, 28.882152348000034 ], [ -82.003252092999958, 28.882167992000063 ], [ -82.003182420999963, 28.882183118000057 ], [ -82.00309995899994, 28.882190220000041 ], [ -82.002976268999987, 28.882203633000074 ], [ -82.002894703999971, 28.882210735000058 ], [ -82.002842716999965, 28.882205214000066 ], [ -82.002814033999982, 28.882196537000027 ], [ -82.002789832999952, 28.882186281000031 ], [ -82.002752187999988, 28.882164982000063 ], [ -82.002714541999978, 28.882128694000073 ], [ -82.002681375999941, 28.882081362000065 ], [ -82.002653588999976, 28.882032452000033 ], [ -82.002591740999947, 28.881927531000031 ], [ -82.002546922999954, 28.88183759900005 ], [ -82.00252003199995, 28.88178158900007 ], [ -82.00249493299998, 28.881711379000023 ], [ -82.002470071999937, 28.881613608000066 ], [ -82.002450113999942, 28.881534669000075 ], [ -82.00244293999998, 28.881417915000043 ], [ -82.002443222999943, 28.881276558000025 ], [ -82.002432179999971, 28.881211228000041 ], [ -82.002414586999976, 28.881155283000055 ], [ -82.002393635999965, 28.881104729000072 ], [ -82.002364952999983, 28.881057396000074 ], [ -82.002332684999942, 28.881013220000057 ], [ -82.002240363999988, 28.880922499000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996012728999972, 28.884708072000024 ], [ -81.996292238999956, 28.884686821000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997542768999949, 28.885205894000023 ], [ -81.998236539999937, 28.885148317000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965580045999957, 28.866988036000066 ], [ -81.965523528999938, 28.866977868000049 ], [ -81.965450860999965, 28.866964649000067 ], [ -81.965346055999987, 28.866947795000044 ], [ -81.965205766999986, 28.866921928000068 ], [ -81.965116359999968, 28.86691074600003 ], [ -81.965062723999949, 28.866908977000037 ], [ -81.965021457999967, 28.866914616000031 ], [ -81.96498293999997, 28.866928329000075 ], [ -81.964945336999961, 28.866949306000038 ], [ -81.964911398999959, 28.866979163000053 ], [ -81.964888465999934, 28.867003372000056 ], [ -81.964869197999974, 28.867038884000067 ], [ -81.964860936999969, 28.867063097000027 ], [ -81.964856341999962, 28.867092962000072 ], [ -81.964858466999942, 28.867158657000061 ], [ -81.964868482999975, 28.867291500000078 ], [ -81.964872753999941, 28.867409162000058 ], [ -81.964881336999952, 28.867531884000073 ], [ -81.964887034999947, 28.86767990900006 ], [ -81.964894182999956, 28.867798836000077 ], [ -81.964902764999977, 28.867916498000056 ], [ -81.964909908999971, 28.868046811000056 ], [ -81.964917050999986, 28.868178390000026 ], [ -81.96492275199995, 28.868318823000038 ], [ -81.964937042999964, 28.868565533000037 ], [ -81.964951382999971, 28.868661688000032 ], [ -81.964978665999979, 28.868738871000062 ], [ -81.965007385999968, 28.868809727000041 ], [ -81.965031804999967, 28.868857810000065 ], [ -81.965069548999963, 28.868916156000068 ], [ -81.965112213999987, 28.868963891000078 ], [ -81.96516756699998, 28.869017722000024 ], [ -81.965233448999982, 28.86906914900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967975839999951, 28.86943208200006 ], [ -81.96804562799997, 28.869259613000054 ], [ -81.968094527999938, 28.869158411000058 ], [ -81.968127601999981, 28.869101487000023 ], [ -81.968199496999944, 28.868996496000079 ], [ -81.968280013999959, 28.868896567000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966486241999974, 28.868531715000074 ], [ -81.966640391999988, 28.868517521000058 ], [ -81.966865685999949, 28.868510934000028 ], [ -81.967060470999968, 28.868521308000027 ], [ -81.967171203999953, 28.86853622700005 ], [ -81.967289627999946, 28.868559273000074 ], [ -81.967572600999972, 28.868643281000061 ], [ -81.967901711999957, 28.868739484000059 ], [ -81.968160077999983, 28.868823486000053 ], [ -81.968216977999987, 28.868849222000051 ], [ -81.968280013999959, 28.868896567000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968280013999959, 28.868896567000036 ], [ -81.968352655999979, 28.868845939000039 ], [ -81.968628386999967, 28.868697268000062 ], [ -81.96892257899998, 28.86853867700006 ], [ -81.968984166999974, 28.868504493000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97608349099994, 28.87049431500003 ], [ -81.976144188999967, 28.870546094000076 ], [ -81.976367153999945, 28.870721805000073 ], [ -81.976673299999959, 28.870932938000067 ], [ -81.97698257899998, 28.871117258000027 ], [ -81.977275464999934, 28.871261007000044 ], [ -81.977450269999963, 28.87133835000003 ], [ -81.977518324999949, 28.871359685000073 ], [ -81.977551777999963, 28.871363752000036 ], [ -81.977595613999938, 28.871363760000065 ], [ -81.977626215999976, 28.871357493000062 ], [ -81.977652090999982, 28.871343581000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977633285999957, 28.871707029000049 ], [ -81.977652047999982, 28.871546007000063 ], [ -81.977670760999956, 28.871419493000076 ], [ -81.977652090999982, 28.871343581000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954992004999951, 28.922620615000028 ], [ -81.955065181999942, 28.922629206000067 ], [ -81.955109398, 28.922633015000031 ], [ -81.955159008999942, 28.922636828000066 ], [ -81.955204303999949, 28.92263969000004 ], [ -81.955274404999955, 28.922644457000047 ], [ -81.955331565999984, 28.922643527000048 ], [ -81.955377942999974, 28.922641644000066 ], [ -81.955423240999949, 28.922641659000078 ], [ -81.955473930999972, 28.922639779000065 ], [ -81.955517071999964, 28.922637895000037 ], [ -81.955562370999985, 28.922634115000051 ], [ -81.955605511999977, 28.922633179000059 ], [ -81.95565404499996, 28.922629401000052 ], [ -81.955696109999963, 28.922623721000036 ], [ -81.955739250999954, 28.922619940000061 ], [ -81.955791022999961, 28.922611418000031 ], [ -81.955826615999968, 28.922605736000037 ], [ -81.955876156999977, 28.922602217000076 ], [ -81.955938483999944, 28.922596394000038 ], [ -81.955991430999973, 28.922592629000064 ], [ -81.956044573999975, 28.922589553000023 ], [ -81.956097716999977, 28.92258716300006 ], [ -81.95615085999998, 28.922585462000029 ], [ -81.956182704999947, 28.922584784000037 ], [ -81.95621455099996, 28.922584794000045 ], [ -81.95634333299995, 28.922580375000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989718374999939, 28.900439131000041 ], [ -81.989724182999964, 28.900354538000045 ], [ -81.989727873999982, 28.900223459000074 ], [ -81.989725206999935, 28.899807604000046 ], [ -81.98973198799996, 28.899694406000037 ], [ -81.989740120999954, 28.899608615000034 ], [ -81.989769924999962, 28.899457288000065 ], [ -81.98980107999995, 28.899341709000055 ], [ -81.98987963999997, 28.899097446000042 ], [ -81.990117474999977, 28.898378451000042 ], [ -81.990243380999971, 28.897992565000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990243380999971, 28.897992565000038 ], [ -81.99038965699998, 28.897563615000024 ], [ -81.99046188899996, 28.897384091000049 ], [ -81.990549063999936, 28.897172509000029 ], [ -81.990629362999982, 28.896960747000037 ], [ -81.990705673999969, 28.896721600000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992417910999961, 28.894766462000064 ], [ -81.992388898999934, 28.894820435000042 ], [ -81.99234082199996, 28.894880971000077 ], [ -81.992319699999939, 28.894901594000032 ], [ -81.992277529999967, 28.894933545000072 ], [ -81.992187844999989, 28.894998534000024 ], [ -81.992037021999977, 28.895083809000027 ], [ -81.991886423999972, 28.895158400000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992417910999961, 28.894766462000064 ], [ -81.992544716999987, 28.894818254000029 ], [ -81.992775165999944, 28.894921452000062 ], [ -81.993165006999959, 28.895093496000072 ], [ -81.993326726999953, 28.89519010600003 ], [ -81.993415831999982, 28.895265693000056 ], [ -81.993471518999968, 28.895328427000038 ], [ -81.993516177999936, 28.895393289000026 ], [ -81.993556159999969, 28.895471539000027 ], [ -81.993598479999946, 28.89556759900006 ], [ -81.993664405999937, 28.895764920000033 ], [ -81.99370315699997, 28.895906748000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99239197199995, 28.892955888000074 ], [ -81.992351524999947, 28.893011594000029 ], [ -81.992185412999959, 28.893202663000068 ], [ -81.991972289999978, 28.893427678000023 ], [ -81.991782718999957, 28.893610373000058 ], [ -81.991604088999964, 28.893766420000077 ], [ -81.991560987999947, 28.893804345000035 ], [ -81.991530318999935, 28.893834978000029 ], [ -81.991508287999977, 28.893883621000043 ], [ -81.991500474999953, 28.893931255000041 ], [ -81.99150461499994, 28.893970643000046 ], [ -81.991513694999981, 28.894005954000079 ], [ -81.991529473999947, 28.894043582000052 ], [ -81.991565008999942, 28.894096106000063 ], [ -81.99169956999998, 28.894279691000065 ], [ -81.991800466999962, 28.894415588000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996097378999934, 28.885248023000031 ], [ -81.996207000999959, 28.88529866600004 ], [ -81.996257939999964, 28.885309875000075 ], [ -81.996334347999948, 28.885304272000042 ], [ -81.997542768999949, 28.885205894000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998456940999972, 28.885701243000028 ], [ -81.998393440999962, 28.885616081000023 ], [ -81.998339014999942, 28.885520274000044 ], [ -81.998301218999984, 28.885439105000046 ], [ -81.998278540999934, 28.885373903000072 ], [ -81.99825089999996, 28.885237064000023 ], [ -81.998236539999937, 28.885148317000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998236539999937, 28.885148317000073 ], [ -81.998215925999943, 28.884948730000076 ], [ -81.998215927, 28.884895085000039 ], [ -81.998219070999937, 28.884839185000033 ], [ -81.998237981999978, 28.88473452900007 ], [ -81.998296445999983, 28.884578402000045 ], [ -81.998484177999956, 28.884141731000057 ], [ -81.998528023999938, 28.884031289000063 ], [ -81.998552213999972, 28.88396076500004 ], [ -81.998573381999961, 28.883888910000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996292238999956, 28.884686821000059 ], [ -81.997373374999938, 28.884597662000033 ], [ -81.997410124999988, 28.884597663000079 ], [ -81.997451355999942, 28.884607130000063 ], [ -81.997482727999966, 28.884622120000074 ], [ -81.997512305999976, 28.884645787000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997512305999976, 28.884645787000068 ], [ -81.997549056999958, 28.884606344000076 ], [ -81.997562501999937, 28.884576366000033 ], [ -81.99761270099998, 28.884415435000051 ], [ -81.997669173999952, 28.884281326000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997542768999949, 28.885205894000023 ], [ -81.997523951999938, 28.884884818000046 ], [ -81.997530231999974, 28.884705742000051 ], [ -81.997526646999972, 28.884671031000039 ], [ -81.997512305999976, 28.884645787000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995688388999952, 28.882759879000048 ], [ -81.99603885099998, 28.882785134000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995909639, 28.883456013000057 ], [ -81.995996718999947, 28.882910566000078 ], [ -81.996008372999938, 28.882864810000058 ], [ -81.996018233999962, 28.882833256000026 ], [ -81.99603885099998, 28.882785134000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99603885099998, 28.882785134000073 ], [ -81.996064844999978, 28.88278671300003 ], [ -81.99611503899996, 28.882787504000078 ], [ -81.996173298999963, 28.882789082000045 ], [ -81.996364215999961, 28.882796188000043 ], [ -81.996658210999954, 28.882782785000074 ], [ -81.996931589999974, 28.882759913000029 ], [ -81.997458627999947, 28.882711014000051 ], [ -81.997893433999934, 28.882676109000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997893433999934, 28.882676109000045 ], [ -81.997826126999939, 28.882386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997962349999966, 28.883293219000052 ], [ -81.998266204999936, 28.883268767000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997962349999966, 28.883293219000052 ], [ -81.997960900999942, 28.883111614000029 ], [ -81.997947408999948, 28.882949289000067 ], [ -81.997893433999934, 28.882676109000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995909639, 28.883456013000057 ], [ -81.996795819999988, 28.883388732000071 ], [ -81.997900502999983, 28.883303472000023 ], [ -81.997962349999966, 28.883293219000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995729679999954, 28.884073633000071 ], [ -81.99587551999997, 28.884082187000047 ], [ -81.996126494999942, 28.884060106000049 ], [ -81.996452185999942, 28.884032184000034 ], [ -81.996811294999986, 28.884002272000032 ], [ -81.997171022999964, 28.883974932000058 ], [ -81.997577361999959, 28.883943385000066 ], [ -81.998089580999988, 28.883895559000052 ], [ -81.998348112999963, 28.88387294100005 ], [ -81.998420682999949, 28.88387427300006 ], [ -81.998493251999946, 28.883879595000053 ], [ -81.998573381999961, 28.883888910000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996478156999956, 28.879745640000067 ], [ -81.996751795999955, 28.87970040600004 ], [ -81.99692867999994, 28.879657829000053 ], [ -81.997037531999979, 28.879619242000047 ], [ -81.997140336999962, 28.879566020000027 ], [ -81.997268843999962, 28.879482191000079 ], [ -81.997374672999968, 28.879390378000039 ], [ -81.997501668999973, 28.879263971000057 ], [ -81.997589354999945, 28.879177480000067 ], [ -81.997618080999985, 28.879141554000057 ], [ -81.997644247999972, 28.87909912300006 ], [ -81.99767553099997, 28.879045748000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991431474999956, 28.876645202000077 ], [ -81.991375821999952, 28.876591226000073 ], [ -81.991246199999978, 28.876479938000045 ], [ -81.991186452999955, 28.876439965000031 ], [ -81.991136262999987, 28.876416821000078 ], [ -81.99106097899994, 28.876394726000058 ], [ -81.990984497999989, 28.876386306000029 ], [ -81.990890354999976, 28.876389738000057 ], [ -81.990833111999962, 28.876400498000066 ], [ -81.990781341999934, 28.876414692000026 ], [ -81.990728756999943, 28.876438882000059 ], [ -81.99068095399997, 28.876466226000048 ], [ -81.990625978999958, 28.876512504000061 ], [ -81.990589011999987, 28.876551982000024 ], [ -81.990203866999934, 28.876959677000059 ], [ -81.989958367999975, 28.877195491000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989460919999942, 28.877656460000026 ], [ -81.989109952999968, 28.877951739000025 ], [ -81.988730473999965, 28.878246327000056 ], [ -81.988468176999959, 28.878432976000056 ], [ -81.988428791, 28.878471061000027 ], [ -81.98839652199996, 28.878505769000071 ], [ -81.988382177999938, 28.878537324000035 ], [ -81.988372315999982, 28.878564144000052 ], [ -81.988366973999973, 28.878610900000069 ], [ -81.988376095999968, 28.878657492000059 ], [ -81.988395499999967, 28.878698368000073 ], [ -81.988568502999954, 28.878933871000072 ], [ -81.989199015999986, 28.879749367000045 ], [ -81.989450127999987, 28.880088353000076 ], [ -81.989528238999981, 28.880171897000025 ], [ -81.989575878999972, 28.880204157000037 ], [ -81.989623145999985, 28.880221065000057 ], [ -81.98968446799995, 28.880230696000069 ], [ -81.989734682999938, 28.880228268000053 ], [ -81.989790513999935, 28.880211108000026 ], [ -81.990164521999986, 28.880019651000055 ], [ -81.99023854099994, 28.879980809000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990849447999949, 28.879668013000071 ], [ -81.990644419999967, 28.879326971000069 ], [ -81.990170284999977, 28.878537450000067 ], [ -81.989993444999982, 28.878248530000064 ], [ -81.989926516999958, 28.878152471000078 ], [ -81.989845278999951, 28.878046565000034 ], [ -81.989660465999975, 28.877843194000036 ], [ -81.989460919999942, 28.877656460000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990445561999934, 28.875455158000079 ], [ -81.99043983599995, 28.875532329000066 ], [ -81.990432952999981, 28.875569699000039 ], [ -81.99041323299997, 28.875602831000037 ], [ -81.990378833999955, 28.875653116000024 ], [ -81.990074318999973, 28.87600436200006 ], [ -81.989987849999977, 28.876099149000027 ], [ -81.98967535099996, 28.876428894000071 ], [ -81.989362851999942, 28.876737278000064 ], [ -81.989004842999975, 28.877069689000052 ], [ -81.988662004999981, 28.877362047000076 ], [ -81.988385914999981, 28.87758765500007 ], [ -81.988000600999953, 28.877878673000055 ], [ -81.987804910999955, 28.878017505000059 ], [ -81.987407461999965, 28.878288493000071 ], [ -81.986918990999982, 28.878615546000049 ], [ -81.986398661999942, 28.878966627000068 ], [ -81.986145171999965, 28.879135142000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989964493999935, 28.874836631000051 ], [ -81.989958004999949, 28.874832846000061 ], [ -81.989725086999954, 28.874703315000033 ], [ -81.989606465999941, 28.874649938000061 ], [ -81.98924533099995, 28.874515331000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995028547999937, 28.870968228000038 ], [ -81.995021375999954, 28.871026077000067 ], [ -81.995009425999967, 28.871062890000076 ], [ -81.994993888999943, 28.871098651000068 ], [ -81.99496660899996, 28.871142897000027 ], [ -81.994914319999964, 28.871204909000028 ], [ -81.992962193999972, 28.873080128000026 ], [ -81.99214404199995, 28.873867396000037 ], [ -81.991867623999951, 28.87414117700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991974625999944, 28.874214848000065 ], [ -81.992833456999961, 28.873383757000056 ], [ -81.994022853999979, 28.872246310000037 ], [ -81.995057713999984, 28.871242781000035 ], [ -81.995120545999953, 28.871196474000044 ], [ -81.995156393999935, 28.871175440000059 ], [ -81.995186267999941, 28.871163870000032 ], [ -81.99523684199994, 28.871154158000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022295840999959, 28.918457133000061 ], [ -82.022246981999956, 28.918458704000045 ], [ -82.022189237999953, 28.918457150000052 ], [ -82.022131492999961, 28.91845637800003 ], [ -82.022080856999935, 28.918455605000077 ], [ -82.022032884999987, 28.918457176000061 ], [ -82.021992070999943, 28.918456946000049 ], [ -82.021931336999955, 28.918456956000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028778519999946, 28.927444939000054 ], [ -82.029418487999976, 28.927446499000041 ], [ -82.029904282999951, 28.927456816000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028778519999946, 28.927444939000054 ], [ -82.028732695999963, 28.927499018000049 ], [ -82.028702238999983, 28.927588486000047 ], [ -82.028690816999983, 28.928806770000051 ], [ -82.028709852999953, 28.92888481600005 ], [ -82.028753853999945, 28.928950150000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02691366199997, 28.92744392700007 ], [ -82.027112862999957, 28.927443413000049 ], [ -82.028208508999967, 28.927441396000063 ], [ -82.028778519999946, 28.927444939000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028518711999936, 28.925071170000024 ], [ -82.028610360999949, 28.925132956000027 ], [ -82.028650156999959, 28.925184260000037 ], [ -82.028686354999934, 28.925255866000043 ], [ -82.028692400999944, 28.925311564000026 ], [ -82.028692413999977, 28.925359307000065 ], [ -82.028711528999963, 28.925522960000023 ], [ -82.028715166999973, 28.925709876000042 ], [ -82.028696938999985, 28.925869478000038 ], [ -82.028704368999968, 28.925916145000031 ], [ -82.028693549999957, 28.926042198000061 ], [ -82.028700585999957, 28.92611021700003 ], [ -82.028702271999975, 28.926179707000074 ], [ -82.028708806999987, 28.926261830000044 ], [ -82.02870803899998, 28.926412105000054 ], [ -82.028730567999958, 28.92651913900005 ], [ -82.028748096999948, 28.926619576000064 ], [ -82.028774794999947, 28.926729541000043 ], [ -82.028796475999968, 28.926785256000073 ], [ -82.028817326999956, 28.926844635000066 ], [ -82.028821497999957, 28.926860764000025 ], [ -82.028831593999939, 28.927211935000059 ], [ -82.028833920999944, 28.927321843000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021678479999935, 28.942674434000025 ], [ -82.02237248199998, 28.943424916000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020285111999954, 28.931011941000065 ], [ -82.020306042999948, 28.928260825000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016272318999938, 28.93149353900003 ], [ -82.016400721999958, 28.931480531000034 ], [ -82.016704365999942, 28.931479073000048 ], [ -82.016820653999957, 28.931471954000074 ], [ -82.016920788999983, 28.931447787000025 ], [ -82.017051604999949, 28.931399461000069 ], [ -82.017179188999989, 28.931328402000076 ], [ -82.017311613999937, 28.931237451000072 ], [ -82.017395587999943, 28.931169238000052 ], [ -82.017461800999968, 28.931126605000031 ], [ -82.01761038099994, 28.931059805000075 ], [ -82.017737969999985, 28.931025688000034 ], [ -82.017847794999966, 28.931011464000051 ], [ -82.018033534999972, 28.931008598000062 ], [ -82.018632744999934, 28.931011358000035 ], [ -82.019416077999949, 28.931011247000072 ], [ -82.019769790999987, 28.931014038000058 ], [ -82.020231715999955, 28.931015389000038 ], [ -82.020285111999954, 28.931011941000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023571364999952, 28.928433342000062 ], [ -82.023567835999984, 28.931137369000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020511032999934, 28.931013133000079 ], [ -82.020515861999968, 28.931013284000073 ], [ -82.020568158999936, 28.931014918000074 ], [ -82.020643111999959, 28.93102443600003 ], [ -82.020701408999969, 28.931036333000065 ], [ -82.020816812999954, 28.931070835000071 ], [ -82.020897713999943, 28.931092251000052 ], [ -82.020939354999939, 28.931104148000031 ], [ -82.020994081999959, 28.931116045000067 ], [ -82.021074983999938, 28.931120804000045 ], [ -82.021365076999984, 28.931130619000044 ], [ -82.022102834999941, 28.931131211000036 ], [ -82.022589819999951, 28.93113184300006 ], [ -82.023321916999976, 28.931136699000035 ], [ -82.023567835999984, 28.931137369000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026826920999952, 28.928455027000041 ], [ -82.026833472999954, 28.93084996400006 ], [ -82.026833500999942, 28.930958846000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023567835999984, 28.931137369000055 ], [ -82.023899502999939, 28.931137310000054 ], [ -82.024513428999967, 28.931136872000025 ], [ -82.024854220999941, 28.931139651000024 ], [ -82.025682779999954, 28.931140916000061 ], [ -82.025912159999962, 28.931140872000071 ], [ -82.025953414999947, 28.931139064000035 ], [ -82.026013876999968, 28.931129487000078 ], [ -82.02612854399996, 28.931103889000042 ], [ -82.026231902999939, 28.931069767000054 ], [ -82.026336872999934, 28.931022859000052 ], [ -82.026441848, 28.930988738000053 ], [ -82.02654309199994, 28.930968154000027 ], [ -82.026588391999951, 28.930963163000058 ], [ -82.026611850999984, 28.930960313000071 ], [ -82.026644206999947, 28.930957460000059 ], [ -82.026833500999942, 28.930958846000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026833500999942, 28.930958846000067 ], [ -82.026966977999962, 28.930958819000068 ], [ -82.027427709999984, 28.930962539000063 ], [ -82.028081700999962, 28.930962149000038 ], [ -82.028767164999977, 28.930967299000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023571364999952, 28.928433342000062 ], [ -82.023722584999973, 28.928441589000045 ], [ -82.024379790999944, 28.928446533000056 ], [ -82.02649053, 28.928453405000027 ], [ -82.026826920999952, 28.928455027000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020306042999948, 28.928260825000052 ], [ -82.020460548999949, 28.928261328000076 ], [ -82.021083725999972, 28.928264348000027 ], [ -82.022138875999985, 28.92827040800006 ], [ -82.022510656999941, 28.928267231000063 ], [ -82.022603716999981, 28.928278578000061 ], [ -82.022669871999938, 28.928291218000027 ], [ -82.022790677999978, 28.928319031000058 ], [ -82.023094129999947, 28.928394887000024 ], [ -82.023224998999979, 28.928408783000066 ], [ -82.023422015999984, 28.928408749000027 ], [ -82.023571364999952, 28.928433342000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015924816999984, 28.928218331000039 ], [ -82.017075566999949, 28.928230651000035 ], [ -82.018544989999953, 28.928239800000028 ], [ -82.020094252999968, 28.928256202000057 ], [ -82.020306042999948, 28.928260825000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016265951999969, 28.930706398000041 ], [ -82.016308315999936, 28.930623899000068 ], [ -82.016323923999948, 28.930548089000069 ], [ -82.016326152999966, 28.930316201000039 ], [ -82.016323476999958, 28.930055177000042 ], [ -82.016315376999955, 28.929945559000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013480278999964, 28.932506557000067 ], [ -82.013479118999953, 28.932431606000023 ], [ -82.013477934999969, 28.932187503000023 ], [ -82.013478489999954, 28.93201480700003 ], [ -82.013483082999983, 28.931924324000079 ], [ -82.013498425999956, 28.93185814800006 ], [ -82.01351236499994, 28.931818145000079 ], [ -82.013544466999974, 28.93175145500004 ], [ -82.013598079999952, 28.931681887000025 ], [ -82.013663665999957, 28.931619219000027 ], [ -82.013743078999937, 28.931570223000051 ], [ -82.013802344999988, 28.931538050000029 ], [ -82.013862212999982, 28.931520487000057 ], [ -82.013919256999941, 28.93150997500004 ], [ -82.014015724999979, 28.931498863000058 ], [ -82.014129325999988, 28.931496149000054 ], [ -82.014386649999949, 28.93149627300005 ], [ -82.014767321999955, 28.931493823000039 ], [ -82.015167039999938, 28.931488517000048 ], [ -82.015470237999978, 28.931488925000053 ], [ -82.015713065999989, 28.931494519000069 ], [ -82.015888349999955, 28.931495541000061 ], [ -82.016041701999939, 28.931496086000038 ], [ -82.016272318999938, 28.93149353900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016313879999984, 28.932449849000079 ], [ -82.016314442999942, 28.93409030600003 ], [ -82.016317718999971, 28.934680037000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018614190999983, 28.936366332000034 ], [ -82.018458839999937, 28.936222990000033 ], [ -82.018364058999964, 28.936134010000046 ], [ -82.018246062999935, 28.93602568700004 ], [ -82.018089380999982, 28.935882547000062 ], [ -82.017969451999988, 28.935764551000034 ], [ -82.017826310999965, 28.935633016000054 ], [ -82.017663826999978, 28.935518889000036 ], [ -82.017505209999968, 28.935451188000059 ], [ -82.017504990999953, 28.935451153000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016321090999952, 28.935467426000059 ], [ -82.016331571999956, 28.936077408000074 ], [ -82.016331632999936, 28.936470989000043 ], [ -82.016344019999963, 28.937711337000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016344019999963, 28.937711337000053 ], [ -82.016345331999958, 28.937842715000045 ], [ -82.016351078999946, 28.938290413000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017154858999959, 28.937708929000053 ], [ -82.017006149999986, 28.937708566000026 ], [ -82.016785701999936, 28.937708882000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00667348099995, 28.932556154000054 ], [ -82.006687186999955, 28.93254292000006 ], [ -82.006750156999942, 28.932466775000023 ], [ -82.006806199999971, 28.932401738000067 ], [ -82.006861026999957, 28.932333500000027 ], [ -82.006958641999972, 28.932202908000079 ], [ -82.007048234999957, 28.932073492000029 ], [ -82.007124395999938, 28.931951176000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006107304999944, 28.933095622000053 ], [ -82.006221040999947, 28.932997052000076 ], [ -82.006288942999959, 28.932934325000076 ], [ -82.006367030999968, 28.932865623000055 ], [ -82.006446818999962, 28.932789877000062 ], [ -82.006501309999976, 28.932734692000054 ], [ -82.006574857999965, 28.932661748000044 ], [ -82.006604277999941, 28.932631159000039 ], [ -82.00667348099995, 28.932556154000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011236082999972, 28.912710409000056 ], [ -82.011332063999987, 28.912729377000062 ], [ -82.011487356999965, 28.91276352400007 ], [ -82.011640494999938, 28.91279482300007 ], [ -82.011727143999963, 28.912815508000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011236082999972, 28.912710409000056 ], [ -82.011258595999948, 28.912452945000041 ], [ -82.011253497999974, 28.912276932000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010555862999979, 28.912622820000024 ], [ -82.010714127999961, 28.912631695000073 ], [ -82.010854323999979, 28.912647815000071 ], [ -82.010983732999989, 28.912665834000052 ], [ -82.01110990899997, 28.912685749000048 ], [ -82.011236082999972, 28.912710409000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008575948999976, 28.914374515000077 ], [ -82.008663154999965, 28.914416653000046 ], [ -82.008796190999988, 28.914441575000069 ], [ -82.009530240999936, 28.914542742000037 ], [ -82.010280725999962, 28.914642296000068 ], [ -82.010350112999959, 28.914640684000062 ], [ -82.010422498999958, 28.91461330900006 ], [ -82.010470621999957, 28.914581230000067 ], [ -82.010507135999944, 28.914531423000028 ], [ -82.010532272999967, 28.914453101000049 ], [ -82.010546722999948, 28.914384688000041 ], [ -82.010550038999952, 28.914324527000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008575948999976, 28.914374515000077 ], [ -82.008634024999935, 28.914249655000049 ], [ -82.008673801999976, 28.914131457000053 ], [ -82.00869264399995, 28.914006820000054 ], [ -82.008694961999936, 28.913886969000032 ], [ -82.008692723999957, 28.913799023000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007730318999961, 28.91540967800006 ], [ -82.007731490999959, 28.915406241000028 ], [ -82.007789292999973, 28.915281193000055 ], [ -82.007846334999954, 28.915178753000077 ], [ -82.007893616, 28.915103363000071 ], [ -82.007980207999935, 28.914988212000026 ], [ -82.008073337999974, 28.91487859800003 ], [ -82.008159485999954, 28.914796644000035 ], [ -82.008283716999983, 28.914688745000035 ], [ -82.008310230999939, 28.914667608000059 ], [ -82.008310313999971, 28.914667542000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006770706999987, 28.915380853000045 ], [ -82.007146580999972, 28.915380834000075 ], [ -82.007623629999955, 28.915389300000072 ], [ -82.007730318999961, 28.91540967800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007626426999934, 28.916019885000026 ], [ -82.007622857999934, 28.915988017000075 ], [ -82.007620524999936, 28.915926556000045 ], [ -82.007625248999943, 28.915865533000044 ], [ -82.00763539999997, 28.915767557000038 ], [ -82.007645357999934, 28.915704988000073 ], [ -82.007659236999984, 28.915637900000036 ], [ -82.007684032999975, 28.915538268000034 ], [ -82.007730318999961, 28.91540967800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007625290999954, 28.916443422000043 ], [ -82.007533274999957, 28.916443427000047 ], [ -82.007227918999945, 28.916444458000058 ], [ -82.006915170999946, 28.916444474000059 ], [ -82.006839680999974, 28.916444478000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006847256999947, 28.916876209000066 ], [ -82.006839680999974, 28.916444478000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006847256999947, 28.916876209000066 ], [ -82.007569367999963, 28.916874463000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006864066999981, 28.917982554000048 ], [ -82.006850511999971, 28.917164663000051 ], [ -82.006847256999947, 28.916876209000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004065860999958, 28.918430745000023 ], [ -82.00398847699995, 28.918274990000043 ], [ -82.003957991999982, 28.918185251000068 ], [ -82.003948611999988, 28.918143991000079 ], [ -82.00394274699994, 28.91808725900006 ], [ -82.003935496999986, 28.918032989000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003935496999986, 28.918032989000039 ], [ -82.004104926999958, 28.91803113900005 ], [ -82.004215113999976, 28.918031135000035 ], [ -82.004524962999938, 28.918031125000027 ], [ -82.004953397999941, 28.918031110000072 ], [ -82.005326544999946, 28.91803109600005 ], [ -82.005712586999948, 28.918031080000048 ], [ -82.006030836999969, 28.918031066000026 ], [ -82.006247106999979, 28.918031056000075 ], [ -82.006387181999969, 28.918031050000025 ], [ -82.006497367999941, 28.918027263000056 ], [ -82.006599348999941, 28.91802347600003 ], [ -82.006679838999958, 28.918012472000044 ], [ -82.00678592099996, 28.917993559000024 ], [ -82.006864066999981, 28.917982554000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003935496999986, 28.918032989000039 ], [ -82.003933339999946, 28.918003574000068 ], [ -82.003924706999953, 28.917876427000067 ], [ -82.003916778999951, 28.917725182000027 ], [ -82.003905282999938, 28.917556661000049 ], [ -82.003883945999974, 28.917412689000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002989287999981, 28.921190822000028 ], [ -82.002984012999946, 28.921190822000028 ], [ -82.002925007999977, 28.921100410000065 ], [ -82.002842515999987, 28.920990973000073 ], [ -82.002796644999989, 28.920931274000054 ], [ -82.002568249999968, 28.920666914000037 ], [ -82.002404928999965, 28.920479295000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001497806999964, 28.919912683000064 ], [ -82.001555368999959, 28.919912417000035 ], [ -82.001772494999955, 28.919899273000055 ], [ -82.001975286999937, 28.919890676000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003883945999974, 28.917412689000059 ], [ -82.00388296999995, 28.917404439000052 ], [ -82.003860338999971, 28.917325140000059 ], [ -82.003819271999987, 28.917184424000027 ], [ -82.003760072999967, 28.917046571000071 ], [ -82.003709078999975, 28.91693071900005 ], [ -82.003675277999946, 28.916852683000059 ], [ -82.003575602999945, 28.916621725000027 ], [ -82.003555119999987, 28.916548787000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002865876999977, 28.916894675000037 ], [ -82.002787655999953, 28.916947495000045 ], [ -82.002571177999982, 28.917075546000035 ], [ -82.002407454999968, 28.917169983000065 ], [ -82.002265561999934, 28.917242011000042 ], [ -82.002096378999966, 28.91732204300007 ], [ -82.001903547999973, 28.917405277000057 ], [ -82.001636675999976, 28.917503493000027 ], [ -82.001389970999981, 28.917580749000024 ], [ -82.001300819999983, 28.917604787000073 ], [ -82.001164926999934, 28.917640100000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003555119999987, 28.916548787000067 ], [ -82.003493640999977, 28.916566060000036 ], [ -82.003335470999957, 28.916631851000034 ], [ -82.003251533999958, 28.916673787000036 ], [ -82.003056886999957, 28.916784230000076 ], [ -82.002975025999945, 28.916832249000038 ], [ -82.002913174999946, 28.916867464000063 ], [ -82.002865876999977, 28.916894675000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006839680999974, 28.916444478000074 ], [ -82.006544186999974, 28.916444493000029 ], [ -82.006091241999968, 28.916443564000076 ], [ -82.005743982999945, 28.916443579000031 ], [ -82.005352509999966, 28.916443596000079 ], [ -82.004881230999956, 28.916443614000059 ], [ -82.004455929999949, 28.916443564000076 ], [ -82.004234585999939, 28.916443571000059 ], [ -82.004029650999939, 28.916450797000039 ], [ -82.003880955999989, 28.916468895000037 ], [ -82.003880605999939, 28.91646895100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009381705999942, 28.909087771000031 ], [ -82.009377979999954, 28.908730031000061 ], [ -82.009385432999977, 28.908458 ], [ -82.009361210999941, 28.908312669000054 ], [ -82.009326968999972, 28.908200299000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009330665999983, 28.909809560000042 ], [ -82.009342927999967, 28.909728709000035 ], [ -82.00937309699998, 28.909541262000062 ], [ -82.009378727999945, 28.909304741000028 ], [ -82.009381705999942, 28.909087771000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017315438999958, 28.90662609900005 ], [ -82.017328704999954, 28.906679866000047 ], [ -82.017338464999966, 28.906814820000079 ], [ -82.017351604999988, 28.907846396000025 ], [ -82.017347045999941, 28.909065793000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977300209999953, 28.905421622000063 ], [ -81.97738716799995, 28.905356292000079 ], [ -81.977408538999953, 28.905342806000078 ], [ -81.977570300999957, 28.90528590100007 ], [ -81.97803509299996, 28.905122773000073 ], [ -81.978531164999936, 28.904914103000067 ], [ -81.978821262999986, 28.904776564000031 ], [ -81.979087318999973, 28.904640335000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969274074999987, 28.881994306000024 ], [ -81.969432541999936, 28.882036093000067 ], [ -81.969671859999949, 28.882090232000053 ], [ -81.969870216999936, 28.882129181000039 ], [ -81.970124724999948, 28.882172962000027 ], [ -81.97043516399998, 28.882219470000052 ], [ -81.970878812999956, 28.882262771000057 ], [ -81.971419262999973, 28.882295283000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968570120999971, 28.881815127000039 ], [ -81.969274074999987, 28.881994306000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969086068999957, 28.882611308000037 ], [ -81.969124072999989, 28.88249337600007 ], [ -81.969182640999975, 28.882287146000067 ], [ -81.969261122999967, 28.882047440000065 ], [ -81.969274074999987, 28.881994306000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969274074999987, 28.881994306000024 ], [ -81.969324771999936, 28.881821781000042 ], [ -81.969381271999964, 28.881634954000049 ], [ -81.969461011999954, 28.881376196000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968758387999969, 28.881201738000073 ], [ -81.968566231999944, 28.881151503000069 ], [ -81.967805918999943, 28.880948185000079 ], [ -81.967121271999986, 28.880768739000075 ], [ -81.967032932999984, 28.880740637000031 ], [ -81.966977721999967, 28.880720104000034 ], [ -81.966938464999942, 28.880692015000079 ], [ -81.96691147699994, 28.880667168000059 ], [ -81.966891854999972, 28.880632603000038 ], [ -81.966878367999982, 28.880599119000067 ], [ -81.966872246999969, 28.880552678000072 ], [ -81.966879628999948, 28.880493279000063 ], [ -81.966896835999989, 28.88040148400006 ], [ -81.966925512999978, 28.880288123000071 ], [ -81.966942507999988, 28.880239024000048 ], [ -81.966969203999952, 28.880196330000047 ], [ -81.967016110999964, 28.880159337000066 ], [ -81.967056544999934, 28.880137997000077 ], [ -81.967115574, 28.88012377900003 ], [ -81.967185108999956, 28.880123796000078 ], [ -81.967520243999957, 28.880205075000049 ], [ -81.96808955399996, 28.880354251000028 ], [ -81.968526352999959, 28.880467754000051 ], [ -81.968699354999956, 28.88051207500007 ], [ -81.968791374999967, 28.880544496000027 ], [ -81.968830632999982, 28.880571505000034 ], [ -81.968860071999984, 28.880604992000031 ], [ -81.968886365999936, 28.880644928000038 ], [ -81.968901443999982, 28.880696170000078 ], [ -81.968899271999987, 28.880749307000031 ], [ -81.968888237999977, 28.880792919000044 ], [ -81.968862578999961, 28.880873110000039 ], [ -81.968758387999969, 28.881201738000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975365622999959, 28.877401617000032 ], [ -81.975275957999941, 28.877331710000078 ], [ -81.975187013999971, 28.877260143000058 ], [ -81.97509194099996, 28.877177774000074 ], [ -81.974984598999981, 28.877081905000068 ], [ -81.974895015999948, 28.877009950000058 ], [ -81.974837387999969, 28.876953627000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975742146999949, 28.877671995000071 ], [ -81.975645535999945, 28.877600427000061 ], [ -81.975505982999948, 28.877504552000062 ], [ -81.975443226999971, 28.877459827000052 ], [ -81.975400113999967, 28.877426926000055 ], [ -81.975365622999959, 28.877401617000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975365622999959, 28.877401617000032 ], [ -81.975438947999976, 28.877318130000049 ], [ -81.975587036999968, 28.877152421000062 ], [ -81.975729383999976, 28.876957612000069 ], [ -81.975827161999973, 28.876798220000069 ], [ -81.97593644899996, 28.876593284000023 ], [ -81.976015548999953, 28.876411116000043 ], [ -81.976076837999983, 28.876257250000037 ], [ -81.976142107999976, 28.876092319000065 ], [ -81.976185257999987, 28.875964546000034 ], [ -81.976212589999989, 28.87587092800004 ], [ -81.97624424299994, 28.875734298000054 ], [ -81.97627590999997, 28.875533143000041 ], [ -81.976281006999955, 28.875467534000052 ], [ -81.976281019999988, 28.875410834000036 ], [ -81.976277386999982, 28.87536108200004 ], [ -81.976258711999947, 28.875318063000066 ], [ -81.976224224999953, 28.875276306000046 ], [ -81.976188297999954, 28.875244672000065 ], [ -81.976130231999946, 28.875217022000072 ], [ -81.975994255999979, 28.875205584000071 ], [ -81.975771473999941, 28.875204112000063 ], [ -81.975505563999945, 28.875204064000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975339117999965, 28.876162618000023 ], [ -81.975358737999954, 28.876118747000078 ], [ -81.975391811999941, 28.876054229000033 ], [ -81.975436394999974, 28.875947963000044 ], [ -81.975475230999962, 28.875839168000027 ], [ -81.975492501999952, 28.875736693000079 ], [ -81.975498278999964, 28.875620300000037 ], [ -81.975498303999984, 28.875516556000036 ], [ -81.97550264399996, 28.875397632000045 ], [ -81.97550410599996, 28.875293890000023 ], [ -81.975505563999945, 28.875204064000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97552305399995, 28.874171700000034 ], [ -81.975524547999953, 28.873932585000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975514264999958, 28.874876390000054 ], [ -81.97552305399995, 28.874171700000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975505563999945, 28.875204064000059 ], [ -81.975514264999958, 28.874876390000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973855861999937, 28.874293426000065 ], [ -81.973960624999961, 28.874334612000041 ], [ -81.974008054999956, 28.874342211000055 ], [ -81.974226529999953, 28.874346050000042 ], [ -81.974400447999983, 28.874347347000025 ], [ -81.974450755999953, 28.874347357000033 ], [ -81.974499567999942, 28.874358856000072 ], [ -81.974695077999968, 28.874457472000074 ], [ -81.975188024999966, 28.874718186000052 ], [ -81.975376293999943, 28.87481437200006 ], [ -81.975443841999947, 28.87484601400007 ], [ -81.975514264999958, 28.874876390000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973980239999946, 28.873711261000039 ], [ -81.974147632999973, 28.87372104700006 ], [ -81.97435891899994, 28.873724883000079 ], [ -81.974531226999943, 28.873729590000039 ], [ -81.974584138999944, 28.873735676000024 ], [ -81.974635900999942, 28.87374277400005 ], [ -81.974695710999981, 28.873759996000047 ], [ -81.974747470999944, 28.873777219000033 ], [ -81.974974051999936, 28.873889650000024 ], [ -81.975243835999947, 28.874023426000065 ], [ -81.97552305399995, 28.874171700000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973281793999945, 28.871737628000062 ], [ -81.973448183999949, 28.871622014000025 ], [ -81.973568938999961, 28.871537273000058 ], [ -81.973679631999971, 28.871456323000075 ], [ -81.973795603999974, 28.871360158000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973795603999974, 28.871360158000073 ], [ -81.973857894999981, 28.871308335000037 ], [ -81.97402178699997, 28.871146426000053 ], [ -81.974163181999984, 28.870981332000042 ], [ -81.97420290499997, 28.870929922000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972771482999974, 28.86926412400004 ], [ -81.973027661999936, 28.869266205000031 ], [ -81.973238937999952, 28.869275104000053 ], [ -81.973412844999984, 28.869291586000031 ], [ -81.973572373999957, 28.869319450000035 ], [ -81.973677288999966, 28.869344775000059 ], [ -81.973777587999962, 28.869372507000037 ], [ -81.973992925999937, 28.869444566000027 ], [ -81.974139295999976, 28.869506943000033 ], [ -81.974263661999942, 28.869568639000079 ], [ -81.974408181999934, 28.869659471000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968877887999952, 28.870206566000036 ], [ -81.96898306199995, 28.870125871000027 ], [ -81.969094347999942, 28.870047330000034 ], [ -81.969219082999984, 28.869969869000045 ], [ -81.969315689999974, 28.869917154000063 ], [ -81.969428190999963, 28.869865521000065 ], [ -81.969561289999945, 28.869813338000029 ], [ -81.969737370999951, 28.869756874000075 ], [ -81.970060177999983, 28.869677035000052 ], [ -81.970321109999986, 28.869618479000053 ], [ -81.970604838999975, 28.86955306200008 ], [ -81.97101313099995, 28.869454171000029 ], [ -81.971329726999954, 28.869387237000069 ], [ -81.971544251999944, 28.869337030000054 ], [ -81.971727634, 28.869308137000075 ], [ -81.971919661999948, 28.869286859000056 ], [ -81.972142826999971, 28.869270154000048 ], [ -81.972213754999984, 28.869268646000023 ], [ -81.972355386999936, 28.869265479000035 ], [ -81.972623787999964, 28.869267389000072 ], [ -81.972771482999974, 28.86926412400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971410894999963, 28.868668718000038 ], [ -81.971431007999968, 28.868699086000049 ], [ -81.971461183999963, 28.868723131000024 ], [ -81.971498546999953, 28.868743381000058 ], [ -81.971550684999954, 28.868760448000046 ], [ -81.971635738999964, 28.86876496800005 ], [ -81.97214392099994, 28.86876886500005 ], [ -81.972771611999974, 28.868769230000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971410894999963, 28.868668718000038 ], [ -81.971389347999946, 28.868626962000064 ], [ -81.971379304999971, 28.868561173000046 ], [ -81.971377985999936, 28.868128489000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971377985999936, 28.868128489000071 ], [ -81.972493296999971, 28.868128721000062 ], [ -81.973634477999951, 28.868127683000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973634477999951, 28.868127683000068 ], [ -81.973631765999983, 28.867488777000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972105624999983, 28.866680034000069 ], [ -81.972378697999943, 28.866681355000026 ], [ -81.972528170999965, 28.866682651000076 ], [ -81.972631646999957, 28.866701649000049 ], [ -81.972712926999975, 28.866733253000064 ], [ -81.972924602999967, 28.866841720000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971376943999985, 28.866684943000052 ], [ -81.972105624999983, 28.866680034000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971377985999936, 28.868128489000071 ], [ -81.971376943999985, 28.866684943000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971376943999985, 28.866684943000052 ], [ -81.971378492999975, 28.866277561000061 ], [ -81.971380555999986, 28.866239494000069 ], [ -81.97138569699996, 28.866210509000041 ], [ -81.971412508999947, 28.866152972000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971412508999947, 28.866152972000066 ], [ -81.971441608999953, 28.866118057000051 ], [ -81.971463339999957, 28.866095396000048 ], [ -81.971496400999968, 28.866075161000026 ], [ -81.971546708999938, 28.866057459000046 ], [ -81.971598451999967, 28.866048614000078 ], [ -81.973032803999956, 28.866048908000039 ], [ -81.973351868999941, 28.866048972000044 ], [ -81.973406482999962, 28.866051513000059 ], [ -81.97345678399995, 28.866059113000063 ], [ -81.973502770999971, 28.866079365000076 ], [ -81.973554502999946, 28.86611100500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973631765999983, 28.867488777000062 ], [ -81.973622014999989, 28.866261571000052 ], [ -81.973616274999983, 28.866217291000055 ], [ -81.973603261999983, 28.866184976000056 ], [ -81.973586111999964, 28.866150231000063 ], [ -81.973554502999946, 28.86611100500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972771611999974, 28.868769230000055 ], [ -81.973435908999988, 28.868765335000035 ], [ -81.973469032999958, 28.868760230000078 ], [ -81.973497780999935, 28.868748849000042 ], [ -81.973535156999958, 28.868725935000043 ], [ -81.973562415999936, 28.868704349000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973562415999936, 28.868704349000041 ], [ -81.973586663999981, 28.868678173000035 ], [ -81.97360704, 28.868646393000063 ], [ -81.973617106999939, 28.868621092000069 ], [ -81.97362142999998, 28.868575547000034 ], [ -81.973634477999951, 28.868127683000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972105624999983, 28.866680034000069 ], [ -81.972109769999975, 28.867301228000031 ], [ -81.972118380999973, 28.867349305000062 ], [ -81.972135616999935, 28.867389794000076 ], [ -81.972162916999935, 28.867421429000046 ], [ -81.972199, 28.867448989000025 ], [ -81.972229321999976, 28.867466226000033 ], [ -81.972253881999961, 28.867475401000036 ], [ -81.972282189999987, 28.867485977000058 ], [ -81.972336804999941, 28.867489783000053 ], [ -81.973631765999983, 28.867488777000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965829961999987, 28.868748453000023 ], [ -81.96600532399998, 28.868669972000077 ], [ -81.966152995999948, 28.868614501000025 ], [ -81.966340653999964, 28.868561746000069 ], [ -81.966486241999974, 28.868531715000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966486241999974, 28.868531715000074 ], [ -81.966389465999953, 28.868070660000058 ], [ -81.966360322999947, 28.867910175000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966360322999947, 28.867910175000077 ], [ -81.966509084999984, 28.867889336000076 ], [ -81.966764424999951, 28.867871734000062 ], [ -81.966916689999948, 28.867873803000066 ], [ -81.967072414999961, 28.86788094800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966360322999947, 28.867910175000077 ], [ -81.966344192999941, 28.867787766000049 ], [ -81.966331344999958, 28.867516387000023 ], [ -81.966310651999947, 28.867143379000026 ], [ -81.966304262999984, 28.867052972000067 ], [ -81.966296942999975, 28.867001310000035 ], [ -81.966290534999985, 28.866969021000045 ], [ -81.966282292999949, 28.866935117000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965233448999982, 28.86906914900004 ], [ -81.96526150699998, 28.869098829000052 ], [ -81.965306525999949, 28.869142484000065 ], [ -81.965368029, 28.869196654000064 ], [ -81.965431072999934, 28.869249471000046 ], [ -81.965544853999972, 28.869353748000037 ], [ -81.965632099999937, 28.869426976000057 ], [ -81.965672438999945, 28.869449587000076 ], [ -81.965719201999946, 28.869466551000073 ], [ -81.965760462999981, 28.869474633000038 ], [ -81.965796226999942, 28.869476257000031 ], [ -81.965841160999958, 28.869468196000071 ], [ -81.965889837999953, 28.869451968000078 ], [ -81.965997026999958, 28.869399894000026 ], [ -81.966144274999976, 28.869330577000028 ], [ -81.966268257999957, 28.869271778000041 ], [ -81.96638900499994, 28.869222468000032 ], [ -81.966524839999977, 28.869183598000063 ], [ -81.966656357999966, 28.86915896000005 ], [ -81.966779977999977, 28.86914826900005 ], [ -81.966899976999969, 28.869152377000034 ], [ -81.967061432999969, 28.869171355000049 ], [ -81.96721755599998, 28.869206574000032 ], [ -81.967366340999945, 28.869251301000077 ], [ -81.967511415999979, 28.869296371000075 ], [ -81.967671134999989, 28.869344195000053 ], [ -81.967830658999958, 28.869392018000042 ], [ -81.967975839999951, 28.86943208200006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968465747999971, 28.86823597800003 ], [ -81.968647430999965, 28.868290397000067 ], [ -81.968820042999937, 28.868348431000072 ], [ -81.968883087999984, 28.868391769000027 ], [ -81.968918455999983, 28.868420209000078 ], [ -81.968936904999964, 28.86844187500003 ], [ -81.968984166999974, 28.868504493000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968984166999974, 28.868504493000046 ], [ -81.96907392199995, 28.868450428000074 ], [ -81.969124865999959, 28.868411299000059 ], [ -81.969170959999985, 28.868371457000023 ], [ -81.969210586999964, 28.868327343000033 ], [ -81.969248600999947, 28.868277536000051 ], [ -81.969271247999984, 28.86824053600003 ], [ -81.969300367999949, 28.868187169000066 ], [ -81.969323828999961, 28.86813451200004 ], [ -81.969342437999956, 28.86808327600005 ], [ -81.96935296099997, 28.868037733000051 ], [ -81.969374017999939, 28.867913910000027 ], [ -81.96944689999998, 28.867499035000037 ], [ -81.969460253999955, 28.867409168000052 ], [ -81.969464267999967, 28.867320052000025 ], [ -81.969453830999953, 28.867229331000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965829961999987, 28.868748453000023 ], [ -81.965723234999984, 28.868532841000047 ], [ -81.96569594999994, 28.868461986000057 ], [ -81.965672984999969, 28.868369623000035 ], [ -81.965660067999977, 28.868315218000077 ], [ -81.965637136999987, 28.868119112000045 ], [ -81.965601420999974, 28.867462487000068 ], [ -81.965580045999957, 28.866988036000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992742562999979, 28.898525654000025 ], [ -81.992812187999959, 28.898485785000048 ], [ -81.992905022999935, 28.898444944000062 ], [ -81.992974968999988, 28.898418832000061 ], [ -81.993094644999985, 28.89838713100005 ], [ -81.993174429999954, 28.898363354000026 ], [ -81.993214322999961, 28.898348635000048 ], [ -81.993250354999986, 28.898324856000045 ], [ -81.993283813999938, 28.898293150000029 ], [ -81.993309515999954, 28.898253379000039 ], [ -81.993322777999936, 28.898212534000038 ], [ -81.993328306999956, 28.898180441000079 ], [ -81.993327203999968, 28.898147376000054 ], [ -81.993315049999978, 28.898112364000042 ], [ -81.99328411, 28.898051094000039 ], [ -81.993100572999936, 28.89772270900005 ], [ -81.992859764999935, 28.897274753000033 ], [ -81.992788675999975, 28.897125549000066 ], [ -81.992740454999989, 28.896975678000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990585167999939, 28.898278994000066 ], [ -81.991049389999944, 28.898338638000041 ], [ -81.991329899999982, 28.898376754000026 ], [ -81.991502968999953, 28.89840844500003 ], [ -81.99159296299996, 28.898435256000027 ], [ -81.99166080599997, 28.898465720000047 ], [ -81.991741107999985, 28.898509589000071 ], [ -81.991842177999956, 28.898566860000074 ], [ -81.991918323999982, 28.898624131000076 ], [ -81.991984778999949, 28.898682620000045 ], [ -81.992079461999936, 28.898790143000042 ], [ -81.992114821999962, 28.898845578000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992114821999962, 28.898845578000078 ], [ -81.992433069999947, 28.898685251000074 ], [ -81.992742562999979, 28.898525654000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990342215999988, 28.89903905500006 ], [ -81.990753989999973, 28.899046114000043 ], [ -81.991147772999966, 28.899060579000036 ], [ -81.991212168999937, 28.899071668000033 ], [ -81.991268093999963, 28.899089464000042 ], [ -81.991315873999952, 28.899112023000043 ], [ -81.991344254999944, 28.89913027700004 ], [ -81.991373728999974, 28.899152374000039 ], [ -81.991425185999958, 28.899209257000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991425185999958, 28.899209257000052 ], [ -81.991479339999955, 28.899175224000032 ], [ -81.991582122999944, 28.899119796000036 ], [ -81.991930256999979, 28.898940874000061 ], [ -81.992114821999962, 28.898845578000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991232844999956, 28.899754828000027 ], [ -81.991238377999935, 28.89965563100003 ], [ -81.991251655999974, 28.899485442000071 ], [ -81.991267274999984, 28.899418643000047 ], [ -81.991285285999936, 28.899373320000052 ], [ -81.991300889999934, 28.899339736000059 ], [ -81.991320223999935, 28.899311840000053 ], [ -81.991365503999987, 28.89925788000005 ], [ -81.991425185999958, 28.899209257000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990140658999962, 28.899817606000056 ], [ -81.990608755999972, 28.899777634000031 ], [ -81.99115106499994, 28.899753850000025 ], [ -81.991232844999956, 28.899754828000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989718374999939, 28.900439131000041 ], [ -81.99047315599995, 28.900534499000059 ], [ -81.99055832199997, 28.900537694000036 ], [ -81.990645299999983, 28.900528131000044 ], [ -81.990726513999959, 28.900514043000044 ], [ -81.990802948999942, 28.900486685000033 ], [ -81.990898988999959, 28.900438856000051 ], [ -81.990955165999935, 28.900398996000035 ], [ -81.991011341999979, 28.900351163000039 ], [ -81.991065707999951, 28.900285790000055 ], [ -81.991103765999981, 28.900225201000069 ], [ -81.991138528999954, 28.900150165000071 ], [ -81.991161696999939, 28.90010034200003 ], [ -81.991179883999962, 28.900059373000033 ], [ -81.991203445999986, 28.899990810000077 ], [ -81.991216134999945, 28.899922244000038 ], [ -81.991224774999978, 28.899835364000069 ], [ -81.991232844999956, 28.899754828000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987892074999934, 28.869481453000049 ], [ -81.987889413999937, 28.868847524000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987892074999934, 28.869481453000049 ], [ -81.988372950999974, 28.869481044000054 ], [ -81.988609469999972, 28.869480133000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987112558999968, 28.86944840600006 ], [ -81.987189371999989, 28.869464016000052 ], [ -81.987323304999961, 28.869477900000049 ], [ -81.987611944999969, 28.869484435000061 ], [ -81.987828126999943, 28.869481390000033 ], [ -81.987892074999934, 28.869481453000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989738916999954, 28.888409490000072 ], [ -81.989748309999982, 28.888388226000075 ], [ -81.989844817999938, 28.888123867000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00125249599995, 28.933422996000047 ], [ -82.001336124999966, 28.933464107000077 ], [ -82.001372200999981, 28.933487908000075 ], [ -82.001429587999951, 28.933527266000056 ], [ -82.001501230999963, 28.933577683000067 ], [ -82.001580869999941, 28.933637611000051 ], [ -82.001641715999938, 28.933688154000038 ], [ -82.001690104999966, 28.933724379000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974766390999946, 28.952537634000066 ], [ -81.974018378999972, 28.952528769000025 ], [ -81.973029202999953, 28.95253148300003 ], [ -81.972420484999986, 28.952525541000057 ], [ -81.971358528999986, 28.952525319000074 ], [ -81.970915221999974, 28.952525224000055 ], [ -81.970614164999972, 28.95253679700005 ], [ -81.970246007999947, 28.95255449800004 ], [ -81.969418730999962, 28.952592921000075 ], [ -81.96848691699995, 28.952641067000059 ], [ -81.968172624999966, 28.952658451000048 ], [ -81.967246425999974, 28.952696354000068 ], [ -81.966045590999954, 28.952756150000027 ], [ -81.966038554999955, 28.952756485000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961696366999945, 28.950172604000045 ], [ -81.96176061999995, 28.950236223000047 ], [ -81.961891800999979, 28.950365817000034 ], [ -81.962108653999962, 28.950580237000054 ], [ -81.962587871999972, 28.95105619800006 ], [ -81.963067098999943, 28.95151949600006 ], [ -81.963267155999972, 28.951725297000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963267155999972, 28.951725297000053 ], [ -81.962455136999949, 28.952372621000052 ], [ -81.961575192999987, 28.953078291000054 ], [ -81.961115360999941, 28.953444865000051 ], [ -81.960593638999967, 28.953863046000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959905256999946, 28.953163217000053 ], [ -81.960376742999983, 28.953638710000064 ], [ -81.960593638999967, 28.953863046000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960593638999967, 28.953863046000038 ], [ -81.960249848999979, 28.954137365000065 ], [ -81.959786317999942, 28.954488609000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962775617999966, 28.957449661000055 ], [ -81.961467596999967, 28.956154001000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959786317999942, 28.954488609000066 ], [ -81.959116263999988, 28.953802877000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966038311999966, 28.952877422000029 ], [ -81.96605243099998, 28.95287679200004 ], [ -81.966461878999951, 28.952858511000045 ], [ -81.967572796999946, 28.952802357000053 ], [ -81.968553149999934, 28.952756062000049 ], [ -81.969698342999948, 28.952700063000066 ], [ -81.969962334999934, 28.952688078000051 ], [ -81.970547619999934, 28.952658509000059 ], [ -81.970708571999978, 28.952652605000026 ], [ -81.970876276999945, 28.952645712000049 ], [ -81.97141765799995, 28.952645828000072 ], [ -81.972803185999965, 28.95264809400004 ], [ -81.974838029999944, 28.952659262000054 ], [ -81.974838764999959, 28.952659262000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963378122999984, 28.95164735700007 ], [ -81.963147793999951, 28.95141761800005 ], [ -81.96220197699995, 28.950489147000042 ], [ -81.961795380999945, 28.950089693000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961795380999945, 28.950089693000052 ], [ -81.961657110999965, 28.949974499000064 ], [ -81.961457873999962, 28.949828424000032 ], [ -81.96116681999996, 28.949653755000043 ], [ -81.960912133999955, 28.949534382000024 ], [ -81.960735176999947, 28.949468007000064 ], [ -81.96057719099997, 28.949409073000027 ], [ -81.960419195999975, 28.949368981000077 ], [ -81.960210883999935, 28.949318855000058 ], [ -81.960102031999952, 28.949300869000069 ], [ -81.959997588999954, 28.949286705000077 ], [ -81.959830045, 28.949272227000051 ], [ -81.959570273999987, 28.949258016000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959699188999934, 28.949386449000031 ], [ -81.959803218, 28.949392354000054 ], [ -81.959883558999934, 28.949399444000051 ], [ -81.959971933999952, 28.949408894000044 ], [ -81.960059853999951, 28.949420552000049 ], [ -81.960145369999964, 28.949436365000054 ], [ -81.960232996999935, 28.949453107000068 ], [ -81.960307953999973, 28.949470774000076 ], [ -81.960407191999934, 28.949494019000042 ], [ -81.960506427999974, 28.949521909000055 ], [ -81.960630694999963, 28.949562201000049 ], [ -81.960713705999979, 28.949592847000076 ], [ -81.960788681999986, 28.949621137000065 ], [ -81.960879725999973, 28.949658852000027 ], [ -81.960986832999936, 28.949708351000027 ], [ -81.961083225999971, 28.949757846000068 ], [ -81.961174264999954, 28.949804984000025 ], [ -81.961241203999975, 28.949845047000053 ], [ -81.961310819999937, 28.949887469000032 ], [ -81.961375078999936, 28.949929887000053 ], [ -81.961460759999966, 28.949984091000033 ], [ -81.961551789999987, 28.950057140000069 ], [ -81.961696366999945, 28.950172604000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963981394999962, 28.936504826000032 ], [ -81.964020608999988, 28.93659063900003 ], [ -81.964034319999939, 28.936628719000055 ], [ -81.964055415999951, 28.936681657000065 ], [ -81.964072290999979, 28.936729025000034 ], [ -81.964087442999983, 28.936772692000034 ], [ -81.964099707999935, 28.936819112000023 ], [ -81.96411341299995, 28.936876692000055 ], [ -81.964123949999987, 28.93692962800003 ], [ -81.964145538999958, 28.937047077000045 ], [ -81.964160822999986, 28.937157161000073 ], [ -81.964263484999947, 28.937947274000066 ], [ -81.964263827999957, 28.937949918000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962565819999952, 28.935345045000076 ], [ -81.962670253999988, 28.935373170000048 ], [ -81.962740910999969, 28.935398263000025 ], [ -81.962819282999988, 28.935429627000076 ], [ -81.962908936999952, 28.935468308000054 ], [ -81.962996805999978, 28.935512734000042 ], [ -81.963072764999936, 28.935553226000025 ], [ -81.963135138999974, 28.935590083000079 ], [ -81.963178262999975, 28.935615136000024 ], [ -81.963215584999944, 28.935639121000065 ], [ -81.963260704999982, 28.93566908300005 ], [ -81.963303745999951, 28.935698783000078 ], [ -81.963341147999984, 28.935725956000056 ], [ -81.96337558099998, 28.935751563000053 ], [ -81.963411793999967, 28.935778213000049 ], [ -81.963441475999957, 28.935802773000034 ], [ -81.963479470999971, 28.935833603000049 ], [ -81.963509931999965, 28.935859361000041 ], [ -81.963538840999945, 28.935887215000037 ], [ -81.963567357999978, 28.935915756000043 ], [ -81.963595291, 28.935944642000038 ], [ -81.963635885999963, 28.935991663000038 ], [ -81.963664377999976, 28.936024406000058 ], [ -81.963686539999969, 28.936050182000031 ], [ -81.963715822999973, 28.936084319000031 ], [ -81.963738773999978, 28.936115667000024 ], [ -81.963762517999953, 28.936143534000053 ], [ -81.963784674999943, 28.936175579000064 ], [ -81.963809207999986, 28.936208321000038 ], [ -81.963831762999973, 28.936240482000073 ], [ -81.963852863999989, 28.93627391900003 ], [ -81.963875023999947, 28.936305501000049 ], [ -81.963894013999948, 28.936338008000064 ], [ -81.963913665999939, 28.936371330000043 ], [ -81.963981394999962, 28.936504826000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961364905999972, 28.934980768000059 ], [ -81.961369573999946, 28.934982738000031 ], [ -81.961481182999989, 28.935022527000058 ], [ -81.961664430999974, 28.935081924000031 ], [ -81.961843743999964, 28.935135258000059 ], [ -81.962211149999973, 28.935240485000065 ], [ -81.962423920999981, 28.935299332000056 ], [ -81.962565819999952, 28.935345045000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959136840999975, 28.932816170000024 ], [ -81.959161757999937, 28.932875727000066 ], [ -81.959189046999938, 28.932942078000053 ], [ -81.959217524999985, 28.933006338000041 ], [ -81.959248375999948, 28.933071121000069 ], [ -81.959279821999985, 28.933136427000079 ], [ -81.959308896999971, 28.933194420000063 ], [ -81.959337377999987, 28.933249278000062 ], [ -81.959372387999963, 28.933313018000035 ], [ -81.959408585999938, 28.933374668000056 ], [ -81.95944656599994, 28.933435276000068 ], [ -81.959489294999969, 28.933501107000041 ], [ -81.959526090999987, 28.933555445000025 ], [ -81.959563479999986, 28.933608216000039 ], [ -81.959597309999936, 28.933653151000044 ], [ -81.959645977999969, 28.933715850000056 ], [ -81.959699985999976, 28.933784150000065 ], [ -81.959748141999967, 28.933841958000073 ], [ -81.959793013999956, 28.933895912000025 ], [ -81.959848832999967, 28.933956611000042 ], [ -81.959892611999976, 28.934003821000033 ], [ -81.959937488999969, 28.934048143000041 ], [ -81.960000970999943, 28.934111735000045 ], [ -81.960056793999968, 28.934165693000068 ], [ -81.960106049, 28.934211941000058 ], [ -81.960172476999958, 28.934267633000047 ], [ -81.960234212999978, 28.934319889000051 ], [ -81.960294763999968, 28.934369010000069 ], [ -81.960357095999939, 28.934415519000027 ], [ -81.960413635999942, 28.934457654000028 ], [ -81.960472746999983, 28.934501017000059 ], [ -81.960535191999952, 28.934544077000055 ], [ -81.96061474399994, 28.93459529200004 ], [ -81.96068717199995, 28.93464128200003 ], [ -81.960752476999971, 28.934681001000058 ], [ -81.960818374999974, 28.934719677000032 ], [ -81.960885842999971, 28.934756782000079 ], [ -81.960952847999977, 28.934794961000023 ], [ -81.961070825999968, 28.934856234000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959136840999975, 28.932816170000024 ], [ -81.959656915999972, 28.932657580000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958565003999979, 28.932931961000065 ], [ -81.958624316999988, 28.932920057000047 ], [ -81.958715377999965, 28.93290255200003 ], [ -81.958881866999945, 28.932868570000039 ], [ -81.959136840999975, 28.932816170000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959053388999962, 28.93080242700006 ], [ -81.959041444999968, 28.930838493000067 ], [ -81.959026613999981, 28.930894152000064 ], [ -81.959014476999982, 28.930948628000067 ], [ -81.958991786999945, 28.931044556000074 ], [ -81.958964566999953, 28.931196141000044 ], [ -81.958949713999971, 28.931306282000037 ], [ -81.95893754399998, 28.931443662000049 ], [ -81.958930736999946, 28.931637893000072 ], [ -81.958932016999938, 28.931801333000067 ], [ -81.958942721999961, 28.931969514000059 ], [ -81.95895077299997, 28.932034655000052 ], [ -81.958957476999956, 28.932103349000045 ], [ -81.95896430099998, 28.932163671000069 ], [ -81.958974963999935, 28.932225315000039 ], [ -81.958988591999969, 28.932301586000051 ], [ -81.959002815999952, 28.932368976000078 ], [ -81.959025342999951, 28.932465100000059 ], [ -81.959050837999939, 28.932562268000027 ], [ -81.959094132999951, 28.932700712000042 ], [ -81.959136840999975, 28.932816170000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964332664999972, 28.925837315000024 ], [ -81.964273418999937, 28.925876384000048 ], [ -81.964200706999975, 28.925924921000046 ], [ -81.964137419999986, 28.925969910000049 ], [ -81.964064704999942, 28.92602437000005 ], [ -81.964005455999938, 28.926071729000057 ], [ -81.963952938999967, 28.92611435200007 ], [ -81.963892342999941, 28.926162893000026 ], [ -81.963834436999946, 28.926212621000047 ], [ -81.963776532999987, 28.926265900000033 ], [ -81.963706506999984, 28.926329836000036 ], [ -81.963652640999953, 28.926379565000047 ], [ -81.963600117999988, 28.926434030000053 ], [ -81.963552984999978, 28.926482576000069 ], [ -81.963506643999949, 28.926529575000075 ], [ -81.963453871999945, 28.926584565000041 ], [ -81.96340227099995, 28.926640586000076 ], [ -81.96337873899995, 28.926667044000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96337873899995, 28.926667044000055 ], [ -81.963344239999969, 28.926714651000054 ], [ -81.963310568999987, 28.926757278000025 ], [ -81.963233800999944, 28.926853190000031 ], [ -81.963173794999989, 28.926926981000065 ], [ -81.962953659999982, 28.927209602000062 ], [ -81.96280954599996, 28.927397873000075 ], [ -81.962742206999962, 28.927476021000075 ], [ -81.962715270999979, 28.927509176000058 ], [ -81.962678908999976, 28.927547065000056 ], [ -81.96265062699996, 28.927577850000034 ], [ -81.962627731999987, 28.927603899000076 ], [ -81.962599448999981, 28.927634684000054 ], [ -81.962573862999989, 28.927657181000029 ], [ -81.962544234999939, 28.92768559600006 ], [ -81.962503835999939, 28.92771993100007 ], [ -81.962474209999982, 28.92774361000005 ], [ -81.962439198999959, 28.927772025000024 ], [ -81.962409572999945, 28.927793333000068 ], [ -81.962378601999944, 28.927817012000048 ], [ -81.962354362999974, 28.92783477100005 ], [ -81.962318050999954, 28.927859663000049 ], [ -81.962284630999989, 28.927883718000032 ], [ -81.962241251999956, 28.927911722000033 ], [ -81.962211627999977, 28.927930663000041 ], [ -81.962175271999968, 28.927950787000043 ], [ -81.962138915999958, 28.927970911000045 ], [ -81.961965218999978, 28.928060871000071 ], [ -81.961282551999943, 28.928395848000036 ], [ -81.961168099999952, 28.928455033000034 ], [ -81.961075188999985, 28.92850119600007 ], [ -81.960997092999946, 28.928542625000034 ], [ -81.960945925999965, 28.928571033000026 ], [ -81.960904183999958, 28.928593524000064 ], [ -81.960791221999955, 28.928655985000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96337873899995, 28.926667044000055 ], [ -81.963463436999973, 28.92670398100006 ], [ -81.963506185999961, 28.926717226000051 ], [ -81.963536268999974, 28.926720717000023 ], [ -81.963567933999968, 28.926726995000024 ], [ -81.963596432999964, 28.926732574000027 ], [ -81.963632847999975, 28.926737460000027 ], [ -81.963670056999945, 28.926742344000047 ], [ -81.963700930999948, 28.926747925000029 ], [ -81.963734972999987, 28.926752114000067 ], [ -81.963767430999951, 28.926754212000048 ], [ -81.963793556999974, 28.92675491500006 ], [ -81.963820474999977, 28.926753530000042 ], [ -81.96384945899996, 28.926753466000036 ], [ -81.963902993999966, 28.92675451100007 ], [ -81.963935816999935, 28.926755895000042 ], [ -81.963968444999978, 28.926757623000071 ], [ -81.964001072999963, 28.926760038000054 ], [ -81.964033700999948, 28.926762797000038 ], [ -81.964066327999944, 28.926766243000031 ], [ -81.964098761999935, 28.926770034000072 ], [ -81.964131192999957, 28.926774168000065 ], [ -81.96416362399998, 28.92677898900007 ], [ -81.964195859999961, 28.926784499000064 ], [ -81.964227900999958, 28.926790351000079 ], [ -81.964259940999966, 28.926796548000027 ], [ -81.964291786999979, 28.926803432000042 ], [ -81.964323435999972, 28.926810660000058 ], [ -81.964355083999976, 28.926818574000038 ], [ -81.964386341999955, 28.926826833000064 ], [ -81.9644176, 28.926835436000033 ], [ -81.964448662999985, 28.92684472600007 ], [ -81.964479530999938, 28.92685436000005 ], [ -81.964510397999959, 28.92686433700004 ], [ -81.964540676999945, 28.926875002000031 ], [ -81.964570958999957, 28.926886356000068 ], [ -81.964601042999959, 28.92689770800007 ], [ -81.964630932999967, 28.926909748000071 ], [ -81.96466043099997, 28.926922132000072 ], [ -81.964689734, 28.926935204000074 ], [ -81.964718840999979, 28.92694861800004 ], [ -81.964747556999953, 28.926962377000052 ], [ -81.964776077999943, 28.926976823000075 ], [ -81.964804207999975, 28.926991269000041 ], [ -81.964832142999967, 28.927006403000064 ], [ -81.965615597999943, 28.927436230000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96337873899995, 28.926667044000055 ], [ -81.96320699599994, 28.926514464000036 ], [ -81.962565197999936, 28.925903625000046 ], [ -81.962515737999979, 28.925847543000032 ], [ -81.962482500999954, 28.925804351000068 ], [ -81.962456389999943, 28.925763251000035 ], [ -81.962433446999967, 28.92572006000006 ], [ -81.962413668999943, 28.925679659000025 ], [ -81.962399433999963, 28.925638561000028 ], [ -81.962385198999982, 28.925595374000068 ], [ -81.962375713999961, 28.925553581000031 ], [ -81.962367810999979, 28.92551387900005 ], [ -81.962363084999936, 28.925451889000044 ], [ -81.962361510999983, 28.925421243000073 ], [ -81.962361519999945, 28.925396169000066 ], [ -81.962363112999981, 28.925373881000041 ], [ -81.96236397399997, 28.925349900000072 ], [ -81.962364712999943, 28.925326519000066 ], [ -81.962369471999978, 28.925300750000076 ], [ -81.962371854999958, 28.925277767000068 ], [ -81.962378196999964, 28.92525269500004 ], [ -81.962386122999987, 28.925231105000023 ], [ -81.962395629999946, 28.925209515000063 ], [ -81.96240355599997, 28.925185837000072 ], [ -81.962418610999975, 28.925148928000056 ], [ -81.962448718999951, 28.925082071000077 ], [ -81.962818306999964, 28.924332625000034 ], [ -81.962857388999964, 28.924255557000038 ], [ -81.962881681999988, 28.924216558000069 ], [ -81.96290914399998, 28.924171991000037 ], [ -81.962945049999973, 28.924119067000049 ], [ -81.962975676999974, 28.924077285000067 ], [ -81.963005244999977, 28.924040147000028 ], [ -81.963041148999935, 28.923997437000025 ], [ -81.963066492999985, 28.923969584000076 ], [ -81.963105563999989, 28.923927806000052 ], [ -81.963135128999966, 28.923899954000035 ], [ -81.963171031999934, 28.923861889000079 ], [ -81.963223826999979, 28.923814540000023 ], [ -81.963270285999954, 28.923775549000027 ], [ -81.96331990799996, 28.92374213100004 ], [ -81.96336847699996, 28.923706855000034 ], [ -81.963430768999956, 28.923667867000063 ], [ -81.96348355799995, 28.923635379000075 ], [ -81.963537403999965, 28.923601033000068 ], [ -81.96359969599996, 28.92356204500004 ], [ -81.963660931999982, 28.923523987000067 ], [ -81.963715834999959, 28.92348406900004 ], [ -81.963773905999972, 28.923435794000056 ], [ -81.963827755999944, 28.923391232000029 ], [ -81.963858376999951, 28.923364309000078 ], [ -81.963884773999951, 28.923340171000063 ], [ -81.96393440199995, 28.923290036000026 ], [ -81.963965022999957, 28.923262185000056 ], [ -81.964007260999949, 28.92321669100005 ], [ -81.964038940999956, 28.923178625000048 ], [ -81.964073786999961, 28.923141488000056 ], [ -81.964109689999987, 28.923101564000035 ], [ -81.964140310999937, 28.923070926000037 ], [ -81.964175155999953, 28.923039361000065 ], [ -81.964205774999982, 28.923016153000049 ], [ -81.964237449999985, 28.922992944000043 ], [ -81.964271234999956, 28.922973452000065 ], [ -81.964305019999983, 28.922952101000078 ], [ -81.964334579999957, 28.922935393000046 ], [ -81.964367308999954, 28.922915899000031 ], [ -81.964404258999934, 28.922900121000055 ], [ -81.964440152999941, 28.92288620100004 ], [ -81.964480267999988, 28.922871353000062 ], [ -81.964540657999976, 28.922851536000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968408928999963, 28.927146400000026 ], [ -81.968430075999947, 28.927135159000045 ], [ -81.968471084999976, 28.927116130000059 ], [ -81.968539431999943, 28.927089092000074 ], [ -81.968582717999936, 28.927074072000039 ], [ -81.968631697999967, 28.927059052000061 ], [ -81.96869662499995, 28.927041032000034 ], [ -81.968752439999946, 28.927026015000024 ], [ -81.968805973999963, 28.927017009000053 ], [ -81.96886178699998, 28.927008003000026 ], [ -81.968926710999938, 28.927002005000077 ], [ -81.968995050999979, 28.926998014000048 ], [ -81.969077225999968, 28.926995675000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967858027999966, 28.927625956000043 ], [ -81.967872879999959, 28.927611865000074 ], [ -81.967887538999946, 28.927597430000048 ], [ -81.967901610999945, 28.927582994000034 ], [ -81.967915682999944, 28.927568216000054 ], [ -81.967929364999975, 28.927553093000029 ], [ -81.967942654999945, 28.92753797000006 ], [ -81.967955750999977, 28.927522503000034 ], [ -81.967978227999936, 28.927494319000061 ], [ -81.968000901999972, 28.927466134000042 ], [ -81.968013995999968, 28.927450667000073 ], [ -81.968027286999984, 28.927435544000048 ], [ -81.968040967999968, 28.927420422000068 ], [ -81.968054845999973, 28.927405643000043 ], [ -81.968069112999956, 28.927391208000074 ], [ -81.96808357599997, 28.927376772000059 ], [ -81.968098428999951, 28.927362680000044 ], [ -81.968113477999964, 28.927348589000076 ], [ -81.968128915999955, 28.92733484200005 ], [ -81.968144550999966, 28.927321438000035 ], [ -81.968160381999951, 28.927308378000077 ], [ -81.968176601999971, 28.927295319000052 ], [ -81.968193018999955, 28.927282602000048 ], [ -81.96820963, 28.92727023100008 ], [ -81.968226435999952, 28.927257859000065 ], [ -81.968243633999975, 28.92724617500005 ], [ -81.968261026999983, 28.927234490000046 ], [ -81.968278614999974, 28.927223150000032 ], [ -81.96829639799995, 28.927211810000074 ], [ -81.968314570999951, 28.92720115700007 ], [ -81.968330536999986, 28.927190262000067 ], [ -81.96834795999996, 28.927179121000052 ], [ -81.968366963999983, 28.927167983000061 ], [ -81.968384383999989, 28.927157539000063 ], [ -81.968408928999963, 28.927146400000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967828549999979, 28.923616245000062 ], [ -81.967755117999957, 28.923662827000044 ], [ -81.96769676699995, 28.923697398000058 ], [ -81.967416459999981, 28.923874243000057 ], [ -81.96690810399997, 28.924197294000066 ], [ -81.965978074999953, 28.924787224000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964540657999976, 28.922851536000053 ], [ -81.964565808999964, 28.922844837000071 ], [ -81.96461001299997, 28.922832110000058 ], [ -81.964658027999974, 28.922821395000028 ], [ -81.96469994399996, 28.922816042000079 ], [ -81.964758625999934, 28.922810694000077 ], [ -81.964808922999964, 28.922807354000042 ], [ -81.964888942999949, 28.922804023000026 ], [ -81.96497962899997, 28.922808069000041 ], [ -81.965068788999986, 28.922816809000039 ], [ -81.965112224999984, 28.922824195000032 ], [ -81.965184615999988, 28.922840976000032 ], [ -81.96523719399994, 28.922857750000048 ], [ -81.965263862999961, 28.922868485000038 ], [ -81.965287483999987, 28.922877208000045 ], [ -81.965329393, 28.922895991000075 ], [ -81.965381205999961, 28.922918801000037 ], [ -81.965442922999955, 28.92295032800007 ], [ -81.965560263999976, 28.923010701000067 ], [ -81.965644080999937, 28.92304692700003 ], [ -81.965743138999983, 28.923083828000074 ], [ -81.96582467099995, 28.923112678000052 ], [ -81.965962593999961, 28.923154282000041 ], [ -81.966098991999957, 28.92319588600003 ], [ -81.966395408999972, 28.923299213000064 ], [ -81.966524946999982, 28.923344837000059 ], [ -81.966604957999948, 28.923368323000034 ], [ -81.966667441999959, 28.923387112000057 ], [ -81.966747453999972, 28.923405234000029 ], [ -81.966821541999934, 28.923419900000056 ], [ -81.966904883999973, 28.923429064000061 ], [ -81.967003070999965, 28.923440235000044 ], [ -81.967080673999988, 28.923445131000051 ], [ -81.967168571999935, 28.923445153000046 ], [ -81.967264894999971, 28.923445589000039 ], [ -81.967364731999965, 28.923433545000023 ], [ -81.967460754999934, 28.923426863000032 ], [ -81.967529343999956, 28.923422187000028 ], [ -81.967569265999941, 28.923421562000044 ], [ -81.967617304999976, 28.923427031000074 ], [ -81.967652143999942, 28.923438187000045 ], [ -81.96768803599997, 28.923455728000079 ], [ -81.967717327999935, 28.923478030000069 ], [ -81.967742661999978, 28.923500328000046 ], [ -81.96777274599998, 28.923523326000065 ], [ -81.967795701999989, 28.923548412000059 ], [ -81.967828549999979, 28.923616245000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968629369999974, 28.922673806000034 ], [ -81.968590629999937, 28.922756330000027 ], [ -81.968559322999965, 28.922823019000077 ], [ -81.968522955999958, 28.922892886000056 ], [ -81.968487938999942, 28.922950911000044 ], [ -81.968465042999981, 28.922987620000072 ], [ -81.968444839999961, 28.923017224000034 ], [ -81.968421945999978, 28.923050382000042 ], [ -81.968399051999938, 28.923081168000067 ], [ -81.968374811, 28.923114324000039 ], [ -81.968350569999984, 28.923146296000027 ], [ -81.968326329999968, 28.923174714000027 ], [ -81.968299577999971, 28.923204250000026 ], [ -81.968273711999984, 28.923233118000041 ], [ -81.968245857999989, 28.923264172000074 ], [ -81.968218995999962, 28.923293914000055 ], [ -81.968191140999977, 28.923321032000047 ], [ -81.968163784999945, 28.923347274000037 ], [ -81.968133442999942, 28.923377015000028 ], [ -81.968103101999986, 28.923404570000059 ], [ -81.968072760999974, 28.923431249000032 ], [ -81.968040927999937, 28.923458365000045 ], [ -81.96801058799997, 28.923481981000066 ], [ -81.967978258999949, 28.923506909000025 ], [ -81.967945431999965, 28.923532714000032 ], [ -81.967912170999966, 28.923557587000062 ], [ -81.967880090999984, 28.923581203000026 ], [ -81.967849501999979, 28.92360153900006 ], [ -81.967828549999979, 28.923616245000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967828549999979, 28.923616245000062 ], [ -81.967855292999957, 28.923703381000053 ], [ -81.967867872999989, 28.923761132000038 ], [ -81.967890628999953, 28.923866468000028 ], [ -81.967928030999985, 28.924056067000038 ], [ -81.967935475, 28.924092805000043 ], [ -81.967939601999944, 28.924126674000036 ], [ -81.967944281999962, 28.924153833000048 ], [ -81.967948376999971, 28.924181336000061 ], [ -81.967951884999934, 28.924208839000073 ], [ -81.967955002999986, 28.924236343000075 ], [ -81.967957339999941, 28.924263845000041 ], [ -81.967959284999949, 28.924291348000054 ], [ -81.967960642999969, 28.924319194000077 ], [ -81.96796141699997, 28.924346696000043 ], [ -81.967992288999938, 28.925674019000041 ], [ -81.967993336999939, 28.925699093000048 ], [ -81.967993329999956, 28.925721380000027 ], [ -81.967994377999958, 28.925746454000034 ], [ -81.967996482, 28.925770601000067 ], [ -81.967998585999965, 28.925793818000045 ], [ -81.968002800999955, 28.92581610700006 ], [ -81.968008070999986, 28.925842110000076 ], [ -81.968012288999944, 28.925863471000071 ], [ -81.968021771999986, 28.925912693000043 ], [ -81.968142984999986, 28.926501495000025 ], [ -81.96817671499997, 28.926663091000023 ], [ -81.968188969999972, 28.926713126000038 ], [ -81.968197668999949, 28.926746560000026 ], [ -81.968209532999936, 28.926782781000043 ], [ -81.968221396999979, 28.926819002000059 ], [ -81.968232471999954, 28.926850347000027 ], [ -81.968243546999986, 28.926876120000031 ], [ -81.968256996999969, 28.926906072000065 ], [ -81.968270446999952, 28.926934632000041 ], [ -81.968287061999945, 28.926968764000037 ], [ -81.968305261999944, 28.927001504000032 ], [ -81.968325834999973, 28.927037030000065 ], [ -81.968342452999934, 28.927063501000077 ], [ -81.968358279999961, 28.927087882000023 ], [ -81.968378854999969, 28.927111568000043 ], [ -81.968397056999947, 28.927134557000045 ], [ -81.968408928999963, 28.927146400000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958718525999984, 28.923657914000046 ], [ -81.958730236999941, 28.923688857000059 ], [ -81.958739019999939, 28.923710517000075 ], [ -81.958747998999968, 28.923731835000069 ], [ -81.958757563999939, 28.923753151000028 ], [ -81.958774937999976, 28.923788909000052 ], [ -81.95878547999996, 28.923809884000036 ], [ -81.958796607999943, 28.923830170000031 ], [ -81.958808127999987, 28.923850800000025 ], [ -81.958820036999953, 28.923871086000077 ], [ -81.958832337999979, 28.92389103000005 ], [ -81.958844834, 28.923910972000044 ], [ -81.958857916999989, 28.923930572000074 ], [ -81.958871389999956, 28.923950170000069 ], [ -81.958885252999949, 28.923969426000042 ], [ -81.958899508999934, 28.923988338000072 ], [ -81.958914154999945, 28.924007250000045 ], [ -81.958943641999952, 28.924043356000027 ], [ -81.95898133299994, 28.924088402000052 ], [ -81.958998320999967, 28.924108690000025 ], [ -81.959015702999977, 28.924128635000045 ], [ -81.95904656, 28.924162678000073 ], [ -81.959064916999978, 28.924182278000046 ], [ -81.95908366599997, 28.924201191000066 ], [ -81.959102804999986, 28.924220105000074 ], [ -81.95912233599995, 28.924238332000073 ], [ -81.959142256999939, 28.924256558000025 ], [ -81.959171162999951, 28.924282006000055 ], [ -81.95919186499998, 28.924299202000043 ], [ -81.959212958999956, 28.924316397000041 ], [ -81.959234248999962, 28.924333248000039 ], [ -81.959256124999968, 28.924349412000026 ], [ -81.959291281999981, 28.924374862000036 ], [ -81.959313158999976, 28.92439102700007 ], [ -81.959325853999985, 28.924401344000046 ], [ -81.959339330999967, 28.924413036000033 ], [ -81.959352611999975, 28.924425072000076 ], [ -81.959365304999949, 28.924437796000063 ], [ -81.95937741399996, 28.924450519000061 ], [ -81.959389130999966, 28.924463930000059 ], [ -81.959400262999964, 28.924477684000067 ], [ -81.959410807999973, 28.924491438000075 ], [ -81.959420961999967, 28.924505880000027 ], [ -81.959430334999979, 28.924520322000035 ], [ -81.959441658999935, 28.924539920000029 ], [ -81.95944985899996, 28.924555049000048 ], [ -81.959457276999956, 28.924570521000078 ], [ -81.959464108999953, 28.924586337000051 ], [ -81.959470354999951, 28.924602152000034 ], [ -81.95947601499995, 28.924617968000064 ], [ -81.959480892999977, 28.924634470000058 ], [ -81.959485185999938, 28.924650630000031 ], [ -81.959488890999978, 28.924667131000035 ], [ -81.959492009999963, 28.924683634000075 ], [ -81.959494347999964, 28.924700481000059 ], [ -81.959495903999937, 28.924717326000064 ], [ -81.959497070999987, 28.924733827000068 ], [ -81.959497259999978, 28.924750672000073 ], [ -81.959497057999954, 28.924767518000067 ], [ -81.959496073999958, 28.924784363000072 ], [ -81.959494504999952, 28.92480120700003 ], [ -81.959491953999986, 28.924828020000064 ], [ -81.95948882, 28.924849678000044 ], [ -81.959485099999938, 28.924870647000034 ], [ -81.95948040199994, 28.924891959000036 ], [ -81.959474923999949, 28.924912928000026 ], [ -81.959468661999949, 28.924933553000074 ], [ -81.959461425999962, 28.924954521000075 ], [ -81.959453406999955, 28.924974801000076 ], [ -81.959444607999956, 28.924995081000077 ], [ -81.959435221999968, 28.925014674000067 ], [ -81.959424858999967, 28.925034266000068 ], [ -81.959413909999967, 28.925053514000069 ], [ -81.959401984999943, 28.92507241800007 ], [ -81.959387903999982, 28.925089132000039 ], [ -81.959373751999976, 28.925106760000062 ], [ -81.959360776999972, 28.925121276000027 ], [ -81.959346624999966, 28.925135792000049 ], [ -81.959330116, 28.92515030800007 ], [ -81.959313603999988, 28.92516585900006 ], [ -81.959293555999977, 28.92518141100004 ], [ -81.959274688999983, 28.925196963000076 ], [ -81.959255820999942, 28.925209403000053 ], [ -81.959238132999985, 28.925221843000031 ], [ -81.959216906999984, 28.925234283000066 ], [ -81.959192145999964, 28.925248796000062 ], [ -81.959168562999935, 28.925260197000057 ], [ -81.959147339999959, 28.925268488000029 ], [ -81.959123758999965, 28.925277816000062 ], [ -81.95910371399998, 28.925286107000034 ], [ -81.959080132999986, 28.925295434000077 ], [ -81.959057728999937, 28.925305798000068 ], [ -81.959004148999952, 28.92532316300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01396214, 28.933661603000076 ], [ -82.014012836999939, 28.933661598000072 ], [ -82.014154317999953, 28.933662621000053 ], [ -82.014377145999958, 28.933662597000023 ], [ -82.014643597999964, 28.933662568000045 ], [ -82.014905333999934, 28.933662540000057 ], [ -82.015172376999942, 28.933663720000027 ], [ -82.015453123999976, 28.933661829000073 ], [ -82.015681258999962, 28.933661803000064 ], [ -82.015851033999979, 28.933663338000031 ], [ -82.015964217999965, 28.933664103000069 ], [ -82.016003124999941, 28.933663320000051 ], [ -82.016034955999942, 28.933656317000043 ], [ -82.016064134999965, 28.93364542300003 ], [ -82.016081816999986, 28.933628308000038 ], [ -82.016095961999952, 28.933611971000062 ], [ -82.016108337999981, 28.933592523000073 ], [ -82.016115044999935, 28.933575799000039 ], [ -82.016117175999966, 28.933560629000056 ], [ -82.016121583999961, 28.933478951000041 ], [ -82.016121573999953, 28.933415168000067 ], [ -82.016121559999988, 28.933324933000051 ], [ -82.016121545999965, 28.933233146000077 ], [ -82.016120909999984, 28.933176226000057 ], [ -82.01611711399994, 28.933159249000028 ], [ -82.016110037999965, 28.933145248000073 ], [ -82.016092349999951, 28.93312424800007 ], [ -82.016068472999962, 28.933106359000078 ], [ -82.01604813299997, 28.933093917000065 ], [ -82.016016297999954, 28.93308380700006 ], [ -82.01596501299997, 28.933082257000024 ], [ -82.015876588999959, 28.933082268000078 ], [ -82.015717425999981, 28.933081509000033 ], [ -82.015542345999961, 28.933081530000038 ], [ -82.015348696999979, 28.933080774000075 ], [ -82.015092267999989, 28.933081581000067 ], [ -82.014835837999954, 28.933080831000041 ], [ -82.014613009999948, 28.933079300000031 ], [ -82.014399023999943, 28.933080100000041 ], [ -82.014203606999956, 28.933081678000065 ], [ -82.013965402999986, 28.933088763000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013965402999986, 28.933088763000057 ], [ -82.01396214, 28.933661603000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013481111999965, 28.933662690000062 ], [ -82.013695687999984, 28.933661631000064 ], [ -82.013811228999941, 28.933661619000077 ], [ -82.013893758999984, 28.933661610000058 ], [ -82.01396214, 28.933661603000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013481111999965, 28.933662690000062 ], [ -82.013480281999989, 28.93364009000004 ], [ -82.013479410999935, 28.933580077000045 ], [ -82.013480251999965, 28.93340915400006 ], [ -82.013479355999948, 28.933148592000066 ], [ -82.013479320999977, 28.932879675000038 ], [ -82.01347915599996, 28.932715209000037 ], [ -82.013479138999969, 28.932585562000043 ], [ -82.013480278999964, 28.932506557000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013026997999987, 28.934231905000047 ], [ -82.013064128999986, 28.934214430000054 ], [ -82.013114210999959, 28.934189356000047 ], [ -82.013185878999934, 28.934142250000036 ], [ -82.013249774999963, 28.934092106000037 ], [ -82.013293809999936, 28.934051081000064 ], [ -82.01333266499995, 28.934010056000034 ], [ -82.013366337999969, 28.933965233000038 ], [ -82.013387458999944, 28.93393123900006 ], [ -82.013408640999955, 28.933893821000026 ], [ -82.013439718999962, 28.933823170000039 ], [ -82.013466973999982, 28.933741515000065 ], [ -82.013476401999981, 28.933704176000049 ], [ -82.013481111999965, 28.933662690000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974231359999976, 28.872444414000029 ], [ -81.974269209999989, 28.872464111000056 ], [ -81.974295018999953, 28.872470931000066 ], [ -81.97433454999998, 28.872473453000055 ], [ -81.97451859499995, 28.872474500000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973281793999945, 28.871737628000062 ], [ -81.973544914999934, 28.871966420000035 ], [ -81.973886402999938, 28.872255779000056 ], [ -81.973999085999935, 28.872351977000051 ], [ -81.974069621999945, 28.872408032000067 ], [ -81.974102309999978, 28.872428486000047 ], [ -81.974128657999984, 28.872438989000045 ], [ -81.974159947999965, 28.872450459000049 ], [ -81.974189200999945, 28.872452736000071 ], [ -81.974209848999976, 28.872451225000077 ], [ -81.974231359999976, 28.872444414000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974231359999976, 28.872444414000029 ], [ -81.974253731999966, 28.87243305800007 ], [ -81.974275245999934, 28.872414887000048 ], [ -81.974290737, 28.872391415000038 ], [ -81.97436735499997, 28.87220816100006 ], [ -81.974454291999962, 28.872039298000061 ], [ -81.974501630999953, 28.871958275000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973795603999974, 28.871360158000073 ], [ -81.974183916999948, 28.871697394000023 ], [ -81.974368026999969, 28.871850754000036 ], [ -81.974501630999953, 28.871958275000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974501630999953, 28.871958275000054 ], [ -81.974556713999959, 28.87187119500004 ], [ -81.97462913399994, 28.871779845000049 ], [ -81.974669454999969, 28.871731115000046 ], [ -81.97475284799998, 28.871634832000041 ], [ -81.974875674999964, 28.87148895100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97420290499997, 28.870929922000073 ], [ -81.974337165999941, 28.870770156000049 ], [ -81.974409454999943, 28.870684341000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974119403999964, 28.869993623000028 ], [ -81.974030162999952, 28.870094407000067 ], [ -81.973933232999968, 28.87021380300007 ], [ -81.973839056999964, 28.870329296000079 ], [ -81.973724217999973, 28.870468360000075 ], [ -81.973604436999949, 28.870616117000054 ], [ -81.973504416999958, 28.870732366000027 ], [ -81.973408103999986, 28.87082797100004 ], [ -81.973361182999952, 28.870871425000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974408181999934, 28.869659471000034 ], [ -81.974233713999979, 28.869852775000027 ], [ -81.974162632999935, 28.86993805700007 ], [ -81.974119403999964, 28.869993623000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975822900999958, 28.871419118000063 ], [ -81.975754080999934, 28.871365384000057 ], [ -81.975627122999981, 28.871269313000028 ], [ -81.975469369999985, 28.871139337000045 ], [ -81.975335591999965, 28.871023004000051 ], [ -81.975191008999957, 28.870893326000044 ], [ -81.975019648999989, 28.870747142000027 ], [ -81.974880422999945, 28.870624536000037 ], [ -81.974714418999952, 28.870485426000073 ], [ -81.974604535999958, 28.870393574000047 ], [ -81.97448415599996, 28.870292083000038 ], [ -81.974357957999985, 28.870179462000067 ], [ -81.974262765999981, 28.870104722000065 ], [ -81.974171013999978, 28.870035032000033 ], [ -81.974119403999964, 28.869993623000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975241715999971, 28.870336400000042 ], [ -81.975285603999964, 28.870375193000029 ], [ -81.975341778999962, 28.870426054000063 ], [ -81.975471725999967, 28.870536108000067 ], [ -81.975574945999938, 28.870627004000028 ], [ -81.975667844999975, 28.870707800000048 ], [ -81.975760427999944, 28.870791771000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.202559981999968, 28.602415484000062 ], [ -82.202319695999961, 28.602440952000052 ], [ -82.201860167999939, 28.602518416000066 ], [ -82.20173684599996, 28.602538081000034 ], [ -82.201604423999981, 28.602552030000027 ], [ -82.201431742999944, 28.602563746000044 ], [ -82.201325266999959, 28.602565050000067 ], [ -82.201216190999958, 28.602565212000059 ], [ -82.201054951999936, 28.60255862200006 ], [ -82.200864855999953, 28.602542130000074 ], [ -82.200724171, 28.602522210000075 ], [ -82.200599039999986, 28.602499615000056 ], [ -82.200449211999967, 28.602464695000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200449211999967, 28.602464695000037 ], [ -82.200377237999987, 28.602444626000079 ], [ -82.200266453999973, 28.602412249000054 ], [ -82.200154722999969, 28.602381854000043 ], [ -82.199994489999938, 28.602338544000077 ], [ -82.199803076999956, 28.602286111000069 ], [ -82.199623821999978, 28.602255052000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.199623821999978, 28.602255052000032 ], [ -82.199767645999941, 28.602319015000035 ], [ -82.199892380999984, 28.602360087000079 ], [ -82.199986478999961, 28.602392466000026 ], [ -82.200125849999949, 28.602441575000057 ], [ -82.200203760999955, 28.602473665000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200203760999955, 28.602473665000048 ], [ -82.20035164799998, 28.602522760000056 ], [ -82.200442922999969, 28.602546109000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200442922999969, 28.602546109000059 ], [ -82.200674531999937, 28.60259347300007 ], [ -82.200785373999963, 28.602611645000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200785373999963, 28.602611645000025 ], [ -82.200897936999979, 28.602624466000066 ], [ -82.200946428999941, 28.602632033000077 ], [ -82.201134944999978, 28.602645726000048 ], [ -82.20124518199998, 28.602645562000077 ], [ -82.201359219999972, 28.602645393000046 ], [ -82.201482532999989, 28.602641598000048 ], [ -82.201648706999947, 28.602621870000064 ], [ -82.201778512999965, 28.602597611000078 ], [ -82.202322896999988, 28.602478317000077 ], [ -82.202559981999968, 28.602415484000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980269990999943, 28.576614195000047 ], [ -81.980023125999935, 28.576612044000058 ], [ -81.979788238999959, 28.576633166000079 ], [ -81.979610874999935, 28.576652181000043 ], [ -81.979467065999984, 28.576669085000049 ], [ -81.979294489999972, 28.576709257000061 ], [ -81.979071578999935, 28.576770580000073 ], [ -81.978896599999985, 28.576842487000079 ], [ -81.97874797999998, 28.576946134000025 ], [ -81.97663874999995, 28.578524531000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028015249999953, 28.563243190000037 ], [ -82.028011322999987, 28.562458697000068 ], [ -82.027990913999986, 28.561233524000045 ], [ -82.027993733999949, 28.560667498000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135976650999964, 28.614121187000023 ], [ -82.137007642999947, 28.611954119000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135872986999971, 28.614338089000057 ], [ -82.135976650999964, 28.614121187000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057139971999959, 28.854598291000059 ], [ -82.057071390999965, 28.854597305000027 ], [ -82.055790430999934, 28.854578894000042 ], [ -82.054898380999987, 28.854585615000076 ], [ -82.054387389999988, 28.854569302000073 ], [ -82.053734944999974, 28.854561939000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170076176999942, 28.671577125000056 ], [ -82.171164011999963, 28.671609065000041 ], [ -82.173431273999938, 28.671648030000028 ], [ -82.173617082999954, 28.671650155000066 ], [ -82.173650597999938, 28.671651566000037 ], [ -82.173701751999943, 28.67165056500005 ], [ -82.173793828999976, 28.671652703000063 ], [ -82.173802685999988, 28.671652702000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.173802685999988, 28.671652702000074 ], [ -82.174204761999988, 28.671652709000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12801763899995, 28.768859977000034 ], [ -82.12887584899994, 28.768859423000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148498145999952, 28.809086300000047 ], [ -82.148517847999983, 28.809120896000024 ], [ -82.148508604999961, 28.809531990000039 ], [ -82.148503157999983, 28.810006681000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148503157999983, 28.810006681000061 ], [ -82.148494396999979, 28.810280693000038 ], [ -82.148487700999965, 28.810382305000076 ], [ -82.148482886999943, 28.810451546000024 ], [ -82.148490353999989, 28.810520772000075 ], [ -82.148517177999963, 28.810572578000063 ], [ -82.148538564999967, 28.810599418000038 ], [ -82.148566048999953, 28.810622669000054 ], [ -82.148622020999937, 28.810662007000076 ], [ -82.148683053999946, 28.810684325000068 ], [ -82.148799161999989, 28.810708666000039 ], [ -82.148850794999987, 28.810741062000034 ], [ -82.148892595999939, 28.810769143000073 ], [ -82.148931952999988, 28.810805880000032 ], [ -82.148956595999948, 28.810859943000025 ], [ -82.14896409499994, 28.810950806000051 ], [ -82.148950862999982, 28.81201098300005 ], [ -82.148950921999983, 28.812052091000055 ], [ -82.148968151999952, 28.812075871000047 ], [ -82.149009965999937, 28.812112606000028 ], [ -82.149090384999965, 28.812152727000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054768654999975, 28.635604390000026 ], [ -82.053631984999981, 28.635619951000024 ], [ -82.05297812699996, 28.635630184000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013611849999961, 28.796953010000038 ], [ -82.013516368999944, 28.796924183000044 ], [ -82.012816376999979, 28.796920888000045 ], [ -82.012724717999959, 28.796920897000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131433869999967, 28.786427168000046 ], [ -82.131437026999947, 28.78646281400006 ], [ -82.131441754999969, 28.786509427000055 ], [ -82.131095741999957, 28.786523140000043 ], [ -82.13104782399995, 28.786536180000041 ], [ -82.131001757999968, 28.786555715000077 ], [ -82.130968592999977, 28.786571988000048 ], [ -82.130942811999944, 28.786596375000045 ], [ -82.130929947999959, 28.786628871000062 ], [ -82.130933687999971, 28.786671095000031 ], [ -82.130950352999946, 28.786729548000039 ], [ -82.131105583999954, 28.78702174700004 ], [ -82.131414516999939, 28.787594156000068 ], [ -82.131574126999965, 28.787893300000064 ], [ -82.131854085999976, 28.788423186000045 ], [ -82.132167381999977, 28.789020410000035 ], [ -82.132184090999942, 28.789087761000076 ], [ -82.132177504999959, 28.789137562000064 ], [ -82.132150956999965, 28.789178595000067 ], [ -82.132114410999975, 28.789202063000062 ], [ -82.132054572999948, 28.789210909000076 ], [ -82.13100721099994, 28.789209 ], [ -82.130811054999981, 28.789220905000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126289724999936, 28.766794870000069 ], [ -82.126287753999975, 28.766997837000076 ], [ -82.126286283999946, 28.767498551000074 ], [ -82.126286181999944, 28.767532574000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.094569435999972, 28.661127241000031 ], [ -82.094504858999983, 28.661079546000053 ], [ -82.094471425999984, 28.661042254000051 ], [ -82.094413470999939, 28.660973555000055 ], [ -82.094120680999936, 28.660539596000035 ], [ -82.094071891999988, 28.660463710000045 ], [ -82.094053980999945, 28.660412154000028 ], [ -82.094043630999977, 28.660339583000052 ], [ -82.094044629999985, 28.660241777000067 ], [ -82.094042118999937, 28.659573514000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.094042118999937, 28.659573514000044 ], [ -82.094046438999953, 28.658437549000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.247736784999972, 28.704820286000029 ], [ -82.247739988999967, 28.704322833000049 ], [ -82.247753586999977, 28.703368122000029 ], [ -82.247758073999989, 28.703030481000042 ], [ -82.247754877999967, 28.702795307000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100248006999948, 28.661192777000053 ], [ -82.099922450999941, 28.661192514000049 ], [ -82.099532785999941, 28.661194766000051 ], [ -82.098919110999987, 28.661203143000023 ], [ -82.097279405999984, 28.661206223000079 ], [ -82.096649256999967, 28.661205691000077 ], [ -82.09604070499995, 28.661208139000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09604070499995, 28.661208139000053 ], [ -82.095665053999937, 28.661190678000025 ], [ -82.094730095999978, 28.661182818000043 ], [ -82.094665124999949, 28.661173315000042 ], [ -82.094613138999989, 28.661154251000028 ], [ -82.094584973999986, 28.661138992000076 ], [ -82.094569435999972, 28.661127241000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037270632999935, 28.92748572000005 ], [ -82.037242462999984, 28.92767365800006 ], [ -82.037219782999955, 28.927849740000056 ], [ -82.03718119399997, 28.928059841000049 ], [ -82.037133198999982, 28.928359530000023 ], [ -82.037105297999972, 28.928627986000038 ], [ -82.037059735999946, 28.92978623700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037225512999953, 28.929380110000068 ], [ -82.037225555999953, 28.929379010000048 ], [ -82.037245168999959, 28.928878179000037 ], [ -82.037258727999983, 28.928630068000075 ], [ -82.037297256999977, 28.928255895000063 ], [ -82.037358525999934, 28.92786570800007 ], [ -82.037399383999968, 28.927641601000062 ], [ -82.037432962999958, 28.927485466000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037317328999961, 28.927182625000057 ], [ -82.037312810999936, 28.927231445000075 ], [ -82.03729782299996, 28.927329407000059 ], [ -82.037282187999949, 28.927413321000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037258494999946, 28.925190638000061 ], [ -82.037285642999962, 28.925400669000055 ], [ -82.037324900999977, 28.925934397000049 ], [ -82.037345685999981, 28.926223501000038 ], [ -82.037350350999986, 28.926411521000034 ], [ -82.037355798999954, 28.926607163000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036998694999966, 28.918577029000062 ], [ -82.03700506499996, 28.918831879000038 ], [ -82.037027210999952, 28.91962221600005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036970236999935, 28.917299627000034 ], [ -82.035855768999966, 28.917283755000028 ], [ -82.03529933599998, 28.917311023000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049506195999982, 28.916509097000073 ], [ -82.047376638999935, 28.916502015000049 ], [ -82.045430144999955, 28.916502686000058 ], [ -82.043622037999967, 28.916499291000036 ], [ -82.041800315999978, 28.916493882000054 ], [ -82.041480436999962, 28.916487992000043 ], [ -82.041241744, 28.916468424000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037122692999958, 28.93355493200005 ], [ -82.037130465999951, 28.932331554000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986234834999948, 28.860593722000033 ], [ -81.987147551999954, 28.860425792000058 ], [ -81.98720689299995, 28.860418753000033 ], [ -81.987331814999948, 28.860405190000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987350388999971, 28.862897507000071 ], [ -81.98735123299997, 28.862468875000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985206870999946, 28.858761815000037 ], [ -81.985345681999945, 28.858764008000037 ], [ -81.985427292999987, 28.858762166000076 ], [ -81.985508410999955, 28.858754078000061 ], [ -81.985588422999967, 28.858739808000053 ], [ -81.985666719999983, 28.858719460000032 ], [ -81.986175946999936, 28.858565608000049 ], [ -81.986272078999946, 28.858539577000045 ], [ -81.986369912999976, 28.858519047000073 ], [ -81.986469045999968, 28.858504101000051 ], [ -81.986569065999959, 28.858494803000042 ], [ -81.986669556999971, 28.858491190000052 ], [ -81.986828250999963, 28.858489986000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985502905999965, 28.862931282000034 ], [ -81.985420720999969, 28.862704991000044 ], [ -81.985290327999962, 28.862406200000066 ], [ -81.985242235999976, 28.862286727000026 ], [ -81.985200444999975, 28.862165430000061 ], [ -81.985165048999988, 28.862042566000071 ], [ -81.985136122999961, 28.861918399000047 ], [ -81.985113723999973, 28.861793189000025 ], [ -81.985097904999975, 28.861667203000025 ], [ -81.985088693999955, 28.861540710000043 ], [ -81.985086114999945, 28.861413977000041 ], [ -81.985086532999958, 28.861342281000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984585356999958, 28.863028103000033 ], [ -81.984395179999979, 28.86198418400005 ], [ -81.984366902999966, 28.861817469000073 ], [ -81.984356610999953, 28.861735583000041 ], [ -81.98435190899994, 28.861653301000047 ], [ -81.984352811999941, 28.86157091900003 ], [ -81.984359316999985, 28.861488734000034 ], [ -81.984378012999969, 28.861323910000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985940746999972, 28.861978036000039 ], [ -81.986081574999957, 28.861933564000026 ], [ -81.986173315999963, 28.861907376000033 ], [ -81.986266719999946, 28.861886222000066 ], [ -81.986361426999963, 28.861870183000065 ], [ -81.986695261999955, 28.861823002000051 ], [ -81.986817445999975, 28.861807906000024 ], [ -81.986940212999968, 28.861797068000044 ], [ -81.987063369999987, 28.861790507000023 ], [ -81.98820083399994, 28.861749721000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982834443999934, 28.856721249000032 ], [ -81.982709811999939, 28.856303634000028 ], [ -81.982702915999937, 28.856268195000041 ], [ -81.982703113999946, 28.856232241000043 ], [ -81.982710401999952, 28.856196863000037 ], [ -81.982724557999973, 28.856163137000067 ], [ -81.982745149999971, 28.856132088000038 ], [ -81.982771553999953, 28.85610465600007 ], [ -81.982802967999987, 28.856081680000045 ], [ -81.982838434999962, 28.85606385400007 ], [ -81.982876881999971, 28.856051722000075 ], [ -81.983873955999968, 28.855821093000031 ], [ -81.983914210999956, 28.855815021000069 ], [ -81.983955049999963, 28.855815196000037 ], [ -81.983995236999988, 28.855821612000057 ], [ -81.984033545999978, 28.855834074000029 ], [ -81.984068814999944, 28.855852201000062 ], [ -81.984099972999957, 28.855875447000074 ], [ -81.98412607299997, 28.85590310200007 ], [ -81.984146319999979, 28.855934326000067 ], [ -81.984160102999965, 28.855968172000075 ], [ -81.984284740999954, 28.856385786000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980659193999941, 28.857577166000056 ], [ -81.980461082999966, 28.857163172000071 ], [ -81.980448637999984, 28.857129217000079 ], [ -81.980443024999943, 28.857093883000061 ], [ -81.98044441199994, 28.857058228000028 ], [ -81.980452758999945, 28.85702331400006 ], [ -81.980467813999951, 28.856990189000044 ], [ -81.980489127999988, 28.856959844000073 ], [ -81.980516062999982, 28.856933187000038 ], [ -81.980547811999941, 28.856911013000058 ], [ -81.980824799999937, 28.856749841000067 ], [ -81.980988490999948, 28.856658863000064 ], [ -81.981156358999954, 28.856573987000047 ], [ -81.981328110999982, 28.856495363000079 ], [ -81.981503445999977, 28.856423129000063 ], [ -81.981682056999944, 28.856357412000079 ], [ -81.981718439999952, 28.856347722000066 ], [ -81.981756123999958, 28.856343340000024 ], [ -81.981794117999982, 28.856344379000063 ], [ -81.981831418999946, 28.856350813000063 ], [ -81.981867048999959, 28.856362471000068 ], [ -81.981900068999948, 28.856379050000044 ], [ -81.981929608999963, 28.856400111000028 ], [ -81.981954890999987, 28.856425099000035 ], [ -81.981975249999948, 28.856453357000078 ], [ -81.98199015299997, 28.856484142000056 ], [ -81.982143227999984, 28.856888568000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983582232999936, 28.85078975700003 ], [ -81.984104940999941, 28.850922401000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981250853999938, 28.855286311000043 ], [ -81.981502565999961, 28.855433126000037 ], [ -81.981602503999966, 28.855468818000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982218225999986, 28.85428590500004 ], [ -81.982457346, 28.854193408000071 ], [ -81.982529404, 28.854155350000042 ], [ -81.982609353999976, 28.854097529000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985737693999965, 28.852257073000033 ], [ -81.985730348999937, 28.852035487000023 ], [ -81.98573632199998, 28.851937853000038 ], [ -81.985750159999952, 28.851840841000069 ], [ -81.985771792999969, 28.851744939000071 ], [ -81.985801110999944, 28.851650633000077 ], [ -81.985837965999963, 28.851558399000055 ], [ -81.986237795999955, 28.85066104200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062232260999963, 28.610016803000065 ], [ -82.061413348999963, 28.609985271000028 ], [ -82.061324851999984, 28.609983628000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06037162399997, 28.609965533000036 ], [ -82.059709549, 28.60995114800005 ], [ -82.059211456999947, 28.609944389000077 ], [ -82.058863586999962, 28.609948029000066 ], [ -82.058654072999957, 28.60994812000007 ], [ -82.058460372999946, 28.609948203000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061324851999984, 28.609983628000066 ], [ -82.060496223999962, 28.609968241000047 ], [ -82.06037162399997, 28.609965533000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061327823999989, 28.606842980000067 ], [ -82.061908716999937, 28.606836986000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061324851999984, 28.609983628000066 ], [ -82.061327823999989, 28.606842980000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986434863999989, 28.849198026000067 ], [ -81.986588070999971, 28.849315986000079 ], [ -81.986746254999957, 28.849428738000029 ], [ -81.986909184999945, 28.849536123000064 ], [ -81.98707663, 28.849637985000072 ], [ -81.987248344999955, 28.849734177000073 ], [ -81.987473251999972, 28.849851652000041 ], [ -81.987701349999952, 28.849964258000057 ], [ -81.98803666799995, 28.850113152000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986875009999949, 28.848715383000069 ], [ -81.987077469999974, 28.848865125000032 ], [ -81.98720689299995, 28.848955781000029 ], [ -81.987339892999955, 28.849042331000078 ], [ -81.987476301999948, 28.849124666000023 ], [ -81.987615947999984, 28.849202682000055 ], [ -81.987853454999936, 28.849326293000047 ], [ -81.988094745999945, 28.849444089000031 ], [ -81.988304332999974, 28.849540025000067 ], [ -81.988361233999967, 28.849575695000055 ], [ -81.988401998999962, 28.849611364000054 ], [ -81.988435969999955, 28.849664019000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98803666799995, 28.850113152000063 ], [ -81.988095612999984, 28.850042274000032 ], [ -81.988409641999965, 28.849694593000038 ], [ -81.988435969999955, 28.849664019000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982826233999958, 28.852117551000049 ], [ -81.983138417999953, 28.852157094000063 ], [ -81.983761226999945, 28.85222034700007 ], [ -81.983827352999981, 28.852223546000062 ], [ -81.983893448999936, 28.852219878000028 ], [ -81.983984392999957, 28.852210070000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981820943999935, 28.852390397000079 ], [ -81.982297312999947, 28.852653079000049 ], [ -81.982393741999942, 28.852703230000031 ], [ -81.982493530999989, 28.852747992000047 ], [ -81.98259629599994, 28.852787191000061 ], [ -81.982701636999934, 28.852820676000078 ], [ -81.982809141999951, 28.852848316000063 ], [ -81.982918394999956, 28.852870004000067 ], [ -81.983028970999953, 28.852885655000023 ], [ -81.983140439999943, 28.852895209000053 ], [ -81.983506543999965, 28.852916470000025 ], [ -81.983603609999989, 28.852919442000029 ], [ -81.98370069899994, 28.852917097000045 ], [ -81.983797433999939, 28.852909445000023 ], [ -81.983893440999964, 28.852896515000054 ], [ -81.983988349999947, 28.85287835400004 ], [ -81.984081793999962, 28.85285503700004 ], [ -81.984145522999938, 28.85283723200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987198434999982, 28.854165045000059 ], [ -81.987193498999943, 28.854189501000064 ], [ -81.987187821999953, 28.854235216000063 ], [ -81.987189125999976, 28.854281190000052 ], [ -81.987197388999959, 28.854326600000036 ], [ -81.987212460999956, 28.854370630000062 ], [ -81.987234074999947, 28.854412497000055 ], [ -81.987289758999964, 28.854503632000046 ], [ -81.98733774699997, 28.854575676000024 ], [ -81.987391633999948, 28.854644411000038 ], [ -81.98745112499995, 28.854709467000077 ], [ -81.98751589699998, 28.854770487000053 ], [ -81.987585597999953, 28.854827142000033 ], [ -81.987659851999979, 28.854879122000057 ], [ -81.987738250999939, 28.854926147000072 ], [ -81.987820372999977, 28.854967960000067 ], [ -81.987905767999962, 28.855004335000046 ], [ -81.987993976999974, 28.855035071000032 ], [ -81.988084516999947, 28.855060005000041 ], [ -81.989006432999986, 28.855281405000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984391511999945, 28.854023092000034 ], [ -81.984337249999953, 28.853788843000075 ], [ -81.984308342999952, 28.85364336300006 ], [ -81.984292454999945, 28.853596361000029 ], [ -81.984271360999969, 28.85355097200005 ], [ -81.984245270999963, 28.853507644000047 ], [ -81.98421443999996, 28.853466801000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979241442999978, 28.853985451000028 ], [ -81.979303064999954, 28.853961649000041 ], [ -81.979354726999986, 28.853938838000033 ], [ -81.979403457999979, 28.853911478000043 ], [ -81.979448740999942, 28.853879859000074 ], [ -81.979490097999985, 28.85384431600005 ], [ -81.980099493999944, 28.853263800000036 ], [ -81.980177119999951, 28.853201171000023 ], [ -81.98029728299997, 28.85313930500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976099989999966, 28.851304490000075 ], [ -81.976249924999934, 28.851220604000048 ], [ -81.976304290999963, 28.851186012000028 ], [ -81.976353591999953, 28.851145969000072 ], [ -81.976397124999949, 28.85110104000006 ], [ -81.976434271999949, 28.851051867000024 ], [ -81.976464503999978, 28.850999150000064 ], [ -81.976487390999978, 28.850943638000047 ], [ -81.976653925999983, 28.850422096000045 ], [ -81.976673783999956, 28.850317134000079 ], [ -81.976692222999986, 28.850226356000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977423227999964, 28.853501810000068 ], [ -81.97740473999994, 28.853496988000074 ], [ -81.977385985999945, 28.85348900200006 ], [ -81.977373120999971, 28.853477737000048 ], [ -81.977362710999955, 28.85346398400003 ], [ -81.977351649999946, 28.853447366000069 ], [ -81.977342541999974, 28.853431321000073 ], [ -81.977163645999951, 28.853075478000051 ], [ -81.977157142999943, 28.853054277000069 ], [ -81.977152590999935, 28.853036515000042 ], [ -81.97715259499995, 28.853018753000072 ], [ -81.977153249999958, 28.852999845000056 ], [ -81.97715455499997, 28.852986667000039 ], [ -81.977160158999936, 28.852971474000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978866487999937, 28.852511125000035 ], [ -81.978438976999939, 28.852171479000049 ], [ -81.97841511699994, 28.852157151000029 ], [ -81.97839234099996, 28.852146642000037 ], [ -81.978369563999934, 28.852139954000052 ], [ -81.978348955999934, 28.852137086000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977160158999936, 28.852971474000071 ], [ -81.977175387999978, 28.852952292000055 ], [ -81.977197517999969, 28.852940837000062 ], [ -81.977229410999939, 28.852925945000038 ], [ -81.977351716999976, 28.852877196000065 ], [ -81.977448695999954, 28.85283882300007 ], [ -81.97754632699997, 28.852793575000078 ], [ -81.977641355999936, 28.852742597000031 ], [ -81.97772727399996, 28.852690471000074 ], [ -81.977809288999936, 28.85263089700004 ], [ -81.977892607999934, 28.852563300000043 ], [ -81.977965473999973, 28.852497456000037 ], [ -81.978032996999957, 28.852426397000045 ], [ -81.978250629999934, 28.852189783000028 ], [ -81.978279270999963, 28.852162859000032 ], [ -81.978306554999961, 28.852146729000026 ], [ -81.978323529999955, 28.852139947000069 ], [ -81.978348955999934, 28.852137086000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979757304999964, 28.856361446000051 ], [ -81.979670503999955, 28.856267953000042 ], [ -81.979611016999968, 28.856196569000076 ], [ -81.979549150999958, 28.856115668000029 ], [ -81.979494423999938, 28.856032387000027 ], [ -81.979448023999964, 28.855950295000071 ], [ -81.978359541999964, 28.853803922000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133239861999982, 28.649922201000038 ], [ -82.133265258999984, 28.648839229000032 ], [ -82.133267556999954, 28.648701857000049 ], [ -82.133274820999986, 28.648581924000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986259952999944, 28.862604060000024 ], [ -81.986342743999955, 28.862570715000061 ], [ -81.986423790999936, 28.862541178000072 ], [ -81.986506992999978, 28.862516718000052 ], [ -81.986591938999936, 28.862497455000039 ], [ -81.98667820999998, 28.862483487000077 ], [ -81.986765382999977, 28.862474878000057 ], [ -81.986853024999959, 28.862471676000041 ], [ -81.98735123299997, 28.862468875000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98735123299997, 28.862468875000047 ], [ -81.988224651999985, 28.862463958000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988272440999935, 28.86277704400004 ], [ -81.988238665999972, 28.862630686000045 ], [ -81.988224651999985, 28.862463958000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988224651999985, 28.862463958000035 ], [ -81.988223885999957, 28.862358510000035 ], [ -81.988218710999945, 28.862104584000065 ], [ -81.988206877999971, 28.861850831000027 ], [ -81.98820083399994, 28.861749721000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98820083399994, 28.861749721000024 ], [ -81.988164231999974, 28.861137367000026 ], [ -81.988162951999982, 28.861112494000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987606577999941, 28.859554397000068 ], [ -81.98758728599995, 28.859499619000076 ], [ -81.987573246999943, 28.859443616000078 ], [ -81.987564557999974, 28.859386779000033 ], [ -81.987561279999966, 28.859329501000047 ], [ -81.987552169999958, 28.858399143000042 ], [ -81.987555181999937, 28.858340242000054 ], [ -81.987565338999957, 28.858281964000071 ], [ -81.987582523999947, 28.858224977000077 ], [ -81.987606539999945, 28.858169936000024 ], [ -81.987637108999934, 28.858117475000029 ], [ -81.987673880999978, 28.858068197000023 ], [ -81.987716431999957, 28.858022666000068 ], [ -81.98776427599995, 28.857981405000032 ], [ -81.98822112299996, 28.857627615000069 ], [ -81.988276285999973, 28.857581813000024 ], [ -81.988327708999975, 28.857532756000069 ], [ -81.988375145999953, 28.857480679000048 ], [ -81.988418369999977, 28.857425833000036 ], [ -81.988569029999951, 28.857219757000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988162951999982, 28.861112494000054 ], [ -81.988152046999971, 28.860982162000028 ], [ -81.988134119999984, 28.860852431000069 ], [ -81.988109211999983, 28.86072359700006 ], [ -81.988077382999961, 28.86059595100005 ], [ -81.98793853899997, 28.860096168000041 ], [ -81.987918072999946, 28.860034962000043 ], [ -81.987891250999951, 28.859975690000056 ], [ -81.987858303999985, 28.85991886100004 ], [ -81.987819513999966, 28.859864966000032 ], [ -81.98770263199998, 28.859718112000053 ], [ -81.987665094999954, 28.859666143000027 ], [ -81.987632991999988, 28.859611424000036 ], [ -81.987606577999941, 28.859554397000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979959450999957, 28.915532513000073 ], [ -81.979925980999951, 28.915424702000053 ], [ -81.979906508999989, 28.91535433100006 ], [ -81.979897709999989, 28.915260119000038 ], [ -81.979893953999976, 28.915141525000024 ], [ -81.979899007999961, 28.91505729000005 ], [ -81.979910365999956, 28.914948673000026 ], [ -81.97993306099994, 28.914848925000058 ], [ -81.979953016999957, 28.914789308000024 ], [ -81.979975453999941, 28.914739980000036 ], [ -81.980018073999986, 28.914690654000026 ], [ -81.980027549999988, 28.914684320000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980027549999988, 28.914684320000049 ], [ -81.98007414999995, 28.914653170000065 ], [ -81.980128816, 28.91463331500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980027549999988, 28.914684320000049 ], [ -81.979989496999963, 28.914642528000059 ], [ -81.979962649999948, 28.914615618000028 ], [ -81.97994102399997, 28.914597897000078 ], [ -81.979921635999972, 28.914582801000051 ], [ -81.979908212999987, 28.914572298000053 ], [ -81.979898519999949, 28.914559173000043 ], [ -81.979891810999959, 28.91454473500005 ], [ -81.979889576999938, 28.914525703000038 ], [ -81.979889580999952, 28.914507986000046 ], [ -81.979894805999947, 28.914486987000032 ], [ -81.979905995999957, 28.914468615000033 ], [ -81.979916439999954, 28.91445286700008 ], [ -81.979932850999944, 28.914440400000046 ], [ -81.979951497999934, 28.914433841000061 ], [ -81.979973127999983, 28.914429907000056 ], [ -81.979996993999976, 28.91442991100007 ], [ -81.980020860999957, 28.914433195000072 ], [ -81.980040995999957, 28.914440417000037 ], [ -81.980061131999946, 28.914453545000072 ], [ -81.980076790999988, 28.914470608000045 ], [ -81.980087973999957, 28.91449095300004 ], [ -81.980095426999981, 28.914524422000056 ], [ -81.980128816, 28.91463331500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981499185999951, 28.917448285000035 ], [ -81.981551347999982, 28.917337295000038 ], [ -81.981593417999989, 28.917241103000038 ], [ -81.981627076999985, 28.91714195000003 ], [ -81.981650642999966, 28.917051675000039 ], [ -81.981665796999948, 28.916959920000068 ], [ -81.981677589999947, 28.91685336300003 ], [ -81.981679287999953, 28.91676456600004 ], [ -81.981664325999986, 28.916636856000025 ], [ -81.981643417999976, 28.916522917000066 ], [ -81.981626157999983, 28.916465669000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981588415999965, 28.91634048700007 ], [ -81.981587205999972, 28.916336472000069 ], [ -81.98156106, 28.916255908000039 ], [ -81.981533610999975, 28.916148875000033 ], [ -81.981519614999968, 28.916061562000039 ], [ -81.981506177999961, 28.915953523000042 ], [ -81.98150114799995, 28.915864724000073 ], [ -81.981501169999945, 28.915740407000044 ], [ -81.981509426999935, 28.915609052000036 ], [ -81.98152644299995, 28.915502137000033 ], [ -81.981541595999943, 28.915425180000057 ], [ -81.981578624999941, 28.915290509000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983605892999947, 28.856542810000064 ], [ -81.983668073, 28.856740396000077 ], [ -81.983852025999965, 28.857167934000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983852025999965, 28.857167934000074 ], [ -81.984045409999965, 28.857106529000077 ], [ -81.984101701999975, 28.857090682000035 ], [ -81.984628015999988, 28.856968939000069 ], [ -81.984787762999986, 28.856929064000042 ], [ -81.984945640999968, 28.856883780000032 ], [ -81.98510141099996, 28.85683315600005 ], [ -81.985254839999982, 28.856777267000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983852025999965, 28.857167934000074 ], [ -81.98403676199996, 28.857597285000054 ], [ -81.984053570999947, 28.857628280000029 ], [ -81.984075988999962, 28.857656390000045 ], [ -81.984103394999977, 28.857680834000064 ], [ -81.984135027999969, 28.857700936000072 ], [ -81.984170011999936, 28.857716139000047 ], [ -81.984207375999972, 28.857726021000076 ], [ -81.984246085999985, 28.857730308000043 ], [ -81.984285064999938, 28.857728880000025 ], [ -81.984323236999955, 28.857721777000052 ], [ -81.985253042999943, 28.857476053000028 ], [ -81.985287473999961, 28.857464277000076 ], [ -81.98531937599995, 28.857447882000031 ], [ -81.985347953999963, 28.857427279000035 ], [ -81.985372499999983, 28.857402977000049 ], [ -81.985392400999956, 28.857375581000042 ], [ -81.98540716399998, 28.857345772000031 ], [ -81.985416421999957, 28.857314291000023 ], [ -81.985419945999979, 28.857281920000048 ], [ -81.985417643999938, 28.857249464000063 ], [ -81.985409579999953, 28.857217730000059 ], [ -81.985254839999982, 28.856777267000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979017168999974, 28.857349075000059 ], [ -81.97917007999996, 28.857603983000047 ], [ -81.979191158999981, 28.857634701000052 ], [ -81.979217969, 28.857661737000058 ], [ -81.979249693999975, 28.857684274000064 ], [ -81.97928537699994, 28.85770162700004 ], [ -81.979323937999936, 28.857713274000048 ], [ -81.979364206999946, 28.857718860000034 ], [ -81.979535191999958, 28.857725932000051 ], [ -81.979706367999938, 28.85772630200006 ], [ -81.979877390999945, 28.857719969000073 ], [ -81.980047924999951, 28.857706947000054 ], [ -81.980217632999938, 28.857687260000034 ], [ -81.980330696999943, 28.857668742000044 ], [ -81.980442255999947, 28.85764415500006 ], [ -81.980551891999937, 28.857613591000074 ], [ -81.980659193999941, 28.857577166000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980659193999941, 28.857577166000056 ], [ -81.980764446999956, 28.857534715000043 ], [ -81.980866520999939, 28.857486624000046 ], [ -81.980965028999947, 28.857433078000042 ], [ -81.981224439999949, 28.857282132000023 ], [ -81.981368929999974, 28.857201997000061 ], [ -81.981517260999965, 28.857127498000068 ], [ -81.981669149999959, 28.857058781000035 ], [ -81.981824306999954, 28.856995975000075 ], [ -81.981982432999985, 28.856939201000046 ], [ -81.982143227999984, 28.856888568000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982143227999984, 28.856888568000045 ], [ -81.982263741999986, 28.856855112000062 ], [ -81.982385421999936, 28.856825106000031 ], [ -81.982834443999934, 28.856721248000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982834443999934, 28.856721248000042 ], [ -81.983605892999947, 28.856542810000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984284740999954, 28.856385786000033 ], [ -81.984443040999963, 28.856349168000065 ], [ -81.984589023999945, 28.856312458000048 ], [ -81.984733099999971, 28.856270309000024 ], [ -81.984875006999971, 28.856222800000069 ], [ -81.985014486999944, 28.856170013000053 ], [ -81.98515128799994, 28.856112047000067 ], [ -81.985285161999968, 28.856049006000035 ], [ -81.985317631999976, 28.856035691000045 ], [ -81.985352029999945, 28.856026888000031 ], [ -81.985387548999938, 28.85602280300003 ], [ -81.98542335999997, 28.85602353400003 ], [ -81.985458625999968, 28.856029062000061 ], [ -81.985492522999948, 28.856039257000077 ], [ -81.985627719999968, 28.856093483000052 ], [ -81.985760109999944, 28.856152836000035 ], [ -81.985889441999973, 28.856217202000039 ], [ -81.986015471999963, 28.856286460000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983605892999947, 28.856542810000064 ], [ -81.984284740999954, 28.856385786000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985254839999982, 28.856777267000041 ], [ -81.985406818999934, 28.856715722000047 ], [ -81.985555955999985, 28.856649010000069 ], [ -81.985702028999981, 28.856577233000053 ], [ -81.985763635999945, 28.856542039000033 ], [ -81.985821214999987, 28.856501909000031 ], [ -81.985874256999978, 28.85645719200005 ], [ -81.985922294999966, 28.856408288000068 ], [ -81.985964901999978, 28.856355629000063 ], [ -81.986015471999963, 28.856286460000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986015471999963, 28.856286460000035 ], [ -81.986280981999982, 28.855923300000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986679248999963, 28.857765313000073 ], [ -81.986649394999972, 28.857711196000025 ], [ -81.986443018999978, 28.857363259000067 ], [ -81.986427858999946, 28.857331479000038 ], [ -81.986418921999984, 28.857297920000065 ], [ -81.986416457999951, 28.85726352000006 ], [ -81.986420534999979, 28.857229240000038 ], [ -81.986431039999957, 28.857196035000072 ], [ -81.98644767899998, 28.857164834000059 ], [ -81.986469985999975, 28.857136507000064 ], [ -81.986957897999957, 28.856615932000068 ], [ -81.987008759999981, 28.856558280000058 ], [ -81.987055672999986, 28.856498091000049 ], [ -81.98712588799998, 28.856402051000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014295535999963, 28.859156745000064 ], [ -82.014305820999937, 28.858653939000078 ], [ -82.014314660999958, 28.858594360000041 ], [ -82.014324725999984, 28.858561419000068 ], [ -82.014345771999956, 28.858539458000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014315511999939, 28.859836135000023 ], [ -82.014303204999976, 28.85979859400004 ], [ -82.014292507999983, 28.859758588000034 ], [ -82.014286385999981, 28.859717844000045 ], [ -82.01428489999995, 28.859676766000064 ], [ -82.014295535999963, 28.859156745000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983568267999942, 28.861282679000055 ], [ -81.983530842999983, 28.860980208000058 ], [ -81.983524959999954, 28.860922358000039 ], [ -81.983521601999939, 28.860864351000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983521601999939, 28.860864351000032 ], [ -81.983521158999963, 28.860783010000034 ], [ -81.983525682999982, 28.860701767000023 ], [ -81.983535160999963, 28.860620854000047 ], [ -81.983549566999955, 28.860540509000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971382745999961, 28.852127933000077 ], [ -81.971538496999983, 28.852155469000024 ], [ -81.971654337999951, 28.852170390000026 ], [ -81.971748052999942, 28.852173848000064 ], [ -81.971897353999964, 28.852178625000079 ], [ -81.972062659999949, 28.852171784000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003302498999972, 28.863877448000039 ], [ -82.003330368999968, 28.863337763000061 ], [ -82.003333116999954, 28.863236414000028 ], [ -82.003330203999951, 28.86313506700003 ], [ -82.003321637999989, 28.863033969000071 ], [ -82.003307438999968, 28.862933363000025 ], [ -82.00330295699996, 28.862906930000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002354176999972, 28.863860769000041 ], [ -82.002443528999947, 28.863621306000027 ], [ -82.002515598999935, 28.863432549000038 ], [ -82.002539337999963, 28.863347840000074 ], [ -82.002556926999944, 28.863261977000036 ], [ -82.002568294999946, 28.863175304000038 ], [ -82.002573396999935, 28.863088171000072 ], [ -82.002576542999975, 28.862948044000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000495554999986, 28.863887730000044 ], [ -82.000617296999962, 28.863721958000042 ], [ -82.000657499999988, 28.863664415000073 ], [ -82.000692219999962, 28.863604168000052 ], [ -82.000721225999939, 28.863541625000039 ], [ -82.000825350999946, 28.863287869000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005862932999946, 28.862915469000029 ], [ -82.005862612999977, 28.863349398000025 ], [ -82.005859072999954, 28.86338498300006 ], [ -82.005848612999955, 28.863419496000063 ], [ -82.005831543999989, 28.863451902000065 ], [ -82.005808381999941, 28.863481231000037 ], [ -82.005779819999987, 28.863506602000029 ], [ -82.005746711999961, 28.863527255000065 ], [ -82.005710051999984, 28.86354256900006 ], [ -82.005670942999984, 28.863552087000073 ], [ -82.005630552999946, 28.86355552200007 ], [ -82.005342754999958, 28.863557961000026 ], [ -82.005240120999986, 28.86355635700005 ], [ -82.005137739999952, 28.863549808000073 ], [ -82.005035919999955, 28.863538336000033 ], [ -82.004934965999951, 28.863521974000037 ], [ -82.004423032999966, 28.863426178000054 ], [ -82.004336805999969, 28.863412803000074 ], [ -82.004249727999934, 28.863404776000039 ], [ -82.004162226999938, 28.863402136000047 ], [ -82.004128201999947, 28.863402158000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003987317999986, 28.862092701000051 ], [ -82.004071409999938, 28.862075401000027 ], [ -82.004156949999981, 28.862064988000043 ], [ -82.004243219999978, 28.862061550000078 ], [ -82.004329481999946, 28.862065117000043 ], [ -82.004415004999942, 28.862075657000048 ], [ -82.004499061999979, 28.862093082000058 ], [ -82.004580939999983, 28.862117244000046 ], [ -82.004686952999975, 28.862152011000035 ], [ -82.004794856999979, 28.862181926000062 ], [ -82.004904367999984, 28.862206912000033 ], [ -82.005177123999943, 28.862262540000074 ], [ -82.005242163999981, 28.862273440000024 ], [ -82.005307976999973, 28.862279781000041 ], [ -82.005374155999959, 28.862281525000071 ], [ -82.005626680999967, 28.862279385000079 ], [ -82.005663600999981, 28.862281645000053 ], [ -82.005699656, 28.862288995000029 ], [ -82.005733944999974, 28.862301249000041 ], [ -82.005765614999973, 28.862318103000064 ], [ -82.005793874999938, 28.862339137000049 ], [ -82.005818022999961, 28.862363826000035 ], [ -82.00583745199998, 28.862391553000066 ], [ -82.005851680999967, 28.86242162800005 ], [ -82.005860351999956, 28.862453300000027 ], [ -82.005863249999948, 28.862485778000064 ], [ -82.005862932999946, 28.862915469000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001589379999984, 28.863507824000067 ], [ -82.001508181999952, 28.863477577000026 ], [ -82.001471022999965, 28.863465079000036 ], [ -82.001432954999984, 28.863454925000042 ], [ -82.001228595999976, 28.863404468000056 ], [ -82.001026003999982, 28.863348767000048 ], [ -82.000825350999946, 28.863287869000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000825350999946, 28.863287869000033 ], [ -82.000616908999973, 28.86321838300006 ], [ -82.000410994999982, 28.86314328800006 ], [ -82.000207797999963, 28.863062658000047 ], [ -82.00001687799994, 28.862983770000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00001687799994, 28.862983770000028 ], [ -81.999920107999969, 28.862943784000038 ], [ -81.999886576999984, 28.862926825000045 ], [ -81.999856669999986, 28.862905242000068 ], [ -81.999831202999985, 28.862879623000026 ], [ -81.999810870999966, 28.862850666000043 ], [ -81.999796224999955, 28.862819158000036 ], [ -81.999787665999975, 28.862785959000064 ], [ -81.999785426999949, 28.862751973000059 ], [ -81.999792318999937, 28.862636812000062 ], [ -81.999806510999974, 28.862522169000044 ], [ -81.999827957999969, 28.862408405000053 ], [ -81.999856593999937, 28.862295873000051 ], [ -81.999867002999963, 28.862259736000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978548468999975, 28.933350524000048 ], [ -81.978565549999985, 28.933382641000037 ], [ -81.978608251999958, 28.933469425000055 ], [ -81.978636786999971, 28.933529751000037 ], [ -81.978665160999981, 28.933591293000063 ], [ -81.978689480999947, 28.93364659100007 ], [ -81.978736096999967, 28.933746486000075 ], [ -81.978833101999953, 28.933962543000064 ], [ -81.978848857999935, 28.934001625000064 ], [ -81.978861746999939, 28.934039446000043 ], [ -81.978871771999934, 28.934070963000067 ], [ -81.978883228999962, 28.934108784000045 ], [ -81.978893252999967, 28.934144082000046 ], [ -81.97890184399995, 28.934174339000037 ], [ -81.978909001999966, 28.934209638000027 ], [ -81.978917593999938, 28.934242415000028 ], [ -81.978923318999989, 28.934276453000052 ], [ -81.978931908999982, 28.934318055000062 ], [ -81.978936198999975, 28.934358395000061 ], [ -81.978940492999982, 28.934392432000038 ], [ -81.978941916999986, 28.934430252000027 ], [ -81.978946205999989, 28.934479416000045 ], [ -81.978944320999972, 28.934515993000048 ], [ -81.978944311999953, 28.934557109000025 ], [ -81.97894430599996, 28.934586940000031 ], [ -81.978944298999977, 28.934624833000044 ], [ -81.978944290999948, 28.934660307000058 ], [ -81.978944283999965, 28.934697393000079 ], [ -81.978945125999985, 28.935064226000065 ], [ -81.978945043999943, 28.93547056500006 ], [ -81.978943173999937, 28.935655190000034 ], [ -81.97893858499998, 28.935685020000051 ], [ -81.978934912999989, 28.935710818000075 ], [ -81.978932159999943, 28.935730974000023 ], [ -81.978928490999976, 28.935747904000038 ], [ -81.978924822999943, 28.935761609000053 ], [ -81.978919318999942, 28.935778539000069 ], [ -81.978914733999943, 28.935795470000073 ], [ -81.978907395999954, 28.935824492000052 ], [ -81.978906473999984, 28.935851098000057 ], [ -81.978907384999957, 28.935876090000079 ], [ -81.978909213999941, 28.935901891000071 ], [ -81.978911954999944, 28.935937365000029 ], [ -81.978916530999982, 28.935971227000039 ], [ -81.978921106999962, 28.93600267000005 ], [ -81.978926601999945, 28.936030889000051 ], [ -81.978934841999944, 28.936060722000036 ], [ -81.978942171999961, 28.936083297000039 ], [ -81.978953162999971, 28.93611151600004 ], [ -81.978961407999975, 28.936130867000031 ], [ -81.978968735999956, 28.936149411000031 ], [ -81.978981560999955, 28.936173601000064 ], [ -81.978998053999987, 28.936201820000065 ], [ -81.97901546099996, 28.93623165300005 ], [ -81.979028285999959, 28.936256649000029 ], [ -81.979036530999963, 28.936279224000032 ], [ -81.979042026999934, 28.936296962000029 ], [ -81.979049352999937, 28.936321150000026 ], [ -81.979053932999989, 28.936338082000077 ], [ -81.979057595999961, 28.936354206000033 ], [ -81.979063089999954, 28.936376781000035 ], [ -81.979065833999982, 28.936400969000033 ], [ -81.979069495999966, 28.936428381000042 ], [ -81.97906949299994, 28.93644047500004 ], [ -81.979071321999982, 28.936456599000053 ], [ -81.979072235999979, 28.936473531000047 ], [ -81.979071451999971, 28.936500789000036 ], [ -81.979070392999972, 28.93651948400003 ], [ -81.979069814999946, 28.936539493000055 ], [ -81.979064920999974, 28.936562427000069 ], [ -81.979056769999943, 28.936582494000049 ], [ -81.978948432999971, 28.936784706000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976929079999934, 28.934886450000079 ], [ -81.976924732999976, 28.934893184000032 ], [ -81.97691574299995, 28.934905215000072 ], [ -81.976906165999935, 28.934916902000055 ], [ -81.976746080999987, 28.935093504000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977010422999967, 28.934749475000046 ], [ -81.977195567999956, 28.934850675000064 ], [ -81.977232058999959, 28.934879220000028 ], [ -81.977242867999962, 28.934898248000025 ], [ -81.977246917999935, 28.934920843000043 ], [ -81.977242858999944, 28.93494105700006 ], [ -81.977234406999969, 28.93495755500004 ], [ -81.977222236999978, 28.934973606000028 ], [ -81.977208040999983, 28.934986981000065 ], [ -81.977188776999981, 28.934995897000078 ], [ -81.977165795999952, 28.934996933000036 ], [ -81.977146871999935, 28.934994551000045 ], [ -81.977122540999972, 28.934988602000033 ], [ -81.97708874999995, 28.934974326000031 ], [ -81.977049553999962, 28.934951726000065 ], [ -81.976929079999934, 28.934886450000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977010422999967, 28.934749475000046 ], [ -81.977008737999938, 28.934754804000079 ], [ -81.977002593999941, 28.934771006000062 ], [ -81.976995041999942, 28.934785885000053 ], [ -81.976988898999934, 28.93479865200004 ], [ -81.976980522999952, 28.934811910000064 ], [ -81.976972703999934, 28.934823204000054 ], [ -81.976963768999951, 28.934836462000078 ], [ -81.976957065999954, 28.934847756000067 ], [ -81.976949248999972, 28.934857577000059 ], [ -81.976941430999943, 28.934868870000059 ], [ -81.976932942999952, 28.934880467000028 ], [ -81.976929079999934, 28.934886450000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975042090999978, 28.933762310000077 ], [ -81.975889393999978, 28.934076761000028 ], [ -81.976349841999934, 28.934246079000047 ], [ -81.976672156999939, 28.934364961000028 ], [ -81.976837916999955, 28.934429804000047 ], [ -81.976916702999972, 28.934472127000049 ], [ -81.976933073999987, 28.934485632000076 ], [ -81.976947395999957, 28.934497338000028 ], [ -81.976961719999963, 28.934510843000055 ], [ -81.976975019999941, 28.934527949000028 ], [ -81.976989339999989, 28.934549556000036 ], [ -81.977000591999968, 28.934574763000057 ], [ -81.977007749999984, 28.934596369000076 ], [ -81.977014907999944, 28.934617976000027 ], [ -81.977020019999941, 28.93463778000006 ], [ -81.977023085999974, 28.934655785000075 ], [ -81.977024104999941, 28.934675589000051 ], [ -81.977023077999945, 28.934694492000062 ], [ -81.977021793999938, 28.934710343000063 ], [ -81.977017953999962, 28.934725099000048 ], [ -81.977014342999951, 28.934738497000069 ], [ -81.977010422999967, 28.934749475000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975836689999937, 28.936095711000064 ], [ -81.975829449999935, 28.93610342900007 ], [ -81.975811662999945, 28.936121645000071 ], [ -81.975793486999976, 28.936139862000061 ], [ -81.975775116999955, 28.936157391000052 ], [ -81.975756158999957, 28.936174921000031 ], [ -81.975737003999939, 28.936192106000078 ], [ -81.975717460999988, 28.936208947000068 ], [ -81.97569772099996, 28.936225445000048 ], [ -81.975672705999955, 28.936241479000046 ], [ -81.975652117999971, 28.936257170000033 ], [ -81.975631530999976, 28.936269238000079 ], [ -81.975606824999943, 28.936281305000023 ], [ -81.97558761099998, 28.936293374000059 ], [ -81.97556702199995, 28.936306650000063 ], [ -81.975539571999946, 28.936319923000042 ], [ -81.97551624099998, 28.936330784000063 ], [ -81.975491535999936, 28.936344060000067 ], [ -81.975470946999963, 28.936356128000057 ], [ -81.975446241999975, 28.936368195000057 ], [ -81.975421536999988, 28.936381470000072 ], [ -81.975394085999937, 28.936397158000034 ], [ -81.975373498999943, 28.936408021000034 ], [ -81.975350166999988, 28.936417673000051 ], [ -81.975324089999958, 28.93642974100004 ], [ -81.975295266999979, 28.936444222000034 ], [ -81.975267815999985, 28.936457497000049 ], [ -81.975237621999952, 28.936473184000079 ], [ -81.975208798999972, 28.936488872000041 ], [ -81.975182720999953, 28.936502147000056 ], [ -81.975158014999977, 28.936519044000079 ], [ -81.975134681999975, 28.93653473300003 ], [ -81.97511271999997, 28.93654921500007 ], [ -81.975085269999965, 28.93656852600003 ], [ -81.975059189999968, 28.936587836000058 ], [ -81.975038600999937, 28.936607148000064 ], [ -81.975018011999964, 28.93662404500003 ], [ -81.975000242999954, 28.936642318000054 ], [ -81.974976399999946, 28.936660189000065 ], [ -81.974952750999989, 28.936678750000056 ], [ -81.974929689999954, 28.936697309000067 ], [ -81.974908201999938, 28.936719394000079 ], [ -81.974884866999957, 28.936741119000033 ], [ -81.974861531999977, 28.936762845000032 ], [ -81.974845058999961, 28.936782158000028 ], [ -81.974824466999962, 28.936807505000047 ], [ -81.97480662199996, 28.936828024000079 ], [ -81.974786030999951, 28.93685337200003 ], [ -81.974765439999942, 28.936876304000066 ], [ -81.974748966999982, 28.936898032000045 ], [ -81.974729747999959, 28.936922171000049 ], [ -81.974714646999985, 28.936943899000028 ], [ -81.974695426999972, 28.936971662000076 ], [ -81.974683071999948, 28.936990974000025 ], [ -81.974666598999988, 28.937015115000065 ], [ -81.974654240999939, 28.937036843000044 ], [ -81.974628156999984, 28.937076675000071 ], [ -81.974607563999939, 28.937111681000033 ], [ -81.974589714999979, 28.937144272000069 ], [ -81.974573239999984, 28.937173242000028 ], [ -81.974563094999951, 28.937193523000076 ], [ -81.974554016999946, 28.937210662000041 ], [ -81.974545778999982, 28.937227561000043 ], [ -81.974539195999967, 28.937242112000035 ], [ -81.974528739999982, 28.937261808000073 ], [ -81.97451994499994, 28.937283849000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955775869999968, 28.902517439000064 ], [ -81.955964906999952, 28.902516133000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955775869999968, 28.902517439000064 ], [ -81.955771455999979, 28.902404925000042 ], [ -81.95576968599994, 28.902373535000038 ], [ -81.955771478999964, 28.902349994000076 ], [ -81.955775944999971, 28.902332732000048 ], [ -81.955782194999983, 28.902317823000033 ], [ -81.955792900999938, 28.902306056000043 ], [ -81.95580984999998, 28.902291151000043 ], [ -81.955830365999986, 28.902280958000063 ], [ -81.955849985999976, 28.902277039000069 ], [ -81.955877631999954, 28.90227704800003 ], [ -81.955907948999936, 28.902282552000031 ], [ -81.95592845699997, 28.902291975000026 ], [ -81.955946285999971, 28.90230689200007 ], [ -81.955958762999956, 28.902324159000045 ], [ -81.955967665999935, 28.902357906000077 ], [ -81.955970325999942, 28.902395573000035 ], [ -81.955964906999952, 28.902516133000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96041033399996, 28.895865963000062 ], [ -81.960607694999965, 28.895715650000056 ], [ -81.96088728899997, 28.89548574500003 ], [ -81.960977673999935, 28.895428498000058 ], [ -81.961055568999939, 28.895403704000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959598169999936, 28.896463295000046 ], [ -81.959639823999964, 28.896401857000058 ], [ -81.959688185999937, 28.896349875000055 ], [ -81.959833250999964, 28.896255380000071 ], [ -81.960027309999987, 28.896137641000053 ], [ -81.960222773999988, 28.896006149000073 ], [ -81.960275520999971, 28.89596681300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960275520999971, 28.89596681300003 ], [ -81.960390678999943, 28.895880934000047 ], [ -81.96041033399996, 28.895865963000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960275520999971, 28.89596681300003 ], [ -81.960342131999937, 28.896048797000049 ], [ -81.960362485999951, 28.896085596000034 ], [ -81.960380698999984, 28.896113903000071 ], [ -81.960397843999942, 28.896131831000048 ], [ -81.960419815999956, 28.896143748000043 ], [ -81.960439912999959, 28.896149414000035 ], [ -81.960460817999945, 28.896150127000055 ], [ -81.960479309999982, 28.896147304000067 ], [ -81.960498608999956, 28.896141296000053 ], [ -81.960513618999983, 28.896132809000051 ], [ -81.960529703999953, 28.896121493000066 ], [ -81.960542573999987, 28.896105460000058 ], [ -81.960550082999987, 28.896093198000074 ], [ -81.960556520999944, 28.896076219000065 ], [ -81.960559744999955, 28.896056409000039 ], [ -81.960557604999963, 28.89604225800008 ], [ -81.96055010799995, 28.896026217000042 ], [ -81.960539394999955, 28.896010177000051 ], [ -81.960526533999939, 28.895998853000037 ], [ -81.960508316999949, 28.895981749000043 ], [ -81.960487418999946, 28.895964761000073 ], [ -81.960471879999943, 28.895952612000031 ], [ -81.96041033399996, 28.895865963000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005625641999984, 28.873810251000066 ], [ -82.005630663999966, 28.873803245000033 ], [ -82.005662632999986, 28.873750837000046 ], [ -82.005687042999966, 28.873695368000028 ], [ -82.005703522999966, 28.873637678000023 ], [ -82.005711824999935, 28.87357864300003 ], [ -82.005712389999985, 28.873568994000038 ], [ -82.00571343699994, 28.873333310000078 ], [ -82.005714509999962, 28.873294337000061 ], [ -82.005710046, 28.873253092000027 ], [ -82.005708582999944, 28.87324826400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005708582999944, 28.87324826400004 ], [ -82.00570111899998, 28.873223633000066 ], [ -82.005691075999948, 28.873201046000077 ], [ -82.005674340999974, 28.873177478000059 ], [ -82.005647562999968, 28.873149001000058 ], [ -82.005619670999977, 28.873125433000041 ], [ -82.005602678999935, 28.873115460000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005708582999944, 28.87324826400004 ], [ -82.005751045999943, 28.873221052000076 ], [ -82.005767778999939, 28.873204112000053 ], [ -82.005778654999972, 28.873187907000045 ], [ -82.005783675999965, 28.873172441000065 ], [ -82.005783883999982, 28.873153935000062 ], [ -82.005780326999968, 28.873137088000078 ], [ -82.005771956999979, 28.873121898000079 ], [ -82.005756057999974, 28.873103946000072 ], [ -82.005739322999943, 28.873088755000026 ], [ -82.005713382999943, 28.87307596100004 ], [ -82.005696648999958, 28.873073290000036 ], [ -82.005678448999959, 28.873072186000059 ], [ -82.005660876999968, 28.873074949000056 ], [ -82.005643933999977, 28.87308259100007 ], [ -82.005627199999935, 28.873095112000044 ], [ -82.005602678999935, 28.873115460000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005602678999935, 28.873115460000065 ], [ -82.005583711999975, 28.873104329000057 ], [ -82.005542178999974, 28.873090168000033 ], [ -82.005498397999986, 28.873082966000027 ], [ -82.005474714999934, 28.873082064000073 ], [ -82.005037645999948, 28.87305561900007 ], [ -82.005027856999959, 28.873054650000029 ], [ -82.004960902999983, 28.87304385300007 ], [ -82.004895916999942, 28.873026030000062 ], [ -82.004833844999951, 28.873001442000032 ], [ -82.004775591999987, 28.872970449000036 ], [ -82.004734649999989, 28.872942217000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004630554999949, 28.872842022000043 ], [ -82.004596678999974, 28.872792702000027 ], [ -82.004568739999968, 28.872738067000057 ], [ -82.004551449999951, 28.87269098400003 ], [ -82.004475534999983, 28.87240911300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014347719999989, 28.850304737000044 ], [ -82.014398469999946, 28.849730310000041 ], [ -82.014403595999966, 28.849652819000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01377088299995, 28.853145225000048 ], [ -82.013791042999969, 28.853043571000057 ], [ -82.013811632999989, 28.852941104000024 ], [ -82.013858020999976, 28.852581162000035 ], [ -82.013903289999973, 28.852168813000048 ], [ -82.013949787999934, 28.851786951000065 ], [ -82.013971202999983, 28.851596846000064 ], [ -82.013988101999985, 28.851466280000068 ], [ -82.01401866599997, 28.851356654000028 ], [ -82.014069351999979, 28.851191142000062 ], [ -82.014182623999943, 28.850891847000071 ], [ -82.014311000999953, 28.850572600000078 ], [ -82.01432609699998, 28.850492789000043 ], [ -82.014347719999989, 28.850304737000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012042889999975, 28.855000979000067 ], [ -82.012345739999944, 28.855114195000056 ], [ -82.01237729199994, 28.855122503000075 ], [ -82.012400782999975, 28.855126443000074 ], [ -82.012433578999946, 28.855128935000039 ], [ -82.012464318999946, 28.855128164000064 ], [ -82.012494481999966, 28.85512446000007 ], [ -82.01254206699997, 28.855112295000026 ], [ -82.012593043999971, 28.855089207000049 ], [ -82.012617642999942, 28.855073306000065 ], [ -82.012635115999956, 28.855059527000037 ], [ -82.012663883999949, 28.85503062500004 ], [ -82.012700265999968, 28.854986280000048 ], [ -82.012883790999979, 28.854762691000076 ], [ -82.013057643999957, 28.854550063000033 ], [ -82.013168656999937, 28.85439907600005 ], [ -82.013404950999984, 28.854031062000047 ], [ -82.013443763999987, 28.853965820000042 ], [ -82.013473955999984, 28.853912248000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010811849999982, 28.860107953000067 ], [ -82.010741142999962, 28.859711337000078 ], [ -82.010716821999949, 28.859506600000032 ], [ -82.010695973999987, 28.859289638000064 ], [ -82.010687270999938, 28.859052812000073 ], [ -82.010651431999975, 28.85833414800004 ], [ -82.010648916999969, 28.858206406000079 ], [ -82.010648910999976, 28.858206109000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012042889999975, 28.855000979000067 ], [ -82.012124221999954, 28.854829307000045 ], [ -82.012220792999983, 28.854584463000037 ], [ -82.012314935999939, 28.85428276500005 ], [ -82.012466382999946, 28.853786712000044 ], [ -82.012515150999945, 28.85360836600006 ], [ -82.012545484999976, 28.853422934000037 ], [ -82.012554989999956, 28.85321404900003 ], [ -82.012539706999974, 28.853012673000023 ], [ -82.012502215999973, 28.852820263000069 ], [ -82.012430267999946, 28.852594603000057 ], [ -82.012332038999944, 28.852388439000038 ], [ -82.012217848999967, 28.852214219000075 ], [ -82.01208270799998, 28.852049276000059 ], [ -82.011964167999963, 28.851914295000029 ], [ -82.011794034, 28.851724875000059 ], [ -82.011599038999975, 28.851507774000027 ], [ -82.011410301999945, 28.851297804000069 ], [ -82.011246920999952, 28.851115561000029 ], [ -82.011105488999988, 28.850940448000074 ], [ -82.010994765999953, 28.850759131000075 ], [ -82.010930240999983, 28.85060945500004 ], [ -82.010895714999947, 28.850529553000058 ], [ -82.010858755999948, 28.850413305000075 ], [ -82.010830799999951, 28.850308777000066 ], [ -82.010824355999944, 28.850278756000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01137892099996, 28.849736380000024 ], [ -82.011397108999972, 28.849734065000064 ], [ -82.011440896999943, 28.849728051000056 ], [ -82.011479422999969, 28.849723163000078 ], [ -82.011531222999963, 28.849717180000027 ], [ -82.011581512999953, 28.849712016000069 ], [ -82.011612063999962, 28.84970918700003 ], [ -82.011648868999941, 28.849706088000062 ], [ -82.011682014999963, 28.849703586000032 ], [ -82.011737142999948, 28.84970002700004 ], [ -82.011766261999981, 28.849698450000062 ], [ -82.011798598999974, 28.849696944000073 ], [ -82.011832845999947, 28.849695629000053 ], [ -82.011860193999951, 28.849694786000043 ], [ -82.011896400999944, 28.849693953000042 ], [ -82.011932415, 28.849693445000071 ], [ -82.011961423999935, 28.849693241000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01091820299996, 28.849808132000078 ], [ -82.011194784999986, 28.849760361000051 ], [ -82.011330594999947, 28.84974253200005 ], [ -82.01137892099996, 28.849736380000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011910603, 28.848086339000076 ], [ -82.012018928999964, 28.848089135000066 ], [ -82.012143661999971, 28.848093898000059 ], [ -82.012355166999953, 28.848098654000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011961425999971, 28.849693266000031 ], [ -82.011937739999951, 28.849473813000031 ], [ -82.01191059699994, 28.849249404000034 ], [ -82.01189974, 28.849153910000041 ], [ -82.011899730999971, 28.849077514000044 ], [ -82.011899721999953, 28.849001119000036 ], [ -82.011937664999948, 28.848814902000072 ], [ -82.011975605999965, 28.848638233000031 ], [ -82.011986439999987, 28.848523639000064 ], [ -82.012008107999975, 28.848308773000042 ], [ -82.012017726999943, 28.848232480000036 ], [ -82.012017931999935, 28.848183334000055 ], [ -82.012007863999941, 28.848153832000037 ], [ -82.011987892999969, 28.84812609200003 ], [ -82.011966204999965, 28.848108207000053 ], [ -82.011938479999969, 28.848094231000061 ], [ -82.011910603, 28.848086339000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01137892099996, 28.849736380000024 ], [ -82.011353947999964, 28.849734552000029 ], [ -82.011335255999938, 28.849730830000055 ], [ -82.011320294999962, 28.849725951000039 ], [ -82.01130392999994, 28.849718366000047 ], [ -82.011290405999944, 28.849709924000024 ], [ -82.011283615999957, 28.849704754000072 ], [ -82.01127347299996, 28.849695526000062 ], [ -82.01126022699998, 28.849679503000061 ], [ -82.011251671999958, 28.849664801000074 ], [ -82.011246745999983, 28.849652863000074 ], [ -82.011243092999962, 28.849636601000043 ], [ -82.011236461999943, 28.849583518000031 ], [ -82.011199759999954, 28.849260462000075 ], [ -82.011190954999961, 28.849170998000034 ], [ -82.011188383, 28.849104499000077 ], [ -82.011189286, 28.849053702000049 ], [ -82.01119265799997, 28.848988414000075 ], [ -82.011200118999966, 28.848924784000076 ], [ -82.011221796999962, 28.848795863000078 ], [ -82.011254318999988, 28.848628746000031 ], [ -82.011271183999952, 28.848535874000049 ], [ -82.011295681999968, 28.848313061000056 ], [ -82.011303205, 28.848244382000075 ], [ -82.011306837999939, 28.848217686000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011306837999939, 28.848217686000055 ], [ -82.011316185999988, 28.848195907000047 ], [ -82.011326602999986, 28.848179758000072 ], [ -82.011340329999939, 28.848164765000035 ], [ -82.011356589999934, 28.848152011000025 ], [ -82.011377651999965, 28.848140583000031 ], [ -82.011403482999981, 28.848132151000073 ], [ -82.011438274999989, 28.848125345000028 ], [ -82.011477677999949, 28.848118334000048 ], [ -82.011531281999964, 28.848109896000039 ], [ -82.011642990999974, 28.848096313000042 ], [ -82.011725834999936, 28.848089678000065 ], [ -82.011833384999989, 28.848085372000071 ], [ -82.011910603, 28.848086339000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011306837999939, 28.848217686000055 ], [ -82.011305738999965, 28.848165024000025 ], [ -82.011292222999941, 28.848089198000025 ], [ -82.011189153999965, 28.847826596000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012886743999957, 28.849756092000064 ], [ -82.012887038999963, 28.849765357000024 ], [ -82.012887473999967, 28.849787161000052 ], [ -82.012887709999973, 28.849808812000049 ], [ -82.012887758999966, 28.849826428000028 ], [ -82.012887647999946, 28.849846581000065 ], [ -82.01288741999997, 28.849863908000032 ], [ -82.012886992999938, 28.849884123000038 ], [ -82.012886468999966, 28.849902074000056 ], [ -82.012886038999966, 28.849914238000054 ], [ -82.012885262999987, 28.849932727000066 ], [ -82.012883207999948, 28.849970861000031 ], [ -82.012882005999984, 28.849989121000078 ], [ -82.012880218999953, 28.85001305000003 ], [ -82.012878647999969, 28.850031801000057 ], [ -82.012876853999956, 28.85005134000005 ], [ -82.012874776999979, 28.850072013000045 ], [ -82.012873394999986, 28.850084868000067 ], [ -82.012871833999952, 28.850098653000032 ], [ -82.012870480999936, 28.850110063000045 ], [ -82.012869118999959, 28.850121085000069 ], [ -82.012868070999957, 28.850129049000032 ], [ -82.01286711399996, 28.850136625000061 ], [ -82.012866704999965, 28.850139690000049 ], [ -82.012866273999975, 28.850142899000048 ], [ -82.012865735999981, 28.850146848000065 ], [ -82.012865101999978, 28.850151457000038 ], [ -82.012864619999959, 28.850154907000046 ], [ -82.012864005999973, 28.850159253000072 ], [ -82.012863566999954, 28.850162329000057 ], [ -82.012863010999979, 28.850166179000041 ], [ -82.012862455999937, 28.850169988000061 ], [ -82.012861976999943, 28.850173229000063 ], [ -82.012861444999942, 28.850176802000078 ], [ -82.012860978999981, 28.850179902000036 ], [ -82.012860495999973, 28.85018309000003 ], [ -82.012860005999983, 28.850186290000067 ], [ -82.012859643999946, 28.850188632000027 ], [ -82.012859270999968, 28.85019102800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011961425999971, 28.849693266000031 ], [ -82.011987488999978, 28.849693282000032 ], [ -82.012154061, 28.849697323000044 ], [ -82.012339086999987, 28.849707740000042 ], [ -82.012554447999946, 28.849735095000028 ], [ -82.012647374999972, 28.849747057000059 ], [ -82.012720679999973, 28.849753257000032 ], [ -82.012806724999962, 28.849756639000077 ], [ -82.012886743999957, 28.849756092000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06037162399997, 28.609965533000036 ], [ -82.060361584999953, 28.607080752000059 ], [ -82.060396694999952, 28.606979876000025 ], [ -82.060451963999981, 28.60692904900003 ], [ -82.060505402999979, 28.606890479000072 ], [ -82.060571393999965, 28.606858709000051 ], [ -82.060644106999973, 28.606844925000075 ], [ -82.060753183999964, 28.606840292000072 ], [ -82.061327823999989, 28.606842980000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963730366999982, 28.917254950000029 ], [ -81.963730531999943, 28.91725494700006 ], [ -81.963950408999949, 28.917251890000045 ], [ -81.964136375999942, 28.917249304000052 ], [ -81.964311576999989, 28.917246869000053 ], [ -81.96455496699997, 28.917243486000075 ], [ -81.964793101999987, 28.917240174000028 ], [ -81.964923061999968, 28.917238367000039 ], [ -81.965037934999941, 28.917237026000066 ], [ -81.965113076999955, 28.917237509000074 ], [ -81.965186591999952, 28.91723931000007 ], [ -81.965261195999972, 28.917242485000031 ], [ -81.965358539999954, 28.917248676000042 ], [ -81.965433000999951, 28.917254981000042 ], [ -81.965515183999969, 28.917263535000075 ], [ -81.965609359999974, 28.917275407000034 ], [ -81.96571457999994, 28.917291320000061 ], [ -81.965779227999974, 28.917302500000062 ], [ -81.965844433999962, 28.917314873000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958453989999953, 28.917590869000037 ], [ -81.958310044999962, 28.917505018000043 ], [ -81.95779429199996, 28.917178371000034 ], [ -81.957510780999939, 28.916997786000024 ], [ -81.957175990999986, 28.916801258000078 ], [ -81.956786896999972, 28.916607366000051 ], [ -81.956424941999956, 28.916450643000076 ], [ -81.956177596999964, 28.916362968000044 ], [ -81.956011696999951, 28.916304518000061 ], [ -81.955773393999948, 28.916238082000064 ], [ -81.955595421999988, 28.916190244000063 ], [ -81.955378229999951, 28.916145048000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964773056999945, 28.918793682000057 ], [ -81.964777412999979, 28.918759804000047 ], [ -81.964784614999985, 28.918724638000072 ], [ -81.964793049999969, 28.918692683000074 ], [ -81.964807697999959, 28.918648745000041 ], [ -81.964821479999955, 28.918614977000061 ], [ -81.964901415999975, 28.918437065000035 ], [ -81.964957013999935, 28.918313346000048 ], [ -81.964980258999958, 28.918261619000077 ], [ -81.964998934999983, 28.918215763000035 ], [ -81.965012712999965, 28.918173019000051 ], [ -81.965022102999967, 28.918135380000024 ], [ -81.965029142999981, 28.918096914000046 ], [ -81.96503387599995, 28.918056015000047 ], [ -81.965035890999957, 28.918002361000049 ], [ -81.965036156999986, 28.917914574000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967342440999971, 28.917639668000049 ], [ -81.967388867999944, 28.917609316000039 ], [ -81.967402248999974, 28.917601392000051 ], [ -81.967414961999964, 28.917596512000046 ], [ -81.967426043999978, 28.917593100000033 ], [ -81.967439935999948, 28.917592968000065 ], [ -81.967611329999954, 28.917593366000062 ], [ -81.967844955999965, 28.917593912000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966597142999944, 28.91751984800004 ], [ -81.966654465999966, 28.917532563000066 ], [ -81.966709649999984, 28.917543604000059 ], [ -81.966762384999981, 28.917553072000032 ], [ -81.966805995999948, 28.917560352000066 ], [ -81.966860250999957, 28.917567887000075 ], [ -81.966909922999946, 28.917574056000035 ], [ -81.966993834999982, 28.917582439000057 ], [ -81.967032589999974, 28.917585453000072 ], [ -81.967088980999961, 28.917588875000035 ], [ -81.967147666999949, 28.917591233000053 ], [ -81.967194450999955, 28.917592235000029 ], [ -81.967234419999954, 28.917592490000061 ], [ -81.967259840999986, 28.917594423000025 ], [ -81.967274025999984, 28.917597436000051 ], [ -81.967287965999958, 28.917601881000053 ], [ -81.967300632999979, 28.91760735500003 ], [ -81.967312918999937, 28.917614201000049 ], [ -81.967321055999946, 28.917619734000027 ], [ -81.96733138999997, 28.917627758000037 ], [ -81.967342440999971, 28.917639668000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967368034999936, 28.918270455000027 ], [ -81.96736821099995, 28.917707814000039 ], [ -81.967366520999974, 28.917688512000041 ], [ -81.967363753999962, 28.917677922000053 ], [ -81.967360966999934, 28.917670193000049 ], [ -81.96735696099995, 28.917661430000067 ], [ -81.967351428999962, 28.917651817000035 ], [ -81.967342440999971, 28.917639668000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967754032999949, 28.918248668000047 ], [ -81.967754626999977, 28.918248640000058 ], [ -81.967964078999955, 28.918238819000067 ], [ -81.96812700199996, 28.918231178000042 ], [ -81.968338144999962, 28.918221275000064 ], [ -81.968531801999973, 28.918212193000045 ], [ -81.968678743999988, 28.918205301000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966159749999974, 28.919435175000046 ], [ -81.966844744999946, 28.919434374000048 ], [ -81.966857455999957, 28.919432723000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966857455999957, 28.919432723000057 ], [ -81.966870975999939, 28.919429717000071 ], [ -81.966892974999951, 28.919421768000063 ], [ -81.966908359999934, 28.919413524000049 ], [ -81.966926418999947, 28.919400024000026 ], [ -81.966945797999983, 28.919379467000056 ], [ -81.967045636999956, 28.919192943000041 ], [ -81.967325896999967, 28.918660098000032 ], [ -81.967351365999946, 28.918611954000028 ], [ -81.967360933999942, 28.918583096000077 ], [ -81.967365590999975, 28.918554234000055 ], [ -81.967367957999954, 28.918515329000059 ], [ -81.967368024999985, 28.918299698000055 ], [ -81.967368034999936, 28.918270455000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966729183999973, 28.919788453000024 ], [ -81.966870204999964, 28.91952064000003 ], [ -81.966871819999938, 28.919500909000078 ], [ -81.966868336999937, 28.919484376000071 ], [ -81.966857455999957, 28.919432723000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966594843999985, 28.918284657000072 ], [ -81.966597142999944, 28.91751984800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966594843999985, 28.918284657000072 ], [ -81.966597370999978, 28.918285187000038 ], [ -81.96660153299996, 28.91828604400007 ], [ -81.966604393999944, 28.918286622000039 ], [ -81.966606458999934, 28.91828703300007 ], [ -81.966610687999946, 28.918287861000067 ], [ -81.966613575999986, 28.918288414000074 ], [ -81.966620026999976, 28.918289617000028 ], [ -81.966626926999936, 28.918290850000062 ], [ -81.966631701999972, 28.918291674000045 ], [ -81.966635589999953, 28.918292325000039 ], [ -81.96664051099998, 28.918293125000048 ], [ -81.966646425999954, 28.918294051000032 ], [ -81.966649551999978, 28.918294526000068 ], [ -81.966652442999987, 28.918294955000079 ], [ -81.966656931999978, 28.918295604000036 ], [ -81.966663465999943, 28.918296506000047 ], [ -81.966669229, 28.918297266000025 ], [ -81.966674357999977, 28.918297910000035 ], [ -81.966677470999969, 28.918298287000027 ], [ -81.966681685999959, 28.918298781000033 ], [ -81.966688037999972, 28.918299490000038 ], [ -81.966693502999988, 28.918300066000029 ], [ -81.966697459999978, 28.918300461000058 ], [ -81.966700413999945, 28.918300746000057 ], [ -81.966705350999973, 28.918301202000066 ], [ -81.966707861999964, 28.918301424000049 ], [ -81.96671082499995, 28.918301676000056 ], [ -81.966716282999982, 28.918302117000053 ], [ -81.966718416999981, 28.918302281000024 ], [ -81.966723612999942, 28.918302660000052 ], [ -81.966729298999951, 28.918303042000048 ], [ -81.96673491699994, 28.918303385000058 ], [ -81.966741356999989, 28.918303737000031 ], [ -81.966746107999938, 28.918303970000068 ], [ -81.966750414999979, 28.918304159000058 ], [ -81.966756708999981, 28.918304401000057 ], [ -81.966764257999955, 28.918304635000027 ], [ -81.966773686999943, 28.918304845000023 ], [ -81.966778235999982, 28.918304913000043 ], [ -81.966781905999937, 28.918304951000039 ], [ -81.96678787899998, 28.918304984000031 ], [ -81.96679144999996, 28.918304985000077 ], [ -81.966794605999951, 28.918304975000069 ], [ -81.966797922999945, 28.918304954000064 ], [ -81.966803690999939, 28.918304889000069 ], [ -81.966810879999969, 28.918304758000033 ], [ -81.966818170999943, 28.918304571000078 ], [ -81.966823501999954, 28.918304397000043 ], [ -81.966826581999953, 28.918304284000044 ], [ -81.966829750999977, 28.918304156000033 ], [ -81.966836686999955, 28.918303841000068 ], [ -81.966840385999944, 28.918303652000077 ], [ -81.96684384699995, 28.918303463000029 ], [ -81.966850955999973, 28.91830303200004 ], [ -81.966872491999936, 28.91830167300003 ], [ -81.966911779999975, 28.918299195000031 ], [ -81.967368034999936, 28.918270455000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961812124999938, 28.918123163000075 ], [ -81.961891367999954, 28.918016339000076 ], [ -81.961931807999974, 28.917961824000031 ], [ -81.961973948999969, 28.917905015000031 ], [ -81.962021858999947, 28.917839475000051 ], [ -81.962043016999985, 28.917807278000055 ], [ -81.962061668999979, 28.917776114000048 ], [ -81.962074463999954, 28.917752890000031 ], [ -81.96208739399998, 28.91772756000006 ], [ -81.96210399399996, 28.917691595000065 ], [ -81.962113286999966, 28.91766930600005 ], [ -81.962121368999988, 28.917648309000072 ], [ -81.962128825999969, 28.917627277000065 ], [ -81.962134946999981, 28.917608525000048 ], [ -81.962142697, 28.917582291000031 ], [ -81.96214910499998, 28.917557738000028 ], [ -81.96215540299994, 28.917529900000034 ], [ -81.962160414999971, 28.917503651000061 ], [ -81.96216411599994, 28.917480384000044 ], [ -81.962168376999955, 28.917445503000067 ], [ -81.962170144999959, 28.917425328000036 ], [ -81.962171622999961, 28.91740044200003 ], [ -81.962172346999978, 28.917355945000054 ], [ -81.962170943999979, 28.917276614000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961171836999938, 28.917721356000072 ], [ -81.961191416999952, 28.917733717000033 ], [ -81.961206316999949, 28.917743121000058 ], [ -81.961223186999973, 28.917753768000068 ], [ -81.961240539999949, 28.917764721000026 ], [ -81.961259586999972, 28.917776743000047 ], [ -81.961298604999968, 28.917801370000063 ], [ -81.961340156999938, 28.917827597000041 ], [ -81.961385825999969, 28.917856422000057 ], [ -81.96139607899994, 28.917862893000063 ], [ -81.961411638999948, 28.917872715000044 ], [ -81.961430889999974, 28.917884865000076 ], [ -81.961442698999974, 28.917892318000042 ], [ -81.961460151999972, 28.917903336000052 ], [ -81.96147506899996, 28.917912750000028 ], [ -81.961508348999985, 28.917933735000076 ], [ -81.961523044999979, 28.91794303100005 ], [ -81.961542215999941, 28.917955132000031 ], [ -81.961560548999955, 28.917966703000047 ], [ -81.961611334999986, 28.917998758000067 ], [ -81.96170875599995, 28.918060228000058 ], [ -81.961728597999979, 28.918072604000031 ], [ -81.961744382999939, 28.918082349000031 ], [ -81.961758649999979, 28.918091078000032 ], [ -81.961774753999975, 28.918100845000026 ], [ -81.961791910999978, 28.918111151000062 ], [ -81.961804265999945, 28.918118510000056 ], [ -81.961812124999938, 28.918123163000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960683785999947, 28.917414020000024 ], [ -81.960748081999952, 28.917345910000051 ], [ -81.960816564999959, 28.917302119000055 ], [ -81.960909929999957, 28.917296669000052 ], [ -81.961393464999958, 28.91728740800005 ], [ -81.961398961999976, 28.917287332000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960683785999947, 28.917414020000024 ], [ -81.960696459999951, 28.917421413000056 ], [ -81.960707326999966, 28.917428166000036 ], [ -81.960824073999959, 28.917501854000079 ], [ -81.961171836999938, 28.917721356000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960146459999976, 28.917352883000035 ], [ -81.960279728999978, 28.917350997000028 ], [ -81.960418818999983, 28.917349068000078 ], [ -81.960434855999949, 28.917348963000052 ], [ -81.960449478999976, 28.917349270000045 ], [ -81.960462632999963, 28.917349887000057 ], [ -81.960478487999978, 28.917351068000073 ], [ -81.960492000999977, 28.917352453000035 ], [ -81.960505137999974, 28.917354135000039 ], [ -81.960519332999979, 28.917356332000054 ], [ -81.960529820999966, 28.917358210000032 ], [ -81.960545769999953, 28.917361493000044 ], [ -81.960560904999966, 28.917365090000033 ], [ -81.960574063999957, 28.917368612000075 ], [ -81.960588274999964, 28.917372839000052 ], [ -81.960607528999958, 28.917379293000067 ], [ -81.960624856999971, 28.917385846000059 ], [ -81.960637796999947, 28.917391228000042 ], [ -81.960651231999975, 28.917397273000063 ], [ -81.960660963999942, 28.917401958000028 ], [ -81.960668095999949, 28.917405562000056 ], [ -81.960683785999947, 28.917414020000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959307303999935, 28.917364205000069 ], [ -81.959383180999964, 28.917355008000072 ], [ -81.959442961999969, 28.917355008000072 ], [ -81.959500444999946, 28.917355008000072 ], [ -81.959567124999978, 28.917357307000032 ], [ -81.959654261999958, 28.917359845000078 ], [ -81.959698007999975, 28.917359067000064 ], [ -81.960146459999976, 28.917352883000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95874360199997, 28.917762507000077 ], [ -81.958819052999957, 28.91775504900005 ], [ -81.95888363399996, 28.917731941000056 ], [ -81.958910295999942, 28.917715352000073 ], [ -81.958934587999977, 28.917698169000062 ], [ -81.95895769599997, 28.917673285000035 ], [ -81.958984949999945, 28.917643660000067 ], [ -81.959005686999944, 28.917616998000028 ], [ -81.959020499999951, 28.917595076000055 ], [ -81.959033534999946, 28.917576709000059 ], [ -81.95904597699996, 28.917558341000074 ], [ -81.959060788999977, 28.91754056700006 ], [ -81.959083895999981, 28.917512127000066 ], [ -81.959107002999986, 28.917486650000058 ], [ -81.959136627999953, 28.917457618000071 ], [ -81.959169214999974, 28.917433918000029 ], [ -81.959194691999983, 28.917413774000067 ], [ -81.959219576999942, 28.917401331000065 ], [ -81.959237351999946, 28.91739362900006 ], [ -81.959248015999947, 28.917387111000039 ], [ -81.959263420999946, 28.917379409000034 ], [ -81.959276455999941, 28.917375854000056 ], [ -81.959290082999985, 28.917369337000025 ], [ -81.959307303999935, 28.917364205000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958622937999962, 28.917120490000059 ], [ -81.958707663999974, 28.917113973000028 ], [ -81.958741435999968, 28.917113973000028 ], [ -81.958774615999971, 28.917113973000028 ], [ -81.958806609999954, 28.917116343000032 ], [ -81.958849762999989, 28.917123885000024 ], [ -81.959043013999974, 28.917180332000044 ], [ -81.959146435999969, 28.917211963000057 ], [ -81.959199259999934, 28.917241944000068 ], [ -81.959243517999937, 28.917277636000051 ], [ -81.959283565999954, 28.917323715000066 ], [ -81.959307303999935, 28.917364205000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962219768999944, 28.919440228000042 ], [ -81.962282399999935, 28.919270349000044 ], [ -81.962326929999961, 28.919149274000063 ], [ -81.962338340999963, 28.919110973000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961812124999938, 28.918123163000075 ], [ -81.961827010999968, 28.91813191600005 ], [ -81.961834470999975, 28.918136275000052 ], [ -81.96184776399997, 28.918143995000037 ], [ -81.961871605999988, 28.918157691000033 ], [ -81.961896963999948, 28.918172050000067 ], [ -81.961928242999988, 28.918189469000026 ], [ -81.961958987999935, 28.918206282000028 ], [ -81.961993175999964, 28.918224622000025 ], [ -81.962016904999984, 28.918237136000073 ], [ -81.962051642999938, 28.918255138000063 ], [ -81.962073789999977, 28.918266423000034 ], [ -81.962102673999937, 28.918280916000072 ], [ -81.962133456999936, 28.918296088000034 ], [ -81.962153941999986, 28.918306029000064 ], [ -81.962178837999943, 28.918317945000069 ], [ -81.962194365999949, 28.918325287000073 ], [ -81.962219330999972, 28.918336944000032 ], [ -81.962246265999966, 28.91834932200004 ], [ -81.962267726999983, 28.918359039000052 ], [ -81.962305570999945, 28.918375855000079 ], [ -81.962335801999984, 28.918388853000067 ], [ -81.962350986999979, 28.918395205000024 ], [ -81.962371379, 28.918403552000029 ], [ -81.962392486999988, 28.918411973000048 ], [ -81.962406212999952, 28.918417331000057 ], [ -81.962428399999965, 28.918425796000065 ], [ -81.962450281999963, 28.918433913000058 ], [ -81.962480041999981, 28.918444585000032 ], [ -81.962489454999968, 28.918447875000027 ], [ -81.96249662799994, 28.918450354000072 ], [ -81.962505019999981, 28.918453223000029 ], [ -81.962510657999985, 28.918455133000066 ], [ -81.962515000999986, 28.918456594000077 ], [ -81.962526397999966, 28.918460386000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962526397999966, 28.918460386000049 ], [ -81.962527613999953, 28.918460786000026 ], [ -81.962536335999971, 28.918463644000042 ], [ -81.96254466399995, 28.918466340000066 ], [ -81.962550141999941, 28.918468096000026 ], [ -81.96255690199996, 28.918470245000037 ], [ -81.96256257999994, 28.918472034000047 ], [ -81.96256748199994, 28.918473567000035 ], [ -81.962574206999989, 28.918475652000041 ], [ -81.962581406999959, 28.918477862000032 ], [ -81.962587017999965, 28.918479569000056 ], [ -81.962594765999938, 28.918481902000053 ], [ -81.962602883999978, 28.918484317000036 ], [ -81.962608199999977, 28.918485884000063 ], [ -81.962612972999978, 28.918487280000079 ], [ -81.962618223999982, 28.918488804000049 ], [ -81.962623167999936, 28.918490227000063 ], [ -81.962626898999986, 28.918491295000024 ], [ -81.96263006099997, 28.918492195000056 ], [ -81.962639537999962, 28.91849486600006 ], [ -81.962648200999979, 28.918497276000039 ], [ -81.96265813499997, 28.918500029000029 ], [ -81.962679761999937, 28.918506024000067 ], [ -81.962692642999968, 28.918509595000046 ], [ -81.96271408299998, 28.918515539000055 ], [ -81.962769389999949, 28.918530870000041 ], [ -81.963010777999955, 28.918597782000063 ], [ -81.963126859999988, 28.918629960000032 ], [ -81.96313573599997, 28.918632398000057 ], [ -81.963145675999954, 28.918635089000077 ], [ -81.963155426999947, 28.918637687000057 ], [ -81.963164836999965, 28.918640156000038 ], [ -81.963173625999957, 28.918642428000055 ], [ -81.963181162999945, 28.918644351000069 ], [ -81.963187221999988, 28.918645878000063 ], [ -81.963191428999949, 28.918646930000079 ], [ -81.963195004999989, 28.918647818000068 ], [ -81.963195741999982, 28.918647997000051 ], [ -81.963196296999968, 28.918648134000023 ], [ -81.963197991999948, 28.918648556000051 ], [ -81.963199198999973, 28.918648853000036 ], [ -81.963200578999988, 28.918649192000032 ], [ -81.963202149999972, 28.918649576000064 ], [ -81.963203998999973, 28.918650028000059 ], [ -81.963205615999982, 28.918650422000042 ], [ -81.963207151999939, 28.918650795000076 ], [ -81.963208416999976, 28.918651101000023 ], [ -81.963210081999989, 28.918651504000024 ], [ -81.963211469999976, 28.918651838000073 ], [ -81.963213462999988, 28.918652317000067 ], [ -81.963215217999959, 28.918652738000048 ], [ -81.963216890999945, 28.918653138000025 ], [ -81.963218651999966, 28.918653557000027 ], [ -81.963220125999953, 28.918653906000031 ], [ -81.963221270999952, 28.918654177000064 ], [ -81.963222875999975, 28.918654556000035 ], [ -81.963224189999949, 28.918654866000054 ], [ -81.963225159, 28.918655093000041 ], [ -81.963226422999981, 28.918655392000062 ], [ -81.963227834999941, 28.91865572100005 ], [ -81.96322872099995, 28.918655929000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962338340999963, 28.919110973000045 ], [ -81.962347701999988, 28.91907954900006 ], [ -81.962378799999954, 28.91898388900006 ], [ -81.962475723999944, 28.918638154000064 ], [ -81.962512797999977, 28.918508535000058 ], [ -81.962524621999989, 28.918466586000079 ], [ -81.962526397999966, 28.918460386000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962526397999966, 28.918460386000049 ], [ -81.962527885999975, 28.918455011000049 ], [ -81.962530905999984, 28.918444300000033 ], [ -81.962532863999968, 28.918437351000023 ], [ -81.962536102999934, 28.918425993000028 ], [ -81.962539632999949, 28.918414093000024 ], [ -81.962543097999969, 28.918402856000057 ], [ -81.962546175999989, 28.918393210000033 ], [ -81.962549602999957, 28.918382804000032 ], [ -81.962555466999959, 28.918365749000031 ], [ -81.962562101999936, 28.918347438000069 ], [ -81.962569523999946, 28.918328041000052 ], [ -81.962576949999971, 28.918309618000023 ], [ -81.962588665999988, 28.91828227700006 ], [ -81.962595055999941, 28.918268142000045 ], [ -81.962603773999945, 28.918249626000033 ], [ -81.962615262999975, 28.918226439000023 ], [ -81.96262827399994, 28.918201632000034 ], [ -81.962638796999954, 28.918182557000023 ], [ -81.962656489999972, 28.918152234000047 ], [ -81.962667730999954, 28.918133976000036 ], [ -81.962676387999977, 28.918120395000074 ], [ -81.962697805999937, 28.918088409000063 ], [ -81.962713489999942, 28.918066297000053 ], [ -81.962724211999955, 28.918051755000079 ], [ -81.962738569999942, 28.918032954000068 ], [ -81.962752360999957, 28.918015568000044 ], [ -81.962781655999947, 28.917980620000037 ], [ -81.962795931999949, 28.917964148000067 ], [ -81.962810899999965, 28.91794589400007 ], [ -81.962829098999975, 28.917922004000047 ], [ -81.962841561999937, 28.917904401000044 ], [ -81.962851034999971, 28.917890243000045 ], [ -81.962859593999951, 28.917876800000045 ], [ -81.962870200999987, 28.917859171000032 ], [ -81.962886542999968, 28.917829495000035 ], [ -81.962894094999967, 28.917814536000037 ], [ -81.962904788999936, 28.917791665000038 ], [ -81.962913379999975, 28.917771533000064 ], [ -81.96292271599998, 28.917747353000038 ], [ -81.962932216999945, 28.91771940600006 ], [ -81.962936208999963, 28.917706309000039 ], [ -81.962943813999971, 28.917678142000057 ], [ -81.96295029099997, 28.917649102000041 ], [ -81.962955697999973, 28.917618231000063 ], [ -81.962959201999979, 28.917591188000074 ], [ -81.962960973999941, 28.917572322000069 ], [ -81.962962291999986, 28.917551498000023 ], [ -81.962963005999939, 28.917525150000074 ], [ -81.962962149999953, 28.91746624600006 ], [ -81.962960996999982, 28.917401974000029 ], [ -81.962960188999944, 28.917356891000054 ], [ -81.962959247999947, 28.917304441000056 ], [ -81.962958550999986, 28.917265673000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962170943999979, 28.917276614000059 ], [ -81.962448940999934, 28.917272753000077 ], [ -81.962958550999986, 28.917265673000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962958550999986, 28.917265673000031 ], [ -81.963003257999958, 28.917265053000051 ], [ -81.963730366999982, 28.917254950000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959972944999947, 28.917780275000041 ], [ -81.960105401999954, 28.917863957000066 ], [ -81.960347159999969, 28.918016553000029 ], [ -81.96079778099994, 28.918300977000058 ], [ -81.96111142999996, 28.918498944000078 ], [ -81.961315136999985, 28.918627033000064 ], [ -81.96145149299997, 28.91870794600004 ], [ -81.961552596, 28.918764473000067 ], [ -81.961713105999934, 28.918848487000048 ], [ -81.961948677999942, 28.918959856000072 ], [ -81.962161940999977, 28.919049275000077 ], [ -81.962199985999973, 28.919064088000027 ], [ -81.962338340999963, 28.919110973000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95948442699995, 28.917890016000058 ], [ -81.959578017999945, 28.917775481000035 ], [ -81.959593234999943, 28.917759887000045 ], [ -81.95961049899995, 28.917745428000046 ], [ -81.959625704999951, 28.917734860000053 ], [ -81.959646530999976, 28.917723006000074 ], [ -81.95966899299998, 28.917713026000058 ], [ -81.959692923999967, 28.917705116000036 ], [ -81.959709339999961, 28.917701141000066 ], [ -81.959727637999947, 28.917698005000034 ], [ -81.959759363999979, 28.91769563400004 ], [ -81.959784033999938, 28.917696414000034 ], [ -81.959804111999972, 28.917698757000039 ], [ -81.959818624999969, 28.917701435000026 ], [ -81.959839791999968, 28.917706898000063 ], [ -81.95986193799996, 28.917714756000066 ], [ -81.959881343999939, 28.917723668000065 ], [ -81.959912215999964, 28.91774190700005 ], [ -81.959972944999947, 28.917780275000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959972944999947, 28.917780275000041 ], [ -81.960034535999966, 28.917694389000076 ], [ -81.960049827999967, 28.917673186000059 ], [ -81.960065942999961, 28.917649506000032 ], [ -81.960082327999942, 28.917622241000061 ], [ -81.960098851999987, 28.917590233000055 ], [ -81.960110674999953, 28.917563263000034 ], [ -81.960116680999988, 28.917547682000077 ], [ -81.960121022999942, 28.917535335000025 ], [ -81.960125106999953, 28.917522671000029 ], [ -81.960129441999982, 28.917507770000043 ], [ -81.960133307999968, 28.917492735000053 ], [ -81.960136243999955, 28.917479756000034 ], [ -81.960139625999943, 28.917462246000071 ], [ -81.960142834999942, 28.917441105000023 ], [ -81.960145512999986, 28.917414809000036 ], [ -81.960146846999976, 28.917380367000078 ], [ -81.960146459999976, 28.917352883000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961171836999938, 28.917721356000072 ], [ -81.961337708999963, 28.917517374000056 ], [ -81.961351819999948, 28.917500586000074 ], [ -81.961360773999957, 28.917488555000034 ], [ -81.961371132999943, 28.917471661000036 ], [ -81.96137942699994, 28.917456491000053 ], [ -81.96138706499994, 28.917438425000057 ], [ -81.96139194999995, 28.917423639000049 ], [ -81.961396239999942, 28.917406128000039 ], [ -81.961399679999943, 28.917381414000033 ], [ -81.961400306999963, 28.917362540000056 ], [ -81.961398961999976, 28.917287332000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963670771999944, 28.917935044000046 ], [ -81.963686708999944, 28.917887243000052 ], [ -81.963698823999948, 28.917845081000053 ], [ -81.963712591, 28.917787158000067 ], [ -81.963723032999951, 28.917732937000039 ], [ -81.963732618999984, 28.917647154000065 ], [ -81.963735266999947, 28.917599561000031 ], [ -81.963735736, 28.917538332000049 ], [ -81.963733754999964, 28.917434459000049 ], [ -81.963730366999982, 28.917254950000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963048133999962, 28.919316090000052 ], [ -81.963072957999941, 28.919206695000071 ], [ -81.963147816999935, 28.918940672000076 ], [ -81.963215902999934, 28.918699132000029 ], [ -81.96322872099995, 28.918655929000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962685995999948, 28.919227105000061 ], [ -81.962775719999968, 28.919251969000072 ], [ -81.962874621999958, 28.919277874000045 ], [ -81.963048133999962, 28.919316090000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964767884999958, 28.919451163000076 ], [ -81.965141557999971, 28.919451260000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964767884999958, 28.919451163000076 ], [ -81.964769010999987, 28.919329895000033 ], [ -81.964768599999957, 28.91884718600005 ], [ -81.964770433999945, 28.918814094000027 ], [ -81.964773056999945, 28.918793682000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961460353999939, 28.919412286000068 ], [ -81.961335274999954, 28.919350240000028 ], [ -81.961066821999964, 28.919204172000036 ], [ -81.960647561999963, 28.918962505000025 ], [ -81.96023736099994, 28.918702258000053 ], [ -81.959724611999945, 28.918378275000066 ], [ -81.959133448999978, 28.918001178000054 ], [ -81.95887490299998, 28.917839537000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968718430999957, 28.920043294000038 ], [ -81.968379850999952, 28.920035811000048 ], [ -81.967450363999944, 28.920039334000023 ], [ -81.966313400999979, 28.92003758900006 ], [ -81.966122674999951, 28.920038127000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963048133999962, 28.919316090000052 ], [ -81.963067542999966, 28.919320366000079 ], [ -81.963191384999959, 28.919346038000072 ], [ -81.96330063399995, 28.919367028000067 ], [ -81.963487146999967, 28.919395878000046 ], [ -81.963646747999974, 28.919415723000043 ], [ -81.963776745999951, 28.919428629000038 ], [ -81.963891828999976, 28.919437636000055 ], [ -81.963927173999934, 28.919439824000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963927173999934, 28.919439824000051 ], [ -81.963968312999953, 28.919442371000059 ], [ -81.964166087999956, 28.919450016000042 ], [ -81.964401167999938, 28.919451327000047 ], [ -81.96452140599996, 28.919451098000025 ], [ -81.964767884999958, 28.919451163000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96388292599994, 28.92003070800007 ], [ -81.963927173999934, 28.919439824000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988181248999979, 28.917589901000042 ], [ -81.988240387999952, 28.917575040000031 ], [ -81.988381219999951, 28.917549635000057 ], [ -81.988522046999947, 28.917540116000055 ], [ -81.988652042999945, 28.917540127000052 ], [ -81.988778425999953, 28.91754013700006 ], [ -81.988893974999939, 28.917552856000043 ], [ -81.989016745999947, 28.917575105000026 ], [ -81.989117849999957, 28.917603707000069 ], [ -81.989175621999948, 28.917638659000033 ], [ -81.989226171999974, 28.917679965000048 ], [ -81.989255051999976, 28.917737155000054 ], [ -81.989258657999983, 28.917807050000079 ], [ -81.989258516999939, 28.919173185000034 ], [ -81.989240453999969, 28.919239902000072 ], [ -81.989204339999958, 28.919281200000057 ], [ -81.989161004999971, 28.919312967000053 ], [ -81.989121279999949, 28.919338381000046 ], [ -81.989067112999976, 28.919347908000077 ], [ -81.988976837999985, 28.919347901000037 ], [ -81.988814340999966, 28.919347887000072 ], [ -81.988691566999989, 28.919338345000028 ], [ -81.988601295999956, 28.919316098000024 ], [ -81.988511022999944, 28.919281142000045 ], [ -81.988417143999982, 28.919214417000035 ], [ -81.988316042999941, 28.919141337000042 ], [ -81.988254118999976, 28.919113210000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988254118999976, 28.919113210000035 ], [ -81.988330508999979, 28.918957068000054 ], [ -81.988344957999971, 28.918909413000051 ], [ -81.98835579699994, 28.918849049000073 ], [ -81.988352192999969, 28.918779154000049 ], [ -81.988326963999953, 28.91835978000006 ], [ -81.988319753999974, 28.918242229000043 ], [ -81.988316153999961, 28.918153271000051 ], [ -81.988305332999971, 28.918045250000034 ], [ -81.988265632999969, 28.917860977000032 ], [ -81.988181248999979, 28.917589901000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987288123999974, 28.917761098000028 ], [ -81.987341235999963, 28.917756051000026 ], [ -81.987500121999972, 28.91773700400006 ], [ -81.987720395999986, 28.917698898000026 ], [ -81.987897336999936, 28.91766079000007 ], [ -81.988063445999956, 28.917619503000026 ], [ -81.988181248999979, 28.917589901000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987498194999944, 28.919132151000042 ], [ -81.987447313999951, 28.919022265000024 ], [ -81.987413311999944, 28.918947455000023 ], [ -81.987409706999983, 28.918896620000055 ], [ -81.987409717999981, 28.918804486000056 ], [ -81.987402514999985, 28.918642455000054 ], [ -81.987391702999957, 28.918474070000059 ], [ -81.987380884999936, 28.918346987000064 ], [ -81.987288123999974, 28.917761098000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988254118999976, 28.919113210000035 ], [ -81.988204106999945, 28.919090492000066 ], [ -81.988103000999956, 28.919071421000069 ], [ -81.988009115999944, 28.919061882000051 ], [ -81.987908007999977, 28.91905551900004 ], [ -81.98781773099995, 28.91906186500006 ], [ -81.987713010999983, 28.919077741000024 ], [ -81.987498194999944, 28.919132151000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987498194999944, 28.919132151000042 ], [ -81.987146059999986, 28.919249249000075 ], [ -81.98702689199996, 28.919281007000052 ], [ -81.986958279999953, 28.919300064000026 ], [ -81.986857169999951, 28.919312762000061 ], [ -81.986788559999979, 28.91931911000006 ], [ -81.986716337999951, 28.919319103000078 ], [ -81.986665784999957, 28.919312743000035 ], [ -81.986604400999965, 28.919284143000027 ], [ -81.986561071999972, 28.919252369000048 ], [ -81.986521356999958, 28.919207886000038 ], [ -81.986499698999978, 28.919150697000077 ], [ -81.986485268999957, 28.919039499000064 ], [ -81.986467243999982, 28.918813926000041 ], [ -81.986460043999955, 28.918639186000064 ], [ -81.986449225999934, 28.918518457000062 ], [ -81.986438402999966, 28.918439030000059 ], [ -81.986416747999954, 28.918365956000059 ], [ -81.986398705999989, 28.918267464000053 ], [ -81.98639871499995, 28.918197570000075 ], [ -81.986409555999956, 28.918130852000047 ], [ -81.986431229999937, 28.918067313000051 ], [ -81.986467348999952, 28.918006953000031 ], [ -81.98657207499997, 28.917937068000072 ], [ -81.986691242999939, 28.917889425000055 ], [ -81.986860966999984, 28.917829077000079 ], [ -81.987048741999956, 28.917787793000059 ], [ -81.987207627999965, 28.917768746000036 ], [ -81.987288123999974, 28.917761098000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994052226999941, 28.922104240000067 ], [ -81.994050644999959, 28.92210291400005 ], [ -81.993797229999984, 28.921885246000045 ], [ -81.993513646999986, 28.921641032000025 ], [ -81.993266266999967, 28.921428671000058 ], [ -81.992988718999982, 28.921213655000031 ], [ -81.992720221999946, 28.921030490000078 ], [ -81.992569378999974, 28.92092961700007 ], [ -81.992385351999985, 28.920826087000023 ], [ -81.99217718999995, 28.920714591000035 ], [ -81.991966010999988, 28.920605751000039 ], [ -81.991712595999957, 28.920491598000069 ], [ -81.99147727899998, 28.920398681000052 ], [ -81.991254031999972, 28.920321691000026 ], [ -81.99111223999995, 28.920271249000052 ], [ -81.99091010799998, 28.920212840000033 ], [ -81.990756246999979, 28.920173013000067 ], [ -81.990626521999957, 28.920141153000031 ], [ -81.99057040699995, 28.920128236000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98772465899998, 28.919967770000028 ], [ -81.987350138999943, 28.919968352000069 ], [ -81.986086038999986, 28.91996557300007 ], [ -81.984547396999972, 28.919968059000041 ], [ -81.983385875999943, 28.919970575000036 ], [ -81.983313468999938, 28.919973221000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98772465899998, 28.919967770000028 ], [ -81.987723768999956, 28.919709976000036 ], [ -81.987720169999989, 28.919614664000051 ], [ -81.987698511999952, 28.919532059000062 ], [ -81.987637142999972, 28.919385909000027 ], [ -81.987564936999945, 28.919265173000042 ], [ -81.987498194999944, 28.919132151000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023762283999986, 28.846903319000035 ], [ -82.023846468999977, 28.846815869000068 ], [ -82.023994946999949, 28.846677385000078 ], [ -82.024192965999987, 28.846489293000047 ], [ -82.024261922999983, 28.846416120000072 ], [ -82.024333306999949, 28.846333315000038 ], [ -82.02439824399994, 28.846250144000066 ], [ -82.024458454999944, 28.846158350000053 ], [ -82.024516740999957, 28.846051697000064 ], [ -82.024564589999954, 28.845947842000044 ], [ -82.024597333999964, 28.845856806000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016670025999986, 28.843618238000033 ], [ -82.016715232999957, 28.843604975000062 ], [ -82.016757218999942, 28.84358513400008 ], [ -82.016794759999982, 28.843559296000024 ], [ -82.016794792999974, 28.843559263000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016882603999989, 28.843365180000035 ], [ -82.016881173999934, 28.843345427000031 ], [ -82.016872390999936, 28.84330964000003 ], [ -82.016857667999943, 28.843275399000049 ], [ -82.016837329999987, 28.843243463000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019034816999977, 28.843530378000025 ], [ -82.018923562999987, 28.843512675000056 ], [ -82.018751056999974, 28.843492451000031 ], [ -82.018577668999967, 28.843479302000048 ], [ -82.018403776999946, 28.843473250000045 ], [ -82.018229750999978, 28.84347431100008 ], [ -82.018055969999978, 28.843482483000059 ], [ -82.017712512999935, 28.843505684000036 ], [ -82.017592114999957, 28.843503655000063 ], [ -82.017475520999938, 28.843503670000075 ], [ -82.01735404599998, 28.843497956000078 ], [ -82.017242874999965, 28.843489376000036 ], [ -82.017127905999985, 28.843474111000035 ], [ -82.017063370999949, 28.843457409000052 ], [ -82.017006968999965, 28.843439748000037 ], [ -82.016960328999971, 28.843416359000059 ], [ -82.016928329999985, 28.843398696000065 ], [ -82.016882603999989, 28.843365180000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019953015999988, 28.845053936000056 ], [ -82.019947707999961, 28.845070089000046 ], [ -82.019919100999971, 28.845207607000077 ], [ -82.019902013999967, 28.845373757000061 ], [ -82.019892440999968, 28.845470022000029 ], [ -82.019890570999962, 28.845566642000051 ], [ -82.019910214999982, 28.845701997000049 ], [ -82.019923738999978, 28.845797893000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02214424999994, 28.847245961000056 ], [ -82.022367919999965, 28.847272135000026 ], [ -82.022498789999986, 28.847281653000039 ], [ -82.02262965999995, 28.84728879100004 ], [ -82.02276053099996, 28.847286412000074 ], [ -82.022846190999985, 28.847274515000038 ], [ -82.022950886999979, 28.847267376000048 ], [ -82.023065101999975, 28.847253100000046 ], [ -82.023155520999978, 28.847222167000041 ], [ -82.023241181999936, 28.847210269000072 ], [ -82.023324462999938, 28.847179336000067 ], [ -82.023429158999988, 28.84712698800007 ], [ -82.023526716999982, 28.847074640000073 ], [ -82.023586203999969, 28.847024671000042 ], [ -82.023664725999936, 28.846972323000045 ], [ -82.023705176999954, 28.846939011000075 ], [ -82.023762283999986, 28.846903319000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019352438999988, 28.840496440000038 ], [ -82.020547523999937, 28.840892995000047 ], [ -82.020956499999954, 28.841028769000047 ], [ -82.022056086999953, 28.841390825000076 ], [ -82.023195311999984, 28.841772223000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023327071999972, 28.841816636000033 ], [ -82.023674869, 28.841929587000038 ], [ -82.024740189999989, 28.842278692000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022296596, 28.844198601000073 ], [ -82.023007609999979, 28.842469904000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023676622999972, 28.846862868000073 ], [ -82.02342932199997, 28.846602532000077 ], [ -82.023312536999981, 28.846501337000063 ], [ -82.02320002099998, 28.846396457000026 ], [ -82.023091926999939, 28.846288033000064 ], [ -82.022988396999949, 28.846176209000078 ], [ -82.022889570999951, 28.846061133000035 ], [ -82.022795577999943, 28.845942960000059 ], [ -82.022742558999937, 28.845866689000047 ], [ -82.022696511999982, 28.845786983000039 ], [ -82.022657724999988, 28.845704338000075 ], [ -82.02243210499995, 28.845169449000025 ], [ -82.022414097999956, 28.845116123000025 ], [ -82.022403633999943, 28.845061257000054 ], [ -82.02240087499996, 28.845005676000028 ], [ -82.022405858999946, 28.844950216000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022405858999946, 28.844950216000029 ], [ -82.022416429999964, 28.844902736000051 ], [ -82.022432683999966, 28.84485651600005 ], [ -82.022656325999947, 28.844313441000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020520387999966, 28.844123646000071 ], [ -82.020628195999961, 28.844193994000079 ], [ -82.020733073999963, 28.844267693000063 ], [ -82.020834888999957, 28.844344650000039 ], [ -82.020910693999951, 28.844400375000077 ], [ -82.020990346999952, 28.844451771000024 ], [ -82.021073529999967, 28.844498632000068 ], [ -82.021159909999938, 28.844540770000037 ], [ -82.021249142999977, 28.84457801800005 ], [ -82.02134086999996, 28.844610226000043 ], [ -82.021675965999975, 28.844717205000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021675965999975, 28.844717205000052 ], [ -82.022405858999946, 28.844950216000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020837925999956, 28.846734377000075 ], [ -82.021675965999975, 28.844717205000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022656325999947, 28.844313441000054 ], [ -82.022799844999952, 28.844359258000054 ], [ -82.022950851999951, 28.844403899000042 ], [ -82.023104093999962, 28.844442183000069 ], [ -82.023259226999983, 28.844474023000032 ], [ -82.023415900999964, 28.844499349000046 ], [ -82.023573762999945, 28.844518102000052 ], [ -82.024079686999983, 28.844571533000078 ], [ -82.024214599999937, 28.844588316000056 ], [ -82.024348455999984, 28.844610716000034 ], [ -82.024480952999966, 28.844638683000028 ], [ -82.024611795999988, 28.844672151000054 ], [ -82.024740686999962, 28.844711050000058 ], [ -82.024867336999989, 28.844755289000034 ], [ -82.024998921999952, 28.844797093000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021675965999975, 28.844717205000052 ], [ -82.021897472999967, 28.84417942500005 ], [ -82.021904972999948, 28.844164886000044 ], [ -82.021914963999961, 28.844151560000057 ], [ -82.021927200999983, 28.844139774000041 ], [ -82.021941378999941, 28.844129819000045 ], [ -82.021957153999949, 28.844121939000047 ], [ -82.021974131999968, 28.844116328000041 ], [ -82.021991899999989, 28.844113127000071 ], [ -82.022010017999946, 28.844112410000037 ], [ -82.022028038999963, 28.844114198000057 ], [ -82.022045519999949, 28.844118446000039 ], [ -82.022296596, 28.844198601000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022296596, 28.844198601000073 ], [ -82.022656325999947, 28.844313441000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991795775999947, 28.859827835000033 ], [ -81.991814, 28.85981943400003 ], [ -81.991831357999956, 28.859804156000052 ], [ -81.99184437699995, 28.859784293000075 ], [ -81.991857395999943, 28.859759848000067 ], [ -81.991878225999983, 28.859719359000053 ], [ -81.991918151999982, 28.859642202000032 ], [ -81.992078804999949, 28.859327844000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985092072999976, 28.859376609000037 ], [ -81.985197078999988, 28.859406007000075 ], [ -81.98526454499995, 28.859421696000027 ], [ -81.985333443999934, 28.859431418000042 ], [ -81.985403098999939, 28.859435078000047 ], [ -81.985472823999942, 28.859432642000058 ], [ -81.985541929999954, 28.859424131000026 ], [ -81.985609736999947, 28.859409630000073 ], [ -81.986664852999979, 28.859134505000043 ], [ -81.986700095999936, 28.859122518000049 ], [ -81.986732692999965, 28.859105698000064 ], [ -81.986761795999939, 28.859084488000065 ], [ -81.986786647999963, 28.859059433000027 ], [ -81.986806601999945, 28.859031189000063 ], [ -81.986821139999961, 28.859000488000049 ], [ -81.986829882999984, 28.858968129000061 ], [ -81.986832604999961, 28.858934953000073 ], [ -81.986828250999963, 28.858489986000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986828250999963, 28.858489986000052 ], [ -81.986826741999948, 28.858335854000075 ], [ -81.986821748999944, 28.858237194000026 ], [ -81.986808723999957, 28.858139104000031 ], [ -81.98678773499995, 28.858042089000037 ], [ -81.986758892999944, 28.857946650000031 ], [ -81.986722343999986, 28.857853281000075 ], [ -81.986679248999963, 28.857765313000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985206870999946, 28.858761815000037 ], [ -81.985205586999939, 28.858643371000028 ], [ -81.985196918999975, 28.858525167000039 ], [ -81.985180887999945, 28.858407561000035 ], [ -81.985157547999961, 28.858290907000026 ], [ -81.985126964999949, 28.858175558000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984872511999981, 28.860065186000043 ], [ -81.984873200999971, 28.859947217000069 ], [ -81.984876203999988, 28.859896105000075 ], [ -81.984884588999989, 28.859845461000077 ], [ -81.984898286999965, 28.859795722000058 ], [ -81.984917174999964, 28.859747319000064 ], [ -81.984941093999964, 28.859700670000052 ], [ -81.984998050999934, 28.859595106000029 ], [ -81.985048425999935, 28.859486979000053 ], [ -81.985092072999976, 28.859376609000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985092072999976, 28.859376609000037 ], [ -81.985125206999953, 28.859276580000028 ], [ -81.985152814999935, 28.85917525900004 ], [ -81.985174828999959, 28.859072882000078 ], [ -81.985191199999974, 28.858969688000059 ], [ -81.985201888999939, 28.858865918000049 ], [ -81.985206870999946, 28.858761815000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983549566999955, 28.860540509000032 ], [ -81.983824499999969, 28.860585410000056 ], [ -81.983902547999946, 28.860599368000067 ], [ -81.983980011999961, 28.860615652000035 ], [ -81.984130981999954, 28.860646320000058 ], [ -81.984283484999935, 28.860670407000043 ], [ -81.984437148999973, 28.860687855000037 ], [ -81.984591602999956, 28.860698622000029 ], [ -81.984746470999937, 28.860702681000078 ], [ -81.985256470999957, 28.860704985000041 ], [ -81.985295836999967, 28.86070223300004 ], [ -81.985334116999979, 28.860693701000059 ], [ -81.985370226999976, 28.86067963000005 ], [ -81.98540313999996, 28.86066042300007 ], [ -81.985431920999986, 28.860636619000047 ], [ -81.98545575299994, 28.860608902000024 ], [ -81.985473957999943, 28.86057805300004 ], [ -81.985486021999975, 28.860544951000065 ], [ -81.985491596999964, 28.860510536000049 ], [ -81.985490529999936, 28.860475786000052 ], [ -81.985461852999947, 28.860250134000069 ], [ -81.985454627999957, 28.860217454000065 ], [ -81.985441524999942, 28.860186222000038 ], [ -81.985422885999981, 28.860157253000068 ], [ -81.985399194999957, 28.86013130200007 ], [ -81.985371070999975, 28.860109044000069 ], [ -81.985339242999942, 28.860091059000069 ], [ -81.985304543999973, 28.860077815000068 ], [ -81.985267876999956, 28.860069659000033 ], [ -81.985230198999943, 28.860066803000052 ], [ -81.984872511999981, 28.860065186000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984872511999981, 28.860065186000043 ], [ -81.984750192999968, 28.860064633000036 ], [ -81.984624809999957, 28.860061205000079 ], [ -81.984499798999934, 28.860052066000037 ], [ -81.98437549199997, 28.860037238000075 ], [ -81.984252224999977, 28.860016763000033 ], [ -81.984199699999976, 28.860004424000067 ], [ -81.984148772999959, 28.859987678000039 ], [ -81.984099921999984, 28.859966682000049 ], [ -81.98405360299995, 28.859941632000073 ], [ -81.984010246999958, 28.859912761000032 ], [ -81.983920336999972, 28.859846640000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983673436999936, 28.863139560000036 ], [ -81.983643038999958, 28.862904262000029 ], [ -81.983622480999941, 28.861823093000055 ], [ -81.983616709999978, 28.861699773000055 ], [ -81.983604659999969, 28.861576805000027 ], [ -81.983568267999942, 28.861282679000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983549566999955, 28.860540509000032 ], [ -81.983573098999955, 28.860445858000048 ], [ -81.983603464999987, 28.860352727000077 ], [ -81.983640542999979, 28.860261500000036 ], [ -81.983684178999965, 28.860172549000026 ], [ -81.983734192999975, 28.860086239000054 ], [ -81.983790381999938, 28.86000292500006 ], [ -81.983852515999956, 28.859922950000055 ], [ -81.983920336999972, 28.859846640000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983920336999972, 28.859846640000058 ], [ -81.983998490999966, 28.859769770000071 ], [ -81.98407702999998, 28.859692493000068 ], [ -81.984149368999965, 28.859610662000023 ], [ -81.98421517099996, 28.859524661000023 ], [ -81.984274124999956, 28.859434893000071 ], [ -81.984325953999985, 28.859341780000079 ], [ -81.984370414999944, 28.859245759000032 ], [ -81.98440729899994, 28.859147283000027 ], [ -81.984436432999985, 28.859046814000067 ], [ -81.984457678999945, 28.858944823000058 ], [ -81.984470937999959, 28.858841791000032 ], [ -81.984476147999942, 28.858738201000051 ], [ -81.984473283999989, 28.858634542000061 ], [ -81.984462358999963, 28.85853129700007 ], [ -81.984460565999939, 28.858499137000024 ], [ -81.984464480999975, 28.858467124000072 ], [ -81.984474005999971, 28.858436037000047 ], [ -81.984488911999961, 28.858406634000062 ], [ -81.98450883199996, 28.858379631000048 ], [ -81.984533285999987, 28.858355686000039 ], [ -81.984561671999984, 28.858335382000064 ], [ -81.984593301999951, 28.858319216000041 ], [ -81.984627404999969, 28.85830758000003 ], [ -81.985126964999949, 28.858175558000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985126964999949, 28.858175558000028 ], [ -81.986679248999963, 28.857765313000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986679248999963, 28.857765313000073 ], [ -81.986687116999974, 28.85776323400006 ], [ -81.986781190999977, 28.85773473100005 ], [ -81.986872391999952, 28.857699729000046 ], [ -81.986960139999951, 28.857658451000077 ], [ -81.987045049999949, 28.857611304000045 ], [ -81.987126344999979, 28.857559452000032 ], [ -81.987203689999944, 28.857503109000049 ], [ -81.987276761999965, 28.857442511000045 ], [ -81.987345260999973, 28.857377905000078 ], [ -81.987456357999974, 28.857288216000029 ], [ -81.987533452999969, 28.857233012000052 ], [ -81.987634341999978, 28.857181616000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983568267999942, 28.861282679000055 ], [ -81.983760077999989, 28.86126428700004 ], [ -81.983839873999955, 28.861260256000037 ], [ -81.983919721999939, 28.86126342700004 ], [ -81.983998781999958, 28.861273765000078 ], [ -81.984124540999971, 28.861294154000063 ], [ -81.984251, 28.861310875000072 ], [ -81.984378012999969, 28.861323909000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984378012999969, 28.861323909000077 ], [ -81.984499371999959, 28.861332882000056 ], [ -81.984620989999939, 28.861338490000037 ], [ -81.984742749999953, 28.861340727000027 ], [ -81.985086532999958, 28.861342281000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985086532999958, 28.861342281000077 ], [ -81.985253395999962, 28.861343035000061 ], [ -81.985381699999948, 28.861341295000045 ], [ -81.985509814999944, 28.861334917000079 ], [ -81.985637524999959, 28.861323914000025 ], [ -81.985764612999958, 28.861308302000054 ], [ -81.985790863999966, 28.861304592000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986315753999975, 28.861230411000065 ], [ -81.986622816999954, 28.861187014000052 ], [ -81.986745, 28.861171918000025 ], [ -81.986867764999943, 28.861161081000034 ], [ -81.986990920999972, 28.861154520000071 ], [ -81.988162953999961, 28.861112494000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985790863999966, 28.861304592000067 ], [ -81.986315753999975, 28.861230411000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986234834999948, 28.860593722000033 ], [ -81.986172800999952, 28.860105611000051 ], [ -81.986171809999973, 28.860069718000034 ], [ -81.986177903999987, 28.860034218000067 ], [ -81.98619089999994, 28.860000187000026 ], [ -81.986210400999937, 28.859968654000056 ], [ -81.986235816999965, 28.859940576000042 ], [ -81.986266379999961, 28.859916803000033 ], [ -81.986301162999951, 28.859898054000041 ], [ -81.98633910999996, 28.859884901000044 ], [ -81.987606577999941, 28.859554397000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986315753999975, 28.861230411000065 ], [ -81.986234834999948, 28.860593722000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985940746999972, 28.861978036000039 ], [ -81.985910998999941, 28.861897274000057 ], [ -81.985886968999978, 28.861815050000075 ], [ -81.985868749999952, 28.861731678000069 ], [ -81.985790863999966, 28.861304592000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986259952999944, 28.862604060000024 ], [ -81.985990608999941, 28.862085811000043 ], [ -81.985964380999974, 28.862032388000046 ], [ -81.985940746999972, 28.861978036000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986521779999975, 28.86299432900006 ], [ -81.986396300999957, 28.862832081000079 ], [ -81.986352477999958, 28.862773481000033 ], [ -81.986315665999939, 28.862711255000079 ], [ -81.986259952999944, 28.862604060000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992953199999988, 28.859075884000049 ], [ -81.993233577999945, 28.85872495600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992638897999939, 28.859613506000073 ], [ -81.992670983999972, 28.859522125000069 ], [ -81.992703506999987, 28.85944091500005 ], [ -81.992743145999953, 28.85936219000007 ], [ -81.992789657999936, 28.859286437000037 ], [ -81.992842756999949, 28.859214119000058 ], [ -81.992953199999988, 28.859075884000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992224874999977, 28.860708230000057 ], [ -81.992232319999971, 28.860623726000028 ], [ -81.992247621, 28.86054004500005 ], [ -81.992270675999976, 28.860457752000059 ], [ -81.992301329999975, 28.860377404000076 ], [ -81.992339374999972, 28.860299544000043 ], [ -81.992444297999953, 28.860107016000029 ], [ -81.992482110999958, 28.86003301900007 ], [ -81.99251574699997, 28.859957477000023 ], [ -81.992545122999957, 28.85988057000003 ], [ -81.992638897999939, 28.859613506000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992443352999942, 28.861457902000041 ], [ -81.992294717999982, 28.861098303000063 ], [ -81.992267149999975, 28.861022652000031 ], [ -81.992246276999936, 28.860945357000048 ], [ -81.992232224999952, 28.860866878000024 ], [ -81.992225075999954, 28.860787678000065 ], [ -81.992224874999977, 28.860708230000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992691187999981, 28.86205749800007 ], [ -81.992443352999942, 28.861457902000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994305353999948, 28.863298693000047 ], [ -81.993883263999976, 28.863157177000062 ], [ -81.993793515999982, 28.863129856000057 ], [ -81.993702045999953, 28.863107385000035 ], [ -81.993230104999952, 28.863004949000072 ], [ -81.993188504999978, 28.862993150000079 ], [ -81.993149182999957, 28.862976352000032 ], [ -81.993112909, 28.862954890000026 ], [ -81.993080391999968, 28.862929182000073 ], [ -81.993052269999964, 28.862899730000038 ], [ -81.993029089999936, 28.86286711200006 ], [ -81.99301130899994, 28.862831965000055 ], [ -81.992939026999977, 28.862657094000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992939026999977, 28.862657094000042 ], [ -81.992691187999981, 28.86205749800007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993392263999965, 28.863782146000062 ], [ -81.994005472999959, 28.863944262000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994005472999959, 28.863944262000075 ], [ -81.994133120999948, 28.863979524000058 ], [ -81.994212366999989, 28.863999410000076 ], [ -81.994292693999967, 28.864015588000029 ], [ -81.994512457999974, 28.864054513000042 ], [ -81.994549392999943, 28.864053586000068 ], [ -81.994588445999966, 28.864048813000068 ], [ -81.994626413999981, 28.864041176000057 ], [ -81.994661128999951, 28.864025898000079 ], [ -81.99469475799998, 28.864007755000046 ], [ -81.994724047999966, 28.863986747000069 ], [ -81.994751170999962, 28.863960010000028 ], [ -81.994803245999947, 28.863877887000058 ], [ -81.994867252999939, 28.863777620000064 ], [ -81.994922581999958, 28.863683083000069 ], [ -81.994967063, 28.863582816000076 ], [ -81.995441817999961, 28.862478534000047 ], [ -81.995448327999952, 28.862445303000072 ], [ -81.995450932999972, 28.862413217000039 ], [ -81.995447029, 28.86238342200005 ], [ -81.995440521999967, 28.862351336000074 ], [ -81.995426203999955, 28.862322687000074 ], [ -81.995413187999986, 28.862296331000039 ], [ -81.995394964999946, 28.86227111900007 ], [ -81.995371533999958, 28.862247054000079 ], [ -81.995345314999952, 28.862226532000079 ], [ -81.995146826999985, 28.862129129000039 ], [ -81.995077811999977, 28.862097222000045 ], [ -81.995007075, 28.862068386000033 ], [ -81.994934791999981, 28.862042692000045 ], [ -81.99487256599997, 28.862022147000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99487256599997, 28.862022147000062 ], [ -81.994293934999973, 28.861838423000052 ], [ -81.994262477999939, 28.861826008000037 ], [ -81.994233189999989, 28.861809772000072 ], [ -81.994207155999959, 28.861790674000076 ], [ -81.994183291999946, 28.861768708000056 ], [ -81.994165935999945, 28.861743878000027 ], [ -81.994147496999972, 28.861716186000024 ], [ -81.994133395999938, 28.861682761000054 ], [ -81.994123635999983, 28.861645518000046 ], [ -81.994109538999965, 28.861544293000065 ], [ -81.994103037999935, 28.861414421000063 ], [ -81.994101959999966, 28.861295053000049 ], [ -81.994107390999943, 28.861162316000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994107390999943, 28.861162316000048 ], [ -81.994116076999944, 28.861024805000056 ], [ -81.994134526999972, 28.860880608000059 ], [ -81.994159482999976, 28.860751691000075 ], [ -81.994195287999958, 28.860607496000057 ], [ -81.994252791999941, 28.860425105000047 ], [ -81.994312461999982, 28.860246532000076 ], [ -81.994376472999988, 28.860072735000074 ], [ -81.994446875999984, 28.859898767000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994446875999984, 28.859898767000061 ], [ -81.994530413999939, 28.859696323000037 ], [ -81.994618794999951, 28.859492190000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994305353999948, 28.863298693000047 ], [ -81.994433141999934, 28.863013973000079 ], [ -81.994613238999989, 28.862601444000063 ], [ -81.99487256599997, 28.862022147000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994005472999959, 28.863944262000075 ], [ -81.994065940999974, 28.863737040000046 ], [ -81.994091339999954, 28.863676042000066 ], [ -81.994123164999962, 28.863617426000076 ], [ -81.994161133999967, 28.863561717000039 ], [ -81.994208575999949, 28.863493637000033 ], [ -81.99425010899995, 28.86342262900007 ], [ -81.994285499999989, 28.863349088000064 ], [ -81.994305353999948, 28.863298693000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977894724999942, 28.857649383000023 ], [ -81.977871757999935, 28.857470277000061 ], [ -81.977865829999985, 28.857409504000032 ], [ -81.977867580999941, 28.857348525000077 ], [ -81.977876992999938, 28.857288091000044 ], [ -81.977893945999938, 28.857228947000067 ], [ -81.977918233999958, 28.857171821000065 ], [ -81.977995447999945, 28.857016962000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977995447999945, 28.857016962000046 ], [ -81.978483349999976, 28.856038414000068 ], [ -81.978506400999947, 28.855983594000065 ], [ -81.978521951999937, 28.855926762000024 ], [ -81.978529784999978, 28.855868713000064 ], [ -81.978529790999971, 28.855810256000041 ], [ -81.978521968999985, 28.855752207000023 ], [ -81.978506429999982, 28.855695374000049 ], [ -81.978483387999972, 28.855640549000043 ], [ -81.977804984999977, 28.854279253000072 ], [ -81.977791900999989, 28.854245194000043 ], [ -81.977785732999962, 28.854209652000065 ], [ -81.977786667999965, 28.854173709000065 ], [ -81.977794678999942, 28.854138452000029 ], [ -81.977809522999962, 28.85410495800005 ], [ -81.977830747999974, 28.854074241000035 ], [ -81.977857707999988, 28.854047235000053 ], [ -81.977889586999936, 28.854024761000062 ], [ -81.977925412, 28.854007503000048 ], [ -81.977925976999984, 28.854007274000026 ], [ -81.977932148999969, 28.854004901000053 ], [ -81.977933569999948, 28.854004352000061 ], [ -81.978043285999945, 28.853959725000038 ], [ -81.978150961999972, 28.853911395000068 ], [ -81.978256432999956, 28.853859435000061 ], [ -81.978359541999964, 28.853803922000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978890862999947, 28.853427519000036 ], [ -81.978975802999969, 28.853349497000067 ], [ -81.979057194999939, 28.853268598000056 ], [ -81.979134914999975, 28.853184944000077 ], [ -81.979687158, 28.852566116000048 ], [ -81.979715989999988, 28.85253070300007 ], [ -81.979741172999979, 28.852493196000069 ], [ -81.979762512999969, 28.852453884000056 ], [ -81.979796884999985, 28.852382670000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978359541999964, 28.853803922000054 ], [ -81.978473089999966, 28.85373697600005 ], [ -81.978583202999971, 28.853665724000052 ], [ -81.978689670999984, 28.853590299000075 ], [ -81.978792289999944, 28.853510846000063 ], [ -81.978890862999947, 28.853427519000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980339318999938, 28.856000026000061 ], [ -81.980200014, 28.855800941000041 ], [ -81.980144095999947, 28.855712901000061 ], [ -81.980077470999959, 28.855611774000067 ], [ -81.980022744999985, 28.85551302600004 ], [ -81.979532632999963, 28.854569742000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979241442999978, 28.853985451000028 ], [ -81.979062468999985, 28.853626320000046 ], [ -81.979039159999957, 28.853584917000035 ], [ -81.979011568999965, 28.853545608000047 ], [ -81.978979933999938, 28.853508735000048 ], [ -81.978944530999968, 28.853474619000053 ], [ -81.978890862999947, 28.853427519000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979532632999963, 28.854569742000024 ], [ -81.979241442999978, 28.853985451000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980453196999974, 28.85491203600003 ], [ -81.981171697999969, 28.854268812000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981171697999969, 28.854268812000043 ], [ -81.981464563999964, 28.853999499000054 ], [ -81.981515387999934, 28.853947851000044 ], [ -81.981560138999953, 28.853892016000032 ], [ -81.981631746999938, 28.853792516000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981250853999938, 28.855286311000043 ], [ -81.981341312999973, 28.855161422000037 ], [ -81.981437693999965, 28.85503410900003 ], [ -81.98151050599995, 28.854918468000051 ], [ -81.981534776, 28.854877779000049 ], [ -81.981551907999972, 28.854832093000027 ], [ -81.981561187999944, 28.854789977000053 ], [ -81.981564756999944, 28.854744291000031 ], [ -81.981563329999972, 28.854699319000076 ], [ -81.981552621999981, 28.854653634000044 ], [ -81.981535489999942, 28.854609852000067 ], [ -81.981513598999982, 28.854569401000049 ], [ -81.981482189999952, 28.854532281000047 ], [ -81.981448876999934, 28.854497065000032 ], [ -81.981171697999969, 28.854268812000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980339318999938, 28.856000026000061 ], [ -81.980459322999934, 28.855940780000026 ], [ -81.980582678999951, 28.855858543000068 ], [ -81.980704891999949, 28.855772879000028 ], [ -81.98081910999997, 28.855680363000033 ], [ -81.980925332999959, 28.855590131000042 ], [ -81.981039550999981, 28.85549304500006 ], [ -81.981136635999974, 28.855393676000062 ], [ -81.981250853999938, 28.855286311000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977995447999945, 28.857016962000046 ], [ -81.97810119899998, 28.857057827000062 ], [ -81.978159461999951, 28.857077033000053 ], [ -81.978219777999982, 28.857090454000058 ], [ -81.978281408999976, 28.85709792800003 ], [ -81.978343600999949, 28.857099363000032 ], [ -81.978405592999934, 28.857094740000036 ], [ -81.978466624999953, 28.857084117000056 ], [ -81.978525950999938, 28.857067624000024 ], [ -81.978669369999977, 28.857016467000051 ], [ -81.978809872999989, 28.856959379000045 ], [ -81.978947140999935, 28.856896487000029 ], [ -81.979080864999958, 28.856827934000023 ], [ -81.979210746999968, 28.856753874000049 ], [ -81.979336488999934, 28.856674473000055 ], [ -81.979457812999954, 28.856589912000061 ], [ -81.979574444999969, 28.856500379000067 ], [ -81.979658246999975, 28.856434673000024 ], [ -81.979757304999964, 28.856361446000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979757304999964, 28.856361446000051 ], [ -81.979858861999958, 28.856290738000041 ], [ -81.979976806999957, 28.856214081000076 ], [ -81.980097695999973, 28.856141062000063 ], [ -81.980339318999938, 28.856000026000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982218225999986, 28.85428590500004 ], [ -81.982248238999944, 28.854354100000023 ], [ -81.982271275999949, 28.854424367000036 ], [ -81.982287153999948, 28.854496152000024 ], [ -81.982295747999956, 28.854568895000057 ], [ -81.982296991999988, 28.854642021000075 ], [ -81.982272407999972, 28.855379005000032 ], [ -81.982273774999953, 28.855444580000039 ], [ -81.982282233999968, 28.855509744000074 ], [ -81.98229770599994, 28.855573901000071 ], [ -81.982343863999972, 28.855728567000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979532632999963, 28.854569742000024 ], [ -81.979594253999949, 28.854545941000026 ], [ -81.979685762999964, 28.854506726000068 ], [ -81.979773466999973, 28.854461267000033 ], [ -81.979856817999973, 28.854409850000025 ], [ -81.979935290999947, 28.854352795000068 ], [ -81.980923060999942, 28.853574799000057 ], [ -81.980953234999959, 28.853554649000046 ], [ -81.980986704999964, 28.853539041000033 ], [ -81.981022591999988, 28.85352838600005 ], [ -81.981059960999971, 28.853522959000031 ], [ -81.981097834999957, 28.853522906000023 ], [ -81.981135223999956, 28.853528224000058 ], [ -81.981171150999955, 28.85353877700004 ], [ -81.981204676999937, 28.853554288000055 ], [ -81.981631746999938, 28.853792517000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981631746999938, 28.853792517000045 ], [ -81.981861807999962, 28.853920849000076 ], [ -81.981926890999944, 28.853960645000029 ], [ -81.981987923999952, 28.854005139000037 ], [ -81.98204446799997, 28.854054012000063 ], [ -81.982096121999973, 28.854106917000024 ], [ -81.982142511999939, 28.854163474000075 ], [ -81.982183311999961, 28.854223279000053 ], [ -81.982218225999986, 28.85428590500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977423227999964, 28.853501810000068 ], [ -81.977451863999988, 28.853502960000071 ], [ -81.977481150999949, 28.853500673000042 ], [ -81.977517838999972, 28.853490689000068 ], [ -81.977651803999947, 28.85343894600004 ], [ -81.977771421999989, 28.853389271000026 ], [ -81.977887497999973, 28.853336614000057 ], [ -81.978002920999984, 28.853277043000048 ], [ -81.978111402999957, 28.853212125000027 ], [ -81.978219886999966, 28.853141095000069 ], [ -81.978314484999942, 28.853072354000062 ], [ -81.978415160999987, 28.85299291900003 ], [ -81.978504556999951, 28.852907371000072 ], [ -81.978600896999978, 28.852808835000076 ], [ -81.978866487999937, 28.852511125000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978866487999937, 28.852511125000035 ], [ -81.979288597999982, 28.85201332400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976488699999948, 28.851843006000024 ], [ -81.976766138999949, 28.852197634000049 ], [ -81.976792164999949, 28.852223422000066 ], [ -81.976819818999957, 28.852245867000079 ], [ -81.976845306999962, 28.852260674000036 ], [ -81.976874590999955, 28.852270228000066 ], [ -81.976908211999955, 28.852281693000066 ], [ -81.976941834999934, 28.852289339000038 ], [ -81.976978714999973, 28.852291255000068 ], [ -81.977016678999973, 28.852288396000063 ], [ -81.977050305999967, 28.85227885200004 ], [ -81.977135903999965, 28.852244635000034 ], [ -81.977215986999965, 28.852200079000056 ], [ -81.977292005999971, 28.85215031000007 ], [ -81.977363521999962, 28.852095612000028 ], [ -81.977430126999934, 28.852036301000055 ], [ -81.977491436999969, 28.851972719000059 ], [ -81.978247231999944, 28.851125804000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975807136999947, 28.850227775000064 ], [ -81.975718952999955, 28.850521555000057 ], [ -81.975710693999986, 28.850575091000053 ], [ -81.97570899599998, 28.850629096000034 ], [ -81.975713875999986, 28.850682952000057 ], [ -81.97572527799997, 28.850736037000047 ], [ -81.975743073, 28.850787743000069 ], [ -81.975767055999938, 28.85083747300007 ], [ -81.975796948999971, 28.850884656000062 ], [ -81.976099989999966, 28.851304490000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976099989999966, 28.851304490000075 ], [ -81.976488699999948, 28.851843006000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976488700999937, 28.851843006000024 ], [ -81.976791629, 28.851673523000045 ], [ -81.976848905999987, 28.851637327000049 ], [ -81.976901183999985, 28.851595680000059 ], [ -81.976947802999973, 28.851549111000054 ], [ -81.977047017999951, 28.851437938000061 ], [ -81.977107815999943, 28.851364993000061 ], [ -81.977163032999954, 28.851288688000068 ], [ -81.977212430999941, 28.851209350000033 ], [ -81.97744137899997, 28.850811089000047 ], [ -81.977462309999964, 28.850781275000031 ], [ -81.977488672999982, 28.850755010000057 ], [ -81.977519705999953, 28.850733054000045 ], [ -81.977554510999937, 28.850716041000055 ], [ -81.977592087999938, 28.850704461000078 ], [ -81.977631349999967, 28.850698651000073 ], [ -81.977671160999989, 28.850698776000058 ], [ -81.977710372, 28.850704835000045 ], [ -81.977747853999972, 28.850716650000038 ], [ -81.977782521999984, 28.850733883000032 ], [ -81.977813374999982, 28.850756034000028 ], [ -81.978247231999944, 28.851125804000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978247231999944, 28.851125804000048 ], [ -81.979288597999982, 28.85201332400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979288597999982, 28.85201332400004 ], [ -81.979559123999934, 28.852243882000039 ], [ -81.979612872999951, 28.852285656000049 ], [ -81.979670745999954, 28.852322915000059 ], [ -81.979732254999988, 28.852355344000046 ], [ -81.979796884999985, 28.852382670000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979796884999985, 28.852382670000054 ], [ -81.97987044599995, 28.852406429000041 ], [ -81.979946337999934, 28.852423578000071 ], [ -81.980612408999946, 28.852543097000023 ], [ -81.980689695999956, 28.852559563000057 ], [ -81.980765416999986, 28.852580931000034 ], [ -81.980839174999971, 28.852607087000024 ], [ -81.980910578999953, 28.852637893000065 ], [ -81.980979251999941, 28.852673186000061 ], [ -81.981434612999976, 28.852927200000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981434612999976, 28.852927200000067 ], [ -81.981909419999965, 28.853192056000069 ], [ -81.982029475, 28.85325498900005 ], [ -81.98215330499994, 28.85331196900006 ], [ -81.982280532999937, 28.853362822000065 ], [ -81.982410762999962, 28.853407390000029 ], [ -81.982543599999985, 28.853445538000074 ], [ -81.982678631999988, 28.853477149000071 ], [ -81.98281544699995, 28.853502124000045 ], [ -81.982953623999947, 28.853520386000071 ], [ -81.983092736999936, 28.853531881000038 ], [ -81.983458842999937, 28.853553143000056 ], [ -81.983466717999988, 28.853553588000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983466717999988, 28.853553588000068 ], [ -81.98359835399998, 28.853557485000067 ], [ -81.983730025999989, 28.853554702000054 ], [ -81.983861296999976, 28.853545251000071 ], [ -81.983991733999972, 28.85352916100004 ], [ -81.984120900999983, 28.853506486000072 ], [ -81.984154211999964, 28.853497411000035 ], [ -81.984185621999984, 28.853484083000069 ], [ -81.98421443999996, 28.853466801000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98421443999996, 28.853466801000025 ], [ -81.984243689999971, 28.853442393000023 ], [ -81.984267756999941, 28.85341393300007 ], [ -81.984285925999984, 28.853382263000071 ], [ -81.98429766299995, 28.853348319000077 ], [ -81.984302617999958, 28.853313108000066 ], [ -81.984300646999941, 28.853277670000068 ], [ -81.984291804999941, 28.853243053000028 ], [ -81.984145522999938, 28.85283723200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984145522999938, 28.85283723200007 ], [ -81.984126763999939, 28.852785190000077 ], [ -81.984079847999965, 28.852643745000023 ], [ -81.984040426999968, 28.852500537000026 ], [ -81.984008585999959, 28.852355875000057 ], [ -81.983984392999957, 28.852210070000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983984392999957, 28.852210070000069 ], [ -81.983969984999987, 28.852086582000027 ], [ -81.983961062999981, 28.851962693000075 ], [ -81.983957643999986, 28.851838592000036 ], [ -81.983959727999945, 28.851714467000079 ], [ -81.983967315999962, 28.851590509000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982532356999968, 28.851259282000058 ], [ -81.982637636999982, 28.851269845000047 ], [ -81.982694814999945, 28.85127988000005 ], [ -81.982750980999981, 28.85129364200003 ], [ -81.982805825999947, 28.851311054000064 ], [ -81.983079122999982, 28.851408115000027 ], [ -81.983222056999978, 28.851455152000028 ], [ -81.983367548, 28.851495661000058 ], [ -81.983515212999976, 28.85152953100004 ], [ -81.983664659999988, 28.851556672000072 ], [ -81.983815493999941, 28.851577016000078 ], [ -81.983967315999962, 28.851590507000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983967315999962, 28.851590507000026 ], [ -81.983971794999945, 28.851590800000054 ], [ -81.984453325999937, 28.851621955000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984825812999986, 28.855416087000037 ], [ -81.984873450999942, 28.855179298000053 ], [ -81.984895646999973, 28.855055968000045 ], [ -81.98491273999997, 28.854932011000074 ], [ -81.984924708999984, 28.854807588000028 ], [ -81.984931536999966, 28.85468286400004 ], [ -81.984946131999948, 28.854254671000035 ], [ -81.984947682999973, 28.854127621000032 ], [ -81.984943677999979, 28.854000614000029 ], [ -81.98493412299996, 28.853873837000037 ], [ -81.984919030999947, 28.85374747700007 ], [ -81.984898426999962, 28.853621722000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984898426999962, 28.853621722000071 ], [ -81.984874054999977, 28.853504208000061 ], [ -81.984844866999936, 28.853387549000047 ], [ -81.984810904999961, 28.853271896000024 ], [ -81.984772207999981, 28.853157400000043 ], [ -81.984726801999955, 28.853031435000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984726801999955, 28.853031435000048 ], [ -81.984591261999981, 28.852655414000026 ], [ -81.984549687999959, 28.852529789000073 ], [ -81.984514948999959, 28.85240256700007 ], [ -81.984487122999951, 28.852274033000072 ], [ -81.984466269999984, 28.852144480000049 ], [ -81.984452442999952, 28.852014200000042 ], [ -81.984445667999978, 28.851883490000034 ], [ -81.984445962999985, 28.851752641000076 ], [ -81.984453325999937, 28.851621955000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984453325999937, 28.851621955000041 ], [ -81.984468084999946, 28.851489241000024 ], [ -81.984490134999987, 28.851357312000061 ], [ -81.984519420999959, 28.851226480000037 ], [ -81.984555876999934, 28.851097051000067 ], [ -81.984645576999981, 28.850808696000058 ], [ -81.984694059999981, 28.85064495000006 ], [ -81.984737954999957, 28.850480202000028 ], [ -81.984777228999974, 28.850314555000068 ], [ -81.984851940999988, 28.849978840000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984851940999988, 28.849978840000063 ], [ -81.984885366999947, 28.849828642000034 ], [ -81.984915128999944, 28.849705594000056 ], [ -81.984949441999959, 28.849583468000048 ], [ -81.984988267999938, 28.849462394000057 ], [ -81.985031564999986, 28.84934250200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986856604999957, 28.855078037000055 ], [ -81.986483233999934, 28.855342859000075 ], [ -81.986450971999943, 28.855362079000031 ], [ -81.98641553899995, 28.855376329000023 ], [ -81.986377912999956, 28.855385213000034 ], [ -81.98633913499998, 28.855388485000049 ], [ -81.986300277999987, 28.855386056000043 ], [ -81.986262414999942, 28.855377994000037 ], [ -81.98622659199998, 28.855364519000034 ], [ -81.986193800999956, 28.855346004000069 ], [ -81.986164946999963, 28.855322963000049 ], [ -81.986140828999964, 28.855296031000023 ], [ -81.986074594999934, 28.855203370000027 ], [ -81.986013209999953, 28.85510815300006 ], [ -81.985935894999955, 28.854981614000053 ], [ -81.985895081999956, 28.854911082000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985895081999956, 28.854911082000058 ], [ -81.985853654999971, 28.854830231000051 ], [ -81.985816875999944, 28.854747656000029 ], [ -81.985598516999971, 28.854218782000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985598516999971, 28.854218782000032 ], [ -81.985494438999979, 28.853966703000026 ], [ -81.985459772999945, 28.853872251000041 ], [ -81.985432934999949, 28.85377584500003 ], [ -81.985414066999965, 28.853677985000047 ], [ -81.985396787999946, 28.853563450000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985598516999971, 28.854218782000032 ], [ -81.985714688999963, 28.854181605000065 ], [ -81.985772934999943, 28.854166052000039 ], [ -81.98583274899994, 28.854156132000071 ], [ -81.986324061999937, 28.854098681000039 ], [ -81.986389979999956, 28.854092140000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986389979999956, 28.854092140000034 ], [ -81.986502065999957, 28.854086321000068 ], [ -81.986614343999975, 28.85408712900005 ], [ -81.98672630599998, 28.854094560000078 ], [ -81.986837451999975, 28.854108580000059 ], [ -81.987198434999982, 28.854165045000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987198434999982, 28.854165045000059 ], [ -81.987213552999947, 28.85416740900007 ], [ -81.987265478999973, 28.854172407000078 ], [ -81.987317699999949, 28.854171259000054 ], [ -81.98736927899995, 28.854163985000071 ], [ -81.987419293999949, 28.85415071500006 ], [ -81.98746684799994, 28.854131687000063 ], [ -81.987791509999965, 28.853977936000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988077199999964, 28.85571961900007 ], [ -81.98880784399995, 28.855895083000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987371180999958, 28.855476533000058 ], [ -81.987470220999967, 28.855526675000078 ], [ -81.987572333999935, 28.855571788000077 ], [ -81.987677190999989, 28.855611723000038 ], [ -81.987784454999939, 28.855646355000033 ], [ -81.987893779, 28.855675570000074 ], [ -81.988077199999964, 28.85571961900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986389979999956, 28.854092140000034 ], [ -81.986413408999965, 28.854247423000061 ], [ -81.986430416999951, 28.854335611000067 ], [ -81.986454616999936, 28.854422485000043 ], [ -81.986485880999965, 28.85450759400004 ], [ -81.986524045999943, 28.854590493000046 ], [ -81.986568912999985, 28.854670749000036 ], [ -81.986651486999961, 28.854805894000037 ], [ -81.986713468999938, 28.854900259000033 ], [ -81.98678192899996, 28.85499108700003 ], [ -81.986856604999957, 28.855078037000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986856604999957, 28.855078037000055 ], [ -81.986931125999945, 28.855154875000039 ], [ -81.987010502999965, 28.855227848000027 ], [ -81.987094476999971, 28.855296717000044 ], [ -81.987182774999951, 28.855361259000063 ], [ -81.987275108999938, 28.85542126200005 ], [ -81.987371180999958, 28.855476533000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985396787999946, 28.853563450000024 ], [ -81.986228635999964, 28.853466180000055 ], [ -81.98636086199997, 28.853453990000048 ], [ -81.986493651999979, 28.853448267000033 ], [ -81.986626598999976, 28.853449028000057 ], [ -81.986759292999977, 28.853456272000074 ], [ -81.986891327999956, 28.853469974000063 ], [ -81.987039662999962, 28.853489050000064 ], [ -81.98712355899994, 28.853498512000044 ], [ -81.987207780999938, 28.853505367000025 ], [ -81.987269866999952, 28.853512527000078 ], [ -81.987330663999956, 28.85352572000005 ], [ -81.987389418999953, 28.853544782000029 ], [ -81.987445401999935, 28.853569478000054 ], [ -81.987497917999974, 28.85359949900004 ], [ -81.987546316999953, 28.853634476000025 ], [ -81.987589998999965, 28.85367397300007 ], [ -81.987628423, 28.853717500000073 ], [ -81.987661110999966, 28.853764520000027 ], [ -81.987791509999965, 28.853977936000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984996516999956, 28.853610253000056 ], [ -81.984996581999951, 28.853610245000027 ], [ -81.985396787999946, 28.853563450000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987791509999965, 28.853977936000035 ], [ -81.987928027999942, 28.85420136700003 ], [ -81.987962139999979, 28.854250190000073 ], [ -81.988002432999963, 28.854295215000036 ], [ -81.988048366999976, 28.854335836000075 ], [ -81.988099327999976, 28.854371511000068 ], [ -81.988154631999976, 28.854401761000076 ], [ -81.988213535999989, 28.854426181000065 ], [ -81.988275250999948, 28.854444441000055 ], [ -81.98898238299995, 28.854614260000062 ], [ -81.98899488099994, 28.854617595000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98899488099994, 28.854617595000036 ], [ -81.989031618999945, 28.854631557000062 ], [ -81.989065121999943, 28.854650820000074 ], [ -81.989094412999975, 28.85467482200005 ], [ -81.989118637, 28.854702860000032 ], [ -81.989137088999939, 28.854734119000057 ], [ -81.989149230999942, 28.854767687000049 ], [ -81.989154704999976, 28.854802583000037 ], [ -81.989153357999953, 28.85483779100008 ], [ -81.98914522299998, 28.854872284000066 ], [ -81.989006432999986, 28.855281405000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98880784399995, 28.855895083000064 ], [ -81.988777674999938, 28.856026151000037 ], [ -81.988753564999968, 28.856158188000052 ], [ -81.988735548999955, 28.856290976000025 ], [ -81.988709464999943, 28.856560349000063 ], [ -81.98867888999996, 28.856762721000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989006432999986, 28.855281405000028 ], [ -81.988874112999952, 28.855671457000028 ], [ -81.988838751999936, 28.855782759000078 ], [ -81.98880784399995, 28.855895083000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995131911999977, 28.860092078000037 ], [ -81.996575256999961, 28.860477118000063 ], [ -81.996595028999934, 28.860483941000041 ], [ -81.996613310999976, 28.860493451000025 ], [ -81.996629825999946, 28.860506569000052 ], [ -81.996642841999972, 28.860520321000024 ], [ -81.996653255999945, 28.860535791000075 ], [ -81.996663017999936, 28.860552615000074 ], [ -81.996668223999961, 28.860569596000062 ], [ -81.996670175999952, 28.860587358000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994446875999984, 28.859898767000061 ], [ -81.994647748999967, 28.859960167000054 ], [ -81.994739396999989, 28.859987602000047 ], [ -81.994831731999966, 28.860013188000039 ], [ -81.995131911999977, 28.860092078000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995715907999966, 28.859291350000035 ], [ -81.995763454999974, 28.859324420000064 ], [ -81.995806306999953, 28.859351453000045 ], [ -81.995851847999973, 28.85937483500004 ], [ -81.995899675999965, 28.859394360000067 ], [ -81.995949368999959, 28.859409855000024 ], [ -81.996950046999984, 28.859676120000074 ], [ -81.996988938999948, 28.85968336600007 ], [ -81.99702866399997, 28.859684720000075 ], [ -81.997068076999938, 28.859680143000048 ], [ -81.997106042999974, 28.859669766000025 ], [ -81.997141469999974, 28.859653890000061 ], [ -81.997173337999982, 28.859632967000039 ], [ -81.997200728999985, 28.859607605000065 ], [ -81.997222857999986, 28.859578531000068 ], [ -81.997239082999954, 28.859546582000064 ], [ -81.997414216999971, 28.859104381000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997677991999979, 28.858438367000076 ], [ -81.997847810999986, 28.858009580000044 ], [ -81.997866094999949, 28.857952690000047 ], [ -81.997876543999951, 28.857894288000068 ], [ -81.997879009999963, 28.857835206000061 ], [ -81.997873456999969, 28.857776286000046 ], [ -81.997859964999975, 28.857718369000054 ], [ -81.997838726999987, 28.857662280000056 ], [ -81.997810043999948, 28.857608822000032 ], [ -81.99770603099995, 28.857425961000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997414216999971, 28.859104381000066 ], [ -81.997677991999979, 28.858438367000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995715907999966, 28.859291350000035 ], [ -81.996079870999949, 28.858885814000075 ], [ -81.996107235999943, 28.858860163000031 ], [ -81.99613915599997, 28.858838983000055 ], [ -81.996174702999951, 28.858822886000041 ], [ -81.996212837999963, 28.858812342000078 ], [ -81.996252455, 28.858807658000046 ], [ -81.996292398999969, 28.858808972000077 ], [ -81.996331508999958, 28.858816242000046 ], [ -81.997414216999971, 28.859104381000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995428587999982, 28.85972500400004 ], [ -81.995469143999969, 28.859621832000073 ], [ -81.995486745999983, 28.859578085000066 ], [ -81.995508924999967, 28.859535981000079 ], [ -81.995535484999948, 28.859495889000073 ], [ -81.995566192999945, 28.859458165000035 ], [ -81.995715907999966, 28.859291350000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990698663999979, 28.858867602000032 ], [ -81.990829098999939, 28.858902798000031 ], [ -81.990974293999955, 28.858951894000029 ], [ -81.991122566999934, 28.858998602000042 ], [ -81.991223921999961, 28.859020784000052 ], [ -81.991296319999947, 28.859034755000039 ], [ -81.991412300999968, 28.859059880000075 ], [ -81.991526675999978, 28.859090175000063 ], [ -81.991639149999969, 28.859125563000077 ], [ -81.991749427999935, 28.859165949000044 ], [ -81.991857226999969, 28.859211230000028 ], [ -81.991962261999959, 28.859261288000027 ], [ -81.992078804999949, 28.859327844000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992078804999949, 28.859327844000063 ], [ -81.992152565999959, 28.859369866000065 ], [ -81.992399877999958, 28.859523435000028 ], [ -81.992453904999934, 28.859551913000075 ], [ -81.992506577999961, 28.859574679000048 ], [ -81.992561657999943, 28.859592488000033 ], [ -81.992638897999939, 28.859613506000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992733548, 28.863540126000032 ], [ -81.992613677999941, 28.863640875000044 ], [ -81.992582480999943, 28.863662012000077 ], [ -81.992547700999978, 28.863678252000057 ], [ -81.992510326999934, 28.863689140000076 ], [ -81.992471407999972, 28.863694363000036 ], [ -81.991637339999954, 28.863743788000079 ], [ -81.991567116999988, 28.863746205000041 ], [ -81.991496849999976, 28.863745145000053 ], [ -81.991190895999978, 28.86373294200007 ], [ -81.991035561999979, 28.863730150000038 ], [ -81.990981120999948, 28.863730363000059 ], [ -81.990948409999987, 28.863723403000051 ], [ -81.990908056999956, 28.863711941000076 ], [ -81.990879418999953, 28.863699334000046 ], [ -81.990844273999983, 28.863677559000052 ], [ -81.99081954199994, 28.863658076000036 ], [ -81.990794810999944, 28.863634010000055 ], [ -81.990773985999965, 28.863604214000077 ], [ -81.990762272999973, 28.863570982000056 ], [ -81.990751861999968, 28.863535457000069 ], [ -81.990715191999982, 28.863093344000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990635212999962, 28.862463425000044 ], [ -81.990511875999971, 28.861844392000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990511875999971, 28.861844392000023 ], [ -81.990353495999955, 28.861046761000068 ], [ -81.990346638999938, 28.860998158000029 ], [ -81.990345270999967, 28.860949196000035 ], [ -81.990349404999961, 28.860900355000069 ], [ -81.990359001999934, 28.860852112000032 ], [ -81.990373965999936, 28.860804941000026 ], [ -81.990548562999948, 28.860349382000038 ], [ -81.990563534999978, 28.860323027000049 ], [ -81.99059022299997, 28.86029495300005 ], [ -81.990613654999947, 28.860273182000071 ], [ -81.990641643999936, 28.860254276000035 ], [ -81.990674838999951, 28.860237090000055 ], [ -81.990709985999956, 28.860225060000062 ], [ -81.990747736999936, 28.860217614000078 ], [ -81.990785485999936, 28.860214179000025 ], [ -81.990824070999963, 28.860214294000059 ], [ -81.990956619999963, 28.860242650000032 ], [ -81.991033070999947, 28.860261619000028 ], [ -81.991107755999963, 28.86028542300005 ], [ -81.99118028099997, 28.860313936000068 ], [ -81.991250262999984, 28.860347009000066 ], [ -81.991453211999954, 28.860455577000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991453211999954, 28.860455577000039 ], [ -81.991812029999949, 28.86063611000003 ], [ -81.991861168999947, 28.86065861700007 ], [ -81.991912585999955, 28.860676758000068 ], [ -81.991965777999951, 28.860690358000056 ], [ -81.992020233999938, 28.860699285000067 ], [ -81.992075421999971, 28.860703453000042 ], [ -81.992224874999977, 28.860708230000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980877222999936, 28.908505813000033 ], [ -81.981007854999973, 28.908460553000054 ], [ -81.981555373999981, 28.908230134000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98115764399995, 28.909058387000073 ], [ -81.981331906999969, 28.908950569000069 ], [ -81.981483825999987, 28.908868986000073 ], [ -81.981595765999941, 28.908815537000066 ], [ -81.981770064999978, 28.90876068700004 ], [ -81.981827824999982, 28.908752781000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98115764399995, 28.909058387000073 ], [ -81.980877222999936, 28.908505813000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980552733999957, 28.909474198000055 ], [ -81.980564246999961, 28.909470517000045 ], [ -81.980619218999948, 28.909444729000029 ], [ -81.980697021999958, 28.909399304000033 ], [ -81.980837754999982, 28.909288174000039 ], [ -81.981015268999954, 28.909151721000057 ], [ -81.981143203999977, 28.909067321000066 ], [ -81.98115764399995, 28.909058387000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980197374999989, 28.908736834000024 ], [ -81.980269099999987, 28.908716298000058 ], [ -81.980489154999987, 28.908640267000067 ], [ -81.980877222999936, 28.908505813000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980552733999957, 28.909474198000055 ], [ -81.980197374999989, 28.908736834000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97966287099996, 28.908874621000052 ], [ -81.979644400999973, 28.908777003000068 ], [ -81.979595866999944, 28.908590220000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97966287099996, 28.908874621000052 ], [ -81.979931161999957, 28.908813056000042 ], [ -81.980197374999989, 28.908736834000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979678752999973, 28.90938335900006 ], [ -81.979766403999975, 28.909396353000034 ], [ -81.979879928999935, 28.909413255000061 ], [ -81.979999851999935, 28.909428748000039 ], [ -81.980121369999949, 28.90945690500007 ], [ -81.980226897999955, 28.909489282000038 ], [ -81.980293066999934, 28.909502721000024 ], [ -81.980353215999969, 28.909508998000035 ], [ -81.980398114999957, 28.909508110000047 ], [ -81.980456748999984, 28.909499520000054 ], [ -81.980510499, 28.90948770600005 ], [ -81.980552733999957, 28.909474198000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979678752999973, 28.90938335900006 ], [ -81.979689969999981, 28.909311309000032 ], [ -81.979687498999965, 28.909160058000055 ], [ -81.979683922999982, 28.909046093000029 ], [ -81.979667761999963, 28.908900469000059 ], [ -81.97966287099996, 28.908874621000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979250081999965, 28.909337182000058 ], [ -81.979430621999938, 28.909349872000064 ], [ -81.979604908999988, 28.909372411000049 ], [ -81.979678752999973, 28.90938335900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979250081999965, 28.909337182000058 ], [ -81.979251463999958, 28.909249082000031 ], [ -81.979242935999935, 28.909141600000055 ], [ -81.979221235999944, 28.90901382100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979221235999944, 28.90901382100003 ], [ -81.978985962999957, 28.909031740000046 ], [ -81.978899615999978, 28.909041223000031 ], [ -81.978798876999974, 28.909050704000038 ], [ -81.978723321999951, 28.909061773000076 ], [ -81.978653161999944, 28.909083921000047 ], [ -81.978611778999948, 28.909123486000055 ], [ -81.978593780999972, 28.909174134000068 ], [ -81.978591970999958, 28.909226368000077 ], [ -81.978608150999946, 28.909277021000037 ], [ -81.978644118999966, 28.909319764000031 ], [ -81.978699878999976, 28.909343516000035 ], [ -81.978824001999953, 28.909337203000064 ], [ -81.979022739999948, 28.909330560000058 ], [ -81.979110687999935, 28.909331648000034 ], [ -81.979209960999981, 28.909334362000038 ], [ -81.979250081999965, 28.909337182000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006149572999959, 28.923743308000041 ], [ -82.00622610399995, 28.923789968000051 ], [ -82.006320820999974, 28.923840626000072 ], [ -82.006376892999981, 28.923863954000069 ], [ -82.006433722999986, 28.923885951000045 ], [ -82.006489795999983, 28.923907280000037 ], [ -82.006567840999935, 28.923931275000029 ], [ -82.006712182999934, 28.923969233000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006712182999934, 28.923969233000037 ], [ -82.006714837999937, 28.923969931000045 ], [ -82.006829253999967, 28.923993258000053 ], [ -82.006914976999951, 28.924013904000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006712182999934, 28.923969233000037 ], [ -82.00665582299996, 28.924198353000065 ], [ -82.006658381999955, 28.924214859000074 ], [ -82.006666138999947, 28.924230759000068 ], [ -82.006679400999985, 28.924251498000046 ], [ -82.006701502999988, 28.924269644000049 ], [ -82.006726549999939, 28.924281310000026 ], [ -82.006756017999976, 28.924285196000028 ], [ -82.00678490699994, 28.924285686000076 ], [ -82.00681481099997, 28.924277590000031 ], [ -82.006837814999983, 28.924263421000035 ], [ -82.006851782999945, 28.924246304000064 ], [ -82.006914976999951, 28.924013904000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007786256999964, 28.924254861000065 ], [ -82.007812024999964, 28.924266518000024 ], [ -82.007866582999952, 28.924294512000074 ], [ -82.007910531999983, 28.924319174000061 ], [ -82.008001461999982, 28.924377831000072 ], [ -82.008093149999979, 28.924445822000052 ], [ -82.008157559999972, 28.924503146000063 ], [ -82.008180292999953, 28.924527144000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007643458999951, 28.924194229000079 ], [ -82.007705941999973, 28.92421852700005 ], [ -82.007786256999964, 28.924254861000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006914976999951, 28.924013904000049 ], [ -82.006935121999959, 28.924018756000066 ], [ -82.00710307099996, 28.924056074000077 ], [ -82.007289875999959, 28.924098058000027 ], [ -82.007461131999946, 28.924137901000051 ], [ -82.007547397999986, 28.92416025600005 ], [ -82.007572807999964, 28.924169243000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007669953999937, 28.889270038000063 ], [ -82.007845127999985, 28.889171429000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007845127999985, 28.889171429000044 ], [ -82.007992960999957, 28.889088209000079 ], [ -82.008021577999955, 28.889074884000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007845127999985, 28.889171429000044 ], [ -82.007879928999955, 28.889223715000071 ], [ -82.007898661999945, 28.889251608000052 ], [ -82.007921712999973, 28.889279500000043 ], [ -82.007950527999981, 28.889301053000054 ], [ -82.007986545999984, 28.889309926000067 ], [ -82.00801680099994, 28.889312460000042 ], [ -82.008042731999979, 28.889306119000025 ], [ -82.008070102999966, 28.889293438000038 ], [ -82.008087389999957, 28.889279490000035 ], [ -82.008097473999953, 28.88925286500006 ], [ -82.00810179299998, 28.889223702000038 ], [ -82.008093145999965, 28.889193272000057 ], [ -82.008081618999938, 28.889166647000025 ], [ -82.008062887999984, 28.889141291000044 ], [ -82.008021577999955, 28.889074884000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008411199999955, 28.888900822000039 ], [ -82.008394216999989, 28.888838242000077 ], [ -82.008379808999962, 28.888811616000055 ], [ -82.008369722999987, 28.888796403000072 ], [ -82.008356755999955, 28.888782456000058 ], [ -82.008342346999939, 28.888765975000069 ], [ -82.008332260999964, 28.888746957000023 ], [ -82.008327937999979, 28.888724135000075 ], [ -82.008329376999939, 28.88870511600004 ], [ -82.00833513799995, 28.888681025000039 ], [ -82.008349541999962, 28.888655667000023 ], [ -82.008369709999954, 28.888642986000036 ], [ -82.008391318999941, 28.88863284200005 ], [ -82.008420131999969, 28.888627769000038 ], [ -82.008444623999935, 28.888627768000049 ], [ -82.008469114999968, 28.888632837000046 ], [ -82.008492166999986, 28.888644246000069 ], [ -82.008508014999961, 28.888659461000032 ], [ -82.008519540999941, 28.888674675000061 ], [ -82.008528186999968, 28.888694960000066 ], [ -82.008535392999988, 28.888719050000077 ], [ -82.008538276999957, 28.888753284000074 ], [ -82.00855667899998, 28.888852461000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008704247999958, 28.888813718000051 ], [ -82.008716448999962, 28.88887647100006 ], [ -82.008724135999955, 28.888913661000061 ], [ -82.008731821999959, 28.88895085200005 ], [ -82.008739507999962, 28.888974519000044 ], [ -82.008758717999967, 28.888999876000071 ], [ -82.00878561199994, 28.889018471000043 ], [ -82.00881250599997, 28.889023540000039 ], [ -82.008845159999964, 28.889025228000037 ], [ -82.008877814999948, 28.889016774000027 ], [ -82.008900863999941, 28.889001557000029 ], [ -82.008923911999943, 28.888976198000023 ], [ -82.008931592999943, 28.888930553000023 ], [ -82.008923904999961, 28.888893362000033 ], [ -82.008905222999942, 28.888782604000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006235070999935, 28.878236378000054 ], [ -82.006235063999952, 28.878236356000059 ], [ -82.006092273999968, 28.877760898000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005727988999979, 28.877859977000071 ], [ -82.006092273999968, 28.877760898000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003633734999937, 28.87704954000003 ], [ -82.003437625999936, 28.877315838000072 ], [ -82.003413473999956, 28.877349987000059 ], [ -82.003385793999939, 28.877392925000038 ], [ -82.003360332999989, 28.877436913000054 ], [ -82.003337137999949, 28.877481862000025 ], [ -82.003298853, 28.877571266000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006092273999968, 28.877760898000076 ], [ -82.005951765999953, 28.877293026000075 ], [ -82.005940138999961, 28.877258084000061 ], [ -82.005925407999939, 28.87722139400006 ], [ -82.005908342999987, 28.877185495000049 ], [ -82.005888997999989, 28.877150505000031 ], [ -82.005867433999981, 28.877116533000049 ], [ -82.005843719999973, 28.877083690000063 ], [ -82.005817936999961, 28.877052080000055 ], [ -82.005790158999957, 28.877021804000037 ], [ -82.005760480999982, 28.876992960000052 ], [ -82.005728997999938, 28.876965641000027 ], [ -82.005707517999952, 28.876948669000058 ], [ -82.004620497999952, 28.876121244000046 ], [ -82.004618807999975, 28.876119968000069 ], [ -82.004597014999945, 28.876105076000044 ], [ -82.004573773999937, 28.876091991000067 ], [ -82.004549276999967, 28.876080819000038 ], [ -82.004523727999981, 28.876071655000032 ], [ -82.004497336999975, 28.876064574000054 ], [ -82.004470324999943, 28.876059633000068 ], [ -82.004442912999934, 28.876056877000053 ], [ -82.004415331999951, 28.876056325000036 ], [ -82.004387805999954, 28.876057983000067 ], [ -82.004360565999946, 28.876061836000076 ], [ -82.004333837, 28.876067856000077 ], [ -82.004307840999957, 28.876075988000025 ], [ -82.00428279199997, 28.876086169000075 ], [ -82.004258899999968, 28.876098312000067 ], [ -82.004236359999936, 28.876112316000047 ], [ -82.004215360999979, 28.876128067000025 ], [ -82.00419607699996, 28.876145433000033 ], [ -82.004178665999973, 28.87616427200004 ], [ -82.00416327399995, 28.876184425000076 ], [ -82.00415002699998, 28.87620572700007 ], [ -82.004150010999979, 28.876205756000047 ], [ -82.003846634999945, 28.876751352000042 ], [ -82.003837484999963, 28.876767280000024 ], [ -82.003815924999969, 28.876801254000043 ], [ -82.003800505999948, 28.876823074000072 ], [ -82.003732752999952, 28.87691508000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003732752999952, 28.87691508000006 ], [ -82.003633734999937, 28.87704954000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003732752999952, 28.87691508000006 ], [ -82.003655582999954, 28.876860759000067 ], [ -82.003629615999955, 28.876842258000067 ], [ -82.003598700999987, 28.876822668000045 ], [ -82.003569025, 28.876816139000027 ], [ -82.003543057999934, 28.876813964000064 ], [ -82.00351461799994, 28.876821582000048 ], [ -82.003491124999982, 28.876837908000027 ], [ -82.00347875999995, 28.876849881000055 ], [ -82.003466395999965, 28.876874913000051 ], [ -82.003461450999964, 28.87690103400007 ], [ -82.003465159999962, 28.876927155000033 ], [ -82.003475052999988, 28.876947834000077 ], [ -82.003496073999941, 28.876966335000077 ], [ -82.003531933999966, 28.876985925000042 ], [ -82.003562848999934, 28.877003338000065 ], [ -82.003633734999937, 28.87704954000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984851940999988, 28.849978840000063 ], [ -81.984916777999956, 28.849993400000074 ], [ -81.984952580999959, 28.850000654000041 ], [ -81.984987770999965, 28.850009949000025 ], [ -81.985219522999955, 28.850078513000028 ], [ -81.985310968999954, 28.850108309000063 ], [ -81.985400198999969, 28.850142925000057 ], [ -81.985486886, 28.85018223000003 ], [ -81.985570714999938, 28.850226082000063 ], [ -81.98565137199995, 28.850274322000075 ], [ -81.985728566999967, 28.850326770000038 ], [ -81.985894298999938, 28.85044283600007 ], [ -81.986064061999969, 28.850554296000041 ], [ -81.986237795999955, 28.85066104200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986237795999955, 28.85066104200007 ], [ -81.986369191999984, 28.850737235000054 ], [ -81.986502554999959, 28.850810727000066 ], [ -81.986697675999949, 28.850909691000027 ], [ -81.986794866999958, 28.850972924000075 ], [ -81.986840534999942, 28.851012737000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988181468999983, 28.850946875000034 ], [ -81.988203680999959, 28.850960669000074 ], [ -81.988246831999959, 28.850990030000048 ], [ -81.988286906999974, 28.851022592000049 ], [ -81.988323606999984, 28.851058107000028 ], [ -81.988356648999968, 28.851096305000056 ], [ -81.988392285999964, 28.851136816000064 ], [ -81.988432486999955, 28.851173867000057 ], [ -81.988476823999974, 28.851207060000036 ], [ -81.988524819999952, 28.851236042000039 ], [ -81.98857596299996, 28.851260500000024 ], [ -81.988783804999969, 28.851347953000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985031564999986, 28.84934250200007 ], [ -81.985452964, 28.84946717300005 ], [ -81.985493360999953, 28.849479487000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986105344999942, 28.849767625000027 ], [ -81.986193568999965, 28.849828362000039 ], [ -81.986359635999975, 28.849944210000046 ], [ -81.986530202999973, 28.850054875000069 ], [ -81.986705058999974, 28.850160224000035 ], [ -81.986883991999946, 28.850260126000023 ], [ -81.987139791999937, 28.850393488000066 ], [ -81.987399450999987, 28.850520938000045 ], [ -81.987662795999938, 28.850642386000061 ], [ -81.987761730999978, 28.850690618000044 ], [ -81.987856441999952, 28.850745025000037 ], [ -81.988181468999983, 28.850946875000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985493360999953, 28.849479487000053 ], [ -81.985601703999976, 28.849516178000044 ], [ -81.985707849999983, 28.849557547000074 ], [ -81.98581153799995, 28.849603496000043 ], [ -81.985912515999985, 28.84965390800005 ], [ -81.986010530999977, 28.849708663000058 ], [ -81.986105344999942, 28.849767625000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988181468999983, 28.850946875000034 ], [ -81.988322815999936, 28.850761168000076 ], [ -81.988380516999939, 28.850689215000045 ], [ -81.988442132999978, 28.850619823000045 ], [ -81.988507514999981, 28.850553156000046 ], [ -81.988576510999962, 28.850489374000063 ], [ -81.988628349999942, 28.850441481000075 ], [ -81.988677512999971, 28.850391449000028 ], [ -81.989288863999946, 28.849738166000066 ], [ -81.989342694999948, 28.849675612000055 ], [ -81.989390557999968, 28.84960940600007 ], [ -81.989432136999937, 28.849539985000035 ], [ -81.989467153999954, 28.849467814000036 ], [ -81.989532546999953, 28.849316206000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989532546999953, 28.849316206000026 ], [ -81.98970554899995, 28.848915114000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986434863999989, 28.849198026000067 ], [ -81.986508535999974, 28.849089617000061 ], [ -81.986587736, 28.848984269000027 ], [ -81.986672293999959, 28.848882201000038 ], [ -81.986776916999986, 28.848770343000069 ], [ -81.986824052999964, 28.848734067000066 ], [ -81.986875009999949, 28.848715383000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986105344999942, 28.849767625000027 ], [ -81.986140577999947, 28.84973145500004 ], [ -81.986171468999942, 28.849692330000039 ], [ -81.98619770199997, 28.849650652000037 ], [ -81.986219005999942, 28.849606850000043 ], [ -81.986265845999981, 28.849501831000055 ], [ -81.986317493999934, 28.849398575000066 ], [ -81.986373864999962, 28.849297250000063 ], [ -81.986434863999989, 28.849198026000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984726801999955, 28.853031435000048 ], [ -81.984853318999967, 28.852996087000065 ], [ -81.984932583999978, 28.852977263000071 ], [ -81.98501341399998, 28.852964618000044 ], [ -81.985205883999981, 28.85294211300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985205883999981, 28.85294211300004 ], [ -81.98613321299996, 28.852833679000071 ], [ -81.986269773999936, 28.852820394000048 ], [ -81.98640686799996, 28.852812408000034 ], [ -81.986544227999957, 28.85280973600004 ], [ -81.986681585999975, 28.85281238400006 ], [ -81.986818681999978, 28.852820347000034 ], [ -81.98695524599998, 28.852833608000026 ], [ -81.987091016999955, 28.852852145000043 ], [ -81.987123665999945, 28.852857250000056 ], [ -81.987161802999935, 28.852860417000045 ], [ -81.987200016999964, 28.852858069000035 ], [ -81.987237285999981, 28.852850268000054 ], [ -81.987272609999934, 28.852837229000045 ], [ -81.987305049999975, 28.852819294000028 ], [ -81.987333738999951, 28.852796944000033 ], [ -81.987447869999983, 28.852696526000045 ], [ -81.987566726999944, 28.852600450000068 ], [ -81.987690093999959, 28.852508886000066 ], [ -81.987817749999977, 28.852422001000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987817749999977, 28.852422001000036 ], [ -81.987920754999948, 28.852357213000062 ], [ -81.988026144999935, 28.852295470000058 ], [ -81.988133805999951, 28.852236843000071 ], [ -81.988189584999986, 28.85220466800007 ], [ -81.988242038999942, 28.852168422000034 ], [ -81.98829079099994, 28.852128367000034 ], [ -81.988335484999936, 28.852084796000042 ], [ -81.988375793999978, 28.852038028000038 ], [ -81.988427722999973, 28.851969207000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988427722999973, 28.851969207000025 ], [ -81.988476610999953, 28.851898414000061 ], [ -81.988522228999955, 28.851825950000034 ], [ -81.988564503999953, 28.851751931000024 ], [ -81.988783804999969, 28.851347953000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989532546999953, 28.849316206000026 ], [ -81.989304993999951, 28.849237085000027 ], [ -81.98907989099996, 28.849152704000062 ], [ -81.988857394999968, 28.849063124000054 ], [ -81.988637661999974, 28.84896840600004 ], [ -81.988420846999986, 28.848868616000061 ], [ -81.98820709499995, 28.848763822000024 ], [ -81.987996559999942, 28.848654100000033 ], [ -81.987874670999986, 28.848585909000064 ], [ -81.98775571699997, 28.848513814000057 ], [ -81.987639855999987, 28.848437914000044 ], [ -81.987527246999946, 28.848358311000027 ], [ -81.987418040999955, 28.848275113000057 ], [ -81.987078230999941, 28.848006441000052 ], [ -81.987037386999987, 28.84797823100007 ], [ -81.986992652999959, 28.847955041000034 ], [ -81.986944821999941, 28.847937280000053 ], [ -81.986894736999943, 28.847925262000047 ], [ -81.986843283999974, 28.847919200000035 ], [ -81.986791370999981, 28.847919200000035 ], [ -81.986739918999945, 28.847925265000072 ], [ -81.986689834999936, 28.847937285000057 ], [ -81.986642003999975, 28.847955048000074 ], [ -81.986597273999962, 28.847978240000032 ], [ -81.986556428999961, 28.84800645100006 ], [ -81.986520198999983, 28.848039183000026 ], [ -81.986219945999949, 28.848349247000044 ], [ -81.986115683999969, 28.848461663000023 ], [ -81.986016928999959, 28.848577869000053 ], [ -81.985923860999947, 28.848697659000038 ], [ -81.985836644999949, 28.848820816000057 ], [ -81.98575544299996, 28.848947119000059 ], [ -81.985680394999974, 28.849076340000067 ], [ -81.985611640999934, 28.849208246000046 ], [ -81.985549302999971, 28.849342602000036 ], [ -81.985493360999953, 28.849479487000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988783804999969, 28.851347953000072 ], [ -81.988829918999954, 28.851263005000078 ], [ -81.988870177999956, 28.851194717000055 ], [ -81.988915449999979, 28.851128908000078 ], [ -81.988965543999939, 28.851065865000066 ], [ -81.989020240999935, 28.851005858000065 ], [ -81.989079299999958, 28.850949150000076 ], [ -81.98949065499994, 28.850579386000049 ], [ -81.989574011999935, 28.850500429000078 ], [ -81.989652571999954, 28.850417748000041 ], [ -81.989726117999965, 28.850331565000033 ], [ -81.989794447999941, 28.85024211700005 ], [ -81.989992437999945, 28.849967718000073 ], [ -81.990044548999947, 28.84988996900006 ], [ -81.990090753999937, 28.849809377000042 ], [ -81.990130852999982, 28.849726290000035 ], [ -81.99014165899996, 28.849694115000034 ], [ -81.990146397999979, 28.849660823000079 ], [ -81.99014494499994, 28.849627295000062 ], [ -81.990137336999965, 28.849594418000038 ], [ -81.990123774999972, 28.849563063000062 ], [ -81.990104617999975, 28.849534057000028 ], [ -81.990080372999955, 28.849508170000036 ], [ -81.990051683, 28.84948608600007 ], [ -81.990019305999965, 28.849468389000037 ], [ -81.989984097999979, 28.849455549000027 ], [ -81.989757300999941, 28.849388442000077 ], [ -81.989532546999953, 28.849316206000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976850232999936, 28.857701285000076 ], [ -81.977075859999957, 28.857689864000065 ], [ -81.977368704999947, 28.857681518000049 ], [ -81.977480467999953, 28.857679429000029 ], [ -81.97763667199996, 28.85767181500006 ], [ -81.977760333999981, 28.85766419600003 ], [ -81.977894724999942, 28.857649383000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979017168999974, 28.857349075000059 ], [ -81.979114804999938, 28.857303253000055 ], [ -81.979342619999954, 28.857188695000048 ], [ -81.979477141999951, 28.857110409000029 ], [ -81.979616003, 28.857024485000068 ], [ -81.979744018999952, 28.856934739000053 ], [ -81.979880713999989, 28.85682971600005 ], [ -81.980041278999977, 28.856707508000056 ], [ -81.98016929399995, 28.856615851000072 ], [ -81.98034286799998, 28.856508924000025 ], [ -81.980516442999942, 28.856407723000075 ], [ -81.98066831999995, 28.856319891000055 ], [ -81.980828874999986, 28.856235878000064 ], [ -81.980978577999963, 28.856165234000059 ], [ -81.981119602999968, 28.856102228000054 ], [ -81.981260627999973, 28.856040652000047 ], [ -81.981407073999947, 28.855985764000025 ], [ -81.981594198999971, 28.855921331000047 ], [ -81.98178945899997, 28.855861673000049 ], [ -81.982068784999967, 28.855792478000069 ], [ -81.982343863999972, 28.855728567000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977894724999942, 28.857649383000023 ], [ -81.977989218999937, 28.857634631000053 ], [ -81.978142170999945, 28.857608872000071 ], [ -81.978272343999947, 28.857584064000037 ], [ -81.978423129999953, 28.857547801000067 ], [ -81.978576085999975, 28.857504853000023 ], [ -81.978698668999982, 28.857467629000041 ], [ -81.978838608999979, 28.857416084000079 ], [ -81.979017168999974, 28.857349075000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982343863999972, 28.855728567000028 ], [ -81.98368587899995, 28.855418154000063 ], [ -81.983800908999967, 28.855394450000063 ], [ -81.983917222999935, 28.855376251000052 ], [ -81.984034483999949, 28.855363609000051 ], [ -81.984152348999942, 28.855356559000029 ], [ -81.98427047399997, 28.855355124000027 ], [ -81.984388515999967, 28.855359306000025 ], [ -81.984506127999964, 28.855369094000025 ], [ -81.984622968999986, 28.855384459000049 ], [ -81.984825812999986, 28.855416087000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984915603, 28.85543189200007 ], [ -81.984915659999956, 28.855431902000078 ], [ -81.984994541999981, 28.855445786000075 ], [ -81.985161621999964, 28.855481999000062 ], [ -81.985326726999972, 28.855524657000046 ], [ -81.985489536999978, 28.855573675000073 ], [ -81.985649735999971, 28.855628962000026 ], [ -81.985807015999967, 28.855690407000054 ], [ -81.985961064999969, 28.855757891000053 ], [ -81.986111588999961, 28.855831286000068 ], [ -81.986258294999971, 28.855910446000053 ], [ -81.986280981999982, 28.855923300000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986280981999982, 28.855923300000029 ], [ -81.98712588799998, 28.856402051000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98712588799998, 28.856402051000032 ], [ -81.988569029999951, 28.857219757000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988569029999951, 28.857219757000053 ], [ -81.988785775999986, 28.857342566000057 ], [ -81.988904958999967, 28.85740626200004 ], [ -81.989027773999965, 28.857464365000055 ], [ -81.98915388599994, 28.857516711000073 ], [ -81.989282943999967, 28.857563159000051 ], [ -81.989414593999982, 28.857603578000067 ], [ -81.989548471999967, 28.857637858000032 ], [ -81.98968421099994, 28.857665904000044 ], [ -81.989821432999975, 28.857687640000051 ], [ -81.989959762999945, 28.857703006000065 ], [ -81.990098817999979, 28.857711958000039 ], [ -81.990238214999977, 28.857714471000065 ], [ -81.990377570999954, 28.857710539000038 ], [ -81.990516498999966, 28.857700174000058 ], [ -81.990637355999979, 28.857691315000068 ], [ -81.990758586999959, 28.857688369000073 ], [ -81.99087981699995, 28.857691341000077 ], [ -81.991000671999984, 28.857700228000056 ], [ -81.991120781999939, 28.857714997000073 ], [ -81.991239777999965, 28.857735605000073 ], [ -81.991357292999965, 28.857761990000029 ], [ -81.991472964999957, 28.857794068000032 ], [ -81.991586439999935, 28.857831743000077 ], [ -81.991747520999979, 28.857892887000048 ], [ -81.991905889999941, 28.857959295000057 ], [ -81.992061325999941, 28.858030874000065 ], [ -81.992213608999975, 28.858107524000047 ], [ -81.992362525999965, 28.858189138000057 ], [ -81.99250786999994, 28.858275602000049 ], [ -81.993233577999945, 28.858724957000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993233577999945, 28.858724957000049 ], [ -81.993900273999941, 28.859145324000053 ], [ -81.994049530999973, 28.859233949000043 ], [ -81.994187507999982, 28.85930882200006 ], [ -81.994328665999944, 28.85937640700007 ], [ -81.994491375999985, 28.859446125000034 ], [ -81.994618794999951, 28.859492190000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002065165999966, 28.861828242000058 ], [ -82.002219446999959, 28.861851175000027 ], [ -82.00237483899997, 28.861867279000023 ], [ -82.002530952999962, 28.861876515000063 ], [ -82.002687395999942, 28.861878859000058 ], [ -82.002843774999974, 28.861874304000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002843774999974, 28.861874304000025 ], [ -82.002986208999971, 28.861864126000057 ], [ -82.003127964999976, 28.861848225000074 ], [ -82.003268747999982, 28.861826633000078 ], [ -82.003408260999947, 28.861799397000027 ], [ -82.003546212999936, 28.861766574000058 ], [ -82.003682314999935, 28.86172823000004 ], [ -82.003816283999981, 28.861684448000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003816283999981, 28.861684448000062 ], [ -82.003920895999954, 28.861645893000059 ], [ -82.004023848999964, 28.861604019000026 ], [ -82.004391111999951, 28.861447464000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004391111999951, 28.861447464000037 ], [ -82.00441714599998, 28.861436367000067 ], [ -82.004533719999984, 28.861390087000075 ], [ -82.004652986999986, 28.861349475000054 ], [ -82.004774593999969, 28.861314650000054 ], [ -82.004898179999941, 28.861285719000023 ], [ -82.005023371999982, 28.861262766000038 ], [ -82.005149800999959, 28.861245859000064 ], [ -82.005277089999936, 28.861235049000072 ], [ -82.005404859999942, 28.861230370000044 ], [ -82.005532727999935, 28.861231833000033 ], [ -82.006024191999984, 28.861249271000077 ], [ -82.006207, 28.861253871000031 ], [ -82.006389878999983, 28.861254702000053 ], [ -82.006679141999939, 28.861253033000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006679141999939, 28.861253033000025 ], [ -82.00684702999996, 28.861252064000041 ], [ -82.007001818999981, 28.861247793000075 ], [ -82.007156179999981, 28.861236772000041 ], [ -82.007309729999974, 28.861219031000076 ], [ -82.007462091999969, 28.861194614000055 ], [ -82.007612892999987, 28.861163579000049 ], [ -82.007761759999937, 28.861126004000027 ], [ -82.007908329999964, 28.861081981000041 ], [ -82.008052241999962, 28.861031618000027 ], [ -82.009738122999977, 28.860398571000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009738122999977, 28.860398571000076 ], [ -82.009873137999989, 28.860347872000034 ], [ -82.010024598999962, 28.860294140000065 ], [ -82.010178390999954, 28.860245810000038 ], [ -82.010334264999983, 28.860202962000074 ], [ -82.010491969999975, 28.860165664000078 ], [ -82.010651249999967, 28.860133977000032 ], [ -82.010811849999982, 28.860107953000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010811849999982, 28.860107953000067 ], [ -82.010986752999941, 28.860086225000032 ], [ -82.01116256399996, 28.860071213000026 ], [ -82.011338949999981, 28.860062945000038 ], [ -82.011515576999955, 28.860061435000034 ], [ -82.01238611399998, 28.860070662000055 ], [ -82.012514239999973, 28.860075109000036 ], [ -82.012641898999959, 28.86008571900004 ], [ -82.012768705999974, 28.860102460000064 ], [ -82.01289428399997, 28.860125284000048 ], [ -82.013018253999974, 28.860154120000061 ], [ -82.013140247999957, 28.860188883000035 ], [ -82.013210210999944, 28.860213528000031 ], [ -82.013277698999957, 28.860243043000025 ], [ -82.013342275999946, 28.860277234000023 ], [ -82.013403522999965, 28.860315881000076 ], [ -82.013461043999939, 28.860358736000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013461043999939, 28.860358736000023 ], [ -82.013521442999945, 28.86041220900006 ], [ -82.013576039999975, 28.860470314000054 ], [ -82.013624385999947, 28.860532564000039 ], [ -82.013666071999978, 28.860598439000057 ], [ -82.013700753999956, 28.86066739000006 ], [ -82.013728137999976, 28.860738841000057 ], [ -82.013747997999985, 28.860812194000061 ], [ -82.013760166999987, 28.860886836000077 ], [ -82.013764545999948, 28.860962146000077 ], [ -82.01376109399996, 28.861037492000037 ], [ -82.013749841999982, 28.861112247000051 ], [ -82.013705216999938, 28.861331311000072 ], [ -82.01368808899997, 28.861429242000042 ], [ -82.01367647099994, 28.861527797000065 ], [ -82.013670389999959, 28.861626738000041 ], [ -82.013669860999983, 28.861725820000061 ], [ -82.013674887999969, 28.861824807000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013674887999969, 28.861824807000062 ], [ -82.013685095999961, 28.861920784000063 ], [ -82.01370052599998, 28.862016218000065 ], [ -82.013753132999966, 28.862293677000025 ], [ -82.013776083999971, 28.862397185000077 ], [ -82.013805440999988, 28.86249943200005 ], [ -82.013841112999955, 28.862600110000074 ], [ -82.01388299599995, 28.862698917000046 ], [ -82.014181797999981, 28.863348897000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013454367999941, 28.863081276000059 ], [ -82.01337521499994, 28.862916974000029 ], [ -82.01331933199998, 28.862717309000061 ], [ -82.013286783999945, 28.862580122000054 ], [ -82.013260880999951, 28.862441841000077 ], [ -82.013241669999957, 28.862302717000034 ], [ -82.013192181999955, 28.861867327000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013192181999955, 28.861867327000027 ], [ -82.013123887999939, 28.861266487000023 ], [ -82.013117615999988, 28.861189607000028 ], [ -82.013116246999971, 28.861112537000054 ], [ -82.013119784999958, 28.861035522000066 ], [ -82.013128219999942, 28.860958801000038 ], [ -82.013141521999955, 28.860865239000077 ], [ -82.013140842999974, 28.860799369000063 ], [ -82.013111099999946, 28.860695862000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015950688999965, 28.861778270000059 ], [ -82.016039408999973, 28.861468138000077 ], [ -82.016052145999936, 28.861413421000066 ], [ -82.016059797999958, 28.861357975000033 ], [ -82.016062313999953, 28.861302164000051 ], [ -82.016061940999975, 28.860975058000065 ], [ -82.016058415999964, 28.860875546000045 ], [ -82.016048080999951, 28.860776403000045 ], [ -82.016030971999953, 28.860677989000067 ], [ -82.016007152999975, 28.860580661000029 ], [ -82.015976707999982, 28.860484776000078 ], [ -82.015944117999936, 28.860404436000067 ], [ -82.015904284999976, 28.860326668000027 ], [ -82.015857469999958, 28.860251972000071 ], [ -82.015803974999983, 28.860180840000055 ], [ -82.015744148999943, 28.860113727000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015744148999943, 28.860113727000055 ], [ -82.015693260999967, 28.860064381000029 ], [ -82.015638945999967, 28.860017953000067 ], [ -82.015581420999979, 28.859974623000028 ], [ -82.015520913999978, 28.859934566000049 ], [ -82.015452917999937, 28.859896181000067 ], [ -82.015381421999962, 28.859863092000069 ], [ -82.015306953999982, 28.859835546000056 ], [ -82.015230068999983, 28.859813748000079 ], [ -82.015151338999942, 28.859797858000036 ], [ -82.015071343999978, 28.859787994000044 ], [ -82.014990682999951, 28.859784231000049 ], [ -82.014764076999938, 28.859782267000071 ], [ -82.014673241999958, 28.859783805000063 ], [ -82.014582663999988, 28.859789990000024 ], [ -82.01449264699994, 28.859800801000063 ], [ -82.014403495999943, 28.859816199000079 ], [ -82.014315511999939, 28.859836135000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014315511999939, 28.859836135000023 ], [ -82.014212983999982, 28.859865598000056 ], [ -82.01411300999996, 28.859901219000051 ], [ -82.014016065999954, 28.859942829000033 ], [ -82.013922614999956, 28.859990228000072 ], [ -82.013833100999989, 28.860043190000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013833100999989, 28.860043190000056 ], [ -82.013750036999966, 28.86009993700003 ], [ -82.013671497999951, 28.860161473000062 ], [ -82.013597837999953, 28.860227522000059 ], [ -82.013461043999939, 28.860358736000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01605779199997, 28.859162593000065 ], [ -82.016077007999968, 28.859114097000031 ], [ -82.016081582999959, 28.859083901000076 ], [ -82.016083188999971, 28.859054078000042 ], [ -82.01608263199995, 28.858669020000036 ], [ -82.016081534999955, 28.858629648000033 ], [ -82.016080667999972, 28.858574229000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999867002999963, 28.862259736000055 ], [ -81.999989678999953, 28.861833844000046 ], [ -82.000001766999958, 28.861802614000055 ], [ -82.000019355999939, 28.861773482000046 ], [ -82.000041995999936, 28.861747190000074 ], [ -82.000069107999934, 28.861724411000068 ], [ -82.0001, 28.86170573000004 ], [ -82.000133877999986, 28.861691624000059 ], [ -82.000169879999987, 28.861682454000061 ], [ -82.000207080999985, 28.861678452000035 ], [ -82.000244531999954, 28.861679724000055 ], [ -82.000281271999938, 28.861686235000036 ], [ -82.000316363999957, 28.861697821000064 ], [ -82.000823747999959, 28.861907473000031 ], [ -82.001020120999954, 28.861984737000057 ], [ -82.001219612999989, 28.862055540000028 ], [ -82.001421948999962, 28.862119784000072 ], [ -82.001626851999958, 28.862177381000038 ], [ -82.001740759999961, 28.862205582000058 ], [ -82.00185565299995, 28.862230488000023 ], [ -82.001971411999989, 28.862252068000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001971411999989, 28.862252068000032 ], [ -82.002133753999942, 28.862276532000067 ], [ -82.002297192999947, 28.862294460000044 ], [ -82.002461389999951, 28.86230581500007 ], [ -82.002626004999968, 28.862310574000048 ], [ -82.002790693999941, 28.862308727000027 ], [ -82.002955116999942, 28.862300276000042 ], [ -82.003118932999939, 28.862285241000052 ], [ -82.003281798999978, 28.86226365300007 ], [ -82.003443379999965, 28.86223555600003 ], [ -82.003603338999937, 28.862201007000067 ], [ -82.00376134399994, 28.86216008100007 ], [ -82.003917065999985, 28.862112860000025 ], [ -82.003987317999986, 28.862092701000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999867002999963, 28.862259736000055 ], [ -82.000039912999966, 28.862298334000059 ], [ -82.00009113599998, 28.862312084000052 ], [ -82.000140641999963, 28.862330060000033 ], [ -82.00051577399995, 28.862485067000023 ], [ -82.000692209999954, 28.862555177000047 ], [ -82.000870929999962, 28.862620652000032 ], [ -82.001051778999965, 28.862681432000045 ], [ -82.001234592999936, 28.862737462000041 ], [ -82.001419216999977, 28.862788694000074 ], [ -82.001555965999955, 28.862822552000068 ], [ -82.001693899999964, 28.862852451000037 ], [ -82.001832871999966, 28.862878360000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001434316999962, 28.863950314000078 ], [ -82.001503391999961, 28.863744151000049 ], [ -82.001526643999966, 28.863663903000031 ], [ -82.001555341999961, 28.863585031000071 ], [ -82.001589379999984, 28.863507824000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001589379999984, 28.863507824000067 ], [ -82.001629277999939, 28.863431418000062 ], [ -82.001668645999985, 28.863361732000044 ], [ -82.001712248999979, 28.863277559000039 ], [ -82.001749322999956, 28.863190996000071 ], [ -82.001779702999954, 28.863102433000051 ], [ -82.001803248999977, 28.863012273000038 ], [ -82.001832871999966, 28.862878360000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001832871999966, 28.862878360000025 ], [ -82.001971411999989, 28.862252068000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001971411999989, 28.862252068000032 ], [ -82.002065165999966, 28.861828242000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001832871999966, 28.862878360000025 ], [ -82.002017334999948, 28.862906360000068 ], [ -82.002202997999973, 28.862927331000037 ], [ -82.002389516999983, 28.862941235000051 ], [ -82.002576542999975, 28.862948044000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002576542999975, 28.862948044000063 ], [ -82.002758721999953, 28.862947848000033 ], [ -82.002940730999967, 28.862940920000028 ], [ -82.003122248999944, 28.862927273000025 ], [ -82.00330295699996, 28.862906930000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004109016999962, 28.862762640000028 ], [ -82.004193870999984, 28.862757411000075 ], [ -82.004278972999941, 28.862757129000045 ], [ -82.004363911999974, 28.862761797000076 ], [ -82.004448313999944, 28.862771396000028 ], [ -82.004531811999982, 28.862785883000072 ], [ -82.005013530999975, 28.862884131000044 ], [ -82.005104372999938, 28.862900176000039 ], [ -82.005196135999938, 28.862911451000059 ], [ -82.00528849799997, 28.862917917000061 ], [ -82.005381131999968, 28.862919551000061 ], [ -82.005862932999946, 28.862915469000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00330295699996, 28.862906930000065 ], [ -82.003483100999972, 28.862879833000079 ], [ -82.003661788999977, 28.862846082000033 ], [ -82.003944805999936, 28.862787110000056 ], [ -82.004026440999951, 28.862772539000048 ], [ -82.004109016999962, 28.862762640000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004949099999976, 28.864314531000048 ], [ -82.004774979999979, 28.864240438000024 ], [ -82.004588511999941, 28.86421327000005 ], [ -82.004280684999969, 28.864125993000073 ], [ -82.004244142999937, 28.864110637000067 ], [ -82.004211150999936, 28.864089973000034 ], [ -82.004182691999972, 28.864064617000054 ], [ -82.00415961799996, 28.864035328000057 ], [ -82.004142616999957, 28.864002977000041 ], [ -82.004132194999954, 28.863968534000037 ], [ -82.004128664999939, 28.863933025000051 ], [ -82.004128201999947, 28.863402158000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004128201999947, 28.863402158000042 ], [ -82.004127904999962, 28.863062499000023 ], [ -82.004125745999943, 28.862962367000023 ], [ -82.004119446999937, 28.862862370000073 ], [ -82.004109016999962, 28.862762640000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004109016999962, 28.862762640000028 ], [ -82.004103829999963, 28.862723833000075 ], [ -82.004057657999965, 28.862398338000048 ], [ -82.004040061999945, 28.862295462000077 ], [ -82.004016595999985, 28.862193496000032 ], [ -82.003987317999986, 28.862092701000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003987317999986, 28.862092701000051 ], [ -82.003951590999975, 28.861991476000071 ], [ -82.003910001999941, 28.861891998000033 ], [ -82.003816283999981, 28.861684448000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001764826999988, 28.859966083000074 ], [ -82.001863351999987, 28.85976004500003 ], [ -82.001889207999966, 28.859708908000073 ], [ -82.00191740799994, 28.859658742000079 ], [ -82.002181362999977, 28.859212251000031 ], [ -82.00220872899996, 28.859170959000039 ], [ -82.002240492999988, 28.859132181000064 ], [ -82.002276357999961, 28.859096284000032 ], [ -82.002310025999975, 28.859065698000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004859827999951, 28.860847905000071 ], [ -82.004618287999961, 28.860050112000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004618287999961, 28.860050112000067 ], [ -82.004581910999946, 28.85991666700005 ], [ -82.004553141999963, 28.859781789000067 ], [ -82.004532051999945, 28.859645817000057 ], [ -82.004518691999976, 28.859509088000038 ], [ -82.004511406999939, 28.859445073000074 ], [ -82.00449847799996, 28.859381753000036 ], [ -82.004479983999943, 28.859319511000024 ], [ -82.004456541999957, 28.859251563000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004951766999966, 28.859116001000075 ], [ -82.004456541999957, 28.859251563000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004456541999957, 28.859251563000043 ], [ -82.004196002999947, 28.859321217000058 ], [ -82.004122441999982, 28.859337494000044 ], [ -82.004047435999951, 28.859347414000069 ], [ -82.003971688999968, 28.859350881000069 ], [ -82.003895918999945, 28.859347864000028 ], [ -82.00378815199997, 28.859338940000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00378815199997, 28.859338940000043 ], [ -82.002960711999947, 28.859270426000023 ], [ -82.00288550199997, 28.859261481000033 ], [ -82.002811360999942, 28.859247208000056 ], [ -82.002559084999973, 28.859189131000051 ], [ -82.002504018999957, 28.85917375300005 ], [ -82.002451033999989, 28.859153482000067 ], [ -82.002400691999981, 28.859128532000057 ], [ -82.002353523999943, 28.859099169000046 ], [ -82.002310025999975, 28.859065698000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002310025999975, 28.859065698000052 ], [ -82.002293140999939, 28.85905066600003 ], [ -82.002009022999971, 28.858790904000045 ], [ -82.001979733999974, 28.858767986000032 ], [ -82.001940031999936, 28.858747360000052 ], [ -82.001896425999973, 28.858732463000024 ], [ -82.001851516999977, 28.858725015000061 ], [ -82.001801401999955, 28.858725016000051 ], [ -82.001759747999984, 28.858731319000071 ], [ -82.001716140999974, 28.858742779000067 ], [ -82.001677090999976, 28.858758249000061 ], [ -82.001640643999963, 28.858778877000077 ], [ -82.001607870999976, 28.858807796000065 ], [ -82.001583246999985, 28.85884188700004 ], [ -82.00119746699994, 28.859494445000053 ], [ -82.001185925999948, 28.859528896000029 ], [ -82.001183322999964, 28.859567094000056 ], [ -82.001185926999938, 28.859599943000035 ], [ -82.001193953999973, 28.859631839000031 ], [ -82.001206754999941, 28.859661823000067 ], [ -82.001220639999985, 28.859687797000049 ], [ -82.001239731999988, 28.859716829000035 ], [ -82.001257087999988, 28.859737456000062 ], [ -82.001277914999946, 28.859756553000068 ], [ -82.001310024999952, 28.859775652000053 ], [ -82.001764826999988, 28.859966083000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001764826999988, 28.859966083000074 ], [ -82.001841892999948, 28.859997927000052 ], [ -82.001958551999962, 28.860043800000028 ], [ -82.002077084999939, 28.860085788000049 ], [ -82.002197323999951, 28.860123831000067 ], [ -82.002289815999973, 28.860148458000026 ], [ -82.002383932999976, 28.860167734000072 ], [ -82.002479273999938, 28.860181577000048 ], [ -82.002575436999962, 28.860189926000032 ], [ -82.002672014999973, 28.860192750000067 ], [ -82.002768595999953, 28.860190034000027 ], [ -82.002956875999985, 28.860178612000027 ], [ -82.003002002999949, 28.86018395900004 ], [ -82.003040186999954, 28.860190834000036 ], [ -82.003076635999946, 28.860203057000035 ], [ -82.003108744999963, 28.860220626000057 ], [ -82.003141721999953, 28.860244309000052 ], [ -82.003164284999968, 28.860267990000068 ], [ -82.003185981999934, 28.86029854800006 ], [ -82.003203370999984, 28.860331765000069 ], [ -82.003440529999978, 28.861102032000076 ], [ -82.003460055999938, 28.861134117000063 ], [ -82.003483488999962, 28.861162765000074 ], [ -82.003512127999954, 28.861184537000042 ], [ -82.003540765999958, 28.861204017000034 ], [ -82.003568102999964, 28.861218913000073 ], [ -82.003607154999941, 28.861231518000068 ], [ -82.003646206999974, 28.861238392000075 ], [ -82.003683956999964, 28.861239537000074 ], [ -82.003724309999939, 28.861236098000063 ], [ -82.003767266999944, 28.861228076000032 ], [ -82.003806317999988, 28.86121432300007 ], [ -82.004183616999967, 28.861059927000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004183616999967, 28.861059927000042 ], [ -82.004204738999988, 28.861050219000049 ], [ -82.004319321999958, 28.86100411700005 ], [ -82.00443611999998, 28.860962550000067 ], [ -82.004554903999974, 28.860925599000041 ], [ -82.004675437999936, 28.86089333700005 ], [ -82.004859827999951, 28.860847905000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004859827999951, 28.860847905000071 ], [ -82.005096894999951, 28.860789492000038 ], [ -82.005164751999985, 28.860770296000055 ], [ -82.005230753999967, 28.860746615000039 ], [ -82.005278039999951, 28.860727774000054 ], [ -82.00535247199997, 28.860694722000062 ], [ -82.005433848999985, 28.860644753000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004183616999967, 28.861059927000042 ], [ -82.00415486199995, 28.860988968000072 ], [ -82.004130564999969, 28.860916729000053 ], [ -82.003824873999974, 28.859907023000062 ], [ -82.003800183999942, 28.859812074000047 ], [ -82.003783191999958, 28.859715825000023 ], [ -82.003773979999949, 28.859618759000057 ], [ -82.003772597999955, 28.859521360000031 ], [ -82.003779050999981, 28.859424122000064 ], [ -82.00378815199997, 28.859338940000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004391111999951, 28.861447464000037 ], [ -82.004234032999989, 28.861161902000049 ], [ -82.00420765299998, 28.861111363000077 ], [ -82.004183616999967, 28.861059927000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006002939999973, 28.859871403000056 ], [ -82.006173631999957, 28.859831352000072 ], [ -82.00623049099994, 28.859820747000072 ], [ -82.006288289999986, 28.859815364000042 ], [ -82.006346411999971, 28.859815264000076 ], [ -82.006699160999972, 28.859830715000044 ], [ -82.006820747999939, 28.859833061000074 ], [ -82.006942293999941, 28.859829453000032 ], [ -82.007063424999956, 28.859819902000027 ], [ -82.007183764999979, 28.859804438000026 ], [ -82.007302942999956, 28.859783108000045 ], [ -82.007420586999956, 28.859755979000056 ], [ -82.007536337999966, 28.859723134000035 ], [ -82.007649836999974, 28.859684676000029 ], [ -82.007760730999962, 28.859640723000041 ], [ -82.007819652999956, 28.859611642000061 ], [ -82.007874188999949, 28.859576553000068 ], [ -82.007923550999976, 28.859535960000073 ], [ -82.007967028999985, 28.859490449000077 ], [ -82.008003994999967, 28.859440677000066 ], [ -82.008033913999952, 28.859387362000064 ], [ -82.008056354999951, 28.859331275000045 ], [ -82.008070995999958, 28.85927322200007 ], [ -82.008077622999963, 28.859214043000065 ], [ -82.008076142999982, 28.859154591000049 ], [ -82.008060388, 28.858987703000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006002939999973, 28.859871403000056 ], [ -82.005980068999975, 28.859795863000045 ], [ -82.005946423999944, 28.859673559000043 ], [ -82.005919167999934, 28.859550026000079 ], [ -82.005898360999936, 28.859425526000052 ], [ -82.00588404399997, 28.859300319000056 ], [ -82.005882793999945, 28.859242528000038 ], [ -82.005889205999949, 28.859185001000071 ], [ -82.005903190999959, 28.859128525000074 ], [ -82.005924557999947, 28.859073869000042 ], [ -82.005953015999978, 28.859021777000066 ], [ -82.005988177999939, 28.858972961000063 ], [ -82.006029564999949, 28.858928086000049 ], [ -82.006076609, 28.858887764000031 ], [ -82.006128671999988, 28.858852544000058 ], [ -82.006185043999949, 28.858822907000047 ], [ -82.006244956999979, 28.858799256000054 ], [ -82.006831175999935, 28.858603164000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006674719999978, 28.860658995000051 ], [ -82.006424976999938, 28.860657456000069 ], [ -82.006385923999972, 28.860651347000044 ], [ -82.006346872999984, 28.860640653000075 ], [ -82.006317366999951, 28.860628432000055 ], [ -82.006286992999947, 28.860610862000044 ], [ -82.006257485999981, 28.860592528000041 ], [ -82.006232317999945, 28.860566555000048 ], [ -82.006213224999954, 28.860538289000033 ], [ -82.006195475999959, 28.860507305000056 ], [ -82.006002939999973, 28.859871403000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006831175999935, 28.858603164000044 ], [ -82.008625674999962, 28.858006280000041 ], [ -82.008671667999977, 28.85800093000006 ], [ -82.008709849999946, 28.85799939900005 ], [ -82.008743693999975, 28.858003981000024 ], [ -82.008787085999984, 28.858013910000068 ], [ -82.008831344999976, 28.858031477000054 ], [ -82.008867793999968, 28.858051338000053 ], [ -82.008905109999944, 28.858080366000024 ], [ -82.008931146999942, 28.858110922000037 ], [ -82.008951108999952, 28.858146063000049 ], [ -82.008972663999941, 28.858218830000055 ], [ -82.008988486999954, 28.858301044000029 ], [ -82.008998620999989, 28.858383951000064 ], [ -82.009057667999969, 28.859058778000076 ], [ -82.009068548999949, 28.859165135000069 ], [ -82.009146150999982, 28.859862785000075 ], [ -82.009142898999983, 28.859894299000075 ], [ -82.009137477999957, 28.859924858000056 ], [ -82.009124462999978, 28.859952552000038 ], [ -82.00911036399998, 28.85997833600004 ], [ -82.009093009999958, 28.860004121000031 ], [ -82.009065892999956, 28.860031817000049 ], [ -82.009036605999938, 28.860054737000041 ], [ -82.009008869999946, 28.860071422000033 ], [ -82.008033524999973, 28.860437661000049 ], [ -82.007889613999964, 28.860488025000052 ], [ -82.007743044999984, 28.860532048000039 ], [ -82.007594176999987, 28.86056962300006 ], [ -82.007443376999959, 28.860600657000077 ], [ -82.007291015999954, 28.86062507500003 ], [ -82.00713746699995, 28.860642815000062 ], [ -82.006983108999975, 28.86065383600004 ], [ -82.006828317999975, 28.860658107000063 ], [ -82.006674719999978, 28.860658995000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014299989999984, 28.861903950000055 ], [ -82.014215079999985, 28.861742315000072 ], [ -82.014194700999951, 28.861656776000075 ], [ -82.014181944999962, 28.861590105000062 ], [ -82.014176687999964, 28.861522654000055 ], [ -82.014178983999955, 28.861455075000038 ], [ -82.014188804999947, 28.861388021000039 ], [ -82.014229555999975, 28.861187978000032 ], [ -82.014243929999964, 28.861099283000044 ], [ -82.014251073999958, 28.861009911000053 ], [ -82.014250952999987, 28.860920319000058 ], [ -82.014243565999948, 28.860830962000023 ], [ -82.014228948999971, 28.860742297000058 ], [ -82.014207180999961, 28.860654777000036 ], [ -82.014178369999968, 28.86056885000005 ], [ -82.014142663999962, 28.860484952000036 ], [ -82.014100244999952, 28.860403512000062 ], [ -82.014051328999983, 28.860324946000048 ], [ -82.013996166999959, 28.860249655000075 ], [ -82.013833100999989, 28.860043190000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012887287999945, 28.859995810000044 ], [ -82.01289395699996, 28.859706619000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01354930499997, 28.859877431000029 ], [ -82.013441139999941, 28.85984516700006 ], [ -82.013044003999937, 28.859734021000065 ], [ -82.01289395699996, 28.859706619000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013833100999989, 28.860043190000056 ], [ -82.013793197999973, 28.859989632000065 ], [ -82.013756310999952, 28.85995716900004 ], [ -82.013703300999964, 28.859927913000035 ], [ -82.013665314999969, 28.859910923000029 ], [ -82.013564975999941, 28.859882105000054 ], [ -82.01354930499997, 28.859877431000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01289395699996, 28.859706619000065 ], [ -82.012896459999979, 28.859598074000075 ], [ -82.012917474999938, 28.858529222000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012917474999938, 28.858529222000072 ], [ -82.012923948999969, 28.858199914000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012917474999938, 28.858529222000072 ], [ -82.013622588999965, 28.858530152000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013622588999965, 28.858530152000071 ], [ -82.013949749999938, 28.858530581000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01354930499997, 28.859877431000029 ], [ -82.013590317999956, 28.859772523000061 ], [ -82.013594925999939, 28.859746142000063 ], [ -82.013597227999981, 28.859721791000027 ], [ -82.013599518999968, 28.859620328000062 ], [ -82.013622588999965, 28.858530152000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00265227899996, 28.860851925000077 ], [ -82.002733780999961, 28.860852273000035 ], [ -82.00297937199997, 28.860859907000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002785538999944, 28.861468255000034 ], [ -82.00265227899996, 28.860851925000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002843774999974, 28.861874304000025 ], [ -82.002836665999951, 28.861766747000047 ], [ -82.002827551999985, 28.861678261000066 ], [ -82.002811964999978, 28.861590478000039 ], [ -82.002785538999944, 28.861468255000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000201634999939, 28.861032721000072 ], [ -82.000354366999943, 28.860772884000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000354366999943, 28.860772884000028 ], [ -82.000448546999962, 28.860820928000066 ], [ -82.001229283999976, 28.861146892000079 ], [ -82.001393351, 28.861211446000027 ], [ -82.001560020999989, 28.861270600000068 ], [ -82.001729071999989, 28.861324275000072 ], [ -82.001900264999961, 28.861372395000046 ], [ -82.002024010999946, 28.861402125000041 ], [ -82.002149240999984, 28.861426569000059 ], [ -82.002275664999956, 28.861445670000023 ], [ -82.002402986999982, 28.861459384000057 ], [ -82.002530912999987, 28.861467678000054 ], [ -82.00265914199997, 28.861470535000024 ], [ -82.002785538999944, 28.861468255000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00067639599996, 28.86022930300004 ], [ -82.000820372999954, 28.859984677000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000354366999943, 28.860772884000028 ], [ -82.00067639599996, 28.86022930300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00067639599996, 28.86022930300004 ], [ -82.001530611999954, 28.860581747000026 ], [ -82.001670673999968, 28.860636854000063 ], [ -82.001812958999949, 28.860687354000049 ], [ -82.001957273999949, 28.860733174000075 ], [ -82.002103418, 28.860774254000034 ], [ -82.002217306999967, 28.860801036000055 ], [ -82.002332792999937, 28.860821862000023 ], [ -82.002449471999967, 28.86083665700005 ], [ -82.002566939999952, 28.860845368000071 ], [ -82.00265227899996, 28.860851925000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967277998999975, 28.850432492000039 ], [ -81.967145425999945, 28.850377453000078 ], [ -81.966984467999964, 28.85030355400005 ], [ -81.966920802999937, 28.850274973000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966920802999937, 28.850274973000069 ], [ -81.966821598999957, 28.850230441000065 ], [ -81.966678421999973, 28.850157757000034 ], [ -81.966578016999961, 28.850112799000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967653292999955, 28.848175667000078 ], [ -81.967571728999985, 28.848175647000062 ], [ -81.967394715999944, 28.848175604000062 ], [ -81.967285383999979, 28.848177107000026 ], [ -81.967188199999953, 28.848178611000037 ], [ -81.967084067999963, 28.848199977000036 ], [ -81.96697646399997, 28.848230507000039 ], [ -81.966860613999984, 28.848265049000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009321432999968, 28.862093085000026 ], [ -82.009177512999941, 28.862203960000045 ], [ -82.008999709999955, 28.862346591000062 ], [ -82.008857464999949, 28.862442259000034 ], [ -82.008786338999982, 28.862473086000023 ], [ -82.008701388999953, 28.862494447000074 ], [ -82.008624853999947, 28.862507602000051 ], [ -82.008564105999938, 28.862510471000064 ], [ -82.008501188999958, 28.862508564000052 ], [ -82.008427422999944, 28.862504750000028 ], [ -82.008313519999945, 28.862495208000041 ], [ -82.00821263499995, 28.862489485000026 ], [ -82.008141038999952, 28.862489489000041 ], [ -82.008095478999962, 28.862497130000065 ], [ -82.008058595999955, 28.862506683000049 ], [ -82.008023883999954, 28.862524828000062 ], [ -82.007991341999968, 28.862547749000043 ], [ -82.007960970999989, 28.862573534000035 ], [ -82.007938192999973, 28.862598364000064 ], [ -82.007918668999935, 28.862632744000052 ], [ -82.007906737999974, 28.862669032000042 ], [ -82.007901578999963, 28.862718698000037 ], [ -82.007899153999972, 28.862775986000031 ], [ -82.007901336999964, 28.862958379000077 ], [ -82.007908940999982, 28.863094936000039 ], [ -82.007915451999963, 28.863122629000031 ], [ -82.007926300999941, 28.863149367000062 ], [ -82.007943659999967, 28.863172285000076 ], [ -82.00796644199994, 28.86319902200006 ], [ -82.00799898799994, 28.863227668000036 ], [ -82.008029363999981, 28.863249631000031 ], [ -82.008067332999985, 28.863268726000058 ], [ -82.008102802999986, 28.863280625000073 ], [ -82.008133506999968, 28.863286868000046 ], [ -82.008286547999944, 28.86329452800004 ], [ -82.008505855999942, 28.863304949000053 ], [ -82.008769197999982, 28.863314520000074 ], [ -82.009057089999942, 28.863315349000061 ], [ -82.009318101999952, 28.863303980000069 ], [ -82.00966957299994, 28.863287720000073 ], [ -82.009980908999978, 28.863275284000053 ], [ -82.010247765999964, 28.863265713000033 ], [ -82.010292241999935, 28.863259980000066 ], [ -82.010321529999942, 28.863252340000031 ], [ -82.010354072999974, 28.863243743000055 ], [ -82.010384445999989, 28.863230371000043 ], [ -82.01041156499997, 28.863214134000032 ], [ -82.010432173999959, 28.863199808000047 ], [ -82.01045169799994, 28.863180708000073 ], [ -82.010472307999976, 28.863163518000079 ], [ -82.010489662999987, 28.863142507000077 ], [ -82.010505931999944, 28.863122452000027 ], [ -82.010520031999988, 28.863099532000035 ], [ -82.010531961999959, 28.863070883000034 ], [ -82.010539551999955, 28.863046054000051 ], [ -82.010543888999962, 28.863020271000039 ], [ -82.010543883999958, 28.862963928000056 ], [ -82.010536270999978, 28.862783445000048 ], [ -82.010508039999934, 28.862506514000074 ], [ -82.01049065899997, 28.862266823000027 ], [ -82.010474367999961, 28.86207392700004 ], [ -82.01044722499995, 28.861833282000077 ], [ -82.010441796999942, 28.86179985900003 ], [ -82.010434200999953, 28.861768347000066 ], [ -82.010422264999988, 28.861738745000025 ], [ -82.01040815999994, 28.861705322000034 ], [ -82.010391885999979, 28.861680496000076 ], [ -82.010371271999986, 28.861651849000054 ], [ -82.01033872499994, 28.861612699000034 ], [ -82.010307263999948, 28.861584053000058 ], [ -82.010155421999968, 28.861450796000042 ], [ -82.010128342999963, 28.861424063000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010128342999963, 28.861424063000072 ], [ -82.00989859799995, 28.861626479000051 ], [ -82.00974648, 28.86176041300007 ], [ -82.009562751999965, 28.861903045000076 ], [ -82.009367168999972, 28.862057850000042 ], [ -82.009321432999968, 28.862093085000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009591320999959, 28.862465535000069 ], [ -82.009321432999968, 28.862093085000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010128342999963, 28.861424063000072 ], [ -82.009998293999956, 28.861305041000037 ], [ -82.009960103999958, 28.86126073500003 ], [ -82.009933197999942, 28.861215663000053 ], [ -82.009913233999953, 28.861173648000033 ], [ -82.009898475999989, 28.861114824000026 ], [ -82.00988866299997, 28.861045570000044 ], [ -82.009858747999942, 28.860842286000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009858747999942, 28.860842286000036 ], [ -82.009850713999981, 28.860781680000059 ], [ -82.009800356999961, 28.860524994000059 ], [ -82.009738122999977, 28.860398571000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009858747999942, 28.860842286000036 ], [ -82.010463407999964, 28.860774613000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05226208199997, 28.84010554200006 ], [ -82.052818049999985, 28.840266043000042 ], [ -82.053895611999963, 28.840577533000044 ], [ -82.055090538999934, 28.840920126000071 ], [ -82.055618032999973, 28.841075335000028 ], [ -82.056599821999953, 28.841361137000035 ], [ -82.057656133999956, 28.841662779000046 ], [ -82.059561772999984, 28.842217452000057 ], [ -82.060679465999954, 28.842540467000049 ], [ -82.061658466999972, 28.84281941200004 ], [ -82.063094704999969, 28.843235463000042 ], [ -82.06404413599995, 28.843509668000024 ], [ -82.064770330999977, 28.843717679000065 ], [ -82.066758571999969, 28.844297207000068 ], [ -82.067581006999944, 28.844530791000068 ], [ -82.070241101999954, 28.845298935000073 ], [ -82.071693549999964, 28.845721989000026 ], [ -82.072868965999987, 28.846064676000026 ], [ -82.075788898999974, 28.84691717100003 ], [ -82.077338164999958, 28.847357913000053 ], [ -82.077934536999976, 28.847540884000068 ], [ -82.078306882999982, 28.847665656000061 ], [ -82.078682391999962, 28.847798757000078 ], [ -82.079051596999989, 28.847940195000035 ], [ -82.079420812999956, 28.848092739000037 ], [ -82.079780563999975, 28.848245290000079 ], [ -82.080130855999982, 28.848400621000053 ], [ -82.080459064999957, 28.848555966000049 ], [ -82.080831468999975, 28.848744613000065 ], [ -82.081166010999937, 28.848927726000056 ], [ -82.08150371399995, 28.849116393000031 ], [ -82.081718334999948, 28.849244028000044 ], [ -82.082068675999949, 28.849454905000073 ], [ -82.082400093, 28.849668570000063 ], [ -82.082744142999957, 28.849898891000066 ], [ -82.083059791999972, 28.850118120000047 ], [ -82.083372295999936, 28.850345682000068 ], [ -82.083599580999987, 28.850523301000067 ], [ -82.083785836999937, 28.850678725000023 ], [ -82.083975243999987, 28.850828591000038 ], [ -82.084237267999981, 28.851047851000033 ], [ -82.08449299199998, 28.851278222000076 ], [ -82.084780285999955, 28.851533571000061 ], [ -82.085058129999936, 28.851805591000073 ], [ -82.085335984999972, 28.85208872000004 ], [ -82.085610030999987, 28.852384961000041 ], [ -82.085850241999935, 28.852643407000073 ], [ -82.086083297999949, 28.852911318000054 ], [ -82.086248242999943, 28.853113046000033 ], [ -82.086452636999979, 28.85337151300007 ], [ -82.086703647999968, 28.853689871000029 ], [ -82.086922416999982, 28.854001940000046 ], [ -82.087148364999962, 28.854329772000028 ], [ -82.087374331999968, 28.85467968100005 ], [ -82.087575199999947, 28.854998069000033 ], [ -82.087747401999934, 28.855303860000049 ], [ -82.087923198999988, 28.855625417000056 ], [ -82.088102610999954, 28.855984815000056 ], [ -82.088264092999964, 28.856318995000038 ], [ -82.088421997999944, 28.856659485000023 ], [ -82.088572753999983, 28.857015747000048 ], [ -82.088709180999956, 28.857372019000024 ], [ -82.089548181999987, 28.859654405000072 ], [ -82.09009305099994, 28.861156965000077 ], [ -82.090270643999986, 28.861649549000049 ], [ -82.090460311999948, 28.862135035000051 ], [ -82.090625685999953, 28.862464575000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091841089999946, 28.861758371000064 ], [ -82.091772025999944, 28.86106012700003 ], [ -82.091711294999982, 28.860680893000051 ], [ -82.091650579999964, 28.860319383000046 ], [ -82.09159398099996, 28.860057118000043 ], [ -82.091509134999967, 28.859727526000029 ], [ -82.091420282999934, 28.859419203000073 ], [ -82.09135162299998, 28.859178215000043 ], [ -82.091277810999941, 28.858838380000066 ], [ -82.09119805499995, 28.858573826000054 ], [ -82.091079394999952, 28.858237298000063 ], [ -82.090964625999959, 28.857943566000074 ], [ -82.090838183999949, 28.857669286000032 ], [ -82.090725359999965, 28.857433911000044 ], [ -82.09056779499997, 28.857149905000028 ], [ -82.090344090999963, 28.85678808800003 ], [ -82.090198197999939, 28.856558549000056 ], [ -82.090065920999962, 28.856387367000025 ], [ -82.089898628999947, 28.856179226000052 ], [ -82.089836380999941, 28.856101416000058 ], [ -82.089762461999953, 28.856002208000064 ], [ -82.089657418999934, 28.855854369000042 ], [ -82.089503743999956, 28.855677351000054 ], [ -82.089297548, 28.85545948400005 ], [ -82.089104967999958, 28.855268849000026 ], [ -82.088890990999971, 28.855054872000039 ], [ -82.088657560999934, 28.854844785000068 ], [ -82.087943654999947, 28.854181455000059 ], [ -82.086947687999952, 28.853274970000029 ], [ -82.086097613999982, 28.852498816000036 ], [ -82.084836906999953, 28.851330779000079 ], [ -82.084404387999939, 28.85094497800003 ], [ -82.084142359999987, 28.850720165000041 ], [ -82.083946638999976, 28.850564747000078 ], [ -82.083706720999942, 28.850370472000066 ], [ -82.083403678999957, 28.850140128000078 ], [ -82.083116432999987, 28.849934771000051 ], [ -82.082829181999955, 28.849723858000061 ], [ -82.082491445999949, 28.849499088000073 ], [ -82.082090599999958, 28.849252135000029 ], [ -82.081673981999984, 28.849005190000071 ], [ -82.080862870999965, 28.84855850200006 ], [ -82.08013701699997, 28.848206193000067 ], [ -82.079688896999983, 28.848006479000048 ], [ -82.079329148999989, 28.847859484000026 ], [ -82.078959937999969, 28.847712492000028 ], [ -82.078540250999936, 28.84755997600007 ], [ -82.078183675999981, 28.847432418000039 ], [ -82.077792404999968, 28.847310434000065 ], [ -82.077413756999988, 28.847193997000034 ], [ -82.077057202999981, 28.847091434000049 ], [ -82.074889494999979, 28.846464941000079 ], [ -82.073870332999945, 28.846168310000053 ], [ -82.07205922199995, 28.84563892500006 ], [ -82.07042656699997, 28.845166247000066 ], [ -82.069531862999952, 28.844912410000063 ], [ -82.067535162999945, 28.844331927000042 ], [ -82.064988414999959, 28.84360091800005 ], [ -82.064571936999982, 28.843478910000044 ], [ -82.062769152999977, 28.842956227000059 ], [ -82.060807911999973, 28.842391879000047 ], [ -82.05929692999996, 28.841951524000024 ], [ -82.056643278999957, 28.841185479000046 ], [ -82.055152404999944, 28.840755224000077 ], [ -82.053893735999964, 28.840391107000073 ], [ -82.052829777999989, 28.840081350000048 ], [ -82.052332758999967, 28.839939703000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982436195999981, 28.908816281000043 ], [ -81.982492795999974, 28.908839574000069 ], [ -81.982606314999941, 28.908897275000072 ], [ -81.982734222999966, 28.908964826000044 ], [ -81.98278013099997, 28.908983931000023 ], [ -81.982822880999947, 28.908994684000049 ], [ -81.982878126999935, 28.909001426000032 ], [ -81.982930371999942, 28.908997922000026 ], [ -81.98298045599995, 28.908985031000043 ], [ -81.983018323999943, 28.908967838000024 ], [ -81.98306230299994, 28.908936675000064 ], [ -81.983172252999964, 28.908850704000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981827824999982, 28.908752781000032 ], [ -81.981965146999983, 28.908733982000058 ], [ -81.982120247999944, 28.908738223000057 ], [ -81.982187745999966, 28.90874739700007 ], [ -81.982264697999938, 28.908761379000055 ], [ -81.982369681999955, 28.90878890700003 ], [ -81.982436195999981, 28.908816281000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981827824999982, 28.908752781000032 ], [ -81.981555373999981, 28.908230134000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982436195999981, 28.908816281000043 ], [ -81.982478670999967, 28.90873360300003 ], [ -81.982486534999964, 28.908702487000028 ], [ -81.982488502999956, 28.908673098000065 ], [ -81.982484578999959, 28.908648897000035 ], [ -81.982459049999989, 28.908579744000065 ], [ -81.98222926699998, 28.90810777400003 ], [ -81.982196282999951, 28.908046803000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982196282999951, 28.908046803000047 ], [ -81.98218998599998, 28.908035162000033 ], [ -81.982174278999935, 28.907979842000032 ], [ -81.982146812999986, 28.907746461000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981555373999981, 28.908230134000064 ], [ -81.981759714999953, 28.908137964000048 ], [ -81.981890695999937, 28.908098798000026 ], [ -81.98201643699997, 28.908080375000054 ], [ -81.982120247999944, 28.908061500000031 ], [ -81.982196282999951, 28.908046803000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979914267999959, 28.908372406000069 ], [ -81.979914890999964, 28.908372225000051 ], [ -81.98019372899995, 28.908291130000066 ], [ -81.980492499999968, 28.908192846000077 ], [ -81.980734253999969, 28.90810659300007 ], [ -81.981062673999986, 28.907978212000046 ], [ -81.981413903999965, 28.907821740000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977689178999981, 28.908651242000076 ], [ -81.977940473, 28.908670043000029 ], [ -81.978095549999978, 28.908672075000027 ], [ -81.978284835999943, 28.90867210600004 ], [ -81.978428511999937, 28.908664103000035 ], [ -81.978516236999951, 28.90865722500007 ], [ -81.97851987699994, 28.908656940000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979221235999944, 28.90901382100003 ], [ -81.979219753999985, 28.909005096000044 ], [ -81.979194123999946, 28.908899761000043 ], [ -81.979097139999965, 28.90857029700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107795599999974, 28.756168475000038 ], [ -82.107822904999978, 28.758449281000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108690043999957, 28.701508601000057 ], [ -82.108764260999976, 28.701518509000039 ], [ -82.110910649999937, 28.701540299000044 ], [ -82.112328244999958, 28.70158411400007 ], [ -82.11238829499996, 28.701585783000041 ], [ -82.112422691999939, 28.70159816000006 ], [ -82.112439399999971, 28.701625716000024 ], [ -82.11244362399998, 28.701677178000068 ], [ -82.11244395999995, 28.701991479000071 ], [ -82.112440472999936, 28.702629276000039 ], [ -82.112441006999973, 28.703129218000072 ], [ -82.112441098999966, 28.703215605000025 ], [ -82.112443237999969, 28.703267068000059 ], [ -82.112453708999965, 28.703311172000042 ], [ -82.112489172999972, 28.703333198000053 ], [ -82.112658035999971, 28.703333058000055 ], [ -82.113414789999979, 28.703336102000037 ], [ -82.11407980599995, 28.703328191000026 ], [ -82.114646852999954, 28.703333226000041 ], [ -82.114842815999964, 28.703333060000034 ], [ -82.115335904999938, 28.703327606000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115335904999938, 28.703327606000073 ], [ -82.115663930999972, 28.703323979000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10975796799994, 28.930862814000079 ], [ -82.109591661999957, 28.930862949000073 ], [ -82.109502961999965, 28.930860583000026 ], [ -82.109400397999934, 28.930853351000053 ], [ -82.109267342999942, 28.930843706000076 ], [ -82.109145373, 28.930831613000066 ], [ -82.108984578, 28.930800043000033 ], [ -82.108815447999973, 28.930751413000053 ], [ -82.108674028999985, 28.930695444000037 ], [ -82.108549231999973, 28.930629707000037 ], [ -82.108427204999941, 28.930563969000048 ], [ -82.108310708999966, 28.930483596000045 ], [ -82.10821916499998, 28.930410518000031 ], [ -82.108149803999936, 28.930347176000055 ], [ -82.108044392999943, 28.930266794000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013283272999956, 28.881226363000053 ], [ -82.013361317999966, 28.881174218000069 ], [ -82.013625428999944, 28.880996316000051 ], [ -82.013690538999981, 28.88095689000005 ], [ -82.013729927999975, 28.880937904000064 ], [ -82.013805038999976, 28.880908065000028 ], [ -82.013883152999938, 28.880884957000035 ], [ -82.013963493999938, 28.880868809000049 ], [ -82.014045261999968, 28.880859782000073 ], [ -82.014127643999984, 28.880857965000075 ], [ -82.014209821999941, 28.880863376000036 ], [ -82.014290978999952, 28.88087596400004 ], [ -82.014346456999988, 28.880888900000059 ], [ -82.015042763999986, 28.881058434000067 ], [ -82.015050024999937, 28.881060091000052 ], [ -82.015094124999962, 28.88106566700003 ], [ -82.015138627999988, 28.881063798000071 ], [ -82.015181922999943, 28.881054548000066 ], [ -82.015222450999943, 28.881038253000042 ], [ -82.015236322999954, 28.881030620000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013049310999975, 28.881384380000043 ], [ -82.013283272999956, 28.881226363000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012032100999988, 28.879690334000031 ], [ -82.011779339999975, 28.879860588000042 ], [ -82.011778684999967, 28.87986102900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011680642999977, 28.879928318000054 ], [ -82.011595339999985, 28.879994515000078 ], [ -82.011562062999985, 28.880025776000025 ], [ -82.011501341999974, 28.880092541000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010634858999936, 28.880155649000073 ], [ -82.010674456999936, 28.880106141000056 ], [ -82.010698149999939, 28.880070011000043 ], [ -82.010722531999988, 28.880022369000073 ], [ -82.010750013999939, 28.879954568000073 ], [ -82.010792910999953, 28.879845541000066 ], [ -82.010816868999939, 28.879777785000044 ], [ -82.010833532999982, 28.879721479000068 ], [ -82.010853233999967, 28.879638317000058 ], [ -82.010913122999966, 28.879349447000038 ], [ -82.010955662999947, 28.879144254000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010955662999947, 28.879144254000039 ], [ -82.010983565999936, 28.879009671000063 ], [ -82.011000715999955, 28.878943130000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013325166999948, 28.874152199000036 ], [ -82.013414868999973, 28.874020748000078 ], [ -82.013591642999984, 28.873779698000078 ], [ -82.013632649999977, 28.873727047000045 ], [ -82.013697351999951, 28.873654788000067 ], [ -82.013768295999967, 28.873587220000047 ], [ -82.013837426999942, 28.87353052900005 ], [ -82.01388237599997, 28.87349135900007 ], [ -82.013958981999963, 28.873432918000049 ], [ -82.014040742999953, 28.87338016700005 ], [ -82.014049656999987, 28.873374943000044 ], [ -82.014058412999987, 28.873369020000041 ], [ -82.014147565999963, 28.873313809000024 ], [ -82.014166036999939, 28.873304140000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014166036999939, 28.873304140000073 ], [ -82.014241260999938, 28.873264765000044 ], [ -82.014338943999974, 28.873222180000027 ], [ -82.014432582999973, 28.873188682000034 ], [ -82.014457811999989, 28.873184191000064 ], [ -82.014516121999975, 28.873169239000049 ], [ -82.01454965399995, 28.873166655000034 ], [ -82.014615682999988, 28.873157153000079 ], [ -82.014812768999946, 28.873153934000072 ], [ -82.014929584999948, 28.873155045000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06739261499996, 28.741454574000045 ], [ -82.067055857999947, 28.741446065000048 ], [ -82.066891722999969, 28.741450401000066 ], [ -82.066810873999941, 28.741457946000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957199307999986, 28.954345924000052 ], [ -81.956540438, 28.95478096100004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958321274999946, 28.953319836000048 ], [ -81.957705234999935, 28.953829341000073 ], [ -81.957631514999946, 28.953893200000039 ], [ -81.957585498999947, 28.953947667000079 ], [ -81.957520231999979, 28.954033125000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957520231999979, 28.954033125000024 ], [ -81.957158857999957, 28.953674916000068 ], [ -81.956661236999935, 28.953029469000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956661236999935, 28.953029469000057 ], [ -81.956408556999975, 28.952677232000042 ], [ -81.956193850999966, 28.952428562000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957394587999943, 28.952407771000026 ], [ -81.956661236999935, 28.953029469000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956540438, 28.95478096100004 ], [ -81.956323432999966, 28.954809509000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957875460999958, 28.956117648000031 ], [ -81.956930391999947, 28.956866294000065 ], [ -81.95676440699998, 28.956992152000055 ], [ -81.956718033999948, 28.957044573000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958574243999976, 28.955566856000075 ], [ -81.957875460999958, 28.956117648000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957875460999958, 28.956117648000031 ], [ -81.956540438, 28.95478096100004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983967315999962, 28.851590509000062 ], [ -81.983980289999977, 28.851467714000023 ], [ -81.983998664999945, 28.851345454000068 ], [ -81.984022410999955, 28.851223914000059 ], [ -81.984051491999935, 28.85110327600006 ], [ -81.984085866999976, 28.850983721000034 ], [ -81.984104940999941, 28.850922401000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984104940999941, 28.850922401000048 ], [ -81.984175567999955, 28.850695365000036 ], [ -81.984211656999946, 28.850574789000063 ], [ -81.984245089999945, 28.850453622000032 ], [ -81.984252508999987, 28.850409814000045 ], [ -81.98425184499996, 28.850365525000029 ], [ -81.98424311399998, 28.850321903000065 ], [ -81.984226542999977, 28.85028008200004 ], [ -81.98420256199995, 28.85024114600003 ], [ -81.984171790999937, 28.850206102000072 ], [ -81.984135030999937, 28.85017586400005 ], [ -81.984093232999953, 28.850151211000025 ], [ -81.984047482999983, 28.850132788000053 ], [ -81.983998965999945, 28.850121066000042 ], [ -81.983948941999984, 28.850116356000058 ], [ -81.983685459999947, 28.850110335000068 ], [ -81.983620347999988, 28.850111839000078 ], [ -81.983555764999949, 28.850119301000063 ], [ -81.983492418999958, 28.850132643000052 ], [ -81.983430993999946, 28.850151719000053 ], [ -81.983372155999973, 28.850176321000049 ], [ -81.983316549999984, 28.850206183000068 ], [ -81.98314344399995, 28.850310419000039 ], [ -81.983092414999987, 28.850344660000076 ], [ -81.983045643999958, 28.850383329000067 ], [ -81.983003621999956, 28.850426017000075 ], [ -81.982770519999974, 28.850688973000047 ], [ -81.982721926999943, 28.85074830700006 ], [ -81.982678591999957, 28.850810719000037 ], [ -81.982640763999939, 28.850875847000054 ], [ -81.982608662999951, 28.850943316000041 ], [ -81.982582475999948, 28.851012737000076 ], [ -81.982562350999956, 28.851083709000079 ], [ -81.982548405999978, 28.851155820000031 ], [ -81.982537687, 28.851227641000037 ], [ -81.982532356999968, 28.851259282000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982532356999968, 28.851259282000058 ], [ -81.982514606999985, 28.85133483900006 ], [ -81.982490036999934, 28.851408904000039 ], [ -81.982458811999948, 28.851480997000067 ], [ -81.982421125999963, 28.851550658000065 ], [ -81.982377224999937, 28.851617436000026 ], [ -81.981820943999935, 28.852390397000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981820943999935, 28.852390397000079 ], [ -81.981434612999976, 28.852927200000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994618794999951, 28.859492190000026 ], [ -81.994730015999949, 28.859531125000046 ], [ -81.994854760999942, 28.859568372000069 ], [ -81.994981674999963, 28.859603709000055 ], [ -81.995287572999985, 28.859688711000047 ], [ -81.995428587999982, 28.85972500400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020613912999977, 28.87078916300004 ], [ -82.020604408999986, 28.86876950900006 ], [ -82.020601782999961, 28.867997398000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023227520999967, 28.867286074000049 ], [ -82.022979858999975, 28.867471248000072 ], [ -82.022653263999985, 28.867704926000044 ], [ -82.022464446999948, 28.86781727500005 ], [ -82.022265413999946, 28.867902670000035 ], [ -82.022107203999951, 28.867943131000061 ], [ -82.021918371999959, 28.867988088000061 ], [ -82.021688698999981, 28.867997111000079 ], [ -82.020601782999961, 28.867997398000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024745673999973, 28.867017171000043 ], [ -82.02414853199997, 28.867026266000039 ], [ -82.023796368999967, 28.867026328000065 ], [ -82.023673882999958, 28.867048813000054 ], [ -82.023541193999961, 28.86709376400006 ], [ -82.023393199999987, 28.867165672000056 ], [ -82.023250316999963, 28.867269030000045 ], [ -82.023227520999967, 28.867286074000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054467375999934, 28.726777344000027 ], [ -82.054319752999959, 28.726810860000057 ], [ -82.054229747999955, 28.726834487000076 ], [ -82.05413002399996, 28.726835917000074 ], [ -82.054030254999986, 28.726847434000035 ], [ -82.053964569999948, 28.726856038000051 ], [ -82.053718843999945, 28.726853991000041 ], [ -82.053514476999965, 28.726851927000041 ], [ -82.053042488999949, 28.72684782500005 ], [ -82.052414796999983, 28.726848069000027 ], [ -82.051563274999978, 28.72684625200003 ], [ -82.051288320999959, 28.726851185000044 ], [ -82.051125358999968, 28.726867864000042 ], [ -82.050959938999938, 28.726906528000029 ], [ -82.050879660999954, 28.726923713000076 ], [ -82.050804249999942, 28.726940898000066 ], [ -82.050733696999941, 28.726947358000075 ], [ -82.05067530499997, 28.726943092000056 ], [ -82.050602311999967, 28.726932396000052 ], [ -82.050517150999951, 28.726913127000046 ], [ -82.050424693999958, 28.726898150000068 ], [ -82.050317637999967, 28.726883178000037 ], [ -82.049916189999976, 28.726851159000034 ], [ -82.049563403999969, 28.726821265000069 ], [ -82.049152231999983, 28.726806404000058 ], [ -82.048500204999982, 28.726793772000065 ], [ -82.04762921799994, 28.726789792000034 ], [ -82.047261846999959, 28.726787777000027 ], [ -82.046809345999975, 28.72683511300005 ], [ -82.046641486999988, 28.726865195000073 ], [ -82.046514980999973, 28.726878106000072 ], [ -82.04630332399995, 28.726893190000055 ], [ -82.046206010999981, 28.726901802000043 ], [ -82.046094105999941, 28.726925429000062 ], [ -82.046004101999984, 28.72695548400003 ], [ -82.045897059999959, 28.726970532000053 ], [ -82.045768116999966, 28.726977010000041 ], [ -82.045592941999985, 28.72696634600004 ], [ -82.045456907999949, 28.726953637000065 ], [ -82.045296109999981, 28.726932132000059 ], [ -82.045125805999987, 28.726930045000074 ], [ -82.044931177999956, 28.726942977000078 ], [ -82.044670658999962, 28.726968992000025 ], [ -82.044541927999944, 28.726983853000036 ], [ -82.044169688999943, 28.72697968500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963400448999948, 28.937976629000048 ], [ -81.963377488999981, 28.938046643000064 ], [ -81.963372033999974, 28.938083744000039 ], [ -81.963367937999976, 28.938125632000038 ], [ -81.963365247999945, 28.938158705000035 ], [ -81.963363829999935, 28.938197440000067 ], [ -81.963360885999975, 28.938233059000027 ], [ -81.963358701999937, 28.938278815000047 ], [ -81.96335634999997, 28.938348830000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962770069999976, 28.936666135000053 ], [ -81.96281606499997, 28.936686893000058 ], [ -81.962862941999958, 28.936703892000025 ], [ -81.96294529499994, 28.936721073000058 ], [ -81.963005972999952, 28.93673824800004 ], [ -81.963070459999983, 28.936759969000036 ], [ -81.963131661999967, 28.936782132000076 ], [ -81.963181501999941, 28.936805025000069 ], [ -81.963229618999947, 28.936829428000067 ], [ -81.963260903999981, 28.936849783000071 ], [ -81.963286745999937, 28.936870136000039 ], [ -81.963315308999938, 28.936892884000031 ], [ -81.963352033999968, 28.936926405000065 ], [ -81.963388390999967, 28.936957302000053 ], [ -81.963407922999977, 28.936979309000037 ], [ -81.963426479999953, 28.937002003000032 ], [ -81.963444057999936, 28.937025384000037 ], [ -81.963461047999942, 28.937049797000043 ], [ -81.963482587999977, 28.937085619000072 ], [ -81.963500265999983, 28.937116741000068 ], [ -81.963511821999987, 28.937136786000053 ], [ -81.963523927999972, 28.937162572000034 ], [ -81.96353697099994, 28.937198135000074 ], [ -81.963547841999969, 28.93724002700003 ], [ -81.963560069999971, 28.937284313000077 ], [ -81.963568221999935, 28.937316630000055 ], [ -81.963572291999981, 28.937353732000076 ], [ -81.963574996999967, 28.937396819000071 ], [ -81.963574981999955, 28.937441102000037 ], [ -81.963572243999977, 28.937492564000024 ], [ -81.963569507999978, 28.937528469000029 ], [ -81.96356269599994, 28.937559585000031 ], [ -81.963553159999947, 28.93759429000005 ], [ -81.963539536999974, 28.937639765000029 ], [ -81.963532924999981, 28.937655508000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963532924999981, 28.937655508000034 ], [ -81.963497583999981, 28.93773817400006 ], [ -81.963461758999983, 28.937821971000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963532924999981, 28.937655508000034 ], [ -81.963616125999977, 28.937688662000028 ], [ -81.963652320999984, 28.937708008000072 ], [ -81.963669121999942, 28.937729623000052 ], [ -81.963674930999957, 28.937755357000071 ], [ -81.963673953999944, 28.937777535000066 ], [ -81.963666510999985, 28.937801276000073 ], [ -81.963653575999956, 28.937817622000068 ], [ -81.963638055, 28.93783297300007 ], [ -81.963616717999969, 28.937843202000067 ], [ -81.963595383999973, 28.937844477000056 ], [ -81.963565491999987, 28.937840928000071 ], [ -81.96353292799995, 28.937834977000023 ], [ -81.963461758999983, 28.937821971000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962331049999989, 28.936069608000025 ], [ -81.962378669999964, 28.936116182000035 ], [ -81.962426342999947, 28.936173609000036 ], [ -81.962460089999979, 28.936217715000055 ], [ -81.962473564999982, 28.936241439000071 ], [ -81.962494084999946, 28.936270789000048 ], [ -81.962516660999938, 28.936317167000027 ], [ -81.962534218999963, 28.936356921000026 ], [ -81.962551772999973, 28.936405507000075 ], [ -81.962571835999938, 28.936454092000076 ], [ -81.962591902999975, 28.936498262000043 ], [ -81.96261949999996, 28.936540225000044 ], [ -81.962642081999945, 28.936571146000063 ], [ -81.962672192999946, 28.93660206900006 ], [ -81.962707329999944, 28.936626369000066 ], [ -81.962739953999971, 28.936650669000073 ], [ -81.962770069999976, 28.936666135000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962185429999977, 28.935964961000025 ], [ -81.962235627999974, 28.935996898000042 ], [ -81.962310916999968, 28.936049917000048 ], [ -81.962331049999989, 28.936069608000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962185429999977, 28.935964961000025 ], [ -81.962235036999971, 28.935887650000041 ], [ -81.96226341299996, 28.935853751000025 ], [ -81.962294695999958, 28.935824970000056 ], [ -81.962326699999949, 28.935811544000046 ], [ -81.962356520999947, 28.935807074000024 ], [ -81.96238124499996, 28.935814118000053 ], [ -81.962402331999954, 28.935826920000068 ], [ -81.962419780999937, 28.935844837000047 ], [ -81.962431405999951, 28.935871711000061 ], [ -81.962435034999942, 28.935895384000048 ], [ -81.962429208999936, 28.935913936000077 ], [ -81.962420475999977, 28.935931846000074 ], [ -81.962400829999979, 28.935960631000057 ], [ -81.962331049999989, 28.936069608000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960807938999949, 28.935301491000075 ], [ -81.961404755999979, 28.935591979000037 ], [ -81.96144690899996, 28.935610917000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96144690899996, 28.935610917000076 ], [ -81.961401666999961, 28.935729712000068 ], [ -81.961395109999955, 28.935747959000025 ], [ -81.961391955999943, 28.935768947000042 ], [ -81.961392539999963, 28.935789847000024 ], [ -81.961401637999984, 28.935808190000046 ], [ -81.961421995999956, 28.935826109000061 ], [ -81.96145108099995, 28.935839765000026 ], [ -81.961478714999942, 28.935847498000044 ], [ -81.961507319999953, 28.935848312000076 ], [ -81.961536414999955, 28.93583723100005 ], [ -81.961557556999935, 28.935817343000053 ], [ -81.961644628999977, 28.935707618000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961644628999977, 28.935707618000038 ], [ -81.961881751999954, 28.935811310000076 ], [ -81.96205492699994, 28.935897479000062 ], [ -81.962151136999978, 28.935943143000031 ], [ -81.962185429999977, 28.935964961000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96144690899996, 28.935610917000076 ], [ -81.961644628999977, 28.935707618000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964795055999957, 28.93051878600005 ], [ -81.964813851999963, 28.930591221000043 ], [ -81.96486201, 28.930699888000049 ], [ -81.964865718999988, 28.930707451000046 ], [ -81.964869428999975, 28.930715359000033 ], [ -81.964873334999936, 28.930722923000076 ], [ -81.964877239999964, 28.930730487000062 ], [ -81.96488153599995, 28.930738052000038 ], [ -81.964885831999936, 28.930745616000024 ], [ -81.964890322999963, 28.930753180000067 ], [ -81.96489481499998, 28.930760401000043 ], [ -81.964899696999964, 28.93076762100003 ], [ -81.964904578999949, 28.930774841000073 ], [ -81.964909657999954, 28.930782062000048 ], [ -81.964914734999979, 28.930789283000024 ], [ -81.964920202999963, 28.930796160000057 ], [ -81.964925671999936, 28.930803037000032 ], [ -81.96493133599995, 28.930809914000065 ], [ -81.964937, 28.930816791000041 ], [ -81.964942859999951, 28.930823324000073 ], [ -81.964948914, 28.930829857000049 ], [ -81.964954968999962, 28.930836390000024 ], [ -81.964961218999974, 28.930842580000046 ], [ -81.96496766599995, 28.930848770000068 ], [ -81.964980751999974, 28.930861149000066 ], [ -81.964998566999952, 28.93086947300003 ], [ -81.965026679999937, 28.930878995000057 ], [ -81.96507773899998, 28.930891754000072 ], [ -81.965317170999981, 28.930988315000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971893646999945, 28.932720570000072 ], [ -81.971893258999955, 28.932747167000059 ], [ -81.971890163999944, 28.932770257000072 ], [ -81.97188140999998, 28.932791535000035 ], [ -81.971871061999934, 28.932811170000036 ], [ -81.971844164999936, 28.932865855000045 ], [ -81.971798273, 28.932960783000055 ], [ -81.971744452999985, 28.933084682000072 ], [ -81.971706486999949, 28.933160132000069 ], [ -81.971671403999949, 28.933198099000037 ], [ -81.971628665999958, 28.933234800000037 ], [ -81.971568857999955, 28.93327877400003 ], [ -81.971495998999956, 28.933328601000028 ], [ -81.97134218399998, 28.933432999000047 ], [ -81.971293609999975, 28.933468590000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971844387999965, 28.932573099000024 ], [ -81.971857386999943, 28.932598033000033 ], [ -81.971873068999969, 28.932642906000069 ], [ -81.971882868999955, 28.93267742300003 ], [ -81.971893646999945, 28.932720570000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970843343999945, 28.932398076000027 ], [ -81.970975554999939, 28.932362504000025 ], [ -81.971169820999989, 28.932319824000047 ], [ -81.971300326999938, 28.932290723000051 ], [ -81.971340544999975, 28.932285555000078 ], [ -81.971381741999949, 28.932283838000046 ], [ -81.97142391899996, 28.932287298000062 ], [ -81.971455811999988, 28.932293777000041 ], [ -81.971498972999939, 28.932315147000054 ], [ -81.97156640999998, 28.932360257000028 ], [ -81.971768720999989, 28.932495584000037 ], [ -81.971804429999963, 28.932525619000046 ], [ -81.971831628999951, 28.932555764000028 ], [ -81.971844387999965, 28.932573099000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971844387999965, 28.932573099000024 ], [ -81.971878257999947, 28.93255821300005 ], [ -81.97190558799997, 28.932547916000033 ], [ -81.971918530999972, 28.932545694000055 ], [ -81.971945927999968, 28.932546779000063 ], [ -81.971968049999987, 28.932549074000065 ], [ -81.971988695999983, 28.932554236000044 ], [ -81.972013395999966, 28.932566315000031 ], [ -81.972030500999949, 28.932584574000032 ], [ -81.972038688999987, 28.932596140000044 ], [ -81.972044807999964, 28.932610906000036 ], [ -81.972045798999943, 28.932636363000029 ], [ -81.972038970999961, 28.932656015000077 ], [ -81.97203048199998, 28.932668629000034 ], [ -81.972014858999955, 28.932685309000078 ], [ -81.971978417999935, 28.932703617000072 ], [ -81.971893646999945, 28.932720570000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971457148999946, 28.930218770000067 ], [ -81.971115678, 28.930669565000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971002556999963, 28.930817576000038 ], [ -81.97098946999995, 28.930834018000041 ], [ -81.970946293999987, 28.930867237000029 ], [ -81.970900423999979, 28.930883842000071 ], [ -81.970530534999966, 28.930928883000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971115678, 28.930669565000073 ], [ -81.971163129999979, 28.930727883000031 ], [ -81.971188201999951, 28.930758618000027 ], [ -81.971200732999989, 28.930784623000079 ], [ -81.971206995999978, 28.930808263000074 ], [ -81.971203873999968, 28.930824980000068 ], [ -81.971200228999976, 28.930837504000067 ], [ -81.971191250999937, 28.93085394700006 ], [ -81.971179574999951, 28.930867577000072 ], [ -81.971165775999964, 28.930879956000069 ], [ -81.971141589999945, 28.930889407000052 ], [ -81.971120093999957, 28.930889402000048 ], [ -81.971094119999975, 28.930885457000045 ], [ -81.97106725499998, 28.930872056000055 ], [ -81.971002556999963, 28.930817576000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971115678, 28.930669565000073 ], [ -81.971002556999963, 28.930817576000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968949162999934, 28.932228637000037 ], [ -81.968960796999966, 28.932241570000031 ], [ -81.968976482999949, 28.932261295000046 ], [ -81.968991048999953, 28.93228003300004 ], [ -81.969006735999983, 28.932300745000077 ], [ -81.969019058999947, 28.932321455000078 ], [ -81.969029140999965, 28.932342164000033 ], [ -81.969040342999961, 28.932367804000023 ], [ -81.969050422999942, 28.93239344400007 ], [ -81.969187317999967, 28.932832959000052 ], [ -81.969195907999961, 28.932863213000076 ], [ -81.969200200999978, 28.93288074700007 ], [ -81.969204299999944, 28.932898625000064 ], [ -81.969208005999974, 28.932916158000069 ], [ -81.969211517999952, 28.932934035000073 ], [ -81.969214442999942, 28.932951912000078 ], [ -81.969217173999937, 28.932969788000037 ], [ -81.969258281999942, 28.933261448000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968019781999942, 28.931873849000056 ], [ -81.968061180999939, 28.931887104000054 ], [ -81.968102580999982, 28.931898702000069 ], [ -81.968202312999949, 28.931930182000031 ], [ -81.968349091999983, 28.931974916000058 ], [ -81.968724333999944, 28.93208769000006 ], [ -81.968734687999984, 28.932090988000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968734687999984, 28.932090988000027 ], [ -81.968777010999986, 28.932104464000076 ], [ -81.968807270999946, 28.93211827600004 ], [ -81.968832304999978, 28.932131573000049 ], [ -81.968855459999986, 28.932146884000076 ], [ -81.968877873999986, 28.932163651000053 ], [ -81.968898044999946, 28.932180421000055 ], [ -81.968920456999967, 28.932200146000071 ], [ -81.968939506999959, 28.932217899000079 ], [ -81.968949162999934, 28.932228637000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968734687999984, 28.932090988000027 ], [ -81.968699279999953, 28.932155393000073 ], [ -81.968686941999977, 28.932183001000055 ], [ -81.968667873999948, 28.932228355000063 ], [ -81.968658895999965, 28.932261879000066 ], [ -81.968653282999981, 28.93229244500003 ], [ -81.968657759999985, 28.932312168000067 ], [ -81.96866896399996, 28.932328933000065 ], [ -81.968691375999981, 28.932348660000059 ], [ -81.968717152999943, 28.932361485000058 ], [ -81.968739568999979, 28.932363463000058 ], [ -81.968776564999985, 28.932352623000043 ], [ -81.968802348999986, 28.932335867000063 ], [ -81.968843829999969, 28.932311224000046 ], [ -81.968949162999934, 28.932228637000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972243650999985, 28.937272433000032 ], [ -81.972221952999973, 28.937197922000053 ], [ -81.972208019999982, 28.937132465000047 ], [ -81.972194090999949, 28.937042462000079 ], [ -81.972126787999969, 28.936565861000076 ], [ -81.972119830999986, 28.936494269000036 ], [ -81.972112865999975, 28.936455405000061 ], [ -81.972111977999987, 28.936441276000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972105943999964, 28.936253481000051 ], [ -81.972105951999936, 28.936224269000036 ], [ -81.972108287999959, 28.93618336000003 ], [ -81.972108295999988, 28.936150634000057 ], [ -81.972108304999949, 28.93611995200007 ], [ -81.972110641999961, 28.936076998000033 ], [ -81.972112978999974, 28.936034044000053 ], [ -81.972122295999952, 28.935974728000076 ], [ -81.972146638999959, 28.935824115000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972111977999987, 28.936441276000039 ], [ -81.97217735299995, 28.936437765000051 ], [ -81.972216971999956, 28.936435894000056 ], [ -81.972246607999978, 28.936432018000062 ], [ -81.972271199999966, 28.936425366000037 ], [ -81.972292010999979, 28.936415942000053 ], [ -81.97231155999998, 28.936403189000032 ], [ -81.972325330999979, 28.936387507000063 ], [ -81.972334302999968, 28.936369759000058 ], [ -81.972336549999966, 28.936352012000043 ], [ -81.97233319299994, 28.936331303000031 ], [ -81.97232422999997, 28.936313552000058 ], [ -81.972302937999984, 28.936292841000068 ], [ -81.972282764999989, 28.936276072000055 ], [ -81.97225474399994, 28.936266207000074 ], [ -81.972212605999971, 28.936256738000054 ], [ -81.972105943999964, 28.936253481000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972111977999987, 28.936441276000039 ], [ -81.972110548999979, 28.936418586000059 ], [ -81.972109165999939, 28.936382070000036 ], [ -81.972108547999937, 28.936342134000029 ], [ -81.972106661999987, 28.936314955000057 ], [ -81.972105936999981, 28.936279496000054 ], [ -81.972105942999974, 28.936256996000054 ], [ -81.972105943999964, 28.936253481000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975228825999977, 28.933170439000037 ], [ -81.975229193999951, 28.933169767000038 ], [ -81.975240195999959, 28.933153645000061 ], [ -81.975253031999955, 28.933133492000024 ], [ -81.975262199999975, 28.933118980000074 ], [ -81.975275950999958, 28.933101246000035 ], [ -81.975286036999989, 28.933086736000064 ], [ -81.97529428699994, 28.933074644000044 ], [ -81.975302536999948, 28.933065777000024 ], [ -81.975311705999957, 28.933054492000053 ], [ -81.97532270399995, 28.933043207000026 ], [ -81.975334621999934, 28.933031115000063 ], [ -81.975347454999962, 28.933020636000037 ], [ -81.975359371999957, 28.933011770000064 ], [ -81.975376787999949, 28.932999680000023 ], [ -81.975395119999973, 28.932986784000036 ], [ -81.975410702999966, 28.932975499000065 ], [ -81.975426284999969, 28.932965022000076 ], [ -81.975441867999962, 28.932955350000043 ], [ -81.975457449999965, 28.932946483000023 ], [ -81.975477613999942, 28.932939232000024 ], [ -81.975493195999945, 28.932933591000051 ], [ -81.975507860999983, 28.932926337000026 ], [ -81.975530773999935, 28.932918279000035 ], [ -81.975555521999979, 28.93290941500004 ], [ -81.975579350999965, 28.932902969000054 ], [ -81.975601347999941, 28.93289732900007 ], [ -81.975622427999951, 28.932892497000068 ], [ -81.97564717399996, 28.932890083000075 ], [ -81.975667335999958, 28.932889279000051 ], [ -81.975688414999979, 28.932889283000065 ], [ -81.975705828999935, 28.932889286000034 ], [ -81.975723240999969, 28.932889289000059 ], [ -81.975739737999959, 28.932888487000071 ], [ -81.975755317999983, 28.932888490000039 ], [ -81.976172314999985, 28.932885339000052 ], [ -81.976713951999955, 28.932885433000024 ], [ -81.977283081999985, 28.932882306000067 ], [ -81.977456296999947, 28.932882335000045 ], [ -81.977502118999951, 28.932882343000074 ], [ -81.977527780999935, 28.932882347000032 ], [ -81.977556191999952, 28.932882352000036 ], [ -81.977573603999986, 28.932882355000061 ], [ -81.977598349999937, 28.932882359000075 ], [ -81.977626759999964, 28.932882364000079 ], [ -81.977646921999963, 28.932882367000047 ], [ -81.977687247999938, 28.93288237400003 ], [ -81.977734903999988, 28.93288238100007 ], [ -81.977793558999963, 28.932884003000026 ], [ -81.977828383999963, 28.932887234000077 ], [ -81.977876039999956, 28.932892886000047 ], [ -81.97791544599994, 28.932901761000039 ], [ -81.977964931999963, 28.932916280000029 ], [ -81.978023582999981, 28.932934028000034 ], [ -81.978075817, 28.932957416000079 ], [ -81.978127133999976, 28.932980806000046 ], [ -81.978166538999972, 28.933000161000052 ], [ -81.978206858999954, 28.933022742000048 ], [ -81.978239848999976, 28.933040485000049 ], [ -81.978271004999954, 28.933061451000071 ], [ -81.978292996999983, 28.933075967000036 ], [ -81.978314988999955, 28.933092902000055 ], [ -81.978333315999976, 28.933106611000028 ], [ -81.978351642999939, 28.933119512000076 ], [ -81.978371419999974, 28.933135944000071 ], [ -81.978390057999945, 28.933152346000043 ], [ -81.978409471999953, 28.933170798000049 ], [ -81.978434322999988, 28.933194718000038 ], [ -81.978456841999957, 28.933220686000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978456841999957, 28.933220686000027 ], [ -81.978522871999985, 28.933178332000068 ], [ -81.978553942999952, 28.933166721000077 ], [ -81.978587083999969, 28.933167296000079 ], [ -81.97861607699997, 28.933180055000037 ], [ -81.978640928999937, 28.933200861000046 ], [ -81.978652314999977, 28.933231991000071 ], [ -81.97865541699997, 28.933259322000026 ], [ -81.978641946999971, 28.933289385000023 ], [ -81.978620193999973, 28.933311247000063 ], [ -81.978548468999975, 28.933350524000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978456841999957, 28.933220686000027 ], [ -81.978548468999975, 28.933350524000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976279133999981, 28.935608299000023 ], [ -81.97609975499995, 28.935806110000044 ], [ -81.97596647599994, 28.935953188000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97596647599994, 28.935953188000042 ], [ -81.975855248999949, 28.936075931000062 ], [ -81.975836689999937, 28.936095711000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97596647599994, 28.935953188000042 ], [ -81.976055102999965, 28.936046530000056 ], [ -81.976126546999978, 28.936108238000031 ], [ -81.976138121999952, 28.936123809000037 ], [ -81.976143742999966, 28.936139672000024 ], [ -81.976143737999962, 28.936159460000056 ], [ -81.976139763999981, 28.936176921000026 ], [ -81.976129172999947, 28.936197145000051 ], [ -81.976115936999975, 28.936208346000058 ], [ -81.976096085999984, 28.936218819000032 ], [ -81.976077558999975, 28.936225947000025 ], [ -81.976060685999983, 28.936228562000053 ], [ -81.976041828999939, 28.936227686000052 ], [ -81.976017017999936, 28.936220698000056 ], [ -81.975977323999984, 28.936200610000071 ], [ -81.975916131999952, 28.93615709200003 ], [ -81.975836689999937, 28.936095711000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973946234999971, 28.93928287600005 ], [ -81.973942339999951, 28.939499198000078 ], [ -81.973934975999953, 28.939536252000039 ], [ -81.973922497, 28.939579124000034 ], [ -81.973900947999937, 28.939625981000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973829512999941, 28.939725675000034 ], [ -81.973813638999957, 28.939743619000069 ], [ -81.973768289999953, 28.939785487000051 ], [ -81.973393903999977, 28.940115450000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973900947999937, 28.939625981000063 ], [ -81.974083419999943, 28.939705783000079 ], [ -81.974104950999958, 28.93972672600006 ], [ -81.974110611999947, 28.939752650000059 ], [ -81.974108337999951, 28.939779570000042 ], [ -81.974100399999941, 28.939797516000056 ], [ -81.974086793999959, 28.939810476000048 ], [ -81.974065253999981, 28.939826424000046 ], [ -81.974038048999944, 28.939831405000064 ], [ -81.974007443999938, 28.939833393000072 ], [ -81.973980241999982, 28.939823417000071 ], [ -81.973829512999941, 28.939725675000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973900947999937, 28.939625981000063 ], [ -81.973829512999941, 28.939725675000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973944133999964, 28.938720923000062 ], [ -81.973944741999958, 28.938804050000044 ], [ -81.973946234999971, 28.93928287600005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973943033999944, 28.938570087000073 ], [ -81.973944133999964, 28.938720923000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973943033999944, 28.938570087000073 ], [ -81.974272464999956, 28.938557520000074 ], [ -81.97430719, 28.938575857000046 ], [ -81.97432628699994, 28.938601829000049 ], [ -81.974333224999953, 28.938632381000048 ], [ -81.974329744999977, 28.938661404000072 ], [ -81.97431931899996, 28.938685842000041 ], [ -81.974295003999941, 28.938701112000047 ], [ -81.974265479999985, 28.938713328000063 ], [ -81.974232486999938, 28.938714849000064 ], [ -81.974173443999973, 28.938717893000046 ], [ -81.973944133999964, 28.938720923000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971556794999969, 28.941850860000045 ], [ -81.971564606999948, 28.941861666000079 ], [ -81.971613718999947, 28.941926499000033 ], [ -81.971671783999966, 28.942005966000067 ], [ -81.971821164999938, 28.942209472000059 ], [ -81.971956223999939, 28.942389566000031 ], [ -81.972174585999937, 28.942700848000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96463479199997, 28.942228112000066 ], [ -81.964885609999953, 28.942225510000071 ], [ -81.964967624999986, 28.942225532000066 ], [ -81.965060219999941, 28.942229045000033 ], [ -81.965127768999935, 28.942236932000071 ], [ -81.96522618299997, 28.942265291000069 ], [ -81.965346069999953, 28.942296803000033 ], [ -81.965423010999984, 28.942318861000047 ], [ -81.965480269999944, 28.942337766000037 ], [ -81.965548264999939, 28.942356671000027 ], [ -81.965601943999957, 28.942374 ], [ -81.96566457199998, 28.942388183000048 ], [ -81.965736149999941, 28.942399220000027 ], [ -81.965795204999949, 28.942399235000039 ], [ -81.965857838999966, 28.942394529000069 ], [ -81.965911526999946, 28.942388246000064 ], [ -81.965968792999945, 28.942380390000039 ], [ -81.966015322999965, 28.942374105000056 ], [ -81.966061851999939, 28.942367820000072 ], [ -81.966120908999983, 28.942358391000027 ], [ -81.966163859999938, 28.942352105000055 ], [ -81.966206811999939, 28.942341098000043 ], [ -81.966254685999957, 28.942329418000043 ], [ -81.966300989, 28.942314303000046 ], [ -81.966341039999975, 28.942298630000039 ], [ -81.966382204999945, 28.942278177000048 ], [ -81.966420059999962, 28.942257318000031 ], [ -81.966463721999958, 28.942230566000035 ], [ -81.966518235999956, 28.942190061000076 ], [ -81.966810009999961, 28.941931981000039 ], [ -81.966842229999941, 28.941900507000071 ], [ -81.966874451999956, 28.941869033000046 ], [ -81.966912042, 28.941834412000048 ], [ -81.966949632999956, 28.94180136500006 ], [ -81.966980060999958, 28.941777761000026 ], [ -81.96701049099994, 28.941751009000029 ], [ -81.967049324999948, 28.941721534000067 ], [ -81.967084643999954, 28.941698584000051 ], [ -81.967119674999935, 28.941675480000072 ], [ -81.967157261999944, 28.941653450000047 ], [ -81.967201347999946, 28.941631088000065 ], [ -81.967258161999951, 28.941606793000062 ], [ -81.96732265299994, 28.941581149000058 ], [ -81.967387140999961, 28.941559558000051 ], [ -81.967453163999949, 28.941546067000047 ], [ -81.967496154999935, 28.941536625000026 ], [ -81.967531448999978, 28.941530355000054 ], [ -81.967565840999953, 28.941526872000054 ], [ -81.967606849999981, 28.941522229000043 ], [ -81.967642565999938, 28.941522237000072 ], [ -81.96767695799997, 28.941522245000044 ], [ -81.967711350999934, 28.941521090000037 ], [ -81.967740452999976, 28.941522261000046 ], [ -81.967774048999956, 28.941521837000039 ], [ -81.967815501999951, 28.941523197000038 ], [ -81.967879980999953, 28.941531315000077 ], [ -81.967910679999989, 28.941537149000055 ], [ -81.967948255999943, 28.941545028000064 ], [ -81.967985832999943, 28.941556056000024 ], [ -81.968025198999953, 28.941565509000043 ], [ -81.968067273999964, 28.941577276000032 ], [ -81.968111085999965, 28.941593864000026 ], [ -81.968155819999936, 28.941609615000061 ], [ -81.968202338999959, 28.941633238000065 ], [ -81.968286432999946, 28.941675759000077 ], [ -81.968610278999961, 28.941855282000063 ], [ -81.968663954999954, 28.941885203000027 ], [ -81.968697950999967, 28.941904100000045 ], [ -81.968733733999954, 28.941924571000072 ], [ -81.968767728999978, 28.941943468000034 ], [ -81.968794568999954, 28.941956067000035 ], [ -81.968827128999976, 28.941969098000072 ], [ -81.968865505999986, 28.94198801400006 ], [ -81.968914633999987, 28.942000180000036 ], [ -81.968944871999952, 28.94200489900004 ], [ -81.968978871, 28.94200963000003 ], [ -81.969015959999979, 28.942011007000076 ], [ -81.969066624999982, 28.942008318000035 ], [ -81.969109615999969, 28.942001576000052 ], [ -81.96914800199994, 28.941992131000063 ], [ -81.969197135999934, 28.941974586000072 ], [ -81.969260092999946, 28.941944889000069 ], [ -81.969521134999979, 28.941805848000058 ], [ -81.96998640399994, 28.941557461000059 ], [ -81.970055502999969, 28.941518312000028 ], [ -81.970132277999937, 28.941483217000041 ], [ -81.970189090999952, 28.94145486900004 ], [ -81.970257769999989, 28.941428590000044 ], [ -81.970325746999947, 28.941407631000061 ], [ -81.970397998999943, 28.941389060000063 ], [ -81.970462396999949, 28.941376600000069 ], [ -81.970526881999945, 28.941365810000036 ], [ -81.970602112999984, 28.941361775000075 ], [ -81.970677342999977, 28.941361791000077 ], [ -81.970763317999968, 28.941371263000065 ], [ -81.970843149999951, 28.941383435000034 ], [ -81.970913767999946, 28.941396955000073 ], [ -81.970992061999937, 28.941418580000061 ], [ -81.971058073999984, 28.94144020300007 ], [ -81.971116409999979, 28.941461822000065 ], [ -81.971163996999962, 28.941486143000077 ], [ -81.971226933999958, 28.941521269000077 ], [ -81.971297543999981, 28.941571252000074 ], [ -81.971377361999942, 28.941636093000056 ], [ -81.971409593999965, 28.941665811000064 ], [ -81.971440292999944, 28.941698229000053 ], [ -81.971460515, 28.941722872000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971460515, 28.941722872000071 ], [ -81.971480196999948, 28.941746855000076 ], [ -81.971521635999977, 28.941802235000068 ], [ -81.971556794999969, 28.941850860000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971460515, 28.941722872000071 ], [ -81.971506335999948, 28.941686538000056 ], [ -81.971534764999944, 28.941662793000035 ], [ -81.971558927999979, 28.941651547000049 ], [ -81.971590193999987, 28.941642803000036 ], [ -81.971624302999942, 28.94164156100004 ], [ -81.971647037999958, 28.941649066000025 ], [ -81.971665974999951, 28.941660177000074 ], [ -81.971681138999941, 28.941670324000029 ], [ -81.971692503999975, 28.941687828000056 ], [ -81.971699603, 28.941707830000041 ], [ -81.97169959699994, 28.941730331000031 ], [ -81.971692485999938, 28.941754080000067 ], [ -81.971676846999969, 28.941775173000053 ], [ -81.971556794999969, 28.941850860000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973691899999949, 28.942944363000038 ], [ -81.974182476999943, 28.943395267000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974310282999966, 28.94351273500007 ], [ -81.974531178999939, 28.943715763000057 ], [ -81.974558616999957, 28.943750474000069 ], [ -81.974574047999965, 28.943782164000027 ], [ -81.974586043999977, 28.943831960000068 ], [ -81.974617507999938, 28.94402076800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974182476999943, 28.943395267000028 ], [ -81.974310282999966, 28.94351273500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974182476999943, 28.943395267000028 ], [ -81.974108863999959, 28.943479731000025 ], [ -81.974089059999983, 28.943508750000035 ], [ -81.974082456999952, 28.943533125000044 ], [ -81.974078490999943, 28.943557502000033 ], [ -81.974083765999978, 28.943576077000046 ], [ -81.974103555999989, 28.943596975000048 ], [ -81.974124667999945, 28.943610910000075 ], [ -81.974151058999951, 28.943619040000044 ], [ -81.974181413999986, 28.943616724000037 ], [ -81.974202531999936, 28.943605120000029 ], [ -81.974234209999963, 28.943587714000046 ], [ -81.974310282999966, 28.94351273500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992167194999979, 28.946286755000074 ], [ -81.992118606999952, 28.946332187000053 ], [ -81.99207241199997, 28.946384401000046 ], [ -81.992010437999966, 28.946470433000059 ], [ -81.991953229999979, 28.946567913000024 ], [ -81.991910318999942, 28.946674827000038 ], [ -81.991888858999971, 28.946791176000033 ], [ -81.991878118999978, 28.946986142000071 ], [ -81.99187810899997, 28.947115072000031 ], [ -81.991881670999987, 28.947278592000032 ], [ -81.991860213999985, 28.947354061000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995596279999972, 28.94603349700003 ], [ -81.995499753, 28.946030349000068 ], [ -81.995217320999984, 28.94603033900006 ], [ -81.994852662999961, 28.946030326000027 ], [ -81.99430209999997, 28.946030304000033 ], [ -81.99380516399998, 28.946030282000038 ], [ -81.993326102999958, 28.946030259000054 ], [ -81.992950717999975, 28.946030240000027 ], [ -81.992800509999938, 28.946035641000037 ], [ -81.992690710999966, 28.94604688700008 ], [ -81.992623552999987, 28.946058135000044 ], [ -81.992546889999971, 28.946075244000042 ], [ -81.992466848999982, 28.946101257000066 ], [ -81.992391004999945, 28.946134732000075 ], [ -81.992316538999944, 28.946176260000072 ], [ -81.992281803999958, 28.946201319000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992281803999958, 28.946201319000068 ], [ -81.992180085999962, 28.946274702000039 ], [ -81.992167194999979, 28.946286755000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992281803999958, 28.946201319000068 ], [ -81.992218475999948, 28.946080615000028 ], [ -81.992197157999954, 28.946043108000026 ], [ -81.992180104999989, 28.946022479000078 ], [ -81.992157717999987, 28.946015913000053 ], [ -81.992133200999945, 28.946009349000065 ], [ -81.992107617999977, 28.946010285000057 ], [ -81.992083098999956, 28.946014035000076 ], [ -81.992061777999936, 28.946024348000037 ], [ -81.992042588999936, 28.946038410000028 ], [ -81.992028729999959, 28.946057162000045 ], [ -81.992017001999955, 28.94608435300006 ], [ -81.992015933999937, 28.946111544000075 ], [ -81.99202126299997, 28.94613686200006 ], [ -81.992031920999978, 28.94615092600003 ], [ -81.992053239999962, 28.946167804000027 ], [ -81.99208095399996, 28.946187498000029 ], [ -81.992113997999979, 28.94621937900007 ], [ -81.992167194999979, 28.946286755000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003399401999957, 28.950578910000047 ], [ -82.003426134999984, 28.950550168000063 ], [ -82.003472177999981, 28.950495299000067 ], [ -82.003528614999937, 28.950427366000042 ], [ -82.003611787999944, 28.950325465000049 ], [ -82.003754369999967, 28.950156937000031 ], [ -82.003785604999962, 28.950118585000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003882897999972, 28.949999130000037 ], [ -82.003896948999966, 28.949981879000063 ], [ -82.003984575999937, 28.949873446000026 ], [ -82.004020220999962, 28.949827722000066 ], [ -82.004052893999983, 28.949781998000049 ], [ -82.004084082999952, 28.949731047000057 ], [ -82.004115270999989, 28.94966442100008 ], [ -82.004201407999972, 28.94945017200007 ], [ -82.00424447599994, 28.949331289000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003785604999962, 28.950118585000041 ], [ -82.003834795999978, 28.950058191000039 ], [ -82.003882897999972, 28.949999130000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003785604999962, 28.950118585000041 ], [ -82.003769606999981, 28.950098193000031 ], [ -82.003753395999979, 28.95007626000006 ], [ -82.003727210999955, 28.950048843000047 ], [ -82.003689803999976, 28.950031298000056 ], [ -82.003655508999941, 28.950022534000027 ], [ -82.003629953999962, 28.950015945000075 ], [ -82.00360515899996, 28.950011263000079 ], [ -82.003586313999961, 28.949997303000032 ], [ -82.00356762399997, 28.949974226000052 ], [ -82.003560125999968, 28.949946857000043 ], [ -82.003562618999979, 28.949913954000067 ], [ -82.003575086999945, 28.949887634000049 ], [ -82.003595036999968, 28.949862410000037 ], [ -82.003617478999956, 28.949850345000073 ], [ -82.003649898999981, 28.949844861000031 ], [ -82.00367982299997, 28.949845957000036 ], [ -82.003709749999985, 28.949859117000074 ], [ -82.003737180999963, 28.94988653300004 ], [ -82.003767105999941, 28.949929302000044 ], [ -82.003800145999946, 28.949956506000035 ], [ -82.003882897999972, 28.949999130000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997484253999971, 28.955704421000064 ], [ -81.99738251499997, 28.955820143000039 ], [ -81.997314501999938, 28.955876864000061 ], [ -81.997190589999946, 28.955960692000076 ], [ -81.997076260999961, 28.956022619000066 ], [ -81.996930574999965, 28.95608313200006 ], [ -81.99680363799996, 28.956119141000045 ], [ -81.996697174999952, 28.956138947000056 ], [ -81.996610380999982, 28.956148812000038 ], [ -81.99653634699996, 28.956153226000026 ], [ -81.99647611599994, 28.956155982000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997724674999972, 28.95481637000006 ], [ -81.997725265999975, 28.954933015000051 ], [ -81.99772526299995, 28.955064596000057 ], [ -81.997724348999952, 28.955134317000045 ], [ -81.997715746999972, 28.955209947000071 ], [ -81.997701985999981, 28.955289750000077 ], [ -81.997675386999958, 28.955383321000056 ], [ -81.997640498999942, 28.955463653000038 ], [ -81.997606882999946, 28.955531031000078 ], [ -81.99756899099998, 28.95558576600007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99756899099998, 28.95558576600007 ], [ -81.997522853999953, 28.955652411000074 ], [ -81.997496456999954, 28.955690541000024 ], [ -81.997484253999971, 28.955704421000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99756899099998, 28.95558576600007 ], [ -81.99745541599998, 28.955505879000043 ], [ -81.997410188999936, 28.955467342000077 ], [ -81.997365578999961, 28.955446946000052 ], [ -81.997331392999968, 28.955441353000026 ], [ -81.997302771999955, 28.955446247000054 ], [ -81.997273354999948, 28.955458133000036 ], [ -81.997250297999983, 28.955484704000071 ], [ -81.997241552999981, 28.955516169000077 ], [ -81.997239961999981, 28.955547635000073 ], [ -81.997251885999958, 28.955579101000069 ], [ -81.997272555999984, 28.955602175000024 ], [ -81.997299940999937, 28.955616511000073 ], [ -81.997336157999939, 28.955622456000071 ], [ -81.997374849999972, 28.955631430000039 ], [ -81.997424316999968, 28.955657535000057 ], [ -81.997484253999971, 28.955704421000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995072272999948, 28.953409499000031 ], [ -81.994864683999936, 28.953203804000054 ], [ -81.994746475999989, 28.953149243000041 ], [ -81.994603519999941, 28.953131694000035 ], [ -81.994543453999938, 28.953137644000037 ], [ -81.994493806999969, 28.953152158000023 ], [ -81.994433819999983, 28.953171501000043 ], [ -81.994402516999969, 28.95318102300007 ], [ -81.994380200999956, 28.95319341700008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994315602999961, 28.953252294000038 ], [ -81.994276842999966, 28.953304974000048 ], [ -81.994198994999977, 28.953410766000047 ], [ -81.994064504999983, 28.953605921000076 ], [ -81.993559526999945, 28.954289583000048 ], [ -81.993542900999955, 28.954362682000067 ], [ -81.993532921999986, 28.954432860000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994380200999956, 28.95319341700008 ], [ -81.994310912999936, 28.953105612000058 ], [ -81.994302693999941, 28.953069457000026 ], [ -81.994290949999936, 28.95303536800003 ], [ -81.994274510999958, 28.953011609000043 ], [ -81.994242800999984, 28.952989916000035 ], [ -81.994214613999986, 28.952981651000073 ], [ -81.994187601999954, 28.952983716000062 ], [ -81.994165286999987, 28.952988879000031 ], [ -81.994140621999975, 28.953000240000051 ], [ -81.994124177999936, 28.953013669000029 ], [ -81.994110083999942, 28.953032262000079 ], [ -81.994099512999981, 28.953057053000066 ], [ -81.994099511999934, 28.953084943000079 ], [ -81.994105381999987, 28.953109735000055 ], [ -81.994119473999945, 28.953133494000042 ], [ -81.994144135999989, 28.953153121000071 ], [ -81.994173497999952, 28.953163452000069 ], [ -81.994225173999951, 28.953173785000047 ], [ -81.994315602999961, 28.953252294000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994380200999956, 28.95319341700008 ], [ -81.994315602999961, 28.953252294000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989730530999964, 28.951281 ], [ -81.989622018999967, 28.951240461000054 ], [ -81.989421345999972, 28.951178996000067 ], [ -81.989234050999983, 28.951137143000039 ], [ -81.989048240999978, 28.95110705500008 ], [ -81.988866885999983, 28.951093965000041 ], [ -81.988704856999959, 28.951087414000028 ], [ -81.98851323599996, 28.951092437000057 ], [ -81.988342260999957, 28.951104634000046 ], [ -81.988139578999949, 28.951131625000073 ], [ -81.987972211999988, 28.951168075000055 ], [ -81.987809449999986, 28.951209925000057 ], [ -81.987612905999981, 28.951274731000069 ], [ -81.98739025499998, 28.951370596000061 ], [ -81.98722891999995, 28.95145334800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986967658999959, 28.951612428000033 ], [ -81.986827602999938, 28.95172232300007 ], [ -81.986755522999943, 28.951785708000045 ], [ -81.986635559999968, 28.951888128000064 ], [ -81.986597850999942, 28.951944498000046 ], [ -81.986586533999969, 28.951997555000048 ], [ -81.986594064999963, 28.952060561000053 ], [ -81.986612910999952, 28.952106988000025 ], [ -81.986648197999955, 28.952152729000034 ], [ -81.986676921999958, 28.952182984000046 ], [ -81.986718542999938, 28.952223899000046 ], [ -81.986752389999936, 28.952262859000029 ], [ -81.986808937999967, 28.952312605000031 ], [ -81.986854174999962, 28.952359035000029 ], [ -81.986910724999973, 28.952402150000069 ], [ -81.986955962999957, 28.952435315000059 ], [ -81.98702005399997, 28.952468483000075 ], [ -81.987091687999964, 28.952481753000029 ], [ -81.98717086299996, 28.952475129000049 ], [ -81.987246273999972, 28.952441976000046 ], [ -81.987306604999958, 28.952392239000062 ], [ -81.987374474999967, 28.952339188000053 ], [ -81.987529072999962, 28.952203243000042 ], [ -81.987736458999962, 28.952024192000067 ], [ -81.987815642999976, 28.951961194000035 ], [ -81.987875971999983, 28.951911458000041 ], [ -81.987936299999944, 28.951874986000064 ], [ -81.988004167999975, 28.951841831000024 ], [ -81.988087116999964, 28.951825258000042 ], [ -81.988159097999983, 28.951814596000077 ], [ -81.98823740399996, 28.951801634000049 ], [ -81.988331547999962, 28.951788728000054 ], [ -81.988408417999949, 28.951777340000035 ], [ -81.988488053999959, 28.951765038000076 ], [ -81.988569928999937, 28.951754565000044 ], [ -81.98865716399996, 28.951743936000071 ], [ -81.988728067999944, 28.951742411000055 ], [ -81.988797944999988, 28.951746228000047 ], [ -81.988850628999955, 28.951755347000073 ], [ -81.988900720999936, 28.951772064000068 ], [ -81.988952540999946, 28.951795617000073 ], [ -81.989023356999951, 28.951846519000071 ], [ -81.989093309999987, 28.95190653800006 ], [ -81.989182260999939, 28.951990867000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98722891999995, 28.95145334800003 ], [ -81.987163444999965, 28.951486931000034 ], [ -81.986994933999938, 28.951591027000063 ], [ -81.986967658999959, 28.951612428000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98722891999995, 28.95145334800003 ], [ -81.987220167999965, 28.951557089000062 ], [ -81.987211153999965, 28.951601236000045 ], [ -81.987191844999984, 28.95162840200004 ], [ -81.987169964999964, 28.951640853000072 ], [ -81.987130064999974, 28.951648773000045 ], [ -81.987079870999935, 28.951647635000029 ], [ -81.987032252999938, 28.951637443000038 ], [ -81.986967658999959, 28.951612428000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99083974499996, 28.952524499000049 ], [ -81.990838741999937, 28.952646053000024 ], [ -81.99083658099994, 28.952756062000049 ], [ -81.990831759999935, 28.952976160000048 ], [ -81.99081290099997, 28.953065693000042 ], [ -81.990767649999952, 28.953148592000048 ], [ -81.990688464999948, 28.953238121000027 ], [ -81.99062059399995, 28.953297807000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991043075999983, 28.951809307000076 ], [ -81.990936029999943, 28.952008034000073 ], [ -81.990895885999976, 28.952099553000039 ], [ -81.990869120999946, 28.952175384000043 ], [ -81.990852762999964, 28.952262983000026 ], [ -81.990848134999965, 28.952341946000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990848134999965, 28.952341946000047 ], [ -81.990840122999941, 28.952478635000034 ], [ -81.99083974499996, 28.952524499000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990848134999965, 28.952341946000047 ], [ -81.99075290899998, 28.952341916000023 ], [ -81.990721342999962, 28.952349388000073 ], [ -81.990694631999986, 28.952363268000056 ], [ -81.990678848999949, 28.95238355500004 ], [ -81.990666704999967, 28.952411318000031 ], [ -81.99066548899998, 28.952433742000039 ], [ -81.990671556999985, 28.952459370000042 ], [ -81.990683694999973, 28.952479659000062 ], [ -81.990705546999948, 28.952497814000026 ], [ -81.990737111999977, 28.952513833000069 ], [ -81.990777173999959, 28.952526649000049 ], [ -81.99083974499996, 28.952524499000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001590225999962, 28.940706818000024 ], [ -82.001687474999983, 28.940705391000051 ], [ -82.001743055999953, 28.940693614000054 ], [ -82.00178310299998, 28.940679726000042 ], [ -82.00182362299995, 28.940678300000059 ], [ -82.001862521999954, 28.940684002000069 ], [ -82.001891697999952, 28.940705388000026 ], [ -82.00191277, 28.940731050000068 ], [ -82.00192087399995, 28.94076384300007 ], [ -82.00191601299997, 28.940796634000037 ], [ -82.001899804999937, 28.940825150000023 ], [ -82.001880353999979, 28.940846536000038 ], [ -82.001852800999984, 28.940857941000047 ], [ -82.001820384999974, 28.94086079300007 ], [ -82.001778243999979, 28.940850814000044 ], [ -82.001749067999981, 28.940835131000028 ], [ -82.00172151299995, 28.940829429000075 ], [ -82.001604814999951, 28.940835133000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001604814999951, 28.940835133000064 ], [ -82.001603194999973, 28.94087362700003 ], [ -82.001603196999952, 28.94100194400005 ], [ -82.00160860699998, 28.941543770000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001590225999962, 28.940706818000024 ], [ -82.001596227999983, 28.940721754000037 ], [ -82.001600330999963, 28.940738595000028 ], [ -82.001604432999954, 28.940765061000036 ], [ -82.001604814999951, 28.940835133000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000883571999964, 28.940703362000079 ], [ -82.001553832999946, 28.940697696000029 ], [ -82.001579816999936, 28.940701304000072 ], [ -82.001590225999962, 28.940706818000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001329128999942, 28.934000192000042 ], [ -82.001524026999959, 28.934168656000054 ], [ -82.001547752999954, 28.934186547000024 ], [ -82.001569785999948, 28.934207418000028 ], [ -82.001588427999934, 28.934231271000044 ], [ -82.001601986999958, 28.93425512500005 ], [ -82.001615545999982, 28.934286433000068 ], [ -82.001620629999934, 28.93431774000004 ], [ -82.001625713999942, 28.934359485000073 ], [ -82.001618424999947, 28.936256058000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001618424999947, 28.936256058000026 ], [ -82.001617844999942, 28.936406920000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001618424999947, 28.936256058000026 ], [ -82.001716365999982, 28.936257279000074 ], [ -82.001761947999967, 28.936252059000026 ], [ -82.001796654999964, 28.936250953000069 ], [ -82.001825415999974, 28.936253061000059 ], [ -82.001856572999941, 28.936262548000059 ], [ -82.001879341999938, 28.936279413000079 ], [ -82.001897317999976, 28.936298388000068 ], [ -82.001905705999945, 28.936323689000062 ], [ -82.001905706999935, 28.936351096000067 ], [ -82.001900914999965, 28.936379559000045 ], [ -82.001888930999939, 28.936399588000029 ], [ -82.001869757999941, 28.936416454000039 ], [ -82.001845790999937, 28.936426997000069 ], [ -82.001818229999969, 28.936433322000028 ], [ -82.001791864999973, 28.936433323000074 ], [ -82.001770295999961, 28.936428051000064 ], [ -82.001747525999974, 28.936412240000038 ], [ -82.001713632999952, 28.936408879000055 ], [ -82.001617844999942, 28.936406920000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006313166999973, 28.944042019000051 ], [ -82.006259024999963, 28.944181311000079 ], [ -82.006162113999949, 28.944466495000029 ], [ -82.006083382999975, 28.944778126000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006732073999956, 28.943252608000023 ], [ -82.006614942999988, 28.94343894800005 ], [ -82.006494629999963, 28.943649163000032 ], [ -82.006414422999967, 28.943812336000065 ], [ -82.006363743999941, 28.943923251000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006363743999941, 28.943923251000058 ], [ -82.006334181999989, 28.943987953000033 ], [ -82.006313166999973, 28.944042019000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006363743999941, 28.943923251000058 ], [ -82.006234499999948, 28.943867538000063 ], [ -82.006214504999946, 28.943844600000034 ], [ -82.006191901999955, 28.943822426000054 ], [ -82.006170169999962, 28.943814782000061 ], [ -82.006145827999944, 28.943812489000038 ], [ -82.006119749999982, 28.943815549000078 ], [ -82.006089324999948, 28.943825490000052 ], [ -82.006066723999936, 28.943837725000037 ], [ -82.006053685999973, 28.943857606000051 ], [ -82.00604586299994, 28.943882076000079 ], [ -82.00603978099997, 28.943906544000072 ], [ -82.006039781999959, 28.943929484000023 ], [ -82.006049344999951, 28.943950129000029 ], [ -82.006063447999964, 28.94397034900004 ], [ -82.006086049999965, 28.943984875000069 ], [ -82.006106044999967, 28.943993286000079 ], [ -82.006130384999949, 28.943996343000038 ], [ -82.006156464999947, 28.943997872000068 ], [ -82.006189304999964, 28.943995237000024 ], [ -82.006206689999942, 28.943995999000038 ], [ -82.006313166999973, 28.944042019000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009489396999982, 28.948968813000079 ], [ -82.009553023999956, 28.948974964000058 ], [ -82.009792122999954, 28.948996546000046 ], [ -82.010278077999942, 28.949041980000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008528600999966, 28.948694376000049 ], [ -82.008809700999961, 28.948820455000032 ], [ -82.008926763999966, 28.948874419000049 ], [ -82.008985646999975, 28.948897703000057 ], [ -82.009043806999955, 28.948913614000048 ], [ -82.009107136999944, 28.948926115000063 ], [ -82.00916787999995, 28.948936340000046 ], [ -82.009294539999985, 28.948949974000072 ], [ -82.009301131999962, 28.948950611000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009301131999962, 28.948950611000043 ], [ -82.009489396999982, 28.948968813000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009301131999962, 28.948950611000043 ], [ -82.009283546999939, 28.949016814000061 ], [ -82.009278523999967, 28.949056602000041 ], [ -82.00928229699997, 28.949086443000056 ], [ -82.009297377999985, 28.949116282000034 ], [ -82.009317483999951, 28.949131754000064 ], [ -82.009340102999943, 28.949142804000076 ], [ -82.00936649099998, 28.949149434000049 ], [ -82.009384082999986, 28.949150538000026 ], [ -82.009404187999962, 28.949147221000032 ], [ -82.009428060999937, 28.949141694000048 ], [ -82.00945067899994, 28.949127323000027 ], [ -82.009464498999989, 28.949114060000056 ], [ -82.009478317999935, 28.949096376000057 ], [ -82.009488368999939, 28.949068745000034 ], [ -82.009490877999951, 28.949035588000072 ], [ -82.009489396999982, 28.948968813000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010087173999977, 28.953919407000058 ], [ -82.010170140999946, 28.953925317000028 ], [ -82.010187772999984, 28.953926185000057 ], [ -82.010335344999987, 28.953937406000023 ], [ -82.010450283999944, 28.953949877000071 ], [ -82.010514137999962, 28.953957360000061 ], [ -82.010559546999957, 28.953968589000056 ], [ -82.010606374999952, 28.953988553000045 ], [ -82.01067448799995, 28.954024741000069 ], [ -82.010832674999961, 28.954117038000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009162979999985, 28.954125152000074 ], [ -82.00935977499995, 28.954068926000048 ], [ -82.009502633999944, 28.954030757000055 ], [ -82.00961461199995, 28.953997745000038 ], [ -82.009754989999976, 28.953961162000041 ], [ -82.009898302999943, 28.953929951000077 ], [ -82.009960735999982, 28.953922459000069 ], [ -82.010087173999977, 28.953919407000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010854521999988, 28.954088006000063 ], [ -82.010832674999961, 28.954117038000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011232632999963, 28.95327452500004 ], [ -82.011218866999968, 28.953349232000051 ], [ -82.011202802999946, 28.95340778800005 ], [ -82.011184818999936, 28.953474684000071 ], [ -82.011163014999966, 28.953546302000063 ], [ -82.011138302999939, 28.95361280700007 ], [ -82.011109228999942, 28.953683148000039 ], [ -82.011072884999976, 28.953758605000075 ], [ -82.011037994999981, 28.953816158000052 ], [ -82.01099874199997, 28.953882662000069 ], [ -82.010993371999973, 28.95389080700005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010993371999973, 28.95389080700005 ], [ -82.010956580999959, 28.95394660900007 ], [ -82.010933318999946, 28.953979863000029 ], [ -82.010889703999965, 28.954041252000025 ], [ -82.010854521999988, 28.954088006000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010993371999973, 28.95389080700005 ], [ -82.011057980999965, 28.953982757000063 ], [ -82.011074572999973, 28.954019661000075 ], [ -82.011077503999957, 28.954049699000052 ], [ -82.011074578999967, 28.954070296000054 ], [ -82.011065798999937, 28.954090037000071 ], [ -82.011055065999983, 28.954102053000042 ], [ -82.011039453999956, 28.954111496000053 ], [ -82.011021890999984, 28.954120937000027 ], [ -82.010992617999989, 28.954129523000063 ], [ -82.010967611999945, 28.954130275000068 ], [ -82.010941996999975, 28.954127702000051 ], [ -82.010919308999974, 28.954121911000072 ], [ -82.010854521999988, 28.954088006000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010962138999957, 28.955117700000073 ], [ -82.010991501999968, 28.955150416000038 ], [ -82.011052953999979, 28.955205655000043 ], [ -82.011089824999942, 28.955229671000041 ], [ -82.011128060999965, 28.955245281000032 ], [ -82.011173122999935, 28.955251282000063 ], [ -82.011231839999937, 28.955253678000076 ], [ -82.011586867999938, 28.955253648000053 ], [ -82.011760286999959, 28.955256036000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010803059999944, 28.95494046500005 ], [ -82.010962138999957, 28.955117700000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010730662999947, 28.954859802000044 ], [ -82.010803059999944, 28.95494046500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010803059999944, 28.95494046500005 ], [ -82.01085250999995, 28.954914902000041 ], [ -82.01087752799998, 28.954907859000059 ], [ -82.010900547999938, 28.954901695000046 ], [ -82.010932571999945, 28.954901693000068 ], [ -82.010954589999983, 28.95490697200006 ], [ -82.010981611999966, 28.95491841300003 ], [ -82.010995625999954, 28.954931615000078 ], [ -82.011013641999966, 28.954952739000078 ], [ -82.011024653999982, 28.954979145000038 ], [ -82.011027658999978, 28.955003791000024 ], [ -82.011021656999958, 28.955031077000058 ], [ -82.011011649999944, 28.955050443000061 ], [ -82.010994638999989, 28.95507157000003 ], [ -82.010962138999957, 28.955117700000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012723973999982, 28.935956803000067 ], [ -82.012672112999951, 28.936028581000073 ], [ -82.012541159999955, 28.936236317000066 ], [ -82.012438805999977, 28.936406741000042 ], [ -82.01237331599998, 28.93652379100007 ], [ -82.012344666999979, 28.936586816000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013180580999972, 28.934592869000028 ], [ -82.013191879999965, 28.934759064000048 ], [ -82.013179561999948, 28.934951564000073 ], [ -82.013144852999972, 28.935176822000074 ], [ -82.013118255999984, 28.935283063000043 ], [ -82.013083471999948, 28.935387505000051 ], [ -82.013036405999969, 28.935499151000045 ], [ -82.012987290999945, 28.935589188000051 ], [ -82.012854261999962, 28.935776471000054 ], [ -82.012836110999956, 28.935801592000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012836110999956, 28.935801592000075 ], [ -82.012723973999982, 28.935956803000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012836110999956, 28.935801592000075 ], [ -82.012904229999947, 28.935868867000067 ], [ -82.012923472999944, 28.935880148000024 ], [ -82.012950019999948, 28.935896601000024 ], [ -82.012968371999989, 28.935906473000045 ], [ -82.012984230999962, 28.935927942000035 ], [ -82.012997061999954, 28.935956778000048 ], [ -82.012999381999975, 28.935984518000055 ], [ -82.012994038999977, 28.936005205000072 ], [ -82.012983351999935, 28.936024952000025 ], [ -82.012966251999956, 28.936044701000071 ], [ -82.012941667999939, 28.936058808000041 ], [ -82.012914944999977, 28.936064452000039 ], [ -82.012887151999962, 28.936066336000067 ], [ -82.012857221, 28.936056936000057 ], [ -82.012833167999986, 28.936044558000049 ], [ -82.012808936999988, 28.936027007000064 ], [ -82.012723973999982, 28.935956803000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007873554999946, 28.923880019000023 ], [ -82.007933992999938, 28.923827562000042 ], [ -82.007995893999976, 28.923773088000075 ], [ -82.008138679999945, 28.923659608000037 ], [ -82.00818785499996, 28.923611852000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008283896999956, 28.923480874000063 ], [ -82.008290120999959, 28.923470495000061 ], [ -82.008311393999975, 28.923414420000029 ], [ -82.008339495999962, 28.923281103000079 ], [ -82.008400224999946, 28.922887819000039 ], [ -82.008440308, 28.922638355000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00818785499996, 28.923611852000079 ], [ -82.008192190999978, 28.923607643000025 ], [ -82.008241846999965, 28.92354817100005 ], [ -82.008263915999976, 28.92351418800007 ], [ -82.008283896999956, 28.923480874000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00818785499996, 28.923611852000079 ], [ -82.008243752999988, 28.923664833000032 ], [ -82.008277896999971, 28.923691228000052 ], [ -82.008312039999964, 28.923706699000036 ], [ -82.008344113999954, 28.923712158000058 ], [ -82.00837411599997, 28.923711246000039 ], [ -82.008396878999974, 28.923705783000059 ], [ -82.008414465999977, 28.923700321000069 ], [ -82.00842791499997, 28.923685756000054 ], [ -82.008443431999979, 28.923667550000062 ], [ -82.008452742999964, 28.923645705000069 ], [ -82.008454807999954, 28.923615667000036 ], [ -82.00844239099996, 28.92358745100006 ], [ -82.00841134999996, 28.923555595000039 ], [ -82.008346166999956, 28.923519190000036 ], [ -82.008283896999956, 28.923480874000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007572807999964, 28.924169243000051 ], [ -82.007643458999951, 28.924194229000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007572807999964, 28.924169243000051 ], [ -82.007540835999976, 28.924260798000034 ], [ -82.007535384999983, 28.924291980000078 ], [ -82.007531467999968, 28.924322713000038 ], [ -82.007536580999954, 28.924349697000025 ], [ -82.007548852999946, 28.924367686000039 ], [ -82.007568107999987, 28.924383125000077 ], [ -82.007589920999976, 28.924393918000078 ], [ -82.00761173099994, 28.924399914000048 ], [ -82.007637802999966, 28.924404559000038 ], [ -82.007668984999952, 28.924399910000034 ], [ -82.007696247999945, 28.924386716000072 ], [ -82.007724871999983, 28.924351934000072 ], [ -82.007786256999964, 28.924254861000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009509363999939, 28.921016568000027 ], [ -82.00956585199998, 28.92101656400007 ], [ -82.009688543999971, 28.921016555000051 ], [ -82.009849139999972, 28.921018262000075 ], [ -82.010025950999989, 28.921018249000042 ], [ -82.01015958399995, 28.921018239000034 ], [ -82.010246131999963, 28.921019608000051 ], [ -82.010398721999934, 28.921018164000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009354755999937, 28.921018298000035 ], [ -82.009388845999979, 28.921018295000067 ], [ -82.009477347999962, 28.921016570000063 ], [ -82.009509363999939, 28.921016568000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009354755999937, 28.921018298000035 ], [ -82.009355734999986, 28.921109146000049 ], [ -82.009343914999988, 28.921137748000035 ], [ -82.009337314999982, 28.92116988500004 ], [ -82.009339810999961, 28.921204257000056 ], [ -82.009349788999941, 28.921232778000046 ], [ -82.009373479999965, 28.921253456000045 ], [ -82.009404512999936, 28.921263855000063 ], [ -82.009438500999977, 28.921267753000052 ], [ -82.009472811999956, 28.921262022000064 ], [ -82.009503565999978, 28.921240811000075 ], [ -82.009523511999987, 28.921215214000028 ], [ -82.009532651999962, 28.921190349000028 ], [ -82.009534312999961, 28.921162558000049 ], [ -82.009524334999981, 28.921131845000048 ], [ -82.009509417999936, 28.92110393300004 ], [ -82.009509363999939, 28.921016568000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008539645999974, 28.920940058000042 ], [ -82.008513587999971, 28.920974818000047 ], [ -82.008494112999983, 28.92100401700003 ], [ -82.008479049999949, 28.921035172000074 ], [ -82.008468646999972, 28.921067769000047 ], [ -82.008466731999988, 28.921081193000077 ], [ -82.008467479999979, 28.921094707000066 ], [ -82.008470867999961, 28.921107904000053 ], [ -82.008476792999943, 28.921120388000077 ], [ -82.008485078999968, 28.921131786000046 ], [ -82.00849547599995, 28.921141754000075 ], [ -82.008507674999976, 28.921149994000075 ], [ -82.008521304999988, 28.921156257000064 ], [ -82.008535959999961, 28.921160357000076 ], [ -82.008551198999953, 28.921162170000059 ], [ -82.008566563999977, 28.921161642000072 ], [ -82.008581595999942, 28.921158788000071 ], [ -82.008595842999966, 28.921153693000065 ], [ -82.008608875999983, 28.921146513000053 ], [ -82.008628084999941, 28.921130016000063 ], [ -82.008643781999979, 28.921110858000077 ], [ -82.008655499999975, 28.921089609000035 ], [ -82.008662887999947, 28.921066905000032 ], [ -82.008665726999936, 28.921043420000046 ], [ -82.008672830999956, 28.921009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008672830999956, 28.921009 ], [ -82.008728468999948, 28.921014930000069 ], [ -82.008777977999955, 28.921016154000029 ], [ -82.008827741999937, 28.921016614000052 ], [ -82.008919760999959, 28.921014889000048 ], [ -82.009056910999959, 28.921016599000041 ], [ -82.009168857999953, 28.921016592000058 ], [ -82.009282368999948, 28.921018303000039 ], [ -82.009354755999937, 28.921018298000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008539645999974, 28.920940058000042 ], [ -82.008569867999938, 28.920967095000037 ], [ -82.00858984599995, 28.920981066000024 ], [ -82.0086088, 28.920991880000031 ], [ -82.008626727999967, 28.920999540000025 ], [ -82.008642852999969, 28.921004028000027 ], [ -82.008661288999974, 28.921007477000046 ], [ -82.008672830999956, 28.921009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008495167999968, 28.920380305000037 ], [ -82.008486595999955, 28.92066907800006 ], [ -82.008484840999984, 28.920716519000052 ], [ -82.008484845999988, 28.920765680000045 ], [ -82.008488366999984, 28.920814839000059 ], [ -82.008492222999962, 28.920849438000062 ], [ -82.008497322999972, 28.920868762000055 ], [ -82.008502422999982, 28.920886361000044 ], [ -82.008511838999937, 28.920904650000068 ], [ -82.008525073999976, 28.920924229000036 ], [ -82.008539645999974, 28.920940058000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985953416999962, 28.910242808000078 ], [ -81.985959924999975, 28.910285797000029 ], [ -81.985972758999935, 28.910327797000036 ], [ -81.986001463999969, 28.910420620000025 ], [ -81.986020790999987, 28.910503473000063 ], [ -81.986037583999973, 28.910562604000063 ], [ -81.98604968799998, 28.910615547000077 ], [ -81.986059252999951, 28.910672615000067 ], [ -81.986071158999948, 28.91074652900005 ], [ -81.986080914999945, 28.910837631000049 ], [ -81.986092818999964, 28.910934921000035 ], [ -81.986097692999977, 28.911007114000029 ], [ -81.986100025999974, 28.911085153000045 ], [ -81.98609767399995, 28.911146689000077 ], [ -81.986100011999952, 28.911201694000056 ], [ -81.986099387999957, 28.911343987000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986099387999957, 28.911343987000066 ], [ -81.986152933999961, 28.911343334000037 ], [ -81.986273266999945, 28.911358130000053 ], [ -81.986381488999939, 28.911385986000028 ], [ -81.986479945999974, 28.911406966000072 ], [ -81.986571367999943, 28.911423820000039 ], [ -81.986641106999969, 28.911432422000075 ], [ -81.986722958999962, 28.911438618000034 ], [ -81.986814383999956, 28.911445159000039 ], [ -81.986869668999987, 28.911445164000042 ], [ -81.986932182999965, 28.911432450000063 ], [ -81.986961095999959, 28.911423859000024 ], [ -81.987014040999952, 28.91139430000004 ], [ -81.987042761999987, 28.911362675000078 ], [ -81.987081254999964, 28.911299080000049 ], [ -81.987086139999974, 28.911275704000047 ], [ -81.987093378999987, 28.911195260000056 ], [ -81.987100619999978, 28.911089721000053 ], [ -81.98710297599996, 28.910994494000079 ], [ -81.987107873999946, 28.910875892000035 ], [ -81.987112578999984, 28.910744570000077 ], [ -81.987115134999954, 28.910611527000071 ], [ -81.987115148999976, 28.910499113000071 ], [ -81.987103044999969, 28.91043791900006 ], [ -81.987066915999947, 28.910344753000061 ], [ -81.987035666999986, 28.910289746000046 ], [ -81.986980391999964, 28.910219952000034 ], [ -81.986937225999952, 28.910175257000049 ], [ -81.986879405999957, 28.910130904000027 ], [ -81.986819242999957, 28.910092739000049 ], [ -81.986739934999946, 28.910059041000068 ], [ -81.986677425999972, 28.910037720000048 ], [ -81.986581119999983, 28.910020866000025 ], [ -81.986460981999983, 28.910018791000027 ], [ -81.986333416999969, 28.910022904000073 ], [ -81.986234958999944, 28.91002736300004 ], [ -81.986107392999941, 28.910052446000066 ], [ -81.986054448999937, 28.910073754000052 ], [ -81.986017136999976, 28.910100807000049 ], [ -81.985991929999955, 28.910128752000048 ], [ -81.985972862999972, 28.910158540000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985972862999972, 28.910158540000054 ], [ -81.985970032999944, 28.910162960000036 ], [ -81.985958254999957, 28.910201439000048 ], [ -81.985953202999951, 28.910241398000039 ], [ -81.985953416999962, 28.910242808000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985972862999972, 28.910158540000054 ], [ -81.985852676999968, 28.910128478000047 ], [ -81.985832247999952, 28.910102325000025 ], [ -81.985798816999989, 28.910078623000061 ], [ -81.985766311999953, 28.910073717000046 ], [ -81.985737520999976, 28.910072896000031 ], [ -81.985714301999963, 28.910077797000042 ], [ -81.985687367999958, 28.910090869000044 ], [ -81.985670648999985, 28.910108846000071 ], [ -81.985657642999968, 28.910130093000078 ], [ -81.985655781999981, 28.910157059000028 ], [ -81.985657635999985, 28.910182392000024 ], [ -81.985671562999983, 28.910211812000057 ], [ -81.985695706999934, 28.910232245000032 ], [ -81.98572356699998, 28.910244506000026 ], [ -81.985757929999977, 28.910248596000031 ], [ -81.985789506999936, 28.910242878000076 ], [ -81.985830373999988, 28.910226539000064 ], [ -81.985953416999962, 28.910242808000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984244657999966, 28.91159308500005 ], [ -81.984332333999987, 28.911602107000078 ], [ -81.984425975999955, 28.911611981000078 ], [ -81.984486143999959, 28.911616112000047 ], [ -81.984575224999958, 28.911618530000055 ], [ -81.984697906999941, 28.911616137000067 ], [ -81.984818050999934, 28.911599305000038 ], [ -81.984890333999942, 28.911584530000027 ], [ -81.984986451999987, 28.911557039000058 ], [ -81.985082569999975, 28.911525422000068 ], [ -81.985176538999951, 28.911499993000064 ], [ -81.985224401999972, 28.911485216000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983462777999989, 28.912287731000049 ], [ -81.983471186999964, 28.912232041000038 ], [ -81.983490350999944, 28.912107252000055 ], [ -81.98350970599995, 28.912014090000071 ], [ -81.983526518999952, 28.911941899000055 ], [ -81.983557791999942, 28.911838426000031 ], [ -81.983608209999943, 28.911723954000024 ], [ -81.983637131999956, 28.911660703000052 ], [ -81.983678164999958, 28.911603641000056 ], [ -81.983707000999971, 28.911581992000038 ], [ -81.983750734999944, 28.911562758000059 ], [ -81.983793430999981, 28.911552775000075 ], [ -81.983841684999959, 28.911546249000025 ], [ -81.983892085999969, 28.911550724000051 ], [ -81.983966031999955, 28.911556864000033 ], [ -81.984045083999945, 28.911565753000048 ], [ -81.984102404999987, 28.911575101000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984102404999987, 28.911575101000039 ], [ -81.984135908999974, 28.911580564000076 ], [ -81.984235144999957, 28.91159241500003 ], [ -81.984244657999966, 28.91159308500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984102404999987, 28.911575101000039 ], [ -81.984116957999959, 28.911477733000027 ], [ -81.984104291999984, 28.91144085600007 ], [ -81.984094550999941, 28.911412555000027 ], [ -81.984092606, 28.911379966000027 ], [ -81.984098456999959, 28.911350810000044 ], [ -81.984116980999943, 28.911325085000044 ], [ -81.984140374999981, 28.911306221000075 ], [ -81.98417838599994, 28.911301080000044 ], [ -81.984211522999942, 28.911304514000051 ], [ -81.984248558, 28.911313094000036 ], [ -81.984269997999945, 28.911325103000024 ], [ -81.984285588999967, 28.911347401000057 ], [ -81.984296305999976, 28.911374846000058 ], [ -81.984295327999973, 28.911405718000026 ], [ -81.984281677999945, 28.91143573100004 ], [ -81.984262178999984, 28.911477750000074 ], [ -81.984244657999966, 28.91159308500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980128816, 28.91463331500006 ], [ -81.980185852999966, 28.914612598000076 ], [ -81.980289202999984, 28.914583049000044 ], [ -81.980358949999982, 28.914564152000025 ], [ -81.980469723999988, 28.91453666600006 ], [ -81.980599447999964, 28.914506775000063 ], [ -81.980724675999966, 28.914481698000031 ], [ -81.980825680999942, 28.914460398000074 ], [ -81.980931372999976, 28.914443568000024 ], [ -81.981015573999969, 28.914432923000049 ], [ -81.981080630999941, 28.91442433800006 ], [ -81.981193549999944, 28.914409571000078 ], [ -81.981277750999936, 28.914401332000068 ], [ -81.981359607999934, 28.914396874000033 ], [ -81.981427142999962, 28.914393605000043 ], [ -81.981498944999942, 28.914390290000028 ], [ -81.981561607999936, 28.914390715000025 ], [ -81.981638578999934, 28.914396913000076 ], [ -81.981693862999975, 28.914405515000055 ], [ -81.98174192, 28.914418241000078 ], [ -81.981787629999985, 28.914433029000065 ], [ -81.981818884999939, 28.914443691000031 ], [ -81.981855024999959, 28.914458478000029 ], [ -81.981922182999938, 28.914497858000061 ], [ -81.982006571999989, 28.914562153000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981626157999983, 28.916465669000047 ], [ -81.981588415999965, 28.91634048700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981626157999983, 28.916465669000047 ], [ -81.981759847999967, 28.916433166000047 ], [ -81.981797778999976, 28.916444680000041 ], [ -81.981830477999949, 28.916448137000032 ], [ -81.981863177999969, 28.916446991000043 ], [ -81.981889339999952, 28.916436636000071 ], [ -81.981910271999936, 28.916422397000076 ], [ -81.981927279999979, 28.916400966000026 ], [ -81.981933823999952, 28.91637449600006 ], [ -81.981933827999967, 28.91635148000006 ], [ -81.981925984999975, 28.916322707000063 ], [ -81.98191421699994, 28.916302421000069 ], [ -81.981898522999984, 28.916286883000055 ], [ -81.981876942999975, 28.91627393300007 ], [ -81.981855360999987, 28.916270910000037 ], [ -81.981827892999945, 28.916270906000079 ], [ -81.981796499999973, 28.916274353000063 ], [ -81.981774261999988, 28.91628240700004 ], [ -81.981753330999936, 28.916298515000051 ], [ -81.981737631999977, 28.916311172000064 ], [ -81.981724549999967, 28.916320379000069 ], [ -81.981588415999965, 28.91634048700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974143031999972, 28.898492775000079 ], [ -81.974010367999938, 28.898152164000066 ], [ -81.973866930999975, 28.897805723000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973842691999948, 28.897661950000042 ], [ -81.97384402199998, 28.897621291000064 ], [ -81.973853848999966, 28.897583853000071 ], [ -81.97390070299997, 28.897445341000036 ], [ -81.973985182999968, 28.897219946000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973866930999975, 28.897805723000033 ], [ -81.973866885999939, 28.897805615000038 ], [ -81.973848903999965, 28.897732172000076 ], [ -81.973842372999968, 28.897671690000038 ], [ -81.973842691999948, 28.897661950000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973866930999975, 28.897805723000033 ], [ -81.973776504999989, 28.897825290000071 ], [ -81.973729355999978, 28.897835653000072 ], [ -81.973697926999989, 28.897836510000047 ], [ -81.97366748099995, 28.897826132000034 ], [ -81.97364980499998, 28.89781316400007 ], [ -81.973633112999948, 28.897789824000029 ], [ -81.973624278999978, 28.897768213000063 ], [ -81.973621338999976, 28.897740554000052 ], [ -81.973627239999985, 28.897708574000035 ], [ -81.97363706699997, 28.897687832000031 ], [ -81.973662608999973, 28.897670550000043 ], [ -81.973696987999972, 28.897665370000027 ], [ -81.973755919999974, 28.897663653000052 ], [ -81.973842691999948, 28.897661950000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973052849999988, 28.903915697000059 ], [ -81.973349754999958, 28.90378737900005 ], [ -81.973825534999946, 28.903591289000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971327099999939, 28.904017846000045 ], [ -81.971369401999937, 28.904096196000069 ], [ -81.971488701999988, 28.904263474000061 ], [ -81.971579283999972, 28.904382128000066 ], [ -81.971634524999956, 28.904432705000033 ], [ -81.971689769999955, 28.904461888000071 ], [ -81.971751649999987, 28.904475514000069 ], [ -81.971800273999975, 28.904475524000077 ], [ -81.97185331999998, 28.904463866000071 ], [ -81.971915210999953, 28.904440541000042 ], [ -81.972100888999989, 28.904337505000058 ], [ -81.972370557999966, 28.904211149000048 ], [ -81.972666751999952, 28.904078963000075 ], [ -81.972869095999954, 28.903993972000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972869095999954, 28.903993972000023 ], [ -81.972962939999945, 28.903954555000041 ], [ -81.973052849999988, 28.903915697000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972869095999954, 28.903993972000023 ], [ -81.972897215999978, 28.904063808000046 ], [ -81.97291256799997, 28.904095350000034 ], [ -81.972929202999978, 28.904119007000077 ], [ -81.972947118999969, 28.904132527000058 ], [ -81.972964076999972, 28.904142844000035 ], [ -81.97298279599994, 28.904150451000078 ], [ -81.973010156999976, 28.904152358000033 ], [ -81.973043118999954, 28.904148317000079 ], [ -81.973068722999983, 28.904138184000033 ], [ -81.973089205999941, 28.904122418000043 ], [ -81.973103291999962, 28.904103273000032 ], [ -81.973108416999935, 28.904085252000073 ], [ -81.973109703999967, 28.904057092000073 ], [ -81.973100751999937, 28.904026679000026 ], [ -81.973087960999976, 28.903992885000036 ], [ -81.973052849999988, 28.903915697000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968718225999964, 28.904622209000024 ], [ -81.968873867999946, 28.90457662700004 ], [ -81.968953964999969, 28.904548456000043 ], [ -81.969005148999941, 28.904531622000036 ], [ -81.969065636999972, 28.904501073000063 ], [ -81.969102369999973, 28.90447199700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969159439999942, 28.904374662000066 ], [ -81.96916504099994, 28.904340226000045 ], [ -81.969157106999944, 28.904287768000074 ], [ -81.969127990999937, 28.904195670000036 ], [ -81.969098871999961, 28.904107070000066 ], [ -81.969069756999943, 28.904009142000064 ], [ -81.969041964999974, 28.903913548000048 ], [ -81.969018147999975, 28.903819119000048 ], [ -81.969005102999972, 28.903759668000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969102369999973, 28.90447199700003 ], [ -81.969105387999946, 28.904469607000067 ], [ -81.969137193999984, 28.904428815000074 ], [ -81.969157076999977, 28.90438918600006 ], [ -81.969159439999942, 28.904374662000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969102369999973, 28.90447199700003 ], [ -81.969126081999946, 28.904520649000062 ], [ -81.969139418999987, 28.904537810000079 ], [ -81.969154104999973, 28.904548849000037 ], [ -81.969171996999989, 28.904559519000031 ], [ -81.969192199999952, 28.904566636000027 ], [ -81.969214712999985, 28.904569181000056 ], [ -81.969236648999981, 28.904568170000061 ], [ -81.969253392999974, 28.904564618000052 ], [ -81.969273020999935, 28.904558527000063 ], [ -81.969293358999948, 28.90454416700004 ], [ -81.969307730999958, 28.904525206000073 ], [ -81.969314599999962, 28.904508247000024 ], [ -81.969316912999943, 28.904491484000062 ], [ -81.969316984999978, 28.904471927000031 ], [ -81.969309807999934, 28.90444664000006 ], [ -81.969300767999982, 28.904431539000029 ], [ -81.969287237999936, 28.904416833000028 ], [ -81.969265689999986, 28.904402379000032 ], [ -81.969219513999974, 28.904385210000044 ], [ -81.969159439999942, 28.904374662000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969005102999972, 28.903759668000077 ], [ -81.968983755999943, 28.903654107000079 ], [ -81.96896523199996, 28.903569644000072 ], [ -81.968950685999971, 28.903485710000041 ], [ -81.968932175999953, 28.903359808000062 ], [ -81.968914991999952, 28.903233906000025 ], [ -81.968899889999989, 28.903123829000037 ], [ -81.968893567999942, 28.903056775000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968885952999983, 28.90292321000004 ], [ -81.968883949999963, 28.902861178000023 ], [ -81.968877311999961, 28.902737886000068 ], [ -81.968875583999989, 28.902610435000042 ], [ -81.968875613999955, 28.902509406000036 ], [ -81.968876533999946, 28.902383703000055 ], [ -81.968880526999953, 28.90232308700007 ], [ -81.968891133999989, 28.902289284000062 ], [ -81.968911015999936, 28.902253151000025 ], [ -81.968946796999944, 28.90221002800007 ], [ -81.968997144999946, 28.902179731000047 ], [ -81.969040865999943, 28.902162255000064 ], [ -81.969125651999946, 28.902150618000064 ], [ -81.969211155999972, 28.902147571000057 ], [ -81.969319064999979, 28.902139006000027 ], [ -81.969429018999961, 28.902132035000079 ], [ -81.969531707999977, 28.902125298000044 ], [ -81.96965965399994, 28.902119828000025 ], [ -81.969663168999944, 28.902119484000025 ], [ -81.969737984999938, 28.902111937000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968893567999942, 28.903056775000039 ], [ -81.968892877999963, 28.90304946200007 ], [ -81.968887047999942, 28.902957093000055 ], [ -81.968885952999983, 28.90292321000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968893567999942, 28.903056775000039 ], [ -81.968770340999981, 28.90307152500003 ], [ -81.968748223999967, 28.903077305000068 ], [ -81.968727121999962, 28.903084985000078 ], [ -81.968702793999967, 28.903088339000078 ], [ -81.968682307999984, 28.903086492000057 ], [ -81.96865497899995, 28.903080439000064 ], [ -81.968631074999962, 28.903067810000039 ], [ -81.968614940999942, 28.903053080000063 ], [ -81.968606577999935, 28.903035721000037 ], [ -81.96860359599998, 28.903017312000031 ], [ -81.968602405999945, 28.902997850000077 ], [ -81.968605400999934, 28.902975235000042 ], [ -81.968611382999939, 28.902958406000039 ], [ -81.968619158999957, 28.902944732000037 ], [ -81.968629918999966, 28.902934216000062 ], [ -81.968641875999936, 28.90292738100004 ], [ -81.968653830999983, 28.90292265100004 ], [ -81.968672959999935, 28.902918446000058 ], [ -81.968695670999978, 28.902916874000027 ], [ -81.968724361999989, 28.902919510000061 ], [ -81.968759917999989, 28.90292422400006 ], [ -81.968885952999983, 28.90292321000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964590906999945, 28.902861578000056 ], [ -81.964626173999989, 28.902796604000059 ], [ -81.964676344999987, 28.902708191000045 ], [ -81.964724204999982, 28.902625128000068 ], [ -81.964778362999937, 28.902530992000038 ], [ -81.964825578999978, 28.902456929000039 ], [ -81.964852668999981, 28.902413600000045 ], [ -81.96488792699995, 28.902374842000029 ], [ -81.96493656499996, 28.902347293000048 ], [ -81.964976052999987, 28.902334990000043 ], [ -81.965011298999968, 28.90232835300003 ], [ -81.965173676999939, 28.902326180000045 ], [ -81.965383694999957, 28.902326782000046 ], [ -81.965686465999966, 28.902326859000027 ], [ -81.966099990999965, 28.902326964000054 ], [ -81.966469955999969, 28.902327057000036 ], [ -81.966698500999939, 28.902324018000058 ], [ -81.966806132999977, 28.90231545100005 ], [ -81.966906926999968, 28.902309288000026 ], [ -81.96700459799996, 28.902303467000024 ], [ -81.967078434999962, 28.90230073500004 ], [ -81.967136278999988, 28.902297320000059 ], [ -81.967160347999936, 28.902301248000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967289284999936, 28.902369520000036 ], [ -81.967319180999937, 28.90241108400005 ], [ -81.967334082999969, 28.902448622000065 ], [ -81.967335932999958, 28.902514469000039 ], [ -81.967313718999947, 28.902608474000033 ], [ -81.967290248999973, 28.902703007000071 ], [ -81.967260306999947, 28.902836408000042 ], [ -81.967228402999979, 28.902885137000055 ], [ -81.967184755999938, 28.902919094000026 ], [ -81.967134396999938, 28.902945666000051 ], [ -81.967099147999988, 28.902958950000027 ], [ -81.967058106999957, 28.902963533000047 ], [ -81.966957311999977, 28.902963509000074 ], [ -81.966847395999935, 28.902963318000047 ], [ -81.966694975999985, 28.902963444000079 ], [ -81.96651331299995, 28.902963399000043 ], [ -81.966325005999977, 28.90296610300004 ], [ -81.966126738999947, 28.902966053000057 ], [ -81.965955234999967, 28.902963259000046 ], [ -81.965823968999985, 28.902965977000065 ], [ -81.965665939999951, 28.902965937000033 ], [ -81.965507911999964, 28.902965896000069 ], [ -81.965380161999974, 28.902965864000066 ], [ -81.96521549199997, 28.902965821000066 ], [ -81.965047307999953, 28.902965778000066 ], [ -81.964922878999971, 28.902965745000074 ], [ -81.964791617999936, 28.902948178000031 ], [ -81.964727749999952, 28.902930285000025 ], [ -81.964647957999944, 28.902898515000061 ], [ -81.964590906999945, 28.902861578000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967160347999936, 28.902301248000072 ], [ -81.967181592999964, 28.902304715000071 ], [ -81.967226901999936, 28.902319496000075 ], [ -81.967261492999967, 28.902343715000029 ], [ -81.967287306999935, 28.902366769000025 ], [ -81.967289284999936, 28.902369520000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967160347999936, 28.902301248000072 ], [ -81.967210956999963, 28.902191357000049 ], [ -81.967227453999953, 28.902162343000043 ], [ -81.967248892999976, 28.902142036000043 ], [ -81.967271979999964, 28.902133336000077 ], [ -81.967295064999973, 28.902128989000062 ], [ -81.967324742999949, 28.902130447000047 ], [ -81.96735277099998, 28.902137709000044 ], [ -81.96737584899995, 28.902150772000027 ], [ -81.967390684999941, 28.902165284000034 ], [ -81.96739727299996, 28.90218414800006 ], [ -81.967402212999957, 28.902207363000059 ], [ -81.967402206999964, 28.902227676000052 ], [ -81.967397251999955, 28.902250889000072 ], [ -81.967384053999979, 28.902272649000054 ], [ -81.967364262, 28.902297310000051 ], [ -81.967289284999936, 28.902369520000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965270053999973, 28.903746643000034 ], [ -81.96529239399996, 28.903738310000051 ], [ -81.965547077999986, 28.903665187000058 ], [ -81.965651743999956, 28.903642489000049 ], [ -81.965749611999968, 28.903625770000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964464006999947, 28.904083410000055 ], [ -81.965070461999971, 28.903821103000041 ], [ -81.965096096999957, 28.90381153900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965096096999957, 28.90381153900006 ], [ -81.965270053999973, 28.903746643000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965096096999957, 28.90381153900006 ], [ -81.965060171999937, 28.903737705000026 ], [ -81.965045835999945, 28.903708741000059 ], [ -81.965037406999954, 28.903678291000062 ], [ -81.965039102999981, 28.903652301000079 ], [ -81.965045016999966, 28.903632997000045 ], [ -81.965063587999964, 28.903612951000071 ], [ -81.965092287999937, 28.90359365200004 ], [ -81.965123514999959, 28.903585490000069 ], [ -81.965157269999963, 28.90358549900003 ], [ -81.965185958999939, 28.903592933000027 ], [ -81.965204520999976, 28.903604820000055 ], [ -81.965219704999981, 28.903624130000026 ], [ -81.965238257999943, 28.903658294000024 ], [ -81.965270053999973, 28.903746643000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966185461999942, 28.906212370000048 ], [ -81.966281857999945, 28.906059958000071 ], [ -81.966300577999959, 28.906022624000059 ], [ -81.966314075999946, 28.905963497000073 ], [ -81.966320732999975, 28.905919152000024 ], [ -81.966324069999985, 28.90586311800007 ], [ -81.966319876999989, 28.905821315000026 ], [ -81.966308651999952, 28.905770616000041 ], [ -81.966295514999956, 28.905733974000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966220355999951, 28.905538423000053 ], [ -81.966208964999964, 28.905507209000064 ], [ -81.96617667199996, 28.905419407000068 ], [ -81.966142770999966, 28.905327467000063 ], [ -81.966102368999941, 28.905226729000049 ], [ -81.966072119999978, 28.905140777000042 ], [ -81.966048572999966, 28.905076747000066 ], [ -81.96602259499997, 28.905012088000035 ], [ -81.966003398999987, 28.904953399000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966295514999956, 28.905733974000043 ], [ -81.966283378999947, 28.905700126000056 ], [ -81.966262317999963, 28.905646949000072 ], [ -81.966234234999945, 28.905576460000077 ], [ -81.966220355999951, 28.905538423000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966295514999956, 28.905733974000043 ], [ -81.966219716999944, 28.90574635300004 ], [ -81.966174010999964, 28.905744280000079 ], [ -81.966145886999982, 28.905739116000063 ], [ -81.966125966999982, 28.90572776700003 ], [ -81.966103707999935, 28.905704042000025 ], [ -81.966094340999973, 28.905674134000037 ], [ -81.966092006999986, 28.905645259000039 ], [ -81.966095530999951, 28.905621541000073 ], [ -81.966108426999938, 28.905606076000026 ], [ -81.966127182999969, 28.905589581000072 ], [ -81.966147403999969, 28.905576050000036 ], [ -81.966220355999951, 28.905538423000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967573543999947, 28.907469467000055 ], [ -81.967658544999949, 28.907460635000064 ], [ -81.96807469099997, 28.907434946000024 ], [ -81.96822896499998, 28.907433327000035 ], [ -81.968296692999957, 28.907441619000053 ], [ -81.968353123999975, 28.907469777000074 ], [ -81.968402026999968, 28.907516141000031 ], [ -81.968428350999943, 28.907567467000035 ], [ -81.968464063999988, 28.907675080000047 ], [ -81.968509153999946, 28.907860993000043 ], [ -81.968515794999973, 28.907860995000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966792575999989, 28.908085068000048 ], [ -81.967007827999964, 28.90782537900003 ], [ -81.967079345999935, 28.907745934000047 ], [ -81.967143332999967, 28.90767973100003 ], [ -81.967205435999972, 28.907625116000077 ], [ -81.967271298999947, 28.907580435000057 ], [ -81.967331511999987, 28.907547339000075 ], [ -81.967385068999988, 28.907525032000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967385068999988, 28.907525032000024 ], [ -81.967403014999945, 28.907517558000052 ], [ -81.967478276999941, 28.907491089000075 ], [ -81.96757235299998, 28.907469591000051 ], [ -81.967573543999947, 28.907469467000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967385068999988, 28.907525032000024 ], [ -81.967377542999941, 28.907498258000032 ], [ -81.967372814999976, 28.90747992200005 ], [ -81.967367138999975, 28.907454918000042 ], [ -81.967366201999937, 28.907424082000034 ], [ -81.967369997999981, 28.907400747000054 ], [ -81.967385159999935, 28.907377415000042 ], [ -81.967402211999968, 28.907362418000048 ], [ -81.967416421999985, 28.907353254000043 ], [ -81.96743442099995, 28.907347424000079 ], [ -81.967459993999967, 28.907345763000023 ], [ -81.967490302999977, 28.907347438000045 ], [ -81.967518713999937, 28.907355779000056 ], [ -81.967539544999966, 28.907372452000061 ], [ -81.967553745999965, 28.907393291000062 ], [ -81.967573543999947, 28.907469467000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969737984999938, 28.902111937000029 ], [ -81.969736398999942, 28.901982572000065 ], [ -81.96973249399997, 28.901897869000038 ], [ -81.969726631999947, 28.901792420000049 ], [ -81.969718812999986, 28.901661043000047 ], [ -81.969712954999977, 28.901538308000056 ], [ -81.96970930699996, 28.901502720000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96970930699996, 28.901502720000053 ], [ -81.969704579999984, 28.901456582000037 ], [ -81.969701317999977, 28.90141482100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969701343999986, 28.901326242000039 ], [ -81.969701352999948, 28.901296741000067 ], [ -81.969709155999965, 28.901163104000034 ], [ -81.969712865999952, 28.901095144000067 ], [ -81.969727619999958, 28.901001547000078 ], [ -81.969747283999936, 28.900906512000063 ], [ -81.969776773999968, 28.900792758000023 ], [ -81.969799701999989, 28.900727963000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969701317999977, 28.90141482100006 ], [ -81.969701343999986, 28.901326242000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96970930699996, 28.901502720000053 ], [ -81.969593832999976, 28.901504050000028 ], [ -81.969552078999982, 28.901501101000065 ], [ -81.969518680999954, 28.901490805000037 ], [ -81.969493633999946, 28.901468755000053 ], [ -81.96948028099996, 28.901442298000063 ], [ -81.969478617999982, 28.901418782000064 ], [ -81.969478624999965, 28.901393798000072 ], [ -81.969488652999985, 28.901367346000029 ], [ -81.969502018999947, 28.90134824200004 ], [ -81.969520393999971, 28.901337959000045 ], [ -81.969548788999987, 28.901330617000042 ], [ -81.969590543999971, 28.901329156000031 ], [ -81.969701343999986, 28.901326242000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955964906999952, 28.902516133000063 ], [ -81.956702867, 28.902511030000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954124063999984, 28.902535184000044 ], [ -81.954307679999943, 28.90253524600007 ], [ -81.955195292999974, 28.902521451000041 ], [ -81.955775869999968, 28.902517439000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958275605999972, 28.892839971000058 ], [ -81.958131781999953, 28.892779726000072 ], [ -81.957943913999941, 28.89270953700003 ], [ -81.957819905999941, 28.892662162000079 ], [ -81.957711856999936, 28.89264421200005 ], [ -81.95759284199994, 28.892638662000024 ], [ -81.957420570999943, 28.892660659000057 ], [ -81.957338493999941, 28.892676569000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957137414999977, 28.892715408000072 ], [ -81.957005542, 28.892736327000023 ], [ -81.956878684999936, 28.892759716000057 ], [ -81.956773753999983, 28.892774841000062 ], [ -81.956689186999938, 28.892778950000036 ], [ -81.956631745999971, 28.892770657000028 ], [ -81.95657644399995, 28.892752727000072 ], [ -81.956529470999953, 28.892732039000066 ], [ -81.956469977999973, 28.892692053000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957338493999941, 28.892676569000059 ], [ -81.957141351999951, 28.892714784000077 ], [ -81.957137414999977, 28.892715408000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957338493999941, 28.892676569000059 ], [ -81.957322853999983, 28.892573862000063 ], [ -81.957309560999988, 28.892539701000032 ], [ -81.957289611999954, 28.892514322000068 ], [ -81.957264112999951, 28.892497724000066 ], [ -81.957235284999967, 28.89249088400004 ], [ -81.957208671999979, 28.892491851000045 ], [ -81.957180946999983, 28.892494770000042 ], [ -81.957163201999947, 28.892500620000078 ], [ -81.957143236999968, 28.892513300000076 ], [ -81.957131032999939, 28.892527935000032 ], [ -81.957123261999982, 28.89254842500003 ], [ -81.957121034999943, 28.892571846000067 ], [ -81.957122130999949, 28.892604051000035 ], [ -81.957126553999956, 28.892635280000036 ], [ -81.957137414999977, 28.892715408000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978237400999944, 28.890942164000023 ], [ -81.978286615999934, 28.890955923000035 ], [ -81.978556329999947, 28.891031598000041 ], [ -81.978751827999986, 28.891089040000054 ], [ -81.978830269999946, 28.891123210000046 ], [ -81.978875494999954, 28.891160683000066 ], [ -81.978912733999948, 28.891221572000063 ], [ -81.97892070599994, 28.891273089000038 ], [ -81.978920673999937, 28.891432322000071 ], [ -81.978920616999972, 28.891706294000073 ], [ -81.978917907999971, 28.891952167000056 ], [ -81.97891515799995, 28.892077373000063 ], [ -81.978908487999945, 28.892114026000058 ], [ -81.978899244, 28.892141838000043 ], [ -81.978885902999934, 28.892164219000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978722772999959, 28.892261088000055 ], [ -81.978702319999968, 28.892263572000047 ], [ -81.978671884999983, 28.892263539000055 ], [ -81.978645228999937, 28.892261336000047 ], [ -81.978564872999982, 28.892236887000024 ], [ -81.978481483999985, 28.892209680000065 ], [ -81.97838109099996, 28.892176696000035 ], [ -81.978289298999982, 28.892148147000057 ], [ -81.978150917999983, 28.892099266000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978885902999934, 28.892164219000051 ], [ -81.978883486999962, 28.892168272000049 ], [ -81.978864301999977, 28.892189835000067 ], [ -81.978844327, 28.892208586000038 ], [ -81.978818499999988, 28.892226175000076 ], [ -81.978788508999969, 28.892243031000078 ], [ -81.978759350999951, 28.892254022000031 ], [ -81.978732694999962, 28.892259883000065 ], [ -81.978722772999959, 28.892261088000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978885902999934, 28.892164219000051 ], [ -81.978915965999988, 28.892206396000063 ], [ -81.978926790999935, 28.892224726000052 ], [ -81.978935947999958, 28.892254050000076 ], [ -81.978939275999949, 28.892278244000067 ], [ -81.978935105999938, 28.892302435000033 ], [ -81.978924273999951, 28.892321493000054 ], [ -81.978910108999969, 28.892335419000062 ], [ -81.97888594799997, 28.892349344000024 ], [ -81.978862621999951, 28.892357404000052 ], [ -81.978840963999971, 28.892359600000077 ], [ -81.978817641999967, 28.892358863000027 ], [ -81.978794317999984, 28.892351530000042 ], [ -81.978769330999967, 28.892335397000068 ], [ -81.978750175999949, 28.892312668000045 ], [ -81.978737685999988, 28.892289208000079 ], [ -81.978722772999959, 28.892261088000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970784372999958, 28.883796010000026 ], [ -81.970959392999987, 28.883948337000049 ], [ -81.971322390999944, 28.884252739000033 ], [ -81.971374085999969, 28.884289448000061 ], [ -81.971445790999951, 28.884336437000059 ], [ -81.971507493999979, 28.884371681000061 ], [ -81.971546306999983, 28.884393634000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970452253999952, 28.882860245000074 ], [ -81.97043133699998, 28.88306760100005 ], [ -81.970415327999945, 28.883261997000034 ], [ -81.970416532999934, 28.883333279000055 ], [ -81.970424032999972, 28.883394736000071 ], [ -81.970450856999946, 28.883462886000075 ], [ -81.970485200999974, 28.883519053000043 ], [ -81.970544082999936, 28.883583866000038 ], [ -81.970622775999971, 28.883655364000049 ], [ -81.970671698999979, 28.883697943000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970671698999979, 28.883697943000072 ], [ -81.970784372999958, 28.883796010000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970671698999979, 28.883697943000072 ], [ -81.970711718999951, 28.883643197000026 ], [ -81.970733887999984, 28.883606364000059 ], [ -81.970754820999957, 28.883582533000038 ], [ -81.970778216999975, 28.883557618000054 ], [ -81.97080776699994, 28.883544623000034 ], [ -81.970839773999955, 28.883543546000055 ], [ -81.970863161999944, 28.88354896900006 ], [ -81.970885319, 28.883554391000075 ], [ -81.970903780999947, 28.883564146000026 ], [ -81.970922241999972, 28.883580401000074 ], [ -81.970937008999954, 28.883603157000039 ], [ -81.970938230999934, 28.883630245000063 ], [ -81.970938225999987, 28.883652998000059 ], [ -81.970930832999954, 28.883676831000059 ], [ -81.970917285999974, 28.883696332000056 ], [ -81.970881578999979, 28.883722326000054 ], [ -81.970784372999958, 28.883796010000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968909561999965, 28.883118684000067 ], [ -81.968983568999988, 28.883158579000053 ], [ -81.969053, 28.883199172000047 ], [ -81.969126609999989, 28.883253190000062 ], [ -81.969227054999976, 28.883337057000062 ], [ -81.969414706999942, 28.883500524000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969545110999945, 28.883614120000061 ], [ -81.969608379999954, 28.883669234000024 ], [ -81.970070736999958, 28.884072934000073 ], [ -81.970301126999971, 28.884269795000023 ], [ -81.970485961999941, 28.884439755000074 ], [ -81.970914025999946, 28.884902750000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969414706999942, 28.883500524000056 ], [ -81.969545110999945, 28.883614120000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969414706999942, 28.883500524000056 ], [ -81.969477045999952, 28.883416755000042 ], [ -81.969496750999951, 28.883393644000023 ], [ -81.969524658999944, 28.883374871000058 ], [ -81.969552563999969, 28.88336909800006 ], [ -81.969582108999987, 28.883366217000059 ], [ -81.969606728999963, 28.883370555000056 ], [ -81.969632986999954, 28.883383562000063 ], [ -81.969647754999983, 28.883397696000031 ], [ -81.969660880999982, 28.883415351000053 ], [ -81.96966908099995, 28.883438467000076 ], [ -81.96967071499995, 28.883463026000072 ], [ -81.969664142999989, 28.883487583000033 ], [ -81.969647721999934, 28.883512137000025 ], [ -81.96961652799996, 28.883542467000041 ], [ -81.969545110999945, 28.883614120000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970326043999989, 28.885276215000033 ], [ -81.970200246, 28.885355256000025 ], [ -81.970042021999973, 28.885451480000029 ], [ -81.96991307899998, 28.885530921000054 ], [ -81.969874469999979, 28.885545218000061 ], [ -81.969857341999955, 28.885549271000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96964488499998, 28.88553760700006 ], [ -81.969627593999974, 28.885531750000041 ], [ -81.969563599999958, 28.885486133000029 ], [ -81.969479384999943, 28.885400314000037 ], [ -81.969352264999941, 28.885258465000049 ], [ -81.969214418999968, 28.885126422000042 ], [ -81.969027758999971, 28.884954833000052 ], [ -81.968853730999967, 28.884807248000072 ], [ -81.968650845999946, 28.884629078000046 ], [ -81.968386746999954, 28.884401202000049 ], [ -81.968231749999973, 28.884266023000066 ], [ -81.968161822999946, 28.884207686000025 ], [ -81.968133609999938, 28.884172039000077 ], [ -81.968115214999955, 28.884136395000041 ], [ -81.968101728999955, 28.884095353000077 ], [ -81.96810297199994, 28.88404567200007 ], [ -81.968109117999973, 28.884006793000026 ], [ -81.968121397999937, 28.883979796000062 ], [ -81.968139434999955, 28.883954918000029 ], [ -81.968177864999973, 28.883913930000062 ], [ -81.968297672999938, 28.883815382000023 ], [ -81.968411362999973, 28.883729807000066 ], [ -81.968525056999965, 28.883633576000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969857341999955, 28.885549271000059 ], [ -81.969848051999975, 28.885551471000042 ], [ -81.969808426999975, 28.885556827000073 ], [ -81.969749500999967, 28.885557708000078 ], [ -81.969703783999989, 28.88555412200003 ], [ -81.969667212, 28.885545172000036 ], [ -81.96964488499998, 28.88553760700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969857341999955, 28.885549271000059 ], [ -81.969849047999958, 28.885622110000043 ], [ -81.969839896999986, 28.885643567000045 ], [ -81.969826683999941, 28.885663237000074 ], [ -81.969808392999937, 28.885675750000075 ], [ -81.969784006999987, 28.885682898000027 ], [ -81.969762671999945, 28.885683787000062 ], [ -81.969738289999952, 28.885683782000058 ], [ -81.969708827999966, 28.885679304000064 ], [ -81.969691557999965, 28.885673041000075 ], [ -81.969673272999955, 28.885661413000037 ], [ -81.969657023999957, 28.885642632000042 ], [ -81.96964890199996, 28.885623853000027 ], [ -81.969645859999957, 28.885604181000076 ], [ -81.96964586699994, 28.885579144000076 ], [ -81.96964488499998, 28.88553760700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967420672999936, 28.883444646000044 ], [ -81.967411046999985, 28.883443675000024 ], [ -81.967365241999971, 28.883423505000053 ], [ -81.967321076999951, 28.883390373000054 ], [ -81.967278551999982, 28.883344283000042 ], [ -81.967200053999989, 28.883230504000039 ], [ -81.967099667999946, 28.88306611400003 ], [ -81.967039801999988, 28.882951105000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968570120999971, 28.881815127000039 ], [ -81.968509396999934, 28.882043497000041 ], [ -81.968413277999957, 28.882357981000041 ], [ -81.968317156999944, 28.88267385100005 ], [ -81.968274616999963, 28.882797148000066 ], [ -81.968232083999965, 28.882894124000074 ], [ -81.968189558999939, 28.882967544000053 ], [ -81.968136013999981, 28.88304234900005 ], [ -81.96807617199994, 28.883114379000062 ], [ -81.967984842999954, 28.883203030000061 ], [ -81.967884071999947, 28.883279207000044 ], [ -81.967767752999976, 28.883347281000056 ], [ -81.967635306999966, 28.883414926000057 ], [ -81.96760360199994, 28.883427208000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96760360199994, 28.883427208000057 ], [ -81.967579570999987, 28.883436516000074 ], [ -81.967535391999945, 28.883446586000048 ], [ -81.967468309999958, 28.883449449000068 ], [ -81.967420672999936, 28.883444646000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96760360199994, 28.883427208000057 ], [ -81.967619125999988, 28.883492716000035 ], [ -81.96761911699997, 28.883523471000046 ], [ -81.967611463999958, 28.883550380000031 ], [ -81.967603814999961, 28.883566718000054 ], [ -81.967586338999979, 28.883579207000025 ], [ -81.967569409999953, 28.883590376000029 ], [ -81.96754565599997, 28.883597579000025 ], [ -81.967521903999966, 28.883599736000065 ], [ -81.967492418999939, 28.883601170000077 ], [ -81.967466212999966, 28.883591793000051 ], [ -81.967441649999955, 28.88357376600004 ], [ -81.967424730999937, 28.88354937400004 ], [ -81.967414911999981, 28.883520539000074 ], [ -81.967418200999987, 28.883484018000047 ], [ -81.967420672999936, 28.883444646000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967039801999988, 28.882951105000075 ], [ -81.967011567999975, 28.882895678000068 ], [ -81.96693763199994, 28.882729401000063 ], [ -81.966877862999979, 28.88257421000003 ], [ -81.966843262999987, 28.882471676000023 ], [ -81.966814964999969, 28.882356673000061 ], [ -81.966788062999967, 28.882246881000071 ], [ -81.966780673999949, 28.88220472200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966755259999957, 28.882037092000076 ], [ -81.966742359999955, 28.881905589000041 ], [ -81.966737532999957, 28.881655027000079 ], [ -81.966745733999971, 28.881590229000039 ], [ -81.966755564999971, 28.881545592000066 ], [ -81.966796486999954, 28.881482241000072 ], [ -81.966839037999989, 28.881444812000041 ], [ -81.966891401999987, 28.881418905000032 ], [ -81.966963392999958, 28.881407402000036 ], [ -81.967056644999957, 28.881421825000075 ], [ -81.96716298399997, 28.881446330000074 ], [ -81.967601421999973, 28.881560198000045 ], [ -81.967876263999983, 28.881633703000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966780673999949, 28.88220472200004 ], [ -81.966760298999986, 28.882088474000057 ], [ -81.966755259999957, 28.882037092000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966780673999949, 28.88220472200004 ], [ -81.966822270999955, 28.88220164300003 ], [ -81.966861079999944, 28.882199583000045 ], [ -81.96688695399996, 28.88219855400007 ], [ -81.966910475999953, 28.882193385000051 ], [ -81.966933998999934, 28.882188215000042 ], [ -81.966955170999938, 28.882176834000063 ], [ -81.96697163999994, 28.882163381000055 ], [ -81.966986935999955, 28.882139579000068 ], [ -81.966989295999952, 28.882115773000066 ], [ -81.966988126999979, 28.882093001000044 ], [ -81.966984604999936, 28.882073333000051 ], [ -81.966976378999959, 28.882054700000026 ], [ -81.966962270999943, 28.882039170000041 ], [ -81.966941104999989, 28.882029850000038 ], [ -81.966909354999984, 28.882021561000045 ], [ -81.966875249999987, 28.882022588000041 ], [ -81.966836438999962, 28.882026719000066 ], [ -81.966755259999957, 28.882037092000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971942170999966, 28.881190122000078 ], [ -81.971950873999958, 28.881229433000044 ], [ -81.971950288999949, 28.881270165000046 ], [ -81.971936127999982, 28.88131259000005 ], [ -81.971911573999989, 28.881360104000066 ], [ -81.971874742999944, 28.881424897000045 ], [ -81.971797405999951, 28.881544761000043 ], [ -81.971744619999981, 28.881624670000065 ], [ -81.971697970999969, 28.881697020000047 ], [ -81.971670963999941, 28.881744535000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969461011999954, 28.881376196000076 ], [ -81.96946296699997, 28.881369321000079 ], [ -81.969526586999962, 28.88117264400006 ], [ -81.969578379999973, 28.881012297000041 ], [ -81.969599893999941, 28.880940561000045 ], [ -81.969617222999943, 28.880906982000056 ], [ -81.969636635999962, 28.880878521000056 ], [ -81.96966575, 28.880857653000078 ], [ -81.969693784999947, 28.880840579000051 ], [ -81.969728287999942, 28.880824457000074 ], [ -81.969768180999949, 28.880813080000053 ], [ -81.969826937999983, 28.880811013000027 ], [ -81.969916509999962, 28.880823992000046 ], [ -81.970100558999945, 28.880863994000038 ], [ -81.970306975999961, 28.880901969000035 ], [ -81.970552096999938, 28.880941853000024 ], [ -81.970829403999971, 28.880974313000024 ], [ -81.971098125999958, 28.880998132000059 ], [ -81.971386342999949, 28.881016339000041 ], [ -81.97162452799995, 28.881030643000031 ], [ -81.971720237999989, 28.881036064000057 ], [ -81.971785270999987, 28.881046877000074 ], [ -81.971840481999948, 28.881067409000025 ], [ -81.971866782999939, 28.881087161000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971866782999939, 28.881087161000039 ], [ -81.971882194999978, 28.881098738000048 ], [ -81.971907955999939, 28.881126823000045 ], [ -81.971927580999989, 28.881159228000058 ], [ -81.971941069999957, 28.881185150000078 ], [ -81.971942170999966, 28.881190122000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971866782999939, 28.881087161000039 ], [ -81.971905912999944, 28.881045759000074 ], [ -81.971934460999989, 28.881014618000052 ], [ -81.971955010999977, 28.881003571000065 ], [ -81.971982411999988, 28.880991520000066 ], [ -81.972010952999938, 28.880987506000054 ], [ -81.972034924999946, 28.880988517000048 ], [ -81.972064601999989, 28.880999574000043 ], [ -81.972081720999938, 28.881014648000075 ], [ -81.97209769799997, 28.881033742000056 ], [ -81.972106824999969, 28.881052835000048 ], [ -81.972112525999989, 28.881081972000061 ], [ -81.972105667999983, 28.881110104000072 ], [ -81.972087395999949, 28.881135219000043 ], [ -81.972065702999942, 28.881151290000048 ], [ -81.972034877999988, 28.881163341000047 ], [ -81.97199606199996, 28.881173380000064 ], [ -81.971942170999966, 28.881190122000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972895275999974, 28.878699230000052 ], [ -81.973065491999989, 28.878765963000035 ], [ -81.973257249999961, 28.87883406900005 ], [ -81.973328721999962, 28.878851272000077 ], [ -81.973436712999955, 28.878877077000027 ], [ -81.973595867999961, 28.878905987000053 ], [ -81.973763031999965, 28.878931115000057 ], [ -81.973983318999956, 28.878941815000076 ], [ -81.974093223999944, 28.878942838000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972095673999945, 28.878300379000052 ], [ -81.972233654999968, 28.878370792000055 ], [ -81.972365234999984, 28.878436983000029 ], [ -81.972499372999948, 28.878507571000057 ], [ -81.972620423999956, 28.878568077000068 ], [ -81.972695259999966, 28.878609813000025 ], [ -81.972705634999954, 28.87861476300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972705634999954, 28.87861476300003 ], [ -81.972751495999944, 28.878636638000046 ], [ -81.972810500999969, 28.878662582000061 ], [ -81.972882130999949, 28.878694077000034 ], [ -81.972895275999974, 28.878699230000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972705634999954, 28.87861476300003 ], [ -81.972691543999986, 28.878648197000075 ], [ -81.972680971999978, 28.87867260400003 ], [ -81.972677002999944, 28.878698176000057 ], [ -81.972678318999954, 28.878716775000044 ], [ -81.972682277, 28.87873537400003 ], [ -81.972695475999956, 28.878756300000077 ], [ -81.972712642999966, 28.878770252000038 ], [ -81.972732446999942, 28.878784204000056 ], [ -81.972754895999969, 28.878793508000058 ], [ -81.97277734499994, 28.878798162000066 ], [ -81.972795835999989, 28.878795841000056 ], [ -81.972815644999969, 28.878792357000066 ], [ -81.97283413699995, 28.878785386000061 ], [ -81.97284998799995, 28.878773767000041 ], [ -81.97286980299998, 28.878752847000044 ], [ -81.972895275999974, 28.878699230000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975339117999965, 28.876162618000023 ], [ -81.975164285999938, 28.87609778500007 ], [ -81.975089137999987, 28.876062672000046 ], [ -81.975026263999951, 28.876023510000039 ], [ -81.97497412499996, 28.875984350000067 ], [ -81.974934259999941, 28.87593574300007 ], [ -81.974889800999961, 28.875852033000058 ], [ -81.974831553999934, 28.875699473000054 ], [ -81.974779706999982, 28.875568494000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974779706999982, 28.875568494000049 ], [ -81.974736525999958, 28.875459406000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974779706999982, 28.875568494000049 ], [ -81.974891721999938, 28.87553289400006 ], [ -81.97492618299998, 28.87553441700004 ], [ -81.974962368999968, 28.87553442400008 ], [ -81.97500544899998, 28.875525332000052 ], [ -81.975036467999985, 28.875507137000056 ], [ -81.975057152999966, 28.875479841000072 ], [ -81.975058883999964, 28.875446475000047 ], [ -81.975057166999989, 28.875419174000058 ], [ -81.97504855699998, 28.875399457000071 ], [ -81.975029606999954, 28.87537973600007 ], [ -81.975014100999942, 28.875369116000059 ], [ -81.974989980999965, 28.875358495000057 ], [ -81.974958965999974, 28.875355457000069 ], [ -81.974928810999984, 28.875354882000067 ], [ -81.974900377999973, 28.875366252000049 ], [ -81.974876247999987, 28.875387291000038 ], [ -81.974853844999984, 28.875403970000036 ], [ -81.974829715999988, 28.875420649000034 ], [ -81.974736525999958, 28.875459406000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974837387999969, 28.876953627000034 ], [ -81.974799050999934, 28.876919870000052 ], [ -81.974680972999977, 28.876823998000077 ], [ -81.974583203999941, 28.876743806000036 ], [ -81.974511743999983, 28.876678130000073 ], [ -81.974454024999943, 28.876617404000058 ], [ -81.97441416099997, 28.876563396000051 ], [ -81.974375832999954, 28.876497239000059 ], [ -81.974335975999963, 28.876412181000035 ], [ -81.974297657999955, 28.876305524000031 ], [ -81.974253205999958, 28.876196165000067 ], [ -81.974213354999961, 28.876086807000036 ], [ -81.974167371999954, 28.875966647000041 ], [ -81.974098396999977, 28.875788433000025 ], [ -81.974037085999953, 28.875633171000061 ], [ -81.97399567399998, 28.875517925000054 ], [ -81.973959122999986, 28.875422533000062 ], [ -81.973921221999944, 28.875314025000023 ], [ -81.973906331999956, 28.875266330000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974736525999958, 28.875459406000061 ], [ -81.974692067999968, 28.875347095000052 ], [ -81.974661413999968, 28.875260689000072 ], [ -81.97462921999994, 28.875198583000042 ], [ -81.974593953999943, 28.875158076000048 ], [ -81.974546415999953, 28.875127017000068 ], [ -81.974495805999936, 28.875112158000036 ], [ -81.974457675999986, 28.875106755000047 ], [ -81.974414344999957, 28.875105466000036 ], [ -81.974356094999962, 28.875116185000024 ], [ -81.974258064999958, 28.875147212000059 ], [ -81.974049932999947, 28.875217473000077 ], [ -81.974033890999976, 28.875222931000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974033890999976, 28.875222931000053 ], [ -81.973906331999956, 28.875266330000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973906331999956, 28.875266330000045 ], [ -81.973871138999982, 28.875168554000027 ], [ -81.973856242999943, 28.875145896000049 ], [ -81.97383321999996, 28.87512920000006 ], [ -81.973815953999974, 28.875109375000079 ], [ -81.973806139999965, 28.875076733000071 ], [ -81.973808858999973, 28.875042157000053 ], [ -81.973815636999973, 28.875017119000063 ], [ -81.973830542999963, 28.87500162200007 ], [ -81.973846801999969, 28.874987318000024 ], [ -81.97386847599995, 28.874978976000079 ], [ -81.973895231999961, 28.874972572000047 ], [ -81.973925707999967, 28.87497436700005 ], [ -81.973951105999959, 28.874981526000056 ], [ -81.973974130999977, 28.874993303000053 ], [ -81.97398902599997, 28.875012384000058 ], [ -81.974001212999951, 28.875035040000057 ], [ -81.974005271999943, 28.875052926000023 ], [ -81.974003907999986, 28.875091079000072 ], [ -81.973999835999962, 28.875123271000064 ], [ -81.974033890999976, 28.875222931000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970183751999969, 28.874865907000071 ], [ -81.970162640999945, 28.874700620000056 ], [ -81.970160035999982, 28.874560943000063 ], [ -81.970157511999957, 28.874437604000036 ], [ -81.970178634999968, 28.874262974000033 ], [ -81.970202477999976, 28.874120976000029 ], [ -81.970305724999946, 28.873764827000059 ], [ -81.970369266999967, 28.873518082000032 ], [ -81.970451362999938, 28.873131666000063 ], [ -81.970479588999979, 28.872979068000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970505055999979, 28.872841386000061 ], [ -81.970538770999951, 28.872659117000069 ], [ -81.970589092999944, 28.872403057000042 ], [ -81.970589110999981, 28.872340203000078 ], [ -81.970581190999951, 28.872288988000037 ], [ -81.970567986999981, 28.87222147500006 ], [ -81.970549485999982, 28.872177240000042 ], [ -81.970422609999957, 28.871932781000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970479588999979, 28.872979068000063 ], [ -81.970505055999979, 28.872841386000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970479588999979, 28.872979068000063 ], [ -81.970404885999983, 28.872962877000077 ], [ -81.970380702999989, 28.872965159000046 ], [ -81.970353542999987, 28.872969344000069 ], [ -81.970321092999939, 28.872976788000074 ], [ -81.970288642999947, 28.87297802300003 ], [ -81.970264659999941, 28.872970566000049 ], [ -81.970242090999989, 28.872959384000069 ], [ -81.970218111999941, 28.872938267000052 ], [ -81.970206831999974, 28.87291342900005 ], [ -81.970204017999947, 28.872889833000045 ], [ -81.970206846999986, 28.872861271000033 ], [ -81.970217787999957, 28.872840317000055 ], [ -81.97022943199994, 28.872821692000059 ], [ -81.970250599999986, 28.872805863000053 ], [ -81.970275995999941, 28.872797953000031 ], [ -81.970301391999953, 28.872794232000047 ], [ -81.970340893999946, 28.87279920800006 ], [ -81.970376161, 28.872812877000058 ], [ -81.970390266999971, 28.872820331000071 ], [ -81.970414248999987, 28.872830270000065 ], [ -81.970505055999979, 28.872841386000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973361182999952, 28.870871425000075 ], [ -81.972817777999978, 28.870508982000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97266321099994, 28.870403417000034 ], [ -81.972484781999981, 28.870279656000037 ], [ -81.972411799999975, 28.870220128000028 ], [ -81.972366833999956, 28.870167855000034 ], [ -81.972343456999965, 28.870121923000056 ], [ -81.972321879999981, 28.870071239000026 ], [ -81.972307504999947, 28.869999969000048 ], [ -81.972285957999986, 28.869833674000063 ], [ -81.97225939599997, 28.869636528000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972817777999978, 28.870508982000047 ], [ -81.97275597099997, 28.870467757000029 ], [ -81.97266321099994, 28.870403417000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972817777999978, 28.870508982000047 ], [ -81.972878890999937, 28.870426655000074 ], [ -81.97290359699997, 28.870394690000069 ], [ -81.972918130999972, 28.870365281000034 ], [ -81.972922497999946, 28.870334592000063 ], [ -81.972918145999984, 28.870309015000032 ], [ -81.972906529999989, 28.870288553000023 ], [ -81.972892004999949, 28.87027448300006 ], [ -81.972873122999943, 28.870261693000032 ], [ -81.972849881999934, 28.870252736000054 ], [ -81.972819374999972, 28.870248893000053 ], [ -81.972788867999952, 28.870252724000068 ], [ -81.972759807999978, 28.870266784000023 ], [ -81.972738011, 28.870288519000042 ], [ -81.97266321099994, 28.870403417000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977696804999937, 28.86887451900003 ], [ -81.977700072999937, 28.868874520000077 ], [ -81.977834608999956, 28.868872173000057 ], [ -81.978025740999954, 28.868865433000053 ], [ -81.978174193999962, 28.86886104000007 ], [ -81.978233512999964, 28.868867544000068 ], [ -81.978290174999984, 28.868884181000055 ], [ -81.978339751999954, 28.868909128000041 ], [ -81.978377816999966, 28.868942127000025 ], [ -81.978406139999947, 28.868987335000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976675765999971, 28.869071904000066 ], [ -81.976735306999956, 28.869039939000061 ], [ -81.976855391999948, 28.868983115000049 ], [ -81.977013926999973, 28.86893125000006 ], [ -81.977120781999986, 28.868906776000074 ], [ -81.977257444999964, 28.86888865700007 ], [ -81.977439071999981, 28.868878030000076 ], [ -81.977521215999957, 28.868876295000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977521215999957, 28.868876295000064 ], [ -81.977605896999989, 28.868874504000075 ], [ -81.977696804999937, 28.86887451900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977521215999957, 28.868876295000064 ], [ -81.977522858999976, 28.868947770000034 ], [ -81.977518467999971, 28.868973501000028 ], [ -81.977511154999945, 28.869003091000025 ], [ -81.977512607999984, 28.86903654300005 ], [ -81.977527216999988, 28.869067423000047 ], [ -81.977547674999983, 28.869090586000027 ], [ -81.977569596999956, 28.869106028000033 ], [ -81.977600288999952, 28.869115040000054 ], [ -81.977632442999948, 28.869115045000058 ], [ -81.977658753999947, 28.869109902000048 ], [ -81.977680679999935, 28.869097040000042 ], [ -81.977701147999937, 28.869079032000059 ], [ -81.977714307999975, 28.869050729000037 ], [ -81.977718698999979, 28.869018565000033 ], [ -81.977709937999975, 28.868981252000026 ], [ -81.977696790999971, 28.868943939000076 ], [ -81.977696804999937, 28.86887451900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987520780999944, 28.882208614000035 ], [ -81.987608178999949, 28.882113063000077 ], [ -81.987845972999935, 28.88185730400005 ], [ -81.988100865999968, 28.881579553000051 ], [ -81.988342863999947, 28.881362993000039 ], [ -81.988628021999943, 28.881134749000068 ], [ -81.988821048999966, 28.880964888000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988821048999966, 28.880964888000051 ], [ -81.988835446999985, 28.88095222000004 ], [ -81.988930565999965, 28.880838437000079 ], [ -81.988959884999986, 28.880799542000034 ], [ -81.988978032999967, 28.880758340000057 ], [ -81.988985561999982, 28.880722728000023 ], [ -81.988986631999978, 28.880689929000027 ], [ -81.988978384999939, 28.880640490000076 ], [ -81.988960862999988, 28.880602607000071 ], [ -81.9889404, 28.880573611000045 ], [ -81.98880952899998, 28.880412485000079 ], [ -81.988609809999957, 28.880179523000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988821048999966, 28.880964888000051 ], [ -81.988867026999969, 28.881009157000051 ], [ -81.989129830999957, 28.881198787000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986568162999959, 28.88169526300004 ], [ -81.986640628999965, 28.881610012000067 ], [ -81.986787703999937, 28.881473204000031 ], [ -81.986982041999966, 28.881340180000052 ], [ -81.987185178999937, 28.881230466000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987358262999976, 28.881140586000072 ], [ -81.987536912999985, 28.881049052000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987185178999937, 28.881230466000034 ], [ -81.987228325999979, 28.881207161000077 ], [ -81.987358262999976, 28.881140586000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987185178999937, 28.881230466000034 ], [ -81.987234122999951, 28.88131346800003 ], [ -81.987250749999987, 28.881339082000068 ], [ -81.987274305999961, 28.881359819000068 ], [ -81.987307562999945, 28.881372021000061 ], [ -81.987336664999987, 28.881374462000053 ], [ -81.987358836999988, 28.881374464000032 ], [ -81.987382396999976, 28.881367148000038 ], [ -81.987405956999964, 28.881352514000071 ], [ -81.987425360999964, 28.881335440000043 ], [ -81.987436449999961, 28.881309828000042 ], [ -81.987436452999987, 28.881284214000061 ], [ -81.987428141999942, 28.881253721000064 ], [ -81.987404588999937, 28.881213468000055 ], [ -81.987358262999976, 28.881140586000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985512287999939, 28.880628191000028 ], [ -81.985526687999936, 28.880637456000045 ], [ -81.985581930999956, 28.880696852000028 ], [ -81.985694717999934, 28.880826444000036 ], [ -81.985779040999944, 28.880926083000077 ], [ -81.985849610999935, 28.881005351000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985849610999935, 28.881005351000056 ], [ -81.985638426999969, 28.881153715000039 ], [ -81.985547801999985, 28.881218335000028 ], [ -81.985426706999988, 28.881298079000032 ], [ -81.985262643999988, 28.88140085200007 ], [ -81.985124359999986, 28.881491938000067 ], [ -81.984934316999954, 28.881628740000053 ], [ -81.98469661699994, 28.881792352000048 ], [ -81.984528055999988, 28.881921595000051 ], [ -81.984389768999961, 28.882031932000075 ], [ -81.984273164999934, 28.882111674000043 ], [ -81.984212774999946, 28.882152083000051 ], [ -81.984163487999979, 28.882163323000043 ], [ -81.984110550999958, 28.882168137000065 ], [ -81.984057613999937, 28.882164916000079 ], [ -81.984011982999959, 28.882144026000049 ], [ -81.983975476999944, 28.882119922000072 ], [ -81.98391460299996, 28.882069692000073 ], [ -81.983832587999984, 28.882001269000057 ], [ -81.983763462999946, 28.881940413000052 ], [ -81.983730907999984, 28.881898180000064 ], [ -81.983711527999958, 28.88184930500006 ], [ -81.983702942999969, 28.881799799000078 ], [ -81.983712676999971, 28.881745550000062 ], [ -81.983750416999953, 28.881689452000046 ], [ -81.983802374999982, 28.881632391000039 ], [ -81.983918980999988, 28.881541304000052 ], [ -81.984057265999979, 28.881438530000025 ], [ -81.984199848999936, 28.881336101000045 ], [ -81.984355322999988, 28.881221984000035 ], [ -81.984541066999952, 28.881088964000071 ], [ -81.984709625999983, 28.880978630000072 ], [ -81.984899861999963, 28.880853171000069 ], [ -81.985107089999985, 28.880712589000041 ], [ -81.985267417999978, 28.880606628000066 ], [ -81.985305594999943, 28.880591231000039 ], [ -81.985324691999949, 28.880587580000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985324691999949, 28.880587580000054 ], [ -81.985342181999954, 28.880584235000072 ], [ -81.985396973999968, 28.880587582000032 ], [ -81.985447160999968, 28.880596847000049 ], [ -81.985485334999964, 28.880610852000075 ], [ -81.985512287999939, 28.880628191000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985324691999949, 28.880587580000054 ], [ -81.985451946999945, 28.880497446000049 ], [ -81.98548058199998, 28.88047505000003 ], [ -81.985493308999935, 28.88045825100005 ], [ -81.985506037999983, 28.880430253000043 ], [ -81.985523538999985, 28.880406454000024 ], [ -81.985553763999974, 28.88038825700005 ], [ -81.985598300999982, 28.880384062000076 ], [ -81.985631703999957, 28.880392466000046 ], [ -81.985653971999966, 28.880402268000068 ], [ -81.985673055999939, 28.880421870000077 ], [ -81.985685777999947, 28.880448472000069 ], [ -81.985692136999944, 28.88047367300004 ], [ -81.985688951999975, 28.880505872000072 ], [ -81.985673040999984, 28.880532471000038 ], [ -81.985642815999938, 28.880554867000058 ], [ -81.985604638999973, 28.880574463000073 ], [ -81.985512287999939, 28.880628191000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982734533999974, 28.88292973800003 ], [ -81.982856925999954, 28.882920413000079 ], [ -81.983003789999941, 28.882930745000067 ], [ -81.983148695999944, 28.882965141000057 ], [ -81.983266064999953, 28.883006753000075 ], [ -81.983346325999946, 28.883046298000068 ], [ -81.98344240299997, 28.883115409000027 ], [ -81.983620492999989, 28.883260162000056 ], [ -81.983769024999958, 28.883384486000068 ], [ -81.983925269999986, 28.883505858000035 ], [ -81.98412747499998, 28.883644313000048 ], [ -81.984198320999951, 28.883694767000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982160076999946, 28.883267535000073 ], [ -81.982175238999957, 28.883225714000048 ], [ -81.982200936999959, 28.883188594000046 ], [ -81.982228704999955, 28.883150627000077 ], [ -81.982282249999969, 28.883115262000047 ], [ -81.982482060999985, 28.883001498000056 ], [ -81.982587918999968, 28.882962787000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982587918999968, 28.882962787000054 ], [ -81.982604398999968, 28.88295647800004 ], [ -81.982721777999984, 28.88293070900005 ], [ -81.982734533999974, 28.88292973800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982587918999968, 28.882962787000054 ], [ -81.982567629999949, 28.882857562000027 ], [ -81.98255884799994, 28.882837174000031 ], [ -81.982544915999938, 28.882819870000048 ], [ -81.982534978, 28.882802372000072 ], [ -81.982529303999968, 28.882773625000027 ], [ -81.982527888999982, 28.88274363000005 ], [ -81.982536412999934, 28.882714885000041 ], [ -81.982552037999938, 28.88269364100006 ], [ -81.982571920999987, 28.882682395000074 ], [ -81.98259890099996, 28.882676150000066 ], [ -81.982627567999941, 28.88267408300004 ], [ -81.982659516999945, 28.882679711000037 ], [ -81.982684098999982, 28.882692408000025 ], [ -81.982705394999982, 28.882711157000074 ], [ -81.982718171999977, 28.882734905000063 ], [ -81.982723847999978, 28.882763651000062 ], [ -81.982725261999974, 28.882797397000047 ], [ -81.982722414999955, 28.882832391000079 ], [ -81.982734533999974, 28.88292973800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004738936999956, 28.885740638000073 ], [ -82.004749562999962, 28.885757782000042 ], [ -82.004761513999938, 28.885796700000071 ], [ -82.004768688999945, 28.885867173000065 ], [ -82.004773475999968, 28.886017587000026 ], [ -82.004771089999963, 28.886098579000077 ], [ -82.004766310999969, 28.886136447000069 ], [ -82.004753165999944, 28.886165899000048 ], [ -82.004735240999935, 28.886197454000069 ], [ -82.00470536399996, 28.886225855000077 ], [ -82.004673095999976, 28.88625320400007 ], [ -82.004631266, 28.886273191000043 ], [ -82.004451393999943, 28.886322223000036 ], [ -82.003194758999939, 28.886664716000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003194758999939, 28.886664716000041 ], [ -82.003139961999977, 28.886511229000064 ], [ -82.003059771999972, 28.886252476000038 ], [ -82.003047708999986, 28.886200658000064 ], [ -82.003050096999971, 28.886148066000032 ], [ -82.003062046999958, 28.886102836000077 ], [ -82.003076387999954, 28.88607022900004 ], [ -82.003100289999963, 28.88603867300003 ], [ -82.003130166999938, 28.886013428000069 ], [ -82.003161238999951, 28.885991339000043 ], [ -82.00321502099996, 28.885972404000029 ], [ -82.00351380099994, 28.885904027000038 ], [ -82.003865166999958, 28.885815661000038 ], [ -82.00438982299994, 28.885669440000072 ], [ -82.004459139999938, 28.885647349000067 ], [ -82.004509335999956, 28.885635776000072 ], [ -82.00454638399998, 28.88563367200004 ], [ -82.004583883999942, 28.885639495000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004583883999942, 28.885639495000078 ], [ -82.004587018999985, 28.885639982000043 ], [ -82.00462287299996, 28.885653655000056 ], [ -82.004668289999984, 28.885674689000041 ], [ -82.004699363999976, 28.885695725000062 ], [ -82.004728047999947, 28.885723072000076 ], [ -82.004738936999956, 28.885740638000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004583883999942, 28.885639495000078 ], [ -82.004590859999951, 28.885620974000062 ], [ -82.004606917999979, 28.885602986000038 ], [ -82.004618595999943, 28.885588852000069 ], [ -82.004633192999961, 28.885579858000028 ], [ -82.004660929999943, 28.885570864000044 ], [ -82.004693047999979, 28.885570862000066 ], [ -82.004717865999964, 28.885576 ], [ -82.004736842999989, 28.885584994000055 ], [ -82.004754361999971, 28.885600411000041 ], [ -82.004768960999968, 28.885620968000069 ], [ -82.00477626199995, 28.885640240000043 ], [ -82.004779182999982, 28.885668507000048 ], [ -82.004773345, 28.885695487000078 ], [ -82.004738936999956, 28.885740638000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008905222999942, 28.888782604000028 ], [ -82.009037114999956, 28.888764193000043 ], [ -82.009251096999947, 28.88875790000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008704247999958, 28.888813718000051 ], [ -82.008729122999966, 28.888807186000065 ], [ -82.008905222999942, 28.888782604000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00855667899998, 28.888852461000056 ], [ -82.008704247999958, 28.888813718000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008411199999955, 28.888900822000039 ], [ -82.008515032999981, 28.888863395000044 ], [ -82.00855667899998, 28.888852461000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008021577999955, 28.889074884000024 ], [ -82.008341217999941, 28.888926047000041 ], [ -82.008411199999955, 28.888900822000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009769160999952, 28.888780948000033 ], [ -82.009777056999951, 28.888780669000028 ], [ -82.009904759999984, 28.888760826000066 ], [ -82.00999490199996, 28.88873437500007 ], [ -82.010134242999982, 28.888675546000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009251096999947, 28.88875790000003 ], [ -82.009375157999955, 28.888754253000059 ], [ -82.009631511999942, 28.888778997000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009631511999942, 28.888778997000031 ], [ -82.009683155999937, 28.888783981000074 ], [ -82.009769160999952, 28.888780948000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009631511999942, 28.888778997000031 ], [ -82.009632386999954, 28.88884151600007 ], [ -82.00963047, 28.88887532800004 ], [ -82.009622786999955, 28.888890543000059 ], [ -82.009613185999967, 28.888922664000063 ], [ -82.009609347999969, 28.888961547000065 ], [ -82.009618953999961, 28.888985213000069 ], [ -82.00964008699998, 28.889012260000072 ], [ -82.009665058999985, 28.889025782000033 ], [ -82.009695792999935, 28.889034233000075 ], [ -82.009720765999987, 28.889032541000063 ], [ -82.00974957699998, 28.889027468000052 ], [ -82.009776469999963, 28.889013940000041 ], [ -82.009793755999965, 28.888991962000034 ], [ -82.009807198999965, 28.888961532000053 ], [ -82.00980719599994, 28.888931102000072 ], [ -82.009793745999957, 28.888890531000072 ], [ -82.009784138999976, 28.888865173000056 ], [ -82.009769160999952, 28.888780948000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011335552999981, 28.885879484000043 ], [ -82.011636721999935, 28.885898867000037 ], [ -82.011651253999958, 28.885899528000039 ], [ -82.011711704999982, 28.885897665000073 ], [ -82.011771271999976, 28.885888416000057 ], [ -82.011828797999954, 28.885871959000042 ], [ -82.011883160999957, 28.885848619000058 ], [ -82.011933303999967, 28.885818844000028 ], [ -82.011939433999942, 28.885813986000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012086785999941, 28.885645325000041 ], [ -82.012480962999973, 28.885096200000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011939433999942, 28.885813986000073 ], [ -82.01197824999997, 28.885783219000075 ], [ -82.012017126999979, 28.885742435000054 ], [ -82.01204740299994, 28.885700189000033 ], [ -82.012086785999941, 28.885645325000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011939433999942, 28.885813986000073 ], [ -82.011867131999963, 28.885716110000033 ], [ -82.011848210999972, 28.885691138000027 ], [ -82.011838749999981, 28.885659504000046 ], [ -82.011838746999956, 28.885627871000054 ], [ -82.011846309999953, 28.88560622600005 ], [ -82.01185954999994, 28.885584579000067 ], [ -82.011876573999984, 28.88556959400006 ], [ -82.011897380999983, 28.885557729000027 ], [ -82.011930012999983, 28.885551484000075 ], [ -82.01195413399995, 28.885555228000044 ], [ -82.011980618999985, 28.885566255000072 ], [ -82.012010889999942, 28.885584566000034 ], [ -82.012086785999941, 28.885645325000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012862753999968, 28.884559054000079 ], [ -82.012972255999955, 28.884413807000044 ], [ -82.012977188999969, 28.884408157000053 ], [ -82.013026170999979, 28.884358646000067 ], [ -82.013081044999979, 28.884314176000032 ], [ -82.013141143999974, 28.884275290000062 ], [ -82.013205737999954, 28.884242459000063 ], [ -82.013274042999967, 28.884216081000034 ], [ -82.013345231999949, 28.884196477000046 ], [ -82.013382925999963, 28.884189072000026 ], [ -82.013420891999942, 28.884176602000025 ], [ -82.013466946999984, 28.884169019000069 ], [ -82.013499843999966, 28.88416821900006 ], [ -82.01351589899997, 28.884165465000024 ], [ -82.013556867999966, 28.884163633000071 ], [ -82.013582722999956, 28.884166256000071 ], [ -82.014037822999967, 28.884162953000043 ], [ -82.014069367, 28.884160851000047 ], [ -82.014112796999939, 28.884151573000054 ], [ -82.014153446999956, 28.884135229000037 ], [ -82.014189847999944, 28.884112409000068 ], [ -82.014220685999987, 28.88408393800006 ], [ -82.014244841999982, 28.884050846000036 ], [ -82.014261446999967, 28.884014328000035 ], [ -82.014269899999988, 28.883975704000079 ], [ -82.014270894999981, 28.883961029000034 ], [ -82.014267166999957, 28.883762387000047 ], [ -82.014262936999955, 28.883715779000056 ], [ -82.014250174999972, 28.883664176000025 ], [ -82.014229198999942, 28.883614696000052 ], [ -82.014222744999984, 28.883602826000072 ], [ -82.014204364999955, 28.883587377000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014059090999979, 28.883526712000048 ], [ -82.014017209999963, 28.883523491000062 ], [ -82.013989635999963, 28.883524695000062 ], [ -82.013575239999966, 28.88352799300003 ], [ -82.01348163199998, 28.883523771000057 ], [ -82.013466767999944, 28.883522909000078 ], [ -82.01338426999996, 28.883513819000029 ], [ -82.013303211999983, 28.883497544000079 ], [ -82.013224397999977, 28.883474246000048 ], [ -82.013182665999977, 28.883458671000028 ], [ -82.013084611999943, 28.88341471800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014204364999955, 28.883587377000026 ], [ -82.014196762999973, 28.883580989000052 ], [ -82.014156875999959, 28.883556413000065 ], [ -82.014112746999956, 28.883538308000027 ], [ -82.014065713999969, 28.883527221000065 ], [ -82.014059090999979, 28.883526712000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014204364999955, 28.883587377000026 ], [ -82.014247652999984, 28.883532165000076 ], [ -82.014269801999944, 28.883499588000063 ], [ -82.014281899999958, 28.883469151000043 ], [ -82.014283625999951, 28.88344175900005 ], [ -82.014269788999968, 28.883411326000044 ], [ -82.014252496999973, 28.883391544000062 ], [ -82.014226557999962, 28.88337176400006 ], [ -82.014197162999949, 28.883364157000074 ], [ -82.014166041999943, 28.883365683000079 ], [ -82.014129733999937, 28.883376340000041 ], [ -82.014107258999957, 28.883393080000076 ], [ -82.014088243999936, 28.883421996000038 ], [ -82.014074416999961, 28.883461564000072 ], [ -82.014059090999979, 28.883526712000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007167285999969, 28.885214766000047 ], [ -82.007186051999952, 28.885223558000064 ], [ -82.007261612999969, 28.885250600000063 ], [ -82.007339934999948, 28.885270659000071 ], [ -82.007420182999965, 28.885283526000023 ], [ -82.007457221999971, 28.885286968000059 ], [ -82.00787676799996, 28.885342967000042 ], [ -82.00824281499996, 28.885393836000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007268073999967, 28.884317467000074 ], [ -82.007066558999952, 28.884467013000062 ], [ -82.006927684999937, 28.884561241000029 ], [ -82.006837994999955, 28.884624907000045 ], [ -82.006837766999979, 28.884625127000049 ], [ -82.006809702999988, 28.884657838000066 ], [ -82.006788945999972, 28.884694532000026 ], [ -82.006776201999969, 28.884733959000073 ], [ -82.006771908999951, 28.884774773000061 ], [ -82.006776207999962, 28.884815588000038 ], [ -82.00678895599998, 28.88485501100007 ], [ -82.006809717999943, 28.884891702000061 ], [ -82.006826438999951, 28.884912664000069 ], [ -82.006829613999969, 28.884917372000075 ], [ -82.00688101999998, 28.884985903000029 ], [ -82.006939196999951, 28.885050102000037 ], [ -82.007003680999958, 28.885109453000041 ], [ -82.007015693999961, 28.88511869000007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007015693999961, 28.88511869000007 ], [ -82.007073946999981, 28.885163477000049 ], [ -82.007110008999973, 28.885187672000029 ], [ -82.007114049999984, 28.88518982100004 ], [ -82.007167285999969, 28.885214766000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007015693999961, 28.88511869000007 ], [ -82.006973742999946, 28.885188924000033 ], [ -82.006950810999967, 28.885219201000041 ], [ -82.006921507999948, 28.885244994000061 ], [ -82.006906219999962, 28.88527190700006 ], [ -82.006903673999943, 28.885297698000045 ], [ -82.006907498999965, 28.885322367000072 ], [ -82.006920240999989, 28.885344793000058 ], [ -82.006938078999951, 28.885363856000026 ], [ -82.006969932999937, 28.885377310000024 ], [ -82.007003058999942, 28.885384037000051 ], [ -82.007042556999977, 28.885380672000053 ], [ -82.007073133999938, 28.885366092000027 ], [ -82.007101161999969, 28.885340299000063 ], [ -82.007127914999955, 28.885296566000079 ], [ -82.007167285999969, 28.885214766000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004734649999989, 28.872942217000059 ], [ -82.004722008999977, 28.872933500000045 ], [ -82.00467387499998, 28.872891136000078 ], [ -82.004631894999989, 28.872843974000034 ], [ -82.004630554999949, 28.872842022000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004734649999989, 28.872942217000059 ], [ -82.004686847999949, 28.873019338000063 ], [ -82.004661189999979, 28.873047818000032 ], [ -82.004639992999955, 28.873066477000066 ], [ -82.004609870999957, 28.87307531600004 ], [ -82.004586440999958, 28.873074334000023 ], [ -82.00455631899996, 28.873069426000029 ], [ -82.004535120999947, 28.873058624000066 ], [ -82.004517268999962, 28.873043894000034 ], [ -82.004506111999945, 28.873030147000065 ], [ -82.004492722999942, 28.873003632000064 ], [ -82.00448825999996, 28.872980064000046 ], [ -82.004491605999988, 28.872957477000057 ], [ -82.004504992999955, 28.87293980000004 ], [ -82.004518379999979, 28.872929979000048 ], [ -82.004541807999942, 28.872915248000027 ], [ -82.00456858299998, 28.872897571000067 ], [ -82.004592010999943, 28.872877929000026 ], [ -82.004630554999949, 28.872842022000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006985929999985, 28.873867593000057 ], [ -82.006878264999955, 28.87375578800004 ], [ -82.00683663999996, 28.873698015000059 ], [ -82.006791886999963, 28.873602677000065 ], [ -82.006777690999968, 28.873549667000077 ], [ -82.006769300999963, 28.873480243000074 ], [ -82.006768794999971, 28.873306679000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006768794999971, 28.873306679000052 ], [ -82.00676856299998, 28.873226874000068 ], [ -82.006768541999975, 28.873154551000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006768794999971, 28.873306679000052 ], [ -82.006627310999988, 28.873310222000043 ], [ -82.006571409999935, 28.87330905400006 ], [ -82.006538134999971, 28.873302025000044 ], [ -82.006519499999968, 28.873293826000065 ], [ -82.006499533999943, 28.873279768000032 ], [ -82.006483560999982, 28.873255165000046 ], [ -82.006475573999978, 28.873232907000045 ], [ -82.006478233999985, 28.873207133000051 ], [ -82.006491542999981, 28.873183701000073 ], [ -82.006506181999953, 28.873166127000047 ], [ -82.006527476999963, 28.873147381000024 ], [ -82.006555426999967, 28.873136836000072 ], [ -82.006589144999964, 28.873132342000076 ], [ -82.006640609999977, 28.873132339000051 ], [ -82.006695623999974, 28.873138585000049 ], [ -82.006768541999975, 28.873154551000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013365147999934, 28.877354385000046 ], [ -82.013320544999942, 28.87724677500006 ], [ -82.01330765199998, 28.877187999000057 ], [ -82.013253374999977, 28.876759059000051 ], [ -82.013244340999961, 28.876687168000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013223060999962, 28.876517817000035 ], [ -82.013220602, 28.876498254000069 ], [ -82.01318783499994, 28.876245952000033 ], [ -82.013146778999953, 28.876064970000073 ], [ -82.013073236999958, 28.875867767000045 ], [ -82.012997547999987, 28.875721232000046 ], [ -82.012917831999971, 28.875598973000024 ], [ -82.012813568999945, 28.875468889000047 ], [ -82.012735027999952, 28.875401445000023 ], [ -82.012681769999972, 28.875368028000025 ], [ -82.01259949699994, 28.875327245000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013244340999961, 28.876687168000046 ], [ -82.013223060999962, 28.876517817000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013244340999961, 28.876687168000046 ], [ -82.013342136999938, 28.876683396000033 ], [ -82.013414207999972, 28.876679296000077 ], [ -82.013432805999969, 28.87667430700003 ], [ -82.013450240999987, 28.876665993000074 ], [ -82.013471162999963, 28.876652050000075 ], [ -82.013486852999961, 28.876629026000046 ], [ -82.01349324399996, 28.876605622000056 ], [ -82.013493822999976, 28.87658605300004 ], [ -82.013489751999941, 28.876565719000041 ], [ -82.013480739999977, 28.87654615200006 ], [ -82.01346678799996, 28.876528503000031 ], [ -82.013443247999987, 28.876513927000076 ], [ -82.013407210999958, 28.876505361000056 ], [ -82.013375825999958, 28.876507411000034 ], [ -82.013323516999947, 28.876513554000041 ], [ -82.013223060999962, 28.876517817000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993696892999935, 28.877100304000066 ], [ -81.993342331999941, 28.876772881000079 ], [ -81.993306083999983, 28.87674026600007 ], [ -81.993281264999951, 28.876702201000057 ], [ -81.993268675999957, 28.87667252600005 ], [ -81.993264402999955, 28.876645242000052 ], [ -81.993265474999987, 28.876600084000074 ], [ -81.993268332999946, 28.876587197000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993314941999984, 28.87648673800004 ], [ -81.993343511999967, 28.876448617000051 ], [ -81.993747207999945, 28.875961277000044 ], [ -81.994174544999964, 28.875533708000034 ], [ -81.994232125999986, 28.875483779000035 ], [ -81.994268639999973, 28.875463265000064 ], [ -81.994323023999982, 28.875450276000038 ], [ -81.994379736999974, 28.875447542000074 ], [ -81.994436450999956, 28.875456435000046 ], [ -81.994483839999987, 28.875473531000068 ], [ -81.994520352999984, 28.875498151000045 ], [ -81.994745785999953, 28.875707934000047 ], [ -81.995245045, 28.87619096800006 ], [ -81.995712820999984, 28.87670963100004 ], [ -81.99595291299994, 28.876996545000054 ], [ -81.995972564999988, 28.87702715100005 ], [ -81.995982691999984, 28.877062003000049 ], [ -81.995983143999979, 28.877102997000065 ], [ -81.995978607999973, 28.877134932000047 ], [ -81.995960196999988, 28.877188695000029 ], [ -81.995936272999984, 28.877217432000066 ], [ -81.995901719999949, 28.877248081000062 ], [ -81.994894112999987, 28.877913182000043 ], [ -81.994786154999986, 28.877976525000065 ], [ -81.994713091999984, 28.877994829000045 ], [ -81.994659990999935, 28.87799321600005 ], [ -81.994605057999934, 28.877977097000041 ], [ -81.994561113999964, 28.877960979000079 ], [ -81.994515337999985, 28.877923908000071 ], [ -81.994185761999972, 28.877577384000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993268332999946, 28.876587197000049 ], [ -81.993274028999963, 28.876561512000023 ], [ -81.993287925999937, 28.876525761000039 ], [ -81.993310374999965, 28.876492833000043 ], [ -81.993314941999984, 28.87648673800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993268332999946, 28.876587197000049 ], [ -81.993233409999959, 28.876571858000034 ], [ -81.993208826999989, 28.876563390000058 ], [ -81.993183173999967, 28.876558684000031 ], [ -81.993159659999947, 28.876558683000042 ], [ -81.993139350999968, 28.876558682000052 ], [ -81.993113697999945, 28.876555858000074 ], [ -81.993088045999968, 28.876549271000044 ], [ -81.993069874999946, 28.876538921000076 ], [ -81.993052772999988, 28.87652386700006 ], [ -81.993042086999935, 28.876503169000046 ], [ -81.993037812999944, 28.876479648000043 ], [ -81.99303781499998, 28.876452366000024 ], [ -81.993049572999951, 28.876426963000029 ], [ -81.993072022999968, 28.876404385000058 ], [ -81.993096605999938, 28.876390274000073 ], [ -81.993126534999988, 28.876386513000057 ], [ -81.993155394999974, 28.876388396000038 ], [ -81.993191735999972, 28.876400629000045 ], [ -81.993230213999936, 28.876427914000033 ], [ -81.993314941999984, 28.87648673800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960592093999935, 28.869422323000038 ], [ -81.960558115999959, 28.869431513000052 ], [ -81.960483360999945, 28.869437341000037 ], [ -81.960048121999989, 28.869463534000033 ], [ -81.959036439999977, 28.869526106000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959036439999977, 28.869526106000023 ], [ -81.958837097999947, 28.869528970000033 ], [ -81.958476, 28.869527661000063 ], [ -81.958303858999955, 28.869527345000051 ], [ -81.958250704999955, 28.86951709300007 ], [ -81.958182608999948, 28.869486364000068 ], [ -81.958136114999945, 28.869439558000067 ], [ -81.958111215999963, 28.869392757000071 ], [ -81.958101263999936, 28.869354736000048 ], [ -81.958098051999968, 28.869079833000058 ], [ -81.958111364999979, 28.869022809000057 ], [ -81.958136300999968, 28.868976024000062 ], [ -81.958167874999958, 28.868945326000073 ], [ -81.958214398999985, 28.868917558000078 ], [ -81.95826091899994, 28.868900026000063 ], [ -81.958370416999969, 28.868889917000047 ], [ -81.958745983999961, 28.868891401000042 ], [ -81.959143004999987, 28.868887136000069 ], [ -81.959506810999983, 28.868863849000036 ], [ -81.95988224499996, 28.868836180000073 ], [ -81.960207841999988, 28.868815804000064 ], [ -81.960422138999945, 28.868798321000043 ], [ -81.960515166999983, 28.868792499000051 ], [ -81.960576628999945, 28.868796904000078 ], [ -81.960621471999957, 28.868818850000025 ], [ -81.960664652999981, 28.868845183000076 ], [ -81.960692881999989, 28.868872974000055 ], [ -81.960721104999948, 28.868916849000072 ], [ -81.960737694999978, 28.868976807000024 ], [ -81.960745976999988, 28.869038223000075 ], [ -81.960752596999953, 28.869105489000049 ], [ -81.960759203999942, 28.869203461000041 ], [ -81.960757518999969, 28.869266338000045 ], [ -81.960737567999956, 28.86931458600003 ], [ -81.960702665999975, 28.869356981000067 ], [ -81.960690933999956, 28.869366365000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960690933999956, 28.869366365000076 ], [ -81.96064783099996, 28.869400833000043 ], [ -81.960601309999959, 28.869419829000037 ], [ -81.960592093999935, 28.869422323000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960690933999956, 28.869366365000076 ], [ -81.960769913999968, 28.869426429000043 ], [ -81.96080415299997, 28.86945281900006 ], [ -81.960828398999979, 28.86948925400003 ], [ -81.960836945999972, 28.869531966000068 ], [ -81.960828369999945, 28.869565879000049 ], [ -81.96080552799998, 28.869590996000056 ], [ -81.960768419999965, 28.869604803000072 ], [ -81.960725605999983, 28.869611072000055 ], [ -81.960684223999976, 28.869602267000062 ], [ -81.960657115999936, 28.869585928000049 ], [ -81.960641428999963, 28.869558288000064 ], [ -81.960635733999936, 28.869525626000041 ], [ -81.960627184999964, 28.869489196000075 ], [ -81.960615777999976, 28.86946406900006 ], [ -81.960592093999935, 28.869422323000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959590430999981, 28.88113536000003 ], [ -81.959590237999976, 28.881130890000065 ], [ -81.95956106899996, 28.880806353000025 ], [ -81.959526214999983, 28.880538540000032 ], [ -81.959518801999934, 28.880498835000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959488721999946, 28.880337714000063 ], [ -81.959482831999935, 28.880306166000025 ], [ -81.959461364999981, 28.880177375000073 ], [ -81.959454932999961, 28.88011487600005 ], [ -81.959465706999936, 28.880077002000064 ], [ -81.959489386999962, 28.880048601000055 ], [ -81.959525979999967, 28.880014523000057 ], [ -81.95956902599994, 28.879986128000041 ], [ -81.959616371999971, 28.879965308000067 ], [ -81.959762692999959, 28.879959671000051 ], [ -81.960047091999968, 28.879961834000028 ], [ -81.960157432999949, 28.879964616000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959518801999934, 28.880498835000026 ], [ -81.959488721999946, 28.880337714000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959518801999934, 28.880498835000026 ], [ -81.959396885, 28.880522201000076 ], [ -81.959350771999937, 28.880528596000033 ], [ -81.959309513999983, 28.880526447000079 ], [ -81.959279184999957, 28.880507213000044 ], [ -81.959259778999979, 28.880481575000033 ], [ -81.95925372399995, 28.880453804000069 ], [ -81.959254948999956, 28.880422831000033 ], [ -81.959265879999975, 28.88039720200004 ], [ -81.959282876999964, 28.880375846000049 ], [ -81.959308365999959, 28.880359834000046 ], [ -81.959347198999978, 28.880354505000071 ], [ -81.959399379999979, 28.880349180000053 ], [ -81.959488721999946, 28.880337714000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96275118899996, 28.882717705000061 ], [ -81.962670666999941, 28.882728755000073 ], [ -81.962541079999937, 28.882739793000042 ], [ -81.962368720999962, 28.882740851000051 ], [ -81.96225801099996, 28.882731963000026 ], [ -81.962171404999935, 28.882720145000064 ], [ -81.962140925999961, 28.882712685000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962006049999957, 28.882644971000047 ], [ -81.961995104999971, 28.882633339000051 ], [ -81.961976352999955, 28.882598883000071 ], [ -81.961964938999984, 28.88256025000004 ], [ -81.961961077999945, 28.882524807000038 ], [ -81.961976320999952, 28.882394160000047 ], [ -81.96199196799995, 28.882257120000077 ], [ -81.96200648599995, 28.882076641000026 ], [ -81.962021022999977, 28.881842532000064 ], [ -81.962026973999969, 28.881588480000062 ], [ -81.962027094999939, 28.881255014000033 ], [ -81.962021355, 28.880929456000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962140925999961, 28.882712685000058 ], [ -81.962102553999955, 28.882703292000031 ], [ -81.962060508999969, 28.882685400000071 ], [ -81.962026058999982, 28.882666235000045 ], [ -81.962006049999957, 28.882644971000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962140925999961, 28.882712685000058 ], [ -81.962128021999945, 28.882766066000045 ], [ -81.962114903999975, 28.882804505000024 ], [ -81.962093054999968, 28.882833972000071 ], [ -81.962062472999946, 28.882851902000027 ], [ -81.962031896999974, 28.882857020000074 ], [ -81.961986764999949, 28.88285572500007 ], [ -81.961957649999988, 28.882845465000059 ], [ -81.961935818999962, 28.882826239000053 ], [ -81.961921266, 28.882807013000047 ], [ -81.961913996999954, 28.882778821000045 ], [ -81.961915463999958, 28.882748067000023 ], [ -81.961927123999942, 28.882714754000062 ], [ -81.961946056999977, 28.882699383000045 ], [ -81.962006049999957, 28.882644971000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966638011999976, 28.884788541000034 ], [ -81.96663644399996, 28.884790977000023 ], [ -81.966606954999975, 28.884819486000026 ], [ -81.966581235999968, 28.884834271000045 ], [ -81.966529511999966, 28.884859779000067 ], [ -81.966440212999942, 28.884877896000035 ], [ -81.966238061999945, 28.884918067000058 ], [ -81.966070286, 28.884948278000024 ], [ -81.965999442999987, 28.884965054000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965042607999976, 28.883478049000075 ], [ -81.965165985999988, 28.883457880000037 ], [ -81.965386915999943, 28.883425110000076 ], [ -81.965571211999986, 28.883397709000064 ], [ -81.965650881999977, 28.883394875000079 ], [ -81.965722604999939, 28.883407519000059 ], [ -81.965782845999968, 28.883440361000055 ], [ -81.965825865999989, 28.88348835100004 ], [ -81.965917625999964, 28.883639884000047 ], [ -81.966023723999967, 28.883824248000053 ], [ -81.966172849999964, 28.884031349000054 ], [ -81.966316249999977, 28.884200570000075 ], [ -81.966402120999987, 28.884293806000073 ], [ -81.966466939999975, 28.884364297000047 ], [ -81.966550891999987, 28.884451637000041 ], [ -81.966648478999957, 28.884565138000028 ], [ -81.96667027899997, 28.884605457000077 ], [ -81.96667899199997, 28.884641932000079 ], [ -81.966679948999968, 28.884674302000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966679948999968, 28.884674302000064 ], [ -81.966680070999985, 28.884678407000024 ], [ -81.966673511999943, 28.884721599000045 ], [ -81.966658232999976, 28.884757109000077 ], [ -81.966638011999976, 28.884788541000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966679948999968, 28.884674302000064 ], [ -81.966786111999966, 28.884681586000056 ], [ -81.966827042999967, 28.884687601000053 ], [ -81.966850916999988, 28.884701115000041 ], [ -81.966873079999971, 28.884734145000039 ], [ -81.966874771999983, 28.88477017200006 ], [ -81.966866231999973, 28.884812201000045 ], [ -81.966840641999966, 28.884839214000067 ], [ -81.966804818999947, 28.884852714000033 ], [ -81.966765588999976, 28.884857208000028 ], [ -81.966716132999977, 28.884842184000036 ], [ -81.966638011999976, 28.884788541000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96590101399994, 28.888396137000029 ], [ -81.965977363999968, 28.888416980000045 ], [ -81.966158204999942, 28.888462749000041 ], [ -81.96631886199998, 28.888501621000046 ], [ -81.966390387999979, 28.888512470000023 ], [ -81.966453456999943, 28.888511809000079 ], [ -81.966513452999948, 28.888499639000031 ], [ -81.966555762999974, 28.888475959000061 ], [ -81.966587305999951, 28.888450244000069 ], [ -81.966611926999974, 28.888419113000054 ], [ -81.966637325999955, 28.88836496700003 ], [ -81.966649645999951, 28.888319617000036 ], [ -81.966661974999965, 28.888249900000062 ], [ -81.96668817799997, 28.888082036000071 ], [ -81.966720339999938, 28.887889009000048 ], [ -81.966738570999951, 28.887764492000031 ], [ -81.966745807999985, 28.887725359000058 ], [ -81.96674823799998, 28.887684944000057 ], [ -81.966741636999984, 28.887654204000057 ], [ -81.966726490999974, 28.887615064000045 ], [ -81.966722139999945, 28.887608759000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966576344999964, 28.887501302000032 ], [ -81.96656702699994, 28.887497710000048 ], [ -81.966514679999989, 28.887490602000071 ], [ -81.966431683999986, 28.887480660000051 ], [ -81.966345886999989, 28.88746893900003 ], [ -81.966241965999984, 28.887448706000043 ], [ -81.966141278999942, 28.887428026000066 ], [ -81.966066246999958, 28.887412665000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966722139999945, 28.887608759000045 ], [ -81.966707180999947, 28.887587086000053 ], [ -81.966673355999944, 28.887550916000066 ], [ -81.966625027999953, 28.887520061000032 ], [ -81.966576344999964, 28.887501302000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966722139999945, 28.887608759000045 ], [ -81.966765195999983, 28.887563701000033 ], [ -81.966784539999935, 28.887532863000047 ], [ -81.96679663599997, 28.887498832000063 ], [ -81.966793020999944, 28.887464796000074 ], [ -81.96677731799997, 28.887444585000026 ], [ -81.966760404999945, 28.887427563000074 ], [ -81.966725364999945, 28.887411602000043 ], [ -81.966689111999983, 28.887406274000057 ], [ -81.966660107999985, 28.887410521000049 ], [ -81.966635934999942, 28.887420089000045 ], [ -81.966619011999967, 28.887432846000024 ], [ -81.966599667999958, 28.887460494000038 ], [ -81.966576344999964, 28.887501302000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958967568999981, 28.883716565000043 ], [ -81.959513262999963, 28.883721240000057 ], [ -81.96008663899994, 28.883738729000072 ], [ -81.960215355999935, 28.883757546000027 ], [ -81.960646355999984, 28.883833648000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958967568999981, 28.883716565000043 ], [ -81.958973931999935, 28.883677462000037 ], [ -81.958974890999968, 28.883535780000045 ], [ -81.95897494899998, 28.883386237000025 ], [ -81.958975024999972, 28.883195784000065 ], [ -81.958975070999941, 28.883077179000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958886879999966, 28.884354634000033 ], [ -81.958898658999942, 28.884199938000052 ], [ -81.958902528999943, 28.884172383000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958917360999976, 28.884067310000034 ], [ -81.958937012999968, 28.883932768000079 ], [ -81.958958012999972, 28.883808738000027 ], [ -81.958967568999981, 28.883716565000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958902528999943, 28.884172383000077 ], [ -81.958915436999973, 28.884080483000048 ], [ -81.958917360999976, 28.884067310000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958902528999943, 28.884172383000077 ], [ -81.95876745299995, 28.884162025000023 ], [ -81.958734126999957, 28.884164808000037 ], [ -81.958705558999952, 28.884175971000047 ], [ -81.958673817999966, 28.884184342000026 ], [ -81.958635734999973, 28.884184330000039 ], [ -81.958607173999951, 28.884175941000024 ], [ -81.958583380999983, 28.884154986000055 ], [ -81.958572283999956, 28.884127049000028 ], [ -81.958569120999982, 28.884100512000032 ], [ -81.958575481999958, 28.884065600000042 ], [ -81.958586598999943, 28.884043256000041 ], [ -81.958604062999939, 28.884020916000054 ], [ -81.958630249999942, 28.884009577000029 ], [ -81.958665953999969, 28.884009762000062 ], [ -81.958702448999986, 28.884015360000035 ], [ -81.958723074999966, 28.884022350000066 ], [ -81.958743699999957, 28.884030735000067 ], [ -81.958764324999947, 28.884043311000028 ], [ -81.958781776999956, 28.884051696000029 ], [ -81.958805575999975, 28.884061480000071 ], [ -81.958917360999976, 28.884067310000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961292527999944, 28.905199983000045 ], [ -81.961305526, 28.905208873000049 ], [ -81.961341273999949, 28.905223739000064 ], [ -81.961393468999972, 28.90523156200004 ], [ -81.961471453999934, 28.905235016000063 ], [ -81.961576736999973, 28.905235047000076 ], [ -81.961705416999962, 28.905235083000036 ], [ -81.961824348999983, 28.905233400000043 ], [ -81.961911909999969, 28.905232828000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960010097999941, 28.902863615000058 ], [ -81.960011969999982, 28.903067773000032 ], [ -81.960013881999942, 28.903168995000044 ], [ -81.960018037999987, 28.903297843000075 ], [ -81.960029400999986, 28.903371442000036 ], [ -81.960044981999943, 28.90341262100003 ], [ -81.96007031399995, 28.903446941000027 ], [ -81.960101498999961, 28.903472684000064 ], [ -81.960136586999965, 28.903489851000074 ], [ -81.960214562999965, 28.903515608000077 ], [ -81.960308696999959, 28.903545127000029 ], [ -81.960368561999985, 28.903575700000033 ], [ -81.96046017599997, 28.903628910000066 ], [ -81.96058686899994, 28.903719875000036 ], [ -81.960683948999986, 28.903799267000068 ], [ -81.960780020999948, 28.90389349000003 ], [ -81.960851093999963, 28.903974986000037 ], [ -81.960914284999944, 28.904057946000023 ], [ -81.960961596999937, 28.904128343000025 ], [ -81.961011378999956, 28.904209833000039 ], [ -81.961057640999968, 28.904300947000024 ], [ -81.961096673999975, 28.904394811000031 ], [ -81.961125159999938, 28.904482482000049 ], [ -81.961153640999953, 28.90458596700006 ], [ -81.961171371999967, 28.90470491800005 ], [ -81.961183524999967, 28.904796361000024 ], [ -81.961184979999985, 28.904888379000056 ], [ -81.961186899999973, 28.904967299000077 ], [ -81.961188824999965, 28.905032493000078 ], [ -81.961191368999948, 28.905057500000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961191368999948, 28.905057500000055 ], [ -81.961192362999952, 28.905067271000064 ], [ -81.961203274999946, 28.905095237000069 ], [ -81.961216175999937, 28.905123206000042 ], [ -81.961233050999965, 28.905146806000062 ], [ -81.961254889999964, 28.905173029000025 ], [ -81.961278452999977, 28.905190355000059 ], [ -81.961292527999944, 28.905199983000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961191368999948, 28.905057500000055 ], [ -81.96115296499994, 28.905078474000049 ], [ -81.961123824999959, 28.905099438000036 ], [ -81.96110263199995, 28.905116910000061 ], [ -81.961084084999982, 28.90514151900004 ], [ -81.961078117999989, 28.905164240000033 ], [ -81.961079100999939, 28.905188708000026 ], [ -81.961091008999972, 28.905214055000044 ], [ -81.961105234999934, 28.905234595000024 ], [ -81.961133037999957, 28.905250916000057 ], [ -81.961170109999955, 28.905262578000077 ], [ -81.961213807999968, 28.905259095000076 ], [ -81.96124956999995, 28.905238132000079 ], [ -81.961292527999944, 28.905199983000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960456051999984, 28.900014122000073 ], [ -81.960449228999948, 28.899897559000067 ], [ -81.960440525999957, 28.899840741000048 ], [ -81.960434429999964, 28.899806957000067 ], [ -81.960425717999954, 28.899773172000039 ], [ -81.96040284299994, 28.899719917000027 ], [ -81.960304533999988, 28.899533588000054 ], [ -81.960037593999971, 28.899036901000045 ], [ -81.959904347999952, 28.898783345000027 ], [ -81.95989390799997, 28.898763448000068 ], [ -81.95987295499998, 28.898738804000061 ], [ -81.959764928999959, 28.898613451000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959764928999959, 28.898613451000074 ], [ -81.959656079999945, 28.898528068000076 ], [ -81.959617698999978, 28.898505535000027 ], [ -81.959575617999974, 28.898487686000067 ], [ -81.959525807999967, 28.898478891000025 ], [ -81.959509231999959, 28.898478886000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95933314399997, 28.898525752000069 ], [ -81.959325699999965, 28.898531040000023 ], [ -81.959298930999978, 28.898561744000062 ], [ -81.959277978999978, 28.898593472000073 ], [ -81.959255464999956, 28.89865198800004 ], [ -81.959238385999981, 28.898697026000036 ], [ -81.959219751999967, 28.89875025200007 ], [ -81.959207321999941, 28.898803482000062 ], [ -81.959202648999963, 28.89885534900003 ], [ -81.959202632999961, 28.898897662000024 ], [ -81.95920416599995, 28.898941341000068 ], [ -81.959215006999955, 28.898985022000033 ], [ -81.959230154999943, 28.899021355000059 ], [ -81.959348298999942, 28.899245768000071 ], [ -81.959531294999977, 28.899591843000053 ], [ -81.959692160999964, 28.899896065000064 ], [ -81.959731638999983, 28.899960287000056 ], [ -81.959750327999984, 28.899983345000066 ], [ -81.959774940999978, 28.900005410000063 ], [ -81.959810510999944, 28.900028662000068 ], [ -81.959847150999963, 28.900046332000045 ], [ -81.959876811999948, 28.900055554000062 ], [ -81.959919853999963, 28.900060114000041 ], [ -81.960064597999974, 28.900053969000055 ], [ -81.960456051999984, 28.900014122000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995398851999937, 28.840763935000041 ], [ -81.995425292999983, 28.840743322000037 ], [ -81.995468573999972, 28.840697302000024 ], [ -81.995537281999987, 28.840616381000075 ], [ -81.995572232999962, 28.840565586000025 ], [ -81.995603649999964, 28.840511374000073 ], [ -81.995633729999952, 28.840447490000031 ], [ -81.995654381999941, 28.840389137000045 ], [ -81.995674861999987, 28.840311002000078 ], [ -81.995689777999985, 28.840247034000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995398851999937, 28.840763935000041 ], [ -81.995437367999955, 28.840800622000074 ], [ -81.995486932999938, 28.840835322000032 ], [ -81.995545951999986, 28.840861350000068 ], [ -81.995600561999936, 28.840876586000036 ], [ -81.995751750999943, 28.840908280000065 ], [ -81.995859140999983, 28.840922491000072 ], [ -81.995967779999944, 28.840930114000059 ], [ -81.996132190999958, 28.840930087000061 ], [ -81.996264862999965, 28.840926382000077 ], [ -81.996408569999971, 28.840925748000075 ], [ -81.996557291999977, 28.840936896000073 ], [ -81.996697150999978, 28.840957866000053 ], [ -81.996726238999941, 28.840964910000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996726238999941, 28.840964910000025 ], [ -81.996790468999961, 28.840980468000055 ], [ -81.996903545999942, 28.841014253000026 ], [ -81.997181540999975, 28.841120397000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997024185999976, 28.840394224000079 ], [ -81.996901950999984, 28.840628350000031 ], [ -81.996726239999987, 28.840964910000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995689777999985, 28.840247034000072 ], [ -81.995708443999945, 28.840166987000032 ], [ -81.995736308999938, 28.840034526000068 ], [ -81.995771100999946, 28.839889093000068 ], [ -81.995789806999937, 28.839812761000076 ], [ -81.995816581999975, 28.839759644000026 ], [ -81.995846645999961, 28.839718091000066 ], [ -81.995892859999969, 28.839686283000049 ], [ -81.995943528999987, 28.839660757000047 ], [ -81.995986966999965, 28.839647581000065 ], [ -81.996053954, 28.83964003400007 ], [ -81.996133263, 28.839641932000063 ], [ -81.996275584999978, 28.839643866000074 ], [ -81.99651560999996, 28.839652669000031 ], [ -81.996690348999948, 28.839665616000048 ], [ -81.996861786999943, 28.839686144000041 ], [ -81.996990768999979, 28.839702487000068 ], [ -81.997054759999969, 28.839717261000033 ], [ -81.997112778999963, 28.839744803000031 ], [ -81.997164752999936, 28.839787388000047 ], [ -81.997196507999945, 28.839827249000052 ], [ -81.997217580999973, 28.839872284000023 ], [ -81.99722793799998, 28.839910142000065 ], [ -81.997231229999954, 28.839950419000047 ], [ -81.997213513999952, 28.840029852000043 ], [ -81.997180607999951, 28.840094608000072 ], [ -81.997142484999983, 28.84017280300003 ], [ -81.997046271999977, 28.840351916000031 ], [ -81.997024185999976, 28.840394224000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995689777999985, 28.840247034000072 ], [ -81.995843056999945, 28.840273832000037 ], [ -81.995924131999971, 28.840286642000024 ], [ -81.996033074999957, 28.84029341400003 ], [ -81.996181473999968, 28.840290140000036 ], [ -81.996342812999956, 28.840286754000033 ], [ -81.996534956999938, 28.840292995000027 ], [ -81.996730165999963, 28.840314677000038 ], [ -81.996860091999963, 28.840337465000061 ], [ -81.99693664299997, 28.840359349000039 ], [ -81.997024185999976, 28.840394224000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993609375999938, 28.851988328000061 ], [ -81.993714617999956, 28.851811035000026 ], [ -81.993751676999977, 28.851748201000078 ], [ -81.993784873999971, 28.851699992000079 ], [ -81.993821982999975, 28.851655547000064 ], [ -81.993869802999939, 28.851611537000053 ], [ -81.993926797999961, 28.851567493000061 ], [ -81.993981887999951, 28.851527689000079 ], [ -81.994060796999975, 28.851479597000036 ], [ -81.994150270999967, 28.851429652000036 ], [ -81.994256824999979, 28.851379359000077 ], [ -81.994355052999936, 28.851340422000078 ], [ -81.994441219999942, 28.851311635000059 ], [ -81.994522047999965, 28.851287445000025 ], [ -81.994628429999977, 28.851264944000036 ], [ -81.994700313999942, 28.851252436000038 ], [ -81.994755834999978, 28.851244746000077 ], [ -81.994856316999972, 28.851235109000072 ], [ -81.994889925999985, 28.851233099000069 ], [ -81.994927965999977, 28.851230937000025 ], [ -81.994954434999954, 28.851227188000053 ], [ -81.994977808999977, 28.85122190800007 ], [ -81.995000036999954, 28.851215052000043 ], [ -81.995026054999983, 28.851204525000071 ], [ -81.99505387399995, 28.851189819000069 ], [ -81.99507891899998, 28.851172848000033 ], [ -81.995110304999969, 28.851144767000051 ], [ -81.995132568999963, 28.851117810000062 ], [ -81.99515037499998, 28.851088613000059 ], [ -81.995164080999984, 28.851055949000056 ], [ -81.995177571999989, 28.851008341000068 ], [ -81.995271995999985, 28.850668529000075 ], [ -81.995288105999975, 28.850609621000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048196450999967, 28.922377878000077 ], [ -82.048798425999962, 28.922377333000043 ], [ -82.048860298999955, 28.922388770000055 ], [ -82.048922181999956, 28.922417395000025 ], [ -82.048974299999941, 28.922457484000063 ], [ -82.049000365999973, 28.922491852000064 ], [ -82.049026442999946, 28.922549138000079 ], [ -82.049042747999977, 28.922600699000043 ], [ -82.049039848999939, 28.923124904000076 ], [ -82.049036502999968, 28.923167933000059 ], [ -82.049020246999987, 28.923222370000076 ], [ -82.04898770799997, 28.923271083000031 ], [ -82.048955159999934, 28.923302608000029 ], [ -82.048903075999988, 28.923337004000075 ], [ -82.048850984999945, 28.923357077000048 ], [ -82.048782608999943, 28.923368561000075 ], [ -82.048195628999963, 28.923367504000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047352438999951, 28.922377332000053 ], [ -82.048196450999967, 28.922377878000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047351609999964, 28.923364528000036 ], [ -82.046784894999973, 28.923362527000052 ], [ -82.046718139999939, 28.923354969000059 ], [ -82.046653005999985, 28.923334938000039 ], [ -82.046607403999985, 28.92330344100003 ], [ -82.046571572999937, 28.923274805000062 ], [ -82.046545503999937, 28.923231842000064 ], [ -82.046519432999958, 28.923186014000066 ], [ -82.046506387999955, 28.923140181000065 ], [ -82.046509398999945, 28.922590138000032 ], [ -82.046522399999958, 28.922538567000061 ], [ -82.046548430999962, 28.922495586000025 ], [ -82.046584232999976, 28.922458332000076 ], [ -82.046620035999979, 28.922423942000023 ], [ -82.046668868999973, 28.92240100600003 ], [ -82.046717702999956, 28.922380936000025 ], [ -82.046786637999958, 28.922376963000033 ], [ -82.047352438999951, 28.922377332000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048195628999963, 28.923367504000055 ], [ -82.047351609999964, 28.923364528000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047353460999943, 28.921083130000056 ], [ -82.047352438999951, 28.922377332000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047352438999951, 28.922377332000053 ], [ -82.047351609999964, 28.923364528000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048805743999935, 28.920209047000071 ], [ -82.048917456999959, 28.920371794000062 ], [ -82.048964674999979, 28.920452600000033 ], [ -82.048978268999974, 28.920512278000047 ], [ -82.048975581999969, 28.920564800000079 ], [ -82.048959326999977, 28.920619715000043 ], [ -82.048937638999973, 28.920662695000033 ], [ -82.048896952999939, 28.920698519000041 ], [ -82.048858979999977, 28.920731957000044 ], [ -82.04879929599997, 28.920758239000065 ], [ -82.048715196999979, 28.920796467000059 ], [ -82.048587685999962, 28.920844259000035 ], [ -82.048435753999968, 28.920894449000059 ], [ -82.048297384999955, 28.920935083000074 ], [ -82.048175291999939, 28.920963775000075 ], [ -82.048034208, 28.920999635000044 ], [ -82.047895830999948, 28.921023558000059 ], [ -82.047776448999969, 28.921045087000039 ], [ -82.04761364899997, 28.921066630000041 ], [ -82.047467126999948, 28.921081006000065 ], [ -82.047353460999943, 28.921083130000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96528469499998, 28.847865770000055 ], [ -81.965257904999987, 28.847864617000027 ], [ -81.965234042999953, 28.847861555000065 ], [ -81.965211483999951, 28.84785811200004 ], [ -81.965190660999951, 28.847852758000045 ], [ -81.965168970999969, 28.847845877000054 ], [ -81.965148582999973, 28.847837850000076 ], [ -81.965129062999949, 28.847827531000064 ], [ -81.965105205999976, 28.847813010000039 ], [ -81.965085252999984, 28.847798108000063 ], [ -81.965070072999936, 28.847784353000065 ], [ -81.965055869999958, 28.847768402000042 ], [ -81.965043400999946, 28.847754075000068 ], [ -81.965025852999986, 28.847729833000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965476153999987, 28.84780059600007 ], [ -81.965457169, 28.84781233700005 ], [ -81.965428102999965, 28.847830444000067 ], [ -81.965395646, 28.847844781000049 ], [ -81.965361002999941, 28.847854367000025 ], [ -81.965323742999942, 28.847861959000056 ], [ -81.96528469499998, 28.847865770000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965025852999986, 28.847729833000074 ], [ -81.965055306999943, 28.847828563000064 ], [ -81.965057463999983, 28.847864374000039 ], [ -81.965053658999977, 28.847891111000024 ], [ -81.965042744999948, 28.847934209000073 ], [ -81.965033569999946, 28.847961295000061 ], [ -81.964939362999985, 28.848145920000036 ], [ -81.964836253999977, 28.848349296000038 ], [ -81.964745515999937, 28.848517316000027 ], [ -81.96465001599995, 28.848671611000043 ], [ -81.964498959999958, 28.848887006000041 ], [ -81.964349647999938, 28.849076428000046 ], [ -81.964179512999976, 28.849261261000038 ], [ -81.964016326999968, 28.849421648000032 ], [ -81.963849607999975, 28.849578501000053 ], [ -81.963576481999951, 28.849805254000046 ], [ -81.963163106999957, 28.850157517000071 ], [ -81.962823506999939, 28.850441997000075 ], [ -81.962502350999955, 28.850714067000069 ], [ -81.96213236799997, 28.851026232000038 ], [ -81.961854607999953, 28.85126202500004 ], [ -81.961594201999958, 28.851494003000028 ], [ -81.961352228999942, 28.851744130000043 ], [ -81.961134112999957, 28.852002857000059 ], [ -81.960922489999973, 28.852299784000024 ], [ -81.960774878999985, 28.852553756000077 ], [ -81.960660904999941, 28.852769540000054 ], [ -81.960569684999939, 28.852979890000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960695443999953, 28.853021738000052 ], [ -81.960700949999989, 28.85300733400004 ], [ -81.960783450999941, 28.852833558000043 ], [ -81.960914796999987, 28.852570032000074 ], [ -81.961097128999938, 28.852283600000078 ], [ -81.961258828999974, 28.85206114500005 ], [ -81.961425945999963, 28.851854924000065 ], [ -81.961611495999989, 28.851659213000062 ], [ -81.961824164999939, 28.851460645000031 ], [ -81.962066120999964, 28.851254445000052 ], [ -81.962316753999971, 28.851043472000072 ], [ -81.962762686999952, 28.85066448300006 ], [ -81.963037187999987, 28.850433462000069 ], [ -81.963262863999944, 28.850242534000074 ], [ -81.963686005999989, 28.849881679000077 ], [ -81.964018001999989, 28.84959888700007 ], [ -81.964193334999948, 28.849440030000039 ], [ -81.964337429999944, 28.849285749000046 ], [ -81.964491942999985, 28.849107025000023 ], [ -81.964634310999941, 28.848928295000064 ], [ -81.964783628999953, 28.848709843000051 ], [ -81.964908650999973, 28.84850207900007 ], [ -81.965047571999946, 28.848240842000052 ], [ -81.965096350999943, 28.848137817000065 ], [ -81.965174782999952, 28.847983639000063 ], [ -81.965209067999979, 28.847933773000079 ], [ -81.96528469499998, 28.847865770000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975189012999977, 28.847764776000076 ], [ -81.975349383999969, 28.847781637000026 ], [ -81.975508783999942, 28.847804564000057 ], [ -81.976188381999975, 28.847915597000053 ], [ -81.976374431999943, 28.847942355000043 ], [ -81.976561619999984, 28.84796202800004 ], [ -81.976749594999944, 28.847974580000027 ], [ -81.976938011999948, 28.847979987000031 ], [ -81.977126515999942, 28.847978241000078 ], [ -81.977314760999946, 28.847969344000035 ], [ -81.977502396999967, 28.847953310000037 ], [ -81.977570684999989, 28.847944846000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972939889999964, 28.848060811000039 ], [ -81.972939916999962, 28.848060805000046 ], [ -81.973922264999942, 28.847846256000025 ], [ -81.974077877999946, 28.847815347000051 ], [ -81.974234841999987, 28.847790296000028 ], [ -81.974392875999968, 28.847771148000049 ], [ -81.974551689999942, 28.84775793600005 ], [ -81.974711, 28.847750685000051 ], [ -81.974870516999943, 28.847749408000027 ], [ -81.975029950999954, 28.847754108000061 ], [ -81.975189012999977, 28.847764776000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967035329999987, 28.847743021000042 ], [ -81.967100406999975, 28.847743992000062 ], [ -81.968489627999986, 28.847748859000035 ], [ -81.968637899999976, 28.847751904000063 ], [ -81.96878591799998, 28.847760109000035 ], [ -81.968933452999977, 28.847773464000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969793095999989, 28.847940840000035 ], [ -81.970440476999954, 28.848089587000061 ], [ -81.970625535999943, 28.848128590000044 ], [ -81.970812240999976, 28.848160945000075 ], [ -81.971000282999967, 28.848186600000076 ], [ -81.971189353999989, 28.848205510000071 ], [ -81.971379141999989, 28.84821764700007 ], [ -81.971569331999945, 28.848222989000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967078250999975, 28.837098792000063 ], [ -81.966994955999951, 28.837103760000048 ], [ -81.96692324299994, 28.837105131000044 ], [ -81.966851691999977, 28.837100700000065 ], [ -81.966780901999982, 28.837090507000028 ], [ -81.966711473999965, 28.837074637000057 ], [ -81.966643990999955, 28.837053224000044 ], [ -81.966491465999979, 28.836997731000054 ], [ -81.966376619999949, 28.836952732000043 ], [ -81.966264680999984, 28.836902375000079 ], [ -81.966155969999988, 28.836846803000071 ], [ -81.966059477999977, 28.836794378000036 ], [ -81.966012165999985, 28.836749227000041 ], [ -81.965977663999979, 28.836701638000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967583926999964, 28.837057365000078 ], [ -81.967444, 28.837074158000064 ], [ -81.967303352999977, 28.837085365000064 ], [ -81.967078250999975, 28.837098792000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968952796999986, 28.837111082000035 ], [ -81.968929740999954, 28.837059829000054 ], [ -81.968909178999979, 28.837023327000054 ], [ -81.968882023999981, 28.836990333000074 ], [ -81.968849030999934, 28.836961764000023 ], [ -81.96881111099998, 28.836938409000027 ], [ -81.968769317999943, 28.836920917000043 ], [ -81.968724808, 28.836909773000059 ], [ -81.968648749999943, 28.836900028000059 ], [ -81.96857197099996, 28.836896915000068 ], [ -81.968495216999941, 28.836900463000063 ], [ -81.968419230999984, 28.836910638000063 ], [ -81.96771322099994, 28.837036752000074 ], [ -81.967583926999964, 28.837057365000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959253092999973, 28.836787515000026 ], [ -81.959246155999949, 28.836821914000041 ], [ -81.959238739999989, 28.836875558000031 ], [ -81.959238009999979, 28.836929595000072 ], [ -81.959243971999967, 28.83698337900006 ], [ -81.959256555999957, 28.837036270000056 ], [ -81.959275613999978, 28.83708763900006 ], [ -81.959352686999978, 28.837262430000067 ], [ -81.959373423999978, 28.837299726000026 ], [ -81.959401022999941, 28.837333400000034 ], [ -81.959434687999988, 28.837362480000024 ], [ -81.959473452999987, 28.837386131000073 ], [ -81.95951619899995, 28.83740367200005 ], [ -81.959561698999948, 28.837414597000077 ], [ -81.959608639999942, 28.837418594000042 ], [ -81.959655672999986, 28.837415546000045 ], [ -81.960014870999942, 28.837365022000029 ], [ -81.960078601999953, 28.837352681000027 ], [ -81.960140278999972, 28.837333921000038 ], [ -81.960199071999966, 28.837308995000058 ], [ -81.960254187999965, 28.837278239000057 ], [ -81.96030488699995, 28.837242066000044 ], [ -81.960350483999946, 28.837200965000079 ], [ -81.961010175999945, 28.836532778000048 ], [ -81.961087530999976, 28.836458193000055 ], [ -81.961547561999964, 28.836035894000076 ], [ -81.96159283999998, 28.835990494000043 ], [ -81.961633416999973, 28.835941771000023 ], [ -81.961668978999967, 28.83589009700006 ], [ -81.961699249999981, 28.835835877000079 ], [ -81.961724, 28.835779523000042 ], [ -81.961752572999956, 28.835704872000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956486895999944, 28.836440377000031 ], [ -81.956593153999961, 28.836844197000062 ], [ -81.956607574999964, 28.83688049400007 ], [ -81.956628272999978, 28.836914354000044 ], [ -81.956654737999941, 28.836944942000059 ], [ -81.956686316999935, 28.836971503000029 ], [ -81.956722231999947, 28.83699338200006 ], [ -81.956761592999953, 28.837010037000027 ], [ -81.956803431999958, 28.837021059000051 ], [ -81.956846714999983, 28.837026175000062 ], [ -81.956890372999965, 28.837025260000075 ], [ -81.95693332999997, 28.837018335000039 ], [ -81.956974525999954, 28.837005571000077 ], [ -81.957116980999956, 28.836950012000045 ], [ -81.957228731999976, 28.836908576000042 ], [ -81.95734214099997, 28.836870789000045 ], [ -81.957457050999949, 28.836836706000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957457050999949, 28.836836706000042 ], [ -81.957610439999939, 28.836797537000052 ], [ -81.957765801999983, 28.836764964000054 ], [ -81.957922776999965, 28.83673906000007 ], [ -81.958080991999964, 28.836719888000061 ], [ -81.958240076999971, 28.836707492000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958240076999971, 28.836707492000073 ], [ -81.958402704999969, 28.836701861000051 ], [ -81.958565449999981, 28.836703312000054 ], [ -81.958727915999987, 28.836711841000067 ], [ -81.958889702999954, 28.836727427000028 ], [ -81.959050418999936, 28.836750032000054 ], [ -81.95920966999995, 28.836779601000046 ], [ -81.959253092999973, 28.836787516000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959253092999973, 28.836787516000072 ], [ -81.959317717999966, 28.836795185000028 ], [ -81.959382841999968, 28.836798079000062 ], [ -81.959448014999964, 28.836796179000032 ], [ -81.959512779999955, 28.836789497000041 ], [ -81.959640672999967, 28.836771508000027 ], [ -81.959704402999989, 28.836759168000071 ], [ -81.959766079999952, 28.836740408000026 ], [ -81.959824871999956, 28.836715482000045 ], [ -81.959879987999955, 28.836684725000055 ], [ -81.95993068699994, 28.836648553000032 ], [ -81.959976283999936, 28.836607453000056 ], [ -81.960463303999973, 28.836114162000058 ], [ -81.96056459, 28.836016506000078 ], [ -81.96082652299998, 28.835776058000079 ], [ -81.960867793999967, 28.835733616000027 ], [ -81.960903371999962, 28.835687350000057 ], [ -81.960932799999966, 28.835637848000033 ], [ -81.960955706999982, 28.835585742000035 ], [ -81.960969168999952, 28.835549103000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958240076999971, 28.836707492000073 ], [ -81.958190840999976, 28.836031151000043 ], [ -81.958191708999948, 28.835990641000024 ], [ -81.95820015299995, 28.835950811000032 ], [ -81.95821594399996, 28.835912754000049 ], [ -81.958238647999963, 28.835877512000025 ], [ -81.958267643999989, 28.835846052000079 ], [ -81.958302135999986, 28.835819233000052 ], [ -81.958366297999987, 28.835774277000041 ], [ -81.958427104999942, 28.835725839000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958427104999942, 28.835725839000077 ], [ -81.958491542, 28.835667088000037 ], [ -81.958551042999943, 28.835604430000046 ], [ -81.958605301999967, 28.835538185000075 ], [ -81.958654041999978, 28.835468694000042 ], [ -81.958697011999959, 28.835396310000078 ], [ -81.958733993999942, 28.835321406000048 ], [ -81.958764797999947, 28.835244365000051 ], [ -81.958795370999951, 28.835158173000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959509231999959, 28.898478886000078 ], [ -81.959476948999963, 28.898478877000059 ], [ -81.959437394999952, 28.898483983000062 ], [ -81.959398443999987, 28.898494411000058 ], [ -81.959355952999942, 28.898509550000028 ], [ -81.95933314399997, 28.898525752000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959509231999959, 28.898478886000078 ], [ -81.959504880999987, 28.898448472000041 ], [ -81.959498785999983, 28.898416991000033 ], [ -81.959492685999976, 28.898396259000037 ], [ -81.959482223999942, 28.898373990000039 ], [ -81.95946042099996, 28.898353253000039 ], [ -81.959432507999963, 28.898336354000037 ], [ -81.959390631999952, 28.898329431000036 ], [ -81.959357476999969, 28.898332492000065 ], [ -81.959326060999956, 28.898347070000057 ], [ -81.959306857999934, 28.89836779500007 ], [ -81.959295504999943, 28.898398504000056 ], [ -81.959291130999986, 28.898426142000062 ], [ -81.959299843999986, 28.898459927000033 ], [ -81.959318148999955, 28.898502928000028 ], [ -81.95933314399997, 28.898525752000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963399478999975, 28.872333449000052 ], [ -81.96345307699994, 28.872364626000035 ], [ -81.963539437999941, 28.872430451000071 ], [ -81.96361749099998, 28.872499198000071 ], [ -81.963753665999945, 28.872629374000041 ], [ -81.963914336999949, 28.872780846000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961605805999966, 28.872899478000079 ], [ -81.961816451999937, 28.872665945000051 ], [ -81.962072594999938, 28.872374482000055 ], [ -81.962137403999975, 28.872317471000031 ], [ -81.96221051699996, 28.872264851000068 ], [ -81.962285288999965, 28.872218080000039 ], [ -81.962368362999939, 28.872180085000025 ], [ -81.962454756999989, 28.872152326000048 ], [ -81.962543801999971, 28.87213298000006 ], [ -81.962617566999938, 28.872123126000076 ], [ -81.962693985999977, 28.872118761000024 ], [ -81.962778704999948, 28.872123171000055 ], [ -81.962890001999938, 28.872139286000049 ], [ -81.963004613999942, 28.87217148700006 ], [ -81.963118015999953, 28.872203983000077 ], [ -81.963237018999962, 28.872247367000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963237018999962, 28.872247367000057 ], [ -81.96323930799997, 28.872248201000048 ], [ -81.963304830999959, 28.872280129000046 ], [ -81.963360593999937, 28.872310828000025 ], [ -81.963399478999975, 28.872333449000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963237018999962, 28.872247367000057 ], [ -81.963283959999956, 28.872153707000052 ], [ -81.963302096999939, 28.872121802000038 ], [ -81.963317439999969, 28.87210830500004 ], [ -81.963342542999953, 28.872097266000026 ], [ -81.96336764199998, 28.872096045000035 ], [ -81.963395525999942, 28.872099734000074 ], [ -81.963412257999948, 28.87210464900005 ], [ -81.963427593999938, 28.872108335000064 ], [ -81.963447110999937, 28.872119387000055 ], [ -81.96346383599996, 28.872141483000064 ], [ -81.963472195999941, 28.872159895000038 ], [ -81.963477765999983, 28.87217830700007 ], [ -81.963474968999947, 28.872204081000064 ], [ -81.963466593999954, 28.872229853000078 ], [ -81.963454035999973, 28.872253168000043 ], [ -81.963399478999975, 28.872333449000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982432609999989, 28.878561146000038 ], [ -81.982443189999969, 28.878578222000044 ], [ -81.982503553999948, 28.878652628000054 ], [ -81.98256693899998, 28.878719065000041 ], [ -81.982657492999977, 28.878796133000037 ], [ -81.982772196999974, 28.878883832000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982341277999979, 28.878390098000068 ], [ -81.982343596999954, 28.878397523000046 ], [ -81.982388863999972, 28.878490530000079 ], [ -81.982432609999989, 28.878561146000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982310407999989, 28.878291235000063 ], [ -81.982341277999979, 28.878390098000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982341277999979, 28.878390098000068 ], [ -81.982309585999985, 28.878409398000031 ], [ -81.982282471999952, 28.878435813000067 ], [ -81.982266974999959, 28.878462229000036 ], [ -81.982255350999935, 28.878489499000068 ], [ -81.982261152999968, 28.87852870100005 ], [ -81.982275671999957, 28.878556826000079 ], [ -81.982302779999941, 28.878575579000028 ], [ -81.98233182599995, 28.878586661000043 ], [ -81.982371523999973, 28.878584962000048 ], [ -81.982432609999989, 28.878561146000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991408645999968, 28.869103486000029 ], [ -81.991581028999974, 28.869000043000028 ], [ -81.991751453999939, 28.868887978000032 ], [ -81.991914040999973, 28.868789707000076 ], [ -81.992182628999956, 28.868624796000063 ], [ -81.992270757999961, 28.868556180000041 ], [ -81.992352108999967, 28.868457729000056 ], [ -81.992386005999947, 28.868401045000041 ], [ -81.99241092799997, 28.868332960000032 ], [ -81.992422189999957, 28.868266298000037 ], [ -81.992423311999971, 28.868096730000048 ], [ -81.992423322999969, 28.867944569000031 ], [ -81.992414090999944, 28.867883108000058 ], [ -81.992399604999946, 28.867834179000056 ], [ -81.992363198999954, 28.867784124000025 ], [ -81.992359384999986, 28.867781003000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992207957999938, 28.867716342000051 ], [ -81.992090604999987, 28.867711988000053 ], [ -81.991611605999935, 28.867718835000062 ], [ -81.991596178999941, 28.867718834000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992359384999986, 28.867781003000061 ], [ -81.992328179999959, 28.867755474000035 ], [ -81.992298646999984, 28.867740109000067 ], [ -81.992264038999963, 28.867729748000045 ], [ -81.992211385999951, 28.867716470000062 ], [ -81.992207957999938, 28.867716342000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992359384999986, 28.867781003000061 ], [ -81.992392811999935, 28.867742559000078 ], [ -81.992417496999963, 28.867704045000039 ], [ -81.992428716999939, 28.867681330000039 ], [ -81.992432084999962, 28.867657629000064 ], [ -81.992432085999951, 28.86763886500006 ], [ -81.992421990999958, 28.867617138000071 ], [ -81.992409650999946, 28.867598372000032 ], [ -81.992393944999947, 28.867584546000046 ], [ -81.992367019999961, 28.867569730000071 ], [ -81.992345703999945, 28.867566765000049 ], [ -81.992316532999951, 28.867568740000024 ], [ -81.992282874999944, 28.867578614000024 ], [ -81.992252582999981, 28.867600338000045 ], [ -81.992236872999968, 28.867627003000052 ], [ -81.992222285999958, 28.867659592000052 ], [ -81.992212184999971, 28.867693170000052 ], [ -81.992207957999938, 28.867716342000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986083875999952, 28.896029656000053 ], [ -81.986088559999985, 28.895886562000044 ], [ -81.986075085999971, 28.89572877300003 ], [ -81.986057745999972, 28.895633759000077 ], [ -81.986011082999937, 28.895499290000032 ], [ -81.985977107999986, 28.895419874000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986083875999952, 28.896029656000053 ], [ -81.986410082999953, 28.89603925800003 ], [ -81.986425258999986, 28.896039705000078 ], [ -81.986440483999957, 28.896028790000059 ], [ -81.986456663999945, 28.896002140000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985058727999956, 28.896591370000067 ], [ -81.985237628999982, 28.896703462000062 ], [ -81.98537824899995, 28.896798360000048 ], [ -81.985479029999965, 28.896860251000078 ], [ -81.985542811999949, 28.896880736000071 ], [ -81.985544947999983, 28.896881137000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985720804999971, 28.896865047000063 ], [ -81.98575072899996, 28.896845842000062 ], [ -81.985811679999983, 28.896775718000072 ], [ -81.985907803999964, 28.896602463000079 ], [ -81.985987517999945, 28.896439864000058 ], [ -81.98604613599997, 28.89628104600007 ], [ -81.986063453999975, 28.896203832000026 ], [ -81.986081317999947, 28.896107785000027 ], [ -81.986083875999952, 28.896029656000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985544947999983, 28.896881137000037 ], [ -81.985598563999986, 28.896891204000042 ], [ -81.985647785999959, 28.896891209000046 ], [ -81.98569897699997, 28.896879057000035 ], [ -81.985720804999971, 28.896865047000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985544947999983, 28.896881137000037 ], [ -81.985546081999985, 28.896937635000029 ], [ -81.985548622999943, 28.896965616000045 ], [ -81.985554978999971, 28.896990240000036 ], [ -81.985563878999983, 28.897012627000038 ], [ -81.985581682999964, 28.89703277600006 ], [ -81.985605846999988, 28.897046210000042 ], [ -81.985633826999958, 28.897052928000051 ], [ -81.985657990999982, 28.897054050000065 ], [ -81.985684701999958, 28.897051814000065 ], [ -81.985706323999977, 28.897043982000071 ], [ -81.985726675999956, 28.897033911000051 ], [ -81.985745755999972, 28.897012647000054 ], [ -81.985753390999946, 28.896988024000052 ], [ -81.985752122999941, 28.896961162000025 ], [ -81.985747039999978, 28.896930940000061 ], [ -81.985720804999971, 28.896865047000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988289983999948, 28.897176098000045 ], [ -81.988991914999986, 28.897176157000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987527850999982, 28.897218445000078 ], [ -81.98760015299996, 28.89720784800005 ], [ -81.987690526999984, 28.89719460200007 ], [ -81.987777889999961, 28.897184005000042 ], [ -81.987892363999947, 28.897176063000074 ], [ -81.988082884999983, 28.897176080000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988082884999983, 28.897176080000065 ], [ -81.988289983999948, 28.897176098000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988082884999983, 28.897176080000065 ], [ -81.988082892999955, 28.897110382000051 ], [ -81.98808289699997, 28.897068725000054 ], [ -81.988090295999939, 28.897036181000033 ], [ -81.988108051999973, 28.897006242000032 ], [ -81.988127284999962, 28.89698411300003 ], [ -81.988158349999935, 28.896976305000067 ], [ -81.988199769999937, 28.896976309000024 ], [ -81.988230833999978, 28.896985425000025 ], [ -81.988253021999981, 28.896998444000076 ], [ -81.988272249999966, 28.897016671000074 ], [ -81.988285559999952, 28.897046613000043 ], [ -81.988289993999956, 28.897092176000058 ], [ -81.988289983999948, 28.897176098000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992151982999985, 28.897923848000062 ], [ -81.992185673999984, 28.897944264000046 ], [ -81.992295136999985, 28.898019531000045 ], [ -81.992375523999954, 28.898085765000076 ], [ -81.99244222699997, 28.898147481000024 ], [ -81.992503799999952, 28.898201673000074 ], [ -81.992570501999978, 28.898279948000038 ], [ -81.992630363999979, 28.898350696000023 ], [ -81.992676542999959, 28.898415422000028 ], [ -81.992742562999979, 28.898525654000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990848762999974, 28.897523628000044 ], [ -81.991301032999957, 28.897621534000052 ], [ -81.991628084999945, 28.897700386000054 ], [ -81.991768337999986, 28.897744046000071 ], [ -81.991891687999953, 28.897790021000048 ], [ -81.992048447999935, 28.897861387000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992048447999935, 28.897861387000034 ], [ -81.992050287999973, 28.89786222400005 ], [ -81.992151982999985, 28.897923848000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992048447999935, 28.897861387000034 ], [ -81.992115084999966, 28.897759456000074 ], [ -81.992115086999945, 28.897737482000025 ], [ -81.992120082999975, 28.897703425000032 ], [ -81.992138811999951, 28.897672664000027 ], [ -81.992165029999967, 28.897650694000049 ], [ -81.992197490999956, 28.897639710000078 ], [ -81.992231198999946, 28.897638612000037 ], [ -81.992262407999988, 28.897643008000045 ], [ -81.992287376999968, 28.897657293000066 ], [ -81.992299860999935, 28.897671575000061 ], [ -81.99231359099997, 28.897695746000068 ], [ -81.992318581999939, 28.897724310000058 ], [ -81.99231857999996, 28.897751776000064 ], [ -81.992302348999942, 28.897777043000076 ], [ -81.992282372999966, 28.897797917000048 ], [ -81.992244917999983, 28.897815492000063 ], [ -81.992209960999958, 28.89783746300003 ], [ -81.992151982999985, 28.897923848000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986894199999938, 28.901022041000033 ], [ -81.987094745999968, 28.90104999600004 ], [ -81.987378460999935, 28.901082374000055 ], [ -81.987634374999971, 28.901138400000036 ], [ -81.987936326999943, 28.901208730000064 ], [ -81.988106936999941, 28.901248068000029 ], [ -81.98830191899998, 28.901289789000032 ], [ -81.988396703999967, 28.901306479000027 ], [ -81.988499612999988, 28.901314828000068 ], [ -81.988590336999948, 28.901313644000027 ], [ -81.988689184999942, 28.901307695000071 ], [ -81.988793450999935, 28.901293404000057 ], [ -81.98891257799994, 28.901266780000071 ], [ -81.98903448599998, 28.901226698000073 ], [ -81.989119796999944, 28.901189765000026 ], [ -81.98920646299996, 28.901139727000043 ], [ -81.989282103999983, 28.901093142000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98941014199994, 28.900994432000061 ], [ -81.989462403999937, 28.900940757000058 ], [ -81.989546367999935, 28.900835907000044 ], [ -81.989589704999958, 28.900770374000047 ], [ -81.989622206999968, 28.900714373000028 ], [ -81.989653357999941, 28.90064645700005 ], [ -81.989685582999982, 28.900560034000023 ], [ -81.989703474999942, 28.900493941000036 ], [ -81.989718374999939, 28.900439131000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989282103999983, 28.901093142000036 ], [ -81.989314795999974, 28.901073010000061 ], [ -81.989394297, 28.901010704000043 ], [ -81.98941014199994, 28.900994432000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989282103999983, 28.901093142000036 ], [ -81.989326592999987, 28.901150069000039 ], [ -81.989339171999973, 28.901174980000064 ], [ -81.989350176999949, 28.901198506000071 ], [ -81.989370617999953, 28.901233103000038 ], [ -81.989389485999936, 28.901255246000062 ], [ -81.989414645999943, 28.90126770300003 ], [ -81.98944137999996, 28.901271855000061 ], [ -81.989477549999947, 28.901269092000064 ], [ -81.989510573999951, 28.901258024000072 ], [ -81.989531020999948, 28.901242803000059 ], [ -81.989543601999969, 28.901226198000074 ], [ -81.989553041999955, 28.90119160200004 ], [ -81.989551472999949, 28.901155623000079 ], [ -81.98953417599995, 28.901130711000064 ], [ -81.989512163999962, 28.901105801000028 ], [ -81.989468132999946, 28.901076737000039 ], [ -81.98941014199994, 28.900994432000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997534105999989, 28.875078440000038 ], [ -81.997570869999947, 28.87509542500004 ], [ -81.997642819999953, 28.875123108000025 ], [ -81.997662883999965, 28.875129976000039 ], [ -81.997760777999986, 28.875158744000032 ], [ -81.997854899999936, 28.875179379000031 ], [ -81.998011858999973, 28.875207733000025 ], [ -81.998168128999964, 28.875235960000055 ], [ -81.998286270999984, 28.875256124000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996750131999988, 28.874334073000057 ], [ -81.996810385999936, 28.874404428000048 ], [ -81.996882819999939, 28.87448910300003 ], [ -81.997000636999985, 28.874630624000076 ], [ -81.997045921999984, 28.874688238000033 ], [ -81.997142318999977, 28.874801312000045 ], [ -81.99714451899996, 28.874803755000073 ], [ -81.997179894999988, 28.874839791000056 ], [ -81.997250895999969, 28.874903578000044 ], [ -81.997327566999957, 28.874962058000051 ], [ -81.997357159999979, 28.874981838000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997357159999979, 28.874981838000053 ], [ -81.997374601, 28.874993495000069 ], [ -81.997394148999945, 28.875005614000031 ], [ -81.99748045399997, 28.875053654000055 ], [ -81.997534105999989, 28.875078440000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997357159999979, 28.874981838000053 ], [ -81.997326836999946, 28.875029597000037 ], [ -81.997305113999971, 28.875064012000053 ], [ -81.997293818999935, 28.87509078000005 ], [ -81.997291210999947, 28.875122136000073 ], [ -81.997298161999936, 28.875148138000043 ], [ -81.997314668999934, 28.875175671000079 ], [ -81.997338127999967, 28.875197086000071 ], [ -81.99737201399995, 28.875211618000037 ], [ -81.997398951999969, 28.875213148000057 ], [ -81.997428491999983, 28.875205501000039 ], [ -81.997452820999968, 28.875194029000056 ], [ -81.997481494999988, 28.875168028000076 ], [ -81.997501480999972, 28.87514049400005 ], [ -81.997534105999989, 28.875078440000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998489060999987, 28.87278419300003 ], [ -81.998599255999977, 28.872854466000035 ], [ -81.99867723999995, 28.872901760000047 ], [ -81.998738217999971, 28.872937173000025 ], [ -81.998826775999987, 28.872986873000059 ], [ -81.998912106999967, 28.873032756000043 ], [ -81.998950721999961, 28.873052353000048 ], [ -81.99899312499997, 28.87306527100003 ], [ -81.99903754099995, 28.873070892000044 ], [ -81.999082360999978, 28.873069014000066 ], [ -81.999101343999939, 28.873064959000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999284062999948, 28.872974112000065 ], [ -81.999326745999952, 28.872954288000074 ], [ -81.999394778999942, 28.872930974000042 ], [ -81.999462717999961, 28.872915118000037 ], [ -81.999541947999944, 28.872907477000069 ], [ -81.999687846999961, 28.872900601000026 ], [ -81.999862051999969, 28.872892389000071 ], [ -82.000010281999948, 28.87288916600005 ], [ -82.000078715999962, 28.872896616000048 ], [ -82.000191456999971, 28.872911731000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999101343999939, 28.873064959000033 ], [ -81.999125966999941, 28.873059702000035 ], [ -81.999166783999954, 28.87304329400007 ], [ -81.999180341999988, 28.873035854000079 ], [ -81.999201907999975, 28.873020550000035 ], [ -81.999262174999956, 28.872984278000047 ], [ -81.999284062999948, 28.872974112000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999101343999939, 28.873064959000033 ], [ -81.999133530999984, 28.873128960000031 ], [ -81.999157910999941, 28.873149158000047 ], [ -81.999180858999978, 28.873159258000044 ], [ -81.999199502999943, 28.873166833000028 ], [ -81.999229620999984, 28.873170620000053 ], [ -81.999252569999953, 28.873166834000074 ], [ -81.999271213999975, 28.873159259000033 ], [ -81.999294159999977, 28.873147897000024 ], [ -81.999311371999966, 28.873130223000032 ], [ -81.999321411999972, 28.873104975000047 ], [ -81.99932427899995, 28.873079726000071 ], [ -81.999314240999979, 28.873036805000027 ], [ -81.999284062999948, 28.872974112000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003463766999971, 28.892630892000057 ], [ -82.003466616999958, 28.892627184000048 ], [ -82.003523984999958, 28.89255881400004 ], [ -82.003572985999938, 28.892504116000055 ], [ -82.003647822999937, 28.892434047000052 ], [ -82.003743896999936, 28.89236842300005 ], [ -82.00381680299995, 28.892329504000031 ], [ -82.004022374999977, 28.892230623000046 ], [ -82.004308364999986, 28.892101843000034 ], [ -82.004385710999941, 28.892072836000068 ], [ -82.004438297999968, 28.892047590000061 ], [ -82.004470567999988, 28.892029708000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003013647999978, 28.893131029000074 ], [ -82.00306982099994, 28.893079487000023 ], [ -82.003145117999964, 28.893015323000043 ], [ -82.003212047999966, 28.892948004000061 ], [ -82.003329173999987, 28.892806002000043 ], [ -82.003463766999971, 28.892630892000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003463766999971, 28.892630892000057 ], [ -82.003203305999989, 28.892426373000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002314596999952, 28.893378496000025 ], [ -82.002382578999971, 28.893369810000024 ], [ -82.002497319999975, 28.893347720000065 ], [ -82.002595327999984, 28.893321422000042 ], [ -82.002716042999964, 28.893281449000028 ], [ -82.002805683999952, 28.893246736000037 ], [ -82.002909665999937, 28.893194142000027 ], [ -82.003013647999978, 28.893131029000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001065449999942, 28.893499204000079 ], [ -82.001260270999978, 28.89346133600003 ], [ -82.001566842999978, 28.893404414000031 ], [ -82.001691007999966, 28.893386930000077 ], [ -82.001859872999944, 28.893378185000074 ], [ -82.00208377499996, 28.89338348900003 ], [ -82.002113221999934, 28.89338348800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002113221999934, 28.89338348800004 ], [ -82.002230786999974, 28.893383486000062 ], [ -82.002308475999939, 28.893379278000054 ], [ -82.002314596999952, 28.893378496000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002113221999934, 28.89338348800004 ], [ -82.002129177999961, 28.893639848000078 ], [ -82.002139147999969, 28.893666169000028 ], [ -82.002157094999973, 28.893685473000062 ], [ -82.002177033999942, 28.893699510000033 ], [ -82.002202955999962, 28.893711792000033 ], [ -82.002238848, 28.893715301000043 ], [ -82.002272744999971, 28.893711791000044 ], [ -82.002300659999946, 28.893701263000025 ], [ -82.002320599999962, 28.893680205000067 ], [ -82.00233056899998, 28.893639845000052 ], [ -82.002314596999952, 28.893378496000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003502815, 28.893507492000026 ], [ -82.003662665999968, 28.893625379000071 ], [ -82.003802510999947, 28.893722145000027 ], [ -82.003864664999981, 28.893760010000051 ], [ -82.003923230999987, 28.893792615000052 ], [ -82.00399972799994, 28.893828376000044 ], [ -82.004188574999944, 28.893888326000024 ], [ -82.00425192299997, 28.893910412000025 ], [ -82.004305323999972, 28.893933221000054 ], [ -82.004358107999963, 28.893955078000033 ], [ -82.004541173999939, 28.89405871200006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003013647999978, 28.893131029000074 ], [ -82.003080582999985, 28.89318782600003 ], [ -82.003191739999977, 28.893276180000043 ], [ -82.003367440999966, 28.893407656000079 ], [ -82.003502815, 28.893507492000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003502815, 28.893507492000026 ], [ -82.003291923999939, 28.893778337000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007329407999976, 28.895096413000033 ], [ -82.007339276999971, 28.895176698000057 ], [ -82.007342866999977, 28.895233498000039 ], [ -82.007340477999946, 28.895274520000044 ], [ -82.007327074999978, 28.895309858000076 ], [ -82.007310602999951, 28.895346047000032 ], [ -82.007289089999972, 28.895375501000046 ], [ -82.007238892999965, 28.895425992000071 ], [ -82.007112134999943, 28.895525457000076 ], [ -82.007018980999987, 28.89559745300005 ], [ -82.006989101999977, 28.895637425000075 ], [ -82.006966395999939, 28.89568265500003 ], [ -82.006947275999948, 28.895739456000058 ], [ -82.006944888999953, 28.895793100000049 ], [ -82.00694847699998, 28.895843589000037 ], [ -82.00695445599996, 28.895874092000042 ], [ -82.006969996999942, 28.895905647000063 ], [ -82.006992708999974, 28.895946666000043 ], [ -82.007020200999989, 28.895983480000041 ], [ -82.007057534999944, 28.896023737000064 ], [ -82.00717177699994, 28.896135187000027 ], [ -82.007350592999956, 28.896312196000054 ], [ -82.007475623999937, 28.896447318000071 ], [ -82.007503117999988, 28.896483080000053 ], [ -82.007525829999963, 28.896525153000027 ], [ -82.007548544999963, 28.896579847000055 ], [ -82.007558109999934, 28.896624024000062 ], [ -82.007578443999989, 28.896817561000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004541173999939, 28.89405871200006 ], [ -82.004640379999955, 28.894109198000024 ], [ -82.004704923999952, 28.894134439000027 ], [ -82.004774246999943, 28.894152319000057 ], [ -82.00486462899994, 28.894174968000073 ], [ -82.004959713999938, 28.894181571000047 ], [ -82.005047955999942, 28.89418386400007 ], [ -82.005237128999966, 28.894161840000038 ], [ -82.005507807999948, 28.894111566000049 ], [ -82.00580083899996, 28.894059104000064 ], [ -82.006091384999934, 28.894006640000043 ], [ -82.006327297999974, 28.89396729200007 ], [ -82.006488711999964, 28.893956357000036 ], [ -82.006592176999959, 28.893963962000043 ], [ -82.006692346999955, 28.893980386000067 ], [ -82.006781023999963, 28.894009182000048 ], [ -82.006861216999937, 28.894043755000041 ], [ -82.006960313999969, 28.894102787000065 ], [ -82.00704996099995, 28.894174308000061 ], [ -82.00709418799994, 28.894224794000024 ], [ -82.007137219999947, 28.894278434000057 ], [ -82.007182642999965, 28.894351010000037 ], [ -82.007208941999977, 28.894406756000024 ], [ -82.007229264999978, 28.894459347000065 ], [ -82.007243612999957, 28.894528768000043 ], [ -82.007281878999947, 28.894790676000071 ], [ -82.007304964999946, 28.894929658000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012936593999939, 28.853707155000052 ], [ -82.013473955999984, 28.853912248000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013473955999984, 28.853912248000029 ], [ -82.013499114999945, 28.85386565500005 ], [ -82.013535917999945, 28.85379387100005 ], [ -82.013568499999963, 28.853726196000025 ], [ -82.013599516999989, 28.853657543000054 ], [ -82.013639565999938, 28.853561519000039 ], [ -82.013673503999939, 28.853471984000066 ], [ -82.013691648999952, 28.853420267000047 ], [ -82.013715434999938, 28.85334741500003 ], [ -82.013746105999985, 28.853244508000046 ], [ -82.013770887999954, 28.853145206000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013770887999954, 28.853145206000079 ], [ -82.013643532999936, 28.853119174000028 ], [ -82.013503056, 28.853090666000071 ], [ -82.013393749999977, 28.853068485000051 ], [ -82.013374408999937, 28.853064308000057 ], [ -82.013352486999963, 28.85305879200007 ], [ -82.013325016999943, 28.853050660000065 ], [ -82.013305016999936, 28.853043845000059 ], [ -82.013284296999984, 28.853035951000038 ], [ -82.013261082999975, 28.853026043000057 ], [ -82.013230305999969, 28.853011042000048 ], [ -82.01321027299997, 28.853000034000047 ], [ -82.013187811999956, 28.852986413000053 ], [ -82.013171871999987, 28.852975850000064 ], [ -82.01315339599995, 28.852962586000046 ], [ -82.013131691999945, 28.852945443000067 ], [ -82.013113269999963, 28.852929390000043 ], [ -82.013098085999957, 28.852914972000065 ], [ -82.013085689999969, 28.852902297000071 ], [ -82.013074637999978, 28.852890224000078 ], [ -82.013058290999936, 28.852870826000071 ], [ -82.013044903999969, 28.852853320000065 ], [ -82.013033659999962, 28.852837254000065 ], [ -82.013024724, 28.85282342000005 ], [ -82.013015507999967, 28.852807957000039 ], [ -82.013005409999948, 28.852789309000059 ], [ -82.012993796999979, 28.852764942000078 ], [ -82.012984926999934, 28.852743374000056 ], [ -82.012978333999968, 28.852724917000046 ], [ -82.012973105999947, 28.852708127000028 ], [ -82.012951627999939, 28.852632898000024 ], [ -82.012936775999947, 28.852585992000058 ], [ -82.012922773999946, 28.852544876000024 ], [ -82.012907644999984, 28.852503252000076 ], [ -82.012896398999942, 28.852473928000052 ], [ -82.012880233999965, 28.852433843000028 ], [ -82.012851029999979, 28.852366654000036 ], [ -82.012817914999971, 28.85229707600007 ], [ -82.01278310899994, 28.85222998900008 ], [ -82.012745978999988, 28.852163975000053 ], [ -82.012722739999958, 28.852125128000068 ], [ -82.012709552, 28.852103837000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051497372999961, 28.810596179000072 ], [ -82.051036605999968, 28.810635474000037 ], [ -82.050310722999939, 28.810714034000057 ], [ -82.048503319999952, 28.810931474000029 ], [ -82.047750108999935, 28.811046976000057 ], [ -82.047567199999946, 28.811076420000063 ], [ -82.047249700999942, 28.811148696000032 ], [ -82.04705077999995, 28.811216859000069 ], [ -82.046459081999956, 28.811459672000069 ], [ -82.046190111999977, 28.811535580000054 ], [ -82.046061, 28.811554577000038 ], [ -82.045583246999968, 28.811550950000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051497372999961, 28.810596179000072 ], [ -82.051548829999945, 28.811131921000026 ], [ -82.051564477999989, 28.811202200000025 ], [ -82.051606696999954, 28.811286123000059 ], [ -82.05166907399996, 28.811352946000056 ], [ -82.051793588999942, 28.811438940000073 ], [ -82.051880560999962, 28.811467459000028 ], [ -82.051994418999982, 28.81149128900006 ], [ -82.052126794999936, 28.811484249000046 ], [ -82.053317161999985, 28.811395278000077 ], [ -82.053430998999943, 28.811378522000041 ], [ -82.053512307999938, 28.811359390000064 ], [ -82.053596314999936, 28.81131399700007 ], [ -82.053685729999984, 28.811244728000077 ], [ -82.053753444999984, 28.811144431000059 ], [ -82.053788628999939, 28.811039372000039 ], [ -82.053791283999942, 28.810929551000072 ], [ -82.053766809999956, 28.810779156000024 ], [ -82.053726108999967, 28.810695615000043 ], [ -82.053674568999952, 28.810621627000046 ], [ -82.053601346999983, 28.810554809000053 ], [ -82.05352271299995, 28.810502317000044 ], [ -82.053433246999987, 28.810471317000065 ], [ -82.053275982999935, 28.810463769000023 ], [ -82.052199949999988, 28.81053625900006 ], [ -82.051497372999961, 28.810596179000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012709552, 28.852103838000062 ], [ -82.012822032999964, 28.85204647200004 ], [ -82.012882242999979, 28.852015764000043 ], [ -82.012913623999964, 28.851998488000049 ], [ -82.012935268999968, 28.85198501800005 ], [ -82.012960594999981, 28.851967439000077 ], [ -82.012978854999972, 28.851953402000049 ], [ -82.013005746999966, 28.85193031700004 ], [ -82.013030653999976, 28.851905885000065 ], [ -82.01305575899994, 28.851877522000052 ], [ -82.013079281999978, 28.851846450000039 ], [ -82.013093000999959, 28.851825638000037 ], [ -82.013105222999968, 28.851804865000076 ], [ -82.01311581799996, 28.85178462600004 ], [ -82.013125092999985, 28.851764614000047 ], [ -82.013135987999988, 28.851737171000025 ], [ -82.013147212999968, 28.851705612000046 ], [ -82.013175341999954, 28.851604031000079 ], [ -82.013203677999968, 28.851514751000025 ], [ -82.013255450999964, 28.851362254000037 ], [ -82.013319298999988, 28.851174682000078 ], [ -82.013367388999939, 28.851033408000035 ], [ -82.013424919999977, 28.850864394000041 ], [ -82.013449738999952, 28.850791478000076 ], [ -82.013464186999954, 28.850748382000063 ], [ -82.013474612999971, 28.850715910000076 ], [ -82.013483280999935, 28.850687914000048 ], [ -82.013494603999959, 28.850649814000064 ], [ -82.013502276999986, 28.850622887000043 ], [ -82.013511105999953, 28.850590662000059 ], [ -82.013517802999957, 28.850565235000033 ], [ -82.013525706999985, 28.850533986000073 ], [ -82.013532533999978, 28.850505789000067 ], [ -82.013536858999942, 28.850487280000038 ], [ -82.013549843999954, 28.850428158000057 ], [ -82.013555849999989, 28.850398680000069 ], [ -82.013560969999958, 28.850372265000033 ], [ -82.013564325999937, 28.850354216000028 ], [ -82.013566525999977, 28.850342040000044 ], [ -82.013567997999985, 28.850333722000073 ], [ -82.013569, 28.850327976000074 ], [ -82.013570068999968, 28.850321780000058 ], [ -82.013571054999943, 28.850315987000045 ], [ -82.013572086999943, 28.850309852000066 ], [ -82.01357302599996, 28.850304201000029 ], [ -82.013573869999959, 28.850299064000069 ], [ -82.01357468599997, 28.850294039000062 ], [ -82.01357521999995, 28.850290717000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012709552, 28.852103838000062 ], [ -82.012700313999972, 28.852089226000032 ], [ -82.01265140299995, 28.852015662000042 ], [ -82.012574873999938, 28.851911477000044 ], [ -82.012498480999966, 28.851818223000066 ], [ -82.012388938999948, 28.851695516000063 ], [ -82.012306833999958, 28.851604105000035 ], [ -82.012267455999961, 28.851560264000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000090204999935, 28.837330316000077 ], [ -82.000141569999982, 28.837273036000056 ], [ -82.000225732999979, 28.837169797000058 ], [ -82.000429479, 28.836895474000073 ], [ -82.000502682, 28.836796914000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999895094999943, 28.836555736000037 ], [ -81.999988413999972, 28.836577641000076 ], [ -82.000148487, 28.836624418000042 ], [ -82.000275838999983, 28.836676357000044 ], [ -82.000403348999953, 28.836739011000077 ], [ -82.000502682, 28.836796914000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999895094999943, 28.836555736000037 ], [ -81.999911087999976, 28.836490857000058 ], [ -81.999950785999943, 28.836381435000078 ], [ -82.000118796999971, 28.83596325700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000118796999971, 28.83596325700006 ], [ -82.000202867999974, 28.835754007000048 ], [ -82.000240668999936, 28.835659920000069 ], [ -82.000293824999972, 28.835594234000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999365768999951, 28.83589433700007 ], [ -81.999467848999984, 28.835888824000051 ], [ -81.999562850999951, 28.835884333000024 ], [ -81.999735009999938, 28.835893224000074 ], [ -81.999839401999964, 28.835903433000055 ], [ -81.999938902999986, 28.835915053000065 ], [ -82.000036400999988, 28.835937319000038 ], [ -82.000118796999971, 28.83596325700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999365768999951, 28.83589433700007 ], [ -81.999358398999959, 28.835776526000075 ], [ -81.999358364999978, 28.835689812000055 ], [ -81.99936689599997, 28.835613803000058 ], [ -81.999383909999949, 28.835535776000029 ], [ -81.999486453999964, 28.835253933000047 ], [ -81.999535148999939, 28.835079754000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998665895999977, 28.836005080000064 ], [ -81.99875144799995, 28.835989641000026 ], [ -81.998922580999988, 28.83595921400007 ], [ -81.999117712999976, 28.83592457900005 ], [ -81.999315192999973, 28.835897069000055 ], [ -81.999365768999951, 28.83589433700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998665895999977, 28.836005080000064 ], [ -81.998634427999946, 28.835877186000062 ], [ -81.998633678999965, 28.835765851000076 ], [ -81.998627177999936, 28.835609990000023 ], [ -81.998624756999959, 28.835488023000039 ], [ -81.998629556999958, 28.835357997000074 ], [ -81.998637970999937, 28.83529399300005 ], [ -81.998673563999944, 28.835129918000064 ], [ -81.998773362999941, 28.834631355000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998270036999941, 28.836635025000078 ], [ -81.998386154999935, 28.836194682000041 ], [ -81.99841040299998, 28.83614456600003 ], [ -81.998444553999946, 28.836099083000079 ], [ -81.998474285999976, 28.836069285000065 ], [ -81.998542184999963, 28.836033432000079 ], [ -81.998586846999956, 28.836019346000057 ], [ -81.998665895999977, 28.836005080000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998107629999936, 28.837269143000071 ], [ -81.998130407999952, 28.837163331000056 ], [ -81.998254387999964, 28.836694367000064 ], [ -81.998270036999941, 28.836635025000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998270036999941, 28.836635025000078 ], [ -81.998414734999983, 28.836659311000062 ], [ -81.998508393999941, 28.836664643000063 ], [ -81.998605710999982, 28.836661426000035 ], [ -81.998757461999958, 28.836639507000029 ], [ -81.998966284999938, 28.836602380000045 ], [ -81.999236137999958, 28.836554401000058 ], [ -81.999379612999974, 28.836534209000035 ], [ -81.999532188999979, 28.836525513000026 ], [ -81.999661964999973, 28.836528310000062 ], [ -81.999811609999938, 28.836543247000066 ], [ -81.999895094999943, 28.836555736000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99517826899995, 28.835355048000054 ], [ -81.995176036999965, 28.835396708000076 ], [ -81.995153798999979, 28.83556304800004 ], [ -81.995126292999942, 28.835747687000037 ], [ -81.995113015999948, 28.835838852000052 ], [ -81.995104961999971, 28.835930136000059 ], [ -81.995103447999952, 28.835997086000077 ], [ -81.995104664999985, 28.836045550000051 ], [ -81.995108991999984, 28.836106875000041 ], [ -81.995115817999988, 28.836163789000068 ], [ -81.995122702999936, 28.836214225000049 ], [ -81.995138324999971, 28.83628000300007 ], [ -81.995160745999954, 28.836360297000056 ], [ -81.995180480999977, 28.83642498100005 ], [ -81.995287082999937, 28.83677440200006 ], [ -81.995295342999952, 28.836801392000041 ], [ -81.995304287999943, 28.836824699000033 ], [ -81.995318052999949, 28.836850777000052 ], [ -81.995335452999939, 28.836875578000047 ], [ -81.995353018999936, 28.836896979000073 ], [ -81.995382226999936, 28.836920841000051 ], [ -81.995404094999969, 28.836935707000066 ], [ -81.995428737999987, 28.836949176000076 ], [ -81.995457233999957, 28.836961189000078 ], [ -81.99549047499994, 28.836972384000035 ], [ -81.995533664999982, 28.836978185000078 ], [ -81.995572316999983, 28.836979393000036 ], [ -81.995614983999985, 28.83697544000006 ], [ -81.99574438999997, 28.836958948000074 ], [ -81.995916338999962, 28.836937033000027 ], [ -81.996084078999957, 28.836915655000041 ], [ -81.996213028999989, 28.836902171000077 ], [ -81.996253678999949, 28.836900546000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99517826899995, 28.835355048000054 ], [ -81.995654289999948, 28.835319112000036 ], [ -81.99586437399995, 28.835303235000026 ], [ -81.99597631599994, 28.835293739000065 ], [ -81.99607502799995, 28.835282466000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997410276999972, 28.834816412000066 ], [ -81.997456302999979, 28.834788323000055 ], [ -81.997511022999959, 28.834751163000078 ], [ -81.997560358999976, 28.834713773000033 ], [ -81.997609355999941, 28.834672451000074 ], [ -81.997671726999954, 28.834612648000075 ], [ -81.997728388999974, 28.834549594000066 ], [ -81.997764587999939, 28.834504626000069 ], [ -81.997817752999936, 28.834437795000042 ], [ -81.997838615999967, 28.834404455000026 ], [ -81.997852927999986, 28.834370015000047 ], [ -81.997861008999962, 28.834335629000066 ], [ -81.99786342799996, 28.834305178000079 ], [ -81.997861474999979, 28.834274325000024 ], [ -81.997851443999934, 28.834232235000059 ], [ -81.997838122999951, 28.834197623000023 ], [ -81.997812567999972, 28.834162211000034 ], [ -81.997796426999969, 28.834143968000035 ], [ -81.997758751999982, 28.834111670000027 ], [ -81.997719264999944, 28.834085094000045 ], [ -81.997650241999963, 28.834037495000075 ], [ -81.997429085999954, 28.833884631000046 ], [ -81.997397492999937, 28.833866668000041 ], [ -81.997367184999973, 28.83385602900006 ], [ -81.997340725999948, 28.833848637000074 ], [ -81.997317670999962, 28.833844208000073 ], [ -81.997279318999972, 28.833840202000033 ], [ -81.997244190999936, 28.833841638000024 ], [ -81.997219220999966, 28.833844700000043 ], [ -81.997188841999957, 28.833850527000038 ], [ -81.997162148999962, 28.833859755000049 ], [ -81.997127798999941, 28.833875033000027 ], [ -81.997101318999967, 28.833890798000027 ], [ -81.997070721999989, 28.833914700000037 ], [ -81.997003440999947, 28.833978140000056 ], [ -81.996925789999977, 28.834051450000061 ], [ -81.996855835999952, 28.834116024000025 ], [ -81.996818056999984, 28.834146387000033 ], [ -81.996767834999957, 28.834179008000035 ], [ -81.996727523999937, 28.834201643000029 ], [ -81.996677788999989, 28.834225199000059 ], [ -81.996602713999948, 28.834253686000068 ], [ -81.996492430999979, 28.834293513000034 ], [ -81.99628028799998, 28.834370126000067 ], [ -81.996184485999947, 28.834403458000054 ], [ -81.996121830999982, 28.834422410000059 ], [ -81.996051306999959, 28.834442110000055 ], [ -81.99599604399998, 28.834455957000046 ], [ -81.995929879999949, 28.834470743000054 ], [ -81.995843502999946, 28.834487179000064 ], [ -81.995790382999985, 28.834495708000077 ], [ -81.995714723999981, 28.834505817000036 ], [ -81.995636303999959, 28.83451380300005 ], [ -81.995388743999968, 28.834532640000077 ], [ -81.995352532999959, 28.834537490000059 ], [ -81.99531331299994, 28.834547815000064 ], [ -81.995279102999973, 28.834561133000079 ], [ -81.995246535999968, 28.834580066000058 ], [ -81.99522219499994, 28.834597979000023 ], [ -81.995193172999961, 28.834625965000043 ], [ -81.995173840999939, 28.834650793000037 ], [ -81.995150754999941, 28.834693715000071 ], [ -81.99514157599998, 28.834721126000034 ], [ -81.995136297999977, 28.834747694000043 ], [ -81.995134423999957, 28.834771338000053 ], [ -81.995136482999953, 28.834806708000031 ], [ -81.995142789999989, 28.83484549700006 ], [ -81.995165239999949, 28.834985875000029 ], [ -81.995177897999952, 28.835106632000077 ], [ -81.995180676999951, 28.835154591000048 ], [ -81.995182319999969, 28.835210816000028 ], [ -81.995181930999934, 28.835254096000028 ], [ -81.99518158099994, 28.835293252000042 ], [ -81.99517826899995, 28.835355048000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147336052999947, 28.591908617000058 ], [ -82.147471405999966, 28.591637130000038 ], [ -82.147936406999975, 28.590682598000058 ], [ -82.148229862999983, 28.590081594000026 ], [ -82.148300723999967, 28.589929969000025 ], [ -82.148544773999959, 28.589428141000042 ], [ -82.14889494099998, 28.588719566000066 ], [ -82.149001016999989, 28.588501051000037 ], [ -82.149001722999969, 28.588499597000066 ], [ -82.149002162999977, 28.588498691000041 ], [ -82.149002700999972, 28.58849758100007 ], [ -82.149003017999974, 28.58849692900003 ], [ -82.149003818999972, 28.588495293000051 ], [ -82.149004417999947, 28.588494070000024 ], [ -82.149004814999955, 28.588493259000074 ], [ -82.149005950999936, 28.588490939000053 ], [ -82.149006792999955, 28.588489223000067 ], [ -82.149007870999981, 28.588487024000074 ], [ -82.149008617999982, 28.588485498000068 ], [ -82.149009484999965, 28.588483728000028 ], [ -82.149010231999966, 28.588482204000059 ], [ -82.149011560999952, 28.588479492000033 ], [ -82.149012032999963, 28.588478528000053 ], [ -82.149012467999967, 28.588477641000054 ], [ -82.149013778999972, 28.588474965000046 ], [ -82.149015086999952, 28.588472294000042 ], [ -82.149015745999975, 28.588470950000044 ], [ -82.149016939999967, 28.588468512000077 ], [ -82.149018444999967, 28.588465441000039 ], [ -82.149019817999942, 28.588462639000056 ], [ -82.149021227999981, 28.588459761000024 ], [ -82.149022541999955, 28.588457079000079 ], [ -82.14902301099994, 28.588456121000036 ], [ -82.149024323999981, 28.588453442000059 ], [ -82.149024810999947, 28.588452447000066 ], [ -82.149026277999951, 28.588449453000067 ], [ -82.149027623999984, 28.58844670600007 ], [ -82.149029128999985, 28.588443635000033 ], [ -82.149031030999936, 28.588439752000056 ], [ -82.149032567999939, 28.588436614000045 ], [ -82.149034171999972, 28.58843334200003 ], [ -82.149036028999944, 28.588429549000068 ], [ -82.149037852999982, 28.588425828000027 ], [ -82.149039964999986, 28.588421517000029 ], [ -82.149042256999962, 28.588416840000036 ], [ -82.149042872999985, 28.588415581000049 ], [ -82.149045640999987, 28.588409934000026 ], [ -82.149048434999941, 28.588404230000037 ], [ -82.149049324999964, 28.588402453000072 ], [ -82.149050001999967, 28.588401062000059 ], [ -82.149052395999945, 28.588396145000047 ], [ -82.14905526299998, 28.588390294000078 ], [ -82.149058130999947, 28.588384440000027 ], [ -82.149060881999958, 28.588378825000063 ], [ -82.149063654999964, 28.588373165000064 ], [ -82.149066499999947, 28.588367359000074 ], [ -82.149069444999952, 28.588361348000035 ], [ -82.149071657999968, 28.588356832000045 ], [ -82.149073742999974, 28.588352575000044 ], [ -82.149074279999979, 28.588351480000028 ], [ -82.149077394999949, 28.588345121000032 ], [ -82.149078476999989, 28.588342913000076 ], [ -82.149090073999957, 28.588319243000058 ], [ -82.149091646999977, 28.588315955000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149772368999948, 28.586926651000056 ], [ -82.149860006999972, 28.586740021000026 ], [ -82.149948568999946, 28.586557838000033 ], [ -82.150082828999984, 28.586274447000051 ], [ -82.150348516999941, 28.585732958000051 ], [ -82.150471363999941, 28.585484984000061 ], [ -82.150777042999948, 28.584859992000077 ], [ -82.151022721999936, 28.584356456000023 ], [ -82.151313318999939, 28.583779030000073 ], [ -82.151491304999979, 28.583410208000032 ], [ -82.151755599999944, 28.582872259000055 ], [ -82.152579528, 28.581134098000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.152579528, 28.581134098000064 ], [ -82.153483626999957, 28.579307277000055 ], [ -82.15377813799995, 28.57873108900003 ], [ -82.153918334999958, 28.578425335000077 ], [ -82.15400350699997, 28.578222783000058 ], [ -82.154093001999968, 28.578018314000076 ], [ -82.15418245799998, 28.577787108000052 ], [ -82.154337638999948, 28.577372468000078 ], [ -82.154471210999986, 28.57697790900005 ], [ -82.154617623999968, 28.576485926000032 ], [ -82.154715545999977, 28.576127696000071 ], [ -82.154792966999935, 28.575806733000036 ], [ -82.154859594999948, 28.575502973000027 ], [ -82.154915442999936, 28.575225009000064 ], [ -82.15498409099996, 28.574823838000043 ], [ -82.15503982499996, 28.574468520000039 ], [ -82.155124562999958, 28.573973743000067 ], [ -82.155238207999957, 28.573274565000077 ], [ -82.155325054999935, 28.572744450000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01807181199996, 28.864427759000023 ], [ -82.018071888999941, 28.864427759000023 ], [ -82.020529523999983, 28.864411933000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020533359999945, 28.865325668000025 ], [ -82.020378444999949, 28.865324201000078 ], [ -82.019203466999954, 28.865325254000027 ], [ -82.017866096999967, 28.865319742000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020528764999938, 28.861837104000074 ], [ -82.020526315999973, 28.862622069000054 ], [ -82.020527290999951, 28.863351403000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999511084999938, 28.853943885000035 ], [ -81.999543290999952, 28.853920530000039 ], [ -81.999571141, 28.853893175000053 ], [ -81.999593997999966, 28.853862443000025 ], [ -81.999611343999959, 28.853829033000068 ], [ -81.999622785999975, 28.853793707000079 ], [ -81.999623951999979, 28.853784599000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999623043999975, 28.853700153000034 ], [ -81.999617761999957, 28.853677850000054 ], [ -81.999601673999962, 28.853640332000055 ], [ -81.999578808999956, 28.853605647000052 ], [ -81.999549787999968, 28.853574737000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00010347999995, 28.853806076000069 ], [ -82.000105854999958, 28.853806215000077 ], [ -82.000168478999967, 28.853812758000061 ], [ -82.000227363999954, 28.853827713000044 ], [ -82.000312419999943, 28.853857623000067 ], [ -82.000502843999982, 28.853943682000079 ], [ -82.000563593999971, 28.853939260000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99883674299997, 28.860529290000045 ], [ -81.998828463999985, 28.860496883000053 ], [ -81.998825752999949, 28.860472053000024 ], [ -81.998824342999967, 28.86043137300004 ], [ -81.998826946999941, 28.860396231000038 ], [ -81.998834757999987, 28.860360325000045 ], [ -81.998853849999989, 28.860314488000029 ], [ -81.998886935999963, 28.860249298000042 ], [ -81.999164638999957, 28.859784051000076 ], [ -81.999287, 28.859580839000046 ], [ -81.999354689999961, 28.859463955000024 ], [ -81.999414567999963, 28.859353181000074 ], [ -81.999480522999988, 28.859232476000045 ], [ -81.999545607999949, 28.859096493000038 ], [ -81.999602882999966, 28.858954397000048 ], [ -81.999657554999942, 28.858819940000046 ], [ -81.999713093999958, 28.858652634000066 ], [ -81.99975920299994, 28.858495443000038 ], [ -81.999795871999936, 28.858344797000029 ], [ -81.999842397999942, 28.858126269000024 ], [ -81.99987363799994, 28.857906250000042 ], [ -81.999919630999955, 28.857576221000045 ], [ -81.999957811999934, 28.857303490000049 ], [ -81.999966490999952, 28.857175144000053 ], [ -81.999974300999952, 28.857031521000067 ], [ -81.999974300999952, 28.856895537000071 ], [ -81.999969094999983, 28.856728230000044 ], [ -81.99995781299998, 28.856567035000069 ], [ -81.999936985999966, 28.856384450000064 ], [ -81.999914021999984, 28.856248564000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99883674299997, 28.860529290000045 ], [ -81.998814721999963, 28.860496022000063 ], [ -81.998787038999978, 28.860466212000063 ], [ -81.998754383999938, 28.860440597000036 ], [ -81.998717563999946, 28.860419814000068 ], [ -81.998677494999981, 28.860404379000045 ], [ -81.998635168999954, 28.860394674000077 ], [ -81.998591636999947, 28.860390940000059 ], [ -81.998547979999955, 28.860393270000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037034418999951, 28.884328836000066 ], [ -82.037034469999981, 28.884396393000031 ], [ -82.037033505999943, 28.885266154000078 ], [ -82.036997345999964, 28.885729129000026 ], [ -82.036979358999986, 28.886130736000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036979358999986, 28.886130736000041 ], [ -82.035558735999984, 28.886129219000054 ], [ -82.034475868999948, 28.886129918000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036979358999986, 28.886130736000041 ], [ -82.036963870999955, 28.887311434000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036963870999955, 28.887311434000026 ], [ -82.036166975999947, 28.887310143000036 ], [ -82.035667168999964, 28.887300132000064 ], [ -82.035614939999959, 28.88730014600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036952521999979, 28.888276474000065 ], [ -82.036948655999936, 28.888786629000037 ], [ -82.036920094999971, 28.890000567000072 ], [ -82.036919850999936, 28.890019567000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036926147999964, 28.892656939000062 ], [ -82.036933257999976, 28.892931807000025 ], [ -82.036946588999967, 28.893979739000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007304964999946, 28.894929658000024 ], [ -82.00732014099998, 28.895021027000041 ], [ -82.007329407999976, 28.895096413000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007304964999946, 28.894929658000024 ], [ -82.007413473999975, 28.894917946000078 ], [ -82.007461521999971, 28.894907796000041 ], [ -82.007490350999944, 28.894904411000027 ], [ -82.007528789999981, 28.894906100000071 ], [ -82.007565308999972, 28.894926396000074 ], [ -82.007578763999959, 28.894948382000052 ], [ -82.007588375999944, 28.894980518000068 ], [ -82.00758837799998, 28.895007579000037 ], [ -82.00757492799994, 28.895044791000032 ], [ -82.007555708999973, 28.895063397000058 ], [ -82.007524958999966, 28.895076929000027 ], [ -82.007494206999979, 28.895082005000063 ], [ -82.00744808099995, 28.895082008000031 ], [ -82.007329407999976, 28.895096413000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009742948999985, 28.897301580000033 ], [ -82.009847092999962, 28.897357011000054 ], [ -82.010027586999968, 28.897444300000075 ], [ -82.010276211999951, 28.897556829000052 ], [ -82.010538768999936, 28.897662574000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007578443999989, 28.896817561000034 ], [ -82.007779245999984, 28.896813343000076 ], [ -82.007987220999951, 28.896810175000041 ], [ -82.008170094999969, 28.896816476000026 ], [ -82.008384650999972, 28.896824343000048 ], [ -82.008498793999934, 28.896835388000056 ], [ -82.008599195999977, 28.89685115900005 ], [ -82.008743824999954, 28.896877447000065 ], [ -82.008870782999963, 28.896910363000075 ], [ -82.009138997999969, 28.896998855000049 ], [ -82.009406019999972, 28.897124584000039 ], [ -82.009587771999975, 28.897219607000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009587771999975, 28.897219607000068 ], [ -82.009653451999952, 28.897253944000056 ], [ -82.009742948999985, 28.897301580000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009587771999975, 28.897219607000068 ], [ -82.009549855999978, 28.897308228000043 ], [ -82.009522902999947, 28.897338310000066 ], [ -82.009502588999965, 28.897360314000025 ], [ -82.009491653999987, 28.897386444000063 ], [ -82.009488531999978, 28.89741807200005 ], [ -82.009497910999983, 28.897453825000071 ], [ -82.009519789999956, 28.897477201000072 ], [ -82.009546356999977, 28.897490779000066 ], [ -82.009575656999971, 28.897497996000027 ], [ -82.00960730099996, 28.897499197000059 ], [ -82.009632302999989, 28.897492320000026 ], [ -82.009661992999952, 28.897474441000043 ], [ -82.009680741999944, 28.897451062000073 ], [ -82.009690113999966, 28.897419432000049 ], [ -82.009699877999935, 28.89738350500005 ], [ -82.009742948999985, 28.897301580000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012042916999974, 28.898663314000032 ], [ -82.012052084999937, 28.898650821000047 ], [ -82.012067226999989, 28.898624162000033 ], [ -82.012081075999959, 28.898594253000056 ], [ -82.012098775999959, 28.898555293000072 ], [ -82.012160043999984, 28.898335036000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010538768999936, 28.897662574000037 ], [ -82.010320889999946, 28.898070717000053 ], [ -82.010304954999981, 28.898114303000057 ], [ -82.010296590999985, 28.898156378000067 ], [ -82.010296598999957, 28.898236318000045 ], [ -82.010312533, 28.89831657700006 ], [ -82.010351596999953, 28.898394090000068 ], [ -82.010404195999968, 28.898457197000027 ], [ -82.010460378999937, 28.898504525000078 ], [ -82.010522536999986, 28.89853923000004 ], [ -82.01073889099996, 28.898630725000032 ], [ -82.011199093999949, 28.898825278000061 ], [ -82.011363083999981, 28.89888688700006 ], [ -82.011399909999966, 28.898897838000039 ], [ -82.011444108999967, 28.898904092000066 ], [ -82.011542148, 28.898906241000077 ], [ -82.01164806099996, 28.898899157000074 ], [ -82.011705002999975, 28.898887441000056 ], [ -82.011761799999988, 28.898869664000074 ], [ -82.011813546999974, 28.89884633500003 ], [ -82.01186725599996, 28.898817858000029 ], [ -82.011908209999945, 28.898797453000043 ], [ -82.011918737999963, 28.898789246000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011918737999963, 28.898789246000035 ], [ -82.011952382999937, 28.898763016000032 ], [ -82.012019621999968, 28.898695060000023 ], [ -82.012042916999974, 28.898663314000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011918737999963, 28.898789246000035 ], [ -82.011983947999965, 28.89885298300004 ], [ -82.012005407999936, 28.89887075300004 ], [ -82.012033177999967, 28.898880747000078 ], [ -82.012064733999978, 28.898880745000042 ], [ -82.012091238999972, 28.898874079000052 ], [ -82.012120268999979, 28.898859636000054 ], [ -82.012139199999979, 28.898845195000035 ], [ -82.012153081999941, 28.898821867000038 ], [ -82.012156865999941, 28.898792987000036 ], [ -82.012151812999946, 28.898761888000024 ], [ -82.012135399999977, 28.898735231000046 ], [ -82.012097530999938, 28.898705244000041 ], [ -82.012042916999974, 28.898663314000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998967540999956, 28.893308269000045 ], [ -81.998964256999955, 28.893256229000031 ], [ -81.998960671999953, 28.893168925000055 ], [ -81.998968070999979, 28.893096214000025 ], [ -81.998975015999974, 28.893024823000076 ], [ -81.998994139, 28.892945935000057 ], [ -81.999024020999968, 28.892862838000042 ], [ -81.999057486999959, 28.892790262000062 ], [ -81.999104102999979, 28.892709270000068 ], [ -81.999149520999936, 28.892645109000057 ], [ -81.999221232999957, 28.892551495000077 ], [ -81.999267847999988, 28.892510472000026 ], [ -81.999328143999946, 28.892466877000061 ], [ -81.99939214799997, 28.892437896000047 ], [ -81.999467207999942, 28.892414426000073 ], [ -81.999536769999963, 28.892404237000051 ], [ -81.999612066999987, 28.892398978000074 ], [ -81.999696926999945, 28.892397927000047 ], [ -82.000207280999973, 28.892377943000042 ], [ -82.000849105999976, 28.892353747000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999332378999952, 28.89406404600004 ], [ -81.999109603999955, 28.893677597000078 ], [ -81.999025173999939, 28.893511505000049 ], [ -81.998990549999974, 28.893411901000036 ], [ -81.998967840999967, 28.893313027000033 ], [ -81.998967540999956, 28.893308269000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998967540999956, 28.893308269000045 ], [ -81.998613574, 28.893361675000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016904099999977, 28.893493687000046 ], [ -82.016779633999988, 28.89347482900007 ], [ -82.01665309699996, 28.893487615000026 ], [ -82.016581206999945, 28.893524005000074 ], [ -82.01612128499994, 28.893806836000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021741829999939, 28.921479196000064 ], [ -82.021654379999973, 28.921509667000066 ], [ -82.02159061499998, 28.921525706000068 ], [ -82.021535317999962, 28.921538802000043 ], [ -82.021480660999941, 28.921548428000051 ], [ -82.021419979999962, 28.921552649000034 ], [ -82.021355961999973, 28.921555476000037 ], [ -82.021301544999972, 28.921555484000066 ], [ -82.021250882999936, 28.921554600000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021250882999936, 28.921554600000036 ], [ -82.021221519999983, 28.92155408900004 ], [ -82.021127088999947, 28.921544247000043 ], [ -82.021028805999947, 28.921532470000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021250882999936, 28.921554600000036 ], [ -82.021244797999941, 28.921488945000078 ], [ -82.021234676999939, 28.921449798000026 ], [ -82.021226580999951, 28.921425777000024 ], [ -82.021208372, 28.921399087000054 ], [ -82.021183084999961, 28.921380406000026 ], [ -82.021154766999985, 28.921371513000054 ], [ -82.021122404999971, 28.921368849000032 ], [ -82.021089032999953, 28.921375083000044 ], [ -82.021062742999959, 28.921397331000037 ], [ -82.021042521999959, 28.921424916000035 ], [ -82.021031405999963, 28.921460508000052 ], [ -82.021030398999983, 28.921486310000034 ], [ -82.021028805999947, 28.921532470000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022668071999988, 28.920458764000045 ], [ -82.02261806599995, 28.920495213000038 ], [ -82.022581554999988, 28.920526885000072 ], [ -82.02255787699994, 28.920557346000066 ], [ -82.02252821899998, 28.920605236000029 ], [ -82.022485718999974, 28.920706046000078 ], [ -82.022443797999983, 28.920797705000041 ], [ -82.02241053299997, 28.920869399000026 ], [ -82.022362533999967, 28.920946852000043 ], [ -82.022309002999975, 28.921016014000031 ], [ -82.022213741999963, 28.92113624600006 ], [ -82.02214812699998, 28.921205981000071 ], [ -82.022079321999968, 28.921279214000037 ], [ -82.021996772999955, 28.92134135200007 ], [ -82.021934262999935, 28.921382615000027 ], [ -82.021871751999981, 28.921420441000066 ], [ -82.021800126999949, 28.921456745000057 ], [ -82.021741829999939, 28.921479196000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010431026999981, 28.931601958000044 ], [ -82.010471944999949, 28.931609820000062 ], [ -82.010626238999976, 28.931627321000065 ], [ -82.010783850999985, 28.931637525000042 ], [ -82.011030767999955, 28.931639995000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01031620599997, 28.931579900000031 ], [ -82.010431026999981, 28.931601958000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009591182999941, 28.931417404000058 ], [ -82.009675742999946, 28.931434305000039 ], [ -82.010012700999937, 28.931509794000078 ], [ -82.010223958999973, 28.93155736600005 ], [ -82.010280544999944, 28.931571189000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010280544999944, 28.931571189000067 ], [ -82.01031620599997, 28.931579900000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010280544999944, 28.931571189000067 ], [ -82.01029153199994, 28.931479985000067 ], [ -82.010284726999942, 28.931449064000049 ], [ -82.010281320999979, 28.931422506000047 ], [ -82.010284721999938, 28.931398567000031 ], [ -82.010293222999962, 28.931375376000062 ], [ -82.010310794999953, 28.931351311000071 ], [ -82.01034707499997, 28.931328366000059 ], [ -82.010391293999987, 28.931324373000052 ], [ -82.010429845999965, 28.931332349000058 ], [ -82.010462728999983, 28.931351300000074 ], [ -82.010478604999946, 28.931374239000036 ], [ -82.01048994699994, 28.931404162000035 ], [ -82.010489949999965, 28.931438076000063 ], [ -82.010472944999947, 28.931470993000062 ], [ -82.010448003999954, 28.931502914000077 ], [ -82.010431026999981, 28.931601958000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00424447599994, 28.949331289000042 ], [ -82.004269721999947, 28.949275114000045 ], [ -82.004373680999947, 28.949019059000079 ], [ -82.004437560999975, 28.948868040000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004437560999975, 28.948868040000036 ], [ -82.004492488999972, 28.948738183000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004492488999972, 28.948738183000046 ], [ -82.004596388999971, 28.94878045300004 ], [ -82.004625635999957, 28.948785353000062 ], [ -82.004667416999951, 28.948785351000026 ], [ -82.004702236999947, 28.948795149000034 ], [ -82.004722779999952, 28.948804489000054 ], [ -82.004740537999965, 28.948817351000059 ], [ -82.004752027999984, 28.948835726000027 ], [ -82.004759340999954, 28.948866044000056 ], [ -82.004756208999936, 28.948904632000051 ], [ -82.004748280999934, 28.94892186800007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004437560999975, 28.948868040000036 ], [ -82.004549041999951, 28.948912755000038 ], [ -82.004579682999974, 28.948942153000075 ], [ -82.004608929999961, 28.948959761000026 ], [ -82.004636088999973, 28.948968948000072 ], [ -82.004672649999975, 28.948969866000027 ], [ -82.004712339999969, 28.948957921000044 ], [ -82.00474402499998, 28.948931122000033 ], [ -82.004748280999934, 28.94892186800007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000983046999977, 28.959229031000064 ], [ -82.001029609999989, 28.959278171000051 ], [ -82.001087347999942, 28.959328949000053 ], [ -82.001171160999945, 28.959410849000051 ], [ -82.001285110999959, 28.959520419000057 ], [ -82.001341026999967, 28.959592107000049 ], [ -82.00138547399996, 28.959678133000068 ], [ -82.001449993999984, 28.959805738000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99650453299995, 28.959180697000079 ], [ -81.996422060999976, 28.959274570000048 ], [ -81.996376463999979, 28.959339873000033 ], [ -81.996329358999958, 28.959401521000075 ], [ -81.996252446999961, 28.959510880000039 ], [ -81.996163517999946, 28.959662299000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000813716999971, 28.957500478000043 ], [ -82.000728239999944, 28.957214687000032 ], [ -82.00069476699997, 28.957035947000065 ], [ -82.000680419999981, 28.956901366000068 ], [ -82.000673245999963, 28.956752067000025 ], [ -82.000620036999976, 28.956002604000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99771928499996, 28.952100757000039 ], [ -81.997771513999965, 28.95204581400003 ], [ -81.997809788999973, 28.951990031000037 ], [ -81.997841502999961, 28.951941939000051 ], [ -81.997879778999959, 28.951867879000076 ], [ -81.997899463999943, 28.951807286000076 ], [ -81.997909306999986, 28.951764003000051 ], [ -81.997918055999946, 28.951713989000041 ], [ -81.997916514999986, 28.951557679000075 ], [ -81.99790057499996, 28.950957032000076 ], [ -81.997909223999955, 28.950612031000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997989525999969, 28.952356947000055 ], [ -81.99771928499996, 28.952100757000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975921582999945, 28.939403828000025 ], [ -81.975996976999966, 28.939403628000036 ], [ -81.976072091999981, 28.939405380000039 ], [ -81.976133369999957, 28.939405391000037 ], [ -81.976180810999949, 28.939404530000047 ], [ -81.976211450999983, 28.939400188000036 ], [ -81.976242092999939, 28.939388891000078 ], [ -81.976269769999988, 28.939376724000056 ], [ -81.976788730999942, 28.939050788000031 ], [ -81.976963692999959, 28.938943011000049 ], [ -81.97700619699998, 28.938917806000063 ], [ -81.977033873999972, 28.938901291000036 ], [ -81.977051666999955, 28.938889123000024 ], [ -81.977070448999939, 28.93887608600005 ], [ -81.977085276999958, 28.93886565400004 ], [ -81.977102080999941, 28.938855224000065 ], [ -81.977124538999988, 28.938839769000026 ], [ -81.977143597999941, 28.938825672000064 ], [ -81.977161390999981, 28.938811764000036 ], [ -81.977180174999944, 28.938796118000027 ], [ -81.977195001999974, 28.93878047100003 ], [ -81.977213784999947, 28.938761347000025 ], [ -81.977369992999968, 28.938536197000076 ], [ -81.977698076999957, 28.938038925000058 ], [ -81.977741332999983, 28.93796965100006 ], [ -81.977772228999982, 28.937918035000052 ], [ -81.977790765999941, 28.937890869000057 ], [ -81.977801580999937, 28.937869135000028 ], [ -81.977809305999983, 28.937852835000058 ], [ -81.977815325999984, 28.937837488000071 ], [ -81.977818687999957, 28.937820504000058 ], [ -81.977820369999961, 28.937811274000069 ], [ -81.977821209999945, 28.93780167400007 ], [ -81.977821211999981, 28.937793550000038 ], [ -81.977821632999962, 28.937784689000068 ], [ -81.977821635999987, 28.937769920000051 ], [ -81.977820799999961, 28.937759213000049 ], [ -81.977819541999963, 28.93774813400006 ], [ -81.977817865999953, 28.937738904000071 ], [ -81.97781576899996, 28.937729303000026 ], [ -81.977813671999968, 28.937721549000059 ], [ -81.977808231999973, 28.937706052000067 ], [ -81.977801019999958, 28.937692781000067 ], [ -81.977794463999942, 28.937681241000064 ], [ -81.977785940999979, 28.93766912500007 ], [ -81.977772827999956, 28.937652391000029 ], [ -81.977673462999974, 28.937548326000069 ], [ -81.977591202999974, 28.93746651400005 ], [ -81.97754073599998, 28.937424716000066 ], [ -81.977514399999961, 28.937411349000058 ], [ -81.977491751999935, 28.93740381300006 ], [ -81.977461047999952, 28.937397802000078 ], [ -81.977450566999948, 28.937396256000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977450566999948, 28.937396256000056 ], [ -81.977430885999979, 28.93739335500004 ], [ -81.977400512999964, 28.93739598600007 ], [ -81.977368531999957, 28.937401180000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977450566999948, 28.937396256000056 ], [ -81.977445677999981, 28.937303030000066 ], [ -81.977440553999941, 28.937279561000025 ], [ -81.977423114999965, 28.937258046000068 ], [ -81.977406701999939, 28.93724480700007 ], [ -81.97737250199998, 28.937235174000079 ], [ -81.977349244999971, 28.937235170000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975921582999945, 28.939403828000025 ], [ -81.975922858999979, 28.93936362200003 ], [ -81.975919900999941, 28.939339278000034 ], [ -81.975918915999955, 28.939321890000031 ], [ -81.97591891999997, 28.939303632000076 ], [ -81.975917936999963, 28.939287113000034 ], [ -81.975916950999988, 28.939271464000058 ], [ -81.975915964999956, 28.939256684000043 ], [ -81.97591498099996, 28.939243642000065 ], [ -81.975913007999964, 28.939227993000031 ], [ -81.975911035999957, 28.939210604000039 ], [ -81.97590708499996, 28.939194954000072 ], [ -81.975904124999943, 28.93917756500008 ], [ -81.975900174999936, 28.939163654000026 ], [ -81.975897212999939, 28.93914974300003 ], [ -81.975894249999953, 28.93913757100006 ], [ -81.975890300999936, 28.939119313000049 ], [ -81.975885361999985, 28.939103663000026 ], [ -81.975880425999947, 28.939086273000044 ], [ -81.975873487999934, 28.939067117000036 ], [ -81.975868688999981, 28.939048806000073 ], [ -81.975863888999982, 28.939030494000065 ], [ -81.97586069, 28.939015 ], [ -81.975858612999957, 28.938997843000038 ], [ -81.975856567999983, 28.938977110000053 ], [ -81.97585750099995, 28.938957251000033 ], [ -81.975858627999969, 28.938933841000051 ], [ -81.975863756999956, 28.93891130600008 ], [ -81.975871927999947, 28.938889644000028 ], [ -81.975881539999989, 28.938871335000044 ], [ -81.975894512999957, 28.938851816000067 ], [ -81.975911938999957, 28.938835593000078 ], [ -81.976211442999954, 28.938640398000075 ], [ -81.976245072999973, 28.938617868000051 ], [ -81.976273897999988, 28.938602379000031 ], [ -81.976297920999968, 28.938585480000029 ], [ -81.976326745999984, 28.938568584000052 ], [ -81.976352369999972, 28.938550277000047 ], [ -81.976382796999985, 28.938529155000026 ], [ -81.976411623, 28.938510850000057 ], [ -81.976438554999959, 28.938490717000036 ], [ -81.976463570999954, 28.938469407000071 ], [ -81.976488391999965, 28.938448098000038 ], [ -81.976509313999941, 28.938431990000026 ], [ -81.976533335999989, 28.938412276000065 ], [ -81.976560562999964, 28.938389743000073 ], [ -81.976584585999944, 28.938365803000067 ], [ -81.976619819999939, 28.938332004000074 ], [ -81.976679076999972, 28.938279900000055 ], [ -81.976738334999936, 28.938216526000076 ], [ -81.976767164999956, 28.938181319000023 ], [ -81.976802401999976, 28.938139071000023 ], [ -81.976934993999976, 28.937946787000044 ], [ -81.977122245999965, 28.937649307000072 ], [ -81.977156073999936, 28.937598832000049 ], [ -81.97716939999998, 28.937576298000067 ], [ -81.977183567999987, 28.937553134000041 ], [ -81.977196688999982, 28.937530059000039 ], [ -81.977205874999981, 28.937516214000027 ], [ -81.977218604999962, 28.937499683000055 ], [ -81.977237055999979, 28.937481657000035 ], [ -81.97726165499995, 28.937457323000046 ], [ -81.977277029999982, 28.93744560600004 ], [ -81.97728961599995, 28.937436504000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97728961599995, 28.937436504000061 ], [ -81.977298751999967, 28.937429899000051 ], [ -81.977322507999986, 28.937416843000051 ], [ -81.977368531999957, 28.937401180000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97728961599995, 28.937436504000061 ], [ -81.977267138999935, 28.937341058000072 ], [ -81.977265774999978, 28.937321802000042 ], [ -81.977268515999981, 28.937301344000048 ], [ -81.97727946699996, 28.937268854000024 ], [ -81.977295887999958, 28.93725200800003 ], [ -81.977319146999946, 28.937239979000026 ], [ -81.977349244999971, 28.937235170000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96538568699998, 28.939999167000053 ], [ -81.965456981999978, 28.939922356000068 ], [ -81.96561603899994, 28.939755336000076 ], [ -81.965984963999972, 28.939350406000074 ], [ -81.966024727999979, 28.939310593000073 ], [ -81.966044610999973, 28.939289229000053 ], [ -81.96606227999996, 28.939274665000028 ], [ -81.966078848999985, 28.939257186000077 ], [ -81.966095414999984, 28.939244564000035 ], [ -81.966111981999973, 28.939229999000077 ], [ -81.966129653999985, 28.939214462000052 ], [ -81.966149533999953, 28.939198927000064 ], [ -81.96617162299998, 28.939180478000026 ], [ -81.966227948999972, 28.939143584000078 ], [ -81.966797822, 28.938754241000026 ], [ -81.967321307999953, 28.938394024000047 ], [ -81.967582953999965, 28.938216605000036 ], [ -81.967601325999965, 28.938204577000079 ], [ -81.96761715599996, 28.938195299000029 ], [ -81.96763337699997, 28.938186365000035 ], [ -81.967650413999934, 28.938176536000071 ], [ -81.967662561999987, 28.938169740000035 ], [ -81.967678023999952, 28.938160032000042 ], [ -81.967695692999939, 28.938151295000068 ], [ -81.967715570999985, 28.938139643000056 ], [ -81.96773434499994, 28.938130907000073 ], [ -81.967750907999971, 28.938125083000045 ], [ -81.967769680999936, 28.938118289000045 ], [ -81.967787348999934, 28.938111494000054 ], [ -81.967806121999956, 28.938104700000054 ], [ -81.967822686999966, 28.938099847000046 ], [ -81.967834833999973, 28.93809596400007 ], [ -81.967845875999956, 28.938092083000072 ], [ -81.967860230999975, 28.938087229000075 ], [ -81.967876795999985, 28.938083348000077 ], [ -81.967898878999961, 28.938080440000078 ], [ -81.967924275999962, 28.93807656000007 ], [ -81.967955192999966, 28.93807365300006 ], [ -81.968024755999977, 28.938071728000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964600771999983, 28.940587717000028 ], [ -81.964689869999972, 28.940583822000065 ], [ -81.964732934999972, 28.940578609000056 ], [ -81.964767090999942, 28.940572088000067 ], [ -81.964814613999977, 28.940557731000069 ], [ -81.964856198999939, 28.940538149000076 ], [ -81.964890360999959, 28.940514646000054 ], [ -81.964928978999978, 28.940484613000024 ], [ -81.965084739999952, 28.940323398000032 ], [ -81.965257518999977, 28.940137251000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965257518999977, 28.940137251000067 ], [ -81.96538568699998, 28.939999167000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965257518999977, 28.940137251000067 ], [ -81.965199122999934, 28.940080014000046 ], [ -81.965168114999983, 28.940047263000054 ], [ -81.965146412999957, 28.940017245000035 ], [ -81.965134016999968, 28.939981770000031 ], [ -81.965143334999937, 28.939946302000067 ], [ -81.965168156999937, 28.939923116000045 ], [ -81.965194526999937, 28.93990948000004 ], [ -81.965236404999985, 28.939905398000064 ], [ -81.965275173999942, 28.939919051000061 ], [ -81.96538568699998, 28.939999167000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965751326999964, 28.935628338000072 ], [ -81.965765837999982, 28.935692258000074 ], [ -81.965772107999953, 28.935733162000076 ], [ -81.965774607999947, 28.935770748000039 ], [ -81.965775848999954, 28.935820494000041 ], [ -81.965774576999934, 28.935865818000025 ], [ -81.965769534999936, 28.935915563000037 ], [ -81.965761978999979, 28.935961990000067 ], [ -81.965749398999947, 28.936003994000032 ], [ -81.965734304999955, 28.936047103000078 ], [ -81.96572172499998, 28.936082476000024 ], [ -81.965702864999969, 28.936118951000026 ], [ -81.965678974999946, 28.936155425000038 ], [ -81.965651315999935, 28.936194108000052 ], [ -81.965621143999954, 28.936229475000061 ], [ -81.96559222999997, 28.936262632000023 ], [ -81.965565828999956, 28.936294684000075 ], [ -81.965536914999973, 28.936325629000066 ], [ -81.965511774999982, 28.936347733000048 ], [ -81.965475321999975, 28.936377570000047 ], [ -81.965428814999939, 28.936406301000034 ], [ -81.965396135999981, 28.936425085000053 ], [ -81.965363457999956, 28.936440553000068 ], [ -81.96532323699995, 28.936459336000041 ], [ -81.965271705999953, 28.936483643000031 ], [ -81.965228970999988, 28.936503530000039 ], [ -81.965176181999936, 28.936532257000067 ], [ -81.965137216999949, 28.936556569000061 ], [ -81.965110820999939, 28.936575355000059 ], [ -81.965069338999967, 28.936605191000069 ], [ -81.965031627999963, 28.936637240000039 ], [ -81.964997688999972, 28.936667078000028 ], [ -81.964966261999962, 28.936698023000076 ], [ -81.964936089999981, 28.93673338900004 ], [ -81.964907171999982, 28.936775390000037 ], [ -81.964883279999981, 28.936818497000047 ], [ -81.96485058899998, 28.936872656000048 ], [ -81.964831722999975, 28.936917975000028 ], [ -81.964817885999935, 28.93695998000004 ], [ -81.96480278699994, 28.937015248000023 ], [ -81.964788947999978, 28.937063885000043 ], [ -81.964782649999961, 28.937105890000055 ], [ -81.964778859999967, 28.937164480000035 ], [ -81.964778845999945, 28.93720759100006 ], [ -81.964785104999976, 28.937276132000079 ], [ -81.96479637799996, 28.93738447000004 ], [ -81.964828983999951, 28.937587885000028 ], [ -81.964909198999976, 28.938220229000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963517722999939, 28.933827230000077 ], [ -81.963543440999956, 28.933849791000057 ], [ -81.963584613999956, 28.933884708000051 ], [ -81.963626765999948, 28.933913573000041 ], [ -81.963677486999984, 28.933947058000058 ], [ -81.963726399999985, 28.933974168000077 ], [ -81.963769876999947, 28.933998089000056 ], [ -81.963818789999948, 28.93402838600008 ], [ -81.963880381999957, 28.934063470000069 ], [ -81.963949222999986, 28.934101743000042 ], [ -81.964014438999982, 28.934135233000063 ], [ -81.964291006999986, 28.934284605000073 ], [ -81.964419026999963, 28.934352646000036 ], [ -81.964520470999958, 28.934420681000063 ], [ -81.964578438, 28.934463201000028 ], [ -81.96463640199994, 28.934514223000065 ], [ -81.964691948999985, 28.934569493000026 ], [ -81.964730587999952, 28.934612008000045 ], [ -81.964771233999954, 28.934665644000063 ], [ -81.964817516999972, 28.934743797000067 ], [ -81.964853736999942, 28.934799062000025 ], [ -81.964892373999987, 28.934850078000068 ], [ -81.964928596999982, 28.934894717000077 ], [ -81.964974482999935, 28.934943610000062 ], [ -81.965015540999957, 28.934981874000073 ], [ -81.965059014999952, 28.935015890000045 ], [ -81.965102490999982, 28.935049904000039 ], [ -81.965148382999985, 28.935081796000077 ], [ -81.965191857999969, 28.935111560000053 ], [ -81.965235336999967, 28.935137075000057 ], [ -81.965290892999974, 28.935162591000051 ], [ -81.965353696999955, 28.935194486000057 ], [ -81.965423746999988, 28.935226383000042 ], [ -81.965484131999972, 28.935268904000054 ], [ -81.965542099999936, 28.93531142300003 ], [ -81.965587985999946, 28.935358190000045 ], [ -81.965629041999989, 28.93540495600007 ], [ -81.965665263999938, 28.93545384500004 ], [ -81.965673912999989, 28.935468437000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965673912999989, 28.935468437000054 ], [ -81.965694239999948, 28.935502734000067 ], [ -81.965725624999948, 28.935566499000061 ], [ -81.965750779999951, 28.935625926000057 ], [ -81.965751326999964, 28.935628338000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965673912999989, 28.935468437000054 ], [ -81.965818420999938, 28.935417631000064 ], [ -81.965878421999946, 28.935402761000034 ], [ -81.965904574999968, 28.935401414000069 ], [ -81.965927648, 28.935408186000075 ], [ -81.965946490999954, 28.935417833000031 ], [ -81.965964559999975, 28.935437968000031 ], [ -81.965975321999963, 28.935458269000037 ], [ -81.965979928999957, 28.93548398300004 ], [ -81.965978381999946, 28.935508341000059 ], [ -81.965959913999939, 28.935534049000069 ], [ -81.965918368999951, 28.935555691000047 ], [ -81.965846056999965, 28.935584092000056 ], [ -81.965751326999964, 28.935628338000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962131122999949, 28.932078785000044 ], [ -81.962131998999951, 28.932086513000058 ], [ -81.962139224999987, 28.93214602200004 ], [ -81.962144031999969, 28.932209780000051 ], [ -81.96214884799997, 28.932254412000077 ], [ -81.962153668999974, 28.932286293000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961653057999968, 28.931540898000037 ], [ -81.961762547999967, 28.93161460400006 ], [ -81.961926778999953, 28.931740041000069 ], [ -81.96198474199997, 28.931784687000061 ], [ -81.962030628999969, 28.931825080000067 ], [ -81.962063931999978, 28.931860743000072 ], [ -81.962083095999958, 28.931898506000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962083095999958, 28.931898506000039 ], [ -81.962085718999958, 28.931903673000079 ], [ -81.962105298999973, 28.931948866000027 ], [ -81.96211683699994, 28.931978573000038 ], [ -81.962122014999977, 28.93201145300003 ], [ -81.96212718299995, 28.932044007000059 ], [ -81.962131122999949, 28.932078785000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962083095999958, 28.931898506000039 ], [ -81.962113754999962, 28.931891048000068 ], [ -81.962151130999985, 28.931882534000067 ], [ -81.962198195999974, 28.931881329000078 ], [ -81.962230032999969, 28.931883774000028 ], [ -81.962252174999946, 28.931897175000074 ], [ -81.962267395999959, 28.931915597000057 ], [ -81.962278806999961, 28.931939346000036 ], [ -81.962283987999967, 28.93196537700004 ], [ -81.962276709999969, 28.931994144000043 ], [ -81.962256976999981, 28.932016056000066 ], [ -81.962227211999959, 28.932031119000044 ], [ -81.962131122999949, 28.932078785000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984411642999987, 28.671715053000071 ], [ -81.98441816199994, 28.671304959000054 ], [ -81.984418288999962, 28.670447748000072 ], [ -81.984415179999985, 28.669636101000037 ], [ -81.984408812999959, 28.669015263000063 ], [ -81.98439278099994, 28.668249182000068 ], [ -81.98443935499995, 28.668084323000073 ], [ -81.984456381999962, 28.668072812000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984456381999962, 28.668072812000048 ], [ -81.98449162299994, 28.668048989000056 ], [ -81.98452058099997, 28.667965356000025 ], [ -81.984531608999987, 28.66786176100004 ], [ -81.984540809999942, 28.667297437000059 ], [ -81.984544724999978, 28.666990024000029 ], [ -81.984540895999942, 28.666711912000039 ], [ -81.984543518999942, 28.666431680000073 ], [ -81.984546143999978, 28.666144616000054 ], [ -81.984545595999975, 28.665489033000028 ], [ -81.984532755999965, 28.664973565000025 ], [ -81.984515373999955, 28.664606755000079 ], [ -81.984516685999949, 28.664469488000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.085249614999952, 28.690194446000078 ], [ -82.085136985999952, 28.690147035000052 ], [ -82.084559342999967, 28.690143080000041 ], [ -82.083971924999958, 28.690156396000077 ], [ -82.083629276999943, 28.690182507000031 ], [ -82.083595721999984, 28.690117766000071 ], [ -82.083588248999945, 28.689817271000038 ], [ -82.083598814999959, 28.689564062000045 ], [ -82.083638098999984, 28.689314001000071 ], [ -82.08359128799998, 28.68912412800006 ], [ -82.083605352999939, 28.688756975000047 ], [ -82.083623261999946, 28.688709489000075 ], [ -82.083648327999981, 28.68863351300007 ], [ -82.083655419999957, 28.688525897000034 ], [ -82.083667739999953, 28.688370851000059 ], [ -82.083676638999975, 28.688127090000023 ], [ -82.083654921999937, 28.687899221000066 ], [ -82.083652839999957, 28.687538410000059 ], [ -82.083627491999948, 28.687256737000041 ], [ -82.083605862999946, 28.687139645000059 ], [ -82.083620146999976, 28.687047850000056 ], [ -82.08367386499998, 28.686895896000067 ], [ -82.083688148999954, 28.686804101000064 ], [ -82.083645001999969, 28.686709176000079 ], [ -82.083612670999969, 28.686674381000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189857855999946, 28.645210087000066 ], [ -82.189895023999952, 28.645183533000079 ], [ -82.189951282999971, 28.645170282000038 ], [ -82.190399247999949, 28.645169654000028 ], [ -82.190686488999972, 28.645214847000034 ], [ -82.190766874999952, 28.645204600000056 ], [ -82.190807020999955, 28.645174145000055 ], [ -82.190829006999934, 28.645142331000045 ], [ -82.190828941999939, 28.645106776000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.186638622999965, 28.644258368000067 ], [ -82.187027394999973, 28.644200953000052 ], [ -82.187482634999981, 28.644131002000051 ], [ -82.188423345999979, 28.643996387000072 ], [ -82.188955132, 28.643917438000074 ], [ -82.189396272999943, 28.643851055000027 ], [ -82.190576676999967, 28.64367698500007 ], [ -82.190807432999975, 28.643643700000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.190807432999975, 28.643643700000041 ], [ -82.191132630999959, 28.64359266200006 ], [ -82.191575781999973, 28.643526269000063 ], [ -82.19257891999996, 28.643379094000068 ], [ -82.192967685999974, 28.643321663000052 ], [ -82.193352427999969, 28.643267791000028 ], [ -82.193733128999952, 28.643208590000029 ], [ -82.194197163999945, 28.643133827000042 ], [ -82.194495269999948, 28.643081853000069 ], [ -82.194785304999982, 28.643024557000047 ], [ -82.194988738999939, 28.642988715000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.190828941999939, 28.645106776000034 ], [ -82.190809876999936, 28.644964582000057 ], [ -82.190806481999971, 28.644573481000066 ], [ -82.190807432999975, 28.643643700000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99338942299994, 28.852293028000076 ], [ -81.993532970999979, 28.852111467000043 ], [ -81.993595298999935, 28.852012042000069 ], [ -81.993609375999938, 28.851988328000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992975452999985, 28.851761813000053 ], [ -81.992999214999941, 28.851761937000049 ], [ -81.993041802999983, 28.851766166000061 ], [ -81.993066547999945, 28.851769506000039 ], [ -81.993103949999977, 28.851776275000077 ], [ -81.993138337999937, 28.851784386000077 ], [ -81.993170761999977, 28.851793771000075 ], [ -81.993213529999935, 28.85180888900004 ], [ -81.99332211899997, 28.851856577000035 ], [ -81.993609374999949, 28.85198833000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992975452999985, 28.851761813000053 ], [ -81.992976484999986, 28.851730903000032 ], [ -81.992977960999951, 28.851715442000057 ], [ -81.99297996699994, 28.85170250300007 ], [ -81.992983546999938, 28.851686104000066 ], [ -81.99298823099997, 28.851669986000047 ], [ -81.992996171999948, 28.851648956000076 ], [ -81.993007402999979, 28.851626005000071 ], [ -81.993081167999947, 28.85150025400003 ], [ -81.993128918999957, 28.85142128800004 ], [ -81.993149291999941, 28.851390307000031 ], [ -81.993169820999981, 28.851362089000077 ], [ -81.993188953999947, 28.851336845000048 ], [ -81.993204798999955, 28.851316586000053 ], [ -81.993225518999964, 28.851292169000033 ], [ -81.993248806999986, 28.851265838000074 ], [ -81.993272095999941, 28.851240956000026 ], [ -81.993296214999987, 28.851216568000041 ], [ -81.993312167999989, 28.851201149000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991972792999945, 28.851936070000079 ], [ -81.992283010999984, 28.851817243000028 ], [ -81.992331972999978, 28.851800571000069 ], [ -81.992381137999985, 28.851786332000074 ], [ -81.99243181099996, 28.851775254000074 ], [ -81.992468788999986, 28.851768640000046 ], [ -81.992510684999957, 28.851764133000074 ], [ -81.992572804999952, 28.851760421000051 ], [ -81.992591420999986, 28.851761342000032 ], [ -81.992667166, 28.851761346000046 ], [ -81.992865352999956, 28.851761979000059 ], [ -81.992975452999985, 28.851761813000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992126243999962, 28.852397918000065 ], [ -81.992102142999954, 28.852253911000048 ], [ -81.992094175999966, 28.852226254000072 ], [ -81.992084622999982, 28.852196049000042 ], [ -81.992074553999942, 28.852166940000075 ], [ -81.992066082999941, 28.852144184000053 ], [ -81.992056104999961, 28.85211905500006 ], [ -81.992046628999958, 28.85209661600004 ], [ -81.992025203999958, 28.852049147000059 ], [ -81.992007669999964, 28.852010679000045 ], [ -81.991994753999961, 28.851982339000074 ], [ -81.991982806999943, 28.851956698000038 ], [ -81.991972792999945, 28.851936070000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991972792999945, 28.851936070000079 ], [ -81.991947400999948, 28.851886817000036 ], [ -81.991923019999945, 28.851843058000043 ], [ -81.991882780999958, 28.851776963000077 ], [ -81.991840510999964, 28.851714179000055 ], [ -81.991784457999984, 28.851639249000073 ], [ -81.991737618999935, 28.851582559000065 ], [ -81.991693465999958, 28.851533245000041 ], [ -81.991639984999949, 28.851478120000024 ], [ -81.991593257999966, 28.851433572000076 ], [ -81.991586024999947, 28.851426952000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993056321999973, 28.851121768000041 ], [ -81.993055572999936, 28.850929636000046 ], [ -81.993062271999975, 28.850759482000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993056321999973, 28.851121768000041 ], [ -81.993060636999985, 28.851121685000066 ], [ -81.993087048999939, 28.851121155000044 ], [ -81.993109182999945, 28.85112156200006 ], [ -81.993127668999989, 28.851123169000061 ], [ -81.993142895999938, 28.851124859000038 ], [ -81.993168007999941, 28.851129202000038 ], [ -81.993187155999976, 28.851134310000077 ], [ -81.993205281999963, 28.851139945000057 ], [ -81.993230764999964, 28.851149668000062 ], [ -81.993248585999936, 28.851158378000036 ], [ -81.993264328999942, 28.851166994000039 ], [ -81.993269513999962, 28.851170091000029 ], [ -81.993275101999984, 28.851173579000033 ], [ -81.993283000999952, 28.851178797000046 ], [ -81.993288698999947, 28.851182780000045 ], [ -81.99329223999996, 28.851185354000052 ], [ -81.993296765999958, 28.851188759000024 ], [ -81.993304233999936, 28.851194674000055 ], [ -81.993309733999979, 28.851199162000057 ], [ -81.993311595999955, 28.851200682000069 ], [ -81.99331187699994, 28.851200911000035 ], [ -81.993312026999945, 28.851201034000042 ], [ -81.993312167999989, 28.851201149000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991586024999947, 28.851426952000054 ], [ -81.991612817999965, 28.851404774000059 ], [ -81.991632024999944, 28.851390429000048 ], [ -81.991654901999937, 28.851374944000042 ], [ -81.991669932999969, 28.851365628000053 ], [ -81.991686321999964, 28.851356181000028 ], [ -81.991705476999982, 28.851346020000051 ], [ -81.991722204999974, 28.851337870000066 ], [ -81.991741970999954, 28.851329057000044 ], [ -81.991761734999955, 28.851321083000073 ], [ -81.991832273999989, 28.851294064000058 ], [ -81.991863635999948, 28.851282052000045 ], [ -81.991913862, 28.851262812000073 ], [ -81.991960431999985, 28.851244974000053 ], [ -81.991995704999965, 28.85123146400008 ], [ -81.99202392899997, 28.851220991000048 ], [ -81.992049338999948, 28.851212065000027 ], [ -81.992069356999934, 28.851205363000076 ], [ -81.992107077999947, 28.851193501000068 ], [ -81.992133138999975, 28.851185883000028 ], [ -81.992163683999934, 28.851177539000048 ], [ -81.992182580999952, 28.851172689000066 ], [ -81.992205987999967, 28.851167006000026 ], [ -81.992230854999946, 28.851161357000024 ], [ -81.992255941999986, 28.851156059000061 ], [ -81.992280359999938, 28.851151284000025 ], [ -81.992297314999973, 28.851148189000071 ], [ -81.992321183999934, 28.851144134000037 ], [ -81.992344095999954, 28.851140570000041 ], [ -81.992363757999954, 28.851137767000068 ], [ -81.99238216699996, 28.851135532000058 ], [ -81.992414277999956, 28.851131636000048 ], [ -81.99242654699998, 28.85113037800005 ], [ -81.992459517999976, 28.851127441000074 ], [ -81.992489054999965, 28.851125357000058 ], [ -81.992520816999956, 28.851123689000076 ], [ -81.992553000999976, 28.851122603000078 ], [ -81.992583714999967, 28.851122132000057 ], [ -81.992610584999966, 28.851122172000032 ], [ -81.992757566999956, 28.851123808000068 ], [ -81.992799550999962, 28.85112392700006 ], [ -81.992821771999957, 28.85112398900003 ], [ -81.992845057999943, 28.85112397000006 ], [ -81.992854213999976, 28.851123951000034 ], [ -81.992874680999989, 28.851123882000024 ], [ -81.992894768999975, 28.851123782000059 ], [ -81.992913038999973, 28.851123662000077 ], [ -81.992931414999987, 28.851123513000061 ], [ -81.992949641999985, 28.851123338000036 ], [ -81.992963646999954, 28.851123185000063 ], [ -81.992981049999969, 28.851122973000031 ], [ -81.992995285999939, 28.851122781000072 ], [ -81.993010399999946, 28.851122557000053 ], [ -81.993023377999975, 28.851122353000051 ], [ -81.993036811999957, 28.851122124000028 ], [ -81.993047900999954, 28.851121925000029 ], [ -81.993056321999973, 28.851121768000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991586024999947, 28.851426952000054 ], [ -81.991558056999963, 28.851402003000032 ], [ -81.991476595999984, 28.851334762000079 ], [ -81.991424351999967, 28.851294798000026 ], [ -81.991374272999963, 28.851256620000072 ], [ -81.99131065399996, 28.851208123000049 ], [ -81.991238172999942, 28.851155325000036 ], [ -81.991196556999967, 28.851132046000032 ], [ -81.991147675999969, 28.851110976000029 ], [ -81.99105988599996, 28.851082759000064 ], [ -81.991045412999938, 28.85107821500003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991045412999938, 28.85107821500003 ], [ -81.991046736999976, 28.851074948000075 ], [ -81.991049852999936, 28.851067251000075 ], [ -81.991054470999984, 28.851055851000069 ], [ -81.991060503999961, 28.851040959000045 ], [ -81.991067207999947, 28.851024585000062 ], [ -81.991074443999935, 28.851008644000046 ], [ -81.991096078999988, 28.850966959000061 ], [ -81.991123197999968, 28.850915352000072 ], [ -81.991148105999969, 28.85086794800003 ], [ -81.991172228999972, 28.85082204400004 ], [ -81.991192350999938, 28.850783751000051 ], [ -81.991213717999983, 28.850743089000048 ], [ -81.991232516999958, 28.850707311000065 ], [ -81.991254539999943, 28.850665402000061 ], [ -81.991274471999986, 28.850627469000074 ], [ -81.991305165999961, 28.850569058000076 ], [ -81.991325675999974, 28.850530027000048 ], [ -81.991356775999975, 28.850470728000062 ], [ -81.991396526999949, 28.850391714000068 ], [ -81.99144141499994, 28.850295325000047 ], [ -81.99147938599998, 28.85020938200006 ], [ -81.991485113999943, 28.850195507000024 ], [ -81.991490863999957, 28.850183564000076 ], [ -81.991502154999978, 28.850164093000046 ], [ -81.991511763999938, 28.850150289000055 ], [ -81.991526330999989, 28.850132606000045 ], [ -81.991538089999949, 28.850120434000075 ], [ -81.991554452999935, 28.850105851000023 ], [ -81.991569206999941, 28.850094587000058 ], [ -81.991583977999937, 28.850084781000078 ], [ -81.991598919999944, 28.850076151000053 ], [ -81.991616915999941, 28.85006726000006 ], [ -81.991637429999969, 28.850058899000032 ], [ -81.991662392999956, 28.850050997000039 ], [ -81.991678195999953, 28.850047177000079 ], [ -81.991689618999942, 28.850044954000055 ], [ -81.991708716999938, 28.850042213000052 ], [ -81.991736829, 28.850040327000045 ], [ -81.991772277999985, 28.850041529000066 ], [ -81.99180482099996, 28.850044645000025 ], [ -81.991953265999939, 28.850057639000056 ], [ -81.992091653999978, 28.850067901000045 ], [ -81.99227487099995, 28.850078685000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992244994999965, 28.850538415000074 ], [ -81.99225402899998, 28.850397346000079 ], [ -81.99226129799996, 28.850286229000062 ], [ -81.99226968399995, 28.850157982000042 ], [ -81.99227487099995, 28.850078685000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99227487099995, 28.850078685000028 ], [ -81.992281963999972, 28.850079103000041 ], [ -81.99237395199998, 28.850082878000023 ], [ -81.992509955999935, 28.850085429000046 ], [ -81.992590475999975, 28.850085238000077 ], [ -81.992722769999943, 28.850082177000047 ], [ -81.992792548999944, 28.850079185000027 ], [ -81.992883804999963, 28.850073832000078 ], [ -81.992986772999984, 28.850065822000033 ], [ -81.993121447999954, 28.850052176000077 ], [ -81.993224338999937, 28.850039307000031 ], [ -81.993349897999963, 28.85002079700007 ], [ -81.993370317999961, 28.850018498000054 ], [ -81.993396807999943, 28.85001800200007 ], [ -81.993420624999942, 28.850019260000067 ], [ -81.993453613999975, 28.85002369700004 ], [ -81.993482729999982, 28.850031345000048 ], [ -81.993503383999951, 28.850038441000038 ], [ -81.993525371999965, 28.850047935000077 ], [ -81.993546221999964, 28.850059037000051 ], [ -81.993572781999944, 28.850075805000074 ], [ -81.993592364999984, 28.850092982000035 ], [ -81.993610117999935, 28.850110882000024 ], [ -81.993625787999974, 28.850130174000071 ], [ -81.993636748999961, 28.850146511000048 ], [ -81.99364634799997, 28.850163764000058 ], [ -81.993656562999945, 28.850187318000053 ], [ -81.993689426999936, 28.850276652000048 ], [ -81.993773417999989, 28.850505540000029 ], [ -81.993815156999972, 28.85061842600004 ], [ -81.993891825999981, 28.850826829000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993312167999989, 28.851201149000076 ], [ -81.993326241999966, 28.85118798600007 ], [ -81.993370564999964, 28.851148490000071 ], [ -81.99343946099998, 28.851094670000066 ], [ -81.993494866999981, 28.851054043000033 ], [ -81.993578248999938, 28.850997942000049 ], [ -81.993628642999965, 28.850966307000078 ], [ -81.993692610999972, 28.850928580000073 ], [ -81.993749847999936, 28.850896994000038 ], [ -81.993802417999973, 28.850869724000063 ], [ -81.993891825999981, 28.850826829000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993891815999973, 28.850826835000078 ], [ -81.99394984099996, 28.850801290000049 ], [ -81.994039631999954, 28.850765103000072 ], [ -81.994154504999983, 28.850724409000065 ], [ -81.994257669999968, 28.850692934000051 ], [ -81.994353897999986, 28.850667694000037 ], [ -81.994490261999943, 28.850638443000037 ], [ -81.994565178999949, 28.850626547000047 ], [ -81.994606385999987, 28.850620004000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994606385999987, 28.850620004000064 ], [ -81.994598092, 28.850572878000037 ], [ -81.994589490999942, 28.85051962700004 ], [ -81.994589142999985, 28.850483186000076 ], [ -81.994598122999946, 28.850418033000039 ], [ -81.994644702999949, 28.850109993000046 ], [ -81.994694113999969, 28.849783233000039 ], [ -81.994714930999976, 28.849645567000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99416169899996, 28.849551684000062 ], [ -81.994388013999981, 28.849598833000073 ], [ -81.994616029999975, 28.849633877000031 ], [ -81.994714926999961, 28.849645591000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994714930999976, 28.849645567000039 ], [ -81.994720868999934, 28.849606294000068 ], [ -81.994735316999936, 28.84951075400005 ], [ -81.994742972999973, 28.849460110000052 ], [ -81.994746570999951, 28.849438970000051 ], [ -81.99475040599998, 28.849423713000078 ], [ -81.994755683999983, 28.849407772000063 ], [ -81.994761418999985, 28.849393844000076 ], [ -81.994773238999983, 28.849371099000052 ], [ -81.994781294999939, 28.849358419000055 ], [ -81.994790379999984, 28.849345938000056 ], [ -81.994801495, 28.84933262800007 ], [ -81.994812895999985, 28.849320533000025 ], [ -81.994828088999952, 28.849306925000064 ], [ -81.994847046999951, 28.849292411000079 ], [ -81.994860471999971, 28.84928360400005 ], [ -81.994876635999958, 28.849274369000057 ], [ -81.994897216999959, 28.849264499000071 ], [ -81.994948442999942, 28.849243698000066 ], [ -81.995064499999955, 28.849196782000035 ], [ -81.995123737999961, 28.849172894000048 ], [ -81.995181224999953, 28.849150579000025 ], [ -81.995264258999953, 28.849120278000044 ], [ -81.995296120999967, 28.849109580000061 ], [ -81.995321530999945, 28.849102548000076 ], [ -81.995345464999957, 28.849097190000066 ], [ -81.995367453999961, 28.849093306000043 ], [ -81.995392308999953, 28.84909007300007 ], [ -81.995412598999962, 28.84908832900004 ], [ -81.995435923999935, 28.849087300000065 ], [ -81.995478072999958, 28.849087894000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995424054999944, 28.848615078000023 ], [ -81.995430845999977, 28.848613318000048 ], [ -81.995442736999962, 28.848610265000048 ], [ -81.995452729999954, 28.848607727000058 ], [ -81.995463253999958, 28.848605082000063 ], [ -81.995475580999937, 28.848602019000054 ], [ -81.995484636999947, 28.848599794000052 ], [ -81.995496881999941, 28.848596817000043 ], [ -81.995507578999934, 28.84859424900003 ], [ -81.995520263999936, 28.848591239000029 ], [ -81.995529111999986, 28.848589163000042 ], [ -81.995538211999985, 28.848587049000059 ], [ -81.995548175999943, 28.848584758000072 ], [ -81.995558379999977, 28.848582437000061 ], [ -81.995566482999948, 28.848580612000035 ], [ -81.995575415999951, 28.848578618000033 ], [ -81.995584409999935, 28.84857663400004 ], [ -81.995598529999938, 28.84857355500003 ], [ -81.995611289999943, 28.848570816000063 ], [ -81.995625611999969, 28.848567788000025 ], [ -81.995652707999966, 28.848562199000071 ], [ -81.995695111999964, 28.848553810000055 ], [ -81.995737321999968, 28.848545892000061 ], [ -81.995782369999972, 28.84853791300003 ], [ -81.995825374999981, 28.84853074800003 ], [ -81.995868898999959, 28.848523942000043 ], [ -81.995918353999969, 28.848516750000044 ], [ -81.995957903999965, 28.848511411000061 ], [ -81.996001134999972, 28.848505991000025 ], [ -81.996045425999966, 28.848500889000036 ], [ -81.996096675, 28.848495549000063 ], [ -81.996120747999953, 28.848493250000047 ], [ -81.996148474999984, 28.848490760000061 ], [ -81.996196443999963, 28.848486543000035 ], [ -81.99623937399997, 28.848482769000043 ], [ -81.99628174999998, 28.848479045000033 ], [ -81.996323651999944, 28.848475363000034 ], [ -81.996365323999953, 28.848471699000072 ], [ -81.996418628999947, 28.84846701400005 ], [ -81.996464299999957, 28.848462999000049 ], [ -81.996524572999988, 28.848457701000029 ], [ -81.996735359999946, 28.848439172000042 ], [ -81.996961390999957, 28.84841930400006 ], [ -81.996997900999986, 28.848416073000067 ], [ -81.997039075999965, 28.848412127000074 ], [ -81.997076204999985, 28.848408234000033 ], [ -81.997117317999937, 28.848403554000072 ], [ -81.997158224999964, 28.84839850700007 ], [ -81.997226495999939, 28.848389217000033 ], [ -81.997271360999946, 28.848382517000061 ], [ -81.997352446999969, 28.848369201000025 ], [ -81.997395243999961, 28.848361541000031 ], [ -81.997435740999947, 28.84835388700003 ], [ -81.997483452999973, 28.848344359000066 ], [ -81.997521659999961, 28.848336329000063 ], [ -81.997561157999939, 28.848327651000034 ], [ -81.997611749999976, 28.848315969000055 ], [ -81.997656355999936, 28.848305139000047 ], [ -81.997694670999977, 28.848295433000033 ], [ -81.997724176999952, 28.848287704000029 ], [ -81.997778268, 28.848272953000048 ], [ -81.997812397999951, 28.848263255000063 ], [ -81.997864875999937, 28.848247743000059 ], [ -81.997903583999971, 28.848235832000057 ], [ -81.997949521999942, 28.848221256000045 ], [ -81.998022292999963, 28.84819807100007 ], [ -81.998146234999979, 28.848158582000053 ], [ -81.998146302999942, 28.848158560000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997019444999978, 28.843846707000068 ], [ -81.997004592999986, 28.84382157400006 ], [ -81.996989395999947, 28.843794657000046 ], [ -81.996962310999947, 28.843743192000034 ], [ -81.996947226999964, 28.843712238000023 ], [ -81.996926376999966, 28.843666139000049 ], [ -81.996904249999943, 28.843611936000059 ], [ -81.996884610999984, 28.843557743000076 ], [ -81.996867756999961, 28.843504848000066 ], [ -81.99685126199995, 28.84344459700003 ], [ -81.996836827999971, 28.843380710000076 ], [ -81.996823877999987, 28.843306236000046 ], [ -81.996818560999941, 28.843265783000049 ], [ -81.996814117999975, 28.843221627000048 ], [ -81.996807943999954, 28.843103726000038 ], [ -81.996805595999945, 28.843007037000064 ], [ -81.996805501999972, 28.84288456400003 ], [ -81.996809819999953, 28.842733513000042 ], [ -81.996828444999949, 28.842476624000028 ], [ -81.996842395999977, 28.842353850000052 ], [ -81.996861659999979, 28.842218088000038 ], [ -81.99686201999998, 28.842215926000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99686201999998, 28.842215926000051 ], [ -81.996862700999941, 28.842211464000059 ], [ -81.996863770999937, 28.842204731000038 ], [ -81.996864906999974, 28.842197703000068 ], [ -81.996865596999953, 28.842193432000045 ], [ -81.99686666499997, 28.842186809000054 ], [ -81.996868963999987, 28.842172894000043 ], [ -81.996871218999956, 28.842159560000027 ], [ -81.996874102999982, 28.842142754000065 ], [ -81.996876165999936, 28.842130944000075 ], [ -81.996878440999978, 28.842118072000062 ], [ -81.996880173999955, 28.842108498000073 ], [ -81.996883458999946, 28.842090566000024 ], [ -81.996892024999966, 28.842045512000027 ], [ -81.996897607999983, 28.842017369000075 ], [ -81.996900921999952, 28.842001069000048 ], [ -81.996904419999964, 28.841984171000036 ], [ -81.996906602999957, 28.841973793000079 ], [ -81.996908723999979, 28.84196380800006 ], [ -81.996910979999939, 28.841953302000036 ], [ -81.996912974999987, 28.841944106000028 ], [ -81.996916337999949, 28.841928807000045 ], [ -81.996919525999942, 28.841914520000046 ], [ -81.996921829999962, 28.841904315000079 ], [ -81.99692495499994, 28.841890645000035 ], [ -81.996929282999986, 28.841872021000029 ], [ -81.996933220999949, 28.841855353000028 ], [ -81.996938048999937, 28.841835284000069 ], [ -81.996942192999938, 28.841818354000054 ], [ -81.996945136999955, 28.841806485000063 ], [ -81.996949884999935, 28.841787618000069 ], [ -81.996954820999974, 28.84176833500004 ], [ -81.996961637999959, 28.84174224800006 ], [ -81.996965901999943, 28.841726227000038 ], [ -81.996970798999939, 28.841708096000048 ], [ -81.996976662999941, 28.841686755000069 ], [ -81.996982245999959, 28.841666789000044 ], [ -81.996988831999943, 28.841643649000048 ], [ -81.996996412999977, 28.841617548000045 ], [ -81.997003021999944, 28.841595234000067 ], [ -81.997009178999974, 28.841574793000063 ], [ -81.99701732699998, 28.841548234000072 ], [ -81.997025912999959, 28.841520823000053 ], [ -81.997034349999979, 28.841494437000051 ], [ -81.99704325, 28.841467153000053 ], [ -81.997051549999981, 28.841442194000024 ], [ -81.997059597999964, 28.841418410000074 ], [ -81.997067557999969, 28.841395282000065 ], [ -81.99707624399997, 28.841370471000062 ], [ -81.997085390999985, 28.841344792000029 ], [ -81.997094213999958, 28.841320521000057 ], [ -81.997103691999939, 28.841295440000067 ], [ -81.997113568999964, 28.84127038400004 ], [ -81.997124493999934, 28.841243814000052 ], [ -81.997134290999952, 28.841220908000025 ], [ -81.997147048999977, 28.841192247000038 ], [ -81.99716118799995, 28.841161872000043 ], [ -81.997172191999937, 28.841139138000074 ], [ -81.997181540999975, 28.841120397000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018250823999949, 28.855199026000037 ], [ -82.018582489999972, 28.85569728300004 ], [ -82.018612528999938, 28.855735449000065 ], [ -82.018647445999989, 28.855772543000057 ], [ -82.018676076999952, 28.85579860200005 ], [ -82.018711911999958, 28.855826867000076 ], [ -82.018750480999984, 28.85585207400004 ], [ -82.018779214999938, 28.855869666000046 ], [ -82.018813536999971, 28.855887259000042 ], [ -82.018869668999969, 28.855910868000024 ], [ -82.018928895999977, 28.855929634000063 ], [ -82.018983709999986, 28.855942762000041 ], [ -82.019061937999936, 28.855951739000034 ], [ -82.019138994999935, 28.855953424000063 ], [ -82.019723318999979, 28.855953430000056 ], [ -82.019758865999961, 28.855949974000055 ], [ -82.01980077199994, 28.85594046600005 ], [ -82.019831034999982, 28.855929547000073 ], [ -82.019859421999968, 28.855915693000043 ], [ -82.01988696799998, 28.855898166000031 ], [ -82.019917006999947, 28.855872947000023 ], [ -82.019935330999942, 28.855853085000035 ], [ -82.019951654999943, 28.855830952000076 ], [ -82.019968115999973, 28.855804406000061 ], [ -82.019977691999941, 28.855777037000053 ], [ -82.019985468999948, 28.855745995000063 ], [ -82.019987981999975, 28.855726234000031 ], [ -82.019988829999988, 28.855594503000077 ], [ -82.019988972999954, 28.85548721400005 ], [ -82.019989241999951, 28.855284271000073 ], [ -82.019989677999945, 28.854957235000029 ], [ -82.019989881999948, 28.85480405900006 ], [ -82.019988386999955, 28.854764680000073 ], [ -82.019983159999981, 28.854731567000044 ], [ -82.019966164999971, 28.854691230000071 ], [ -82.019952182999987, 28.854664458000059 ], [ -82.019928028999971, 28.854636244000062 ], [ -82.019886515999985, 28.854599734000033 ], [ -82.019760751999968, 28.85451034700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019234968999967, 28.855314029000056 ], [ -82.01915646599997, 28.855109007000067 ], [ -82.019085459999985, 28.854888645000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019059955999978, 28.849275583000065 ], [ -82.019592345999968, 28.849490852000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019592345999968, 28.849490852000031 ], [ -82.01978476499994, 28.849568285000032 ], [ -82.019987919999949, 28.849650058000066 ], [ -82.020022780999966, 28.849664089000044 ], [ -82.020051370999965, 28.849677880000058 ], [ -82.020068986999945, 28.849691072000041 ], [ -82.020086778999939, 28.849710812000069 ], [ -82.020103078999966, 28.849744090000058 ], [ -82.02010519199996, 28.849752645000024 ], [ -82.020105943999965, 28.849756786000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02010594099994, 28.849756771000045 ], [ -82.020103818999985, 28.849610117000054 ], [ -82.020108119999975, 28.849349134000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019356822999953, 28.85154043700004 ], [ -82.019365723999954, 28.851513160000025 ], [ -82.019374650999964, 28.851478253000039 ], [ -82.019380153999975, 28.851448521000066 ], [ -82.01938334, 28.851423388000057 ], [ -82.019385324999973, 28.851395677000028 ], [ -82.019386058999942, 28.85135266900005 ], [ -82.019386750999956, 28.851292970000031 ], [ -82.019389003999947, 28.851098620000073 ], [ -82.019390365999982, 28.850981226000044 ], [ -82.019391197999937, 28.85090947100008 ], [ -82.019393242999968, 28.85073299000004 ], [ -82.019396889999939, 28.850418440000055 ], [ -82.019398260999935, 28.850300248000053 ], [ -82.019399944999975, 28.850154925000027 ], [ -82.019401505999951, 28.850020263000033 ], [ -82.019402975999981, 28.849893425000062 ], [ -82.019405577999976, 28.849628124000049 ], [ -82.019406363999963, 28.849601180000036 ], [ -82.019407107999939, 28.849585971000067 ], [ -82.019408872999975, 28.849575534000053 ], [ -82.019412344999978, 28.84956247100007 ], [ -82.019418236999968, 28.849549724000042 ], [ -82.019424053999956, 28.849539726000046 ], [ -82.019436545999952, 28.849523798000064 ], [ -82.019449020999957, 28.849512144000073 ], [ -82.019460672999969, 28.849503686000048 ], [ -82.019474301999935, 28.849495968000042 ], [ -82.019492341999978, 28.849488578000035 ], [ -82.01950600899994, 28.849484770000061 ], [ -82.019513720999953, 28.849483233000058 ], [ -82.019518668999979, 28.84948246700003 ], [ -82.019524169999954, 28.849481814000058 ], [ -82.019530213999985, 28.849481332000039 ], [ -82.019537326999966, 28.849481076000075 ], [ -82.019544073999953, 28.849481145000027 ], [ -82.019549884999947, 28.849481447000073 ], [ -82.019555493999974, 28.849481952000076 ], [ -82.019561948999979, 28.849482798000054 ], [ -82.019567244999962, 28.849483709000026 ], [ -82.019572977999985, 28.84948491800003 ], [ -82.01958075999994, 28.849486949000038 ], [ -82.019584694999935, 28.849488153000038 ], [ -82.019592351999961, 28.849490853000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019220103999942, 28.851821724000047 ], [ -82.019245280999939, 28.851771429000053 ], [ -82.019273801999987, 28.851714452000067 ], [ -82.019325293999941, 28.851611589000072 ], [ -82.019335754999986, 28.851590589000068 ], [ -82.019341620999967, 28.851578044000064 ], [ -82.019355029999986, 28.851545357000077 ], [ -82.019356822999953, 28.85154043700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019220103999942, 28.851821724000047 ], [ -82.01925902499994, 28.851836827000056 ], [ -82.019301122999934, 28.851853186000028 ], [ -82.019325730999981, 28.85186318600006 ], [ -82.01934810399996, 28.851872780000065 ], [ -82.019372716999953, 28.851883905000079 ], [ -82.019403761999968, 28.851898819000041 ], [ -82.019429832999947, 28.851912135000077 ], [ -82.019455899999969, 28.85192620600003 ], [ -82.019486919999963, 28.851943984000059 ], [ -82.01951735199998, 28.851962578000041 ], [ -82.019547154999941, 28.85198196500005 ], [ -82.019562444999963, 28.851992390000078 ], [ -82.019579073999978, 28.852004110000053 ], [ -82.019598986999938, 28.852018701000077 ], [ -82.019614801999978, 28.852030737000064 ], [ -82.019638670999939, 28.852049694000073 ], [ -82.019657275999975, 28.852065175000064 ], [ -82.019672023999988, 28.852077908000069 ], [ -82.019690467999965, 28.852094441000077 ], [ -82.019706209999981, 28.852109122000059 ], [ -82.019722934999947, 28.852125329000046 ], [ -82.019744533999983, 28.852147258000059 ], [ -82.019768822999936, 28.85217338800004 ], [ -82.019783815999972, 28.852190371000063 ], [ -82.019807388999936, 28.852218356000037 ], [ -82.019828079999968, 28.852244901000063 ], [ -82.01985248699998, 28.852278282000043 ], [ -82.019863258999976, 28.852294226000026 ], [ -82.019875032999948, 28.852311680000071 ], [ -82.019888493999986, 28.852332992000072 ], [ -82.019910165999988, 28.852369858000031 ], [ -82.019926506, 28.852400145000047 ], [ -82.019944873999975, 28.852437377000058 ], [ -82.019953678999968, 28.852456679000056 ], [ -82.019966715999942, 28.852487402000065 ], [ -82.019975685999952, 28.852510342000073 ], [ -82.01998489999994, 28.852535809000074 ], [ -82.019994090999944, 28.852563624000027 ], [ -82.020004633999974, 28.852599517000044 ], [ -82.02000899899997, 28.852616049000062 ], [ -82.020014095999954, 28.852637456000025 ], [ -82.020017629999984, 28.852652826000053 ], [ -82.020022130999962, 28.85267506200006 ], [ -82.020027929999969, 28.852708706000044 ], [ -82.02003177399996, 28.852736165000067 ], [ -82.020034383999985, 28.852759180000078 ], [ -82.020037632999959, 28.852799653000034 ], [ -82.020038719999945, 28.852822594000031 ], [ -82.020039320999956, 28.852863930000069 ], [ -82.020039237999981, 28.852926337000042 ], [ -82.020038608999982, 28.853399042000035 ], [ -82.020038291999981, 28.853637775000038 ], [ -82.020038561999968, 28.853715430000079 ], [ -82.020038048999936, 28.853820602000042 ], [ -82.020037355999989, 28.853855968000062 ], [ -82.020035070999938, 28.853895222000062 ], [ -82.020030951999956, 28.853936400000066 ], [ -82.020024263999971, 28.853982273000042 ], [ -82.020013712999969, 28.854035377000059 ], [ -82.02000172399994, 28.854082639000069 ], [ -82.019990354999948, 28.854120350000073 ], [ -82.01998016899995, 28.854150251000078 ], [ -82.019967735999955, 28.854183136000074 ], [ -82.019951092999975, 28.85422251600005 ], [ -82.019938649999972, 28.854249290000041 ], [ -82.019923780999989, 28.854278899000064 ], [ -82.019905101999939, 28.854313095000066 ], [ -82.019878299999959, 28.854357423000067 ], [ -82.019850201999986, 28.854399411000031 ], [ -82.019816743999968, 28.854444381000064 ], [ -82.019760751999968, 28.85451034700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019760751999968, 28.85451034700003 ], [ -82.019744152999976, 28.854528066000057 ], [ -82.019727976999945, 28.854544634000035 ], [ -82.019710851999946, 28.854561476000072 ], [ -82.019683517999965, 28.854586977000054 ], [ -82.01964849899997, 28.854617400000052 ], [ -82.019617393999965, 28.854642513000044 ], [ -82.019583274999945, 28.854668193000066 ], [ -82.019557277, 28.854686552000032 ], [ -82.019533831, 28.854702274000033 ], [ -82.019505470999945, 28.854720292000025 ], [ -82.019465585999967, 28.854743899000027 ], [ -82.019440028999952, 28.854758023000045 ], [ -82.019409712999959, 28.854773820000048 ], [ -82.01938185299997, 28.854787461000058 ], [ -82.019357132999971, 28.854798892000076 ], [ -82.01932110599995, 28.854814464000071 ], [ -82.019291500999941, 28.854826333000062 ], [ -82.019258424999975, 28.854838641000072 ], [ -82.01923927699994, 28.854845322000074 ], [ -82.019209944999943, 28.854854942000031 ], [ -82.019176294999966, 28.85486508200006 ], [ -82.019143584999938, 28.854874048000056 ], [ -82.019085459999985, 28.854888645000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019085459999985, 28.854888645000074 ], [ -82.019042286999934, 28.854899427000078 ], [ -82.01887736599997, 28.854940614000043 ], [ -82.018730350999988, 28.854977329000064 ], [ -82.018701738999937, 28.854985 ], [ -82.018662936999988, 28.854997125000068 ], [ -82.018629232999956, 28.855009348000067 ], [ -82.018588314999988, 28.855026445000078 ], [ -82.018538193999973, 28.855050958000049 ], [ -82.018250823999949, 28.855199026000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018250823999949, 28.855199026000037 ], [ -82.018217135999976, 28.855216626000072 ], [ -82.017969594999954, 28.85534417100007 ], [ -82.017900697999949, 28.855379670000048 ], [ -82.017882105999945, 28.855389489000061 ], [ -82.017862712999943, 28.855401505000032 ], [ -82.017847804999974, 28.855412353000077 ], [ -82.017830945999947, 28.855426678000072 ], [ -82.017812327999934, 28.855445763000034 ], [ -82.017796613999963, 28.855465611000056 ], [ -82.017785402999948, 28.855482907000066 ], [ -82.017776663999939, 28.855499450000025 ], [ -82.017771106999987, 28.855510982000055 ], [ -82.017766001999973, 28.855524417000026 ], [ -82.017759505999948, 28.855544760000043 ], [ -82.017756189999943, 28.855565216000059 ], [ -82.017754454999988, 28.85558534300003 ], [ -82.017750559999968, 28.85564529100003 ], [ -82.017744977999939, 28.855731191000075 ], [ -82.017752729999984, 28.855797523000035 ], [ -82.017768586999978, 28.855858070000068 ], [ -82.017803185999981, 28.855930150000063 ], [ -82.017871198999956, 28.856029444000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018057356999975, 28.848865363000073 ], [ -82.017898115999969, 28.848801300000048 ], [ -82.017729051999936, 28.848733246000052 ], [ -82.017588872999966, 28.848676818000058 ], [ -82.017262746999961, 28.848545541000078 ], [ -82.017085934999955, 28.848474366000062 ], [ -82.016971075999948, 28.848428083000044 ], [ -82.016946897999958, 28.84841661400003 ], [ -82.016921507999939, 28.848401200000069 ], [ -82.016905544999986, 28.848389495000049 ], [ -82.016890771999954, 28.848376916000063 ], [ -82.016878299999973, 28.848364683000057 ], [ -82.016863640999986, 28.84834786600004 ], [ -82.016850706999946, 28.848330023000074 ], [ -82.016839422999965, 28.848310982000044 ], [ -82.016829922999989, 28.848290769000073 ], [ -82.016822850999972, 28.848271011000065 ], [ -82.016818135999983, 28.848252867000042 ], [ -82.016814948999979, 28.848234051000077 ], [ -82.01681341799997, 28.848214698000049 ], [ -82.016813575999947, 28.848196378000068 ], [ -82.016815590999954, 28.848175990000072 ], [ -82.016818963999981, 28.848158204000072 ], [ -82.016824612999983, 28.848139067000034 ], [ -82.016831422999985, 28.848117563000073 ], [ -82.016840897999941, 28.848091128000078 ], [ -82.016849242999967, 28.848069580000072 ], [ -82.016858894999984, 28.848046317000069 ], [ -82.016869447999966, 28.848022577000052 ], [ -82.016883736999944, 28.847992766000061 ], [ -82.016904905, 28.847952574000033 ], [ -82.016941644999974, 28.847890654000025 ], [ -82.017014262999965, 28.847772304000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017014262999965, 28.847772304000046 ], [ -82.017161691999945, 28.847831918000054 ], [ -82.017320015999985, 28.847895736000055 ], [ -82.017827193999949, 28.848099898000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017827193999949, 28.848099898000044 ], [ -82.017896274999941, 28.848127704000035 ], [ -82.018001177999963, 28.848169931000029 ], [ -82.018082540999956, 28.848202682000078 ], [ -82.018156987999987, 28.848232651000046 ], [ -82.018234190999976, 28.848263727000074 ], [ -82.018292576999954, 28.848287231000029 ], [ -82.018357802999958, 28.848313485000062 ], [ -82.018419675999951, 28.848338392000073 ], [ -82.018468645999974, 28.848358102000077 ], [ -82.018541847999984, 28.848387569000067 ], [ -82.018606300999977, 28.848413513000025 ], [ -82.018644504999941, 28.848428891000026 ], [ -82.018705404999935, 28.848453406000033 ], [ -82.018767840999942, 28.848478538000052 ], [ -82.018822349999937, 28.848500479000052 ], [ -82.018870944999946, 28.848520040000039 ], [ -82.018924668999944, 28.848541667000063 ], [ -82.018951643999969, 28.848552523000023 ], [ -82.019067444999962, 28.848599137000065 ], [ -82.019158062999963, 28.848635613000056 ], [ -82.019225651999989, 28.848662819000026 ], [ -82.019292288999964, 28.848689642000068 ], [ -82.019379607999952, 28.848724790000063 ], [ -82.019446062999975, 28.848751556000025 ], [ -82.019519754999976, 28.848781203000044 ], [ -82.019598237999958, 28.848812794000025 ], [ -82.01966899699994, 28.848841275000041 ], [ -82.019708030999936, 28.848856987000033 ], [ -82.01977657599997, 28.848884578000025 ], [ -82.019817496999963, 28.848901049000062 ], [ -82.019850933999976, 28.848914509000053 ], [ -82.019896542999959, 28.848932866000041 ], [ -82.019925112999942, 28.848944367000058 ], [ -82.019932641999958, 28.84894736900003 ], [ -82.01993708699996, 28.848948978000067 ], [ -82.019943169999976, 28.848950916000035 ], [ -82.019950520999942, 28.848952924000059 ], [ -82.019955703999983, 28.84895401700004 ], [ -82.01996272599996, 28.848955296000042 ], [ -82.019967971999961, 28.848955959000079 ], [ -82.019972761999952, 28.848956437000027 ], [ -82.019976420999967, 28.848956698000052 ], [ -82.019981634999965, 28.848956915000031 ], [ -82.019987395999976, 28.848956946000044 ], [ -82.019992572999968, 28.848956785000041 ], [ -82.019998222999959, 28.848956405000024 ], [ -82.020004159999985, 28.848955776000025 ], [ -82.020008655999959, 28.848955139000054 ], [ -82.020014509999953, 28.848954097000046 ], [ -82.020021661999976, 28.848952492000024 ], [ -82.020026970999936, 28.848951056000033 ], [ -82.020031136999989, 28.84894977600004 ], [ -82.020035175999965, 28.84894840100003 ], [ -82.020039016999988, 28.848946969000053 ], [ -82.020043820999945, 28.848944995000068 ], [ -82.020048429999974, 28.848942904000069 ], [ -82.020052942999939, 28.848940655000035 ], [ -82.020056366999938, 28.848938808000071 ], [ -82.020060386999944, 28.848936474000027 ], [ -82.020064995999974, 28.848933561000024 ], [ -82.020069445, 28.848930490000043 ], [ -82.020073352999987, 28.84892755900006 ], [ -82.020077328999946, 28.848924327000077 ], [ -82.020080701999973, 28.848921367000059 ], [ -82.020084225999938, 28.848918034000064 ], [ -82.020087345999968, 28.848914852000064 ], [ -82.020090194999966, 28.848911730000054 ], [ -82.020092635999958, 28.848908873000028 ], [ -82.020095072999936, 28.848905824000042 ], [ -82.020097954999983, 28.848901932000047 ], [ -82.020100053999954, 28.848898864000034 ], [ -82.020102086999941, 28.848895674000062 ], [ -82.020104722999974, 28.848891150000043 ], [ -82.020108753999978, 28.848883084000079 ], [ -82.020111906999944, 28.848875272000043 ], [ -82.020114939999985, 28.848865303000025 ], [ -82.020116990999952, 28.848854938000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020108519999951, 28.849325897000028 ], [ -82.020116988999973, 28.84885494100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020116990999952, 28.848854938000045 ], [ -82.02011754199998, 28.848854089000042 ], [ -82.020117746999972, 28.848852507000061 ], [ -82.020118018999938, 28.848850016000029 ], [ -82.020118253999954, 28.848847189000026 ], [ -82.020118456999967, 28.848843033000037 ], [ -82.020118937999939, 28.848802876000036 ], [ -82.020119210999951, 28.848779293000064 ], [ -82.020119459999989, 28.848757783000053 ], [ -82.020119661999956, 28.848740365000026 ], [ -82.020120039999938, 28.848707706000027 ], [ -82.020120277, 28.84868728500004 ], [ -82.020120449999979, 28.848672377000071 ], [ -82.020120599999984, 28.848659439000073 ], [ -82.020120799999972, 28.848642124000037 ], [ -82.020120967999958, 28.848627662000069 ], [ -82.020121149999966, 28.848611939000079 ], [ -82.020121406999976, 28.848589766000032 ], [ -82.020121563999965, 28.848576197000057 ], [ -82.020121821999965, 28.848553898000034 ], [ -82.020122083, 28.84853135700007 ], [ -82.020122285999946, 28.848513882000077 ], [ -82.020122501999936, 28.848495193000076 ], [ -82.020122714999957, 28.848476811000069 ], [ -82.020122910999987, 28.848459908000052 ], [ -82.020123091999949, 28.848444255000061 ], [ -82.02012323799994, 28.848431650000066 ], [ -82.020123357999978, 28.848421382000026 ], [ -82.020123381999952, 28.848418311000046 ], [ -82.020123310999963, 28.848414838000053 ], [ -82.020123040999977, 28.848410304000026 ], [ -82.020122632999971, 28.848406270000055 ], [ -82.020123856999987, 28.848344828000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018114858999979, 28.847549550000053 ], [ -82.018273056999988, 28.84724688600005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018114858999979, 28.847549550000053 ], [ -82.018188984999938, 28.847571500000072 ], [ -82.018219496999961, 28.847578145000057 ], [ -82.018241868999951, 28.847586406000062 ], [ -82.018595291999986, 28.847728670000038 ], [ -82.018838392999953, 28.847826526000063 ], [ -82.019089207999968, 28.847927487000049 ], [ -82.019340415999977, 28.848028604000035 ], [ -82.019732420999958, 28.848186395000027 ], [ -82.019942237999942, 28.848270851000052 ], [ -82.020123856999987, 28.848344828000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017827193999949, 28.848099898000044 ], [ -82.018032061999975, 28.84770263300004 ], [ -82.018114858999979, 28.847549550000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017014262999965, 28.847772304000046 ], [ -82.017032596999968, 28.847742427000071 ], [ -82.017354909999938, 28.847196488000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012267455999961, 28.851560264000057 ], [ -82.012367375999986, 28.851489728000047 ], [ -82.012403825999968, 28.851458623000042 ], [ -82.012448768999946, 28.851411001000031 ], [ -82.012486908999961, 28.851358332000075 ], [ -82.012519175999955, 28.851297441000042 ], [ -82.01255486499997, 28.851197768000077 ], [ -82.012649137999972, 28.850911952000047 ], [ -82.012762408999947, 28.850572756000076 ], [ -82.012807716999987, 28.850433086000066 ], [ -82.012824621999982, 28.850364584000033 ], [ -82.012845506999952, 28.850270528000067 ], [ -82.012858925999979, 28.850193239000077 ], [ -82.012859270999968, 28.85019102800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000139151999974, 28.854460843000027 ], [ -82.000316475999966, 28.854334130000041 ], [ -82.000388791999967, 28.85427115300007 ], [ -82.000433099999952, 28.854215113000066 ], [ -82.000471888999982, 28.854151440000066 ], [ -82.000563593999971, 28.853939260000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000563593999971, 28.853939260000061 ], [ -82.000575520999973, 28.853945123000074 ], [ -82.000594823999961, 28.853953316000059 ], [ -82.000619247999964, 28.853961500000025 ], [ -82.000638090999985, 28.853966295000077 ], [ -82.000656656, 28.853969810000024 ], [ -82.000674981999964, 28.853972157000044 ], [ -82.000690025999972, 28.853973273000065 ], [ -82.000706870999977, 28.853973666000059 ], [ -82.000729027999967, 28.853973228000029 ], [ -82.000758209999958, 28.853969283000026 ], [ -82.000782138999966, 28.853964265000059 ], [ -82.000812307, 28.853955002000077 ], [ -82.000842472999977, 28.853942061000055 ], [ -82.000871078999978, 28.853925790000062 ], [ -82.000926423999942, 28.853889426000023 ], [ -82.000981571999944, 28.853849676000038 ], [ -82.001036561999967, 28.853806129000077 ], [ -82.001091190999944, 28.853758468000024 ], [ -82.001098874999968, 28.853750970000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000014828999952, 28.853178041000035 ], [ -82.000314709999941, 28.853295707000029 ], [ -82.000494905999972, 28.853365902000064 ], [ -82.000576572999989, 28.853405209000073 ], [ -82.00066372699996, 28.853449841000042 ], [ -82.000745785999982, 28.853496062000033 ], [ -82.000894928999969, 28.853592779000053 ], [ -82.000996447999967, 28.853666480000072 ], [ -82.001098874999968, 28.853750970000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001098874999968, 28.853750970000078 ], [ -82.001184290999959, 28.853667636000068 ], [ -82.001565493999976, 28.853288812000073 ], [ -82.001605581999968, 28.853250468000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000310672999944, 28.852438697000025 ], [ -82.000496025999951, 28.85250321500007 ], [ -82.000614673999962, 28.852556798000023 ], [ -82.000807270999985, 28.852661515000079 ], [ -82.000960948999989, 28.852755749000039 ], [ -82.001106442999969, 28.852861199000074 ], [ -82.001352130999976, 28.853052766000076 ], [ -82.001605581999968, 28.853250468000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001605581999968, 28.853250468000056 ], [ -82.001651368999944, 28.853206674000035 ], [ -82.001725089999979, 28.853145633000054 ], [ -82.001870099999962, 28.853038070000025 ], [ -82.001921527999968, 28.853001278000079 ], [ -82.001973791999944, 28.852970882000079 ], [ -82.002055989999974, 28.852935881000064 ], [ -82.002122231999977, 28.852917126000079 ], [ -82.00216336699998, 28.852908984000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00216336699998, 28.852908984000067 ], [ -82.002151784999967, 28.852856004000046 ], [ -82.002132159999974, 28.852790739000056 ], [ -82.002103603999956, 28.852714871000046 ], [ -82.002040870999963, 28.852610555000069 ], [ -82.002005957999984, 28.852562994000039 ], [ -82.001938131999964, 28.852487092000047 ], [ -82.001882909999949, 28.852436716000057 ], [ -82.001808981999943, 28.852382341000066 ], [ -82.001582352999947, 28.852229376000025 ], [ -82.001025983999966, 28.851843349000035 ], [ -82.000956503999987, 28.85179766300007 ], [ -82.000919383999985, 28.851765302000047 ], [ -82.00087560299994, 28.851709147000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00216336699998, 28.852908984000067 ], [ -82.002202076999936, 28.852904287000058 ], [ -82.002262247999965, 28.852901089000056 ], [ -82.002428379999969, 28.852904597000077 ], [ -82.002533805999974, 28.852908853000031 ], [ -82.002633762999949, 28.852923512000075 ], [ -82.002692440999965, 28.85293775100007 ], [ -82.002748389999965, 28.852955462000068 ], [ -82.002844212999946, 28.852984298000024 ], [ -82.002931273999934, 28.853002774000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002931273999934, 28.853002774000061 ], [ -82.002972346999968, 28.85285452100004 ], [ -82.002972343999943, 28.852734807000047 ], [ -82.00295723499994, 28.852648348000059 ], [ -82.002911905999952, 28.852541939000048 ], [ -82.002856458999986, 28.852438147000044 ], [ -82.002823565999961, 28.852379453000026 ], [ -82.002755479999962, 28.852283756000077 ], [ -82.002698011999939, 28.852210353000032 ], [ -82.00262483299997, 28.852129600000069 ], [ -82.002565840999978, 28.852068259000077 ], [ -82.002399353999976, 28.85192177700003 ], [ -82.001743055999953, 28.851358897000068 ], [ -82.001683402999959, 28.851307735000034 ], [ -82.001640566999981, 28.851270996000039 ], [ -82.001589061999937, 28.851154276000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002931273999934, 28.853002774000061 ], [ -82.002971170999956, 28.853011242000036 ], [ -82.00307952199995, 28.853024729000026 ], [ -82.003193546999967, 28.853029849000052 ], [ -82.003274523999949, 28.853027432000033 ], [ -82.003516261999948, 28.853020775000061 ], [ -82.003706615999988, 28.853014532000032 ], [ -82.003736067999967, 28.853013777000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003736067999967, 28.853013777000058 ], [ -82.00372979499997, 28.852860272000044 ], [ -82.003720595999937, 28.852742914000032 ], [ -82.003705967999963, 28.852653928000052 ], [ -82.003686080999955, 28.852570711000055 ], [ -82.003659773999971, 28.852482064000071 ], [ -82.003591790999963, 28.852321507000056 ], [ -82.003549976999977, 28.852235982000025 ], [ -82.003490343999943, 28.852128127000071 ], [ -82.003420792999975, 28.852017827000054 ], [ -82.003362354999979, 28.851934973000027 ], [ -82.003273762999981, 28.851822306000031 ], [ -82.00320973099997, 28.851749265000024 ], [ -82.00317653899998, 28.85171200800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008450171999982, 28.850134973000024 ], [ -82.008500150999964, 28.850136355000075 ], [ -82.008950846999937, 28.850150705000033 ], [ -82.009092968999937, 28.85015904100004 ], [ -82.009272949999968, 28.850178062000055 ], [ -82.009437248999973, 28.850199691000057 ], [ -82.009592146999978, 28.850224925000077 ], [ -82.009807832999968, 28.850265397000044 ], [ -82.009942286999944, 28.850288846000069 ], [ -82.010064157999977, 28.850306368000076 ], [ -82.010166098999946, 28.850316297000063 ], [ -82.010275745999934, 28.850323060000051 ], [ -82.010347856999942, 28.850323519000028 ], [ -82.010449836999953, 28.850321738000048 ], [ -82.010556487999963, 28.85031538100003 ], [ -82.010659514999986, 28.850304834000042 ], [ -82.010748646999957, 28.850292159000048 ], [ -82.010824376999949, 28.850278752000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010824355999944, 28.850278756000023 ], [ -82.010848409999937, 28.850273982000033 ], [ -82.010890055999937, 28.850265119000028 ], [ -82.010925885999939, 28.850256881000064 ], [ -82.010963591999939, 28.850247591000027 ], [ -82.010986030999959, 28.850241757000049 ], [ -82.011016175999941, 28.850233555000045 ], [ -82.011044018999939, 28.850225813000066 ], [ -82.011077204999935, 28.850216901000067 ], [ -82.011128785999972, 28.850203748000069 ], [ -82.01117820099995, 28.850191867000035 ], [ -82.011217559999977, 28.850183073000039 ], [ -82.011247668999943, 28.850176614000077 ], [ -82.011278496999978, 28.850170290000051 ], [ -82.011313905999941, 28.850163383000051 ], [ -82.011380266999936, 28.850151455000059 ], [ -82.011414599999966, 28.850145799000074 ], [ -82.011475064999956, 28.850136684000063 ], [ -82.011508573999947, 28.85013209400006 ], [ -82.011546501999987, 28.85012729500005 ], [ -82.011586847, 28.850122647000035 ], [ -82.011621571999967, 28.850119022000058 ], [ -82.011661248999985, 28.850115305000031 ], [ -82.011718521999967, 28.850110732000076 ], [ -82.011738737999963, 28.850109342000053 ], [ -82.011785860999964, 28.850106550000078 ], [ -82.011813850999943, 28.850105190000079 ], [ -82.011867483999936, 28.85010320400005 ], [ -82.011900455999978, 28.850102385000071 ], [ -82.011948341999982, 28.850101743000039 ], [ -82.011972853999964, 28.850101542000061 ], [ -82.012017757999956, 28.850101960000075 ], [ -82.012056423999979, 28.850102669000023 ], [ -82.012090369999953, 28.850103639000054 ], [ -82.012129518999984, 28.850105163000023 ], [ -82.012141054999972, 28.850105696000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012141054999972, 28.850105696000071 ], [ -82.012258564999968, 28.850113261000047 ], [ -82.012321018999955, 28.850118885000029 ], [ -82.012405838999939, 28.850128317000042 ], [ -82.012581125999986, 28.850152298000069 ], [ -82.012746503999949, 28.850175544000024 ], [ -82.012847922999981, 28.850189448000037 ], [ -82.012859270999968, 28.85019102800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994621685999959, 28.884388300000069 ], [ -81.994641790999935, 28.884359699000072 ], [ -81.994684383999981, 28.884272793000036 ], [ -81.99480626899998, 28.883905642000059 ], [ -81.994918587999962, 28.883514082000033 ], [ -81.995018018999986, 28.883035546000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994621685999959, 28.884388300000069 ], [ -81.994662034999976, 28.884403626000051 ], [ -81.994911767999952, 28.884477954000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018452604999936, 28.851475684000036 ], [ -82.018486847999952, 28.851500138000063 ], [ -82.018547699999942, 28.85153992000005 ], [ -82.018591802999936, 28.851565100000073 ], [ -82.018623487999946, 28.851582070000063 ], [ -82.018666164999956, 28.851603191000038 ], [ -82.018745845999945, 28.851637685000071 ], [ -82.018869147999965, 28.85168555100006 ], [ -82.019066044999988, 28.85176210700007 ], [ -82.019220103999942, 28.851821724000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018452604999936, 28.851475684000036 ], [ -82.018512057999942, 28.851413999000044 ], [ -82.018557936999969, 28.851363133000063 ], [ -82.018592389999981, 28.851317300000062 ], [ -82.018620967999937, 28.851259696000056 ], [ -82.018640092999988, 28.851208779000046 ], [ -82.018650655999977, 28.85116769900003 ], [ -82.018657350999945, 28.851124703000039 ], [ -82.01865976199997, 28.851080415000069 ], [ -82.018663310999955, 28.85077435900007 ], [ -82.018678775999945, 28.849328282000045 ], [ -82.018680002999986, 28.849233337000044 ], [ -82.018659068999966, 28.849175298000034 ], [ -82.018628050999951, 28.849130212000034 ], [ -82.018600154999945, 28.849101246000032 ], [ -82.018552001999979, 28.849065774000053 ], [ -82.018499034999934, 28.849043190000032 ], [ -82.018065586999967, 28.848868714000048 ], [ -82.018057356999975, 28.848865363000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017777984999952, 28.85097090000005 ], [ -82.018149881999989, 28.851249532000054 ], [ -82.018402685999945, 28.851438392000034 ], [ -82.018452604999936, 28.851475684000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017777984999952, 28.85097090000005 ], [ -82.017832007999971, 28.850912833000052 ], [ -82.017880242999979, 28.850843368000028 ], [ -82.017900120999968, 28.85080453300003 ], [ -82.017915980999987, 28.850764771000058 ], [ -82.017931687999976, 28.850707065000051 ], [ -82.017939387999945, 28.850648951000039 ], [ -82.017943108999987, 28.850381140000025 ], [ -82.017946811999934, 28.850062193000042 ], [ -82.017949925999972, 28.849793867000074 ], [ -82.017954316999976, 28.849415678000071 ], [ -82.01795776299997, 28.84914447500006 ], [ -82.017961753999941, 28.849103099000047 ], [ -82.017969577999963, 28.849062553000067 ], [ -82.017979405999938, 28.849028056000066 ], [ -82.017994305999935, 28.848988912000038 ], [ -82.018057356999975, 28.848865363000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019356822999953, 28.85154043700004 ], [ -82.01937118099994, 28.851544425000043 ], [ -82.019397617999971, 28.851551623000034 ], [ -82.019412718999945, 28.851555201000053 ], [ -82.019431462999989, 28.851558991000047 ], [ -82.019448584999964, 28.851561837000077 ], [ -82.019461216999957, 28.851563568000074 ], [ -82.019484253999963, 28.851565777000076 ], [ -82.019507249999947, 28.851567492000072 ], [ -82.019972977999942, 28.851567595000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019972977999942, 28.851567595000063 ], [ -82.020001903999969, 28.851560368000037 ], [ -82.020018994999987, 28.851553440000032 ], [ -82.02003425099997, 28.851544813000032 ], [ -82.02004648999997, 28.85153574800006 ], [ -82.020059338999943, 28.851524439000059 ], [ -82.020066676999988, 28.851514792000046 ], [ -82.020075017999943, 28.851501575000043 ], [ -82.020080770999982, 28.851487861000066 ], [ -82.020084398999984, 28.851476708000064 ], [ -82.020087620999959, 28.851460320000058 ], [ -82.020089031999987, 28.851350424000032 ], [ -82.020090056999948, 28.851263104000054 ], [ -82.02009107799995, 28.851155615000039 ], [ -82.020092489999968, 28.851054658000066 ], [ -82.020093254999949, 28.85097238000003 ], [ -82.020095434999973, 28.850801751000063 ], [ -82.020096580999962, 28.850672488000043 ], [ -82.020097992999979, 28.850564770000062 ], [ -82.020105032999936, 28.849965535000024 ], [ -82.020106891999944, 28.849805096000068 ], [ -82.020107253999981, 28.849772698000038 ], [ -82.020107053999936, 28.849766738000028 ], [ -82.020106325999961, 28.849759377000055 ], [ -82.02010594099994, 28.849756771000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015602154999954, 28.850259968000046 ], [ -82.015694333999988, 28.850256678000051 ], [ -82.016504229999953, 28.850222966000047 ], [ -82.016656083999976, 28.850232496000046 ], [ -82.016791672999943, 28.850265903000036 ], [ -82.016916416999948, 28.850327958000037 ], [ -82.01707913599995, 28.850447306000035 ], [ -82.017777984999952, 28.85097090000005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014403596999955, 28.849652807000041 ], [ -82.014496288999965, 28.849657571000023 ], [ -82.014561096999955, 28.84965846800003 ], [ -82.01470345599995, 28.849653461000059 ], [ -82.015000080999982, 28.849642876000075 ], [ -82.015125255999976, 28.849636758000031 ], [ -82.015294748999963, 28.84961671700006 ], [ -82.015363902999979, 28.849623027000064 ], [ -82.015434015999972, 28.849646338000071 ], [ -82.015506706999986, 28.849693348000073 ], [ -82.015559989999986, 28.849763611000071 ], [ -82.015581685999962, 28.849833560000036 ], [ -82.015586948999953, 28.849929755000062 ], [ -82.015602154999954, 28.850259968000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014403595999966, 28.849652819000028 ], [ -82.014421582999944, 28.849454473000037 ], [ -82.014446103999944, 28.849209701000063 ], [ -82.014449844999945, 28.849181429000055 ], [ -82.014457709999988, 28.849151833000064 ], [ -82.014468013999988, 28.849126716000058 ], [ -82.01448148999998, 28.849102537000078 ], [ -82.014499717999968, 28.849077601000033 ], [ -82.014527874999942, 28.849046525000063 ], [ -82.014564489999941, 28.849021791000041 ], [ -82.014589359999945, 28.849008122000043 ], [ -82.014609715999939, 28.848999143000071 ], [ -82.014639453999962, 28.848989105000044 ], [ -82.014674884999977, 28.848981366000032 ], [ -82.014708947999964, 28.848976968000045 ], [ -82.014793808999968, 28.848979576000033 ], [ -82.014865914999973, 28.848978196000076 ], [ -82.014920833999952, 28.848972647000039 ], [ -82.014996485999973, 28.848961158000066 ], [ -82.015064608999978, 28.84894588800006 ], [ -82.015127291999988, 28.848927269000058 ], [ -82.015168690999985, 28.848912865000045 ], [ -82.015258607999954, 28.848876491000055 ], [ -82.015309102999936, 28.848859259000051 ], [ -82.015365138999982, 28.848843203000058 ], [ -82.015415927999982, 28.848832861000062 ], [ -82.01545985499996, 28.848825704000035 ], [ -82.015511279999942, 28.848819933000073 ], [ -82.015564975999951, 28.84881684100003 ], [ -82.015634347999935, 28.848817095000072 ], [ -82.015895705999981, 28.848823494000044 ], [ -82.015976716999944, 28.848818102000052 ], [ -82.016063328999962, 28.848811439000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014347719999989, 28.850304737000044 ], [ -82.014402428999972, 28.850302786000043 ], [ -82.014620165999986, 28.850295016000075 ], [ -82.015602154999954, 28.850259968000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013521428, 28.849016982000023 ], [ -82.013499833999958, 28.848915023000075 ], [ -82.013492182999983, 28.848815442000046 ], [ -82.013493237999967, 28.848685801000045 ], [ -82.01349976299997, 28.848365929000067 ], [ -82.013494324999954, 28.848251336000033 ], [ -82.01346719999998, 28.84817971800004 ], [ -82.013418384999966, 28.848131976000047 ], [ -82.013358722999953, 28.848079459000076 ], [ -82.013288218999946, 28.848060368000063 ], [ -82.013168908999944, 28.848055604000024 ], [ -82.013049599999988, 28.848069940000073 ], [ -82.012935717999937, 28.848103375000051 ], [ -82.012870644999964, 28.848141578000025 ], [ -82.012811, 28.848213206000025 ], [ -82.01277847199998, 28.848308702000054 ], [ -82.012764223999966, 28.848877411000046 ], [ -82.012767072999964, 28.84894494200006 ], [ -82.012771318999967, 28.848981968000032 ], [ -82.012776619999954, 28.849014373000045 ], [ -82.012788100999956, 28.84906725500008 ], [ -82.012803686999973, 28.849121301000025 ], [ -82.012847471999976, 28.849278190000064 ], [ -82.012857937999968, 28.849329753000063 ], [ -82.012862850999966, 28.849364481000066 ], [ -82.012871380999968, 28.849484957000072 ], [ -82.01287797599997, 28.849591934000046 ], [ -82.012881676999939, 28.849650392000058 ], [ -82.012886234999939, 28.849731476000045 ], [ -82.012886743999957, 28.849756092000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013521428, 28.849016982000023 ], [ -82.013643373999969, 28.84899301400003 ], [ -82.01375240699997, 28.848972619000051 ], [ -82.013797756999963, 28.848967993000031 ], [ -82.014022261999969, 28.848942365000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01357521999995, 28.850290717000064 ], [ -82.013650687999984, 28.850300709000066 ], [ -82.013771905999988, 28.850311934000047 ], [ -82.013941818999967, 28.850317679000057 ], [ -82.014291193999952, 28.85030675400003 ], [ -82.014347719999989, 28.850304737000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012859270999968, 28.85019102800004 ], [ -82.013244719999989, 28.850242387000037 ], [ -82.01357521999995, 28.850290717000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01357521999995, 28.850290717000064 ], [ -82.013596673999984, 28.850128359000053 ], [ -82.013608434999981, 28.849965453000038 ], [ -82.013612476999981, 28.849820265000062 ], [ -82.013605874999939, 28.849626177000061 ], [ -82.013586656999962, 28.849306543000068 ], [ -82.013562229999934, 28.849165158000062 ], [ -82.013521423999975, 28.849016970000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007670580999957, 28.850113516000079 ], [ -82.007834130999981, 28.850117934000025 ], [ -82.008395481999969, 28.850133461000041 ], [ -82.008450171999982, 28.850134973000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007670580999957, 28.850113516000079 ], [ -82.007653414999936, 28.849933727000064 ], [ -82.007637600999942, 28.849768093000023 ], [ -82.007621297999947, 28.849643426000057 ], [ -82.007594471999937, 28.849553710000066 ], [ -82.007470910999984, 28.849277903000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007891218999987, 28.851953391000052 ], [ -82.00768491599996, 28.851849901000037 ], [ -82.007554926999944, 28.851764308000043 ], [ -82.007378483999958, 28.851618730000041 ], [ -82.007260235999979, 28.85149627800007 ], [ -82.007157234999966, 28.851349339000024 ], [ -82.007089143999963, 28.851209575000041 ], [ -82.007046208999952, 28.851074064000045 ], [ -82.007021309999971, 28.850931324000044 ], [ -82.006989162999957, 28.850711395000076 ], [ -82.006906986, 28.850149167000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006906986, 28.850149167000041 ], [ -82.007140013999958, 28.850125713000068 ], [ -82.007284801999958, 28.850116722000053 ], [ -82.007424184999934, 28.850112073000048 ], [ -82.007620444999986, 28.850112162000073 ], [ -82.007670580999957, 28.850113516000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006906986, 28.850149167000041 ], [ -82.006855047999977, 28.849854909000044 ], [ -82.006785009999987, 28.849653721000038 ], [ -82.006704643999967, 28.849476314000071 ], [ -82.006647291999968, 28.849372776000052 ], [ -82.006568952999942, 28.849253268000041 ], [ -82.006445754999959, 28.849090904000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007633050999971, 28.848950370000068 ], [ -82.007599879999987, 28.848576388000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006445754999959, 28.849090904000036 ], [ -82.006658959999982, 28.84896410500005 ], [ -82.006820302999984, 28.848884773000066 ], [ -82.006964788999937, 28.848824450000052 ], [ -82.007117560999973, 28.848770698000067 ], [ -82.007316168999978, 28.84871503100004 ], [ -82.007391350999967, 28.848697918000028 ], [ -82.00747169899995, 28.848681943000031 ], [ -82.007518927999968, 28.848670887000026 ], [ -82.007546337999941, 28.848656798000036 ], [ -82.007570921999957, 28.848635444000024 ], [ -82.007589684999971, 28.848606499000027 ], [ -82.007599879999987, 28.848576388000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007561585999952, 28.848153374000049 ], [ -82.007519649999949, 28.847693391000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007599879999987, 28.848576388000026 ], [ -82.007590125999968, 28.848466420000079 ], [ -82.007561585999952, 28.848153374000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006107431999965, 28.84854297000004 ], [ -82.006132885999989, 28.84852194900003 ], [ -82.006218866999973, 28.848469118000025 ], [ -82.006434069999955, 28.848358288000043 ], [ -82.006656096999961, 28.848260202000063 ], [ -82.006902326999978, 28.848175430000026 ], [ -82.00711486199998, 28.848116311000069 ], [ -82.007279750999942, 28.848078133000058 ], [ -82.007415327999979, 28.848057236000045 ], [ -82.007450542999948, 28.848056959000075 ], [ -82.007492498999966, 28.848069709000072 ], [ -82.007521929999939, 28.848088956000026 ], [ -82.007546377999972, 28.848117967000064 ], [ -82.007561585999952, 28.848153374000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005825708999964, 28.848916767000048 ], [ -82.005913827999962, 28.848764568000036 ], [ -82.006005336999976, 28.848627291000071 ], [ -82.006107431999965, 28.84854297000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006445754999959, 28.849090904000036 ], [ -82.006225347999987, 28.84880043000004 ], [ -82.006178912999985, 28.848751883000034 ], [ -82.006116150999958, 28.84869277100006 ], [ -82.006092683999952, 28.84866080300003 ], [ -82.006082812999978, 28.848629495000068 ], [ -82.006083223999951, 28.848596352000072 ], [ -82.006093185999987, 28.848566568000024 ], [ -82.006107431999965, 28.84854297000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006132098999956, 28.850310195000077 ], [ -82.006023339999956, 28.850024020000035 ], [ -82.005901508999955, 28.849732258000074 ], [ -82.005794939999987, 28.849563874000069 ], [ -82.005578988999957, 28.849251978000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006810737999956, 28.852198620000024 ], [ -82.006529185999966, 28.851733840000065 ], [ -82.006451338999966, 28.851583480000045 ], [ -82.006388002999984, 28.851422700000057 ], [ -82.006321338999953, 28.851141601000052 ], [ -82.006277652999984, 28.850842710000052 ], [ -82.006249288999982, 28.850650157000075 ], [ -82.006214919999934, 28.850528031000067 ], [ -82.006132098999956, 28.850310195000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006132115999947, 28.850310189000027 ], [ -82.00621997899998, 28.85028520700007 ], [ -82.006359635999956, 28.850249159000043 ], [ -82.006509341999958, 28.850215382000044 ], [ -82.006672204999973, 28.850184196000043 ], [ -82.006845201999965, 28.850157265000064 ], [ -82.006906986, 28.850149167000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005421060999936, 28.850583589000053 ], [ -82.005363939999938, 28.850491176000048 ], [ -82.005266289999952, 28.850333192000051 ], [ -82.005125844999952, 28.85010825300003 ], [ -82.005031347999989, 28.849981739000043 ], [ -82.004959042999985, 28.849897293000026 ], [ -82.004923826999971, 28.849834 ], [ -82.00490383999994, 28.84977546500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005421060999936, 28.850583589000053 ], [ -82.005568954999944, 28.850515552000047 ], [ -82.005640052999979, 28.850485053000057 ], [ -82.00579007999994, 28.850425192000046 ], [ -82.005957326999976, 28.850365347000036 ], [ -82.006132115999947, 28.850310189000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006516638999983, 28.853095217000032 ], [ -82.006691709999984, 28.852993186000049 ], [ -82.007308485999943, 28.852634881000029 ], [ -82.007469059999949, 28.852540150000038 ], [ -82.00756987799997, 28.852474166000036 ], [ -82.007627682999953, 28.852420058000064 ], [ -82.007673256999965, 28.852362497000058 ], [ -82.007844792999947, 28.852042938000068 ], [ -82.007891218999987, 28.851953391000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00611254599994, 28.852554819000034 ], [ -82.006075320999969, 28.852503746000025 ], [ -82.006006007999986, 28.852385369000046 ], [ -82.005933514999981, 28.852223754000079 ], [ -82.005780714999958, 28.851861664000069 ], [ -82.005699929999935, 28.851653316000068 ], [ -82.005652526999938, 28.851490716000058 ], [ -82.005617389999941, 28.851321735000056 ], [ -82.005594322999968, 28.851166851000073 ], [ -82.005553253999949, 28.85088584600004 ], [ -82.005539146, 28.850810808000062 ], [ -82.005521305999935, 28.850757975000079 ], [ -82.005493576999982, 28.850697013000058 ], [ -82.005421060999936, 28.850583589000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006516638999983, 28.853095217000032 ], [ -82.006183064999959, 28.852651574000049 ], [ -82.00611254599994, 28.852554819000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003736067999967, 28.853013777000058 ], [ -82.003815945999975, 28.853011731000038 ], [ -82.003984626999966, 28.85301411100005 ], [ -82.004113223, 28.85302560100007 ], [ -82.004246636999937, 28.853042790000075 ], [ -82.004426305999971, 28.853078754000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00317653899998, 28.85171200800005 ], [ -82.003338152999959, 28.851600426000061 ], [ -82.003367571999945, 28.85158214300003 ], [ -82.003414067999984, 28.851557906000039 ], [ -82.003484858999968, 28.85152892800005 ], [ -82.003815141999951, 28.851399698000023 ], [ -82.004160175999971, 28.851264391000029 ], [ -82.00430146399998, 28.851207785000042 ], [ -82.004351608999968, 28.851184853000063 ], [ -82.004411700999981, 28.851154975000043 ], [ -82.004732675999946, 28.850968629000079 ], [ -82.004790971999967, 28.850934623000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004790971999967, 28.850934623000057 ], [ -82.004867843999989, 28.850889783000071 ], [ -82.005006654999988, 28.850808812000025 ], [ -82.005116637999947, 28.850744683000073 ], [ -82.005233572999941, 28.85067927800003 ], [ -82.005386439999938, 28.850600442000029 ], [ -82.005421060999936, 28.850583589000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004790971999967, 28.850934623000057 ], [ -82.004569343999947, 28.850640851000037 ], [ -82.004399931999956, 28.850470008000059 ], [ -82.004316608999943, 28.85039637400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00317653899998, 28.85171200800005 ], [ -82.003060092999988, 28.851581298000042 ], [ -82.002729224999939, 28.851209896000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002729224999939, 28.851209896000057 ], [ -82.002374046999989, 28.850801878000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002729210999973, 28.851209881000045 ], [ -82.002966234999974, 28.851047536000067 ], [ -82.003026107999972, 28.851014110000051 ], [ -82.003109891999941, 28.850977447000048 ], [ -82.003327335999984, 28.850892552000062 ], [ -82.003432965999934, 28.850851108000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003432965999934, 28.850851108000029 ], [ -82.003238133999957, 28.850470070000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003432965999934, 28.850851108000029 ], [ -82.003768455999989, 28.850719473000026 ], [ -82.003972547999979, 28.850639147000038 ], [ -82.004071898999939, 28.850588611000035 ], [ -82.004155546999982, 28.850530796000044 ], [ -82.004316608999943, 28.85039637400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004316608999943, 28.85039637400007 ], [ -82.004052556999966, 28.850153269000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001495926999951, 28.848402931000066 ], [ -82.001128898, 28.847999083000047 ], [ -82.001038574999939, 28.847898341000075 ], [ -82.000958966999974, 28.847792859000037 ], [ -82.000851085999955, 28.84759434800003 ], [ -82.000760956999954, 28.847334631000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002897171999962, 28.849389834000078 ], [ -82.002796905999958, 28.849232392000033 ], [ -82.002606725999954, 28.848858824000047 ], [ -82.002576328999965, 28.848800475000075 ], [ -82.002531884999939, 28.848733210000034 ], [ -82.002488668999945, 28.848681071000044 ], [ -82.002431477999949, 28.848625052000045 ], [ -82.002349886, 28.848560383000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001495926999951, 28.848402931000066 ], [ -82.001554065999983, 28.848358981000047 ], [ -82.001717971999938, 28.848223829000062 ], [ -82.001886580999951, 28.848053166000057 ], [ -82.002076323999972, 28.847837530000049 ], [ -82.002116534999971, 28.847803818000045 ], [ -82.002151971999979, 28.847783180000079 ], [ -82.002185946999987, 28.847769085000039 ], [ -82.002228058999947, 28.847757878000039 ], [ -82.002258831999939, 28.847753555000054 ], [ -82.002302715999974, 28.847752660000026 ], [ -82.002336368999977, 28.847756139000069 ], [ -82.002371836999941, 28.847763899000029 ], [ -82.002404029, 28.847774944000037 ], [ -82.00245930799997, 28.847799160000079 ], [ -82.002532457999962, 28.847832622000055 ], [ -82.002606009999965, 28.847871679000036 ], [ -82.002680570999985, 28.847914400000036 ], [ -82.002770054999985, 28.847974561000058 ], [ -82.002817814999958, 28.848010582000029 ], [ -82.002848141999948, 28.848035552000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002848141999948, 28.848035552000056 ], [ -82.002871226999957, 28.848054557000069 ], [ -82.002928107999935, 28.848106274000031 ], [ -82.003064826999946, 28.848256899000035 ], [ -82.003378834999978, 28.848641587000031 ], [ -82.003479421999941, 28.848751937000031 ], [ -82.003541287999951, 28.848818562000076 ], [ -82.003616240999975, 28.848850685000059 ], [ -82.003662640999949, 28.848870910000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002349886, 28.848560383000063 ], [ -82.002397580999968, 28.848511604000066 ], [ -82.002448911999977, 28.848454005000065 ], [ -82.00260273799995, 28.848280732000035 ], [ -82.002687679999951, 28.848187409000047 ], [ -82.002848141999948, 28.848035552000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000504624999962, 28.849581448000038 ], [ -82.000600951999957, 28.849560172000054 ], [ -82.000647056999981, 28.849547134000034 ], [ -82.000736099999983, 28.849510163000048 ], [ -82.001024923999978, 28.849370219000036 ], [ -82.001387239999985, 28.849215263000076 ], [ -82.001595992999967, 28.849114942000028 ], [ -82.001791110999989, 28.849002467000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001791110999989, 28.849002467000048 ], [ -82.002010799999937, 28.848858555000049 ], [ -82.002153827999962, 28.848741483000026 ], [ -82.002281474999961, 28.848627693000026 ], [ -82.002328670999987, 28.848582082000064 ], [ -82.002349886, 28.848560383000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000808240999959, 28.850233637000031 ], [ -82.000709121999989, 28.850111079000044 ], [ -82.000661792999949, 28.850041739000062 ], [ -82.000618151999959, 28.849959566000052 ], [ -82.000572333999969, 28.849823374000039 ], [ -82.00051332299995, 28.849612171000047 ], [ -82.000504624999962, 28.849581448000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000808240999959, 28.850233637000031 ], [ -82.000908713999934, 28.850169702000073 ], [ -82.001223202999938, 28.849997562000055 ], [ -82.00158953, 28.849837042000047 ], [ -82.001849242999981, 28.849739684000042 ], [ -82.001893564999989, 28.849721738000028 ], [ -82.001947346999941, 28.849691328000063 ], [ -82.001994274999959, 28.849635616000057 ], [ -82.002022135999937, 28.84958098900006 ], [ -82.002029829999969, 28.849530908000077 ], [ -82.002033366999967, 28.849486630000058 ], [ -82.002015063999977, 28.849426664000077 ], [ -82.001994426999943, 28.849372806000076 ], [ -82.001791110999989, 28.849002467000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999587719999965, 28.851055043000031 ], [ -81.999773216999984, 28.850978525000073 ], [ -81.999891470999955, 28.850907805000077 ], [ -82.000327176999974, 28.850563042000033 ], [ -82.000456061999955, 28.850465433000068 ], [ -82.00059945299995, 28.850366498000028 ], [ -82.000711423999974, 28.850290238000071 ], [ -82.000808240999959, 28.850233637000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000837691999948, 28.848736730000041 ], [ -82.001046857999938, 28.848653562000038 ], [ -82.001293712999939, 28.848529350000035 ], [ -82.001495926999951, 28.848402931000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000504624999962, 28.849581448000038 ], [ -82.000453983999989, 28.849402539000039 ], [ -82.000389323999968, 28.849234456000033 ], [ -82.000301168999954, 28.84911313300006 ], [ -82.000253538999971, 28.849057220000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000253538999971, 28.849057220000077 ], [ -82.000327436999953, 28.848995349000063 ], [ -82.000393607999968, 28.848950010000067 ], [ -82.000482405999946, 28.848903866000057 ], [ -82.000616598999954, 28.848838586000056 ], [ -82.000836708999941, 28.848737120000067 ], [ -82.000837691999948, 28.848736730000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000253538999971, 28.849057220000077 ], [ -82.000206722999962, 28.849021239000024 ], [ -82.000103324999941, 28.848952566000037 ], [ -82.000000479999983, 28.848904429000072 ], [ -81.999895721999962, 28.848871522000024 ], [ -81.999792741999954, 28.848850524000056 ], [ -81.99966173699994, 28.848846688000037 ], [ -81.99959658399996, 28.848850902000038 ], [ -81.999528358999953, 28.848862460000078 ], [ -81.999462470999958, 28.848875202000045 ], [ -81.999409741999955, 28.848890836000066 ], [ -81.999238987999945, 28.848945240000035 ], [ -81.999149582999962, 28.848973725000064 ], [ -81.99908912099994, 28.848989538000069 ], [ -81.999039608999965, 28.848996276000037 ], [ -81.998980176999964, 28.848992547000023 ], [ -81.99892671799995, 28.84897907900006 ], [ -81.998881789999984, 28.848959008000065 ], [ -81.99884465699995, 28.848934467000049 ], [ -81.998803282999972, 28.848893897000039 ], [ -81.99878182499998, 28.848865302000036 ], [ -81.998728437999944, 28.84874308600007 ], [ -81.998699147999957, 28.848665724000057 ], [ -81.998694433999958, 28.84861412600003 ], [ -81.998697534999962, 28.848575392000043 ], [ -81.998706609999942, 28.848540244000048 ], [ -81.998723878999954, 28.84850227000004 ], [ -81.998750868999934, 28.848464073000059 ], [ -81.998774245999982, 28.848440267000058 ], [ -81.998830124999984, 28.848396919000038 ], [ -81.998972485999957, 28.848349173000031 ], [ -81.999243645999968, 28.848265617000038 ], [ -81.999382827999966, 28.848235502000023 ], [ -81.999467352999943, 28.84822383900007 ], [ -81.999567075999948, 28.848212455000066 ], [ -81.999700798999982, 28.848208351000039 ], [ -81.999794445999953, 28.848211713000069 ], [ -81.999893663999956, 28.848220917000049 ], [ -81.999982634999981, 28.848234212000079 ], [ -82.000114927999959, 28.84825971600003 ], [ -82.000233095999988, 28.848298783000075 ], [ -82.000326629999961, 28.848334129000079 ], [ -82.000412636999954, 28.848372718000064 ], [ -82.000521034999963, 28.848430640000061 ], [ -82.000607794999951, 28.848485530000062 ], [ -82.000707587999955, 28.848560990000067 ], [ -82.000760777999972, 28.848615985000038 ], [ -82.000802227999941, 28.848673769000072 ], [ -82.000837691999948, 28.848736730000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004904634999946, 28.848241259000076 ], [ -82.004583572999934, 28.847967442000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004583572999934, 28.847967442000026 ], [ -82.004557537999972, 28.847945238000079 ], [ -82.004379358999984, 28.847791689000076 ], [ -82.004331812999965, 28.847756497000034 ], [ -82.004292325999984, 28.847732561000043 ], [ -82.004256813999973, 28.847713986000031 ], [ -82.004213929999935, 28.84769506300006 ], [ -82.004182681999964, 28.847683463000067 ], [ -82.004148983999983, 28.847672860000046 ], [ -82.004110982999975, 28.847663662000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004583572999934, 28.847967442000026 ], [ -82.004603872999951, 28.847979508000037 ], [ -82.004616273999943, 28.847985140000048 ], [ -82.00463310899994, 28.847990653000068 ], [ -82.00464861599994, 28.847993826000049 ], [ -82.004664900999956, 28.847995361000073 ], [ -82.004684386999941, 28.847994870000036 ], [ -82.004702008999971, 28.847992216000023 ], [ -82.004717376999963, 28.847988069000053 ], [ -82.004734394999957, 28.847981225000069 ], [ -82.004750310999952, 28.847972237000079 ], [ -82.004781312999967, 28.84794725200004 ], [ -82.004912419999982, 28.847841097000071 ], [ -82.005045613999982, 28.847739907000062 ], [ -82.005224571999975, 28.847620531000075 ], [ -82.005365568999935, 28.847529806000068 ], [ -82.005609602999982, 28.847391329000061 ], [ -82.005780068999968, 28.847303771000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005780068999968, 28.847303771000043 ], [ -82.005804830999978, 28.84729105200006 ], [ -82.006000058999973, 28.847209872000064 ], [ -82.006157325999936, 28.847147794000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005780068999968, 28.847303771000043 ], [ -82.005805084999963, 28.847272923000048 ], [ -82.005816781999954, 28.847246639000048 ], [ -82.005820595999978, 28.847208495000075 ], [ -82.005815782999946, 28.847185048000028 ], [ -82.005803141999934, 28.847158620000073 ], [ -82.00577246499995, 28.84710620900006 ], [ -82.00574026399994, 28.847043076000034 ], [ -82.005708438999989, 28.846953600000063 ], [ -82.005694572999971, 28.846889310000051 ], [ -82.00569091999995, 28.846847006000075 ], [ -82.005686229999981, 28.846818932000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005686229999981, 28.846818932000076 ], [ -82.005663795999965, 28.846684666000044 ], [ -82.005636661999972, 28.846345661000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004110982999975, 28.847663662000059 ], [ -82.004197788999988, 28.847584410000024 ], [ -82.004325436999977, 28.847475078000059 ], [ -82.00451144699997, 28.847328004000076 ], [ -82.004693083999939, 28.847195027000055 ], [ -82.004833814999984, 28.847103098000048 ], [ -82.004989758999955, 28.847006324000063 ], [ -82.005191995999951, 28.846889999000041 ], [ -82.005342178999967, 28.846812879000026 ], [ -82.005453149999937, 28.846758621000049 ], [ -82.005504408999968, 28.846735112000033 ], [ -82.005533643999968, 28.846727644000055 ], [ -82.005569313999956, 28.846726771000078 ], [ -82.005600435999952, 28.846733048000033 ], [ -82.005628412999954, 28.846745372000044 ], [ -82.005645214999959, 28.846758339000075 ], [ -82.005647797999984, 28.846759051000049 ], [ -82.005666059999953, 28.846778387000029 ], [ -82.005676336999954, 28.846794720000048 ], [ -82.005686229999981, 28.846818932000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004110982999975, 28.847663662000059 ], [ -82.004082272999938, 28.847656713000049 ], [ -82.004028635999987, 28.84764218600003 ], [ -82.003969768, 28.847619008000038 ], [ -82.003905870999972, 28.847586861000025 ], [ -82.003780680999967, 28.847502449000046 ], [ -82.003672406999954, 28.847430601000042 ], [ -82.003611627999987, 28.847392109000054 ], [ -82.003507980999984, 28.847329366000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003507980999984, 28.847329366000054 ], [ -82.003539561999958, 28.847289184000033 ], [ -82.003611810999985, 28.84720769200004 ], [ -82.003707778999967, 28.847111149000057 ], [ -82.003851160999943, 28.846986334000064 ], [ -82.003973479999956, 28.846883462000051 ], [ -82.004002228, 28.84685393500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003235072999985, 28.847686266000039 ], [ -82.003443517999983, 28.847411381000029 ], [ -82.003507980999984, 28.847329366000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999330834999967, 28.847781156000053 ], [ -82.000077458999954, 28.847543441000028 ], [ -82.000650016999941, 28.847364006000078 ], [ -82.000760956999954, 28.847334631000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00183007399994, 28.84720253200004 ], [ -82.001916867999967, 28.847208953000063 ], [ -82.00209181799994, 28.847232532000078 ], [ -82.002317564999942, 28.847282355000061 ], [ -82.002534822999962, 28.847352526000066 ], [ -82.00274522899997, 28.847436945000027 ], [ -82.002961536999976, 28.847537001000035 ], [ -82.003127981999967, 28.847620994000067 ], [ -82.003235072999985, 28.847686266000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00183007399994, 28.84720253200004 ], [ -82.001842198999952, 28.847041499000056 ], [ -82.001867627999957, 28.846942608000063 ], [ -82.001916434999941, 28.84685666200005 ], [ -82.001957168999979, 28.846805192000033 ], [ -82.002011068999934, 28.846753075000038 ], [ -82.002080884999941, 28.846703271000024 ], [ -82.002137022999989, 28.846670102000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003507980999984, 28.847329366000054 ], [ -82.003390839999952, 28.847262640000054 ], [ -82.003261642999973, 28.847193915000048 ], [ -82.003132225999934, 28.84712991300006 ], [ -82.002997880999942, 28.847068328000034 ], [ -82.002846808999948, 28.847004689000073 ], [ -82.00273575999995, 28.846961532000023 ], [ -82.002647958999944, 28.846929788000068 ], [ -82.002553668999951, 28.846899097000062 ], [ -82.002468385999975, 28.846874336000042 ], [ -82.002372251999986, 28.846847781000065 ], [ -82.002301475999957, 28.84681845800003 ], [ -82.002239254999949, 28.846777049000025 ], [ -82.002201237999941, 28.846744972000067 ], [ -82.002175122999972, 28.84671809300005 ], [ -82.002137022999989, 28.846670102000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002137022999989, 28.846670102000076 ], [ -82.002181976999964, 28.846643541000049 ], [ -82.002280329999962, 28.846585461000075 ], [ -82.002377453999941, 28.846526195000024 ], [ -82.002488000999961, 28.846446756000034 ], [ -82.002585042999954, 28.846368969000025 ], [ -82.002628755999979, 28.846343454000078 ], [ -82.002670696999985, 28.846326627000053 ], [ -82.002707432999955, 28.846316895000029 ], [ -82.002751579999938, 28.846307554000077 ], [ -82.002797790999978, 28.846310106000033 ], [ -82.002833242999941, 28.846313796000061 ], [ -82.002873915999942, 28.846322635000035 ], [ -82.002979351999954, 28.846360071000049 ], [ -82.003138299999989, 28.846420456000033 ], [ -82.003404473999979, 28.846535548000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003404473999979, 28.846535548000077 ], [ -82.003440318999935, 28.846551049000027 ], [ -82.003688394999983, 28.846674853000025 ], [ -82.003860243999952, 28.846769572000028 ], [ -82.004002228, 28.84685393500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003404473999979, 28.846535548000077 ], [ -82.003515602999983, 28.84634869100006 ], [ -82.003592154999978, 28.846212038000033 ], [ -82.003646379999964, 28.846078345000024 ], [ -82.003700293999941, 28.845934467000063 ], [ -82.003754832999959, 28.845796633000077 ], [ -82.003781064999941, 28.845727712000041 ], [ -82.003819903999954, 28.845648614000027 ], [ -82.003865219999966, 28.845584668000072 ], [ -82.003901894999956, 28.845540838000034 ], [ -82.003979873999981, 28.84546169500004 ], [ -82.004034384999954, 28.845385475000057 ], [ -82.004066049999949, 28.845334698000045 ], [ -82.004101887, 28.845266628000047 ], [ -82.004128891999983, 28.845195399000033 ], [ -82.004145265999966, 28.845137709000028 ], [ -82.004163456999947, 28.845041133000052 ], [ -82.004168230999937, 28.844946404000041 ], [ -82.004162625999982, 28.844865199000026 ], [ -82.00415179099997, 28.844801141000062 ], [ -82.004130257999975, 28.844715207000036 ], [ -82.004105552999988, 28.844642282000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004002228, 28.84685393500007 ], [ -82.004043970999987, 28.846811063000075 ], [ -82.004129310999986, 28.846715319000054 ], [ -82.004221246999975, 28.846589225000059 ], [ -82.004305143999943, 28.846421672000076 ], [ -82.004378501999952, 28.846254988000055 ], [ -82.00445792499994, 28.846139805000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00445792499994, 28.846139805000064 ], [ -82.004692427999942, 28.846281971000053 ], [ -82.00474860099996, 28.846297434000064 ], [ -82.004796189, 28.846310521000078 ], [ -82.004861623999943, 28.846317659000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00445792499994, 28.846139805000064 ], [ -82.004470688999959, 28.846121293000067 ], [ -82.004524037999943, 28.846063895000043 ], [ -82.004578855999966, 28.846012896000047 ], [ -82.004665039999963, 28.845947715000079 ], [ -82.004778067999951, 28.845873523000023 ], [ -82.005061783999963, 28.845686771000032 ], [ -82.005124684999942, 28.845628593000072 ], [ -82.005139276999955, 28.845611655000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005139276999955, 28.845611655000027 ], [ -82.005406885999946, 28.84586123400004 ], [ -82.005469046999963, 28.845911811000065 ], [ -82.005526584999984, 28.845950587000061 ], [ -82.005614950999984, 28.845992333000027 ], [ -82.005720051999958, 28.846018361000063 ], [ -82.005815605999942, 28.846025747000056 ], [ -82.006059642999958, 28.846011412000053 ], [ -82.00630259199994, 28.845996391000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00630259199994, 28.845996391000028 ], [ -82.006368756999962, 28.845992299000045 ], [ -82.006873653999946, 28.845954622000079 ], [ -82.007062433999977, 28.845941905000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007062433999977, 28.845941905000075 ], [ -82.007236441999964, 28.845930183000064 ], [ -82.00754802299997, 28.845906929000023 ], [ -82.007632325999964, 28.845911063000074 ], [ -82.007693964999987, 28.845939108000039 ], [ -82.007735366999952, 28.845963579000056 ], [ -82.007797584999935, 28.846026177000056 ], [ -82.007823803999941, 28.846077406000063 ], [ -82.007831427999974, 28.846118489000048 ], [ -82.007834893999984, 28.846512973000074 ], [ -82.007832612999948, 28.846559985000056 ], [ -82.007819476999941, 28.846623922000049 ], [ -82.007784228999981, 28.846689336000054 ], [ -82.00773471499997, 28.846735448000061 ], [ -82.007693663999987, 28.846760870000026 ], [ -82.007653173999984, 28.84677774000005 ], [ -82.007613851999963, 28.846787978000066 ], [ -82.007540196999969, 28.846794393000039 ], [ -82.007433178999975, 28.846806252000079 ], [ -82.007317456999942, 28.84681996300003 ], [ -82.00717949899996, 28.846839695000028 ], [ -82.007118996999964, 28.846849754000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007118996999964, 28.846849754000061 ], [ -82.007062416999986, 28.845941907000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007118996999964, 28.846849754000061 ], [ -82.007080643999984, 28.846856129000059 ], [ -82.006977315999961, 28.846875382000064 ], [ -82.00675376099997, 28.846924444000024 ], [ -82.006679807999944, 28.846938110000053 ], [ -82.006618973999934, 28.846936735000043 ], [ -82.006566986999985, 28.846925942000041 ], [ -82.006526082999983, 28.846909039000025 ], [ -82.006471809999937, 28.846877167000059 ], [ -82.006422153999949, 28.846825913000032 ], [ -82.006394026999942, 28.846774922000066 ], [ -82.006382101999975, 28.846733614000073 ], [ -82.006374532999985, 28.846668851000061 ], [ -82.00630259199994, 28.845996391000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005139276999955, 28.845611655000027 ], [ -82.005153655999948, 28.845594962000064 ], [ -82.005197351999982, 28.845533975000023 ], [ -82.005230787999949, 28.845453246000034 ], [ -82.005251573999942, 28.845362083000055 ], [ -82.005253514999936, 28.845295529000055 ], [ -82.005246141999976, 28.845204516000024 ], [ -82.005220522999934, 28.845041080000044 ], [ -82.005219752999949, 28.844950329000028 ], [ -82.005233412999985, 28.844876015000068 ], [ -82.005273590999934, 28.844776954000054 ], [ -82.005306087999941, 28.844725657000026 ], [ -82.005332600999964, 28.844695751000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004105552999988, 28.844642282000052 ], [ -82.004356385999984, 28.844586417000073 ], [ -82.004585530999975, 28.844568640000034 ], [ -82.004736698999977, 28.844560994000062 ], [ -82.004824391999989, 28.84456132300005 ], [ -82.005028315999937, 28.844585060000043 ], [ -82.005170921999934, 28.844617267000046 ], [ -82.005235267999979, 28.844641098000068 ], [ -82.005332600999964, 28.844695751000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005332600999964, 28.844695751000074 ], [ -82.005371479999951, 28.844651899000041 ], [ -82.005431986999952, 28.844603216000053 ], [ -82.005478097999969, 28.844574407000039 ], [ -82.005561886999942, 28.84453185600006 ], [ -82.005622153, 28.844493002000036 ], [ -82.005683707999935, 28.844446313000049 ], [ -82.005726613999968, 28.844390855000029 ], [ -82.005780275999939, 28.844302845000072 ], [ -82.005815503999941, 28.844201799000075 ], [ -82.005837708999934, 28.844082833000073 ], [ -82.005841812999961, 28.84406434400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005841812999961, 28.84406434400006 ], [ -82.005856230999939, 28.843964372000073 ], [ -82.005852990999983, 28.843661939000071 ], [ -82.005849779999949, 28.843417704000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005849779999949, 28.843417704000046 ], [ -82.006147562999956, 28.843459066000037 ], [ -82.006317174999936, 28.843472294000037 ], [ -82.006546399999934, 28.843477215000064 ], [ -82.006705944999965, 28.843471890000046 ], [ -82.007046920999983, 28.843446935000031 ], [ -82.007410960999948, 28.843413745000078 ], [ -82.007682861999967, 28.843390405000036 ], [ -82.007823060999954, 28.843389863000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007005595999942, 28.842814910000072 ], [ -82.007184457999983, 28.842804087000047 ], [ -82.007464439999978, 28.842792773000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006411584999967, 28.842843548000076 ], [ -82.006487094999954, 28.842846164000036 ], [ -82.006660652999983, 28.842841969000062 ], [ -82.006862499999954, 28.842826228000035 ], [ -82.006956959999968, 28.842817854000032 ], [ -82.007005595999942, 28.842814910000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005849779999949, 28.843417704000046 ], [ -82.005849234999971, 28.843376223000064 ], [ -82.00584798899996, 28.84325640000003 ], [ -82.005842560999952, 28.843146582000031 ], [ -82.005831708999949, 28.843051087000049 ], [ -82.005811657999971, 28.842969932000074 ], [ -82.00577162899998, 28.842837064000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00577162899998, 28.842837064000037 ], [ -82.005876312999987, 28.842811329000028 ], [ -82.005973637999944, 28.842804994000062 ], [ -82.006081601999938, 28.842811941000036 ], [ -82.006207425999946, 28.842829666000057 ], [ -82.006339520999973, 28.84284105200004 ], [ -82.006411584999967, 28.842843548000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006151509999938, 28.840482265000048 ], [ -82.006622472999936, 28.840800232000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006411584999967, 28.842843548000076 ], [ -82.006414240999959, 28.842220656000052 ], [ -82.006416609999974, 28.841664866000031 ], [ -82.00641894499995, 28.841116734000025 ], [ -82.006419791999974, 28.840918098000031 ], [ -82.006420030999948, 28.840894225000056 ], [ -82.006421414999977, 28.840882223000051 ], [ -82.006426431999955, 28.840863716000058 ], [ -82.006432163999989, 28.840850884000076 ], [ -82.006439304999958, 28.840837485000065 ], [ -82.006455365999955, 28.840820453000049 ], [ -82.006470270999955, 28.840808333000041 ], [ -82.006489184999964, 28.840797334000058 ], [ -82.006510865999985, 28.840789059000031 ], [ -82.006531724999945, 28.840784582000026 ], [ -82.006548128999952, 28.84078319300005 ], [ -82.006566865999957, 28.840783801000043 ], [ -82.00658520199994, 28.84078670100007 ], [ -82.006604429999982, 28.84079239600004 ], [ -82.006622472999936, 28.840800232000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007005595999942, 28.842814910000072 ], [ -82.007030611999937, 28.84280732600007 ], [ -82.007054133999986, 28.842796743000065 ], [ -82.007082775999947, 28.842774825000049 ], [ -82.007102090999979, 28.842748775000075 ], [ -82.00711320299996, 28.842717717000028 ], [ -82.007114987999955, 28.84267039100007 ], [ -82.007121373999951, 28.841204236000067 ], [ -82.007121430999973, 28.841185616000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007121430999973, 28.841185616000075 ], [ -82.007122659999936, 28.840788597000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006622472999936, 28.840800232000049 ], [ -82.006794409999941, 28.840916312000047 ], [ -82.007063736999953, 28.841098731000045 ], [ -82.007081090999975, 28.841111450000028 ], [ -82.007095135999975, 28.841125540000064 ], [ -82.007107158999986, 28.84114266000006 ], [ -82.007115028999976, 28.84115954300006 ], [ -82.007118355999978, 28.841170420000026 ], [ -82.007121430999973, 28.841185616000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005841812999961, 28.84406434400006 ], [ -82.006073629999946, 28.844093840000028 ], [ -82.006253251999965, 28.844108057000028 ], [ -82.00645308999998, 28.844115139000053 ], [ -82.006631486999936, 28.844113439000068 ], [ -82.006834847999983, 28.84410626600004 ], [ -82.007082213999979, 28.844083166000075 ], [ -82.007326244999945, 28.844061666000073 ], [ -82.007537738999986, 28.844047330000024 ], [ -82.007625086999951, 28.844031530000052 ], [ -82.007693791999941, 28.844003298000075 ], [ -82.007749227999966, 28.84396137300007 ], [ -82.007795338999983, 28.843900333000079 ], [ -82.007822428999987, 28.843825289000051 ], [ -82.007822415999954, 28.84364623700003 ], [ -82.007823060999954, 28.843389863000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004572783999947, 28.842534252000064 ], [ -82.004574661999982, 28.842114985000023 ], [ -82.00457266799998, 28.84207826100004 ], [ -82.004587759999936, 28.84202530400006 ], [ -82.004608601999962, 28.841982268000038 ], [ -82.004636776999973, 28.841945214000077 ], [ -82.004668373999948, 28.841916147000063 ], [ -82.004724695999982, 28.841882086000055 ], [ -82.004781463999961, 28.841862760000026 ], [ -82.00486491099997, 28.841846601000043 ], [ -82.005157742999984, 28.841785714000025 ], [ -82.005281332999971, 28.841763549000063 ], [ -82.005360652999968, 28.841757997000059 ], [ -82.00570199799995, 28.84175908900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00577162899998, 28.842837064000037 ], [ -82.005751962999966, 28.842771785000025 ], [ -82.005726577999951, 28.842682170000046 ], [ -82.005706014999987, 28.842566538000028 ], [ -82.005699603999972, 28.842467876000057 ], [ -82.005700387, 28.842246731000046 ], [ -82.005701492999947, 28.841823987000055 ], [ -82.00570199799995, 28.84175908900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004572783999947, 28.842534252000064 ], [ -82.004823743999964, 28.842535123000062 ], [ -82.004888014999949, 28.842518307000034 ], [ -82.004930845, 28.842507599000044 ], [ -82.005012936999947, 28.842474287000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004569448999973, 28.843278157000043 ], [ -82.004569637999964, 28.84323573000006 ], [ -82.004571687999942, 28.842778513000042 ], [ -82.004572783999947, 28.842534252000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004569448999973, 28.843278157000043 ], [ -82.00483279499997, 28.843279074000066 ], [ -82.004946306999955, 28.843283431000032 ], [ -82.005027816999984, 28.843291251000039 ], [ -82.005241077999983, 28.843322874000023 ], [ -82.005501379999941, 28.843365836000032 ], [ -82.005849779999949, 28.843417704000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004640158999962, 28.843927204000067 ], [ -82.004662337999946, 28.843925760000047 ], [ -82.004736717999947, 28.843920916000059 ], [ -82.004818026999942, 28.843917128000044 ], [ -82.004877768999961, 28.843918535000057 ], [ -82.005111057999954, 28.843951034000042 ], [ -82.005462770999941, 28.844006352000065 ], [ -82.005841812999961, 28.84406434400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004640158999962, 28.843927204000067 ], [ -82.004631017999941, 28.843790821000027 ], [ -82.004614745999959, 28.843719200000066 ], [ -82.004589754999984, 28.843644395000069 ], [ -82.00457407, 28.843597445000057 ], [ -82.004565928999966, 28.843486433000066 ], [ -82.004569283999956, 28.843314817000078 ], [ -82.004569448999973, 28.843278157000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00570199799995, 28.84175908900005 ], [ -82.005705127999988, 28.841136063000079 ], [ -82.005705249999949, 28.841107286000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004512517999956, 28.841111880000028 ], [ -82.004681623999943, 28.841147482000054 ], [ -82.004815146999988, 28.841156392000073 ], [ -82.004925992999972, 28.841155554000068 ], [ -82.005088676999947, 28.841136449000032 ], [ -82.005348970999989, 28.841107790000024 ], [ -82.005705249999949, 28.841107286000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007823060999954, 28.843389863000027 ], [ -82.007823588999941, 28.84318053100003 ], [ -82.007825763999961, 28.842668693000064 ], [ -82.00781419599997, 28.842521788000056 ], [ -82.007822293999936, 28.842020440000056 ], [ -82.007830374999969, 28.841325715000039 ], [ -82.007830345999935, 28.840938962000052 ], [ -82.007797800999981, 28.840831532000038 ], [ -82.007675780999989, 28.840731270000049 ], [ -82.007277188999979, 28.840473456000041 ], [ -82.006609282999989, 28.840017279000051 ], [ -82.006300932999977, 28.839808424000068 ], [ -82.006268947999956, 28.839786636000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003719333999982, 28.840276562000042 ], [ -82.003717604999963, 28.840046666000035 ], [ -82.003713197999957, 28.839977518000069 ], [ -82.003670378999971, 28.839746329000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004015742999968, 28.843903220000072 ], [ -82.00410547499996, 28.843921411000053 ], [ -82.004181461999963, 28.843933719000063 ], [ -82.004249515999959, 28.843940656000029 ], [ -82.004333802999952, 28.843944021000027 ], [ -82.004413869999951, 28.843941912000048 ], [ -82.004522798999972, 28.843934845000035 ], [ -82.004640158999962, 28.843927204000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004105552999988, 28.844642282000052 ], [ -82.00409299599994, 28.844605219000073 ], [ -82.004050575999941, 28.844439329000068 ], [ -82.004009654999948, 28.84423528800005 ], [ -82.003991689999964, 28.844144707000055 ], [ -82.00398630899997, 28.844093345000033 ], [ -82.003986986999962, 28.844042332000072 ], [ -82.003993376999972, 28.843996552000078 ], [ -82.004, 28.84396330900006 ], [ -82.004015742999968, 28.843903220000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003716699999984, 28.84099494000003 ], [ -82.003716690999966, 28.84073541500004 ], [ -82.003719538999974, 28.840303745000028 ], [ -82.003719333999982, 28.840276562000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003426640999976, 28.842152838000061 ], [ -82.003436256999976, 28.84214167600004 ], [ -82.003476639999974, 28.842087679000031 ], [ -82.003514001999974, 28.842032220000078 ], [ -82.00355806999994, 28.841957954000065 ], [ -82.003587319999951, 28.841901568000026 ], [ -82.003615743999944, 28.841839173000039 ], [ -82.003641413999958, 28.841773568000065 ], [ -82.003662495999947, 28.841709464000076 ], [ -82.003689606999956, 28.841604419000078 ], [ -82.003700657999957, 28.84153942100005 ], [ -82.00370712299997, 28.841489538000076 ], [ -82.003712469999982, 28.84142367100003 ], [ -82.003714230999947, 28.841359240000031 ], [ -82.003715591999935, 28.841088741000078 ], [ -82.003716699999984, 28.84099494000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003426640999976, 28.842152838000061 ], [ -82.003815206999946, 28.842396374000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002583630999936, 28.842031355000074 ], [ -82.002691680999988, 28.841850135000072 ], [ -82.002843196999947, 28.841609817000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001942037999981, 28.841855925000061 ], [ -82.002012345999958, 28.841861093000034 ], [ -82.00207824499995, 28.841869469000073 ], [ -82.002143411999953, 28.841881354000066 ], [ -82.002229101999944, 28.841902288000028 ], [ -82.002297838999937, 28.841921983000077 ], [ -82.002421059999961, 28.841963329000066 ], [ -82.002523159999953, 28.842003827000042 ], [ -82.002583630999936, 28.842031355000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001942037999981, 28.841855925000061 ], [ -82.001950148999981, 28.841708402000052 ], [ -82.001956673999985, 28.841628292000053 ], [ -82.001968104999946, 28.841567112000064 ], [ -82.002008542999988, 28.841419340000073 ], [ -82.002068711999982, 28.841201956000077 ], [ -82.00208545299995, 28.841148941000029 ], [ -82.002102675999936, 28.841116152000041 ], [ -82.002134029, 28.841074051000078 ], [ -82.002170156999966, 28.841045211000051 ], [ -82.00220068699997, 28.841026180000028 ], [ -82.002245411, 28.841006723000078 ], [ -82.002285281999946, 28.840996092000069 ], [ -82.002320446999988, 28.840991254000073 ], [ -82.002473226999939, 28.840990679000072 ], [ -82.002614433999952, 28.840991164000059 ], [ -82.00303884899995, 28.840993269000023 ], [ -82.003716699999984, 28.84099494000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002583630999936, 28.842031355000074 ], [ -82.002621068999986, 28.842048396000052 ], [ -82.002714238999943, 28.842096472000037 ], [ -82.002785717999984, 28.842137433000062 ], [ -82.002841483999987, 28.842172058000074 ], [ -82.002898149999965, 28.842211522000071 ], [ -82.002932794999936, 28.84224118000003 ], [ -82.002959775999955, 28.842270890000066 ], [ -82.002990284999953, 28.842304483000078 ], [ -82.003022620999957, 28.842352387000062 ], [ -82.003039163999972, 28.842383859000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003039163999972, 28.842383859000051 ], [ -82.003134060999969, 28.842347546000042 ], [ -82.003205116999936, 28.84232004200004 ], [ -82.003259362999984, 28.842293987000062 ], [ -82.003302695999935, 28.842267823000043 ], [ -82.003349588999981, 28.842232869000043 ], [ -82.003388728999937, 28.842196845000046 ], [ -82.003426640999976, 28.842152838000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003039163999972, 28.842383859000051 ], [ -82.003044566999961, 28.842394140000067 ], [ -82.003065982999942, 28.842449596000051 ], [ -82.003076075999957, 28.842487715000061 ], [ -82.003082728999971, 28.842524365000031 ], [ -82.003087691999951, 28.842627472000061 ], [ -82.003093583999942, 28.842858598000078 ], [ -82.003096310999979, 28.842900177000047 ], [ -82.003105003999963, 28.842938012000047 ], [ -82.003112850999969, 28.842968837000058 ], [ -82.003131406999955, 28.843000995000068 ], [ -82.003160655999977, 28.84303546600006 ], [ -82.00318969999995, 28.843061548000037 ], [ -82.003214240999966, 28.843078473000048 ], [ -82.00324059999997, 28.843092787000046 ], [ -82.00328381099996, 28.843109413000036 ], [ -82.003315746999988, 28.843117119000055 ], [ -82.003350162999936, 28.84312155300006 ], [ -82.003819900999986, 28.843124240000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001272807999953, 28.841974095000069 ], [ -82.001323591999949, 28.841960896000046 ], [ -82.001526886999955, 28.841908061000026 ], [ -82.001625700999966, 28.841883334000045 ], [ -82.001695988999984, 28.841870110000059 ], [ -82.001758717999962, 28.841861841000025 ], [ -82.001856398999962, 28.841855396000028 ], [ -82.001942037999981, 28.841855925000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001272807999953, 28.841974095000069 ], [ -82.001239480999971, 28.841856244000041 ], [ -82.001222216999963, 28.841747705000046 ], [ -82.001217102999988, 28.841645712000059 ], [ -82.001274161999959, 28.840948630000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000934263999966, 28.842546133000042 ], [ -82.000786003999963, 28.842493525000066 ], [ -82.000689668999939, 28.84244433300006 ], [ -82.000625445999958, 28.842398557000024 ], [ -82.000574916999938, 28.842331877000049 ], [ -82.000554663999935, 28.842270524000071 ], [ -82.000532160999967, 28.842130950000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000319981999951, 28.840368452000064 ], [ -82.000946604999967, 28.840370742000061 ], [ -82.001030544999935, 28.840371032000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001259541999957, 28.839791607000052 ], [ -82.001288680999949, 28.839772399000026 ], [ -82.001314481999941, 28.839760871000067 ], [ -82.001340970999934, 28.839754740000046 ], [ -82.001766492999934, 28.839754755000058 ], [ -82.002312164999978, 28.839756627000042 ], [ -82.002746917999957, 28.839758122000035 ], [ -82.00276336099995, 28.83975821100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00276336099995, 28.83975821100006 ], [ -82.003228608999962, 28.839766157000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002946404999989, 28.840256197000031 ], [ -82.002944273999958, 28.840241018000029 ], [ -82.002927549999981, 28.840120500000069 ], [ -82.002898450999965, 28.83991080800007 ], [ -82.002890478999973, 28.839854733000038 ], [ -82.002887820999945, 28.839844288000052 ], [ -82.002884017999975, 28.839833939000073 ], [ -82.002879674999974, 28.839824927000052 ], [ -82.002874860999952, 28.839816832000054 ], [ -82.002869418999978, 28.83980918900005 ], [ -82.002862551999954, 28.839801099000056 ], [ -82.002855161999946, 28.839793783000061 ], [ -82.002848856999947, 28.839788411000029 ], [ -82.002840907999939, 28.839782555000056 ], [ -82.002834685999971, 28.839778570000078 ], [ -82.002830795999955, 28.839776314000062 ], [ -82.002825665999978, 28.839773593000075 ], [ -82.002821113999971, 28.839771404000032 ], [ -82.002815783999949, 28.839769090000061 ], [ -82.002809982999963, 28.839766858000075 ], [ -82.002802934999977, 28.839764524000032 ], [ -82.002799184999958, 28.839763444000027 ], [ -82.00279218999998, 28.839761710000062 ], [ -82.002787711999986, 28.839760789000024 ], [ -82.002783769999951, 28.839760096000077 ], [ -82.002779930999964, 28.839759525000034 ], [ -82.002775402999987, 28.839758982000035 ], [ -82.002769549999982, 28.839758486000051 ], [ -82.00276336099995, 28.83975821100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00300630299995, 28.840682912000034 ], [ -82.002946404999989, 28.840256197000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001030544999935, 28.840371032000064 ], [ -82.00111469999996, 28.840371322000067 ], [ -82.002219405999938, 28.840375122000069 ], [ -82.002531216999955, 28.840376192000065 ], [ -82.002827343999968, 28.84037733200006 ], [ -82.002857848999952, 28.840370352000036 ], [ -82.002883069999939, 28.840359664000061 ], [ -82.002904778999948, 28.840344899000058 ], [ -82.002922229999967, 28.840326966000077 ], [ -82.002934066999956, 28.840308628000059 ], [ -82.002942850999943, 28.840285415000039 ], [ -82.002946404999989, 28.840256197000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000532160999967, 28.842130950000069 ], [ -82.000509982999972, 28.841990892000069 ], [ -82.000504132999936, 28.841933930000039 ], [ -82.000499901999945, 28.841850928000042 ], [ -82.000492964999978, 28.841703443000029 ], [ -82.000488730999962, 28.841613460000076 ], [ -82.00047669099996, 28.841421708000041 ], [ -82.000467005999951, 28.841332329000068 ], [ -82.000454857999955, 28.841245118000074 ], [ -82.00044021399998, 28.841158964000044 ], [ -82.000422463999939, 28.841070729000023 ], [ -82.000404967999941, 28.840994974000068 ], [ -82.000356247999946, 28.840810357000066 ], [ -82.000327445999972, 28.840697269000032 ], [ -82.000319585999989, 28.84064365100005 ], [ -82.000313477999953, 28.840586576000078 ], [ -82.000311081999939, 28.840542500000026 ], [ -82.000310621999972, 28.840505448000044 ], [ -82.000312197999961, 28.84045634000006 ], [ -82.000316894999969, 28.84038946000004 ], [ -82.000319981999951, 28.840368452000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000532160999967, 28.842130950000069 ], [ -82.000631034999969, 28.842118317000029 ], [ -82.000735134999957, 28.842101788000036 ], [ -82.000815231999979, 28.842086871000049 ], [ -82.000902204999988, 28.842068467000047 ], [ -82.001045576999957, 28.842033151000066 ], [ -82.001272807999953, 28.841974095000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000319981999951, 28.840368452000064 ], [ -82.000334792, 28.84026764400005 ], [ -82.000359210999989, 28.840086818000032 ], [ -82.000371048999966, 28.840015582000035 ], [ -82.000396325999986, 28.839925808000032 ], [ -82.000414614999954, 28.839876501000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000414614999954, 28.839876501000049 ], [ -82.00043304999997, 28.83983870000003 ], [ -82.000656198999934, 28.839399090000029 ], [ -82.000853365999944, 28.839010323000025 ], [ -82.000878205999982, 28.838951037000072 ], [ -82.000885303999951, 28.838930365000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000885303999951, 28.838930365000067 ], [ -82.001352711999971, 28.839064957000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000571869999987, 28.837821456000029 ], [ -82.000659550999956, 28.837770058000046 ], [ -82.000774971999988, 28.837689017000059 ], [ -82.000852736999946, 28.83762183500005 ], [ -82.000951116999943, 28.837538433000077 ], [ -82.001016790999984, 28.837484181000036 ], [ -82.001089601999979, 28.837445634000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996253678999949, 28.836900546000038 ], [ -81.996296484999959, 28.836898294000036 ], [ -81.996387535999986, 28.836897407000038 ], [ -81.996524421999936, 28.836903735000078 ], [ -81.996666995999988, 28.836919545000057 ], [ -81.996742343999983, 28.836933138000063 ], [ -81.996872436999979, 28.836962493000044 ], [ -81.997009588999958, 28.837003671000048 ], [ -81.997258897999984, 28.83708894800003 ], [ -81.997414594999952, 28.837141994000035 ], [ -81.997590233999972, 28.837190833000079 ], [ -81.997686571999964, 28.837210723000055 ], [ -81.997816818999979, 28.837230471000055 ], [ -81.998107629999936, 28.837269143000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99606472399995, 28.83607399400006 ], [ -81.996063097, 28.836058166000043 ], [ -81.996061924999935, 28.836013319000074 ], [ -81.996069632999934, 28.83583386600003 ], [ -81.996085000999983, 28.835530900000037 ], [ -81.996090461999984, 28.835416440000074 ], [ -81.996087172999978, 28.835358015000054 ], [ -81.99607502799995, 28.835282466000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996253678999949, 28.836900546000038 ], [ -81.996245406999947, 28.836784326000043 ], [ -81.996240815999954, 28.836752343000057 ], [ -81.996228876999965, 28.836702867000042 ], [ -81.996144378999986, 28.836425911000049 ], [ -81.996090674999948, 28.836245106000035 ], [ -81.99607614699994, 28.836185085000068 ], [ -81.99606472399995, 28.83607399400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99606472399995, 28.83607399400006 ], [ -81.996445008999956, 28.836059796000029 ], [ -81.996614176999969, 28.836055314000077 ], [ -81.996711525999956, 28.836059982000052 ], [ -81.996803451999938, 28.836070610000036 ], [ -81.997018773999969, 28.836107686000048 ], [ -81.997321713999952, 28.836160449000033 ], [ -81.997416334999969, 28.836176929000032 ], [ -81.997494549999942, 28.836215098000025 ], [ -81.997544518999973, 28.836260783000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000090204999935, 28.837330316000077 ], [ -82.000010098999951, 28.837279225000032 ], [ -81.999948697999969, 28.837248779000049 ], [ -81.999861216999989, 28.837214735000032 ], [ -81.999784219999981, 28.837192769000069 ], [ -81.999706149999952, 28.83717742500005 ], [ -81.999606650999965, 28.837167332000035 ], [ -81.999542207, 28.837166265000064 ], [ -81.999480307999988, 28.837169254000059 ], [ -81.99934957399995, 28.837188796000078 ], [ -81.999180617999968, 28.837227724000059 ], [ -81.999093202999973, 28.837247436000041 ], [ -81.998931182999968, 28.837276404000079 ], [ -81.998837337999987, 28.837288453000042 ], [ -81.998739076999982, 28.837297437000075 ], [ -81.998631364999937, 28.837303071000065 ], [ -81.998518580999985, 28.837304285000073 ], [ -81.998424346999968, 28.837303151000071 ], [ -81.998326488999965, 28.837297647000071 ], [ -81.998107629999936, 28.837269143000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000571869999987, 28.837821456000029 ], [ -82.000492441999938, 28.837721287000079 ], [ -82.000393834999954, 28.83761391400003 ], [ -82.000178050999978, 28.837398810000025 ], [ -82.000111491999974, 28.837343892000035 ], [ -82.000090204999935, 28.837330316000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000502682, 28.836796914000047 ], [ -82.000551983999969, 28.836730531000057 ], [ -82.000892047999969, 28.836256184000035 ], [ -82.000950344999978, 28.836175282000056 ], [ -82.000975328999971, 28.836131262000038 ], [ -82.000988177999943, 28.836079390000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99607502799995, 28.835282466000024 ], [ -81.996179206999955, 28.835267823000038 ], [ -81.996297119999952, 28.835246668000025 ], [ -81.996386947999952, 28.835227982000049 ], [ -81.996541149999985, 28.835190054000066 ], [ -81.996639311999957, 28.835161932000062 ], [ -81.99673299899996, 28.835132097000042 ], [ -81.996883405999938, 28.835077812000065 ], [ -81.996989306999978, 28.835034625000048 ], [ -81.997065533999944, 28.835000862000072 ], [ -81.997151579, 28.834959925000078 ], [ -81.997260280999967, 28.834903686000075 ], [ -81.997349093999958, 28.834853752000072 ], [ -81.997410276999972, 28.834816412000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997786020999968, 28.835276022000073 ], [ -81.997660689999975, 28.83513875400007 ], [ -81.997410276999972, 28.834816412000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997181540999975, 28.841120397000054 ], [ -81.997181592999937, 28.841120294000063 ], [ -81.997205713999961, 28.841072853000071 ], [ -81.997455176999949, 28.840595385000029 ], [ -81.997752611999942, 28.840026184000067 ], [ -81.99792690299995, 28.839690497000049 ], [ -81.997970493999958, 28.839587494000057 ], [ -81.99801894999996, 28.839431060000038 ], [ -81.998053183999957, 28.839280386000041 ], [ -81.998079589999975, 28.839089097000056 ], [ -81.99808567599996, 28.838972567000042 ], [ -81.998086556999965, 28.83881634100004 ], [ -81.998062562999962, 28.838647302000027 ], [ -81.998040876999937, 28.838437213000077 ], [ -81.998025533999964, 28.838218031000054 ], [ -81.998022810999942, 28.837994754000079 ], [ -81.998031201999936, 28.837832239000079 ], [ -81.998044173999972, 28.837675549000039 ], [ -81.998069820999945, 28.837475285000039 ], [ -81.99809793299994, 28.837314186000071 ], [ -81.998107629999936, 28.837269143000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999788172999956, 28.842139327000041 ], [ -81.99990491899996, 28.842147198000077 ], [ -82.000110985999981, 28.842156746000057 ], [ -82.000310704999947, 28.842149426000049 ], [ -82.000479741999982, 28.842137647000072 ], [ -82.000532160999967, 28.842130950000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999060672999974, 28.842093386000045 ], [ -81.999120102999939, 28.842095136000069 ], [ -81.999259596999934, 28.842104223000035 ], [ -81.999487735999935, 28.842119297000067 ], [ -81.999727285999938, 28.842135223000071 ], [ -81.999788172999956, 28.842139327000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998245782999959, 28.839994142000023 ], [ -81.998507838999956, 28.840034165000077 ], [ -81.99890000299996, 28.840076235000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998900194999976, 28.839743959000032 ], [ -81.998889867999935, 28.839690805000032 ], [ -81.998854914999981, 28.839583874000027 ], [ -81.998812042999987, 28.839491963000057 ], [ -81.99875515399998, 28.839399404000062 ], [ -81.998659203999978, 28.839265802000057 ], [ -81.998622099999977, 28.839227450000067 ], [ -81.998553571999935, 28.839181765000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998899998999946, 28.840076259000057 ], [ -81.998909197999978, 28.840016423000066 ], [ -81.998916705999989, 28.839915500000075 ], [ -81.998909390999984, 28.839791292000029 ], [ -81.998900194999976, 28.839743959000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998900194999976, 28.839743959000032 ], [ -81.999614507999979, 28.83978410800006 ], [ -81.999669906999941, 28.839787245000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999788172999956, 28.842139327000041 ], [ -81.999755284999935, 28.841483030000063 ], [ -81.999723901999971, 28.841255765000028 ], [ -81.999682131999975, 28.841069699000059 ], [ -81.99965115599997, 28.840957636000041 ], [ -81.999611635999941, 28.840797538000061 ], [ -81.999592090999954, 28.840649035000069 ], [ -81.999584523999943, 28.840482405000046 ], [ -81.999599455999942, 28.840308938000078 ], [ -81.99964013999994, 28.840007663000051 ], [ -81.999669906999941, 28.839787245000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999669906999941, 28.839787245000025 ], [ -81.999968601999967, 28.839804164000043 ], [ -82.000161312999978, 28.839815078000072 ], [ -82.000228628999935, 28.839822605000052 ], [ -82.000414614999954, 28.839876501000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998868719999962, 28.840678922000052 ], [ -81.998857870999984, 28.840558797000028 ], [ -81.998868717999983, 28.840310511000041 ], [ -81.99889041199998, 28.840138621000051 ], [ -81.998899998999946, 28.840076259000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998295375999987, 28.841522728000029 ], [ -81.998279287999935, 28.84142048700005 ], [ -81.998248049999972, 28.841279591000045 ], [ -81.998203946, 28.841106808000063 ], [ -81.998185373999945, 28.841017831000045 ], [ -81.998182997999947, 28.840979834000052 ], [ -81.998190861999944, 28.840916894000031 ], [ -81.998213604999989, 28.840873634000047 ], [ -81.998266201999968, 28.840810717000068 ], [ -81.998306749999983, 28.84078173100005 ], [ -81.998339301999977, 28.840765308000073 ], [ -81.998398475999977, 28.840746897000031 ], [ -81.998543346999952, 28.84072591000006 ], [ -81.998868719999962, 28.840678922000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999060672999974, 28.842093386000045 ], [ -81.999041573999989, 28.841686062000065 ], [ -81.999035993999939, 28.841573867000079 ], [ -81.999025967999955, 28.841480322000052 ], [ -81.999004319999983, 28.841336130000059 ], [ -81.998971741999981, 28.841203387000064 ], [ -81.998935476999975, 28.841065373000049 ], [ -81.998900563999939, 28.840915907000067 ], [ -81.998876093999968, 28.840760547000059 ], [ -81.998868719999962, 28.840678922000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997484426999961, 28.841496028000051 ], [ -81.997718002999989, 28.841539382000065 ], [ -81.997874604999936, 28.841553538000028 ], [ -81.998096929999974, 28.841545276000033 ], [ -81.998295375999987, 28.841522728000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998358020999945, 28.842156751000061 ], [ -81.998340069999983, 28.842067503000067 ], [ -81.998331527999937, 28.842007273000036 ], [ -81.998320994999972, 28.841804997000054 ], [ -81.998315325999954, 28.841689470000063 ], [ -81.99830415699995, 28.841578530000049 ], [ -81.998295375999987, 28.841522728000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998358020999945, 28.842156751000061 ], [ -81.998469861, 28.842139311000039 ], [ -81.998599646999935, 28.842119206000064 ], [ -81.998736763999943, 28.842102880000027 ], [ -81.998824552999963, 28.842096212000058 ], [ -81.998930990999952, 28.842092037000043 ], [ -81.999000404999947, 28.842091612000047 ], [ -81.999060672999974, 28.842093386000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997598628999981, 28.842262274000063 ], [ -81.997663496999962, 28.842258112000025 ], [ -81.997800843999983, 28.842242673000044 ], [ -81.998071987999936, 28.842199705000041 ], [ -81.998303568999972, 28.842165242000078 ], [ -81.998358020999945, 28.842156751000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99686202099997, 28.842215919000068 ], [ -81.997204326999963, 28.842256987000042 ], [ -81.997394127999939, 28.842266540000026 ], [ -81.997564709999949, 28.842264449000027 ], [ -81.997598628999981, 28.842262274000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999154411999939, 28.846455169000023 ], [ -81.999466421999955, 28.846206530000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000004575999981, 28.846863925000036 ], [ -82.000008058999981, 28.846855402000074 ], [ -82.000014226999951, 28.846835335000037 ], [ -82.00001773799994, 28.846819096000047 ], [ -82.000019974999987, 28.846802865000029 ], [ -82.000020937999977, 28.846788061000041 ], [ -82.000020889999973, 28.846773493000057 ], [ -82.000018454999974, 28.846748192000064 ], [ -82.000013709999962, 28.846725657000036 ], [ -82.000005399999964, 28.846700552000073 ], [ -81.999994332999961, 28.84667680900003 ], [ -81.999981971999944, 28.846656027000051 ], [ -81.999965200999952, 28.846630479000055 ], [ -81.999945748999949, 28.846603251000033 ], [ -81.999923421999938, 28.84657463700006 ], [ -81.999896891999981, 28.846543686000075 ], [ -81.999870341999952, 28.846515840000052 ], [ -81.999847600999942, 28.846493234000036 ], [ -81.999812621999979, 28.846461932000068 ], [ -81.999782642999946, 28.846437583000068 ], [ -81.999754546999952, 28.846416592000026 ], [ -81.999634183999945, 28.846334720000073 ], [ -81.999563586999955, 28.846286865000025 ], [ -81.999535613999967, 28.846266420000063 ], [ -81.999510673999964, 28.846246463000057 ], [ -81.999476975999983, 28.846217270000068 ], [ -81.999466421999955, 28.846206530000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062814546999959, 28.738516667000056 ], [ -82.062771396999949, 28.738425525000025 ], [ -82.062761429999966, 28.738281269000026 ], [ -82.062756432999947, 28.738196277000043 ], [ -82.062753743999963, 28.737734221000039 ], [ -82.062753085999987, 28.73663268100006 ], [ -82.062738010999965, 28.735442517000024 ], [ -82.062736860999962, 28.734481518000052 ], [ -82.062736195999946, 28.734341547000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062736195999946, 28.734341547000042 ], [ -82.062429574999953, 28.734337868000068 ], [ -82.061880262999978, 28.734338121000064 ], [ -82.061415456999953, 28.734332603000041 ], [ -82.060944140999936, 28.734313717000077 ], [ -82.060386146999974, 28.734289139000055 ], [ -82.059512859999984, 28.734255148000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062772720999988, 28.734178995000036 ], [ -82.062756695999951, 28.73419638300004 ], [ -82.062742625999988, 28.734223128000053 ], [ -82.062735062999934, 28.734256556000048 ], [ -82.062736195999946, 28.734341547000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062772720999988, 28.734178995000036 ], [ -82.062764882999943, 28.734117117000039 ], [ -82.062775730999988, 28.733781705000069 ], [ -82.06276522099995, 28.733646885000041 ], [ -82.062765123999952, 28.733484482000051 ], [ -82.062775294999938, 28.733052426000029 ], [ -82.062759195999945, 28.732546742000068 ], [ -82.062740024999982, 28.731233993000046 ], [ -82.062766859999954, 28.729986050000036 ], [ -82.062821647999954, 28.729362059000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050056455999936, 28.856257156000026 ], [ -82.049892105999959, 28.856327383000064 ], [ -82.049745160999976, 28.856336208000073 ], [ -82.049588247999964, 28.856334073000028 ], [ -82.049148898999988, 28.856340996000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121050236999963, 28.78981772700007 ], [ -82.121158614999956, 28.789626472000066 ], [ -82.121683978999954, 28.788765101000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121050236999963, 28.78981772700007 ], [ -82.121229052, 28.78997929600007 ], [ -82.121328435999942, 28.790105967000045 ], [ -82.121397918999946, 28.790172211000026 ], [ -82.121476017999953, 28.790214159000072 ], [ -82.121588794, 28.790246526000033 ], [ -82.121742793999942, 28.790303684000037 ], [ -82.121857809999938, 28.790395256000068 ], [ -82.121932131999984, 28.790501047000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119048477999968, 28.78766513000005 ], [ -82.119085429999984, 28.788131115000056 ], [ -82.119089038999959, 28.788254873000028 ], [ -82.11910646299998, 28.788325143000066 ], [ -82.119146014999956, 28.788362296000059 ], [ -82.119248689999949, 28.788388997000027 ], [ -82.119404866999957, 28.788396691000059 ], [ -82.119575631999965, 28.788392058000056 ], [ -82.119739093999954, 28.788385213000026 ], [ -82.120035622999978, 28.788388300000065 ], [ -82.120894780999947, 28.788380836000044 ], [ -82.12136617699997, 28.788377064000031 ], [ -82.121788147999951, 28.788369986000077 ], [ -82.122147868999946, 28.788363381000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118663567999988, 28.780486364000069 ], [ -82.118738406999967, 28.780528316000073 ], [ -82.118811065999978, 28.780558811000049 ], [ -82.119096722999984, 28.780564987000048 ], [ -82.119629872999951, 28.780574405000038 ], [ -82.120291531999953, 28.780580245000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12074993899995, 28.780988721000028 ], [ -82.122487396999986, 28.780971830000055 ], [ -82.124200606999977, 28.780965803000072 ], [ -82.124813245999974, 28.780962947000035 ], [ -82.126240130999975, 28.780953599000043 ], [ -82.12638579999998, 28.78094429500004 ], [ -82.126470648999941, 28.780940477000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120614199999977, 28.778123677000053 ], [ -82.120729296999968, 28.778097071000047 ], [ -82.120862045999957, 28.778073078000034 ], [ -82.121059858999956, 28.77807290100003 ], [ -82.12310352999998, 28.778048258000069 ], [ -82.124639965999961, 28.778051192000078 ], [ -82.124807524999937, 28.778051037000068 ], [ -82.124951126999974, 28.778033329000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119142636999982, 28.778991208000036 ], [ -82.119195131999959, 28.778988165000044 ], [ -82.119261007999967, 28.778965188000029 ], [ -82.119455089999974, 28.77882750200007 ], [ -82.119654191999985, 28.778690099000073 ], [ -82.120300149999935, 28.778309859000046 ], [ -82.12040269299996, 28.778238289000058 ], [ -82.120470613999942, 28.778191046000074 ], [ -82.120553619999953, 28.778147463000039 ], [ -82.120614199999977, 28.778123677000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122180323999942, 28.66258184000003 ], [ -82.122565300999952, 28.662581791000036 ], [ -82.122913513999947, 28.662591789000032 ], [ -82.123190269999952, 28.662602997000079 ], [ -82.123287700999981, 28.662590303000059 ], [ -82.123339657999963, 28.662578796000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123339657999963, 28.662578796000048 ], [ -82.123404581999978, 28.662545504000036 ], [ -82.12342401099994, 28.662495064000041 ], [ -82.123424979999982, 28.662397385000077 ], [ -82.123424717999967, 28.66217393900007 ], [ -82.123427168999967, 28.661964754000053 ], [ -82.123429496999961, 28.661632147000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.247754877999967, 28.702795307000031 ], [ -82.247802452999963, 28.702392436000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129078771999957, 28.650379431000033 ], [ -82.129107371999964, 28.650395447000051 ], [ -82.129143771999964, 28.650407167000026 ], [ -82.129804156999967, 28.650412534000054 ], [ -82.131035150999935, 28.650413529000048 ], [ -82.13161600899997, 28.650388981000049 ], [ -82.131883176999963, 28.650387863000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129078771999957, 28.650379431000033 ], [ -82.12909564399996, 28.650365663000059 ], [ -82.129120285999988, 28.650332406000075 ], [ -82.129141006999987, 28.650278526000079 ], [ -82.129148318999967, 28.650193481000031 ], [ -82.129133214999968, 28.649543164000079 ], [ -82.129125883999961, 28.649334646000057 ], [ -82.129132566999942, 28.648603130000026 ], [ -82.129153470999938, 28.647993837000058 ], [ -82.129167034999966, 28.647577455000032 ], [ -82.129182722999985, 28.646244298000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008853904999967, 28.847338365000041 ], [ -82.008798578999972, 28.847337220000043 ], [ -82.008536099999958, 28.847335327000053 ], [ -82.008230235999974, 28.84733725600006 ], [ -82.007955824999954, 28.847337272000061 ], [ -82.007735645999958, 28.847344925000073 ], [ -82.007518721999986, 28.847364036000045 ], [ -82.007273597999983, 28.847395563000077 ], [ -82.007088127999964, 28.847431860000029 ], [ -82.006926522999947, 28.847466246000067 ], [ -82.006736714999988, 28.847515913000052 ], [ -82.006562093999946, 28.847570354000027 ], [ -82.006373371999985, 28.847638165000035 ], [ -82.006135843999971, 28.847738445000061 ], [ -82.005943869999953, 28.847829174000026 ], [ -82.005668380999964, 28.847987707000073 ], [ -82.005487252999956, 28.84810708200007 ], [ -82.005305041999975, 28.848241736000034 ], [ -82.005151029, 28.848365886000067 ], [ -82.005004609999958, 28.848503404000041 ], [ -82.004899404999946, 28.848606542000027 ], [ -82.004872300999978, 28.848632261000034 ], [ -82.004848873999947, 28.848652124000068 ], [ -82.004824144999986, 28.848669314000063 ], [ -82.004789871999947, 28.848688032000041 ], [ -82.004759500999967, 28.848701402000074 ], [ -82.00473173599994, 28.848709808000024 ], [ -82.004698687999962, 28.848715965000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004615117999947, 28.849195627000029 ], [ -82.004615376999936, 28.849195646000055 ], [ -82.004658825999968, 28.849192646000063 ], [ -82.004701213999965, 28.849183719000052 ], [ -82.004741502999934, 28.849169086000074 ], [ -82.004778708999936, 28.849149104000048 ], [ -82.004811922999977, 28.849124260000053 ], [ -82.004840333999937, 28.849095163000072 ], [ -82.004863246999946, 28.849062521000064 ], [ -82.004880100999969, 28.849027136000075 ], [ -82.004890485999965, 28.848989870000025 ], [ -82.004894147999948, 28.848951635000049 ], [ -82.004890994999982, 28.848913364000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003659681999977, 28.849733611000033 ], [ -82.003815790999965, 28.849630703000059 ], [ -82.004050069999948, 28.849454986000069 ], [ -82.00428444299996, 28.849277525000048 ], [ -82.004354724999985, 28.849226719000058 ], [ -82.004384009999967, 28.849212050000062 ], [ -82.004411342999958, 28.849200590000066 ], [ -82.00444648499996, 28.849188556000058 ], [ -82.004475118999949, 28.849183972000048 ], [ -82.004525354999942, 28.849182499000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004336393999949, 28.848942866000073 ], [ -82.00433861099998, 28.848981824000077 ], [ -82.004347808999967, 28.849019981000026 ], [ -82.004363755999975, 28.849056372000064 ], [ -82.004386050999983, 28.849090080000053 ], [ -82.004414129999986, 28.84912025400007 ], [ -82.004447281999944, 28.849146130000065 ], [ -82.004484670999943, 28.849167054000077 ], [ -82.004525354999942, 28.849182499000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003235072999985, 28.847686266000039 ], [ -82.003484210999943, 28.847843377000061 ], [ -82.003611716999956, 28.847939628000063 ], [ -82.003692439999952, 28.848003966000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004698687999962, 28.848715965000054 ], [ -82.004667322999978, 28.848709012000029 ], [ -82.004635253999936, 28.848705305000067 ], [ -82.004602913999975, 28.848704893000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004050664999966, 28.848276934000069 ], [ -82.003926725999975, 28.848150639000039 ], [ -82.003816089999987, 28.848063551000052 ], [ -82.003692439999952, 28.848003966000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004602913999975, 28.848704893000047 ], [ -82.00456100699995, 28.848709317000043 ], [ -82.004520338999953, 28.848719260000053 ], [ -82.004481840999972, 28.848734495000031 ], [ -82.004446396999981, 28.848754672000041 ], [ -82.004414819999965, 28.848779328000035 ], [ -82.004387830999974, 28.848807901000043 ], [ -82.004366051999966, 28.848839731000055 ], [ -82.004349979999972, 28.848874092000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004349979999972, 28.848874092000074 ], [ -82.004340395999975, 28.84890805200007 ], [ -82.004336393999949, 28.848942866000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003692439999952, 28.848003966000078 ], [ -82.00373149099994, 28.848105953000072 ], [ -82.003825206999977, 28.848213668000028 ], [ -82.003965231999985, 28.84835380100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999549787999968, 28.853574737000031 ], [ -81.99951617499994, 28.853521819000036 ], [ -81.999497301999952, 28.853487441000027 ], [ -81.999483635, 28.853450198000075 ], [ -81.999473221999949, 28.853394048000041 ], [ -81.999471269999958, 28.853330448000065 ], [ -81.999478098999987, 28.853269449000038 ], [ -81.999584556999935, 28.852866113000061 ], [ -81.999687601999938, 28.852603503000068 ], [ -81.99975810799998, 28.852446891000056 ], [ -81.999852921999945, 28.852261554000052 ], [ -81.999977211999976, 28.852054410000051 ], [ -82.000076996999951, 28.85190287100005 ], [ -82.000241871999947, 28.851685801000031 ], [ -82.000350339999954, 28.851562613000056 ], [ -82.000453382999979, 28.851452793000078 ], [ -82.00058245699995, 28.851323875000048 ], [ -82.000746240999945, 28.851184452000041 ], [ -82.000926294999942, 28.851037389000055 ], [ -82.001133463999963, 28.850891281000031 ], [ -82.001414389999979, 28.850720343000035 ], [ -82.001642166999943, 28.850600973000041 ], [ -82.001891636999972, 28.85048828500004 ], [ -82.00215303799996, 28.850389922000033 ], [ -82.002537004999965, 28.850270547000036 ], [ -82.002711631999944, 28.850206562000039 ], [ -82.002867820999938, 28.85014639700006 ], [ -82.003016416999969, 28.850080503000072 ], [ -82.003206229999989, 28.849993599000072 ], [ -82.003394955999966, 28.849894280000058 ], [ -82.003608628999984, 28.849767266000072 ], [ -82.003659681999977, 28.849733611000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000004575999981, 28.846863925000036 ], [ -82.000215776999937, 28.846920437000051 ], [ -82.000305006999952, 28.84692876500003 ], [ -82.00035616599996, 28.846931145000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999536407999983, 28.847147910000047 ], [ -81.999770684999987, 28.847044237000034 ], [ -81.999845616999949, 28.847010285000067 ], [ -81.999866881999935, 28.84700065100003 ], [ -81.999895854999977, 28.846985957000072 ], [ -81.999916233999954, 28.846972949000076 ], [ -81.999931790999938, 28.846961187000034 ], [ -81.999946902999966, 28.846947514000078 ], [ -81.999960493999936, 28.846933979000028 ], [ -81.999970713999971, 28.846921940000072 ], [ -81.99998261199994, 28.846905655000057 ], [ -81.999992386999963, 28.846889712000063 ], [ -82.000000783999951, 28.84687320200004 ], [ -82.000004575999981, 28.846863925000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999466421999955, 28.846206530000075 ], [ -81.999425244999941, 28.846162309000078 ], [ -81.999388215999943, 28.846115219000069 ], [ -81.999250059999952, 28.845909955000025 ], [ -81.999181524999983, 28.845819978000065 ], [ -81.999099036999951, 28.845720945000039 ], [ -81.999004704999948, 28.845618585000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998286703999952, 28.845971484000074 ], [ -81.998281334999945, 28.845961361000036 ], [ -81.998263345999987, 28.845925582000064 ], [ -81.998253946999967, 28.845906066000055 ], [ -81.998243663999972, 28.845884002000048 ], [ -81.998231243999953, 28.845856260000062 ], [ -81.998217442999987, 28.845823848000066 ], [ -81.998138971999936, 28.845632941000076 ], [ -81.998096631999942, 28.84552992700003 ], [ -81.998068365999984, 28.845461157000045 ], [ -81.998034348999965, 28.845378393000033 ], [ -81.998000685999955, 28.845296488000031 ], [ -81.997974951999936, 28.845233877000055 ], [ -81.997952430999987, 28.845179079000047 ], [ -81.99793582999996, 28.845138692000035 ], [ -81.997918781999942, 28.845097208000027 ], [ -81.997902734999968, 28.845058169000026 ], [ -81.997888065999973, 28.845022475000064 ], [ -81.99786887199997, 28.844975776000069 ], [ -81.997855173999938, 28.844942447000051 ], [ -81.99784042899995, 28.84490657200007 ], [ -81.997823363999942, 28.844865052000046 ], [ -81.99780597299997, 28.844822738000062 ], [ -81.997786860999952, 28.844776238000065 ], [ -81.997771125999975, 28.84473795200006 ], [ -81.997762895999983, 28.844717928000023 ], [ -81.997750254999971, 28.84468735300004 ], [ -81.997738847999983, 28.844661909000024 ], [ -81.997732773999985, 28.844649290000064 ], [ -81.997723725999947, 28.844631499000059 ], [ -81.997714008999935, 28.844613553000045 ], [ -81.997706085999937, 28.844599691000042 ], [ -81.997688896999989, 28.844571655000038 ], [ -81.997671884999988, 28.84454622100003 ], [ -81.997661526999934, 28.844531690000053 ], [ -81.997646621999934, 28.844511888000056 ], [ -81.997627597999951, 28.844488174000048 ], [ -81.997611007999978, 28.844469051000033 ], [ -81.997589835999975, 28.84444608900003 ], [ -81.997569977999945, 28.844425994000062 ], [ -81.99755756899998, 28.844414075000032 ], [ -81.997537565999949, 28.844395809000048 ], [ -81.997520272999964, 28.844380846000035 ], [ -81.997495859999958, 28.844359977000067 ], [ -81.997474128999954, 28.844341401000065 ], [ -81.997437911999953, 28.844310442000051 ], [ -81.997408939999957, 28.844285675000037 ], [ -81.997376227999951, 28.844257712000058 ], [ -81.99734413699997, 28.84423021300006 ], [ -81.997315546999971, 28.844204823000041 ], [ -81.997300303999964, 28.84419063200005 ], [ -81.997285261999934, 28.844176627000024 ], [ -81.99725714899995, 28.844149166000079 ], [ -81.997239845999957, 28.844131602000061 ], [ -81.997211968999977, 28.844102167000074 ], [ -81.997194549999961, 28.844083014000034 ], [ -81.997180027999946, 28.844066567000027 ], [ -81.997150647999945, 28.844031862000065 ], [ -81.997135511999943, 28.844013181000037 ], [ -81.997126600999934, 28.844001731000048 ], [ -81.997112009999967, 28.843982984000036 ], [ -81.99709037699995, 28.84395379700004 ], [ -81.997063314999934, 28.843915179000078 ], [ -81.997035736999976, 28.843873218000056 ], [ -81.997019442999942, 28.843846702000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999330834999967, 28.847781156000053 ], [ -81.99932387399997, 28.847764221000034 ], [ -81.999313812999958, 28.847739742000044 ], [ -81.999305848999938, 28.847720367000079 ], [ -81.999291952999954, 28.847686562000035 ], [ -81.999281631999963, 28.847661450000032 ], [ -81.999271348999969, 28.847636432000058 ], [ -81.999257897999939, 28.847603709000055 ], [ -81.999247736999962, 28.847578989000056 ], [ -81.999236617999941, 28.847551933000034 ], [ -81.999228047999964, 28.847531084000025 ], [ -81.999214949999953, 28.847499217000063 ], [ -81.999204674999987, 28.847474221000027 ], [ -81.999190359999943, 28.847439392000069 ], [ -81.999179141999946, 28.847412098000063 ], [ -81.99916591799996, 28.847379926000031 ], [ -81.999155296999959, 28.847354086000053 ], [ -81.999143935999939, 28.847326446000068 ], [ -81.999134926999943, 28.847304527000063 ], [ -81.999127696999949, 28.847286954000026 ], [ -81.999123553999937, 28.847277080000026 ], [ -81.999117148999972, 28.847262258000057 ], [ -81.999104491999958, 28.847234375000028 ], [ -81.999096690999977, 28.847218020000071 ], [ -81.999084779999976, 28.84719412000004 ], [ -81.999072516999945, 28.847170725000069 ], [ -81.999058436999974, 28.847145198000078 ], [ -81.999042618999965, 28.847117962000027 ], [ -81.999028282999973, 28.84709364400004 ], [ -81.999008389999972, 28.84705989400004 ], [ -81.998986065999986, 28.847022020000054 ], [ -81.998975261999988, 28.847003799000049 ], [ -81.99894772, 28.84695696600005 ], [ -81.998928926999952, 28.846925084000077 ], [ -81.99890955799998, 28.846892224000044 ], [ -81.998891468999943, 28.846861536000063 ], [ -81.998874087, 28.846832043000063 ], [ -81.99885752199998, 28.846803943000054 ], [ -81.998831560999974, 28.846759896000037 ], [ -81.998802173999934, 28.846710042000041 ], [ -81.998777292999989, 28.846667831000047 ], [ -81.998752397999965, 28.84662559700007 ], [ -81.998728121999989, 28.846584607000068 ], [ -81.998715115999971, 28.846563588000038 ], [ -81.998706195999944, 28.846549660000051 ], [ -81.998691080999947, 28.846526883000024 ], [ -81.998681461999979, 28.846512894000057 ], [ -81.998665326999969, 28.846490235000033 ], [ -81.998651075999987, 28.846471002000044 ], [ -81.998637529999939, 28.846453349000058 ], [ -81.998616704999961, 28.84642731100007 ], [ -81.998604913999941, 28.846413114000029 ], [ -81.99859055099995, 28.846396323000079 ], [ -81.998558367999976, 28.846360378000043 ], [ -81.998536719999947, 28.846335941000063 ], [ -81.998509869999964, 28.846304460000056 ], [ -81.998491163999972, 28.846281709000039 ], [ -81.99846432399994, 28.846247797000046 ], [ -81.998449586999982, 28.846228490000044 ], [ -81.998421274999941, 28.846189925000033 ], [ -81.998393574999966, 28.846150126000055 ], [ -81.998383735999937, 28.846135450000077 ], [ -81.998363216999962, 28.846103850000077 ], [ -81.998346893999951, 28.846077674000071 ], [ -81.99833320099998, 28.846054947000027 ], [ -81.998320456999977, 28.846033107000039 ], [ -81.998308768999948, 28.846012452000025 ], [ -81.998299624999959, 28.845995851000055 ], [ -81.998286703999952, 28.845971484000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998286703999952, 28.845971484000074 ], [ -81.998545920999959, 28.845888894000041 ], [ -81.998644723999973, 28.845852775000026 ], [ -81.998741147999965, 28.845805397000049 ], [ -81.998824014999968, 28.845753040000034 ], [ -81.999004704999948, 28.845618585000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997820893999972, 28.846119897000051 ], [ -81.998286703999952, 28.845971484000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998675983999988, 28.84753261700007 ], [ -81.998500069999977, 28.847390465000046 ], [ -81.998326941999949, 28.847213967000073 ], [ -81.998262152999985, 28.847129770000038 ], [ -81.998170193999954, 28.846967040000038 ], [ -81.998015624999937, 28.846593681000058 ], [ -81.997841386999937, 28.846169757000041 ], [ -81.997820893999972, 28.846119897000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997019444999978, 28.843846707000068 ], [ -81.996944361999965, 28.843881862000046 ], [ -81.996894846999965, 28.843904182000074 ], [ -81.996857349999971, 28.84391802600004 ], [ -81.996823789999951, 28.843928127000027 ], [ -81.996789109999952, 28.843936441000039 ], [ -81.996683, 28.84395773600005 ], [ -81.996432185999936, 28.844005476000063 ], [ -81.99636137899995, 28.844019115000037 ], [ -81.996283053999946, 28.84402934600007 ], [ -81.996223501999964, 28.844031385000051 ], [ -81.99615109399997, 28.844028825000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997820893999972, 28.846119897000051 ], [ -81.997594714999934, 28.845569590000025 ], [ -81.997323419999987, 28.844909503000054 ], [ -81.99730113399994, 28.844855280000047 ], [ -81.997278826999946, 28.844809630000043 ], [ -81.997251074999951, 28.844773281000073 ], [ -81.99722044799995, 28.844744983000055 ], [ -81.997179636999988, 28.844718341000032 ], [ -81.997134165999967, 28.844698737000044 ], [ -81.997079563999989, 28.84468582900007 ], [ -81.997031403999983, 28.844682309000063 ], [ -81.996827458999974, 28.844687662000069 ], [ -81.996478257999968, 28.844696620000036 ], [ -81.996395660999951, 28.844691642000043 ], [ -81.996360133999985, 28.844682963000025 ], [ -81.996317075999968, 28.844665942000063 ], [ -81.996260724999956, 28.844633263000048 ], [ -81.996234185999981, 28.844601695000051 ], [ -81.996198534999962, 28.844552398000076 ], [ -81.996182327999975, 28.844511236000073 ], [ -81.996175656999981, 28.844470908000062 ], [ -81.996172550999972, 28.844429812000044 ], [ -81.99615109399997, 28.844028825000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99615109399997, 28.844028825000066 ], [ -81.996107371999983, 28.844027280000034 ], [ -81.996032228999979, 28.844020263000061 ], [ -81.995885535999946, 28.843997525000077 ], [ -81.995814629999984, 28.843979936000039 ], [ -81.995718427999975, 28.843952048000062 ], [ -81.995631755999966, 28.843921159000047 ], [ -81.995554657999946, 28.843887813000038 ], [ -81.995517296999935, 28.843865704000052 ], [ -81.995452618999934, 28.843815758000062 ], [ -81.99541523299996, 28.843763728000056 ], [ -81.995381499999951, 28.843707023000036 ], [ -81.995370235999985, 28.843657919000066 ], [ -81.995363397999938, 28.843607974000065 ], [ -81.995368688999974, 28.843532794000055 ], [ -81.995386416999963, 28.843450623000024 ], [ -81.995411455999943, 28.843366605000028 ], [ -81.995456086, 28.843259394000029 ], [ -81.995493905999979, 28.843180765000056 ], [ -81.99551173499998, 28.843152810000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99551173499998, 28.843152810000049 ], [ -81.995596979999959, 28.843186423000077 ], [ -81.995639371999971, 28.843198201000064 ], [ -81.995691715999953, 28.843206613000063 ], [ -81.995900766999966, 28.843228374000034 ], [ -81.996146515999953, 28.843253048000065 ], [ -81.996237573999963, 28.843269244000055 ], [ -81.996370823999939, 28.843303746000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994905269999947, 28.84318808300003 ], [ -81.994996832999959, 28.843158413000026 ], [ -81.995097516999977, 28.843134367000062 ], [ -81.995258434999982, 28.843107015000044 ], [ -81.995291696999971, 28.843104637000067 ], [ -81.995351164999988, 28.843106629000033 ], [ -81.995410566999965, 28.843116788000032 ], [ -81.995447491999983, 28.843127536000054 ], [ -81.99551173499998, 28.843152810000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99551173499998, 28.843152810000049 ], [ -81.995597068999984, 28.843019005000031 ], [ -81.995831788999965, 28.842668582000044 ], [ -81.995993963999979, 28.842424154000071 ], [ -81.996030571999938, 28.842360193000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996030571999938, 28.842360193000047 ], [ -81.996182208999983, 28.842422490000047 ], [ -81.996271697999987, 28.842456180000056 ], [ -81.996370662999936, 28.842489870000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994905269999947, 28.84318808300003 ], [ -81.994864675999963, 28.843089503000044 ], [ -81.994854864, 28.843044156000076 ], [ -81.994850790999976, 28.842985808000037 ], [ -81.994854161999967, 28.84294019400005 ], [ -81.994860073999973, 28.842907938000053 ], [ -81.994880708999972, 28.842844640000067 ], [ -81.994906951999951, 28.842793868000058 ], [ -81.994960462999984, 28.842713389000039 ], [ -81.995045844999936, 28.842585923000058 ], [ -81.995148922999988, 28.842432032000033 ], [ -81.995306166999967, 28.842198253000049 ], [ -81.99539436799995, 28.842056946000071 ], [ -81.995445731999951, 28.841958053000042 ], [ -81.99548631, 28.841872563000038 ], [ -81.995517735999954, 28.841779485000075 ], [ -81.995592430999977, 28.841547843000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991358203999937, 28.843226407000031 ], [ -81.991481436999948, 28.843321201000037 ], [ -81.99160737699998, 28.843364535000035 ], [ -81.992166000999987, 28.843376143000057 ], [ -81.992309353999985, 28.843370141000037 ], [ -81.992486841999948, 28.843322068000077 ], [ -81.992747096999949, 28.843207821000078 ], [ -81.992866478999986, 28.843154384000059 ], [ -81.992929579999952, 28.843136366000067 ], [ -81.993020211999976, 28.843119459000036 ], [ -81.993098019999934, 28.843114026000023 ], [ -81.99331406899995, 28.843101427000079 ], [ -81.993473016999985, 28.843092159000037 ], [ -81.993626853999956, 28.843081712000071 ], [ -81.993784485999981, 28.843102733000023 ], [ -81.993863387999966, 28.843132458000071 ], [ -81.993932825999934, 28.843164186000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993932825999934, 28.843164186000024 ], [ -81.994002294999973, 28.843195927000068 ], [ -81.994159294999974, 28.843268057000046 ], [ -81.994230850999941, 28.843291928000042 ], [ -81.994304731999989, 28.84330839200004 ], [ -81.994372940999938, 28.843316353000034 ], [ -81.994444402999989, 28.843318312000065 ], [ -81.994527914999935, 28.843310147000068 ], [ -81.994573036999952, 28.843301386000064 ], [ -81.99462506499998, 28.843287733000068 ], [ -81.994719054999962, 28.843256061000034 ], [ -81.994862410999986, 28.843201973000077 ], [ -81.994905269999947, 28.84318808300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993932825999934, 28.843164186000024 ], [ -81.994098801999939, 28.842816001000074 ], [ -81.994182615999989, 28.84264220600005 ], [ -81.994270805999975, 28.842488161000063 ], [ -81.994430367999939, 28.842248766000068 ], [ -81.994614870999953, 28.841973318000043 ], [ -81.994724884999982, 28.841807782000046 ], [ -81.994792543999949, 28.841678022000053 ], [ -81.994842012999982, 28.841537092000067 ], [ -81.99489418099995, 28.841377110000053 ], [ -81.99490551699995, 28.841343179000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995592430999977, 28.841547843000058 ], [ -81.995541335999974, 28.841534874000047 ], [ -81.994905511999946, 28.841343195000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99490551699995, 28.841343179000035 ], [ -81.994926536999969, 28.841280257000051 ], [ -81.994951248999939, 28.841224557000032 ], [ -81.99499394999998, 28.841145377000032 ], [ -81.995046821999949, 28.841074300000059 ], [ -81.995096235999938, 28.841013929000042 ], [ -81.995162726999979, 28.840951023000059 ], [ -81.995311920999939, 28.84083170100007 ], [ -81.995398851999937, 28.840763935000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994606385999987, 28.850620004000064 ], [ -81.994635698999957, 28.850615349000066 ], [ -81.994879767999976, 28.850591532000067 ], [ -81.995143445999986, 28.850597251000067 ], [ -81.995288099999982, 28.850609645000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98970554899995, 28.848915114000079 ], [ -81.989918245999945, 28.848983478000036 ], [ -81.990132872999936, 28.849046994000048 ], [ -81.990349288999937, 28.849105616000031 ], [ -81.990567347999956, 28.849159309000072 ], [ -81.990669429999969, 28.849181963000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991045412999938, 28.85107821500003 ], [ -81.990873883999939, 28.85102435400006 ], [ -81.990761944999974, 28.850989205000076 ], [ -81.990625557999977, 28.850945988000035 ], [ -81.990519402999951, 28.850882553000076 ], [ -81.990483496999957, 28.850827922000065 ], [ -81.990458612999987, 28.850758614000029 ], [ -81.990455527999984, 28.85070819200007 ], [ -81.990463141999953, 28.850662175000025 ], [ -81.990488235999976, 28.850603324000076 ], [ -81.99076245599997, 28.850060360000043 ], [ -81.990855740999962, 28.849841686000048 ], [ -81.990906874999951, 28.849672347000023 ], [ -81.991007821999972, 28.849251759000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991007821999972, 28.849251759000026 ], [ -81.991248617999986, 28.849293473000046 ], [ -81.991490642999963, 28.84932924800006 ], [ -81.991733710999938, 28.849359055000036 ], [ -81.991977626999983, 28.849382871000046 ], [ -81.992222205999951, 28.849400679000041 ], [ -81.992325389999962, 28.849406379000072 ], [ -81.992612908999945, 28.849412069000039 ], [ -81.992932881999934, 28.849392987000044 ], [ -81.993366744999946, 28.849326162000068 ], [ -81.993849419999947, 28.849211592000074 ], [ -81.994127754999965, 28.84909990400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994127754999965, 28.84909990400007 ], [ -81.99426935799994, 28.849043083000026 ], [ -81.994690037999987, 28.848872622000044 ], [ -81.995113056999969, 28.848705521000056 ], [ -81.995375994999961, 28.84862786900004 ], [ -81.995424054999944, 28.848615078000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98680626099997, 28.847214756000028 ], [ -81.987743634999958, 28.847955897000077 ], [ -81.987863657999981, 28.848046490000058 ], [ -81.98798828799994, 28.848132125000063 ], [ -81.988117257999988, 28.848212624000041 ], [ -81.988250298999958, 28.84828781300007 ], [ -81.988372569999967, 28.84835227700006 ], [ -81.988496014999953, 28.848414986000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988496014999953, 28.848414986000023 ], [ -81.988730774999965, 28.848527897000054 ], [ -81.988969329999975, 28.848634461000074 ], [ -81.989211460999968, 28.848734579000052 ], [ -81.989456943999983, 28.848828160000039 ], [ -81.98970554899995, 28.848915114000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988544624999975, 28.848340749000045 ], [ -81.988806400999977, 28.847940968000046 ], [ -81.989112407999983, 28.847464219000074 ], [ -81.989201097999967, 28.847296155000038 ], [ -81.989246888999958, 28.847201372000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990821962999973, 28.84718977600005 ], [ -81.990596578999941, 28.847257640000066 ], [ -81.990351563, 28.847328142000038 ], [ -81.990234614999963, 28.847344606000036 ], [ -81.990110277999975, 28.847349702000031 ], [ -81.989965545999951, 28.847348249000049 ], [ -81.989784890999942, 28.847335354000052 ], [ -81.989664627999957, 28.847323972000027 ], [ -81.989521956999965, 28.84729532800003 ], [ -81.989246888999958, 28.847201372000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990882648999957, 28.845839133000027 ], [ -81.990974714999936, 28.84583088100004 ], [ -81.991427158999954, 28.845796607000068 ], [ -81.99163197699994, 28.845781091000049 ], [ -81.991764437999962, 28.845771057000036 ], [ -81.991948842999989, 28.845755064000059 ], [ -81.992051880999952, 28.845759845000032 ], [ -81.992095634999941, 28.845776123000064 ], [ -81.992155184999945, 28.845807556000068 ], [ -81.992203718999974, 28.845850574000053 ], [ -81.992234836999955, 28.845895364000057 ], [ -81.992252519999965, 28.845941296000035 ], [ -81.992301315999953, 28.846098866000034 ], [ -81.992344688999935, 28.846265983000023 ], [ -81.992370011999981, 28.846338311000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990882648999957, 28.845839133000027 ], [ -81.990899708999962, 28.845944769000027 ], [ -81.990940716999944, 28.846047282000029 ], [ -81.991005364999978, 28.846224333000066 ], [ -81.991053815999976, 28.846330465000051 ], [ -81.991106890999959, 28.846385695000038 ], [ -81.991177698999934, 28.846425528000054 ], [ -81.991254855999955, 28.846444495000071 ], [ -81.991343187999973, 28.846443383000064 ], [ -81.991509520999955, 28.846428274000061 ], [ -81.992149448999953, 28.84638056600005 ], [ -81.992211026999939, 28.846376381000027 ], [ -81.99226820399997, 28.84636570300006 ], [ -81.992370011999981, 28.846338311000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992370011999981, 28.846338311000068 ], [ -81.992400747999966, 28.846426094000037 ], [ -81.992469656999958, 28.846612082000036 ], [ -81.992494766999982, 28.846679856000037 ], [ -81.992512769999962, 28.846743465000031 ], [ -81.992512764999958, 28.846819862000075 ], [ -81.992480419999936, 28.846886995000034 ], [ -81.992443648999938, 28.846938845000068 ], [ -81.992350057999943, 28.846996518000026 ], [ -81.992284547999986, 28.847011490000057 ], [ -81.992219901999988, 28.847015609000039 ], [ -81.991614394999942, 28.847063253000044 ], [ -81.991412838999963, 28.847078521000071 ], [ -81.99114674499998, 28.847106134000057 ], [ -81.99094187999998, 28.847153668000033 ], [ -81.990821962999973, 28.84718977600005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990135471999963, 28.846115556000029 ], [ -81.990162431999977, 28.846104061000062 ], [ -81.990268842999967, 28.846051143000068 ], [ -81.990483117999986, 28.84594293300006 ], [ -81.990590485999974, 28.845897213000057 ], [ -81.990667512999948, 28.84587298200006 ], [ -81.990790606999951, 28.845847383000034 ], [ -81.990882648999957, 28.845839133000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990338606999956, 28.846694282000044 ], [ -81.990290744999982, 28.84656792800007 ], [ -81.99026585699994, 28.846449231000065 ], [ -81.990214198999979, 28.846261605000052 ], [ -81.990184067999962, 28.846200104000047 ], [ -81.990135471999963, 28.846115556000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989246888999958, 28.847201372000029 ], [ -81.989285984999981, 28.84712045200007 ], [ -81.989369172999943, 28.846899185000041 ], [ -81.989421601999936, 28.846728934000055 ], [ -81.989480833999949, 28.846500289000062 ], [ -81.989502634999951, 28.846415198000045 ], [ -81.989529827999945, 28.846365012000035 ], [ -81.989573059999941, 28.846315920000052 ], [ -81.989615111999967, 28.846283134000032 ], [ -81.989681957999949, 28.846246707000034 ], [ -81.989855499999976, 28.846213297000077 ], [ -81.990018195999937, 28.846165562000067 ], [ -81.990135471999963, 28.846115556000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994127739999954, 28.849099911000053 ], [ -81.993888416999937, 28.848681592000048 ], [ -81.993629830999964, 28.848229595000078 ], [ -81.993575138999972, 28.848135248000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992889584999944, 28.848249005000071 ], [ -81.993174290999946, 28.848228443000039 ], [ -81.993400694999934, 28.848201079000034 ], [ -81.993479588999946, 28.848176805000037 ], [ -81.993575138999972, 28.848135248000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992168422999953, 28.848302083000078 ], [ -81.992447581999954, 28.84828092500004 ], [ -81.992889584999944, 28.848249005000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993143061999945, 28.848964341000055 ], [ -81.993086482999956, 28.848861168000042 ], [ -81.993033232999949, 28.848735808000072 ], [ -81.992908544999977, 28.848395544000027 ], [ -81.992889584999944, 28.848249005000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99211639899994, 28.848989758000073 ], [ -81.992170026999986, 28.848793900000032 ], [ -81.992191995999974, 28.848620129000039 ], [ -81.992187250999962, 28.848519648000035 ], [ -81.992168422999953, 28.848302083000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991276213999981, 28.848369818000037 ], [ -81.991259314, 28.848292764000064 ], [ -81.991102665999961, 28.847884541000042 ], [ -81.991069626999945, 28.847797255000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991276213999981, 28.848369818000037 ], [ -81.992168422999953, 28.848302083000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99121871899996, 28.848880171000076 ], [ -81.991274677999968, 28.848707630000035 ], [ -81.991292425999973, 28.848495719000027 ], [ -81.991282205999937, 28.848397140000031 ], [ -81.991276213999981, 28.848369818000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993575138999972, 28.848135248000062 ], [ -81.993396666999956, 28.847827376000055 ], [ -81.993326173999947, 28.847703229000047 ], [ -81.993298954999943, 28.847663706000048 ], [ -81.993266523999978, 28.847626831000071 ], [ -81.993185178999966, 28.847598178000055 ], [ -81.993115915999965, 28.847588011000028 ], [ -81.992928469999981, 28.847604115000024 ], [ -81.992305834999968, 28.84765128500004 ], [ -81.99164677999994, 28.84770121400004 ], [ -81.991327572999978, 28.847726425000076 ], [ -81.991228045999947, 28.847748010000032 ], [ -81.991069626999945, 28.847797255000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991069626999945, 28.847797255000046 ], [ -81.991002818999959, 28.847640673000058 ], [ -81.990821962999973, 28.84718977600005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09394049499997, 28.699552478000044 ], [ -82.093943795999962, 28.699175929000035 ], [ -82.093945297999937, 28.697820474000025 ], [ -82.093953332999945, 28.697710502000064 ], [ -82.093955929999936, 28.696500470000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093982792999952, 28.701356839000027 ], [ -82.093934843999989, 28.701296373000048 ], [ -82.093926667999938, 28.70124856700005 ], [ -82.093926599999975, 28.701172068000062 ], [ -82.09393191099997, 28.701047755000047 ], [ -82.093929417999959, 28.700815850000026 ], [ -82.09394049499997, 28.699552478000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09394049499997, 28.699552478000044 ], [ -82.093618484999979, 28.699558428000046 ], [ -82.093280556999957, 28.699558662000072 ], [ -82.092822405999982, 28.699558977000038 ], [ -82.09264694999996, 28.699564827000074 ], [ -82.092331774999934, 28.699573637000071 ], [ -82.092166063999969, 28.699576615000069 ], [ -82.09206858999994, 28.699582411000051 ], [ -82.09191261999996, 28.699579652000068 ], [ -82.091756636999946, 28.699559704000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966139130999977, 28.897041106000074 ], [ -81.966257243999962, 28.897041136000041 ], [ -81.966626300999962, 28.897043231000055 ], [ -81.966695180999977, 28.897041462000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966854207999972, 28.896985610000058 ], [ -81.966867150999974, 28.896974749000037 ], [ -81.966886287999955, 28.896950145000062 ], [ -81.966916273999971, 28.896908438000025 ], [ -81.966941409999947, 28.89686623700004 ], [ -81.966959181999982, 28.896833452000067 ], [ -81.966980259999957, 28.896790880000026 ], [ -81.967007688999956, 28.896714515000042 ], [ -81.967047014999935, 28.896541035000041 ], [ -81.967063762999942, 28.896434638000073 ], [ -81.967072629999961, 28.896366661000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966695180999977, 28.897041462000061 ], [ -81.966711829999952, 28.89704103400004 ], [ -81.966735810999978, 28.897038025000029 ], [ -81.966762075999952, 28.897032003000049 ], [ -81.96679291099997, 28.897020956000063 ], [ -81.966820322, 28.897008905000064 ], [ -81.966844243999958, 28.89699397000004 ], [ -81.966854207999972, 28.896985610000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966695180999977, 28.897041462000061 ], [ -81.966698109999982, 28.897091275000037 ], [ -81.966703812999981, 28.89711439000007 ], [ -81.966715224999973, 28.897137505000046 ], [ -81.966732346999947, 28.89716162700006 ], [ -81.966751753999972, 28.897176705000049 ], [ -81.96677344699998, 28.897185755000066 ], [ -81.96679628399994, 28.897188775000075 ], [ -81.966819121999947, 28.897189786000069 ], [ -81.966838535999955, 28.897186776000069 ], [ -81.966854523999984, 28.897179746000063 ], [ -81.966867087999958, 28.897173718000033 ], [ -81.966884220999987, 28.897160660000054 ], [ -81.966895646999944, 28.897142573000053 ], [ -81.966904787999965, 28.897122478000028 ], [ -81.966908219999937, 28.897102381000025 ], [ -81.96690594599994, 28.897072234000063 ], [ -81.966896816999963, 28.897050123000042 ], [ -81.966884261999951, 28.897032033000073 ], [ -81.966854207999972, 28.896985610000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966594491999956, 28.858604268000079 ], [ -81.966594492999945, 28.858604239000044 ], [ -81.966596854999977, 28.858528005000039 ], [ -81.96658823599995, 28.858347710000032 ], [ -81.966560523999988, 28.858167409000032 ], [ -81.966517206999981, 28.857935157000043 ], [ -81.966463486999942, 28.857683038000062 ], [ -81.966423642999985, 28.857450785000026 ], [ -81.966406341999971, 28.857282711000039 ], [ -81.966402914999946, 28.857142142000043 ], [ -81.966402961999961, 28.856996991000074 ], [ -81.966420381999967, 28.856793782000068 ], [ -81.966449938999972, 28.856631830000026 ], [ -81.966486441999962, 28.856454603000032 ], [ -81.966520094999964, 28.856324422000057 ], [ -81.96654897999997, 28.856231131000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023229209999954, 28.865500651000048 ], [ -82.023636481999972, 28.865509738000071 ], [ -82.023905514999967, 28.865506634000042 ], [ -82.024889612999971, 28.865485858000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023229209999954, 28.865500651000048 ], [ -82.023224594999988, 28.866361505000043 ], [ -82.023224610999989, 28.866433389000065 ], [ -82.023209311999949, 28.866482811000026 ], [ -82.023183805999963, 28.866541222000023 ], [ -82.023153199999967, 28.866617603000066 ], [ -82.023102183999981, 28.866720944000065 ], [ -82.023061373999951, 28.866810805000057 ], [ -82.023046078999982, 28.866887184000063 ], [ -82.02304608999998, 28.866936605000035 ], [ -82.023046100999977, 28.866986024000028 ], [ -82.02306142599997, 28.867048919000069 ], [ -82.023097167999936, 28.867116304000035 ], [ -82.023227520999967, 28.867286074000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02066973999996, 28.865475089000029 ], [ -82.021537609999939, 28.865479227000037 ], [ -82.022921369999949, 28.865496110000038 ], [ -82.02304460299996, 28.865496089000032 ], [ -82.023229209999954, 28.865500651000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025835993999976, 28.865482988000053 ], [ -82.02601402099998, 28.865482134000047 ], [ -82.026758969999946, 28.865483467000047 ], [ -82.027470276999964, 28.865483914000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961541419999946, 28.859893711000041 ], [ -81.961497828999939, 28.859871299000076 ], [ -81.961458316999938, 28.85985407700008 ], [ -81.961422527999957, 28.85983496800003 ], [ -81.961393248999968, 28.859809176000056 ], [ -81.961354210999957, 28.85977383200003 ], [ -81.961317347999966, 28.859721300000047 ], [ -81.961207850999983, 28.859549379000043 ], [ -81.961012702999938, 28.859260929000072 ], [ -81.960852249999959, 28.859022146000029 ], [ -81.96074275899997, 28.858839720000049 ], [ -81.960676768999974, 28.858722243000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960538249999956, 28.858744595000076 ], [ -81.960581607999984, 28.858829599000046 ], [ -81.960706272999971, 28.85904449700007 ], [ -81.960838535999983, 28.859246029000076 ], [ -81.961041275999946, 28.859538301000043 ], [ -81.961220156999957, 28.85981815100007 ], [ -81.961244266999984, 28.859860366000078 ], [ -81.961256400999957, 28.859897039000032 ], [ -81.961261332999982, 28.859938486000033 ], [ -81.96126348699994, 28.85997859400004 ], [ -81.961255883999968, 28.860006285000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170057185999951, 28.674259405000043 ], [ -82.170612013999971, 28.674282733000041 ], [ -82.170656595999958, 28.674282677000065 ], [ -82.170716019999986, 28.67427168100005 ], [ -82.170763024999985, 28.674238858000024 ], [ -82.170790215999943, 28.674206059000028 ], [ -82.170802533999961, 28.674166726000067 ], [ -82.170812363999971, 28.674118660000033 ], [ -82.170819035999955, 28.673651218000032 ], [ -82.170823945999985, 28.673625 ], [ -82.170833800999958, 28.673592223000071 ], [ -82.170848621999937, 28.673568178000039 ], [ -82.170875826999975, 28.673544116000073 ], [ -82.170940208, 28.673535298000047 ], [ -82.171007074999977, 28.673533030000044 ], [ -82.172995915999934, 28.673552347000054 ], [ -82.17346897799996, 28.67355610900006 ], [ -82.175809524999977, 28.673581486000046 ], [ -82.176255511999955, 28.673585228000036 ], [ -82.176596121999978, 28.673595111000054 ], [ -82.176843465, 28.673598653000056 ], [ -82.176951752999969, 28.673601377000068 ], [ -82.177011311999934, 28.673604164000039 ], [ -82.17705783699995, 28.673606070000062 ], [ -82.177127537999979, 28.673605452000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177127537999979, 28.673605452000061 ], [ -82.177188265999973, 28.673604914000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177165756999955, 28.675923440000076 ], [ -82.177195037999979, 28.67566129000005 ], [ -82.177199737999956, 28.675510569000039 ], [ -82.17719445299997, 28.675313991000053 ], [ -82.177174531999981, 28.67525067400004 ], [ -82.177162043999942, 28.675187347000076 ], [ -82.17716196899994, 28.675014784000041 ], [ -82.177161604999981, 28.674927419000028 ], [ -82.177176332999977, 28.674848766000025 ], [ -82.177184737999937, 28.674778804000027 ], [ -82.177194988999986, 28.674160695000069 ], [ -82.177183290999949, 28.673999296000034 ], [ -82.177176556999939, 28.673858448000033 ], [ -82.177164494999943, 28.673769173000039 ], [ -82.177140378, 28.673690090000036 ], [ -82.177127537999979, 28.673605452000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091615403999981, 28.748878474000037 ], [ -82.091612035999958, 28.74874386700003 ], [ -82.091618133999987, 28.748282751000033 ], [ -82.091614541999945, 28.747890380000058 ], [ -82.091617833999976, 28.747659426000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091632396999955, 28.747031052000068 ], [ -82.087956979999944, 28.747005070000057 ], [ -82.087712143999966, 28.747010161000048 ], [ -82.087543098999959, 28.747002630000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.083575337999946, 28.616041194000047 ], [ -82.083532731999981, 28.616045111000062 ], [ -82.083413107999945, 28.616051215000027 ], [ -82.083245636999948, 28.616060368000035 ], [ -82.083071326999971, 28.616066507000028 ], [ -82.082903850999969, 28.616069624000033 ], [ -82.082736371999943, 28.616069727000024 ], [ -82.082544965999944, 28.616069843000048 ], [ -82.082401413999946, 28.616069931000027 ], [ -82.082292034999966, 28.616063965000023 ], [ -82.082127971999967, 28.616061049000052 ], [ -82.08193997799998, 28.61605211400007 ], [ -82.081772490999981, 28.616043168000033 ], [ -82.081663113, 28.61603720200003 ], [ -82.081563987999971, 28.616031229000043 ], [ -82.081499041999962, 28.616025236000041 ], [ -82.081348640999977, 28.61601024600003 ], [ -82.081215329999964, 28.615995246000068 ], [ -82.081129874999988, 28.615986250000049 ], [ -82.081020489999958, 28.615971235000075 ], [ -82.080931615999987, 28.615962240000044 ], [ -82.080815394999945, 28.615947229000028 ], [ -82.080664989999946, 28.61592620700003 ], [ -82.08053509399997, 28.615906302000042 ], [ -82.080406902999982, 28.615883758000052 ], [ -82.080320602999961, 28.615871971000047 ], [ -82.080227438999941, 28.615853705000063 ], [ -82.080094119999956, 28.615827016000026 ], [ -82.07993259999995, 28.615797328000042 ], [ -82.079779779999967, 28.61576450900003 ], [ -82.079621983999971, 28.615727552000067 ], [ -82.079476911999961, 28.615692832000036 ], [ -82.079333111999972, 28.615656990000048 ], [ -82.079138407999949, 28.615606582000055 ], [ -82.078901705999954, 28.615541602000064 ], [ -82.078722266999989, 28.615486693000037 ], [ -82.078543789999969, 28.615428678000058 ], [ -82.07828320699997, 28.615340995000054 ], [ -82.078029948999983, 28.615252447000046 ], [ -82.077744872999972, 28.615150443000061 ], [ -82.077464886999962, 28.615049558000067 ], [ -82.077133538999988, 28.614935615000036 ], [ -82.076367860999937, 28.61465610700003 ], [ -82.075874075999934, 28.614478994000024 ], [ -82.075319204999971, 28.614280584000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.083631844999957, 28.616036001000055 ], [ -82.083575337999946, 28.616041194000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087992676999988, 28.626488751000068 ], [ -82.087052635999953, 28.626471261000063 ], [ -82.085972455, 28.62646290400005 ], [ -82.085917760999962, 28.626462938000031 ], [ -82.085876734999943, 28.62645391600006 ], [ -82.085842537999952, 28.626435841000045 ], [ -82.085808336999946, 28.626414751000027 ], [ -82.085784369999942, 28.626366510000025 ], [ -82.08577834, 28.626306570000054 ], [ -82.085795290999954, 28.626133139000046 ], [ -82.085781650999934, 28.625122783000052 ], [ -82.085768387999963, 28.624576139000055 ], [ -82.085754302999987, 28.623019131000035 ], [ -82.085728599999982, 28.622936207000066 ], [ -82.085655929999973, 28.622894783000049 ], [ -82.085510642999964, 28.622876025000039 ], [ -82.085352557999954, 28.62287989400005 ], [ -82.085245744999952, 28.622887501000037 ], [ -82.084874020999962, 28.622887734000074 ], [ -82.084318589999953, 28.622914471000058 ], [ -82.083921253999961, 28.622944878000055 ], [ -82.08385715999998, 28.622941147000063 ], [ -82.083797327999946, 28.622922334000066 ], [ -82.083763122999983, 28.622892196000066 ], [ -82.083733177999989, 28.622846974000026 ], [ -82.083720320999987, 28.622797971000068 ], [ -82.083724549999943, 28.622745189000057 ], [ -82.083719147999943, 28.621320125000068 ], [ -82.083708754999975, 28.621145203000026 ], [ -82.083670199999972, 28.621017046000077 ], [ -82.083623151999973, 28.620956755000066 ], [ -82.083588929999962, 28.620903996000038 ], [ -82.083570598999984, 28.619335679000073 ], [ -82.083547948999978, 28.617710814000077 ], [ -82.08355725399997, 28.617624947000024 ], [ -82.083590871999945, 28.617521789000079 ], [ -82.08364318799994, 28.617411298000036 ], [ -82.083663587, 28.617272548000074 ], [ -82.083680517999937, 28.617073482000023 ], [ -82.083668862999957, 28.616827624000052 ], [ -82.083629328999962, 28.616712008000036 ], [ -82.083608892999962, 28.616612099000065 ], [ -82.083603720999974, 28.616507690000049 ], [ -82.083607442999948, 28.616389801000025 ], [ -82.083599747999983, 28.616311217000032 ], [ -82.083598400999961, 28.616216910000048 ], [ -82.083575337999946, 28.616041194000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054375137999955, 28.741381630000035 ], [ -82.054397508999955, 28.73796322000004 ], [ -82.054421409999975, 28.734147466000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054421409999975, 28.734147466000024 ], [ -82.054421604999959, 28.734079669000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054421604999959, 28.734079669000039 ], [ -82.051802343999952, 28.734047577000069 ], [ -82.050290072999985, 28.734051977000036 ], [ -82.049842479999938, 28.734063634000051 ], [ -82.049694727999963, 28.734063688000049 ], [ -82.049577395999961, 28.734063731000049 ], [ -82.049429636999946, 28.734044635000032 ], [ -82.049329673999978, 28.734014029000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054421604999959, 28.734079669000039 ], [ -82.054425221999963, 28.733368890000065 ], [ -82.054438730999948, 28.73134238800003 ], [ -82.054450968999959, 28.729802624000058 ], [ -82.054467375999934, 28.726777344000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059512859999984, 28.734255148000045 ], [ -82.058390375999977, 28.73421266400004 ], [ -82.057508423999934, 28.734179617000052 ], [ -82.057117285999936, 28.734162594000054 ], [ -82.056575546999966, 28.734140857000057 ], [ -82.055996327999935, 28.734133076000035 ], [ -82.055424268999957, 28.734145536000028 ], [ -82.054847003999953, 28.734147299000028 ], [ -82.054421409999975, 28.734147466000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059512859999984, 28.734255148000045 ], [ -82.059524653999972, 28.733157321000078 ], [ -82.059552907999944, 28.73231912500006 ], [ -82.059540993999974, 28.731574640000076 ], [ -82.059569462999946, 28.731116284000052 ], [ -82.05958911099998, 28.730300881000062 ], [ -82.059565920999944, 28.729936243000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118712781999989, 28.650333307000039 ], [ -82.120707596999978, 28.650346808000052 ], [ -82.121702724999977, 28.650364293000052 ], [ -82.123667642999976, 28.650374451000062 ], [ -82.124729675999959, 28.650382550000074 ], [ -82.125000317999934, 28.650377526000057 ], [ -82.126135973999965, 28.650391275000061 ], [ -82.126908402999959, 28.650390076000065 ], [ -82.128401303999965, 28.650393921000045 ], [ -82.128635804999988, 28.650402772000064 ], [ -82.128869652999981, 28.650409425000078 ], [ -82.128987866999978, 28.650405875000047 ], [ -82.129038519999938, 28.650395513000035 ], [ -82.129078771999957, 28.650379431000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.26058861599995, 28.653547223000032 ], [ -82.260625816999948, 28.653530343000057 ], [ -82.260702002999949, 28.653517974000067 ], [ -82.260849211999982, 28.653506994000054 ], [ -82.26117129499994, 28.653465119000032 ], [ -82.262128865999955, 28.65333186600003 ], [ -82.26278517999998, 28.653257253000049 ], [ -82.263252722999937, 28.653198283000052 ], [ -82.264477756999952, 28.653028144000075 ], [ -82.265488656999935, 28.652900402000057 ], [ -82.266507486999956, 28.652777295000078 ], [ -82.267821626999989, 28.652617345000067 ], [ -82.268410510999956, 28.652540642000076 ], [ -82.268568907999963, 28.652533342000027 ], [ -82.268641488999947, 28.652558309000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256561354999974, 28.654511416000048 ], [ -82.256622406999952, 28.654520908000052 ], [ -82.256681706999984, 28.654531252000027 ], [ -82.256764187999977, 28.654545355000039 ], [ -82.256828293999945, 28.65453762900006 ], [ -82.25691928599997, 28.654506085000037 ], [ -82.256998961999955, 28.654475037000054 ], [ -82.257075938999947, 28.654441618000078 ], [ -82.257136782999964, 28.654422490000059 ], [ -82.257227772999954, 28.654389995000031 ], [ -82.257294553999941, 28.654374183000073 ], [ -82.257343036999941, 28.654368387000034 ], [ -82.257390451999981, 28.654366871000036 ], [ -82.257497511999986, 28.654362115000026 ], [ -82.257633747999989, 28.654359632000023 ], [ -82.257772718999945, 28.654343324000024 ], [ -82.257909049999967, 28.654310978000069 ], [ -82.258064821999938, 28.654259113000023 ], [ -82.258214107999947, 28.654211844000031 ], [ -82.258447845999967, 28.654166706000069 ], [ -82.258773900999984, 28.654153478000069 ], [ -82.259266174999937, 28.654111282000031 ], [ -82.260077981999984, 28.654045552000071 ], [ -82.260315666999986, 28.654021030000024 ], [ -82.260388396999986, 28.654011723000053 ], [ -82.260440339999946, 28.654002455000068 ], [ -82.260483182999963, 28.65399091300003 ], [ -82.260511684999983, 28.653958772000067 ], [ -82.260531080999954, 28.653922064000028 ], [ -82.260537457999988, 28.653873920000024 ], [ -82.260534468999936, 28.653715783000052 ], [ -82.260531714999956, 28.653652761000046 ], [ -82.260535523999977, 28.653617229000076 ], [ -82.26054714299994, 28.653587411000046 ], [ -82.260565270999962, 28.653563311000028 ], [ -82.26058861599995, 28.653547223000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256535171999985, 28.660128004000057 ], [ -82.256530989999987, 28.659521608000034 ], [ -82.256527002999974, 28.657883845000072 ], [ -82.256536660999984, 28.657403957000042 ], [ -82.256543465999982, 28.656196387000023 ], [ -82.256539723999936, 28.65532689500003 ], [ -82.256546432999983, 28.654746738000028 ], [ -82.256561354999974, 28.654511416000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.157926014999987, 28.584039349000079 ], [ -82.157941836999953, 28.583508641000037 ], [ -82.157941555999969, 28.583321093000052 ], [ -82.157944126999951, 28.583218898000041 ], [ -82.15794404899998, 28.583167202000027 ], [ -82.15794128999994, 28.583143161000066 ], [ -82.15792627899998, 28.583123942000043 ], [ -82.157903095999984, 28.583104733000027 ], [ -82.157874481999954, 28.583097553000073 ], [ -82.157434537999961, 28.583090850000076 ], [ -82.157065416999956, 28.583082862000026 ], [ -82.156814792999967, 28.583074737000061 ], [ -82.156758933999981, 28.583063981000066 ], [ -82.156727570999976, 28.58303877000003 ], [ -82.156705716999966, 28.582997919000036 ], [ -82.156708313999957, 28.582912558000032 ], [ -82.156728086999976, 28.582468907000077 ], [ -82.156742460999965, 28.582058924000023 ], [ -82.156754237999962, 28.581734306000044 ], [ -82.156767981999963, 28.581233427000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158889300999988, 28.587125104000052 ], [ -82.158907496999973, 28.586770422000029 ], [ -82.158949493999955, 28.586393170000065 ], [ -82.158950784999945, 28.58611965800003 ], [ -82.15895895899996, 28.585441133000074 ], [ -82.158958459999951, 28.585109314000078 ], [ -82.158958191999943, 28.584972019000077 ], [ -82.158942555999943, 28.584934603000079 ], [ -82.158937327, 28.584928426000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158937327, 28.584928426000033 ], [ -82.158989190999989, 28.584883114000036 ], [ -82.159060137999973, 28.584848135000072 ], [ -82.159335349999935, 28.584845581000025 ], [ -82.159501513999942, 28.584840577000023 ], [ -82.159499891999985, 28.584669860000076 ], [ -82.159511992999967, 28.584565251000072 ], [ -82.159537650999937, 28.584418546000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158937327, 28.584928426000033 ], [ -82.158898170999976, 28.584901734000027 ], [ -82.158861122999951, 28.584886567000069 ], [ -82.158803127999988, 28.584883579000063 ], [ -82.158666377999964, 28.584887559000038 ], [ -82.158529619999968, 28.584884663000025 ], [ -82.158260421999955, 28.584874281000054 ], [ -82.158074312999986, 28.584861510000053 ], [ -82.158024198999954, 28.584848317000024 ], [ -82.157980588999976, 28.584832739000035 ], [ -82.157956026999955, 28.584801509000044 ], [ -82.157943717999956, 28.584767860000056 ], [ -82.157934121999972, 28.58472699400005 ], [ -82.157932564999953, 28.584595952000029 ], [ -82.157935016999943, 28.584414412000058 ], [ -82.157926014999987, 28.584039349000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120983381999963, 28.598712768000041 ], [ -82.120988847999968, 28.598646744000064 ], [ -82.120991510999943, 28.598553825000067 ], [ -82.121003831999985, 28.598425137000049 ], [ -82.121005210999954, 28.598377105000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121005210999954, 28.598377105000054 ], [ -82.121007123999959, 28.598275368000031 ], [ -82.121017407999943, 28.598183665000079 ], [ -82.121015934999946, 28.598106338000036 ], [ -82.121018580999987, 28.597998748000066 ], [ -82.121018471999946, 28.597903386000041 ], [ -82.121021141999961, 28.597815358000048 ], [ -82.121021024999948, 28.597712662000049 ], [ -82.121023674999947, 28.597607516000039 ], [ -82.121022220999976, 28.597541866000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121022220999976, 28.597541866000029 ], [ -82.121000514999935, 28.596551076000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05841135999998, 28.573543888000074 ], [ -82.058063724999954, 28.573540204000039 ], [ -82.057824563999986, 28.573536084000068 ], [ -82.057666719999986, 28.573536152000031 ], [ -82.057188399999973, 28.573536354000055 ], [ -82.056676602999971, 28.573545014000047 ], [ -82.056308298999966, 28.573545167000077 ], [ -82.056026086999964, 28.573541061000071 ], [ -82.055719958999987, 28.573528520000025 ], [ -82.055480793999948, 28.57352017200003 ], [ -82.055241623999962, 28.573499158000061 ], [ -82.055155518999982, 28.573486525000078 ], [ -82.055031843999984, 28.573476804000052 ], [ -82.054860063999968, 28.573469537000051 ], [ -82.054721535999988, 28.573472038000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001030544999935, 28.840371032000064 ], [ -82.001074947999939, 28.840225714000042 ], [ -82.00114085599995, 28.840019252000047 ], [ -82.001222845999962, 28.839856542000064 ], [ -82.001259541999957, 28.839791607000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001259541999957, 28.839791607000052 ], [ -82.001314380999986, 28.839694568000027 ], [ -82.001455366999949, 28.83941763200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126759299999947, 28.633930023000062 ], [ -82.126823825999963, 28.633795970000051 ], [ -82.126922014999934, 28.63358992600007 ], [ -82.127148580999972, 28.633140281000067 ], [ -82.129165003999958, 28.629022450000036 ], [ -82.130855347999955, 28.625584845000049 ], [ -82.131029377999937, 28.625227898000048 ], [ -82.131145108999988, 28.624990952000076 ], [ -82.131243561999952, 28.624786110000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131243561999952, 28.624786110000059 ], [ -82.131297977999964, 28.624791837000032 ], [ -82.131373920999977, 28.624801689000037 ], [ -82.131859911999982, 28.624800829000037 ], [ -82.133208925999952, 28.624811141000066 ], [ -82.135964073999958, 28.62482779100003 ], [ -82.136886851999975, 28.624834616000044 ], [ -82.137293770999975, 28.624850411000068 ], [ -82.137453074999939, 28.624870993000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131243561999952, 28.624786110000059 ], [ -82.131666766999956, 28.623928512000077 ], [ -82.131992415999946, 28.623238273000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140872125999977, 28.605096078000031 ], [ -82.141410920999988, 28.603994619000048 ], [ -82.141931535999959, 28.602925319000065 ], [ -82.142358323999986, 28.602057010000067 ], [ -82.142963669999972, 28.600816188000067 ], [ -82.143411311999955, 28.599915328000066 ], [ -82.144214133999981, 28.598272865000069 ], [ -82.144578859999967, 28.597535233000031 ], [ -82.145039608, 28.596596951000038 ], [ -82.145183116999988, 28.596304574000044 ], [ -82.145506650999948, 28.595643722000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147336052999947, 28.591908617000058 ], [ -82.147788625999965, 28.591949814000031 ], [ -82.148212170999955, 28.591953109000031 ], [ -82.148688934999939, 28.591963858000042 ], [ -82.149172075999957, 28.591968963000056 ], [ -82.149457281999958, 28.591974285000049 ], [ -82.149584981999965, 28.591974144000062 ], [ -82.149636073999943, 28.591981602000033 ], [ -82.149695698999949, 28.59200407700007 ], [ -82.149770227999966, 28.592030295000029 ], [ -82.149838349999982, 28.592041490000042 ], [ -82.14992988299997, 28.592050781000069 ], [ -82.150115061999941, 28.592059969000047 ], [ -82.150434312999948, 28.592059615000039 ], [ -82.150728559999948, 28.592061579000074 ], [ -82.151556625999945, 28.592066526000053 ], [ -82.152271632999941, 28.592077466000035 ], [ -82.153093069999954, 28.59209708700007 ], [ -82.153748203999953, 28.592099282000049 ], [ -82.154010936999953, 28.592109257000061 ], [ -82.154386731999978, 28.592114700000025 ], [ -82.155028563999963, 28.592116903000033 ], [ -82.155304565999984, 28.592104846000041 ], [ -82.155863229999966, 28.592086595000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999777994999988, 28.856275162000031 ], [ -81.99977800299996, 28.856275209000046 ], [ -81.999798142999964, 28.856397437000055 ], [ -81.999818969999978, 28.856564743000035 ], [ -81.999831117999975, 28.856736634000072 ], [ -81.999836325, 28.856901648000076 ], [ -81.999831985999947, 28.857036104000031 ], [ -81.99982590999997, 28.857173616000068 ], [ -81.99981809999997, 28.857298141000058 ], [ -81.99980074399997, 28.857456280000065 ], [ -81.99978251999994, 28.857562470000062 ], [ -81.999739129999966, 28.857849718000068 ], [ -81.999700078999979, 28.858126268000035 ], [ -81.999632389999988, 28.858437963000029 ], [ -81.999569907999955, 28.858650342000033 ], [ -81.999492672999963, 28.858864250000067 ], [ -81.999410231999946, 28.859065170000065 ], [ -81.999315639999963, 28.859253867000064 ], [ -81.999223651999955, 28.859423464000031 ], [ -81.999102156999982, 28.859630494000044 ], [ -81.999001490999945, 28.859793981000053 ], [ -81.99891297399995, 28.859944479000035 ], [ -81.998744615999954, 28.860227905000045 ], [ -81.998708887999953, 28.860285023000074 ], [ -81.998688530999971, 28.860310668000068 ], [ -81.998664667999947, 28.860335017000068 ], [ -81.998639175999983, 28.860356504000038 ], [ -81.998619649999966, 28.860366053000064 ], [ -81.99860012399995, 28.860374647000071 ], [ -81.99858005599998, 28.860383241000079 ], [ -81.998547979999955, 28.860393270000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998324172999958, 28.860715354000035 ], [ -81.998341306999976, 28.860749983000062 ], [ -81.998364294999988, 28.860781875000043 ], [ -81.99839258999998, 28.860810269000069 ], [ -81.998425515999941, 28.860834485000055 ], [ -81.998462286999938, 28.860853948000056 ], [ -81.998502024999937, 28.860868192000055 ], [ -81.998543780999967, 28.860876876000077 ], [ -81.998586557999943, 28.860879794000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998586557999943, 28.860879794000027 ], [ -81.998628330999964, 28.860877013000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998732089999976, 28.860842859000059 ], [ -81.998742934999939, 28.860837346000039 ], [ -81.998775278999972, 28.860814663000042 ], [ -81.998803436999935, 28.86078800100006 ], [ -81.998826783999959, 28.860757954000064 ], [ -81.998844709999958, 28.860725363000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000089418999949, 28.861127056000043 ], [ -82.001032157999987, 28.861516602000052 ], [ -82.001211927999975, 28.861587334000035 ], [ -82.001394552999955, 28.861652150000054 ], [ -82.001579782999954, 28.861710962000075 ], [ -82.001767361999953, 28.861763689000043 ], [ -82.001915363999956, 28.861799184000063 ], [ -82.002065165999966, 28.861828242000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998547979999955, 28.860393270000031 ], [ -81.99850780099996, 28.860400938000055 ], [ -81.998469348999947, 28.860413744000027 ], [ -81.998433466999984, 28.860431407000078 ], [ -81.998400939999954, 28.860453540000037 ], [ -81.998398760999976, 28.860455540000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998311116999957, 28.860606404000066 ], [ -81.998311110999964, 28.860606436000069 ], [ -81.998310351999976, 28.860610195000049 ], [ -81.998309128999949, 28.860645716000079 ], [ -81.998313768999935, 28.860681018000037 ], [ -81.998324172999958, 28.860715354000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995428587999982, 28.85972500400004 ], [ -81.996816153999987, 28.860088699000073 ], [ -81.996972820999986, 28.860133717000053 ], [ -81.99707661399998, 28.86016489800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998324172999958, 28.860715354000035 ], [ -81.998332723999965, 28.860752325000078 ], [ -81.998339773999987, 28.86078288300007 ], [ -81.998341942999957, 28.860828720000029 ], [ -81.998339229999942, 28.860868828000037 ], [ -81.99833272099994, 28.86090845800004 ], [ -81.998325126999987, 28.860936151000033 ], [ -81.998316693999982, 28.860957003000067 ], [ -81.998283798999978, 28.861019444000078 ], [ -81.998165989999961, 28.861243056000035 ], [ -81.997954429999936, 28.861669321000079 ], [ -81.997785863999979, 28.862078990000043 ], [ -81.997627910999938, 28.862516733000064 ], [ -81.997522896999953, 28.862815437000052 ], [ -81.997429163999982, 28.863085111000032 ], [ -81.997268603999942, 28.863537371000064 ], [ -81.997160980999979, 28.863930040000071 ], [ -81.997108143999981, 28.864206224000043 ], [ -81.997065823999947, 28.86447522800006 ], [ -81.997043800999961, 28.864693230000057 ], [ -81.997032931999968, 28.865309198000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997241232999954, 28.865309203000038 ], [ -81.997251211999981, 28.864903322000032 ], [ -81.997265542999969, 28.864636043000075 ], [ -81.997285935999969, 28.864454880000039 ], [ -81.997326732999966, 28.864177566000023 ], [ -81.997370129999979, 28.86395372800007 ], [ -81.997425677999956, 28.863706207000064 ], [ -81.997495109999988, 28.863456395000071 ], [ -81.997552391999989, 28.863269227000046 ], [ -81.997696462999954, 28.86280398100007 ], [ -81.997838796999986, 28.862334151000027 ], [ -81.997909961999937, 28.862136288000045 ], [ -81.997979391999934, 28.861968218000072 ], [ -81.998031462999961, 28.861839875000044 ], [ -81.998145708999971, 28.861590852000063 ], [ -81.998245821999944, 28.861379976000023 ], [ -81.998337212999957, 28.861207066000077 ], [ -81.998400956999944, 28.861085083000035 ], [ -81.998433602999967, 28.861026873000071 ], [ -81.998453128999984, 28.860995837000075 ], [ -81.998467231999939, 28.860977216000038 ], [ -81.99848458699995, 28.860958118000042 ], [ -81.998501943999941, 28.860942360000024 ], [ -81.998516588999962, 28.860930901000074 ], [ -81.998532859999955, 28.860918488000038 ], [ -81.998554556999977, 28.860907029000032 ], [ -81.998581160999947, 28.860895792000065 ], [ -81.998628330999964, 28.860877013000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997031285999981, 28.865476529000034 ], [ -81.997243134999962, 28.865479699000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995566265999969, 28.870837823000045 ], [ -81.995573437999951, 28.870786285000065 ], [ -81.995585188999939, 28.870750349000048 ], [ -81.995605901999966, 28.870712484000023 ], [ -81.995641977999981, 28.870676851000042 ], [ -81.996422615999961, 28.869929315000036 ], [ -81.996526225999958, 28.86981581200007 ], [ -81.996619867999982, 28.869699977000039 ], [ -81.996695791999969, 28.86959973300003 ], [ -81.99676412499997, 28.869492808000075 ], [ -81.996819803999983, 28.869390336000038 ], [ -81.996883074999971, 28.869274499000028 ], [ -81.996953939999969, 28.869127475000028 ], [ -81.997024803999977, 28.868947036000066 ], [ -81.997075422999956, 28.868791100000067 ], [ -81.997123510999984, 28.868603979000056 ], [ -81.997153882999953, 28.868454727000028 ], [ -81.997179194999944, 28.868285424000078 ], [ -81.997205939999958, 28.867859888000055 ], [ -81.99722983199996, 28.867418865000047 ], [ -81.997242491999941, 28.867171594000069 ], [ -81.997243134999962, 28.865479699000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028120042999944, 28.850982471000066 ], [ -82.02806028599997, 28.850940967000042 ], [ -82.027918391999947, 28.850869948000025 ], [ -82.027727031999973, 28.850773729000025 ], [ -82.027318278999985, 28.850573274000055 ], [ -82.026978519999943, 28.850406035000049 ], [ -82.02689221299994, 28.850365587000056 ], [ -82.026535172999957, 28.850190962000056 ], [ -82.026259960999937, 28.850087608000024 ], [ -82.02481099299996, 28.849510790000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023230727999987, 28.84887817200007 ], [ -82.023099484999989, 28.848825873000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024537995999935, 28.847581500000047 ], [ -82.025406703999977, 28.847190175000037 ], [ -82.025555061999967, 28.847113369000056 ], [ -82.025713825999958, 28.847009058000026 ], [ -82.025838748999945, 28.846907046000069 ], [ -82.025940248999973, 28.846823373000063 ], [ -82.026039281999942, 28.846717565000063 ], [ -82.026142073999949, 28.846596076000026 ], [ -82.026247463999937, 28.84645567900003 ], [ -82.026315114999989, 28.846337635000054 ], [ -82.026331320999986, 28.846310127000038 ], [ -82.026353546999985, 28.846274312000048 ], [ -82.026384448999977, 28.846238974000073 ], [ -82.026406134999945, 28.846215096000037 ], [ -82.02645541399994, 28.846172766000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023170209999989, 28.848993058000076 ], [ -82.023230727999987, 28.84887817200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024361057999954, 28.847518118000039 ], [ -82.024317387999986, 28.847536362000028 ], [ -82.024249714999939, 28.847571898000069 ], [ -82.02411436899996, 28.847644116000026 ], [ -82.02399984799996, 28.847711746000073 ], [ -82.023906150999949, 28.847778227000049 ], [ -82.023789031999968, 28.847868776000041 ], [ -82.023688831999948, 28.847957031000078 ], [ -82.023571716999982, 28.848076230000061 ], [ -82.023475427999983, 28.848190840000029 ], [ -82.023383043999956, 28.848312325000052 ], [ -82.023303675999955, 28.848434954000027 ], [ -82.023223013999939, 28.848589669000035 ], [ -82.023099484999989, 28.848825873000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023099484999989, 28.848825873000067 ], [ -82.023039415999961, 28.848940731000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020494131999953, 28.847425426000029 ], [ -82.020796238999935, 28.846840894000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020529348999958, 28.858183082000039 ], [ -82.020529365999948, 28.858266376000074 ], [ -82.020527322999953, 28.859255673000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024092293999956, 28.847120723000046 ], [ -82.023948093999934, 28.847019310000064 ], [ -82.023873647999949, 28.846967260000042 ], [ -82.023762283999986, 28.846903319000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026169158999949, 28.846058981000056 ], [ -82.026187940999989, 28.846111719000078 ], [ -82.026197060999948, 28.846149151000077 ], [ -82.026198368999985, 28.846177799000031 ], [ -82.026198377999947, 28.846211032000042 ], [ -82.026195346999941, 28.846238916000061 ], [ -82.026181491999978, 28.84627499100003 ], [ -82.026167398999974, 28.846306507000065 ], [ -82.026145716999963, 28.846345186000065 ], [ -82.026083374999985, 28.846436873000073 ], [ -82.026017234999983, 28.846525696000072 ], [ -82.025957116999962, 28.846611286000041 ], [ -82.025875139999982, 28.846696102000067 ], [ -82.025795763999952, 28.846767165000074 ], [ -82.025718989999973, 28.846837081000047 ], [ -82.025638306999952, 28.846895539000059 ], [ -82.025548515999958, 28.84695858300006 ], [ -82.02544570799995, 28.847014753000053 ], [ -82.02533899499997, 28.847070924000036 ], [ -82.025233581999942, 28.847123657000054 ], [ -82.025121660999957, 28.847174099000028 ], [ -82.024979808999944, 28.847241736000058 ], [ -82.024824940999963, 28.847310520000065 ], [ -82.024702608999974, 28.84736898500006 ], [ -82.024582876999943, 28.847421720000057 ], [ -82.024495814999966, 28.847458429000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026211796999974, 28.845757969000033 ], [ -82.026176934999967, 28.845762840000077 ], [ -82.026142549999975, 28.845765192000044 ], [ -82.026095694999981, 28.845766347000051 ], [ -82.026055346999954, 28.845764636000069 ], [ -82.026018252999961, 28.845761779000043 ], [ -82.025981808999973, 28.84575662900005 ], [ -82.025955775999989, 28.845748039000057 ], [ -82.02590631299995, 28.845726849000073 ], [ -82.025826256999949, 28.845686184000044 ], [ -82.025750106999965, 28.845642652000038 ], [ -82.025664191999965, 28.845584799000051 ], [ -82.025588037999967, 28.845524079000029 ], [ -82.025524247999954, 28.845461064000062 ], [ -82.025488444999951, 28.845416380000074 ], [ -82.025459148999971, 28.84536997500004 ], [ -82.025429851999945, 28.84531841300003 ], [ -82.025399899999968, 28.845248517000073 ], [ -82.025376456999936, 28.845188933000031 ], [ -82.025357575999976, 28.845145391000074 ], [ -82.025341949999984, 28.845113308000066 ], [ -82.025312653999947, 28.845066329000076 ], [ -82.025282706999974, 28.845016486000077 ], [ -82.025249507999945, 28.844972374000065 ], [ -82.025212402999955, 28.844931701000064 ], [ -82.025166840999987, 28.844892747000074 ], [ -82.025119976999974, 28.844857805000061 ], [ -82.025058146999982, 28.84482229300005 ], [ -82.024998921999952, 28.844797093000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027081323999937, 28.843055643000071 ], [ -82.026995037999939, 28.843238198000051 ], [ -82.026813367999978, 28.843650008000054 ], [ -82.026678089999962, 28.843964021000033 ], [ -82.026603954999985, 28.844161137000071 ], [ -82.026541537999947, 28.844380023000042 ], [ -82.026517164999973, 28.844510973000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024740189999989, 28.842278692000036 ], [ -82.026003887999934, 28.842696747000048 ], [ -82.027081323999937, 28.843055643000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028341449999971, 28.841459824000026 ], [ -82.028009778999945, 28.842232255000056 ], [ -82.027973348999978, 28.842275808000068 ], [ -82.027926504999982, 28.84231363300006 ], [ -82.02785883599995, 28.842344587000071 ], [ -82.027744315999939, 28.842384719000052 ], [ -82.027619383999934, 28.842427144000055 ], [ -82.027498357999946, 28.842471860000046 ], [ -82.027422881999939, 28.842514275000042 ], [ -82.027379942999971, 28.842549808000058 ], [ -82.027344812999957, 28.842592216000071 ], [ -82.027231727999947, 28.842916112000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032919396999944, 28.841759875000037 ], [ -82.030159666999964, 28.841753638000057 ], [ -82.029651498999954, 28.84174686700004 ], [ -82.029362228999958, 28.84171939600003 ], [ -82.029158955999947, 28.841698789000077 ], [ -82.028814945999954, 28.841616259000034 ], [ -82.028601339999966, 28.841544440000064 ], [ -82.028474211999935, 28.841502195000032 ], [ -82.028341449999971, 28.841459824000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028681374999962, 28.839834387000053 ], [ -82.028678505999949, 28.840129438000076 ], [ -82.028678559999946, 28.840327686000023 ], [ -82.028676948999987, 28.840430703000038 ], [ -82.028665268999987, 28.840552174000038 ], [ -82.028641876999984, 28.840680524000049 ], [ -82.028611973999944, 28.840791686000046 ], [ -82.028556054999967, 28.840953274000071 ], [ -82.028341449999971, 28.841459824000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023223209999969, 28.865353332000041 ], [ -82.023208202999967, 28.865353350000078 ], [ -82.022173243999987, 28.865329692000046 ], [ -82.020677852999938, 28.865326023000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020677852999938, 28.865326023000023 ], [ -82.020533359999945, 28.865325668000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020529523999983, 28.864411933000042 ], [ -82.02053458599994, 28.864956332000077 ], [ -82.020533359999945, 28.865325668000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031538317999946, 28.844525159000057 ], [ -82.031874340999934, 28.844636017000028 ], [ -82.033030332999942, 28.84501522000005 ], [ -82.033449133999966, 28.845142329000055 ], [ -82.033838543999934, 28.84524788300007 ], [ -82.034801045999984, 28.845508532000053 ], [ -82.034968262999939, 28.845557132000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027081323999937, 28.843055643000071 ], [ -82.027220966999948, 28.843101140000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023039415999961, 28.848940731000027 ], [ -82.023170209999989, 28.848993058000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022618772999976, 28.849742405000029 ], [ -82.02252826299997, 28.849920303000033 ], [ -82.022327901999972, 28.850305371000047 ], [ -82.022257771999989, 28.850486624000041 ], [ -82.022162247999972, 28.850675545000058 ], [ -82.022109934999946, 28.850779007000028 ], [ -82.022059590999959, 28.851027207000072 ], [ -82.022003354999981, 28.851304463000076 ], [ -82.021936274999973, 28.851635178000038 ], [ -82.02187312999996, 28.851946490000046 ], [ -82.021837577999975, 28.852104568000073 ], [ -82.021795972999939, 28.852326886000071 ], [ -82.021724433999964, 28.852567545000056 ], [ -82.021706656999982, 28.852626091000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022554577999983, 28.861824927000043 ], [ -82.02140150699995, 28.861841858000048 ], [ -82.020673259999967, 28.861843954000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020677852999938, 28.865326023000023 ], [ -82.02067875399996, 28.864635541000041 ], [ -82.020674812999971, 28.863347394000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021845858999939, 28.852673166000045 ], [ -82.021898835999934, 28.852496469000073 ], [ -82.021936550999953, 28.852345198000023 ], [ -82.021992462999947, 28.852073603000065 ], [ -82.02204183799995, 28.85166335100007 ], [ -82.022065234999957, 28.851514375000079 ], [ -82.022105540999974, 28.851306955000041 ], [ -82.022160166999981, 28.851106406000042 ], [ -82.022170570999947, 28.851065151000057 ], [ -82.022238209999955, 28.85085887200006 ], [ -82.02228764299997, 28.85073052000007 ], [ -82.022347485999944, 28.85058955900007 ], [ -82.02241253699998, 28.850455474000057 ], [ -82.022613067999941, 28.850059637000072 ], [ -82.02274369099996, 28.849808460000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020673259999967, 28.861843954000051 ], [ -82.020673242999976, 28.861756952000064 ], [ -82.020672948999959, 28.860260365000045 ], [ -82.020672653999952, 28.858554070000025 ], [ -82.020673525999939, 28.85801654100004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02886775199994, 28.858166735000054 ], [ -82.028659256999958, 28.858178751000025 ], [ -82.028328858999942, 28.858191871000031 ], [ -82.02802018999995, 28.858189396000057 ], [ -82.027751899999942, 28.858171674000062 ], [ -82.027562939999939, 28.858141237000041 ], [ -82.027450424999984, 28.858113325000033 ], [ -82.027241266999965, 28.858065115000045 ], [ -82.027086924999935, 28.858034671000041 ], [ -82.026947009999958, 28.858019462000073 ], [ -82.026274858999955, 28.858018325000046 ], [ -82.025618573999964, 28.858017181000037 ], [ -82.025103643999955, 28.858017278000034 ], [ -82.024822378999943, 28.858017330000052 ], [ -82.024644198999965, 28.858017164000046 ], [ -82.0236124, 28.858017785000072 ], [ -82.021769033999988, 28.858018095000034 ], [ -82.020673525999939, 28.85801654100004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024774638999986, 28.849634939000055 ], [ -82.025251624999953, 28.849825766000038 ], [ -82.026486495999961, 28.850314458000071 ], [ -82.027153874999954, 28.850592275000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017430827999988, 28.839864457000033 ], [ -82.017244360999939, 28.840325911000036 ], [ -82.017186261999939, 28.840523019000045 ], [ -82.017142914999965, 28.840742280000029 ], [ -82.017123862999938, 28.840956191000032 ], [ -82.017119550999951, 28.841123498000059 ], [ -82.017131712999969, 28.841286233000062 ], [ -82.017155161999938, 28.84150396900003 ], [ -82.017170170999975, 28.841679856000042 ], [ -82.017165643999988, 28.841854613000066 ], [ -82.017155899999977, 28.841958894000072 ], [ -82.017139, 28.842075209000029 ], [ -82.017116241999986, 28.842184075000034 ], [ -82.017085673999986, 28.842290078000076 ], [ -82.017031688999964, 28.842454528000076 ], [ -82.01697119399995, 28.842601788000024 ], [ -82.016921101999969, 28.842699771000071 ], [ -82.016865804999952, 28.842799475000049 ], [ -82.016758458999959, 28.842971379000062 ], [ -82.016716169999938, 28.843030973000054 ], [ -82.016679733999979, 28.843071085000076 ], [ -82.016652405999935, 28.843094007000047 ], [ -82.016630932999988, 28.843108334000078 ], [ -82.016606206999938, 28.843119223000031 ], [ -82.016572458999974, 28.843131159000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012364167999976, 28.83800181600003 ], [ -82.012620435999963, 28.838086667000027 ], [ -82.013086286999965, 28.838250901000038 ], [ -82.013403854999979, 28.838369853000074 ], [ -82.01386331599997, 28.838549768000064 ], [ -82.014348119999966, 28.838747527000066 ], [ -82.014660623999987, 28.838878374000046 ], [ -82.015104888999986, 28.839058287000057 ], [ -82.015633612999977, 28.839257522000025 ], [ -82.015991726999971, 28.83938390000003 ], [ -82.016492108999955, 28.83955458500003 ], [ -82.017430827999988, 28.839864457000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016837329999987, 28.843243463000078 ], [ -82.016846568999938, 28.843154897000034 ], [ -82.016847634999976, 28.843114610000043 ], [ -82.016858040999978, 28.843077366000045 ], [ -82.016873652999948, 28.843039548000036 ], [ -82.016972540999973, 28.842884260000062 ], [ -82.017062967999948, 28.842715797000039 ], [ -82.017135825999958, 28.842562805000057 ], [ -82.017195667999943, 28.842397783000024 ], [ -82.017235341999935, 28.842271151000034 ], [ -82.017276956999979, 28.842071180000062 ], [ -82.017297107, 28.841933666000045 ], [ -82.017308811999953, 28.841804161000027 ], [ -82.017303559999959, 28.841607645000067 ], [ -82.017288790999942, 28.84141072500006 ], [ -82.017265335, 28.841231962000052 ], [ -82.017258369999979, 28.841085283000041 ], [ -82.017260083999986, 28.840954647000046 ], [ -82.017274805999989, 28.840792685000054 ], [ -82.017291273999945, 28.840679617000035 ], [ -82.017308612999955, 28.840601692000064 ], [ -82.017341560999967, 28.840467994000051 ], [ -82.017379717999972, 28.840347284000075 ], [ -82.017427417999954, 28.840225044000078 ], [ -82.017563583999959, 28.839909512000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017563546999952, 28.839909599000066 ], [ -82.017900227999974, 28.84001797600007 ], [ -82.019085504999964, 28.840410232000067 ], [ -82.019352438999988, 28.840496440000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017430827999988, 28.839864457000033 ], [ -82.017563546999952, 28.839909599000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016369778999945, 28.843520688000069 ], [ -82.016402299999982, 28.843658874000027 ], [ -82.016403209999964, 28.843724842000029 ], [ -82.016394811999987, 28.843780894000076 ], [ -82.016386410999985, 28.843829543000027 ], [ -82.016326387999982, 28.844057989000078 ], [ -82.016267563999975, 28.844265283000027 ], [ -82.016180799999972, 28.84447812600007 ], [ -82.016121072999965, 28.844601612000076 ], [ -82.016050223999969, 28.844729588000064 ], [ -82.015952267999978, 28.844877729000075 ], [ -82.015848119999987, 28.845010678000051 ], [ -82.01575442799998, 28.84512557000005 ], [ -82.015734792999979, 28.84514495600007 ], [ -82.015717167999981, 28.845161184000062 ], [ -82.015696397999989, 28.845174903000043 ], [ -82.015674718999946, 28.845188318000055 ], [ -82.015654844999972, 28.845197443000075 ], [ -82.015625263999937, 28.845209238000052 ], [ -82.015576608999936, 28.845224099000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015838600999984, 28.845402615000069 ], [ -82.015823366999939, 28.845365944000037 ], [ -82.015801674999977, 28.845331888000032 ], [ -82.01577408199995, 28.845301320000033 ], [ -82.015741297999966, 28.845275026000024 ], [ -82.015704162999953, 28.845253679000052 ], [ -82.015663632999974, 28.845237829000041 ], [ -82.015620747999947, 28.845227885000043 ], [ -82.015576608999936, 28.845224099000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015838600999984, 28.845402615000069 ], [ -82.015834144999985, 28.845356020000054 ], [ -82.015833706999956, 28.845330809000075 ], [ -82.015835438999943, 28.845303690000037 ], [ -82.015841506999948, 28.845270457000026 ], [ -82.015853650999986, 28.845245627000054 ], [ -82.015864926999939, 28.845221942000023 ], [ -82.015879673999962, 28.84519520300006 ], [ -82.015897455999948, 28.845163496000055 ], [ -82.016105010999979, 28.84489368800007 ], [ -82.016254409999988, 28.844642842000042 ], [ -82.016304844, 28.844550826000045 ], [ -82.016379291999954, 28.844390064000038 ], [ -82.016485238999962, 28.844039595000027 ], [ -82.016533849999973, 28.843810357000052 ], [ -82.016557262999982, 28.843747692000079 ], [ -82.016586982999968, 28.843693753000025 ], [ -82.016670025999986, 28.843618238000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015571981999983, 28.845711351000034 ], [ -82.015598381999951, 28.84571023500007 ], [ -82.015624542999944, 28.845706907000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015624542999944, 28.845706907000078 ], [ -82.015665926999986, 28.845696867000072 ], [ -82.015705047999973, 28.845681311000078 ], [ -82.015740967999989, 28.845660614000053 ], [ -82.015772819999938, 28.845635278000032 ], [ -82.015799835999985, 28.845605907000049 ], [ -82.015821369999969, 28.845573212000033 ], [ -82.015836900999943, 28.845537978000038 ], [ -82.015846055999987, 28.845501052000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015846055999987, 28.845501052000031 ], [ -82.015848658999971, 28.845468043000039 ], [ -82.015846158999977, 28.845435027000065 ], [ -82.015838600999984, 28.845402615000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015300033999949, 28.845512998000061 ], [ -82.015311121999957, 28.845549132000031 ], [ -82.01532836399997, 28.845583344000033 ], [ -82.01535135599994, 28.845614828000066 ], [ -82.015379552999946, 28.84564283900005 ], [ -82.015412289999972, 28.845666717000029 ], [ -82.015448794999941, 28.845685898000056 ], [ -82.015488206999976, 28.845699930000023 ], [ -82.015529593999986, 28.845708482000077 ], [ -82.015571981999983, 28.845711351000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013718797999957, 28.84429564900006 ], [ -82.013209459999985, 28.843955352000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015495428999941, 28.845233562000033 ], [ -82.01545299199995, 28.845247719000042 ], [ -82.015413753999951, 28.84526779600003 ], [ -82.015378768999938, 28.845293247000029 ], [ -82.015348978999953, 28.845323391000079 ], [ -82.015325186999974, 28.845357417000059 ], [ -82.015308030999961, 28.84539441000004 ], [ -82.015297972999974, 28.845433372000059 ], [ -82.015295282999944, 28.845473259000073 ], [ -82.015300033999949, 28.845512998000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015576608999936, 28.845224099000063 ], [ -82.01553561999998, 28.845226172000025 ], [ -82.015495428999941, 28.845233562000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015495428999941, 28.845233562000033 ], [ -82.015451266999946, 28.845232145000068 ], [ -82.015413954999985, 28.845229095000036 ], [ -82.015381471999945, 28.845225231000029 ], [ -82.015322683999955, 28.84521692900006 ], [ -82.015282335999984, 28.845210058000077 ], [ -82.015248657999962, 28.845204285000079 ], [ -82.015214816999958, 28.845194357000025 ], [ -82.015184445999978, 28.845184811000024 ], [ -82.015153641999973, 28.845171827000058 ], [ -82.015125320999971, 28.845158928000046 ], [ -82.015052428999979, 28.845113099000059 ], [ -82.014646316999972, 28.844850343000076 ], [ -82.014418667999962, 28.844707877000076 ], [ -82.014418531, 28.844707791000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014418575999969, 28.844804363000037 ], [ -82.015054605999978, 28.845243536000055 ], [ -82.01510441399995, 28.845278465000035 ], [ -82.015145143999973, 28.845315242000027 ], [ -82.015183267999987, 28.845354878000023 ], [ -82.015220583999962, 28.845396892000053 ], [ -82.015243428999952, 28.845421111000064 ], [ -82.015270483999984, 28.845447307000029 ], [ -82.015300033999949, 28.845512998000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010910768999963, 28.847755324000047 ], [ -82.010968306999985, 28.847699558000045 ], [ -82.011010602999988, 28.847671384000023 ], [ -82.011065373999941, 28.847643209000069 ], [ -82.011119711999982, 28.847624487000076 ], [ -82.011181534999935, 28.847611113000028 ], [ -82.011363422999978, 28.847573186000034 ], [ -82.011553229999947, 28.847546432000058 ], [ -82.011801726999977, 28.847530020000079 ], [ -82.012063004999959, 28.847534928000073 ], [ -82.012392446999968, 28.84754431500005 ], [ -82.012609659999953, 28.847546338000029 ], [ -82.012752829999954, 28.847536774000048 ], [ -82.012901420999981, 28.847523391000038 ], [ -82.013013135999984, 28.847506192000026 ], [ -82.01318277699994, 28.847472504000052 ], [ -82.013393829999984, 28.847422118000054 ], [ -82.013611830999935, 28.847350475000042 ], [ -82.013688780999985, 28.847319537000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010910768999963, 28.847755324000047 ], [ -82.010929825999938, 28.847719794000056 ], [ -82.010942172999989, 28.847682036000037 ], [ -82.010947488999989, 28.847643023000046 ], [ -82.010945637999953, 28.847603765000031 ], [ -82.010936666999953, 28.847565274000033 ], [ -82.01092080899997, 28.847528547000024 ], [ -82.010898472999941, 28.847494530000063 ], [ -82.01087023599996, 28.84746410300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01362325499997, 28.847211811000079 ], [ -82.013514201999953, 28.847252126000058 ], [ -82.013350647999971, 28.847304952000059 ], [ -82.013228630999947, 28.847338386000047 ], [ -82.013116916999934, 28.847361794000051 ], [ -82.012968325999964, 28.847389023000062 ], [ -82.012847392999959, 28.847404792000077 ], [ -82.012658669999951, 28.847420089000025 ], [ -82.01246452099997, 28.847424404000037 ], [ -82.012264948999984, 28.847420602000057 ], [ -82.012107543999946, 28.84741391700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01087023599996, 28.84746410300005 ], [ -82.010835903999975, 28.847437443000047 ], [ -82.010797062999984, 28.847416112000076 ], [ -82.010754769999949, 28.847400690000029 ], [ -82.010710173999939, 28.84739159600008 ], [ -82.010664487999975, 28.847389075000024 ], [ -82.010618950999969, 28.847393198000077 ], [ -82.010574801999951, 28.84740385200007 ], [ -82.010533240999962, 28.847420747000058 ], [ -82.010495397999989, 28.847443424000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010495397999989, 28.847443424000062 ], [ -82.010462806999954, 28.847470768000051 ], [ -82.010435661999963, 28.847502387000077 ], [ -82.010414677999961, 28.847537455000065 ], [ -82.010400405999974, 28.847575046000031 ], [ -82.010393219999969, 28.847614174000057 ], [ -82.010393310999973, 28.847653810000054 ], [ -82.010400674999971, 28.84769291200007 ], [ -82.010415119999948, 28.847730453000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010824355999944, 28.850278756000023 ], [ -82.01081947299997, 28.850253833000068 ], [ -82.010812553999983, 28.850214785000048 ], [ -82.010806780999985, 28.850177286000076 ], [ -82.010801389999983, 28.850135838000028 ], [ -82.010746375999986, 28.849650476000079 ], [ -82.010733647999984, 28.849538156000051 ], [ -82.010717566999972, 28.849396238000054 ], [ -82.010703151999962, 28.849269025000069 ], [ -82.010675411999955, 28.849024221000036 ], [ -82.010660298999937, 28.848888728000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01049353999997, 28.847822242000063 ], [ -82.010524653999937, 28.847841793000043 ], [ -82.01055852199994, 28.847857397000041 ], [ -82.010594502999936, 28.847868757000072 ], [ -82.010631914999976, 28.847875662000035 ], [ -82.010670009999956, 28.847877972000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010811349999983, 28.847843942000054 ], [ -82.010850114999982, 28.847819584000035 ], [ -82.010883582999952, 28.847789753000029 ], [ -82.010910768999963, 28.847755324000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010709791999943, 28.848424258000023 ], [ -82.010711275999938, 28.848295689000054 ], [ -82.010711275999938, 28.848181989000068 ], [ -82.010710634999953, 28.848039666000034 ], [ -82.010717773999943, 28.847991125000078 ], [ -82.010729194999954, 28.847951150000029 ], [ -82.010747754999954, 28.847909748000063 ], [ -82.01077990999994, 28.847877004000054 ], [ -82.010811349999983, 28.847843942000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010415119999948, 28.847730453000054 ], [ -82.010435632999986, 28.847764574000053 ], [ -82.010461992999979, 28.84779542800004 ], [ -82.01049353999997, 28.847822242000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01049353999997, 28.847822242000063 ], [ -82.010517425999979, 28.847848854000063 ], [ -82.010535280999989, 28.847874040000079 ], [ -82.010549968999953, 28.847896599000023 ], [ -82.010577090999959, 28.847953894000057 ], [ -82.01058902799997, 28.848010234000071 ], [ -82.010593372999949, 28.848074216000043 ], [ -82.010592300999974, 28.848205044000053 ], [ -82.010587962999978, 28.848429968000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00599688899996, 28.847946992000061 ], [ -82.006108086999973, 28.84789085500006 ], [ -82.006218715999978, 28.847836418000043 ], [ -82.006361883999944, 28.847776250000038 ], [ -82.006543011999952, 28.847706531000028 ], [ -82.006686179999974, 28.84766068700003 ], [ -82.006818502999977, 28.847619616000031 ], [ -82.006936725999935, 28.847588097000028 ], [ -82.007175340999936, 28.847536518000027 ], [ -82.007371655999975, 28.847504994000076 ], [ -82.007578817999956, 28.847478244000058 ], [ -82.007848889999934, 28.847462950000079 ], [ -82.008061476999956, 28.847460072000047 ], [ -82.008701407999979, 28.847460033000061 ], [ -82.008891216999984, 28.847461930000065 ], [ -82.00909078899997, 28.84746573700005 ], [ -82.009300123999935, 28.847480046000044 ], [ -82.009578875999978, 28.847507720000067 ], [ -82.009865222999963, 28.847550672000068 ], [ -82.010073474999956, 28.847588855000026 ], [ -82.010174347999964, 28.847610810000049 ], [ -82.010241270999984, 28.847631265000075 ], [ -82.010290623999936, 28.847653226000034 ], [ -82.010350065999944, 28.847686239000041 ], [ -82.010415119999948, 28.847730453000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003659681999977, 28.849733611000033 ], [ -82.003850501999977, 28.84966890100003 ], [ -82.004032721999977, 28.849591544000077 ], [ -82.004204092999942, 28.849529468000071 ], [ -82.00433641799998, 28.849483625000062 ], [ -82.004451388999939, 28.849444469000048 ], [ -82.004526228999964, 28.849416774000076 ], [ -82.004585884999983, 28.849390033000077 ], [ -82.004679160999956, 28.849344192000046 ], [ -82.004791961999956, 28.84927734200005 ], [ -82.004909100999953, 28.849197122000078 ], [ -82.005002375999936, 28.849120724000045 ], [ -82.005089142999964, 28.849036684000055 ], [ -82.005162894999955, 28.848952647000033 ], [ -82.005217123999955, 28.848883889000035 ], [ -82.005273520999935, 28.848797942000033 ], [ -82.005329916999983, 28.848690985000076 ], [ -82.005388481999944, 28.848582119000071 ], [ -82.005431862999956, 28.848505721000038 ], [ -82.005505613999958, 28.84840067500005 ], [ -82.005572857999937, 28.848322366000048 ], [ -82.005644439999969, 28.848249787000043 ], [ -82.005735543999947, 28.848161928000025 ], [ -82.005811464999965, 28.848096989000055 ], [ -82.005878708999944, 28.848047328000064 ], [ -82.00599688899996, 28.847946992000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004890994999982, 28.848913364000055 ], [ -82.004894225999976, 28.848885632000076 ], [ -82.004897477999975, 28.848858416000041 ], [ -82.004906153999968, 28.84883263200004 ], [ -82.004922421999936, 28.848797298000079 ], [ -82.004941289999977, 28.848762514000043 ], [ -82.00496471699995, 28.848728897000058 ], [ -82.004989866999949, 28.848700696000037 ], [ -82.005127827999956, 28.848564325000041 ], [ -82.005358193999939, 28.848360338000077 ], [ -82.005544225999984, 28.84820833200007 ], [ -82.005666652999935, 28.848119680000025 ], [ -82.00582934199997, 28.848019977000035 ], [ -82.005940528999986, 28.847968065000032 ], [ -82.00599688899996, 28.847946992000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004890994999982, 28.848913364000055 ], [ -82.004880850999939, 28.84887528400003 ], [ -82.00486396499997, 28.84883910700006 ], [ -82.004840764999983, 28.848805750000054 ], [ -82.00481184299997, 28.84877606200007 ], [ -82.004777929999989, 28.848750795000058 ], [ -82.004739890999986, 28.848730593000028 ], [ -82.004698687999962, 28.848715965000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999549787999968, 28.853574737000031 ], [ -81.999516864999975, 28.853549394000026 ], [ -81.999479813999983, 28.853528936000032 ], [ -81.999439563999942, 28.853513875000033 ], [ -81.999397119999969, 28.853504589000067 ], [ -81.999353544999963, 28.853501309000023 ], [ -81.999309926999956, 28.853504116000067 ], [ -81.999267356999951, 28.853512943000055 ], [ -81.99922689899995, 28.853527566000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004336393999949, 28.848942866000073 ], [ -82.004327814999954, 28.848981873000071 ], [ -82.00431913999995, 28.849015869000027 ], [ -82.004307860999972, 28.849042990000044 ], [ -82.004295279999951, 28.849071256000059 ], [ -82.004269249999936, 28.849109837000071 ], [ -82.004245822999962, 28.849136194000039 ], [ -82.004222394999942, 28.849159113000042 ], [ -82.004198534999944, 28.849181269000042 ], [ -82.00417033399998, 28.849203043000045 ], [ -82.004091279999955, 28.849263996000047 ], [ -82.003825546999963, 28.849464542000078 ], [ -82.003648754999972, 28.849589645000037 ], [ -82.003501244999939, 28.849682278000046 ], [ -82.00333638099994, 28.849779687000023 ], [ -82.003222494999989, 28.849842717000058 ], [ -82.003066306999983, 28.84992389100006 ], [ -82.002861308999968, 28.850014615000077 ], [ -82.002593401999945, 28.850120619000052 ], [ -82.002375388999951, 28.850193199000046 ], [ -82.002072769999984, 28.850285834000033 ], [ -82.001871025999947, 28.850362232000066 ], [ -82.001695312999971, 28.850438631000031 ], [ -82.001483805999953, 28.850541767000038 ], [ -82.001288568999939, 28.850647768000044 ], [ -82.001099413999953, 28.850760156000035 ], [ -82.000923038999986, 28.85087982400006 ], [ -82.000747324999963, 28.851014472000031 ], [ -82.000552085999971, 28.851178723000032 ], [ -82.000350338999965, 28.851373533000071 ], [ -82.000235362999945, 28.851492902000075 ], [ -82.000097610999944, 28.85165715200003 ], [ -81.999957687999938, 28.851839546000065 ], [ -81.999882826999965, 28.851955036000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999102790999984, 28.853639159000068 ], [ -81.999102784999934, 28.853639172000044 ], [ -81.99908705699994, 28.853674458000057 ], [ -81.999077644999943, 28.853712930000029 ], [ -81.999075394999977, 28.853752236000048 ], [ -81.999080365999987, 28.853791348000073 ], [ -81.999092428999973, 28.853829243000064 ], [ -81.999097680999967, 28.853839191000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999167148999959, 28.853926045000037 ], [ -81.999199120999947, 28.853947806000065 ], [ -81.999234352999963, 28.853965232000064 ], [ -81.999272093999934, 28.853977952000037 ], [ -81.999311537999972, 28.853985694000073 ], [ -81.999350828, 28.853988229000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015624542999944, 28.845706907000078 ], [ -82.015702310999984, 28.845714332000057 ], [ -82.015756108999938, 28.845723494000026 ], [ -82.015804701999969, 28.845734947000039 ], [ -82.015850690999969, 28.845752512000047 ], [ -82.015912301999947, 28.845787647000066 ], [ -82.015984585999945, 28.845840088000045 ], [ -82.016211077999969, 28.845997055000055 ], [ -82.016461, 28.846172352000053 ], [ -82.016615898999987, 28.846273176000068 ], [ -82.016714826999987, 28.846336190000045 ], [ -82.016822864999938, 28.846400350000067 ], [ -82.017022017999977, 28.846509188000027 ], [ -82.017215964999934, 28.846607714000072 ], [ -82.017499720999979, 28.846726855000043 ], [ -82.017838145999974, 28.846860886000059 ], [ -82.018409611999971, 28.847091052000053 ], [ -82.018632211999943, 28.847182497000063 ], [ -82.019296908999934, 28.847443770000041 ], [ -82.019793463999974, 28.847640301000069 ], [ -82.020277979999946, 28.84783374400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023099484999989, 28.848825873000067 ], [ -82.022920319999969, 28.848754479000036 ], [ -82.021956638999939, 28.848370459000023 ], [ -82.020762694999974, 28.847892252000065 ], [ -82.020530338999947, 28.847799391000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.197069573999954, 28.630681197000058 ], [ -82.197072182999989, 28.630064888000049 ], [ -82.197076550999952, 28.62951679400004 ], [ -82.19707514299995, 28.629063586000029 ], [ -82.19707675099994, 28.628632174000074 ], [ -82.197078826999984, 28.627157918000023 ], [ -82.197085995999942, 28.627118496000037 ], [ -82.197102848999975, 28.627091840000048 ], [ -82.197118513999953, 28.627075840000032 ], [ -82.197141420999969, 28.627058763000036 ], [ -82.197161923999943, 28.627048081000055 ], [ -82.197184850999975, 28.627041657000063 ], [ -82.197207781999964, 28.627038427000059 ], [ -82.197277803999953, 28.627037261000055 ], [ -82.197647913999958, 28.627036689000079 ], [ -82.198464718999958, 28.62703549500003 ], [ -82.19898535599998, 28.627031402000057 ], [ -82.19909099299997, 28.627031247000048 ], [ -82.19913246599998, 28.627016207000054 ], [ -82.199156953999989, 28.626997863000042 ], [ -82.199181419999945, 28.626967867000076 ], [ -82.199192669999945, 28.62693123400004 ], [ -82.199196380999979, 28.625899305000075 ], [ -82.199197511999955, 28.62549985000004 ], [ -82.199197288999983, 28.625381679000043 ], [ -82.199210412999946, 28.625338385000077 ], [ -82.19923109399997, 28.625301738000076 ], [ -82.199268776999986, 28.625278382000033 ], [ -82.199314038999944, 28.625273322000055 ], [ -82.200549586999955, 28.625263176000033 ], [ -82.20131166799996, 28.625258718000055 ], [ -82.202439697999978, 28.625252046000071 ], [ -82.203597912999953, 28.625246982000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037087432999954, 28.869969085000037 ], [ -82.037078221999934, 28.870698826000023 ], [ -82.03708179299997, 28.870812804000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037458950999962, 28.870107676000032 ], [ -82.037087432999954, 28.869969085000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039540951999982, 28.921921421000036 ], [ -82.039549356999942, 28.922017928000059 ], [ -82.039565655999979, 28.922065671000041 ], [ -82.039671613999985, 28.922411803000045 ], [ -82.039807755999959, 28.922849703000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039540951999982, 28.921921421000036 ], [ -82.039416362999987, 28.921934411000052 ], [ -82.039269843999989, 28.921960714000079 ], [ -82.039147744, 28.921984623000071 ], [ -82.039014795999947, 28.922018084000058 ], [ -82.038884563999943, 28.922061094000071 ], [ -82.038732628999981, 28.922120821000078 ], [ -82.038650326999971, 28.922145165000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038650326999971, 28.922145165000074 ], [ -82.038705204999985, 28.922857313000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039475794999987, 28.920532682000044 ], [ -82.038940974999946, 28.920528406000074 ], [ -82.038889422999944, 28.920540358000039 ], [ -82.03884058899996, 28.920561858000042 ], [ -82.038783619999947, 28.92060007200007 ], [ -82.038734793999936, 28.920643058000053 ], [ -82.038707684999963, 28.920714687000043 ], [ -82.038696860999949, 28.920795859000066 ], [ -82.038710517999959, 28.921036976000039 ], [ -82.038707879999947, 28.921237513000051 ], [ -82.038707915999964, 28.921335395000028 ], [ -82.038697095999964, 28.921428504000062 ], [ -82.038680874999955, 28.921590847000061 ], [ -82.038664653999945, 28.921750803000066 ], [ -82.038648882999951, 28.921906467000042 ], [ -82.038640487999942, 28.921986679000042 ], [ -82.038650326999971, 28.922145165000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039475794999987, 28.920532682000044 ], [ -82.039494752999985, 28.921134629000051 ], [ -82.039494840999964, 28.921368588000064 ], [ -82.039503071999945, 28.921609708000062 ], [ -82.039533, 28.921817397000041 ], [ -82.039540951999982, 28.921921421000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040257574999941, 28.920535919000031 ], [ -82.040270760999988, 28.921010257000034 ], [ -82.040273562999971, 28.921239442000058 ], [ -82.040284445999987, 28.921315833000051 ], [ -82.040354018999949, 28.921837242000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040257574999941, 28.920535919000031 ], [ -82.039475794999987, 28.920532682000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041254440999978, 28.921101460000045 ], [ -82.041214607999962, 28.920871658000067 ], [ -82.04119009599998, 28.920764417000044 ], [ -82.041164561999949, 28.920673517000068 ], [ -82.041111781999973, 28.920608931000061 ], [ -82.041062927999974, 28.920577910000077 ], [ -82.040992365999955, 28.92054928400006 ], [ -82.040929951999942, 28.920542141000055 ], [ -82.040257574999941, 28.920535919000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041861598999958, 28.917855244000066 ], [ -82.042111992999935, 28.917856572000062 ], [ -82.042619075999937, 28.917860997000048 ], [ -82.042851775999964, 28.917860923000035 ], [ -82.043041064999954, 28.917862390000039 ], [ -82.043296340999973, 28.917862308000053 ], [ -82.043346698999983, 28.917856181000047 ], [ -82.043381426999986, 28.91784700200003 ], [ -82.043435250999948, 28.917825593000032 ], [ -82.043466499999965, 28.917804193000052 ], [ -82.043504690999953, 28.917769040000053 ], [ -82.043537667999942, 28.917726248000065 ], [ -82.043556751999972, 28.91768193300004 ], [ -82.043565414999989, 28.917636092000066 ], [ -82.043566055999975, 28.917288409000037 ], [ -82.043560037999953, 28.917235785000059 ], [ -82.043547867999962, 28.917200647000072 ], [ -82.043521799999951, 28.917154818000029 ], [ -82.04349052699996, 28.91711815900004 ], [ -82.043448834999936, 28.917083031000061 ], [ -82.043389780999973, 28.917057076000049 ], [ -82.04333420599994, 28.917044870000041 ], [ -82.043289339999944, 28.917042344000038 ], [ -82.042603110999949, 28.917038993000062 ], [ -82.04217244199998, 28.917037600000072 ], [ -82.042097770999987, 28.917039152000029 ], [ -82.04205262399995, 28.917049860000077 ], [ -82.04201442599998, 28.917063623000047 ], [ -82.041991854999935, 28.917075854000075 ], [ -82.041944978999936, 28.917103371000053 ], [ -82.041899847999957, 28.917153805000055 ], [ -82.041873820999967, 28.917205761000048 ], [ -82.041859949999946, 28.917259243000046 ], [ -82.041863451999973, 28.917331052000065 ], [ -82.041861598999958, 28.917855244000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041861598999958, 28.917855244000066 ], [ -82.041859846999955, 28.918084212000053 ], [ -82.041842534999944, 28.918217908000031 ], [ -82.041803512999934, 28.91834397100007 ], [ -82.041781862999983, 28.918489129000079 ], [ -82.041782170999966, 28.919256897000025 ], [ -82.041782418999958, 28.919875696000076 ], [ -82.041804174999982, 28.919994101000043 ], [ -82.041834608999977, 28.920104864000052 ], [ -82.042043127999989, 28.920414199000049 ], [ -82.042199526, 28.920666253000036 ], [ -82.042308115999958, 28.920792271000039 ], [ -82.042402854999978, 28.920877919000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049477069999966, 28.920020517000069 ], [ -82.049356057999944, 28.920020919000024 ], [ -82.049293542999976, 28.920025525000028 ], [ -82.04919803599995, 28.92004084000007 ], [ -82.049118160999967, 28.920060731000035 ], [ -82.049050443999988, 28.920083674000068 ], [ -82.048977520999983, 28.920114259000059 ], [ -82.04890288699994, 28.920155265000062 ], [ -82.048805743999935, 28.920209047000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05219658599998, 28.920029432000035 ], [ -82.050698460999968, 28.920023858000036 ], [ -82.049477069999966, 28.920020517000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05220124799996, 28.918925226000056 ], [ -82.05219658599998, 28.920029432000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05220124799996, 28.918925226000056 ], [ -82.050407012999983, 28.918919349000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977910621999968, 28.847481860000073 ], [ -81.977326325999968, 28.846531483000035 ], [ -81.977297566999937, 28.846477724000067 ], [ -81.977276329999938, 28.846421317000079 ], [ -81.977262923999945, 28.846363078000024 ], [ -81.977257539999982, 28.846303842000054 ], [ -81.977257361999989, 28.846295936000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976973351999959, 28.84757469300007 ], [ -81.976911349999966, 28.847366364000038 ], [ -81.97688372999994, 28.84728356100004 ], [ -81.97685219899995, 28.847201849000044 ], [ -81.97681681499995, 28.847121369000035 ], [ -81.976613669999949, 28.846686560000023 ], [ -81.97658820099997, 28.846625261000042 ], [ -81.976568316999987, 28.846562384000038 ], [ -81.976554138999973, 28.846498319000034 ], [ -81.976545757999986, 28.846433466000065 ], [ -81.976543224999944, 28.846368234000067 ], [ -81.976546557999939, 28.846303030000058 ], [ -81.976547127999936, 28.846297102000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980225401999974, 28.845758449000073 ], [ -81.980250024999975, 28.845740081000031 ], [ -81.98031324599998, 28.845695928000055 ], [ -81.980379571999947, 28.845655460000046 ], [ -81.980448725999963, 28.845618847000026 ], [ -81.980553704999977, 28.84556725300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97966893399996, 28.846173546000045 ], [ -81.980225401999974, 28.845758449000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979112965999946, 28.846588263000058 ], [ -81.97966893399996, 28.846173546000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979112965999946, 28.846588263000058 ], [ -81.979097266999986, 28.846568663000028 ], [ -81.978468531999965, 28.845741866000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979423437999969, 28.846855907000077 ], [ -81.979328266999971, 28.846764261000033 ], [ -81.97925894499997, 28.84671256300004 ], [ -81.979200197999944, 28.84665969100007 ], [ -81.979155549999973, 28.846620917000052 ], [ -81.979112965999946, 28.846588263000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976195467999958, 28.84624705300007 ], [ -81.976219440999955, 28.846251911000024 ], [ -81.976327820999984, 28.846271513000033 ], [ -81.976437130999955, 28.846286588000055 ], [ -81.976547127999936, 28.846297102000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976547127999936, 28.846297102000051 ], [ -81.976623887999949, 28.84630171200007 ], [ -81.976700778999941, 28.846304099000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976700778999941, 28.846304099000065 ], [ -81.976791276999961, 28.846304061000069 ], [ -81.977257361999989, 28.846295936000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977257361999989, 28.846295936000047 ], [ -81.977331446999983, 28.846291535000034 ], [ -81.977404720999971, 28.846280960000058 ], [ -81.97747652399994, 28.846264305000034 ], [ -81.977546207999978, 28.846241720000023 ], [ -81.977613137999981, 28.846213411000065 ], [ -81.977817370999958, 28.846116248000044 ], [ -81.977875908999977, 28.846087923000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977875908999977, 28.846087923000027 ], [ -81.978029557999946, 28.846008906000066 ], [ -81.978179688999944, 28.845924808000063 ], [ -81.978326083999946, 28.845835752000028 ], [ -81.978468531999965, 28.845741866000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979038102999937, 28.845344 ], [ -81.979399791999981, 28.845121481000035 ], [ -81.979437897999958, 28.845101806000059 ], [ -81.979479063999975, 28.845087696000064 ], [ -81.979522248999956, 28.845079502000033 ], [ -81.979566362999947, 28.845077436000054 ], [ -81.979610290999972, 28.845081548000053 ], [ -81.979652923999936, 28.84509173500004 ], [ -81.979693187999942, 28.845107739000071 ], [ -81.979730062999977, 28.845129155000052 ], [ -81.979762618999985, 28.845155445000046 ], [ -81.979790033999961, 28.845185943000047 ], [ -81.980225401999974, 28.845758449000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978468531999965, 28.845741866000026 ], [ -81.978581786999939, 28.845661709000069 ], [ -81.978692164999984, 28.845578500000045 ], [ -81.978782367999941, 28.845510971000067 ], [ -81.978875412999969, 28.845446501000026 ], [ -81.978971166999941, 28.84538518100004 ], [ -81.979038102999937, 28.845344 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975985727999955, 28.844980320000047 ], [ -81.976022578999959, 28.844971088000079 ], [ -81.976056076999953, 28.844963233000044 ], [ -81.976433240999938, 28.844896648000031 ], [ -81.976475451999988, 28.844886086000031 ], [ -81.976515250999967, 28.844869807000066 ], [ -81.976551643999983, 28.844848217000049 ], [ -81.976613286999964, 28.844775961000039 ], [ -81.976643180999986, 28.844697352000026 ], [ -81.976699645999986, 28.844533492000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971626984999943, 28.847200923000059 ], [ -81.971649483999954, 28.847039539000036 ], [ -81.971659944999942, 28.84698284600006 ], [ -81.971677794999948, 28.84692760300004 ], [ -81.971702791999974, 28.846874551000042 ], [ -81.971794577999958, 28.846707804000062 ], [ -81.971826777, 28.846655254000041 ], [ -81.971864033999964, 28.846605361000059 ], [ -81.971906065999974, 28.846558501000061 ], [ -81.971952557999941, 28.846515030000035 ], [ -81.972018643999945, 28.846453905000033 ], [ -81.972079268999948, 28.846388540000078 ], [ -81.972134081999968, 28.846319310000069 ], [ -81.972182764999957, 28.84624661600003 ], [ -81.972225038999966, 28.846170879000056 ], [ -81.97226066099995, 28.846092533000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97226066099995, 28.846092533000046 ], [ -81.972286830999963, 28.846020256000031 ], [ -81.97230733899994, 28.845946576000074 ], [ -81.972322085999963, 28.845871834000036 ], [ -81.972331002999965, 28.845796381000071 ], [ -81.972339311999974, 28.845733399000039 ], [ -81.972354176999943, 28.84567135900005 ], [ -81.972375467999939, 28.845610788000045 ], [ -81.972403005999979, 28.845552202000079 ], [ -81.97243655699998, 28.845496099000059 ], [ -81.972475835999944, 28.845442955000067 ], [ -81.972520506999956, 28.845393225000066 ], [ -81.972570192999967, 28.845347326000024 ], [ -81.973407804999965, 28.844641773000035 ], [ -81.973449887999948, 28.844608125000036 ], [ -81.973493900999983, 28.844576448000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03775285599994, 28.869506363000028 ], [ -82.037458950999962, 28.870107676000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037458950999962, 28.870107676000032 ], [ -82.03724893499998, 28.870566236000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037184976999981, 28.87768741800005 ], [ -82.037185037999961, 28.876973935000024 ], [ -82.037173, 28.876676953000072 ], [ -82.037154035999947, 28.876422098000035 ], [ -82.037145752999947, 28.876334135000036 ], [ -82.037131600999942, 28.876197583000078 ], [ -82.037109836999946, 28.876015194000047 ], [ -82.037082045999966, 28.875827159000039 ], [ -82.037022048999972, 28.875477052000065 ], [ -82.036981070999957, 28.87526532000004 ], [ -82.036940583999979, 28.875079951000032 ], [ -82.03686496499995, 28.874770571000056 ], [ -82.03678433999994, 28.874485533000041 ], [ -82.036514247999946, 28.873648823000053 ], [ -82.036463517999948, 28.873441401000036 ], [ -82.036442642999987, 28.873314208000068 ], [ -82.036421723999979, 28.873062109000045 ], [ -82.036420370999963, 28.872914285000036 ], [ -82.036428124999986, 28.872750413000063 ], [ -82.03644109399994, 28.872607169000048 ], [ -82.036465779999958, 28.872461629000043 ], [ -82.036482664999937, 28.872350468000036 ], [ -82.036529473999963, 28.872185442000045 ], [ -82.03657368599994, 28.872038751000048 ], [ -82.036634817999982, 28.871881742000028 ], [ -82.036706364999986, 28.871723585000041 ], [ -82.036787024999967, 28.871568862000061 ], [ -82.03688200299996, 28.871407259000023 ], [ -82.036989991999974, 28.871221589000072 ], [ -82.037113588999944, 28.870999244000075 ], [ -82.037241943999959, 28.870737650000024 ], [ -82.03724893499998, 28.870566236000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037184976999981, 28.87768741800005 ], [ -82.037617243999989, 28.877683479000041 ], [ -82.037679732999948, 28.877673529000049 ], [ -82.037728332999961, 28.877659764000043 ], [ -82.037776928999961, 28.877635304000023 ], [ -82.037821182999949, 28.877604734000045 ], [ -82.037861095999972, 28.877564996000046 ], [ -82.037887120999983, 28.877529084000059 ], [ -82.037901861999956, 28.87749240900007 ], [ -82.037911429999951, 28.877438495000035 ], [ -82.037916566999968, 28.877351838000038 ], [ -82.037909487999968, 28.876956928000027 ], [ -82.037901133999981, 28.876859307000075 ], [ -82.037885857999981, 28.87678853400007 ], [ -82.03787033499998, 28.876719298000069 ], [ -82.037839050999935, 28.876612353000041 ], [ -82.037821666999946, 28.876542074000042 ], [ -82.037798212999974, 28.876486312000054 ], [ -82.037773025999968, 28.876443538000046 ], [ -82.037747842999977, 28.876407639000035 ], [ -82.037709634999942, 28.876354173000038 ], [ -82.03765144099998, 28.876239595000072 ], [ -82.037630542999977, 28.87618578200005 ], [ -82.03761147199998, 28.876116611000043 ], [ -82.037588004999975, 28.876026470000056 ], [ -82.037567143999979, 28.875943206000045 ], [ -82.03754539199997, 28.875858970000024 ], [ -82.037523177999958, 28.875767862000032 ], [ -82.037500961999967, 28.875673499000072 ], [ -82.03747319699994, 28.875571001000026 ], [ -82.037438043999941, 28.875481524000065 ], [ -82.037408445999972, 28.875422958000058 ], [ -82.037369603999934, 28.875359513000035 ], [ -82.037293778999981, 28.875258657000074 ], [ -82.037241989999984, 28.87517243700006 ], [ -82.037225342999989, 28.875141527000039 ], [ -82.037184919999959, 28.875015872000063 ], [ -82.037175346999959, 28.874941771000067 ], [ -82.037164023999935, 28.874831001000075 ], [ -82.037143259999937, 28.874586390000047 ], [ -82.037125881999941, 28.873920002000034 ], [ -82.037122916999976, 28.873615726000025 ], [ -82.03712287999997, 28.873512624000057 ], [ -82.037131418999934, 28.873422092000055 ], [ -82.037151379999955, 28.873316471000066 ], [ -82.037239865999936, 28.873100183000076 ], [ -82.037267272999941, 28.873044852000078 ], [ -82.037299822999955, 28.872989520000033 ], [ -82.037328375999948, 28.872949277000032 ], [ -82.037360928999988, 28.872906016000059 ], [ -82.037392913999952, 28.872871806000035 ], [ -82.037443185999962, 28.872843628000055 ], [ -82.037482032999947, 28.872829535000051 ], [ -82.037525454, 28.872815441000057 ], [ -82.037575731999937, 28.87280738000004 ], [ -82.039463563999959, 28.87281086400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03715002399997, 28.885238768000079 ], [ -82.037151761999951, 28.884960260000071 ], [ -82.037149994999936, 28.884330742000031 ], [ -82.037149991999968, 28.884329723000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034224325999958, 28.883667800000069 ], [ -82.033688672999972, 28.883677017000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03486400099996, 28.883648547000064 ], [ -82.034224325999958, 28.883667800000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036950455999943, 28.895095342000047 ], [ -82.036429575999989, 28.895098344000075 ], [ -82.035939151999969, 28.895094924000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037086639999984, 28.898325300000067 ], [ -82.037108392999983, 28.897064278000073 ], [ -82.037110134999978, 28.896289908000028 ], [ -82.037111727999957, 28.89552929000007 ], [ -82.037111728999946, 28.895528942000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036923287999969, 28.898325337000074 ], [ -82.033105627999987, 28.898308207000071 ], [ -82.031311252999956, 28.89831705000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036950455999943, 28.895095342000047 ], [ -82.036945943999967, 28.895789012000023 ], [ -82.03693648999996, 28.896384132000037 ], [ -82.036921441999937, 28.896993793000036 ], [ -82.036921875999951, 28.897366758000032 ], [ -82.036921879999966, 28.897370568000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036934593999945, 28.89986465000004 ], [ -82.036934646999953, 28.899871814000051 ], [ -82.036949583999956, 28.901905576000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036246655999946, 28.901911249000079 ], [ -82.035107891999985, 28.901920438000047 ], [ -82.034742986999959, 28.901912554000035 ], [ -82.033791066999981, 28.901918780000074 ], [ -82.032936599999971, 28.901907024000025 ], [ -82.031089415999986, 28.901901480000049 ], [ -82.028637295999943, 28.901879761000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03708179299997, 28.870812804000025 ], [ -82.036906642999952, 28.871137959000066 ], [ -82.036650333999944, 28.871576921000042 ], [ -82.036564471999952, 28.871748834000073 ], [ -82.03649943399995, 28.871906989000024 ], [ -82.036437002999946, 28.87208004200005 ], [ -82.036392790999969, 28.872224441000071 ], [ -82.036364197999944, 28.872360814000047 ], [ -82.036331705999942, 28.872517816000027 ], [ -82.036314828999934, 28.872654186000034 ], [ -82.03629925599995, 28.872796285000049 ], [ -82.03629798299994, 28.872878793000041 ], [ -82.036299196999948, 28.873049538000032 ], [ -82.036328089999984, 28.873350909000067 ], [ -82.036347656999965, 28.873462059000076 ], [ -82.036380253999937, 28.873605291000047 ], [ -82.036423269999943, 28.873762272000079 ], [ -82.036600521999958, 28.874318001000063 ], [ -82.03666115599998, 28.874511482000059 ], [ -82.03673486799994, 28.874748497000041 ], [ -82.03679473699998, 28.874982587000034 ], [ -82.036841672999969, 28.875175092000063 ], [ -82.036865944999988, 28.875291423000078 ], [ -82.036903739999957, 28.875497504000066 ], [ -82.036938802999941, 28.875688690000061 ], [ -82.036958625999944, 28.875819904000025 ], [ -82.037011045999975, 28.876260871000056 ], [ -82.037023233999946, 28.87640443600003 ], [ -82.037030232999939, 28.876525957000069 ], [ -82.037038968, 28.876681802000064 ], [ -82.037040927999954, 28.877484716000026 ], [ -82.037040599999955, 28.877683273000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037040599999955, 28.877683273000059 ], [ -82.036375106999969, 28.87768262700007 ], [ -82.036239694999949, 28.877649271000053 ], [ -82.035869900999955, 28.877518734000034 ], [ -82.035650154999985, 28.878338132000067 ], [ -82.035421300999985, 28.879185035000035 ], [ -82.03519244499995, 28.880036520000033 ], [ -82.035014301999979, 28.880710373000056 ], [ -82.03476982799998, 28.881598532000055 ], [ -82.034453850999967, 28.882825904000072 ], [ -82.034224325999958, 28.883667800000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037039747999984, 28.88020973600004 ], [ -82.037037717999965, 28.881388371000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037040599999955, 28.877683273000059 ], [ -82.037037396999949, 28.879618396000069 ], [ -82.037037436999981, 28.879833696000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037153150999984, 28.881708892000063 ], [ -82.037151589999951, 28.881431752000026 ], [ -82.037148185999968, 28.881012534000035 ], [ -82.037151450999943, 28.88042150900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037151540999957, 28.880075431000023 ], [ -82.037149858999953, 28.879612589000033 ], [ -82.037151783999946, 28.87892598600007 ], [ -82.037149384999964, 28.878280446000076 ], [ -82.037183947999949, 28.877844983000045 ], [ -82.037184976999981, 28.87768741800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036949583999956, 28.901905576000047 ], [ -82.036951073999944, 28.905047835000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037138557999981, 28.905574043000058 ], [ -82.037139584999977, 28.905312372000026 ], [ -82.037133240999935, 28.904502482000055 ], [ -82.037117422999984, 28.903994178000062 ], [ -82.037100342999963, 28.902806339000051 ], [ -82.03709405099994, 28.902138535000063 ], [ -82.037083877999976, 28.901909424000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036944645999938, 28.915159466000034 ], [ -82.036959782999986, 28.916425349000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036921376999942, 28.910257216000048 ], [ -82.036906909999971, 28.912003635000076 ], [ -82.036913, 28.912512983000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036087339999938, 28.912773822000077 ], [ -82.036086644999955, 28.912773831000038 ], [ -82.034136215, 28.91279946700007 ], [ -82.031757660999972, 28.912812012000074 ], [ -82.030550152999979, 28.912832519000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037084507999964, 28.912737234000076 ], [ -82.037084501999971, 28.912050052000041 ], [ -82.037086528999964, 28.911369396000055 ], [ -82.037084884999956, 28.910418603000039 ], [ -82.037086500999976, 28.910260744000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036977952999962, 28.932658556000035 ], [ -82.036978086999966, 28.933035369000038 ], [ -82.036980545999938, 28.933554971000035 ], [ -82.03698004599994, 28.933630546000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037114755999937, 28.938319737000029 ], [ -82.037102384999969, 28.93762402200008 ], [ -82.03710932599995, 28.936747425000078 ], [ -82.037113877999957, 28.93560235700005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025251351999941, 28.847966835000079 ], [ -82.025251415999946, 28.847966826000061 ], [ -82.025317710999957, 28.847950698000034 ], [ -82.025389621999977, 28.847929941000075 ], [ -82.025463471999956, 28.847898722000025 ], [ -82.025571101999958, 28.847845921000044 ], [ -82.025666491999971, 28.847797841000045 ], [ -82.025803568999947, 28.847721420000028 ], [ -82.025918088999958, 28.847652642000071 ], [ -82.026008316999935, 28.847597620000045 ], [ -82.026082926999948, 28.847548711000059 ], [ -82.026159270999983, 28.847493692000057 ], [ -82.026226937999979, 28.84744020100004 ], [ -82.026292867999985, 28.84737448900006 ], [ -82.026358794999965, 28.847305719000076 ], [ -82.026426458999936, 28.847238478000065 ], [ -82.026522205999981, 28.847144299000036 ], [ -82.026523832999942, 28.847142371000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024406023999973, 28.847639319000052 ], [ -82.024452456999938, 28.847690005000061 ], [ -82.024499569999989, 28.847738546000073 ], [ -82.024633598999969, 28.847846300000072 ], [ -82.024737604999984, 28.847902936000025 ], [ -82.024768376999987, 28.847916358000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013840054999946, 28.842602214000067 ], [ -82.013890773999947, 28.842602515000067 ], [ -82.013928577999934, 28.842606982000063 ], [ -82.013981477999948, 28.842619082000056 ], [ -82.014031372999966, 28.842638176000037 ], [ -82.014126356999952, 28.842703332000042 ], [ -82.014454397999941, 28.84293034600006 ], [ -82.014504058999989, 28.842963374000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014833187999955, 28.844040419000066 ], [ -82.014922040999977, 28.844099355000026 ], [ -82.015212740999971, 28.844299861000025 ], [ -82.015381955999942, 28.844412526000042 ], [ -82.015429682999979, 28.844448808000038 ], [ -82.015477404999956, 28.844454532000043 ], [ -82.01550703199996, 28.844456077000075 ], [ -82.015542479999965, 28.844446885000025 ], [ -82.015581521999934, 28.844427781000036 ], [ -82.015622728999972, 28.844368570000029 ], [ -82.015702961999978, 28.844189030000052 ], [ -82.015765835999957, 28.843975115000035 ], [ -82.015798356999937, 28.843856698000025 ], [ -82.015813526999978, 28.843770750000033 ], [ -82.015811349999979, 28.843707724000069 ], [ -82.015796155999965, 28.843648520000045 ], [ -82.015776622999965, 28.843583586000079 ], [ -82.015739737, 28.843522474000054 ], [ -82.015672480999967, 28.843436537000059 ], [ -82.015620412999965, 28.843383065000069 ], [ -82.015507601999957, 28.843289493000043 ], [ -82.015320149, 28.843134434000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014504058999989, 28.842963374000078 ], [ -82.014747261999958, 28.84312512300005 ], [ -82.01497287899997, 28.843281709000053 ], [ -82.015141023999945, 28.843397726000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008634862999941, 28.945983891000026 ], [ -82.008589007999944, 28.946040961000051 ], [ -82.008561043999975, 28.946070604000056 ], [ -82.008545412999979, 28.946096961000023 ], [ -82.008534298999962, 28.946128817000044 ], [ -82.008530827999948, 28.946159376000026 ], [ -82.008533435999937, 28.946192225000061 ], [ -82.008540387999972, 28.94623424200006 ], [ -82.008558630999971, 28.946283133000065 ], [ -82.008589648999987, 28.946376116000067 ], [ -82.008605599999953, 28.946429096000031 ], [ -82.008605599999953, 28.946455270000058 ], [ -82.00859608199994, 28.946481444000028 ], [ -82.008558010999934, 28.946533792000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014373648999936, 28.840774810000028 ], [ -82.014493098999935, 28.84082524300004 ], [ -82.014563597999938, 28.840850064000051 ], [ -82.01459071499994, 28.840858656000023 ], [ -82.01462433599994, 28.840864382000063 ], [ -82.014654702999962, 28.840867244000037 ], [ -82.014681818999975, 28.840868195000041 ], [ -82.014708930999973, 28.840864373000045 ], [ -82.014738231999956, 28.84085974900006 ], [ -82.014774365999983, 28.84085096900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960335787999952, 28.830660788000046 ], [ -81.96034637799994, 28.830017729000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960307496999974, 28.831293369000036 ], [ -81.96032450499996, 28.831066597000074 ], [ -81.960335787999952, 28.830660788000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959685204999971, 28.832027516000039 ], [ -81.959878375999949, 28.831980048000048 ], [ -81.959991343999945, 28.831954937000035 ], [ -81.960105590999945, 28.83193480500006 ], [ -81.961943227999939, 28.831652612000028 ], [ -81.962093818999961, 28.831632503000037 ], [ -81.962245275999976, 28.831618293000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962245275999976, 28.831618293000076 ], [ -81.962277703999973, 28.831616025000073 ], [ -81.962377232999984, 28.831606332000035 ], [ -81.962475726999969, 28.831590423000023 ], [ -81.962572682999962, 28.831568379000032 ], [ -81.962667610999972, 28.831540312000072 ], [ -81.962760027999934, 28.831506363000074 ], [ -81.962849467999945, 28.831466706000072 ], [ -81.96293547099998, 28.831421542000044 ], [ -81.963017603999958, 28.831371101000059 ], [ -81.963095449999969, 28.831315638000035 ], [ -81.963168614999972, 28.83125543500006 ], [ -81.963236725999934, 28.831190796000044 ], [ -81.963409577999983, 28.831014560000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959512911, 28.82967405200003 ], [ -81.959807625999986, 28.829851813000062 ], [ -81.959877376999941, 28.829890563000049 ], [ -81.959950245999948, 28.829924573000028 ], [ -81.960025819999942, 28.829953647000025 ], [ -81.960103668999977, 28.829977622000058 ], [ -81.960183347999987, 28.829996360000052 ], [ -81.960264405999965, 28.830009754000059 ], [ -81.96034637799994, 28.830017729000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96034637799994, 28.830017729000076 ], [ -81.960435563999965, 28.830020201000025 ], [ -81.960524680999981, 28.830016261000026 ], [ -81.960613135999949, 28.830005933000052 ], [ -81.961058428999934, 28.829937552000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961058428999934, 28.829937552000047 ], [ -81.96178086599997, 28.829826608000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037409080999964, 28.941619738000043 ], [ -82.037425870999982, 28.941714568000066 ], [ -82.037467628999934, 28.941964252000048 ], [ -82.037566962999961, 28.942619670000056 ], [ -82.037744294999982, 28.943666213000029 ], [ -82.038031399999966, 28.945397952000064 ], [ -82.038070547999951, 28.945622436000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045912864999934, 28.847290049000037 ], [ -82.046589668999957, 28.847282178000057 ], [ -82.047088609999946, 28.847311608000041 ], [ -82.047396654999943, 28.847336329000029 ], [ -82.047739401999934, 28.847347667000065 ], [ -82.047995372999935, 28.84734566700007 ], [ -82.048569139999984, 28.84734450600007 ], [ -82.049062641999967, 28.847335733000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045481249999966, 28.848392131000026 ], [ -82.045514185999934, 28.848239274000036 ], [ -82.045539773999963, 28.847974173000068 ], [ -82.045547094999961, 28.847818454000048 ], [ -82.04555630599998, 28.847691999000062 ], [ -82.045560895999984, 28.847592060000068 ], [ -82.045572439999944, 28.847502317000078 ], [ -82.045605665999972, 28.847433366000075 ], [ -82.045644197999934, 28.847381960000064 ], [ -82.045685879999951, 28.847347273000025 ], [ -82.045736833999968, 28.847322781000059 ], [ -82.045792421999977, 28.847304407000024 ], [ -82.045912864999934, 28.847290049000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045498216999988, 28.847286151000048 ], [ -82.045912864999934, 28.847290049000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049997300999962, 28.847332619000042 ], [ -82.049999672999945, 28.84733261100007 ], [ -82.050506274999975, 28.847326606000024 ], [ -82.050958561999948, 28.847320706000062 ], [ -82.051344689999951, 28.847322469000062 ], [ -82.051539688999981, 28.847316515000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053866773999971, 28.850910801000055 ], [ -82.05385955099996, 28.849708634000024 ], [ -82.053859342999942, 28.849305877000063 ], [ -82.053859337999938, 28.849296791000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053881506999971, 28.847293782000065 ], [ -82.054325290999941, 28.847304199000064 ], [ -82.054754758999934, 28.847326857000041 ], [ -82.05563008699994, 28.847393346000047 ], [ -82.055882020999945, 28.847413396000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055841843999985, 28.847245427000075 ], [ -82.055321138999943, 28.847191318000057 ], [ -82.054772707999973, 28.847152911000023 ], [ -82.054306366999981, 28.847130398000047 ], [ -82.053877256999954, 28.847122814000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058675401999949, 28.847771127000044 ], [ -82.058347782999988, 28.847675437000078 ], [ -82.057936570999971, 28.847582780000039 ], [ -82.05710591999997, 28.84741864800003 ], [ -82.055841843999985, 28.847245427000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055882020999945, 28.847413396000036 ], [ -82.056500013999937, 28.847497073000056 ], [ -82.057238714999983, 28.847622816000069 ], [ -82.057946338999955, 28.847779693000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052746670999966, 28.847164994000025 ], [ -82.052282821999938, 28.847182687000043 ], [ -82.051560475999963, 28.84721352300005 ], [ -82.051540227999965, 28.847213775000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049086453999962, 28.847231635000071 ], [ -82.048354334999942, 28.847238584000024 ], [ -82.047807682999974, 28.847237824000047 ], [ -82.047472522999954, 28.847213114000056 ], [ -82.047141696999972, 28.847177897000051 ], [ -82.046778335999988, 28.847154151000041 ], [ -82.045880265999983, 28.847150639000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045880265999983, 28.847150639000063 ], [ -82.045720802999938, 28.847101036000026 ], [ -82.045668731999967, 28.847080044000052 ], [ -82.045623164999938, 28.847051411000052 ], [ -82.045590610999966, 28.847016090000068 ], [ -82.045567575999939, 28.846972038000047 ], [ -82.045553656999971, 28.846927172000051 ], [ -82.045542046999969, 28.846865990000026 ], [ -82.045531366999967, 28.846757601000036 ], [ -82.045503069999938, 28.846504542000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045880265999983, 28.847150639000063 ], [ -82.045732757999986, 28.847154509000063 ], [ -82.045502234999958, 28.847147886000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045502234999958, 28.847147886000073 ], [ -82.045363318999989, 28.84714419900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045498216999988, 28.847286151000048 ], [ -82.045502234999958, 28.847147886000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045502234999958, 28.847147886000073 ], [ -82.045503069999938, 28.846504542000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045363318999989, 28.84714419900007 ], [ -82.045359228999985, 28.847292315000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045366003999959, 28.84654673700004 ], [ -82.045363318999989, 28.84714419900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045363318999989, 28.84714419900007 ], [ -82.04493555199997, 28.847140453000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04493555199997, 28.847140453000065 ], [ -82.043668822999962, 28.847146042000077 ], [ -82.042897226999969, 28.847140085000035 ], [ -82.042403964999949, 28.847124731000065 ], [ -82.042072771999983, 28.847106222000036 ], [ -82.041793077999955, 28.847087520000059 ], [ -82.041509173999941, 28.847064992000071 ], [ -82.041367746999981, 28.847048503000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045366003999959, 28.84654673700004 ], [ -82.045325014999946, 28.846751814000072 ], [ -82.04530135899995, 28.84690562000003 ], [ -82.045273385999963, 28.846986414000071 ], [ -82.045240976999935, 28.847037412000077 ], [ -82.045206243999985, 28.847072097000023 ], [ -82.045164553999939, 28.847088427000074 ], [ -82.045096063999949, 28.847110796000038 ], [ -82.04493555199997, 28.847140453000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005747921999955, 28.840491782000072 ], [ -82.005750223999939, 28.840482283000028 ], [ -82.005788453999969, 28.840391616000034 ], [ -82.005807816999948, 28.840347367000049 ], [ -82.005907468999965, 28.840195793000078 ], [ -82.006133781999949, 28.83993963100005 ], [ -82.006134032999967, 28.83993934700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005705249999949, 28.841107286000067 ], [ -82.005706660999977, 28.840777107000065 ], [ -82.005707241999971, 28.840727999000023 ], [ -82.005711297999937, 28.840669069000057 ], [ -82.005720273999941, 28.840605822000043 ], [ -82.005747921999955, 28.840491782000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004252104999978, 28.840288964000024 ], [ -82.004264350999961, 28.84028924900008 ], [ -82.004372321999938, 28.840295894000064 ], [ -82.004451938999978, 28.840306154000075 ], [ -82.004540937999934, 28.840324763000069 ], [ -82.004701099999977, 28.840362621000054 ], [ -82.004855461999966, 28.840401149000058 ], [ -82.004965069999969, 28.840418646000046 ], [ -82.005058670999972, 28.840428963000079 ], [ -82.005159744999958, 28.84043418400006 ], [ -82.005301602999964, 28.840434936000065 ], [ -82.005446545999973, 28.840434549000065 ], [ -82.005554974999939, 28.840447811000047 ], [ -82.005649456999947, 28.840466984000045 ], [ -82.005747921999955, 28.840491782000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003273088999947, 28.844019235000076 ], [ -82.003437110999982, 28.843910558000061 ], [ -82.00356792599996, 28.84388640800006 ], [ -82.003695722999964, 28.843876345000069 ], [ -82.003828341999963, 28.843877377000069 ], [ -82.003913657999988, 28.843884336000031 ], [ -82.003992166999979, 28.843898440000032 ], [ -82.004015742999968, 28.843903220000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000892636999936, 28.838357780000024 ], [ -82.000878605999958, 28.838314771000057 ], [ -82.000850664999973, 28.838251899000056 ], [ -82.000809778999951, 28.838177557000051 ], [ -82.000761249999982, 28.838099810000074 ], [ -82.000579008999978, 28.837830459000031 ], [ -82.000571869999987, 28.837821456000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000885303999951, 28.838930365000067 ], [ -82.000913089999983, 28.838849444000061 ], [ -82.000931853999987, 28.838754214000062 ], [ -82.000937244999989, 28.838707290000059 ], [ -82.000940334999939, 28.838621335000028 ], [ -82.000933453999949, 28.838525336000032 ], [ -82.000913714999967, 28.83842239300003 ], [ -82.000892636999936, 28.838357780000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000892636999936, 28.838357780000024 ], [ -82.001103017999981, 28.838300268000069 ], [ -82.001691489999985, 28.838086085000043 ], [ -82.001906945999963, 28.838019476000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996030571999938, 28.842360193000047 ], [ -81.996100449999972, 28.842232790000025 ], [ -81.996178956999984, 28.842054032000078 ], [ -81.996225960999936, 28.841915910000068 ], [ -81.996229640999957, 28.841883951000057 ], [ -81.996230284999967, 28.84185569400006 ], [ -81.996225758999969, 28.841824106000047 ], [ -81.996211138999968, 28.841780076000077 ], [ -81.996198965999952, 28.841760057000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996198965999952, 28.841760057000045 ], [ -81.996181474999958, 28.841731292000077 ], [ -81.996155073999944, 28.841702570000052 ], [ -81.996125559999939, 28.841678710000053 ], [ -81.996084071999974, 28.841654714000072 ], [ -81.996037557999955, 28.841637358000071 ], [ -81.995991525999955, 28.841627975000051 ], [ -81.995883124999978, 28.841610059000061 ], [ -81.995782033999944, 28.841590816000064 ], [ -81.995611090999944, 28.841552579000052 ], [ -81.995592430999977, 28.841547843000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996198965999952, 28.841760057000045 ], [ -81.996509782999965, 28.841620592000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995288105999975, 28.850609621000046 ], [ -81.995357026999955, 28.850357587000076 ], [ -81.995400421999989, 28.85017137400007 ], [ -81.995422118999954, 28.850075881000066 ], [ -81.995438188999969, 28.84993703300006 ], [ -81.995474286, 28.849187803000063 ], [ -81.995478072999958, 28.849087894000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995478072999958, 28.849087894000036 ], [ -81.995479715999977, 28.849044560000038 ], [ -81.995484050999949, 28.848939998000048 ], [ -81.995485196999937, 28.848913977000052 ], [ -81.995486188999962, 28.848883416000035 ], [ -81.995485545999941, 28.848854172000074 ], [ -81.995483063999984, 28.848824823000029 ], [ -81.995478760999958, 28.848795242000051 ], [ -81.995473387999937, 28.848769054000059 ], [ -81.99547107099994, 28.848759560000076 ], [ -81.995466362999935, 28.848741071000063 ], [ -81.995424054999944, 28.848615078000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004426305999971, 28.853078754000023 ], [ -82.004472677999956, 28.853088036000031 ], [ -82.004667272999939, 28.853144195000027 ], [ -82.005072457999972, 28.853286753000077 ], [ -82.005309786999987, 28.853369601000054 ], [ -82.005441361999942, 28.853398501000072 ], [ -82.005601264999939, 28.853413096000054 ], [ -82.00566291399997, 28.853413094000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00566291399997, 28.853413094000075 ], [ -82.005744797999967, 28.85341309000006 ], [ -82.005903436999972, 28.85338648000004 ], [ -82.006084735999934, 28.853326616000061 ], [ -82.006235818999983, 28.853260101000046 ], [ -82.006516638999983, 28.853095217000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005641240999978, 28.853789545000041 ], [ -82.005659759999958, 28.853609645000063 ], [ -82.00566291399997, 28.853413094000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00821825099996, 28.851384916000029 ], [ -82.008275324999943, 28.851291382000056 ], [ -82.008449045999953, 28.850998740000023 ], [ -82.008486809999965, 28.850918929000045 ], [ -82.008509462999939, 28.850785913000038 ], [ -82.008475638999982, 28.850572593000038 ], [ -82.008447903, 28.850373400000024 ], [ -82.008445885999947, 28.850255091000065 ], [ -82.008450171999982, 28.850134973000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007891218999987, 28.851953391000052 ], [ -82.008003408999969, 28.851736996000056 ], [ -82.00821825099996, 28.851384916000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00821825099996, 28.851384916000029 ], [ -82.008059711999977, 28.85130265500004 ], [ -82.007911649999983, 28.85118533800005 ], [ -82.007839768999986, 28.851110365000068 ], [ -82.007792452999979, 28.851037016000078 ], [ -82.007766950999951, 28.850978812000051 ], [ -82.007746762999943, 28.850900904000071 ], [ -82.007735310999976, 28.850791468000068 ], [ -82.007670580999957, 28.850113516000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00611254599994, 28.852554819000034 ], [ -82.00590339699994, 28.852674855000032 ], [ -82.005828797999982, 28.852713416000029 ], [ -82.005741474, 28.852749240000037 ], [ -82.005608784999936, 28.852761327000053 ], [ -82.005550417999984, 28.852756208000073 ], [ -82.005503643999987, 28.852747396000041 ], [ -82.005444127999965, 28.852728995000064 ], [ -82.00537615199994, 28.852696416000072 ], [ -82.005283943999984, 28.852628326000058 ], [ -82.005221426999981, 28.85253739500007 ], [ -82.005191879999984, 28.852463470000032 ], [ -82.005057288999978, 28.852056373000039 ], [ -82.004960995999966, 28.851741146000052 ], [ -82.004950763999943, 28.851695793000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004950763999943, 28.851695793000033 ], [ -82.00493451899996, 28.85162377000006 ], [ -82.004869558999985, 28.851207513000077 ], [ -82.004847673999961, 28.851069943000027 ], [ -82.004790971999967, 28.850934623000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004426305999971, 28.853078754000023 ], [ -82.004457884999965, 28.852944970000067 ], [ -82.004467790999968, 28.852835509000045 ], [ -82.004460532999985, 28.852708164000035 ], [ -82.004437621999955, 28.852584786000079 ], [ -82.004372065999974, 28.852342822000026 ], [ -82.004326282999955, 28.852229243000068 ], [ -82.004286763999971, 28.852142859000026 ], [ -82.004275183999937, 28.852061334000041 ], [ -82.004297160999954, 28.851991314000031 ], [ -82.004327602999979, 28.851938376000078 ], [ -82.004379463999953, 28.851887398000031 ], [ -82.004445253999961, 28.851851085000078 ], [ -82.004570832999946, 28.851801891000036 ], [ -82.004838200999984, 28.851710544000071 ], [ -82.004950763999943, 28.851695793000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012267462999944, 28.85156027000005 ], [ -82.012206785999979, 28.851492716000052 ], [ -82.012097800999982, 28.851371376000031 ], [ -82.01203112099995, 28.851297137000074 ], [ -82.011989411999934, 28.851250697000069 ], [ -82.011967733999938, 28.85122472200004 ], [ -82.011952728999972, 28.851204406000079 ], [ -82.011935393999977, 28.851177824000047 ], [ -82.011919550999949, 28.851149556000053 ], [ -82.011902732999943, 28.851113208000072 ], [ -82.011893232999967, 28.851088003000029 ], [ -82.011886017999984, 28.851065004000077 ], [ -82.011883961999956, 28.851057529000059 ], [ -82.011881675999973, 28.851048547000062 ], [ -82.011878559999957, 28.851034811000034 ], [ -82.011876309999934, 28.851023354000063 ], [ -82.011874853999984, 28.851014916000054 ], [ -82.011873265999952, 28.851004355000043 ], [ -82.011871781999957, 28.85099234200004 ], [ -82.011870985999963, 28.850984427000071 ], [ -82.01187029, 28.850975869000024 ], [ -82.01186979199997, 28.850967881000031 ], [ -82.011869314999956, 28.850955719000069 ], [ -82.01186919099996, 28.850941311000042 ], [ -82.011869476999948, 28.850928583000041 ], [ -82.011870370999986, 28.850912525000069 ], [ -82.011871936999967, 28.85089576300004 ], [ -82.011873526999977, 28.850883302000057 ], [ -82.011874501999955, 28.850876786000072 ], [ -82.011877598999945, 28.850859399000058 ], [ -82.011879327999964, 28.850851121000062 ], [ -82.011881764999941, 28.850840595000079 ], [ -82.011886517999983, 28.850822764000043 ], [ -82.011889742999983, 28.850812095000038 ], [ -82.011892218999947, 28.85080449000003 ], [ -82.011895799999934, 28.850794233000045 ], [ -82.011899725999967, 28.850783805000049 ], [ -82.011903995999944, 28.850773260000039 ], [ -82.011911064999936, 28.850757265000027 ], [ -82.011913557999947, 28.850752058000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011913557999947, 28.850752058000069 ], [ -82.011915660999989, 28.850747668000054 ], [ -82.011919302999956, 28.85074043700007 ], [ -82.011941890999935, 28.850698622000039 ], [ -82.011953281, 28.850676883000062 ], [ -82.011965569999973, 28.850652650000029 ], [ -82.011974644999952, 28.850634196000044 ], [ -82.011986570999966, 28.850609169000052 ], [ -82.011996680999971, 28.85058719400007 ], [ -82.012004779999984, 28.850569046000032 ], [ -82.01201606099994, 28.850542888000064 ], [ -82.012026479999975, 28.850517728000057 ], [ -82.012034167999957, 28.850498481000045 ], [ -82.012045716999978, 28.850468357000068 ], [ -82.012052804999939, 28.850449066000067 ], [ -82.012064620999979, 28.85041536600005 ], [ -82.012069717999964, 28.850400163000074 ], [ -82.01207679099997, 28.850378316000047 ], [ -82.012082954999983, 28.850358493000044 ], [ -82.012088557999959, 28.850339767000037 ], [ -82.012095282999951, 28.850316281000062 ], [ -82.012101476999987, 28.850293542000031 ], [ -82.012107639999954, 28.850269702000048 ], [ -82.012113414999988, 28.850246088000063 ], [ -82.012117617999934, 28.850227990000064 ], [ -82.012124006999954, 28.850198743000078 ], [ -82.012130710999941, 28.850165271000037 ], [ -82.012134863999961, 28.850142722000044 ], [ -82.012138184999969, 28.850123449000023 ], [ -82.012141054999972, 28.850105696000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01146298499998, 28.850596801000052 ], [ -82.011913557999947, 28.850752058000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048196450999967, 28.922377878000077 ], [ -82.048195628999963, 28.923367504000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047335295999972, 28.920602071000076 ], [ -82.047353460999943, 28.921083130000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047335295999972, 28.920602071000076 ], [ -82.047141292999981, 28.920603653000057 ], [ -82.047013758999981, 28.920601310000052 ], [ -82.046897074999947, 28.920591801000057 ], [ -82.046753255999988, 28.920577527000034 ], [ -82.046574152999938, 28.92054894100005 ], [ -82.046416307999948, 28.920519526000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047353460999943, 28.921083130000056 ], [ -82.047212061999971, 28.92108587000007 ], [ -82.047057392999989, 28.921085924000067 ], [ -82.046921714999939, 28.921076423000045 ], [ -82.046769754999957, 28.921066926000037 ], [ -82.046606937999968, 28.921047884000075 ], [ -82.046471252999936, 28.921024057000068 ], [ -82.046319284999981, 28.920993074000023 ], [ -82.046175456999947, 28.920962088000067 ], [ -82.046061476999967, 28.920931091000057 ], [ -82.045936641999958, 28.92090009900005 ], [ -82.045803668999952, 28.920869109000023 ], [ -82.045692407, 28.920847660000049 ], [ -82.045537727999942, 28.920823840000025 ], [ -82.045388475999971, 28.920797629000049 ], [ -82.045222944999978, 28.92077858600004 ], [ -82.045111686999974, 28.920766688000072 ], [ -82.045035980999955, 28.920762933000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048805743999935, 28.920209047000071 ], [ -82.048701379999954, 28.92026409500005 ], [ -82.048603716999935, 28.920309490000079 ], [ -82.048503338999978, 28.920352498000057 ], [ -82.048370401999989, 28.920402680000052 ], [ -82.048223897999947, 28.920452867000051 ], [ -82.048126225999965, 28.920479163000039 ], [ -82.047977003999961, 28.920519800000079 ], [ -82.04785762299997, 28.920543716000054 ], [ -82.047713818999966, 28.920567641000048 ], [ -82.047575439999946, 28.920584401000042 ], [ -82.047469620999948, 28.920596375000059 ], [ -82.047335295999972, 28.920602071000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046416307999948, 28.920519526000078 ], [ -82.046284918999959, 28.920487302000026 ], [ -82.046096533999958, 28.920439288000068 ], [ -82.045895718999986, 28.920393997000076 ], [ -82.045689478999975, 28.920358256000043 ], [ -82.045466955999984, 28.920320135000054 ], [ -82.045266153999989, 28.920301103000043 ], [ -82.045083705999957, 28.920283482000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045083705999957, 28.920283482000059 ], [ -82.045035980999955, 28.920762933000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045083705999957, 28.920283482000059 ], [ -82.044916103999981, 28.920272572000044 ], [ -82.044775001999938, 28.920267845000069 ], [ -82.044609479999963, 28.920265512000071 ], [ -82.044481946999952, 28.920263168000076 ], [ -82.044357128999934, 28.920267983000031 ], [ -82.04420338999995, 28.92027328000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044129016999989, 28.919249234000063 ], [ -82.04420338999995, 28.92027328000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046541452999975, 28.919276915000069 ], [ -82.046541095999942, 28.91943645200007 ], [ -82.046535773999949, 28.919675187000053 ], [ -82.046535831999961, 28.919806491000031 ], [ -82.046533176999958, 28.919935409000061 ], [ -82.046525082999949, 28.920035680000069 ], [ -82.046514268999942, 28.92012640300004 ], [ -82.046495317999984, 28.920224290000078 ], [ -82.046479075999969, 28.920310240000049 ], [ -82.046416307999948, 28.920519526000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04420338999995, 28.92027328000006 ], [ -82.04402880799995, 28.920284803000072 ], [ -82.043906706999962, 28.920296779000068 ], [ -82.043752044999962, 28.920311153000057 ], [ -82.043629946999943, 28.920330291000028 ], [ -82.043510562999984, 28.920351817000039 ], [ -82.043407462999937, 28.920378111000048 ], [ -82.043239245999985, 28.920423524000057 ], [ -82.043122583999946, 28.920464146000029 ], [ -82.043019489999949, 28.920502376000059 ], [ -82.042902831999982, 28.920557322000036 ], [ -82.042745485999944, 28.920640930000047 ], [ -82.04264782599995, 28.920700644000078 ], [ -82.042504049999934, 28.920796184000039 ], [ -82.042402854999978, 28.920877919000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045035980999955, 28.920762933000049 ], [ -82.044881036999982, 28.920752441000047 ], [ -82.044772493999972, 28.920747701000039 ], [ -82.04462867999996, 28.920745361000058 ], [ -82.04451742699996, 28.920745398000065 ], [ -82.044387179999944, 28.920745441000065 ], [ -82.044248794999987, 28.92075026200007 ], [ -82.044132118999983, 28.920757461000051 ], [ -82.043996448999962, 28.92076944300004 ], [ -82.043871635999949, 28.920781421000072 ], [ -82.043757676999974, 28.920798169000079 ], [ -82.043641004999984, 28.920817305000071 ], [ -82.043508059999965, 28.920853159000046 ], [ -82.043394106999983, 28.920884231000059 ], [ -82.043288298999983, 28.920927237000058 ], [ -82.043155362999983, 28.92098935100006 ], [ -82.043025144999945, 28.921058625000057 ], [ -82.042919343999984, 28.921115955000062 ], [ -82.042846102999988, 28.921175662000053 ], [ -82.042774749999978, 28.921230880000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042774749999978, 28.921230880000053 ], [ -82.042402854999978, 28.920877919000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045035980999955, 28.920762933000049 ], [ -82.044995178999955, 28.921160637000071 ], [ -82.044965464999962, 28.921475776000079 ], [ -82.044949230999975, 28.921583210000051 ], [ -82.044935735999957, 28.921747942000025 ], [ -82.044933105999974, 28.921946092000042 ], [ -82.044931645999952, 28.922118359000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043989637999971, 28.921506759000067 ], [ -82.043985349999957, 28.92211499800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045934950999936, 28.921672575000059 ], [ -82.04577414299996, 28.92212134500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04577414299996, 28.92212134500005 ], [ -82.044931645999952, 28.922118359000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044931645999952, 28.922118359000024 ], [ -82.043985349999957, 28.92211499800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043985349999957, 28.92211499800004 ], [ -82.04312678499997, 28.922111943000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04312678499997, 28.922111943000061 ], [ -82.043009145999974, 28.921741409000049 ], [ -82.042905905999987, 28.921435862000067 ], [ -82.042870594999954, 28.921347542000035 ], [ -82.042821724999953, 28.921280713000044 ], [ -82.042774753999936, 28.921230877000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04577414299996, 28.92212134500005 ], [ -82.045661449999955, 28.922448580000037 ], [ -82.045588284999951, 28.922673015000044 ], [ -82.045561174999989, 28.922735095000064 ], [ -82.045528629999978, 28.922775691000027 ], [ -82.045485228999951, 28.922809129000029 ], [ -82.045439110999951, 28.922835405000058 ], [ -82.045384847999969, 28.922854521000033 ], [ -82.045310822999966, 28.922862266000038 ], [ -82.044730891999961, 28.922861902000079 ], [ -82.044019348999939, 28.922858833000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042402854999978, 28.920877919000077 ], [ -82.042191923999951, 28.921057417000043 ], [ -82.042077995999989, 28.921150558000079 ], [ -82.041945071999976, 28.921243706000041 ], [ -82.041780074999963, 28.921347983000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041780080999956, 28.921347979000075 ], [ -82.041633095999941, 28.92142762800006 ], [ -82.041475744999957, 28.921511234000036 ], [ -82.041375364999965, 28.921556624000061 ], [ -82.041255989999968, 28.921604406000029 ], [ -82.041096961999983, 28.921663800000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041096961999983, 28.921663800000033 ], [ -82.040938553999979, 28.921714321000024 ], [ -82.04081374499998, 28.921747782000068 ], [ -82.040699790999952, 28.921778853000035 ], [ -82.040602112999977, 28.92180036700006 ], [ -82.040482726999983, 28.921819502000062 ], [ -82.040354018999949, 28.921837242000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041096961999983, 28.921663800000033 ], [ -82.041234416999941, 28.921948190000023 ], [ -82.041389207999941, 28.922251336000045 ], [ -82.041522275999966, 28.922516289000043 ], [ -82.041609173999973, 28.922680988000025 ], [ -82.041630907999945, 28.922743052000044 ], [ -82.041633631999957, 28.922769312000071 ], [ -82.041636992999941, 28.92287669600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041636992999941, 28.922876688000031 ], [ -82.042163240999969, 28.922878575000027 ], [ -82.042233362, 28.922869393000042 ], [ -82.042287625999961, 28.922855052000045 ], [ -82.042331033999972, 28.922833553000032 ], [ -82.042369009999959, 28.922800117000065 ], [ -82.042401558999984, 28.92276907300004 ], [ -82.04242596399996, 28.922723705000067 ], [ -82.042436804999966, 28.92269505400003 ], [ -82.042442216999973, 28.922654467000029 ], [ -82.042442204999986, 28.922625819000075 ], [ -82.042436763999945, 28.922594786000047 ], [ -82.042425884999943, 28.922530331000075 ], [ -82.042371556999967, 28.922389495000061 ], [ -82.042311783999935, 28.922205689000066 ], [ -82.042241148999949, 28.922000400000059 ], [ -82.042197685999952, 28.921883434000051 ], [ -82.042167817999939, 28.921833309000078 ], [ -82.042124376999936, 28.921776027000078 ], [ -82.042078219999951, 28.921706808000067 ], [ -82.041780075999952, 28.921347982000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040354018999949, 28.921837242000038 ], [ -82.040363368999977, 28.921915031000026 ], [ -82.040431254999987, 28.922039153000071 ], [ -82.040656654999964, 28.922495067000057 ], [ -82.040765281999938, 28.922719444000052 ], [ -82.040816867999979, 28.922793436000063 ], [ -82.040892864999989, 28.922838772000034 ], [ -82.040949860999945, 28.922867402000065 ], [ -82.041014987999972, 28.922874544000024 ], [ -82.041142524999941, 28.922876893000023 ], [ -82.041636992999941, 28.922876688000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040354023999953, 28.921837286000027 ], [ -82.039540951999982, 28.921921421000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050407012999983, 28.918919349000078 ], [ -82.050106931999949, 28.918918365000025 ], [ -82.050016310999979, 28.918922116000033 ], [ -82.049949024999989, 28.918935511000029 ], [ -82.049853525999936, 28.918962285000077 ], [ -82.049781905999964, 28.918994780000048 ], [ -82.04971463399994, 28.919036821000077 ], [ -82.049645195999972, 28.919092233000072 ], [ -82.049584446999972, 28.919161011000028 ], [ -82.049538895999945, 28.919233603000066 ], [ -82.049499866999952, 28.919327201000044 ], [ -82.04948036899998, 28.919409333000033 ], [ -82.049473950999982, 28.919607961000054 ], [ -82.049477069999966, 28.920020517000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053651608999985, 28.919930007000062 ], [ -82.053150368999979, 28.919932415000062 ], [ -82.052838231999942, 28.919930494000027 ], [ -82.052772469999979, 28.91993879100005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052204149999966, 28.918237676000047 ], [ -82.05220124799996, 28.918925226000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052204149999966, 28.918237676000047 ], [ -82.050380448999988, 28.91823170300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051900143999944, 28.917549124000061 ], [ -82.051953708999974, 28.917549332000078 ], [ -82.052015576999963, 28.917555038000046 ], [ -82.052106770999956, 28.917603704000044 ], [ -82.052168664999954, 28.917660976000036 ], [ -82.052204521999954, 28.917741177000039 ], [ -82.052201302999947, 28.917815663000056 ], [ -82.052204149999966, 28.918237676000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050032962999978, 28.917543003000048 ], [ -82.051900143999944, 28.917549124000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050380448999988, 28.91823170300006 ], [ -82.050387887999989, 28.918268993000027 ], [ -82.050404199999946, 28.918334878000053 ], [ -82.050408985999979, 28.918453739000029 ], [ -82.050407538999934, 28.918506765000075 ], [ -82.050407012999983, 28.918919349000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050032962999978, 28.917543003000048 ], [ -82.050048927999967, 28.917590161000078 ], [ -82.05009456199997, 28.917693277000069 ], [ -82.050136927999972, 28.917770610000048 ], [ -82.050195587999951, 28.917873721000035 ], [ -82.050264008999989, 28.917962505000048 ], [ -82.050312895, 28.918057025000053 ], [ -82.050352010999973, 28.918145819000074 ], [ -82.050380448999988, 28.91823170300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051899996999964, 28.917015005000053 ], [ -82.051900143999944, 28.917549124000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049956852999969, 28.916746480000029 ], [ -82.049951546999978, 28.917086945000051 ], [ -82.049957026999948, 28.917199148000066 ], [ -82.049976088999983, 28.917337607000036 ], [ -82.050000558999955, 28.917445028000031 ], [ -82.050032962999978, 28.917543003000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048369139999977, 28.917876896000053 ], [ -82.047938573999943, 28.917856400000062 ], [ -82.046937303999982, 28.917797069000073 ], [ -82.046133650999934, 28.91775010200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048738249999985, 28.918959206000068 ], [ -82.048289034999982, 28.918792112000062 ], [ -82.047998655999947, 28.918699109000045 ], [ -82.047716432999948, 28.918637139000055 ], [ -82.04738808899998, 28.918591896000066 ], [ -82.046774832999972, 28.918541976000029 ], [ -82.045874152999943, 28.918472883000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04842801999996, 28.919510944000024 ], [ -82.048609349999936, 28.919794818000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047429292999936, 28.919351879000033 ], [ -82.047394100999952, 28.919547363000049 ], [ -82.047385979999945, 28.919625138000072 ], [ -82.047388728999977, 28.919703918000039 ], [ -82.047402319999946, 28.919754048000073 ], [ -82.047421344999975, 28.919825662000051 ], [ -82.04745122199995, 28.919887721000066 ], [ -82.047584278999977, 28.920128444000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04842801999996, 28.919510944000024 ], [ -82.048465867999937, 28.919488674000036 ], [ -82.04850384599996, 28.919467175000079 ], [ -82.048558084999968, 28.919405084000061 ], [ -82.048598756999979, 28.919335837000062 ], [ -82.048661085999981, 28.919168700000057 ], [ -82.048738249999985, 28.918959206000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047429292999936, 28.919351879000033 ], [ -82.047486255999956, 28.919360107000045 ], [ -82.047616512, 28.919383935000042 ], [ -82.047703350999939, 28.91940300300007 ], [ -82.04783632799996, 28.919443540000032 ], [ -82.04796930599997, 28.919484078000039 ], [ -82.048083901999973, 28.919530527000063 ], [ -82.048134854999944, 28.91954608900005 ], [ -82.048178273999952, 28.919555623000065 ], [ -82.048210835999953, 28.919555612000067 ], [ -82.048273243999972, 28.919555589000026 ], [ -82.048332936999941, 28.919548406000047 ], [ -82.04838177299996, 28.919534064000061 ], [ -82.04842801999996, 28.919510944000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046541452999975, 28.919276915000069 ], [ -82.046704754999951, 28.91928875900004 ], [ -82.046984247999944, 28.919310149000069 ], [ -82.047212184999978, 28.919326781000052 ], [ -82.047429292999936, 28.919351879000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046133650999934, 28.91775010200007 ], [ -82.046088214999941, 28.917906061000053 ], [ -82.046062199999938, 28.91798370600003 ], [ -82.046028378999949, 28.918079116000058 ], [ -82.04598674999994, 28.918189712000071 ], [ -82.045964631999937, 28.918242146000068 ], [ -82.04592338499998, 28.918337905000044 ], [ -82.04590412999994, 28.918383974000051 ], [ -82.045889494999983, 28.91842265400004 ], [ -82.045874152999943, 28.918472883000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048738249999985, 28.918959206000068 ], [ -82.048754221999957, 28.918916256000045 ], [ -82.048784036999962, 28.918844625000077 ], [ -82.048827421999988, 28.918780152000068 ], [ -82.048900644999947, 28.918698955000025 ], [ -82.04896301399998, 28.918612987000074 ], [ -82.049033513999973, 28.918510307000076 ], [ -82.049117551999984, 28.918343163000031 ], [ -82.049169354999947, 28.91818698000003 ], [ -82.049206925999954, 28.917987416000074 ], [ -82.049209558999962, 28.917815526000027 ], [ -82.049195931999975, 28.917686615000036 ], [ -82.049171453999975, 28.917564870000035 ], [ -82.049114390999989, 28.917395390000024 ], [ -82.049051901999974, 28.91722113700007 ], [ -82.049016594999955, 28.917151916000023 ], [ -82.048965013999975, 28.917094639000027 ], [ -82.048918871999945, 28.917063620000079 ], [ -82.048853741999949, 28.917044546000056 ], [ -82.048777041999983, 28.917032653000035 ], [ -82.048709926999948, 28.917032660000075 ], [ -82.048186244999954, 28.917030462000071 ], [ -82.04781234099994, 28.917028209000023 ], [ -82.047280951999937, 28.917026867000061 ], [ -82.046513736999941, 28.91702568900007 ], [ -82.046468240999957, 28.917028679000055 ], [ -82.046424831999957, 28.917039389000024 ], [ -82.046383161999984, 28.917054681000025 ], [ -82.046332811999946, 28.917080673000044 ], [ -82.04629115299997, 28.917120414000067 ], [ -82.046261649999963, 28.917161677000024 ], [ -82.046242563999954, 28.91719835300006 ], [ -82.046233907999977, 28.917260999000064 ], [ -82.046220051999967, 28.917341983000028 ], [ -82.046201006999979, 28.917468805000055 ], [ -82.046171540999978, 28.917597158000035 ], [ -82.046133650999934, 28.91775010300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999004704999948, 28.845618585000068 ], [ -81.998994526999979, 28.845607542000039 ], [ -81.998895781999977, 28.845507485000041 ], [ -81.998816612999974, 28.845415666000065 ], [ -81.998752208999974, 28.845329742000047 ], [ -81.998703211999953, 28.84525123700007 ], [ -81.998654732999967, 28.84516235500007 ], [ -81.99861068599995, 28.84506503800003 ], [ -81.99857579199994, 28.844976514000052 ], [ -81.998543752999979, 28.844851524000035 ], [ -81.998497734999944, 28.844643425000072 ], [ -81.998468173999981, 28.844530331000044 ], [ -81.998429209999983, 28.844432406000067 ], [ -81.998401476999959, 28.844371423000041 ], [ -81.998360107999986, 28.844299318000026 ], [ -81.998313731999986, 28.84423128800006 ], [ -81.998242427999969, 28.844144346000064 ], [ -81.998104581999939, 28.844004744000074 ], [ -81.997777259999964, 28.843677866000064 ], [ -81.997735275999958, 28.843631816000027 ], [ -81.997697509999966, 28.843583033000073 ], [ -81.997643163999953, 28.843493815000045 ], [ -81.997619024999949, 28.843441837000057 ], [ -81.997605720999957, 28.843402862000062 ], [ -81.997590547999948, 28.843358949000049 ], [ -81.997577952999961, 28.843304094000075 ], [ -81.99756683399994, 28.843210729000077 ], [ -81.997558473999959, 28.843025650000072 ], [ -81.997559371999955, 28.842893833000062 ], [ -81.997567827999944, 28.842719173000035 ], [ -81.997592733999966, 28.842512205000048 ], [ -81.997600361999957, 28.842474280000033 ], [ -81.997606402999963, 28.842425792000029 ], [ -81.99760641599994, 28.842365930000028 ], [ -81.997598628999981, 28.842262274000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045874155999968, 28.918472876000067 ], [ -82.04584970999997, 28.918580014000042 ], [ -82.045836191999967, 28.91869222400004 ], [ -82.045836239999971, 28.918802042000038 ], [ -82.045849851999947, 28.918902305000074 ], [ -82.045868885999937, 28.918995405000032 ], [ -82.045895724, 28.919075391000035 ], [ -82.045925930999942, 28.919136239000068 ], [ -82.04597479499995, 28.919186356000068 ], [ -82.046018222999976, 28.919214989000068 ], [ -82.046032170999979, 28.919220176000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046032170999979, 28.919220176000067 ], [ -82.046088782999959, 28.919241227000043 ], [ -82.046156621999955, 28.91924597600007 ], [ -82.046257019999985, 28.919250717000068 ], [ -82.046541452999975, 28.919276915000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035099486999968, 28.839885245000062 ], [ -82.035098225999945, 28.839885233000075 ], [ -82.035006573999965, 28.839884394000023 ], [ -82.033025597999938, 28.839880374000074 ], [ -82.033025186999964, 28.839880373000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031395842999984, 28.839869663000059 ], [ -82.030032991999974, 28.839846657000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03047085299994, 28.837416953000059 ], [ -82.030438402999948, 28.837709173000064 ], [ -82.030471014999989, 28.837972732000026 ], [ -82.030516611999985, 28.838133153000058 ], [ -82.030549170999961, 28.838213361000044 ], [ -82.03067284499997, 28.838339387000076 ], [ -82.030822546999957, 28.83845967600007 ], [ -82.031193564999967, 28.838820561000034 ], [ -82.031291203999956, 28.838923672000078 ], [ -82.031343280999977, 28.838986687000045 ], [ -82.031382359999952, 28.839107001000059 ], [ -82.031401908999953, 28.839198671000077 ], [ -82.031395842999984, 28.839869663000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068224227999963, 28.607778247000056 ], [ -82.068221906999952, 28.607057928000074 ], [ -82.068297303999941, 28.60608897700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067988894999985, 28.608599814000058 ], [ -82.068050205999953, 28.60855166500005 ], [ -82.068106969999974, 28.60849750400007 ], [ -82.068184162999955, 28.608417269000029 ], [ -82.068222753999976, 28.608369132000064 ], [ -82.068224748999967, 28.607940083000074 ], [ -82.068224227999963, 28.607778247000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067239162999954, 28.608598182000037 ], [ -82.066628013999946, 28.608594474000029 ], [ -82.066541392999966, 28.60859616700003 ], [ -82.066511528999968, 28.608601911000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066511528999968, 28.608601911000051 ], [ -82.066464724999946, 28.608515603000058 ], [ -82.066440456999942, 28.608468248000065 ], [ -82.066419637999957, 28.608402556000044 ], [ -82.066409200999942, 28.608326163000072 ], [ -82.066405679999946, 28.608234486000072 ], [ -82.06641235099994, 28.607831099000066 ], [ -82.06640884799998, 28.607765399000073 ], [ -82.06641575499998, 28.607736365000051 ], [ -82.066429586999959, 28.607704271000046 ], [ -82.066455540999982, 28.607675225000037 ], [ -82.066481500999942, 28.607656877000068 ], [ -82.066512662999969, 28.607650750000062 ], [ -82.066568065999945, 28.607646139000053 ], [ -82.066990542999974, 28.607652042000041 ], [ -82.067206974999976, 28.607653464000066 ], [ -82.067253724999944, 28.607656496000061 ], [ -82.067328184999951, 28.607668683000043 ], [ -82.067400920999944, 28.607690038000044 ], [ -82.067499640999984, 28.607734300000061 ], [ -82.067608738, 28.60775869500003 ], [ -82.067629573999966, 28.607761813000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06648325599997, 28.609617044000061 ], [ -82.066483185999971, 28.609504770000058 ], [ -82.066482889999975, 28.609033619000058 ], [ -82.066486895999958, 28.608666098000072 ], [ -82.06648947399998, 28.608636301000047 ], [ -82.066499849999957, 28.608615668000027 ], [ -82.066511528999968, 28.608601911000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067988894999985, 28.608599814000058 ], [ -82.067367, 28.608595549000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067367, 28.608595549000029 ], [ -82.067239162999954, 28.608598182000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067367, 28.608595549000029 ], [ -82.067372402, 28.608497538000051 ], [ -82.067375568999978, 28.608373388000075 ], [ -82.067393933999938, 28.608322765000025 ], [ -82.067470690999983, 28.608203355000057 ], [ -82.067521502999966, 28.608126930000026 ], [ -82.067585301999941, 28.608050501000037 ], [ -82.067610163999973, 28.608007514000064 ], [ -82.067622032999964, 28.607951164000042 ], [ -82.067629573999966, 28.607761813000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028314264999949, 28.849719844000049 ], [ -82.029015672999947, 28.848361093000051 ], [ -82.029213475999939, 28.847976120000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026759548999962, 28.847997909000071 ], [ -82.026857854999946, 28.848029506000046 ], [ -82.026969797999982, 28.848058132000062 ], [ -82.027059609999981, 28.848076449000075 ], [ -82.027153326999951, 28.84809591100003 ], [ -82.027271773999985, 28.848114222000049 ], [ -82.027377202999958, 28.848123368000074 ], [ -82.027507361999938, 28.848130217000062 ], [ -82.027604980999968, 28.848139365000065 ], [ -82.027699998999935, 28.848153096000033 ], [ -82.027792412999986, 28.848166829000036 ], [ -82.027875716999972, 28.848182855000061 ], [ -82.027947308999956, 28.848200029000054 ], [ -82.028068363999978, 28.848235528000032 ], [ -82.028181859999961, 28.84828019400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025251351999941, 28.847966835000079 ], [ -82.025264705999973, 28.848050630000046 ], [ -82.025242000999981, 28.848348578000071 ], [ -82.025242050999964, 28.84855484600007 ], [ -82.025262299999952, 28.848635476000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025262299999952, 28.848635476000027 ], [ -82.025287645999981, 28.848720999000079 ], [ -82.025339736999967, 28.848838447000048 ], [ -82.02538531099998, 28.848918654000045 ], [ -82.025489469999968, 28.849053281000067 ], [ -82.025583858999937, 28.849150669000039 ], [ -82.025697769999965, 28.849248052000064 ], [ -82.025818181999966, 28.849313920000043 ], [ -82.025932080999951, 28.849359735000064 ], [ -82.026107811999964, 28.849425592000046 ], [ -82.026297922999959, 28.849458771000059 ], [ -82.026429962999941, 28.849471367000035 ], [ -82.026608931999988, 28.849474197000063 ], [ -82.026849724999977, 28.849479879000057 ], [ -82.027038451999942, 28.849474111000063 ], [ -82.027233688999956, 28.849476937000077 ], [ -82.027438687999961, 28.849476895000066 ], [ -82.027608551999947, 28.849489174000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027608551999947, 28.849489174000041 ], [ -82.027760837999949, 28.849508342000036 ], [ -82.02789751499995, 28.849554153000042 ], [ -82.028112298999986, 28.849637188000031 ], [ -82.028314264999949, 28.849719844000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028314264999949, 28.849719844000049 ], [ -82.028919369999983, 28.849966473000052 ], [ -82.028958417999945, 28.849969330000079 ], [ -82.029007228999944, 28.849972184000023 ], [ -82.029036509999969, 28.849957854000024 ], [ -82.029069043999982, 28.849937793000038 ], [ -82.029091813999969, 28.849909140000079 ], [ -82.029140599999948, 28.849820319000059 ], [ -82.02955362199998, 28.849009480000063 ], [ -82.02986907899998, 28.848399200000074 ], [ -82.029891842999973, 28.848353357000065 ], [ -82.029891831999976, 28.848313250000047 ], [ -82.029886583999939, 28.848281424000049 ], [ -82.029869033999944, 28.848241634000033 ], [ -82.029827263999948, 28.848221868000053 ], [ -82.029774658999941, 28.848198682000032 ], [ -82.029213475999939, 28.847976120000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029213475999939, 28.847976120000055 ], [ -82.028488176999986, 28.847686192000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028488176999986, 28.847686192000026 ], [ -82.028161630999989, 28.84755253000003 ], [ -82.027996209999969, 28.847492881000051 ], [ -82.027871469, 28.84746425700007 ], [ -82.027741307999975, 28.847442799000078 ], [ -82.027581320999957, 28.847428508000064 ], [ -82.027429471999938, 28.847418989000062 ], [ -82.027299311999968, 28.847402303000024 ], [ -82.027177285999983, 28.847380842000064 ], [ -82.027030848999971, 28.847340286000076 ], [ -82.026786783999967, 28.84724484000003 ], [ -82.026523832999942, 28.847142371000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028181859999961, 28.84828019400004 ], [ -82.028465228999949, 28.847729610000044 ], [ -82.028488176999986, 28.847686192000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027608547999989, 28.849489194000057 ], [ -82.027616952999949, 28.849427201000026 ], [ -82.027633202999937, 28.849346027000024 ], [ -82.027660302999948, 28.849288725000065 ], [ -82.027875922999954, 28.848873447000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027875922999954, 28.848873447000074 ], [ -82.028181859999961, 28.84828019400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026375534999943, 28.848734484000033 ], [ -82.026427136999985, 28.848590525000077 ], [ -82.026491305999969, 28.848422443000061 ], [ -82.026508649999982, 28.848387297000045 ], [ -82.026567629999988, 28.848287971000047 ], [ -82.026650899999936, 28.848165721000044 ], [ -82.026759548999962, 28.847997909000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026759548999962, 28.847997909000071 ], [ -82.026959285999965, 28.847691796000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026375534999943, 28.848734484000033 ], [ -82.026411171999939, 28.848744732000057 ], [ -82.02650006999994, 28.848766222000052 ], [ -82.026586843999951, 28.848781484000028 ], [ -82.026663205999967, 28.848792163000041 ], [ -82.026730889999953, 28.848799790000044 ], [ -82.026829809999981, 28.848802827000043 ], [ -82.027407707999942, 28.848805765000066 ], [ -82.027615959999935, 28.848804195000071 ], [ -82.027662816999964, 28.848805713000047 ], [ -82.027713146999986, 28.848816399000043 ], [ -82.027786039999967, 28.84883777400006 ], [ -82.027875922999954, 28.848873447000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025262299999952, 28.848635476000027 ], [ -82.025759, 28.848590655000066 ], [ -82.025887415999989, 28.848576879000063 ], [ -82.025937743999975, 28.848576869000055 ], [ -82.025977660999956, 28.848581445000036 ], [ -82.026040139999964, 28.848599768000042 ], [ -82.026125186999934, 28.848641005000047 ], [ -82.026220644999967, 28.848682240000073 ], [ -82.026321308999968, 28.848718891000033 ], [ -82.026375534999943, 28.848734484000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028612542999952, 28.845766818000072 ], [ -82.028542174999984, 28.845805303000077 ], [ -82.028493633999972, 28.845832429000041 ], [ -82.028453898999942, 28.845852631000071 ], [ -82.028414818999977, 28.84587388500006 ], [ -82.028349670999944, 28.84590041000007 ], [ -82.028272576999939, 28.845924681000042 ], [ -82.028188343999943, 28.845946096000034 ], [ -82.028095544999985, 28.845964656000035 ], [ -82.027992751999989, 28.845981788000074 ], [ -82.027901380999936, 28.845998920000056 ], [ -82.027778599999976, 28.846016052000039 ], [ -82.027661530999978, 28.84603032900003 ], [ -82.027563804999943, 28.846043663000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013517562999937, 28.840529538000055 ], [ -82.013597213999958, 28.840528348000078 ], [ -82.013672048999979, 28.840528341000038 ], [ -82.013716514999942, 28.840531201000033 ], [ -82.013762066999959, 28.840540745000055 ], [ -82.01380219899994, 28.840548381000076 ], [ -82.013847750999957, 28.840559836000068 ], [ -82.013923672999965, 28.840590386000031 ], [ -82.014037558999973, 28.840636212000049 ], [ -82.014200251999966, 28.840703995000069 ], [ -82.014373648999936, 28.840774810000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013837571999943, 28.843359346000057 ], [ -82.014016228999935, 28.84348157200003 ], [ -82.014027240999951, 28.843489110000064 ], [ -82.014040543999954, 28.843498195000052 ], [ -82.014055771999949, 28.843508611000061 ], [ -82.014073097999983, 28.843520504000026 ], [ -82.014087557999972, 28.843530358000066 ], [ -82.014103164999938, 28.84354101200006 ], [ -82.014118511999982, 28.843551532000049 ], [ -82.014134598999988, 28.843562530000042 ], [ -82.014152235999973, 28.843574653000076 ], [ -82.014178984999944, 28.843592915000045 ], [ -82.014196477999974, 28.843604855000024 ], [ -82.01421393399994, 28.843616805000067 ], [ -82.014231596999934, 28.843628870000032 ], [ -82.014252500999987, 28.843643192000059 ], [ -82.014271490999988, 28.843656185000043 ], [ -82.014285693999966, 28.843665895000072 ], [ -82.014294965999966, 28.843672238000067 ], [ -82.01430434699995, 28.843678661000069 ], [ -82.014310619999947, 28.843682942000044 ], [ -82.014318495999987, 28.843688335000024 ], [ -82.014325441999972, 28.843693082000073 ], [ -82.014332618999958, 28.843697990000067 ], [ -82.014340079999954, 28.84370309600007 ], [ -82.014348150999979, 28.84370861900004 ], [ -82.014354914999956, 28.843713244000071 ], [ -82.01435891899996, 28.843715982000049 ], [ -82.014366798999959, 28.843721379000044 ], [ -82.014373163999949, 28.84372572500007 ], [ -82.014380722999988, 28.843730900000025 ], [ -82.014386154999954, 28.843734619000031 ], [ -82.014391662999969, 28.843738381000037 ], [ -82.014396789999978, 28.843741895000051 ], [ -82.014404527999943, 28.843747189000055 ], [ -82.014409694999983, 28.843750717000034 ], [ -82.014417887999969, 28.843756370000051 ], [ -82.014426043999947, 28.843761904000075 ], [ -82.014432305999946, 28.843766190000053 ], [ -82.014438119999966, 28.843770165000024 ], [ -82.014442020999979, 28.843772831000024 ], [ -82.014447278999967, 28.843776425000044 ], [ -82.014453798999966, 28.843780889000072 ], [ -82.014460841999949, 28.843785713000045 ], [ -82.014468833999956, 28.84379117900005 ], [ -82.014477228999965, 28.843796922000024 ], [ -82.014484574999983, 28.843801945000052 ], [ -82.014490514999977, 28.843806005000033 ], [ -82.014498184999979, 28.843811255000048 ], [ -82.014509133, 28.843818752000061 ], [ -82.014515748999941, 28.843823266000072 ], [ -82.014523833999988, 28.843828835000068 ], [ -82.01452797099995, 28.843831624000074 ], [ -82.01453178099996, 28.843834277000042 ], [ -82.014539003999971, 28.843839182000067 ], [ -82.014548176999938, 28.84384545000006 ], [ -82.014556936999952, 28.843851452000024 ], [ -82.014566044999981, 28.843857674000049 ], [ -82.014574885999934, 28.843863728000031 ], [ -82.014581142999987, 28.843868 ], [ -82.01458858899997, 28.843873092000024 ], [ -82.014595234999945, 28.843877637000048 ], [ -82.014604002999988, 28.843883637000033 ], [ -82.01461367099995, 28.843890256000066 ], [ -82.014624217999938, 28.843897462000029 ], [ -82.014631705999989, 28.843902599000046 ], [ -82.014639906999946, 28.843908209000062 ], [ -82.014647369999977, 28.843913308000026 ], [ -82.014652475999981, 28.843916795000041 ], [ -82.014659370999937, 28.843921519000048 ], [ -82.01466609199997, 28.843926117000024 ], [ -82.014675670999964, 28.843932676000065 ], [ -82.014681776999964, 28.843936846000076 ], [ -82.014690423, 28.843942765000065 ], [ -82.014700797999978, 28.843949862000045 ], [ -82.014705729999946, 28.843953234000026 ], [ -82.014712715999963, 28.84395801200003 ], [ -82.014719765999985, 28.84396283500007 ], [ -82.014726426999971, 28.843967391000035 ], [ -82.014735026999972, 28.843973273000074 ], [ -82.014741339999944, 28.843977592000044 ], [ -82.014747494999938, 28.843981797000026 ], [ -82.014751439999941, 28.843984497000065 ], [ -82.014755104999949, 28.843987003000052 ], [ -82.014758116999985, 28.843989066000063 ], [ -82.014760490999947, 28.843990689000066 ], [ -82.014763493999965, 28.843992743000058 ], [ -82.014766545999976, 28.843994830000042 ], [ -82.014769436999984, 28.843996808000043 ], [ -82.01477244199998, 28.84399886500006 ], [ -82.014775478999979, 28.844000943000026 ], [ -82.014778072999945, 28.844002716000034 ], [ -82.014780772999984, 28.844004564000045 ], [ -82.014783579999971, 28.844006484000033 ], [ -82.014786452999942, 28.844008449000057 ], [ -82.014789120999978, 28.844010275000073 ], [ -82.014792039999975, 28.844012273000033 ], [ -82.014794030999951, 28.844013636000057 ], [ -82.014796755999953, 28.844015498000033 ], [ -82.014799428999936, 28.844017326000028 ], [ -82.014801789999979, 28.844018939000023 ], [ -82.014804628999968, 28.844020880000073 ], [ -82.014807088999987, 28.844022563000067 ], [ -82.014809800999956, 28.844024421000029 ], [ -82.014812525999957, 28.844026284000051 ], [ -82.014814571999977, 28.844027683000036 ], [ -82.014816737, 28.844029168000077 ], [ -82.014818992999949, 28.844030707000059 ], [ -82.014821352999945, 28.844032323000079 ], [ -82.014822830999947, 28.844033335000063 ], [ -82.014825144999975, 28.84403492000007 ], [ -82.014827585999967, 28.844036585000026 ], [ -82.014830363999977, 28.844038491000049 ], [ -82.014832406999972, 28.844039885000029 ], [ -82.014833187999955, 28.844040419000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013439924999943, 28.843171891000054 ], [ -82.013453015999971, 28.843174145000035 ], [ -82.013463557999955, 28.843176124000024 ], [ -82.013482182999951, 28.843180006000068 ], [ -82.013495757999976, 28.84318317900005 ], [ -82.013507914999934, 28.843186204000062 ], [ -82.013527476999968, 28.843191564000051 ], [ -82.013545306999958, 28.84319694800007 ], [ -82.013563764999958, 28.843203043000074 ], [ -82.013576284999942, 28.843207430000064 ], [ -82.013589039999943, 28.843212288000075 ], [ -82.013599777999957, 28.843216538000036 ], [ -82.013613574999965, 28.843222290000028 ], [ -82.013624832999938, 28.843227238000054 ], [ -82.013640738999982, 28.843234605000077 ], [ -82.013649313999963, 28.84323880900007 ], [ -82.013658060999944, 28.84324321500003 ], [ -82.013667546999955, 28.843248175000042 ], [ -82.013677557999983, 28.843253617000073 ], [ -82.013684515999955, 28.84325751800003 ], [ -82.013693886999988, 28.843262940000045 ], [ -82.013697628999978, 28.843265156000029 ], [ -82.01370529899998, 28.843269810000038 ], [ -82.013711088999969, 28.843273424000074 ], [ -82.013719641999955, 28.843278886000064 ], [ -82.013726265999935, 28.843283249000024 ], [ -82.013731562999965, 28.84328683800004 ], [ -82.013737724999942, 28.843291045000058 ], [ -82.013741282999945, 28.843293480000057 ], [ -82.013750160999962, 28.843299552000076 ], [ -82.01375812699996, 28.843304992000071 ], [ -82.013761921999958, 28.843307594000066 ], [ -82.013765172999967, 28.843309819000069 ], [ -82.013768862999939, 28.843312344000026 ], [ -82.013772955999968, 28.843315142000051 ], [ -82.013777133999952, 28.843318002000046 ], [ -82.013781622999943, 28.843321069000069 ], [ -82.013786362999952, 28.843324310000071 ], [ -82.013790856999947, 28.84332739000007 ], [ -82.013794707999978, 28.843330026000046 ], [ -82.013798704999942, 28.843332758000031 ], [ -82.013802514999952, 28.84333536500003 ], [ -82.013806400999954, 28.843338023000058 ], [ -82.013811091999969, 28.843341232000057 ], [ -82.013812110999936, 28.843341929000076 ], [ -82.013813109999944, 28.843342612000072 ], [ -82.013814286999946, 28.843343417000028 ], [ -82.013815241999964, 28.843344070000057 ], [ -82.013816386999963, 28.843344853000076 ], [ -82.013817242999949, 28.843345439000075 ], [ -82.013818113999946, 28.843346035000025 ], [ -82.013819029, 28.843346662000044 ], [ -82.013820004999957, 28.84334732800005 ], [ -82.01382093899997, 28.843347968000046 ], [ -82.013821844999939, 28.843348587000037 ], [ -82.013822824999977, 28.843349258000046 ], [ -82.013823934999948, 28.843350017000034 ], [ -82.01382482799994, 28.843350627000063 ], [ -82.013825645999987, 28.843351187000053 ], [ -82.013826247999987, 28.843351600000062 ], [ -82.013827262999939, 28.843352292000077 ], [ -82.01382801799997, 28.843352810000056 ], [ -82.013828828999976, 28.843353365000041 ], [ -82.013829705999967, 28.843353965000063 ], [ -82.013830666, 28.843354622000049 ], [ -82.013831379999942, 28.843355110000061 ], [ -82.013832098999956, 28.843355602000031 ], [ -82.01383298099995, 28.843356206000067 ], [ -82.013833668999951, 28.843356676000042 ], [ -82.013834423999981, 28.843357192000042 ], [ -82.013835089999986, 28.843357648000051 ], [ -82.013835646999951, 28.843358029000058 ], [ -82.013836251999976, 28.843358444000046 ], [ -82.013836935999961, 28.843358911000053 ], [ -82.013837571999943, 28.843359346000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013842175999969, 28.841955909000035 ], [ -82.013838565999947, 28.841955897000048 ], [ -82.01383046899997, 28.841955878000078 ], [ -82.013823707999961, 28.841955863000067 ], [ -82.013816236999958, 28.841955842000061 ], [ -82.013809399999957, 28.841955829000028 ], [ -82.013801051999963, 28.84195580100004 ], [ -82.01379319299997, 28.841955780000035 ], [ -82.013784606999934, 28.841955765000023 ], [ -82.013777482999956, 28.841955746000053 ], [ -82.013767412999982, 28.841955716000029 ], [ -82.013757486999964, 28.841955694000035 ], [ -82.013748944999975, 28.841955667000036 ], [ -82.013741508999942, 28.841955655000049 ], [ -82.013733387999935, 28.841955632000065 ], [ -82.013723710999955, 28.841955604000077 ], [ -82.013713873999961, 28.841955585000051 ], [ -82.013703149999969, 28.841955558000052 ], [ -82.013693925999974, 28.84195552400007 ], [ -82.013683007999987, 28.841955504000055 ], [ -82.013672699999972, 28.841955474000031 ], [ -82.013668989999985, 28.841955406000068 ], [ -82.013665963999983, 28.841955287000076 ], [ -82.013662651999937, 28.841955075000044 ], [ -82.013658558999964, 28.84195472600004 ], [ -82.013655193999966, 28.841954330000078 ], [ -82.013652388999958, 28.841953970000077 ], [ -82.013649741999984, 28.841953557000068 ], [ -82.013647326999944, 28.841953151000041 ], [ -82.01364463799996, 28.841952647000028 ], [ -82.013639569999953, 28.841951547000065 ], [ -82.013635839999949, 28.841950626000028 ], [ -82.013632788999985, 28.841949784000064 ], [ -82.013629462999972, 28.841948787000035 ], [ -82.013625889999958, 28.841947636000043 ], [ -82.013622580999936, 28.84194646900005 ], [ -82.013622090999945, 28.84194627200003 ], [ -82.013620169999967, 28.841945544000055 ], [ -82.013616362999983, 28.841944021000074 ], [ -82.013611065999953, 28.84194164400003 ], [ -82.013607856999954, 28.841940085000033 ], [ -82.013604062999946, 28.841938104000064 ], [ -82.013601783999945, 28.841936838000038 ], [ -82.013599091999936, 28.841935268000043 ], [ -82.013596917999962, 28.841933933000064 ], [ -82.01359500999996, 28.841932712000073 ], [ -82.013592959999983, 28.84193136600004 ], [ -82.013590728999986, 28.841929825000079 ], [ -82.013587936999954, 28.841927792000035 ], [ -82.013584934999983, 28.841925488000072 ], [ -82.013583392999976, 28.841924240000026 ], [ -82.013581029999955, 28.841922268000076 ], [ -82.013579866999976, 28.841921261000039 ], [ -82.013578094999957, 28.84191966800006 ], [ -82.013575537999941, 28.841917274000025 ], [ -82.013572336999971, 28.841914065000026 ], [ -82.013569901999972, 28.841911429000049 ], [ -82.01356831399994, 28.841909642000076 ], [ -82.013566315999981, 28.841907276000029 ], [ -82.013564773999974, 28.841905397000062 ], [ -82.013563068999986, 28.841903150000064 ], [ -82.013561812999967, 28.841901466000024 ], [ -82.013560177999977, 28.841899169000044 ], [ -82.013558655999987, 28.841896901000041 ], [ -82.013556760999961, 28.841893898000023 ], [ -82.013555452999981, 28.84189169800004 ], [ -82.013554228999965, 28.841889543000036 ], [ -82.013552132999962, 28.841885516000048 ], [ -82.013550961999954, 28.841883087000042 ], [ -82.013549686999966, 28.841880257000071 ], [ -82.013548767999964, 28.841878062000035 ], [ -82.01354760299995, 28.841875093000056 ], [ -82.013546072999986, 28.841870705000076 ], [ -82.013544691999982, 28.841866093000078 ], [ -82.013543832999972, 28.841862764000041 ], [ -82.01354288999994, 28.841858410000043 ], [ -82.013542517999952, 28.841856416000041 ], [ -82.013541931999953, 28.841852721000066 ], [ -82.013541644999975, 28.841850452000074 ], [ -82.013541292999946, 28.841846802000077 ], [ -82.013541078999936, 28.84184354100006 ], [ -82.013540980999949, 28.841840133000062 ], [ -82.013540868999939, 28.841834443000039 ], [ -82.013540789999979, 28.841829143000041 ], [ -82.013540671999976, 28.841822927000067 ], [ -82.013540553999974, 28.841816606000066 ], [ -82.013540488, 28.841812372000049 ], [ -82.013540364999983, 28.841806167000072 ], [ -82.013540253999963, 28.841799291000029 ], [ -82.013540134999971, 28.841793396000071 ], [ -82.013540010999975, 28.841785992000041 ], [ -82.013539891999983, 28.84177918000006 ], [ -82.013539761999937, 28.841772116000072 ], [ -82.013539642999945, 28.841765229000032 ], [ -82.013539478999974, 28.841755746000047 ], [ -82.013539355999967, 28.841749145000051 ], [ -82.013539223999942, 28.841741782000042 ], [ -82.013539091999974, 28.841734644000041 ], [ -82.013538993999987, 28.841728649000061 ], [ -82.013538863999941, 28.841721620000044 ], [ -82.013538738999955, 28.841714669000055 ], [ -82.013538606999987, 28.841707445000054 ], [ -82.01353847699994, 28.841700488000072 ], [ -82.013538358999938, 28.841693974000066 ], [ -82.013538246999985, 28.841687098000079 ], [ -82.013538121999943, 28.84168025200006 ], [ -82.013538063999988, 28.841676671000073 ], [ -82.013537787999951, 28.841661504000058 ], [ -82.013537393999968, 28.841638842000066 ], [ -82.01353712599996, 28.841624084000046 ], [ -82.013536850999969, 28.841608534000045 ], [ -82.01353654899998, 28.841592346000027 ], [ -82.013536260999956, 28.841575749000071 ], [ -82.013535933999947, 28.841557998000042 ], [ -82.013535631999957, 28.841540315000032 ], [ -82.013535401999945, 28.841528072000074 ], [ -82.013535067999953, 28.841508946000033 ], [ -82.01353486499994, 28.841497636000042 ], [ -82.013534634999985, 28.841484973000036 ], [ -82.013534365999988, 28.841470145000073 ], [ -82.013534111999945, 28.841455867000036 ], [ -82.013533847999952, 28.841441314000065 ], [ -82.013533625999969, 28.841428060000055 ], [ -82.013533369999948, 28.841413793000072 ], [ -82.013533185999961, 28.841403881000076 ], [ -82.013532990999977, 28.841392496000026 ], [ -82.013532760999965, 28.841380504000028 ], [ -82.013532557999952, 28.841368741000053 ], [ -82.013532281999971, 28.841353156000025 ], [ -82.013531757999942, 28.841324379000071 ], [ -82.013530324999977, 28.841246246000026 ], [ -82.013517562999937, 28.840529538000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013630184999954, 28.839761582000051 ], [ -82.013663604999977, 28.839762156000063 ], [ -82.013759043999983, 28.839761383000052 ], [ -82.013792016999957, 28.839765963000048 ], [ -82.013815443999988, 28.839772836000066 ], [ -82.01391175599997, 28.839809496000044 ], [ -82.014001127999961, 28.839848449000044 ], [ -82.014073145999987, 28.839878236000061 ], [ -82.01417119499996, 28.839917187000026 ], [ -82.01425883099995, 28.839953084000058 ], [ -82.014318700999979, 28.839978288000054 ], [ -82.014375100999985, 28.840001201000064 ], [ -82.014427162999937, 28.840022586000032 ], [ -82.014469679999934, 28.840039388000037 ], [ -82.014501783999947, 28.840053900000044 ], [ -82.014539961999958, 28.840063827000051 ], [ -82.014562520999959, 28.840068409000025 ], [ -82.014581609999937, 28.840072227000064 ], [ -82.014612844999988, 28.84007222300005 ], [ -82.014664935999974, 28.840074344000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013630184999954, 28.839761582000051 ], [ -82.013629851999951, 28.839648792000048 ], [ -82.013631563999979, 28.839476138000066 ], [ -82.01363233099994, 28.839314380000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013517562999937, 28.840529538000055 ], [ -82.01351748999997, 28.840525372000059 ], [ -82.013517382999964, 28.840473877000079 ], [ -82.013519980999945, 28.840433388000065 ], [ -82.013523445999965, 28.840404357000068 ], [ -82.013530382999988, 28.84035775500007 ], [ -82.013537318999965, 28.840327960000025 ], [ -82.013545992, 28.840296637000051 ], [ -82.013555530999952, 28.840263786000037 ], [ -82.01356507099996, 28.840237046000027 ], [ -82.01358068199994, 28.840187387000071 ], [ -82.013594559999945, 28.840147660000071 ], [ -82.013602365999986, 28.840121684000053 ], [ -82.013608231999967, 28.840096578000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013608231999967, 28.840096578000043 ], [ -82.013610820999986, 28.840082722000034 ], [ -82.013618459999975, 28.840047909000077 ], [ -82.013624528999969, 28.84000622700006 ], [ -82.013627911999947, 28.839968719000069 ], [ -82.013629189999961, 28.839939872000059 ], [ -82.013630184999954, 28.839761582000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012865157999954, 28.839712119000069 ], [ -82.012876749999975, 28.839716094000039 ], [ -82.012914928999976, 28.839731369000049 ], [ -82.012950812999975, 28.839747202000069 ], [ -82.012997924, 28.839770062000071 ], [ -82.013039102999983, 28.83979445500006 ], [ -82.013068675999989, 28.839813218000074 ], [ -82.013094354999964, 28.839830877000054 ], [ -82.013134363999939, 28.839861210000038 ], [ -82.01317875999996, 28.839899510000066 ], [ -82.013199135999969, 28.83991900500007 ], [ -82.013218043999984, 28.839938244000052 ], [ -82.013249744999939, 28.839967337000076 ], [ -82.013275954999983, 28.839987577000045 ], [ -82.013307377999979, 28.840008218000037 ], [ -82.013330672999984, 28.840021352000065 ], [ -82.01335544799997, 28.840033547000075 ], [ -82.013375366999981, 28.840042144000051 ], [ -82.013413679999985, 28.840055928000027 ], [ -82.013442823999981, 28.840064178000034 ], [ -82.013477181999974, 28.840071623000028 ], [ -82.013537632999942, 28.840083134000054 ], [ -82.013608231999967, 28.840096578000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012420455999973, 28.839628943000037 ], [ -82.01253061999995, 28.839644747000079 ], [ -82.012609510999937, 28.83965653000007 ], [ -82.012683056999947, 28.839666645000079 ], [ -82.012729246999982, 28.839674854000066 ], [ -82.012769985999967, 28.839683768000043 ], [ -82.01281232599996, 28.839695086000063 ], [ -82.012865157999954, 28.839712119000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014664935999974, 28.840074344000072 ], [ -82.014669114999947, 28.84000678700005 ], [ -82.01467886599994, 28.839934592000077 ], [ -82.014688614999955, 28.839852084000029 ], [ -82.014706173999969, 28.839774732000024 ], [ -82.014743243999987, 28.839620026000034 ], [ -82.014764703999958, 28.839525484000035 ], [ -82.014780314999939, 28.839480791000028 ], [ -82.014776406999943, 28.839456727000027 ], [ -82.014772499999935, 28.839436101000047 ], [ -82.014758830999938, 28.839406881000059 ], [ -82.014743210999939, 28.839386256000068 ], [ -82.014725638999948, 28.839369069000043 ], [ -82.014684640999974, 28.839353603000063 ], [ -82.01459873999994, 28.839317515000062 ], [ -82.014493315999971, 28.839276273000053 ], [ -82.014335179999989, 28.839209253000035 ], [ -82.014247327999954, 28.839173165000034 ], [ -82.014151665999975, 28.839133639000067 ], [ -82.014048194999987, 28.839092397000059 ], [ -82.013899821999985, 28.83903396900007 ], [ -82.013778781999974, 28.838985852000064 ], [ -82.013614790999952, 28.838922270000069 ], [ -82.013403944999936, 28.838838065000061 ], [ -82.013253621, 28.838781356000027 ], [ -82.013128675999951, 28.838731520000067 ], [ -82.013064251999936, 28.838707460000023 ], [ -82.013025206999941, 28.838693713000055 ], [ -82.012997876999975, 28.838695434000044 ], [ -82.012970546999952, 28.838698875000034 ], [ -82.012935407999976, 28.838710911000078 ], [ -82.012915887999952, 28.838722946000075 ], [ -82.012894416999984, 28.838745294000034 ], [ -82.012876849999941, 28.83876592200005 ], [ -82.012869043999956, 28.83878998800003 ], [ -82.012867095, 28.838817490000054 ], [ -82.012871012999938, 28.838922343000036 ], [ -82.012867133999976, 28.839133768000067 ], [ -82.012867157999949, 28.839326286000073 ], [ -82.012863278999987, 28.839530836000051 ], [ -82.012865157999954, 28.839712119000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981784114999982, 28.847223654000061 ], [ -81.981837239999948, 28.847192086000064 ], [ -81.981901253999979, 28.847155490000034 ], [ -81.981961014999968, 28.847122698000078 ], [ -81.982029815999965, 28.84708653000007 ], [ -81.982090330999938, 28.847056074000079 ], [ -81.982155526999975, 28.847024637000061 ], [ -81.982218800999988, 28.846995451000055 ], [ -81.982280802999981, 28.846968081000057 ], [ -81.982342465999977, 28.846942035000041 ], [ -81.982399516999976, 28.846919497000044 ], [ -81.982446770999957, 28.84690293500006 ], [ -81.982522256999971, 28.846880313000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982522234999976, 28.846880319000036 ], [ -81.982558825999945, 28.846870975000058 ], [ -81.982595961999948, 28.846862535000071 ], [ -81.982646330999955, 28.846852725000076 ], [ -81.982686842999954, 28.846846175000053 ], [ -81.982753625999976, 28.846837924000056 ], [ -81.982806975999949, 28.846833571000047 ], [ -81.982853595999984, 28.846831375000079 ], [ -81.982919536999987, 28.846830814000043 ], [ -81.982965072999946, 28.846832163000045 ], [ -81.983020237999938, 28.846835707000025 ], [ -81.98306353199996, 28.846839847000069 ], [ -81.983176694999941, 28.846851229000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982100707999962, 28.847805617000063 ], [ -81.982088829999952, 28.847790227000075 ], [ -81.982064907999984, 28.847759229000076 ], [ -81.982041867999953, 28.847727876000079 ], [ -81.982024312999954, 28.847699999000042 ], [ -81.982014927999955, 28.847683114000063 ], [ -81.982008093, 28.84766974300004 ], [ -81.98197621199995, 28.847606246000055 ], [ -81.981947323999975, 28.847548710000069 ], [ -81.981919681999955, 28.847493658000076 ], [ -81.98189834599998, 28.847451164000063 ], [ -81.981887480999944, 28.847429523000073 ], [ -81.98187048799997, 28.847395679000044 ], [ -81.981851464999977, 28.847357793000072 ], [ -81.981813778999935, 28.847282734000032 ], [ -81.98178411899994, 28.847223652000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982100707999962, 28.847805617000063 ], [ -81.982151482999939, 28.847775241000079 ], [ -81.982202215999962, 28.847744892000037 ], [ -81.982242586999973, 28.847721032000038 ], [ -81.982312357999945, 28.847681579000039 ], [ -81.982397783999943, 28.847636228000056 ], [ -81.982472232999953, 28.847599231000061 ], [ -81.982558290999975, 28.847559253000043 ], [ -81.982635930999948, 28.847525641000061 ], [ -81.98268358699994, 28.847506505000069 ], [ -81.98272082699998, 28.847494245000064 ], [ -81.982761197999935, 28.847483829000055 ], [ -81.982799255999964, 28.84747658200007 ], [ -81.982832615999939, 28.847472192000055 ], [ -81.982880293999983, 28.847469001000036 ], [ -81.982922687999974, 28.847469166000053 ], [ -81.982971086999953, 28.847472756000059 ], [ -81.983032975999947, 28.847478981000052 ], [ -81.983094438999956, 28.847485163000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98133391999994, 28.849067039000033 ], [ -81.98129828499998, 28.849029006000023 ], [ -81.981196416999978, 28.84892028400003 ], [ -81.981095656999969, 28.848812743000053 ], [ -81.981037958999934, 28.848751161000052 ], [ -81.980990629999951, 28.848700256000029 ], [ -81.980967669999984, 28.848667013000068 ], [ -81.980953847999956, 28.84863566000007 ], [ -81.980946915999937, 28.848608511000066 ], [ -81.980944226999952, 28.848571868000079 ], [ -81.980952116999958, 28.848523635000049 ], [ -81.980974482999954, 28.848475449000034 ], [ -81.981004913999982, 28.848438359000056 ], [ -81.981032899999946, 28.848415306000049 ], [ -81.981064023999977, 28.848396541000056 ], [ -81.981114930999979, 28.848367946000053 ], [ -81.981190870999967, 28.848325288000069 ], [ -81.981394381999962, 28.848210969000036 ], [ -81.981577261999973, 28.848108239000055 ], [ -81.981794958999956, 28.847985924000056 ], [ -81.982100707999962, 28.847805617000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980072863999965, 28.848901196000043 ], [ -81.980200618999959, 28.848989462000077 ], [ -81.980296118999945, 28.849069696000072 ], [ -81.980350137999949, 28.849113913000053 ], [ -81.980412139999942, 28.849164666000036 ], [ -81.980486650999978, 28.849225659000069 ], [ -81.980571205, 28.849294871000041 ], [ -81.98066294299997, 28.84936996600004 ], [ -81.980717016999961, 28.849407701000075 ], [ -81.980768141999988, 28.84942747100007 ], [ -81.980827579999982, 28.849436208000043 ], [ -81.98086613299995, 28.849434645000031 ], [ -81.980906029999971, 28.84942694800003 ], [ -81.980951385999958, 28.849409654000056 ], [ -81.980981177, 28.849392054000077 ], [ -81.981028142999946, 28.849351522000063 ], [ -81.981125267999971, 28.849261162000062 ], [ -81.981215553999959, 28.849177163000036 ], [ -81.98133391999994, 28.849067039000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98133391999994, 28.849067039000033 ], [ -81.98144081199996, 28.848970750000035 ], [ -81.981501911999942, 28.848922563000031 ], [ -81.981548213999986, 28.848889252000049 ], [ -81.981633080999984, 28.848834514000032 ], [ -81.981712333999951, 28.848789228000044 ], [ -81.981801098999938, 28.848739366000075 ], [ -81.981877740999948, 28.848696313000062 ], [ -81.982006884999976, 28.848623768000039 ], [ -81.982104281999966, 28.848569056000031 ], [ -81.982247656999959, 28.848487931000079 ], [ -81.982362535999982, 28.848420396000051 ], [ -81.982429767999975, 28.848380175000045 ], [ -81.982502266999973, 28.848336804000041 ], [ -81.982605790999969, 28.848275668000042 ], [ -81.982706358999963, 28.848221046000049 ], [ -81.98276565599997, 28.84819118300004 ], [ -81.982837945999961, 28.848157001000061 ], [ -81.982903773999965, 28.848127915000077 ], [ -81.982959909999977, 28.848104586000034 ], [ -81.983028612999988, 28.848077819000025 ], [ -81.983083290999957, 28.848057877000031 ], [ -81.983122966999986, 28.848044081000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983122966999986, 28.848044081000069 ], [ -81.983261072999937, 28.848000999000078 ], [ -81.983345396999937, 28.847978097000066 ], [ -81.983456622999938, 28.847951730000034 ], [ -81.98353766699995, 28.847935192000079 ], [ -81.983615618999977, 28.847921365000047 ], [ -81.983709818999955, 28.84790732700003 ], [ -81.983800364999979, 28.847896547000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983800364999979, 28.847896547000062 ], [ -81.983886047999988, 28.847887681000032 ], [ -81.983988377999935, 28.84787740400003 ], [ -81.984092096999973, 28.847873365000055 ], [ -81.984175262999941, 28.847876396000061 ], [ -81.984269219999987, 28.847886603000063 ], [ -81.984372937999979, 28.84790650900004 ], [ -81.984471276999955, 28.847934286000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984471268999982, 28.847934284000075 ], [ -81.984539770999959, 28.847959187000072 ], [ -81.98461959399998, 28.847994566000068 ], [ -81.984696647999954, 28.848033372000032 ], [ -81.984842647999983, 28.848107089000052 ], [ -81.984936592999986, 28.848154522000073 ], [ -81.98502551699994, 28.848207837000075 ], [ -81.985084738999944, 28.848257971000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97855535399998, 28.848283257000048 ], [ -81.978486880999981, 28.848250169000039 ], [ -81.97837250699996, 28.848194901000056 ], [ -81.978262393999955, 28.84814169200007 ], [ -81.978194394999946, 28.848106893000079 ], [ -81.978154591999953, 28.848077588000024 ], [ -81.97811553799994, 28.848036203000049 ], [ -81.978093851999972, 28.848003324000047 ], [ -81.978079444999935, 28.847973094000054 ], [ -81.978046555999981, 28.847865118000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97855535399998, 28.848283257000048 ], [ -81.978573389999951, 28.848254324000038 ], [ -81.978593734999947, 28.848225962000072 ], [ -81.978628639999954, 28.848190220000049 ], [ -81.978667867999945, 28.848161531000073 ], [ -81.978710609999951, 28.848139383000046 ], [ -81.978789783999957, 28.848111152000058 ], [ -81.978894883999942, 28.848072987000023 ], [ -81.978994787999966, 28.848034329000029 ], [ -81.979117889999941, 28.847983402000068 ], [ -81.979226288999939, 28.847935440000072 ], [ -81.979357420999975, 28.847873346000029 ], [ -81.979474550999953, 28.847813942000073 ], [ -81.97961315699996, 28.847738589000073 ], [ -81.979772200999946, 28.847649250000075 ], [ -81.979940720999934, 28.847554590000072 ], [ -81.980093092999937, 28.847468999000057 ], [ -81.980208094999966, 28.847404399000027 ], [ -81.980401349999966, 28.847295842000051 ], [ -81.980538696999986, 28.847218691000023 ], [ -81.980637404999982, 28.847163242000079 ], [ -81.980741424999962, 28.847104811000065 ], [ -81.980788165999968, 28.847078925000062 ], [ -81.980802820999941, 28.847072946000026 ], [ -81.980818400999965, 28.847068724000053 ], [ -81.980829713999981, 28.847066449000067 ], [ -81.980844907999938, 28.847065038000039 ], [ -81.980860245999963, 28.847065178000037 ], [ -81.980872252999973, 28.847066385000062 ], [ -81.980883558999949, 28.847068431000025 ], [ -81.980890947999967, 28.847070267000049 ], [ -81.980902114999935, 28.847073842000043 ], [ -81.980913118999979, 28.84707839500004 ], [ -81.980921408999961, 28.847082586000056 ], [ -81.980930098999977, 28.847087784000053 ], [ -81.980937289999986, 28.84709280900006 ], [ -81.980945581999947, 28.847099584000034 ], [ -81.980955164999955, 28.847109097000043 ], [ -81.980965433999984, 28.847121462000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979202663999956, 28.848595707000072 ], [ -81.979198346999965, 28.848593676000064 ], [ -81.979105138999955, 28.848548920000042 ], [ -81.978876389999982, 28.848438386000055 ], [ -81.97855535399998, 28.848283257000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979617780999945, 28.848791022000057 ], [ -81.979202663999956, 28.848595707000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98541318599996, 28.848608377000062 ], [ -81.985504722999963, 28.848478142000033 ], [ -81.985602068999981, 28.848351214000047 ], [ -81.985705071999973, 28.84822779700005 ], [ -81.985813567999969, 28.848108082000067 ], [ -81.986720632999948, 28.84714705600004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985198048999962, 28.84897329000006 ], [ -81.98523956799994, 28.848893420000024 ], [ -81.985322974999974, 28.848749292000036 ], [ -81.98541318599996, 28.848608377000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988070795999988, 28.847350432000042 ], [ -81.987989551999988, 28.847601216000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987027211999987, 28.846812807000049 ], [ -81.987070356999936, 28.846846922000054 ], [ -81.987125548999984, 28.84689055900003 ], [ -81.987203041999976, 28.846951830000023 ], [ -81.987285582999959, 28.847017092000044 ], [ -81.987375670999938, 28.847088315000065 ], [ -81.987423938999939, 28.847123740000029 ], [ -81.987507550999965, 28.847174862000031 ], [ -81.987616952999986, 28.847225816000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987363743999936, 28.846032857000068 ], [ -81.987116673999935, 28.846006599000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989062263999983, 28.843087763000028 ], [ -81.989062470999954, 28.843031347000078 ], [ -81.989059766999958, 28.842981223000038 ], [ -81.989051314999983, 28.842931597000074 ], [ -81.989037197999949, 28.842882981000059 ], [ -81.989017566999962, 28.842835872000023 ], [ -81.988992618999987, 28.842790756000056 ], [ -81.98875776899996, 28.842415636000055 ], [ -81.988722467999935, 28.842353134000064 ], [ -81.988693293999972, 28.842288229000076 ], [ -81.988670454999976, 28.842221384000027 ], [ -81.988654114999974, 28.842153078000024 ], [ -81.98864439099998, 28.842083802000047 ], [ -81.988641352999934, 28.842014048000067 ], [ -81.988642163999941, 28.841834790000064 ], [ -81.988645518999988, 28.841768229000024 ], [ -81.988654963999977, 28.84170212500004 ], [ -81.98867043499996, 28.841636906000076 ], [ -81.988691832999962, 28.841573 ], [ -81.988719016999937, 28.841510823000078 ], [ -81.988973577999957, 28.840992067000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97966893399996, 28.846173546000045 ], [ -81.979038102999937, 28.845344 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976703056999952, 28.84602977000003 ], [ -81.976700778999941, 28.846304099000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973493900999983, 28.844576448000055 ], [ -81.973654459999977, 28.844758868000042 ], [ -81.973673987999973, 28.844792817000041 ], [ -81.973689191999938, 28.844834921000029 ], [ -81.973703226999987, 28.844881704000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973065070999951, 28.846299887000043 ], [ -81.973059872999954, 28.84604545600007 ], [ -81.973062511999956, 28.845986887000038 ], [ -81.973072783999953, 28.845928971000035 ], [ -81.973090552999963, 28.845872481000072 ], [ -81.97311558499996, 28.845818166000072 ], [ -81.973147543999971, 28.845766745000049 ], [ -81.973186010999939, 28.845718902000044 ], [ -81.973230469999976, 28.845675272000051 ], [ -81.97328033499997, 28.845636434000028 ], [ -81.973334942999941, 28.845602902000053 ], [ -81.97339356699996, 28.84557512400005 ], [ -81.97345543199998, 28.845553466000069 ], [ -81.973519713999963, 28.845538217000069 ], [ -81.973729184999968, 28.845502964000048 ], [ -81.973939872999949, 28.845473881000032 ], [ -81.974234748999947, 28.845437600000025 ], [ -81.974290812999982, 28.845433208000031 ], [ -81.974347094999985, 28.845433772000035 ], [ -81.974415968999949, 28.845437503000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96626006799994, 28.845773439000027 ], [ -81.966305576999957, 28.845768303000057 ], [ -81.966361358999961, 28.845764479000024 ], [ -81.966417297999953, 28.845765554000025 ], [ -81.966876112999955, 28.845794536000028 ], [ -81.967023404999964, 28.845800841000028 ], [ -81.967170868999972, 28.845801168000037 ], [ -81.967318194999962, 28.845795517000056 ], [ -81.967465070999936, 28.845783899000025 ], [ -81.967611180999938, 28.845766338000033 ], [ -81.967756216999987, 28.845742873000063 ], [ -81.967899873999954, 28.845713553000053 ], [ -81.968473770999935, 28.845584085000041 ], [ -81.968530785999974, 28.845573957000056 ], [ -81.968588684999986, 28.845569070000067 ], [ -81.968646847999935, 28.845569475000048 ], [ -81.968715591999967, 28.845573089000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965932425999938, 28.837807585000064 ], [ -81.965753295999946, 28.837478181000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967583926999964, 28.837057365000078 ], [ -81.967570814999988, 28.836984930000028 ], [ -81.967564909999965, 28.836938031000045 ], [ -81.967564103999962, 28.836890849000042 ], [ -81.967568402999973, 28.836843815000066 ], [ -81.967586917999938, 28.836717124000074 ], [ -81.967596958999934, 28.836647501000073 ], [ -81.967589819999944, 28.836597532000042 ], [ -81.967566025999986, 28.836541615000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966582633999963, 28.839793149000059 ], [ -81.966685307999967, 28.839760858000034 ], [ -81.96674412699997, 28.839747066000029 ], [ -81.966804294999974, 28.839738953000051 ], [ -81.966865107999979, 28.839736617000028 ], [ -81.967983077999975, 28.839746978000051 ], [ -81.968099228999961, 28.83974805400004 ], [ -81.968170620999956, 28.839736756000036 ], [ -81.968253426, 28.839711058000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969200558999944, 28.837027542000044 ], [ -81.968952796999986, 28.837111082000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968243284999971, 28.842004662000079 ], [ -81.968486009999936, 28.842209552000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968291874999977, 28.83603419800005 ], [ -81.968528147999962, 28.835451830000068 ], [ -81.968541176999963, 28.835403703000054 ], [ -81.96855160399997, 28.835349465000036 ], [ -81.968553704999977, 28.835297954000055 ], [ -81.968552186999943, 28.83524654100006 ], [ -81.968532061999952, 28.83501969100007 ], [ -81.968530775999966, 28.834962001000065 ], [ -81.968537118999961, 28.834904572000028 ], [ -81.968551009999942, 28.83484818200003 ], [ -81.968572256999948, 28.834793598000033 ], [ -81.968619129999979, 28.83469277100005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97009290699998, 28.836481417000073 ], [ -81.970189082, 28.836473168000055 ], [ -81.97024812899997, 28.836470817000077 ], [ -81.970299591999947, 28.83647138200007 ], [ -81.970348773999945, 28.836473990000059 ], [ -81.970430628999964, 28.836485431000028 ], [ -81.971351543999958, 28.836593050000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96740781699998, 28.834759521000024 ], [ -81.967430155999978, 28.834788012000047 ], [ -81.967538811999987, 28.834922840000047 ], [ -81.967584772999942, 28.83499389900004 ], [ -81.967615978999959, 28.83508099900007 ], [ -81.967628103999971, 28.835148230000073 ], [ -81.967626343999939, 28.835231501000067 ], [ -81.967618518999984, 28.835285740000074 ], [ -81.967602883999973, 28.835344561000056 ], [ -81.96756989499994, 28.835407198000041 ], [ -81.967526488999965, 28.835489217000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96740781699998, 28.834759521000024 ], [ -81.967164665999974, 28.834907315000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968619129999979, 28.83469277100005 ], [ -81.968512595999982, 28.834641948000069 ], [ -81.96843359099995, 28.834583806000069 ], [ -81.968374798999946, 28.834522574000061 ], [ -81.968338633999963, 28.834476585000061 ], [ -81.968236035999951, 28.834345790000043 ], [ -81.96811643999996, 28.834193323000079 ], [ -81.96804747799996, 28.834108923000031 ], [ -81.968004300999951, 28.834068168000044 ], [ -81.967926707999936, 28.834013053000035 ], [ -81.967832107999982, 28.833953231000066 ], [ -81.967769431999955, 28.833913596000059 ], [ -81.967695036999942, 28.833880148000048 ], [ -81.967626883999969, 28.833868236000058 ], [ -81.967536098999972, 28.833872848000055 ], [ -81.967431249999947, 28.833882896000034 ], [ -81.967355709999936, 28.833903675000045 ], [ -81.967298508999988, 28.833935815000075 ], [ -81.967247621999945, 28.833984392000048 ], [ -81.967206901999987, 28.834061566000059 ], [ -81.967196701999967, 28.834125506000078 ], [ -81.967184477999979, 28.834270992000029 ], [ -81.967176817999984, 28.834362168000041 ], [ -81.967181950999986, 28.834439367000073 ], [ -81.967207348999978, 28.83450070300006 ], [ -81.967296105999935, 28.834617044000026 ], [ -81.96740781699998, 28.834759521000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969430458999966, 28.834689857000058 ], [ -81.969279936999953, 28.834725271000025 ], [ -81.969175260999975, 28.834744986000032 ], [ -81.969074759999955, 28.834755005000034 ], [ -81.968954354999937, 28.834755901000051 ], [ -81.968854907999969, 28.83474753400003 ], [ -81.968731547999937, 28.834725340000034 ], [ -81.968619129999979, 28.83469277100005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970420759999968, 28.834304742000029 ], [ -81.97034752899998, 28.834378979000064 ], [ -81.970275028999936, 28.834435209000048 ], [ -81.970207217999985, 28.834476703000064 ], [ -81.970115236999959, 28.834519663000037 ], [ -81.969993871999975, 28.834557291000067 ], [ -81.969864832999974, 28.834587654000075 ], [ -81.969666683999947, 28.834634275000042 ], [ -81.969430458999966, 28.834689857000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971545984999977, 28.835716134000052 ], [ -81.971571295999979, 28.835579270000039 ], [ -81.971597430999964, 28.835437954000042 ], [ -81.97162469999995, 28.835290495000038 ], [ -81.97165258299998, 28.83517684900005 ], [ -81.971696511999937, 28.835063819000027 ], [ -81.971760193999955, 28.834906510000053 ], [ -81.971831005999945, 28.834722445000068 ], [ -81.971866028999955, 28.834601037000027 ], [ -81.971892601999969, 28.834469786000057 ], [ -81.971907107999982, 28.834348614000078 ], [ -81.971912215999964, 28.834222416000046 ], [ -81.971912281999948, 28.834016967000025 ], [ -81.97190859899996, 28.833943633000047 ], [ -81.971887942999956, 28.83382989100005 ], [ -81.971856138999954, 28.833716663000075 ], [ -81.971811585999944, 28.833621706000031 ], [ -81.971763846999977, 28.833574460000079 ], [ -81.971695027999942, 28.833535884000071 ], [ -81.971630894999976, 28.833518502000061 ], [ -81.971525387999975, 28.833519531000036 ], [ -81.971326936999958, 28.833548298000039 ], [ -81.970937786999968, 28.833604707000063 ], [ -81.970828727999958, 28.833620516000053 ], [ -81.970752885999957, 28.833641843000066 ], [ -81.97071194199998, 28.833663393000052 ], [ -81.970643373999962, 28.833725958000059 ], [ -81.970602028999963, 28.833813485000064 ], [ -81.970582598999954, 28.833917435000046 ], [ -81.970559173999959, 28.834038176000035 ], [ -81.970531124, 28.834124312000029 ], [ -81.970476510999958, 28.834229530000073 ], [ -81.970420759999968, 28.834304742000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971351543999958, 28.836593050000033 ], [ -81.971372681999981, 28.836534813000071 ], [ -81.971400220999953, 28.836454935000063 ], [ -81.971422181999969, 28.836375658000065 ], [ -81.971450678999986, 28.836231488000067 ], [ -81.971479557999942, 28.836075333000053 ], [ -81.97151557899997, 28.835880557000053 ], [ -81.971545984999977, 28.835716134000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97009290699998, 28.836481417000073 ], [ -81.970097815999964, 28.836522381000066 ], [ -81.970095122999965, 28.83655546600005 ], [ -81.970081235999942, 28.836625179000066 ], [ -81.970058835999964, 28.836741367000059 ], [ -81.970012116999953, 28.836969176000025 ], [ -81.969991421999964, 28.837074997000059 ], [ -81.969986673999983, 28.837140292000072 ], [ -81.969994461999988, 28.837183390000064 ], [ -81.970020524999939, 28.837241640000059 ], [ -81.970063999, 28.837293525000064 ], [ -81.970131661999972, 28.837338782000074 ], [ -81.970229997, 28.83736646400007 ], [ -81.970321690999981, 28.837376629000062 ], [ -81.97045421699994, 28.837391324000066 ], [ -81.970640403999937, 28.837411966000047 ], [ -81.970764064999969, 28.837422420000053 ], [ -81.970878227999947, 28.837424442000042 ], [ -81.970969497999988, 28.837420623000071 ], [ -81.971017805999963, 28.837412232000077 ], [ -81.971078553999973, 28.837389460000054 ], [ -81.971127477999971, 28.837358004000066 ], [ -81.97116663099996, 28.837319050000076 ], [ -81.971198457999947, 28.837267482000073 ], [ -81.971217874999979, 28.837197961000072 ], [ -81.971244868999975, 28.837051993000046 ], [ -81.971287852999978, 28.836819572000024 ], [ -81.971324851999952, 28.836675897000077 ], [ -81.971351543999958, 28.836593050000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96923751199995, 28.83622540500005 ], [ -81.969358973999988, 28.836236892000045 ], [ -81.969521103999966, 28.836251731000061 ], [ -81.969656122999936, 28.836261789000048 ], [ -81.969797952999954, 28.836271877000058 ], [ -81.969872130999988, 28.836281061000079 ], [ -81.969919850999986, 28.836292714000024 ], [ -81.969963681999957, 28.836311629000079 ], [ -81.970005721999939, 28.83633881600008 ], [ -81.970034341999963, 28.836366394000038 ], [ -81.970052674999977, 28.83638884800007 ], [ -81.970065193999972, 28.836410120000039 ], [ -81.970083074999934, 28.836450299000035 ], [ -81.97009290699998, 28.836481417000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968291874999977, 28.83603419800005 ], [ -81.968377001999954, 28.836061434000044 ], [ -81.968463755999949, 28.836081508000063 ], [ -81.968598226999973, 28.836107323000078 ], [ -81.968745712999976, 28.836134095000034 ], [ -81.968899162999946, 28.836163257000067 ], [ -81.969050984999967, 28.836192895000067 ], [ -81.96917244399998, 28.836214409000036 ], [ -81.96923751199995, 28.83622540500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967526488999965, 28.835489217000031 ], [ -81.967598921999979, 28.835529534000045 ], [ -81.96764608899997, 28.835559530000069 ], [ -81.967681324999944, 28.83558914200006 ], [ -81.967736835999972, 28.835643397000069 ], [ -81.967781068999955, 28.835690008000029 ], [ -81.967829637999955, 28.835746553000035 ], [ -81.967882544999952, 28.835800807000055 ], [ -81.967939791999981, 28.83584895000007 ], [ -81.968016125999952, 28.835900153000068 ], [ -81.968121954999958, 28.835958238000046 ], [ -81.968209570999989, 28.836002569000073 ], [ -81.968291874999977, 28.83603419800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967390755999986, 28.835423599000023 ], [ -81.967350421999981, 28.835395705000053 ], [ -81.967309647999969, 28.835383854000042 ], [ -81.967274946999964, 28.835375441000053 ], [ -81.967228099999943, 28.835362443000065 ], [ -81.967189059999953, 28.835353265000037 ], [ -81.967144814999983, 28.835344469000063 ], [ -81.967101437999986, 28.835336437000024 ], [ -81.967028839999955, 28.835330415000044 ], [ -81.96695336099998, 28.835321229000044 ], [ -81.966878470999973, 28.835311936000039 ], [ -81.96683643199998, 28.835302720000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974354714999947, 28.824199011000076 ], [ -81.975134386999969, 28.824305812000034 ], [ -81.975303327999939, 28.824327227000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96535720199995, 28.822939630000064 ], [ -81.965640661999942, 28.822980016000031 ], [ -81.967574068999966, 28.823253918000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97265495299996, 28.826461838000057 ], [ -81.972662665999962, 28.826386239000044 ], [ -81.972671132999949, 28.826351862000024 ], [ -81.97268610499998, 28.826322644000072 ], [ -81.972706283999969, 28.826288270000077 ], [ -81.972734269999989, 28.826256762000071 ], [ -81.972773317999952, 28.826222392000034 ], [ -81.972852061999959, 28.826159381000025 ], [ -81.973123253999972, 28.825981863000038 ], [ -81.973268590999965, 28.825876847000075 ], [ -81.973416100999941, 28.825753688000077 ], [ -81.973600499999975, 28.825557004000075 ], [ -81.973736094999936, 28.82537654500004 ], [ -81.973800099999949, 28.825276288000055 ], [ -81.973899909999943, 28.825091047000058 ], [ -81.974120157999948, 28.824659061000034 ], [ -81.974354714999947, 28.824199011000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968030260999967, 28.831144112000061 ], [ -81.968286013999943, 28.831022131000054 ], [ -81.968552915999965, 28.830923834000032 ], [ -81.968885784999941, 28.830800149000027 ], [ -81.969368201999941, 28.830625313000041 ], [ -81.96982632299995, 28.830458873000055 ], [ -81.970168177999938, 28.830334424000057 ], [ -81.970329561999961, 28.830269523000027 ], [ -81.970503965999967, 28.83018781800007 ], [ -81.970708740999953, 28.830075560000068 ], [ -81.970889224999951, 28.829960242000027 ], [ -81.971094877999974, 28.829809022000063 ], [ -81.971314422999967, 28.829611204000059 ], [ -81.971546129999979, 28.829358382000066 ], [ -81.971737372999939, 28.829098677000047 ], [ -81.971835139999939, 28.828929861000063 ], [ -81.971917602999952, 28.828759516000048 ], [ -81.971982712999989, 28.828593750000039 ], [ -81.972014839999986, 28.828489094000076 ], [ -81.972044371999971, 28.828357700000026 ], [ -81.972073928999976, 28.828130810000062 ], [ -81.972075710999945, 28.827957391000041 ], [ -81.972062765999965, 28.827699935000055 ], [ -81.972063664999951, 28.82758152200006 ], [ -81.972072369999978, 28.827470749000042 ], [ -81.97210886299996, 28.827258376000032 ], [ -81.972140989999957, 28.827158304000079 ], [ -81.972171691999961, 28.827058996000062 ], [ -81.97220436799995, 28.826972675000036 ], [ -81.972246029999951, 28.82689246800004 ], [ -81.972286164999957, 28.826851986000065 ], [ -81.972379427999954, 28.826783209000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966429052999956, 28.83506195800004 ], [ -81.966410826999947, 28.834997929000053 ], [ -81.966406501999984, 28.834956674000068 ], [ -81.96640694599995, 28.834926880000069 ], [ -81.966409993999946, 28.834893266000051 ], [ -81.96641520999998, 28.834861181000065 ], [ -81.966424329999938, 28.834830626000041 ], [ -81.96643732299998, 28.834789336000028 ], [ -81.966463922999935, 28.834695280000062 ], [ -81.966490530999977, 28.834580693000078 ], [ -81.966523668999969, 28.834386846000029 ], [ -81.966537511999945, 28.83415093800005 ], [ -81.966545501999974, 28.833939937000025 ], [ -81.966553697999984, 28.833742742000027 ], [ -81.966567923999946, 28.833345010000073 ], [ -81.966577298999937, 28.833190979000051 ], [ -81.966599469999949, 28.833043732000078 ], [ -81.96663205699997, 28.832877578000023 ], [ -81.966690682999968, 28.832677054000044 ], [ -81.966763619999938, 28.832486273000029 ], [ -81.96685217199996, 28.832303517000071 ], [ -81.966970007999976, 28.832104153000046 ], [ -81.967122983999957, 28.831892766000067 ], [ -81.967246657999965, 28.831751272000076 ], [ -81.967359261999945, 28.831632694000064 ], [ -81.967512214999942, 28.831496365000078 ], [ -81.967631318999963, 28.831398989000036 ], [ -81.967782307999983, 28.831293026000026 ], [ -81.968030260999967, 28.831144112000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965103562999957, 28.847424681000064 ], [ -81.965121537999948, 28.847414184000058 ], [ -81.965153015999988, 28.847398629000054 ], [ -81.965186901999971, 28.84738767500005 ], [ -81.965221260999954, 28.847379829000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965221260999954, 28.847379829000033 ], [ -81.965270865999969, 28.847374685000034 ], [ -81.96530123499997, 28.847375648000025 ], [ -81.965333229999942, 28.847379476000071 ], [ -81.965358716999958, 28.847386167000025 ], [ -81.965395588999968, 28.847399068000072 ], [ -81.965427038999962, 28.847415310000031 ], [ -81.965451979999955, 28.847431073000052 ], [ -81.965497457999959, 28.847463744000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962457104999942, 28.833654538000076 ], [ -81.962476983999977, 28.833468175000064 ], [ -81.962486392999949, 28.833426125000074 ], [ -81.962511377999988, 28.833369018000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960503478999954, 28.834512216000064 ], [ -81.960719941999969, 28.834510846000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959008136999955, 28.833929529000045 ], [ -81.959190898999964, 28.833602576000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963906016999942, 28.834078928000054 ], [ -81.964093508999952, 28.83372285300004 ], [ -81.964109085999951, 28.833685891000073 ], [ -81.964117718999944, 28.833647205000034 ], [ -81.964119188999973, 28.833607802000074 ], [ -81.964113454999961, 28.833568700000058 ], [ -81.964100664999989, 28.833530917000076 ], [ -81.964081153999985, 28.833495433000053 ], [ -81.96405542499997, 28.833463167000048 ], [ -81.964024146999975, 28.833434956000076 ], [ -81.963988132999987, 28.833411532000071 ], [ -81.963948313999936, 28.83339350600005 ], [ -81.963780417999942, 28.833328211000037 ], [ -81.963615882999989, 28.833256591000065 ], [ -81.963455014999965, 28.833178778000047 ], [ -81.963298114999986, 28.833094919000075 ], [ -81.963145474999976, 28.833005170000035 ], [ -81.962997382999959, 28.832909696000058 ], [ -81.962854109999967, 28.832808679000038 ], [ -81.962795544999949, 28.832760834000055 ], [ -81.962742839999976, 28.832707969000069 ], [ -81.962696544999972, 28.832650638000075 ], [ -81.962657143999934, 28.832589442000028 ], [ -81.96257221999997, 28.832433330000072 ], [ -81.962493682999934, 28.83227464600003 ], [ -81.962421632999963, 28.832113594000077 ], [ -81.962356159999956, 28.831950378000045 ], [ -81.962297347999936, 28.831785208000042 ], [ -81.962245274999987, 28.831618293000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958795370999951, 28.835158173000025 ], [ -81.959186544999966, 28.835310229000072 ], [ -81.959323099999949, 28.835374645000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961828837999974, 28.835727503000044 ], [ -81.961932310999941, 28.835469935000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962640712999985, 28.835831033000034 ], [ -81.962657405999948, 28.835786947000031 ], [ -81.962676440999985, 28.835736979000046 ], [ -81.962706183999956, 28.83569533800005 ], [ -81.962731168999937, 28.83568463000006 ], [ -81.962769239999943, 28.835679872000071 ], [ -81.962814449999939, 28.835685820000037 ], [ -81.962843240999973, 28.835701802000074 ], [ -81.962861800999974, 28.835719410000024 ], [ -81.962872746999949, 28.835744117000047 ], [ -81.962882264999962, 28.835780999000065 ], [ -81.962884643999985, 28.835813121000058 ], [ -81.962890572999981, 28.835828996000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957457050999949, 28.836836706000042 ], [ -81.95742771, 28.836755071000027 ], [ -81.957414592999953, 28.836711890000061 ], [ -81.957405954999956, 28.836667842000054 ], [ -81.957401862999973, 28.836623289000045 ], [ -81.95738053499997, 28.836226595000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958427104999942, 28.835725839000077 ], [ -81.958506745999955, 28.83579859200006 ], [ -81.958542130999945, 28.835828225000057 ], [ -81.958580302999962, 28.835855042000048 ], [ -81.958620972999938, 28.835878843000046 ], [ -81.958947191999982, 28.83605224300004 ], [ -81.959005119999972, 28.83607911200005 ], [ -81.959066201999974, 28.836099870000055 ], [ -81.95912961099998, 28.836114234000036 ], [ -81.959194485999944, 28.836122009000064 ], [ -81.959259947999954, 28.836123090000058 ], [ -81.959325108999963, 28.836117461000072 ], [ -81.959389085999987, 28.836105201000066 ], [ -81.959451008999963, 28.836086475000059 ], [ -81.959510039999941, 28.836061537000035 ], [ -81.959565377, 28.836030724000068 ], [ -81.959616271999948, 28.835994455000048 ], [ -81.959662031999983, 28.835953223000047 ], [ -81.960353973999986, 28.835252370000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965909135999937, 28.831121754000037 ], [ -81.966032796999968, 28.831122862000029 ], [ -81.966096891999939, 28.831126343000051 ], [ -81.96616024399998, 28.831135600000039 ], [ -81.966222180999978, 28.831150536000052 ], [ -81.966453198999943, 28.831217662000029 ], [ -81.96649767699995, 28.831227095000031 ], [ -81.966543310999953, 28.831229976000031 ], [ -81.96658886299997, 28.831226225000023 ], [ -81.966633100999957, 28.831215947000032 ], [ -81.966674821999959, 28.83119941800004 ], [ -81.966712899999948, 28.831177086000025 ], [ -81.966746302999979, 28.83114955700006 ], [ -81.96681698499998, 28.831082675000061 ], [ -81.966889672999969, 28.831017484000029 ], [ -81.966920017999939, 28.830986101000065 ], [ -81.966943951999951, 28.830950679000068 ], [ -81.966960796999956, 28.830912225000077 ], [ -81.966970075999939, 28.830871825000031 ], [ -81.966971525999952, 28.830830627000068 ], [ -81.966965103999939, 28.830789799000058 ], [ -81.966950992999955, 28.830750499000033 ], [ -81.966929593999964, 28.830713841000033 ], [ -81.966901513999971, 28.830680864000044 ], [ -81.966848143999982, 28.830632268000045 ], [ -81.96679043499995, 28.830587682000044 ], [ -81.966728773999989, 28.83054740700004 ], [ -81.966663575999974, 28.830511712000032 ], [ -81.966493514999968, 28.83042690700006 ], [ -81.966441179999947, 28.830397700000049 ], [ -81.966392387999974, 28.830364069000041 ], [ -81.966296830999966, 28.83029119300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965324413999952, 28.832554862000052 ], [ -81.965427975999944, 28.832610212000077 ], [ -81.965649682999981, 28.832728704000033 ], [ -81.96573608999995, 28.83277488400006 ], [ -81.965805959999955, 28.832790288000069 ], [ -81.965880912999978, 28.83280456500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964890608999951, 28.832348369000044 ], [ -81.965028826999969, 28.832402185000035 ], [ -81.965128088999961, 28.832449996000037 ], [ -81.965230227999939, 28.832504524000058 ], [ -81.965324413999952, 28.832554862000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96543421399997, 28.830055062000042 ], [ -81.965900489999967, 28.830059063000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960503483999958, 28.828489644000058 ], [ -81.961031829999968, 28.828486088000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967189539999936, 28.830273860000034 ], [ -81.967436003999978, 28.82995242100003 ], [ -81.967482561999987, 28.829891001000078 ], [ -81.967540619999966, 28.829837701000031 ], [ -81.967592968999952, 28.829811686000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963471942999945, 28.827506623000033 ], [ -81.963620964999961, 28.82648335600004 ], [ -81.96363011699998, 28.826432881000073 ], [ -81.963643501999968, 28.826383143000044 ], [ -81.96366104699996, 28.826334420000023 ], [ -81.963708160999943, 28.826218692000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965118692999965, 28.82916313000004 ], [ -81.965146904999983, 28.829090435000069 ], [ -81.965169583999966, 28.829040903000077 ], [ -81.965198189999967, 28.828993810000043 ], [ -81.965232392999951, 28.82894970500007 ], [ -81.965391845999989, 28.828766182000038 ], [ -81.965456825, 28.828685910000047 ], [ -81.965515491999952, 28.828601956000057 ], [ -81.965567580999959, 28.828514700000028 ], [ -81.965612854999961, 28.82842454300004 ], [ -81.965651104999949, 28.828331898000044 ], [ -81.965682155999957, 28.828237189000049 ], [ -81.965705867999986, 28.828140846000053 ], [ -81.965722128999971, 28.828043315000059 ], [ -81.965730866999934, 28.827945037000063 ], [ -81.965742213999988, 28.827719731000059 ], [ -81.965747646999944, 28.827650917000028 ], [ -81.965756990999978, 28.827582431000053 ], [ -81.965812877999952, 28.827244587000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959846349999964, 28.82579013700007 ], [ -81.959952199999975, 28.825790691000066 ], [ -81.959998436999967, 28.825792611000054 ], [ -81.961676027999943, 28.825923406000072 ], [ -81.961718805999965, 28.825925298000072 ], [ -81.961761620999937, 28.825924316000055 ], [ -81.96191984099994, 28.825915370000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959842022999965, 28.826430354000024 ], [ -81.959841402999984, 28.826522278000027 ], [ -81.959841284999982, 28.826539499000035 ], [ -81.959840369999938, 28.826675108000074 ], [ -81.959839401999943, 28.826818324000044 ], [ -81.959844936999957, 28.826886388000048 ], [ -81.959876431999987, 28.826959510000052 ], [ -81.959917142999984, 28.827007154000057 ], [ -81.959965934999957, 28.827042586000061 ], [ -81.96004738299996, 28.827074172000039 ], [ -81.960206743999947, 28.827089963000049 ], [ -81.960436757999958, 28.827107897000076 ], [ -81.960716077999962, 28.827129674000048 ], [ -81.960952735999967, 28.827148125000065 ], [ -81.961264906999986, 28.827172463000068 ], [ -81.96143092899996, 28.827185407000059 ], [ -81.961523844999988, 28.827192651000075 ], [ -81.961675056999979, 28.827204438000024 ], [ -81.961733294999988, 28.827209847000063 ], [ -81.961811322999949, 28.827224897000065 ], [ -81.961892681999984, 28.827244026000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959846349999964, 28.82579013700007 ], [ -81.95984412599995, 28.826119271000039 ], [ -81.959842022999965, 28.826430354000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959850676999963, 28.825149919000069 ], [ -81.959846349999964, 28.82579013700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962677425999971, 28.82595178400004 ], [ -81.962964029999966, 28.826201469000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961231355999985, 28.845200798000064 ], [ -81.961675776999982, 28.84514985900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963512926999954, 28.845247992000054 ], [ -81.963585419999959, 28.845319458000063 ], [ -81.963613649999957, 28.845345275000057 ], [ -81.963643927999954, 28.845369226000059 ], [ -81.963757638999937, 28.845452830000056 ], [ -81.963863510999943, 28.845534369000063 ], [ -81.963965025999983, 28.845620096000061 ], [ -81.964061970999978, 28.845709829000043 ], [ -81.964154140999938, 28.845803381000053 ], [ -81.964195529999984, 28.845842823000055 ], [ -81.964241527999945, 28.845878086000027 ], [ -81.964291593999974, 28.845908755000039 ], [ -81.964345137999942, 28.845934469000042 ], [ -81.964401529999975, 28.845954925000058 ], [ -81.964460107999969, 28.845969884000056 ], [ -81.964520179999965, 28.845979167000053 ], [ -81.964581041999963, 28.845982667000044 ], [ -81.964876729999958, 28.846002972000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96347811399994, 28.847390633000032 ], [ -81.963317964999987, 28.847745469000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962503907999974, 28.847267007000028 ], [ -81.962796279999964, 28.846920524000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959993925999981, 28.848834252000074 ], [ -81.960365450999973, 28.849045211000032 ], [ -81.960450398999967, 28.849092690000077 ], [ -81.960532953999973, 28.849143336000054 ], [ -81.961098596999989, 28.84950647900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963282575999983, 28.846280699000033 ], [ -81.96349313199994, 28.846122619000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014833187999955, 28.844040419000066 ], [ -82.014894474999949, 28.843971036000028 ], [ -82.014923012999986, 28.843938267000055 ], [ -82.014937218999989, 28.843920407000041 ], [ -82.014950230999943, 28.843902788000037 ], [ -82.014968213999964, 28.843876871000077 ], [ -82.014992176999954, 28.84383628300003 ], [ -82.015001031999986, 28.843819081000049 ], [ -82.015005856999949, 28.843808957000078 ], [ -82.015014204999943, 28.843790765000051 ], [ -82.015023367999959, 28.843768705000059 ], [ -82.015034155999956, 28.843738956000038 ], [ -82.015039520999949, 28.843721147000053 ], [ -82.015044235999937, 28.843704243000047 ], [ -82.015050685999938, 28.84367807700005 ], [ -82.015058435999947, 28.843645799000058 ], [ -82.015071877999958, 28.843589408000071 ], [ -82.015084393999985, 28.843540392000079 ], [ -82.015087679999965, 28.84352911600007 ], [ -82.015089689999968, 28.843522566000047 ], [ -82.015092010999979, 28.843515209000032 ], [ -82.015093714999978, 28.843510012000024 ], [ -82.015094996999949, 28.843506116000071 ], [ -82.015096409999956, 28.843501985000046 ], [ -82.015098555999941, 28.843495768000025 ], [ -82.015100194999945, 28.843491184000072 ], [ -82.015102125999988, 28.843485901000065 ], [ -82.015103759999988, 28.843481495000049 ], [ -82.015106321999951, 28.84347471600006 ], [ -82.015110166999989, 28.843464958000027 ], [ -82.015118304999987, 28.843445506000023 ], [ -82.015121654999973, 28.843437884000025 ], [ -82.015124698999955, 28.843431151000061 ], [ -82.015126468999938, 28.843427341000051 ], [ -82.015129132999959, 28.843421671000044 ], [ -82.015130834999979, 28.843418115000077 ], [ -82.015132336999955, 28.843415015000062 ], [ -82.015133618999982, 28.843412399000044 ], [ -82.015134952999972, 28.843409698000073 ], [ -82.015136366999968, 28.843406857000048 ], [ -82.015137680999942, 28.843404258000078 ], [ -82.015139277999936, 28.843401123000035 ], [ -82.015141024999934, 28.843397725000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015141023999945, 28.843397726000035 ], [ -82.015146047999963, 28.843388105000031 ], [ -82.015152618999934, 28.843376149000051 ], [ -82.015161890999934, 28.843360011000073 ], [ -82.015163191999989, 28.843357815000047 ], [ -82.015165266999986, 28.843354349000037 ], [ -82.015168157999938, 28.843349559000046 ], [ -82.015171313999986, 28.843344436000052 ], [ -82.01517404599997, 28.843340067000042 ], [ -82.015177472999937, 28.843334681000044 ], [ -82.015181072999951, 28.843329098000027 ], [ -82.015184639999973, 28.843323683000051 ], [ -82.01518796299996, 28.843318703000079 ], [ -82.015190917999973, 28.843314367000062 ], [ -82.015195352999967, 28.843307958000025 ], [ -82.015197569999941, 28.84330479700003 ], [ -82.015202375999934, 28.843298060000052 ], [ -82.015208392999966, 28.843289698000035 ], [ -82.015214681999964, 28.843280951000054 ], [ -82.015218042999948, 28.843276280000055 ], [ -82.015221442999973, 28.84327156300003 ], [ -82.01522422499994, 28.843267709000031 ], [ -82.015227548999974, 28.843263082000078 ], [ -82.015230372999952, 28.843259157000034 ], [ -82.015235691999976, 28.843251770000052 ], [ -82.015239318999988, 28.843246727000064 ], [ -82.01524289799994, 28.843241761000058 ], [ -82.015246740999942, 28.843236408000053 ], [ -82.015250623999975, 28.843231022000055 ], [ -82.015254185999936, 28.843226080000079 ], [ -82.015258224999968, 28.843220459000065 ], [ -82.015261921999979, 28.843215321000059 ], [ -82.015265447, 28.843210436000049 ], [ -82.015268835999962, 28.843205713000032 ], [ -82.015272137999943, 28.843201134000026 ], [ -82.01527553699998, 28.843196417000058 ], [ -82.015277465999986, 28.843193724000059 ], [ -82.01527951099996, 28.843190892000052 ], [ -82.015282622999962, 28.843186560000049 ], [ -82.015285756999958, 28.843182211000055 ], [ -82.015289443999961, 28.843177086000026 ], [ -82.01529370999998, 28.843171161000043 ], [ -82.015296817999968, 28.843166849000056 ], [ -82.015300383999943, 28.843161888000054 ], [ -82.015303881999955, 28.843157026000029 ], [ -82.015307015999952, 28.843152676000045 ], [ -82.015309618999936, 28.843149066000024 ], [ -82.015312810999944, 28.843144626000026 ], [ -82.01531556599997, 28.843140800000072 ], [ -82.015318989999969, 28.843136045000051 ], [ -82.015320149, 28.843134434000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015320149, 28.843134434000035 ], [ -82.015332220999937, 28.843117817000063 ], [ -82.015363415999957, 28.843074340000044 ], [ -82.015419066999982, 28.842996956000036 ], [ -82.015444120999973, 28.842964620000032 ], [ -82.015467558999944, 28.842936250000037 ], [ -82.015488803999972, 28.842911234000042 ], [ -82.015519400999949, 28.842878389000077 ], [ -82.015544918999979, 28.842852255000025 ], [ -82.015573436999944, 28.842825103000052 ], [ -82.015600803999973, 28.842800393000061 ], [ -82.015609232999964, 28.842793681000046 ], [ -82.015620086999945, 28.84278574800004 ], [ -82.01562701499995, 28.84278127400006 ], [ -82.015635906999989, 28.842775986000049 ], [ -82.015651032999983, 28.842767951000042 ], [ -82.015668584999958, 28.842759917000024 ], [ -82.015707690999989, 28.842741931000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013837571999943, 28.843359346000057 ], [ -82.013840054999946, 28.842602214000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013840054999946, 28.842602214000067 ], [ -82.013842175999969, 28.841955909000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014251574999946, 28.842009820000044 ], [ -82.014293470999974, 28.841908939000064 ], [ -82.014321226999982, 28.84184934700005 ], [ -82.014326429999983, 28.841824899000073 ], [ -82.014329898999961, 28.841809620000049 ], [ -82.014331632999983, 28.841797396000061 ], [ -82.014335098999936, 28.841768366000053 ], [ -82.014333350999948, 28.841676691000032 ], [ -82.014329843999974, 28.841404723000039 ], [ -82.014324589999944, 28.84105635800006 ], [ -82.014321106999944, 28.840973851000058 ], [ -82.014322834999973, 28.840918846000079 ], [ -82.014326299999937, 28.840874536000058 ], [ -82.014338441999939, 28.840839393000067 ], [ -82.014373648999936, 28.840774810000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014504058999989, 28.842963374000078 ], [ -82.014533640999957, 28.842929897000033 ], [ -82.014565891999951, 28.842893167000057 ], [ -82.014571415999967, 28.842886488000033 ], [ -82.014581432999989, 28.842873173000044 ], [ -82.014590840999972, 28.842858620000072 ], [ -82.014597628, 28.842846708000025 ], [ -82.014609936999989, 28.842823911000039 ], [ -82.014626131999989, 28.842795013000057 ], [ -82.014661141999966, 28.842736682000066 ], [ -82.014684404999969, 28.842700364000052 ], [ -82.014707808999958, 28.842665365000073 ], [ -82.014722739999968, 28.842644012000051 ], [ -82.014740198999959, 28.842619978000073 ], [ -82.014757705999955, 28.842596397000079 ], [ -82.014771652999968, 28.842578218000028 ], [ -82.014781810999978, 28.842565150000041 ], [ -82.014808911999978, 28.842531510000072 ], [ -82.014863257999934, 28.842468519000079 ], [ -82.014896070999953, 28.842432942000073 ], [ -82.014912312999968, 28.842415889000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014912312999968, 28.842415889000051 ], [ -82.014921394999988, 28.842406640000036 ], [ -82.014952803999961, 28.842375145000062 ], [ -82.014991467999948, 28.842338206000079 ], [ -82.015009817999953, 28.842321510000033 ], [ -82.015032192999968, 28.842301433000046 ], [ -82.01507034399998, 28.84226878100003 ], [ -82.015100676999964, 28.84224389700006 ], [ -82.015130448999969, 28.842220176000069 ], [ -82.01518269099995, 28.84218088700004 ], [ -82.015216814999974, 28.842156522000039 ], [ -82.015263016999938, 28.842125064000072 ], [ -82.015298126999937, 28.842102306000072 ], [ -82.015343581999957, 28.842074190000062 ], [ -82.015369702999976, 28.842058646000055 ], [ -82.015405185999953, 28.84203840300006 ], [ -82.01543565999998, 28.84202158100004 ], [ -82.015463082999986, 28.842007134000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014251574999946, 28.842009820000044 ], [ -82.01422077899997, 28.841999940000051 ], [ -82.014192838999975, 28.841992075000064 ], [ -82.014158043999942, 28.841983368000058 ], [ -82.014117435999935, 28.841974740000069 ], [ -82.014084638999975, 28.841969166000069 ], [ -82.014054529999953, 28.841964739000048 ], [ -82.014016960999982, 28.841960464000067 ], [ -82.013984855999979, 28.841958175000059 ], [ -82.013964032, 28.841957031000049 ], [ -82.013913447999983, 28.841956044000028 ], [ -82.013842175999969, 28.841955909000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014912312999968, 28.842415889000051 ], [ -82.014670606999971, 28.842250317000037 ], [ -82.014531241999975, 28.842154907000065 ], [ -82.01446694699996, 28.842111756000065 ], [ -82.014434321999943, 28.842091974000027 ], [ -82.014414277999947, 28.842080593000048 ], [ -82.014373492999937, 28.84205958900003 ], [ -82.014341562999959, 28.842044772000065 ], [ -82.014301299999943, 28.842027816000041 ], [ -82.01427205899995, 28.842016741000066 ], [ -82.014251574999946, 28.842009820000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016449187999967, 28.843167497000024 ], [ -82.016404173999945, 28.843166172000053 ], [ -82.016363826999964, 28.843161593000048 ], [ -82.016319792, 28.843153959000063 ], [ -82.016275538999935, 28.843141359000072 ], [ -82.016235189999975, 28.843124175000071 ], [ -82.016184426999985, 28.843094387000065 ], [ -82.016095914999937, 28.843029079000075 ], [ -82.015990041999942, 28.842955857000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015707690999989, 28.842741931000035 ], [ -82.015675662999968, 28.842685986000049 ], [ -82.015658304999988, 28.842644734000032 ], [ -82.015642679999985, 28.842600426000047 ], [ -82.015633994999973, 28.842550006000067 ], [ -82.015621840999984, 28.842496529000073 ], [ -82.015609684999959, 28.842449166000051 ], [ -82.015595795999957, 28.842392635000067 ], [ -82.015585374999944, 28.842336103000036 ], [ -82.015580162999981, 28.842293321000056 ], [ -82.01555412, 28.842207762000044 ], [ -82.015522871999963, 28.842120674000057 ], [ -82.01549162699996, 28.842061089000026 ], [ -82.015463082999986, 28.842007134000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015463082999986, 28.842007134000028 ], [ -82.015422194999985, 28.841940392000026 ], [ -82.015380538999977, 28.841879280000057 ], [ -82.015333675999955, 28.841816640000047 ], [ -82.015293757999984, 28.841767753000056 ], [ -82.015253837999978, 28.841720391000024 ], [ -82.015203507999956, 28.841676087000053 ], [ -82.015151442, 28.841628727000057 ], [ -82.015106318999983, 28.841589007000039 ], [ -82.015066398999977, 28.841543174000037 ], [ -82.015021272999945, 28.841485118000037 ], [ -82.01499176699997, 28.841436228000077 ], [ -82.014955315999941, 28.841375115000062 ], [ -82.01492406899996, 28.841298724000069 ], [ -82.014896293999982, 28.841223859000024 ], [ -82.014870254999948, 28.841152050000062 ], [ -82.014840738999965, 28.841051211000035 ], [ -82.014807152999936, 28.840951353000037 ], [ -82.014774365999983, 28.84085096900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014774365999983, 28.84085096900003 ], [ -82.014748355999984, 28.840771243000063 ], [ -82.014732691999939, 28.840720039000075 ], [ -82.014722619999986, 28.840670805000059 ], [ -82.014714785999956, 28.84063240200004 ], [ -82.014705831999947, 28.840587106000044 ], [ -82.014701351999975, 28.840536886000052 ], [ -82.014695752999955, 28.840484696000033 ], [ -82.014689033999957, 28.840429553000035 ], [ -82.014684554999974, 28.840385241000035 ], [ -82.014677837999955, 28.840331081000045 ], [ -82.014672237999946, 28.840282831000025 ], [ -82.014668875999973, 28.840232611000033 ], [ -82.014666634999969, 28.840199131000077 ], [ -82.014664392999975, 28.840157773000044 ], [ -82.014664935999974, 28.840074344000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985084738999944, 28.848257971000066 ], [ -81.985204677999945, 28.848102894000078 ], [ -81.985264705999953, 28.848029598000039 ], [ -81.985324397999989, 28.847959812000056 ], [ -81.985381751999967, 28.847895446000052 ], [ -81.985442111999987, 28.847830345000034 ], [ -81.985483944999942, 28.847784015000059 ], [ -81.985515957999951, 28.84774558600003 ], [ -81.985553581999966, 28.847696532000043 ], [ -81.985600241999975, 28.847628546000067 ], [ -81.985643314999948, 28.84755659800004 ], [ -81.985675123999954, 28.847495715000036 ], [ -81.985715758999959, 28.847403711000027 ], [ -81.985744600999965, 28.847322800000029 ], [ -81.985776269999974, 28.847211270000059 ], [ -81.985796009999945, 28.847134969000024 ], [ -81.985819506999974, 28.847015222000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984471276999955, 28.847934286000054 ], [ -81.984530724999956, 28.847815922000052 ], [ -81.984652238999956, 28.847571470000048 ], [ -81.984710607999943, 28.847461848000023 ], [ -81.984748798999988, 28.847385458000076 ], [ -81.984828368999956, 28.84721453800006 ], [ -81.984872051999957, 28.84710433500004 ], [ -81.984929343999966, 28.846948495000049 ], [ -81.985070690999976, 28.846593542000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983800364999979, 28.847896547000062 ], [ -81.983792283999946, 28.847836458000074 ], [ -81.983789481999963, 28.847760636000032 ], [ -81.983794517999968, 28.847712908000062 ], [ -81.983812649999948, 28.847638201000052 ], [ -81.983868128999973, 28.847444149000069 ], [ -81.983924379999962, 28.847247396000057 ], [ -81.983985896999968, 28.847032219000027 ], [ -81.984042273999989, 28.846835026000065 ], [ -81.984085810999943, 28.846682749000024 ], [ -81.984124837999957, 28.846546237000041 ], [ -81.984147054999937, 28.846468525000034 ], [ -81.984196402999942, 28.846421538000072 ], [ -81.984257078999974, 28.846383467000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983122966999986, 28.848044081000069 ], [ -81.983090817999937, 28.847970210000028 ], [ -81.98307135899995, 28.847912175000033 ], [ -81.983059258999958, 28.847844885000029 ], [ -81.983057564999967, 28.847780656000054 ], [ -81.983062641999936, 28.847730209000076 ], [ -81.983078257999978, 28.847609853000051 ], [ -81.983094438999956, 28.847485163000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983094438999956, 28.847485163000044 ], [ -81.983099952999964, 28.847442663000038 ], [ -81.983129131999988, 28.847217788000023 ], [ -81.983176694999941, 28.846851229000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983176694999941, 28.846851229000038 ], [ -81.983223008999971, 28.846494298000039 ], [ -81.983250625999972, 28.846406957000056 ], [ -81.983300594999946, 28.846287032000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982522234999976, 28.846880319000036 ], [ -81.982381138999983, 28.846350538000024 ], [ -81.982286894999959, 28.845996671000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98178411899994, 28.847223652000025 ], [ -81.981746883999961, 28.847149500000057 ], [ -81.981725138999934, 28.847106090000068 ], [ -81.981704788999934, 28.847059779000062 ], [ -81.981689230999962, 28.847015374000023 ], [ -81.981679578999945, 28.846980557000052 ], [ -81.981671370999948, 28.846941870000023 ], [ -81.981666881999956, 28.846912701000065 ], [ -81.981662408999966, 28.84687869000004 ], [ -81.981646539999986, 28.846784754000055 ], [ -81.981641817999957, 28.846712360000026 ], [ -81.981642605, 28.84659117800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985084738999944, 28.848257971000066 ], [ -81.985117545999969, 28.848293266000042 ], [ -81.985147487999939, 28.848332468000024 ], [ -81.985179906999974, 28.848386965000032 ], [ -81.985198719999971, 28.848419568000054 ], [ -81.985237961999985, 28.848473286000058 ], [ -81.985276767999949, 28.848514655000031 ], [ -81.985330261999934, 28.848559468000076 ], [ -81.985369116999948, 28.848585547000027 ], [ -81.98541318599996, 28.848608377000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979202663999956, 28.848595707000072 ], [ -81.979217024999969, 28.848599891000049 ], [ -81.979232958999944, 28.848603095000044 ], [ -81.979246089999947, 28.848604407000039 ], [ -81.979260107999949, 28.848604537000028 ], [ -81.979274229999987, 28.848603342000047 ], [ -81.97928817199994, 28.848600818000079 ], [ -81.979303332999962, 28.848596444000066 ], [ -81.979358092999973, 28.848574284000051 ], [ -81.979469764999976, 28.848526744000026 ], [ -81.979583078999951, 28.848475701000041 ], [ -81.979702696999937, 28.84841864200007 ], [ -81.979782253999986, 28.848378822000029 ], [ -81.979877229999943, 28.84832926200005 ], [ -81.980006139999944, 28.848258388000033 ], [ -81.98011857399996, 28.848195233000069 ], [ -81.980242890999989, 28.848125400000072 ], [ -81.980350048999981, 28.848065208000037 ], [ -81.980466073999935, 28.848000033000062 ], [ -81.980573677999985, 28.847939589000077 ], [ -81.980670182999972, 28.847885379000047 ], [ -81.980784974999949, 28.847820898000066 ], [ -81.980904253999938, 28.847753895000039 ], [ -81.981028228999946, 28.847684253000068 ], [ -81.981106229999966, 28.847640411000043 ], [ -81.981111168999973, 28.84763736900004 ], [ -81.981114199, 28.847635461000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981114199, 28.847635461000039 ], [ -81.981473018999964, 28.847436794000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981114199, 28.847635461000039 ], [ -81.981120886999975, 28.847630449000064 ], [ -81.981126585999959, 28.847625710000045 ], [ -81.981132367999976, 28.847620500000062 ], [ -81.981138373999954, 28.847613803000058 ], [ -81.981145289999972, 28.847604968000041 ], [ -81.981151460999968, 28.847595249000051 ], [ -81.981155602999934, 28.847586747000037 ], [ -81.981159060999971, 28.847578787000032 ], [ -81.98116181499995, 28.84757006500007 ], [ -81.981163630999959, 28.84756208400006 ], [ -81.981164747999969, 28.847554604000038 ], [ -81.981165325999939, 28.847546702000045 ], [ -81.981165284999975, 28.847538511000039 ], [ -81.981163759999959, 28.847524888000066 ], [ -81.98116128099997, 28.847514283000066 ], [ -81.981155698999942, 28.847499299000049 ], [ -81.981127473999948, 28.847442935000061 ], [ -81.981059787999982, 28.847308128000066 ], [ -81.980986799999982, 28.847162756000046 ], [ -81.980971456999953, 28.847132262000059 ], [ -81.980966971999976, 28.847124576000056 ], [ -81.980965433999984, 28.847121462000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980965433999984, 28.847121462000075 ], [ -81.980768574999956, 28.846723160000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984678865999967, 28.84459025600006 ], [ -81.984737940999935, 28.844508966000035 ], [ -81.984790181999983, 28.844442584000035 ], [ -81.984847812999988, 28.844379754000045 ], [ -81.98491052199995, 28.844320817000039 ], [ -81.985080696999944, 28.844172208000032 ], [ -81.985115360999941, 28.844142473000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985115360999941, 28.844142473000034 ], [ -81.985216892999972, 28.844061157000056 ], [ -81.985322968999981, 28.843984473000035 ], [ -81.985433318999981, 28.843912616000068 ], [ -81.985547660999941, 28.843845771000076 ], [ -81.985665700999959, 28.843784108000079 ], [ -81.985787133999963, 28.843727788000024 ], [ -81.985911649999935, 28.843676953000056 ], [ -81.98603892999995, 28.843631734000041 ], [ -81.98640559599994, 28.843510882000032 ], [ -81.986424009999951, 28.843503353000074 ], [ -81.986440904999938, 28.843493440000032 ], [ -81.986455886999977, 28.843481373000031 ], [ -81.986468602999935, 28.843467438000062 ], [ -81.986478754999951, 28.843451956000024 ], [ -81.986486108999941, 28.843435295000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98648469699998, 28.843770740000025 ], [ -81.986486108999941, 28.843435295000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986486108999941, 28.843435295000063 ], [ -81.986490329999981, 28.843418812000039 ], [ -81.986491805999947, 28.843401966000044 ], [ -81.986493823999979, 28.843025412000031 ], [ -81.986493362999965, 28.843015118000039 ], [ -81.986491873999967, 28.84300489900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986491873999967, 28.84300489900005 ], [ -81.98649351499995, 28.842557509000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984660301999952, 28.843839867000042 ], [ -81.984650636999959, 28.843822097000043 ], [ -81.984644498999955, 28.843803150000042 ], [ -81.984642062999967, 28.843783565000024 ], [ -81.984643397999946, 28.843763897000031 ], [ -81.984648463999974, 28.843744707000042 ], [ -81.984657119999952, 28.843726539000045 ], [ -81.984669118999989, 28.843709908000051 ], [ -81.984684120999987, 28.843695288000049 ], [ -81.984808139999984, 28.843598136000026 ], [ -81.984937436999985, 28.843506469000033 ], [ -81.985071692999952, 28.843420510000044 ], [ -81.985210589999951, 28.843340468000065 ], [ -81.985353786999951, 28.843266536000044 ], [ -81.985500939999952, 28.843198893000078 ], [ -81.985651691999976, 28.843137701000046 ], [ -81.985805677999963, 28.843083111000055 ], [ -81.986314529999959, 28.842915395000034 ], [ -81.986334900999964, 28.842910271000051 ], [ -81.986355937999974, 28.842908063000039 ], [ -81.986377106999953, 28.842908831000045 ], [ -81.986397865999947, 28.842912555000055 ], [ -81.98641768899995, 28.842919140000049 ], [ -81.986436069999968, 28.842928416000063 ], [ -81.986452540999949, 28.842940149000071 ], [ -81.986466680999968, 28.842954040000052 ], [ -81.986478131999945, 28.842969734000064 ], [ -81.986486602999946, 28.842986833000055 ], [ -81.986491873999967, 28.84300489900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985115360999941, 28.844142473000034 ], [ -81.98507452399997, 28.844104902000026 ], [ -81.985025467999947, 28.844064839000055 ], [ -81.984971352999935, 28.844030191000058 ], [ -81.984703224999976, 28.843879131000051 ], [ -81.984686633999956, 28.843868081000039 ], [ -81.984672209999985, 28.843854885000042 ], [ -81.984660301999952, 28.843839867000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984660301999952, 28.843839867000042 ], [ -81.98429652599998, 28.843652166000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985846362999951, 28.846515516000068 ], [ -81.986111586999982, 28.846154900000045 ], [ -81.986111578999953, 28.84615489600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986111586999982, 28.846154900000045 ], [ -81.986243035999962, 28.845974007000052 ], [ -81.986358800999938, 28.845814713000038 ], [ -81.986434034999945, 28.845711191000078 ], [ -81.986502163999944, 28.845617443000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986502163999944, 28.845617443000037 ], [ -81.986539052999944, 28.845569201000046 ], [ -81.986582639999938, 28.845523940000078 ], [ -81.986634254999956, 28.845482021000066 ], [ -81.986687791999941, 28.845448090000048 ], [ -81.986812063999935, 28.845395847000077 ], [ -81.986955909999949, 28.845348436000052 ], [ -81.987083831999939, 28.845306273000062 ], [ -81.987222385999985, 28.845260604000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987222385999985, 28.845260604000032 ], [ -81.987362049999945, 28.845217178000041 ], [ -81.987466646999962, 28.845192292000036 ], [ -81.987587007999934, 28.845171913000058 ], [ -81.987686616999952, 28.845159418000037 ], [ -81.987848382999971, 28.845129137000072 ], [ -81.987948367999934, 28.845108402000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986111578999953, 28.84615489600003 ], [ -81.985989979999943, 28.846088911000038 ], [ -81.985800728999948, 28.845995377000065 ], [ -81.985604819999935, 28.845908056000042 ], [ -81.985366781999971, 28.845813883000062 ], [ -81.985213677, 28.845759844000042 ], [ -81.985092293999969, 28.845706442000051 ], [ -81.985032989, 28.845648356000027 ], [ -81.984994313999948, 28.845564638000042 ], [ -81.984989089999942, 28.845503514000029 ], [ -81.984999071999937, 28.845449737000024 ], [ -81.985026300999948, 28.845378781000079 ], [ -81.985059668999952, 28.845303146000049 ], [ -81.985110117999966, 28.84520423500004 ], [ -81.985177724999971, 28.845091631000059 ], [ -81.985223860999952, 28.845024225000031 ], [ -81.985289285999954, 28.844934151000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985289285999954, 28.844934151000075 ], [ -81.985344167999983, 28.844858632000069 ], [ -81.985402186999977, 28.844780287000049 ], [ -81.985463807999963, 28.844711208000035 ], [ -81.985541470999976, 28.844636168000079 ], [ -81.985637355999984, 28.844554316000028 ], [ -81.985734177999973, 28.844481763000033 ], [ -81.985820387, 28.844424458000049 ], [ -81.985885565999979, 28.844385181000064 ], [ -81.985957120999956, 28.844345720000035 ], [ -81.986037636999981, 28.844305545000054 ], [ -81.986200292999968, 28.844236770000066 ], [ -81.986349620999988, 28.844185668000023 ], [ -81.986478019999936, 28.844143348000046 ], [ -81.986624481999968, 28.844095074000052 ], [ -81.986819879999985, 28.844031007000069 ], [ -81.986954870999966, 28.843990734000045 ], [ -81.987104021999983, 28.843951698000069 ], [ -81.987227756999971, 28.843923525000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987227756999971, 28.843923525000037 ], [ -81.987319458999934, 28.843905049000057 ], [ -81.987372182999934, 28.843895338000038 ], [ -81.987429215999953, 28.843885573000023 ], [ -81.987502486999972, 28.84387421100007 ], [ -81.987560929999972, 28.843866882000043 ], [ -81.987613636999981, 28.843861841000034 ], [ -81.98768137199994, 28.843857522000064 ], [ -81.987777781999966, 28.843854838000027 ], [ -81.987908932999972, 28.843851907000044 ], [ -81.988027188, 28.843849265000074 ], [ -81.988136742999984, 28.843846816000053 ], [ -81.988239767999971, 28.843844514000068 ], [ -81.988363493999941, 28.843841749000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985891930999969, 28.845273663000057 ], [ -81.985944381999957, 28.845204247000026 ], [ -81.986002485999961, 28.845138414000075 ], [ -81.986065931999974, 28.845076523000046 ], [ -81.986134374999949, 28.845018906000064 ], [ -81.986207442999955, 28.84496587600006 ], [ -81.986284744999978, 28.844917720000069 ], [ -81.986365856999953, 28.844874697000023 ], [ -81.986450342999944, 28.84483704400003 ], [ -81.986537743999975, 28.844804962000069 ], [ -81.987024095999971, 28.844644662000064 ], [ -81.987166635999984, 28.844601002000047 ], [ -81.987311338999973, 28.844563264000044 ], [ -81.987457890999963, 28.84453153000004 ], [ -81.987605967999968, 28.844505870000035 ], [ -81.987675108999952, 28.844497631000024 ], [ -81.987744747999955, 28.844493838000062 ], [ -81.987868653999953, 28.844491070000061 ], [ -81.987913133999939, 28.844493220000061 ], [ -81.987956653999959, 28.844501597000033 ], [ -81.987998094999966, 28.844515986000033 ], [ -81.988036392999959, 28.844536019000032 ], [ -81.988070564999987, 28.844561181000074 ], [ -81.988086478999946, 28.844574951000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987616952999986, 28.847225814000069 ], [ -81.987745498999971, 28.847010087000058 ], [ -81.987822050999966, 28.84688047700007 ], [ -81.987862958999983, 28.84680478000007 ], [ -81.987911834999977, 28.846703812000044 ], [ -81.987954549999984, 28.846602853000036 ], [ -81.987994961999959, 28.846491282000045 ], [ -81.988037168999938, 28.846346979000032 ], [ -81.988061345999938, 28.846240439000042 ], [ -81.988087562999965, 28.84607477000003 ], [ -81.988093685999957, 28.846015091000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988093685999957, 28.846015091000027 ], [ -81.988101599999936, 28.845848639000053 ], [ -81.988098899999954, 28.845732349000059 ], [ -81.988087005999944, 28.845637430000068 ], [ -81.988071223999953, 28.845567612000025 ], [ -81.988038642999982, 28.845445838000046 ], [ -81.987994758999946, 28.845281800000066 ], [ -81.987961097999971, 28.845155980000072 ], [ -81.987948367999934, 28.845108402000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987948367999934, 28.845108402000051 ], [ -81.987931620999973, 28.845045807000076 ], [ -81.987922766999986, 28.845006344000069 ], [ -81.987917484999969, 28.844965248000051 ], [ -81.987916120999955, 28.844936807000067 ], [ -81.987916889999951, 28.84490340900004 ], [ -81.987921453999945, 28.844861813000023 ], [ -81.987929864999955, 28.844821171000035 ], [ -81.987942441999962, 28.844780326000034 ], [ -81.987954082999977, 28.844751228000064 ], [ -81.987968190999936, 28.844722002000026 ], [ -81.987985966999986, 28.844691112000078 ], [ -81.988003575999983, 28.844664931000068 ], [ -81.988027401999943, 28.844634450000058 ], [ -81.988051251999934, 28.844608171000061 ], [ -81.988086478999946, 28.844574951000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988086478999946, 28.844574951000027 ], [ -81.988127842999972, 28.844537892000062 ], [ -81.988163880999934, 28.844505604000062 ], [ -81.988201516999936, 28.84447188300004 ], [ -81.988229158999957, 28.844445611000026 ], [ -81.988254801999972, 28.84441739500005 ], [ -81.988280553999971, 28.844384085000058 ], [ -81.988303726999959, 28.844348043000025 ], [ -81.988321695999957, 28.844314028000042 ], [ -81.988334422999969, 28.844284771000048 ], [ -81.988346115999946, 28.844251350000036 ], [ -81.98835674299994, 28.844209553000042 ], [ -81.988361744999963, 28.844179696000026 ], [ -81.988365276999957, 28.844137003000071 ], [ -81.988365090999935, 28.844061568000029 ], [ -81.98836436199997, 28.843961278000052 ], [ -81.988363750999952, 28.843877252000027 ], [ -81.988363493999941, 28.843841749000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988363493999941, 28.843841749000035 ], [ -81.988362157999973, 28.843657928000027 ], [ -81.988360746999945, 28.843463890000066 ], [ -81.988359958999979, 28.843355384000063 ], [ -81.988357792999977, 28.843262045000074 ], [ -81.988351980999937, 28.843208512000047 ], [ -81.988341361999971, 28.843151615000068 ], [ -81.988334174999977, 28.843122740000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988334178999935, 28.843122754000035 ], [ -81.988311960999965, 28.843053947000044 ], [ -81.988275680999948, 28.842972423000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988275680999948, 28.842972423000049 ], [ -81.988175172999945, 28.842806784000061 ], [ -81.988103326999976, 28.84269202400003 ], [ -81.988020652999978, 28.842550313000061 ], [ -81.987964401999989, 28.842412541000044 ], [ -81.987940599999945, 28.842326198000023 ], [ -81.987923525999975, 28.842228600000055 ], [ -81.987916254999959, 28.842110749000028 ], [ -81.987917201999949, 28.841898769000068 ], [ -81.987917823999965, 28.841761248000068 ], [ -81.987922106999974, 28.841649827000026 ], [ -81.987929913999949, 28.841591644000061 ], [ -81.987944853999977, 28.841521408000062 ], [ -81.987966490999952, 28.841449989000068 ], [ -81.987995285999943, 28.84137802500004 ], [ -81.988045228999965, 28.841275196000026 ], [ -81.988112681999951, 28.841137741000068 ], [ -81.988165113999969, 28.841036979000023 ], [ -81.988192121999987, 28.841004422000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987878089999981, 28.843131903000028 ], [ -81.988275680999948, 28.842972423000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988192121999987, 28.841004422000026 ], [ -81.988226926999971, 28.840974696000046 ], [ -81.988275991999956, 28.840946556000063 ], [ -81.988330300999962, 28.840928173000066 ], [ -81.988388060999966, 28.840920134000044 ], [ -81.988447742999938, 28.840922622000051 ], [ -81.988544265999963, 28.840931312000066 ], [ -81.988682708999988, 28.840943773000049 ], [ -81.988776496999947, 28.840952216000062 ], [ -81.988863703999982, 28.840962281000031 ], [ -81.988973577999957, 28.840992067000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988973577999957, 28.840992067000059 ], [ -81.989051010999958, 28.841027454000027 ], [ -81.989089366999963, 28.841050445000064 ], [ -81.989126078999959, 28.84107664000004 ], [ -81.989170886999943, 28.841115596000066 ], [ -81.989212061999979, 28.841157181000028 ], [ -81.989267257999984, 28.841213143000061 ], [ -81.989290346999951, 28.841250715000058 ], [ -81.989337459999945, 28.841330665000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987912057999949, 28.840785144000051 ], [ -81.988192121999987, 28.841004422000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989062263999983, 28.843087762000039 ], [ -81.989932626999973, 28.843090246000031 ], [ -81.990019340999936, 28.843087842000045 ], [ -81.990105654999979, 28.843080144000055 ], [ -81.99019240299998, 28.843071820000034 ], [ -81.990389897999989, 28.843056115000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988334174999977, 28.843122740000069 ], [ -81.988443551999978, 28.843099820000077 ], [ -81.988509101999966, 28.843089650000024 ], [ -81.988575554999954, 28.843086371000027 ], [ -81.989062263999983, 28.843087762000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988070788999948, 28.847350430000063 ], [ -81.988151333999951, 28.847367295000026 ], [ -81.988217593999934, 28.84736676700004 ], [ -81.988289401999964, 28.847349769000061 ], [ -81.988346006999961, 28.847321632000046 ], [ -81.988394785999958, 28.847281503000033 ], [ -81.988420703999964, 28.847249435000037 ], [ -81.988466529999982, 28.847172371000056 ], [ -81.988521891999937, 28.847070380000048 ], [ -81.988585347999958, 28.846939357000053 ], [ -81.988626930999942, 28.846842646000027 ], [ -81.98868129799996, 28.846697738000046 ], [ -81.988717126999973, 28.846585489000063 ], [ -81.988742479999985, 28.846493733000045 ], [ -81.988763290999941, 28.846406893000051 ], [ -81.988769702999946, 28.846336918000077 ], [ -81.988748902999987, 28.846257895000065 ], [ -81.98871414599995, 28.846204483000065 ], [ -81.988668756999971, 28.846162820000075 ], [ -81.988564957999984, 28.846107504000031 ], [ -81.988456116999942, 28.846060072000057 ], [ -81.988360975999967, 28.846036353000045 ], [ -81.988237397999967, 28.846024892000059 ], [ -81.988093685999957, 28.846015091000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987027211999987, 28.846812807000049 ], [ -81.987085183999966, 28.846735287000058 ], [ -81.987122525999951, 28.846679980000033 ], [ -81.98716561699996, 28.846609554000054 ], [ -81.987209157999985, 28.846529111000052 ], [ -81.987250083999982, 28.846441704000028 ], [ -81.987278752999941, 28.846370652000076 ], [ -81.987304808999966, 28.846295519000023 ], [ -81.987329538999973, 28.846209308000027 ], [ -81.987351597999975, 28.846109175000038 ], [ -81.987363743999936, 28.846032857000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987363743999936, 28.846032857000068 ], [ -81.987375634999978, 28.845882975000052 ], [ -81.987371960999951, 28.84579556500006 ], [ -81.987358774999961, 28.845706242000063 ], [ -81.987339014999975, 28.845619414000055 ], [ -81.987315260999935, 28.845517793000056 ], [ -81.987281309999958, 28.845405350000078 ], [ -81.987256159999959, 28.845340108000073 ], [ -81.987222385999985, 28.845260604000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987616952999986, 28.847225816000048 ], [ -81.987801903, 28.847281338000073 ], [ -81.988017304999971, 28.847336687000052 ], [ -81.988070788999948, 28.847350430000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986111578999953, 28.84615489600003 ], [ -81.986225486999956, 28.846221370000023 ], [ -81.986292640999977, 28.846262797000065 ], [ -81.98641805699998, 28.846344886000054 ], [ -81.986536980999972, 28.846428818000049 ], [ -81.986639629999956, 28.846506451000039 ], [ -81.986754014999974, 28.846596800000043 ], [ -81.986868220999952, 28.846687099000064 ], [ -81.986943433999954, 28.846746567000025 ], [ -81.987027211999987, 28.846812807000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987227756999971, 28.843923525000037 ], [ -81.987197813999956, 28.843814314000042 ], [ -81.987188971999956, 28.843775229000073 ], [ -81.98718372999997, 28.843735644000049 ], [ -81.987182120999989, 28.843695816000036 ], [ -81.987190990999977, 28.842037876000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987190990999977, 28.842037876000063 ], [ -81.987191183999983, 28.842001860000039 ], [ -81.987188473999936, 28.841914154000051 ], [ -81.987179416999936, 28.841826777000051 ], [ -81.98716405, 28.841740087000062 ], [ -81.987142434999953, 28.841654437000045 ], [ -81.987114661999954, 28.841570174000026 ], [ -81.987117137999974, 28.84152718200005 ], [ -81.987126655999987, 28.841493869000033 ], [ -81.987146880999944, 28.841446280000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986502163999944, 28.845617443000037 ], [ -81.985891930999969, 28.845273663000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985891930999969, 28.845273663000057 ], [ -81.985289285999954, 28.844934151000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985289285999954, 28.844934151000075 ], [ -81.984678865999967, 28.84459025600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984678865999967, 28.84459025600006 ], [ -81.983788728999968, 28.844088767000073 ], [ -81.983766796999987, 28.844075049000026 ], [ -81.98374647199995, 28.844059529000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98374647199995, 28.844059529000049 ], [ -81.983578310999974, 28.844213786000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98374647199995, 28.844059529000049 ], [ -81.98371683299996, 28.844030234000058 ], [ -81.983692890999976, 28.843997146000049 ], [ -81.983675259999984, 28.84396111500007 ], [ -81.983664393999959, 28.843923067000048 ], [ -81.983660570999973, 28.843883979000054 ], [ -81.983663889999946, 28.843844855000043 ], [ -81.983674264999934, 28.843806701000062 ], [ -81.983691430999954, 28.843770496000047 ], [ -81.983714946999953, 28.843737171000043 ], [ -81.983825355999954, 28.84361148000005 ], [ -81.983941984999944, 28.84349022300006 ], [ -81.984064601999989, 28.843373636000024 ], [ -81.98419297099997, 28.843261950000056 ], [ -81.984326835, 28.843155384000056 ], [ -81.984465932999967, 28.843054147000032 ], [ -81.984609990999957, 28.842958438000039 ], [ -81.984758725999939, 28.842868447000058 ], [ -81.984911843999953, 28.842784348000066 ], [ -81.985069046999968, 28.84270630900005 ], [ -81.985230023999975, 28.84263448300004 ], [ -81.985394457999973, 28.842569009000044 ], [ -81.985562027999947, 28.842510018000041 ], [ -81.986900324999965, 28.842068913000048 ], [ -81.986948843999983, 28.842055096000024 ], [ -81.98699858599997, 28.842045206000023 ], [ -81.987049138999964, 28.842039323000051 ], [ -81.987100090999945, 28.842037498000025 ], [ -81.987190990999977, 28.842037876000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983514537999952, 28.845485031000067 ], [ -81.98354395399997, 28.845390452000061 ], [ -81.983653381999943, 28.845001740000043 ], [ -81.983668178999949, 28.844942694000054 ], [ -81.983679492999954, 28.844883052000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983445078999978, 28.845767687000034 ], [ -81.983514537999952, 28.845485031000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983679492999954, 28.844883052000057 ], [ -81.983997055999964, 28.844944207000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981490381999947, 28.845130640000036 ], [ -81.981562311999937, 28.845104579000065 ], [ -81.981635927999946, 28.845082467000054 ], [ -81.981840762, 28.845030652000048 ], [ -81.982047596999962, 28.844985413000074 ], [ -81.982256158999974, 28.844946810000067 ], [ -81.982466175999946, 28.844914895000045 ], [ -81.982677368999987, 28.844889708000039 ], [ -81.982889459999967, 28.844871283000032 ], [ -81.983102169999938, 28.844859646000032 ], [ -81.983315220999941, 28.844854811000062 ], [ -81.983528329999956, 28.844856782000079 ], [ -81.983579718999977, 28.844860595000057 ], [ -81.983630312999935, 28.844869388000063 ], [ -81.983679492999954, 28.844883052000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981781378999983, 28.845696603000079 ], [ -81.981957752999961, 28.84564978700007 ], [ -81.982135912, 28.845608541000047 ], [ -81.982315625999945, 28.845572914000059 ], [ -81.982496671999968, 28.845542953000063 ], [ -81.98267881299995, 28.845518695000067 ], [ -81.982861821999961, 28.845500173000062 ], [ -81.983045464999975, 28.845487408000054 ], [ -81.983229507999965, 28.845480418000079 ], [ -81.983413717999952, 28.845479211000054 ], [ -81.983464218999984, 28.845480898000062 ], [ -81.983514537999952, 28.845485031000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981117350999966, 28.845930062000036 ], [ -81.981279813999947, 28.845864136000046 ], [ -81.981444770999985, 28.84580320300006 ], [ -81.981612026999983, 28.845747336000045 ], [ -81.981781378999983, 28.845696603000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981490381999947, 28.845130640000036 ], [ -81.981397572999981, 28.844975834000024 ], [ -81.981300320999935, 28.844823155000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981781378999983, 28.845696604000068 ], [ -81.981715332999954, 28.845554347000075 ], [ -81.981645352999976, 28.845413554000061 ], [ -81.981571483999971, 28.845274311000026 ], [ -81.981555605999972, 28.845245497000064 ], [ -81.981490381999947, 28.845130640000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973493900999983, 28.844576448000055 ], [ -81.973569255999962, 28.84452938000004 ], [ -81.973648855999954, 28.844488082000055 ], [ -81.973732131999952, 28.844452850000039 ], [ -81.973818488999939, 28.844423934000076 ], [ -81.973907310999948, 28.844401541000025 ], [ -81.973997963999977, 28.844385831000068 ], [ -81.974089799999945, 28.844376916000044 ], [ -81.974235851999936, 28.844371738000063 ], [ -81.974382007999964, 28.844373584000039 ], [ -81.974527832999968, 28.844382446000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974527832999968, 28.844382446000054 ], [ -81.974664486999984, 28.844397190000052 ], [ -81.974800100999971, 28.844418097000073 ], [ -81.974934314999985, 28.844445113000063 ], [ -81.975066774999959, 28.844478166000044 ], [ -81.97519712999997, 28.844517169000028 ], [ -81.975325036999948, 28.844562019000023 ], [ -81.975450156999955, 28.844612597000037 ], [ -81.975572159999956, 28.844668770000055 ], [ -81.975690721999968, 28.844730389000063 ], [ -81.975805531999981, 28.844797292000067 ], [ -81.97585007899994, 28.844827766000037 ], [ -81.975890935999985, 28.84486202100004 ], [ -81.975927686999967, 28.844899706000035 ], [ -81.975959964999959, 28.844940444000031 ], [ -81.975985727999955, 28.844980320000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975985727999955, 28.844980320000047 ], [ -81.976006112999983, 28.845020875000046 ], [ -81.976021277999962, 28.84505914600004 ], [ -81.976032836999934, 28.845098381000071 ], [ -81.97606540299995, 28.84523106000006 ], [ -81.976076808999949, 28.845289722000075 ], [ -81.976082409999947, 28.845349030000079 ], [ -81.97608216499998, 28.845408543000076 ], [ -81.976076076999959, 28.845467815000063 ], [ -81.976064187999953, 28.845526401000029 ], [ -81.976046589999953, 28.845583863000058 ], [ -81.975902355999949, 28.84598489800004 ], [ -81.975884600999962, 28.846037950000039 ], [ -81.975869282999952, 28.846091589000025 ], [ -81.975847097999974, 28.84617645700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975847097999974, 28.84617645700007 ], [ -81.975836521999952, 28.846216910000066 ], [ -81.975820782999961, 28.846289898000066 ], [ -81.975811483999962, 28.846363738000036 ], [ -81.975808679999943, 28.846437988000048 ], [ -81.975812389999987, 28.846512208000036 ], [ -81.975822588999961, 28.846585956000069 ], [ -81.975839217999976, 28.846658790000049 ], [ -81.976033542999971, 28.847367223000049 ], [ -81.976057026999968, 28.847487786000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975189012999977, 28.84776477500003 ], [ -81.975200439999981, 28.847661706000054 ], [ -81.975208286999987, 28.847555797000041 ], [ -81.975208384999974, 28.847449662000031 ], [ -81.975200732999951, 28.847343740000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975200732999951, 28.847343740000042 ], [ -81.975187782999967, 28.847252026000035 ], [ -81.975169019999953, 28.847161095000047 ], [ -81.975139898999942, 28.84703944000006 ], [ -81.975122261999957, 28.846954905000075 ], [ -81.975109649, 28.84686967600004 ], [ -81.975102091999986, 28.846783983000023 ], [ -81.975086370999975, 28.84651511800007 ], [ -81.975084088999949, 28.846451448000039 ], [ -81.975084686999935, 28.846387748000041 ], [ -81.975089878999938, 28.846225530000027 ], [ -81.975093730999959, 28.84614603600005 ], [ -81.975100190999967, 28.846066675000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975100190999967, 28.846066675000031 ], [ -81.975114237999946, 28.84595160300006 ], [ -81.975133772999982, 28.845837153000048 ], [ -81.975158758999953, 28.845723527000075 ], [ -81.975244343999975, 28.845373907000067 ], [ -81.975310843999978, 28.845230963000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974415968999949, 28.845437503000028 ], [ -81.974433074, 28.845246866000025 ], [ -81.974527832999968, 28.844382447000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974374738999984, 28.846078520000049 ], [ -81.974414131999936, 28.845464900000024 ], [ -81.974415968999949, 28.845437503000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97226066099995, 28.846092533000046 ], [ -81.97246974799998, 28.846158228000036 ], [ -81.972587042999976, 28.846196250000048 ], [ -81.972808402999988, 28.846270229000027 ], [ -81.972870661999934, 28.84628747000005 ], [ -81.972934772999963, 28.846298241000056 ], [ -81.972999867999988, 28.846302399000024 ], [ -81.973065070999951, 28.846299887000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973065070999951, 28.846299887000043 ], [ -81.973104430999967, 28.846295105000024 ], [ -81.973143309999955, 28.846287887000074 ], [ -81.973463483999979, 28.846217959000057 ], [ -81.973655095999959, 28.84617920900007 ], [ -81.973848120999946, 28.846146349000037 ], [ -81.97404232699995, 28.846119416000079 ], [ -81.974374738999984, 28.846078520000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974374738999984, 28.846078520000049 ], [ -81.974447106999946, 28.846069615000033 ], [ -81.974533511999937, 28.84606113500007 ], [ -81.97462031699996, 28.846056902000043 ], [ -81.974707255999988, 28.846056927000063 ], [ -81.975100190999967, 28.846066675000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975100190999967, 28.846066675000031 ], [ -81.975101296999981, 28.84606670200003 ], [ -81.975217126999951, 28.846072105000076 ], [ -81.975332510999976, 28.846082548000027 ], [ -81.97544716699997, 28.846098006000034 ], [ -81.975560814999938, 28.846118442000034 ], [ -81.975847096999985, 28.84617645700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975847096999985, 28.84617645700007 ], [ -81.976195467999958, 28.84624705300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972201950999988, 28.847821357000043 ], [ -81.972273980999944, 28.847668909000049 ], [ -81.972343429999967, 28.84751553500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972277066999936, 28.846781532000023 ], [ -81.972376396999948, 28.846823057000051 ], [ -81.972478786999943, 28.846858351000037 ], [ -81.972549920999938, 28.84688346400003 ], [ -81.972622279999939, 28.846905700000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972343429999967, 28.84751553500007 ], [ -81.972385002999943, 28.847420425000053 ], [ -81.972565001999953, 28.847002918000044 ], [ -81.972590441999955, 28.846952849000047 ], [ -81.972622279999939, 28.846905700000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972622279999939, 28.846905700000036 ], [ -81.972722127999987, 28.846931184000027 ], [ -81.972797749999984, 28.846944807000057 ], [ -81.972874531999935, 28.846951791000038 ], [ -81.972951720999959, 28.846952067000075 ], [ -81.973028564999936, 28.846945632000029 ], [ -81.973104310999986, 28.84693254900003 ], [ -81.97363232899994, 28.846817226000042 ], [ -81.973787251999966, 28.846785705000059 ], [ -81.973943245999976, 28.846758578000049 ], [ -81.974100145999955, 28.846735873000057 ], [ -81.974257794999971, 28.846717616000035 ], [ -81.974328292999985, 28.846713707000049 ], [ -81.974398872999984, 28.846716246000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972343429999967, 28.84751553500007 ], [ -81.972384502999944, 28.847541496000076 ], [ -81.972429595999984, 28.847561628000051 ], [ -81.972477653999988, 28.847575461000076 ], [ -81.972614226999951, 28.847604795000052 ], [ -81.972688176999952, 28.847617386000024 ], [ -81.972763160999989, 28.847623647000034 ], [ -81.97283847999995, 28.847623519000024 ], [ -81.972913436999988, 28.84761700200005 ], [ -81.972987329999967, 28.847604158000024 ], [ -81.973803807999957, 28.847425834000035 ], [ -81.973947443999975, 28.847396787000037 ], [ -81.974092136999957, 28.847372150000069 ], [ -81.974237716999937, 28.847351955000079 ], [ -81.974326144999964, 28.847343883000065 ], [ -81.974415000999954, 28.847341368000059 ], [ -81.974435609999944, 28.847341431000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974435609999944, 28.847341431000075 ], [ -81.975200731999962, 28.847343740000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974435609999944, 28.847341430000029 ], [ -81.974405574999935, 28.846827723000047 ], [ -81.974398872999984, 28.846716246000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974398872999984, 28.846716246000028 ], [ -81.974378710999986, 28.846412479000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968933452999977, 28.847773465000046 ], [ -81.968972588999975, 28.847492989000045 ], [ -81.968981809999946, 28.847402040000077 ], [ -81.968984154999987, 28.847310751000066 ], [ -81.968983227999956, 28.847233730000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968983227999956, 28.847233730000028 ], [ -81.968981644999985, 28.847102226000061 ], [ -81.96897820199996, 28.847047253000028 ], [ -81.968969223999977, 28.846992768000064 ], [ -81.968954778999944, 28.846939199000076 ], [ -81.96893498299994, 28.846886975000075 ], [ -81.968909995, 28.846836506000045 ], [ -81.968880901999967, 28.846784231000072 ], [ -81.96882820999997, 28.846681467000053 ], [ -81.968782980999947, 28.846575985000072 ], [ -81.968745393999939, 28.846468200000061 ], [ -81.96871559899995, 28.846358544000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96871559899995, 28.846358544000054 ], [ -81.968696465999983, 28.846264050000059 ], [ -81.96868312099997, 28.846168786000078 ], [ -81.968675601999962, 28.846073030000071 ], [ -81.968673930999955, 28.845977057000027 ], [ -81.968678113999943, 28.845881144000032 ], [ -81.968688136999958, 28.845785565000028 ], [ -81.968711464999956, 28.845613677000074 ], [ -81.968715591999967, 28.845573089000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968715591999967, 28.845573089000027 ], [ -81.968716323999956, 28.845503907000079 ], [ -81.968709154999942, 28.845435011000063 ], [ -81.968694157999948, 28.845367096000075 ], [ -81.968671486999938, 28.845300853000026 ], [ -81.968617802999972, 28.84516850600005 ], [ -81.968591430999936, 28.845114025000044 ], [ -81.968557860999965, 28.845062706000078 ], [ -81.968517568999971, 28.845015285000045 ], [ -81.96847113299998, 28.844972440000049 ], [ -81.968419219999987, 28.844934782000053 ], [ -81.968362567999975, 28.844902853000065 ], [ -81.968301993999944, 28.844877108000048 ], [ -81.968238359999987, 28.84485791700007 ], [ -81.96817257899994, 28.844845554000074 ], [ -81.968105591999972, 28.844840194000028 ], [ -81.968038356999955, 28.844841917000053 ], [ -81.967971837999983, 28.844850696000037 ], [ -81.967906984999956, 28.844866406000051 ], [ -81.967749728999934, 28.844913574000032 ], [ -81.967648252999936, 28.84494072800004 ], [ -81.96754495, 28.84496187700006 ], [ -81.967440274999944, 28.844976926000072 ], [ -81.967334696999956, 28.844985809000036 ], [ -81.967228681999984, 28.84498848800007 ], [ -81.966866244999949, 28.84498701900003 ], [ -81.966786016999947, 28.844983761000037 ], [ -81.966706370999987, 28.844974660000048 ], [ -81.966468696999982, 28.844938622000029 ], [ -81.966423959999986, 28.844935082000063 ], [ -81.966379158999985, 28.844937929000025 ], [ -81.96633546399994, 28.844947092000041 ], [ -81.966294013999971, 28.844962332000023 ], [ -81.966255894999961, 28.844983251000031 ], [ -81.966222097999946, 28.845009300000072 ], [ -81.966193505999968, 28.845039801000041 ], [ -81.966170867999949, 28.845073960000036 ], [ -81.966154772999971, 28.845110881000039 ], [ -81.966145640999969, 28.845149603000038 ], [ -81.966143709999983, 28.845189115000039 ], [ -81.966149031999976, 28.845228385000041 ], [ -81.966218726999955, 28.845531669000025 ], [ -81.966233987999942, 28.845604850000029 ], [ -81.966246241999954, 28.845678468000074 ], [ -81.96626006799994, 28.845773438000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96626006799994, 28.845773438000037 ], [ -81.966312375999962, 28.846132733000047 ], [ -81.966329823999956, 28.846276737000039 ], [ -81.966340319999972, 28.846421262000035 ], [ -81.966343843999937, 28.846566050000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966343843999937, 28.846566050000035 ], [ -81.966341557999954, 28.846684013000072 ], [ -81.966341764999981, 28.846764556000039 ], [ -81.96636310699995, 28.846916461000035 ], [ -81.966384768999944, 28.847004655000035 ], [ -81.966426545, 28.84713462600007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967349927999976, 28.846598419000031 ], [ -81.967506826999966, 28.846587531000068 ], [ -81.967663137999978, 28.846571367000024 ], [ -81.967818632999979, 28.846549951000043 ], [ -81.967973082999947, 28.846523313000034 ], [ -81.968126262999988, 28.84649149300003 ], [ -81.96871559899995, 28.846358544000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966343843999937, 28.846566050000035 ], [ -81.966810845999987, 28.846595549000028 ], [ -81.966990434999957, 28.846603422000044 ], [ -81.967170242999941, 28.846604380000031 ], [ -81.967349927999976, 28.846598419000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967441553999947, 28.847306373000038 ], [ -81.967421438999963, 28.847128437000038 ], [ -81.967389343999969, 28.846989603000054 ], [ -81.967372380999961, 28.846882308000033 ], [ -81.967361837999988, 28.846774375000052 ], [ -81.967349927999976, 28.846598419000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968311118999964, 28.847235198000078 ], [ -81.968983227999956, 28.847233730000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968983227999956, 28.847233730000028 ], [ -81.96949323299998, 28.847235198000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970773791999989, 28.849906584000053 ], [ -81.970853171999977, 28.849965044000044 ], [ -81.970959451999988, 28.850022936000073 ], [ -81.971032764999961, 28.850056757000061 ], [ -81.971062697999969, 28.850069369000039 ], [ -81.971143823999967, 28.850092687000028 ], [ -81.971270718999961, 28.850129958000025 ], [ -81.971415018999949, 28.850168962000055 ], [ -81.971577653999987, 28.850214058000063 ], [ -81.971757694999951, 28.850256114000047 ], [ -81.97194533399994, 28.850284801000043 ], [ -81.972010071999989, 28.850291011000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970302476999962, 28.85040267100004 ], [ -81.970368880999956, 28.850322470000037 ], [ -81.97051990999995, 28.850163218000034 ], [ -81.97067875099998, 28.849998238000069 ], [ -81.970773791999989, 28.849906584000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970773791999989, 28.849906584000053 ], [ -81.970801133999942, 28.849875650000058 ], [ -81.970893572999955, 28.849780557000031 ], [ -81.971021163999978, 28.849648803000036 ], [ -81.971157869999956, 28.849503299000048 ], [ -81.971222972999954, 28.849417367000058 ], [ -81.97128807699994, 28.849324560000071 ], [ -81.971359698999947, 28.849193939000031 ], [ -81.971396419999962, 28.849116105000064 ], [ -81.971454086999984, 28.848977861000037 ], [ -81.971517792999975, 28.84876749700004 ], [ -81.971551216999956, 28.848509856000078 ], [ -81.971569331999945, 28.848222989000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984146820999968, 28.845949611000037 ], [ -81.984324355999945, 28.84597917800005 ], [ -81.98450048899997, 28.846014656000079 ], [ -81.984674966999989, 28.84605599300005 ], [ -81.984847535999961, 28.846103130000074 ], [ -81.985017949999985, 28.846155997000039 ], [ -81.985185962999935, 28.846214521000036 ], [ -81.985351331999937, 28.846278617000053 ], [ -81.985513819999937, 28.846348190000072 ], [ -81.985673191999979, 28.846423143000038 ], [ -81.98581319799996, 28.846496399000046 ], [ -81.985846362999951, 28.846515516000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982286894999959, 28.845996671000023 ], [ -81.982470207999938, 28.845962986000075 ], [ -81.982654883999942, 28.845935674000032 ], [ -81.982840636999981, 28.845914779000054 ], [ -81.983027177999986, 28.845900331000053 ], [ -81.983214221999958, 28.845892355000046 ], [ -81.983401475999983, 28.845890861000044 ], [ -81.983588653999959, 28.845895852000069 ], [ -81.983775461999983, 28.845907321000027 ], [ -81.983961613999952, 28.84592525100004 ], [ -81.984146820999968, 28.845949611000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984146820999968, 28.845949611000037 ], [ -81.984215966999955, 28.845591341000045 ], [ -81.984243036999942, 28.845469625000078 ], [ -81.984277, 28.845349257000066 ], [ -81.984317766999936, 28.845230535000042 ], [ -81.984365236999963, 28.84511376200004 ], [ -81.984419291999984, 28.844999229000052 ], [ -81.98447979499997, 28.844887223000057 ], [ -81.984546592999948, 28.844778026000029 ], [ -81.984619520999956, 28.84467191400006 ], [ -81.984678865999967, 28.84459025600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98131878099997, 28.846297958000036 ], [ -81.981474570999978, 28.846234892000041 ], [ -81.981632869999942, 28.846176871000068 ], [ -81.981793467999978, 28.846123971000054 ], [ -81.981956147999938, 28.846076264000033 ], [ -81.982120696999971, 28.846033811000041 ], [ -81.982286894999959, 28.845996671000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978940184999942, 28.847574524000038 ], [ -81.979075503, 28.847512401000074 ], [ -81.979208275999952, 28.847446160000061 ], [ -81.979338343999984, 28.847375880000072 ], [ -81.98083166899994, 28.846537038000065 ], [ -81.980990414999951, 28.846451707000028 ], [ -81.981152870999949, 28.846371972000043 ], [ -81.98131878099997, 28.846297958000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978940184999942, 28.847574524000038 ], [ -81.978838096999937, 28.847394559000065 ], [ -81.978791078999961, 28.847317855000028 ], [ -81.978738635999946, 28.847243926000033 ], [ -81.977993432999938, 28.846263970000052 ], [ -81.977959593999969, 28.846217477000039 ], [ -81.977927900999987, 28.846169825000061 ], [ -81.977875908999977, 28.846087922000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969091062999951, 28.837418456000023 ], [ -81.968952796999986, 28.837111082000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968472641999938, 28.840574002000039 ], [ -81.968512091999969, 28.840499820000048 ], [ -81.968557699999963, 28.840428429000042 ], [ -81.968609215999948, 28.840360224000051 ], [ -81.968666351999957, 28.840295582000067 ], [ -81.968830182999966, 28.840123826000024 ], [ -81.968886512999973, 28.840060167000047 ], [ -81.968937392999976, 28.839993045000028 ], [ -81.96898254599995, 28.839922817000058 ], [ -81.969021731999987, 28.839849865000076 ], [ -81.969054736999965, 28.83977457900005 ], [ -81.96908138799995, 28.839697366000053 ], [ -81.969101535999982, 28.839618640000026 ], [ -81.969115076999969, 28.839538826000023 ], [ -81.969170924999958, 28.839099986000065 ], [ -81.969182441999976, 28.839029932000074 ], [ -81.969199053999944, 28.838960676000056 ], [ -81.96922068799995, 28.838892504000057 ], [ -81.969323819999943, 28.83860370900004 ], [ -81.969348765999939, 28.838523339000062 ], [ -81.96936673099998, 28.838441538000041 ], [ -81.969377614999985, 28.838358774000028 ], [ -81.96938135299996, 28.83827552200006 ], [ -81.969377923999957, 28.838192261000074 ], [ -81.969367347999935, 28.838109467000038 ], [ -81.969349688999955, 28.838027614000055 ], [ -81.969325042999969, 28.837947172000042 ], [ -81.969293554999979, 28.83786860500004 ], [ -81.969091062999951, 28.837418456000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967614233999939, 28.841048221000051 ], [ -81.967504079999969, 28.841028818000041 ], [ -81.967426750999948, 28.841018477000034 ], [ -81.967348663999985, 28.841014535000056 ], [ -81.967055046999974, 28.841011813000023 ], [ -81.967008852999982, 28.841014782000059 ], [ -81.966963860999954, 28.841024462000064 ], [ -81.966921317999947, 28.841040586000076 ], [ -81.966882406999957, 28.841062706000059 ], [ -81.966848205999952, 28.841090206000047 ], [ -81.966819664999946, 28.841122324000025 ], [ -81.966797577999955, 28.841158170000028 ], [ -81.966782555999941, 28.841196747000026 ], [ -81.966775015999985, 28.841236983000044 ], [ -81.966760878999935, 28.841364443000032 ], [ -81.966741763999948, 28.841491396000038 ], [ -81.96671768899995, 28.841617695000025 ], [ -81.966688686999987, 28.841743189000056 ], [ -81.966682503999948, 28.841783061000058 ], [ -81.966683825999951, 28.841823288000057 ], [ -81.966692614999943, 28.841862780000042 ], [ -81.966708633999986, 28.841900470000041 ], [ -81.966731449999941, 28.841935338000042 ], [ -81.966760448999935, 28.841966446000072 ], [ -81.966794843999935, 28.841992948000041 ], [ -81.966833704999942, 28.842014131000042 ], [ -81.966875983999955, 28.842029419000028 ], [ -81.966920534999986, 28.84203840300006 ], [ -81.966994495999984, 28.842047768000043 ], [ -81.967072455999983, 28.842059869000025 ], [ -81.967149387999939, 28.842076293000048 ], [ -81.967548316999967, 28.842173334000051 ], [ -81.967622221999989, 28.842187593000062 ], [ -81.967697438999949, 28.842194772000028 ], [ -81.967773096999963, 28.842194792000043 ], [ -81.967848318999984, 28.842187650000028 ], [ -81.967922233999957, 28.842173431000049 ], [ -81.967993983999975, 28.84215229800003 ], [ -81.968062737999958, 28.842124494000075 ], [ -81.968127698999979, 28.842090346000077 ], [ -81.968188114999975, 28.842050247000032 ], [ -81.968243284999971, 28.842004662000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968384084999968, 28.841145127000061 ], [ -81.968336587999943, 28.84115018600005 ], [ -81.968277186999956, 28.841153716000065 ], [ -81.968217694999964, 28.841151696000054 ], [ -81.968158779999953, 28.841144148000069 ], [ -81.967614233999939, 28.841048221000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968243284999971, 28.842004662000079 ], [ -81.968288466, 28.841958772000055 ], [ -81.968328320999944, 28.841909203000057 ], [ -81.968362464999984, 28.841856431000053 ], [ -81.968390568999951, 28.84180096800003 ], [ -81.96841236299997, 28.841743346000044 ], [ -81.968427636999934, 28.841684121000071 ], [ -81.968436242999985, 28.841623862000063 ], [ -81.968438098999968, 28.841563151000059 ], [ -81.96843318599997, 28.841502572000024 ], [ -81.968384084999968, 28.841145127000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968384084999968, 28.841145127000061 ], [ -81.968382719999966, 28.841135191000035 ], [ -81.968374997999945, 28.84105360600006 ], [ -81.968374188999974, 28.840971741000033 ], [ -81.968380294999974, 28.840890050000041 ], [ -81.968393284999934, 28.840808984000034 ], [ -81.968413083999963, 28.840728994000074 ], [ -81.968439585999988, 28.840650522000033 ], [ -81.968472641999938, 28.840574002000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968472641999938, 28.840574002000039 ], [ -81.968397057999937, 28.840545811000027 ], [ -81.968343410999978, 28.840528574000075 ], [ -81.968288056999938, 28.84051622000004 ], [ -81.967646244999969, 28.840403158000072 ], [ -81.967550285999948, 28.840388977000032 ], [ -81.967453509999984, 28.84038008300007 ], [ -81.967356292999966, 28.840376513000024 ], [ -81.966968176999956, 28.840372914000056 ], [ -81.966921400999979, 28.840368983000076 ], [ -81.966876042999957, 28.840358172000037 ], [ -81.966833400999974, 28.840340787000059 ], [ -81.966794693999987, 28.840317327000037 ], [ -81.966761027999951, 28.840288462000046 ], [ -81.966733364999982, 28.840255016000071 ], [ -81.966712492999989, 28.840217946000053 ], [ -81.966699011999935, 28.840178311000045 ], [ -81.966665443999943, 28.840048729000046 ], [ -81.966626634999955, 28.839920286000051 ], [ -81.966582633999963, 28.839793149000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967137712999943, 28.837859016000039 ], [ -81.967290101999936, 28.837855908000051 ], [ -81.967442134999942, 28.83784625800007 ], [ -81.967593452999949, 28.837830089000079 ], [ -81.967743695999957, 28.837807439000073 ], [ -81.967892503999963, 28.837778362000051 ], [ -81.968039524999938, 28.837742925000043 ], [ -81.968184406999967, 28.837701217000074 ], [ -81.969091062999951, 28.837418456000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965932425999938, 28.837807585000064 ], [ -81.965967011999965, 28.837795504000042 ], [ -81.966003121999961, 28.837787598000034 ], [ -81.96604010599998, 28.837784010000064 ], [ -81.966077303999953, 28.837784803000034 ], [ -81.966857255999969, 28.837847595000028 ], [ -81.966997339999978, 28.837856080000051 ], [ -81.967137712999943, 28.837859016000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966582633999963, 28.839793149000059 ], [ -81.966537074999962, 28.839676159000078 ], [ -81.966487118999964, 28.839560568000024 ], [ -81.966432821999945, 28.839446505000069 ], [ -81.966374242999962, 28.839334096000073 ], [ -81.965977757999951, 28.838605498000049 ], [ -81.965927602999955, 28.838507170000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965927602999955, 28.838507170000071 ], [ -81.965880961999972, 28.838401777000058 ], [ -81.965840583999977, 28.838294400000052 ], [ -81.965806570999973, 28.83818532500004 ], [ -81.965779021999936, 28.838074844000062 ], [ -81.965774096999951, 28.838034847000074 ], [ -81.965776680999966, 28.83799467800003 ], [ -81.965786703999981, 28.837955425000075 ], [ -81.96580389199994, 28.837918150000064 ], [ -81.965827784999988, 28.837883856000076 ], [ -81.96585773299995, 28.837853470000027 ], [ -81.965892930999985, 28.837827816000072 ], [ -81.965932425999938, 28.837807585000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967078249999986, 28.837098792000063 ], [ -81.967081511999936, 28.837115819000076 ], [ -81.96709532999995, 28.83719799000005 ], [ -81.967105376999939, 28.83728058500003 ], [ -81.967111638999938, 28.837363468000035 ], [ -81.967137712999943, 28.837859016000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967051314999935, 28.836450741000078 ], [ -81.967031856999938, 28.836530114000027 ], [ -81.967020064999986, 28.836610648000033 ], [ -81.967016023999975, 28.836691770000073 ], [ -81.96701976199995, 28.836772904000043 ], [ -81.967031252999959, 28.83685347200003 ], [ -81.967078249999986, 28.837098792000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967069825999943, 28.839126633000035 ], [ -81.967033338999954, 28.839059116000044 ], [ -81.966826526999967, 28.838679074000027 ], [ -81.966811041999961, 28.838644929000054 ], [ -81.966800865999971, 28.838609272000042 ], [ -81.966796182999985, 28.838572739000028 ], [ -81.966797076999967, 28.838535981000064 ], [ -81.966801627999985, 28.838490724000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967221730999938, 28.839418417000047 ], [ -81.967146739999976, 28.839272136000034 ], [ -81.967069825999943, 28.839126633000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966801627999985, 28.838490724000053 ], [ -81.966971427999965, 28.838500641000053 ], [ -81.967141559999959, 28.838503950000074 ], [ -81.967311692999942, 28.838500646000057 ], [ -81.967481493999969, 28.83849073600004 ], [ -81.967650633999938, 28.83847423800006 ], [ -81.967818780999949, 28.838451185000054 ], [ -81.967985609999971, 28.838421621000066 ], [ -81.968150794999985, 28.838385605000042 ], [ -81.968314013999986, 28.838343206000047 ], [ -81.968474948999983, 28.838294507000057 ], [ -81.968507925999972, 28.83828636100003 ], [ -81.968541952999942, 28.83828292100003 ], [ -81.96857616799997, 28.838284273000056 ], [ -81.968609708999963, 28.838290383000071 ], [ -81.968641723999951, 28.838301098000045 ], [ -81.968671406999988, 28.838316144000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965927602999955, 28.838507170000071 ], [ -81.966001633999952, 28.838479806000066 ], [ -81.966054398999972, 28.838462976000073 ], [ -81.966108806999955, 28.838450862000059 ], [ -81.966164314999958, 28.83844358500005 ], [ -81.966220370999963, 28.838441216000035 ], [ -81.966276415999971, 28.838443780000034 ], [ -81.966749660999938, 28.838486361000037 ], [ -81.966801627999985, 28.838490724000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96923751199995, 28.83622540500005 ], [ -81.969434857999943, 28.835532016000059 ], [ -81.969457432999945, 28.835445631000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969457432999945, 28.835445631000027 ], [ -81.969477569999981, 28.835350366000057 ], [ -81.969492922999962, 28.83525441300003 ], [ -81.969503462999967, 28.835157957000035 ], [ -81.969509169999981, 28.835061187000065 ], [ -81.969507759999942, 28.834994541000071 ], [ -81.969499024999948, 28.834928326000067 ], [ -81.969483050999941, 28.834863168000027 ], [ -81.969430458999966, 28.834689857000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967069825999943, 28.839126633000035 ], [ -81.967261482999959, 28.839125316000036 ], [ -81.967452912999988, 28.839116976000071 ], [ -81.967643782999971, 28.839101632000052 ], [ -81.967833761999941, 28.839079307000077 ], [ -81.968022520999966, 28.839050041000064 ], [ -81.96820973399997, 28.839013884000053 ], [ -81.968395075999979, 28.838970900000049 ], [ -81.96842447399996, 28.83896545500005 ], [ -81.968454451999946, 28.838963732000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968454451999946, 28.838963732000025 ], [ -81.968575918999989, 28.838966817000028 ], [ -81.968798022999977, 28.838998955000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968454451999946, 28.838963732000025 ], [ -81.968471119999947, 28.838929087000054 ], [ -81.968485235999935, 28.838893575000043 ], [ -81.968647486999942, 28.838439244000028 ], [ -81.968659654999954, 28.838398900000072 ], [ -81.968667649999986, 28.838357755000061 ], [ -81.968671406999988, 28.838316144000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968671406999988, 28.838316144000032 ], [ -81.96867121799994, 28.838280127000075 ], [ -81.968667851999953, 28.838244230000043 ], [ -81.968666884999948, 28.838196020000055 ], [ -81.968660185999966, 28.838148166000053 ], [ -81.968647829999952, 28.838101193000057 ], [ -81.968629949, 28.838055619000045 ], [ -81.968616009999948, 28.838007247000064 ], [ -81.968595079999943, 28.837960872000053 ], [ -81.968567511999936, 28.837917269000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96758317299998, 28.841548740000064 ], [ -81.967584710999972, 28.841369462000046 ], [ -81.967588789999979, 28.841193099000066 ], [ -81.967592249999939, 28.841153212000052 ], [ -81.967599355999937, 28.84111370200003 ], [ -81.967614233999939, 28.841048221000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966423310999971, 28.835979217000045 ], [ -81.966524109999966, 28.836067241000023 ], [ -81.966588631999969, 28.836139373000037 ], [ -81.96667568099997, 28.836246956000025 ], [ -81.966735717999939, 28.836300234000078 ], [ -81.966800286999955, 28.836349230000053 ], [ -81.966848020999976, 28.836379244000057 ], [ -81.96689904599998, 28.836404714000025 ], [ -81.966952807999974, 28.836425365000025 ], [ -81.967008720999956, 28.836440972000048 ], [ -81.967051314999935, 28.836450741000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970420759999968, 28.834304742000029 ], [ -81.97076951799994, 28.834593093000024 ], [ -81.970805272999939, 28.834626007000054 ], [ -81.970845723999957, 28.834699770000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967526488999965, 28.835489217000031 ], [ -81.967293683999969, 28.835942747000047 ], [ -81.967112652999958, 28.836297671000068 ], [ -81.967078311999956, 28.836373066000078 ], [ -81.967051314999935, 28.836450741000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969457432999945, 28.835445631000027 ], [ -81.970012408999935, 28.835490349000054 ], [ -81.970087184999954, 28.835499040000059 ], [ -81.970160924999959, 28.835512997000023 ], [ -81.970233152999981, 28.835532132000026 ], [ -81.970340041999975, 28.835564635000026 ], [ -81.970401909999964, 28.835581365000053 ], [ -81.970464942999968, 28.835594295000078 ], [ -81.970528836999961, 28.835603363000075 ], [ -81.971545984999977, 28.835716134000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960922487999937, 28.847774006000066 ], [ -81.960972038999955, 28.847821812000063 ], [ -81.961045122999963, 28.847887745000037 ], [ -81.961123058999988, 28.847949221000079 ], [ -81.961205494999945, 28.848005965000027 ], [ -81.962033486999985, 28.848537536000038 ], [ -81.962084148999963, 28.848571475000028 ], [ -81.962132240999949, 28.848605074000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961997785999984, 28.846910040000068 ], [ -81.962102925999943, 28.846995326000069 ], [ -81.962212387999955, 28.84707628600006 ], [ -81.96232594199995, 28.847152752000056 ], [ -81.962503907999974, 28.847267007000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962503907999974, 28.847267007000028 ], [ -81.962980884999979, 28.84757322400003 ], [ -81.962998263999964, 28.847584247000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963317964999987, 28.847745469000074 ], [ -81.963424473999964, 28.847784122000064 ], [ -81.963533477999988, 28.84781694000003 ], [ -81.96364456699996, 28.847843802000057 ], [ -81.963757321999935, 28.847864602000072 ], [ -81.964250533999973, 28.847941739000078 ], [ -81.964338557999952, 28.847948316000043 ], [ -81.964462289999972, 28.847946413000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962998263999964, 28.847584247000043 ], [ -81.963100744999963, 28.847644112000069 ], [ -81.963207464999982, 28.847697929000049 ], [ -81.963317964999987, 28.847745469000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962568501999954, 28.848091339000064 ], [ -81.962998263999964, 28.847584247000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962132240999949, 28.848605074000034 ], [ -81.962160583999946, 28.84857265100004 ], [ -81.962568501999954, 28.848091339000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961606776999986, 28.849071053000046 ], [ -81.961998113999982, 28.848735739000062 ], [ -81.962067555999965, 28.848672300000032 ], [ -81.962132240999949, 28.848605074000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960576271999969, 28.849954020000041 ], [ -81.961098596999989, 28.84950647900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961098596999989, 28.84950647900007 ], [ -81.961606776999986, 28.849071053000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960576271999969, 28.849954020000041 ], [ -81.960724083999935, 28.850048915000059 ], [ -81.960809727999958, 28.850108259000024 ], [ -81.960890192999955, 28.850172977000057 ], [ -81.960965043999977, 28.850242721000029 ], [ -81.961033879999945, 28.850317114000063 ], [ -81.96109632799994, 28.850395754000033 ], [ -81.961152051999989, 28.850478219000024 ], [ -81.961367410999969, 28.850825340000029 ], [ -81.961392094999951, 28.850893176000056 ], [ -81.961409939999953, 28.850962180000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959587591999934, 28.849462866000067 ], [ -81.960008370999958, 28.84963411800004 ], [ -81.960167138999964, 28.849699866000037 ], [ -81.960264302999974, 28.849751844000025 ], [ -81.960368406999976, 28.849815282000066 ], [ -81.960576271999969, 28.849954020000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963390587999982, 28.849233094000056 ], [ -81.96357392799996, 28.849335109000037 ], [ -81.96375530399996, 28.849439812000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962132240999949, 28.848605074000034 ], [ -81.962287630999981, 28.848713642000064 ], [ -81.962334415999976, 28.848743029000047 ], [ -81.962384362999956, 28.84876805600004 ], [ -81.962794239999937, 28.848949684000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962794239999937, 28.848949684000047 ], [ -81.96307890199995, 28.849075825000057 ], [ -81.963187740999956, 28.849126488000024 ], [ -81.963294183999949, 28.84918095200004 ], [ -81.963390587999982, 28.849233094000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961635614999977, 28.849949383000023 ], [ -81.961675185999979, 28.84991027600006 ], [ -81.961716818999946, 28.849872867000045 ], [ -81.962794239999937, 28.848949684000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961805734999984, 28.85066071500006 ], [ -81.961939308999945, 28.850549002000037 ], [ -81.962069482999937, 28.850434218000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962069482999937, 28.850434218000032 ], [ -81.962172477999957, 28.850345927000035 ], [ -81.963317779999954, 28.849364576000028 ], [ -81.963345449999963, 28.849336383000036 ], [ -81.963367206999976, 28.849304424000024 ], [ -81.963382403999958, 28.849269649000064 ], [ -81.963390587999982, 28.849233094000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961404279999954, 28.849689734000037 ], [ -81.961635614999977, 28.849949383000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961635614999977, 28.849949383000023 ], [ -81.961704699999984, 28.850028484000063 ], [ -81.96197516899997, 28.850334015000044 ], [ -81.962021473999982, 28.850384738000059 ], [ -81.962069482999937, 28.850434218000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961457797999969, 28.847343905000059 ], [ -81.961479317999988, 28.847364666000033 ], [ -81.961546569999939, 28.847417818000054 ], [ -81.961605123999959, 28.847462526000072 ], [ -81.961668882999959, 28.847508382000058 ], [ -81.962568501999954, 28.848091339000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962568501999954, 28.848091339000064 ], [ -81.962662972999965, 28.84815198900003 ], [ -81.962733191999973, 28.848194534000072 ], [ -81.962805943999967, 28.848233644000061 ], [ -81.962881008999943, 28.848269199000072 ], [ -81.963040171999978, 28.848339729000031 ], [ -81.963095955999961, 28.848363242000062 ], [ -81.963152754999953, 28.848384791000058 ], [ -81.963721827999962, 28.848589036000078 ], [ -81.96385547899996, 28.848637005000057 ], [ -81.963935368999955, 28.848648049000076 ], [ -81.964038160999962, 28.848653760000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959497903999988, 28.850272634000078 ], [ -81.959483250999938, 28.850018996000074 ], [ -81.959479828999974, 28.849893706000046 ], [ -81.959485933999986, 28.849812728000074 ], [ -81.959499856999969, 28.849711126000045 ], [ -81.959517241999947, 28.849631680000073 ], [ -81.959546777999947, 28.849546890000056 ], [ -81.959587591999934, 28.849462866000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959587591999934, 28.849462866000067 ], [ -81.959615378999956, 28.849413217000063 ], [ -81.959651846999975, 28.849349821000033 ], [ -81.95975255999997, 28.849200115000031 ], [ -81.959955724999986, 28.848890009000058 ], [ -81.959993925999981, 28.848834252000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959993925999981, 28.848834252000074 ], [ -81.960015631999966, 28.848797588000025 ], [ -81.960050364999972, 28.848734953000076 ], [ -81.960102464999977, 28.848637182000061 ], [ -81.960172794999949, 28.848519554000063 ], [ -81.960238778999951, 28.848418732000027 ], [ -81.960312570999974, 28.848322494000058 ], [ -81.960393914999941, 28.84822394400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960393914999941, 28.84822394400004 ], [ -81.960463132999962, 28.848154308000062 ], [ -81.96053582899998, 28.848087476000046 ], [ -81.960611855999957, 28.848023582000053 ], [ -81.960922487999937, 28.847774006000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960922487999937, 28.847774006000066 ], [ -81.961457797999969, 28.847343905000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961457797999969, 28.847343905000059 ], [ -81.961997787999962, 28.846910040000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961997787999962, 28.846910040000068 ], [ -81.962125824999987, 28.84680716500003 ], [ -81.962235563999968, 28.846715347000043 ], [ -81.962341002999949, 28.846619704000034 ], [ -81.962441967999951, 28.846520390000023 ], [ -81.962610967999979, 28.846347244000071 ], [ -81.96262582199995, 28.846331797000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960393914999941, 28.84822394400004 ], [ -81.960554649999949, 28.84835388700003 ], [ -81.960604961999934, 28.848396684000079 ], [ -81.960667419999936, 28.848440248000031 ], [ -81.961508783999989, 28.848980404000031 ], [ -81.961524777999955, 28.848999402000061 ], [ -81.961559296999951, 28.849028100000055 ], [ -81.961606776999986, 28.849071053000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95803663099997, 28.849787456000058 ], [ -81.957806885999958, 28.84978060800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955735949999962, 28.850799856000037 ], [ -81.955529094999974, 28.851588191000076 ], [ -81.955518658999949, 28.851641664000056 ], [ -81.955513427999961, 28.851699723000024 ], [ -81.955513402999941, 28.85175931200007 ], [ -81.955525524999985, 28.851820433000057 ], [ -81.955542856999955, 28.851872386000025 ], [ -81.95556019199995, 28.851919758000065 ], [ -81.955659049999952, 28.852072582000062 ], [ -81.955688532999943, 28.852121485000055 ], [ -81.955716285999983, 28.852153580000049 ], [ -81.955757920999986, 28.852193319000037 ], [ -81.955799560999935, 28.852223891000051 ], [ -81.955848139999944, 28.852255994000075 ], [ -81.955896723999956, 28.852278928000032 ], [ -81.955952250999985, 28.852298809000047 ], [ -81.957100251999975, 28.852655691000052 ], [ -81.95724049599994, 28.852694777000067 ], [ -81.957382672999984, 28.852728007000053 ], [ -81.957526469999948, 28.852755309000031 ], [ -81.957671567999967, 28.852776620000043 ], [ -81.957773661999965, 28.852787369000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95982100699996, 28.846646100000044 ], [ -81.959928112999989, 28.846220226000071 ], [ -81.959941141999934, 28.846185852000076 ], [ -81.959955036999986, 28.846156825000037 ], [ -81.95997131699994, 28.846129137000048 ], [ -81.959993016999988, 28.846106225000028 ], [ -81.960025563999977, 28.846085225000024 ], [ -81.960063531999936, 28.846066138000026 ], [ -81.960103668999977, 28.846050870000056 ], [ -81.960144887999945, 28.846042288000035 ], [ -81.960186103999945, 28.846040391000031 ], [ -81.960598380999954, 28.846054330000072 ], [ -81.960697032999974, 28.846062965000044 ], [ -81.960794634999957, 28.846078261000059 ], [ -81.960890610999968, 28.846100127000057 ], [ -81.960984390999954, 28.846128431000068 ], [ -81.96107541799995, 28.84616300700003 ], [ -81.961163151999983, 28.846203650000064 ], [ -81.961247071999935, 28.846250119000047 ], [ -81.961326681999935, 28.846302136000077 ], [ -81.961401505999959, 28.846359395000036 ], [ -81.961480556999959, 28.846422172000075 ], [ -81.961649701999988, 28.846576921000064 ], [ -81.961847037999974, 28.846752687000048 ], [ -81.961914257999979, 28.846827193000024 ], [ -81.961997785999984, 28.846910040000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959660676999988, 28.847269250000068 ], [ -81.959788655999944, 28.847284568000077 ], [ -81.960182244999942, 28.847328849000064 ], [ -81.96025522399998, 28.847340735000046 ], [ -81.960326764999934, 28.84735812200006 ], [ -81.960396335999974, 28.847380881000049 ], [ -81.960463413999946, 28.84740884200005 ], [ -81.960527500999945, 28.847441797000045 ], [ -81.960588116999986, 28.847479499000031 ], [ -81.960644812999988, 28.847521665000045 ], [ -81.960697162999963, 28.847567985000069 ], [ -81.960922487999937, 28.847774006000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95618576399994, 28.848287858000049 ], [ -81.956254244999968, 28.848290875000032 ], [ -81.956304909999972, 28.848298700000043 ], [ -81.95704909799997, 28.84844479700007 ], [ -81.957125422999979, 28.848461197000063 ], [ -81.957208716999958, 28.848472683000068 ], [ -81.957289411999966, 28.848479584000074 ], [ -81.957955801999958, 28.84850958800007 ], [ -81.958134113999961, 28.848517665000031 ], [ -81.958201041999985, 28.848524018000035 ], [ -81.958264263, 28.848536040000056 ], [ -81.958321525999963, 28.848549809000076 ], [ -81.958374883999966, 28.848567014000025 ], [ -81.958449055999949, 28.848608291000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958449055999949, 28.848608291000062 ], [ -81.958680866999941, 28.848262415000079 ], [ -81.958730357999968, 28.848181069000077 ], [ -81.958773340999983, 28.848100867000028 ], [ -81.958814165999968, 28.847994308000068 ], [ -81.958835011999952, 28.847940073000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958753570999988, 28.849823965000041 ], [ -81.958768801999952, 28.849710332000029 ], [ -81.95878619399997, 28.849614842000051 ], [ -81.958811185999934, 28.849500257000045 ], [ -81.95884485299996, 28.849391403000027 ], [ -81.958882854999956, 28.849291145000052 ], [ -81.958933874999957, 28.849187072000063 ], [ -81.958989235, 28.849077270000066 ], [ -81.959063033999939, 28.848966518000054 ], [ -81.959282261999988, 28.848632353000028 ], [ -81.959398390999979, 28.848447130000068 ], [ -81.959437462999972, 28.848381250000045 ], [ -81.959472203999951, 28.84829531500003 ], [ -81.959504777999939, 28.848207470000034 ], [ -81.95952650199996, 28.84812630600004 ], [ -81.959536068999967, 28.848068630000057 ], [ -81.959542183999986, 28.847963969000034 ], [ -81.959544809999954, 28.847905146000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958213143999956, 28.847244490000037 ], [ -81.958232350999936, 28.84696533500005 ], [ -81.958237599999961, 28.846859910000035 ], [ -81.958234165999954, 28.846768234000024 ], [ -81.958234197999957, 28.846685727000079 ], [ -81.958172909999973, 28.846235425000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957499915999961, 28.847204988000044 ], [ -81.95751271599994, 28.847021385000062 ], [ -81.957514769999989, 28.846959851000065 ], [ -81.95751056499995, 28.846898404000058 ], [ -81.957500135999965, 28.846837532000052 ], [ -81.95731210799994, 28.845988908000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958142957999939, 28.849183455000059 ], [ -81.958097579999958, 28.849170828000069 ], [ -81.958014711999965, 28.849153624000053 ], [ -81.957925610999951, 28.849143280000078 ], [ -81.957764216999976, 28.849140938000062 ], [ -81.957191533999946, 28.849114401000065 ], [ -81.957009323999955, 28.849091424000051 ], [ -81.956717794999975, 28.849035180000044 ], [ -81.956336465999982, 28.848958280000033 ], [ -81.956283293999945, 28.848937162000027 ], [ -81.956242516999964, 28.848919107000029 ], [ -81.956208939999954, 28.848891773000048 ], [ -81.956177715999956, 28.848858531000076 ], [ -81.956159505999949, 28.848829877000071 ], [ -81.95615040499996, 28.848804663000067 ], [ -81.956136105999974, 28.848762259000068 ], [ -81.956132216999947, 28.848724442000048 ], [ -81.956137446999946, 28.84866829300006 ], [ -81.95618576399994, 28.848287858000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956205538999939, 28.847688541000025 ], [ -81.95630185899995, 28.847675966000054 ], [ -81.956363033999935, 28.847671403000049 ], [ -81.956430712999975, 28.847674862000076 ], [ -81.956491882999956, 28.847684049000065 ], [ -81.957012458999941, 28.84778387800003 ], [ -81.957139913999981, 28.847806459000026 ], [ -81.957268326999952, 28.847824351000042 ], [ -81.957397473999947, 28.847837524000056 ], [ -81.95752712999996, 28.847845951000068 ], [ -81.95799741899998, 28.847867871000062 ], [ -81.958184255999981, 28.847881048000033 ], [ -81.958360393999953, 28.847897145000047 ], [ -81.958477528999936, 28.847910933000037 ], [ -81.958615486999975, 28.847926255000061 ], [ -81.95872828399996, 28.847940804000075 ], [ -81.958835011999952, 28.847940073000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956710364999935, 28.847070281000072 ], [ -81.956731684999966, 28.846975104000023 ], [ -81.956742000999952, 28.84692244200005 ], [ -81.956746462999945, 28.846869147000064 ], [ -81.956745032999947, 28.846815722000031 ], [ -81.956737717999943, 28.846762672000068 ], [ -81.956724591999944, 28.846710497000061 ], [ -81.956705777999957, 28.846659689000035 ], [ -81.956361669999978, 28.845887902000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955735949999962, 28.850799856000037 ], [ -81.956490935999966, 28.850950125000054 ], [ -81.956585124999947, 28.850972042000024 ], [ -81.956677088999982, 28.851000353000074 ], [ -81.956772278999949, 28.851033643000051 ], [ -81.957336210999983, 28.851265874000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955877144999988, 28.850181224000039 ], [ -81.956644815999937, 28.850326608000046 ], [ -81.956760243999952, 28.850352419000046 ], [ -81.956873753999957, 28.850384143000042 ], [ -81.956984955999985, 28.850421671000049 ], [ -81.957093468999972, 28.850464874000068 ], [ -81.957477479999966, 28.850618466000071 ], [ -81.957550138999977, 28.850650957000028 ], [ -81.957613036999987, 28.850683445000072 ], [ -81.957664001999945, 28.850715929000046 ], [ -81.957705205999957, 28.850749366000059 ], [ -81.95775182899996, 28.850795217000041 ], [ -81.957796279999968, 28.85084297800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958016094999948, 28.85230755200007 ], [ -81.958087701999943, 28.852261737000049 ], [ -81.95835677599996, 28.852079425000056 ], [ -81.958528200999979, 28.851959155000031 ], [ -81.958664906999957, 28.851868477000039 ], [ -81.958799434999946, 28.851797852000061 ], [ -81.958895986999948, 28.85175395400006 ], [ -81.959012065999957, 28.851707197000053 ], [ -81.959123799999986, 28.851673808000044 ], [ -81.959249635999981, 28.85163755800005 ], [ -81.959928704999982, 28.851467782000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957901192999941, 28.85158786900007 ], [ -81.958027048999952, 28.851499098000033 ], [ -81.958152904999963, 28.851415102000033 ], [ -81.958260314999961, 28.851347334000025 ], [ -81.958367719999956, 28.85128816100007 ], [ -81.95849031299997, 28.851225173000046 ], [ -81.958618325999964, 28.851168869000048 ], [ -81.958737875999986, 28.851117912000063 ], [ -81.958861543999944, 28.851077842000052 ], [ -81.958993886999963, 28.851042549000056 ], [ -81.959307385999978, 28.850962429000049 ], [ -81.959621971, 28.850878488000035 ], [ -81.959669702999975, 28.85086513300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957796279999968, 28.85084297800006 ], [ -81.957846184999937, 28.850818166000067 ], [ -81.957973334999963, 28.850747157000058 ], [ -81.958100266999963, 28.850680351000051 ], [ -81.958217431999969, 28.850628820000054 ], [ -81.958362799999975, 28.850568703000079 ], [ -81.958497317999957, 28.850519087000066 ], [ -81.958645934999936, 28.850472340000067 ], [ -81.958816679999984, 28.850422927000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957789097999978, 28.850054519000025 ], [ -81.957806885999958, 28.84978060800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965740830999948, 28.83437123300007 ], [ -81.965663623999944, 28.834252138000068 ], [ -81.965592877999939, 28.83412594400005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965592877999939, 28.83412594400005 ], [ -81.965631780999956, 28.834107233000054 ], [ -81.965666809999959, 28.834083314000054 ], [ -81.965697077999948, 28.834054797000078 ], [ -81.96572181099998, 28.834022404000052 ], [ -81.965740381999979, 28.833986963000029 ], [ -81.965752319999979, 28.833949372000063 ], [ -81.965757319999966, 28.833910589000027 ], [ -81.965764449999938, 28.833721665000041 ], [ -81.965762043999973, 28.83368039100003 ], [ -81.965751784999952, 28.833640064000065 ], [ -81.965733968999984, 28.833601830000077 ], [ -81.965709101999948, 28.833566781000059 ], [ -81.965677891999974, 28.833535914000038 ], [ -81.965641231999939, 28.833510112000056 ], [ -81.965600162999976, 28.833490109000024 ], [ -81.96555585599998, 28.833476475000055 ], [ -81.965470026999981, 28.833457040000042 ], [ -81.965411299999971, 28.833440675000077 ], [ -81.965354958999967, 28.833418749000032 ], [ -81.965301679999982, 28.83339152800005 ], [ -81.965252102999955, 28.833359338000037 ], [ -81.96520682299996, 28.83332256500006 ], [ -81.965140538999947, 28.833262492000074 ], [ -81.965104642999961, 28.83323269400006 ], [ -81.965065918999983, 28.833205783000039 ], [ -81.964922572999967, 28.833114858000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964564274999987, 28.833846099000027 ], [ -81.965377, 28.834129983000025 ], [ -81.965419353999948, 28.83414143300007 ], [ -81.965463235999948, 28.834146811000039 ], [ -81.965507531999947, 28.834145982000052 ], [ -81.965551114999982, 28.834138968000047 ], [ -81.965592877999939, 28.83412594400005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964348903999962, 28.834258270000078 ], [ -81.964492263999944, 28.833993287000055 ], [ -81.964529486999936, 28.833920155000044 ], [ -81.964564274999987, 28.833846099000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964564274999987, 28.833846099000027 ], [ -81.96460002799995, 28.833762828000033 ], [ -81.964675300999943, 28.833578551000073 ], [ -81.964727789999984, 28.833458928000027 ], [ -81.964786587999981, 28.83334159900005 ], [ -81.964851562999968, 28.833226826000043 ], [ -81.964922572999967, 28.833114858000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964922572999967, 28.833114858000044 ], [ -81.964976166999975, 28.833037757000056 ], [ -81.965324413999952, 28.832554862000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965324413999952, 28.832554862000052 ], [ -81.965543098999945, 28.832251622000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961261829999955, 28.831147857000076 ], [ -81.961225923999962, 28.83088895800006 ], [ -81.961076573999947, 28.830078718000038 ], [ -81.961065428999973, 28.830008342000042 ], [ -81.961058428999934, 28.829937552000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959212577999949, 28.831791702000032 ], [ -81.959577513999989, 28.831687690000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958967468999958, 28.830118445000039 ], [ -81.959424383999988, 28.830394041000034 ], [ -81.959523618999981, 28.830449652000027 ], [ -81.959626893999939, 28.830499229000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959626893999939, 28.830499229000054 ], [ -81.959722459999966, 28.830538335000028 ], [ -81.959820537999974, 28.83057227300003 ], [ -81.95992076999994, 28.830600920000052 ], [ -81.960022786999957, 28.830624170000078 ], [ -81.960126215999935, 28.830641938000042 ], [ -81.960230677999959, 28.830654159000062 ], [ -81.960335787999952, 28.830660788000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962248288999945, 28.83099478500003 ], [ -81.962153800999943, 28.830837935000034 ], [ -81.962021703999937, 28.830576332000078 ], [ -81.961944456999959, 28.830429038000034 ], [ -81.961901469999987, 28.830341287000067 ], [ -81.961861807999981, 28.830242912000074 ], [ -81.961839708999946, 28.830176069000061 ], [ -81.961820414999977, 28.830105422000031 ], [ -81.961803523999947, 28.830025937000073 ], [ -81.96178658499997, 28.829896578000046 ], [ -81.961780866999959, 28.829826602000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959996423999939, 28.852149188000055 ], [ -81.960156209, 28.852296023000065 ], [ -81.960206084999982, 28.852325728000039 ], [ -81.960266046999948, 28.85234428800004 ], [ -81.96031887099997, 28.85234857100005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95982100699996, 28.846646100000044 ], [ -81.959856145999936, 28.846652986000038 ], [ -81.959906903999979, 28.846659877000036 ], [ -81.959965470999975, 28.846665624000025 ], [ -81.960506901999963, 28.846694432000049 ], [ -81.960598007999977, 28.846701334000045 ], [ -81.960668286999976, 28.846712814000057 ], [ -81.960731547999956, 28.846730328000035 ], [ -81.960793562999982, 28.846756422000055 ], [ -81.960851944999945, 28.846788356000047 ], [ -81.960905990999947, 28.846825744000057 ], [ -81.960962378999966, 28.846867601000042 ], [ -81.961398245999987, 28.847274533000075 ], [ -81.961457797999969, 28.847343905000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959497903999988, 28.850272634000078 ], [ -81.95956038099996, 28.850271124000074 ], [ -81.959641352999938, 28.850275908000071 ], [ -81.95969949299996, 28.850279466000075 ], [ -81.959778315999984, 28.850296468000067 ], [ -81.959853654999961, 28.850316286000066 ], [ -81.959930872999962, 28.850342283000032 ], [ -81.960004614999946, 28.850377447000028 ], [ -81.960080959999971, 28.850417959000026 ], [ -81.960165108999945, 28.850470698000038 ], [ -81.96022322999994, 28.85051807900004 ], [ -81.960267469999962, 28.850553235000064 ], [ -81.960305634999941, 28.850593735000075 ], [ -81.960344664, 28.850643404000039 ], [ -81.960379352999951, 28.850699184000064 ], [ -81.960465187999944, 28.850881794000031 ], [ -81.960526750999975, 28.85100251800003 ], [ -81.960566636999943, 28.851080453000066 ], [ -81.960825779999936, 28.851550776000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957806885999958, 28.84978060800006 ], [ -81.957244636999974, 28.849754995000069 ], [ -81.957032005999963, 28.849736755000038 ], [ -81.956911789999936, 28.849722256000064 ], [ -81.956792673999985, 28.849701908000043 ], [ -81.956286299999988, 28.849607436000042 ], [ -81.956232068999952, 28.849604553000063 ], [ -81.956189768999934, 28.849603584000079 ], [ -81.956151800999976, 28.849613122000051 ], [ -81.956113831999971, 28.849628388000042 ], [ -81.956066098999941, 28.849651291000043 ], [ -81.956035717999953, 28.849676110000075 ], [ -81.956016183999964, 28.849699022000038 ], [ -81.955992300999981, 28.849747717000071 ], [ -81.955982526999946, 28.849776362000057 ], [ -81.955967323999971, 28.84981932900007 ], [ -81.955955373999984, 28.849862298000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959928704999982, 28.851467782000043 ], [ -81.959870197999976, 28.851297784000053 ], [ -81.959824683999955, 28.851189861000023 ], [ -81.959765076999986, 28.851059016000079 ], [ -81.959669702999975, 28.85086513300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959669702999975, 28.85086513300007 ], [ -81.959547240999939, 28.850591983000072 ], [ -81.959524481999949, 28.850541363000048 ], [ -81.959512623999956, 28.850467206000076 ], [ -81.959503538999968, 28.850399594000066 ], [ -81.959497903999988, 28.850272634000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957773661999965, 28.852787369000055 ], [ -81.958233708999956, 28.852847247000057 ], [ -81.958274759999938, 28.852852461000055 ], [ -81.958323569999948, 28.852854386000047 ], [ -81.958363704999954, 28.852852488000053 ], [ -81.958402755999941, 28.852844861000051 ], [ -81.958442894999962, 28.852832459000069 ], [ -81.958488461999934, 28.852804780000042 ], [ -81.95873801099998, 28.852622461000067 ], [ -81.958974541999964, 28.852443959000027 ], [ -81.959058082999945, 28.852391462000071 ], [ -81.959134024999969, 28.852354242000047 ], [ -81.959206710999979, 28.852320841000051 ], [ -81.959293498999955, 28.852289355000039 ], [ -81.959384621999959, 28.852261689000045 ], [ -81.95947248799996, 28.852242616000069 ], [ -81.959570113999973, 28.852230231000078 ], [ -81.959822852999935, 28.852206433000049 ], [ -81.959868411999935, 28.852200717000073 ], [ -81.959912886999973, 28.852190225000072 ], [ -81.959951940999986, 28.852174958000035 ], [ -81.959996423999939, 28.852149188000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955877144999988, 28.850181224000039 ], [ -81.955735949999962, 28.850799856000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955955373999984, 28.849862298000062 ], [ -81.955877144999988, 28.850181224000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957773661999965, 28.852787369000055 ], [ -81.957806264999988, 28.85263363200005 ], [ -81.957820391999974, 28.852569655000025 ], [ -81.957837764999965, 28.852525734000039 ], [ -81.957867072999989, 28.852472266000063 ], [ -81.957906144999981, 28.852414026000076 ], [ -81.957946296999978, 28.852367247000075 ], [ -81.958016094999948, 28.85230755200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957476045999954, 28.852011350000055 ], [ -81.957494503999953, 28.851964563000024 ], [ -81.957518384999958, 28.851920643000028 ], [ -81.957540096999935, 28.851876722000043 ], [ -81.957570484999962, 28.851833759000044 ], [ -81.957620400999986, 28.851782207000042 ], [ -81.95769396299994, 28.851729135000028 ], [ -81.957901192999941, 28.85158786900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957336210999983, 28.851265874000035 ], [ -81.957539008999959, 28.851350929000034 ], [ -81.957634442999961, 28.851391067000066 ], [ -81.957706016999964, 28.85142546700007 ], [ -81.957762404999983, 28.851462727000069 ], [ -81.957812283999942, 28.851502851000077 ], [ -81.957901192999941, 28.85158786900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957336210999983, 28.851265874000035 ], [ -81.957360087999973, 28.851227685000026 ], [ -81.957391565999956, 28.851173262000032 ], [ -81.957424128999946, 28.851117886000054 ], [ -81.957461022999951, 28.851076835000072 ], [ -81.957508769999947, 28.85102719200006 ], [ -81.957569529999944, 28.850977554000053 ], [ -81.957673682999939, 28.850916471000062 ], [ -81.957796279999968, 28.85084297800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958816679999984, 28.850422927000068 ], [ -81.959135165999953, 28.850344527000061 ], [ -81.959327167999959, 28.850299702000029 ], [ -81.959432387999982, 28.850279680000028 ], [ -81.959497903999988, 28.850272634000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956031383999971, 28.847082284000066 ], [ -81.955979410999987, 28.846872561000055 ], [ -81.955954713999972, 28.846794630000034 ], [ -81.955922206999958, 28.846720134000066 ], [ -81.955889697999964, 28.846650220000072 ], [ -81.955840124999952, 28.846578499000032 ], [ -81.955792617999975, 28.84651103300007 ], [ -81.955739710999978, 28.84644675900006 ], [ -81.955681675999983, 28.84638601100005 ], [ -81.955279793999978, 28.845983344000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956109363999985, 28.847353897000062 ], [ -81.956031383999971, 28.847082284000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956205538999939, 28.847688541000025 ], [ -81.956109363999985, 28.847353897000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95618576399994, 28.848287858000049 ], [ -81.956219714999975, 28.848025451000069 ], [ -81.956230169999969, 28.847923466000054 ], [ -81.956227599999977, 28.847845542000073 ], [ -81.956222422999986, 28.847774491000052 ], [ -81.956215932999953, 28.847733235000078 ], [ -81.956205538999939, 28.847688541000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959544809999954, 28.847905146000073 ], [ -81.959661078999943, 28.847914349000064 ], [ -81.959878863999961, 28.847938096000064 ], [ -81.959956084999988, 28.847949578000055 ], [ -81.960013061999973, 28.847963624000045 ], [ -81.960076682999954, 28.847985520000066 ], [ -81.960127000999989, 28.848008454000023 ], [ -81.960180786999956, 28.848039792000066 ], [ -81.960225026999979, 28.848074183000051 ], [ -81.960393914999941, 28.84822394400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95892572799994, 28.847284817000059 ], [ -81.958931388999986, 28.847231024000052 ], [ -81.958947069999965, 28.847073653000052 ], [ -81.958967949999987, 28.846933091000039 ], [ -81.959054241999979, 28.84641356800006 ], [ -81.95907823999994, 28.84632020500004 ], [ -81.959116310999946, 28.846242873000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958816679999984, 28.850422927000068 ], [ -81.958799996999971, 28.850370209000062 ], [ -81.958790252999961, 28.850327234000076 ], [ -81.958776186999955, 28.850236509000069 ], [ -81.958760008999946, 28.850004453000054 ], [ -81.958754631999966, 28.849886037000033 ], [ -81.958753570999988, 28.849823965000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958753570999988, 28.849823965000041 ], [ -81.95803663099997, 28.849787456000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959996423999939, 28.852149188000055 ], [ -81.960027649999972, 28.852118585000028 ], [ -81.960052391999966, 28.852086506000035 ], [ -81.960068674999945, 28.852054997000039 ], [ -81.960081705999983, 28.85201432100007 ], [ -81.960089532999973, 28.851969059000055 ], [ -81.960091492999936, 28.851949005000051 ], [ -81.960090199999968, 28.851926086000049 ], [ -81.960073074999968, 28.851877728000034 ], [ -81.959928704999982, 28.851467782000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95803663099997, 28.849787456000058 ], [ -81.958038631999955, 28.849683051000056 ], [ -81.958058211999969, 28.849542107000048 ], [ -81.958081686999947, 28.849422936000053 ], [ -81.95811036799995, 28.849311790000058 ], [ -81.958142957999939, 28.849183455000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958142957999939, 28.849183455000059 ], [ -81.958185951999951, 28.849078043000077 ], [ -81.958230243999935, 28.848982944000056 ], [ -81.958275836999974, 28.848887845000036 ], [ -81.958331844999975, 28.848785874000043 ], [ -81.95838654399995, 28.848701092000056 ], [ -81.958449055999949, 28.848608291000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958835011999952, 28.847940073000075 ], [ -81.958918313999959, 28.847934751000025 ], [ -81.95907363699996, 28.847926394000069 ], [ -81.959333954999977, 28.847908902000029 ], [ -81.959434606999935, 28.847901997000065 ], [ -81.959544809999954, 28.847905146000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958835011999952, 28.847940073000075 ], [ -81.958866005999937, 28.84783285900005 ], [ -81.958914089999951, 28.847350748000053 ], [ -81.95892572799994, 28.847284817000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956031383999971, 28.847082284000066 ], [ -81.956143329999975, 28.847055964000049 ], [ -81.956204507999985, 28.847042233000025 ], [ -81.956278699999984, 28.847033089000035 ], [ -81.956358095999974, 28.847029677000023 ], [ -81.956438790999982, 28.847030849000078 ], [ -81.956507771999952, 28.847034309000037 ], [ -81.956589710999936, 28.847047159000056 ], [ -81.956710364999935, 28.847070281000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956710364999935, 28.847070281000072 ], [ -81.957170177999956, 28.847161115000063 ], [ -81.957263799999964, 28.847177779000049 ], [ -81.957358100999954, 28.847191150000072 ], [ -81.957499915999961, 28.847204988000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957499915999961, 28.847204988000044 ], [ -81.957565443999954, 28.847208788000046 ], [ -81.95803572799997, 28.847230706000062 ], [ -81.958213143999956, 28.847244490000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958213143999956, 28.847244490000037 ], [ -81.958323772999961, 28.847253119000072 ], [ -81.958478868999975, 28.847267491000025 ], [ -81.958637217999978, 28.847281864000024 ], [ -81.958809671999973, 28.847287646000041 ], [ -81.95892572799994, 28.847284817000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95892572799994, 28.847284817000059 ], [ -81.959002302999977, 28.847284331000026 ], [ -81.959108596999954, 28.847280543000068 ], [ -81.95929732899998, 28.847266276000028 ], [ -81.959431824999967, 28.847260587000051 ], [ -81.959531609999942, 28.847258707000037 ], [ -81.959610786999974, 28.847261596000067 ], [ -81.959660676999988, 28.847269250000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959660676999988, 28.847269250000068 ], [ -81.95982100699996, 28.846646100000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956206609999981, 28.851613482000062 ], [ -81.956994143999964, 28.85188553100005 ], [ -81.957138887999974, 28.851931307000029 ], [ -81.957286014999966, 28.851970754000035 ], [ -81.957476045999954, 28.852011350000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957476045999954, 28.852011350000055 ], [ -81.957562812999981, 28.852030475000049 ], [ -81.957628969999973, 28.852047685000059 ], [ -81.957700546999945, 28.852075401000036 ], [ -81.95776344799998, 28.852102159000026 ], [ -81.957811163999963, 28.85212795800004 ], [ -81.957867547999967, 28.852172858000074 ], [ -81.957914172999949, 28.852213935000066 ], [ -81.958016094999948, 28.85230755200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962556508999967, 28.843855959000052 ], [ -81.964427285999989, 28.843663437000032 ], [ -81.964488777999975, 28.84366009300004 ], [ -81.964550317999965, 28.843662694000045 ], [ -81.964639637999937, 28.843668970000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963042675999986, 28.844448482000075 ], [ -81.963838968999937, 28.844366059000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963838968999937, 28.844366059000038 ], [ -81.964436261999936, 28.844304922000049 ], [ -81.964499216999968, 28.844301572000063 ], [ -81.964603091999948, 28.844301183000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962289495999983, 28.845526628000073 ], [ -81.962326259999941, 28.845441403000052 ], [ -81.962366168999949, 28.845358495000028 ], [ -81.962413094999988, 28.845278485000051 ], [ -81.962466769999935, 28.845201837000047 ], [ -81.962526883999942, 28.845128986000077 ], [ -81.962593089999984, 28.845060354000054 ], [ -81.962665009999967, 28.84499633300004 ], [ -81.962742230999936, 28.844937292000054 ], [ -81.962824308999984, 28.844883569000046 ], [ -81.962924538999971, 28.844823019000046 ], [ -81.962962211999979, 28.844796253000027 ], [ -81.962994736999974, 28.844764686000076 ], [ -81.963021331999983, 28.844729072000064 ], [ -81.963041356999952, 28.844690268000079 ], [ -81.963054331999956, 28.844649207000032 ], [ -81.963059944999941, 28.844606873000032 ], [ -81.963058062999949, 28.844564284000057 ], [ -81.963042675999986, 28.844448482000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96262582199995, 28.846331797000062 ], [ -81.962693902999945, 28.846254499000054 ], [ -81.962755571999935, 28.846173136000061 ], [ -81.962810514999944, 28.846088119000058 ], [ -81.962858453999957, 28.845999878000043 ], [ -81.962900136999963, 28.845912815000077 ], [ -81.962939507999977, 28.84582492100003 ], [ -81.962970739999946, 28.845759223000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963512926999954, 28.845247992000054 ], [ -81.963577505999979, 28.845197880000057 ], [ -81.963636586999939, 28.845142762000023 ], [ -81.963689676999934, 28.845083103000036 ], [ -81.963736322999978, 28.845019407000052 ], [ -81.963776134999989, 28.844952210000031 ], [ -81.963808774999961, 28.844882081000037 ], [ -81.963833969999939, 28.844809610000027 ], [ -81.963851504, 28.844735409000066 ], [ -81.963861232999989, 28.844660106000049 ], [ -81.963863071999981, 28.844584333000057 ], [ -81.963857004999966, 28.844508733000055 ], [ -81.963838968999937, 28.844366059000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962970739999946, 28.845759223000073 ], [ -81.963021216999948, 28.845684466000023 ], [ -81.963071676999959, 28.845612859000028 ], [ -81.96312593, 28.845546028000058 ], [ -81.963185605999968, 28.845483972000068 ], [ -81.963244191999934, 28.845433376000074 ], [ -81.963299306999943, 28.845387697000035 ], [ -81.963387180999973, 28.845327559000054 ], [ -81.96344440699994, 28.845288900000071 ], [ -81.963512926999954, 28.845247992000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962970737999967, 28.845759222000027 ], [ -81.962919500999988, 28.84573849700007 ], [ -81.962867252999956, 28.845719827000039 ], [ -81.962289495999983, 28.845526628000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96474761199994, 28.846798937000074 ], [ -81.964521639999987, 28.846791698000061 ], [ -81.964436313999954, 28.846784129000071 ], [ -81.964352016999953, 28.846770247000052 ], [ -81.964269350999984, 28.846750149000059 ], [ -81.964188907999983, 28.846723981000025 ], [ -81.964111258999935, 28.846691929000031 ], [ -81.964036961999966, 28.846654221000051 ], [ -81.96396654299997, 28.846611127000074 ], [ -81.963900506999948, 28.846562953000046 ], [ -81.963839323999935, 28.846510045000059 ], [ -81.963783431999957, 28.84645277900006 ], [ -81.963733228999956, 28.846391563000054 ], [ -81.963658874999965, 28.846298059000048 ], [ -81.963578761999941, 28.846208320000073 ], [ -81.96349313199994, 28.846122619000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96349313199994, 28.846122619000027 ], [ -81.963424696999937, 28.846060498000043 ], [ -81.963353361999964, 28.846000960000026 ], [ -81.963279253999985, 28.845944108000026 ], [ -81.963224499999967, 28.845903852000049 ], [ -81.963144435999936, 28.845849667000039 ], [ -81.963059665999936, 28.845801352000024 ], [ -81.962970737999967, 28.845759222000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962289495999983, 28.845526628000073 ], [ -81.961902988999952, 28.845394659000078 ], [ -81.961854188999951, 28.845375070000046 ], [ -81.96181027199998, 28.845349751000072 ], [ -81.961769350999987, 28.845318675000044 ], [ -81.96173532399996, 28.845281640000053 ], [ -81.961708000999977, 28.845240525000065 ], [ -81.961688, 28.845196264000037 ], [ -81.961675776999982, 28.84514985900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961675776999982, 28.84514985900006 ], [ -81.961671672999955, 28.845107896000059 ], [ -81.961673938, 28.845065825000063 ], [ -81.961682533999976, 28.845024392000028 ], [ -81.961698871999943, 28.844983828000068 ], [ -81.961720576999937, 28.844946591000053 ], [ -81.961745535999967, 28.84491269800003 ], [ -81.961780795999971, 28.844880717000024 ], [ -81.962118214999975, 28.844582869000078 ], [ -81.962179514999946, 28.844529886000032 ], [ -81.962246777999951, 28.844479771000067 ], [ -81.962316209999983, 28.844427746000065 ], [ -81.962369369999976, 28.844389086000035 ], [ -81.962427957999978, 28.844332759000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962427957999978, 28.844332759000054 ], [ -81.962456566999947, 28.844300554000029 ], [ -81.962485214999958, 28.844259691000047 ], [ -81.962511695999979, 28.844214243000067 ], [ -81.962535140999989, 28.844165546000056 ], [ -81.962555988999952, 28.844097369000053 ], [ -81.962563818999968, 28.844039501000054 ], [ -81.962566442999957, 28.843981632000066 ], [ -81.962563858999943, 28.843930065000052 ], [ -81.962556508999967, 28.843855959000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962427957999978, 28.844332759000054 ], [ -81.962478379999936, 28.844365624000034 ], [ -81.962517414999979, 28.844394284000032 ], [ -81.962549943999988, 28.84441950300004 ], [ -81.962578570999938, 28.844436700000074 ], [ -81.962608499999988, 28.844452751000063 ], [ -81.962642334999941, 28.844466512000054 ], [ -81.962680076999959, 28.844473398000048 ], [ -81.962732135999943, 28.844477996000023 ], [ -81.962781593999978, 28.844476864000058 ], [ -81.963042675999986, 28.844448482000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964603091999948, 28.844301183000027 ], [ -81.964624263999951, 28.845172052000066 ], [ -81.964618553999969, 28.845233442000051 ], [ -81.964608559999988, 28.845299115000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964639637999937, 28.843668970000067 ], [ -81.964615254999956, 28.843846700000029 ], [ -81.96460534299996, 28.844023681000067 ], [ -81.96460260799995, 28.844200861000047 ], [ -81.964603091999948, 28.844301183000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964745207999954, 28.842932087000065 ], [ -81.964605222999978, 28.843080918000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962556508999967, 28.843855959000052 ], [ -81.96250784199998, 28.843465372000026 ], [ -81.962506772999973, 28.843423354000038 ], [ -81.962511125999981, 28.843384202000038 ], [ -81.962521984999967, 28.843346962000055 ], [ -81.962542603999964, 28.843314501000066 ], [ -81.962563219999936, 28.843286812000031 ], [ -81.962589259999959, 28.843261036000058 ], [ -81.962617467999962, 28.843236216000037 ], [ -81.962656891999984, 28.843215288000067 ], [ -81.962697562999949, 28.843202203000033 ], [ -81.962740049, 28.843194837000055 ], [ -81.964383403999989, 28.843025546000035 ], [ -81.964429866999978, 28.843024205000063 ], [ -81.964476733999959, 28.843026438000038 ], [ -81.964521847999947, 28.84303867400007 ], [ -81.964560886999948, 28.84305549100003 ], [ -81.964605222999978, 28.843080918000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964605222999978, 28.843080918000055 ], [ -81.964638091999973, 28.843107461000045 ], [ -81.964668447999941, 28.843144902000063 ], [ -81.964686655999969, 28.843183105000037 ], [ -81.964697920999981, 28.843226653000045 ], [ -81.964703109999959, 28.843277076000049 ], [ -81.964697022999985, 28.843317564000074 ], [ -81.96466486099996, 28.843487154000059 ], [ -81.964639637999937, 28.843668970000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963535165999986, 28.831806664000055 ], [ -81.963591279999946, 28.831765576000066 ], [ -81.963770060999934, 28.831588385000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963159198999961, 28.832041729000025 ], [ -81.963292419999959, 28.831972645000064 ], [ -81.963346637999962, 28.831939915000078 ], [ -81.963402349999967, 28.831903917000034 ], [ -81.963535165999986, 28.831806664000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962856976999944, 28.832165189000079 ], [ -81.963087976999986, 28.832078662000072 ], [ -81.963159198999961, 28.832041729000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963535165999986, 28.831806664000055 ], [ -81.963740316999974, 28.831897623000032 ], [ -81.963964888999953, 28.831999542000062 ], [ -81.964126273999966, 28.832072783000058 ], [ -81.964230532999977, 28.832117388000029 ], [ -81.964350524999986, 28.832160354000052 ], [ -81.964559974999986, 28.832233268000039 ], [ -81.964710407999974, 28.832285637000041 ], [ -81.964890608999951, 28.832348369000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963159198999961, 28.832041729000025 ], [ -81.963216526999986, 28.832161906000067 ], [ -81.963232563999952, 28.832185517000028 ], [ -81.963253376999944, 28.83221616000003 ], [ -81.963279156999988, 28.832254113000033 ], [ -81.963308186999939, 28.832296850000034 ], [ -81.963335636999943, 28.832332827000073 ], [ -81.963371996999967, 28.832370522000076 ], [ -81.963403837999977, 28.832397159000038 ], [ -81.963446765999947, 28.832426201000033 ], [ -81.963495618999957, 28.832451787000025 ], [ -81.963538885999981, 28.832471424000062 ], [ -81.963589731999946, 28.832494500000053 ], [ -81.963643175999948, 28.832518754000034 ], [ -81.963714014999937, 28.832550903000026 ], [ -81.963773482999954, 28.832577891000028 ], [ -81.963842505999935, 28.832609217000027 ], [ -81.963912677999986, 28.832640316000038 ], [ -81.963997673999984, 28.832673296000053 ], [ -81.964069162999976, 28.83269824100006 ], [ -81.964149690999989, 28.832726274000038 ], [ -81.964250064999987, 28.832761217000041 ], [ -81.964313361999984, 28.83278325200007 ], [ -81.964402132999965, 28.832814155000051 ], [ -81.964529661999961, 28.83285797800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964529661999961, 28.83285797800005 ], [ -81.964590223999949, 28.832764892000057 ], [ -81.964628302999984, 28.83271209000003 ], [ -81.964726135999967, 28.832576432000053 ], [ -81.964890608999951, 28.832348369000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964369867999949, 28.833103591000054 ], [ -81.964529661999961, 28.83285797800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963340355999946, 28.835231631000056 ], [ -81.963347237999983, 28.835226496000075 ], [ -81.963396575, 28.835180010000045 ], [ -81.963447539999947, 28.835105074000069 ], [ -81.963655255999981, 28.834678226000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96300363499995, 28.83542280000006 ], [ -81.963149380999937, 28.835352495000052 ], [ -81.963230084999964, 28.835303242000066 ], [ -81.963287357999945, 28.835271172000034 ], [ -81.963340355999946, 28.835231631000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962176160999945, 28.834906868000076 ], [ -81.962346730999968, 28.834919338000077 ], [ -81.962446304999958, 28.834929792000025 ], [ -81.962544848999983, 28.83494614500006 ], [ -81.96264191299997, 28.834968321000076 ], [ -81.962737053999945, 28.83499622100004 ], [ -81.962829838999937, 28.835029716000065 ], [ -81.963340355999946, 28.835231631000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961807334999946, 28.834879902000068 ], [ -81.962176160999945, 28.834906868000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96218668299997, 28.834293416000037 ], [ -81.962406297999962, 28.834302758000035 ], [ -81.962528667999948, 28.834314989000063 ], [ -81.962650061999966, 28.834333270000059 ], [ -81.962770094999939, 28.834357539000052 ], [ -81.962888384999985, 28.834387720000052 ], [ -81.963004556999977, 28.834423720000075 ], [ -81.96311824299994, 28.83446542300004 ], [ -81.963655255999981, 28.834678226000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963655255999981, 28.834678226000051 ], [ -81.964061192999964, 28.834839086000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962176160999945, 28.834906868000076 ], [ -81.96218668299997, 28.834293416000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96218668299997, 28.834293416000037 ], [ -81.96219236099995, 28.833962411000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958795370999951, 28.835158173000025 ], [ -81.958809616999986, 28.835118009000041 ], [ -81.958834301999957, 28.835040796000044 ], [ -81.958853983999973, 28.834962478000079 ], [ -81.958900082999946, 28.834750789000054 ], [ -81.95891219799995, 28.834712385000046 ], [ -81.958931230999951, 28.834676220000063 ], [ -81.958956678999982, 28.834643257000039 ], [ -81.958987863999937, 28.834614366000039 ], [ -81.959023960999957, 28.83459031600006 ], [ -81.959064011999942, 28.834571742000037 ], [ -81.959106955999971, 28.834559140000067 ], [ -81.959151652999935, 28.834552841000061 ], [ -81.959196918999965, 28.834553013000061 ], [ -81.959285868999984, 28.834563179000043 ], [ -81.959373489999962, 28.834580072000051 ], [ -81.959459126999946, 28.834603565000066 ], [ -81.95954213999994, 28.834633483000061 ], [ -81.959621906999985, 28.834669603000066 ], [ -81.959697834999986, 28.834711654000046 ], [ -81.959769354999935, 28.834759323000071 ], [ -81.959835930999986, 28.834812251000074 ], [ -81.960231189999945, 28.835154929000055 ], [ -81.960291361999964, 28.835204842000053 ], [ -81.960353973999986, 28.835252370000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960353973999986, 28.835252370000035 ], [ -81.960447004999935, 28.835315687000048 ], [ -81.96054436299994, 28.835373742000058 ], [ -81.960645663999969, 28.835426308000024 ], [ -81.960750508, 28.835473175000061 ], [ -81.96085848599995, 28.835514160000059 ], [ -81.960969168999952, 28.835549103000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960969168999952, 28.835549103000062 ], [ -81.961082848, 28.835578028000043 ], [ -81.961198374999981, 28.835600577000037 ], [ -81.961574101999986, 28.835663026000077 ], [ -81.96165849199997, 28.835679735000042 ], [ -81.961741368999981, 28.835701546000053 ], [ -81.961752571999966, 28.835704871000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961752571999966, 28.835704871000075 ], [ -81.961828837999974, 28.835727503000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961828837999974, 28.835727503000044 ], [ -81.961950111999954, 28.835763491000023 ], [ -81.962028987999986, 28.835784022000041 ], [ -81.96210939599996, 28.835799273000077 ], [ -81.962190875999966, 28.835809158000075 ], [ -81.96238335399994, 28.835822936000056 ], [ -81.962576271999978, 28.835830552000061 ], [ -81.962640712999985, 28.835831033000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962890572999981, 28.835828996000032 ], [ -81.962965136999969, 28.835827151000046 ], [ -81.963032012999975, 28.835820864000027 ], [ -81.963097559999937, 28.835807589000069 ], [ -81.963160835999986, 28.835787519000064 ], [ -81.963220937999949, 28.835760936000042 ], [ -81.96358066099998, 28.83557733300006 ], [ -81.963630891999969, 28.835548437000057 ], [ -81.963677338999958, 28.835514990000036 ], [ -81.963719474999948, 28.835477376000028 ], [ -81.963756815999943, 28.835436022000067 ], [ -81.963788939999972, 28.835391400000049 ], [ -81.963815481999973, 28.835344017000068 ], [ -81.964061192999964, 28.834839086000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964061192999964, 28.834839086000045 ], [ -81.964234713999986, 28.834482503000061 ], [ -81.964264450999963, 28.834423926000056 ], [ -81.964348903999962, 28.834258270000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959985144999962, 28.834108338000078 ], [ -81.959915302999946, 28.833943258000033 ], [ -81.959894984999949, 28.83385690800003 ], [ -81.959884439999939, 28.833763345000079 ], [ -81.959873787999982, 28.833599222000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960749575999955, 28.833570613000063 ], [ -81.960719941999969, 28.834510846000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961290726999948, 28.834781947000067 ], [ -81.961329344999967, 28.834762757000078 ], [ -81.96136400499995, 28.834738403000074 ], [ -81.961393828999974, 28.834709507000071 ], [ -81.961414939999941, 28.83467947400004 ], [ -81.961430569999948, 28.834644337000043 ], [ -81.961439259999963, 28.834603849000075 ], [ -81.961442744999943, 28.834561832000077 ], [ -81.961456785999985, 28.834129436000069 ], [ -81.961478673999977, 28.833593907000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960719941999969, 28.834510846000057 ], [ -81.960719171999983, 28.834558568000034 ], [ -81.960723496999947, 28.834595239000066 ], [ -81.960736495999981, 28.834634968000046 ], [ -81.960754700999985, 28.834670116000041 ], [ -81.960784184999966, 28.834709086000032 ], [ -81.960804998999947, 28.834730483000044 ], [ -81.96083015399995, 28.834748825000077 ], [ -81.960860511999954, 28.834769461000064 ], [ -81.960905618999959, 28.834787809000034 ], [ -81.96097068399996, 28.834800815000051 ], [ -81.961122511999974, 28.834806971000035 ], [ -81.961158950999959, 28.83480621700005 ], [ -81.961196257999973, 28.834804701000053 ], [ -81.961241406999989, 28.834797647000073 ], [ -81.961290726999948, 28.834781947000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961402470999985, 28.834993367000038 ], [ -81.961290726999948, 28.834781947000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96178086599997, 28.829826608000076 ], [ -81.962332898999989, 28.829741830000046 ], [ -81.962372082999934, 28.829737057000045 ], [ -81.962411552999981, 28.829734722000069 ], [ -81.962504234999983, 28.829732116000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959810558999948, 28.827758882000069 ], [ -81.960051784999962, 28.827970658000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959873787999982, 28.833599222000032 ], [ -81.959871409999948, 28.833562564000033 ], [ -81.959864620999952, 28.833509136000032 ], [ -81.959851292999986, 28.833456671000079 ], [ -81.959831582999982, 28.833405789000039 ], [ -81.95976051599996, 28.833250488000033 ], [ -81.95973823199995, 28.833195067000077 ], [ -81.959721406999961, 28.833138174000055 ], [ -81.959710162999954, 28.833080222000035 ], [ -81.959704582999962, 28.833021637000058 ], [ -81.959704705999968, 28.832962847000033 ], [ -81.959710532999964, 28.832904280000037 ], [ -81.959758099999988, 28.832584266000026 ], [ -81.959767122999949, 28.832496138000067 ], [ -81.959768073999953, 28.832407657000033 ], [ -81.95976094699995, 28.832319394000024 ], [ -81.959745784999939, 28.832231921000073 ], [ -81.959722690999968, 28.832145805000039 ], [ -81.959685204999971, 28.832027516000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959577513999989, 28.831687690000024 ], [ -81.959499259999973, 28.831440754000027 ], [ -81.959477749999962, 28.831361705000063 ], [ -81.959462927999937, 28.831281473000047 ], [ -81.95945487399996, 28.831200496000065 ], [ -81.959453631999963, 28.831119217000037 ], [ -81.959459208999988, 28.831038078000063 ], [ -81.959471573999963, 28.830957525000031 ], [ -81.959507587999951, 28.830774227000063 ], [ -81.959524302999966, 28.830708503000039 ], [ -81.959548239999947, 28.830644534000044 ], [ -81.959579168999937, 28.830582935000052 ], [ -81.959626893999939, 28.830499229000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959685204999971, 28.832027516000039 ], [ -81.959577513999989, 28.831687690000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965543098999945, 28.832251622000058 ], [ -81.965639223999972, 28.832118327000046 ], [ -81.965693273999989, 28.832038003000036 ], [ -81.965741592999962, 28.83195489600007 ], [ -81.96578399699996, 28.831869322000045 ], [ -81.965820324999981, 28.831781609000075 ], [ -81.965850436999972, 28.831692088000068 ], [ -81.965874221999968, 28.831601101000047 ], [ -81.965891584999952, 28.831508998000061 ], [ -81.965902460999985, 28.831416125000032 ], [ -81.965906811999957, 28.831322838000062 ], [ -81.965909135999937, 28.831121754000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965909135999937, 28.831121754000037 ], [ -81.965909339999939, 28.831104163000077 ], [ -81.965914387999987, 28.831013995000035 ], [ -81.965927416999989, 28.830924451000044 ], [ -81.965948347999984, 28.830836076000026 ], [ -81.965977052999961, 28.830749408000031 ], [ -81.966013355999962, 28.830664981000041 ], [ -81.966057034999949, 28.83058330800003 ], [ -81.966107824999938, 28.830504888000064 ], [ -81.966165414999978, 28.83043020100007 ], [ -81.966229451999936, 28.830359701000077 ], [ -81.966296830999966, 28.83029119300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966536800999961, 28.829961431000072 ], [ -81.966557076999948, 28.829925690000039 ], [ -81.966640344999973, 28.829782951000027 ], [ -81.966665667999962, 28.82973290800004 ], [ -81.966684555999962, 28.829680706000033 ], [ -81.966696777999971, 28.82962698800003 ], [ -81.966702183999985, 28.829572408000047 ], [ -81.966703049999978, 28.829346343000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966296830999966, 28.83029119300005 ], [ -81.966314132999969, 28.830273600000055 ], [ -81.96637627299998, 28.830205079000052 ], [ -81.966432017999978, 28.830132418000062 ], [ -81.966481014999943, 28.830056076000062 ], [ -81.966536800999961, 28.829961431000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965122294999958, 28.831688335000024 ], [ -81.965129433999948, 28.831714033000026 ], [ -81.965173691999951, 28.831781134000039 ], [ -81.965197707999948, 28.831801400000074 ], [ -81.96522654499995, 28.831809957000075 ], [ -81.965260764999982, 28.831806753000023 ], [ -81.965286477999939, 28.83179541100003 ], [ -81.965305974999978, 28.831782364000048 ], [ -81.965322169999979, 28.831758291000028 ], [ -81.965331077999963, 28.831724186000031 ], [ -81.96532930799998, 28.831685479000043 ], [ -81.965284, 28.83161010300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963409577999983, 28.831014560000028 ], [ -81.963486186999944, 28.831069201000048 ], [ -81.963566556999979, 28.831119477000072 ], [ -81.963650370999972, 28.831165187000067 ], [ -81.963737292999951, 28.831206149000025 ], [ -81.963826977999986, 28.83124219900003 ], [ -81.96391906599996, 28.831273195000051 ], [ -81.964005732999965, 28.831302200000039 ], [ -81.964090289999945, 28.831335684000067 ], [ -81.96417244099996, 28.83137352600005 ], [ -81.964251898999976, 28.831415595000067 ], [ -81.964328380999973, 28.831461742000045 ], [ -81.964394345999949, 28.831500474000052 ], [ -81.964463794999972, 28.831534157000078 ], [ -81.964536227999986, 28.831562549000068 ], [ -81.964863996999952, 28.831676654000034 ], [ -81.964911108999956, 28.831690191000064 ], [ -81.964959741999962, 28.831698574000029 ], [ -81.965009172999942, 28.831701676000023 ], [ -81.965058664999958, 28.831699452000066 ], [ -81.965107480999961, 28.831691936000027 ], [ -81.965122294999958, 28.831688335000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965284, 28.83161010300006 ], [ -81.96528972699997, 28.831606014000045 ], [ -81.96532730499996, 28.831570791000047 ], [ -81.965359144, 28.831531428000062 ], [ -81.965384665999977, 28.831488642000068 ], [ -81.965403398999968, 28.831443217000071 ], [ -81.965415007, 28.83139598200006 ], [ -81.965419271999963, 28.83134780000006 ], [ -81.96543421399997, 28.830055062000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96543421399997, 28.830055062000042 ], [ -81.965434354999957, 28.830042916000025 ], [ -81.96543917799994, 28.829967282000041 ], [ -81.965451858999984, 28.829892356000073 ], [ -81.965472290999969, 28.829818771000078 ], [ -81.965500298999984, 28.829747145000056 ], [ -81.965535651999971, 28.829678084000079 ], [ -81.965578045999962, 28.829612169000029 ], [ -81.965627126999948, 28.829549955000061 ], [ -81.965723638999975, 28.829435050000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965723638999975, 28.829435050000029 ], [ -81.965983187999939, 28.829140149000068 ], [ -81.966056886999979, 28.829050055000039 ], [ -81.966124563999983, 28.828956369000025 ], [ -81.966185996999968, 28.828859403000024 ], [ -81.966240977999973, 28.828759480000031 ], [ -81.966289325999981, 28.828656931000069 ], [ -81.966376724999975, 28.828455323000071 ], [ -81.966409057999954, 28.828373006000049 ], [ -81.966435406999949, 28.828289052000059 ], [ -81.96645566899997, 28.828203796000025 ], [ -81.966469758999949, 28.828117583000051 ], [ -81.966477621999957, 28.828030756000032 ], [ -81.966479227999969, 28.827943665000078 ], [ -81.966476307999983, 28.827777065000078 ], [ -81.966478227999971, 28.827696796000055 ], [ -81.966486790999966, 28.827616864000049 ], [ -81.966501950999941, 28.827537696000036 ], [ -81.966548535999948, 28.827338956000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966548535999948, 28.827338956000062 ], [ -81.966635659999952, 28.826967257000035 ], [ -81.966641168999956, 28.826927708000028 ], [ -81.966639319999956, 28.826887895000027 ], [ -81.966630158999976, 28.826848872000028 ], [ -81.966613928999948, 28.82681167800007 ], [ -81.966591060999974, 28.826777294000067 ], [ -81.966562161999946, 28.826746632000038 ], [ -81.966527996999957, 28.826720508000051 ], [ -81.966489470999988, 28.826699609000059 ], [ -81.966447604999985, 28.826684493000073 ], [ -81.966403507999985, 28.826675559000023 ], [ -81.965512036999939, 28.826561201000061 ], [ -81.965377355999976, 28.826545103000058 ], [ -81.965242342999943, 28.826531320000072 ], [ -81.964792026999987, 28.826489261000063 ], [ -81.964668508999978, 28.826475527000071 ], [ -81.964545710999971, 28.826457468000058 ], [ -81.964423828999941, 28.826435114000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962964027999988, 28.826201468000079 ], [ -81.962935566999988, 28.826232327000071 ], [ -81.962913153999978, 28.826266835000069 ], [ -81.962897378999969, 28.826304085000061 ], [ -81.962764232999973, 28.826718614000072 ], [ -81.962727392999966, 28.826844613000048 ], [ -81.962697360999982, 28.826972007000052 ], [ -81.962566351999953, 28.827602321000029 ], [ -81.962542725999981, 28.827705769000033 ], [ -81.962515016999987, 28.827808429000072 ], [ -81.962507670999969, 28.827834757000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963708160999943, 28.826218692000054 ], [ -81.963634956999954, 28.826197797000077 ], [ -81.963560430999962, 28.82618091300003 ], [ -81.963484864999941, 28.826168100000075 ], [ -81.963208964999978, 28.826129037000044 ], [ -81.963164364999955, 28.826125933000071 ], [ -81.963119777999964, 28.826129172000037 ], [ -81.963076357999967, 28.826138667000066 ], [ -81.963035231999982, 28.826154173000077 ], [ -81.962997460999986, 28.826175289000048 ], [ -81.962964027999988, 28.826201468000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964423828999941, 28.826435114000049 ], [ -81.96430361299997, 28.826408633000028 ], [ -81.964184684999964, 28.826377974000025 ], [ -81.964067230999945, 28.826343183000063 ], [ -81.963951437999981, 28.826304317000051 ], [ -81.963708160999943, 28.826218692000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964447315999962, 28.828681385000039 ], [ -81.964485140999955, 28.828654993000043 ], [ -81.964562747999935, 28.828596679000043 ], [ -81.964635345999966, 28.828533562000075 ], [ -81.964702554999974, 28.828465974000039 ], [ -81.964764016999936, 28.828394269000057 ], [ -81.964819409999961, 28.828318828000079 ], [ -81.964868444, 28.828240047000065 ], [ -81.964910857999939, 28.828158341000062 ], [ -81.964946429999941, 28.828074142000048 ], [ -81.964974970999947, 28.827987891000078 ], [ -81.964996332999988, 28.827900044000046 ], [ -81.965010400999972, 28.827811065000049 ], [ -81.965017102, 28.827721421000035 ], [ -81.965021325999942, 28.82764478200005 ], [ -81.965028863999976, 28.827568339000038 ], [ -81.965078327999947, 28.827157639000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963933829999974, 28.82819439900004 ], [ -81.96411431599995, 28.827984940000078 ], [ -81.964162484999974, 28.827923446000057 ], [ -81.964204138999946, 28.827858367000033 ], [ -81.964238935999958, 28.827790237000045 ], [ -81.96426659399998, 28.827719616000024 ], [ -81.964286884999979, 28.827647081000066 ], [ -81.964299641999958, 28.827573227000073 ], [ -81.964339391999943, 28.827243216000056 ], [ -81.964353758999948, 28.827089963000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964353758999948, 28.827089963000049 ], [ -81.96436, 28.826936620000026 ], [ -81.964361774999986, 28.826812300000029 ], [ -81.96436708899995, 28.826714940000045 ], [ -81.964380221999988, 28.826618154000073 ], [ -81.964401105999968, 28.826522432000047 ], [ -81.964423828999941, 28.826435114000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964353758999948, 28.827089963000049 ], [ -81.965078327999947, 28.827157639000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965812877999952, 28.827244587000052 ], [ -81.966548535999948, 28.827338956000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965078327999947, 28.827157639000063 ], [ -81.965165924999951, 28.827165819000072 ], [ -81.965286904999971, 28.827178170000025 ], [ -81.965407587999948, 28.827192596000032 ], [ -81.965812877999952, 28.827244587000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962507670999969, 28.827834757000062 ], [ -81.962488547999953, 28.827917700000057 ], [ -81.962475256999937, 28.828001522000079 ], [ -81.962467845999981, 28.828085904000034 ], [ -81.962466343999949, 28.828170529000033 ], [ -81.962482063999971, 28.829084113000079 ], [ -81.962485756999968, 28.829222326000036 ], [ -81.962504234999983, 28.829732116000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962504234999983, 28.829732116000059 ], [ -81.96250729999997, 28.829816712000024 ], [ -81.962513451999939, 28.829889648000062 ], [ -81.962526566999941, 28.82996186400004 ], [ -81.962546552999981, 28.830032850000066 ], [ -81.962573264999946, 28.830102100000033 ], [ -81.962606515999937, 28.830169117000025 ], [ -81.96264606799997, 28.830233427000053 ], [ -81.962691638999956, 28.830294570000035 ], [ -81.962742902999935, 28.830352110000035 ], [ -81.96324346199998, 28.830867562000037 ], [ -81.963296008999976, 28.830918994000058 ], [ -81.963351427999953, 28.830968037000048 ], [ -81.963409577999983, 28.831014560000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96178086599997, 28.829826608000076 ], [ -81.961769231999938, 28.829408728000033 ], [ -81.961751560999971, 28.828381207000064 ], [ -81.961749124999983, 28.827844875000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961058428999934, 28.829937552000047 ], [ -81.961055700999964, 28.829874504000031 ], [ -81.96104526299996, 28.829267381000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96104526299996, 28.829267381000079 ], [ -81.961031829999968, 28.828486088000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961031829999968, 28.828486088000034 ], [ -81.961022629999945, 28.827950972000053 ], [ -81.96102306399996, 28.827915418000032 ], [ -81.96102558299998, 28.827879930000051 ], [ -81.961034119999965, 28.827795024000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960462958999983, 28.829272527000057 ], [ -81.96104526299996, 28.829267381000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959842022999965, 28.826430354000024 ], [ -81.959947874999955, 28.826430909000067 ], [ -81.959994110999958, 28.826432830000044 ], [ -81.961671536999972, 28.826563610000051 ], [ -81.961709089999943, 28.826565425000069 ], [ -81.961746694999988, 28.826565026000026 ], [ -81.961988546999976, 28.826555322000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961892681999984, 28.827244026000074 ], [ -81.961949090999951, 28.827037529000052 ], [ -81.961972826999954, 28.826905467000074 ], [ -81.961987490999945, 28.826761658000066 ], [ -81.961988546999976, 28.826555322000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961988546999976, 28.826555322000047 ], [ -81.961957994999977, 28.826263135000033 ], [ -81.96191984099994, 28.825915370000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961749124999983, 28.827844875000039 ], [ -81.961757104999947, 28.827736161000075 ], [ -81.961783191999984, 28.82760855500004 ], [ -81.96181747299994, 28.827492102000065 ], [ -81.96186206699997, 28.827345007000076 ], [ -81.961892681999984, 28.827244026000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961889541999938, 28.825277462000031 ], [ -81.961879412999963, 28.825099646000069 ], [ -81.96187062599995, 28.825048222000078 ], [ -81.961826723999934, 28.824917112000037 ], [ -81.961760962999961, 28.824801888000025 ], [ -81.961701450999954, 28.824716878000061 ], [ -81.961640131999957, 28.824669795000034 ], [ -81.961555618999967, 28.824637969000037 ], [ -81.961439058999986, 28.824620871000036 ], [ -81.961107666999965, 28.824574547000054 ], [ -81.96076112999998, 28.824526107000054 ], [ -81.960496387999967, 28.824489099000061 ], [ -81.960236785999939, 28.824452809000036 ], [ -81.960114945999976, 28.824441701000069 ], [ -81.960046258999967, 28.824453147000042 ], [ -81.959984670999972, 28.824478332000069 ], [ -81.95995192099997, 28.824499338000066 ], [ -81.959908138999936, 28.824540425000066 ], [ -81.959883515999934, 28.824575423000056 ], [ -81.959861695999962, 28.824626583000054 ], [ -81.959853985999985, 28.824668122000048 ], [ -81.959853041999963, 28.824800015000051 ], [ -81.959850676999963, 28.825149919000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959850676999963, 28.825149919000069 ], [ -81.959956527999964, 28.825150474000054 ], [ -81.960002762999977, 28.825152394000042 ], [ -81.961659340999972, 28.825281551000046 ], [ -81.961695433999978, 28.82528333700003 ], [ -81.96173158299996, 28.825283076000062 ], [ -81.961889541999938, 28.825277462000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96191984099994, 28.825915370000075 ], [ -81.961902601999952, 28.825562398000045 ], [ -81.961891439999988, 28.825318870000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961891439999988, 28.825318870000046 ], [ -81.961889541999938, 28.825277462000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962192194999943, 28.825309386000072 ], [ -81.961891439999988, 28.825318870000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037150651, 28.918294064000065 ], [ -82.037143472999958, 28.917941453000026 ], [ -82.03713653799997, 28.917625316000056 ], [ -82.037131879999947, 28.917319185000053 ], [ -82.037117001999945, 28.916462585000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037496261999934, 28.926681167000027 ], [ -82.037499071999946, 28.926579111000024 ], [ -82.037492168999961, 28.926353015000075 ], [ -82.037471565999965, 28.925982860000033 ], [ -82.037451620999946, 28.925701792000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03800298799996, 28.922161230000029 ], [ -82.03737728699997, 28.92217553200004 ], [ -82.037289950999934, 28.922189849000063 ], [ -82.037240963999977, 28.922224717000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969178872999976, 28.918132719000027 ], [ -81.969123417999981, 28.918146680000063 ], [ -81.96903326499995, 28.918163140000047 ], [ -81.968941782999934, 28.918172321000043 ], [ -81.968849730999978, 28.918174143000044 ], [ -81.968757871999969, 28.918168594000065 ], [ -81.968678743999988, 28.918205301000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968678743999988, 28.918205301000057 ], [ -81.968803570999967, 28.918231389000027 ], [ -81.968870323999965, 28.918238824000071 ], [ -81.968935492999947, 28.918253562000075 ], [ -81.968998047999946, 28.918275369000071 ], [ -81.969057002999989, 28.918303904000027 ], [ -81.969111428999952, 28.918338713000026 ], [ -81.969115055999964, 28.918341377000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01123494999996, 28.85651811200006 ], [ -82.011252223999975, 28.856498671000054 ], [ -82.011331788999939, 28.856392882000023 ], [ -82.011392526999941, 28.856304830000056 ], [ -82.011486375999937, 28.856146163000062 ], [ -82.01196975199997, 28.855155167000078 ], [ -82.012042889999975, 28.855000979000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978046555999981, 28.847865118000072 ], [ -81.978058158999943, 28.847862769000074 ], [ -81.978239884999937, 28.847818627000038 ], [ -81.978419280999958, 28.847767630000078 ], [ -81.978596015999983, 28.847709873000042 ], [ -81.978769756999952, 28.847645466000074 ], [ -81.978940184999942, 28.847574524000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985846362999951, 28.846515516000068 ], [ -81.985949458999983, 28.846574940000039 ], [ -81.986081713999965, 28.846658618000049 ], [ -81.986209717999941, 28.846747276000031 ], [ -81.986333226999989, 28.846840744000076 ], [ -81.986720632999948, 28.847147054000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000760956999954, 28.847334631000024 ], [ -82.000803402999964, 28.847323392000078 ], [ -82.000995591999981, 28.847279492000041 ], [ -82.001189864999958, 28.847242774000051 ], [ -82.00137588399997, 28.847214965000035 ], [ -82.001502161999952, 28.847202956000046 ], [ -82.001675429999977, 28.847197019000077 ], [ -82.001796708999962, 28.847200064000049 ], [ -82.00183007399994, 28.84720253200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109504981999976, 28.664165614000069 ], [ -82.109505766999973, 28.664890194000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110540627999967, 28.664896429000066 ], [ -82.109505766999973, 28.664890194000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108615028999964, 28.66415905100007 ], [ -82.108611400999962, 28.664890705000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108611400999962, 28.664890705000062 ], [ -82.107949619999943, 28.664891234000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109504981999976, 28.664165614000069 ], [ -82.109443082999974, 28.664165480000065 ], [ -82.108673765999981, 28.664159907000055 ], [ -82.108615028999964, 28.66415905100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107920345999958, 28.663367117000064 ], [ -82.107921157999954, 28.664152021000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108615028999964, 28.66415905100007 ], [ -82.108155574999955, 28.664152350000052 ], [ -82.107921157999954, 28.664152021000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107920345999958, 28.663367117000064 ], [ -82.107510053999988, 28.663362785000061 ], [ -82.106880398999976, 28.663355313000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96262582199995, 28.846331797000062 ], [ -81.962742592999973, 28.846409433000076 ], [ -81.963066628999968, 28.846624869000038 ], [ -81.963432272999967, 28.846867968000026 ], [ -81.963756973999978, 28.847078486000044 ], [ -81.963867584999946, 28.847138677000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957748211999956, 28.845706003000032 ], [ -81.957941158999972, 28.845767286000068 ], [ -81.958185923999963, 28.845843779000063 ], [ -81.958256646999985, 28.845861220000074 ], [ -81.958307564999984, 28.845871490000036 ], [ -81.958364638999967, 28.845880797000063 ], [ -81.958440634999988, 28.84588966900003 ], [ -81.958502572999976, 28.845893982000064 ], [ -81.958557674999952, 28.845895642000073 ], [ -81.958653906999984, 28.845893652000029 ], [ -81.958716331999938, 28.845889021000062 ], [ -81.958778740999946, 28.845881729000041 ], [ -81.958853619999957, 28.845869393000044 ], [ -81.958916914999975, 28.845855824000068 ], [ -81.95898335399994, 28.845838522000065 ], [ -81.95920590299994, 28.845777856000041 ], [ -81.959433555999965, 28.845715797000025 ], [ -81.959551882999961, 28.845684216000052 ], [ -81.95963468399998, 28.845665226000051 ], [ -81.959762194999939, 28.845641828000055 ], [ -81.959853391999957, 28.845629316000043 ], [ -81.959965841999974, 28.845618621000028 ], [ -81.960065687999986, 28.845613441000069 ], [ -81.960171404999983, 28.845612341000049 ], [ -81.960293526999976, 28.845616621000033 ], [ -81.96044369699996, 28.84562463900005 ], [ -81.96072406899998, 28.84563961200007 ], [ -81.960900686999935, 28.845649319000074 ], [ -81.961015971999984, 28.845659270000056 ], [ -81.961129267999979, 28.845673440000041 ], [ -81.961229247999938, 28.845689622000066 ], [ -81.961341093999977, 28.84571190500003 ], [ -81.961434819999965, 28.845734071000038 ], [ -81.961557244999938, 28.845767989000024 ], [ -81.96166124299998, 28.845801400000028 ], [ -81.961779199999967, 28.845844672000055 ], [ -81.961870164999937, 28.845879891000038 ], [ -81.961987282999985, 28.845933400000035 ], [ -81.962076639999964, 28.845976971000027 ], [ -81.962159921999955, 28.846022831000028 ], [ -81.962230188999968, 28.846064869000031 ], [ -81.962391541999978, 28.846169577000069 ], [ -81.96262582199995, 28.846331797000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953537748999963, 28.847881431000076 ], [ -81.953553721999981, 28.847874110000078 ], [ -81.953588169999989, 28.847803377000048 ], [ -81.953615258999946, 28.847743653000066 ], [ -81.953732231999936, 28.847485759000051 ], [ -81.953767716999948, 28.847409688000027 ], [ -81.953799265999976, 28.847351784000068 ], [ -81.95384450499995, 28.847281137000039 ], [ -81.953906649999965, 28.84720023400007 ], [ -81.953961034999963, 28.847140280000076 ], [ -81.954115646999981, 28.846994779000056 ], [ -81.954416844999969, 28.846715266000047 ], [ -81.954770013999962, 28.846390007000025 ], [ -81.955279793999978, 28.845983344000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961255792999964, 28.860253615000033 ], [ -81.961127978999968, 28.860311803000059 ], [ -81.961090037999952, 28.860324840000033 ], [ -81.961039330999938, 28.860345682000059 ], [ -81.960972918999971, 28.860370117000059 ], [ -81.96090395899995, 28.860392231000048 ], [ -81.960850218999951, 28.860407270000053 ], [ -81.960784249999961, 28.860423208000043 ], [ -81.960734539999976, 28.860433436000051 ], [ -81.960672109999962, 28.86044417100004 ], [ -81.960615358999974, 28.860451933000036 ], [ -81.960535136999965, 28.860459727000034 ], [ -81.960448879999944, 28.860468109000067 ], [ -81.960372891999953, 28.860478817000057 ], [ -81.960299193999958, 28.860492241000031 ], [ -81.960141669999985, 28.860527117000061 ], [ -81.959957496999948, 28.860573560000034 ], [ -81.959757648999982, 28.860631027000068 ], [ -81.959654962999934, 28.860663505000048 ], [ -81.959520882999982, 28.860709022000037 ], [ -81.959325772999989, 28.860781755000062 ], [ -81.959216349999963, 28.860826046000057 ], [ -81.959107039999935, 28.860872897000036 ], [ -81.958942198999978, 28.860948669000038 ], [ -81.958840274999943, 28.860998728000027 ], [ -81.958751596999946, 28.861044359000061 ], [ -81.958580981999944, 28.861137844000041 ], [ -81.958389194999938, 28.861252438000065 ], [ -81.958309597999971, 28.861303154000041 ], [ -81.958138448999989, 28.861418938000043 ], [ -81.958024290999958, 28.861501626000063 ], [ -81.95788371499998, 28.861608984000043 ], [ -81.95778168399994, 28.861682510000037 ], [ -81.957688379999979, 28.861744446000046 ], [ -81.957593697999982, 28.861802555000054 ], [ -81.957515007999973, 28.861847471000033 ], [ -81.957402965999961, 28.861906494000038 ], [ -81.957323859999974, 28.861944883000035 ], [ -81.957201828999985, 28.861999098000069 ], [ -81.957122952999953, 28.862031071000047 ], [ -81.957004630999961, 28.862074742000061 ], [ -81.956902142999979, 28.862108039000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961255883999968, 28.860006285000054 ], [ -81.961286359409954, 28.859974585070347 ], [ -81.961320878264246, 28.859947343835888 ], [ -81.961358793803356, 28.859925071699692 ], [ -81.961399395626088, 28.8599081859617 ], [ -81.961441922999938, 28.859897003000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961432311999943, 28.860371188000045 ], [ -81.961391733610554, 28.860356760850404 ], [ -81.961353231720466, 28.860337464405365 ], [ -81.96131738802346, 28.860313590199258 ], [ -81.961284744052875, 28.860285498928075 ], [ -81.961255792999964, 28.860253615000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961508056999946, 28.860374369000056 ], [ -81.961432311999943, 28.860371188000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961686834999966, 28.860315286000059 ], [ -81.961686715999974, 28.860315378000053 ], [ -81.961654859419824, 28.860336689184695 ], [ -81.961620418687687, 28.86035350715898 ], [ -81.961584023692183, 28.860365524337965 ], [ -81.961546340063549, 28.860372520938743 ], [ -81.961508056999946, 28.860374369000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961780370999975, 28.860160658000041 ], [ -81.961773101111135, 28.860194549849624 ], [ -81.961760654720905, 28.860226900987502 ], [ -81.961743333999948, 28.860256926000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961620994999976, 28.859913333000065 ], [ -81.96165724097753, 28.859929298682616 ], [ -81.961690335280679, 28.859951057382197 ], [ -81.961719360356923, 28.859978005830346 ], [ -81.961743511474651, 28.860009396870794 ], [ -81.961762119034688, 28.860044360174665 ], [ -81.96177466713516, 28.860081926370682 ], [ -81.961780807875058, 28.860121053921354 ], [ -81.961780370999975, 28.860160658000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961255792999964, 28.860253615000033 ], [ -81.961239505883327, 28.8602141070856 ], [ -81.961229577911666, 28.860172542908121 ], [ -81.961226251920039, 28.86012993911427 ], [ -81.961229609261153, 28.860087337779412 ], [ -81.961239567815497, 28.860045780918771 ], [ -81.961255883999968, 28.860006285000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961541419999946, 28.859893711000041 ], [ -81.961581873344315, 28.85990082173684 ], [ -81.961620994999976, 28.859913333000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990538925999942, 28.859792421000066 ], [ -81.990549363999946, 28.859517397000047 ], [ -81.99057023599994, 28.859470131000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99166861599997, 28.860160531000076 ], [ -81.991796639999961, 28.85988818800007 ], [ -81.991800979999937, 28.859872910000036 ], [ -81.991800979999937, 28.859857630000079 ], [ -81.991795775999947, 28.859827835000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990715191999982, 28.863093344000049 ], [ -81.990696521999951, 28.862826417000065 ], [ -81.990688355999964, 28.862746210000068 ], [ -81.990668116999984, 28.862629130000073 ], [ -81.990635212999962, 28.862463425000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994854170999986, 28.860961258000032 ], [ -81.994927512999936, 28.860699989000068 ], [ -81.994963313999961, 28.860648423000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996670175999952, 28.860587358000032 ], [ -81.996729044999938, 28.860556663000068 ], [ -81.996802331999959, 28.860474809000038 ], [ -81.996845161999943, 28.860424365000029 ], [ -81.996971749999943, 28.860279693000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996143604999986, 28.86130412600005 ], [ -81.996272483999974, 28.861076661000027 ], [ -81.99628159699995, 28.861031397000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003719333999982, 28.840276562000042 ], [ -82.004252104999978, 28.840288964000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010087173999977, 28.953919407000058 ], [ -82.010073354999975, 28.954204592000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032354973999986, 28.817939783000043 ], [ -82.032342152999945, 28.818636827000034 ], [ -82.032340493999982, 28.819456613000057 ], [ -82.032373059999941, 28.819688906000067 ], [ -82.032361648999938, 28.819870709000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104393568999967, 28.664889075000076 ], [ -82.104353964999973, 28.664889042000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.097808100999941, 28.758832550000079 ], [ -82.099157068999943, 28.757299035000074 ], [ -82.100115940999956, 28.756181127000048 ], [ -82.100128077999955, 28.756166955000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099798083999985, 28.756147799000075 ], [ -82.099220615999968, 28.756823455000074 ], [ -82.098548554999979, 28.75762869600004 ], [ -82.098142545999963, 28.758113671000046 ], [ -82.09763286499998, 28.75871455500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021922787999983, 28.906325846000072 ], [ -82.021867919999977, 28.906346993000057 ], [ -82.021824512999956, 28.906363043000056 ], [ -82.021788050999987, 28.906369161000043 ], [ -82.021742037999957, 28.906371460000059 ], [ -82.02075277299997, 28.906357178000064 ], [ -82.020473961999983, 28.906353753000076 ], [ -82.020413188999953, 28.906353762000037 ], [ -82.020353499999942, 28.906349951000038 ], [ -82.020291638999936, 28.906341366000049 ], [ -82.020205901999987, 28.906323235000059 ], [ -82.020136441999966, 28.906301282000072 ], [ -82.020029646999944, 28.906261 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022142776999942, 28.907841247000079 ], [ -82.021301554, 28.907828938000023 ], [ -82.020588239999938, 28.907820758000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023183904999939, 28.905096335000053 ], [ -82.022989251999945, 28.905120073000035 ], [ -82.022716737999986, 28.905121023000049 ], [ -82.022605057999954, 28.905132257000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022586070999978, 28.905735193000055 ], [ -82.02228912299995, 28.905734600000073 ], [ -82.021996109999975, 28.905729874000031 ], [ -82.021890226999972, 28.905723486000056 ], [ -82.021824024999944, 28.905714902000057 ], [ -82.021793937999973, 28.905708956000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021084712999937, 28.905580550000025 ], [ -82.021095794999951, 28.905520211000066 ], [ -82.021097019999957, 28.905493473000035 ], [ -82.021101992999945, 28.904505614000072 ], [ -82.021096544999978, 28.904395797000063 ], [ -82.02110466299996, 28.904290752000065 ], [ -82.02114533699995, 28.904183315000068 ], [ -82.021221282999988, 28.904087810000078 ], [ -82.02131351099996, 28.904009013000064 ], [ -82.021408453999982, 28.903949314000045 ], [ -82.021497977999957, 28.903920651000078 ], [ -82.021633625999982, 28.903896757000041 ], [ -82.021752998999943, 28.903896738000071 ], [ -82.021975468999983, 28.903901476000044 ], [ -82.022159955999939, 28.903901446000077 ], [ -82.02232143599997, 28.903908204000061 ], [ -82.02236972999998, 28.903918223000062 ], [ -82.022414767999976, 28.903930153000033 ], [ -82.022462521999955, 28.903945902000032 ], [ -82.022499540999945, 28.903962389000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022499540999945, 28.903962389000071 ], [ -82.022568108999963, 28.903917707000062 ], [ -82.022585685999957, 28.903910548000056 ], [ -82.022608040999955, 28.90390547800007 ], [ -82.022636689999956, 28.903906719000076 ], [ -82.022661869999979, 28.90391310800004 ], [ -82.02268064499998, 28.903923424000027 ], [ -82.02269660099995, 28.90393602100005 ], [ -82.022712122999963, 28.903953977000072 ], [ -82.022720918999937, 28.903972686000031 ], [ -82.022725695999952, 28.903994559000068 ], [ -82.02272613699995, 28.904013938000048 ], [ -82.022720279999987, 28.904036577000056 ], [ -82.022712253999941, 28.904055194000023 ], [ -82.022693157999981, 28.904076212000064 ], [ -82.022657780999964, 28.904107319000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022893268999951, 28.906181744000037 ], [ -82.022955281999941, 28.906123278000052 ], [ -82.022983834999934, 28.906103053000038 ], [ -82.023008819999973, 28.90609115500007 ], [ -82.023039752999978, 28.906087586000069 ], [ -82.023075444999961, 28.906089966000025 ], [ -82.023108756999989, 28.906093535000025 ], [ -82.023126601999934, 28.90610186300006 ], [ -82.023148017999972, 28.90612089900003 ], [ -82.023158725999963, 28.906143503000067 ], [ -82.023165863999964, 28.906169678000026 ], [ -82.023168243999976, 28.90618990300004 ], [ -82.023164674999975, 28.906207749000032 ], [ -82.023158725999963, 28.906225595000024 ], [ -82.023150397999984, 28.906242251000037 ], [ -82.023132789999977, 28.90625605200006 ], [ -82.023112481999988, 28.906267804000038 ], [ -82.023096316999954, 28.906278989000043 ], [ -82.023001477999969, 28.906322223000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020588239999938, 28.907820758000071 ], [ -82.020588419999967, 28.907851582000035 ], [ -82.020587212999942, 28.908334017000072 ], [ -82.020610452999961, 28.908405083000048 ], [ -82.020627604999959, 28.908437144000061 ], [ -82.020651051999948, 28.908465788000058 ], [ -82.020692733999965, 28.908503598000038 ], [ -82.02074939299996, 28.908534933000055 ], [ -82.020798229999968, 28.908545981000032 ], [ -82.020849239999961, 28.908550197000068 ], [ -82.021426600999973, 28.908553927000071 ], [ -82.021582878999936, 28.908553902000051 ], [ -82.021721790999948, 28.90854242000006 ], [ -82.021843984999975, 28.908525189000045 ], [ -82.021957282999949, 28.908504544000039 ], [ -82.022029989999965, 28.908473614000059 ], [ -82.022066663999965, 28.908448375000035 ], [ -82.022097912999982, 28.908413992000078 ], [ -82.022118742999965, 28.908383049000065 ], [ -82.022134363999953, 28.908349814000076 ], [ -82.022140867999951, 28.908314290000078 ], [ -82.022147157999939, 28.908278788000075 ], [ -82.022142776999942, 28.907841247000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020590126999934, 28.907087689000036 ], [ -82.020541291999962, 28.907087035000075 ], [ -82.020466410999973, 28.907091057000059 ], [ -82.020381751999935, 28.907105925000053 ], [ -82.020297119999952, 28.907130617000064 ], [ -82.02023786899997, 28.907152972000063 ], [ -82.020169455999962, 28.907185565000077 ], [ -82.020088757999986, 28.907226291000029 ], [ -82.01992598399994, 28.90729125200005 ], [ -82.019765375999953, 28.907339022000031 ], [ -82.01973793999997, 28.907343791000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018928141999936, 28.90740558300007 ], [ -82.018928117999963, 28.907412195000063 ], [ -82.018930994999948, 28.908314611000037 ], [ -82.018939142999955, 28.908362356000055 ], [ -82.018960857999957, 28.908417263000047 ], [ -82.018987995999964, 28.908453069000075 ], [ -82.019023272999959, 28.908484099000077 ], [ -82.019077541999934, 28.908517514000039 ], [ -82.019126382999957, 28.908538994000025 ], [ -82.019177934999959, 28.908548536000069 ], [ -82.019519791999983, 28.908546099000034 ], [ -82.019568625999966, 28.908531768000046 ], [ -82.01964187699997, 28.908503109000037 ], [ -82.019709692999982, 28.908443416000068 ], [ -82.019744953999975, 28.908388502000037 ], [ -82.01975579499998, 28.908321655000066 ], [ -82.019755697999983, 28.907813150000038 ], [ -82.019756724999979, 28.907441817000063 ], [ -82.01973793999997, 28.907343791000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017839185999946, 28.906598132000056 ], [ -82.017847515999961, 28.906675513000039 ], [ -82.017846610999982, 28.906700030000025 ], [ -82.017843654999979, 28.906731950000051 ], [ -82.017845140999952, 28.906764521000071 ], [ -82.017855131999966, 28.906789149000076 ], [ -82.017865136999944, 28.906806861000064 ], [ -82.017882908, 28.906824448000066 ], [ -82.017911781999942, 28.906835518000037 ], [ -82.017948057999945, 28.906839422000076 ], [ -82.017978411999934, 28.906836160000069 ], [ -82.018005768999956, 28.906824844000027 ], [ -82.018026603999942, 28.906812044000048 ], [ -82.018035065999982, 28.906796765000024 ], [ -82.018042068999989, 28.906778174000067 ], [ -82.018044285999963, 28.90675146600006 ], [ -82.018041782999944, 28.906727053000054 ], [ -82.01803743499994, 28.906686947000026 ], [ -82.018039822999981, 28.906599855000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020029646999944, 28.906261 ], [ -82.020006212999988, 28.90630225700005 ], [ -82.019947624999986, 28.906376750000049 ], [ -82.019893631999935, 28.906427744000041 ], [ -82.019819843999983, 28.906483141000024 ], [ -82.019717842999967, 28.906544273000065 ], [ -82.019609326999955, 28.906590125000037 ], [ -82.019502977999935, 28.906614969000032 ], [ -82.019340195999973, 28.906636001000038 ], [ -82.019155706999982, 28.906651307000061 ], [ -82.01895641699997, 28.906656308000038 ], [ -82.018927100999974, 28.906655805000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022144815, 28.907103347000032 ], [ -82.022133849999989, 28.906945697000026 ], [ -82.022112108999977, 28.906769992000079 ], [ -82.022077354999965, 28.906643946000031 ], [ -82.022047679999957, 28.906558578000045 ], [ -82.022023358999945, 28.90649899400006 ], [ -82.02199382799995, 28.906437883000024 ], [ -82.021922787999983, 28.906325846000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020590126999934, 28.907087689000036 ], [ -82.020588239999938, 28.907820758000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022142776999942, 28.907841247000079 ], [ -82.022142721999955, 28.907835697000053 ], [ -82.022150474999989, 28.907184719000043 ], [ -82.022144815, 28.907103347000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022144815, 28.907103347000032 ], [ -82.022097498999983, 28.907108332000064 ], [ -82.022032814999989, 28.907108059000052 ], [ -82.021482190999961, 28.907096205000073 ], [ -82.020765926999957, 28.907090587000027 ], [ -82.020625940999935, 28.90708816800003 ], [ -82.020590126999934, 28.907087689000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01973793999997, 28.907343791000073 ], [ -82.019600421999939, 28.907367694000072 ], [ -82.019370354999978, 28.907394466000028 ], [ -82.019236601999978, 28.907402676000061 ], [ -82.019113967999942, 28.907404603000032 ], [ -82.018928141999936, 28.90740558300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018927100999974, 28.906655805000071 ], [ -82.018928141999936, 28.90740558300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017839185999946, 28.906598132000056 ], [ -82.017773219999981, 28.906595850000031 ], [ -82.017622248999942, 28.906592310000065 ], [ -82.017511554999942, 28.906596144000048 ], [ -82.017417261999981, 28.906601627000043 ], [ -82.017363582999963, 28.90661435800007 ], [ -82.017315438999958, 28.90662609900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018039822999981, 28.906599855000024 ], [ -82.017839185999946, 28.906598132000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016340911999976, 28.90618100100005 ], [ -82.016645381999979, 28.906181034000042 ], [ -82.016768701999979, 28.90618296100007 ], [ -82.016839835999974, 28.906199085000026 ], [ -82.016902601999959, 28.906219360000023 ], [ -82.016990247999956, 28.906255766000072 ], [ -82.017073026999981, 28.906302882000034 ], [ -82.017143632999989, 28.906356426000059 ], [ -82.017214243999945, 28.906427108000059 ], [ -82.017262943999981, 28.906493509000029 ], [ -82.017291786999976, 28.906556899000066 ], [ -82.017312336999964, 28.906613529000026 ], [ -82.017315438999958, 28.90662609900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018927100999974, 28.906655805000071 ], [ -82.018811193999966, 28.906653814000038 ], [ -82.018674468999961, 28.906646607000027 ], [ -82.018422076999968, 28.906618941000033 ], [ -82.01825060699997, 28.906607505000068 ], [ -82.018044409999959, 28.906599894000067 ], [ -82.018039822999981, 28.906599855000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02005285599995, 28.905584549000025 ], [ -82.020077351999987, 28.905651869000053 ], [ -82.020096901999977, 28.905732081000053 ], [ -82.020109938999951, 28.905806564000045 ], [ -82.020117555999946, 28.905908742000065 ], [ -82.020114712999941, 28.905980230000068 ], [ -82.020105646, 28.906057713000052 ], [ -82.020083233999969, 28.906137996000041 ], [ -82.020060457999989, 28.906206755000028 ], [ -82.020029646999944, 28.906261 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019867802999954, 28.905129328000044 ], [ -82.019874329999936, 28.905212628000072 ], [ -82.019885192999936, 28.90526419300005 ], [ -82.019899308999982, 28.905314802000078 ], [ -82.019919935999951, 28.905351088000032 ], [ -82.019952501999967, 28.905397874000073 ], [ -82.020008951999955, 28.905488585000057 ], [ -82.020042606999937, 28.905556380000064 ], [ -82.02005285599995, 28.905584549000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020153993999941, 28.904342714000052 ], [ -82.02017469599997, 28.904574386000036 ], [ -82.020191628999953, 28.904739299000028 ], [ -82.020202911999945, 28.904825225000025 ], [ -82.020195417999957, 28.904911154000047 ], [ -82.020184158999939, 28.904960731000074 ], [ -82.020147737999935, 28.905013284000063 ], [ -82.020108684999968, 28.905052948000048 ], [ -82.020056485999987, 28.905089641000075 ], [ -82.019979495999962, 28.905119065000065 ], [ -82.019891235999978, 28.905129324000029 ], [ -82.019867802999954, 28.905129328000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021084712999937, 28.905580550000025 ], [ -82.020992235999984, 28.905565307000074 ], [ -82.020864717999984, 28.905553390000023 ], [ -82.020704647999935, 28.905555802000038 ], [ -82.020468607999987, 28.90555345000007 ], [ -82.020254225999963, 28.905553484000052 ], [ -82.020190197999966, 28.90555349300007 ], [ -82.020139192999977, 28.905561141000078 ], [ -82.02005285599995, 28.905584549000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021793937999973, 28.905708956000069 ], [ -82.021670529999938, 28.905684566000048 ], [ -82.021165878999966, 28.90559392800003 ], [ -82.021084712999937, 28.905580550000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022586070999978, 28.905735193000055 ], [ -82.022585761999949, 28.905763272000058 ], [ -82.022590977999982, 28.905794784000079 ], [ -82.02260270499994, 28.905825149000066 ], [ -82.022622246999958, 28.905863534000048 ], [ -82.02265872199996, 28.905912802000046 ], [ -82.022801586999947, 28.906083995000074 ], [ -82.022893268999951, 28.906181744000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022499540999945, 28.903962389000071 ], [ -82.022519175999946, 28.903974350000055 ], [ -82.022558032999939, 28.904002227000035 ], [ -82.022597650999955, 28.904038030000038 ], [ -82.022636726999963, 28.904079086000024 ], [ -82.022657780999964, 28.904107319000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022657780999964, 28.904107319000047 ], [ -82.022669835999977, 28.904125586000077 ], [ -82.022686121999982, 28.90416215700003 ], [ -82.022698610999953, 28.904199516000062 ], [ -82.022716208999952, 28.90427377900005 ], [ -82.022721654999941, 28.904362109000033 ], [ -82.022721677999982, 28.904467153000041 ], [ -82.022718986999962, 28.904572196000061 ], [ -82.022710866999944, 28.904660529000068 ], [ -82.022697324999967, 28.904763188000061 ], [ -82.022670214999948, 28.904861074000053 ], [ -82.022634967999977, 28.90496851000006 ], [ -82.022609924999983, 28.905092566000064 ], [ -82.022605057999954, 28.905132257000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022605057999954, 28.905132257000048 ], [ -82.022602124999935, 28.90515616600004 ], [ -82.022591978999969, 28.905277339000065 ], [ -82.022592012999951, 28.905433810000034 ], [ -82.022586399999966, 28.905705402000024 ], [ -82.022586070999978, 28.905735193000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023001477999969, 28.906322223000075 ], [ -82.023016129999974, 28.90634497800005 ], [ -82.02302611999994, 28.906365222000034 ], [ -82.023030462999941, 28.906377444000043 ], [ -82.023050609999984, 28.906421232000071 ], [ -82.023070380999968, 28.906483817000037 ], [ -82.02308224799998, 28.906535972000029 ], [ -82.023086207999938, 28.906574220000039 ], [ -82.023082269999975, 28.906633331000023 ], [ -82.023051094999971, 28.906883754000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022893268999951, 28.906181744000037 ], [ -82.022932018999938, 28.906223058000023 ], [ -82.022988339999984, 28.906301820000067 ], [ -82.023001477999969, 28.906322223000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021922787999983, 28.906325846000072 ], [ -82.021893083999942, 28.906278998000062 ], [ -82.02185660799995, 28.906223235000027 ], [ -82.021826208999983, 28.906166708000057 ], [ -82.02180449399998, 28.906114763000062 ], [ -82.021790727999985, 28.906063390000043 ], [ -82.021779593999952, 28.906014760000062 ], [ -82.021769814999971, 28.905959375000066 ], [ -82.021768718999965, 28.90590876400006 ], [ -82.021771964999971, 28.905863880000027 ], [ -82.021778464999954, 28.905807538000033 ], [ -82.021793937999973, 28.905708956000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.150213380999958, 28.671397156000069 ], [ -82.150211895999973, 28.670356193000032 ], [ -82.150221857999952, 28.668683996000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034084471999961, 28.853356678000068 ], [ -82.034024270999964, 28.853605446000074 ], [ -82.034005313999955, 28.853684233000024 ], [ -82.033942985999943, 28.853810778000025 ], [ -82.033837262999953, 28.853920624000068 ], [ -82.033774911999956, 28.853977936000035 ], [ -82.033715285999961, 28.854078221000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138066838999976, 28.671678585000052 ], [ -82.138921599999946, 28.671698137000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138058517, 28.671938345000058 ], [ -82.138443154999948, 28.671956288000047 ], [ -82.138819142999978, 28.671981878000054 ], [ -82.138935266999965, 28.671978836000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138095247999956, 28.672204171000033 ], [ -82.13861505999995, 28.672249478000026 ], [ -82.138822977999951, 28.672263018000024 ], [ -82.138929693999955, 28.672266345000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138109479999969, 28.672488356000031 ], [ -82.138598085999945, 28.672516888000075 ], [ -82.138840665999965, 28.672538030000055 ], [ -82.138919560999966, 28.672537754000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138076917999967, 28.672758836000071 ], [ -82.138475436999954, 28.672790516000077 ], [ -82.138910001999989, 28.672820427000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138791882999953, 28.670795868000027 ], [ -82.138782788999947, 28.670689268000046 ], [ -82.138770416999989, 28.670502871000053 ], [ -82.138768298999935, 28.670211035000079 ], [ -82.138788224999985, 28.669587451000041 ], [ -82.138789077999945, 28.668724087000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138935266999965, 28.671978836000051 ], [ -82.138929843999961, 28.671845777000044 ], [ -82.138921599999946, 28.671698137000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138929693999955, 28.672266345000025 ], [ -82.138932046999969, 28.672203315000047 ], [ -82.138937004999946, 28.672021484000027 ], [ -82.138935266999965, 28.671978836000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138919560999966, 28.672537754000075 ], [ -82.138929693999955, 28.672266345000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138910001999989, 28.672820427000033 ], [ -82.138916986999959, 28.672606710000025 ], [ -82.138919560999966, 28.672537754000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137451284999941, 28.673379715000067 ], [ -82.137536481999973, 28.673383570000055 ], [ -82.137627442999985, 28.673386343000061 ], [ -82.137702305999937, 28.673393426000075 ], [ -82.138303951999944, 28.673437031000049 ], [ -82.138655944999982, 28.67346522400004 ], [ -82.138884684999937, 28.673480273000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137440352999988, 28.674402049000037 ], [ -82.137453486999959, 28.674407573000053 ], [ -82.137996689999966, 28.674445983000055 ], [ -82.138603303999957, 28.674496910000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137404385999957, 28.67406647200005 ], [ -82.137851997999974, 28.674096611000039 ], [ -82.138206768999964, 28.674122606000026 ], [ -82.138479664999977, 28.674138371000026 ], [ -82.138778618999936, 28.674160976000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137411295999982, 28.673729585000046 ], [ -82.137735895999981, 28.673749503000067 ], [ -82.13812575999998, 28.67378233900007 ], [ -82.138388258999953, 28.673798114000078 ], [ -82.13857799699997, 28.673817401000065 ], [ -82.138732635999986, 28.673825265000062 ], [ -82.138872743999968, 28.673841112000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13890119399997, 28.673089958000048 ], [ -82.138910001999989, 28.672820427000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137589340999966, 28.673020337000025 ], [ -82.137634878999961, 28.673011605000056 ], [ -82.137860991999958, 28.673026272000072 ], [ -82.138454868999986, 28.673068067000031 ], [ -82.13890119399997, 28.673089958000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137411295999982, 28.673729585000046 ], [ -82.137430233999964, 28.673516036000024 ], [ -82.137451284999941, 28.673379715000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138884684999937, 28.673480273000052 ], [ -82.138884828999949, 28.673473107000063 ], [ -82.13890119399997, 28.673089958000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138872743999968, 28.673841112000048 ], [ -82.138878684999952, 28.673778688000027 ], [ -82.138884684999937, 28.673480273000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138778618999936, 28.674160976000053 ], [ -82.138786021999977, 28.674145449000036 ], [ -82.138835711999945, 28.674036955000076 ], [ -82.138865012999986, 28.67392232800006 ], [ -82.138872743999968, 28.673841112000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138603303999957, 28.674496910000073 ], [ -82.138711303999969, 28.67429072300007 ], [ -82.138768528999947, 28.674182138000049 ], [ -82.138778618999936, 28.674160976000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137699624999982, 28.674775883000052 ], [ -82.138254089999975, 28.674813517000075 ], [ -82.138301739999974, 28.674816333000024 ], [ -82.138419018999969, 28.674848731000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138419018999969, 28.674848731000054 ], [ -82.138603303999957, 28.674496910000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137447992999967, 28.675787236000076 ], [ -82.137754661999963, 28.675790362000043 ], [ -82.137815756999942, 28.675807489000078 ], [ -82.137889272999985, 28.675845546000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138247153999941, 28.675171784000042 ], [ -82.138405410999951, 28.674874712000076 ], [ -82.138419018999969, 28.674848731000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137889272999985, 28.675845546000062 ], [ -82.137931809999941, 28.675763723000046 ], [ -82.138076785999942, 28.675491585000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137404385999957, 28.67406647200005 ], [ -82.137411024999949, 28.67373264400004 ], [ -82.137411295999982, 28.673729585000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137634727999966, 28.675107798000056 ], [ -82.137812328999985, 28.675119077000033 ], [ -82.138050588999988, 28.675144619000037 ], [ -82.138211953999985, 28.675160688000062 ], [ -82.138247153999941, 28.675171784000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138076785999942, 28.675491585000032 ], [ -82.138247153999941, 28.675171784000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137440352999988, 28.674402049000037 ], [ -82.137423583999976, 28.674394997000036 ], [ -82.137402767999959, 28.67437553700006 ], [ -82.137398830999985, 28.674345746000029 ], [ -82.137404385999957, 28.67406647200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137451284999941, 28.673379715000067 ], [ -82.137462445999972, 28.673307439000041 ], [ -82.137490858999968, 28.673174479000068 ], [ -82.137515458999985, 28.673106841000049 ], [ -82.137531003999982, 28.673070154000072 ], [ -82.137556952999944, 28.673040333000074 ], [ -82.137586812999984, 28.673020821000023 ], [ -82.137589340999966, 28.673020337000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137631457999987, 28.672282256000074 ], [ -82.137636122999936, 28.671709269000075 ], [ -82.137652203999949, 28.670784092000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135309338999946, 28.670742833000077 ], [ -82.135369821999973, 28.670717240000045 ], [ -82.135482401, 28.670691343000044 ], [ -82.135575502999984, 28.670676925000066 ], [ -82.135754175999978, 28.670685341000024 ], [ -82.136042234999934, 28.670711791000031 ], [ -82.136075709999943, 28.670716201000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138921599999946, 28.671698137000078 ], [ -82.138920970999948, 28.671686879000049 ], [ -82.138905172999955, 28.671531044000062 ], [ -82.138823085999945, 28.671029960000055 ], [ -82.138805613999978, 28.670918437000068 ], [ -82.138793346999989, 28.670813021000072 ], [ -82.138791882999953, 28.670795868000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137652203999949, 28.670784092000076 ], [ -82.138122185999975, 28.670792004000077 ], [ -82.138791882999953, 28.670795868000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135309338999946, 28.670742833000077 ], [ -82.135319926999955, 28.670449092000069 ], [ -82.13531385899995, 28.668645324000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136078465999958, 28.672888900000032 ], [ -82.136116026999957, 28.672889472000065 ], [ -82.136349905999964, 28.672880642000052 ], [ -82.136421360999975, 28.672871975000078 ], [ -82.136476572999982, 28.672862371000065 ], [ -82.136510121999947, 28.672848013000078 ], [ -82.13653500199996, 28.672828887000037 ], [ -82.136581474999957, 28.672761038000033 ], [ -82.136733545999959, 28.672503305000077 ], [ -82.136806457999967, 28.67236476100004 ], [ -82.136844176999944, 28.67222625200003 ], [ -82.136873629999968, 28.671977931000072 ], [ -82.136878878999937, 28.671849004000023 ], [ -82.136865205999982, 28.671743972000058 ], [ -82.13683800299998, 28.671641340000065 ], [ -82.136832473999959, 28.671553010000025 ], [ -82.136832364999975, 28.671469451000064 ], [ -82.136867242999983, 28.67122828600003 ], [ -82.136880516999952, 28.671027729000059 ], [ -82.136846036999941, 28.670817417000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135281462999956, 28.672837786000059 ], [ -82.135281236999958, 28.672661585000071 ], [ -82.135277865999967, 28.671767787000078 ], [ -82.135284861999935, 28.67107631600004 ], [ -82.135302861999946, 28.670927323000058 ], [ -82.135307721999936, 28.67078771100006 ], [ -82.135308432999977, 28.670767970000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136846036999941, 28.670817417000023 ], [ -82.136931138999955, 28.67081947500003 ], [ -82.13703937799994, 28.670788329000061 ], [ -82.13719636899998, 28.670776233000026 ], [ -82.137296527999979, 28.670776132000071 ], [ -82.137453539999967, 28.670780747000038 ], [ -82.137652203999949, 28.670784092000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136078465999958, 28.672888900000032 ], [ -82.136080987999947, 28.671447694000051 ], [ -82.136075709999943, 28.670716201000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135281462999956, 28.672837786000059 ], [ -82.135659047, 28.67286701200004 ], [ -82.135881049999966, 28.672885889000042 ], [ -82.136078465999958, 28.672888900000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136075709999943, 28.670716201000062 ], [ -82.13643297699997, 28.670763253000075 ], [ -82.136557513999946, 28.670774491000032 ], [ -82.136692885999935, 28.670791067000039 ], [ -82.136836389999985, 28.670817183000054 ], [ -82.136846036999941, 28.670817417000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134382684999935, 28.670780947000026 ], [ -82.133879644999979, 28.670771955000077 ], [ -82.133668488999945, 28.670765002000053 ], [ -82.133581871, 28.670769862000043 ], [ -82.133533187999944, 28.670803334000027 ], [ -82.133508887999938, 28.670853494000028 ], [ -82.133500881999964, 28.670944224000039 ], [ -82.133526605999975, 28.67124358500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134381277999978, 28.671217730000023 ], [ -82.134273697999959, 28.671214074000034 ], [ -82.13391855499998, 28.67122779500005 ], [ -82.133526605999975, 28.67124358500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134330195999951, 28.672383284000034 ], [ -82.134802105999938, 28.67239687600005 ], [ -82.134869772999934, 28.672389647000045 ], [ -82.134923873999981, 28.672358556000063 ], [ -82.134942755999987, 28.672306015000061 ], [ -82.13494256499996, 28.672155606000047 ], [ -82.13493105799995, 28.67078198300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134330195999951, 28.672383284000034 ], [ -82.134331221999958, 28.672168987000077 ], [ -82.134343871999988, 28.67181480000005 ], [ -82.13435703, 28.671518746000061 ], [ -82.134381012999938, 28.671220294000079 ], [ -82.134381277999978, 28.671217730000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134378952999953, 28.672916108000038 ], [ -82.134389070999987, 28.672875440000041 ], [ -82.134393149999937, 28.672840461000078 ], [ -82.134390467999935, 28.67277514400007 ], [ -82.134362950999957, 28.672595254000043 ], [ -82.134330195999951, 28.672383284000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134468641999945, 28.674738458000036 ], [ -82.134463852999943, 28.674617517000058 ], [ -82.134450169, 28.674500546000047 ], [ -82.134436529999959, 28.674419387000057 ], [ -82.134436416999961, 28.67433105200007 ], [ -82.134417326999937, 28.674221251000063 ], [ -82.134411778999947, 28.674116209000033 ], [ -82.134425142999987, 28.673982501000069 ], [ -82.134438532, 28.673867890000054 ], [ -82.13444646399995, 28.673719863000031 ], [ -82.134459643999946, 28.673440521000032 ], [ -82.134418760999949, 28.673223306000068 ], [ -82.134378952999953, 28.672916108000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133852635999972, 28.672904759000062 ], [ -82.133784909999974, 28.672911181000075 ], [ -82.133679360999963, 28.672932772000024 ], [ -82.133592771999986, 28.672961506000036 ], [ -82.133555241999943, 28.672995995000065 ], [ -82.133530603999986, 28.673035578000054 ], [ -82.133490096999935, 28.673114403000056 ], [ -82.133457826999972, 28.673283942000069 ], [ -82.133452751999982, 28.673551339000028 ], [ -82.133461481999973, 28.674031202000037 ], [ -82.133467672999984, 28.67464476300006 ], [ -82.133518676999984, 28.674757409000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13493475599995, 28.674748131000058 ], [ -82.134940335999943, 28.674643304000028 ], [ -82.134948378, 28.674581223000075 ], [ -82.134948246999954, 28.674478564000026 ], [ -82.134948141999985, 28.67439739100007 ], [ -82.134937220999973, 28.674323392000076 ], [ -82.134942523999939, 28.67423744000007 ], [ -82.134958609999956, 28.674115665000045 ], [ -82.134977394999964, 28.673986726000066 ], [ -82.134996108999985, 28.673802875000035 ], [ -82.134990479999942, 28.673635761000071 ], [ -82.134982131999948, 28.673459101000049 ], [ -82.134971137999969, 28.673330190000058 ], [ -82.134973704999936, 28.673220367000056 ], [ -82.134970865999946, 28.673117711000032 ], [ -82.134954516999983, 28.673034166000036 ], [ -82.134938218999935, 28.672991209000031 ], [ -82.134886733999963, 28.672950675000038 ], [ -82.134791955999958, 28.672926895000046 ], [ -82.134678246999954, 28.672917458000029 ], [ -82.134378952999953, 28.672916108000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133952615999988, 28.674731449000035 ], [ -82.133941315999948, 28.674565511000026 ], [ -82.133954607999954, 28.67437450500006 ], [ -82.133965218999947, 28.674202599000068 ], [ -82.133951594999985, 28.674133378000079 ], [ -82.133959646999983, 28.674078458000054 ], [ -82.133953866999946, 28.673791974000039 ], [ -82.133950680999988, 28.673414764000029 ], [ -82.133926118999966, 28.673259605000055 ], [ -82.133879968999963, 28.673156992000031 ], [ -82.133871726999985, 28.673061504000032 ], [ -82.133852648999948, 28.672961250000071 ], [ -82.133852635999972, 28.672904759000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134378952999953, 28.672916108000038 ], [ -82.134204488999956, 28.672898829000076 ], [ -82.134061016999965, 28.672901359000036 ], [ -82.133912125999984, 28.672899118000032 ], [ -82.133852635999972, 28.672904759000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134381277999978, 28.671217730000023 ], [ -82.134388284999943, 28.671064603000048 ], [ -82.134382684999935, 28.670780947000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133526605999975, 28.67124358500007 ], [ -82.133481123999957, 28.671245418000069 ], [ -82.133307891999948, 28.671258958000067 ], [ -82.133099467999955, 28.671279475000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13493105799995, 28.67078198300004 ], [ -82.134385865999946, 28.670781004000048 ], [ -82.134382684999935, 28.670780947000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135308432999977, 28.670767970000043 ], [ -82.135188325999934, 28.670777317000045 ], [ -82.135085674999971, 28.670776273000058 ], [ -82.13493105799995, 28.67078198300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135308432999977, 28.670767970000043 ], [ -82.135309338999946, 28.670742833000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13653448599996, 28.675606309000045 ], [ -82.136543100999972, 28.674848901000075 ], [ -82.13653504399997, 28.673645648000047 ], [ -82.136537946999965, 28.673379210000064 ], [ -82.136518385999977, 28.673324796000031 ], [ -82.136485826999944, 28.673267530000032 ], [ -82.136424041999987, 28.673218889000054 ], [ -82.136320013999978, 28.673158831000023 ], [ -82.136176990999957, 28.673090217000038 ], [ -82.136088871999959, 28.67305886500003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136092631999986, 28.675584465000043 ], [ -82.136093733999985, 28.674021396000057 ], [ -82.136088871999959, 28.67305886500003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135664961999964, 28.675599231000035 ], [ -82.135665415999938, 28.674397128000066 ], [ -82.135656880999989, 28.672997660000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136088871999959, 28.67305886500003 ], [ -82.13604049199995, 28.673041651000062 ], [ -82.13587477599998, 28.67300743800007 ], [ -82.135702595999987, 28.672999016000063 ], [ -82.135656880999989, 28.672997660000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135656880999989, 28.672997660000078 ], [ -82.13528165699995, 28.672988547000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13528165699995, 28.672988547000045 ], [ -82.135281462999956, 28.672837786000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135664961999964, 28.675599231000035 ], [ -82.135800080999957, 28.675599586000033 ], [ -82.136011872999973, 28.67558906000005 ], [ -82.136092631999986, 28.675584465000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136092631999986, 28.675584465000043 ], [ -82.136196376999976, 28.675578561000066 ], [ -82.136270446999958, 28.67558077800004 ], [ -82.136374420999971, 28.675595571000031 ], [ -82.136448499999972, 28.675604664000048 ], [ -82.136525167999935, 28.675606879000043 ], [ -82.13653448599996, 28.675606309000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135291214999938, 28.675594896000064 ], [ -82.135484319999989, 28.675598757000046 ], [ -82.135664961999964, 28.675599231000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136548103999985, 28.677159324000058 ], [ -82.136546682999949, 28.677069951000078 ], [ -82.136532977999934, 28.676938656000061 ], [ -82.136502820999965, 28.676647421000041 ], [ -82.136497059999954, 28.676380036000069 ], [ -82.136526069999945, 28.675787926000055 ], [ -82.136539476999985, 28.675687641000025 ], [ -82.13653448599996, 28.675606309000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136132391999979, 28.677181118000078 ], [ -82.136118753999938, 28.676917587000048 ], [ -82.13611857799998, 28.676781504000076 ], [ -82.136102134999987, 28.676626338000062 ], [ -82.13609934699997, 28.67656426800005 ], [ -82.136101955999948, 28.676487867000048 ], [ -82.136118108999938, 28.676418616000035 ], [ -82.136128847999942, 28.676349370000025 ], [ -82.136117873999979, 28.676237172000071 ], [ -82.136090589999981, 28.676072468000029 ], [ -82.136079579999944, 28.675931621000075 ], [ -82.136081971999943, 28.675688102000038 ], [ -82.136092631999986, 28.675584465000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135697539999967, 28.67721842800006 ], [ -82.135691166999948, 28.677030225000067 ], [ -82.135696254999971, 28.676777152000057 ], [ -82.135709332999966, 28.676421413000071 ], [ -82.135681700999953, 28.675986930000079 ], [ -82.135684205999951, 28.675829358000044 ], [ -82.135664961999964, 28.675599231000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136850774999971, 28.677148284000054 ], [ -82.136876823999955, 28.676966958000037 ], [ -82.136884702999964, 28.676780732000054 ], [ -82.136859967999953, 28.676494265000031 ], [ -82.136848857999951, 28.676279409000074 ], [ -82.136845659999949, 28.675899812000068 ], [ -82.136839444999964, 28.675564104000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13653448599996, 28.675606309000045 ], [ -82.136582337999982, 28.675603383000066 ], [ -82.136651188999963, 28.675589562000027 ], [ -82.136839444999964, 28.675564104000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137189527999965, 28.676407083000072 ], [ -82.137167088999945, 28.676138949000062 ], [ -82.137144554999963, 28.675798621000069 ], [ -82.137137536999944, 28.675523790000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136839444999964, 28.675564104000046 ], [ -82.137137536999944, 28.675523790000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135697539999967, 28.67721842800006 ], [ -82.135745494999981, 28.677212113000053 ], [ -82.135884080999972, 28.677196696000067 ], [ -82.136132391999979, 28.677181118000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136548103999985, 28.677159324000058 ], [ -82.136705270999983, 28.677153086000033 ], [ -82.136850774999971, 28.677148284000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136132391999979, 28.677181118000078 ], [ -82.136362137999981, 28.677166705000047 ], [ -82.136548103999985, 28.677159324000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135338067999953, 28.677279808000037 ], [ -82.135438902999965, 28.677272010000024 ], [ -82.135513372999981, 28.67724749000007 ], [ -82.135605177999935, 28.677230589000033 ], [ -82.135697539999967, 28.67721842800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134971105999966, 28.678347683000027 ], [ -82.134935625999958, 28.677702159000034 ], [ -82.134961109999949, 28.67730868700005 ], [ -82.13496091899998, 28.677159711000058 ], [ -82.134956201999955, 28.676857946000041 ], [ -82.134946715999945, 28.676216216000057 ], [ -82.134946000999946, 28.675658515000066 ], [ -82.134937613999966, 28.675584379000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13450258499995, 28.678466499000024 ], [ -82.134475985999984, 28.677309170000058 ], [ -82.134462044999964, 28.676568127000053 ], [ -82.134473333999949, 28.675588378000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134038757999974, 28.678703901000063 ], [ -82.134028217999969, 28.678670993000026 ], [ -82.134023813999988, 28.678613699000039 ], [ -82.134013997999944, 28.678558321000025 ], [ -82.133995524999989, 28.678508681000039 ], [ -82.133986798999956, 28.678459031000045 ], [ -82.133966120999958, 28.678291383000044 ], [ -82.133956932999979, 28.677878845000066 ], [ -82.133973666999964, 28.677412804000028 ], [ -82.134007631999964, 28.67687416800004 ], [ -82.133977078999976, 28.676690844000063 ], [ -82.133942154999943, 28.676476966000052 ], [ -82.133945991999951, 28.676087334000044 ], [ -82.133969751999985, 28.675597939000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133525114999941, 28.675560070000074 ], [ -82.133523226999955, 28.675678637000033 ], [ -82.133515907999936, 28.675938784000039 ], [ -82.13348575699996, 28.67607251000004 ], [ -82.133472961999985, 28.676229137000064 ], [ -82.133477481999989, 28.676378107000062 ], [ -82.133499375999975, 28.676565260000075 ], [ -82.133512602999986, 28.676748601000043 ], [ -82.133508422999967, 28.676867022000067 ], [ -82.133495670999935, 28.677058027000044 ], [ -82.133466182999939, 28.677715075000037 ], [ -82.133453493, 28.677955740000073 ], [ -82.13344503899998, 28.67812000300006 ], [ -82.133441624999989, 28.678640776000066 ], [ -82.133441111999957, 28.678881419000049 ], [ -82.133449666999979, 28.678923446000056 ], [ -82.13349085699997, 28.678955874000053 ], [ -82.133536356999969, 28.678971108000042 ], [ -82.133605671999987, 28.678978680000057 ], [ -82.133666302999984, 28.678970980000031 ], [ -82.133746422999934, 28.678959441000075 ], [ -82.133813534999945, 28.678938366000068 ], [ -82.133882763999964, 28.678879089000077 ], [ -82.133951971999977, 28.67880262400007 ], [ -82.134010366999973, 28.67873953700007 ], [ -82.134038757999974, 28.678703901000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13450258499995, 28.678466499000024 ], [ -82.134504895999953, 28.678465926000058 ], [ -82.134628312999951, 28.678440974000068 ], [ -82.134846995999965, 28.678394918000038 ], [ -82.134971105999966, 28.678347683000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134038757999974, 28.678703901000063 ], [ -82.134056855999972, 28.678680283000062 ], [ -82.134128245999989, 28.678617185000064 ], [ -82.134199642999988, 28.678559816000075 ], [ -82.134286227999951, 28.678523441000038 ], [ -82.134396641999956, 28.678492773000073 ], [ -82.13450258499995, 28.678466499000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133952615999988, 28.674731449000035 ], [ -82.134068648999971, 28.674730093000051 ], [ -82.134350803999951, 28.674736113000051 ], [ -82.134468641999945, 28.674738458000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134937613999966, 28.675584379000043 ], [ -82.134626898999954, 28.675589413000068 ], [ -82.134473333999949, 28.675588378000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134473333999949, 28.675588378000043 ], [ -82.13421974299996, 28.675586667000061 ], [ -82.134001894999983, 28.675597907000054 ], [ -82.133969751999985, 28.675597939000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133518676999984, 28.674757409000051 ], [ -82.133486567999967, 28.674785788000065 ], [ -82.133461641999986, 28.674844083000039 ], [ -82.133460042999957, 28.674992121000059 ], [ -82.133465503999957, 28.67507400900007 ], [ -82.133479861999945, 28.67513069000006 ], [ -82.133509520999951, 28.675217251000049 ], [ -82.133529143999965, 28.675321324000038 ], [ -82.133525114999941, 28.675560070000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133518676999984, 28.674757409000051 ], [ -82.133527593999986, 28.674749526000028 ], [ -82.133579358999953, 28.674732151000057 ], [ -82.133774005999953, 28.67473353400004 ], [ -82.133952615999988, 28.674731449000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134468641999945, 28.674738458000036 ], [ -82.134727604999966, 28.674743612000043 ], [ -82.13493475599995, 28.674748131000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133969751999985, 28.675597939000056 ], [ -82.133923322999976, 28.675597985000024 ], [ -82.133846508999966, 28.675577588000067 ], [ -82.133775023999988, 28.675535138000043 ], [ -82.133729679999988, 28.675485381000044 ], [ -82.133700393999959, 28.675447212000051 ], [ -82.133672218999948, 28.675431004000075 ], [ -82.133647309999958, 28.675428164000039 ], [ -82.133614831999978, 28.675433926000039 ], [ -82.133587773999977, 28.675444458000072 ], [ -82.133562888999961, 28.675460716000032 ], [ -82.13354127499997, 28.675495117000025 ], [ -82.133525114999941, 28.675560070000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135338067999953, 28.677279808000037 ], [ -82.135338284999989, 28.67727558100006 ], [ -82.135318175999942, 28.677193278000061 ], [ -82.135302415999945, 28.677036486000077 ], [ -82.135304463999944, 28.676901237000038 ], [ -82.135335260999966, 28.676652276000027 ], [ -82.135334973999989, 28.676428825000073 ], [ -82.135292480999965, 28.676223058000062 ], [ -82.135290015999942, 28.676034892000075 ], [ -82.135291214999938, 28.675594896000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133106559999987, 28.67208733800004 ], [ -82.133116926999946, 28.672101476000023 ], [ -82.133129939999947, 28.672116933000041 ], [ -82.133152968, 28.672143480000045 ], [ -82.133205760999942, 28.67219009300004 ], [ -82.13329682799997, 28.672277861000055 ], [ -82.133368384999983, 28.672349413000063 ], [ -82.133399820999955, 28.67237612200006 ], [ -82.133425827999986, 28.672391375000075 ], [ -82.13344965999994, 28.672399946000041 ], [ -82.133479982999972, 28.672402781000073 ], [ -82.13354387399994, 28.672406538000075 ], [ -82.133704132999981, 28.672408290000078 ], [ -82.134054962999983, 28.672405078000054 ], [ -82.134213047999935, 28.672400147000076 ], [ -82.134268259999942, 28.672390542000073 ], [ -82.134330195999951, 28.672383284000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131614016999947, 28.671740740000075 ], [ -82.131932451999944, 28.671738303000041 ], [ -82.132329198999969, 28.671742499000061 ], [ -82.13258041499995, 28.671745309000073 ], [ -82.132919981999976, 28.671741921000034 ], [ -82.132948850999981, 28.671740090000071 ], [ -82.132980030999988, 28.671736048000071 ], [ -82.133010996999985, 28.671724088000076 ], [ -82.133045928999934, 28.671712279000076 ], [ -82.133079178999935, 28.671701041000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131598029999964, 28.67197731400006 ], [ -82.131659007999986, 28.671970818000034 ], [ -82.131738696999946, 28.671966156000053 ], [ -82.131866904999981, 28.671967559000052 ], [ -82.132287899999938, 28.671965621000027 ], [ -82.132790322999938, 28.671963601000073 ], [ -82.132897740999965, 28.671965024000031 ], [ -82.132941045999985, 28.671958869000036 ], [ -82.132984337999972, 28.671943547000069 ], [ -82.133072561999938, 28.671896390000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133106559999987, 28.67208733800004 ], [ -82.133033108999939, 28.672149773000058 ], [ -82.132991557999958, 28.672172733000025 ], [ -82.132956925999963, 28.672186519000036 ], [ -82.132910149999987, 28.672188092000056 ], [ -82.13277328199996, 28.67218822600006 ], [ -82.132347079999988, 28.672184059000074 ], [ -82.131882760999986, 28.672178401000053 ], [ -82.131796133999956, 28.672176957000033 ], [ -82.131740685999944, 28.672170899000037 ], [ -82.131698431999951, 28.67215107800007 ], [ -82.131665925999982, 28.672133920000078 ], [ -82.131640994999941, 28.672113890000048 ], [ -82.131616059999942, 28.672089084000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131642484999986, 28.671572420000075 ], [ -82.131658693999952, 28.671545665000053 ], [ -82.131682486999978, 28.671523678000028 ], [ -82.131699804999982, 28.671517932000029 ], [ -82.13176260399996, 28.671514050000042 ], [ -82.13197050499997, 28.671515757000066 ], [ -82.132273697999949, 28.671521191000068 ], [ -82.132667838999964, 28.671519851000028 ], [ -82.132896314999982, 28.671522492000065 ], [ -82.132962368999983, 28.671524337000051 ], [ -82.132994849999989, 28.671521440000049 ], [ -82.133018660999937, 28.671512822000068 ], [ -82.133090266999943, 28.671470653000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131598029999964, 28.67197731400006 ], [ -82.131596385999956, 28.671942038000054 ], [ -82.131593073999966, 28.671891428000038 ], [ -82.131600565999975, 28.671821708000039 ], [ -82.13160808799995, 28.671775862000061 ], [ -82.131614016999947, 28.671740740000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131616059999942, 28.672089084000049 ], [ -82.131601928999942, 28.672046124000076 ], [ -82.131599723999955, 28.672013657000036 ], [ -82.131598029999964, 28.67197731400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131614016999947, 28.671740740000075 ], [ -82.131614537999951, 28.671737657000051 ], [ -82.131617744999971, 28.671705185000064 ], [ -82.131618772999957, 28.671660300000042 ], [ -82.131621984999981, 28.671631648000073 ], [ -82.131630606999977, 28.671599170000036 ], [ -82.131642484999986, 28.671572420000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133090266999943, 28.671470653000029 ], [ -82.133079178999935, 28.671701041000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133072561999938, 28.671896390000029 ], [ -82.13307475299996, 28.671943395000028 ], [ -82.133082379999962, 28.672012125000037 ], [ -82.133086961999936, 28.672039050000024 ], [ -82.133093491999944, 28.672064828000032 ], [ -82.133103910999978, 28.672083726000039 ], [ -82.133106559999987, 28.67208733800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133079178999935, 28.671701041000063 ], [ -82.133071191999989, 28.671867 ], [ -82.133072561999938, 28.671896390000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133099467999955, 28.671279475000063 ], [ -82.133090266999943, 28.671470653000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133099467999955, 28.671279475000063 ], [ -82.133095934999972, 28.67122561900004 ], [ -82.133094534999941, 28.671145403000025 ], [ -82.133121561999985, 28.670832265000058 ], [ -82.133115832999977, 28.670695064000029 ], [ -82.133117255999935, 28.670416341000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984982123999941, 28.841271911000035 ], [ -81.985290328999952, 28.841086780000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984157608999965, 28.840755159000025 ], [ -81.984250668083433, 28.840749506643572 ], [ -81.984343897235988, 28.840750023616224 ], [ -81.984436887911897, 28.840756707652517 ], [ -81.98452923261047, 28.840769529461884 ], [ -81.984620526661757, 28.840788432857014 ], [ -81.984710369999959, 28.840813335000064 ], [ -81.98502575699996, 28.840912702000026 ], [ -81.985076115160609, 28.840930733216243 ], [ -81.985124530272316, 28.840953471863077 ], [ -81.985170563456336, 28.840980711816673 ], [ -81.985213797425843, 28.841012206149223 ], [ -81.985253840268669, 28.841047669367349 ], [ -81.985290328999952, 28.841086780000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984674559999974, 28.842168874000038 ], [ -81.984829618622513, 28.84209688292944 ], [ -81.984986991022978, 28.842030101058864 ], [ -81.985146502256356, 28.84196860262723 ], [ -81.985307974999955, 28.841912456000045 ], [ -81.985619850999967, 28.84180966200006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983492505999948, 28.842977347000044 ], [ -81.983476079999946, 28.842963776000033 ], [ -81.983435924682169, 28.842927324058056 ], [ -81.983400042502126, 28.842886658805376 ], [ -81.983368872797797, 28.842842278143454 ], [ -81.983342797208081, 28.84279472546487 ], [ -81.98332213499998, 28.842744583000069 ], [ -81.983283026827436, 28.842641009354718 ], [ -81.983238089156032, 28.842539828551892 ], [ -81.983187467570033, 28.842441368386336 ], [ -81.98313132606782, 28.842345947838755 ], [ -81.983069846530626, 28.842253876042427 ], [ -81.983003228133299, 28.842165451281708 ], [ -81.982931686698976, 28.842080960025672 ], [ -81.982855453999946, 28.842000676000055 ], [ -81.982254994999948, 28.841396418000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984674559999974, 28.842168874000038 ], [ -81.984640599999977, 28.84211461700005 ], [ -81.9845656913743, 28.841989940971583 ], [ -81.984496386224649, 28.841862065209586 ], [ -81.984432820954638, 28.841731241394008 ], [ -81.98437512067089, 28.841597727007031 ], [ -81.98432339893678, 28.841461784826325 ], [ -81.984277757548966, 28.841323682407836 ], [ -81.984238286336975, 28.841183691559209 ], [ -81.98420506298649, 28.841042087804823 ], [ -81.984178152886358, 28.840899149843505 ], [ -81.984157608999965, 28.840755159000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984057484999937, 28.842525426000066 ], [ -81.984012981999967, 28.842474707000065 ], [ -81.983982821788118, 28.84243684239269 ], [ -81.983956602368366, 28.842396149532163 ], [ -81.983934586999965, 28.842353037000066 ], [ -81.983886143713377, 28.842250805813844 ], [ -81.983833105999963, 28.842150881000066 ], [ -81.983428379999964, 28.841433004000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980265203999977, 28.843367584000077 ], [ -81.979994326999986, 28.843410732000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980383983999957, 28.844675490000043 ], [ -81.981808838999939, 28.844372348000036 ], [ -81.981989726293435, 28.844336242493057 ], [ -81.982171455167276, 28.844304644439408 ], [ -81.982353913320111, 28.844277573365453 ], [ -81.982536987999936, 28.844255046000058 ], [ -81.982576642905514, 28.844249570421759 ], [ -81.982614991300224, 28.844238085905371 ], [ -81.982651128270589, 28.844220863452943 ], [ -81.982684201086428, 28.844198309465575 ], [ -81.982713429322985, 28.844170956153491 ], [ -81.982738123276633, 28.844139448977376 ], [ -81.982757700240043, 28.844104531417354 ], [ -81.982771698252307, 28.844067027428942 ], [ -81.98277978699997, 28.844027822000044 ], [ -81.982789546999982, 28.843893622000053 ], [ -81.982792724754049, 28.843810152649098 ], [ -81.982790154195143, 28.8437266623928 ], [ -81.982781847497193, 28.84364354663353 ], [ -81.982767843999966, 28.843561199000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981155508999962, 28.843854892000024 ], [ -81.980996986999969, 28.843185290000065 ], [ -81.98097730337291, 28.843120172931847 ], [ -81.9809516419338, 28.843057171596222 ], [ -81.980920225658608, 28.842996833420905 ], [ -81.980883327527877, 28.842939682693036 ], [ -81.980841268154805, 28.842886216003546 ], [ -81.980794412999373, 28.842836897932237 ], [ -81.980743169192806, 28.842792157010969 ], [ -81.980687981999949, 28.842752382000072 ], [ -81.980612464999979, 28.842701404000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981864058999975, 28.843707491000032 ], [ -81.981709472999967, 28.843054528000039 ], [ -81.981684896804197, 28.842967043804975 ], [ -81.981654359903104, 28.842881457757883 ], [ -81.981618007014035, 28.842798175459393 ], [ -81.981576010416902, 28.842717591592439 ], [ -81.981528569137652, 28.842640088051823 ], [ -81.981475908005137, 28.842566032134382 ], [ -81.981418276585615, 28.842495774798337 ], [ -81.981355947999987, 28.842429649000053 ], [ -81.981150773999957, 28.842223174000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982553408999934, 28.84298195100007 ], [ -81.982364451999956, 28.842598032000069 ], [ -81.982307415538997, 28.842496400816412 ], [ -81.982244310423468, 28.842398422248532 ], [ -81.982175369754628, 28.842304458215246 ], [ -81.982100848189461, 28.842214855806258 ], [ -81.98202102099998, 28.842129946000057 ], [ -81.981777963999946, 28.841885348000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98131878099997, 28.846297958000036 ], [ -81.981117349999977, 28.845930062000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981117349999977, 28.845930062000036 ], [ -81.980911650999985, 28.845554367000034 ], [ -81.980839524999965, 28.84542678400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980839524999965, 28.84542678400004 ], [ -81.980736730498194, 28.845257730880029 ], [ -81.980627940866626, 28.845092472043518 ], [ -81.98051329599997, 28.844931220000035 ], [ -81.980472902043331, 28.844871658245989 ], [ -81.980437721930855, 28.844808875812433 ], [ -81.980408010767292, 28.844743327959396 ], [ -81.980383983999957, 28.844675490000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980383983999957, 28.844675490000043 ], [ -81.980367461957655, 28.844612154198433 ], [ -81.980356233157522, 28.844547669194796 ], [ -81.980350374493028, 28.844482476574832 ], [ -81.980349926083633, 28.844417022769932 ], [ -81.980354891, 28.844351756000037 ], [ -81.980380516999958, 28.844134994000058 ], [ -81.980385771837717, 28.844074268224592 ], [ -81.980387199386186, 28.84401333223169 ], [ -81.980384793999974, 28.843952427000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980384793999974, 28.843952427000033 ], [ -81.980376946539707, 28.84388024080269 ], [ -81.980363752999949, 28.843808838000029 ], [ -81.980265203999977, 28.843367584000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980265203999977, 28.843367584000077 ], [ -81.980254546999959, 28.843319859000076 ], [ -81.980249820472125, 28.843284049225016 ], [ -81.980250925477591, 28.843247945776177 ], [ -81.980257833141096, 28.843212492084689 ], [ -81.980270362956205, 28.84317861460266 ], [ -81.980288187502182, 28.843147198593751 ], [ -81.980310840999948, 28.843119065000053 ], [ -81.980358270317836, 28.843063783161401 ], [ -81.980401934229135, 28.843005481491346 ], [ -81.98044164099997, 28.842944416000023 ], [ -81.980472206999934, 28.842893682000067 ], [ -81.980515209612534, 28.842826909069867 ], [ -81.98056201486996, 28.842762744307155 ], [ -81.980612464999979, 28.842701404000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980612464999979, 28.842701404000024 ], [ -81.980661053995277, 28.842648394988103 ], [ -81.98071220919617, 28.842597857959809 ], [ -81.980765804999976, 28.842549917000042 ], [ -81.981109123999943, 28.842257390000043 ], [ -81.981150773999957, 28.842223174000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981150773999957, 28.842223174000026 ], [ -81.981230195043452, 28.842164442759806 ], [ -81.981313119767393, 28.842110771996015 ], [ -81.981399226196061, 28.842062370098656 ], [ -81.981488179999985, 28.842019425000046 ], [ -81.981697448999967, 28.841925874000026 ], [ -81.981738174097202, 28.841906539998512 ], [ -81.981777963999946, 28.841885348000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981777963999946, 28.841885348000062 ], [ -81.98183853967538, 28.841848415314598 ], [ -81.981895999895613, 28.841806800908429 ], [ -81.981949983643872, 28.841760766240686 ], [ -81.982000151745694, 28.841710600542548 ], [ -81.982046188999959, 28.841656619000048 ], [ -81.982186490999936, 28.841476366000052 ], [ -81.982219807570445, 28.841435590470777 ], [ -81.982254994999948, 28.841396418000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982254994999948, 28.841396418000045 ], [ -81.982321180973472, 28.841331638681641 ], [ -81.982392110617852, 28.841272090980311 ], [ -81.982467371499482, 28.841218121147232 ], [ -81.982546525999965, 28.841170043000034 ], [ -81.982927593999989, 28.840956615000039 ], [ -81.98300369873877, 28.840918437826602 ], [ -81.983082714880922, 28.840886722260802 ], [ -81.983164094952414, 28.840861688048228 ], [ -81.983247275100396, 28.840843508641818 ], [ -81.983331678999946, 28.840832310000053 ], [ -81.984157608999965, 28.840755159000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985290328999952, 28.841086780000069 ], [ -81.985318311263057, 28.841123862375458 ], [ -81.985342574160583, 28.841163478299237 ], [ -81.985362889999976, 28.841205256000023 ], [ -81.985619850999967, 28.84180966200006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980384795999953, 28.843952427000033 ], [ -81.980669587999955, 28.843936743000029 ], [ -81.980759900395114, 28.8439294508036 ], [ -81.980849717760094, 28.843917519927835 ], [ -81.980938801999969, 28.843900982000036 ], [ -81.981155508999962, 28.843854892000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981155508999962, 28.843854892000024 ], [ -81.981638678999957, 28.843752129000052 ], [ -81.981864058999975, 28.843707491000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982767843999966, 28.843561199000078 ], [ -81.98277199499995, 28.843560539000066 ], [ -81.982829616144784, 28.843549055798853 ], [ -81.982885769349323, 28.843531767714488 ], [ -81.982939871432109, 28.843508854293091 ], [ -81.982991360513665, 28.843480553502975 ], [ -81.983039701851979, 28.843447159263182 ], [ -81.983084393396041, 28.843409018390997 ], [ -81.983124970999938, 28.843366527000057 ], [ -81.983212366828994, 28.843265079063219 ], [ -81.983302810973939, 28.843166339144894 ], [ -81.983396219569087, 28.843070398803132 ], [ -81.983492505999948, 28.842977347000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981864058999975, 28.843707491000032 ], [ -81.98205474599996, 28.84367480800006 ], [ -81.982767843999966, 28.843561199000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983492505999948, 28.842977347000044 ], [ -81.983627022947601, 28.84285617673633 ], [ -81.983766167643125, 28.842740350160263 ], [ -81.983909727950049, 28.842630043858112 ], [ -81.984057484999937, 28.842525426000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984057484999937, 28.842525426000066 ], [ -81.984206785648936, 28.842427925646383 ], [ -81.984359533846089, 28.842335920260528 ], [ -81.984515527443918, 28.842249531602732 ], [ -81.984674559999974, 28.842168874000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985619850999967, 28.84180966200006 ], [ -81.985884735999946, 28.841722356000048 ], [ -81.985936953772651, 28.841703568737639 ], [ -81.985986893270052, 28.841679367423339 ], [ -81.986033995002146, 28.841650023193107 ], [ -81.986077731271422, 28.841615864800822 ], [ -81.986117612084868, 28.84157727493514 ], [ -81.986153190643506, 28.841534685932093 ], [ -81.986184068348024, 28.841488574931475 ], [ -81.986209899264495, 28.841439458531276 ], [ -81.986230393999961, 28.841387887000053 ], [ -81.986304228999984, 28.841168190000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980553704999977, 28.84556725300007 ], [ -81.980839524999965, 28.84542678400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965167851, 28.823989246000053 ], [ -81.965742445999979, 28.824070188000064 ], [ -81.966516659999968, 28.824184976000026 ], [ -81.967531600999962, 28.824334196000052 ], [ -81.967903225999976, 28.82438322400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968087428, 28.823326645000066 ], [ -81.968056682999986, 28.823550117000025 ], [ -81.968004549999989, 28.823821310000028 ], [ -81.967903225999976, 28.82438322400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96535720199995, 28.822939630000064 ], [ -81.965167851, 28.823989246000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965054082999984, 28.823973220000028 ], [ -81.965237286, 28.822922345000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969604798999967, 28.825018701000033 ], [ -81.969669043999943, 28.82506264500006 ], [ -81.969775866999953, 28.825123968000071 ], [ -81.969893153999976, 28.82518273900007 ], [ -81.970101333999935, 28.825268731000051 ], [ -81.970318132999978, 28.825338068000065 ], [ -81.970515914999964, 28.825380894000034 ], [ -81.970744922999984, 28.825445116000026 ], [ -81.970909734999964, 28.825504740000042 ], [ -81.971124851999946, 28.825604102000057 ], [ -81.971294861, 28.825700397000048 ], [ -81.971457922999946, 28.825816553000038 ], [ -81.971638762999987, 28.825966777000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967903225999976, 28.82438322400003 ], [ -81.968227749999983, 28.82442603800007 ], [ -81.968429232999938, 28.824453649000077 ], [ -81.968565202999969, 28.824480767000068 ], [ -81.968728706999968, 28.824529289000054 ], [ -81.968871830999944, 28.82458088900006 ], [ -81.969032980999941, 28.824649089000047 ], [ -81.969157608999978, 28.824713268000039 ], [ -81.969283852, 28.82478885200004 ], [ -81.969403616999955, 28.824877263000076 ], [ -81.969546040999944, 28.824978510000051 ], [ -81.969604798999967, 28.825018701000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965054082999984, 28.823973220000028 ], [ -81.965167851, 28.823989246000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964968230999943, 28.823961125000039 ], [ -81.965054082999984, 28.823973220000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969976472999974, 28.823590467000031 ], [ -81.971035049999955, 28.823737845000039 ], [ -81.972443692999946, 28.823934603000055 ], [ -81.973806478999961, 28.824121134000052 ], [ -81.974004469999954, 28.824147950000054 ], [ -81.97418143799996, 28.82416975700005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968087428, 28.823326645000066 ], [ -81.968419040999947, 28.82337362100003 ], [ -81.969976472999974, 28.823590467000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965237286, 28.822922345000052 ], [ -81.965283736999936, 28.822929162000037 ], [ -81.96535720199995, 28.822939630000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021788303999983, 28.565560792000042 ], [ -82.020677961999979, 28.565898740000023 ], [ -82.019976576999966, 28.566118655000025 ], [ -82.017818025999986, 28.56678753500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017818025999986, 28.56678753500006 ], [ -82.017763103999982, 28.566659110000046 ], [ -82.017730191999988, 28.566497149000043 ], [ -82.017707662999953, 28.566324491000046 ], [ -82.017699736999987, 28.566129408000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138855688999968, 28.874820545000034 ], [ -82.137836564999986, 28.873434910000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137746945999936, 28.873489863000032 ], [ -82.137836564999986, 28.873434910000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.213817458999984, 28.853055415000028 ], [ -82.213777450999942, 28.852867194000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.213777450999942, 28.852867194000055 ], [ -82.213288978999969, 28.852942836000068 ], [ -82.212645509999959, 28.85303317100005 ], [ -82.21076908699996, 28.853257727000027 ], [ -82.209931929999982, 28.85337686400004 ], [ -82.207720289999941, 28.853725808000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.207759434999957, 28.853914093000071 ], [ -82.209066573999962, 28.853705868000077 ], [ -82.210019089999946, 28.853558903000078 ], [ -82.210570959999984, 28.853478862000031 ], [ -82.210930613999949, 28.853430519000028 ], [ -82.211457705999976, 28.853366895000079 ], [ -82.212077818999944, 28.853294933000029 ], [ -82.21258630799997, 28.853234066000027 ], [ -82.213434266999968, 28.853113956000072 ], [ -82.213817458999984, 28.853055415000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.207759434999957, 28.853914093000071 ], [ -82.207720289999941, 28.853725808000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.207720289999941, 28.853725808000036 ], [ -82.20766260299996, 28.853734908000035 ], [ -82.207097898999962, 28.853823352000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203163232999941, 28.854570791000071 ], [ -82.203214504999949, 28.854754520000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.20080829799997, 28.855259575000048 ], [ -82.200521786999957, 28.85540074000005 ], [ -82.200164835999942, 28.855532488000051 ], [ -82.20008663599998, 28.855563683000071 ], [ -82.200073874999987, 28.85557168400004 ], [ -82.200057193999953, 28.855583963000072 ], [ -82.200045283999941, 28.855594963000044 ], [ -82.200033377999944, 28.855608349000079 ], [ -82.200022563999937, 28.855625618000033 ], [ -82.200019994999934, 28.855643957000041 ], [ -82.20002263899994, 28.855665153000075 ], [ -82.200027514999988, 28.855690311000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203163232999941, 28.854570791000071 ], [ -82.202650222999978, 28.854716791000044 ], [ -82.202305316999968, 28.85481616900006 ], [ -82.201954941999986, 28.854920377000042 ], [ -82.201626458999954, 28.855014907000054 ], [ -82.201161118999948, 28.855155453000066 ], [ -82.200947606999989, 28.855218463000028 ], [ -82.20080829799997, 28.855259575000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200027514999988, 28.855690311000046 ], [ -82.200555183999938, 28.855534919000036 ], [ -82.201541994999957, 28.85524410000005 ], [ -82.202605410999979, 28.854934206000053 ], [ -82.202997281999956, 28.854816896000045 ], [ -82.203214504999949, 28.854754520000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.198703691999981, 28.856078269000079 ], [ -82.198848533999978, 28.856008695000071 ], [ -82.199033230999987, 28.855936229000065 ], [ -82.19920233299996, 28.855876390000049 ], [ -82.199258259999965, 28.85585338900006 ], [ -82.199418239999943, 28.855788980000057 ], [ -82.199587329999986, 28.855723412000032 ], [ -82.199626384999988, 28.855710553000051 ], [ -82.19966309199998, 28.855692646000023 ], [ -82.199681937999969, 28.855678294000029 ], [ -82.199699150999948, 28.855660221000051 ], [ -82.199711794999985, 28.855635851000045 ], [ -82.19971727099994, 28.855606335000061 ], [ -82.199712791999957, 28.855579698000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.198703691999981, 28.856078269000079 ], [ -82.199521558999948, 28.855839305000075 ], [ -82.200027514999988, 28.855690311000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.20080829799997, 28.855259575000048 ], [ -82.200602701999969, 28.855320249000044 ], [ -82.200079870999957, 28.85547534400007 ], [ -82.199712791999957, 28.855579698000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.193009608999944, 28.857099202000029 ], [ -82.192998348999936, 28.856904894000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.188356651999982, 28.857643533000044 ], [ -82.18883423699998, 28.857594640000059 ], [ -82.189381921999939, 28.857536002000074 ], [ -82.189955888999975, 28.857471539000073 ], [ -82.191644861999976, 28.857249244000059 ], [ -82.192234156999973, 28.857180890000052 ], [ -82.192865082999958, 28.857112475000065 ], [ -82.193009608999944, 28.857099202000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.192998348999936, 28.856904894000024 ], [ -82.192987405999986, 28.856905899000026 ], [ -82.192568975999961, 28.856948935000048 ], [ -82.192152739999983, 28.856993895000073 ], [ -82.191710221999983, 28.857044678000079 ], [ -82.191246424999974, 28.857104990000039 ], [ -82.190514145999941, 28.857204551000052 ], [ -82.189999347999958, 28.857272791000071 ], [ -82.189479983999945, 28.857336047000047 ], [ -82.188689291999935, 28.857413518000044 ], [ -82.188212797999938, 28.857458550000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000461753999957, 28.933133221000048 ], [ -82.000837832999935, 28.933291416000031 ], [ -82.001048423999976, 28.933376403000068 ], [ -82.00125249599995, 28.933422996000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00125249599995, 28.933422996000047 ], [ -82.001169995999987, 28.933351377000065 ], [ -82.000976777999938, 28.933240803000047 ], [ -82.000530058999971, 28.933021455000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000461753999957, 28.933133221000048 ], [ -82.000530058999971, 28.933021455000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000337395999964, 28.933082870000078 ], [ -82.000199750999968, 28.933015452000063 ], [ -82.000150902999962, 28.932987759000071 ], [ -82.000111824999976, 28.932955291000042 ], [ -82.000049949999948, 28.932889401000068 ], [ -81.999962022999966, 28.932793907000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000402043999941, 28.932976740000072 ], [ -82.000337395999964, 28.933082870000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003955008999981, 28.924950033000073 ], [ -82.003931944999977, 28.92482255300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984990696999944, 28.909445658000038 ], [ -81.984974005999959, 28.909628592000047 ], [ -81.984933589999969, 28.90992996500006 ], [ -81.984962229999951, 28.910012476000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984962229999951, 28.910012476000077 ], [ -81.985023450999961, 28.909934559000078 ], [ -81.985044300999959, 28.909840596000038 ], [ -81.985071662999985, 28.909751217000064 ], [ -81.985080790999973, 28.909667566000053 ], [ -81.985108164999986, 28.909496826000066 ], [ -81.985114563999957, 28.90945675200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984990696999944, 28.909445658000038 ], [ -81.985114563999957, 28.90945675200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008520542999975, 28.925038357000062 ], [ -82.008531743999981, 28.925072082000042 ], [ -82.008544140999959, 28.925114926000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008544140999959, 28.925114926000049 ], [ -82.008521618999964, 28.925257714000054 ], [ -82.008508622999955, 28.925628230000029 ], [ -82.008507282999972, 28.925768068000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008504244999983, 28.926085020000073 ], [ -82.008566386999973, 28.926084705000051 ], [ -82.008566709999968, 28.92608470700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008566709999968, 28.92608470700003 ], [ -82.008618866999939, 28.926085013000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000419373999989, 28.815277015000049 ], [ -81.999716759999956, 28.814933391000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000419373999989, 28.815277015000049 ], [ -82.000595506999957, 28.815004835000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99978299299994, 28.814298830000041 ], [ -81.99980872499998, 28.814349382000046 ], [ -81.999822578999954, 28.814410397000074 ], [ -81.999834454999984, 28.814462693000053 ], [ -81.999842371999989, 28.814527192000071 ], [ -81.999842371999989, 28.814589948000048 ], [ -81.999834454999984, 28.814654447000066 ], [ -81.999822577999964, 28.814713718000064 ], [ -81.999800805999939, 28.814766013000053 ], [ -81.999771114999987, 28.81483574300006 ], [ -81.999741424999968, 28.814895012000079 ], [ -81.999716759999956, 28.814933391000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986592388999952, 28.809494659000052 ], [ -81.987262851999958, 28.809559566000075 ], [ -81.987320694999937, 28.809571150000068 ], [ -81.987381166999967, 28.809596629000055 ], [ -81.987449522999952, 28.809631373000059 ], [ -81.987507361999974, 28.809675378000065 ], [ -81.987552054999981, 28.809717067000065 ], [ -81.987609727999939, 28.809788673000071 ], [ -81.987629048999963, 28.809846555000036 ], [ -81.987644501999966, 28.80993167500003 ], [ -81.987644436999972, 28.809967310000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01626185899994, 28.790551595000068 ], [ -82.016289408999967, 28.790548108000053 ], [ -82.016389823999987, 28.790530357000023 ], [ -82.016501061999975, 28.790504700000042 ], [ -82.016605777999985, 28.790474519000043 ], [ -82.01670218199996, 28.790441263000048 ], [ -82.016798603999973, 28.790402469000071 ], [ -82.01689111099995, 28.790366003000031 ], [ -82.01699892399995, 28.790329246000056 ], [ -82.017136602999983, 28.790290721000076 ], [ -82.017283532999954, 28.790259402000061 ], [ -82.01740664, 28.790240576000031 ], [ -82.017547281999953, 28.790227060000063 ], [ -82.017675345999976, 28.790222018000065 ], [ -82.017801107999958, 28.790223746000038 ], [ -82.017942636999976, 28.79023363400006 ], [ -82.018000229999984, 28.790240659000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037186083999984, 28.797829450000052 ], [ -82.037056207999967, 28.797633989000076 ], [ -82.037021883999955, 28.797582451000039 ], [ -82.037000215999967, 28.797553709000056 ], [ -82.036974309999948, 28.797525050000047 ], [ -82.036939648999976, 28.797493565000025 ], [ -82.036897504999956, 28.797462974000041 ], [ -82.036848392999957, 28.797435076000056 ], [ -82.036784810999961, 28.797401601000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031363333999934, 28.794425947000036 ], [ -82.031491579999965, 28.794378478000056 ], [ -82.031578843999966, 28.794348741000078 ], [ -82.031658419999985, 28.794324850000066 ], [ -82.031726238999966, 28.794306826000025 ], [ -82.031799303999946, 28.794289737000042 ], [ -82.031885836999948, 28.79427253700004 ], [ -82.03194653099996, 28.794262391000075 ], [ -82.032037074999948, 28.794250140000031 ], [ -82.032101567999973, 28.794243486000028 ], [ -82.03216542399997, 28.794238576000055 ], [ -82.03224761599995, 28.794234693000078 ], [ -82.032327129999942, 28.794233533000067 ], [ -82.032441024999969, 28.794236314000045 ], [ -82.032528821999961, 28.794242042000064 ], [ -82.032617939999966, 28.794251076000023 ], [ -82.032694553999988, 28.794261474000052 ], [ -82.032767170999989, 28.794273609000072 ], [ -82.032851269999981, 28.794290497000077 ], [ -82.032907567999985, 28.794303541000033 ], [ -82.032990712999947, 28.794325426000057 ], [ -82.033048009999959, 28.794342378000067 ], [ -82.033115887999941, 28.794364506000079 ], [ -82.033216040999946, 28.794401372000038 ], [ -82.033292253999946, 28.794432973000028 ], [ -82.03336324299994, 28.794465330000037 ], [ -82.033423872999947, 28.794495322000046 ], [ -82.033483572999955, 28.794527101000028 ], [ -82.03354053399994, 28.794559621000076 ], [ -82.033576719999985, 28.794582106000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029294167999979, 28.794840320000048 ], [ -82.029295422999951, 28.794805967000059 ], [ -82.029307134999954, 28.794611556000064 ], [ -82.029309470999976, 28.794555869000078 ], [ -82.02930545199996, 28.794476863000057 ], [ -82.029299794999986, 28.79443494800006 ], [ -82.029290082999978, 28.794386240000051 ], [ -82.029279434999978, 28.794345975000056 ], [ -82.029263220999951, 28.794297185000062 ], [ -82.029240146999939, 28.794241739000029 ], [ -82.029206061999957, 28.794171923000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031599095, 28.797499907000031 ], [ -82.031119358999945, 28.797497585000031 ], [ -82.030186990999937, 28.797493068000051 ], [ -82.029972971999939, 28.797491223000065 ], [ -82.029925107999986, 28.797483796000051 ], [ -82.029886544999954, 28.797471955000049 ], [ -82.029815305999989, 28.797432527000069 ], [ -82.029777582999941, 28.797397502000024 ], [ -82.029746863999947, 28.797353884000074 ], [ -82.029720682999937, 28.797280676000071 ], [ -82.029670709999948, 28.79708699300005 ], [ -82.029617607999967, 28.796881185000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035939681999935, 28.798991070000056 ], [ -82.035986453999953, 28.799009405000049 ], [ -82.036002963999977, 28.799014596000063 ], [ -82.036032711999951, 28.799021718000063 ], [ -82.036052792999953, 28.799024995000025 ], [ -82.036090941999987, 28.799028126000053 ], [ -82.036142903999973, 28.799030796000068 ], [ -82.036353128999963, 28.799029296000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035232986999972, 28.799133270000027 ], [ -82.035239504999936, 28.798913643000049 ], [ -82.035245619999955, 28.798707556000068 ], [ -82.035251968999944, 28.798493593000046 ], [ -82.035259218999954, 28.798249253000051 ], [ -82.035265196999944, 28.798139586000048 ], [ -82.035276662999934, 28.798067795000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034637493999981, 28.797843818000047 ], [ -82.03461387599998, 28.797874205000028 ], [ -82.034589280999967, 28.797911986000031 ], [ -82.034576680999976, 28.79793700700003 ], [ -82.034564092999972, 28.797969647000059 ], [ -82.034548880999978, 28.798032090000049 ], [ -82.034526449999987, 28.798147450000045 ], [ -82.034509147999984, 28.798258325000063 ], [ -82.034492557999954, 28.798405229000025 ], [ -82.034483441999953, 28.79854404200006 ], [ -82.034480702999986, 28.798655732000043 ], [ -82.034481826, 28.798759692000033 ], [ -82.034486417999972, 28.798868992000052 ], [ -82.034489489999942, 28.79890791300005 ], [ -82.034491629999934, 28.79892277600004 ], [ -82.034494389999963, 28.798936360000027 ], [ -82.034502418999978, 28.79896281300006 ], [ -82.034512235999955, 28.798985342000037 ], [ -82.034530031999964, 28.799015113000053 ], [ -82.034545979999962, 28.799035475000039 ], [ -82.034565137999948, 28.799055205000059 ], [ -82.034586285999978, 28.799072831000046 ], [ -82.034603630999982, 28.799086800000055 ], [ -82.034620034999989, 28.799094510000032 ], [ -82.034648426999979, 28.799108068000066 ], [ -82.034674139999936, 28.799117341000056 ], [ -82.034693961999949, 28.799122766000039 ], [ -82.034715854999945, 28.799127149000071 ], [ -82.03473637999997, 28.799129802000039 ], [ -82.034780255999976, 28.799131301000045 ], [ -82.034842038999955, 28.799131569000053 ], [ -82.035183792999987, 28.799133056000073 ], [ -82.035232986999972, 28.799133270000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033533075999969, 28.796823893000067 ], [ -82.033544475999975, 28.796779998000034 ], [ -82.033573093999962, 28.796693126000037 ], [ -82.033612609999977, 28.796593177000034 ], [ -82.033644208999988, 28.796525022000026 ], [ -82.03369069699994, 28.796437062000052 ], [ -82.033740508999983, 28.796355086000062 ], [ -82.033797069999935, 28.796272844000043 ], [ -82.03384740499996, 28.796207540000069 ], [ -82.033907441999986, 28.796136948000026 ], [ -82.033981625999957, 28.796059219000028 ], [ -82.034060868999973, 28.795982088000073 ], [ -82.034295838999981, 28.795754070000044 ], [ -82.034386608999966, 28.795666442000027 ], [ -82.034434102999967, 28.795623786000078 ], [ -82.034509093999986, 28.795563640000069 ], [ -82.034620832999963, 28.795481616000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032740308999962, 28.797505423000075 ], [ -82.032743594999943, 28.796977405000064 ], [ -82.032745098999953, 28.796805124000059 ], [ -82.032748913999967, 28.796765578000077 ], [ -82.032758921999971, 28.796715945000074 ], [ -82.032772487999978, 28.796673057000078 ], [ -82.032789995999963, 28.796632186000068 ], [ -82.032813678999958, 28.796589341000072 ], [ -82.032836757999974, 28.796555512000054 ], [ -82.032863234999979, 28.796522946000039 ], [ -82.032914904999984, 28.796466140000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029617607999967, 28.796881185000075 ], [ -82.029711894999934, 28.796862310000051 ], [ -82.029745827999989, 28.796856184000035 ], [ -82.029765081999983, 28.796853845000044 ], [ -82.029814247, 28.796849845000054 ], [ -82.029946803999962, 28.796839282000064 ], [ -82.030096945999958, 28.796827319000045 ], [ -82.03022243199996, 28.796817321000049 ], [ -82.030285737999975, 28.796810838000056 ], [ -82.030321714999957, 28.796805859000074 ], [ -82.030354443999954, 28.796800501000064 ], [ -82.030401684999958, 28.796791351000024 ], [ -82.030430044999946, 28.796785039000042 ], [ -82.030469149999988, 28.796775301000025 ], [ -82.030500722999989, 28.796766545000025 ], [ -82.030534884999952, 28.796756146000064 ], [ -82.030583662999959, 28.796739571000046 ], [ -82.030637427999977, 28.796718842000075 ], [ -82.030679417999977, 28.796700756000064 ], [ -82.030710628999941, 28.796686174000058 ], [ -82.030742081999961, 28.796670447000054 ], [ -82.030788574999974, 28.79664518900006 ], [ -82.030846293999957, 28.796611902000052 ], [ -82.030901390999986, 28.796581475000039 ], [ -82.030967443999941, 28.796546856000077 ], [ -82.031049291999977, 28.796506663000059 ], [ -82.031116457999985, 28.796475801000042 ], [ -82.031177143999969, 28.796449499000062 ], [ -82.031240884999988, 28.796423435000065 ], [ -82.031310610999981, 28.796396698000024 ], [ -82.031583414999943, 28.796295644000054 ], [ -82.031690268999967, 28.796256386000039 ], [ -82.031751009999937, 28.79623590500006 ], [ -82.031816766999953, 28.796215756000038 ], [ -82.031865250999942, 28.796202206000032 ], [ -82.03191626399996, 28.796189120000065 ], [ -82.031968762999952, 28.796176875000072 ], [ -82.03201624899998, 28.796166850000077 ], [ -82.032051717999934, 28.796160393000036 ], [ -82.032089755999948, 28.796155121000027 ], [ -82.032139160999975, 28.796150771000043 ], [ -82.032179384999949, 28.796149282000044 ], [ -82.032222513999955, 28.796149716000059 ], [ -82.032256232999941, 28.796151522000059 ], [ -82.032290952999972, 28.796154736000062 ], [ -82.032321627999977, 28.796158735000063 ], [ -82.032363105999934, 28.796165908000035 ], [ -82.032402693999984, 28.796174705000055 ], [ -82.032441172999938, 28.796185156000035 ], [ -82.032475041999987, 28.796195977000025 ], [ -82.032511092999982, 28.796209256000054 ], [ -82.032549522999943, 28.796225542000059 ], [ -82.032586177999974, 28.796243287000038 ], [ -82.03262291599998, 28.796263444000033 ], [ -82.032658370999968, 28.796285390000037 ], [ -82.032748956999967, 28.796348848000036 ], [ -82.032914904999984, 28.796466140000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030239551999955, 28.796442579000029 ], [ -82.030206705999944, 28.796347661000027 ], [ -82.03017245999996, 28.79624005200003 ], [ -82.030168748999984, 28.796214960000043 ], [ -82.030174550999959, 28.796184231000041 ], [ -82.030201299999987, 28.796114837000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031312415999935, 28.795134180000048 ], [ -82.031335892999948, 28.795063873000061 ], [ -82.031337813999983, 28.795057260000078 ], [ -82.031339120999974, 28.795051010000066 ], [ -82.031339965999962, 28.795044607000079 ], [ -82.031340303999968, 28.795038974000079 ], [ -82.031340284999942, 28.795033824000029 ], [ -82.031339887999934, 28.795028014000025 ], [ -82.031339194999987, 28.795022847000041 ], [ -82.031337779999944, 28.795016020000048 ], [ -82.031335903999945, 28.795009573000073 ], [ -82.031324827999981, 28.794975568000041 ], [ -82.031296181999949, 28.794887625000058 ], [ -82.031269810999959, 28.794806661000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030020678999961, 28.795515143000046 ], [ -82.030096426999989, 28.795507218000068 ], [ -82.030190997999966, 28.79549273300006 ], [ -82.030248034999943, 28.795481411000026 ], [ -82.030309690999957, 28.795466916000066 ], [ -82.030400419999978, 28.795441157000027 ], [ -82.030481533999989, 28.795413427000028 ], [ -82.030552219999947, 28.79538724400004 ], [ -82.03065292399998, 28.795349940000051 ], [ -82.030908507999982, 28.795255265000037 ], [ -82.03106338799995, 28.795197893000079 ], [ -82.031182382999987, 28.795153812000024 ], [ -82.031218193999962, 28.795140547000074 ], [ -82.031236065999963, 28.795134567000048 ], [ -82.031251979999979, 28.795131197000046 ], [ -82.031263236999962, 28.79512988700003 ], [ -82.031273713999951, 28.795129435000035 ], [ -82.031286761999979, 28.795129892000034 ], [ -82.031298460999949, 28.795131276000063 ], [ -82.031312415999935, 28.795134180000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030020678999961, 28.795515143000046 ], [ -82.030019635999963, 28.795506666000051 ], [ -82.030010458999982, 28.795419378000076 ], [ -82.030004228999985, 28.795346467000059 ], [ -82.029999229999987, 28.795272393000062 ], [ -82.029992896999943, 28.795150149000051 ], [ -82.02997643599997, 28.794826432000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030201299999987, 28.796114837000061 ], [ -82.030218771999955, 28.796118917000058 ], [ -82.030230112999959, 28.796120405000067 ], [ -82.030243303999953, 28.796121041000049 ], [ -82.030252828999949, 28.79612078200006 ], [ -82.030260982999948, 28.796120078000058 ], [ -82.030273016999956, 28.796118207000063 ], [ -82.030284911999956, 28.79611533700006 ], [ -82.030295398999954, 28.796111904000043 ], [ -82.030361812999956, 28.796087303000036 ], [ -82.030570133999959, 28.796010136000064 ], [ -82.030973689999939, 28.79586064800003 ], [ -82.031298101999937, 28.795740476000049 ], [ -82.031435673999965, 28.795689515000049 ], [ -82.031451735999951, 28.795682401000079 ], [ -82.031467099999986, 28.795673061000059 ], [ -82.031480698999985, 28.795662031000063 ], [ -82.031492147999984, 28.79564978600007 ], [ -82.031502129999978, 28.795635411000035 ], [ -82.031508918999975, 28.795621763000042 ], [ -82.031513967999956, 28.795606321000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031513967999956, 28.795606321000037 ], [ -82.031516539999984, 28.795590716000049 ], [ -82.031516525999962, 28.795572666000055 ], [ -82.031515122999963, 28.795562553000025 ], [ -82.031504302999963, 28.795526568000071 ], [ -82.03148089299998, 28.795454698000071 ], [ -82.031430787999966, 28.795300870000062 ], [ -82.031404135999935, 28.795219051000061 ], [ -82.031401465999977, 28.795211012000038 ], [ -82.031396978999965, 28.795200363000049 ], [ -82.031389774, 28.795187702000078 ], [ -82.031380762999959, 28.795175760000063 ], [ -82.031372782999938, 28.795167331000073 ], [ -82.031364458999974, 28.795160010000075 ], [ -82.03135647199997, 28.795154076000074 ], [ -82.031347325999945, 28.795148336000068 ], [ -82.031336926999984, 28.795142953000038 ], [ -82.031324531999985, 28.795137889000046 ], [ -82.031312415999935, 28.795134180000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031513967999956, 28.795606321000037 ], [ -82.031595307999964, 28.795621715000038 ], [ -82.031620146999956, 28.795623849000037 ], [ -82.031639565999967, 28.795622016000038 ], [ -82.031676328999936, 28.795613070000059 ], [ -82.031838071999971, 28.79557218900004 ], [ -82.031842450999989, 28.795570338000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032177320999949, 28.795488671000044 ], [ -82.031993617999944, 28.794924703000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032177320999949, 28.795488671000044 ], [ -82.032219502999965, 28.795481854000059 ], [ -82.032253793999985, 28.795477663000042 ], [ -82.032303659999968, 28.795473687000026 ], [ -82.032349088999979, 28.795472222000058 ], [ -82.032393326999966, 28.795472761000042 ], [ -82.03244230699994, 28.795475624000062 ], [ -82.032473897999978, 28.795478746000072 ], [ -82.032507079999959, 28.79548311800005 ], [ -82.03254506899998, 28.795489520000046 ], [ -82.032579355999985, 28.795496609000054 ], [ -82.032615042999964, 28.795505349000052 ], [ -82.032652110999948, 28.795515948000059 ], [ -82.032681596999964, 28.795525530000077 ], [ -82.032723072999943, 28.795540821000031 ], [ -82.032762620999961, 28.795557488000043 ], [ -82.032792873999938, 28.795571709000058 ], [ -82.032828103999975, 28.795589993000078 ], [ -82.032874344999982, 28.795617066000034 ], [ -82.032915788999958, 28.795644646000028 ], [ -82.03303899499997, 28.795731728000078 ], [ -82.033147156999974, 28.795808176000037 ], [ -82.033261227999958, 28.79587676400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033261227999958, 28.79587676400007 ], [ -82.03326984499995, 28.795866379000074 ], [ -82.033325207999951, 28.795800073000066 ], [ -82.033351329999959, 28.795771913000067 ], [ -82.033385792999979, 28.795731961000058 ], [ -82.03342439499994, 28.79569112300004 ], [ -82.033457901999952, 28.795657143000028 ], [ -82.033669048999968, 28.795451982000031 ], [ -82.033684551999954, 28.795436936000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031993617999944, 28.794924703000049 ], [ -82.032051214999967, 28.794913455000028 ], [ -82.032083996999972, 28.79490794700007 ], [ -82.032135305999986, 28.794900605000066 ], [ -82.032189316999961, 28.79489454000003 ], [ -82.032236917999967, 28.794890590000023 ], [ -82.032290355999976, 28.794887700000061 ], [ -82.032345579999969, 28.794886419000079 ], [ -82.03240760999995, 28.794887040000049 ], [ -82.032457364999971, 28.794889117000025 ], [ -82.032509951999941, 28.794892845000049 ], [ -82.032553220999944, 28.794897105000075 ], [ -82.032611107999969, 28.794904505000034 ], [ -82.032664575999945, 28.794913094000037 ], [ -82.032729979999942, 28.794925943000067 ], [ -82.032788130999961, 28.794939588000034 ], [ -82.032849499999941, 28.794956331000037 ], [ -82.032897022999975, 28.794971007000072 ], [ -82.032941828999981, 28.794986264000045 ], [ -82.032986084999948, 28.795002734000036 ], [ -82.033069250999972, 28.795037656000034 ], [ -82.03311417599997, 28.795058806000043 ], [ -82.033172171, 28.795088657000065 ], [ -82.033221375999972, 28.795116392000068 ], [ -82.033267939999973, 28.795144828000048 ], [ -82.033331977999978, 28.795187739000028 ], [ -82.033518040999979, 28.795319247000066 ], [ -82.033684551999954, 28.795436936000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031363324999973, 28.794425929000056 ], [ -82.031176104999986, 28.794039386000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033576719999985, 28.794582106000064 ], [ -82.033624043999964, 28.794522924000034 ], [ -82.033651028999941, 28.794490741000061 ], [ -82.033686410999962, 28.794450564000044 ], [ -82.033754746999989, 28.794378295000058 ], [ -82.03441221199995, 28.793697654000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029132860999937, 28.796520260000079 ], [ -82.029114984999978, 28.796521478000045 ], [ -82.029057567999985, 28.796523557000057 ], [ -82.028978287999962, 28.796525139000039 ], [ -82.028952440999944, 28.796524594000061 ], [ -82.028929285999936, 28.796522294000056 ], [ -82.028901091999955, 28.796517099000027 ], [ -82.028874126999938, 28.79650951900004 ], [ -82.02884740899998, 28.796499221000033 ], [ -82.028828535999935, 28.796490060000053 ], [ -82.028809187999968, 28.796478791000027 ], [ -82.028795301999935, 28.796469344000059 ], [ -82.028776154999946, 28.796454080000046 ], [ -82.028763175999984, 28.796441919000074 ], [ -82.028751902999943, 28.796429853000063 ], [ -82.028740672999959, 28.796416054000076 ], [ -82.028730383999971, 28.796401336000031 ], [ -82.028717953999944, 28.796379617000071 ], [ -82.028710020999938, 28.796362050000027 ], [ -82.028705432999971, 28.79634956600006 ], [ -82.028700212, 28.796331413000075 ], [ -82.028696585999967, 28.796312982000074 ], [ -82.028678180999975, 28.796178962000056 ], [ -82.028651926999942, 28.795987535000052 ], [ -82.02863089899995, 28.795834213000035 ], [ -82.028617852999957, 28.795736433000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027212909999946, 28.796069550000027 ], [ -82.027249854, 28.796049353000058 ], [ -82.027369134999958, 28.795983486000068 ], [ -82.027435501999946, 28.795948754000051 ], [ -82.027493589999949, 28.795921340000064 ], [ -82.027563706999956, 28.795891701000073 ], [ -82.027620277999972, 28.795870377000028 ], [ -82.027694935999989, 28.795845575000044 ], [ -82.027744145999975, 28.795831211000063 ], [ -82.027808453999967, 28.795814725000071 ], [ -82.027885440999967, 28.795798271000024 ], [ -82.027947960999938, 28.795787462000078 ], [ -82.028017084999988, 28.795778103000032 ], [ -82.028082590999986, 28.795771365000064 ], [ -82.028215823999972, 28.795758191000061 ], [ -82.028279189999978, 28.795753035000075 ], [ -82.028333219, 28.795750381000062 ], [ -82.028388717999974, 28.795749315000023 ], [ -82.028422535999937, 28.795749487000023 ], [ -82.028473917999975, 28.795748983000067 ], [ -82.028507984999976, 28.795747275000053 ], [ -82.028540312999951, 28.795744637000041 ], [ -82.02857344399996, 28.795741158000055 ], [ -82.028617852999957, 28.795736433000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02557177999995, 28.795182909000061 ], [ -82.02563119399997, 28.79509798600003 ], [ -82.025653061999947, 28.795065047000037 ], [ -82.025669898999979, 28.795037028000024 ], [ -82.025683755999978, 28.795011800000054 ], [ -82.025698725999973, 28.794981768000071 ], [ -82.025709494999944, 28.794957904000057 ], [ -82.025722708999979, 28.794925179000074 ], [ -82.025730609999982, 28.794903202000057 ], [ -82.025737976999949, 28.794880497000065 ], [ -82.025747060999947, 28.794848359000071 ], [ -82.025755320999963, 28.794812830000069 ], [ -82.025760599999956, 28.794784479000043 ], [ -82.025768848999974, 28.794724332000044 ], [ -82.025773498999968, 28.794696742000042 ], [ -82.025777484999935, 28.794677043000036 ], [ -82.025783836999949, 28.794650159000071 ], [ -82.025793181999973, 28.794616895000047 ], [ -82.025802763999934, 28.79458773600004 ], [ -82.025821191999967, 28.794540420000033 ], [ -82.025828802999968, 28.794523232000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026572052999938, 28.795577207000065 ], [ -82.02658727499994, 28.795576567000069 ], [ -82.026616186999945, 28.795574319000025 ], [ -82.026653147, 28.795569889000035 ], [ -82.026694234, 28.795562869000037 ], [ -82.026723508999964, 28.795556480000073 ], [ -82.026745883999979, 28.795550794000064 ], [ -82.026765600999965, 28.795545189000052 ], [ -82.026791342999957, 28.79553700200006 ], [ -82.026808487999972, 28.795530987000063 ], [ -82.026834512999983, 28.795520957000065 ], [ -82.026851563999969, 28.795513774000028 ], [ -82.02687095999994, 28.795504986000026 ], [ -82.026896638999972, 28.795492288000048 ], [ -82.026908951999985, 28.795485746000054 ], [ -82.026921939999966, 28.795478510000066 ], [ -82.026999278999938, 28.795434722000039 ], [ -82.027056677999951, 28.795404538000071 ], [ -82.027126769999938, 28.795370261000073 ], [ -82.027170567999974, 28.795350217000077 ], [ -82.027221313999974, 28.795328263000044 ], [ -82.027274077999948, 28.795306831000062 ], [ -82.027342824999948, 28.795280965000075 ], [ -82.027397882999935, 28.795261870000047 ], [ -82.027440411999976, 28.795248077000053 ], [ -82.027479079999978, 28.795236244000023 ], [ -82.027526819999935, 28.795222545000058 ], [ -82.027554780999935, 28.795214983000051 ], [ -82.027598427999976, 28.79520384500006 ], [ -82.027647636999973, 28.795192248000035 ], [ -82.027718911999955, 28.795177224000042 ], [ -82.027759174999971, 28.795169649000059 ], [ -82.027809549999972, 28.795161084000028 ], [ -82.027884379999989, 28.795150207000063 ], [ -82.027942933999952, 28.795143215000053 ], [ -82.028007775999981, 28.795136694000064 ], [ -82.028135022999948, 28.795124111000064 ], [ -82.028248854999958, 28.795115327000076 ], [ -82.028314875999968, 28.795112484000072 ], [ -82.028395036999939, 28.795110937000061 ], [ -82.028568266999969, 28.795108251000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024466204999953, 28.793783441000073 ], [ -82.024542770999972, 28.79378693600006 ], [ -82.024567313999967, 28.793789323000055 ], [ -82.024589399999968, 28.793792465000024 ], [ -82.024615068999935, 28.793797336000068 ], [ -82.024633124, 28.793801569000038 ], [ -82.024651260999974, 28.793806517000064 ], [ -82.02466822599996, 28.793811800000071 ], [ -82.024684344999969, 28.793817431000036 ], [ -82.024698907999948, 28.79382305200005 ], [ -82.024712035999983, 28.793828575000077 ], [ -82.024726258999976, 28.793835069000068 ], [ -82.024737701999982, 28.793840699000043 ], [ -82.024755815999981, 28.793850391000035 ], [ -82.024767062999956, 28.793856924000067 ], [ -82.024779920999947, 28.793864909000035 ], [ -82.024790989999985, 28.793872257000032 ], [ -82.024807062999969, 28.793883766000079 ], [ -82.024821, 28.793894634000026 ], [ -82.024834091999935, 28.793905679000034 ], [ -82.024846835999938, 28.793917291000071 ], [ -82.024874515999954, 28.793942836000042 ], [ -82.024900699999989, 28.793966374000036 ], [ -82.024920959999974, 28.793984184000067 ], [ -82.024951218999945, 28.794010154000034 ], [ -82.024979504999976, 28.794033771000045 ], [ -82.025008387999947, 28.794057255000041 ], [ -82.025044858999934, 28.794086029000027 ], [ -82.025073277999979, 28.794107798000027 ], [ -82.025096614999939, 28.794125262000023 ], [ -82.025118674999987, 28.794141437000064 ], [ -82.025145805999955, 28.79416089700004 ], [ -82.025181108999959, 28.794185526000035 ], [ -82.025215437999975, 28.794208749000063 ], [ -82.025239326999952, 28.794224498000062 ], [ -82.02527577099994, 28.794247896000059 ], [ -82.025307013999964, 28.794267367000032 ], [ -82.025368515999958, 28.794304163000049 ], [ -82.025398438999957, 28.794321358000047 ], [ -82.025439797999979, 28.794344386000034 ], [ -82.025478416999988, 28.794365136000067 ], [ -82.025514113999975, 28.794383690000075 ], [ -82.025555653999959, 28.794404542000052 ], [ -82.025594255999977, 28.79442322400007 ], [ -82.025632985999948, 28.79444131200006 ], [ -82.025669907999941, 28.794457959000056 ], [ -82.025704695999934, 28.794473122000056 ], [ -82.025731392999944, 28.79448442100005 ], [ -82.02577049599995, 28.794500451000033 ], [ -82.025828802999968, 28.794523232000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025225903999967, 28.795825938000064 ], [ -82.025261216999979, 28.795809609000059 ], [ -82.025305538999987, 28.795803208000052 ], [ -82.025352646999977, 28.795811158000049 ], [ -82.025420422999957, 28.795834385000035 ], [ -82.025502030999974, 28.795862351000039 ], [ -82.025644375999946, 28.795911133000061 ], [ -82.025734442999976, 28.795939215000033 ], [ -82.025790690999941, 28.795946321000031 ], [ -82.025874342999941, 28.795946671000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024804915999937, 28.795623449000061 ], [ -82.025080341999967, 28.795717839000076 ], [ -82.025128200999973, 28.795734240000058 ], [ -82.025176602999977, 28.795766907000029 ], [ -82.025225903999967, 28.795825938000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025233821999961, 28.797530355000049 ], [ -82.025225962999968, 28.797525606000079 ], [ -82.025216632999957, 28.797518927000056 ], [ -82.025209451999956, 28.797512851000079 ], [ -82.025201247999973, 28.797504330000038 ], [ -82.025195365999934, 28.797497628000031 ], [ -82.025189276999981, 28.797489003000067 ], [ -82.025183391999974, 28.797478074000026 ], [ -82.025178831999938, 28.797468127000059 ], [ -82.025175331999947, 28.797456872000055 ], [ -82.025173081999981, 28.797445052000057 ], [ -82.025172205999979, 28.797431677000077 ], [ -82.025172436999981, 28.797261879000075 ], [ -82.025172309999959, 28.796731881000028 ], [ -82.025172185999963, 28.796219071000053 ], [ -82.025172125999973, 28.795966963000069 ], [ -82.025173370999937, 28.795904044000054 ], [ -82.025191661999941, 28.795859026000073 ], [ -82.025225903999967, 28.795825938000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025233821999961, 28.797530355000049 ], [ -82.025246624999966, 28.797536663000074 ], [ -82.025257606999958, 28.797540861000073 ], [ -82.025267888999963, 28.797543899000061 ], [ -82.025278501999935, 28.797546201000046 ], [ -82.025298139999961, 28.797548386000074 ], [ -82.02533522799996, 28.797548532000064 ], [ -82.025585657999954, 28.79754848500005 ], [ -82.025682686999971, 28.79754854600003 ], [ -82.025744194999959, 28.797550147000038 ], [ -82.025760932999958, 28.797548968000058 ], [ -82.025778962999937, 28.797545541000034 ], [ -82.025794030999975, 28.797540809000054 ], [ -82.025806543999977, 28.797535411000069 ], [ -82.025815274999957, 28.797530735000066 ], [ -82.025829435999981, 28.79752121100006 ], [ -82.025838546999978, 28.797513477000052 ], [ -82.025845886999946, 28.797506014000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025845886999946, 28.797506014000078 ], [ -82.025941686999943, 28.797566738000057 ], [ -82.026006104999965, 28.797576106000065 ], [ -82.026115868999966, 28.797587772000043 ], [ -82.026210391999939, 28.797597819000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025172344999987, 28.798009613000033 ], [ -82.025172289999944, 28.797778509000068 ], [ -82.025172263999934, 28.797671554000033 ], [ -82.025172549999979, 28.797636766000039 ], [ -82.025173937999966, 28.797626983000043 ], [ -82.025177357999951, 28.797614736000071 ], [ -82.025182242999961, 28.797603602000038 ], [ -82.025189256999965, 28.797592240000029 ], [ -82.025233821999961, 28.797530355000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025845886999946, 28.797506014000078 ], [ -82.025850195999965, 28.79750096500004 ], [ -82.025855262999983, 28.797494196000059 ], [ -82.025859877999949, 28.797486976000073 ], [ -82.025863637999976, 28.797480021000069 ], [ -82.025866427999972, 28.797473926000066 ], [ -82.025869168999975, 28.797466704000044 ], [ -82.025872087999971, 28.797456399000055 ], [ -82.025873972999989, 28.79744557600003 ], [ -82.025874709999982, 28.797433252000076 ], [ -82.025874672999976, 28.797283711000034 ], [ -82.025874592999969, 28.796960936000062 ], [ -82.02587447999997, 28.796502559000032 ], [ -82.025874373999955, 28.796074740000051 ], [ -82.025874342999941, 28.795946671000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025874342999941, 28.795946671000024 ], [ -82.025874281999961, 28.795700398000065 ], [ -82.025874257999988, 28.795604903000026 ], [ -82.025874298999952, 28.795580394000069 ], [ -82.02587523699998, 28.795563252000079 ], [ -82.02587738699998, 28.795546181000077 ], [ -82.02588198899997, 28.795524208000074 ], [ -82.025886042999957, 28.795510185000069 ], [ -82.025890836999963, 28.795496609000054 ], [ -82.025902585999972, 28.795470571000067 ], [ -82.025921163999953, 28.795440060000033 ], [ -82.025938759999974, 28.79541507700003 ], [ -82.025949686, 28.795399563000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027397429999951, 28.797623174000023 ], [ -82.027379635999978, 28.79756246900007 ], [ -82.027363925999964, 28.797507348000067 ], [ -82.027357798999958, 28.79747922100006 ], [ -82.027352226999938, 28.797441354000057 ], [ -82.027350629999944, 28.797423265000077 ], [ -82.027347832999965, 28.797364497000046 ], [ -82.027336847999948, 28.797121140000058 ], [ -82.027318205999961, 28.796708230000036 ], [ -82.027306454999973, 28.796447937000039 ], [ -82.027302053999961, 28.796350458000063 ], [ -82.027300754999942, 28.796321676000048 ], [ -82.02729861399996, 28.796290595000073 ], [ -82.027296208999985, 28.796271483000055 ], [ -82.027290905999962, 28.79624244300004 ], [ -82.027285690999975, 28.796221037000066 ], [ -82.027278697999975, 28.796197677000066 ], [ -82.027266736999934, 28.796165502000065 ], [ -82.027253450999979, 28.796136400000023 ], [ -82.027233452999951, 28.796100353000043 ], [ -82.027212909999946, 28.796069550000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027397429999951, 28.797623174000023 ], [ -82.027366707999988, 28.797630456000036 ], [ -82.027312467999934, 28.797641695000038 ], [ -82.02725953199996, 28.797651687000041 ], [ -82.027198541999951, 28.797662024000033 ], [ -82.027137054999969, 28.79767118500007 ], [ -82.027063025999951, 28.797680557000035 ], [ -82.026992868999969, 28.797687785000051 ], [ -82.026883087999977, 28.797695898000029 ], [ -82.026856294999959, 28.797697142000061 ], [ -82.026831369999968, 28.797696621000057 ], [ -82.026807377999944, 28.79769424400007 ], [ -82.026782186999981, 28.797689705000039 ], [ -82.026761410999939, 28.79768430200005 ], [ -82.026732146999962, 28.797673922000058 ], [ -82.026713147999942, 28.797665248000044 ], [ -82.026691281999945, 28.797653086000025 ], [ -82.026672726999948, 28.797640616000024 ], [ -82.026654773999951, 28.797626250000064 ], [ -82.02664032399997, 28.797612632000039 ], [ -82.026623944999983, 28.797594264000054 ], [ -82.026611343999946, 28.797577191000073 ], [ -82.026599256999987, 28.797557158000075 ], [ -82.026589824999974, 28.797537417000058 ], [ -82.026582155999961, 28.797516274000031 ], [ -82.026577319999944, 28.79749765400004 ], [ -82.026573559999974, 28.797473425000078 ], [ -82.026572604999956, 28.797457905000044 ], [ -82.026572506999969, 28.797338963000072 ], [ -82.026572333, 28.796654260000025 ], [ -82.026572220999981, 28.796212948000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032289264999974, 28.799168571000052 ], [ -82.032296855999959, 28.798142726000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031586757999946, 28.799165501000061 ], [ -82.032289264999974, 28.799168571000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031594358999939, 28.798139330000026 ], [ -82.032296855999959, 28.798142726000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031586757999946, 28.799165501000061 ], [ -82.031594358999939, 28.798139330000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027289162999978, 28.794219543000054 ], [ -82.027276165999979, 28.794079107000073 ], [ -82.027271634999977, 28.794009831000039 ], [ -82.02728130099996, 28.793902623000065 ], [ -82.027313721999974, 28.793596584000056 ], [ -82.027362760999949, 28.793133675000036 ], [ -82.027365202999988, 28.793110627000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027401428999951, 28.792539435000037 ], [ -82.027473618999977, 28.792503010000075 ], [ -82.027513101999944, 28.792491168000026 ], [ -82.02759595699996, 28.792487574000063 ], [ -82.027767295, 28.792480995000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026173655999969, 28.792392559000064 ], [ -82.026199151999947, 28.792382104000069 ], [ -82.026230138999949, 28.792376291000039 ], [ -82.026341367999976, 28.792385028000069 ], [ -82.026585203999957, 28.792409508000048 ], [ -82.026937272999987, 28.792444853000063 ], [ -82.027210841999988, 28.792472315000055 ], [ -82.027301315999978, 28.792481398000064 ], [ -82.027335542999936, 28.792488997000078 ], [ -82.027376869999955, 28.792512117000058 ], [ -82.027401428999951, 28.792539435000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02615622899998, 28.792975330000047 ], [ -82.026134101999958, 28.792958381000062 ], [ -82.026108901999976, 28.792923478000034 ], [ -82.026099360999979, 28.792887704000066 ], [ -82.026103605999936, 28.792706722000048 ], [ -82.026109060999943, 28.79250373800005 ], [ -82.026116382999987, 28.792455269000072 ], [ -82.026134132999971, 28.792424736000044 ], [ -82.026173655999969, 28.792392559000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02608752499998, 28.793305125000074 ], [ -82.026090196999974, 28.793205688000057 ], [ -82.026093492999962, 28.793083051000053 ], [ -82.026095706999968, 28.793065915000057 ], [ -82.026112857999976, 28.793030581000039 ], [ -82.02615622899998, 28.792975330000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02615622899998, 28.792975330000047 ], [ -82.026187921999963, 28.792989533000025 ], [ -82.026216671999975, 28.792995325000049 ], [ -82.026367397999934, 28.793010458000026 ], [ -82.026690651999957, 28.793042909000064 ], [ -82.026991586999941, 28.793073121000077 ], [ -82.02718665499998, 28.79309270400006 ], [ -82.027365202999988, 28.793110627000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020885153999984, 28.793156261000036 ], [ -82.021298121999962, 28.793251259000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021566598999982, 28.795220933000053 ], [ -82.021549, 28.795214589000068 ], [ -82.021520301999942, 28.795201214000031 ], [ -82.021499378999977, 28.795188860000053 ], [ -82.021486139, 28.795179693000023 ], [ -82.021469922999984, 28.795166760000029 ], [ -82.021449986999983, 28.795147627000063 ], [ -82.021439035999947, 28.795135126000048 ], [ -82.021427439999968, 28.795119781000039 ], [ -82.02139865099997, 28.795063471000049 ], [ -82.021386610999969, 28.795007877000046 ], [ -82.021357656999953, 28.794804438000028 ], [ -82.021308628999975, 28.794459964000055 ], [ -82.021276361999981, 28.794233253000073 ], [ -82.021243793999986, 28.794004428000051 ], [ -82.021235640999976, 28.793946757000072 ], [ -82.021228858999962, 28.793887697000059 ], [ -82.021224252999957, 28.793827545000056 ], [ -82.021221806999961, 28.793758328000024 ], [ -82.021221947999948, 28.793707547000054 ], [ -82.021223807999945, 28.793655197000078 ], [ -82.021226807999938, 28.79361016200005 ], [ -82.021235698999988, 28.793527467000047 ], [ -82.021250049999935, 28.793439393000028 ], [ -82.021264924999969, 28.79337018700005 ], [ -82.021276765999971, 28.793323588000078 ], [ -82.021298121999962, 28.793251259000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02201327399996, 28.79641074500006 ], [ -82.022247818999972, 28.796109285000057 ], [ -82.022372536999967, 28.79597516900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021566598999982, 28.795220933000053 ], [ -82.021487816999979, 28.795405421000055 ], [ -82.021464722999951, 28.795459511000047 ], [ -82.021448083999985, 28.795500658000037 ], [ -82.021425493999971, 28.795564539000054 ], [ -82.02140948999994, 28.795618061000027 ], [ -82.021397404999959, 28.795665749000079 ], [ -82.02138439099997, 28.795729336000079 ], [ -82.021375575999969, 28.795787078000046 ], [ -82.021370930999979, 28.795829041000047 ], [ -82.021367648999956, 28.795872874000054 ], [ -82.021366075999936, 28.795911538000041 ], [ -82.021365788999958, 28.795955684000035 ], [ -82.021366769999986, 28.795992221000063 ], [ -82.021368372999973, 28.796017238000047 ], [ -82.021369635999974, 28.796026749000077 ], [ -82.021373911999945, 28.796047547000057 ], [ -82.021381085999963, 28.796070324000027 ], [ -82.021389592999981, 28.796090102000051 ], [ -82.021398635999958, 28.796106873000042 ], [ -82.021411589999957, 28.79612645900005 ], [ -82.021427209999956, 28.79614564600007 ], [ -82.021441320999941, 28.796160124000039 ], [ -82.021460151999975, 28.796176370000069 ], [ -82.021479719999945, 28.796190370000033 ], [ -82.021500962999937, 28.796202920000042 ], [ -82.021517461999963, 28.796211061000065 ], [ -82.021528868999951, 28.796215962000076 ], [ -82.021546839999985, 28.796222578000027 ], [ -82.021587006999937, 28.79623401200007 ], [ -82.021671282999989, 28.796257808000064 ], [ -82.021727472999942, 28.796274353000058 ], [ -82.021770295999943, 28.796288203000074 ], [ -82.02180507099996, 28.796301024000059 ], [ -82.021837007999977, 28.796314107000057 ], [ -82.021870218999936, 28.796329116000038 ], [ -82.021905648999962, 28.796346808000067 ], [ -82.021934181999939, 28.796362404000035 ], [ -82.02196205499996, 28.79637888700006 ], [ -82.02201327399996, 28.79641074500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02201327399996, 28.79641074500006 ], [ -82.022073404999958, 28.796446285000059 ], [ -82.022114958999964, 28.796469620000039 ], [ -82.022188926999945, 28.796508803000052 ], [ -82.022233024999935, 28.796530790000077 ], [ -82.022270243999969, 28.796548580000035 ], [ -82.022315640999977, 28.796569355000031 ], [ -82.022359962999985, 28.796588688000043 ], [ -82.022405374999948, 28.796607548000054 ], [ -82.022444305999954, 28.796622973000069 ], [ -82.022497069999986, 28.796642812000073 ], [ -82.022538475999966, 28.796657540000069 ], [ -82.022578998999961, 28.796671254000046 ], [ -82.022605647999967, 28.796678652000026 ], [ -82.022626788999958, 28.796682739000062 ], [ -82.02265102299998, 28.796685596000032 ], [ -82.022675769999978, 28.796686567000052 ], [ -82.022696707999955, 28.796685868000054 ], [ -82.022720728999957, 28.796683338000037 ], [ -82.022737857999971, 28.796680372000026 ], [ -82.022754031999966, 28.796676651000041 ], [ -82.022773693999966, 28.79667085400007 ], [ -82.022794015999978, 28.796663287000058 ], [ -82.022809763999987, 28.796656215000041 ], [ -82.022824061999984, 28.796648782000034 ], [ -82.022836396999935, 28.796641511000075 ], [ -82.022848863999968, 28.796633256000064 ], [ -82.022861266999939, 28.796624020000024 ], [ -82.022875334999981, 28.796612094000068 ], [ -82.022887295999965, 28.796600497000043 ], [ -82.022900303999961, 28.796585962000051 ], [ -82.022912800999961, 28.796569496000075 ], [ -82.022919945999945, 28.796558584000024 ], [ -82.022928755999942, 28.796544008000069 ], [ -82.022951326999987, 28.796504955000046 ], [ -82.022962245999963, 28.796485091000079 ], [ -82.022979254999939, 28.796452713000065 ], [ -82.022996661999969, 28.796417527000074 ], [ -82.023020815999985, 28.796364575000041 ], [ -82.023045842999977, 28.79630323400005 ], [ -82.023064338999973, 28.796252200000026 ], [ -82.023079820999953, 28.796204362000026 ], [ -82.023088654999981, 28.796174295000071 ], [ -82.023097160999953, 28.796142863000057 ], [ -82.023106816999984, 28.796103344000073 ], [ -82.023117307999939, 28.796053818000075 ], [ -82.023122958999977, 28.796022923000066 ], [ -82.02312724899997, 28.795996527000057 ], [ -82.023134264999953, 28.795944475000056 ], [ -82.023138148999976, 28.795906946000059 ], [ -82.023142089999965, 28.795851653000057 ], [ -82.023143697999956, 28.795808567000051 ], [ -82.023144025999954, 28.795765290000077 ], [ -82.023143473999937, 28.79573447000007 ], [ -82.02314017499998, 28.795669647000068 ], [ -82.02313597899996, 28.79562277000008 ], [ -82.02313133499996, 28.795583873000055 ], [ -82.023121271999969, 28.795519289000026 ], [ -82.023104857999954, 28.795440072000076 ], [ -82.02306912499995, 28.795300088000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024332851999986, 28.797261781000032 ], [ -82.024345063999988, 28.797078606000071 ], [ -82.024346212999944, 28.796734429000026 ], [ -82.024346175999938, 28.796575865000079 ], [ -82.02434504699994, 28.796542912000064 ], [ -82.024342144999935, 28.796513578000031 ], [ -82.024337253999988, 28.796483326000043 ], [ -82.024331107999956, 28.796455871000035 ], [ -82.024322379999944, 28.796425576000047 ], [ -82.024313291999988, 28.796399265000048 ], [ -82.024304174999941, 28.796375470000044 ], [ -82.024293926999974, 28.796351088000051 ], [ -82.024282300999971, 28.796325801000023 ], [ -82.024267005999945, 28.796295559000043 ], [ -82.024247057999958, 28.796260131000054 ], [ -82.024228877999974, 28.796230942000079 ], [ -82.024211780999963, 28.796205669000074 ], [ -82.024190107999971, 28.796176152000044 ], [ -82.024168589999988, 28.796149196000044 ], [ -82.024155230999952, 28.796133477000069 ], [ -82.024140601999989, 28.796117067000068 ], [ -82.024118413999986, 28.796093621000068 ], [ -82.024086422999972, 28.796062515000074 ], [ -82.024049432999959, 28.796029721000025 ], [ -82.024038639999958, 28.796019856000044 ], [ -82.024020912999958, 28.796002523000027 ], [ -82.024002171999939, 28.795982456000047 ], [ -82.023980283999947, 28.795956303000025 ], [ -82.023960877999968, 28.795930055000042 ], [ -82.023939585999983, 28.795896844000026 ], [ -82.023930595999957, 28.795880994000072 ], [ -82.023919215999967, 28.795858853000027 ], [ -82.023909480999976, 28.795837513000038 ], [ -82.023896132999937, 28.795802963000028 ], [ -82.023887877999982, 28.795776697000065 ], [ -82.023880629999951, 28.795747944000027 ], [ -82.023875259999954, 28.795719655000028 ], [ -82.023871552999935, 28.795690961000048 ], [ -82.023869843999989, 28.795668370000044 ], [ -82.023869185999956, 28.795643478000045 ], [ -82.02386944999995, 28.795627126000056 ], [ -82.023870503999945, 28.795607389000054 ], [ -82.023873656999967, 28.795577412000057 ], [ -82.023877308999943, 28.795554689000028 ], [ -82.023896608999962, 28.79545031400005 ], [ -82.023920181999983, 28.795322835000036 ], [ -82.02392552799995, 28.795293237000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035954365999942, 28.798031382000033 ], [ -82.035959237999975, 28.798030218000065 ], [ -82.036003556999958, 28.798018164000041 ], [ -82.036047196999959, 28.798004950000063 ], [ -82.036097326999936, 28.79798723600004 ], [ -82.036153378999984, 28.797963781000078 ], [ -82.036207524999952, 28.79793711800005 ], [ -82.036251024999956, 28.797912534000034 ], [ -82.036297583999954, 28.797882709000078 ], [ -82.036340760999963, 28.797851358000059 ], [ -82.036386659999948, 28.797813479000069 ], [ -82.036425967999946, 28.797776631000033 ], [ -82.036533985999938, 28.797670656000037 ], [ -82.036672335999981, 28.797534918000053 ], [ -82.036710490999951, 28.797495694000077 ], [ -82.036741905999975, 28.797459298000035 ], [ -82.036773595999989, 28.79741778600004 ], [ -82.036784810999961, 28.797401601000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035939681999935, 28.798991070000056 ], [ -82.035946512999942, 28.798977596000043 ], [ -82.035955151999985, 28.798954125000023 ], [ -82.035960705999969, 28.798931886000048 ], [ -82.035964025999988, 28.798907682000049 ], [ -82.035964939999985, 28.798886039000024 ], [ -82.035970608999946, 28.79869493800004 ], [ -82.035977310999954, 28.798469042000079 ], [ -82.03598212199995, 28.798306831000048 ], [ -82.035985785999969, 28.798183166000058 ], [ -82.035985448999952, 28.798160123000059 ], [ -82.035983442999964, 28.798137798000027 ], [ -82.035977044999981, 28.798103382000079 ], [ -82.03597076899996, 28.798081370000034 ], [ -82.035954365999942, 28.798031382000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035276662999934, 28.798067795000065 ], [ -82.035321332999956, 28.798074275000033 ], [ -82.035388893999936, 28.798080631000062 ], [ -82.035512949999941, 28.798085534000052 ], [ -82.035590042999956, 28.798084201000052 ], [ -82.035659522999936, 28.798080116000051 ], [ -82.03572178099995, 28.798074115000077 ], [ -82.035788783999976, 28.798065147000045 ], [ -82.035848379999948, 28.798054946000036 ], [ -82.035899864999976, 28.798044408000067 ], [ -82.035954365999942, 28.798031382000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034637493999981, 28.797843818000047 ], [ -82.034652305999941, 28.797853073000056 ], [ -82.034702838999976, 28.797881653000047 ], [ -82.034787689999973, 28.797924468000076 ], [ -82.03484864099994, 28.797951539000053 ], [ -82.034934475999989, 28.797984862000078 ], [ -82.034989920999976, 28.798003582000035 ], [ -82.035104847999946, 28.798035829000071 ], [ -82.035251165999966, 28.798064878000048 ], [ -82.035276662999934, 28.798067795000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035232986999972, 28.799133270000027 ], [ -82.035589706999986, 28.799134820000063 ], [ -82.035700764999945, 28.799134930000037 ], [ -82.035727702999964, 28.799132576000034 ], [ -82.035749739999972, 28.799128884000027 ], [ -82.035796390999963, 28.79911541000007 ], [ -82.03582013099998, 28.799105237000049 ], [ -82.035844782999959, 28.799091850000025 ], [ -82.035870165999938, 28.799074408000024 ], [ -82.035893236999982, 28.799054349000073 ], [ -82.035914931999969, 28.799030266000045 ], [ -82.035933818999979, 28.799002634000033 ], [ -82.035939681999935, 28.798991070000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034620832999963, 28.795481616000075 ], [ -82.034646410999983, 28.795508705000032 ], [ -82.034868315999972, 28.79574371800004 ], [ -82.034921014999952, 28.795799933000069 ], [ -82.034936663999986, 28.795820174000028 ], [ -82.034946826999942, 28.795836165000026 ], [ -82.034955209999964, 28.795851961000039 ], [ -82.034964240999955, 28.795873429000039 ], [ -82.034969760999957, 28.795890931000031 ], [ -82.034973584999989, 28.795907625000041 ], [ -82.034976962999963, 28.795935124000039 ], [ -82.034977319999939, 28.795945981000045 ], [ -82.034976627999981, 28.795964999000034 ], [ -82.034973043999969, 28.795990466000035 ], [ -82.034966688999987, 28.796014735000028 ], [ -82.034958794999966, 28.796035550000056 ], [ -82.034949324999957, 28.796054740000045 ], [ -82.034941969999977, 28.796067143000073 ], [ -82.034926965999944, 28.796088190000035 ], [ -82.034914396999966, 28.796102785000073 ], [ -82.03485309399997, 28.796162742000035 ], [ -82.034706052999979, 28.796305434000033 ], [ -82.034600056999977, 28.796408292000024 ], [ -82.034516928999949, 28.796489179000048 ], [ -82.03447900499998, 28.796529074000034 ], [ -82.034445369999958, 28.796567947000028 ], [ -82.034417016999953, 28.796603745000027 ], [ -82.03439425199997, 28.796634857000072 ], [ -82.034366942999952, 28.796675520000065 ], [ -82.034341065999968, 28.796718175000024 ], [ -82.034319967999977, 28.796756712000047 ], [ -82.034303499999965, 28.796789772000068 ], [ -82.03428697399994, 28.796826305000025 ], [ -82.034268232999977, 28.796873161000065 ], [ -82.03425608799995, 28.796907691000058 ], [ -82.034244670999954, 28.796943532000057 ], [ -82.03423642499996, 28.796971942000027 ], [ -82.034228137999946, 28.797003285000073 ], [ -82.034219406999966, 28.797040406000065 ], [ -82.034208833999969, 28.797094012000059 ], [ -82.034203205999972, 28.797130761000062 ], [ -82.034199307999984, 28.797175906000064 ], [ -82.034198643999957, 28.797213767000073 ], [ -82.034200556999963, 28.797254277000036 ], [ -82.034203228999957, 28.797280339000054 ], [ -82.034206231999974, 28.797301451000067 ], [ -82.034210327999972, 28.797324263000064 ], [ -82.034217129999945, 28.797354430000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034217129999945, 28.797354430000041 ], [ -82.034223260999966, 28.797378942000023 ], [ -82.034231598999952, 28.797403296000027 ], [ -82.034241492999968, 28.797430273000032 ], [ -82.034254878999946, 28.797461828000053 ], [ -82.03426755299995, 28.797488029000078 ], [ -82.034277706999944, 28.797507085000063 ], [ -82.034291019999955, 28.797530008000024 ], [ -82.03430597199997, 28.797553487000073 ], [ -82.034320353999988, 28.797574223000026 ], [ -82.034341616999939, 28.797602164000068 ], [ -82.034359406999954, 28.797623465000072 ], [ -82.034375803999978, 28.797641680000027 ], [ -82.034408544999962, 28.797674620000066 ], [ -82.034433846999946, 28.797697413000037 ], [ -82.03446370599994, 28.797722275000069 ], [ -82.034505814999989, 28.797755197000072 ], [ -82.034525331999987, 28.797769667000068 ], [ -82.034583582999971, 28.797810132000052 ], [ -82.034637493999981, 28.797843818000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034217129999945, 28.797354430000041 ], [ -82.033756733999951, 28.797445546000063 ], [ -82.033583031999967, 28.797479696000039 ], [ -82.033515616999978, 28.797490570000036 ], [ -82.033481963999975, 28.797494233000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033481963999975, 28.797494233000066 ], [ -82.033470881999961, 28.797407976000045 ], [ -82.033465759999956, 28.797306488000061 ], [ -82.03346443199996, 28.797224619000076 ], [ -82.033478824999975, 28.797091919000025 ], [ -82.033488187999978, 28.797025224000038 ], [ -82.033497240999964, 28.796973112000046 ], [ -82.033507619999966, 28.796921919000056 ], [ -82.033533075999969, 28.796823893000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032914904999984, 28.796466140000064 ], [ -82.032943477999936, 28.796486335000054 ], [ -82.033077373999959, 28.796580972000072 ], [ -82.033193051999945, 28.796662731000026 ], [ -82.03330595999995, 28.796742530000074 ], [ -82.03333543399998, 28.79676128400007 ], [ -82.033358721999946, 28.796773694000024 ], [ -82.033380639999962, 28.796783686000026 ], [ -82.033408710999936, 28.796794338000041 ], [ -82.03343936899995, 28.796803472000079 ], [ -82.033533075999969, 28.796823893000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033481963999975, 28.797494233000066 ], [ -82.033403414999952, 28.797502783000027 ], [ -82.03331819899995, 28.797507245000077 ], [ -82.033135787999981, 28.797507332000066 ], [ -82.032740309999951, 28.797505422000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032740309999951, 28.797505422000029 ], [ -82.032631721999962, 28.797504898000057 ], [ -82.032097782999983, 28.797502318000056 ], [ -82.031740022999941, 28.797500589000038 ], [ -82.031599095, 28.797499907000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032296855999959, 28.798142726000037 ], [ -82.032692104999967, 28.798144636000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031594358999939, 28.798139330000026 ], [ -82.031599095, 28.797499907000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031232380999938, 28.799163950000036 ], [ -82.031586757999946, 28.799165501000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029509311999959, 28.796461458000067 ], [ -82.029458783999985, 28.796265619000053 ], [ -82.029395586999954, 28.796000161000052 ], [ -82.029377185999977, 28.79590812400005 ], [ -82.029346378999946, 28.795727627000076 ], [ -82.029314708999948, 28.795473680000043 ], [ -82.029297148999945, 28.795233463000045 ], [ -82.029291982999951, 28.795066365000025 ], [ -82.029294167999979, 28.794840320000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029617607999967, 28.796881185000075 ], [ -82.029580028999987, 28.796735535000039 ], [ -82.029509311999959, 28.796461458000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029885306999972, 28.793794024000078 ], [ -82.030008491999979, 28.79371496300007 ], [ -82.030125344999988, 28.793639963000032 ], [ -82.030254673999934, 28.79355713800004 ], [ -82.030299357, 28.793529696000064 ], [ -82.030430229, 28.793455657000038 ], [ -82.03048617099995, 28.793426712000041 ], [ -82.030531965999955, 28.793404154000029 ], [ -82.03060243799996, 28.793371360000037 ], [ -82.03067376599995, 28.793340446000059 ], [ -82.030743470999937, 28.793312358000037 ], [ -82.030810391999978, 28.793286888000068 ], [ -82.030894789999934, 28.793258238000078 ], [ -82.030943911999941, 28.793242602000078 ], [ -82.031015977999971, 28.79322131400005 ], [ -82.031071667999981, 28.793206176000069 ], [ -82.03113327799997, 28.793190733000074 ], [ -82.031180440999947, 28.79317982200007 ], [ -82.031250326999952, 28.793165547000058 ], [ -82.031253054, 28.793164539000031 ], [ -82.031304623999972, 28.793155035000041 ], [ -82.031352156999958, 28.793146592000028 ], [ -82.031406646999983, 28.793138130000045 ], [ -82.031508878999944, 28.793124903000034 ], [ -82.031605995999939, 28.793115497000031 ], [ -82.031682423999939, 28.793110235000029 ], [ -82.031787251999958, 28.793105299000047 ], [ -82.031888673999958, 28.793102027000032 ], [ -82.032009271999982, 28.793100039000024 ], [ -82.032135555999957, 28.793100173000028 ], [ -82.032227151999962, 28.793101687000046 ], [ -82.032356417999949, 28.793105854000032 ], [ -82.032487671999945, 28.793112523000048 ], [ -82.032622276999973, 28.793121919000043 ], [ -82.032762485999967, 28.79313447800007 ], [ -82.032827500999986, 28.793141603000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028568266999969, 28.795108251000045 ], [ -82.02856812899995, 28.794894759000044 ], [ -82.028567936999934, 28.794770377000077 ], [ -82.028564875999962, 28.79464630800004 ], [ -82.028560292999941, 28.794486168000049 ], [ -82.028554963999966, 28.794300042000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024195124999949, 28.794358791000036 ], [ -82.024379777999968, 28.79445983200003 ], [ -82.024497763999989, 28.794528830000047 ], [ -82.024606104999975, 28.794598446000066 ], [ -82.02467969099996, 28.794649450000065 ], [ -82.024773982999989, 28.794714635000048 ], [ -82.024916287999986, 28.794805120000035 ], [ -82.025121226999943, 28.794923955000058 ], [ -82.025289565999969, 28.795020706000059 ], [ -82.025472473999969, 28.795125832000053 ], [ -82.025571781999986, 28.795182909000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025571781999986, 28.795182909000061 ], [ -82.025693777999948, 28.795253025000079 ], [ -82.025890973999935, 28.795366362000038 ], [ -82.025930071999937, 28.795388780000053 ], [ -82.025949686, 28.795399563000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025828802999968, 28.794523232000074 ], [ -82.025837310999975, 28.794505254000057 ], [ -82.02589851, 28.794380114000035 ], [ -82.026029511, 28.79411225900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026029511, 28.79411225900003 ], [ -82.026051817999985, 28.794121121000046 ], [ -82.02616719699995, 28.794160711000075 ], [ -82.026273692999951, 28.794192129000066 ], [ -82.026376261999985, 28.794217868000032 ], [ -82.026494684999989, 28.794240368000033 ], [ -82.026604875999965, 28.794254039000066 ], [ -82.02671300999998, 28.794260851000047 ], [ -82.026816799999949, 28.794261326000026 ], [ -82.026929299999949, 28.794255140000075 ], [ -82.027128549999986, 28.794234846000052 ], [ -82.027289162999978, 28.794219543000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024849985999936, 28.793190278000054 ], [ -82.024881862999962, 28.793229993000068 ], [ -82.024969101999943, 28.793339314000036 ], [ -82.025056718999963, 28.793445808000058 ], [ -82.025133540999946, 28.793529545000069 ], [ -82.025201572999947, 28.79359710500006 ], [ -82.025280691999967, 28.793669006000073 ], [ -82.025383893999958, 28.793753518000074 ], [ -82.025507080999944, 28.793842631000075 ], [ -82.025595191999969, 28.793899534000047 ], [ -82.025707573999966, 28.79396478600006 ], [ -82.025825669999961, 28.794025364000049 ], [ -82.025931856999989, 28.794073465000054 ], [ -82.026029511, 28.79411225900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024466204999953, 28.793783441000073 ], [ -82.024466369999971, 28.793780727000069 ], [ -82.024468216999935, 28.793747089000078 ], [ -82.024470923999957, 28.793716183000072 ], [ -82.024476669999956, 28.793676952000055 ], [ -82.024483674999942, 28.793643405000068 ], [ -82.024490698999955, 28.793616584000063 ], [ -82.024499626999955, 28.79358798100003 ], [ -82.024511498999971, 28.793555828000024 ], [ -82.024525970999946, 28.793522470000028 ], [ -82.024545708999938, 28.793483733000073 ], [ -82.024566106999941, 28.793449303000045 ], [ -82.024590903999979, 28.793412877000037 ], [ -82.024617257999978, 28.79337901100007 ], [ -82.024648708999962, 28.793343568000068 ], [ -82.024682632999941, 28.793310099000053 ], [ -82.024722661999988, 28.793275669000025 ], [ -82.024768165999944, 28.79324194000003 ], [ -82.024849985999936, 28.793190278000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024195123999959, 28.794358791000036 ], [ -82.024233184999957, 28.794304762000024 ], [ -82.02431089199996, 28.794194455000024 ], [ -82.024353596999958, 28.794133834000036 ], [ -82.024416179999946, 28.794034999000075 ], [ -82.024433811999984, 28.793994409000049 ], [ -82.024449267999955, 28.793945205000057 ], [ -82.024459917999934, 28.793886385000064 ], [ -82.024466204999953, 28.793783441000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02392552799995, 28.795293237000067 ], [ -82.023930942999982, 28.795263250000062 ], [ -82.023936960999947, 28.795224899000061 ], [ -82.023939807999966, 28.79520461900006 ], [ -82.023944185999937, 28.79516955400004 ], [ -82.023948060999942, 28.79513253600004 ], [ -82.023951131999979, 28.795096098000045 ], [ -82.023957819999964, 28.79500590400005 ], [ -82.023964365999973, 28.794917636000037 ], [ -82.023970205999944, 28.794843314000047 ], [ -82.023973144999957, 28.79481908200006 ], [ -82.023977246999948, 28.794792923000045 ], [ -82.023982970999953, 28.794763749000026 ], [ -82.023991275999947, 28.794729486000051 ], [ -82.024003083999958, 28.794689818000052 ], [ -82.024012479999953, 28.794662904000063 ], [ -82.02402671699997, 28.794627258000048 ], [ -82.024039542999958, 28.794598946000065 ], [ -82.024052463999965, 28.794573129000071 ], [ -82.024066337999955, 28.79454779100007 ], [ -82.024080074999972, 28.794524677000027 ], [ -82.024107056999981, 28.794483806000073 ], [ -82.024183948999962, 28.794374654000023 ], [ -82.024195123999959, 28.794358791000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02392552799995, 28.795293237000067 ], [ -82.023752886999944, 28.795268465000049 ], [ -82.023606704999963, 28.795247489000076 ], [ -82.023561014999984, 28.795241138000051 ], [ -82.023505005999937, 28.795236128000056 ], [ -82.023458648999963, 28.795234683000047 ], [ -82.023410615999978, 28.79523574500007 ], [ -82.023370586999988, 28.795238630000028 ], [ -82.023333795999974, 28.795242904000077 ], [ -82.02329554399995, 28.795249029000047 ], [ -82.023262898999974, 28.795255647000033 ], [ -82.023233886999947, 28.795262635000029 ], [ -82.023160707999978, 28.795280620000028 ], [ -82.023108531999981, 28.795292259000064 ], [ -82.02306912499995, 28.795300088000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02306912499995, 28.795300088000033 ], [ -82.023023200999944, 28.795309210000028 ], [ -82.022958612999957, 28.795320352000033 ], [ -82.022879560999968, 28.795332041000052 ], [ -82.022798204999958, 28.795341865000069 ], [ -82.022671656999989, 28.795352758000035 ], [ -82.022600088, 28.795356579000043 ], [ -82.022506476999979, 28.79535904200003 ], [ -82.022408721999966, 28.795358557000043 ], [ -82.022314780999977, 28.795355147000066 ], [ -82.02220142799996, 28.79534717000007 ], [ -82.022093507999955, 28.795335614000066 ], [ -82.022013416999982, 28.795324506000043 ], [ -82.021927000999938, 28.795310062000055 ], [ -82.021875424999962, 28.795300207000025 ], [ -82.021818461999942, 28.795288234000054 ], [ -82.021753180999951, 28.795273081000062 ], [ -82.021689188999972, 28.795256717000029 ], [ -82.02165202499998, 28.795246517000066 ], [ -82.021598969999957, 28.795231046000026 ], [ -82.021569459999967, 28.795221965000053 ], [ -82.021566598999982, 28.795220933000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021298121999962, 28.793251259000044 ], [ -82.021316987999967, 28.793195881000031 ], [ -82.021339869999963, 28.793136127000025 ], [ -82.021393294999939, 28.793017821000035 ], [ -82.021453899999983, 28.792906923000032 ], [ -82.021530988999984, 28.792788658000063 ], [ -82.021614803999967, 28.792679847000045 ], [ -82.021710415999962, 28.792573726000057 ], [ -82.021824122999988, 28.792459358000031 ], [ -82.021992975999979, 28.792289779000043 ], [ -82.022168736999959, 28.792113124000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022168736999959, 28.792113124000025 ], [ -82.02224266099995, 28.792156506000026 ], [ -82.02235746599996, 28.792217637000078 ], [ -82.022458575999963, 28.792266787000074 ], [ -82.022579837999956, 28.792320319000055 ], [ -82.022697466999944, 28.792366935000075 ], [ -82.022848188999944, 28.792419464000034 ], [ -82.022924026999988, 28.792442349000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026173655999969, 28.792392559000064 ], [ -82.026155379999977, 28.79236581400005 ], [ -82.026130751999972, 28.792329771000027 ], [ -82.026123207999944, 28.792316514000049 ], [ -82.026118180999958, 28.792302824000046 ], [ -82.026115962999938, 28.792292203000045 ], [ -82.026115130999983, 28.792277851000051 ], [ -82.026121546999946, 28.792039095000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027365202999988, 28.793110627000033 ], [ -82.027413256999978, 28.792657009000038 ], [ -82.027418406999971, 28.792608393000023 ], [ -82.027415394999935, 28.792570542000078 ], [ -82.027401428999951, 28.792539435000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027289162999978, 28.794219543000054 ], [ -82.027415486999985, 28.794213547000027 ], [ -82.027510718999963, 28.794213076000062 ], [ -82.027632253999968, 28.794217526000068 ], [ -82.027740626999957, 28.794226301000037 ], [ -82.027842435999958, 28.794238526000072 ], [ -82.027935233999983, 28.794250549000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028617852999957, 28.795736433000059 ], [ -82.028606526999965, 28.795651554000074 ], [ -82.028587090999963, 28.795463827000049 ], [ -82.028574857999956, 28.795288141000071 ], [ -82.028568266999969, 28.795108251000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026572220999981, 28.796212948000061 ], [ -82.026646661999962, 28.796212933000049 ], [ -82.026692095999977, 28.796212897000032 ], [ -82.026723950999951, 28.796212187000037 ], [ -82.026754619999963, 28.796210598000073 ], [ -82.026785756999971, 28.79620807200007 ], [ -82.02681520699997, 28.796204831000068 ], [ -82.026849745999982, 28.796199956000066 ], [ -82.026880088999974, 28.796194703000026 ], [ -82.026910190999956, 28.796188577000066 ], [ -82.026938550999944, 28.79618195200004 ], [ -82.026971313999979, 28.796173241000076 ], [ -82.02700867599998, 28.796161876000042 ], [ -82.027044474999968, 28.796149494000076 ], [ -82.027063751999947, 28.796142196000062 ], [ -82.027102457999945, 28.796126149000031 ], [ -82.027125676999958, 28.796115586000042 ], [ -82.027155639999989, 28.796100859000035 ], [ -82.027212909999946, 28.796069550000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026572220999981, 28.796212948000061 ], [ -82.02657219699995, 28.796118532000037 ], [ -82.026572052999938, 28.795577207000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027900814999953, 28.797424271000068 ], [ -82.027719986999955, 28.797506246000069 ], [ -82.027610468999967, 28.797560136000072 ], [ -82.027580324999974, 28.797572306000063 ], [ -82.027529914999946, 28.797589725000023 ], [ -82.027491987999952, 28.797600560000035 ], [ -82.027428763999978, 28.797616343000072 ], [ -82.027397429999951, 28.797623174000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025949686, 28.795399563000046 ], [ -82.025962296999978, 28.795406496000055 ], [ -82.025993439, 28.795422722000069 ], [ -82.026028899999972, 28.795440178000035 ], [ -82.026089500999944, 28.795467613000028 ], [ -82.026134185999979, 28.795486005000043 ], [ -82.026186149999944, 28.795505533000039 ], [ -82.026225397999951, 28.795519007000053 ], [ -82.026254242999983, 28.795528233000027 ], [ -82.026308651999955, 28.795544122000024 ], [ -82.026349662999962, 28.795554826000057 ], [ -82.026366314999962, 28.795558498000048 ], [ -82.026389277999954, 28.795563562000041 ], [ -82.026415934999989, 28.795568245000027 ], [ -82.026437746999989, 28.795571381000059 ], [ -82.02646877799998, 28.795574783000063 ], [ -82.02648929999998, 28.795576357000073 ], [ -82.026515189999941, 28.795577585000046 ], [ -82.026539371999945, 28.795577970000068 ], [ -82.02655975, 28.795577725000044 ], [ -82.026572052999938, 28.795577207000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031876236999949, 28.795561630000066 ], [ -82.032061365999937, 28.795515752000028 ], [ -82.032132618999981, 28.795497945000079 ], [ -82.032177320999949, 28.795488671000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030201299999987, 28.796114837000061 ], [ -82.030192946999989, 28.796112059000052 ], [ -82.030183350999948, 28.796108136000043 ], [ -82.030174365999983, 28.79610367600003 ], [ -82.030164659999969, 28.796097872000075 ], [ -82.030153010999982, 28.796089266000024 ], [ -82.030145643999958, 28.796082654000031 ], [ -82.030139334999944, 28.796076047000042 ], [ -82.030133329999956, 28.796068696000077 ], [ -82.030128632999947, 28.796061963000056 ], [ -82.030122928999958, 28.796052068000051 ], [ -82.030118773999959, 28.79604290900005 ], [ -82.030115487999979, 28.796033399000066 ], [ -82.030104750999953, 28.795989647000056 ], [ -82.030090275999953, 28.795926554000062 ], [ -82.030079411999964, 28.79587599000007 ], [ -82.030060133999939, 28.795777555000029 ], [ -82.030048720999957, 28.795712408000043 ], [ -82.030037738999965, 28.795643048000045 ], [ -82.030026785999951, 28.795564770000055 ], [ -82.030020678999961, 28.795515143000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029294167999979, 28.794840320000048 ], [ -82.029427506, 28.79484373400004 ], [ -82.029582223999967, 28.794846885000027 ], [ -82.029687639999963, 28.794845760000044 ], [ -82.029800168999941, 28.79484109200007 ], [ -82.029866424999966, 28.794836664000059 ], [ -82.029905123999981, 28.794833499000049 ], [ -82.029959566999935, 28.794828320000079 ], [ -82.02997643599997, 28.794826432000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034141055999953, 28.794993937000072 ], [ -82.034149063999962, 28.795000869000035 ], [ -82.034205102999977, 28.795051298000033 ], [ -82.034249280999973, 28.795092942000053 ], [ -82.034429627999941, 28.795279116000074 ], [ -82.034620832999963, 28.795481616000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033684551999954, 28.795436936000044 ], [ -82.033854105999978, 28.795272401000034 ], [ -82.034141055999953, 28.794993937000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033060293999938, 28.796107948000042 ], [ -82.033125261999942, 28.796036328000071 ], [ -82.033166997999956, 28.795988889000057 ], [ -82.033214622999935, 28.795932934000064 ], [ -82.033261227999958, 28.79587676400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031993617999944, 28.794924703000049 ], [ -82.03198439099998, 28.794896376000054 ], [ -82.031901512, 28.794647682000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033576719999985, 28.794582106000064 ], [ -82.033596312999975, 28.794593677000023 ], [ -82.033691257999976, 28.794657112000039 ], [ -82.033766369999967, 28.794710200000054 ], [ -82.033922465999979, 28.794820678000065 ], [ -82.033970685999975, 28.794856128000049 ], [ -82.034016165999958, 28.794890926000051 ], [ -82.034072705999961, 28.794936133000078 ], [ -82.034120092999956, 28.794975788000045 ], [ -82.034141055999953, 28.794993937000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028554963999966, 28.794300042000032 ], [ -82.028560013999936, 28.794299896000041 ], [ -82.028613648999965, 28.794297021000034 ], [ -82.028660833999936, 28.794293387000039 ], [ -82.028784176999977, 28.794278957000074 ], [ -82.028892021, 28.794260370000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032287075999989, 28.799464219000072 ], [ -82.032289264999974, 28.799168571000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02997643599997, 28.794826432000036 ], [ -82.030021481999938, 28.794821391000028 ], [ -82.030104989999984, 28.794810283000061 ], [ -82.030187096999953, 28.794797364000033 ], [ -82.030277314999978, 28.794780850000052 ], [ -82.030355422999946, 28.794764559000043 ], [ -82.03046715399995, 28.794737968000049 ], [ -82.030530725999938, 28.794721071000026 ], [ -82.030612222999935, 28.794697485000029 ], [ -82.030700141999944, 28.794669554000052 ], [ -82.030753745999959, 28.794651224000063 ], [ -82.030844757999944, 28.794618023000055 ], [ -82.031019630999936, 28.794553245000031 ], [ -82.031291566999982, 28.794452510000042 ], [ -82.031363333999934, 28.794425947000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021399385999985, 28.79154806300005 ], [ -82.021458037999935, 28.791586518000031 ], [ -82.021538963999944, 28.791644387000076 ], [ -82.021625474999951, 28.791711430000078 ], [ -82.021705751999946, 28.791778966000038 ], [ -82.021807462999959, 28.791864168000075 ], [ -82.021905717999971, 28.791939695000053 ], [ -82.022003606999988, 28.792009001000054 ], [ -82.022122673999945, 28.792086091000044 ], [ -82.022168736999959, 28.792113124000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958191091999936, 28.95291299400003 ], [ -81.95900992199995, 28.952282361000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959116263999988, 28.953802877000044 ], [ -81.95870698899995, 28.953414709000072 ], [ -81.958191091999936, 28.95291299400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956900903999951, 28.951750446000062 ], [ -81.956777129999978, 28.951840351000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95972270599998, 28.954546382000046 ], [ -81.959643791999952, 28.954618050000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110965873999987, 28.688868064000076 ], [ -82.111142721999954, 28.68890858900005 ], [ -82.111374964999982, 28.688957292000055 ], [ -82.111562125999967, 28.688975474000074 ], [ -82.111647039, 28.688983043000064 ], [ -82.111692087999984, 28.688978422000048 ], [ -82.111750979999954, 28.688956982000036 ], [ -82.111802926999985, 28.688923324000029 ], [ -82.111841004999974, 28.688883567000062 ], [ -82.111853076999978, 28.688828551000029 ], [ -82.111844331999976, 28.688752160000035 ], [ -82.11183200499994, 28.688703409000027 ], [ -82.111829071999978, 28.688683517000072 ], [ -82.111827595999955, 28.688663623000025 ], [ -82.111834865999981, 28.688617503000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111006951999968, 28.688606978000053 ], [ -82.111834865999981, 28.688617503000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110999632999949, 28.688370946000077 ], [ -82.111880639999981, 28.68839278300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111008156999958, 28.688141193000035 ], [ -82.112068245999978, 28.688147220000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111008156999958, 28.688141193000035 ], [ -82.111008479999953, 28.688134029000025 ], [ -82.111003143999937, 28.688004158000069 ], [ -82.111001235999936, 28.687837613000056 ], [ -82.111002913999982, 28.687785662000067 ], [ -82.111016733999975, 28.687745923000023 ], [ -82.111044432999961, 28.687721454000041 ], [ -82.111066945999937, 28.687709212000073 ], [ -82.111094666999975, 28.687706133000063 ], [ -82.111165709999966, 28.687706075000051 ], [ -82.112076136999974, 28.687711626000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110546625999973, 28.687242085000037 ], [ -82.111088200999973, 28.687244264000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111584844999982, 28.687246260000052 ], [ -82.111584509999943, 28.687207619000048 ], [ -82.111584492999953, 28.687191721000033 ], [ -82.111592260999942, 28.686316804000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111119402999975, 28.686316755000064 ], [ -82.111098459999937, 28.686363940000035 ], [ -82.111095401999989, 28.686375676000068 ], [ -82.111093876999973, 28.68638515400005 ], [ -82.111092363999944, 28.686406366000028 ], [ -82.111093336999943, 28.686445577000029 ], [ -82.111088200999973, 28.687244264000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112092450999967, 28.687248299000032 ], [ -82.112748993999958, 28.687275412000076 ], [ -82.113670823999939, 28.687279225000054 ], [ -82.113925536999943, 28.68727748200007 ], [ -82.113975795999977, 28.687285079000048 ], [ -82.114043833999972, 28.687334709000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112076136999974, 28.687711626000066 ], [ -82.113014576999944, 28.687715240000045 ], [ -82.114055729999961, 28.68772253800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112092450999967, 28.687248299000032 ], [ -82.112099126999965, 28.687196498000048 ], [ -82.112100721, 28.687066621000042 ], [ -82.112107200999958, 28.686643374000028 ], [ -82.112101873999961, 28.686522671000034 ], [ -82.112098339999989, 28.68645697200003 ], [ -82.112093088999984, 28.686408082000071 ], [ -82.112077447, 28.686363784000037 ], [ -82.112054900999965, 28.686345467000024 ], [ -82.112028893999934, 28.686330209000062 ], [ -82.111987294999949, 28.686318020000044 ], [ -82.111900656999978, 28.686316563000048 ], [ -82.111595694999949, 28.686316815000055 ], [ -82.111592260999942, 28.686316804000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112068245999978, 28.688147220000076 ], [ -82.112727408999945, 28.688154 ], [ -82.113340816999937, 28.688161128000047 ], [ -82.113897037999948, 28.688162189000025 ], [ -82.113957681999977, 28.688160610000068 ], [ -82.113993479999976, 28.688150054000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114055729999961, 28.68772253800006 ], [ -82.114066021999975, 28.687398072000065 ], [ -82.114053840999986, 28.687350716000026 ], [ -82.114043833999972, 28.687334709000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113993479999976, 28.688150054000062 ], [ -82.114004451999961, 28.688146819000053 ], [ -82.114030421999985, 28.68812540600004 ], [ -82.114049439999974, 28.688087191000079 ], [ -82.114054577, 28.688030652000066 ], [ -82.114054292999981, 28.687767845000053 ], [ -82.114055729999961, 28.68772253800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111584844999982, 28.687246260000052 ], [ -82.112092450999967, 28.687248299000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111088200999973, 28.687244264000071 ], [ -82.111584844999982, 28.687246260000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112076136999974, 28.687711626000066 ], [ -82.112080221999975, 28.687343197000075 ], [ -82.112092450999967, 28.687248299000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112068245999978, 28.688147220000076 ], [ -82.112075854999944, 28.688123982000036 ], [ -82.112075478999941, 28.687771027000053 ], [ -82.112076136999974, 28.687711626000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111006951999968, 28.688606978000053 ], [ -82.111007240999982, 28.688603111000077 ], [ -82.11099848799995, 28.688517552000064 ], [ -82.110999632999949, 28.688370946000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110999632999949, 28.688370946000077 ], [ -82.111000014999945, 28.688321974000075 ], [ -82.111008156999958, 28.688141193000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110965873999987, 28.688868064000076 ], [ -82.110997000999987, 28.688751330000059 ], [ -82.111002115999952, 28.688671873000033 ], [ -82.111006951999968, 28.688606978000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110108748999949, 28.688823251000031 ], [ -82.110247323999943, 28.688835547000053 ], [ -82.110427012999935, 28.688843473000077 ], [ -82.11072115099995, 28.688854195000033 ], [ -82.110832306999953, 28.688854981000077 ], [ -82.110899846999985, 28.688857487000064 ], [ -82.110955210999975, 28.688865621000048 ], [ -82.110965873999987, 28.688868064000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109923796999965, 28.69043328500004 ], [ -82.110096583999962, 28.688932317000024 ], [ -82.110108748999949, 28.688823251000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111592260999942, 28.686316804000057 ], [ -82.111214489999952, 28.686315602000036 ], [ -82.111119402999975, 28.686316755000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111119402999975, 28.686316755000064 ], [ -82.111079338999957, 28.686317240000051 ], [ -82.110819426999967, 28.686315926000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111880639999981, 28.68839278300004 ], [ -82.111899359999938, 28.688356376000058 ], [ -82.11196167099996, 28.688292151000041 ], [ -82.112023977999968, 28.688223342000072 ], [ -82.112036346999957, 28.688205581000034 ], [ -82.112051659999963, 28.68818359200003 ], [ -82.112066353999978, 28.688152996000042 ], [ -82.112068245999978, 28.688147220000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111834865999981, 28.688617503000046 ], [ -82.111837241999979, 28.688602428000024 ], [ -82.111847546999968, 28.688516853000067 ], [ -82.111859619999962, 28.688463366000065 ], [ -82.111873421999974, 28.688406820000068 ], [ -82.111880639999981, 28.68839278300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983302542, 28.920096150000063 ], [ -81.983603655999957, 28.92009618700007 ], [ -81.984105511999985, 28.92009624700006 ], [ -81.984600024999963, 28.920096305000072 ], [ -81.98497458099996, 28.920096347000026 ], [ -81.985466644999974, 28.920096401000023 ], [ -81.985963605999984, 28.920096454000031 ], [ -81.986345506999953, 28.920096493000074 ], [ -81.98672006399994, 28.92009222300004 ], [ -81.987219471999936, 28.920094425000059 ], [ -81.987718879999989, 28.920094472000073 ], [ -81.987719865999964, 28.920094469000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956902142999979, 28.862108039000077 ], [ -81.956961178999961, 28.862260580000054 ], [ -81.956977366, 28.862466853000058 ], [ -81.956964453999944, 28.863537124000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956964453999944, 28.863537124000061 ], [ -81.957414107999966, 28.863534429000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957414107999966, 28.863534429000026 ], [ -81.957416190999936, 28.862594763000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957416190999936, 28.862594763000061 ], [ -81.957579360999944, 28.862610763000077 ], [ -81.957807421999973, 28.862663172000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957413644999974, 28.863743561000035 ], [ -81.957554493999965, 28.863742364000075 ], [ -81.957641291999948, 28.863708968000026 ], [ -81.957717253999988, 28.86364453300007 ], [ -81.957782374999965, 28.863560996000047 ], [ -81.957804127999964, 28.86341776200004 ], [ -81.957807421999973, 28.862663172000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957412765999948, 28.864140053000028 ], [ -81.957413644999974, 28.863743561000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957413644999974, 28.863743561000035 ], [ -81.957414107999966, 28.863534429000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957416190999936, 28.862594763000061 ], [ -81.957416752999961, 28.862340940000024 ], [ -81.95743955599994, 28.86228651600004 ], [ -81.957491641999979, 28.862246424000034 ], [ -81.957527445999972, 28.862229247000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957807421999973, 28.862663172000055 ], [ -81.958151532999977, 28.862742247000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956902142999979, 28.862108039000077 ], [ -81.956870863999939, 28.862118200000054 ], [ -81.956770476999964, 28.862146669000026 ], [ -81.95666569499997, 28.862171036000063 ], [ -81.956576247999976, 28.862187406000032 ], [ -81.956471073999978, 28.862201608000078 ], [ -81.956393939999941, 28.862208637000037 ], [ -81.956301524999958, 28.862213342000075 ], [ -81.956192751999936, 28.862213730000065 ], [ -81.956087671999967, 28.862208819000045 ], [ -81.956004551999968, 28.862201226000025 ], [ -81.95592146499996, 28.862190312000052 ], [ -81.955803209999942, 28.862168914000051 ], [ -81.955700761999935, 28.86214460900004 ], [ -81.955578925999987, 28.862108368000065 ], [ -81.955448409999974, 28.862060070000041 ], [ -81.955316480999954, 28.862000298000055 ], [ -81.955176940999934, 28.861923489000048 ], [ -81.955009127999972, 28.861815407000051 ], [ -81.954946961999951, 28.861779857000045 ], [ -81.954868918999978, 28.861740201000032 ], [ -81.954761663999989, 28.861693845000048 ], [ -81.954701610999962, 28.861671661000059 ], [ -81.95464442399998, 28.861652889000027 ], [ -81.954544273999943, 28.861625252000067 ], [ -81.954415037, 28.86159888800006 ], [ -81.954352648999986, 28.861589744000071 ], [ -81.954263585999968, 28.861580605000029 ], [ -81.954191342999934, 28.861576521000075 ], [ -81.954117573999952, 28.861575281000057 ], [ -81.954017614999941, 28.861574705000066 ], [ -81.953666160999944, 28.861572681000041 ], [ -81.953490521999981, 28.861570162000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956957858999942, 28.864119007000056 ], [ -81.956968389999986, 28.864188067000043 ], [ -81.956985724999981, 28.864243459000079 ], [ -81.957016500999941, 28.86431871800005 ], [ -81.957150029, 28.864612120000061 ], [ -81.957286783999962, 28.864971680000053 ], [ -81.957299316, 28.865031678000037 ], [ -81.957303194999952, 28.865096997000023 ], [ -81.957297964999952, 28.865153147000058 ], [ -81.957292729999949, 28.865220755000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953490521999981, 28.861570162000078 ], [ -81.953476568999974, 28.861556936000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966166635999969, 28.847803581000051 ], [ -81.966188212999953, 28.847803928000076 ], [ -81.966404052999962, 28.847807801000044 ], [ -81.966556990999948, 28.847798290000071 ], [ -81.96679127799996, 28.847774474000062 ], [ -81.966933366999967, 28.847764959000074 ], [ -81.967035329999987, 28.847743021000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967035329999987, 28.847743021000042 ], [ -81.966932296999971, 28.847722942000075 ], [ -81.96677068799994, 28.847716217000027 ], [ -81.966558105999979, 28.847700885000052 ], [ -81.966443135999953, 28.847695127000065 ], [ -81.966251156999988, 28.847695079000061 ], [ -81.966175044999943, 28.847689905000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965542551999988, 28.847547027000076 ], [ -81.965549550999981, 28.847568611000042 ], [ -81.96555331899998, 28.847591054000077 ], [ -81.965555105999954, 28.847628392000047 ], [ -81.965552926999976, 28.847660860000076 ], [ -81.965545106999969, 28.847692561000031 ], [ -81.965535292999959, 28.847717817000046 ], [ -81.965517928999986, 28.847747416000061 ], [ -81.965500783999971, 28.847773387000075 ], [ -81.965476153999987, 28.84780059600007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964999816999978, 28.847659822000026 ], [ -81.964996112999984, 28.847641187000079 ], [ -81.964994763999982, 28.847622565000052 ], [ -81.964996548999977, 28.847594604000051 ], [ -81.964998573999935, 28.847579117000066 ], [ -81.965004818999944, 28.847552141000051 ], [ -81.965012418999947, 28.847531134000064 ], [ -81.965023271999939, 28.847512516000052 ], [ -81.965036294999948, 28.84749103300004 ], [ -81.965054197999962, 28.847470028000032 ], [ -81.965073726999947, 28.847452367000074 ], [ -81.965091085999973, 28.847435660000031 ], [ -81.965103562999957, 28.847424681000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963867584999946, 28.847138677000032 ], [ -81.963919765999947, 28.847211369000036 ], [ -81.963996974999986, 28.847257227000057 ], [ -81.964094211999964, 28.84731253800004 ], [ -81.964174460999971, 28.847350757000072 ], [ -81.96425037399996, 28.847382290000041 ], [ -81.964376176999963, 28.847425297000029 ], [ -81.964495473999989, 28.847459706000052 ], [ -81.964609350999979, 28.847485520000077 ], [ -81.964717806999943, 28.847505602000069 ], [ -81.964812161999987, 28.847528545000046 ], [ -81.964855542999942, 28.847540016000039 ], [ -81.96489566799994, 28.847561035000069 ], [ -81.964936465999983, 28.847597685000039 ], [ -81.964999816999978, 28.847659822000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965025852999986, 28.847729833000074 ], [ -81.965015612999935, 28.847712336000029 ], [ -81.965006943999981, 28.847687027000063 ], [ -81.964999901999988, 28.847660287000053 ], [ -81.964999816999978, 28.847659822000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965103562999957, 28.847424681000064 ], [ -81.964999837999983, 28.847424505000049 ], [ -81.964921745999959, 28.847421620000034 ], [ -81.964802443999986, 28.847397715000056 ], [ -81.964620240999977, 28.847356604000026 ], [ -81.964496746999941, 28.847328073000028 ], [ -81.964384896999945, 28.847297336000054 ], [ -81.964246222999975, 28.847256386000026 ], [ -81.964141026999982, 28.847219116000076 ], [ -81.964064027999939, 28.84719044700006 ], [ -81.963979439999946, 28.847152226000048 ], [ -81.963867584999946, 28.847138677000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965932070999941, 28.835282824000046 ], [ -81.965934076999986, 28.835320270000068 ], [ -81.965934501999982, 28.835350065000057 ], [ -81.965934053999945, 28.835392464000051 ], [ -81.96593057399997, 28.835422258000051 ], [ -81.965926009999976, 28.835448677000045 ], [ -81.965896488999988, 28.83551589800004 ], [ -81.965842672999941, 28.83559533600004 ], [ -81.965756196999962, 28.835717929000054 ], [ -81.965546145999951, 28.83599137300007 ], [ -81.96537948799994, 28.836226629000066 ], [ -81.965245799999934, 28.836454255000035 ], [ -81.96510688099994, 28.836761329000069 ], [ -81.965037399999972, 28.836975220000056 ], [ -81.964983530999973, 28.837202866000041 ], [ -81.964950476999945, 28.837459547000037 ], [ -81.964946918999942, 28.837720820000072 ], [ -81.964967651999984, 28.837983627000028 ], [ -81.965002288999983, 28.838191432000031 ], [ -81.965052539999988, 28.838402297000073 ], [ -81.965121888999988, 28.838587193000023 ], [ -81.965203378999945, 28.838785843000039 ], [ -81.965255235999962, 28.838880087000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965497457999959, 28.847463744000038 ], [ -81.965521305999971, 28.847506149000026 ], [ -81.965542551999988, 28.847547027000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966174333999959, 28.835438410000052 ], [ -81.966118106999943, 28.835477370000035 ], [ -81.966087584999968, 28.835498311000038 ], [ -81.966066321999961, 28.835519315000056 ], [ -81.966040304999979, 28.835549980000053 ], [ -81.965915511999981, 28.835717587000033 ], [ -81.965754065999988, 28.835936039000046 ], [ -81.965509291999979, 28.836264478000032 ], [ -81.96536174199997, 28.836519437000049 ], [ -81.965246427999944, 28.836786216000064 ], [ -81.965157101999978, 28.837059287000045 ], [ -81.965122342999962, 28.83722429200003 ], [ -81.965097992999972, 28.837396941000065 ], [ -81.965087491999952, 28.837665850000064 ], [ -81.965097817999947, 28.837921015000063 ], [ -81.96513071399994, 28.838139516000069 ], [ -81.965176204999977, 28.838326047000066 ], [ -81.965234707999969, 28.838503187000072 ], [ -81.965313613999967, 28.838703459000044 ], [ -81.965709639999943, 28.839431925000042 ], [ -81.965835823999953, 28.839673470000037 ], [ -81.965917535999949, 28.839833143000078 ], [ -81.96599230399994, 28.840033701000038 ], [ -81.966074057999947, 28.840314385000056 ], [ -81.966120424999986, 28.840566789000036 ], [ -81.966140923999944, 28.840781496000034 ], [ -81.966143964999958, 28.841010556000072 ], [ -81.966122054999971, 28.841285011000025 ], [ -81.966049485999974, 28.841647249000061 ], [ -81.965998878999983, 28.841818958000033 ], [ -81.965951984999947, 28.841945763000069 ], [ -81.965863410999987, 28.842165761000047 ], [ -81.965766200999951, 28.84233174700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02670434199996, 28.909603263000065 ], [ -82.026702513999965, 28.910444313000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027860842999985, 28.911288680000041 ], [ -82.026812215999939, 28.911283535000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025700615999938, 28.909599313000058 ], [ -82.02568858099994, 28.911276913000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028345074999947, 28.910452466000038 ], [ -82.026815872999975, 28.910442485000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028336932999935, 28.911646979000068 ], [ -82.028092777999973, 28.911645659000044 ], [ -82.028064386999972, 28.911645545000056 ], [ -82.028029221999986, 28.911637531000054 ], [ -82.027994053999976, 28.911627225000075 ], [ -82.027960187999952, 28.911608896000075 ], [ -82.027931530999979, 28.911588276000032 ], [ -82.027906778999977, 28.911563070000057 ], [ -82.027880722999953, 28.911526406000064 ], [ -82.02786638699996, 28.911488594000048 ], [ -82.027859864999982, 28.911453072000029 ], [ -82.027860842999985, 28.911288680000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02521126299996, 28.909685194000076 ], [ -82.025203037999972, 28.909695051000028 ], [ -82.025189251999961, 28.909715682000069 ], [ -82.025179196999943, 28.909740406000026 ], [ -82.025170996999975, 28.909769958000027 ], [ -82.025167793999969, 28.909802661000072 ], [ -82.025150137999958, 28.912262248000047 ], [ -82.025152963999972, 28.912295504000042 ], [ -82.025159776999942, 28.912322105000044 ], [ -82.025174507999964, 28.912355135000041 ], [ -82.025191027999938, 28.912380555000027 ], [ -82.02521341399995, 28.912404509000055 ], [ -82.02523642899996, 28.912423419000049 ], [ -82.025247374999935, 28.912430334000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028251584999964, 28.912434833000077 ], [ -82.028239214999985, 28.912445149000064 ], [ -82.028222937999942, 28.91245546600004 ], [ -82.028201451999962, 28.912464065000052 ], [ -82.028179964999936, 28.912472664000063 ], [ -82.02816108199994, 28.912478397000029 ], [ -82.028139594999971, 28.912482985000054 ], [ -82.028119408999942, 28.912485281000045 ], [ -82.028096760999972, 28.912484514000028 ], [ -82.027001500999972, 28.912478491000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028336932999935, 28.911646979000068 ], [ -82.028333792999945, 28.912107652000032 ], [ -82.028331506999962, 28.912298383000063 ], [ -82.028325797999969, 28.912333609000029 ], [ -82.028317331999972, 28.912352886000065 ], [ -82.028305616999944, 28.912376380000069 ], [ -82.028291946999957, 28.912395863000029 ], [ -82.028274605999968, 28.912414096000077 ], [ -82.028251584999964, 28.912434833000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028339357999982, 28.91129126800007 ], [ -82.028336932999935, 28.911646979000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028345074999947, 28.910452466000038 ], [ -82.028339357999982, 28.91129126800007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028302442999973, 28.909694628000068 ], [ -82.028315975999988, 28.90970992900003 ], [ -82.028342037999948, 28.909767221000038 ], [ -82.028349385999945, 28.909819897000034 ], [ -82.028345074999947, 28.910452466000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028302442999973, 28.909694628000068 ], [ -82.028285577999952, 28.90967555800006 ], [ -82.028229133999957, 28.909641192000038 ], [ -82.028177034999942, 28.909618285000079 ], [ -82.028116409999939, 28.909612397000046 ], [ -82.026823185999945, 28.90960509100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02670434199996, 28.909603263000065 ], [ -82.025700615999938, 28.909599314000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026466122999977, 28.912475635000078 ], [ -82.025680019999982, 28.912470416000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02669154299997, 28.911283535000052 ], [ -82.026693122999973, 28.912337151000031 ], [ -82.026679305999949, 28.912382285000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028339357999982, 28.91129126800007 ], [ -82.027860842999985, 28.911288680000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026702513999965, 28.910444313000028 ], [ -82.02669154299997, 28.911283535000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026712877999955, 28.909121597000023 ], [ -82.02670434199996, 28.909603263000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02568858099994, 28.911276913000052 ], [ -82.025680019999982, 28.912470416000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02669154299997, 28.911283535000052 ], [ -82.02568858099994, 28.911276913000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025700615999938, 28.909599314000047 ], [ -82.02540365599998, 28.909597702000042 ], [ -82.025363090999974, 28.909600590000025 ], [ -82.025309836999952, 28.909614386000044 ], [ -82.025272844999961, 28.909630320000076 ], [ -82.025245894999955, 28.909650090000071 ], [ -82.02522382899997, 28.909670135000056 ], [ -82.02521126299996, 28.909685194000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025680019999982, 28.912470416000076 ], [ -82.025367184999936, 28.912469249000026 ], [ -82.025326192999955, 28.912463321000075 ], [ -82.025292290999971, 28.912453167000024 ], [ -82.025259738999978, 28.912438147000046 ], [ -82.025247374999935, 28.912430334000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004000513999983, 28.865454176000071 ], [ -82.003998851999938, 28.866390155000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01041902299994, 28.866401999000061 ], [ -82.010413556999936, 28.869003790000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010413556999936, 28.869003790000079 ], [ -82.008207236999965, 28.868999608000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012325622999981, 28.869024087000071 ], [ -82.010620581999945, 28.869004181000037 ], [ -82.010413556999936, 28.869003790000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008213628999954, 28.866397819000042 ], [ -82.00731572799998, 28.866396106000025 ], [ -82.006456580999952, 28.866394462000073 ], [ -82.006030260999978, 28.866393645000073 ], [ -82.005079936999948, 28.866391816000032 ], [ -82.004253303999974, 28.866390220000028 ], [ -82.003998851999938, 28.866390155000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003998851999938, 28.866390155000033 ], [ -82.003934716999936, 28.866390138000042 ], [ -82.003777303999982, 28.866404050000028 ], [ -82.003663636999988, 28.86642652200004 ], [ -82.003543128, 28.866462639000076 ], [ -82.003458691999981, 28.866496271000074 ], [ -82.003384715999971, 28.866532082000049 ], [ -82.003315848999989, 28.866571457000077 ], [ -82.003249020999988, 28.866616089000047 ], [ -82.003193448, 28.866658855000026 ], [ -82.003122478999956, 28.866722092000032 ], [ -82.003059495999935, 28.866770039000073 ], [ -82.002993732999983, 28.866806162000046 ], [ -82.002923458999987, 28.866832987000066 ], [ -82.002837058999944, 28.866852343000062 ], [ -82.002779010999973, 28.866857822000043 ], [ -82.002713537999966, 28.866857092000032 ], [ -82.002647126999989, 28.866848823000055 ], [ -82.002591179999968, 28.866835664000064 ], [ -82.002534229999981, 28.866815872000075 ], [ -82.002471776999982, 28.866785560000039 ], [ -82.002420131999941, 28.866752095000038 ], [ -82.002370033999966, 28.866709900000046 ], [ -82.002338209999948, 28.866676132000066 ], [ -82.002313686999969, 28.866644761000032 ], [ -82.002286435999963, 28.866601981000031 ], [ -82.002255933999948, 28.866558865000059 ], [ -82.002217043999963, 28.866516964000027 ], [ -82.002188011999976, 28.866491885000073 ], [ -82.00214920999997, 28.866464337000025 ], [ -82.002112915999987, 28.866443471000025 ], [ -82.002073730999939, 28.86642531900003 ], [ -82.002022523999983, 28.866407439000056 ], [ -82.001979166999945, 28.866396872000053 ], [ -82.00194038099994, 28.866390681000041 ], [ -82.001883432999989, 28.86638688000005 ], [ -82.001341089999983, 28.866386091000038 ], [ -82.001034987999958, 28.866384465000067 ], [ -82.000995627999941, 28.866378917000077 ], [ -82.000949443999957, 28.866366339000024 ], [ -82.000901174999967, 28.866345075000027 ], [ -82.000854910999976, 28.866314556000077 ], [ -82.000819943999943, 28.866281719000028 ], [ -82.000799449999988, 28.866256139000029 ], [ -82.000780708999969, 28.866225506000035 ], [ -82.000764894999975, 28.866188356000066 ], [ -82.000754926999946, 28.866147110000043 ], [ -82.000752229999989, 28.866079908000074 ], [ -82.000753370999973, 28.865455652000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01041902299994, 28.866401999000061 ], [ -82.009863998999947, 28.86640095100006 ], [ -82.008327894, 28.866398036000078 ], [ -82.008213628999954, 28.866397819000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008271828999966, 28.869545274000075 ], [ -82.00832266599997, 28.869651662000024 ], [ -82.00840728999998, 28.869827627000063 ], [ -82.008481577999987, 28.869982100000072 ], [ -82.008539030999941, 28.870102128000042 ], [ -82.008573792999982, 28.870191453000075 ], [ -82.008594574999961, 28.870265827000026 ], [ -82.008609165999985, 28.870345755000073 ], [ -82.008615849999956, 28.870420986000056 ], [ -82.008616690999986, 28.870489786000064 ], [ -82.008614441999953, 28.870707737000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008207236999965, 28.868999608000024 ], [ -82.008207150999965, 28.869034464000038 ], [ -82.008206941999958, 28.869263899000032 ], [ -82.008210510999959, 28.869317868000053 ], [ -82.008224284999983, 28.86940228900005 ], [ -82.008236589999967, 28.869449858000053 ], [ -82.008263525999951, 28.869526011000062 ], [ -82.008271828999966, 28.869545274000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03636075199995, 28.833044800000039 ], [ -82.036215191999986, 28.832969903000048 ], [ -82.036032968999962, 28.832879805000061 ], [ -82.035881981999978, 28.832798866000076 ], [ -82.035626989999969, 28.832662769000024 ], [ -82.035340509999969, 28.832499536000057 ], [ -82.034937870999954, 28.832252119000032 ], [ -82.034627212999965, 28.832052041000054 ], [ -82.034252336999941, 28.831798503000073 ], [ -82.033981591999975, 28.831604526000035 ], [ -82.03375596799998, 28.831431929000075 ], [ -82.033481746999939, 28.831219615000066 ], [ -82.033240501999956, 28.831025629000067 ], [ -82.033002721999935, 28.830816364000043 ], [ -82.032641718999969, 28.830507813000054 ], [ -82.03220781999994, 28.830121353000038 ], [ -82.032074184999942, 28.83002207100003 ], [ -82.031956176999984, 28.829954870000051 ], [ -82.031867667999961, 28.829895302000068 ], [ -82.031409518999965, 28.829634136000038 ], [ -82.031081526999969, 28.829446277000045 ], [ -82.030597350999983, 28.829163724000068 ], [ -82.030046254999945, 28.828856186000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034073232999958, 28.792497556000058 ], [ -82.034158348999938, 28.792579947000036 ], [ -82.034216842999967, 28.792622957000049 ], [ -82.034275421999951, 28.792653963000078 ], [ -82.034336257999939, 28.792676465000056 ], [ -82.034396733999984, 28.79269064600004 ], [ -82.03446373099996, 28.792698641000072 ], [ -82.034630676999939, 28.792715098000031 ], [ -82.034851301999936, 28.792736848000061 ], [ -82.035156054999959, 28.792766889000063 ], [ -82.035276924999948, 28.792778805000069 ], [ -82.035410776999981, 28.792792140000074 ], [ -82.035447780999959, 28.792799206000041 ], [ -82.035493504999977, 28.792814830000054 ], [ -82.035534826999935, 28.79283692100006 ], [ -82.035573502999966, 28.792867149000074 ], [ -82.035603888999958, 28.792901432000065 ], [ -82.035630055999945, 28.792946839000024 ], [ -82.035642080999935, 28.792982370000061 ], [ -82.035652582999944, 28.793047665000074 ], [ -82.035676679999938, 28.793214424000041 ], [ -82.035736227999962, 28.793625531000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03489961799994, 28.794045790000041 ], [ -82.034958640999946, 28.793993304000026 ], [ -82.034992386999988, 28.793969983000068 ], [ -82.035046855999951, 28.79393993900004 ], [ -82.035193601999936, 28.793864039000027 ], [ -82.03534571299997, 28.793785366000066 ], [ -82.03547913899996, 28.793721509000079 ], [ -82.035582463999958, 28.793678718000024 ], [ -82.035696526999971, 28.793637704000048 ], [ -82.035736227999962, 28.793625531000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03644398299997, 28.793473095000024 ], [ -82.036417638999978, 28.793289062000042 ], [ -82.036352540999985, 28.792838572000051 ], [ -82.036257016999969, 28.792177515000049 ], [ -82.036245157999986, 28.79209544400004 ], [ -82.03623238199998, 28.79203615800003 ], [ -82.036193835999939, 28.791942017000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035349092, 28.794529156000067 ], [ -82.035474792999935, 28.794462149000026 ], [ -82.035589634999951, 28.794400929000062 ], [ -82.035707751999951, 28.794338040000071 ], [ -82.035790612999961, 28.794297775000075 ], [ -82.035867219999943, 28.794265461000066 ], [ -82.035924006999949, 28.794244334000041 ], [ -82.035981638999942, 28.79422521500004 ], [ -82.036067533999983, 28.794200851000028 ], [ -82.036137360999987, 28.794184522000023 ], [ -82.036375347999979, 28.794138888000077 ], [ -82.036860417999947, 28.794046686000058 ], [ -82.036979724999981, 28.794024009000054 ], [ -82.037026371999957, 28.794013685000039 ], [ -82.037076776999982, 28.793993860000057 ], [ -82.037108189999969, 28.793975438000075 ], [ -82.037143493999963, 28.793946950000077 ], [ -82.037178512999958, 28.793905237000047 ], [ -82.037198107999984, 28.793869440000037 ], [ -82.037214025999958, 28.793815357000028 ], [ -82.037216315999956, 28.793768215000057 ], [ -82.037203896999983, 28.793677145000061 ], [ -82.037157097999966, 28.793353301000025 ], [ -82.037154834999967, 28.793337643000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034783918999949, 28.791408359000059 ], [ -82.034824398999945, 28.791413543000033 ], [ -82.035112190999939, 28.791453019000073 ], [ -82.035236473999987, 28.791470068000024 ], [ -82.035322410999981, 28.791480490000026 ], [ -82.035400022999966, 28.791483740000047 ], [ -82.035514030999934, 28.791476973000044 ], [ -82.035599280999975, 28.791462726000077 ], [ -82.035685628999943, 28.791439754000066 ], [ -82.035831208, 28.791385336000076 ], [ -82.036006457999974, 28.791317755000023 ], [ -82.036340743999972, 28.791190022000023 ], [ -82.036455196999952, 28.791154734000031 ], [ -82.036574823999956, 28.791126535000046 ], [ -82.03664575099998, 28.791113788000075 ], [ -82.036736135999945, 28.79110167400006 ], [ -82.036828869999965, 28.791092349000053 ], [ -82.036929544999964, 28.791078838000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034112599999958, 28.791289045000042 ], [ -82.034146804999978, 28.791098006000027 ], [ -82.034152209999945, 28.791064137000035 ], [ -82.034158434999938, 28.791013957000075 ], [ -82.034197228999972, 28.790516436000075 ], [ -82.034208794999984, 28.790334453000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033289111999977, 28.790329419000045 ], [ -82.03328698699994, 28.790580272000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033192346999954, 28.789716871000053 ], [ -82.03397916299997, 28.789721235000059 ], [ -82.034624769999937, 28.789723669000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034624769999937, 28.789723669000068 ], [ -82.034627730999944, 28.789106004000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033192346999954, 28.789716871000053 ], [ -82.033194032999972, 28.789097720000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033194032999972, 28.789097720000029 ], [ -82.033916120999947, 28.78910206200004 ], [ -82.034627730999944, 28.789106004000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034944231999987, 28.790338526000028 ], [ -82.034960473999945, 28.790300328000058 ], [ -82.034990302999972, 28.790255238000043 ], [ -82.03504107599997, 28.790206070000067 ], [ -82.035108863999938, 28.790149528000029 ], [ -82.035171242, 28.790097499000069 ], [ -82.035218632999943, 28.790055616000075 ], [ -82.035252985999989, 28.790011770000035 ], [ -82.03528997899997, 28.789932501000067 ], [ -82.035325007999973, 28.789833381000051 ], [ -82.035352533999969, 28.789731076000066 ], [ -82.035370567999962, 28.789636384000062 ], [ -82.035382569999967, 28.789530154000033 ], [ -82.035387238999988, 28.789285938000035 ], [ -82.035388603999934, 28.789107281000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034469201999968, 28.792017483000052 ], [ -82.034572835999938, 28.792046768000034 ], [ -82.034687347999977, 28.792072130000065 ], [ -82.034810795999988, 28.792090615000063 ], [ -82.035004865999952, 28.792109941000035 ], [ -82.035188903999938, 28.792128083000023 ], [ -82.035315655999966, 28.792135993000045 ], [ -82.035430164, 28.792135320000057 ], [ -82.035572968999986, 28.792124057000024 ], [ -82.035696169999937, 28.792104832000064 ], [ -82.035794392999946, 28.792082935000053 ], [ -82.035959077999962, 28.792032230000075 ], [ -82.036193835999939, 28.791942017000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032459268999958, 28.790400427000066 ], [ -82.032534807, 28.790400642000066 ], [ -82.032656858999985, 28.790394225000057 ], [ -82.032797239, 28.790376262000052 ], [ -82.03298197099997, 28.790344029000039 ], [ -82.033096778999948, 28.790332738000075 ], [ -82.033204462999947, 28.790328974000033 ], [ -82.033289111999977, 28.790329419000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032459268999958, 28.790400427000066 ], [ -82.032462023999983, 28.789964785000052 ], [ -82.032456664999984, 28.789915398000062 ], [ -82.032424759999969, 28.789840808000065 ], [ -82.032398727999976, 28.789807731000053 ], [ -82.032347601999959, 28.78976530500006 ], [ -82.032262976999959, 28.78972853700003 ], [ -82.032190385999968, 28.789709876000074 ], [ -82.032084499999939, 28.789708091000023 ], [ -82.031903065999984, 28.789708091000023 ], [ -82.031783635999943, 28.789715629000057 ], [ -82.031652259999987, 28.789745057000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032119304999981, 28.792181038000024 ], [ -82.031982623999966, 28.792386211000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028148053999985, 28.792322654000031 ], [ -82.028789167999946, 28.792325835000042 ], [ -82.029244692999953, 28.792326413000069 ], [ -82.029428721999977, 28.792316947000074 ], [ -82.029539441999987, 28.79230612300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028896866999958, 28.791618149000044 ], [ -82.028934957999979, 28.791037562000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029766919999986, 28.791622335000056 ], [ -82.029962892999947, 28.791623277000042 ], [ -82.030731141999979, 28.791625683000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029766919999986, 28.791622335000056 ], [ -82.029770792999955, 28.791040475000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028934957999979, 28.791037562000042 ], [ -82.029770792999955, 28.791040475000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031424596999955, 28.791615944000057 ], [ -82.032131353999944, 28.791599249000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032131353999944, 28.791599249000058 ], [ -82.032127528999979, 28.791454209000051 ], [ -82.032121902999961, 28.791416904000073 ], [ -82.03209979199994, 28.791357143000027 ], [ -82.031975303999957, 28.791117764000035 ], [ -82.031854534, 28.790885533000051 ], [ -82.031834242999935, 28.79084053400004 ], [ -82.031827087999943, 28.790815666000071 ], [ -82.031821530999935, 28.790779817000043 ], [ -82.031821018999949, 28.790724787000045 ], [ -82.031823700999951, 28.790397184000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031424596999955, 28.791615944000057 ], [ -82.031421958999942, 28.791500098000029 ], [ -82.031414776999952, 28.791450491000035 ], [ -82.03139379199996, 28.791395391000037 ], [ -82.03132190499997, 28.791257157000075 ], [ -82.03120479599994, 28.791031963000023 ], [ -82.031181266999965, 28.790985660000047 ], [ -82.031168625999953, 28.790950355000064 ], [ -82.031161981999958, 28.790917858000057 ], [ -82.031159885999955, 28.790873872000077 ], [ -82.031164201999957, 28.790393516000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028762603999951, 28.790272012000059 ], [ -82.028916125999956, 28.790305269000044 ], [ -82.029173126999979, 28.790362391000031 ], [ -82.029336857999965, 28.790398783000057 ], [ -82.02942485799997, 28.790415396000071 ], [ -82.029516399999977, 28.790426600000046 ], [ -82.029635548999977, 28.790432194000061 ], [ -82.029972188999977, 28.79043381300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028762603999951, 28.790272012000059 ], [ -82.02871248799994, 28.790480357000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029976805, 28.789815393000026 ], [ -82.029978132999986, 28.789637413000037 ], [ -82.029980738999939, 28.789216660000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027493922999952, 28.789631381000049 ], [ -82.028114392999953, 28.789634413000044 ], [ -82.028556624999965, 28.789636573000053 ], [ -82.028693511999961, 28.78963856200005 ], [ -82.028784331999987, 28.789645870000072 ], [ -82.028875080999967, 28.789659135000079 ], [ -82.028984649999984, 28.789682295000034 ], [ -82.029123833999961, 28.789713232000054 ], [ -82.029341024999951, 28.789761506000048 ], [ -82.029482372999951, 28.789791962000038 ], [ -82.029585467999937, 28.789807007000036 ], [ -82.029659683999967, 28.789813069000047 ], [ -82.029731008999988, 28.789815209000039 ], [ -82.029976805, 28.789815393000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027486673999988, 28.789040030000024 ], [ -82.027642687999958, 28.789040792000037 ], [ -82.028328832999989, 28.789044143000069 ], [ -82.028750149999951, 28.789046201000076 ], [ -82.028882792, 28.789053074000037 ], [ -82.028964949999988, 28.789063661000057 ], [ -82.029079559999957, 28.789086461000068 ], [ -82.029306694999946, 28.789136947000031 ], [ -82.029493312999989, 28.789178425000046 ], [ -82.029608254999971, 28.789201321000064 ], [ -82.029698766999957, 28.789212732000067 ], [ -82.029798733999939, 28.78921850100005 ], [ -82.029980738999939, 28.789216660000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028194391999989, 28.791692940000075 ], [ -82.028209642999968, 28.791466011000068 ], [ -82.028220406999935, 28.791271401000074 ], [ -82.02821444999995, 28.791164733000073 ], [ -82.028199767999979, 28.79107287800008 ], [ -82.028167553999936, 28.79095539900004 ], [ -82.028136684999936, 28.790876038000079 ], [ -82.028101361999973, 28.790803297000025 ], [ -82.028047088999983, 28.790712935000045 ], [ -82.027972448999947, 28.790614115000039 ], [ -82.027852652999968, 28.79048386900007 ], [ -82.027773520999972, 28.790382234000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028795241999944, 28.792957932000036 ], [ -82.02950997399995, 28.792960833000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02882139899998, 28.793765260000043 ], [ -82.028841765999971, 28.793595046000064 ], [ -82.02880935099995, 28.793321267000067 ], [ -82.028797805999943, 28.793146725000042 ], [ -82.028795241999944, 28.792957932000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029885306999972, 28.793794024000078 ], [ -82.02979963699994, 28.793690447000074 ], [ -82.029743973999985, 28.793622668000069 ], [ -82.029696230999946, 28.793548968000039 ], [ -82.029654951999987, 28.793474015000072 ], [ -82.029615064999973, 28.793389316000059 ], [ -82.029570457999966, 28.793271128000072 ], [ -82.02954138299998, 28.793168222000077 ], [ -82.029519916999959, 28.793059041000049 ], [ -82.02950997399995, 28.792960833000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026158008999971, 28.790427945000033 ], [ -82.026158749, 28.790355375000047 ], [ -82.02617063799994, 28.789033590000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025486699999988, 28.790425185000061 ], [ -82.025500515999966, 28.789030306000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026158008999971, 28.790427945000033 ], [ -82.025486699999988, 28.790425185000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024311139999952, 28.792749978000074 ], [ -82.024416529999939, 28.792583370000045 ], [ -82.024466344999951, 28.792504167000061 ], [ -82.024506312999961, 28.792432678000068 ], [ -82.024535828999944, 28.792364669000051 ], [ -82.024555340999939, 28.792305750000025 ], [ -82.02457461399996, 28.792220087000032 ], [ -82.024618112999974, 28.79198434500006 ], [ -82.024672588999977, 28.791689121000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024672588999977, 28.791689121000047 ], [ -82.024820029999944, 28.791704293000066 ], [ -82.024949599999957, 28.791710304000048 ], [ -82.025193520999949, 28.791708820000053 ], [ -82.02540989299996, 28.791706429000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022924026999988, 28.792442349000055 ], [ -82.023015648999944, 28.792202694000025 ], [ -82.023069699999951, 28.792046691000053 ], [ -82.023121636999974, 28.791851867000048 ], [ -82.023161984999945, 28.791676816000063 ], [ -82.023190442999976, 28.791492302000051 ], [ -82.023198900999944, 28.791278387000034 ], [ -82.023200762999977, 28.790953888000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021600097999965, 28.791047523000032 ], [ -82.02193626899998, 28.790972940000074 ], [ -82.022046020999937, 28.790955136000036 ], [ -82.022184969999955, 28.79094905900007 ], [ -82.022552448999988, 28.790950807000058 ], [ -82.022965602999989, 28.790952771000036 ], [ -82.023200762999977, 28.790953888000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025247410999953, 28.792796719000023 ], [ -82.02540989299996, 28.791706429000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037154834999967, 28.793337643000029 ], [ -82.037067749999949, 28.792735026000059 ], [ -82.036999151999964, 28.792260334000048 ], [ -82.036943762999954, 28.791853352000032 ], [ -82.036936516999958, 28.791728305000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03644398299997, 28.793473095000024 ], [ -82.03676233799996, 28.793412581000041 ], [ -82.037154834999967, 28.793337643000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035736227999962, 28.793625531000032 ], [ -82.035807084999988, 28.793603803000053 ], [ -82.035878192999974, 28.793584899000052 ], [ -82.036105593999935, 28.79353741500006 ], [ -82.036390272999938, 28.793483304000063 ], [ -82.03644398299997, 28.793473095000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03489961799994, 28.794045790000041 ], [ -82.034977756999979, 28.794110997000075 ], [ -82.035110055999951, 28.79423319700004 ], [ -82.035194646999969, 28.794332490000045 ], [ -82.035277615999973, 28.794432752000034 ], [ -82.03533129799996, 28.794502436000073 ], [ -82.035349092, 28.794529156000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03441221199995, 28.793697654000027 ], [ -82.034426914999983, 28.793708149000054 ], [ -82.034600405999981, 28.79382842800004 ], [ -82.034778233999987, 28.793952527000044 ], [ -82.03489961799994, 28.794045790000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033519267999964, 28.793279375000054 ], [ -82.033543491999978, 28.793286426000066 ], [ -82.033652762999964, 28.793322542000055 ], [ -82.033771317999935, 28.793365786000038 ], [ -82.033863097999983, 28.793402706000052 ], [ -82.033932437999965, 28.79343288900003 ], [ -82.03398870999996, 28.793458620000024 ], [ -82.03407802199996, 28.793502033000038 ], [ -82.034124233999989, 28.793525784000053 ], [ -82.034192706999988, 28.79356305500005 ], [ -82.034231922999936, 28.793584801000065 ], [ -82.034275632999936, 28.793610464000039 ], [ -82.034341482999935, 28.793651169000043 ], [ -82.03441221199995, 28.793697654000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032827500999986, 28.793141603000038 ], [ -82.03289872299996, 28.793149408000033 ], [ -82.03301010499996, 28.793164426000033 ], [ -82.033108278999975, 28.79318057100005 ], [ -82.033212130999971, 28.793200671000079 ], [ -82.033327395999947, 28.793226697000023 ], [ -82.033438096999987, 28.793255749000025 ], [ -82.033519267999964, 28.793279375000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032827500999986, 28.793141603000038 ], [ -82.032836747999966, 28.793075853000062 ], [ -82.032851726999979, 28.792969351000067 ], [ -82.032857600999989, 28.792917156000044 ], [ -82.032863740999971, 28.792661434000024 ], [ -82.032864750999977, 28.792617372000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031982623999966, 28.792386211000064 ], [ -82.03208039499998, 28.792439159000025 ], [ -82.032215809999968, 28.792496204000031 ], [ -82.032352863999961, 28.792541606000043 ], [ -82.032474917999934, 28.792572530000029 ], [ -82.032598532999941, 28.792595317000064 ], [ -82.032708886999956, 28.792608725000036 ], [ -82.032864750999977, 28.792617372000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030754492999961, 28.792241175000072 ], [ -82.031000824999978, 28.792235358000028 ], [ -82.031350184999951, 28.792227105000052 ], [ -82.03149370999995, 28.792225125000073 ], [ -82.03156833099996, 28.792230742000072 ], [ -82.031635474999973, 28.792241317000048 ], [ -82.031715464999934, 28.792261114000041 ], [ -82.03179430199998, 28.79228898100007 ], [ -82.031898603999934, 28.792340711000065 ], [ -82.031982623999966, 28.792386211000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029539441999987, 28.79230612300006 ], [ -82.029569351999953, 28.792303200000049 ], [ -82.029694006999989, 28.792286653000076 ], [ -82.029848840999989, 28.792269685000065 ], [ -82.030008815999963, 28.792259366000053 ], [ -82.030418128999941, 28.79224911700004 ], [ -82.030754492999961, 28.792241175000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02950997399995, 28.792960833000052 ], [ -82.029506179999942, 28.792923358000053 ], [ -82.029505984999957, 28.792797451000069 ], [ -82.029512222999983, 28.792716531000053 ], [ -82.029528359999972, 28.79260879900005 ], [ -82.029549197999984, 28.792517580000037 ], [ -82.029557203999957, 28.792464645000052 ], [ -82.029552403999958, 28.792402509000055 ], [ -82.029539441999987, 28.79230612300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028085528999952, 28.792955543000062 ], [ -82.028795241999944, 28.792957932000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027935233999983, 28.794250549000026 ], [ -82.027970614999958, 28.794028454000056 ], [ -82.028085528999952, 28.792955543000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027935233999983, 28.794250549000026 ], [ -82.027955915999939, 28.794253228000059 ], [ -82.028069081999945, 28.794267890000071 ], [ -82.028174943999943, 28.794281605000037 ], [ -82.028306995999969, 28.794295585000043 ], [ -82.028421554999966, 28.794301191000045 ], [ -82.028484405999961, 28.794301696000048 ], [ -82.028507442999967, 28.794301426000061 ], [ -82.028554963999966, 28.794300042000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028085528999952, 28.792955543000062 ], [ -82.028091008, 28.792904392000025 ], [ -82.028148053999985, 28.792322654000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028148053999985, 28.792322654000031 ], [ -82.028160822999951, 28.792192446000058 ], [ -82.028194391999989, 28.791692940000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026145067999948, 28.791698300000064 ], [ -82.026169096, 28.791698033000046 ], [ -82.026409607999938, 28.791696653000031 ], [ -82.026569846999962, 28.791708270000072 ], [ -82.026727607999987, 28.791732310000043 ], [ -82.026878340999986, 28.791750999000044 ], [ -82.027041253999982, 28.791762332000076 ], [ -82.027199927999959, 28.791764644000068 ], [ -82.027346153999986, 28.791759173000059 ], [ -82.027462214999957, 28.791749610000068 ], [ -82.027574010999956, 28.791735971000037 ], [ -82.027721290999978, 28.791711829000064 ], [ -82.027853362999963, 28.791695697000023 ], [ -82.027967431999969, 28.791689818000066 ], [ -82.028194391999989, 28.791692940000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02540989299996, 28.791706429000044 ], [ -82.025716916999954, 28.791703034000079 ], [ -82.026145067999948, 28.791698300000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023916648999943, 28.791557756000032 ], [ -82.024275397999986, 28.79162042300004 ], [ -82.024519721, 28.791664223000055 ], [ -82.024672588999977, 28.791689121000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023916648999943, 28.791557756000032 ], [ -82.02391628099997, 28.791570064000041 ], [ -82.023898128999974, 28.791690164000045 ], [ -82.023859447999939, 28.791858642000079 ], [ -82.023783501999958, 28.79218495300006 ], [ -82.023688151999977, 28.792583929000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023200762999977, 28.790953888000047 ], [ -82.023290805999977, 28.790954316000068 ], [ -82.023606216999951, 28.790955814000029 ], [ -82.023685976999957, 28.790958584000066 ], [ -82.023736231999976, 28.790969347000043 ], [ -82.023798857999964, 28.790996520000078 ], [ -82.02384862599996, 28.791033525000046 ], [ -82.02388594699994, 28.791077729000051 ], [ -82.023909352999965, 28.79112338300007 ], [ -82.023923149999973, 28.791186694000032 ], [ -82.023922868999989, 28.79134986400004 ], [ -82.023916648999943, 28.791557756000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033519267999964, 28.793279375000054 ], [ -82.033591382999987, 28.793094520000068 ], [ -82.03366204699995, 28.792916912000067 ], [ -82.033700936999935, 28.792845336000028 ], [ -82.033754022999972, 28.792771965000043 ], [ -82.033821720999981, 28.792700914000079 ], [ -82.033876378999935, 28.792655060000072 ], [ -82.033948706, 28.792597191000027 ], [ -82.034073232999958, 28.792497556000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034073232999958, 28.792497556000058 ], [ -82.034131807999984, 28.792450691000056 ], [ -82.034225240999945, 28.792371245000027 ], [ -82.034285866999937, 28.792308568000067 ], [ -82.034342491999951, 28.792238429000065 ], [ -82.034392665999974, 28.792162624000071 ], [ -82.034469201999968, 28.792017483000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036193835999939, 28.791942017000054 ], [ -82.03642614499995, 28.791852434000077 ], [ -82.036638427999947, 28.791773204000037 ], [ -82.036741572999972, 28.791747505000046 ], [ -82.036824274999958, 28.79173499500007 ], [ -82.036936516999958, 28.791728305000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036936516999958, 28.791728305000049 ], [ -82.036934540999937, 28.791694213000028 ], [ -82.03693448699994, 28.791575214000034 ], [ -82.036946492999959, 28.791223148000029 ], [ -82.03694577899995, 28.79117900500006 ], [ -82.036938218999978, 28.791122180000059 ], [ -82.036929544999964, 28.791078838000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036929544999964, 28.791078838000033 ], [ -82.037084386999936, 28.791050334000033 ], [ -82.037622268999939, 28.790940769000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03285742099996, 28.791302251000047 ], [ -82.033062528999949, 28.791273583000077 ], [ -82.033175502999939, 28.791259710000077 ], [ -82.033317441999941, 28.791251529000078 ], [ -82.033458185999962, 28.791249034000032 ], [ -82.033661382999981, 28.791252257000053 ], [ -82.033834801999944, 28.791261401000042 ], [ -82.034051756999986, 28.791281199000025 ], [ -82.034112599999958, 28.791289045000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032864750999977, 28.792617372000052 ], [ -82.032888119999939, 28.79159899900003 ], [ -82.032888882999941, 28.791517904000045 ], [ -82.032885379999982, 28.791456048000043 ], [ -82.032876402999989, 28.791384827000059 ], [ -82.03285742099996, 28.791302251000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032131353999944, 28.791599249000058 ], [ -82.032512473999986, 28.791590244000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031097536999937, 28.791623669000046 ], [ -82.031424596999955, 28.791615944000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030731141999979, 28.791625683000063 ], [ -82.030736696999952, 28.791671278000024 ], [ -82.030754492999961, 28.792241175000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028896866999958, 28.791618149000044 ], [ -82.029766919999986, 28.791622335000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029770792999955, 28.791040475000045 ], [ -82.029772550999951, 28.790776226000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028590355999938, 28.791036358000042 ], [ -82.028934957999979, 28.791037562000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028875458999948, 28.791939808000052 ], [ -82.028896866999958, 28.791618149000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034112599999958, 28.791289045000042 ], [ -82.034212146999948, 28.791301882000027 ], [ -82.034409487999937, 28.791334518000042 ], [ -82.034652628999936, 28.791385924000053 ], [ -82.034750450999979, 28.791403400000036 ], [ -82.034783918999949, 28.791408359000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034469201999968, 28.792017483000052 ], [ -82.034480826999982, 28.791995437000026 ], [ -82.034569296999962, 28.791824074000033 ], [ -82.034613720999971, 28.791738027000065 ], [ -82.034783918999949, 28.791408359000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034783918999949, 28.791408359000059 ], [ -82.034808146999978, 28.791361432000031 ], [ -82.034834031999935, 28.791304729000046 ], [ -82.034861975999945, 28.791216130000066 ], [ -82.034874810999952, 28.791140523000024 ], [ -82.034893939999961, 28.79089577700006 ], [ -82.034919008999964, 28.790570904000049 ], [ -82.03493300599996, 28.790390606000074 ], [ -82.034944231999987, 28.790338526000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034208794999984, 28.790334453000071 ], [ -82.034944231999987, 28.790338526000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033289111999977, 28.790329419000045 ], [ -82.033508001999962, 28.790330569000048 ], [ -82.034166562999985, 28.790334219000044 ], [ -82.034208794999984, 28.790334453000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035388603999934, 28.789107281000042 ], [ -82.035390839999934, 28.788814569000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034627730999944, 28.789106004000075 ], [ -82.034683548999965, 28.789106314000037 ], [ -82.035388603999934, 28.789107281000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033194032999972, 28.789097720000029 ], [ -82.033196138999983, 28.788799481000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032832365, 28.789714874000026 ], [ -82.033192346999954, 28.789716871000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034623415999988, 28.790006099000038 ], [ -82.034624769999937, 28.789723669000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031164201999957, 28.790393516000051 ], [ -82.031806035999978, 28.790397085000052 ], [ -82.031823700999951, 28.790397184000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030868383999973, 28.790391870000065 ], [ -82.031164201999957, 28.790393516000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029972188999977, 28.79043381300005 ], [ -82.029997519999938, 28.790433935000067 ], [ -82.030166623999946, 28.790434747000063 ], [ -82.030249731999959, 28.790440004000061 ], [ -82.030319877999943, 28.790461811000057 ], [ -82.030371056999968, 28.790491617000043 ], [ -82.030428382999958, 28.790549345000045 ], [ -82.030453209999962, 28.790593410000042 ], [ -82.03046874599994, 28.790648339000029 ], [ -82.030470722999951, 28.790723102000072 ], [ -82.030468933999941, 28.790972353000029 ], [ -82.03046913299994, 28.791032234000056 ], [ -82.030473459999939, 28.791064746000075 ], [ -82.030486619999976, 28.791108546000032 ], [ -82.030613346999985, 28.791354816000023 ], [ -82.030706321999958, 28.791535790000069 ], [ -82.030728696999972, 28.791605617000073 ], [ -82.030731141999979, 28.791625683000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027773520999972, 28.790382234000049 ], [ -82.027894820999961, 28.790316016000077 ], [ -82.027979139999957, 28.790269803000058 ], [ -82.028036784999983, 28.790252293000037 ], [ -82.028117702999964, 28.790246374000048 ], [ -82.028364910999983, 28.790247581000074 ], [ -82.028511530999936, 28.790248297000062 ], [ -82.028638328999989, 28.79025460400004 ], [ -82.028762603999951, 28.790272012000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027773520999972, 28.790382234000049 ], [ -82.027733135999938, 28.790330364000056 ], [ -82.027679380999984, 28.790246105000051 ], [ -82.027645332999953, 28.790176573000053 ], [ -82.027583771999957, 28.790002357000049 ], [ -82.027538184999969, 28.789861700000074 ], [ -82.027509169999973, 28.789735568000026 ], [ -82.027493922999952, 28.789631381000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029972188999977, 28.79043381300005 ], [ -82.029976805, 28.789815393000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029980738999939, 28.789216660000079 ], [ -82.029983558999959, 28.788761299000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02617063799994, 28.789033590000031 ], [ -82.026845843, 28.789036895000038 ], [ -82.027486673999988, 28.789040030000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025500515999966, 28.789030306000029 ], [ -82.025526003999971, 28.789030431000072 ], [ -82.025997137, 28.789032740000039 ], [ -82.02617063799994, 28.789033590000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027493922999952, 28.789631381000049 ], [ -82.027485843999955, 28.789510510000071 ], [ -82.027486673999988, 28.789040030000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025136917999987, 28.789028522000024 ], [ -82.025500515999966, 28.789030306000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026145067999948, 28.791698300000064 ], [ -82.026158008999971, 28.790427945000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02540989299996, 28.791706429000044 ], [ -82.025412571999937, 28.791684710000027 ], [ -82.025475849999964, 28.791256259000079 ], [ -82.025486699999988, 28.790425185000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024311139999952, 28.792749978000074 ], [ -82.024327936999953, 28.792757541000071 ], [ -82.024434071999963, 28.792816057000039 ], [ -82.024534285999948, 28.792882012000064 ], [ -82.024609995999981, 28.792940021000049 ], [ -82.02467874499996, 28.793000026000072 ], [ -82.024735868999983, 28.793056260000071 ], [ -82.024798186999988, 28.793125742000029 ], [ -82.024849985999936, 28.793190278000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023688151999977, 28.792583929000045 ], [ -82.02376490599994, 28.792592410000054 ], [ -82.023843514999953, 28.792602945000056 ], [ -82.023938081999972, 28.792620611000075 ], [ -82.024031480999952, 28.79264362300006 ], [ -82.024124135999955, 28.792672219000053 ], [ -82.024204950999945, 28.792702165000037 ], [ -82.024311139999952, 28.792749978000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022924026999988, 28.792442349000055 ], [ -82.022974461, 28.792457568000032 ], [ -82.02309268099998, 28.792488583000079 ], [ -82.023205688999951, 28.792514162000032 ], [ -82.023308406999945, 28.792534060000037 ], [ -82.023434319999978, 28.792554198000062 ], [ -82.023542674999987, 28.792567853000037 ], [ -82.023649388999956, 28.792579646000036 ], [ -82.023688151999977, 28.792583929000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029206061999957, 28.794171923000079 ], [ -82.029215968999949, 28.794168518000049 ], [ -82.029291187999945, 28.794139004000044 ], [ -82.029343374999939, 28.794116342000052 ], [ -82.029468469999983, 28.794055015000026 ], [ -82.029596066999943, 28.793979662000027 ], [ -82.029739848999952, 28.793887382000037 ], [ -82.029885306999972, 28.793794024000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03285742099996, 28.791302251000047 ], [ -82.032848344999934, 28.791262763000077 ], [ -82.032808469999964, 28.791152710000063 ], [ -82.032773817999953, 28.791079971000045 ], [ -82.032740604999958, 28.791021358000023 ], [ -82.032698398999969, 28.790957376000051 ], [ -82.032664716999989, 28.790912526000056 ], [ -82.032624249999969, 28.790864267000075 ], [ -82.032580262999943, 28.790809361000072 ], [ -82.032537067999954, 28.790741153000056 ], [ -82.032505380999964, 28.790675110000052 ], [ -82.032483877999937, 28.790614145000063 ], [ -82.032464144999949, 28.790522105000036 ], [ -82.032458905999988, 28.790457652000043 ], [ -82.032459268999958, 28.790400427000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031823700999951, 28.790397184000028 ], [ -82.032353469999975, 28.790400127000055 ], [ -82.032459268999958, 28.790400427000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020042514999943, 28.791697233000036 ], [ -82.019710833999966, 28.791493480000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019185553999989, 28.794983227000046 ], [ -82.019193822999966, 28.794112692000056 ], [ -82.019194462999963, 28.794094611000048 ], [ -82.019195754999942, 28.794073809000054 ], [ -82.019197572999985, 28.794056923000028 ], [ -82.019201119999934, 28.794033314000046 ], [ -82.019205039999974, 28.794013401000029 ], [ -82.019209326999942, 28.793995393000046 ], [ -82.019215870999972, 28.793972345000043 ], [ -82.01922465399997, 28.793946528000049 ], [ -82.019237525999984, 28.793915080000033 ], [ -82.019248645999937, 28.793891870000039 ], [ -82.019260445999976, 28.79387003100004 ], [ -82.019275458999971, 28.79384533800004 ], [ -82.01928503399995, 28.793829944000038 ], [ -82.019295779999936, 28.793811126000037 ], [ -82.019306829999948, 28.793789648000029 ], [ -82.019315133999953, 28.793771670000069 ], [ -82.01932347099995, 28.793751506000035 ], [ -82.019330061999938, 28.793733545000066 ], [ -82.019335054999942, 28.793718307000063 ], [ -82.019342219999942, 28.793692818000068 ], [ -82.019347756999935, 28.793668265000065 ], [ -82.019351072999939, 28.793649732000063 ], [ -82.019354275999945, 28.793625803000054 ], [ -82.019356237999943, 28.793602564000025 ], [ -82.01935657599995, 28.793596269000034 ], [ -82.019357443, 28.793570371000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019185553999989, 28.794983227000046 ], [ -82.018745344999957, 28.794979985000055 ], [ -82.018704341289492, 28.794978924017141 ], [ -82.018664004637245, 28.794971481944803 ], [ -82.018625321942196, 28.794957840864935 ], [ -82.018589239636725, 28.794938334527796 ], [ -82.018556640530633, 28.794913440186303 ], [ -82.018528322211822, 28.794883766919284 ], [ -82.018504977532046, 28.794850040729425 ], [ -82.018487177655246, 28.794813086780483 ], [ -82.018475358083151, 28.794773809208365 ], [ -82.018469807999963, 28.79473316900004 ], [ -82.018480175999969, 28.793642396000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017126606999966, 28.794307007000043 ], [ -82.017785354999944, 28.794311870000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017772046999937, 28.795711183000037 ], [ -82.017785354999944, 28.794311870000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017113264999978, 28.795708919000049 ], [ -82.017772046999937, 28.795711183000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017113264999978, 28.795708919000049 ], [ -82.017126606999966, 28.794307007000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013984572999959, 28.793866172000037 ], [ -82.014590362999968, 28.793869188000031 ], [ -82.015819698999962, 28.793875300000025 ], [ -82.016209480999976, 28.793877235000025 ], [ -82.016215245999945, 28.793877053000074 ], [ -82.01621996199998, 28.79387674000003 ], [ -82.016224604999934, 28.793876286000057 ], [ -82.016228957999942, 28.793875726000067 ], [ -82.016236524999954, 28.793874496000058 ], [ -82.016268511999954, 28.793869104000066 ], [ -82.016289692999976, 28.79386553300003 ], [ -82.016307667999968, 28.793862502000025 ], [ -82.016328957999974, 28.793858914000054 ], [ -82.016344734999961, 28.793856254000048 ], [ -82.016361631999985, 28.79385340500005 ], [ -82.016374933999941, 28.793851163000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013864394999985, 28.793302104000077 ], [ -82.013891296999986, 28.793291768000074 ], [ -82.013917421999963, 28.793281732000025 ], [ -82.013944346999949, 28.793271386000072 ], [ -82.013968013999943, 28.793262295000034 ], [ -82.013984526999934, 28.793256006000036 ], [ -82.013993496999944, 28.793253161000052 ], [ -82.014001247999943, 28.793251203000068 ], [ -82.014008821999937, 28.793249714000069 ], [ -82.01401528699995, 28.793248761000029 ], [ -82.014022497999974, 28.793248035000033 ], [ -82.014029420999975, 28.793247668000049 ], [ -82.014037437999946, 28.793247616000031 ], [ -82.014048310999954, 28.793247670000028 ], [ -82.014609763999943, 28.793250464000039 ], [ -82.015938382999934, 28.793257069000049 ], [ -82.015958290999947, 28.79325688800003 ], [ -82.015974530999983, 28.793256326000062 ], [ -82.016005636999978, 28.793254205000039 ], [ -82.016057601999989, 28.793248161000065 ], [ -82.016193548999979, 28.79323127400005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013984572999959, 28.793866172000037 ], [ -82.01398478599998, 28.793815264000045 ], [ -82.013984543999982, 28.793786886000078 ], [ -82.013983609999968, 28.793759093000062 ], [ -82.013982497999962, 28.793738862000055 ], [ -82.013978902999952, 28.793695811000077 ], [ -82.013976956999954, 28.793678250000028 ], [ -82.01397420099994, 28.793656799000075 ], [ -82.013970886999971, 28.793634484000052 ], [ -82.013966291999964, 28.79360762400006 ], [ -82.013960044999976, 28.793576098000074 ], [ -82.013953405999985, 28.793546824000032 ], [ -82.013946349999969, 28.793519038000056 ], [ -82.013935963999984, 28.793482606000055 ], [ -82.013925902999972, 28.793451037000068 ], [ -82.013916933999951, 28.793425240000033 ], [ -82.013908477999962, 28.793402547000028 ], [ -82.013894841999956, 28.79336866500006 ], [ -82.013884203999964, 28.793344153000078 ], [ -82.013875853999934, 28.793325906000064 ], [ -82.013867071999982, 28.793307545000062 ], [ -82.013864394999985, 28.793302104000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016729836999957, 28.792754397000067 ], [ -82.016799294999942, 28.792757269000049 ], [ -82.016832391999969, 28.792758847000073 ], [ -82.016853382999955, 28.792760604000023 ], [ -82.016869464999957, 28.792762424000045 ], [ -82.016891480999959, 28.792765598000074 ], [ -82.016918904999955, 28.792770670000039 ], [ -82.016943418999972, 28.792776285000059 ], [ -82.016994354999952, 28.79278955500007 ], [ -82.017227060999971, 28.792850329000032 ], [ -82.017520885999943, 28.792927066000061 ], [ -82.017555912999967, 28.79293593500006 ], [ -82.017588718999946, 28.792943739000066 ], [ -82.017641387999959, 28.792955268000071 ], [ -82.017688907999968, 28.792964630000029 ], [ -82.017729735999978, 28.79297189600004 ], [ -82.017762712999968, 28.792977246000078 ], [ -82.01779206599997, 28.79298162300006 ], [ -82.017825148999975, 28.792986122000059 ], [ -82.017855601999941, 28.79298986200007 ], [ -82.017884160999984, 28.79299301900005 ], [ -82.017918198999951, 28.79299607400003 ], [ -82.017943307999985, 28.792998706000049 ], [ -82.018009682999946, 28.79300293700004 ], [ -82.018087087999959, 28.793006407000064 ], [ -82.018189439999958, 28.793008941000039 ], [ -82.018279516999939, 28.793009242000039 ], [ -82.018329150999989, 28.793008636000025 ], [ -82.018386889999988, 28.793007241000055 ], [ -82.018447502999948, 28.793004978000056 ], [ -82.018520501999944, 28.793001162000053 ], [ -82.018587755999988, 28.79299658900004 ], [ -82.018613053999957, 28.792994606000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018480175999969, 28.793642396000052 ], [ -82.018502712999975, 28.793641370000046 ], [ -82.018523125999934, 28.793640357000072 ], [ -82.018540036, 28.79363945800003 ], [ -82.018573640999989, 28.793637511000043 ], [ -82.018605209999976, 28.793635487000074 ], [ -82.018635404999941, 28.793633374000024 ], [ -82.018657734999977, 28.793631701000038 ], [ -82.018674242999964, 28.793630402000076 ], [ -82.018710368999962, 28.793627380000032 ], [ -82.018726314999981, 28.793625966000036 ], [ -82.01874313199994, 28.79362442300004 ], [ -82.018778554999983, 28.793620995000026 ], [ -82.018810587999951, 28.79361768800004 ], [ -82.018840790999946, 28.793614392000052 ], [ -82.018943083999943, 28.793602573000044 ], [ -82.019001933999959, 28.793595752000044 ], [ -82.019029010999986, 28.793592615000023 ], [ -82.019081772999982, 28.79358650000006 ], [ -82.01913117099997, 28.793580804000044 ], [ -82.019147934999978, 28.793579039000065 ], [ -82.019168638999986, 28.79357708200007 ], [ -82.019190203999983, 28.793575304000058 ], [ -82.019206056999963, 28.793574167000031 ], [ -82.019219034999935, 28.793573342000059 ], [ -82.019237540999939, 28.793572332000053 ], [ -82.019252799999947, 28.793571645000043 ], [ -82.019269389999977, 28.793571047000057 ], [ -82.019284973999959, 28.793570628000055 ], [ -82.019297137999956, 28.793570396000064 ], [ -82.019312168999988, 28.793570224000064 ], [ -82.019324403999974, 28.793570179000028 ], [ -82.019357443, 28.793570371000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014576577999946, 28.790583578000053 ], [ -82.014524915999971, 28.790758987000061 ], [ -82.014476868999964, 28.790927990000057 ], [ -82.014469429999963, 28.790965646000075 ], [ -82.014464388999954, 28.791003504000059 ], [ -82.014461329999961, 28.791058240000041 ], [ -82.014460823999968, 28.791106081000066 ], [ -82.014454656999987, 28.791688529000055 ], [ -82.01445427699997, 28.791724489000046 ], [ -82.014454349999937, 28.791735138000035 ], [ -82.014454822999937, 28.791744243000039 ], [ -82.014455492999957, 28.791751633000047 ], [ -82.01445629899996, 28.791758166000079 ], [ -82.014457517999972, 28.791765918000067 ], [ -82.014458843999989, 28.791772811000044 ], [ -82.014460610999947, 28.791780556000049 ], [ -82.01446251599998, 28.791787740000075 ], [ -82.014465126999937, 28.791796297000076 ], [ -82.014469191999979, 28.791807663000043 ], [ -82.014472070999943, 28.79181472700003 ], [ -82.014475514999958, 28.791822392000029 ], [ -82.014479245999951, 28.791829939000024 ], [ -82.01448376999997, 28.791838270000028 ], [ -82.014489767999976, 28.791848218000041 ], [ -82.01449718899994, 28.791859192000061 ], [ -82.014505442999962, 28.791870049000067 ], [ -82.014511273999972, 28.791877028000044 ], [ -82.01451764799998, 28.791884106000055 ], [ -82.014524799999947, 28.791891455000041 ], [ -82.014534080999965, 28.79190017600007 ], [ -82.01454408099994, 28.791908688000035 ], [ -82.014559507999934, 28.791920293000032 ], [ -82.014569380999944, 28.791926876000048 ], [ -82.014578841999935, 28.791932639000038 ], [ -82.014588730999947, 28.79193814000007 ], [ -82.014599595999982, 28.791943616000026 ], [ -82.014611250999963, 28.791948877000038 ], [ -82.014622016999965, 28.791953211000077 ], [ -82.014635478999935, 28.791957966000041 ], [ -82.014648290999958, 28.791961842000035 ], [ -82.014658589999954, 28.791964521000068 ], [ -82.014670320999983, 28.791967115000034 ], [ -82.014683640999976, 28.791969491000032 ], [ -82.014701527999989, 28.791971793000073 ], [ -82.014718442999936, 28.791972948000023 ], [ -82.014737525999976, 28.791973197000061 ], [ -82.014750215999982, 28.791972723000072 ], [ -82.014763541999969, 28.791971673000035 ], [ -82.014986295999961, 28.791949332000058 ], [ -82.015194866999934, 28.791928413000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015907322999965, 28.791904171000056 ], [ -82.015912021999952, 28.791458513000066 ], [ -82.015915815680785, 28.791403736493507 ], [ -82.015925594273853, 28.791349706531424 ], [ -82.015941239793165, 28.79129707502555 ], [ -82.015962563463859, 28.791246477014194 ], [ -82.015989307999973, 28.791198523000048 ], [ -82.016245235999975, 28.790788673000066 ], [ -82.016260602572657, 28.790760022882562 ], [ -82.016271578442598, 28.790729420741005 ], [ -82.016277923848563, 28.790697535060648 ], [ -82.01627950017901, 28.790665062364869 ], [ -82.01627627299996, 28.790632712000047 ], [ -82.016272310999966, 28.790610491000052 ], [ -82.016266001999952, 28.79057511700006 ], [ -82.01626185899994, 28.790551595000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015194866999934, 28.791928413000051 ], [ -82.015181115999951, 28.791822014000047 ], [ -82.015178128999935, 28.791771501000028 ], [ -82.015182852999942, 28.791325054000026 ], [ -82.015186282949571, 28.791267952381904 ], [ -82.015194920749693, 28.791211403750125 ], [ -82.015208694001984, 28.791155882070864 ], [ -82.015227487265008, 28.79110185270282 ], [ -82.015251143021771, 28.791049768496784 ], [ -82.015279462999956, 28.791000066000038 ], [ -82.015424670999948, 28.79076752900005 ], [ -82.015442222691661, 28.79073641151296 ], [ -82.015456814894762, 28.790703801276933 ], [ -82.015468321999947, 28.790669979000029 ], [ -82.015494524999951, 28.790578840000023 ], [ -82.015511228999969, 28.790520968000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017468141999984, 28.790783846000068 ], [ -82.017662286999951, 28.79071913100006 ], [ -82.017794305999985, 28.790694540000061 ], [ -82.017951620999952, 28.790688508000073 ], [ -82.018079470999965, 28.790715148000061 ], [ -82.018199659999937, 28.790755145000048 ], [ -82.018289075999974, 28.790795636000041 ], [ -82.018424655999979, 28.790875817000028 ], [ -82.018716307999966, 28.791058546000045 ], [ -82.018957239999963, 28.791209494000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018522202999975, 28.792361123000035 ], [ -82.018515343, 28.792314866000027 ], [ -82.018509635999976, 28.792255106000027 ], [ -82.018506962999936, 28.792177522000031 ], [ -82.018509704999985, 28.792098624000062 ], [ -82.018516007999949, 28.79203452400003 ], [ -82.018525853999961, 28.791971281000031 ], [ -82.018543450999971, 28.791891823000071 ], [ -82.018565026999966, 28.791818514000056 ], [ -82.018596957999989, 28.791733112000031 ], [ -82.01862387999995, 28.791673425000056 ], [ -82.018663234999963, 28.791598859000032 ], [ -82.018696549999959, 28.791544028000033 ], [ -82.01873465999995, 28.791488154000035 ], [ -82.01877682099996, 28.791432960000066 ], [ -82.018862686999967, 28.791326608000077 ], [ -82.018957239999963, 28.791209494000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013069338999969, 28.790274499000077 ], [ -82.013157101, 28.790280885000072 ], [ -82.013251381999964, 28.790289612000038 ], [ -82.013321858999973, 28.790297404000057 ], [ -82.013384903999963, 28.790305303000025 ], [ -82.013442596999937, 28.790313303000062 ], [ -82.013478870999961, 28.790318714000023 ], [ -82.013512754999965, 28.790324034000037 ], [ -82.013577606999945, 28.790334852000058 ], [ -82.013616276999983, 28.790341977000026 ], [ -82.013655397999969, 28.790349283000069 ], [ -82.013705736999952, 28.790359306000028 ], [ -82.013770616999977, 28.790373701000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013052357999982, 28.791876348000073 ], [ -82.013562998999987, 28.791933769000025 ], [ -82.013754019999965, 28.791955249000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013754019999965, 28.791955249000068 ], [ -82.013770616999977, 28.790373701000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013052357999982, 28.791876348000073 ], [ -82.013069338999969, 28.790274499000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016374933999941, 28.793851163000056 ], [ -82.016366998072215, 28.793819666384376 ], [ -82.016357022999955, 28.793788755000037 ], [ -82.016241672999968, 28.793467332000034 ], [ -82.016225392419216, 28.793414409471382 ], [ -82.016214109999964, 28.793360201000041 ], [ -82.016193548999979, 28.79323127400005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017110583999965, 28.795990599000049 ], [ -82.017113264999978, 28.795708919000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017772046999937, 28.795711183000037 ], [ -82.018085728999949, 28.795712260000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017785354999944, 28.794311870000058 ], [ -82.018099119999988, 28.794314186000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017126606999966, 28.794307007000043 ], [ -82.017133937999972, 28.793536577000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016852381999968, 28.79203472100005 ], [ -82.016817284999945, 28.792123132000029 ], [ -82.016787170999976, 28.792217337000068 ], [ -82.016763658999935, 28.792318885000043 ], [ -82.016748258999939, 28.792428231000031 ], [ -82.016734715999974, 28.792662843000073 ], [ -82.016729836999957, 28.792754397000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016706739999961, 28.793187737000039 ], [ -82.016706294999949, 28.793196108000075 ], [ -82.016705398999989, 28.793212904000029 ], [ -82.016703535999966, 28.793247867000048 ], [ -82.016703077999978, 28.793258101000049 ], [ -82.016703027999938, 28.793266066000058 ], [ -82.016703179999979, 28.793271946000061 ], [ -82.016709671896805, 28.793310556380295 ], [ -82.016721952492006, 28.793347732893945 ], [ -82.016739736863144, 28.793382613007612 ], [ -82.016762612394473, 28.793414387466733 ], [ -82.016790048350117, 28.793442319071126 ], [ -82.016821408187639, 28.793465759778805 ], [ -82.016855964326524, 28.793484165741205 ], [ -82.016892915028734, 28.793497109921045 ], [ -82.016931402999944, 28.793504292000023 ], [ -82.017133937999972, 28.793536577000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017133937999972, 28.793536577000054 ], [ -82.017226648999952, 28.793551355000034 ], [ -82.017311551999967, 28.793564889000038 ], [ -82.017399995999938, 28.793578986000057 ], [ -82.01744550799998, 28.793586153000035 ], [ -82.017478740999934, 28.79359114600004 ], [ -82.017517342999952, 28.79359667500006 ], [ -82.017542072999959, 28.793600063000042 ], [ -82.017582932999971, 28.793605402000026 ], [ -82.01762165699995, 28.79361016200005 ], [ -82.017662762999976, 28.793614897000054 ], [ -82.017692061999981, 28.793618074000051 ], [ -82.017732096999964, 28.793622148000054 ], [ -82.017777567999985, 28.793626404000065 ], [ -82.017822943999988, 28.793630256000029 ], [ -82.017860313999961, 28.793633134000061 ], [ -82.017888367999944, 28.793635120000033 ], [ -82.017907265999952, 28.793636374000073 ], [ -82.017926779999982, 28.793637597000043 ], [ -82.017955921999942, 28.793639290000044 ], [ -82.017983407999964, 28.793640740000058 ], [ -82.018008735999956, 28.793641949000062 ], [ -82.018038444999945, 28.793643260000067 ], [ -82.01809521499996, 28.793645165000044 ], [ -82.018132471999934, 28.793646163000062 ], [ -82.018169528999977, 28.793646802000069 ], [ -82.018203296999957, 28.793647204000024 ], [ -82.01823898899994, 28.793647394000061 ], [ -82.018298910999988, 28.793647175000046 ], [ -82.018349536999949, 28.793646463000073 ], [ -82.018382060999954, 28.793645752000032 ], [ -82.018418757999939, 28.793644709000034 ], [ -82.018450738999945, 28.793643594000059 ], [ -82.018480175999969, 28.793642396000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019332953999935, 28.792922793000059 ], [ -82.019325008999942, 28.792852109000023 ], [ -82.019284413999969, 28.792569166000078 ], [ -82.019237808999947, 28.792263353000067 ], [ -82.019231969717325, 28.792203599811149 ], [ -82.01923236697057, 28.792143563297284 ], [ -82.019238996464338, 28.792083892612521 ], [ -82.019251786516207, 28.792025232955339 ], [ -82.019270598831767, 28.791968218592316 ], [ -82.019295229999955, 28.79191346600004 ], [ -82.019367801999977, 28.791801876000079 ], [ -82.019402378095663, 28.7917625309207 ], [ -82.019439865472933, 28.791725948982389 ], [ -82.019480043999977, 28.791692345000058 ], [ -82.019600867999941, 28.791598601000032 ], [ -82.019639934198423, 28.791566141953922 ], [ -82.019676648777534, 28.791531044985135 ], [ -82.019710833999966, 28.791493480000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019357443, 28.793570371000044 ], [ -82.019890964999945, 28.793576305000045 ], [ -82.020089064999979, 28.793556083000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020434203999969, 28.795566958000052 ], [ -82.020238530999961, 28.795542311000077 ], [ -82.019500608999977, 28.795539717000054 ], [ -82.019451180999965, 28.795539441000074 ], [ -82.019437380999989, 28.795538731000079 ], [ -82.019424023999989, 28.795537462000027 ], [ -82.019382663320286, 28.795531555022119 ], [ -82.019342804207639, 28.795519031070985 ], [ -82.019305497920669, 28.795500220457832 ], [ -82.019271728388915, 28.795475619300579 ], [ -82.019242386262192, 28.79544587643904 ], [ -82.019218245420348, 28.79541177632219 ], [ -82.019199942562707, 28.795374218318848 ], [ -82.019187960415408, 28.795334192997363 ], [ -82.019182614999977, 28.795292756000038 ], [ -82.019184228999961, 28.795122806000052 ], [ -82.019185553999989, 28.794983227000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019357443, 28.793570371000044 ], [ -82.019359301999941, 28.793472621000035 ], [ -82.019354573999976, 28.793211082000028 ], [ -82.019337333999943, 28.792966395000064 ], [ -82.019332953999935, 28.792922793000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018613053999957, 28.792994606000036 ], [ -82.018645921999962, 28.792991814000061 ], [ -82.018695310999988, 28.792987160000052 ], [ -82.018785530999935, 28.792977271000041 ], [ -82.018878991999941, 28.792966441000033 ], [ -82.019011982999984, 28.792951028000061 ], [ -82.019034077999947, 28.79294847400007 ], [ -82.019053144999987, 28.792946382000025 ], [ -82.019082700999945, 28.792943434000051 ], [ -82.01910397599994, 28.792941535000068 ], [ -82.019121474999963, 28.792940095000063 ], [ -82.019130046999976, 28.792939397000055 ], [ -82.01927614799996, 28.792927495000072 ], [ -82.019317888999979, 28.792924094000057 ], [ -82.019332953999935, 28.792922793000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018613053999957, 28.792994606000036 ], [ -82.018610766999984, 28.792972721000069 ], [ -82.018604148999941, 28.792914645000053 ], [ -82.018593782999972, 28.792835094000054 ], [ -82.018574662999981, 28.792707447000055 ], [ -82.018533683999976, 28.792438536000077 ], [ -82.018522202999975, 28.792361123000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018957239999963, 28.791209494000043 ], [ -82.019253804999948, 28.790842141000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020523329999946, 28.79121744300005 ], [ -82.020676376999972, 28.791262628000027 ], [ -82.020805966999944, 28.791302725000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019253804999948, 28.790842141000041 ], [ -82.019293231999939, 28.79086582900004 ], [ -82.019390761999944, 28.790916237000033 ], [ -82.019495984999935, 28.790962012000023 ], [ -82.01960515199994, 28.791001021000056 ], [ -82.019705269999974, 28.791029832000049 ], [ -82.019833220999942, 28.791057627000043 ], [ -82.019880576999981, 28.79106437400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019710833999966, 28.791493480000042 ], [ -82.019751234719465, 28.791441155998836 ], [ -82.019786098514686, 28.791384990751393 ], [ -82.01981506308536, 28.791325567920058 ], [ -82.019837827435239, 28.7912635050196 ], [ -82.019854154999962, 28.791199447000054 ], [ -82.019868978999966, 28.79112370200005 ], [ -82.019880576999981, 28.79106437400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019332953999935, 28.792922793000059 ], [ -82.019340434999947, 28.792922117000046 ], [ -82.019348666999974, 28.792921259000025 ], [ -82.019368111999938, 28.792918923000059 ], [ -82.019380197999965, 28.792917247000048 ], [ -82.019390834999967, 28.792915632000074 ], [ -82.019399267999972, 28.792914257000064 ], [ -82.019407566999973, 28.792912820000026 ], [ -82.019420211999943, 28.792910472000074 ], [ -82.019433040999957, 28.792907892000073 ], [ -82.019443657999943, 28.792905603000065 ], [ -82.019456631999958, 28.792902619000074 ], [ -82.019467601999963, 28.792899930000033 ], [ -82.019477634999987, 28.792897336000067 ], [ -82.019484659999989, 28.792895445000056 ], [ -82.019493029999978, 28.792893105000076 ], [ -82.019500094999955, 28.792891061000034 ], [ -82.019508497999936, 28.792888542000071 ], [ -82.019518967999943, 28.792885272000035 ], [ -82.019526690999953, 28.792882765000058 ], [ -82.019548395999948, 28.792875276000075 ], [ -82.019565990999979, 28.792868712000029 ], [ -82.019580743999938, 28.79286286100006 ], [ -82.019656167999983, 28.792831049000029 ], [ -82.01984192599997, 28.792750518000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016729836999957, 28.792754397000067 ], [ -82.016707516999986, 28.793173178000075 ], [ -82.016706739999961, 28.793187737000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016852381999968, 28.79203472100005 ], [ -82.016881533999936, 28.792044111000052 ], [ -82.017044557999952, 28.792102584000077 ], [ -82.017293737999978, 28.792192586000056 ], [ -82.017450768999936, 28.792243170000063 ], [ -82.017696164999961, 28.792307330000028 ], [ -82.017877110999962, 28.792347071000052 ], [ -82.017987327999947, 28.792361172000028 ], [ -82.018143776999977, 28.792369758000063 ], [ -82.018314535999934, 28.792370705000053 ], [ -82.018415635999986, 28.792367520000028 ], [ -82.018522202999975, 28.792361123000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015907322999965, 28.791904171000056 ], [ -82.016035302999967, 28.791904765000027 ], [ -82.016076633999944, 28.791904986000077 ], [ -82.016109235999977, 28.79190548400004 ], [ -82.016160225999954, 28.791907468000034 ], [ -82.016203196999982, 28.791910284000039 ], [ -82.016243576999955, 28.791913892000025 ], [ -82.016289246999975, 28.791919104000044 ], [ -82.016335537999964, 28.791925626000079 ], [ -82.016378199999963, 28.791932757000041 ], [ -82.016434842999956, 28.791943324000044 ], [ -82.016617001999975, 28.791977459000066 ], [ -82.016672205999953, 28.791987978000066 ], [ -82.016725968999936, 28.79199972400005 ], [ -82.016766853999968, 28.792009864000079 ], [ -82.016798971999947, 28.792018579000057 ], [ -82.01683731199995, 28.792029866000064 ], [ -82.016852381999968, 28.79203472100005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015194866999934, 28.791928413000051 ], [ -82.015275722999945, 28.79192030300004 ], [ -82.015322092999952, 28.791915962000076 ], [ -82.015371615999982, 28.791912005000029 ], [ -82.01541857899997, 28.791908898000031 ], [ -82.015465379999966, 28.791906424000047 ], [ -82.015512333999936, 28.791904567000074 ], [ -82.015559803999963, 28.791903323000042 ], [ -82.015601672999935, 28.791902753000045 ], [ -82.015907322999965, 28.791904171000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013770616999977, 28.790373701000078 ], [ -82.013850280999975, 28.790391376000059 ], [ -82.013984941999979, 28.790425736000032 ], [ -82.014103932999944, 28.790459804000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013069338999969, 28.790274499000077 ], [ -82.013074304999975, 28.789803818000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010214830999985, 28.798330557000043 ], [ -82.010149772999966, 28.79821787700007 ], [ -82.010106942999982, 28.798139097000046 ], [ -82.010072244999947, 28.798068433000026 ], [ -82.010036189999937, 28.797987503000058 ], [ -82.00999688099995, 28.797889146000045 ], [ -82.009968956999955, 28.797810841000057 ], [ -82.009949437999978, 28.797749965000037 ], [ -82.009930459999964, 28.79768550700004 ], [ -82.009912565999969, 28.797616513000037 ], [ -82.009893585999976, 28.797532240000066 ], [ -82.00987297599994, 28.797414066000044 ], [ -82.009854260999987, 28.797258648000025 ], [ -82.009842055999968, 28.797172465000074 ], [ -82.009832836999976, 28.797120182000072 ], [ -82.009817109999972, 28.797044503000052 ], [ -82.009796232999975, 28.796959752000078 ], [ -82.009766885999966, 28.796865643000046 ], [ -82.009748517999981, 28.796808635000048 ], [ -82.009730625999964, 28.796761605000029 ], [ -82.009693487999982, 28.796669693000069 ], [ -82.009650656999952, 28.796579214000076 ], [ -82.009609023999985, 28.796499332000053 ], [ -82.009534095999982, 28.796360777000075 ], [ -82.009499134999942, 28.796288912000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013048495999954, 28.792240720000052 ], [ -82.013052357999982, 28.791876348000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013754019999965, 28.791955249000068 ], [ -82.014082722999945, 28.791992211000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013074304999975, 28.789803818000053 ], [ -82.013130688999979, 28.789806923000071 ], [ -82.01323270599994, 28.789814828000033 ], [ -82.01338653199997, 28.789830541000072 ], [ -82.013540177999971, 28.789850841000032 ], [ -82.013676878999945, 28.789872826000078 ], [ -82.013825377999979, 28.789900971000066 ], [ -82.013988161999976, 28.789937032000068 ], [ -82.014122370999985, 28.789970965000066 ], [ -82.01418793199997, 28.789989843000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015511228999969, 28.790520968000067 ], [ -82.015606248999973, 28.790540469000064 ], [ -82.015715926999974, 28.790556696000067 ], [ -82.015826344999937, 28.790567150000072 ], [ -82.015947462999975, 28.790571959000033 ], [ -82.016047041999968, 28.790570738000042 ], [ -82.016185724999957, 28.790561234000052 ], [ -82.01626185899994, 28.790551595000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016193548999979, 28.79323127400005 ], [ -82.016229899999985, 28.793226838000066 ], [ -82.016474935999952, 28.793196514000044 ], [ -82.016515117999973, 28.793191542000045 ], [ -82.016543432999981, 28.793188202000067 ], [ -82.01656842999995, 28.793186103000039 ], [ -82.016593704999934, 28.793184884000027 ], [ -82.01662642499997, 28.793184646000043 ], [ -82.016706739999961, 28.793187737000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016384078999977, 28.794165355000075 ], [ -82.016386042999954, 28.793959169000061 ], [ -82.016383510484545, 28.793904855172634 ], [ -82.016374933999941, 28.793851163000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013983446999987, 28.79413700200007 ], [ -82.013984572999959, 28.793866172000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013864394999985, 28.793302104000077 ], [ -82.013862875999962, 28.793299047000062 ], [ -82.013860503999979, 28.793294316000072 ], [ -82.013859098999944, 28.793291538000062 ], [ -82.013856416999943, 28.793286285000079 ], [ -82.013854521999974, 28.793282611000052 ], [ -82.013850497999954, 28.793274910000036 ], [ -82.013847018999968, 28.793268359000024 ], [ -82.013843163999979, 28.793261189000077 ], [ -82.013836976999983, 28.793249972000069 ], [ -82.013830130999963, 28.793237852000061 ], [ -82.013828216999968, 28.793234521000045 ], [ -82.013745606999976, 28.793093940000063 ], [ -82.013634225999965, 28.792904510000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042831227999955, 28.896143479000045 ], [ -82.042817986999978, 28.898274960000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042831227999955, 28.896143479000045 ], [ -82.041931599999941, 28.896143657000039 ], [ -82.041857815999947, 28.896158959000047 ], [ -82.041810090999945, 28.896208631000036 ], [ -82.041792753999971, 28.896273572000041 ], [ -82.041784169999971, 28.898284106000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043286728999988, 28.898270832000037 ], [ -82.042817986999978, 28.898274960000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042817986999978, 28.898274960000037 ], [ -82.041784169999971, 28.898284106000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04283408799995, 28.895306847000029 ], [ -82.042834099999936, 28.895681182000033 ], [ -82.042831227999955, 28.896143479000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041784169999971, 28.898284106000062 ], [ -82.041790359999936, 28.901450565000061 ], [ -82.04179583399997, 28.901489522000077 ], [ -82.041806532999942, 28.901522011000054 ], [ -82.041829212999971, 28.901548216000037 ], [ -82.041860810999935, 28.901569742000049 ], [ -82.041898364999952, 28.901586619000057 ], [ -82.041942034999977, 28.901594611000064 ], [ -82.041985619999934, 28.901598351000075 ], [ -82.04284321199998, 28.901597275000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042817986999978, 28.898274960000037 ], [ -82.042836951999959, 28.900280267000028 ], [ -82.04284321199998, 28.901597275000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045422568999982, 28.901913180000065 ], [ -82.04463511199998, 28.901908604000027 ], [ -82.043362385999956, 28.901903946000061 ], [ -82.043339872999979, 28.901904024000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04284321199998, 28.901597275000029 ], [ -82.042844677999938, 28.901905742000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97418143799996, 28.82416975700005 ], [ -81.973958813999957, 28.824599441000032 ], [ -81.97367651199994, 28.825145436000071 ], [ -81.973574532999976, 28.825325902000031 ], [ -81.973444358999984, 28.825506361000066 ], [ -81.973332633999973, 28.825629528000036 ], [ -81.97321306799995, 28.82574519700006 ], [ -81.972996143999978, 28.825913224000033 ], [ -81.97269006099998, 28.826126117000058 ], [ -81.972597647999976, 28.82620688600008 ], [ -81.97255209399998, 28.826240682000048 ], [ -81.972512399999971, 28.826259009000069 ], [ -81.97241754199996, 28.826287352000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972142584999972, 28.826662802000044 ], [ -81.972143480999989, 28.826759517000028 ], [ -81.972140759999945, 28.826778068000067 ], [ -81.97213587899995, 28.826800388000038 ], [ -81.972116780999954, 28.826845457000047 ], [ -81.972075983999957, 28.826931776000038 ], [ -81.972010873999977, 28.827103653000052 ], [ -81.971958767999979, 28.827304565000077 ], [ -81.971942253999941, 28.827415335000069 ], [ -81.971923121999964, 28.827590278000059 ], [ -81.971925674999966, 28.827775920000079 ], [ -81.971939498999973, 28.827986012000054 ], [ -81.971923812999989, 28.828247283000053 ], [ -81.971889932999943, 28.828415346000043 ], [ -81.971858982999947, 28.828532990000042 ], [ -81.971827413999961, 28.828624658000024 ], [ -81.971756231999962, 28.828787366000029 ], [ -81.971676690999971, 28.828930210000067 ], [ -81.971586111999954, 28.829082219000043 ], [ -81.971483703, 28.829225821000023 ], [ -81.971296250999956, 28.829443511000079 ], [ -81.971089718999963, 28.829642859000046 ], [ -81.970942200999957, 28.829763533000062 ], [ -81.970740019999937, 28.829907114000036 ], [ -81.97053871199995, 28.83002930300006 ], [ -81.970312247999971, 28.830141556000058 ], [ -81.970150861999969, 28.830210277000049 ], [ -81.969720506999977, 28.830366792000063 ], [ -81.969368552999981, 28.830495823000035 ], [ -81.969128115999979, 28.83058304900004 ], [ -81.968685610999955, 28.830741087000035 ], [ -81.968351780999967, 28.83086133300003 ], [ -81.968114903999947, 28.830964984000047 ], [ -81.968002440999953, 28.831023907000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966813817999935, 28.835381490000032 ], [ -81.966877577999981, 28.835393679000049 ], [ -81.966937006999956, 28.835400570000047 ], [ -81.967002941999965, 28.835408226000027 ], [ -81.96710401699994, 28.835412070000075 ], [ -81.967169954999974, 28.835410176000039 ], [ -81.967223312999977, 28.835409426000069 ], [ -81.967257582999935, 28.835409815000048 ], [ -81.967294887999969, 28.835415173000058 ], [ -81.96733392699997, 28.835423967000054 ], [ -81.967390755999986, 28.835423599000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967390755999986, 28.835423599000023 ], [ -81.967428057999939, 28.835438124000063 ], [ -81.96747533599995, 28.835459525000033 ], [ -81.967503961999967, 28.835476721000077 ], [ -81.967526488999965, 28.835489217000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967851371999984, 28.831100952000043 ], [ -81.967792765999945, 28.831139472000075 ], [ -81.967611190999946, 28.831257461000064 ], [ -81.96744241, 28.831382136000059 ], [ -81.967190740999968, 28.831618902000059 ], [ -81.967091803999949, 28.831727169000033 ], [ -81.966930247999983, 28.831931872000041 ], [ -81.966812542999946, 28.832104688000072 ], [ -81.966748741999936, 28.832211244000064 ], [ -81.966677773999947, 28.832350458000064 ], [ -81.966606145999947, 28.832513164000034 ], [ -81.966538412999967, 28.832707956000036 ], [ -81.966487603999951, 28.832880980000027 ], [ -81.966436090999935, 28.833219592000034 ], [ -81.966421447999949, 28.833566522000069 ], [ -81.966416515999981, 28.833729339000058 ], [ -81.966408304999959, 28.83396902800007 ], [ -81.966400629999953, 28.834227817000055 ], [ -81.966385395999964, 28.834389678000036 ], [ -81.966368552999938, 28.834490420000066 ], [ -81.966344657999969, 28.834600710000075 ], [ -81.966326738999953, 28.834679967000056 ], [ -81.966305566999949, 28.834753971000055 ], [ -81.96629579599994, 28.834788346000039 ], [ -81.966282154999988, 28.834816744000079 ], [ -81.966269133999958, 28.834839660000057 ], [ -81.966254376999984, 28.834862956000052 ], [ -81.966219661999958, 28.834898090000024 ], [ -81.966160706999972, 28.834948176000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968002440999953, 28.831023907000031 ], [ -81.967911859999958, 28.831071890000032 ], [ -81.967851371999984, 28.831100952000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972106252999936, 28.826491637000061 ], [ -81.972102255614345, 28.826527326204904 ], [ -81.972104007766674, 28.826563195807577 ], [ -81.972111464502049, 28.826598325503436 ], [ -81.972124434503385, 28.826631813971591 ], [ -81.972142584999972, 28.826662802000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972142584999972, 28.826662802000044 ], [ -81.972167756267993, 28.826693103626216 ], [ -81.972196797125903, 28.826719719596127 ], [ -81.972229173128099, 28.826742160089967 ], [ -81.972264288451584, 28.826760012130158 ], [ -81.972301496860979, 28.826772947181503 ], [ -81.972340113601348, 28.826780727197271 ], [ -81.972379427999954, 28.826783209000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972379427999954, 28.826783209000041 ], [ -81.972420815353203, 28.82678423346665 ], [ -81.972461830357346, 28.82677860035238 ], [ -81.972501409039154, 28.826766455786249 ], [ -81.972538524685191, 28.826748114811338 ], [ -81.972572214475747, 28.82672405321221 ], [ -81.972601604461545, 28.826694895172562 ], [ -81.972625932234791, 28.826661397083221 ], [ -81.972644566706975, 28.826624427920564 ], [ -81.972657024479872, 28.826584946704333 ], [ -81.972662982385515, 28.826543977619632 ], [ -81.972662285869418, 28.82650258344847 ], [ -81.97265495299996, 28.826461838000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97265495299996, 28.826461838000057 ], [ -81.972635201785096, 28.826422213310533 ], [ -81.972609454917418, 28.826386194908096 ], [ -81.972578355379042, 28.826354682288066 ], [ -81.972542679825423, 28.826328462421888 ], [ -81.97250331918984, 28.826308190103934 ], [ -81.972461256433931, 28.826294371599161 ], [ -81.97241754199996, 28.826287352000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97241754199996, 28.826287352000065 ], [ -81.972373818404137, 28.826285761728251 ], [ -81.972330296368128, 28.826290246611652 ], [ -81.972287815924062, 28.826300720086163 ], [ -81.972247196999945, 28.826316980000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97418143799996, 28.82416975700005 ], [ -81.974354714999947, 28.824199011000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044013443999972, 28.923280455000054 ], [ -82.044019348999939, 28.922858833000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044019348999939, 28.922858833000078 ], [ -82.043702460999953, 28.92285746500005 ], [ -82.043539649999957, 28.922857518000058 ], [ -82.043493513999977, 28.922845597000048 ], [ -82.043433805999939, 28.922819355000058 ], [ -82.043379517999938, 28.922778788000073 ], [ -82.043341508999958, 28.922728665000079 ], [ -82.043317585999944, 28.922680657000058 ], [ -82.043268165999962, 28.922542477000036 ], [ -82.043126781999945, 28.922111933000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017726774999971, 28.788167288000068 ], [ -82.017827414999942, 28.788167617000056 ], [ -82.018127568999944, 28.788168563000056 ], [ -82.018257652999978, 28.788176186000044 ], [ -82.018283570999984, 28.788185127000077 ], [ -82.018341680999981, 28.788218734000054 ], [ -82.01837464, 28.788243176000037 ], [ -82.018404129999965, 28.788273730000071 ], [ -82.018430080999963, 28.788309379000054 ], [ -82.018440562999956, 28.788334079000037 ], [ -82.018447506999962, 28.78836463600004 ], [ -82.018448531, 28.788699475000044 ], [ -82.018431204999956, 28.788798793000069 ], [ -82.018408497999985, 28.788870895000059 ], [ -82.018366189999938, 28.788955414000043 ], [ -82.018257821999953, 28.789142982000044 ], [ -82.018162959999984, 28.789335908000055 ], [ -82.018145123999943, 28.789375624000058 ], [ -82.018109872999958, 28.789474660000053 ], [ -82.018088786999954, 28.789574262000031 ], [ -82.018000229999984, 28.790240659000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016455338999947, 28.787071352000055 ], [ -82.01646808199996, 28.785798919000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015658389999942, 28.787035429000071 ], [ -82.016455338999947, 28.787071352000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015658389999942, 28.787035429000071 ], [ -82.015671992999955, 28.785791771000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013117209999962, 28.785471058000041 ], [ -82.013700121999989, 28.78561744700005 ], [ -82.013868219999949, 28.785655863000045 ], [ -82.01404267199996, 28.785689987000069 ], [ -82.014173477999975, 28.785710836000078 ], [ -82.014367874999948, 28.785731972000065 ], [ -82.014648705999946, 28.785758152000028 ], [ -82.014831827999956, 28.785770120000052 ], [ -82.014933169999949, 28.785772684000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014507099999946, 28.787056890000031 ], [ -82.014749589999951, 28.786805300000026 ], [ -82.014853635999941, 28.786679234000076 ], [ -82.014902046999964, 28.786610708000069 ], [ -82.01492458599995, 28.786552644000039 ], [ -82.014927321999949, 28.786495875000071 ], [ -82.014928334, 28.786370822000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013110271999949, 28.78610578200005 ], [ -82.013289, 28.786145108000028 ], [ -82.013457380999967, 28.786182804000077 ], [ -82.013812941999959, 28.786255345000029 ], [ -82.014207522999982, 28.786312601000077 ], [ -82.014489366999953, 28.786346949000063 ], [ -82.014928334, 28.786370822000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013110271999949, 28.78610578200005 ], [ -82.013117209999962, 28.785471058000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01418793199997, 28.789989843000058 ], [ -82.014557783999976, 28.788810726000065 ], [ -82.014579687999969, 28.788715374000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014801293999938, 28.790232814000035 ], [ -82.014896707999981, 28.790100309000024 ], [ -82.014918816999966, 28.790067074000035 ], [ -82.014937022999959, 28.790024672000072 ], [ -82.015096869, 28.789578449000032 ], [ -82.015239896999958, 28.789135335000026 ], [ -82.015255590999971, 28.789076558000033 ], [ -82.015261561999978, 28.789028377000079 ], [ -82.01525731199996, 28.78898029800007 ], [ -82.015239866999934, 28.788929064000058 ], [ -82.015211335999936, 28.788888627000063 ], [ -82.015161803999945, 28.788837397000066 ], [ -82.015108991999966, 28.788805367000066 ], [ -82.015036048999946, 28.788776295000048 ], [ -82.014978902999985, 28.788761071000067 ], [ -82.014897383999937, 28.788752678000037 ], [ -82.014579687999969, 28.788715374000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01677181499997, 28.78899606400006 ], [ -82.016965517999949, 28.788241291000077 ], [ -82.016982816999985, 28.788164657000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017726774999971, 28.788167288000068 ], [ -82.017724333, 28.788355170000045 ], [ -82.017717839999989, 28.788419343000044 ], [ -82.017540022999981, 28.788966365000078 ], [ -82.017521598999963, 28.788995016000058 ], [ -82.017501006999964, 28.789018893000048 ], [ -82.017473909999978, 28.789045634000047 ], [ -82.017425278999951, 28.789070133000052 ], [ -82.017377438999972, 28.789081936000059 ], [ -82.017329741999959, 28.789089581000042 ], [ -82.017266867999979, 28.789089589000071 ], [ -82.01677181499997, 28.78899606400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014507099999946, 28.787056890000031 ], [ -82.014480960999947, 28.787035026000069 ], [ -82.014443502999939, 28.787012265000044 ], [ -82.014363711999977, 28.786996332000058 ], [ -82.014150451999967, 28.78697214400006 ], [ -82.013808692999987, 28.786923814000033 ], [ -82.013428473999966, 28.786851338000076 ], [ -82.013383828999963, 28.786845403000029 ], [ -82.013325726999938, 28.786851521000074 ], [ -82.013279693999948, 28.78686656900004 ], [ -82.013221668999961, 28.786899661000064 ], [ -82.013179972999978, 28.786931516000038 ], [ -82.013147101999948, 28.786996692000059 ], [ -82.013131932999954, 28.787049025000044 ], [ -82.013120265999987, 28.787377148000076 ], [ -82.013120271999981, 28.787417638000079 ], [ -82.013136680999935, 28.787466295000058 ], [ -82.013167979999935, 28.787504725000076 ], [ -82.013201729999935, 28.787535046000073 ], [ -82.01324516699998, 28.787558960000069 ], [ -82.013264622999941, 28.787567165000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01646808199996, 28.785798919000058 ], [ -82.01686098, 28.785802043000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015671992999955, 28.785791771000049 ], [ -82.015716365999936, 28.785792939000032 ], [ -82.01646808199996, 28.785798919000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015284376999944, 28.785781818000032 ], [ -82.015295561999949, 28.785782402000052 ], [ -82.015318737999962, 28.785783277000064 ], [ -82.015671992999955, 28.785791771000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014928334, 28.786370822000038 ], [ -82.014933169999949, 28.785772684000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013117209999962, 28.785471058000041 ], [ -82.013120622999963, 28.785031015000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013106920999974, 28.786412264000035 ], [ -82.013110271999949, 28.78610578200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015078199999948, 28.787009625000053 ], [ -82.015658389999942, 28.787035429000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01644115299996, 28.787703630000067 ], [ -82.016442849999976, 28.787699324000073 ], [ -82.016450647999989, 28.787658070000077 ], [ -82.016450986999985, 28.787615655000025 ], [ -82.016455338999947, 28.787071352000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014532429999974, 28.787640749000047 ], [ -82.015009871999951, 28.787664731000064 ], [ -82.015504181999972, 28.787676134000037 ], [ -82.015764345999969, 28.787687564000066 ], [ -82.015834491999954, 28.787696500000038 ], [ -82.015877419999981, 28.787703370000031 ], [ -82.015929120999942, 28.787721923000049 ], [ -82.016137265999987, 28.787825033000047 ], [ -82.016316239999981, 28.787923012000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014532429999974, 28.787640749000047 ], [ -82.014567666999938, 28.787506634000067 ], [ -82.014598030999935, 28.787346260000049 ], [ -82.014605560999939, 28.787230884000053 ], [ -82.014592319999963, 28.787164945000029 ], [ -82.01453664099995, 28.787077856000053 ], [ -82.014507099999946, 28.787056890000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014579687999969, 28.788715374000049 ], [ -82.014586039999983, 28.788650340000061 ], [ -82.014586880999957, 28.788466225000036 ], [ -82.014573854999981, 28.788339026000074 ], [ -82.014542597999935, 28.788068586000065 ], [ -82.014534780999952, 28.787984933000075 ], [ -82.014530870999977, 28.787926490000075 ], [ -82.014532429999974, 28.787640749000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014801293999938, 28.790232814000035 ], [ -82.014886561999958, 28.790276637000034 ], [ -82.014978337999935, 28.790323855000054 ], [ -82.015100004999965, 28.790383961000032 ], [ -82.015245476999951, 28.790443699000036 ], [ -82.015351423999959, 28.79047932800006 ], [ -82.015486285999941, 28.79051584900003 ], [ -82.015511228999969, 28.790520968000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01418793199997, 28.789989843000058 ], [ -82.014295605999962, 28.79002084800004 ], [ -82.014431618999936, 28.790067295000028 ], [ -82.014564674999974, 28.790119995000055 ], [ -82.014741390999973, 28.790202028000067 ], [ -82.014801293999938, 28.790232814000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018000229999984, 28.790240659000062 ], [ -82.018035858999951, 28.790245004000042 ], [ -82.018120969999984, 28.790259829000036 ], [ -82.01822948399996, 28.790285335000078 ], [ -82.018341857999985, 28.790320013000041 ], [ -82.01845171399998, 28.790362730000027 ], [ -82.018555663999962, 28.790412057000026 ], [ -82.018664231999935, 28.790474119000066 ], [ -82.018762337999988, 28.790535584000054 ], [ -82.018910004999952, 28.790628102000028 ], [ -82.019061989999955, 28.790723325000044 ], [ -82.019200825999974, 28.790810309000051 ], [ -82.019253804999948, 28.790842141000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016316239999981, 28.787923012000078 ], [ -82.016458160999946, 28.788000706000048 ], [ -82.016629001999945, 28.788099764000037 ], [ -82.016704456999946, 28.78813757100005 ], [ -82.016761709999969, 28.788157280000064 ], [ -82.016813728999978, 28.788161622000075 ], [ -82.016982816999985, 28.788164657000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016982816999985, 28.788164657000038 ], [ -82.016995858999962, 28.788164891000065 ], [ -82.017726774999971, 28.788167288000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01677181499997, 28.78899606400006 ], [ -82.016286882999964, 28.788904450000075 ], [ -82.016253708999955, 28.788888984000039 ], [ -82.01621793299995, 28.788869507000072 ], [ -82.016196467999976, 28.788854612000023 ], [ -82.016167844999984, 28.788827112000035 ], [ -82.016144425999983, 28.788793883000039 ], [ -82.016122303999964, 28.788745756000026 ], [ -82.016114493999964, 28.788712525000051 ], [ -82.016112537999959, 28.788681011000051 ], [ -82.016116434999958, 28.788648351000063 ], [ -82.016121635, 28.788624286000072 ], [ -82.016316239999981, 28.787923012000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00914290999998, 28.785393502000034 ], [ -82.009936821999986, 28.785391638000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00915480599997, 28.786641670000051 ], [ -82.009287595999979, 28.786600079000038 ], [ -82.009485420999965, 28.786552318000076 ], [ -82.00992533799996, 28.786551816000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00992533799996, 28.786551816000042 ], [ -82.009936821999986, 28.785391638000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00915480599997, 28.786641670000051 ], [ -82.009124988999986, 28.786528468000029 ], [ -82.00914290999998, 28.785393502000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011537356999952, 28.789325158000054 ], [ -82.011527969999975, 28.789259693000076 ], [ -82.011471537999967, 28.788694365000026 ], [ -82.011475856999937, 28.788533932000064 ], [ -82.011519198999963, 28.788365856000041 ], [ -82.011592892999943, 28.788186319000033 ], [ -82.011605889999942, 28.788090822000072 ], [ -82.011618849999934, 28.787659182000027 ], [ -82.011620825999955, 28.787496685000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006401455999935, 28.788997774000052 ], [ -82.006415671999946, 28.788981799000055 ], [ -82.006435833999944, 28.788966901000038 ], [ -82.006456645999947, 28.788952575000053 ], [ -82.006495018999942, 28.788930801000049 ], [ -82.006536643999937, 28.788915901000053 ], [ -82.006578269999977, 28.788907878000032 ], [ -82.006625749999955, 28.788906157000042 ], [ -82.007911633999981, 28.788909963000037 ], [ -82.00852735899997, 28.788909925000041 ], [ -82.008666109999979, 28.78887553800007 ], [ -82.008757161999938, 28.788806776000058 ], [ -82.008787506999965, 28.788707458000033 ], [ -82.008822105999968, 28.787637906000043 ], [ -82.008826431999978, 28.787534771000026 ], [ -82.00888383299997, 28.787463237000054 ], [ -82.008963068999947, 28.787421121000079 ], [ -82.00903389399997, 28.787388428000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012193192999973, 28.78681275200006 ], [ -82.012318993999941, 28.786583840000048 ], [ -82.012348251999981, 28.786497892000057 ], [ -82.012354738999989, 28.786357513000041 ], [ -82.012354701999982, 28.786045242000057 ], [ -82.012351432999935, 28.785893405000024 ], [ -82.012338405999969, 28.785730109000042 ], [ -82.012245906999965, 28.785314898000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005131177999942, 28.791855871000053 ], [ -82.005082461999962, 28.791830102000063 ], [ -82.005040831999963, 28.791791715000045 ], [ -82.005014161999952, 28.791755046000048 ], [ -82.005000500999984, 28.791725825000071 ], [ -82.004990869999972, 28.791698028000042 ], [ -82.004984237999963, 28.791670820000036 ], [ -82.004982284999983, 28.791616961000045 ], [ -82.004981605999944, 28.791031955000051 ], [ -82.004981594999947, 28.790792453000051 ], [ -82.004984194999963, 28.79075750100003 ], [ -82.004999151999982, 28.790701350000063 ], [ -82.005019313999981, 28.790665825000076 ], [ -82.005046629999981, 28.790632018000053 ], [ -82.005081101999963, 28.790602795000041 ], [ -82.005114922999951, 28.790580448000071 ], [ -82.005332155999952, 28.790436623000062 ], [ -82.005367277999937, 28.790417141000034 ], [ -82.005401749999976, 28.790403961000038 ], [ -82.005448654999952, 28.790393883000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005448654999952, 28.790393883000036 ], [ -82.005438169999934, 28.790340359000027 ], [ -82.005431013999953, 28.790305409000041 ], [ -82.005428409999979, 28.790261290000046 ], [ -82.00543621199995, 28.790216598000029 ], [ -82.00545312099996, 28.790167894000035 ], [ -82.005517503999954, 28.790001730000029 ], [ -82.005568228999948, 28.789868798000043 ], [ -82.005590021999978, 28.789786504000062 ], [ -82.005597489999957, 28.789720397000053 ], [ -82.005600088999984, 28.789661954000053 ], [ -82.005612422999945, 28.78922706700007 ], [ -82.005615669999941, 28.789130234000027 ], [ -82.005625423999959, 28.789083250000033 ], [ -82.005644933999974, 28.789034547000028 ], [ -82.005679402999988, 28.788991572000043 ], [ -82.005711271999985, 28.788961204000032 ], [ -82.005757450999965, 28.788933126000074 ], [ -82.005801026999961, 28.788915935000034 ], [ -82.005846555999938, 28.788905620000037 ], [ -82.00589013299998, 28.788903326000025 ], [ -82.006107370999985, 28.788903316000074 ], [ -82.006191273999946, 28.78890503100007 ], [ -82.006236459999968, 28.788909629000045 ], [ -82.006277128999955, 28.788923362000048 ], [ -82.006305097999984, 28.788933675000067 ], [ -82.006339570999955, 28.788953727000035 ], [ -82.006401455999935, 28.788997774000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010835459999953, 28.792165832000023 ], [ -82.01228128799994, 28.792015645000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012299274999975, 28.790829608000024 ], [ -82.012308336, 28.790232183000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010814659999937, 28.790984048000041 ], [ -82.010814085999982, 28.790943114000072 ], [ -82.01081402799997, 28.790381187000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01081402799997, 28.790381187000037 ], [ -82.012308336, 28.790232183000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010814659999937, 28.790984048000041 ], [ -82.012299274999975, 28.790829608000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010822967999957, 28.791576888000066 ], [ -82.012290229999962, 28.791425996000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010939433999965, 28.799499368000056 ], [ -82.010863459999939, 28.799429735000047 ], [ -82.010764560999974, 28.79918527500007 ], [ -82.010686488999966, 28.799035544000049 ], [ -82.01058758399995, 28.798866884000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008722499999976, 28.791788594000025 ], [ -82.008143822999955, 28.791810987000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008143822999955, 28.791810987000076 ], [ -82.008029929999964, 28.791775790000031 ], [ -82.007873826999969, 28.791772934000051 ], [ -82.007782180999982, 28.791778922000049 ], [ -82.007690254999943, 28.791792678000036 ], [ -82.007473446999938, 28.791841584000053 ], [ -82.007269651999934, 28.79191875500004 ], [ -82.007099676999985, 28.791991341000028 ], [ -82.007064989999947, 28.792025721000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007064989999947, 28.792025721000073 ], [ -82.007131765999986, 28.79202189800003 ], [ -82.007261850999953, 28.79199286100004 ], [ -82.007342503999951, 28.791980632000048 ], [ -82.007419686999981, 28.79197146100006 ], [ -82.007506411999941, 28.791966872000046 ], [ -82.007574642999941, 28.791959167000073 ], [ -82.007685929, 28.791936304000046 ], [ -82.007806473999949, 28.791903447000038 ], [ -82.00799032499998, 28.791852250000034 ], [ -82.008084851999968, 28.791834673000039 ], [ -82.008143822999955, 28.791810987000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007064989999947, 28.792025721000073 ], [ -82.006642651999982, 28.792174715000044 ], [ -82.006362275999948, 28.792275450000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004633285999944, 28.792690385000071 ], [ -82.00473147699995, 28.792685893000055 ], [ -82.00487278199995, 28.792677800000035 ], [ -82.005183688999978, 28.792675496000072 ], [ -82.005318978999981, 28.792659447000062 ], [ -82.00540147199996, 28.792646727000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005390337999984, 28.792539701000067 ], [ -82.005290354999943, 28.792552875000069 ], [ -82.005140754999957, 28.792562048000036 ], [ -82.00490659899998, 28.792560911000066 ], [ -82.004760407999981, 28.792554673000041 ], [ -82.004622978999976, 28.792522034000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010835459999953, 28.792165832000023 ], [ -82.010822967999957, 28.791576888000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010822967999957, 28.791576888000066 ], [ -82.010814659999937, 28.790984048000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010481563999974, 28.792214345000048 ], [ -82.010835459999953, 28.792165832000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01228128799994, 28.792015645000049 ], [ -82.012651663999975, 28.791977170000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01228128799994, 28.792015645000049 ], [ -82.012290229999962, 28.791425996000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012290229999962, 28.791425996000044 ], [ -82.012299274999975, 28.790829608000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012308336, 28.790232183000057 ], [ -82.012313196999969, 28.789911635000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01081402799997, 28.790381187000037 ], [ -82.010815203999982, 28.790038265000078 ], [ -82.010811510999986, 28.789948021000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012340465999955, 28.787523909000072 ], [ -82.012334360999944, 28.788210604000028 ], [ -82.012282343999971, 28.788344303000031 ], [ -82.012221663999981, 28.78855057800007 ], [ -82.012204330999964, 28.788649895000049 ], [ -82.012217369999973, 28.78891346100005 ], [ -82.012234727999953, 28.789031874000045 ], [ -82.012217393999947, 28.789123551000046 ], [ -82.012161035999952, 28.789219052000078 ], [ -82.012082992999979, 28.789276356000073 ], [ -82.011935567999956, 28.78930310800007 ], [ -82.011537356999952, 28.789325158000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008728873999985, 28.785393530000078 ], [ -82.00914290999998, 28.785393502000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009936821999986, 28.785391638000078 ], [ -82.009940552999979, 28.785014806000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008715800999937, 28.786779170000045 ], [ -82.00915480599997, 28.786641670000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009949146999986, 28.78709355500007 ], [ -82.009921763999955, 28.786912781000069 ], [ -82.00992533799996, 28.786551816000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00903389399997, 28.787388428000042 ], [ -82.009459467999989, 28.787248242000032 ], [ -82.009949146999986, 28.78709355500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009949146999986, 28.78709355500007 ], [ -82.010148873999981, 28.787030462000075 ], [ -82.010365667999963, 28.786976968000033 ], [ -82.011007389999975, 28.786904341000024 ], [ -82.011628969999947, 28.786827022000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011614349999945, 28.789853399000037 ], [ -82.011537356999952, 28.789325158000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011628969999947, 28.786827022000068 ], [ -82.011714148999943, 28.78681642600003 ], [ -82.011926609999989, 28.78678966800004 ], [ -82.012008467999976, 28.786786393000057 ], [ -82.012091377, 28.786789654000074 ], [ -82.012161096999989, 28.786801659000048 ], [ -82.012193192999973, 28.78681275200006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006362275999948, 28.792275450000034 ], [ -82.006172170999946, 28.791864061000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00601013499994, 28.791194364000035 ], [ -82.006023593999942, 28.791098951000038 ], [ -82.006045053999969, 28.791008992000059 ], [ -82.006074316999957, 28.790929348000077 ], [ -82.006093176999968, 28.790883510000072 ], [ -82.006138700999941, 28.790786102000027 ], [ -82.006152356999962, 28.790748286000053 ], [ -82.006166663999977, 28.79070130100007 ], [ -82.006182269999954, 28.790635982000026 ], [ -82.006207773999961, 28.790477532000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00563875399996, 28.791198535000035 ], [ -82.00601013499994, 28.791194364000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006172170999946, 28.791864061000069 ], [ -82.006106451999983, 28.791724060000035 ], [ -82.006046819999938, 28.791572224000049 ], [ -82.006018410999957, 28.791458204000037 ], [ -82.006015764999972, 28.791422143000034 ], [ -82.006010601999947, 28.791384864000065 ], [ -82.006006695999986, 28.791341128000056 ], [ -82.006005606999963, 28.79126855100003 ], [ -82.00601013499994, 28.791194364000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006207773999961, 28.790477532000068 ], [ -82.006219980999958, 28.790403926000067 ], [ -82.006260941999983, 28.790143795000063 ], [ -82.006314906999989, 28.789810895000073 ], [ -82.006321405999984, 28.789736408000067 ], [ -82.006329196999957, 28.789499197000055 ], [ -82.006339584999978, 28.789190364000035 ], [ -82.006339581999953, 28.789145099000052 ], [ -82.006342181999969, 28.789113586000042 ], [ -82.006349334999982, 28.789087229000074 ], [ -82.006362992999982, 28.789051131000065 ], [ -82.006380551999939, 28.789022482000064 ], [ -82.006401455999935, 28.788997774000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005448654999952, 28.790393883000036 ], [ -82.005497534999961, 28.790389407000077 ], [ -82.006207773999961, 28.790477532000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004622978999976, 28.792522034000058 ], [ -82.004545056999973, 28.79243331400005 ], [ -82.004432090999956, 28.792371212000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008722499999976, 28.791788594000025 ], [ -82.008730059999948, 28.791589401000067 ], [ -82.008784135999974, 28.791274392000048 ], [ -82.008888182999954, 28.791026097000042 ], [ -82.009065948999989, 28.790823635000038 ], [ -82.009317424999949, 28.79058296900007 ], [ -82.00963828, 28.790361397000026 ], [ -82.009934063999935, 28.790219966000052 ], [ -82.010096660999977, 28.79014260100007 ], [ -82.010308040999973, 28.79007382900005 ], [ -82.010529177999956, 28.79001078500005 ], [ -82.010776332999967, 28.789953468000078 ], [ -82.010811510999986, 28.789948021000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011614349999945, 28.789853399000037 ], [ -82.011832311999967, 28.78983026800006 ], [ -82.012248576, 28.78980731200005 ], [ -82.01270756699995, 28.789795338000033 ], [ -82.012849027999948, 28.789795424000033 ], [ -82.012998714999981, 28.789799654000035 ], [ -82.013074304999975, 28.789803818000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012607854999942, 28.799659768000026 ], [ -82.012005399999964, 28.799658894000061 ], [ -82.011413241999946, 28.799656281000068 ], [ -82.011068160999969, 28.799617139000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010651852999956, 28.799485673000049 ], [ -82.010534080999946, 28.799606183000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974277319999942, 28.824004903000059 ], [ -81.97418143799996, 28.82416975700005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974354714999947, 28.824199011000076 ], [ -81.974430663999954, 28.824029044000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980175678999956, 28.81240753700007 ], [ -81.980329241999982, 28.812495179000052 ], [ -81.980396897999981, 28.812505884000075 ], [ -81.980459348999943, 28.812522701000034 ], [ -81.980505317999985, 28.812540279000075 ], [ -81.980544347999967, 28.812562438000043 ], [ -81.980647036999983, 28.812682118000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980342299999961, 28.812243838000029 ], [ -81.98087546499994, 28.812292307000064 ], [ -81.980945522999946, 28.812316704000068 ], [ -81.980982021999978, 28.812335998000037 ], [ -81.981003771999951, 28.812364827000067 ], [ -81.981013450999967, 28.812396813000078 ], [ -81.981003789999988, 28.812431946000061 ], [ -81.98098472099997, 28.812463124000033 ], [ -81.980922073999977, 28.812518282000042 ], [ -81.980849676999981, 28.812567066000042 ], [ -81.980647036999983, 28.812682118000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004665208999938, 28.798458578000066 ], [ -82.004598895999948, 28.798311214000023 ], [ -82.004476917999966, 28.797965047000048 ], [ -82.00437773799996, 28.797430577000057 ], [ -82.004404571999942, 28.79382795600003 ], [ -82.004397996999955, 28.793122991000075 ], [ -82.004395294999938, 28.792935646000046 ], [ -82.004431730999954, 28.792845758000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004202632999977, 28.792821881000066 ], [ -82.00427360499998, 28.792982321000068 ], [ -82.00426773199996, 28.793387836000079 ], [ -82.004261435999979, 28.797623658000077 ], [ -82.004323785999986, 28.797947147000059 ], [ -82.004534961, 28.798515934000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005041863999963, 28.799648287000025 ], [ -82.004886832999944, 28.799639698000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004886832999944, 28.799639698000078 ], [ -82.004885754999975, 28.799778167000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005033147999939, 28.799771989000078 ], [ -82.005806184999983, 28.799783859000058 ], [ -82.006961872999966, 28.799782850000042 ], [ -82.007807481999976, 28.799770562000049 ], [ -82.007950115999961, 28.799770866000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978990773999953, 28.815197839000064 ], [ -81.978777226999966, 28.815765159000023 ], [ -81.978569920999973, 28.816295858000046 ], [ -81.978419147999944, 28.816689604000032 ], [ -81.978264649999971, 28.817130384000052 ], [ -81.978115679999974, 28.817526292000025 ], [ -81.977926905999936, 28.818013286000053 ], [ -81.977779367999972, 28.818345585000031 ], [ -81.977675225999974, 28.818563296000036 ], [ -81.977525525999965, 28.818859307000025 ], [ -81.97732995299998, 28.819222718000049 ], [ -81.97699765599998, 28.819746149000025 ], [ -81.976699082999971, 28.820214230000033 ], [ -81.976697757999943, 28.820216307000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980175678999956, 28.81240753700007 ], [ -81.980037794999987, 28.812373285000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013560368999947, 28.799661151000066 ], [ -82.013563705999957, 28.799791097000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006362275999948, 28.792275450000034 ], [ -82.006256517999986, 28.792313642000067 ], [ -82.00590305999998, 28.792463466000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010811510999986, 28.789948021000043 ], [ -82.01101698399998, 28.789916206000044 ], [ -82.01136401499997, 28.789879966000058 ], [ -82.011614349999945, 28.789853399000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.144821441999966, 28.668626957000072 ], [ -82.144628764999936, 28.668622975000062 ], [ -82.143509026999936, 28.668627236000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145072561999939, 28.668677251000076 ], [ -82.144874779999952, 28.668628059000071 ], [ -82.144821441999966, 28.668626957000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.146742850999942, 28.662668207000024 ], [ -82.14643810299998, 28.663142310000069 ], [ -82.145786305999934, 28.664082705000055 ], [ -82.145452654999985, 28.664588816000048 ], [ -82.145105152999975, 28.665101053000058 ], [ -82.144612395999957, 28.66581055000006 ], [ -82.144257965999941, 28.666330432000052 ], [ -82.143979602999934, 28.66673716300005 ], [ -82.143638983999949, 28.66722646900007 ], [ -82.143249964999939, 28.667796808000048 ], [ -82.142762397999945, 28.668520044000047 ], [ -82.142629245999956, 28.668702010000061 ], [ -82.142278278999981, 28.669235635000064 ], [ -82.141790681999964, 28.669945117000054 ], [ -82.141422369999987, 28.67046958800006 ], [ -82.141123232999973, 28.670903839000061 ], [ -82.140938225999946, 28.671179063000068 ], [ -82.140791264999962, 28.671403824000038 ], [ -82.140642587999935, 28.671642340000062 ], [ -82.140390185999934, 28.672049037000079 ], [ -82.140144698999961, 28.672446558000047 ], [ -82.139893787999938, 28.672853566000072 ], [ -82.139643546999935, 28.673307561000058 ], [ -82.139166993999936, 28.674227629000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14329971899997, 28.668793268000059 ], [ -82.143343553999955, 28.668774725000048 ], [ -82.14337760799998, 28.668755761000057 ], [ -82.143402705999961, 28.668738928000039 ], [ -82.143424341999946, 28.668725153000025 ], [ -82.143445674999953, 28.668705859000056 ], [ -82.143479403999947, 28.668666097000028 ], [ -82.143506208999952, 28.668630925000059 ], [ -82.143509026999936, 28.668627236000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139082449999989, 28.674940542000058 ], [ -82.139417057999935, 28.674303308000049 ], [ -82.139794930999983, 28.673582809000038 ], [ -82.140088584999944, 28.673052017000032 ], [ -82.140351617999954, 28.672595749000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14217481999998, 28.668621133000045 ], [ -82.14186945299997, 28.668616543000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141936258999976, 28.66884899300004 ], [ -82.141893662999962, 28.668905873000028 ], [ -82.141801609999959, 28.669054308000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13531385899995, 28.668645324000067 ], [ -82.135937338999952, 28.668689173000075 ], [ -82.136583363999989, 28.668700775000048 ], [ -82.137195358999975, 28.668711095000049 ], [ -82.137352724999971, 28.668713275000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140724936999959, 28.668773783000063 ], [ -82.140956610999979, 28.668788594000034 ], [ -82.141479428999958, 28.668827012000065 ], [ -82.141479428999958, 28.668827394000061 ], [ -82.141936258999976, 28.66884899300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142383464999966, 28.668858644000068 ], [ -82.142426321999949, 28.66885906300007 ], [ -82.143134896999982, 28.668861371000048 ], [ -82.143337240999983, 28.668854826000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142201145999934, 28.668668982000042 ], [ -82.142242488999955, 28.668716010000026 ], [ -82.142275453999957, 28.66875264600003 ], [ -82.142305378999936, 28.668782409000073 ], [ -82.142347014999984, 28.668823620000069 ], [ -82.142383464999966, 28.668858644000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141936258999976, 28.66884899300004 ], [ -82.142143928999985, 28.668856303000041 ], [ -82.142383464999966, 28.668858644000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14217481999998, 28.668621133000045 ], [ -82.142188808999947, 28.668654948000039 ], [ -82.142201145999934, 28.668668982000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143509026999936, 28.668627236000077 ], [ -82.143123629999934, 28.668627838000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143386967999959, 28.668948337000074 ], [ -82.143353527999977, 28.668884899000034 ], [ -82.143337240999983, 28.668854826000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143337240999983, 28.668854826000029 ], [ -82.143510916999958, 28.66884920800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14329971899997, 28.668793268000059 ], [ -82.143318791999945, 28.668820762000053 ], [ -82.143337240999983, 28.668854826000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966393596999978, 28.835363508000057 ], [ -81.966417652066085, 28.835339092480243 ], [ -81.966437761815911, 28.835311337088413 ], [ -81.966453468848684, 28.835280873127161 ], [ -81.966464415904426, 28.835248393506102 ], [ -81.966470353989905, 28.835214636981487 ], [ -81.966471148042046, 28.835180371353012 ], [ -81.966466779999962, 28.835146376000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965932070999941, 28.835282824000046 ], [ -81.965954083632283, 28.835319967868504 ], [ -81.965981565822233, 28.835353268802148 ], [ -81.966013858839631, 28.835381928599318 ], [ -81.966050188641901, 28.835405260303357 ], [ -81.966089684427374, 28.835422704668535 ], [ -81.966131399507816, 28.835433843564793 ], [ -81.966174333999959, 28.835438410000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965912700999979, 28.835195193000061 ], [ -81.965915137390255, 28.835225196368054 ], [ -81.965921634355013, 28.835254589012333 ], [ -81.965932070999941, 28.835282824000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966062028999943, 28.834974937000027 ], [ -81.966026404162619, 28.834993489864871 ], [ -81.965994309467632, 28.83501764081478 ], [ -81.965966616252899, 28.835046734176327 ], [ -81.965944076360699, 28.835079980094694 ], [ -81.965927301725912, 28.835116475977419 ], [ -81.965916747762591, 28.835155230998854 ], [ -81.965912700999979, 28.835195193000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966160706999972, 28.834948176000069 ], [ -81.966126887830896, 28.834953410467399 ], [ -81.966093859004786, 28.834962367726504 ], [ -81.966062028999943, 28.834974937000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966429052999956, 28.83506195800004 ], [ -81.966400189200982, 28.835029375954122 ], [ -81.966366828895531, 28.835001415291977 ], [ -81.966329704111743, 28.834978689556884 ], [ -81.966289629482006, 28.834961697421662 ], [ -81.966247484367486, 28.834950811746229 ], [ -81.966204193562149, 28.834946271395932 ], [ -81.966160706999972, 28.834948176000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966174333999959, 28.835438410000052 ], [ -81.966213950838252, 28.835438444321447 ], [ -81.966253227458424, 28.835433263379315 ], [ -81.966291480309465, 28.835422957340228 ], [ -81.966328043657512, 28.835407705565444 ], [ -81.966362281171982, 28.835387773489362 ], [ -81.966393596999978, 28.835363508000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966466779999962, 28.835146376000068 ], [ -81.966458053207035, 28.835116619597137 ], [ -81.966445400789453, 28.835088308525815 ], [ -81.966429052999956, 28.83506195800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971638762999987, 28.825966777000076 ], [ -81.971640061999949, 28.825967855000044 ], [ -81.971672568999963, 28.826059537000049 ], [ -81.971764934999953, 28.826154669000061 ], [ -81.971917150999957, 28.826281901000073 ], [ -81.972017924999989, 28.826365385000031 ], [ -81.972037381999939, 28.826387197000031 ], [ -81.97206155899994, 28.826417152000033 ], [ -81.97208491899994, 28.826447333000033 ], [ -81.972106252999936, 28.826491637000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972247196999945, 28.826316980000058 ], [ -81.972210959648876, 28.826338019948995 ], [ -81.972178379478194, 28.82636437061392 ], [ -81.972150227999975, 28.826395408000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972150227999975, 28.826395408000053 ], [ -81.972130710177012, 28.826425112084259 ], [ -81.972115937264007, 28.82645743914836 ], [ -81.972106252999936, 28.826491637000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016870611999934, 28.843454055000052 ], [ -82.016880273999959, 28.843418444000065 ], [ -82.016883819999975, 28.843381965000049 ], [ -82.016882603999989, 28.843365180000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016794792999974, 28.843559263000031 ], [ -82.016826761999937, 28.843528211000034 ], [ -82.016852292999943, 28.843492787000059 ], [ -82.016870611999934, 28.843454055000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026645776999942, 28.844691902000079 ], [ -82.026656832999947, 28.84459782600004 ], [ -82.02669842499995, 28.844375507000052 ], [ -82.026767690999975, 28.844131786000048 ], [ -82.026868276999949, 28.843878896000035 ], [ -82.027220966999948, 28.843101140000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977520134999963, 28.853798050000023 ], [ -81.977479802999937, 28.853712672000029 ], [ -81.977429714999971, 28.853598642000065 ], [ -81.977405848999979, 28.853550441000039 ], [ -81.977408456999967, 28.853527523000025 ], [ -81.977423227999964, 28.853501810000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977160158999936, 28.852971474000071 ], [ -81.977107053999987, 28.852946551000059 ], [ -81.976978247999966, 28.852699581000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978348955999934, 28.852137086000027 ], [ -81.978345012999966, 28.852110156000037 ], [ -81.978340881999941, 28.852095364000036 ], [ -81.978333303999989, 28.852082652000036 ], [ -81.978246761999969, 28.85201181900004 ], [ -81.978074976999949, 28.851882071000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10580013799995, 28.748851922000028 ], [ -82.105737855999962, 28.74896528000005 ], [ -82.10566113699997, 28.749089497000057 ], [ -82.10559208799998, 28.749200162000079 ], [ -82.105477001999986, 28.749380841000061 ], [ -82.105384930999946, 28.749523128000078 ], [ -82.105267276999939, 28.749697037000033 ], [ -82.105152162999957, 28.749850627000058 ], [ -82.10504984399995, 28.749990665000041 ], [ -82.104932165999969, 28.750142 ], [ -82.104806805999942, 28.750297856000032 ], [ -82.104753079999966, 28.750363361000041 ], [ -82.104274640999961, 28.750930333000042 ], [ -82.104011110999977, 28.751242054000045 ], [ -82.103202587999988, 28.752179484000067 ], [ -82.102174010999988, 28.753381188000048 ], [ -82.101396158999989, 28.754282466000063 ], [ -82.101351859999966, 28.75433720500007 ], [ -82.100888859999941, 28.754881672000067 ], [ -82.100353629999972, 28.755503314000066 ], [ -82.099804573999961, 28.756140206000055 ], [ -82.099798083999985, 28.756147799000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100434115999974, 28.754323975000034 ], [ -82.100153971999987, 28.754328693000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.101074045999951, 28.753621917000032 ], [ -82.101127358999975, 28.753548961000035 ], [ -82.101243377999936, 28.753396080000073 ], [ -82.101605308999979, 28.752938957000026 ], [ -82.101802739999982, 28.752704271000027 ], [ -82.102014886999939, 28.752448946000072 ], [ -82.102109267999936, 28.752333515000032 ], [ -82.10221317099996, 28.752203562000034 ], [ -82.102326578999964, 28.752042280000069 ], [ -82.102383273999976, 28.751951420000069 ], [ -82.102483680999967, 28.751793967000026 ], [ -82.102580603999968, 28.751618181000026 ], [ -82.102663660999951, 28.751448516000039 ], [ -82.102750173999937, 28.751266627000064 ], [ -82.102817629999947, 28.751100031000078 ], [ -82.102883330999987, 28.750913573000048 ], [ -82.102954198999953, 28.750691968000069 ], [ -82.103016385999979, 28.750456619000033 ], [ -82.103075030999946, 28.750147932000061 ], [ -82.103104560999952, 28.749957443000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103104560999952, 28.749957443000028 ], [ -82.103131885999971, 28.749781184000028 ], [ -82.10314336, 28.74972106000007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043990985999983, 28.796407086000045 ], [ -82.04380030699997, 28.795931212000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02661606099997, 28.846092442000042 ], [ -82.026639113933285, 28.846066276482688 ], [ -82.02665780715725, 28.846036837810669 ], [ -82.026671683812438, 28.846004845460442 ], [ -82.026680404755623, 28.845971081319959 ], [ -82.026683756848342, 28.845936370579444 ], [ -82.02668165816597, 28.845901561563878 ], [ -82.02667415999997, 28.845867505000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026406532999943, 28.846176594000042 ], [ -82.026431048257322, 28.846175634601778 ], [ -82.02645541399994, 28.846172766000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026169158999949, 28.846058981000056 ], [ -82.026194483560715, 28.846089034865606 ], [ -82.026223671572481, 28.846115352695723 ], [ -82.026256177204516, 28.846137442333536 ], [ -82.026291392584895, 28.84615489069154 ], [ -82.02632865916803, 28.846167371476529 ], [ -82.026367280049783, 28.846174651291449 ], [ -82.026406532999943, 28.846176594000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026211796999974, 28.845757969000033 ], [ -82.026186566444807, 28.845782239785365 ], [ -82.026165378393017, 28.845810109453392 ], [ -82.026148739251298, 28.845840911902926 ], [ -82.026137046704747, 28.845873910937605 ], [ -82.026130580211998, 28.845908317861415 ], [ -82.026129494325971, 28.84594331032898 ], [ -82.02613381499998, 28.845978052000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026589125999976, 28.845748154000034 ], [ -82.026550692999706, 28.845723852779429 ], [ -82.026509098018906, 28.845705481540914 ], [ -82.026465249601486, 28.845693441560723 ], [ -82.026420105512372, 28.845687995823738 ], [ -82.026374651817378, 28.845689263279194 ], [ -82.026329881344878, 28.845697216242524 ], [ -82.026286771999935, 28.845711681000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027635776999944, 28.846132868000041 ], [ -82.027658001999953, 28.846130884000047 ], [ -82.027721698999983, 28.846121056000072 ], [ -82.027810943999953, 28.846107872000061 ], [ -82.027894009999955, 28.846096549000038 ], [ -82.027981097999941, 28.846087983000075 ], [ -82.028061279999974, 28.846080297000071 ], [ -82.028119814999968, 28.846071731000052 ], [ -82.028170978999981, 28.846062285000073 ], [ -82.028232601999946, 28.846047461000069 ], [ -82.028313978999961, 28.846024618000058 ], [ -82.028392500999985, 28.845997492000038 ], [ -82.028458173999979, 28.845973222000055 ], [ -82.028543538999941, 28.845940519000067 ], [ -82.028634973999942, 28.845888108000054 ], [ -82.028705341999967, 28.845828684000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02645541399994, 28.846172766000052 ], [ -82.026491112819699, 28.846165140220148 ], [ -82.026525563099511, 28.846153068083925 ], [ -82.026558213427933, 28.846136742818089 ], [ -82.026588541203623, 28.846116425724951 ], [ -82.02661606099997, 28.846092442000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02667415999997, 28.845867505000058 ], [ -82.026660060910075, 28.845833100952529 ], [ -82.026640870212347, 28.845801255388587 ], [ -82.026617038657349, 28.845772716295954 ], [ -82.026589125999976, 28.845748154000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026286771999935, 28.845711681000068 ], [ -82.026247456817472, 28.845731864610883 ], [ -82.026211796999974, 28.845757969000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024961315999974, 28.844870354000079 ], [ -82.025042872999961, 28.84490321100003 ], [ -82.02507921299997, 28.844922303000033 ], [ -82.025113382999962, 28.844943306000062 ], [ -82.025145925999936, 28.844966218000025 ], [ -82.025175758999978, 28.844994861000032 ], [ -82.025196914999981, 28.845020641000076 ], [ -82.025216986999965, 28.845049764000066 ], [ -82.025238145999936, 28.845081750000077 ], [ -82.025262559999987, 28.845125673000041 ], [ -82.02528046599997, 28.845167687000071 ], [ -82.025297832999968, 28.845228323000072 ], [ -82.025310317999981, 28.845275272000038 ], [ -82.025333109999963, 28.845335430000034 ], [ -82.025365661999956, 28.845397495000043 ], [ -82.025416655999948, 28.845469106000053 ], [ -82.025460052999961, 28.845521620000056 ], [ -82.025505617999954, 28.845569359000024 ], [ -82.025556606999942, 28.845615186000032 ], [ -82.025614102999953, 28.845661968000059 ], [ -82.025657493999972, 28.845691563000059 ], [ -82.025712816999942, 28.845724021000024 ], [ -82.02575946199994, 28.845750750000036 ], [ -82.025823461999948, 28.84578129700003 ], [ -82.025888545999976, 28.845815662000064 ], [ -82.025970985999948, 28.845850025000061 ], [ -82.026003528, 28.845868163000034 ], [ -82.026048003999961, 28.845894892000047 ], [ -82.026081633, 28.845918759000028 ], [ -82.026105500999961, 28.845944538000026 ], [ -82.02613381499998, 28.845978052000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02613381499998, 28.845978052000078 ], [ -82.026142043216169, 28.846006489071645 ], [ -82.026153891308994, 28.846033618267679 ], [ -82.026169158999949, 28.846058981000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024961315999974, 28.844870354000079 ], [ -82.024966793999965, 28.84485937900007 ], [ -82.024998921999952, 28.844797093000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02684368499996, 28.84472962500007 ], [ -82.026866813999959, 28.844734503000041 ], [ -82.026990466999962, 28.844766947000039 ], [ -82.027101108999943, 28.844816582000078 ], [ -82.027172706999977, 28.844870044000061 ], [ -82.027229115999944, 28.844908231000034 ], [ -82.027305049999939, 28.844955962000029 ], [ -82.027385319999951, 28.844988415000046 ], [ -82.027482942999939, 28.845024683000076 ], [ -82.027667343999951, 28.845093402000032 ], [ -82.028094712999973, 28.845223186000055 ], [ -82.028216196999949, 28.845255628000075 ], [ -82.028383235999968, 28.845288062000066 ], [ -82.028526407999948, 28.845305220000057 ], [ -82.028643547999934, 28.845314745000053 ], [ -82.028728222999973, 28.845315860000028 ], [ -82.028838591999943, 28.845371828000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02684368499996, 28.84472962500007 ], [ -82.02687788999998, 28.844657210000037 ], [ -82.026892194999959, 28.844611943000075 ], [ -82.026925307999988, 28.844444188000068 ], [ -82.02695347699995, 28.844323859000042 ], [ -82.026975148999952, 28.844249369000067 ], [ -82.026991005999946, 28.844210272000055 ], [ -82.027016342999957, 28.844167235000043 ], [ -82.027030036999975, 28.844153540000036 ], [ -82.027065138999944, 28.844128645000069 ], [ -82.027093802999957, 28.84412201400005 ], [ -82.027131297999972, 28.844119465000063 ], [ -82.027190767999969, 28.844131735000076 ], [ -82.027430666999976, 28.844205349000049 ], [ -82.027632417999939, 28.844266425000058 ], [ -82.027736543999936, 28.844287413000075 ], [ -82.027845010999954, 28.844314128000065 ], [ -82.028074964999973, 28.844384747000049 ], [ -82.028200796999954, 28.844453477000059 ], [ -82.028285406999942, 28.844497387000047 ], [ -82.028400385999987, 28.844537470000034 ], [ -82.028532715999972, 28.844573730000036 ], [ -82.02910067199997, 28.844760594000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02910067199997, 28.844760594000036 ], [ -82.029098929999975, 28.84476459900003 ], [ -82.029010046999986, 28.844963247000067 ], [ -82.028948046999972, 28.84507439500004 ], [ -82.028914734999944, 28.845143399000051 ], [ -82.028840970999966, 28.845288546000063 ], [ -82.028838591999943, 28.845371828000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026589125999976, 28.845748154000034 ], [ -82.026566980999974, 28.845705711000051 ], [ -82.026554823999959, 28.845667898000045 ], [ -82.02654483699996, 28.84563657700005 ], [ -82.026539188999948, 28.845604111000057 ], [ -82.026546975999963, 28.845515490000025 ], [ -82.026563440999951, 28.84543771500006 ], [ -82.026616574999935, 28.844947345000037 ], [ -82.026638651999974, 28.84475253100004 ], [ -82.026645776999942, 28.844691902000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026645776999942, 28.844691902000079 ], [ -82.026704928999948, 28.844700360000047 ], [ -82.02684368499996, 28.84472962500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029490116999966, 28.843849589000058 ], [ -82.029378729999962, 28.844039329000054 ], [ -82.029235961999973, 28.844434320000062 ], [ -82.02910067199997, 28.844760594000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027220966999948, 28.843101140000044 ], [ -82.02753454599997, 28.843203137000046 ], [ -82.028947659999972, 28.843670724000049 ], [ -82.029490116999966, 28.843849589000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028838591999943, 28.845371828000054 ], [ -82.028793381999947, 28.845486042000061 ], [ -82.028733895999949, 28.845619292000038 ], [ -82.028612542999952, 28.845766818000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034968262999939, 28.845557132000067 ], [ -82.034900544999971, 28.84581838500003 ], [ -82.034915775999934, 28.845957803000033 ], [ -82.034993911999948, 28.846085745000039 ], [ -82.03508504499996, 28.846162117000063 ], [ -82.035154515999977, 28.846330170000044 ], [ -82.035130882999965, 28.847010097000066 ], [ -82.035030118999941, 28.847076315000038 ], [ -82.034879271999955, 28.84708878400005 ], [ -82.033415032999983, 28.847086929000056 ], [ -82.03312723099998, 28.84712507100005 ], [ -82.033001817999946, 28.847113164000064 ], [ -82.032406719999983, 28.846933068000055 ], [ -82.031901850999986, 28.846739548000073 ], [ -82.03173626399996, 28.846697125000048 ], [ -82.031402353999965, 28.846677967000062 ], [ -82.031175184999938, 28.846605437000051 ], [ -82.031069810999952, 28.846568488000059 ], [ -82.030975385999966, 28.846532907000039 ], [ -82.03092339799997, 28.846515972000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02034016999994, 28.847723313000074 ], [ -82.020277979999946, 28.84783374400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020523755999989, 28.847931869000035 ], [ -82.020713013999966, 28.848014864000049 ], [ -82.022105487999966, 28.848565130000054 ], [ -82.022748770999954, 28.848824447000027 ], [ -82.023039415999961, 28.848940731000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023230727999987, 28.84887817200007 ], [ -82.023351881999986, 28.848648175000051 ], [ -82.023409124999944, 28.848533572000065 ], [ -82.023513212999944, 28.848368538000045 ], [ -82.023616006999987, 28.848236738000026 ], [ -82.023726612999951, 28.848114104000047 ], [ -82.023848932999954, 28.847997197000041 ], [ -82.023933516999989, 28.847922695000079 ], [ -82.024031116999936, 28.847850484000048 ], [ -82.024174268999957, 28.847759930000052 ], [ -82.024320023999962, 28.847679688000028 ], [ -82.024406023999973, 28.847639319000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016794792999974, 28.843559263000031 ], [ -82.016861067999969, 28.843544374000032 ], [ -82.016912041999944, 28.843533863000062 ], [ -82.016973862999976, 28.843529080000053 ], [ -82.017041107999944, 28.843534801000033 ], [ -82.017110306999939, 28.843547780000051 ], [ -82.017162368999948, 28.843559998000046 ], [ -82.017219637999972, 28.843572213000073 ], [ -82.017273432999957, 28.843579846000068 ], [ -82.017339377999974, 28.84358442100006 ], [ -82.017453910999961, 28.843590518000042 ], [ -82.017618768999967, 28.843592025000078 ], [ -82.017773211999952, 28.843582837000042 ], [ -82.017990127999951, 28.84356752900004 ], [ -82.018189689999986, 28.843556807000027 ], [ -82.018288603999963, 28.843556793000062 ], [ -82.018441313999972, 28.843555245000061 ], [ -82.018561052999985, 28.84355981300007 ], [ -82.018779708999944, 28.843579644000044 ], [ -82.018887450999955, 28.843595750000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016572458999974, 28.843131159000052 ], [ -82.01652772999995, 28.843137791000061 ], [ -82.016484808999962, 28.843150703000049 ], [ -82.016449187999967, 28.843167497000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015735361999987, 28.842785801000048 ], [ -82.015707690999989, 28.842741931000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015946631999952, 28.843029239000032 ], [ -82.016018699999961, 28.843079509000063 ], [ -82.016187477999949, 28.843191791000038 ], [ -82.01624616099997, 28.843237844000043 ], [ -82.016278161999935, 28.843272378000052 ], [ -82.016298122999956, 28.843295676000025 ], [ -82.016321486999971, 28.843331732000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016321486999971, 28.843331732000024 ], [ -82.016316839999945, 28.843370637000078 ], [ -82.016319449999969, 28.843410506000055 ], [ -82.016329347999942, 28.843449480000061 ], [ -82.016346271999964, 28.843486533000032 ], [ -82.016369778999945, 28.843520688000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028490912999985, 28.865484555000023 ], [ -82.028686325999956, 28.865461542000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998732089999976, 28.860842859000059 ], [ -81.998822807999943, 28.860823287000073 ], [ -81.998870754999984, 28.86081727100003 ], [ -81.998907647999943, 28.860816010000065 ], [ -81.998943434999944, 28.860818227000038 ], [ -81.998982485999989, 28.860824816000047 ], [ -81.999044967999964, 28.860840096000061 ], [ -81.999134351999942, 28.86086989100005 ], [ -81.999210719999951, 28.860894337000047 ], [ -81.999299236999946, 28.860923368000044 ], [ -81.999404901999981, 28.860955084000068 ], [ -81.999424872999953, 28.860961908000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998628330999964, 28.860877013000049 ], [ -81.99866863799997, 28.860868872000026 ], [ -81.998707123999964, 28.860855551000043 ], [ -81.998732089999976, 28.860842859000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000089418999949, 28.861127056000043 ], [ -82.000056080999968, 28.861095929000044 ], [ -82.000000539999974, 28.861069955000062 ], [ -81.999910286999977, 28.861024881000048 ], [ -81.999839993999956, 28.860991267000031 ], [ -81.999769700999934, 28.860963764000076 ], [ -81.999596137999959, 28.860904939000079 ], [ -81.99946317499996, 28.860862612000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998862162999956, 28.860605865000025 ], [ -81.998853133999944, 28.860566912000024 ], [ -81.99883674299997, 28.860529290000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99707661399998, 28.86016489800005 ], [ -81.997122408999985, 28.860229825000033 ], [ -81.997693746999971, 28.860404283000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958574243999976, 28.955566856000075 ], [ -81.958426421999945, 28.955456361000074 ], [ -81.95805029099995, 28.955191894000052 ], [ -81.957199307999986, 28.954345924000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958865691999961, 28.955337129000043 ], [ -81.958574243999976, 28.955566856000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957520231999979, 28.954033125000024 ], [ -81.957199307999986, 28.954345924000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03724893499998, 28.870566236000059 ], [ -82.037136918999977, 28.870710463000023 ], [ -82.03708179299997, 28.870812804000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972247196999945, 28.826316980000058 ], [ -81.972209083999985, 28.826314665000041 ], [ -81.972175251999943, 28.826310074000048 ], [ -81.972134479999966, 28.826302426000041 ], [ -81.972103250999965, 28.826294780000069 ], [ -81.972069418999979, 28.826284842000064 ], [ -81.972040794999941, 28.826271848000033 ], [ -81.972014772999955, 28.826260383000033 ], [ -81.971974005999982, 28.826232872000048 ], [ -81.971918497, 28.826187023000045 ], [ -81.971840438999948, 28.826112139000031 ], [ -81.971745902999942, 28.826024264000068 ], [ -81.971638762999987, 28.825966777000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009866098999964, 28.793843940000045 ], [ -82.011477627999966, 28.793521737000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009849446999965, 28.794571640000072 ], [ -82.011446344999968, 28.794252366000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011446344999968, 28.794252366000023 ], [ -82.011531199, 28.793901909000056 ], [ -82.011539074103084, 28.793857843360314 ], [ -82.011541490445381, 28.79381314482405 ], [ -82.011538411610957, 28.793768487029286 ], [ -82.01152988399997, 28.793724543000053 ], [ -82.011477627999966, 28.793521737000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009281288999944, 28.79463538300007 ], [ -82.009432487999959, 28.794644442000049 ], [ -82.009472845070803, 28.794644272377237 ], [ -82.009512847999986, 28.794638935000023 ], [ -82.009849446999965, 28.794571640000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009460134999983, 28.793925104000039 ], [ -82.009866098999964, 28.793843940000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009849446999965, 28.794571640000072 ], [ -82.009857858999965, 28.794442865000065 ], [ -82.009864347999951, 28.794283388000053 ], [ -82.009867578999945, 28.794053244000054 ], [ -82.009866098999964, 28.793843940000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011361608999948, 28.794602337000072 ], [ -82.011446344999968, 28.794252366000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011477627999966, 28.793521737000049 ], [ -82.01138588799995, 28.793165696000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009281288999944, 28.79463538300007 ], [ -82.009289789999968, 28.794517145000043 ], [ -82.009301911999955, 28.794281842000032 ], [ -82.009305257999983, 28.794050088000063 ], [ -82.009303505999981, 28.793852221000066 ], [ -82.009298290999936, 28.793720821000079 ], [ -82.009268784999961, 28.793501565000042 ], [ -82.009209254999973, 28.793241569000031 ], [ -82.009165546999952, 28.793110422000041 ], [ -82.009142810999947, 28.793051646000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008699672999967, 28.793841417000067 ], [ -82.008699664999938, 28.793750632000069 ], [ -82.008694453999965, 28.793662014000063 ], [ -82.008670159999951, 28.793521446000057 ], [ -82.008645868999963, 28.793429772000025 ], [ -82.008586459999947, 28.793210955000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008586459999947, 28.793210955000063 ], [ -82.008685742999944, 28.793185301000051 ], [ -82.008734306999941, 28.793171547000043 ], [ -82.009016378999945, 28.793088278000027 ], [ -82.009142810999947, 28.793051646000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006754110999964, 28.794058444000029 ], [ -82.006717132999938, 28.794041052000068 ], [ -82.006673767999985, 28.79400744000003 ], [ -82.006640808999975, 28.793967715000065 ], [ -82.006618258999936, 28.793931046000068 ], [ -82.006604377999963, 28.793871457000023 ], [ -82.006581823999966, 28.793755336000061 ], [ -82.006578349999984, 28.793700331000025 ], [ -82.006581816999983, 28.793652965000035 ], [ -82.006599156999982, 28.793599487000051 ], [ -82.006635579999966, 28.793542952000053 ], [ -82.006680673999938, 28.793506279000042 ], [ -82.006736175999947, 28.79347419000004 ], [ -82.006802086999983, 28.793460436000032 ], [ -82.006876670999986, 28.793448209000076 ], [ -82.007312028999934, 28.793388597000046 ], [ -82.007662395999944, 28.79334121100004 ], [ -82.00807, 28.793286182000031 ], [ -82.008451587999957, 28.793234209000047 ], [ -82.008510559999934, 28.79322503800006 ], [ -82.008586459999947, 28.793210955000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008699672999967, 28.793841417000067 ], [ -82.00807178499997, 28.793926383000041 ], [ -82.007665910999947, 28.793981412000051 ], [ -82.007286055999941, 28.794031855000071 ], [ -82.007036285999959, 28.794067010000049 ], [ -82.006906199999946, 28.794085352000025 ], [ -82.006848959999957, 28.794083827000065 ], [ -82.006798657, 28.794074662000071 ], [ -82.006754110999964, 28.794058444000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008664419999945, 28.794265881000058 ], [ -82.008668931999978, 28.794088391000059 ], [ -82.008699673999956, 28.793857587000048 ], [ -82.008699672999967, 28.793841417000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00679794499996, 28.794822689000057 ], [ -82.006784478999975, 28.794754017000059 ], [ -82.006742182999972, 28.794502866000073 ], [ -82.006702057999973, 28.794280364000031 ], [ -82.006695549999961, 28.794229752000035 ], [ -82.006695547999982, 28.794198238000035 ], [ -82.006702049999944, 28.794165769000074 ], [ -82.00671072199998, 28.794138075000035 ], [ -82.006726980999986, 28.794103696000036 ], [ -82.006754110999964, 28.794058444000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007907733999957, 28.794665727000051 ], [ -82.007845237999959, 28.794307587000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00679794499996, 28.794822689000057 ], [ -82.006870124999978, 28.794805580000059 ], [ -82.006935168999973, 28.794797937000055 ], [ -82.007044660999952, 28.794782652000038 ], [ -82.007360124999934, 28.794740618000048 ], [ -82.007692934999966, 28.794694761000073 ], [ -82.007907733999957, 28.794665727000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005913589999977, 28.795866111000066 ], [ -82.005876508999961, 28.795779870000047 ], [ -82.005860895999945, 28.79574320100005 ], [ -82.005857424999988, 28.795718754000063 ], [ -82.005860893999966, 28.795695071000068 ], [ -82.005885168999953, 28.795562905000054 ], [ -82.005907493999985, 28.795440670000062 ], [ -82.005951928999934, 28.795199065000077 ], [ -82.005961682999953, 28.795144631000028 ], [ -82.005981193999958, 28.795110252000029 ], [ -82.006009377999987, 28.795083513000066 ], [ -82.006049488999963, 28.795064411000055 ], [ -82.006184997999981, 28.795021432000055 ], [ -82.006497206999938, 28.794916374000024 ], [ -82.006654395999988, 28.794864798000049 ], [ -82.006720523999945, 28.794841876000078 ], [ -82.00679794499996, 28.794822689000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00539482399995, 28.796038616000033 ], [ -82.005913589999977, 28.795866111000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005913589999977, 28.795866111000066 ], [ -82.006426789999978, 28.795694663000063 ], [ -82.006720788999985, 28.795598390000066 ], [ -82.006832663999944, 28.795560568000042 ], [ -82.006901610999989, 28.795537646000071 ], [ -82.006953645999943, 28.795521600000029 ], [ -82.007005680999953, 28.795508992000066 ], [ -82.007053814999949, 28.795497530000034 ], [ -82.007125364, 28.79548606700007 ], [ -82.007351719999974, 28.795456260000037 ], [ -82.007715970999982, 28.795406964000051 ], [ -82.008029570999952, 28.795363933000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008084974999974, 28.795681425000055 ], [ -82.008029570999952, 28.795363933000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008029570999952, 28.795363933000033 ], [ -82.007907733999957, 28.794665727000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007553318999953, 28.796677811000052 ], [ -82.007509302999949, 28.796110748000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007601144999967, 28.797293947000071 ], [ -82.007553318999953, 28.796677811000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007601144999967, 28.797293947000071 ], [ -82.007914546999984, 28.797188800000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006602408999981, 28.797626065000031 ], [ -82.007601144999967, 28.797293947000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006602408999981, 28.797626065000031 ], [ -82.006500620999986, 28.797027874000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006500620999986, 28.797027874000037 ], [ -82.007333434999964, 28.796751464000067 ], [ -82.007553318999953, 28.796677811000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006179405999944, 28.797134688000028 ], [ -82.006500620999986, 28.797027874000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006651065999961, 28.797914633000062 ], [ -82.006602408999981, 28.797626065000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008196901999952, 28.795998526000062 ], [ -82.008238405999975, 28.795985501000075 ], [ -82.008313910999959, 28.795956196000077 ], [ -82.008364589999985, 28.795933035000076 ], [ -82.008408764999956, 28.795910352000078 ], [ -82.008570125999938, 28.795826194000028 ], [ -82.008690075999937, 28.795766375000028 ], [ -82.008764062999944, 28.795737960000054 ], [ -82.008839405999936, 28.795717313000068 ], [ -82.008879245999935, 28.79570906500004 ], [ -82.008918813999969, 28.795702856000048 ], [ -82.009086303999936, 28.795678493000025 ], [ -82.009290256999975, 28.795648182000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009290256999975, 28.795648182000036 ], [ -82.009276773999943, 28.795581835000064 ], [ -82.009253065999985, 28.795396420000031 ], [ -82.009242913999969, 28.795167770000035 ], [ -82.009244638999974, 28.795053175000078 ], [ -82.00927852999996, 28.794673757000055 ], [ -82.009281288999944, 28.79463538300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007509302999949, 28.796110748000046 ], [ -82.007772684999964, 28.796072621000064 ], [ -82.007974323999974, 28.796045107000054 ], [ -82.008042892999981, 28.796034519000045 ], [ -82.008087501999967, 28.796026765000079 ], [ -82.008133954999948, 28.796016130000055 ], [ -82.008171355999934, 28.796005863000062 ], [ -82.008196901999952, 28.795998526000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008196901999952, 28.795998526000062 ], [ -82.008199544999968, 28.796033793000049 ], [ -82.008223147999956, 28.796338899000034 ], [ -82.008266826999943, 28.796902557000067 ], [ -82.008294771999942, 28.79725970800007 ], [ -82.00831538999995, 28.797526377000054 ], [ -82.008315933999938, 28.797546431000058 ], [ -82.008314309999946, 28.797566008000047 ], [ -82.00831078799996, 28.79759083700003 ], [ -82.008304555999985, 28.797610175000045 ], [ -82.008299135999948, 28.797624262000056 ], [ -82.008292090999987, 28.797641451000061 ], [ -82.008280980999984, 28.797659596000074 ], [ -82.008272579999982, 28.797672727000077 ], [ -82.00826363699997, 28.797684187000073 ], [ -82.008247917999938, 28.797702332000028 ], [ -82.008227863999934, 28.79772 ], [ -82.008209434999969, 28.797733848000064 ], [ -82.00819127699998, 28.797745548000023 ], [ -82.008171491999974, 28.797756292000031 ], [ -82.008151599999962, 28.797764394000069 ], [ -82.008045467999978, 28.797800705000043 ], [ -82.007783389999986, 28.797887382000056 ], [ -82.007207737999977, 28.798078643000053 ], [ -82.006670731999975, 28.798257231000036 ], [ -82.006367563999959, 28.79835848700003 ], [ -82.006341274999954, 28.798366127000065 ], [ -82.006314172999964, 28.798371620000069 ], [ -82.006291134999969, 28.798374247000027 ], [ -82.006264844999976, 28.798374725000031 ], [ -82.006238012999972, 28.798373533000074 ], [ -82.006215517999976, 28.798370908000038 ], [ -82.006184510999958, 28.798364209000056 ], [ -82.006161039999938, 28.798356348000027 ], [ -82.006142066999985, 28.798348709000038 ], [ -82.006127430999982, 28.798341786000037 ], [ -82.006110896999985, 28.798332715000072 ], [ -82.006097073999968, 28.798323882000034 ], [ -82.00608325099995, 28.79831385500006 ], [ -82.006068072999938, 28.798301680000066 ], [ -82.006054249999977, 28.798288551000041 ], [ -82.006041780999965, 28.79827470500004 ], [ -82.006025789999967, 28.798252264000041 ], [ -82.00601196599996, 28.798229107000054 ], [ -82.006002748999947, 28.798208337000062 ], [ -82.005993754999963, 28.798176835000049 ], [ -82.005991092999977, 28.798161783000069 ], [ -82.005974173999959, 28.798062454000046 ], [ -82.00595937099996, 28.797973420000062 ], [ -82.005889693999961, 28.797566613000072 ], [ -82.005862853999986, 28.797408331000042 ], [ -82.005837639999982, 28.797259360000055 ], [ -82.005818932999944, 28.797149541000067 ], [ -82.005766715999982, 28.796842780000077 ], [ -82.005763516999934, 28.796824827000023 ], [ -82.00576091399995, 28.796807256000079 ], [ -82.005760641999984, 28.796787011000049 ], [ -82.00576145399998, 28.79676732300004 ], [ -82.005763621999961, 28.796752043000026 ], [ -82.005768877999969, 28.796727421000071 ], [ -82.00577949999996, 28.796700699000041 ], [ -82.005790557999944, 28.79667852700004 ], [ -82.005803998999966, 28.796657979000031 ], [ -82.00581809199997, 28.796639356000071 ], [ -82.005833917999951, 28.796623138000029 ], [ -82.005852563999952, 28.796606330000031 ], [ -82.005877063999947, 28.796589919000041 ], [ -82.005903731999979, 28.796573939000041 ], [ -82.005952297999954, 28.796555522000062 ], [ -82.006081434999942, 28.796513162000053 ], [ -82.006259309999962, 28.796453901000064 ], [ -82.006831701999943, 28.796263535000037 ], [ -82.007023311999944, 28.796200021000061 ], [ -82.007073884999954, 28.796184962000041 ], [ -82.007103533999953, 28.796176621000029 ], [ -82.007146083999942, 28.796166592000077 ], [ -82.007176708999964, 28.796159666000051 ], [ -82.007228473999987, 28.796150591000071 ], [ -82.007289724999964, 28.796141515000045 ], [ -82.00734393, 28.796134112000061 ], [ -82.007509302999949, 28.796110748000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010243640999988, 28.79670739900007 ], [ -82.01019531299994, 28.796577213000035 ], [ -82.010016765999978, 28.796129012000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009499134999942, 28.796288912000023 ], [ -82.010016765999978, 28.796129012000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009499134999942, 28.796288912000023 ], [ -82.009470121999982, 28.796224700000039 ], [ -82.00945304399994, 28.796186504000048 ], [ -82.009421055999951, 28.796109632000025 ], [ -82.009380120999936, 28.795994325000038 ], [ -82.00936108999997, 28.795935006000036 ], [ -82.009341625, 28.795867556000076 ], [ -82.009330508999938, 28.795827211000073 ], [ -82.009312939999973, 28.795760827000038 ], [ -82.009290256999975, 28.795648182000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010016765999978, 28.796129012000051 ], [ -82.010784549999983, 28.795893513000067 ], [ -82.010914635999939, 28.795850721000079 ], [ -82.011008300999947, 28.795833906000041 ], [ -82.011084619999963, 28.795826260000069 ], [ -82.011176551999938, 28.79582625200004 ], [ -82.011233790999938, 28.795820136000032 ], [ -82.011310108999965, 28.79580790600005 ], [ -82.011379489999968, 28.795792622000079 ], [ -82.01145233699998, 28.795766640000068 ], [ -82.011537326999985, 28.795726907000073 ], [ -82.011603236999974, 28.795705510000062 ], [ -82.011705572999972, 28.795679527000061 ], [ -82.011792297999989, 28.795668823000028 ], [ -82.01188075999994, 28.795665760000077 ], [ -82.012260519999984, 28.79567451500003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010243640999988, 28.79670739900007 ], [ -82.010468934999949, 28.79663763800005 ], [ -82.010602492999965, 28.796596374000046 ], [ -82.010725642999944, 28.796564277000073 ], [ -82.010847059999946, 28.796538292000037 ], [ -82.010985178999988, 28.796511658000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010985178999988, 28.796511658000043 ], [ -82.011377823999965, 28.796432822000043 ], [ -82.011514851999948, 28.796403779000059 ], [ -82.011636268999951, 28.796385434000058 ], [ -82.011749012999985, 28.796368617000041 ], [ -82.011861758999942, 28.796360968000045 ], [ -82.011962362999952, 28.796356376000062 ], [ -82.012229530999946, 28.796356827000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012229530999946, 28.796356827000068 ], [ -82.012616308999952, 28.796359074000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012224018999973, 28.797058600000071 ], [ -82.012229530999946, 28.796356827000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012224018999973, 28.797058600000071 ], [ -82.012582699999939, 28.797055492000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011068010999963, 28.797168391000071 ], [ -82.011266167999963, 28.797151975000077 ], [ -82.011381081999957, 28.797143371000061 ], [ -82.011440707999952, 28.797137636000059 ], [ -82.011504667999986, 28.797126171000059 ], [ -82.011556703999986, 28.797112797000068 ], [ -82.01170955799995, 28.797074586000065 ], [ -82.011759425999969, 28.797065032000035 ], [ -82.011815799999965, 28.797059298000079 ], [ -82.011874340999952, 28.797055472000068 ], [ -82.011965405999945, 28.797056420000047 ], [ -82.012224018999973, 28.797058600000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011068010999963, 28.797168391000071 ], [ -82.011016773999984, 28.796685979000074 ], [ -82.01100917499997, 28.79660576200007 ], [ -82.010999414999958, 28.796565655000052 ], [ -82.010985178999988, 28.796511658000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011098549999986, 28.797460057000023 ], [ -82.011068010999963, 28.797168391000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010509313999989, 28.797826608000037 ], [ -82.010465160999956, 28.797714821000056 ], [ -82.010445819999973, 28.797652436000078 ], [ -82.010408946999974, 28.797522566000055 ], [ -82.010382916999959, 28.797409883000057 ], [ -82.010369897999965, 28.797312479000027 ], [ -82.010356875999946, 28.797182606000035 ], [ -82.010328670999968, 28.79702026700005 ], [ -82.010309148999966, 28.796928592000029 ], [ -82.010280952999949, 28.796823550000056 ], [ -82.010243640999988, 28.79670739900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010509313999989, 28.797826608000037 ], [ -82.010886392999964, 28.797798219000072 ], [ -82.011181267999973, 28.797773367000048 ], [ -82.011220295999976, 28.797772408000071 ], [ -82.011264745999938, 28.797778134000055 ], [ -82.011295101999963, 28.797786726000027 ], [ -82.011339551999981, 28.797802002000026 ], [ -82.011375329999964, 28.797822053000061 ], [ -82.011410023999986, 28.797852608000028 ], [ -82.011432793999973, 28.797878390000051 ], [ -82.01145556299997, 28.797909902000072 ], [ -82.011466408, 28.797933775000047 ], [ -82.011482672999989, 28.797965287000068 ], [ -82.011509778999937, 28.797996798000042 ], [ -82.011531462999983, 28.798015896000038 ], [ -82.011557484999969, 28.798037857000054 ], [ -82.01172662, 28.798145752000039 ], [ -82.011974900999974, 28.798306163000063 ], [ -82.012030194999966, 28.798340536000069 ], [ -82.012072478999983, 28.798369181000055 ], [ -82.012097414999971, 28.798388277000072 ], [ -82.012125605999984, 28.798415014000057 ], [ -82.012148375999971, 28.79844461600004 ], [ -82.012163556999951, 28.798472307000054 ], [ -82.012176570999941, 28.798512414000072 ], [ -82.012183079999943, 28.798550612000042 ], [ -82.012180947, 28.798850468000069 ], [ -82.012178786999982, 28.798927819000028 ], [ -82.01216795199997, 28.798973658000079 ], [ -82.012151693999954, 28.799010902000077 ], [ -82.01212351099997, 28.799051968000072 ], [ -82.01212351099997, 28.799050057000045 ], [ -82.012092074999941, 28.799084438000079 ], [ -82.012047628999937, 28.799113091000038 ], [ -82.012005349999981, 28.799131239000076 ], [ -82.011960902999988, 28.799143658000048 ], [ -82.01191536999994, 28.799147482000024 ], [ -82.011786357999938, 28.799147493000078 ], [ -82.011713721999968, 28.799143679000053 ], [ -82.011658429999954, 28.799136045000068 ], [ -82.011603137999941, 28.79912458900003 ], [ -82.011531582999964, 28.799100722000048 ], [ -82.011470868999936, 28.79907303300007 ], [ -82.011410153999975, 28.799038660000065 ], [ -82.011336427999936, 28.798987099000044 ], [ -82.01124703499994, 28.798916974000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011467068999934, 28.798713183000075 ], [ -82.01124703499994, 28.798916974000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01124703499994, 28.798916974000065 ], [ -82.011196563999988, 28.798871561000055 ], [ -82.011154278999982, 28.798831457000063 ], [ -82.011113075999958, 28.798785622000025 ], [ -82.011078380999948, 28.798745517000043 ], [ -82.011036093999962, 28.798692998000035 ], [ -82.010982963999936, 28.798614697000062 ], [ -82.010901641999965, 28.798489604000054 ], [ -82.010810560999971, 28.798346369000058 ], [ -82.010732491999988, 28.798226051000029 ], [ -82.010681529999943, 28.798148703000038 ], [ -82.010639241999968, 28.798079950000044 ], [ -82.010599122999963, 28.798011197000051 ], [ -82.010556833999942, 28.797930029000042 ], [ -82.010509313999989, 28.797826608000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005015556999979, 28.792052157000057 ], [ -82.005131177999942, 28.791855871000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006172170999946, 28.791864061000069 ], [ -82.00585171299997, 28.791978088000064 ], [ -82.005774746999975, 28.792005786000061 ], [ -82.005725964999954, 28.792015338000056 ], [ -82.005676964999964, 28.792016867000029 ], [ -82.005628399999978, 28.792010567000034 ], [ -82.005460368999934, 28.791960152000058 ], [ -82.005314019999958, 28.791915466000034 ], [ -82.005182846999958, 28.791874981000035 ], [ -82.005143821, 28.791862569000045 ], [ -82.005131177999942, 28.791855871000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009142810999947, 28.793051646000038 ], [ -82.009111764999943, 28.792971385000044 ], [ -82.008991303999949, 28.792701708000038 ], [ -82.008868022999934, 28.792441975000031 ], [ -82.008822049999935, 28.79232662000004 ], [ -82.00879602599997, 28.792247169000063 ], [ -82.00874397399997, 28.792040903000043 ], [ -82.00872401099997, 28.791849913000078 ], [ -82.008722499999976, 28.791788594000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006167553999944, 28.917395415000044 ], [ -82.006466656999976, 28.917396432000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003883945999974, 28.917412689000059 ], [ -82.004017379999937, 28.917399278000062 ], [ -82.004098846999966, 28.91739377500005 ], [ -82.00428913099995, 28.917391020000025 ], [ -82.004341096999951, 28.917392049000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004341096999951, 28.917392049000057 ], [ -82.004606205999949, 28.917396509000071 ], [ -82.005566614999964, 28.917393723000032 ], [ -82.006167553999944, 28.917395415000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004341096999951, 28.917392049000057 ], [ -82.004328395999948, 28.917316762000041 ], [ -82.004310418999978, 28.917239757000061 ], [ -82.004277008999964, 28.917157252000038 ], [ -82.004222692999974, 28.917035213000077 ], [ -82.004149618999975, 28.916848887000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004149618999975, 28.916848887000071 ], [ -82.004132034999941, 28.916803853000033 ], [ -82.004020102999959, 28.916533858000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006167553999944, 28.917395415000044 ], [ -82.006164611999964, 28.917181243000073 ], [ -82.006161468999949, 28.916902095000069 ], [ -82.006161464999934, 28.916822340000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006161464999934, 28.916822340000067 ], [ -82.006158518999939, 28.916556943000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004149618999975, 28.916848887000071 ], [ -82.004231864999952, 28.916820008000059 ], [ -82.00432544399996, 28.916814504000058 ], [ -82.004923254999937, 28.916812078000078 ], [ -82.005533372999935, 28.916817211000023 ], [ -82.006025687999966, 28.91681993900005 ], [ -82.006161464999934, 28.916822340000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057749700999977, 28.872771423000074 ], [ -82.057755542999985, 28.873401812000054 ], [ -82.057739359999971, 28.874297309000042 ], [ -82.057741046, 28.874488320000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067629573999966, 28.607761813000025 ], [ -82.067690124999956, 28.607770876000075 ], [ -82.067835570999989, 28.607778444000076 ], [ -82.068224227999963, 28.607778247000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032944952999969, 28.909151177000069 ], [ -82.032931370999961, 28.909151190000046 ], [ -82.031322480999961, 28.909152605000031 ], [ -82.030538548999971, 28.90915347300006 ], [ -82.030300809999972, 28.909153526000068 ], [ -82.029598702999976, 28.909153910000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035608138999976, 28.909146829000065 ], [ -82.035274198999957, 28.909146917000044 ], [ -82.034694876999936, 28.909147067000049 ], [ -82.033832902999961, 28.909150279000073 ], [ -82.032944952999969, 28.909151177000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009279228999958, 28.909087771000031 ], [ -82.009031774999983, 28.909090329000037 ], [ -82.008754633999956, 28.909087500000055 ], [ -82.007841819999953, 28.909081169000046 ], [ -82.007385407999948, 28.909077050000064 ], [ -82.006875021999974, 28.90908108800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012228788999948, 28.909070106000058 ], [ -82.012228120999964, 28.909070106000058 ], [ -82.010996410999951, 28.909073251000052 ], [ -82.010532637999972, 28.909081321000031 ], [ -82.010227680999947, 28.909090243000037 ], [ -82.009820059999981, 28.909091223000075 ], [ -82.009434003999957, 28.909089351000034 ], [ -82.009381705999942, 28.909087771000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017347045999941, 28.909065793000025 ], [ -82.016877957999952, 28.909064903000058 ], [ -82.01642805299997, 28.90906841900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026844191999942, 28.909124218000045 ], [ -82.026712877999955, 28.909121597000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036695121999969, 28.909144922000053 ], [ -82.036693046999972, 28.909144926000067 ], [ -82.03618245399997, 28.909145821000038 ], [ -82.036180383999977, 28.909145825000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026712877999955, 28.909121597000023 ], [ -82.025399752999988, 28.909099557000047 ], [ -82.02467669899994, 28.909087421000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01448256499998, 28.909051756000054 ], [ -82.013800956999944, 28.909052107000036 ], [ -82.013276777999977, 28.909055235000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02467669899994, 28.909087421000038 ], [ -82.023642544999973, 28.909080966000033 ], [ -82.022636931999955, 28.90908326300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029598702999976, 28.909153910000043 ], [ -82.029327118999959, 28.909153055000047 ], [ -82.028833515999963, 28.909150844000067 ], [ -82.028830067999934, 28.909150829000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036180383999977, 28.909145825000053 ], [ -82.035608138999976, 28.909146829000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036930594999944, 28.909144509000043 ], [ -82.036695121999969, 28.909144922000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066360871999962, 28.748853133000068 ], [ -82.065606625999976, 28.748853504000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096094526999934, 28.653872267000054 ], [ -82.096093172999986, 28.652669339000056 ], [ -82.096093162999978, 28.652660045000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096124306999968, 28.650249089000056 ], [ -82.096124434999979, 28.649334379000038 ], [ -82.096124437999947, 28.649310309000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14556521999998, 28.675956578000068 ], [ -82.145565076999958, 28.675853193000023 ], [ -82.145564978999971, 28.675782243000072 ], [ -82.145564773999979, 28.675634261000027 ], [ -82.145561844999975, 28.675178156000072 ], [ -82.145559226999978, 28.674395153000034 ], [ -82.14555914999994, 28.674372251000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14555914999994, 28.674372251000079 ], [ -82.14555792699997, 28.674006469000062 ], [ -82.14555332499998, 28.673298178000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182895932999941, 28.575201959000026 ], [ -82.182900363999977, 28.574267660000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182900363999977, 28.574267660000032 ], [ -82.182899116999977, 28.573112766000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182899116999977, 28.573112766000065 ], [ -82.182912963999968, 28.572370742000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182912963999968, 28.572370742000032 ], [ -82.182916230999979, 28.57200077400006 ], [ -82.182922179999935, 28.571661701000039 ], [ -82.182937050999953, 28.571566522000069 ], [ -82.182954896999945, 28.571468369000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182954896999945, 28.571468369000058 ], [ -82.182944671999962, 28.571045053000034 ], [ -82.182936780999967, 28.57085365100005 ], [ -82.18292691399995, 28.57073525900006 ], [ -82.182913709, 28.570677026000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179780646999973, 28.570576430000074 ], [ -82.179960525999945, 28.570587223000075 ], [ -82.180230342999948, 28.570626796000056 ], [ -82.180540404999988, 28.570662556000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182900363999977, 28.574267660000032 ], [ -82.183401544999981, 28.574271931000055 ], [ -82.183772740999984, 28.574286208000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183772740999984, 28.574286208000046 ], [ -82.184365618999948, 28.574305911000067 ], [ -82.184740383999952, 28.574311860000023 ], [ -82.185251967999989, 28.574335654000038 ], [ -82.185549399999957, 28.57434160300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185549399999957, 28.57434160300005 ], [ -82.186489287999962, 28.574371346000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182912963999968, 28.572370742000032 ], [ -82.184311854999976, 28.572387193000054 ], [ -82.185360808999974, 28.572397842000044 ], [ -82.185653663999972, 28.572392517000026 ], [ -82.18569565699994, 28.572384094000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.186244697999939, 28.57151927700005 ], [ -82.186467710999977, 28.571051726000064 ], [ -82.186562888999958, 28.570867317000079 ], [ -82.186610477999977, 28.570766190000029 ], [ -82.186628323999969, 28.570611525000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.186628323999969, 28.570611525000061 ], [ -82.186606908999977, 28.570348276000061 ], [ -82.186596230999953, 28.570086651000054 ], [ -82.18661224899995, 28.569825026000046 ], [ -82.18663894499997, 28.569568741000069 ], [ -82.186681658999987, 28.569445938000058 ], [ -82.18670835599994, 28.569381866000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182922528999939, 28.570555845000058 ], [ -82.186628323999969, 28.570611525000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182954896999945, 28.571468369000058 ], [ -82.185239634999959, 28.571469205000028 ], [ -82.186244697999939, 28.57151927700005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182899116999977, 28.573112766000065 ], [ -82.183798711999941, 28.573113933000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183798711999941, 28.573113933000059 ], [ -82.184650670999986, 28.573137540000062 ], [ -82.18478867999994, 28.573151817000053 ], [ -82.184789027999955, 28.573151539000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185521554, 28.573232719000032 ], [ -82.186224891999984, 28.573237060000054 ], [ -82.186742675999938, 28.573232999000027 ], [ -82.18687872199996, 28.573241121000024 ], [ -82.187132153999983, 28.573300894000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183772740999984, 28.574286208000046 ], [ -82.183798711999941, 28.573113933000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185549399999957, 28.57434160300005 ], [ -82.185545496999964, 28.573745063000047 ], [ -82.185521554, 28.573232719000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189950463999935, 28.588958639000055 ], [ -82.191875979999963, 28.588955929000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187988827999959, 28.589800421000064 ], [ -82.188021453999966, 28.589778754000065 ], [ -82.188054101999967, 28.589769097000044 ], [ -82.188096961999975, 28.589762732000054 ], [ -82.188338559999977, 28.589771406000068 ], [ -82.188617553999961, 28.589762009000026 ], [ -82.18869376899994, 28.589761002000046 ], [ -82.188756375999958, 28.589760915000056 ], [ -82.18880534699997, 28.589746430000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189937738999959, 28.592521006000027 ], [ -82.189935264999974, 28.592271399000026 ], [ -82.189931379999962, 28.592011964000051 ], [ -82.189949963999936, 28.590699645000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189949963999936, 28.590699645000029 ], [ -82.189914624999972, 28.589789615000029 ], [ -82.189941356999952, 28.589309663000051 ], [ -82.189957663999962, 28.589064516000064 ], [ -82.189950463999935, 28.588958639000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.190038165999965, 28.587080474000061 ], [ -82.190011430999959, 28.586857598000051 ], [ -82.189993993999963, 28.586621120000075 ], [ -82.18996290399997, 28.586454091000064 ], [ -82.189908788999958, 28.586250985000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189950463999935, 28.588958639000055 ], [ -82.189941264999959, 28.588825603000032 ], [ -82.189930917999959, 28.588486295000052 ], [ -82.189943429999971, 28.588187865000066 ], [ -82.189992061999988, 28.587912502000052 ], [ -82.190038372999936, 28.587649657000043 ], [ -82.190003855999976, 28.587375662000056 ], [ -82.190038165999965, 28.587080474000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.190038165999965, 28.587080474000061 ], [ -82.190203647999965, 28.587072554000031 ], [ -82.190390332999982, 28.587067292000029 ], [ -82.190594500999964, 28.587078267000038 ], [ -82.19081990799998, 28.58707419600006 ], [ -82.191024081999956, 28.587088925000046 ], [ -82.191232530999969, 28.587114909000036 ], [ -82.191501157999937, 28.587171831000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.188986941999985, 28.586169545000075 ], [ -82.189331036999988, 28.586191552000059 ], [ -82.189596753999979, 28.586221934000037 ], [ -82.189816714999949, 28.586237002000075 ], [ -82.189908788999958, 28.586250985000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18880534699997, 28.589746430000048 ], [ -82.18886243299994, 28.589703105000069 ], [ -82.188908604999938, 28.589645379000046 ], [ -82.188930256999981, 28.589575675000049 ], [ -82.188943735999942, 28.589503579000052 ], [ -82.188951778999979, 28.589433894000024 ], [ -82.188937798999973, 28.589227292000032 ], [ -82.188959222999983, 28.589030252000043 ], [ -82.188963678999983, 28.588477656000066 ], [ -82.188971354999978, 28.588203752000027 ], [ -82.188984509999955, 28.587949062000064 ], [ -82.188964875999943, 28.587624743000049 ], [ -82.188934374999974, 28.587312451000059 ], [ -82.188969228999952, 28.587014486000044 ], [ -82.188978818999942, 28.586497650000069 ], [ -82.189006785999936, 28.586307327000043 ], [ -82.188986941999985, 28.586169545000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.184855733999939, 28.586180267000032 ], [ -82.184955850999984, 28.586179712000046 ], [ -82.185044688999938, 28.586176516000023 ], [ -82.185152690999985, 28.586173293000058 ], [ -82.185321661999978, 28.586168450000059 ], [ -82.185487168999941, 28.586175912000044 ], [ -82.185624799999971, 28.586180336000041 ], [ -82.185826861999942, 28.586170834000029 ], [ -82.186051598999939, 28.586178214000029 ], [ -82.186359935999974, 28.586174716000073 ], [ -82.186520209999969, 28.586177571000064 ], [ -82.186687441999936, 28.586174266000057 ], [ -82.186879069999975, 28.586175539000067 ], [ -82.186974886999963, 28.586178482000037 ], [ -82.187154325999984, 28.586182848000078 ], [ -82.187352933999989, 28.586190262000059 ], [ -82.187514945999965, 28.586191576000033 ], [ -82.187739668999939, 28.586189727000033 ], [ -82.187941778999971, 28.586207899000044 ], [ -82.188176935999934, 28.586196810000047 ], [ -82.188455639999972, 28.586182584000028 ], [ -82.188782247999939, 28.586167330000023 ], [ -82.188986941999985, 28.586169545000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18789789899995, 28.592496347000065 ], [ -82.187905801999989, 28.59244030800005 ], [ -82.187907238999969, 28.592358405000027 ], [ -82.187912267999934, 28.592214715000068 ], [ -82.187918970999988, 28.592037532000063 ], [ -82.187927062999961, 28.591804771000056 ], [ -82.187931055999968, 28.591658361000043 ], [ -82.187959619999958, 28.590978845000052 ], [ -82.187971919999939, 28.590719802000024 ], [ -82.187958364999986, 28.590273094000054 ], [ -82.187945950999961, 28.590180085000043 ], [ -82.187948565999989, 28.59012001900004 ], [ -82.187953787999959, 28.589995078000072 ], [ -82.187948198999948, 28.589913399000068 ], [ -82.187950851999972, 28.589874953000049 ], [ -82.187958936999962, 28.589829294000026 ], [ -82.187988827999959, 28.589800421000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18588346699994, 28.592486766000036 ], [ -82.185887367999953, 28.592390760000058 ], [ -82.185894946999952, 28.59205679300004 ], [ -82.185887816, 28.591716840000061 ], [ -82.185878770999977, 28.591526569000052 ], [ -82.185860786999967, 28.591207533000045 ], [ -82.185873289999961, 28.590886533000059 ], [ -82.18589011499995, 28.590548229000035 ], [ -82.185894317999953, 28.590461730000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18569565699994, 28.572384094000029 ], [ -82.18569856299996, 28.572383511000055 ], [ -82.18580807799998, 28.572339271000033 ], [ -82.185887947999959, 28.572259401000053 ], [ -82.185962493999966, 28.572147584000049 ], [ -82.186244697999939, 28.57151927700005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.184789027999955, 28.573151539000037 ], [ -82.184836268999959, 28.573113745000057 ], [ -82.18491241199996, 28.573085192000065 ], [ -82.184998071999985, 28.573089951000043 ], [ -82.185083732999942, 28.573099469000056 ], [ -82.185197946999949, 28.573170853000079 ], [ -82.185250294999946, 28.573208924000028 ], [ -82.185288365999952, 28.573213683000063 ], [ -82.185521554, 28.573232719000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036949583999956, 28.901905576000047 ], [ -82.03624760799994, 28.90191124100005 ], [ -82.036246655999946, 28.901911249000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019880576999981, 28.79106437400003 ], [ -82.019960768999965, 28.791075800000044 ], [ -82.020096626999987, 28.791088647000038 ], [ -82.020189855999945, 28.791106636000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966038554999955, 28.952756485000066 ], [ -81.965787321999983, 28.952768436000042 ], [ -81.965568979999944, 28.952759651000065 ], [ -81.965396952999981, 28.95274796700005 ], [ -81.965211697999962, 28.952718823000055 ], [ -81.964956980999943, 28.952657652000028 ], [ -81.964834438999958, 28.952620509000042 ], [ -81.964739903999941, 28.95259078600003 ], [ -81.964630740999951, 28.952552150000031 ], [ -81.964533959999983, 28.952509557000042 ], [ -81.964326897999968, 28.952406548000056 ], [ -81.964196433999973, 28.952335749000042 ], [ -81.964109711999981, 28.952288687000078 ], [ -81.964057646999947, 28.952253092000035 ], [ -81.963917292999952, 28.952154004000079 ], [ -81.963857657999938, 28.952102509000042 ], [ -81.963739763999968, 28.952005546000066 ], [ -81.963620705999972, 28.951892035000071 ], [ -81.963445430999968, 28.951714493000054 ], [ -81.963378122999984, 28.95164735700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963267155999972, 28.951725297000053 ], [ -81.963374981999948, 28.95182875100005 ], [ -81.96344191299994, 28.951897375000044 ], [ -81.963495888999944, 28.951951663000045 ], [ -81.963557279999975, 28.952009034000071 ], [ -81.963605380999979, 28.952056378000066 ], [ -81.963675000999956, 28.952117093000027 ], [ -81.963747330999979, 28.952177715000062 ], [ -81.963816741999949, 28.952235208000047 ], [ -81.963880331999974, 28.952282336000053 ], [ -81.963957748999974, 28.952336163000041 ], [ -81.964035390999982, 28.952387662000035 ], [ -81.964113037999937, 28.952435199000035 ], [ -81.964199686999962, 28.952483729000051 ], [ -81.964295366999977, 28.952538616000027 ], [ -81.964394369, 28.952581786000053 ], [ -81.964517032999936, 28.952636265000024 ], [ -81.964647576999937, 28.952686786000072 ], [ -81.964742110999964, 28.952718490000052 ], [ -81.964861404999965, 28.95275613900003 ], [ -81.96496381999998, 28.952783884000041 ], [ -81.965071860999956, 28.952810640000052 ], [ -81.965170900999965, 28.952830464000044 ], [ -81.965277205999939, 28.952850214000023 ], [ -81.965373235999948, 28.952865734000056 ], [ -81.965469480999957, 28.952874225000073 ], [ -81.965578326999946, 28.952883037000049 ], [ -81.965701009999975, 28.952885048000041 ], [ -81.965942351999956, 28.952881707000074 ], [ -81.966038311999966, 28.952877422000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011257545999968, 28.952740752000068 ], [ -82.011253244999978, 28.952830323000057 ], [ -82.011250970999981, 28.953014061000033 ], [ -82.011232632999963, 28.95327452500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976763993999953, 28.940940493000028 ], [ -81.976666952999949, 28.940805655000077 ], [ -81.976540117999946, 28.940643098000066 ], [ -81.976531738999938, 28.940632094000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980569528, 28.947131193000075 ], [ -81.980681273999949, 28.947041540000043 ], [ -81.980852144999972, 28.946931113000062 ], [ -81.980962173999956, 28.94688093700006 ], [ -81.981143505999967, 28.946810163000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000107306999951, 28.936543938000057 ], [ -82.000107256999968, 28.936562941000034 ], [ -82.000102077999941, 28.937424140000076 ], [ -82.000102077999941, 28.937590457000056 ], [ -82.000104668999938, 28.938087128000063 ], [ -82.000099487999989, 28.938597468000069 ], [ -82.00009689999996, 28.939269568000043 ], [ -82.000094309999952, 28.939634097000067 ], [ -82.000093688999982, 28.940170229000046 ], [ -82.000094310999941, 28.940668449000043 ], [ -82.000094311999987, 28.941298400000051 ], [ -82.000089308999975, 28.941920591000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000412267999934, 28.952785056000039 ], [ -82.000412316999984, 28.952785227000049 ], [ -82.000415043999965, 28.952794517000029 ], [ -82.000430096999935, 28.952826084000037 ], [ -82.000447462999944, 28.952859689000036 ], [ -82.000467145999949, 28.952891258000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998076044999948, 28.953045618000033 ], [ -81.998079016999952, 28.953045535000058 ], [ -81.998625247999939, 28.953030242000068 ], [ -81.999171941999975, 28.952988795000067 ], [ -81.999511989999974, 28.952943934000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960371822999946, 28.955068581000035 ], [ -81.959786317999942, 28.954488609000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963461758999983, 28.937821971000062 ], [ -81.963436050999974, 28.937881498000024 ], [ -81.963400642999943, 28.937976037000055 ], [ -81.963400448999948, 28.937976629000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969712265999988, 28.934562393000078 ], [ -81.969732304, 28.934607385000049 ], [ -81.969738749999976, 28.934619419000057 ], [ -81.969745388999968, 28.934631109000065 ], [ -81.969752420999953, 28.934643142000027 ], [ -81.969759645999943, 28.934654832000035 ], [ -81.969767066999964, 28.934666522000043 ], [ -81.969774684999948, 28.934677869000041 ], [ -81.969782691999967, 28.934689215000049 ], [ -81.969790700999965, 28.934700562000046 ], [ -81.969799099999989, 28.934711564000054 ], [ -81.969807691999961, 28.934722567000051 ], [ -81.969816483999978, 28.934733226000048 ], [ -81.969825468999943, 28.934743884000056 ], [ -81.969834649999939, 28.934754544000043 ], [ -81.969844026999965, 28.93476485900004 ], [ -81.96985359699994, 28.934775175000027 ], [ -81.969863559999965, 28.934785490000024 ], [ -81.969873521999943, 28.934795462000068 ], [ -81.96988345699998, 28.934804879000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999892170999942, 28.926854383000034 ], [ -82.000074349999977, 28.926922755000078 ], [ -82.000191866999955, 28.926963679000039 ], [ -82.000359340999978, 28.927013215000045 ], [ -82.000424233999979, 28.927031243000044 ], [ -82.000426626999968, 28.92703190800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968850459999942, 28.920167493000065 ], [ -81.969230951999975, 28.920166901000073 ], [ -81.969855210999981, 28.920173505000037 ], [ -81.970357066999952, 28.920175770000071 ], [ -81.970861372999934, 28.92017372600003 ], [ -81.971358333999945, 28.920173833000035 ], [ -81.97177923299995, 28.920171635000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011753739999961, 28.934295630000065 ], [ -82.012033064999969, 28.934295048000024 ], [ -82.01232528099996, 28.934292147000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007749150999985, 28.929677147000064 ], [ -82.007749267999941, 28.929654756000048 ], [ -82.007749261999948, 28.929568346000053 ], [ -82.007749253999975, 28.929458031000024 ], [ -82.007749244999957, 28.929346267000028 ], [ -82.007753320999939, 28.929265680000071 ], [ -82.007753786999956, 28.929181787000061 ], [ -82.00776247899995, 28.92909185600007 ], [ -82.00777071999994, 28.929060673000038 ], [ -82.007771014999946, 28.929059556000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007402936999938, 28.927291251000042 ], [ -82.007417456999974, 28.927291494000031 ], [ -82.00771246499994, 28.927296431000059 ], [ -82.008259847999966, 28.927298209000071 ], [ -82.008561015999987, 28.927311186000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016317718999971, 28.934680037000078 ], [ -82.016317729999969, 28.93468196300006 ], [ -82.016320648999965, 28.935364143000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016345869999952, 28.941340245000049 ], [ -82.016346637999959, 28.941926681000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016345599999966, 28.952816178000035 ], [ -82.016343121999967, 28.953241529000024 ], [ -82.016337104999934, 28.95372294200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016335798999989, 28.955292414000041 ], [ -82.016346036999948, 28.955579311000065 ], [ -82.016323478999936, 28.956531353000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961070825999968, 28.934856234000051 ], [ -81.961188253999978, 28.934907315000032 ], [ -81.961286218999987, 28.934947567000052 ], [ -81.961364905999972, 28.934980768000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960791221999955, 28.928655985000034 ], [ -81.960571587999937, 28.928786476000028 ], [ -81.960478673999944, 28.92884685000007 ], [ -81.96041538299994, 28.928893021000079 ], [ -81.96035074699995, 28.928938008000046 ], [ -81.960296879999987, 28.928982996000059 ], [ -81.960247052999989, 28.929023249000068 ], [ -81.960191839999936, 28.929064686000061 ], [ -81.96014605299996, 28.929104940000059 ], [ -81.960096223999983, 28.929149930000051 ], [ -81.96004639399996, 28.929198475000078 ], [ -81.959997912999938, 28.929241096000055 ], [ -81.959948082999972, 28.929287271000078 ], [ -81.95991930699995, 28.929318261000049 ], [ -81.959916408999959, 28.929321382000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953933846999973, 28.922598509000068 ], [ -81.953941069999985, 28.92332065100004 ], [ -81.953947382999957, 28.923833651000052 ], [ -81.953947176999975, 28.923838905000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963707469999974, 28.920165116000078 ], [ -81.963708083999961, 28.920165178000047 ], [ -81.963832934999971, 28.920171673000027 ], [ -81.964092425999979, 28.920186819000037 ], [ -81.964369058999978, 28.920186892000061 ], [ -81.964687309999988, 28.920186976000025 ], [ -81.964963942999987, 28.920189203000064 ], [ -81.965446215999975, 28.92018501900003 ], [ -81.965957863999961, 28.920187303000034 ], [ -81.966137015999948, 28.920167529000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962662207999983, 28.919997028000068 ], [ -81.962728905999938, 28.920011986000077 ], [ -81.962839060999954, 28.920037863000061 ], [ -81.96296145599996, 28.920059435000042 ], [ -81.963083852999944, 28.920083162000026 ], [ -81.963213592999978, 28.920106889000067 ], [ -81.963328646999969, 28.920121997000024 ], [ -81.96345593999996, 28.920141418000071 ], [ -81.963580788999934, 28.920152220000034 ], [ -81.963707469999974, 28.920165116000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958784115999947, 28.917935552000074 ], [ -81.958883769999943, 28.917999165000026 ], [ -81.95929248799996, 28.918257752000045 ], [ -81.959799109999949, 28.918574521000039 ], [ -81.96019804499997, 28.918828794000035 ], [ -81.960604322999984, 28.919087377000039 ], [ -81.960910255999977, 28.919287774000054 ], [ -81.961110953999935, 28.919401987000072 ], [ -81.961338579999961, 28.91951836100003 ], [ -81.961388329999977, 28.919542026000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95874360199997, 28.917762507000077 ], [ -81.958631585999967, 28.917696792000072 ], [ -81.958454617999962, 28.91759124400005 ], [ -81.958453989999953, 28.917590869000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969585019999954, 28.927070294000032 ], [ -81.969540603999974, 28.927057258000048 ], [ -81.969477964999953, 28.92704221300005 ], [ -81.969418741999959, 28.927028172000064 ], [ -81.969372045999989, 28.927018141000076 ], [ -81.969301431999952, 28.92700910700006 ], [ -81.969252456999982, 28.927003083000045 ], [ -81.969175007999979, 28.926997053000036 ], [ -81.969099836999987, 28.926995032000036 ], [ -81.969077225999968, 28.926995675000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969490954999969, 28.934278626000037 ], [ -81.969491624999989, 28.934279257000071 ], [ -81.969508227999938, 28.934295073000044 ], [ -81.969524441999965, 28.934311235000052 ], [ -81.969540264999978, 28.934327739000025 ], [ -81.96955589199996, 28.934344245000034 ], [ -81.969571125999948, 28.934361093000064 ], [ -81.969585971999948, 28.934378285000037 ], [ -81.969600622999963, 28.934395477000066 ], [ -81.969614684999954, 28.934413013000039 ], [ -81.969628551999961, 28.934430892000023 ], [ -81.969642029999989, 28.934448772000053 ], [ -81.969658330999948, 28.934474565000073 ], [ -81.969680506999964, 28.934504128000071 ], [ -81.969712265999988, 28.934562393000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000704534999954, 28.952384738000035 ], [ -82.000689136999938, 28.952385135000043 ], [ -82.000668239999982, 28.952388582000026 ], [ -82.000643424999964, 28.952394325000057 ], [ -82.00062122199995, 28.952402367000047 ], [ -82.000584651999986, 28.952420747000076 ], [ -82.000548863999938, 28.952441838000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000673982999956, 28.953010218000031 ], [ -82.000709130999951, 28.953015494000056 ], [ -82.00073344499998, 28.953018549000035 ], [ -82.000760975999981, 28.953020387000038 ], [ -82.000769652999963, 28.953020039000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956857375999959, 28.951909388000047 ], [ -81.957393985999943, 28.952407170000072 ], [ -81.957394591999957, 28.952407766000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959643791999952, 28.954618050000079 ], [ -81.960255927999981, 28.955221008000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975042090999978, 28.933762310000077 ], [ -81.975063880999983, 28.93369030100007 ], [ -81.975078919999987, 28.933651884000028 ], [ -81.975094364999961, 28.933620423000036 ], [ -81.975101699999982, 28.93360430000007 ], [ -81.975106285999971, 28.933592207000061 ], [ -81.97511086999998, 28.933579309000038 ], [ -81.975114165999969, 28.933567379000067 ], [ -81.975120042999947, 28.933552704000078 ], [ -81.975124628999936, 28.933535775000053 ], [ -81.975129214999981, 28.933520457000043 ], [ -81.97513380099997, 28.933504334000077 ], [ -81.975137470999982, 28.933490628000072 ], [ -81.975142055999981, 28.933475312000041 ], [ -81.975145724999948, 28.933463218000043 ], [ -81.97514939399997, 28.933448706000036 ], [ -81.97515214799995, 28.933432583000069 ], [ -81.97515765299994, 28.93340517200005 ], [ -81.975167748, 28.933351157000061 ], [ -81.975180592999948, 28.933289886000068 ], [ -81.975192516999982, 28.933251189000032 ], [ -81.97520351999998, 28.933221361000051 ], [ -81.975217274999977, 28.933191532000023 ], [ -81.975228825999977, 28.933170439000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003604937999967, 28.924031729000035 ], [ -82.003605739999955, 28.92403463900007 ], [ -82.003686287999983, 28.924326914000062 ], [ -82.003737519999959, 28.924534481000023 ], [ -82.003774016999955, 28.924713973000053 ], [ -82.00379453499994, 28.924837801000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003931944999977, 28.92482255300007 ], [ -82.003893439999956, 28.924629331000062 ], [ -82.003841714999965, 28.924383600000056 ], [ -82.003779504999954, 28.924130507000029 ], [ -82.003741217999959, 28.924004206000063 ], [ -82.003740716999971, 28.924002554000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991728163999937, 28.909125348000032 ], [ -81.991737292999971, 28.909126009000033 ], [ -81.991834215999972, 28.909133032000057 ], [ -81.992151995999961, 28.909158120000029 ], [ -81.992465392999975, 28.909188993000043 ], [ -81.992833578999978, 28.909237224000037 ], [ -81.993282853999972, 28.909304740000039 ], [ -81.993458178999958, 28.909339460000069 ], [ -81.99357652499998, 28.909362608000038 ], [ -81.993654653999954, 28.909390486000063 ], [ -81.993719126999963, 28.909433038000032 ], [ -81.993785610999964, 28.909509275000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993864207999934, 28.909238029000051 ], [ -81.993823906999978, 28.909284121000042 ], [ -81.993797711999946, 28.909323123000036 ], [ -81.993785848999948, 28.909350820000043 ], [ -81.993785737999985, 28.909351342000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994308376999982, 28.909515659000078 ], [ -81.994319553999958, 28.909488560000057 ], [ -81.994320529999982, 28.909484091000024 ], [ -81.994328345999975, 28.90944799500005 ], [ -81.994329325999956, 28.909406742000044 ], [ -81.994326924999939, 28.909392073000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989802101999942, 28.920002927000041 ], [ -81.989801116999956, 28.920002800000077 ], [ -81.989700334999952, 28.919989787000077 ], [ -81.989452945999972, 28.919973842000047 ], [ -81.989217624999981, 28.919965860000048 ], [ -81.988964201999977, 28.919965840000032 ], [ -81.98772465899998, 28.919967770000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014933169999949, 28.785772684000051 ], [ -82.015257023999936, 28.785781488000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987719865999964, 28.920094469000048 ], [ -81.988345588999948, 28.920092373000045 ], [ -81.98871769699997, 28.920092405000048 ], [ -81.989082461999942, 28.920090282000046 ], [ -81.989329716999976, 28.920096762000071 ], [ -81.989576971999952, 28.920114012000056 ], [ -81.989829759999964, 28.920136897000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974314598999968, 28.920022618000075 ], [ -81.974048422999942, 28.920032805000062 ], [ -81.972929773999965, 28.920043749000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97177923299995, 28.920171635000031 ], [ -81.971786333999944, 28.920171598000024 ], [ -81.972359598999958, 28.920171888000027 ], [ -81.972863905999986, 28.920169836000071 ], [ -81.973493061999989, 28.920169961000056 ], [ -81.973985128999971, 28.920163596000066 ], [ -81.974234834999947, 28.920157182000025 ], [ -81.974356098999976, 28.920150930000034 ], [ -81.974356345999979, 28.920150917000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990222312999947, 28.909128794000026 ], [ -81.990237166999975, 28.909127786000056 ], [ -81.990615686999945, 28.909102099000052 ], [ -81.990883063999945, 28.90909440300004 ], [ -81.991207418999977, 28.909098282000059 ], [ -81.99148794499996, 28.909107941000059 ], [ -81.991728163999937, 28.909125348000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993864207999934, 28.909238029000051 ], [ -81.993754051999986, 28.909254625000074 ], [ -81.993670770999984, 28.909254621000059 ], [ -81.993532700999936, 28.909229546000063 ], [ -81.993390247999969, 28.909200612000063 ], [ -81.993274095999936, 28.909177466000074 ], [ -81.993136025999945, 28.909154318000049 ], [ -81.993028637999942, 28.909140813000079 ], [ -81.992763457999956, 28.909102231000077 ], [ -81.992509232999964, 28.909071363000066 ], [ -81.992263775999959, 28.909046280000041 ], [ -81.991985445999944, 28.909021193000058 ], [ -81.991750313999944, 28.909005676000049 ], [ -81.991736098, 28.909004750000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991736098, 28.909004750000065 ], [ -81.99145508099997, 28.908986449000054 ], [ -81.991209622999975, 28.908974864000072 ], [ -81.990972929999941, 28.908974848000071 ], [ -81.990801984999962, 28.908974836000027 ], [ -81.990615697999942, 28.908982537000043 ], [ -81.990411878999964, 28.908994094000036 ], [ -81.990187007999964, 28.909005676000049 ], [ -81.990184001999978, 28.909005906000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974825782999972, 28.904669665000029 ], [ -81.974915257999953, 28.904613242000039 ], [ -81.974997218999988, 28.904590077000023 ], [ -81.975096739999969, 28.90457979200005 ], [ -81.975282097, 28.90455890000004 ], [ -81.975570927999968, 28.90452321600003 ], [ -81.975796314999968, 28.904487199000073 ], [ -81.975854903999959, 28.904476740000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975834263999957, 28.904359163000038 ], [ -81.975832199999957, 28.904359533000047 ], [ -81.9757378, 28.904376437000053 ], [ -81.975418746999935, 28.904420164000044 ], [ -81.975165555, 28.904452313000036 ], [ -81.97502037299995, 28.904456406000065 ], [ -81.974919688999989, 28.904439905000061 ], [ -81.974787365999987, 28.904382332000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974825782999972, 28.904669665000029 ], [ -81.974844708999967, 28.904633402000059 ], [ -81.974857326999938, 28.904591996000079 ], [ -81.974861582999949, 28.904549291000023 ], [ -81.974859503999937, 28.904528321000043 ], [ -81.974859212999945, 28.904525388000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974309417999962, 28.904561768000065 ], [ -81.974312389999966, 28.904591737000032 ], [ -81.974324998999975, 28.904633184000033 ], [ -81.974345597999957, 28.904672075000065 ], [ -81.974361851999959, 28.904694065000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979097139999965, 28.90857029700004 ], [ -81.979251814999941, 28.908539817000076 ], [ -81.979365849999965, 28.908513748000075 ], [ -81.979564265999954, 28.908463610000069 ], [ -81.979904084999987, 28.908375368000065 ], [ -81.979914267999959, 28.908372406000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97851987699994, 28.908656940000071 ], [ -81.978556224999977, 28.908654090000027 ], [ -81.978681657999971, 28.908642068000063 ], [ -81.978800250999939, 28.908624028000077 ], [ -81.978987261999976, 28.908591950000073 ], [ -81.979097139999965, 28.90857029700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969470617999946, 28.909487526000078 ], [ -81.969472869999947, 28.909488684000053 ], [ -81.969516732999978, 28.909506694000072 ], [ -81.969563484999981, 28.909517728000026 ], [ -81.969611703999988, 28.909521451000046 ], [ -81.96963680999994, 28.909519524000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969518075999986, 28.909047203000057 ], [ -81.969516866999982, 28.909047488000056 ], [ -81.969472992999954, 28.90906547700007 ], [ -81.969433336999941, 28.909089898000047 ], [ -81.969399101999954, 28.909120006000023 ], [ -81.969383738999966, 28.90913768300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967368034999936, 28.918270455000027 ], [ -81.967418226999939, 28.918267228000047 ], [ -81.967642119999937, 28.918253916000026 ], [ -81.967754032999949, 28.918248668000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968947402999959, 28.906838103000041 ], [ -81.968949288999966, 28.906837564000057 ], [ -81.968979048999984, 28.906829064000078 ], [ -81.969021213999952, 28.90680911000004 ], [ -81.96905865399998, 28.90678285100006 ], [ -81.96907579599997, 28.906767031000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969131218999962, 28.906676628000071 ], [ -81.969139474999963, 28.906636398000046 ], [ -81.96913948699995, 28.906595003000064 ], [ -81.969131097999934, 28.906554270000072 ], [ -81.969120879999934, 28.906530294000049 ], [ -81.969120733999944, 28.906529950000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969178872999976, 28.918132719000027 ], [ -81.969155912999952, 28.918157395000037 ], [ -81.969133375999945, 28.918192169000065 ], [ -81.969127761999971, 28.918206974000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96388292599994, 28.92003070800007 ], [ -81.963679190999983, 28.920019790000026 ], [ -81.96344086199997, 28.919993182000042 ], [ -81.963148235999938, 28.919945323000036 ], [ -81.962876728999959, 28.919894816000067 ], [ -81.962689676999958, 28.919849503000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953593499999954, 28.901537 ], [ -81.95359343399997, 28.901829588000055 ], [ -81.953595523, 28.902092366000034 ], [ -81.953606261999937, 28.903163685000038 ], [ -81.953611097999953, 28.90391168900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963667966999935, 28.903720348000036 ], [ -81.963620577999961, 28.903647824000075 ], [ -81.963539836999985, 28.903529327000058 ], [ -81.963462732999972, 28.903404452000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958475901999975, 28.901768082000046 ], [ -81.958379689999958, 28.901762004000034 ], [ -81.958178657999952, 28.901744251000025 ], [ -81.958051004999959, 28.901728290000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979052148999983, 28.894412966000061 ], [ -81.979102400999977, 28.894419498000047 ], [ -81.979184382999961, 28.894442295000033 ], [ -81.979231035999987, 28.89445962800005 ], [ -81.979295296999965, 28.894506281000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979324795999958, 28.894254439000065 ], [ -81.979259927999976, 28.894284715000026 ], [ -81.97921893299997, 28.894292303000043 ], [ -81.979173622999951, 28.894301789000053 ], [ -81.979120494999961, 28.894300594000072 ], [ -81.979051106999975, 28.89430000200008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96821597099995, 28.902085963000047 ], [ -81.968096127999956, 28.902329270000052 ], [ -81.968001356999935, 28.902582438000024 ], [ -81.967937554999935, 28.902789140000039 ], [ -81.967913846999977, 28.902902910000023 ], [ -81.967881017999957, 28.903063148000058 ], [ -81.967866411999978, 28.903184931000055 ], [ -81.967853624999975, 28.903313126000057 ], [ -81.967842647999987, 28.903479780000055 ], [ -81.967849877999981, 28.903654449000044 ], [ -81.967857120999952, 28.903787456000032 ], [ -81.967871642999967, 28.90393969400003 ], [ -81.967898910999963, 28.904098344000033 ], [ -81.96792800999998, 28.904220139000074 ], [ -81.967968028999962, 28.904365972000051 ], [ -81.968042624999953, 28.904593539000075 ], [ -81.96830283099996, 28.90527785300003 ], [ -81.96853938199996, 28.905918893000035 ], [ -81.968601253999964, 28.90607114200003 ], [ -81.968655843999954, 28.906216979000078 ], [ -81.968668570999967, 28.906289093000055 ], [ -81.968674009999972, 28.906369217000076 ], [ -81.968659082999977, 28.906477966000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968929284999945, 28.906388753000044 ], [ -81.968862026999943, 28.906314351000049 ], [ -81.968819363999955, 28.906251745000077 ], [ -81.968781345999957, 28.906171899000071 ], [ -81.968719847999978, 28.90599633000005 ], [ -81.96858621399997, 28.905653271000062 ], [ -81.968475895999973, 28.905359303000068 ], [ -81.968364443999974, 28.905062311000052 ], [ -81.968227971999966, 28.904701725000052 ], [ -81.968117093999979, 28.904391221000026 ], [ -81.968054561999963, 28.904170867000062 ], [ -81.96801194699998, 28.903955526000061 ], [ -81.96798924999996, 28.903737686000056 ], [ -81.967983604999972, 28.903587454000046 ], [ -81.967989373999956, 28.903334567000059 ], [ -81.968012209999983, 28.90309921000005 ], [ -81.968074897999941, 28.902806275000046 ], [ -81.96814610399997, 28.902573433000043 ], [ -81.968240074999983, 28.902335589000074 ], [ -81.968328767999935, 28.902160542000047 ], [ -81.968330140999967, 28.902157830000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984084218999953, 28.895250389000068 ], [ -81.984175980999964, 28.895238193000068 ], [ -81.984514736999984, 28.895177456000056 ], [ -81.984699273999979, 28.89514779700005 ], [ -81.984813710999958, 28.895128313000043 ], [ -81.985014889999945, 28.895100468000066 ], [ -81.985355460999983, 28.895064725000054 ], [ -81.985588030999963, 28.895043736000048 ], [ -81.985849672999962, 28.895028230000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986455740999986, 28.884123714000054 ], [ -81.98666032999995, 28.884160270000052 ], [ -81.986910838999961, 28.884184994000066 ], [ -81.986914984999942, 28.88418540300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986914984999942, 28.88418540300006 ], [ -81.987161360999949, 28.884209719000069 ], [ -81.987422557999935, 28.884231640000053 ], [ -81.987648242999967, 28.884260300000051 ], [ -81.988116186999946, 28.88433264300005 ], [ -81.988498679999964, 28.884410967000065 ], [ -81.988823153999988, 28.884494859000029 ], [ -81.988911733999942, 28.884518592000063 ], [ -81.988912822999964, 28.884518884000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00154562299997, 28.911878462000061 ], [ -82.001545849999957, 28.911878304000027 ], [ -82.001638359999959, 28.91180874500003 ], [ -82.00174095999995, 28.911721426000042 ], [ -82.001838514999974, 28.911620786000071 ], [ -82.001910837999958, 28.911533467000027 ], [ -82.001971387999959, 28.911452069000063 ], [ -82.002045392999946, 28.911333671000079 ], [ -82.002121079999938, 28.911181233000036 ], [ -82.002161444999956, 28.911077635000026 ], [ -82.002206855999987, 28.910920758000032 ], [ -82.002227036999955, 28.910803840000028 ], [ -82.002243852999982, 28.910649923000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002243852999982, 28.910649923000051 ], [ -82.002274127999954, 28.910599605000073 ], [ -82.002292626999974, 28.910516726000026 ], [ -82.002321217999963, 28.910393888000044 ], [ -82.002341401999956, 28.910331729000063 ], [ -82.002366628999937, 28.910262170000067 ], [ -82.002422131999936, 28.91014821300007 ], [ -82.002486522999959, 28.910030995000056 ], [ -82.002551638999989, 28.909935096000027 ], [ -82.002630688999943, 28.909837416000073 ], [ -82.002696002999983, 28.909765434000064 ], [ -82.002788788999965, 28.909674616000075 ], [ -82.002866426999958, 28.909609221000039 ], [ -82.002958741999976, 28.909540487000072 ], [ -82.003054605999978, 28.909478002000071 ], [ -82.003164671999969, 28.909415515000035 ], [ -82.003295923999985, 28.90935306700004 ], [ -82.003430962999971, 28.909303037000029 ], [ -82.003570134999961, 28.909259948000056 ], [ -82.003693703999943, 28.909228050000024 ], [ -82.003839277999987, 28.909206177000044 ], [ -82.004023906999976, 28.90919367500004 ], [ -82.004115116999969, 28.909191041000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013276777999977, 28.909055235000039 ], [ -82.012886927999944, 28.909070089000068 ], [ -82.012228788999948, 28.909070106000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003880605999939, 28.91646895100007 ], [ -82.003772594999987, 28.916486348000035 ], [ -82.003617299999974, 28.916525572000069 ], [ -82.003555119999987, 28.916548787000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011101004999944, 28.916450937000036 ], [ -82.011100114999977, 28.916450934000068 ], [ -82.010956214999965, 28.916450412000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012684788999934, 28.916579583000043 ], [ -82.012664670999982, 28.916570054000033 ], [ -82.012481710999964, 28.916510862000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016972176999957, 28.922962367000025 ], [ -82.017004121999946, 28.922924823000074 ], [ -82.017063071999985, 28.922833374000049 ], [ -82.017093575999979, 28.922763580000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016568158999974, 28.923672318000058 ], [ -82.016571514999953, 28.923637823000035 ], [ -82.016588971999965, 28.923537057000033 ], [ -82.016620603999968, 28.923453530000074 ], [ -82.016641793999952, 28.923406059000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016196219999983, 28.926390377000075 ], [ -82.016221701999939, 28.926357309000025 ], [ -82.016281296999978, 28.926278640000078 ], [ -82.016370686999949, 28.926147529000048 ], [ -82.016435596999941, 28.926024100000063 ], [ -82.016488373999948, 28.925911721000034 ], [ -82.016541146999941, 28.925764881000077 ], [ -82.016566673999989, 28.925649510000028 ], [ -82.016587090999963, 28.925528146000033 ], [ -82.016595565999978, 28.925274933000026 ], [ -82.016572458999974, 28.925085362000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024012156999959, 28.924216576000049 ], [ -82.024232131999952, 28.924216536000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01549979899994, 28.916751802000078 ], [ -82.015494873999955, 28.916483655000036 ], [ -82.015500616999987, 28.916397366000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019862395999951, 28.916399945000023 ], [ -82.019863613999973, 28.916397773000028 ], [ -82.019882100999951, 28.916364820000069 ], [ -82.019959626999935, 28.916192921000061 ], [ -82.019995361999975, 28.916102846000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023418202999949, 28.916076261000057 ], [ -82.023438475999967, 28.916116737000038 ], [ -82.023458528999981, 28.916177752000067 ], [ -82.023476817999949, 28.916232613000034 ], [ -82.023490808999952, 28.916293153000026 ], [ -82.023495117999971, 28.916332882000063 ], [ -82.023497282999983, 28.916391532000034 ], [ -82.023496879999982, 28.916402213000026 ], [ -82.02349686499997, 28.916402598000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012237882999955, 28.912841010000079 ], [ -82.012306081999952, 28.912839503000043 ], [ -82.012502591999976, 28.912835108000024 ], [ -82.012598360999959, 28.912834005000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008310313999971, 28.914667542000075 ], [ -82.008365528999946, 28.914623525000025 ], [ -82.008419093999976, 28.91457536300004 ], [ -82.008471247999978, 28.914519250000069 ], [ -82.008542373999944, 28.914428047000058 ], [ -82.008575948999976, 28.914374515000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029909877999955, 28.927330441000038 ], [ -82.029908216999956, 28.927330346000076 ], [ -82.028833920999944, 28.927321843000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029904282999951, 28.927456816000074 ], [ -82.029904424999984, 28.927456819000042 ], [ -82.030271119999952, 28.927472894000061 ], [ -82.030777369999953, 28.927481903000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047453262999966, 28.927413680000029 ], [ -82.047449098999948, 28.927413696000031 ], [ -82.047443710999971, 28.927413716000046 ], [ -82.047442749999959, 28.927413720000061 ], [ -82.045701494999946, 28.92742024000006 ], [ -82.045446327999969, 28.92741976800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039586948999954, 28.927412031000074 ], [ -82.03917353099996, 28.927411676000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038272439999957, 28.927503726000054 ], [ -82.038567230999945, 28.927488122000057 ], [ -82.038954736999983, 28.927480371000058 ], [ -82.03917353099996, 28.927411676000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032893021999939, 28.927497324000058 ], [ -82.033382858999971, 28.927500157000054 ], [ -82.034029068999985, 28.927501837000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034029068999985, 28.927501837000079 ], [ -82.034048786999961, 28.927504299000077 ], [ -82.034281332999967, 28.927504240000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036286037999957, 28.927476074000026 ], [ -82.036622988999966, 28.927478793000034 ], [ -82.037047750999989, 28.927480097000057 ], [ -82.037270632999935, 28.92748572000005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008560356999965, 28.927184512000053 ], [ -82.007897660999959, 28.927167883000038 ], [ -82.007416332999981, 28.927162888000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000453474999972, 28.92690357500004 ], [ -82.000390463999963, 28.926886090000039 ], [ -82.000265970999976, 28.926848929000073 ], [ -82.000127723999981, 28.926803512000049 ], [ -81.999998716999983, 28.926755172000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967646105999961, 28.88456162500006 ], [ -81.967556831999957, 28.884484529000076 ], [ -81.967281312999944, 28.884246682000025 ], [ -81.967152930999987, 28.884133937000058 ], [ -81.967004721999956, 28.883975411000051 ], [ -81.966838772999949, 28.883791993000045 ], [ -81.966668840999944, 28.883575978000067 ], [ -81.966465061999941, 28.883226318000027 ], [ -81.966315436999935, 28.882901982000078 ], [ -81.966192028999956, 28.88255106400004 ], [ -81.966170695999949, 28.882457041000066 ], [ -81.966131595999968, 28.882243924000079 ], [ -81.966099625999959, 28.882008871000039 ], [ -81.966089006999937, 28.881814563000034 ], [ -81.966110500999946, 28.881413426000051 ], [ -81.96616050199998, 28.880949616000066 ], [ -81.966203359999952, 28.880545349000045 ], [ -81.966235504999986, 28.880241366000064 ], [ -81.966253360999985, 28.880078405000063 ], [ -81.966271197999959, 28.879974990000051 ], [ -81.966309213999978, 28.879897134000032 ], [ -81.966381432999981, 28.879816939000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969222513999966, 28.886214555000038 ], [ -81.969222205999984, 28.886213911000027 ], [ -81.969178442999976, 28.886122502000035 ], [ -81.969064432999971, 28.885938149000026 ], [ -81.968969575999949, 28.885804208000025 ], [ -81.968777147999958, 28.885564855000041 ], [ -81.968614645999935, 28.885411005000037 ], [ -81.968368208999948, 28.885187558000041 ], [ -81.968075329999976, 28.884933475000025 ], [ -81.967781368999965, 28.884678436000058 ], [ -81.96764709699994, 28.884562481000046 ], [ -81.967646105999961, 28.88456162500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966075800999988, 28.879767898000068 ], [ -81.966096135999976, 28.879823099000077 ], [ -81.966120196999952, 28.879888426000036 ], [ -81.966122742999971, 28.880040896000025 ], [ -81.966022678999934, 28.880900644000064 ], [ -81.965995652999936, 28.881163763000075 ], [ -81.965968521999969, 28.88139962300005 ], [ -81.96595350399997, 28.881558901000062 ], [ -81.965953455999966, 28.881704892000073 ], [ -81.965953397999954, 28.881883974000061 ], [ -81.965968309999937, 28.882050689000039 ], [ -81.965992756999981, 28.882244138000033 ], [ -81.96601745199996, 28.882374780000077 ], [ -81.966041658999984, 28.882510783000043 ], [ -81.966096768999989, 28.882695660000024 ], [ -81.966176117999964, 28.882916844000079 ], [ -81.96624376799997, 28.883084168000039 ], [ -81.966332245999979, 28.883262954000031 ], [ -81.966442851999943, 28.883460082000056 ], [ -81.966534758999956, 28.883604835000028 ], [ -81.966652159999967, 28.883765238000024 ], [ -81.966767125, 28.883911372000057 ], [ -81.966920055999935, 28.884083298000064 ], [ -81.96712701499996, 28.884290196000052 ], [ -81.967339985999956, 28.884474567000041 ], [ -81.967519134999975, 28.884629654000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967519134999975, 28.884629654000037 ], [ -81.967525021999961, 28.884634751000078 ], [ -81.967592736999961, 28.884693372000072 ], [ -81.967808663999961, 28.884878763000074 ], [ -81.968092798999976, 28.88512576200003 ], [ -81.968321799999956, 28.885323096000036 ], [ -81.968500105999965, 28.885479861000078 ], [ -81.968650458999946, 28.885627834000047 ], [ -81.968751983999937, 28.885742238000034 ], [ -81.968817405999971, 28.885825772000032 ], [ -81.968893678999962, 28.885924526000053 ], [ -81.969029790999969, 28.886128197000062 ], [ -81.969094518999952, 28.886254552000025 ], [ -81.969094716999962, 28.886254938000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960855079999988, 28.892428100000075 ], [ -81.96083376699994, 28.892317302000038 ], [ -81.960808786999962, 28.892113324000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956900903999951, 28.951750446000062 ], [ -81.956923341999982, 28.951732651000043 ], [ -81.956953045999967, 28.951708375000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959786317999942, 28.954488609000066 ], [ -81.959722990999978, 28.954546123000057 ], [ -81.95972270599998, 28.954546382000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99949522999998, 28.952820092000024 ], [ -81.999355743999956, 28.952835426000036 ], [ -81.999134239999989, 28.952864441000031 ], [ -81.998955150999961, 28.952881021000053 ], [ -81.998700655999983, 28.95289759800005 ], [ -81.998361329999966, 28.952914175000046 ], [ -81.998068473999979, 28.952920777000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000089308999975, 28.941920591000041 ], [ -82.000089290999938, 28.941922862000069 ], [ -82.000091074999943, 28.942352116000052 ], [ -82.000091076, 28.942708101000051 ], [ -82.000094312999977, 28.94291030100004 ], [ -82.000116976999948, 28.943229264000024 ], [ -82.000139640999976, 28.943511203000071 ], [ -82.000184967999985, 28.943835862000071 ], [ -82.000214107999966, 28.944060845000024 ], [ -82.000265910999985, 28.944359872000064 ], [ -82.000304763999964, 28.944539289000033 ], [ -82.000382468999987, 28.944869642000072 ], [ -82.000492553999948, 28.945299671000043 ], [ -82.000555759999941, 28.945509225000023 ], [ -82.000556560999939, 28.945511879000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955062310999949, 28.948121491000052 ], [ -81.955083710999986, 28.948178032000044 ], [ -81.955110476999948, 28.948215730000072 ], [ -81.955132532999983, 28.948241212000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955679391, 28.947820122000053 ], [ -81.955678653999939, 28.947819295000045 ], [ -81.955634287999942, 28.947781556000052 ], [ -81.955576662999988, 28.947749479000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95524811699994, 28.947749520000059 ], [ -81.955245014999946, 28.947750849000045 ], [ -81.955205336999938, 28.947767857000031 ], [ -81.955145463999941, 28.947812937000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000684724999985, 28.945435791000079 ], [ -82.000609653999959, 28.945202548000054 ], [ -82.000530911999988, 28.944901812000069 ], [ -82.000456313999962, 28.944582849000028 ], [ -82.000412798999946, 28.944384181000032 ], [ -82.000390750999941, 28.944250738000051 ], [ -82.000309189999939, 28.94373532000003 ], [ -82.000284323999949, 28.943520248000027 ], [ -82.000259458999949, 28.943288773000063 ], [ -82.000234550999949, 28.942955812000037 ], [ -82.000228375999939, 28.942519617000073 ], [ -82.00023063499998, 28.941913967000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980175678999956, 28.81240753700007 ], [ -81.980210448999969, 28.812270557000033 ], [ -81.980238225999983, 28.812165134000054 ], [ -81.980281636999962, 28.811953523000057 ], [ -81.98036325399994, 28.811518842000055 ], [ -81.980492620999939, 28.810855742000058 ], [ -81.980613303999974, 28.810233130000029 ], [ -81.980694918999973, 28.809802269000045 ], [ -81.980859012999986, 28.808941307000055 ], [ -81.981031787999939, 28.808032218000051 ], [ -81.981150726999942, 28.807427177000079 ], [ -81.98119279499997, 28.807223243000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981052289, 28.807158278000031 ], [ -81.980998912999951, 28.807430842000031 ], [ -81.980886801999986, 28.808006335000073 ], [ -81.980795689999979, 28.808466731000067 ], [ -81.980680076999988, 28.809049855000069 ], [ -81.980568080999944, 28.809662160000073 ], [ -81.980454717999976, 28.810263561000056 ], [ -81.980345456999942, 28.810837301000049 ], [ -81.98024105199994, 28.811384634000035 ], [ -81.980138267999962, 28.811924434000048 ], [ -81.980097712999964, 28.812129972000037 ], [ -81.980066552999972, 28.812265996000065 ], [ -81.980037794999987, 28.812373285000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028760071999955, 28.932242354000039 ], [ -82.028763739999988, 28.932772663000037 ], [ -82.028761525999982, 28.934250815000041 ], [ -82.028777306999984, 28.934435293000035 ], [ -82.028798321999943, 28.934594403000062 ], [ -82.028800941999975, 28.934637230000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034796168999947, 28.931080628000075 ], [ -82.034826, 28.931113416000073 ], [ -82.034846387999949, 28.931137660000047 ], [ -82.034865934999971, 28.931176707000077 ], [ -82.034872475999975, 28.931202584000062 ], [ -82.035051390999968, 28.931974812000078 ], [ -82.035052029999974, 28.931977336000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035052029999974, 28.931977336000045 ], [ -82.035140278999961, 28.932326071000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032857907999983, 28.92845675500007 ], [ -82.03285563299994, 28.928656259000036 ], [ -82.032855616999939, 28.928657678000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027069463999965, 28.846642502000066 ], [ -82.027066039999966, 28.846630332000075 ], [ -82.027062426999976, 28.846622591000028 ], [ -82.027057782999975, 28.846615625000027 ], [ -82.027043848999938, 28.846599627000046 ], [ -82.027036623999948, 28.846593692000056 ], [ -82.027015723999966, 28.846580790000075 ], [ -82.027004342999987, 28.846576160000041 ], [ -82.026991136999982, 28.846572352000067 ], [ -82.02698019099995, 28.846570806000045 ], [ -82.026970672999937, 28.846569854000052 ], [ -82.026958061999949, 28.846570330000077 ], [ -82.026948424999944, 28.846571520000055 ], [ -82.026940810999974, 28.846573066000076 ], [ -82.026931530999946, 28.846576160000041 ], [ -82.026924867999981, 28.846578658000055 ], [ -82.026917134999962, 28.846582346000048 ], [ -82.026902248999988, 28.846590560000038 ], [ -82.026886187999935, 28.846605729000032 ], [ -82.026873694999949, 28.846620303000066 ], [ -82.026866853999934, 28.84663398500004 ], [ -82.026859716, 28.846655401000078 ], [ -82.02685674199995, 28.846674139000072 ], [ -82.02685822899997, 28.846699718000025 ], [ -82.026860905999968, 28.846709533000023 ], [ -82.026862492999953, 28.846715450000033 ], [ -82.026865467999983, 28.846723539000038 ], [ -82.026869558999977, 28.846731999000042 ], [ -82.02687309199996, 28.846738508000044 ], [ -82.026875254999936, 28.846742404000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026875254999936, 28.846742404000054 ], [ -82.026890261999938, 28.846754958000076 ], [ -82.026906502999964, 28.846767215000057 ], [ -82.026918101999968, 28.84677375800004 ], [ -82.02693401199997, 28.846780833000025 ], [ -82.02695216099994, 28.846784176000028 ], [ -82.026972697999952, 28.846786087000055 ], [ -82.026985928999977, 28.846784498000034 ], [ -82.027003179999951, 28.846780215000024 ], [ -82.027015552999956, 28.846774742000036 ], [ -82.027030010999965, 28.846767460000024 ], [ -82.02705580199995, 28.846743102000062 ], [ -82.027069652999955, 28.846722087000046 ], [ -82.027077369999972, 28.846688947000075 ], [ -82.027075927999988, 28.846663761000059 ], [ -82.027069463999965, 28.846642502000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029173153999977, 28.847163460000047 ], [ -82.029891722999935, 28.847464795000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027503175999982, 28.846137145000057 ], [ -82.02752426099994, 28.846166548000042 ], [ -82.027534467999942, 28.846197367000059 ], [ -82.027544255999942, 28.846278418000054 ], [ -82.027547316999971, 28.846378682000079 ], [ -82.027548743999944, 28.846447210000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027643632999968, 28.846450625000045 ], [ -82.027642970999977, 28.846411518000025 ], [ -82.027638687999968, 28.846372971000051 ], [ -82.027627266999957, 28.846324430000038 ], [ -82.027617272999976, 28.846263040000053 ], [ -82.027612776999945, 28.846199385000034 ], [ -82.027618487999973, 28.846166548000042 ], [ -82.027635776999944, 28.846132868000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02661606099997, 28.846092442000042 ], [ -82.026684139999986, 28.846072803000027 ], [ -82.026745529999971, 28.846062810000035 ], [ -82.026806352999984, 28.846064593000051 ], [ -82.02687059799996, 28.846070304000079 ], [ -82.026933415999963, 28.846081725000033 ], [ -82.026986239999985, 28.846091719000071 ], [ -82.027049624999961, 28.846102785000028 ], [ -82.027127804999964, 28.846113908000063 ], [ -82.02722631499995, 28.846128185000055 ], [ -82.027327679999985, 28.846135324000045 ], [ -82.02743591899997, 28.846138121000024 ], [ -82.027490528999977, 28.846137329000044 ], [ -82.027503175999982, 28.846137145000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027503175999982, 28.846137145000057 ], [ -82.027524751999977, 28.84613683200007 ], [ -82.02757629499996, 28.84613683200007 ], [ -82.027621256999964, 28.846134164000034 ], [ -82.027635776999944, 28.846132868000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027069463999965, 28.846642502000066 ], [ -82.027189097999951, 28.846640358000059 ], [ -82.027415970999982, 28.846680113000048 ], [ -82.027514753999981, 28.84668300900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027514753999981, 28.84668300900006 ], [ -82.02756532799998, 28.846693545000051 ], [ -82.02762011599998, 28.84668722300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028136390999975, 28.84673779700006 ], [ -82.028180800999962, 28.846674987000029 ], [ -82.028286450999985, 28.846561142000041 ], [ -82.028330232999963, 28.846528781000075 ], [ -82.028429218999975, 28.846481192000056 ], [ -82.028507264999973, 28.846465963000071 ], [ -82.028606250999985, 28.846467867000058 ], [ -82.028690007999955, 28.846498324000038 ], [ -82.028796607999936, 28.846526878000077 ], [ -82.029031968999959, 28.846594505000041 ], [ -82.029407057999947, 28.846638757000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02762011599998, 28.84668722300006 ], [ -82.027704148999987, 28.846706210000036 ], [ -82.027776959999983, 28.846704782000074 ], [ -82.027839777999986, 28.846703354000056 ], [ -82.027879752999979, 28.846703354000056 ], [ -82.027935431999936, 28.846707637000065 ], [ -82.028022599999986, 28.846720939000079 ], [ -82.028136390999975, 28.84673779700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029173153999977, 28.847163460000047 ], [ -82.029373341999985, 28.84674833300005 ], [ -82.029407057999947, 28.846638757000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029407057999947, 28.846638757000051 ], [ -82.029567207999946, 28.846634542000061 ], [ -82.029750537999973, 28.846628220000071 ], [ -82.029927545999954, 28.84662611300007 ], [ -82.03005187399998, 28.846649293000041 ], [ -82.030138270999942, 28.84669143800005 ], [ -82.030266811999979, 28.84673990400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028136390999975, 28.84673779700006 ], [ -82.028498835999983, 28.846891626000058 ], [ -82.029173153999977, 28.847163460000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029891722999935, 28.847464795000064 ], [ -82.030266811999979, 28.84673990400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030266811999979, 28.84673990400006 ], [ -82.030404467999972, 28.846450452000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029891722999935, 28.847464795000064 ], [ -82.030016049999972, 28.847494297000026 ], [ -82.030254168999988, 28.847601766000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028983738999955, 28.845343274000072 ], [ -82.029043225999942, 28.845171953000033 ], [ -82.02907653799997, 28.845031565000056 ], [ -82.029190751999977, 28.844788860000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029190751999977, 28.844788860000051 ], [ -82.029371590999972, 28.84437721300003 ], [ -82.029490563999957, 28.84407740100005 ], [ -82.029626267999959, 28.843894482000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028705341999967, 28.845828684000026 ], [ -82.028814796999939, 28.845693055000027 ], [ -82.028860006999935, 28.845588359000033 ], [ -82.028983738999955, 28.845343274000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028705341999967, 28.845828684000026 ], [ -82.028612542999952, 28.845766818000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029490116999966, 28.843849589000058 ], [ -82.029626267999959, 28.843894482000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99501197099994, 28.879310261000057 ], [ -81.994892289999939, 28.879110872000069 ], [ -81.994780114999969, 28.878950436000025 ], [ -81.994653440999969, 28.878782195000042 ], [ -81.994557379999947, 28.87866957500006 ], [ -81.994556280999973, 28.878668287000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979507488999957, 28.887813627000071 ], [ -81.979507487999967, 28.887819222000076 ], [ -81.979507455999965, 28.887985215000072 ], [ -81.97950057099996, 28.888715028000036 ], [ -81.979497066999954, 28.889388473000054 ], [ -81.979490152999972, 28.890263656000059 ], [ -81.979486637999969, 28.890996435000034 ], [ -81.979483113999947, 28.891776684000035 ], [ -81.979476150999972, 28.892907003000062 ], [ -81.979476087999956, 28.893218510000054 ], [ -81.979473040999949, 28.893964403000041 ], [ -81.979468160999943, 28.894013273000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979615579999972, 28.894015721000073 ], [ -81.979609509999989, 28.893965786000024 ], [ -81.979609582999956, 28.893591741000023 ], [ -81.979616207999982, 28.892815173000031 ], [ -81.979620692999958, 28.891936074000057 ], [ -81.979627297999969, 28.891256339000051 ], [ -81.979627410999967, 28.890679135000028 ], [ -81.97962963699996, 28.890331671000069 ], [ -81.979634097999963, 28.88958548200003 ], [ -81.97964288999998, 28.888746258000026 ], [ -81.979645214999948, 28.887855527000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979468160999943, 28.894013273000041 ], [ -81.979468151999981, 28.89401336800006 ], [ -81.979462233999982, 28.894072627000071 ], [ -81.979447120999964, 28.894125788000053 ], [ -81.97939828799997, 28.894196726000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979697130999966, 28.894207761000075 ], [ -81.97965262699995, 28.89414047300005 ], [ -81.979622434999953, 28.894072115000029 ], [ -81.979615596999963, 28.894015864000039 ], [ -81.979615579999972, 28.894015721000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993042548999938, 28.891579185000069 ], [ -81.993253043999971, 28.891348060000041 ], [ -81.993331970999975, 28.891261091000047 ], [ -81.993333635999988, 28.891259258000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993605567999964, 28.890960074000077 ], [ -81.99387055699998, 28.890671897000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020968454999945, 28.787798979000058 ], [ -82.020969568999988, 28.787725840000064 ], [ -82.020987169999955, 28.787246302000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020849819999967, 28.791226197000071 ], [ -82.020854856999961, 28.791217292000056 ], [ -82.020878581999966, 28.791167358000052 ], [ -82.020904333999965, 28.79109888000005 ], [ -82.020923068999934, 28.791029263000041 ], [ -82.020934303999979, 28.790963328000032 ], [ -82.020939640999984, 28.790890055000034 ], [ -82.020943001999967, 28.790536024000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03092339799997, 28.846515972000077 ], [ -82.030496171999971, 28.846363654000072 ], [ -82.030161142999987, 28.846251451000057 ], [ -82.029764732999979, 28.84613390100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99698449999994, 28.886307935000048 ], [ -81.996987223999952, 28.886307711000029 ], [ -81.997481057999948, 28.886267134000036 ], [ -81.998269204999986, 28.886195574000055 ], [ -81.998678429999984, 28.88615832000005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999476664999975, 28.886074509000025 ], [ -82.000037132999978, 28.886016392000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045042835999936, 28.799881087000074 ], [ -82.04535214699996, 28.799976260000051 ], [ -82.045690348999983, 28.800124117000053 ], [ -82.045957668999961, 28.800283309000065 ], [ -82.046138982999935, 28.800408944000026 ], [ -82.046363128999985, 28.800590259000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005275472999983, 28.884924994000073 ], [ -82.005498860999978, 28.884830026000031 ], [ -82.005673344999934, 28.884756390000064 ], [ -82.005860971999937, 28.884668027000032 ], [ -82.006056150999939, 28.884566385000028 ], [ -82.006205499999965, 28.884484990000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007566793999956, 28.889328909000028 ], [ -82.007568126999956, 28.88932814900005 ], [ -82.007669953999937, 28.889270038000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011778684999967, 28.87986102900004 ], [ -82.011692840999956, 28.879918853000049 ], [ -82.011680642999977, 28.879928318000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008871935999935, 28.881020885000055 ], [ -82.008870775999981, 28.880928596000047 ], [ -82.008866829999988, 28.880855852000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011000715999955, 28.878943130000039 ], [ -82.011000750999983, 28.878942989000052 ], [ -82.011011585999938, 28.878914006000059 ], [ -82.011021740999979, 28.878890793000039 ], [ -82.011038333999977, 28.878859139000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96131526399995, 28.879654904000063 ], [ -81.961315246999959, 28.87965483000005 ], [ -81.961297334999983, 28.879577518000076 ], [ -81.961220711999943, 28.879299103000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973645774999966, 28.893849921000026 ], [ -81.973627392999958, 28.893746237000073 ], [ -81.973619423999935, 28.893717550000076 ], [ -81.973618618999978, 28.893714653000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974767860999975, 28.887969041000076 ], [ -81.974767278999934, 28.887698840000041 ], [ -81.97477069699994, 28.887599770000065 ], [ -81.974770716999956, 28.887599193000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97057687399996, 28.894372012000076 ], [ -81.97057668399998, 28.894372017000023 ], [ -81.970489151999971, 28.894374356000071 ], [ -81.970213908999938, 28.894392986000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96864788299996, 28.894655900000032 ], [ -81.968648444999985, 28.894655900000032 ], [ -81.968709678999971, 28.894655915000044 ], [ -81.968762519999984, 28.894666588000064 ], [ -81.968814308999981, 28.894678500000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968764430999954, 28.894449414000064 ], [ -81.968709517999969, 28.894492787000047 ], [ -81.968658845999983, 28.894517698000072 ], [ -81.96863839699995, 28.894523517000039 ], [ -81.968638349999935, 28.894523530000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968918385999984, 28.894744610000032 ], [ -81.968963192, 28.894795782000074 ], [ -81.968987464999941, 28.894833915000049 ], [ -81.969004063999989, 28.89486314800007 ], [ -81.969024738999963, 28.894899561000045 ], [ -81.969026670999938, 28.894906203000062 ], [ -81.969026708999934, 28.894906334000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969184324999958, 28.894880854000064 ], [ -81.969184322, 28.894880833000059 ], [ -81.96918239699994, 28.894867820000059 ], [ -81.969180050999967, 28.894817166000053 ], [ -81.969182425999975, 28.894771672000047 ], [ -81.969201263999935, 28.894707266000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994534473999977, 28.886413154000024 ], [ -81.994700092999949, 28.886436194000055 ], [ -81.994759776999956, 28.886436196000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99501197099994, 28.879310261000057 ], [ -81.995106938999982, 28.879266308000069 ], [ -81.99510698499995, 28.879266287000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995264329999941, 28.883974616000046 ], [ -81.995365204999985, 28.883996080000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993352630999937, 28.87740489600003 ], [ -81.993430828999976, 28.877335709000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974395802999936, 28.880249227000036 ], [ -81.974528046999978, 28.880247213000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96633000099996, 28.879175512000074 ], [ -81.966277974999969, 28.879285899000024 ], [ -81.966208434999942, 28.879362522000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966459146999966, 28.879421963000027 ], [ -81.966438414999971, 28.879367825000031 ], [ -81.966435007999962, 28.87932268000003 ], [ -81.966438445999984, 28.879273155000078 ], [ -81.966463024999939, 28.879206282000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97954588999994, 28.872094139000069 ], [ -81.97974951499998, 28.872072703000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965764670999988, 28.87233529100007 ], [ -81.965821456999947, 28.872271486000045 ], [ -81.965872375999936, 28.872227785000064 ], [ -81.965900937999947, 28.872203751000029 ], [ -81.965939434999939, 28.872177531000034 ], [ -81.966000632999965, 28.872142216000043 ], [ -81.966132136999988, 28.872064587000068 ], [ -81.966391098999964, 28.87192314300006 ], [ -81.96639201499994, 28.871922643000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966336598999987, 28.871834658000068 ], [ -81.966336403999946, 28.871834759000023 ], [ -81.966058159999989, 28.871979802000055 ], [ -81.965827455999943, 28.872104271000069 ], [ -81.965778049999983, 28.872121855000046 ], [ -81.965736527999979, 28.872129458000074 ], [ -81.96567424899996, 28.872129442000073 ], [ -81.965630997999938, 28.872132478000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00631144, 28.878490673000044 ], [ -82.006235070999935, 28.878236378000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008228025999983, 28.877909714000054 ], [ -82.008155381999984, 28.877753896000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003298853, 28.877571266000075 ], [ -82.003290763999985, 28.877594713000065 ], [ -82.003281604999984, 28.877621562000058 ], [ -82.003267901999948, 28.87766943400004 ], [ -82.003256651999948, 28.877717799000038 ], [ -82.003248167999971, 28.877764701000046 ], [ -82.003189459999987, 28.878141413000037 ], [ -82.003188568999974, 28.878147889000047 ], [ -82.003187286999946, 28.87816945000003 ], [ -82.003188570999953, 28.878191010000023 ], [ -82.003192408999951, 28.878212335000057 ], [ -82.00319875799994, 28.87823319000006 ], [ -82.003207548999967, 28.878253346000065 ], [ -82.003218685999968, 28.878272583000069 ], [ -82.003232047999973, 28.878290689000039 ], [ -82.003247483999985, 28.87830746700007 ], [ -82.003249358999938, 28.878309278000074 ], [ -82.003451000999974, 28.878501732000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003298853, 28.877571266000075 ], [ -82.00335531199994, 28.87758756900007 ], [ -82.003382410999961, 28.877595883000026 ], [ -82.003392202999976, 28.877599346000068 ], [ -82.003392316999964, 28.877599386000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999942274999967, 28.865325983000048 ], [ -81.999354332999985, 28.865328976000058 ], [ -81.99870901099996, 28.865314597000065 ], [ -81.998429090999934, 28.86531459400004 ], [ -81.997586721999937, 28.865313103000062 ], [ -81.997241232999954, 28.865309203000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986757083999976, 28.865425409000068 ], [ -81.986757297999986, 28.865425409000068 ], [ -81.987593177999941, 28.865424571000062 ], [ -81.987760636999951, 28.865431591000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997032931999968, 28.865309198000034 ], [ -81.992666608999969, 28.865305555000077 ], [ -81.991145909999943, 28.86530248400004 ], [ -81.98973356099998, 28.865300948000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989187292999986, 28.865300458000036 ], [ -81.987825141999963, 28.865299268000058 ], [ -81.987355270999956, 28.865295164000031 ], [ -81.987078071999974, 28.865295138000079 ], [ -81.986756627999966, 28.865295107000065 ], [ -81.986756423999964, 28.865295107000065 ], [ -81.986591279999971, 28.865295091000064 ], [ -81.984544686999982, 28.865298192000068 ], [ -81.98369811699996, 28.865298832000065 ], [ -81.982331681999938, 28.865297920000046 ], [ -81.980709219999937, 28.865300329000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990263431999949, 28.875141049000035 ], [ -81.990357908999954, 28.875205182000059 ], [ -81.99038268299995, 28.875240415000064 ], [ -81.990395212999942, 28.87526692800003 ], [ -81.990420794999977, 28.875332688000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990601882999954, 28.875122994000037 ], [ -81.990520826999955, 28.875120041000059 ], [ -81.990484081999966, 28.875111361000052 ], [ -81.990450024999973, 28.875099526000042 ], [ -81.99039804399996, 28.875082166000027 ], [ -81.990333515999964, 28.875052183000037 ], [ -81.99032462699995, 28.87504696600007 ], [ -81.990324610999949, 28.875046956000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991015668999978, 28.874961092000035 ], [ -81.991015479999987, 28.874961260000077 ], [ -81.990931625999963, 28.875035779000029 ], [ -81.990880231999938, 28.875071155000057 ], [ -81.990828245999978, 28.87509639600006 ], [ -81.990761985999939, 28.875111262000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990965913999958, 28.87526897500004 ], [ -81.990985082999941, 28.875193438000053 ], [ -81.991005697999981, 28.875157941000055 ], [ -81.991037966999954, 28.875120077000076 ], [ -81.991120622999972, 28.875040029000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984153969999966, 28.872173427000064 ], [ -81.984471912999936, 28.87226002400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98091743599997, 28.871764252000048 ], [ -81.98088460799994, 28.871676260000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959683745999939, 28.866752385000041 ], [ -81.959730277999938, 28.866774220000025 ], [ -81.959859085999938, 28.866834298000072 ], [ -81.960022714, 28.866899449000073 ], [ -81.960147467999946, 28.866942927000025 ], [ -81.960298572999989, 28.866987861000041 ], [ -81.960465874999954, 28.867027442000051 ], [ -81.960585979999962, 28.867051247000063 ], [ -81.960704224999972, 28.867069313000059 ], [ -81.960836436999955, 28.867086564000033 ], [ -81.961003099999971, 28.867101366000043 ], [ -81.961122042999989, 28.867105955000056 ], [ -81.96125845399996, 28.867105994000042 ], [ -81.961349393999967, 28.867106020000051 ], [ -81.96149472899998, 28.867098228000032 ], [ -81.961614642999962, 28.867086083000061 ], [ -81.961763691999977, 28.867066112000032 ], [ -81.961890004999987, 28.867046136000056 ], [ -81.962041583999962, 28.867012823000039 ], [ -81.962152743, 28.866988394000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957193911, 28.866258941000069 ], [ -81.957299295999974, 28.86627363100007 ], [ -81.957616112999972, 28.866299932000061 ], [ -81.957861140999967, 28.866311126000028 ], [ -81.958067171999971, 28.866314214000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957312637999962, 28.865351620000069 ], [ -81.957587652999962, 28.865373349000038 ], [ -81.957997175999935, 28.865387871000053 ], [ -81.958739313999956, 28.865387360000057 ], [ -81.95949933199995, 28.865401245000044 ], [ -81.959688511999957, 28.865404399000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959689153999989, 28.865264161000027 ], [ -81.958055275999982, 28.86526058100003 ], [ -81.957844245, 28.865257971000062 ], [ -81.957691033999936, 28.865250288000027 ], [ -81.957517585999938, 28.865242600000045 ], [ -81.957292729999949, 28.865220755000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004265418999978, 28.848663382000041 ], [ -82.004270360999953, 28.848668592000024 ], [ -82.004317218999972, 28.848723595000024 ], [ -82.004330235999987, 28.848751097000047 ], [ -82.00434086599995, 28.84877859900007 ], [ -82.004345856999976, 28.848804955000048 ], [ -82.004350413999987, 28.848836659000028 ], [ -82.004349979999972, 28.848874092000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004602913999975, 28.848704893000047 ], [ -82.004583713999978, 28.848701144000074 ], [ -82.004551173999971, 28.848693697000044 ], [ -82.004523190999976, 28.84868739500007 ], [ -82.004490650999969, 28.84867622400003 ], [ -82.004459086999987, 28.848661710000044 ], [ -82.004401816999973, 28.848628480000059 ], [ -82.004375784999979, 28.848606708000034 ], [ -82.004334476999986, 28.848562903000072 ], [ -82.004334451999966, 28.848562877000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998146302999942, 28.848158560000059 ], [ -81.998355443999969, 28.848091927000041 ], [ -81.998559526999941, 28.84802690500004 ], [ -81.998719517999973, 28.847975930000075 ], [ -81.998806550999973, 28.847948201000065 ], [ -81.998890318999941, 28.847921512000028 ], [ -81.998974622999981, 28.847894651000047 ], [ -81.999058971999943, 28.847867776000044 ], [ -81.99915723099997, 28.847836470000061 ], [ -81.99924600099996, 28.847808187000055 ], [ -81.999296697999966, 28.847792033000076 ], [ -81.999330834999967, 28.847781156000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999882826999965, 28.851955036000049 ], [ -81.999839458999986, 28.852021941000032 ], [ -81.999726803999977, 28.852208649000033 ], [ -81.999628086999962, 28.852403160000051 ], [ -81.999563947999945, 28.852542386000039 ], [ -81.999477660999958, 28.852767350000079 ], [ -81.999396904999969, 28.853026543000055 ], [ -81.999369962999936, 28.853133921000051 ], [ -81.999347181999951, 28.853242784000031 ], [ -81.999333079999985, 28.853312972000026 ], [ -81.99931952299994, 28.853391755000075 ], [ -81.999305962999983, 28.853430717000037 ], [ -81.999284811999985, 28.853466719000039 ], [ -81.99927179499997, 28.853484385000058 ], [ -81.999258235999946, 28.853499664000026 ], [ -81.999246846999938, 28.853511123000033 ], [ -81.99922689899995, 28.853527566000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956964453999944, 28.863537124000061 ], [ -81.956953243999976, 28.864088747000039 ], [ -81.956957858999942, 28.864119007000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960569684999939, 28.852979890000029 ], [ -81.960531715999934, 28.853067446000068 ], [ -81.960436160999961, 28.85333862300007 ], [ -81.960359910999955, 28.853602521000028 ], [ -81.960213952999936, 28.854060851000042 ], [ -81.960090585999978, 28.854439737000064 ], [ -81.960007153999982, 28.854772797000066 ], [ -81.959941066999988, 28.855130308000071 ], [ -81.959896274999949, 28.855411649000075 ], [ -81.959869070999957, 28.855637009000077 ], [ -81.959857086999989, 28.855772606000073 ], [ -81.959850470999982, 28.856052403000035 ], [ -81.959865523999952, 28.856399053000075 ], [ -81.959892528999944, 28.856695094000031 ], [ -81.959942291999937, 28.857046528000069 ], [ -81.959982344999958, 28.857257583000035 ], [ -81.960022416999948, 28.857421846000079 ], [ -81.960072245999982, 28.857602345000032 ], [ -81.960138334999954, 28.857809587000077 ], [ -81.960217432999968, 28.858039752000025 ], [ -81.960312801999976, 28.858271832000071 ], [ -81.960394085999951, 28.858461890000058 ], [ -81.96045911899995, 28.858597510000038 ], [ -81.960538249999956, 28.858744595000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960676768999974, 28.858722243000045 ], [ -81.960535860999983, 28.858433808000029 ], [ -81.960425307999969, 28.858195995000074 ], [ -81.960330282999962, 28.857944291000024 ], [ -81.960215430999938, 28.857602387000043 ], [ -81.960153683999977, 28.857385596000029 ], [ -81.960100615999977, 28.85716403300006 ], [ -81.960063813999966, 28.856958710000072 ], [ -81.960040023999966, 28.856765804000077 ], [ -81.960023800999977, 28.856641656000079 ], [ -81.960005451999962, 28.856400050000047 ], [ -81.959990360999939, 28.856153669000037 ], [ -81.959989353999958, 28.855948355000066 ], [ -81.960000302999958, 28.855682885000078 ], [ -81.960028595999972, 28.855445111000051 ], [ -81.960072090999972, 28.855168190000029 ], [ -81.960116664999987, 28.854905594000058 ], [ -81.960184235999975, 28.854621586000064 ], [ -81.960251367999945, 28.854379458000039 ], [ -81.960358000999975, 28.854057838000074 ], [ -81.960535897999989, 28.853484758000036 ], [ -81.960543617999974, 28.853460117000054 ], [ -81.960543683999958, 28.853459906000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961743333999948, 28.860256926000034 ], [ -81.961717186167462, 28.86028814064899 ], [ -81.961686834999966, 28.860315286000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961441922999938, 28.859897003000071 ], [ -81.961441969999953, 28.859896994000053 ], [ -81.961474946821639, 28.859892459017747 ], [ -81.961508215886099, 28.859891360753902 ], [ -81.961541419999946, 28.859893711000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980709219999937, 28.865300329000036 ], [ -81.97925222899994, 28.865297137000027 ], [ -81.976808131999974, 28.86529673900003 ], [ -81.974960591999945, 28.865298447000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974965840999971, 28.865427688000068 ], [ -81.97521835699996, 28.865427253000064 ], [ -81.976211723999938, 28.865426883000055 ], [ -81.977444097999978, 28.86542709500003 ], [ -81.978382007999983, 28.865429168000048 ], [ -81.979433342999982, 28.865427413000077 ], [ -81.979932835999989, 28.865423648000046 ], [ -81.980629014999977, 28.86542772100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960543683999958, 28.853459906000069 ], [ -81.960615174999987, 28.853231721000043 ], [ -81.960695443999953, 28.853021738000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966400961999966, 28.859382198000048 ], [ -81.966421309999987, 28.859310253000046 ], [ -81.966502973, 28.859030665000034 ], [ -81.966570737999973, 28.858790800000065 ], [ -81.966593855999974, 28.858624784000028 ], [ -81.966594491999956, 28.858604268000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973538839999947, 28.858832713000027 ], [ -81.973713258999965, 28.858681368000077 ], [ -81.973821347999944, 28.858582347000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975255101999949, 28.857823712000027 ], [ -81.975404260999937, 28.85778792900004 ], [ -81.975569689999986, 28.857759311000052 ], [ -81.975748675999967, 28.857737857000075 ], [ -81.975824751999937, 28.857733406000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971569331999945, 28.848222989000078 ], [ -81.971739824999986, 28.848221996000063 ], [ -81.971910163999951, 28.848215542000048 ], [ -81.972080121999966, 28.84820363700004 ], [ -81.972249474999956, 28.848186296000051 ], [ -81.972418000999937, 28.84816354000003 ], [ -81.97258547399997, 28.848135402000025 ], [ -81.972751673999937, 28.848101918000054 ], [ -81.972939889999964, 28.848060811000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968933452999977, 28.847773464000056 ], [ -81.969097953999949, 28.84779452600003 ], [ -81.969261228999983, 28.847821988000078 ], [ -81.969422964999978, 28.847855796000033 ], [ -81.969793095999989, 28.847940840000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977570684999989, 28.847944846000075 ], [ -81.977570717999981, 28.847944842000061 ], [ -81.977689070999986, 28.847930174000055 ], [ -81.977874438999947, 28.847899974000029 ], [ -81.978046555999981, 28.847865118000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985031564999986, 28.84934250200007 ], [ -81.985093732999985, 28.849190287000056 ], [ -81.985163107999938, 28.849040505000062 ], [ -81.985197900999935, 28.848973575000059 ], [ -81.985198048999962, 28.84897329000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986720632999948, 28.847147054000061 ], [ -81.98680626099997, 28.847214756000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988496014999953, 28.848414986000023 ], [ -81.988544624999975, 28.848340749000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990669429999969, 28.849181963000035 ], [ -81.990786908999951, 28.849208033000025 ], [ -81.991007821999972, 28.849251759000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984898426999962, 28.853621722000071 ], [ -81.984996516999956, 28.853610253000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984825812999986, 28.855416087000037 ], [ -81.984915603, 28.85543189200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014181797999981, 28.863348897000037 ], [ -82.014181873999974, 28.863349062000054 ], [ -82.01426123899995, 28.86352170300006 ], [ -82.014311576999944, 28.863640541000052 ], [ -82.014354386999969, 28.863761643000032 ], [ -82.014389536999943, 28.863884639000048 ], [ -82.014416917999938, 28.864009158000044 ], [ -82.014436449999948, 28.864134817000036 ], [ -82.014448069999958, 28.864261233000036 ], [ -82.014451744999974, 28.86438802300006 ], [ -82.014451663999978, 28.864422088000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999167148999959, 28.853926045000037 ], [ -81.999217555999962, 28.853983344000028 ], [ -81.99923653899998, 28.854010082000059 ], [ -81.999249554999949, 28.854033955000034 ], [ -81.999260401999948, 28.854059261000032 ], [ -81.999272332999965, 28.854088865000051 ], [ -81.999279925999986, 28.854124675000037 ], [ -81.999308421999956, 28.854414486000053 ], [ -81.999333025999988, 28.854560122000066 ], [ -81.999360793999983, 28.854707565000069 ], [ -81.999399842999935, 28.854852717000028 ], [ -81.999465790999977, 28.85508648800004 ], [ -81.999549094999963, 28.855377556000064 ], [ -81.999629795999965, 28.855670151000027 ], [ -81.999689671999988, 28.855867251000063 ], [ -81.999757356999964, 28.85614991500006 ], [ -81.999777994999988, 28.856275162000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999914021999984, 28.856248564000055 ], [ -81.999913995999975, 28.856248411000024 ], [ -81.999899673999948, 28.856163667000033 ], [ -81.999856283999975, 28.855961983000043 ], [ -81.999805954999943, 28.855783980000069 ], [ -81.999677524999981, 28.855321787000037 ], [ -81.999539551999987, 28.85484049400003 ], [ -81.999479676999954, 28.854605195000033 ], [ -81.999449574999971, 28.854413644000033 ], [ -81.99942767899995, 28.854229701000065 ], [ -81.999423123999975, 28.85412885900007 ], [ -81.999426377999953, 28.854095627000049 ], [ -81.999430933999975, 28.854064687000061 ], [ -81.999444600999936, 28.85402973500004 ], [ -81.999461087999975, 28.854003188000036 ], [ -81.999474972999963, 28.85398217900007 ], [ -81.999490388999959, 28.853966788000037 ], [ -81.999511084999938, 28.853943885000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998398760999976, 28.860455540000032 ], [ -81.998219121999966, 28.860440083000071 ], [ -81.997856329999934, 28.860334656000077 ], [ -81.997732492999944, 28.86030379400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998398760999976, 28.860455540000032 ], [ -81.998398723999969, 28.860455574000071 ], [ -81.998372482999969, 28.860479659000077 ], [ -81.998348716999942, 28.860509190000073 ], [ -81.99833016499997, 28.860541486000045 ], [ -81.998317413999985, 28.860575204000043 ], [ -81.998311116999957, 28.860606404000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001780383999971, 28.957238606000033 ], [ -82.001651243999959, 28.957262943000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000337395999964, 28.933082870000078 ], [ -82.000461753999957, 28.933133221000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000530058999971, 28.933021455000073 ], [ -82.000402043999941, 28.932976740000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003914292, 28.927139733000047 ], [ -82.003903666999975, 28.927267658000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004042962999961, 28.927269466000041 ], [ -82.004045687999962, 28.927141831000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003815920999955, 28.924965543000042 ], [ -82.003955008999981, 28.924950033000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003931944999977, 28.92482255300007 ], [ -82.00379453499994, 28.924837801000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985134597999945, 28.909304409000072 ], [ -81.985004014999959, 28.909285458000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985114563999957, 28.90945675200004 ], [ -81.985134597999945, 28.909304409000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985004014999959, 28.909285458000056 ], [ -81.984990696999944, 28.909445658000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997032931999968, 28.865309198000034 ], [ -81.997031285999981, 28.865476529000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997243134999962, 28.865479699000048 ], [ -81.997241232999954, 28.865309203000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017478465999943, 28.839689840000062 ], [ -82.017430827999988, 28.839864457000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017563583999959, 28.839909512000077 ], [ -82.017611251999938, 28.839733240000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962973036999983, 28.865273783000077 ], [ -81.962975946999961, 28.865433401000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963200881999967, 28.865435713000068 ], [ -81.963196227999958, 28.86527661100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980010368999956, 28.812475606000078 ], [ -81.979919715999984, 28.812772246000065 ], [ -81.979847354999947, 28.812976115000026 ], [ -81.979645506999987, 28.81350203900007 ], [ -81.979420111999957, 28.814082459000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979547104999938, 28.814167359000066 ], [ -81.97957073799995, 28.814107091000039 ], [ -81.979785417999949, 28.813545186000056 ], [ -81.979909219999968, 28.813225272000068 ], [ -81.980023777999975, 28.812918941000078 ], [ -81.980093211999986, 28.812706570000046 ], [ -81.980150232999961, 28.812499807000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96319479899995, 28.866897945000062 ], [ -81.962982604999979, 28.866894119000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962980038999945, 28.867009749000033 ], [ -81.963194757999986, 28.867012773000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963195008999946, 28.866302700000062 ], [ -81.963195031999987, 28.866235973000073 ], [ -81.963200881999967, 28.865435713000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963194757999986, 28.867012773000056 ], [ -81.96319479899995, 28.866897945000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968718430999957, 28.920043294000038 ], [ -81.968721749999986, 28.92016678300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968850459999942, 28.920167493000065 ], [ -81.968851142999938, 28.920043325000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016513745999987, 28.843611638000027 ], [ -82.016551927999956, 28.843620629000043 ], [ -82.016591289999951, 28.843624778000049 ], [ -82.01663092299998, 28.84362397600006 ], [ -82.016670025999986, 28.843618238000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010670009999956, 28.847877972000049 ], [ -82.010670049999987, 28.847877974000028 ], [ -82.010707001999947, 28.847875797000029 ], [ -82.010743294999941, 28.847869310000078 ], [ -82.010778284999958, 28.84785862800004 ], [ -82.010811349999983, 28.847843942000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004525354999942, 28.849182499000051 ], [ -82.004569750999963, 28.849192337000034 ], [ -82.004615117999947, 28.849195627000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999350828, 28.853988229000038 ], [ -81.999351841999953, 28.853988294000033 ], [ -81.999394097999982, 28.853985435000027 ], [ -81.999435361999986, 28.85397692600003 ], [ -81.999474665999969, 28.853962967000029 ], [ -81.999511084999938, 28.853943885000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998844709999958, 28.860725363000029 ], [ -81.998844804999976, 28.86072518800006 ], [ -81.998858060999964, 28.86068662100007 ], [ -81.998863940999968, 28.860646660000043 ], [ -81.998862283999983, 28.860606393000069 ], [ -81.998862162999956, 28.860605865000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982782509999936, 28.881933931000049 ], [ -81.98278346099994, 28.881933072000038 ], [ -81.982802016999983, 28.881916573000069 ], [ -81.982828778999988, 28.881882885000039 ], [ -81.982848704999981, 28.881845760000033 ], [ -81.982861209999953, 28.881805882000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982796242999939, 28.88159982600007 ], [ -81.982796015999952, 28.881599607000055 ], [ -81.982776488999946, 28.881581041000061 ], [ -81.982739581999965, 28.881555597000045 ], [ -81.982698181999979, 28.881536340000025 ], [ -81.982661229999962, 28.881525446000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982318430999953, 28.881811567000057 ], [ -81.982320233999985, 28.881820940000068 ], [ -81.982335460999934, 28.881859789000032 ], [ -81.982358108999961, 28.881895889000077 ], [ -81.982386911999981, 28.881927884000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000563593999971, 28.853939260000061 ], [ -82.000514377999934, 28.853862754000033 ], [ -82.000337103999982, 28.85376866200005 ], [ -82.000249462999989, 28.853739135000069 ], [ -82.000191347999987, 28.853724607000061 ], [ -82.000132294999958, 28.853715702000045 ], [ -82.000113031999945, 28.853713898000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999623951999979, 28.853784599000051 ], [ -81.999624395999945, 28.853762537000023 ], [ -81.999624670999935, 28.853744099000039 ], [ -81.999624670999935, 28.853731990000028 ], [ -81.999623845999963, 28.853712726000026 ], [ -81.999623043999975, 28.853700153000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999102790999984, 28.853639159000068 ], [ -81.99903913199995, 28.853635459000031 ], [ -81.999014147999958, 28.853641407000055 ], [ -81.998968937999962, 28.853654494000068 ], [ -81.998866620999934, 28.853693755000052 ], [ -81.998820221999949, 28.853727068000069 ], [ -81.998756881999952, 28.853786188000072 ], [ -81.998719714999936, 28.853816167000048 ], [ -81.998706915999946, 28.853827249000062 ], [ -81.998700203999988, 28.853833961000078 ], [ -81.998696457999984, 28.853838956000061 ], [ -81.998694255999965, 28.853842618000044 ], [ -81.998693600999957, 28.853843661000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998693600999957, 28.853843661000042 ], [ -81.998707071999945, 28.85384332600006 ], [ -81.998719714999936, 28.853842233000023 ], [ -81.998741674999962, 28.853837456000065 ], [ -81.998772943999938, 28.853821821000054 ], [ -81.998827664999965, 28.853788319000046 ], [ -81.998879035999948, 28.85377156800007 ], [ -81.998904720999974, 28.853772684000035 ], [ -81.998973957999965, 28.85378496900006 ], [ -81.999037613999974, 28.853810654000029 ], [ -81.999097680999967, 28.853839191000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999097680999967, 28.853839191000077 ], [ -81.999097789999951, 28.853839397000058 ], [ -81.999111269999958, 28.853864932000079 ], [ -81.999136395999983, 28.853897483000026 ], [ -81.999167148999959, 28.853926045000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99922689899995, 28.853527566000025 ], [ -81.999188780999987, 28.853548124000042 ], [ -81.999154921999946, 28.853573820000065 ], [ -81.999126206999961, 28.853603981000049 ], [ -81.999103386999934, 28.853637822000053 ], [ -81.999102790999984, 28.853639159000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069659935999937, 28.60929800200006 ], [ -82.069962198999974, 28.609276787000056 ], [ -82.070178729999952, 28.609262511000054 ], [ -82.07030008299995, 28.609255372000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070344078999938, 28.608984906000046 ], [ -82.07035254699997, 28.608554703000038 ], [ -82.070352545999981, 28.608554692000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069640533999973, 28.607994634000079 ], [ -82.069641410999964, 28.607984445000056 ], [ -82.069660598999974, 28.60785555700005 ], [ -82.06968835899994, 28.607577953000032 ], [ -82.069672495999953, 28.607423288000064 ], [ -82.069656632999965, 28.607236897000064 ], [ -82.069665967999981, 28.607179020000046 ], [ -82.069665986999951, 28.60717889700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070582362999971, 28.607062405000079 ], [ -82.070582362999971, 28.606919637000033 ], [ -82.07057522499997, 28.606774490000078 ], [ -82.070573819999936, 28.606718456000067 ], [ -82.070561167999983, 28.606680205000032 ], [ -82.07054495899996, 28.606650234000028 ], [ -82.070531331999973, 28.606628015000069 ], [ -82.070521735999989, 28.606617382000024 ], [ -82.07051525199995, 28.60661297300004 ], [ -82.070505915999945, 28.606610899000032 ], [ -82.07042531899998, 28.606605548000061 ], [ -82.070204028999967, 28.606596030000048 ], [ -82.069989876999955, 28.606584133000069 ], [ -82.069710069999985, 28.606592259000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069710069999985, 28.606592259000024 ], [ -82.069647032999967, 28.606572270000072 ], [ -82.069609745999969, 28.606551555000067 ], [ -82.069566934999955, 28.60653912600003 ], [ -82.069515837999973, 28.606534983000074 ], [ -82.069308688999968, 28.606541888000038 ], [ -82.069120873999964, 28.606543269000042 ], [ -82.068931676999966, 28.606559841000035 ], [ -82.068764576999968, 28.606569508000064 ], [ -82.068719003999945, 28.60658055600004 ], [ -82.068677573999935, 28.606598509000037 ], [ -82.068648572999962, 28.606627509000077 ], [ -82.068633381999973, 28.606666177000079 ], [ -82.068627857999957, 28.606713131000049 ], [ -82.068637524999986, 28.606761466000023 ], [ -82.068649953999966, 28.606800134000025 ], [ -82.068657901999984, 28.60681392500004 ], [ -82.068666658999973, 28.606825727000057 ], [ -82.068679412999984, 28.606840194000029 ], [ -82.068692356999975, 28.606851188000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068635119999954, 28.607377772000063 ], [ -82.068636835999939, 28.607341039000062 ], [ -82.068655871999965, 28.607122129000061 ], [ -82.068660630999943, 28.606962705000058 ], [ -82.068663208999965, 28.606919002000041 ], [ -82.068676133999986, 28.606877084000075 ], [ -82.068692356999975, 28.606851188000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068692356999975, 28.606851188000064 ], [ -82.068723164999938, 28.606836456000053 ], [ -82.068815963999953, 28.606808498000078 ], [ -82.068964680999954, 28.606787082000039 ], [ -82.06917466799996, 28.606749606000051 ], [ -82.069234154999947, 28.606741278000072 ], [ -82.069296917999964, 28.606730281000068 ], [ -82.069351686999937, 28.606718628000067 ], [ -82.06938897699996, 28.606713967000076 ], [ -82.069418109999958, 28.606716297000048 ], [ -82.069456564999939, 28.606724455000062 ], [ -82.06950900399994, 28.606736108000064 ], [ -82.06957076499998, 28.606764075000058 ], [ -82.069626699999958, 28.606806026000072 ], [ -82.069659329, 28.606846812000072 ], [ -82.069676761999972, 28.606869619000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069676761999972, 28.606869619000065 ], [ -82.069676769999944, 28.606869556000049 ], [ -82.069710069999985, 28.606592259000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069659935999937, 28.60929800200006 ], [ -82.068960482999955, 28.609307440000066 ], [ -82.068726840999943, 28.609310932000028 ], [ -82.068693011999983, 28.609311598000033 ], [ -82.068686413999956, 28.609310420000043 ], [ -82.06868013199994, 28.609308135000049 ], [ -82.068672527999979, 28.609304095000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068672527999979, 28.609304095000027 ], [ -82.068396144999952, 28.609316311000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069616974999974, 28.60873947500005 ], [ -82.06950137299998, 28.608710855000027 ], [ -82.069442837999986, 28.608699434000073 ], [ -82.069265805999976, 28.608706572000074 ], [ -82.068998830999988, 28.608722277000027 ], [ -82.068921735999936, 28.608726560000036 ], [ -82.068757552999955, 28.608715138000036 ], [ -82.06866475399994, 28.608700862000035 ], [ -82.068631859999982, 28.608693982000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069659935999937, 28.60929800200006 ], [ -82.069637156999988, 28.609172416000035 ], [ -82.069627668999942, 28.609118072000058 ], [ -82.069613009999955, 28.608993733000034 ], [ -82.069616974999974, 28.608846999000036 ], [ -82.069616974999974, 28.608740427000043 ], [ -82.069616974999974, 28.60873947500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068672527999979, 28.609304095000027 ], [ -82.068643974999986, 28.609285059000058 ], [ -82.06862493899996, 28.609268403000044 ], [ -82.068614399999944, 28.609255537000024 ], [ -82.068606466999938, 28.609242431000041 ], [ -82.068604569999934, 28.609232083000052 ], [ -82.068603523999968, 28.609216055000047 ], [ -82.068598765, 28.609151809000025 ], [ -82.06862493899996, 28.608966211000052 ], [ -82.068631859999982, 28.608693982000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069651419999957, 28.60836219600003 ], [ -82.069576343999984, 28.608355029000052 ], [ -82.069489493999981, 28.608339563000072 ], [ -82.069381228999987, 28.608328855000025 ], [ -82.069221804999984, 28.608321717000024 ], [ -82.069056431999968, 28.608328855000025 ], [ -82.068918422999957, 28.608325286000024 ], [ -82.068801829999984, 28.608331235000037 ], [ -82.068718548999982, 28.608341942000038 ], [ -82.068657518999942, 28.608370533000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069616974999974, 28.60873947500005 ], [ -82.069616974999974, 28.608664574000045 ], [ -82.069644735999987, 28.608450422000033 ], [ -82.069651413999964, 28.608362279000062 ], [ -82.069651419999957, 28.60836219600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068631859999982, 28.608693982000034 ], [ -82.068632076999961, 28.608685435000041 ], [ -82.068655871999965, 28.608457006000037 ], [ -82.068657518999942, 28.608370533000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069181726999943, 28.607943756000054 ], [ -82.069079411999951, 28.607937837000065 ], [ -82.068801490999988, 28.607920705000026 ], [ -82.068635849999964, 28.607911289000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069651419999957, 28.60836219600003 ], [ -82.069664564999982, 28.608188682000048 ], [ -82.069639719999941, 28.608094399000038 ], [ -82.06963680399997, 28.608037982000042 ], [ -82.069640530999948, 28.607994667000071 ], [ -82.069640533999973, 28.607994634000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068657518999942, 28.608370533000027 ], [ -82.068657520999977, 28.608370422000064 ], [ -82.068660630999943, 28.608207163000031 ], [ -82.068653491999953, 28.608014427000057 ], [ -82.068635849999964, 28.607911289000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069138429999953, 28.60766058400003 ], [ -82.068974674999936, 28.607674135000025 ], [ -82.068926549999958, 28.607680623000078 ], [ -82.068878425999969, 28.607694142000071 ], [ -82.068847062999964, 28.607700090000037 ], [ -82.068802182999946, 28.607708200000047 ], [ -82.068744865999975, 28.607715230000053 ], [ -82.068698362999953, 28.607720637000057 ], [ -82.068663215999948, 28.60772225900007 ], [ -82.068623687999946, 28.607720738000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068635849999964, 28.607911289000072 ], [ -82.068635847999985, 28.607911278000074 ], [ -82.068622558999948, 28.607833588000062 ], [ -82.068623687999946, 28.607720738000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069665986999951, 28.60717889700004 ], [ -82.069504647999963, 28.60717485300006 ], [ -82.069382819999987, 28.60717485300006 ], [ -82.06929906299996, 28.607180564000032 ], [ -82.069148680999945, 28.607228153000051 ], [ -82.069040176999977, 28.607292874000052 ], [ -82.069009190999964, 28.607304351000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069665986999951, 28.60717889700004 ], [ -82.069669230999978, 28.607114729000045 ], [ -82.069664564999982, 28.606971191000071 ], [ -82.069676761999972, 28.606869619000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068623687999946, 28.607720738000069 ], [ -82.06862493899996, 28.607595642000035 ], [ -82.06863511499995, 28.607377873000075 ], [ -82.068635119999954, 28.607377772000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069640533999973, 28.607994634000079 ], [ -82.069420150999974, 28.607964487000061 ], [ -82.069309743999952, 28.607951162000063 ], [ -82.069181772999968, 28.607943759000079 ], [ -82.069181726999943, 28.607943756000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069009190999964, 28.607304351000039 ], [ -82.069009177999988, 28.607304356000043 ], [ -82.068988780999973, 28.607311910000078 ], [ -82.068859337999982, 28.60733665600003 ], [ -82.068748930999959, 28.60735949900004 ], [ -82.068635119999954, 28.607377772000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069181726999943, 28.607943756000054 ], [ -82.069162587999983, 28.607824566000033 ], [ -82.069138527999939, 28.607661252000071 ], [ -82.069138429999953, 28.60766058400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013718797999957, 28.84429564900006 ], [ -82.013813397999968, 28.844386493000059 ], [ -82.01441751699997, 28.844803632000037 ], [ -82.014418575999969, 28.844804363000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014418531, 28.844707791000076 ], [ -82.014123927999947, 28.844523425000034 ], [ -82.013844512999981, 28.844349272000045 ], [ -82.013718797999957, 28.84429564900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010648910999976, 28.858206109000037 ], [ -82.01064803099996, 28.858161396000071 ], [ -82.010644084999967, 28.857988172000034 ], [ -82.010647992999964, 28.857788957000025 ], [ -82.010664507999934, 28.857657111000037 ], [ -82.010679642999946, 28.857582938000064 ], [ -82.010697897999989, 28.857485170000075 ], [ -82.010723456999983, 28.857389626000042 ], [ -82.010769809999942, 28.857241694000038 ], [ -82.010864024999989, 28.857038006000039 ], [ -82.010942529999966, 28.856897738000043 ], [ -82.011063384999943, 28.856718160000071 ], [ -82.011150856999961, 28.856612754000025 ], [ -82.01123494999996, 28.85651811200006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024495814999966, 28.847458429000028 ], [ -82.02438835199996, 28.847361960000057 ], [ -82.024333240999965, 28.847301103000063 ], [ -82.024285643999974, 28.847243268000057 ], [ -82.024232544999961, 28.847189273000026 ], [ -82.024171559999957, 28.847141449000048 ], [ -82.024152048999952, 28.847127172000057 ], [ -82.024124922999988, 28.847119558000031 ], [ -82.024092293999956, 28.847120723000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024092293999956, 28.847120723000046 ], [ -82.024092448999966, 28.847133580000047 ], [ -82.024092448999966, 28.847140719000038 ], [ -82.024093935999986, 28.847149047000073 ], [ -82.024101966999979, 28.847158862000072 ], [ -82.024174837999965, 28.847223108000037 ], [ -82.024212016999968, 28.847257610000042 ], [ -82.024303014999987, 28.847382190000076 ], [ -82.024340739999957, 28.84748178500007 ], [ -82.024361057999954, 28.847518118000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025160826999979, 28.847978786000056 ], [ -82.025188403999948, 28.847977150000077 ], [ -82.025251351999941, 28.847966835000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025160826999979, 28.847978786000056 ], [ -82.025151496999968, 28.847962462000055 ], [ -82.025142993999964, 28.847954705000063 ], [ -82.025131553999984, 28.847948985000073 ], [ -82.025029237999945, 28.847931282000047 ], [ -82.024954998999988, 28.847909867000055 ], [ -82.024876476999964, 28.847875603000034 ], [ -82.024811233999969, 28.847841109000058 ], [ -82.024801554999954, 28.847835122000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024361057999954, 28.847518118000039 ], [ -82.024406023999973, 28.847639319000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024537995999935, 28.847581500000047 ], [ -82.024495814999966, 28.847458429000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024495814999966, 28.847458429000028 ], [ -82.024361057999954, 28.847518118000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024406023999973, 28.847639319000052 ], [ -82.024537995999935, 28.847581500000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071155371999964, 28.607150341000079 ], [ -82.071118251999962, 28.607116077000057 ], [ -82.07108541599996, 28.607096089000038 ], [ -82.071019742999965, 28.607081813000036 ], [ -82.070951214, 28.607070391000036 ], [ -82.070799879999981, 28.607067536000045 ], [ -82.070665678999944, 28.607066108000026 ], [ -82.070582362999971, 28.607062405000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070582362999971, 28.607062405000079 ], [ -82.070385853999937, 28.607053259000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070385853999937, 28.607053259000054 ], [ -82.069960806999973, 28.607052021000072 ], [ -82.069877719999965, 28.607046986000057 ], [ -82.069828623999967, 28.607053280000059 ], [ -82.069792115999974, 28.607065869000053 ], [ -82.06973168899998, 28.607097341000042 ], [ -82.069691404999958, 28.607130073000064 ], [ -82.069665986999951, 28.60717889700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071170750999954, 28.607370943000035 ], [ -82.070376057999965, 28.60736031600004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070376057999965, 28.60736031600004 ], [ -82.070379146999983, 28.607203431000073 ], [ -82.070385853999937, 28.607053259000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071174650999978, 28.607741485000076 ], [ -82.07036839899996, 28.60774942200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07036839899996, 28.60774942200004 ], [ -82.070376057999965, 28.60736031600004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070361459999958, 28.608101919000035 ], [ -82.07036839899996, 28.60774942200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071183262999966, 28.608561820000034 ], [ -82.070352545999981, 28.608554692000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070352545999981, 28.608554692000041 ], [ -82.070361459999958, 28.608101932000068 ], [ -82.070361459999958, 28.608101919000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071187656999939, 28.608991388000049 ], [ -82.070344078999938, 28.608984906000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070333930999936, 28.609223747000044 ], [ -82.070337538, 28.609219264000046 ], [ -82.070347023999943, 28.609198609000032 ], [ -82.070343454999943, 28.609016580000059 ], [ -82.070344077999948, 28.608984934000034 ], [ -82.070344078999938, 28.608984906000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071189935999939, 28.609652037000046 ], [ -82.070936977999963, 28.60965492400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070333930999936, 28.609223747000044 ], [ -82.070428533999973, 28.609280831000035 ], [ -82.070442481999976, 28.609290793000071 ], [ -82.070451779999985, 28.609301088000052 ], [ -82.070466634999946, 28.609321364000039 ], [ -82.070470376999936, 28.609329979000051 ], [ -82.070495188999985, 28.609427964000076 ], [ -82.070516127999952, 28.609595478000074 ], [ -82.070527548999962, 28.609740149000061 ], [ -82.070529452999949, 28.609856267000055 ], [ -82.070550391999973, 28.609911470000043 ], [ -82.070584655999937, 28.609943831000066 ], [ -82.070655087999967, 28.609970481000062 ], [ -82.070752169999935, 28.609978095000031 ], [ -82.070893033999937, 28.609981902000072 ], [ -82.071059948999959, 28.60996958800007 ], [ -82.071102569999937, 28.609956648000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07030008299995, 28.609255372000064 ], [ -82.070313315999954, 28.609247261000064 ], [ -82.070323696999935, 28.609235307000063 ], [ -82.070333930999936, 28.609223747000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071174650999978, 28.607741485000076 ], [ -82.071170750999954, 28.607370985000045 ], [ -82.071170750999954, 28.607370943000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071102569999937, 28.609956648000036 ], [ -82.071146803999966, 28.609923964000075 ], [ -82.071168579999949, 28.609891301000062 ], [ -82.071180747999961, 28.609861839000075 ], [ -82.07118907499995, 28.609708768000075 ], [ -82.071189931999982, 28.609652319000077 ], [ -82.071189935999939, 28.609652037000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071189935999939, 28.609652037000046 ], [ -82.071192613999983, 28.609475990000078 ], [ -82.071187656999939, 28.608991388000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071187656999939, 28.608991388000049 ], [ -82.07118326899996, 28.608562415000051 ], [ -82.071183262999966, 28.608561820000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071183262999966, 28.608561820000034 ], [ -82.07118246899995, 28.608484238000074 ], [ -82.071178389999943, 28.608096722000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071178389999943, 28.608096722000028 ], [ -82.071174652999957, 28.607741674000067 ], [ -82.071174650999978, 28.607741485000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071170750999954, 28.607370943000035 ], [ -82.071169069999939, 28.607211229000029 ], [ -82.071155371999964, 28.607150341000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965323154999965, 28.844486515000028 ], [ -81.965323172999945, 28.844486776000053 ], [ -81.965328720999935, 28.844568183000035 ], [ -81.965418172999989, 28.845178695000072 ], [ -81.965495528999952, 28.845738614000027 ], [ -81.965571421999982, 28.846238055000072 ], [ -81.965586877999954, 28.846436503000064 ], [ -81.965589764999947, 28.846596867000073 ], [ -81.965584772999989, 28.846689499000036 ], [ -81.965580767999938, 28.846789158000036 ], [ -81.965561155999978, 28.846910656000034 ], [ -81.965540290999968, 28.847032884000043 ], [ -81.965513346999956, 28.847171153000033 ], [ -81.965484940999943, 28.847267786000032 ], [ -81.965476253999952, 28.847300252000025 ], [ -81.965471039999954, 28.847328517000051 ], [ -81.965471892999972, 28.847368244000052 ], [ -81.965481807999936, 28.847412278000036 ], [ -81.965497457999959, 28.847463744000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965766200999951, 28.84233174700006 ], [ -81.965766192999979, 28.842331760000036 ], [ -81.965755974, 28.84234920800003 ], [ -81.965584585999977, 28.84272750100007 ], [ -81.96548626699996, 28.843007100000079 ], [ -81.965412606999962, 28.843277242000056 ], [ -81.965357420999965, 28.843556984000031 ], [ -81.965327882999986, 28.843784368000058 ], [ -81.965311528999962, 28.844018735000077 ], [ -81.965310759999966, 28.844304660000034 ], [ -81.965323154999965, 28.844486515000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016449304999981, 28.858199075000073 ], [ -82.015933762999964, 28.858192183000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977870241999938, 28.654282205000072 ], [ -81.977867861999982, 28.654044259000045 ], [ -81.977853585999981, 28.653958599000077 ], [ -81.977825031999942, 28.653908630000046 ], [ -81.977772683999945, 28.653856282000049 ], [ -81.977706058999956, 28.653825349000044 ], [ -81.977656089999982, 28.653808692000041 ], [ -81.977563290999967, 28.653803934000052 ], [ -81.977289652999957, 28.653811072000053 ], [ -81.976173685999981, 28.653822969000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977870241999938, 28.654282205000072 ], [ -81.976129201999981, 28.654278215000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977866052999957, 28.65454145700005 ], [ -81.977870241999938, 28.654282205000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977866052999957, 28.65454145700005 ], [ -81.97627532599995, 28.654541453000036 ], [ -81.976237254999944, 28.654533839000067 ], [ -81.976168725999969, 28.654524321000054 ], [ -81.976084968999942, 28.654497671000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954695421999986, 28.863871384000049 ], [ -81.954657876999988, 28.863879261000079 ], [ -81.95460290699998, 28.863925642000027 ], [ -81.954547937999962, 28.863990059000059 ], [ -81.954466267999976, 28.864074151000068 ], [ -81.954432259999976, 28.864106360000051 ], [ -81.95439774, 28.864146249000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95448423299996, 28.864202464000073 ], [ -81.954594909999969, 28.86405015400004 ], [ -81.95468182999997, 28.863953576000029 ], [ -81.954693243999941, 28.863943040000038 ], [ -81.954700267999954, 28.863925481000024 ], [ -81.954695421999986, 28.863871384000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95439774, 28.864146249000044 ], [ -81.954296116999956, 28.864235090000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954389782999954, 28.864296739000054 ], [ -81.95448423299996, 28.864202464000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95448423299996, 28.864202464000073 ], [ -81.95439774, 28.864146249000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957312637999962, 28.865351620000069 ], [ -81.957292729999949, 28.865220755000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957292729999949, 28.865220755000053 ], [ -81.957188541999983, 28.865334010000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977864846999978, 28.654788065000048 ], [ -81.976021412999955, 28.654765184000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977864846999978, 28.654788065000048 ], [ -81.977866052999957, 28.65454145700005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977863739999975, 28.655021328000032 ], [ -81.976150527999948, 28.654996581000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977863739999975, 28.655021328000032 ], [ -81.977864846999978, 28.654788065000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976150527999948, 28.654996581000034 ], [ -81.976283776999935, 28.655074627000033 ], [ -81.976457001999961, 28.655171709000058 ], [ -81.97650459099998, 28.655198359000053 ], [ -81.97655789099997, 28.655217395000079 ], [ -81.976687333999962, 28.655230720000077 ], [ -81.97703187999997, 28.655245949000062 ], [ -81.977345968999941, 28.655247852000059 ], [ -81.977639117999956, 28.655253563000031 ], [ -81.977709550999975, 28.655253563000031 ], [ -81.977747621999981, 28.655242141000031 ], [ -81.977776174999974, 28.655226913000035 ], [ -81.977795210999943, 28.655205974000069 ], [ -81.977821860999939, 28.655181227000071 ], [ -81.97783708999998, 28.655148867000037 ], [ -81.977852317999975, 28.655097470000044 ], [ -81.977863739999975, 28.655021328000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976150527999948, 28.654996581000034 ], [ -81.976047217999962, 28.654922 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976021412999955, 28.654765184000041 ], [ -81.976084968999942, 28.654497671000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976084968999942, 28.654497671000058 ], [ -81.976129201999981, 28.654278215000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976129201999981, 28.654278215000033 ], [ -81.976173685999981, 28.653822969000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976173685999981, 28.653822969000032 ], [ -81.976154329999986, 28.653795888000047 ], [ -81.976147051999988, 28.653783318000023 ], [ -81.976139498999942, 28.653746453000053 ], [ -81.976141819999953, 28.653466942000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976084968999942, 28.654497671000058 ], [ -81.976034716999948, 28.654499527000041 ], [ -81.975991619999945, 28.654512787000044 ], [ -81.975949627999967, 28.654537098000048 ], [ -81.975906530999964, 28.654596771000058 ], [ -81.975867855, 28.654671914000062 ], [ -81.975849068999935, 28.654728272000057 ], [ -81.975848560999964, 28.654732460000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976047217999962, 28.654922 ], [ -81.976028884999948, 28.654891334000069 ], [ -81.976018176999958, 28.654847314000051 ], [ -81.976015797999935, 28.654800914000077 ], [ -81.976021412999955, 28.654765184000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976047217999962, 28.654922 ], [ -81.975924179999936, 28.654846618000079 ], [ -81.975728303999972, 28.654790653000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975848560999964, 28.654732460000048 ], [ -81.975799878999965, 28.654764718000024 ], [ -81.975768350999942, 28.654777210000077 ], [ -81.975728303999972, 28.654790653000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975848560999964, 28.654732460000048 ], [ -81.975844648999953, 28.65476473800004 ], [ -81.97585238399995, 28.654782419000071 ], [ -81.975862328999938, 28.65479678500003 ], [ -81.975880009999969, 28.65480341500006 ], [ -81.975901005999958, 28.654807835000042 ], [ -81.975927526999953, 28.654806730000075 ], [ -81.975979464999966, 28.654784629000062 ], [ -81.976021412999955, 28.654765184000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975728303999972, 28.654790653000077 ], [ -81.975606294999977, 28.654758818000062 ], [ -81.975450657999943, 28.654719291000049 ], [ -81.975353075999976, 28.654684705000079 ], [ -81.975254258999939, 28.65464023800007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975254258999939, 28.65464023800007 ], [ -81.975122963, 28.654602306000072 ], [ -81.975054376999935, 28.654578583000045 ], [ -81.974962937999976, 28.654534084000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974962937999976, 28.654534084000034 ], [ -81.974865980999937, 28.654489519000037 ], [ -81.97476318799994, 28.654436695000072 ], [ -81.974737489999939, 28.654412425000032 ], [ -81.974716074999947, 28.654381016000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975130977999981, 28.653820255000028 ], [ -81.975000757999965, 28.65382227200007 ], [ -81.974961311999948, 28.653826216000027 ], [ -81.974896226999988, 28.653849883000078 ], [ -81.974858753999968, 28.653877495000074 ], [ -81.974819307999951, 28.653912996000031 ], [ -81.974787751999941, 28.653960331000064 ], [ -81.974768028999961, 28.654009638000048 ], [ -81.974730554999951, 28.654112197000075 ], [ -81.974708859999964, 28.654195033000065 ], [ -81.974702943999944, 28.654258146000075 ], [ -81.974700970999947, 28.654323231000035 ], [ -81.974716074999947, 28.654381016000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975466215999973, 28.653820299000074 ], [ -81.975130977999981, 28.653820255000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976173685999981, 28.653822969000032 ], [ -81.975466215999973, 28.653820299000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975254258999939, 28.65464023800007 ], [ -81.975258532999987, 28.654534833000071 ], [ -81.975272783999969, 28.654378068000028 ], [ -81.975301286999979, 28.654233519000059 ], [ -81.97534200399997, 28.654088970000032 ], [ -81.975384758999951, 28.65397088800006 ], [ -81.975421404999963, 28.653891487000067 ], [ -81.975466215999973, 28.653820299000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974962937999976, 28.654534084000034 ], [ -81.974972966999985, 28.654412401000059 ], [ -81.975012941999978, 28.654212526000038 ], [ -81.975075759999982, 28.653984098000024 ], [ -81.975130977999981, 28.653820255000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961519192999958, 28.880906150000044 ], [ -81.961492662999945, 28.880666339000072 ], [ -81.961459910999963, 28.880393825000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967167877999941, 28.871570598000062 ], [ -81.967452312999967, 28.871415703000025 ], [ -81.967538827999988, 28.871362935000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020285111999954, 28.931011941000065 ], [ -82.020494628999984, 28.931012621000036 ], [ -82.020511032999934, 28.931013133000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965178865999974, 28.844438556000057 ], [ -81.965222205999964, 28.844789026000058 ], [ -81.965285387999984, 28.845243484000036 ], [ -81.965369803999977, 28.845796420000056 ], [ -81.965440359999945, 28.846307829000068 ], [ -81.965452466999977, 28.846430066000039 ], [ -81.965452428999981, 28.846546187000058 ], [ -81.965448899999956, 28.846721896000076 ], [ -81.965432796999949, 28.846845540000061 ], [ -81.965406515999973, 28.847048893000078 ], [ -81.965372634999937, 28.847168061000048 ], [ -81.965353093999965, 28.847223061000079 ], [ -81.965343105999978, 28.847251707000055 ], [ -81.96532921499994, 28.847278442000061 ], [ -81.965304905999972, 28.847313577000079 ], [ -81.965280168999982, 28.847337635000031 ], [ -81.965252827999961, 28.847361693000039 ], [ -81.965221260999954, 28.847379829000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96564568499997, 28.842285519000029 ], [ -81.965573525999957, 28.842433072000063 ], [ -81.965409942999941, 28.842803852000031 ], [ -81.965323423999962, 28.843080844000042 ], [ -81.965255655999954, 28.843352796000033 ], [ -81.965208707999977, 28.843633920000059 ], [ -81.96518260299996, 28.843858516000068 ], [ -81.965172109999969, 28.844102981000049 ], [ -81.965178865999974, 28.844438556000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965255235999962, 28.838880087000064 ], [ -81.965536351999958, 28.839390983000044 ], [ -81.965668150999988, 28.839637011000036 ], [ -81.965772197999968, 28.839849418000028 ], [ -81.965876227999956, 28.840113774000031 ], [ -81.965949018999936, 28.840391873000044 ], [ -81.965985381999985, 28.840631765000069 ], [ -81.966004397999939, 28.840856373000065 ], [ -81.966000866999934, 28.841038194000078 ], [ -81.965995616999976, 28.841175705000069 ], [ -81.96596778299994, 28.841389607000053 ], [ -81.965886112999954, 28.841727255000023 ], [ -81.965847895999957, 28.84185100600007 ], [ -81.965779973999986, 28.842010924000078 ], [ -81.96564568499997, 28.842285519000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017376421999984, 28.677325796000048 ], [ -82.017222557999958, 28.677323254000044 ], [ -82.015843584999971, 28.677285020000056 ], [ -82.015286191999962, 28.677285084000061 ], [ -82.014275917999953, 28.677272393000067 ], [ -82.013236746999951, 28.677267408000034 ], [ -82.013233771999978, 28.677267393000079 ], [ -82.01323317799995, 28.677267390000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015325575999952, 28.671697556000026 ], [ -82.010337675999949, 28.671730561000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992767620999985, 28.879308639000044 ], [ -81.992687975999957, 28.87914214400007 ], [ -81.992636036999954, 28.879004629000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011620825999955, 28.787496685000065 ], [ -82.011628969999947, 28.786827022000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004432090999956, 28.792371212000035 ], [ -82.004432682999948, 28.792235181000024 ], [ -82.004436851999969, 28.790812923000033 ], [ -82.004441048999979, 28.789471210000045 ], [ -82.004441124999971, 28.789091166000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016316239999981, 28.787923012000078 ], [ -82.016423433999989, 28.787748601000033 ], [ -82.01644115299996, 28.787703630000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013560368999947, 28.799661151000066 ], [ -82.012607854999942, 28.799659768000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004886832999944, 28.799639698000078 ], [ -82.004338261999976, 28.799636746000033 ], [ -82.004294869999967, 28.79963673900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012193192999973, 28.78681275200006 ], [ -82.012225797999974, 28.78682402000004 ], [ -82.012273839999978, 28.786865822000038 ], [ -82.012308191999978, 28.786911869000051 ], [ -82.012332822999952, 28.786977356000079 ], [ -82.012342893999971, 28.787034099000039 ], [ -82.012342918999934, 28.787248009000052 ], [ -82.012340465999955, 28.787523909000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013264622999941, 28.787567165000041 ], [ -82.013297128999966, 28.787580874000071 ], [ -82.013376119999975, 28.78759485300003 ], [ -82.013461899999982, 28.787603777000072 ], [ -82.014402822999955, 28.787634238000066 ], [ -82.014532429999974, 28.787640749000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054703784999958, 28.555171420000079 ], [ -82.054702567999982, 28.554879656000026 ], [ -82.05470513399996, 28.554684205000058 ], [ -82.054713056999958, 28.554533493000065 ], [ -82.054718351999952, 28.554455780000069 ], [ -82.054733356999975, 28.554331264000041 ], [ -82.054746628999965, 28.554210573000034 ], [ -82.05476323299996, 28.554083993000063 ], [ -82.054779814999961, 28.553916205000064 ], [ -82.054789733999939, 28.553757250000046 ], [ -82.054796328999942, 28.553615958000023 ], [ -82.054802890999952, 28.553412851000076 ], [ -82.054802790999986, 28.553218577000052 ], [ -82.054802729999949, 28.553100835000066 ], [ -82.054799332999949, 28.552980152000032 ], [ -82.054799202999959, 28.55272995200005 ], [ -82.054802314999961, 28.552300194000054 ], [ -82.054802090999942, 28.551867493000032 ], [ -82.054801834999978, 28.551372978000074 ], [ -82.054794881999953, 28.550819595000064 ], [ -82.054777620999971, 28.549677508000059 ], [ -82.054743645999963, 28.548444179000057 ], [ -82.054726726999945, 28.547958502000029 ], [ -82.054689417999953, 28.546719285000052 ], [ -82.054645387999983, 28.545377048000034 ], [ -82.054628401999935, 28.544761854000058 ], [ -82.054614749999985, 28.544143716000065 ], [ -82.054611183999953, 28.543693356000063 ], [ -82.054607665999981, 28.54333424500004 ], [ -82.054604137999945, 28.542957472000069 ], [ -82.054603977999989, 28.542648400000076 ], [ -82.054600429999937, 28.542233362000047 ], [ -82.054593613999941, 28.541941953000048 ], [ -82.05459346799995, 28.541659373000073 ], [ -82.054589902999965, 28.541211956000041 ], [ -82.054583012999956, 28.540776314000027 ], [ -82.054579388999969, 28.540214099000025 ], [ -82.054575734999958, 28.539593012000068 ], [ -82.054572125999982, 28.539057289000027 ], [ -82.054568482999969, 28.538456807000046 ], [ -82.054561643999989, 28.53812124600006 ], [ -82.054557982999938, 28.537485442000047 ], [ -82.054554275999976, 28.536758386000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099160023999957, 28.901845802000025 ], [ -82.09915842099997, 28.902110870000058 ], [ -82.099154606999946, 28.903193393000038 ], [ -82.099153475999969, 28.904550808000067 ], [ -82.099166690999937, 28.905714294000063 ], [ -82.099165805999974, 28.907331684000042 ], [ -82.09916661799997, 28.908186193000063 ], [ -82.099155235999945, 28.908951211000044 ], [ -82.099155130999975, 28.909121174000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100243194999962, 28.894486564000033 ], [ -82.100136145999954, 28.89448664400004 ], [ -82.099438820999978, 28.89448716000004 ], [ -82.098509235999984, 28.894496869000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.098093080999945, 28.890725807000024 ], [ -82.098668639999971, 28.891715555000076 ], [ -82.099161418999984, 28.892568305000054 ], [ -82.099913722999986, 28.893869192000068 ], [ -82.100251964999984, 28.89444536700006 ], [ -82.101322163999953, 28.896312188000024 ], [ -82.102383625999948, 28.898138016000075 ], [ -82.103001866999989, 28.899210978000042 ], [ -82.103483043999972, 28.900035540000033 ], [ -82.104527085999962, 28.901833183000065 ], [ -82.105206618999944, 28.903013686000065 ], [ -82.105964895999989, 28.904314532000058 ], [ -82.106524873999945, 28.905282486000033 ], [ -82.107216109999968, 28.906475779000061 ], [ -82.107927788999973, 28.90771260300005 ], [ -82.108473238999977, 28.908672874000047 ], [ -82.108706215999973, 28.909105867000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108999491999953, 28.909100675000047 ], [ -82.108653576999984, 28.908504156000049 ], [ -82.107638556999973, 28.906750076000037 ], [ -82.106576894999989, 28.904906359000051 ], [ -82.106165665999981, 28.904199601000073 ], [ -82.104929084999981, 28.902066514000069 ], [ -82.104579124999987, 28.90146986600007 ], [ -82.104051267999978, 28.90056080200003 ], [ -82.103310532999956, 28.899282987000049 ], [ -82.102356919999977, 28.89762360900005 ], [ -82.101802857999985, 28.896671004000041 ], [ -82.100755994999986, 28.894863093000026 ], [ -82.100478974999987, 28.894384224000078 ], [ -82.099916189999988, 28.893406 ], [ -82.099178470999959, 28.892133282000032 ], [ -82.098313198999961, 28.890639906000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.092833517999964, 28.880360240000073 ], [ -82.092871485999979, 28.880503680000061 ], [ -82.092959108999935, 28.880841791000023 ], [ -82.09303796599994, 28.881141480000053 ], [ -82.093087609999941, 28.881320779000077 ], [ -82.093160555999987, 28.881520556000055 ], [ -82.093248125999935, 28.881794619000061 ], [ -82.093359011999951, 28.882104532000028 ], [ -82.093499035999969, 28.88244773100007 ], [ -82.093641957999978, 28.882772992000071 ], [ -82.093828630999951, 28.883198137000079 ], [ -82.093968637999978, 28.883518277000064 ], [ -82.094169833999956, 28.883904984000026 ], [ -82.094327285999952, 28.88419949200005 ], [ -82.094496392999986, 28.884506801000043 ], [ -82.094884143999934, 28.885175186000026 ], [ -82.095516804999988, 28.88626866900006 ], [ -82.096006616999944, 28.887116310000067 ], [ -82.096630549999986, 28.888191861000053 ], [ -82.096895874999973, 28.888652811000043 ], [ -82.097312804999945, 28.889362157000051 ], [ -82.097974689999944, 28.890522217000068 ], [ -82.098092859999952, 28.890725427000064 ], [ -82.098093080999945, 28.890725807000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.098313198999961, 28.890639906000047 ], [ -82.098090880999962, 28.89025620700005 ], [ -82.097047055999951, 28.888448263000043 ], [ -82.096367713999939, 28.887272839000047 ], [ -82.095898310999985, 28.886463615000025 ], [ -82.095242324999958, 28.885331721000057 ], [ -82.094411406999939, 28.883874585000058 ], [ -82.09427726499996, 28.883605679000027 ], [ -82.094105203999959, 28.883247134000044 ], [ -82.093950620999976, 28.882903946000056 ], [ -82.093807694999953, 28.882573561000072 ], [ -82.09367055499996, 28.882204743000045 ], [ -82.093545076999987, 28.881853849000038 ], [ -82.09341956999998, 28.881469652000078 ], [ -82.093302783999945, 28.881072637000045 ], [ -82.093212255999958, 28.880742215000055 ], [ -82.093168429999935, 28.880557789000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145506650999948, 28.595643722000034 ], [ -82.145509298999968, 28.595640693000064 ], [ -82.145799051999973, 28.595051208000029 ], [ -82.146099012999969, 28.594441608000068 ], [ -82.146382840999934, 28.593850165000049 ], [ -82.146825147999948, 28.592956784000023 ], [ -82.146826227999952, 28.592955828000072 ], [ -82.146865078999951, 28.592883208000046 ], [ -82.147336052999947, 28.591908617000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131992415999946, 28.623238273000027 ], [ -82.132355771999983, 28.622494344000074 ], [ -82.132767566999973, 28.621649654000066 ], [ -82.133150314999966, 28.62086615000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090878860999965, 28.540669757000046 ], [ -82.090879048999966, 28.540681240000026 ], [ -82.090881717999935, 28.541529712000056 ], [ -82.090896033999968, 28.542376463000039 ], [ -82.090904523999939, 28.543223218000037 ], [ -82.090924642999937, 28.544045967000045 ], [ -82.090927318999945, 28.544901295000045 ], [ -82.090939644999935, 28.545691481000063 ], [ -82.090948081999954, 28.546474814000078 ], [ -82.090950536999969, 28.547073029000046 ], [ -82.090950745999976, 28.547316429000034 ], [ -82.090946966, 28.547434704000068 ], [ -82.090941234999946, 28.547542695000061 ], [ -82.090933569999947, 28.547659258000067 ], [ -82.090922010999975, 28.547762111000054 ], [ -82.090908512999988, 28.547868394000034 ], [ -82.090891124999985, 28.547964394000076 ], [ -82.090867936999985, 28.548089538000056 ], [ -82.090836980999939, 28.548211259000027 ], [ -82.090806012999963, 28.54831755400005 ], [ -82.090763410999955, 28.548440997000057 ], [ -82.090730493999956, 28.548538722000046 ], [ -82.090695627999935, 28.548627877000058 ], [ -82.090641375999951, 28.54874961400003 ], [ -82.090592943, 28.548862775000032 ], [ -82.090532862999964, 28.548979373000066 ], [ -82.090463082999975, 28.549102834000053 ], [ -82.090371974999982, 28.54925716300005 ], [ -82.090278922999971, 28.549408065000023 ], [ -82.089784566999981, 28.550195158000065 ], [ -82.08934254899998, 28.550898226000072 ], [ -82.089102154999978, 28.551285768000071 ], [ -82.088864028999978, 28.551672987000074 ], [ -82.088233603999981, 28.552669602000037 ], [ -82.087981565999939, 28.553070862000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.084619570999962, 28.533286442000076 ], [ -82.084537563999959, 28.532943116000069 ], [ -82.083684611999956, 28.529510341000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.24903444499995, 28.67269688600004 ], [ -82.249031115999969, 28.672636924000074 ], [ -82.249018602999968, 28.672267417000057 ], [ -82.249018185999944, 28.672178070000029 ], [ -82.249012708999942, 28.671004868000068 ], [ -82.24901245999996, 28.670899654000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963658451999947, 28.602546235000034 ], [ -81.963653889999989, 28.602410001000067 ], [ -81.963637627999958, 28.602200973000038 ], [ -81.963613191999968, 28.602013568000075 ], [ -81.963535750999938, 28.601588294000067 ], [ -81.96320148999996, 28.599901608000039 ], [ -81.963115868999978, 28.599523182000041 ], [ -81.962544932999947, 28.597418384000036 ], [ -81.961961260999942, 28.595264379000071 ], [ -81.961797579999939, 28.594631865000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010612461999983, 28.569002595000029 ], [ -82.008103625, 28.569779091000044 ], [ -82.006890597999984, 28.570144603000074 ], [ -82.005669118999947, 28.570517636000034 ], [ -82.005376174999981, 28.570609292000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017699736999987, 28.566129408000052 ], [ -82.017002346999959, 28.566126231000055 ], [ -82.015946088999954, 28.566123093000044 ], [ -82.015087763999986, 28.566124007000042 ], [ -82.013873633999935, 28.566123031000075 ], [ -82.013715184999967, 28.566140484000073 ], [ -82.013524656999948, 28.566184597000074 ], [ -82.013348810999958, 28.566250029000059 ], [ -82.013178666999977, 28.566330442000037 ], [ -82.01297713699995, 28.566441047000069 ], [ -82.012656260999961, 28.566641504000074 ], [ -82.012143436999963, 28.566954679000048 ], [ -82.011357423999982, 28.567443480000065 ], [ -82.010782284999948, 28.567788391000079 ], [ -82.010660066999947, 28.567845526000042 ], [ -82.010511485999984, 28.567909008000072 ], [ -82.010326955999972, 28.567961916000058 ], [ -82.010128044999988, 28.568004245000054 ], [ -82.009998630999974, 28.568023297000025 ], [ -82.009850043999961, 28.568025423000051 ], [ -82.00968947299998, 28.568016972000066 ], [ -82.00953369399997, 28.567993709000064 ], [ -82.009375516999967, 28.567953522000039 ], [ -82.009051974999977, 28.56788160900004 ], [ -82.008510340999976, 28.567752585000051 ], [ -82.008328200999983, 28.567729323000037 ], [ -82.008146059999945, 28.567716639000025 ], [ -82.007951939999941, 28.567722998000079 ], [ -82.007793767999942, 28.567746281000041 ], [ -82.00762840799996, 28.567778026000042 ], [ -82.007446271999981, 28.567828813000062 ], [ -82.007261741999969, 28.567911337000055 ], [ -82.007084402999965, 28.568006554000078 ], [ -82.006909461999953, 28.568133507000027 ], [ -82.006722664999984, 28.56832646600003 ], [ -82.006543730999965, 28.568488058000071 ], [ -82.00642652099998, 28.568624550000038 ], [ -82.00627680499997, 28.568789413000047 ], [ -82.006159378999939, 28.568903667000029 ], [ -82.006029969999986, 28.569007344000056 ], [ -82.005876592999982, 28.569096211000044 ], [ -82.005780732999938, 28.569140646000051 ], [ -82.005634541999939, 28.569187199000055 ], [ -82.005445212999973, 28.569235868000078 ], [ -82.005390185999943, 28.569246574000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000962089999973, 28.609974200000067 ], [ -82.000954482999987, 28.609425604000023 ], [ -82.000954477999983, 28.608903931000043 ], [ -82.000945193999939, 28.607689358000073 ], [ -82.000946817999989, 28.607224235000047 ], [ -82.000942180999971, 28.606316137000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000921351999978, 28.595234821000076 ], [ -82.000924436999981, 28.594050779000042 ], [ -82.000924432999966, 28.593651269000077 ], [ -82.000917747999949, 28.593160357000045 ], [ -82.000915235999969, 28.592528658000049 ], [ -82.000912720999963, 28.59127778900006 ], [ -82.000906507999957, 28.590091033000078 ], [ -82.000892631999989, 28.587151034000044 ], [ -82.000887758999966, 28.58614149400006 ], [ -82.000909673999956, 28.584407644000066 ], [ -82.000920920999988, 28.584369437000078 ], [ -82.000944985, 28.584332838000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000913326999978, 28.613518406000026 ], [ -82.000911580999968, 28.613684988000045 ], [ -82.000891559999957, 28.613830257000075 ], [ -82.000860416999956, 28.613975528000026 ], [ -82.000827046999973, 28.614069757000038 ], [ -82.000795901999936, 28.614150245000076 ], [ -82.000769206999962, 28.614218953000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.195244963999983, 28.683683612000038 ], [ -82.195246614999974, 28.683746141000029 ], [ -82.195278952999956, 28.684971759000064 ], [ -82.195296333999977, 28.685614136000027 ], [ -82.195318699999973, 28.686450248000028 ], [ -82.195351372999937, 28.687855330000048 ], [ -82.195379548999938, 28.688954919000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087854322999988, 28.555654238000045 ], [ -82.087983733999977, 28.555717494000078 ], [ -82.088128585999982, 28.555775094000069 ], [ -82.088769821999961, 28.556050834000075 ], [ -82.08980700799998, 28.556498482000052 ], [ -82.090977476999967, 28.557005699000058 ], [ -82.091825394999944, 28.557371633000059 ], [ -82.091889833999971, 28.557399669000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054713811999989, 28.562555602000032 ], [ -82.054713062999951, 28.561106922000079 ], [ -82.054708301999938, 28.560270007000042 ], [ -82.054707980999979, 28.559650917000056 ], [ -82.054707581999935, 28.558878966000066 ], [ -82.054707188999942, 28.558118479000029 ], [ -82.054710818, 28.556765652000024 ], [ -82.054705951999949, 28.555726194000044 ], [ -82.054703784999958, 28.555171420000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046420641999987, 28.562535840000066 ], [ -82.046416859999965, 28.561493508000069 ], [ -82.046413024999936, 28.560801553000033 ], [ -82.046408866999968, 28.559370889000036 ], [ -82.046412057999987, 28.558597891000034 ], [ -82.046401223999965, 28.558039965000034 ], [ -82.046330540999975, 28.557865443000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044607319999955, 28.558530103000066 ], [ -82.044385645999967, 28.558604802000048 ], [ -82.043739676999962, 28.558804495000061 ], [ -82.042394297999977, 28.559215201000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104448717999958, 28.566584374000058 ], [ -82.106229848999988, 28.566556123000055 ], [ -82.107745921999935, 28.566548269000066 ], [ -82.108115891999944, 28.566549769000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108105740999974, 28.562923518000048 ], [ -82.108413442999961, 28.562934768000048 ], [ -82.112424283999985, 28.562934061000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045599061999951, 28.808946825000078 ], [ -82.045587220999948, 28.810792795000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06883350399994, 28.784521028000029 ], [ -82.06896384199996, 28.78497296200004 ], [ -82.069042364999973, 28.785236088000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09763286499998, 28.75871455500004 ], [ -82.096249512999975, 28.760349858000041 ], [ -82.094019277999962, 28.762956766000059 ], [ -82.09265295299997, 28.764552816000048 ], [ -82.091322735999938, 28.766085022000027 ], [ -82.090535203999934, 28.766999512000041 ], [ -82.089626798999973, 28.768092444000047 ], [ -82.089015083999982, 28.768772292000051 ], [ -82.088567512999987, 28.769278483000051 ], [ -82.088354012999957, 28.769516825000039 ], [ -82.088091678999945, 28.76985955400005 ], [ -82.087927076999961, 28.770077445000027 ], [ -82.087808784999936, 28.770249935000038 ], [ -82.087703358999988, 28.770415610000043 ], [ -82.08762364599994, 28.770540435000044 ], [ -82.087568141999952, 28.770632067000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087882694999962, 28.770634786000073 ], [ -82.087932627999976, 28.770553846000041 ], [ -82.088032910999971, 28.770397248000052 ], [ -82.088164057999961, 28.770202063000056 ], [ -82.088539540999989, 28.769693654000037 ], [ -82.088984508999943, 28.769151167000075 ], [ -82.089349739999989, 28.768708550000042 ], [ -82.090362506999952, 28.767521262000059 ], [ -82.091531993, 28.766162864000023 ], [ -82.093951231999938, 28.763336095000057 ], [ -82.094087867999974, 28.763183579000042 ], [ -82.097583880999935, 28.759111807000068 ], [ -82.097808100999941, 28.758832550000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087568141999952, 28.770632067000065 ], [ -82.087484801999949, 28.770769653000059 ], [ -82.087361406999946, 28.771003398000062 ], [ -82.087256015999969, 28.771212177000052 ], [ -82.08713522499994, 28.771479948000035 ], [ -82.087040148999961, 28.771709137000073 ], [ -82.086942511999951, 28.771956476000071 ], [ -82.086888570999974, 28.772113044000037 ], [ -82.08681024599997, 28.772362072000078 ], [ -82.086742067999978, 28.772620878000055 ], [ -82.086665859999982, 28.772900956000058 ], [ -82.086613772999954, 28.773159749000058 ], [ -82.086569739999959, 28.773429174000057 ], [ -82.086525705999975, 28.773695052000051 ], [ -82.086497777999966, 28.773978644000067 ], [ -82.086481909999975, 28.774251595000067 ], [ -82.086466105999989, 28.77460252700007 ], [ -82.08647031299995, 28.774825838000027 ], [ -82.086490732999948, 28.775194471000077 ], [ -82.086584622999965, 28.776835593000044 ], [ -82.086707012999966, 28.778880791000063 ], [ -82.086792726999988, 28.78035886400005 ], [ -82.086935576999963, 28.782808137000075 ], [ -82.087094707999938, 28.785473625000066 ], [ -82.087160070999971, 28.786657502000025 ], [ -82.087213100999975, 28.787525911000046 ], [ -82.087282510999955, 28.78873459700003 ], [ -82.08740088899998, 28.790762068000049 ], [ -82.087539641999967, 28.793087280000066 ], [ -82.087568276999946, 28.793647316000033 ], [ -82.087682506999954, 28.795511735000048 ], [ -82.087837570999966, 28.798077969000076 ], [ -82.087935674999983, 28.799896316000059 ], [ -82.087980505999951, 28.800569772000074 ], [ -82.088102978999984, 28.802646862000074 ], [ -82.088233681999952, 28.804933080000069 ], [ -82.088339785999949, 28.806676982000056 ], [ -82.088486752999984, 28.809147511000049 ], [ -82.088615967999942, 28.811422987000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.088897899999949, 28.811412847000042 ], [ -82.088760425999965, 28.809154420000027 ], [ -82.088613428999963, 28.806655535000061 ], [ -82.088372460999949, 28.802476542000079 ], [ -82.088253814999973, 28.800626498000042 ], [ -82.088213350999979, 28.799906769000074 ], [ -82.088205130999938, 28.799701184000071 ], [ -82.088111229999981, 28.798102603000075 ], [ -82.087821255999984, 28.793016202000047 ], [ -82.08767850299995, 28.79072644200005 ], [ -82.087546315999987, 28.788517948000049 ], [ -82.087490660999947, 28.787437115000046 ], [ -82.087372334999941, 28.785469902000045 ], [ -82.087200936999977, 28.782577563000075 ], [ -82.087070292999954, 28.780298425000069 ], [ -82.086927473999936, 28.777888141000062 ], [ -82.086821390999944, 28.776105240000049 ], [ -82.086764356999936, 28.775247465000064 ], [ -82.086756095999988, 28.774988710000059 ], [ -82.086743773999956, 28.77468387600004 ], [ -82.086755570999969, 28.774354214000027 ], [ -82.086771447, 28.774091897000062 ], [ -82.086791416999972, 28.773914651000041 ], [ -82.086811357999977, 28.773705503000031 ], [ -82.086835338999947, 28.773514075000037 ], [ -82.086867376999976, 28.773336820000054 ], [ -82.086907422999957, 28.773113480000063 ], [ -82.086955515999989, 28.772890135000068 ], [ -82.087035733999983, 28.772595876000025 ], [ -82.087123989999952, 28.772290976000079 ], [ -82.087256461999971, 28.771939969000073 ], [ -82.087356805999946, 28.771659874000079 ], [ -82.087465217999977, 28.771408133000079 ], [ -82.087581682999939, 28.771163475000037 ], [ -82.087718265999968, 28.770922348000056 ], [ -82.087814671, 28.770745052000052 ], [ -82.087882694999962, 28.770634786000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.201554079999937, 28.605301428000075 ], [ -82.201733759999968, 28.605042629000025 ], [ -82.201900407999972, 28.604793476000054 ], [ -82.202076390999935, 28.604537776000029 ], [ -82.202213044999951, 28.604291418000059 ], [ -82.202407415999971, 28.603975527000046 ], [ -82.202635097999973, 28.603560573000038 ], [ -82.202845814999989, 28.603137051000033 ], [ -82.203078458999983, 28.602643986000032 ], [ -82.203236213999958, 28.602311758000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.20294365999996, 28.602356996000026 ], [ -82.202770230999988, 28.602732783000079 ], [ -82.202592312999968, 28.603060129000028 ], [ -82.202435942999955, 28.603339694000056 ], [ -82.202206717999957, 28.603717252000024 ], [ -82.201933404999977, 28.604019894000032 ], [ -82.201773135999986, 28.604242567000028 ], [ -82.201609359999964, 28.604464900000039 ], [ -82.201389363999965, 28.604725478000034 ], [ -82.201213098999972, 28.604936483000074 ], [ -82.201061881999976, 28.605106197000055 ], [ -82.200891011999943, 28.605286942000077 ], [ -82.200691393999989, 28.605510701000071 ], [ -82.200522488, 28.60570072400003 ], [ -82.200327895999976, 28.605904193000072 ], [ -82.200137607999977, 28.606118312000035 ], [ -82.199886271999958, 28.60639337200007 ], [ -82.199688566999953, 28.606599939000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.236999664999985, 28.625238311000032 ], [ -82.237988288999986, 28.625238654000043 ], [ -82.23980020099998, 28.625215697000044 ], [ -82.239974733999986, 28.625216970000054 ], [ -82.240068021999946, 28.625217908000025 ], [ -82.240125851999949, 28.62522049100005 ], [ -82.24019584399997, 28.625217682000027 ], [ -82.240253667, 28.625217579000036 ], [ -82.240276434999942, 28.625219285000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.236497938999946, 28.625253516000043 ], [ -82.236761228999967, 28.625251289000062 ], [ -82.236999664999985, 28.625238311000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.20277028199996, 28.602383661000033 ], [ -82.20264819099998, 28.602644262000069 ], [ -82.202464929999962, 28.603007428000069 ], [ -82.202327423999975, 28.603248765000046 ], [ -82.202145847999986, 28.603545884000027 ], [ -82.202065132999962, 28.603664804000061 ], [ -82.202002946999983, 28.603739766000047 ], [ -82.201935545999959, 28.603804040000057 ], [ -82.201862927999969, 28.60385610000003 ], [ -82.201789347999977, 28.603904242000056 ], [ -82.201686929999937, 28.603945366000062 ], [ -82.201579214999981, 28.603978759000029 ], [ -82.201492243999951, 28.603994932000035 ], [ -82.201406555999938, 28.60400308100003 ], [ -82.201316959999986, 28.604004360000033 ], [ -82.20123513599998, 28.603996460000076 ], [ -82.201148105999948, 28.603981691000058 ], [ -82.201085746, 28.603965740000035 ], [ -82.20102726999994, 28.603944054000067 ], [ -82.200967489999982, 28.603918931000067 ], [ -82.200905094999939, 28.603884644000061 ], [ -82.200845287999982, 28.603845770000078 ], [ -82.200790669999947, 28.603803449000054 ], [ -82.200738643999955, 28.603758833000029 ], [ -82.200685292999935, 28.603700467000067 ], [ -82.200638426999944, 28.603638654000065 ], [ -82.200599346999979, 28.603573392000044 ], [ -82.200565428999937, 28.603490932000057 ], [ -82.200544519999937, 28.603421059000027 ], [ -82.200534007999977, 28.603355754000063 ], [ -82.200528686999974, 28.603289295000025 ], [ -82.200497954999946, 28.602947038000025 ], [ -82.200495152999963, 28.602838748000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012608828999987, 28.799786680000068 ], [ -82.013563705999957, 28.799791097000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953549819999978, 28.894656248000047 ], [ -81.953549819999978, 28.894992338000066 ], [ -81.953557515999989, 28.895764576000033 ], [ -81.953565213, 28.896783108000079 ], [ -81.953583171999981, 28.899705294000057 ], [ -81.953596, 28.901175367000064 ], [ -81.953593499999954, 28.901537 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953542122999977, 28.892750028000023 ], [ -81.953542122999977, 28.892986061000045 ], [ -81.953549819999978, 28.894656248000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98973356099998, 28.865300948000026 ], [ -81.98969128899995, 28.865300902000058 ], [ -81.989187292999986, 28.865300458000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110598365999977, 28.659314764000044 ], [ -82.109572125999989, 28.659309900000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110598365999977, 28.659314761000076 ], [ -82.110608504999959, 28.658677430000068 ], [ -82.110607399999935, 28.657624519000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953761331999942, 28.820593090000045 ], [ -81.953838111999971, 28.820786615000031 ], [ -81.953818545, 28.820872193000071 ], [ -81.953789990999951, 28.820957854000028 ], [ -81.953799508999964, 28.821062550000079 ], [ -81.953799508999964, 28.821148210000047 ], [ -81.953799508999964, 28.821243389000074 ], [ -81.953789990999951, 28.821310014000062 ], [ -81.953809026999977, 28.821528924000063 ], [ -81.953818545, 28.822099995000031 ], [ -81.953828062999946, 28.822528298000066 ], [ -81.95374050099997, 28.825164531000041 ], [ -81.953721464999944, 28.825564281000027 ], [ -81.953747160999967, 28.826516274000028 ], [ -81.953702168999939, 28.828468150000049 ], [ -81.953705961999958, 28.828885341000046 ], [ -81.953702168999939, 28.828913329000045 ], [ -81.953686925999989, 28.828930589000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045606751999969, 28.806226156000037 ], [ -82.045606919999955, 28.806611568000051 ], [ -82.045607047999965, 28.806904612000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045607047999965, 28.806904612000039 ], [ -82.045607210999947, 28.807278659000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045606713999973, 28.806137722000074 ], [ -82.045606751999969, 28.806226156000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968690494999976, 28.922299060000057 ], [ -81.968787083999985, 28.922314948000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968690495999965, 28.922299060000057 ], [ -81.968690493999986, 28.922299072000044 ], [ -81.968687360999979, 28.92231969900007 ], [ -81.968668483999977, 28.922422733000076 ], [ -81.968649616999983, 28.922494975000063 ], [ -81.968635257999949, 28.922541558000034 ], [ -81.968618625999966, 28.92259208400003 ], [ -81.968607845999941, 28.922628796000026 ], [ -81.968629369999974, 28.922673806000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017478465999943, 28.839689840000062 ], [ -82.016514602999962, 28.839371296000024 ], [ -82.015932574999965, 28.83917419900007 ], [ -82.01549506899994, 28.839013624000074 ], [ -82.015076142999987, 28.838850070000035 ], [ -82.014712962999965, 28.838707330000034 ], [ -82.01439370199995, 28.838574997000023 ], [ -82.014057549999961, 28.838435227000048 ], [ -82.01372646599998, 28.838302893000048 ], [ -82.013564805999977, 28.838238381000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011819670999955, 28.837821533000067 ], [ -82.012364167999976, 28.83800181600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06215573999998, 28.810864024000068 ], [ -82.062186698999938, 28.810812455000075 ], [ -82.062189366999974, 28.810787643000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062239860999966, 28.804668055000036 ], [ -82.062240245999988, 28.805316828000059 ], [ -82.062240248999956, 28.805321309000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963378122999984, 28.95164735700007 ], [ -81.963267155999972, 28.951725297000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045365749999974, 28.945649351000043 ], [ -82.040543254999989, 28.945642709000026 ], [ -82.038510370999973, 28.945624232000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041207945999986, 28.935603972000024 ], [ -82.04118935799994, 28.934714068000062 ], [ -82.041183390999947, 28.933734035000043 ], [ -82.041185232999965, 28.933688224000036 ], [ -82.041177775999984, 28.933645686000034 ], [ -82.041164745999936, 28.933616240000049 ], [ -82.041144278, 28.933593340000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037483597999938, 28.933560618000058 ], [ -82.037122692999958, 28.93355493200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036973663999959, 28.934594893000053 ], [ -82.036972589999948, 28.935652676000075 ], [ -82.036960750999981, 28.937038175000055 ], [ -82.036970694, 28.937808861000065 ], [ -82.036970809999957, 28.938137213000061 ], [ -82.036974321999935, 28.938324089000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038070547999951, 28.945622436000065 ], [ -82.038211498999942, 28.946488306000049 ], [ -82.038368075999983, 28.947424432000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03857844099997, 28.947427683000058 ], [ -82.038280035999946, 28.945653223000079 ], [ -82.038274977999947, 28.945622092000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036986096999954, 28.931936946000064 ], [ -82.03698514499996, 28.931989624000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036978974999954, 28.93233080400006 ], [ -82.036977857999943, 28.932392572000026 ], [ -82.036977926999953, 28.932584671000029 ], [ -82.036977952999962, 28.932658556000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037133771999947, 28.931977511000071 ], [ -82.037175292999962, 28.931151448000037 ], [ -82.037178960999938, 28.931078476000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037130465999951, 28.932331554000029 ], [ -82.037132562999943, 28.932001565000064 ], [ -82.037133771999947, 28.931977511000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037355798999954, 28.926607163000028 ], [ -82.037354194999978, 28.926681777000056 ], [ -82.037354092999976, 28.926686521000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037354092999976, 28.926686521000079 ], [ -82.037351324999975, 28.926815254000076 ], [ -82.037317328999961, 28.927182625000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037463287999969, 28.927186280000058 ], [ -82.037467429999936, 28.927131360000033 ], [ -82.037486856999976, 28.926937533000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037486856999976, 28.926937533000057 ], [ -82.037490091999985, 28.926905256000055 ], [ -82.037496261999934, 28.926681167000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037253607999958, 28.925107512000068 ], [ -82.037258494999946, 28.925190638000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037201907999986, 28.924336894000078 ], [ -82.037204896999981, 28.924378236000052 ], [ -82.037230032999958, 28.92470637200006 ], [ -82.037253607999958, 28.925107512000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037321005999956, 28.923946543000056 ], [ -82.037261814999965, 28.923027148000074 ], [ -82.037254809999979, 28.922717824000074 ], [ -82.037240963999977, 28.922224717000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037407564999967, 28.925108456000032 ], [ -82.037321005999956, 28.923946543000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036959782999986, 28.916425349000065 ], [ -82.036970236999935, 28.917299627000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036915988999965, 28.912762930000042 ], [ -82.036917180999978, 28.912862580000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037117001999945, 28.916462585000033 ], [ -82.037116551999986, 28.916403713000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037116551999986, 28.916403713000079 ], [ -82.03711302499994, 28.915940685000066 ], [ -82.037083352999957, 28.915538150000032 ], [ -82.037084465999953, 28.912861448000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037086500999976, 28.910260744000027 ], [ -82.037093889999937, 28.909539219000067 ], [ -82.037097853999967, 28.909250555000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036929738999959, 28.909247867000033 ], [ -82.036921376999942, 28.910257216000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036930594999944, 28.909144509000043 ], [ -82.036929738999959, 28.909247867000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037097853999967, 28.909250555000028 ], [ -82.037098861999937, 28.909177131000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036951322999982, 28.905572618000065 ], [ -82.036951802999965, 28.906584304000035 ], [ -82.036938705999944, 28.908165336000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037098861999937, 28.909177131000035 ], [ -82.037104438999961, 28.908642522000036 ], [ -82.037110197999937, 28.907809542000052 ], [ -82.037122073999967, 28.907150614000045 ], [ -82.037122006999937, 28.906964126000048 ], [ -82.037137233999943, 28.905911220000064 ], [ -82.037137571999949, 28.905825238000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03722959299995, 28.836231205000047 ], [ -82.037235965999969, 28.834364614000037 ], [ -82.037230677999958, 28.83413390000004 ], [ -82.037221980999959, 28.834072785000046 ], [ -82.037202866999962, 28.834000978000063 ], [ -82.037180207999938, 28.833946418000039 ], [ -82.037157713999989, 28.833890980000035 ], [ -82.037131669999951, 28.833845150000059 ], [ -82.036904260999961, 28.833562548000032 ], [ -82.036527587999956, 28.833157753000023 ], [ -82.036472045999972, 28.83311345900006 ], [ -82.036419977999969, 28.833075274000066 ], [ -82.03636075199995, 28.833044800000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.219600186999969, 28.705267555000034 ], [ -82.219605755999964, 28.70463841000003 ], [ -82.219619086999955, 28.703742224000052 ], [ -82.219615648999934, 28.703469132000066 ], [ -82.219602691999967, 28.70344538300003 ], [ -82.219572817999961, 28.703423179000026 ], [ -82.219531508999978, 28.703419200000042 ], [ -82.219191904999946, 28.703407614000071 ], [ -82.219088658999965, 28.703409803000056 ], [ -82.219008327999973, 28.703397796000047 ], [ -82.21893715899995, 28.703377682000053 ], [ -82.21887744299994, 28.703349457000058 ], [ -82.218829196999934, 28.703319191000048 ], [ -82.218783253999959, 28.703292967000039 ], [ -82.218744191999974, 28.703266732000031 ], [ -82.218705089999958, 28.703220268000052 ], [ -82.218668219999984, 28.703143455000031 ], [ -82.218601386999978, 28.703001956000037 ], [ -82.21855994699996, 28.702935266000054 ], [ -82.218523151999989, 28.702894867000055 ], [ -82.218481793999956, 28.702866612000037 ], [ -82.218445044999953, 28.702848465000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.173997672999974, 28.858759537000026 ], [ -82.174446081999974, 28.858725118000052 ], [ -82.174989426999957, 28.858683905000078 ], [ -82.175510860999964, 28.858642718000056 ], [ -82.176016957999934, 28.858603479000067 ], [ -82.17654934899997, 28.858564203000071 ], [ -82.177213189999975, 28.858513179000056 ], [ -82.178058875999966, 28.858448408000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.169666002999975, 28.859089700000027 ], [ -82.169788198999981, 28.859080209000069 ], [ -82.170469573999981, 28.859027267000045 ], [ -82.171192576999943, 28.858972341000026 ], [ -82.171869570999945, 28.85892132500004 ], [ -82.172345001999986, 28.858885997000073 ], [ -82.172807280999962, 28.858848754000064 ], [ -82.173245468999937, 28.85881925700005 ], [ -82.173832629999936, 28.858772206000026 ], [ -82.173877860999937, 28.858768734000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.173871748999943, 28.858579256000041 ], [ -82.173264863999975, 28.858622475000061 ], [ -82.172769716999937, 28.858659761000069 ], [ -82.170929346999969, 28.858797135000032 ], [ -82.170085849999964, 28.858863788000065 ], [ -82.169711202999963, 28.858893195000064 ], [ -82.169667858999958, 28.858896504000029 ], [ -82.169666675999963, 28.858896594000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053665987999977, 28.90194576500005 ], [ -82.05147475299998, 28.901934699000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994552341999963, 28.789142808000065 ], [ -81.994657457999949, 28.789250135000032 ], [ -81.994768548999957, 28.789410132000057 ], [ -81.994831236999971, 28.789539581000042 ], [ -81.994875133999983, 28.789674900000023 ], [ -81.994924002999937, 28.789828171000067 ], [ -81.994991854999967, 28.789972282000065 ], [ -81.995061000999954, 28.790078881000056 ], [ -81.995132929999954, 28.79018977100003 ], [ -81.995351840999945, 28.790408681000031 ], [ -81.995600057, 28.79059028000006 ], [ -81.995696728999974, 28.790685496000037 ], [ -81.995781978999958, 28.790786576000073 ], [ -81.995889592999958, 28.790951925000059 ], [ -81.99592402199994, 28.791018506000057 ], [ -81.995961798999986, 28.791102779000028 ], [ -81.996021863999943, 28.791222654000023 ], [ -81.996078003999969, 28.791333662000056 ], [ -81.996136519999936, 28.791399729000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004069823999941, 28.792499701000054 ], [ -82.004064669999934, 28.792571852000037 ], [ -82.004061860999968, 28.792621177000058 ], [ -82.00406714199994, 28.792666168000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000895791999938, 28.790042363000055 ], [ -82.000900804999958, 28.789881199000035 ], [ -82.00089922799998, 28.78975256800004 ], [ -82.000897204999944, 28.789635632000056 ], [ -82.000893297999937, 28.789409794000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001588123999966, 28.792256874000032 ], [ -82.00237015099998, 28.792577205000043 ], [ -82.002736022999954, 28.792641657000047 ], [ -82.003000263, 28.792670301000044 ], [ -82.003289667, 28.792674007000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00052756599996, 28.791241280000065 ], [ -82.000681670999938, 28.791293816000064 ], [ -82.000722300999939, 28.791302704000032 ], [ -82.000772732999962, 28.791307083000049 ], [ -82.002759266999988, 28.791311625000048 ], [ -82.002839194999979, 28.791311066000048 ], [ -82.002880208999954, 28.791306162000069 ], [ -82.002918224999974, 28.791296478000049 ], [ -82.002962799999978, 28.791277834000027 ], [ -82.003008441999953, 28.791248425000049 ], [ -82.003070681999986, 28.79117664000006 ], [ -82.003088911999953, 28.791134826000075 ], [ -82.003099643999974, 28.791076472000043 ], [ -82.003045940999982, 28.790679696000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00029903099994, 28.791757205000067 ], [ -82.000502360999974, 28.791297929000052 ], [ -82.00052756599996, 28.791241280000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000783789999957, 28.790628834000074 ], [ -82.000978314999941, 28.790673285000025 ], [ -82.003045940999982, 28.790679696000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00052756599996, 28.791241280000065 ], [ -82.000539066999977, 28.791215428000044 ], [ -82.000737826999966, 28.79077245600007 ], [ -82.000783789999957, 28.790628834000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002878782999971, 28.789967549000039 ], [ -82.002854033999938, 28.789920232000043 ], [ -82.002739605999977, 28.789700958000026 ], [ -82.002686, 28.789581496000039 ], [ -82.002640380999935, 28.789440354000078 ], [ -82.002627699999948, 28.789387394000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000895791999938, 28.790042363000055 ], [ -82.001178049999965, 28.790042990000074 ], [ -82.001724366999952, 28.790044202000047 ], [ -82.002327736999973, 28.79004554200003 ], [ -82.00259667399996, 28.790045360000079 ], [ -82.002662680999947, 28.790035406000072 ], [ -82.002764486, 28.790003904000059 ], [ -82.002878782999971, 28.789967549000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000783789999957, 28.790628834000074 ], [ -82.000830730999951, 28.790461841000024 ], [ -82.000876064999943, 28.790228847000037 ], [ -82.000895791999938, 28.790042363000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003045940999982, 28.790679696000041 ], [ -82.002963871999953, 28.790150338000046 ], [ -82.002878782999971, 28.789967549000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000893297999937, 28.789409794000051 ], [ -82.00247950499994, 28.789411186000052 ], [ -82.002578030999985, 28.789395550000052 ], [ -82.002627699999948, 28.789387394000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000893297999937, 28.789409794000051 ], [ -82.000886470999944, 28.789056207000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002627699999948, 28.789387394000073 ], [ -82.002611746999946, 28.789294478000045 ], [ -82.002602646999947, 28.789191075000076 ], [ -82.002601512999945, 28.789048208000054 ], [ -82.002601624999954, 28.789009295000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996390858999973, 28.788389517000041 ], [ -81.99639095699996, 28.788389491000032 ], [ -81.996585295999978, 28.788338060000058 ], [ -81.997087445999966, 28.788232513000025 ], [ -81.997621762999984, 28.788016284000037 ], [ -81.998277253999959, 28.787653601000045 ], [ -81.998394964999989, 28.787607908000041 ], [ -81.998522571999956, 28.787567513000056 ], [ -81.998740486999964, 28.787532949000024 ], [ -81.998879512999963, 28.787530996000044 ], [ -81.999058725999987, 28.787552294000079 ], [ -81.999133153999935, 28.787568789000034 ], [ -81.999202630999946, 28.787589283000045 ], [ -81.999278019999963, 28.787616290000074 ], [ -81.999391404999983, 28.787672693000047 ], [ -81.99961370699998, 28.787804630000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004439423999941, 28.788972143000024 ], [ -82.00444413699995, 28.787881703000039 ], [ -82.004435610999963, 28.787484435000067 ], [ -82.004421941999965, 28.787188121000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992335500999957, 28.788255172000049 ], [ -81.99248003799994, 28.788384635000057 ], [ -81.99266369999998, 28.78853607700006 ], [ -81.992895694999959, 28.788681074000067 ], [ -81.993230883999956, 28.788789076000057 ], [ -81.993717343999947, 28.788819626000077 ], [ -81.994110446999969, 28.788903402000074 ], [ -81.994327580999936, 28.788970918000075 ], [ -81.994552341999963, 28.789142808000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002601624999954, 28.789009295000028 ], [ -82.003310402999944, 28.789058860000068 ], [ -82.003601587999981, 28.789066025000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990704722999965, 28.785420633000058 ], [ -81.990707578999945, 28.785738638000055 ], [ -81.990742645999944, 28.785945967000032 ], [ -81.990845146999959, 28.78621759300006 ], [ -81.991019011999981, 28.786622011000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99769469599994, 28.789991402000055 ], [ -81.997239898999965, 28.790117464000048 ], [ -81.997002529999975, 28.79018325800007 ], [ -81.996934571999986, 28.790213990000041 ], [ -81.996888713999965, 28.790238258000045 ], [ -81.996835037999972, 28.790300812000055 ], [ -81.996812231999968, 28.790376018000075 ], [ -81.996811218999937, 28.790453520000028 ], [ -81.996837787999937, 28.790526361000047 ], [ -81.996878606999985, 28.790582051000058 ], [ -81.996996839999952, 28.790733874000068 ], [ -81.997043646999941, 28.790784389000066 ], [ -81.99713627899996, 28.79089755900003 ], [ -81.997176287999935, 28.790935309000076 ], [ -81.997214112999984, 28.790959622000059 ], [ -81.997247301999948, 28.790975064000065 ], [ -81.997278508999955, 28.790984905000073 ], [ -81.997316006999938, 28.79099248700004 ], [ -81.997357973999954, 28.790995588000044 ], [ -81.997399909999956, 28.79099024900006 ], [ -81.997434454999961, 28.790985851000073 ], [ -81.997539859999961, 28.790956944000072 ], [ -81.997811684999988, 28.790881599000045 ], [ -81.997972477999951, 28.790837030000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999222250999935, 28.78983936000003 ], [ -81.998440799999969, 28.789873933000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999222250999935, 28.78983936000003 ], [ -81.999182282999982, 28.789577791000056 ], [ -81.999131880999983, 28.789097089000052 ], [ -81.999161708999964, 28.78876531700007 ], [ -81.999238034999962, 28.78849912000004 ], [ -81.999312706999945, 28.788306216000024 ], [ -81.999379716999954, 28.788141042000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998440799999969, 28.789873933000024 ], [ -81.998356666999939, 28.789877655000055 ], [ -81.998085357999969, 28.789900423000063 ], [ -81.997977889999959, 28.789919027000053 ], [ -81.997910408999985, 28.789933614000063 ], [ -81.99769469599994, 28.789991402000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999379716999954, 28.788141042000063 ], [ -81.999518867999939, 28.787928200000067 ], [ -81.99961370699998, 28.787804630000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997972477999951, 28.790837030000034 ], [ -81.998259028999939, 28.790763129000027 ], [ -81.998474684999962, 28.79073958500004 ], [ -81.998681499999975, 28.790738633000046 ], [ -81.998913364999964, 28.790719108000076 ], [ -81.998963767999953, 28.790708381000059 ], [ -81.999017975999948, 28.790685719000066 ], [ -81.999044595999976, 28.790669452000031 ], [ -81.99907836899996, 28.79064194800003 ], [ -81.999121212999967, 28.790587463000065 ], [ -81.999149457999977, 28.790511113000036 ], [ -81.999237213999947, 28.790148573000067 ], [ -81.999246773999971, 28.790060917000062 ], [ -81.999242437999953, 28.78996143300003 ], [ -81.999222250999935, 28.78983936000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997874067999987, 28.790589520000026 ], [ -81.997972477999951, 28.790837030000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998440799999969, 28.789873933000024 ], [ -81.998405481999953, 28.789434688000028 ], [ -81.998422507999976, 28.788774596000053 ], [ -81.998507568999969, 28.788134882000065 ], [ -81.998545582999952, 28.788072232000047 ], [ -81.998672448999969, 28.787973216000069 ], [ -81.99877246899996, 28.787958134000064 ], [ -81.998882370999979, 28.787958461000073 ], [ -81.998954825999988, 28.787968371000034 ], [ -81.999042354999972, 28.787986058000058 ], [ -81.999170394999965, 28.788040531000036 ], [ -81.999379716999954, 28.788141042000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998420159999966, 28.790137075000075 ], [ -81.998440799999969, 28.789873933000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997618281999962, 28.789326505000076 ], [ -81.997592575999988, 28.788692601000037 ], [ -81.997560281999938, 28.788639755000077 ], [ -81.997519179999983, 28.788589846000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99769469599994, 28.789991402000055 ], [ -81.997635472999946, 28.789806756000075 ], [ -81.997632911999972, 28.789714765000042 ], [ -81.997618281999962, 28.789326505000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99615528399994, 28.789733505000072 ], [ -81.996067018999952, 28.789620890000037 ], [ -81.996009571999934, 28.789525907000041 ], [ -81.995984577999934, 28.78947676000007 ], [ -81.995957045999944, 28.789410376000035 ], [ -81.995917879999979, 28.789307395000037 ], [ -81.99584178899994, 28.789073034000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99615528399994, 28.789733505000072 ], [ -81.997618281999962, 28.789326505000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996395732999986, 28.790025695000054 ], [ -81.99615528399994, 28.789733505000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99584178899994, 28.789073034000069 ], [ -81.997519179999983, 28.788589846000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997519179999983, 28.788589846000036 ], [ -81.99800898899997, 28.788458610000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99584178899994, 28.789073034000069 ], [ -81.995715227999938, 28.788718713000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001588123999966, 28.792256874000032 ], [ -82.001531021999938, 28.792349587000047 ], [ -82.001483535999967, 28.792542923000042 ], [ -82.001453009999977, 28.792688773000066 ], [ -82.00146996899997, 28.793353578000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00029903099994, 28.791757205000067 ], [ -82.001033587999984, 28.792029490000061 ], [ -82.001588123999966, 28.792256874000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003070332999982, 28.795182621000038 ], [ -82.003095236999968, 28.795092872000055 ], [ -82.003119982999976, 28.794955 ], [ -82.003144728999985, 28.794845409000061 ], [ -82.003222502999961, 28.79455198900007 ], [ -82.003247249999959, 28.794131302000039 ], [ -82.003222502999961, 28.793883839000046 ], [ -82.003130587999976, 28.793675263000068 ], [ -82.002883125999972, 28.793470223000043 ], [ -82.002695760999984, 28.793378308000058 ], [ -82.002215383999953, 28.793344015000059 ], [ -82.00146996899997, 28.793353578000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003218483999945, 28.795849687000043 ], [ -82.003185606999978, 28.795673838000027 ], [ -82.003157052999939, 28.795563193000078 ], [ -82.003092807999963, 28.795391872000039 ], [ -82.003070332999982, 28.795182621000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001106385999947, 28.797655155000029 ], [ -82.001123260999975, 28.797741939000048 ], [ -82.001175089999947, 28.797862472000077 ], [ -82.001246204999973, 28.797928766000041 ], [ -82.001386934999971, 28.797973257000024 ], [ -82.001492091999978, 28.797991443000058 ], [ -82.001615362999985, 28.797980395000025 ], [ -82.002133130999937, 28.797901791000072 ], [ -82.002391540999952, 28.797901791000072 ], [ -82.002939952999952, 28.797948878000057 ], [ -82.003075397999964, 28.797931772000027 ], [ -82.003128221999987, 28.797923206000064 ], [ -82.003182473999971, 28.797888942000043 ], [ -82.003224662999969, 28.797831801000029 ], [ -82.003240627999958, 28.79774399300004 ], [ -82.003235305999965, 28.797677472000032 ], [ -82.003201933999947, 28.797314313000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000432856999964, 28.793968775000053 ], [ -82.000495418999947, 28.794236900000044 ], [ -82.00065927299994, 28.794668878000039 ], [ -82.000841001999959, 28.795172357000069 ], [ -82.000915480999936, 28.795240878000072 ], [ -82.001083244999961, 28.795268304000047 ], [ -82.001192543999935, 28.795258753000041 ], [ -82.001556196999957, 28.795235050000031 ], [ -82.00213630199994, 28.795179626000049 ], [ -82.002631422999968, 28.795168541000066 ], [ -82.003070332999982, 28.795182621000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00146996899997, 28.793353578000051 ], [ -82.000765156999989, 28.793363974000044 ], [ -82.000665219999973, 28.793368733000079 ], [ -82.000562902999945, 28.793394907000049 ], [ -82.000451068999951, 28.793475809000029 ], [ -82.000399195999989, 28.793614293000076 ], [ -82.000399195999989, 28.793793229000073 ], [ -82.000432856999964, 28.793968775000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002554393999958, 28.795871534000071 ], [ -82.003073330999939, 28.795856880000031 ], [ -82.003218483999945, 28.795849687000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001050428999974, 28.79596702200007 ], [ -82.002018178999947, 28.795902219000027 ], [ -82.002554393999958, 28.795871534000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001119829999936, 28.796655638000061 ], [ -82.001050428999974, 28.79596702200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001119829999936, 28.796655638000061 ], [ -82.002479301999983, 28.796585293000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001149949999956, 28.797009047000074 ], [ -82.001119829999936, 28.796655638000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001050428999974, 28.79596702200007 ], [ -82.001024703999974, 28.79559202300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002479301999983, 28.796585293000078 ], [ -82.002554393999958, 28.795871534000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002456403999986, 28.796889030000045 ], [ -82.002479301999983, 28.796585293000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00127140099994, 28.793960105000053 ], [ -82.002000180999971, 28.793948780000051 ], [ -82.002411611999946, 28.793963959000052 ], [ -82.002477284999941, 28.794009645000074 ], [ -82.002538674999983, 28.794095305000042 ], [ -82.002557234999983, 28.794148129000064 ], [ -82.002560090999964, 28.794172400000036 ], [ -82.002555795999967, 28.794538682000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001343664999979, 28.794554963000053 ], [ -82.001332957999978, 28.794508563000079 ], [ -82.001261573999955, 28.794130229000075 ], [ -82.00127140099994, 28.793960105000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000432856999964, 28.793968775000053 ], [ -82.00127140099994, 28.793960105000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001343664999979, 28.794554963000053 ], [ -82.002555795999967, 28.794538682000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001425756999936, 28.794904744000064 ], [ -82.001343664999979, 28.794554963000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002555795999967, 28.794538682000052 ], [ -82.002841372999967, 28.794537439000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999846797999965, 28.797450088000062 ], [ -81.999868527999979, 28.797526763000064 ], [ -81.999890802999971, 28.797650512000075 ], [ -81.999877190999939, 28.797828711000079 ], [ -81.999832519999984, 28.79802472800003 ], [ -81.999769528999934, 28.798093534000031 ], [ -81.999700228999984, 28.798129421000056 ], [ -81.99919409499995, 28.79823708300006 ], [ -81.999115113999949, 28.798231741000052 ], [ -81.999055197999951, 28.798212421000073 ], [ -81.998980008999979, 28.798161596000057 ], [ -81.998937933999969, 28.798093534000031 ], [ -81.998783178999986, 28.797703500000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996832644999984, 28.794152391000068 ], [ -81.997340384999973, 28.79412955500004 ], [ -81.998087535999957, 28.794110519000071 ], [ -81.998515838999936, 28.794210457000077 ], [ -81.998815650999973, 28.794291358000066 ], [ -81.999041071999955, 28.794313163000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996671273999937, 28.793528003000063 ], [ -81.996652371999971, 28.793424040000048 ], [ -81.996716616999947, 28.793045706000044 ], [ -81.996959321999952, 28.79233543600003 ], [ -81.997071726999934, 28.79199853700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996671273999937, 28.793528003000063 ], [ -81.997912295999981, 28.793488285000024 ], [ -81.998447674999966, 28.793541823000055 ], [ -81.998929515999976, 28.79364176100006 ], [ -81.999043729999983, 28.793759544000068 ], [ -81.999061575999974, 28.793873758000075 ], [ -81.999036591999982, 28.79426636900007 ], [ -81.999041071999955, 28.794313163000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998769520999986, 28.795642440000051 ], [ -81.998385034999956, 28.794968308000023 ], [ -81.998269688999983, 28.794876031000058 ], [ -81.998128710999936, 28.794832456000051 ], [ -81.997949283999958, 28.794811950000053 ], [ -81.997567360999938, 28.794822203000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996827543999984, 28.79483377300005 ], [ -81.996848676999946, 28.794719656000041 ], [ -81.996870092999984, 28.794512643000076 ], [ -81.996841538999945, 28.794184278000046 ], [ -81.996832645999973, 28.794152391000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998012308999989, 28.795888639000054 ], [ -81.997858833999942, 28.795638795000059 ], [ -81.997601851999946, 28.795164093000039 ], [ -81.997573298999953, 28.795103416000075 ], [ -81.997559021999962, 28.794932095000036 ], [ -81.997567360999938, 28.794822203000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997567360999938, 28.794822203000024 ], [ -81.997282840999958, 28.794829893000042 ], [ -81.996827544999974, 28.79483377300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998012308999989, 28.795888639000054 ], [ -81.998769520999986, 28.795642440000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997725153999966, 28.796013937000055 ], [ -81.998012308999989, 28.795888639000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998884866999958, 28.796014110000044 ], [ -81.998856670999942, 28.795885948000034 ], [ -81.998769520999986, 28.795642440000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997980110999947, 28.796700558000055 ], [ -81.99826944199998, 28.796529282000051 ], [ -81.99864815799998, 28.796408347000067 ], [ -81.999163722999981, 28.796319237000034 ], [ -81.999654061999934, 28.796272255000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997980110999947, 28.796700558000055 ], [ -81.997351932999948, 28.796197302000053 ], [ -81.997062828999958, 28.795915336000064 ], [ -81.996966460999943, 28.795765429000028 ], [ -81.996823692999953, 28.79549417100003 ], [ -81.996780862999969, 28.795244328000024 ], [ -81.99679514099995, 28.795008761000076 ], [ -81.996827500999984, 28.794834006000031 ], [ -81.996827543999984, 28.79483377300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999041071999955, 28.794313163000027 ], [ -81.999041099999943, 28.794313453000029 ], [ -81.999068713999975, 28.794601873000033 ], [ -81.999257880999949, 28.794948085000044 ], [ -81.999504155999944, 28.795401372000072 ], [ -81.999632646999942, 28.795886782000025 ], [ -81.999654061999934, 28.796272255000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998408413999982, 28.797214521000058 ], [ -81.998476348999986, 28.797156752000035 ], [ -81.998554310999964, 28.797133240000051 ], [ -81.999694875999978, 28.796895244000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998408413999982, 28.797214521000058 ], [ -81.998069340999962, 28.796829049000053 ], [ -81.997980110999947, 28.796700558000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999654061999934, 28.796272255000076 ], [ -81.999657630999934, 28.796507821000034 ], [ -81.999682614999983, 28.796850464000045 ], [ -81.999694875999978, 28.796895244000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998783178999986, 28.797703500000068 ], [ -81.999846797999965, 28.797450088000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998783178999986, 28.797703500000068 ], [ -81.998626134999938, 28.797589286000061 ], [ -81.998486248999939, 28.797432713000035 ], [ -81.998408413999982, 28.797214521000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999694875999978, 28.796895244000041 ], [ -81.999694931999954, 28.796895447000054 ], [ -81.999846797999965, 28.797450088000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997071726999934, 28.79199853800003 ], [ -81.997218655999973, 28.792019897000046 ], [ -81.997344512999973, 28.792020656000034 ], [ -81.997647894999943, 28.79199686100003 ], [ -81.997859071999983, 28.791967118000059 ], [ -81.998224913999934, 28.791877888000045 ], [ -81.999149929999987, 28.791717275000053 ], [ -81.999657229999968, 28.791677695000033 ], [ -82.000104250999982, 28.791723939000065 ], [ -82.00029903099994, 28.791757205000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996832645999973, 28.794152391000068 ], [ -81.996832518999952, 28.794151936000048 ], [ -81.996695201999955, 28.793659606000062 ], [ -81.996671374999949, 28.793528556000069 ], [ -81.996671273999937, 28.793528003000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99961370699998, 28.787804630000039 ], [ -81.999907667999935, 28.787982004000071 ], [ -82.00070478799995, 28.788463845000024 ], [ -82.00110971099997, 28.788708682000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003201933999947, 28.797314313000072 ], [ -82.003182987999935, 28.797138886000027 ], [ -82.003215099999977, 28.796885191000058 ], [ -82.003266480999969, 28.796605807000049 ], [ -82.003288959999963, 28.796381014000076 ], [ -82.003292171999988, 28.796133743000041 ], [ -82.003218483999945, 28.795849687000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003201933999947, 28.797314313000072 ], [ -82.002871718999984, 28.797292731000027 ], [ -82.002776539999957, 28.797278454000036 ], [ -82.002324215999977, 28.797253542000078 ], [ -82.001998456999956, 28.797271316000035 ], [ -82.00180923299996, 28.797279256000024 ], [ -82.001606977999984, 28.797306025000069 ], [ -82.001418203999947, 28.797326503000079 ], [ -82.001240177999989, 28.797359849000031 ], [ -82.001136518999942, 28.79745386500008 ], [ -82.001102769999989, 28.797535827000047 ], [ -82.001106385999947, 28.797655155000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019205914999986, 28.801385808000077 ], [ -82.018831148999936, 28.801736778000077 ], [ -82.018569408999952, 28.80183790500007 ], [ -82.018248181, 28.801873597000053 ], [ -82.018022132999988, 28.801974724000047 ], [ -82.017581931999985, 28.802248362000057 ], [ -82.016997962999937, 28.802603933000057 ], [ -82.016760016999967, 28.802752650000059 ], [ -82.016545864999955, 28.802862700000048 ], [ -82.016260329999966, 28.802963827000042 ], [ -82.015963898999985, 28.803045482000073 ], [ -82.015624755999966, 28.803069365000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010459218999983, 28.798893604000057 ], [ -82.010555529999976, 28.799064968000039 ], [ -82.010637937999945, 28.799202474000026 ], [ -82.010653120999962, 28.799265500000047 ], [ -82.010666141999934, 28.799370544000055 ], [ -82.010651852999956, 28.799485673000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010651852999956, 28.799937586000055 ], [ -82.01071210799995, 28.800066313000059 ], [ -82.010717753999984, 28.800140761000023 ], [ -82.010732029999986, 28.800616653000077 ], [ -82.010729650999963, 28.80073324600005 ], [ -82.010782, 28.801040197000077 ], [ -82.010817690999943, 28.801152032000061 ], [ -82.010872418999952, 28.801204380000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010872418999952, 28.801204380000058 ], [ -82.010890254999936, 28.801161032000039 ], [ -82.010903351999957, 28.80110206300003 ], [ -82.010886694999954, 28.800868876000038 ], [ -82.010855761999949, 28.80060951400003 ], [ -82.010853382999983, 28.800083654000048 ], [ -82.010920261999956, 28.799934847000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010864252999966, 28.802503262000073 ], [ -82.010919599999966, 28.802284754000027 ], [ -82.010982060999936, 28.801993270000025 ], [ -82.011002880999968, 28.801785067000026 ], [ -82.010996931999955, 28.801588762000051 ], [ -82.010952316999976, 28.801389482000047 ], [ -82.010872418999952, 28.801204380000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007033686999989, 28.802693822000037 ], [ -82.006978939999954, 28.802690290000044 ], [ -82.006814573999975, 28.802653858000042 ], [ -82.006633262999969, 28.802600482000059 ], [ -82.00598088299995, 28.802345461000073 ], [ -82.005799571999944, 28.802269208000041 ], [ -82.005653845999973, 28.802192956000056 ], [ -82.005480159999934, 28.802091287000053 ], [ -82.005306474999941, 28.801947255000073 ], [ -82.005210735999981, 28.801831182000058 ], [ -82.005172609999988, 28.801773569000034 ], [ -82.005145498, 28.801735443000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010329536999961, 28.801155478000055 ], [ -82.010275998999987, 28.800858045000041 ], [ -82.010240306999947, 28.800569536000069 ], [ -82.010204614999964, 28.800486255000067 ], [ -82.010124308999934, 28.800462460000062 ], [ -82.009085293999988, 28.800463259000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010864252999966, 28.802503262000073 ], [ -82.010341312999969, 28.802406436000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009089428999971, 28.801155959000027 ], [ -82.010329536999961, 28.801155478000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010341312999969, 28.802406436000069 ], [ -82.01037712599998, 28.802175672000033 ], [ -82.010430663999955, 28.801884188000031 ], [ -82.010436612999968, 28.801655165000057 ], [ -82.010421740999959, 28.801500500000031 ], [ -82.010365228999945, 28.801292297000032 ], [ -82.010329536999961, 28.801155478000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009089428999971, 28.801155959000027 ], [ -82.009085293999988, 28.800463259000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009091503999969, 28.801503487000048 ], [ -82.009089428999971, 28.801155959000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009085293999988, 28.800463259000026 ], [ -82.009083119999957, 28.800099347000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008633958999951, 28.803655925000044 ], [ -82.008649104999961, 28.805132638000032 ], [ -82.008663381999952, 28.805299201000025 ], [ -82.008777595999959, 28.805408656000054 ], [ -82.008939398999985, 28.805456245000073 ], [ -82.009491433999983, 28.805394379000063 ], [ -82.010357557999953, 28.805080290000035 ], [ -82.010517149999941, 28.804990264000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012455233999958, 28.802960214000052 ], [ -82.012097274999974, 28.802855125000065 ], [ -82.011432816999957, 28.802657491000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009364578999964, 28.803655946000049 ], [ -82.009525913999937, 28.803655946000049 ], [ -82.010123343999965, 28.803688032000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012227813999971, 28.803524123000045 ], [ -82.012455233999958, 28.802960214000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009167596999987, 28.80291838100004 ], [ -82.008968617999983, 28.802915255000073 ], [ -82.008808184999964, 28.802946509000037 ], [ -82.008686297999986, 28.803028809000068 ], [ -82.008640459999981, 28.803171531000032 ], [ -82.008633958999951, 28.803655925000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010929207999936, 28.804032924000069 ], [ -82.010908015999973, 28.803758827000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010908015999973, 28.803758827000024 ], [ -82.011114765999935, 28.803715887000067 ], [ -82.011419964999959, 28.803522696000073 ], [ -82.011541317999956, 28.803418 ], [ -82.011612701, 28.803391826000052 ], [ -82.011715017999961, 28.803379929000073 ], [ -82.011824473, 28.803389447000029 ], [ -82.012227813999971, 28.803524123000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010517149999941, 28.804990264000025 ], [ -82.010393673999943, 28.804761401000064 ], [ -82.010229355999968, 28.804403612000044 ], [ -82.010147196999981, 28.804151834000038 ], [ -82.010112742999979, 28.803926559000047 ], [ -82.010123343999965, 28.803688032000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010123343999965, 28.803688032000025 ], [ -82.010682180999936, 28.803749285000038 ], [ -82.010908015999973, 28.803758827000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010517149999941, 28.804990264000025 ], [ -82.010543155999983, 28.804975594000041 ], [ -82.010919110999964, 28.804804273000059 ], [ -82.011247476999984, 28.804609157000073 ], [ -82.011656743999936, 28.804285550000031 ], [ -82.012037457999952, 28.80389056000007 ], [ -82.012227813999971, 28.803524123000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009471174999987, 28.804757132000077 ], [ -82.009406929999955, 28.804266964000078 ], [ -82.009364578999964, 28.803655946000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008633958999951, 28.803655925000044 ], [ -82.009364578999964, 28.803655946000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014654890999964, 28.804458637000039 ], [ -82.014828128999966, 28.80447031500006 ], [ -82.014966137999977, 28.804446521000045 ], [ -82.015028180999934, 28.804385487000047 ], [ -82.015080351999984, 28.804303753000056 ], [ -82.015132699999981, 28.804111017000025 ], [ -82.015137458999959, 28.803892106000035 ], [ -82.015073212999937, 28.803751718000058 ], [ -82.014980413999979, 28.803673196000034 ], [ -82.014835266999967, 28.803639883000073 ], [ -82.014292749999981, 28.803616089000059 ], [ -82.013674089999938, 28.803656540000077 ], [ -82.01337665799997, 28.803723165000065 ], [ -82.013224371999968, 28.803823102000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013150186999951, 28.803087122000079 ], [ -82.012745677999987, 28.803045482000073 ], [ -82.012455233999958, 28.802960214000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01400599599998, 28.804472900000064 ], [ -82.014013102999968, 28.80457536800003 ], [ -82.014057360999971, 28.804656745000045 ], [ -82.014131599999985, 28.804708142000038 ], [ -82.014252952999982, 28.804713852000077 ], [ -82.014372877999961, 28.804710997000029 ], [ -82.014438550999955, 28.804706714000076 ], [ -82.01450850699996, 28.804692437000028 ], [ -82.014544198999943, 28.804669594000075 ], [ -82.014581317999955, 28.804619626000033 ], [ -82.014605588999984, 28.804566802000068 ], [ -82.014654890999964, 28.804458637000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013224371999968, 28.803823102000024 ], [ -82.01336951899998, 28.804080084000077 ], [ -82.01367646999995, 28.80440844900005 ], [ -82.013797035999971, 28.804461262000075 ], [ -82.013907276999987, 28.804482213000028 ], [ -82.01400599599998, 28.804472900000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01400599599998, 28.804472900000064 ], [ -82.014006330999962, 28.804472868000062 ], [ -82.014159499999948, 28.804458418000024 ], [ -82.014616356999966, 28.804456039000058 ], [ -82.014654890999964, 28.804458637000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010525936999954, 28.799681513000053 ], [ -82.01051216999997, 28.799808860000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011098287999971, 28.799808860000041 ], [ -82.011090070999956, 28.799704783000038 ], [ -82.011083944999939, 28.799680280000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011098287999971, 28.799808860000041 ], [ -82.011306441999977, 28.799773254000058 ], [ -82.012490963999937, 28.799786135000033 ], [ -82.012608828999987, 28.799786680000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010651852999956, 28.799937586000055 ], [ -82.010794273999977, 28.799962236000056 ], [ -82.010920261999956, 28.799934847000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011599165999939, 28.801838582000073 ], [ -82.011571669999967, 28.801545296000029 ], [ -82.011432471999967, 28.800999210000043 ], [ -82.011382502999936, 28.800656568000079 ], [ -82.011386071999937, 28.800528077000024 ], [ -82.011436040999968, 28.800488816000041 ], [ -82.011525270999982, 28.800470970000049 ], [ -82.012164867999957, 28.800481341000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011599165999939, 28.801838582000073 ], [ -82.012404481999965, 28.801877231000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011432816999957, 28.802657491000048 ], [ -82.01093728799998, 28.802510103000031 ], [ -82.010864252999966, 28.802503262000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011432816999957, 28.802657491000048 ], [ -82.011507424999934, 28.802466148000065 ], [ -82.011582377999957, 28.802198458000078 ], [ -82.011603792999949, 28.801887939000039 ], [ -82.011599165999939, 28.801838582000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012404481999965, 28.801877231000049 ], [ -82.012389782999946, 28.801584100000071 ], [ -82.012313497999969, 28.801205611000057 ], [ -82.012216674999934, 28.800847660000045 ], [ -82.012175598999988, 28.800580664000051 ], [ -82.012164867999957, 28.800481341000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01238391399994, 28.802232519000029 ], [ -82.012404481999965, 28.801877231000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012164867999957, 28.800481341000079 ], [ -82.012185570999975, 28.80048167700005 ], [ -82.012528212999939, 28.800474539000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016977249999968, 28.801139814000067 ], [ -82.01741150099997, 28.800872125000069 ], [ -82.017589960999942, 28.800663922000069 ], [ -82.017637549999961, 28.800461668000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013869973999988, 28.803021687000069 ], [ -82.013150186999951, 28.803087122000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013903463999952, 28.801925489000041 ], [ -82.013885880999965, 28.801884827000038 ], [ -82.013686600999961, 28.800445254000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013869973999988, 28.803021687000069 ], [ -82.013818514999969, 28.802704310000024 ], [ -82.013794720999954, 28.802490158000069 ], [ -82.013806618, 28.802359288000048 ], [ -82.013961282999958, 28.802222469000071 ], [ -82.014061434999974, 28.802172393000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013153891999934, 28.801901506000036 ], [ -82.013903463999952, 28.801925489000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014061434999974, 28.802172393000035 ], [ -82.013933469999984, 28.801994878000073 ], [ -82.013903463999952, 28.801925489000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013153891999934, 28.801901506000036 ], [ -82.012971787999959, 28.800444355000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012810116999958, 28.801890506000063 ], [ -82.013153891999934, 28.801901506000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012971787999959, 28.800444355000025 ], [ -82.013686600999961, 28.800445254000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012574891999975, 28.800430994000067 ], [ -82.012971787999959, 28.800444355000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013686600999961, 28.800445254000067 ], [ -82.014035382999964, 28.800444474000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014761689999943, 28.802604586000029 ], [ -82.014820690999954, 28.802388547000078 ], [ -82.014838884999961, 28.802156066000066 ], [ -82.014796431999969, 28.801966038000046 ], [ -82.014763235999965, 28.801862751000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014061434999974, 28.802172393000035 ], [ -82.014615634999984, 28.80189529300003 ], [ -82.014763235999965, 28.801862751000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014763235999965, 28.801862751000044 ], [ -82.014762064999957, 28.801858894000077 ], [ -82.014647217999936, 28.801547590000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015624755999966, 28.803069365000056 ], [ -82.015615790999959, 28.802835879000042 ], [ -82.015622725999947, 28.802336540000056 ], [ -82.015597296999943, 28.802073 ], [ -82.015548749999937, 28.801825643000029 ], [ -82.015500387999964, 28.801687561000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014763235999965, 28.801862751000044 ], [ -82.015371112999958, 28.801728731000026 ], [ -82.015500387999964, 28.801687561000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015624755999966, 28.803069365000056 ], [ -82.015541544999962, 28.803075225000043 ], [ -82.01505375499994, 28.803057379000052 ], [ -82.013869973999988, 28.803021687000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016091521999954, 28.800964166000028 ], [ -82.015946374999942, 28.80065959500007 ], [ -82.015882128999976, 28.800500171000067 ], [ -82.015877369999941, 28.80040499200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015500387999964, 28.801687561000051 ], [ -82.01630505199995, 28.801431298000068 ], [ -82.016316664999977, 28.801426262000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014463018999948, 28.800987960000043 ], [ -82.014375454999936, 28.80040927500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014463018999948, 28.800987960000043 ], [ -82.016091521999954, 28.800964166000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014499186999956, 28.801277303000063 ], [ -82.014463018999948, 28.800987960000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016316664999977, 28.801426262000064 ], [ -82.016165284999943, 28.80110217400005 ], [ -82.016091521999954, 28.800964166000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014375454999936, 28.80040927500005 ], [ -82.015877369999941, 28.80040499200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014375454999936, 28.80040927500005 ], [ -82.014327864999984, 28.800135161000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015877369999941, 28.80040499200004 ], [ -82.015879749999954, 28.800136113000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016977249999968, 28.801139814000067 ], [ -82.016875238999944, 28.800985528000069 ], [ -82.01680455099995, 28.800849028000073 ], [ -82.016760676, 28.800629654000033 ], [ -82.016724113999942, 28.800427341000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016316664999977, 28.801426262000064 ], [ -82.016977249999968, 28.801139814000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053638242999966, 28.945627478000063 ], [ -82.053540476999956, 28.94561318600006 ], [ -82.053192250999984, 28.945610809000073 ], [ -82.052910975999964, 28.945602874000031 ], [ -82.052357768999968, 28.945595213000047 ], [ -82.051600162999989, 28.94562600200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051600162999989, 28.94562600200004 ], [ -82.051236463999942, 28.945640782000055 ], [ -82.050180718999968, 28.945643688000075 ], [ -82.050180674999979, 28.945643688000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050180674999979, 28.945643688000075 ], [ -82.049526964999984, 28.945645488000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038510370999973, 28.945624232000057 ], [ -82.038508741999976, 28.945624217000045 ], [ -82.038274977999947, 28.945622092000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05788559299998, 28.93837376700003 ], [ -82.057885007999971, 28.938373770000055 ], [ -82.056798197999967, 28.938379002000033 ], [ -82.055674867999983, 28.938379472000065 ], [ -82.054368908999948, 28.938380006000045 ], [ -82.053647210999941, 28.938376332000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059267505999969, 28.938367114000073 ], [ -82.05788559299998, 28.93837376700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042959330999963, 28.927415171000064 ], [ -82.042863974999989, 28.927415 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038274977999947, 28.945622092000065 ], [ -82.037682367999935, 28.941975070000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044090598999958, 28.938353036000024 ], [ -82.044090160999986, 28.938353031000076 ], [ -82.043852312999945, 28.93835050000007 ], [ -82.04239148399995, 28.938345910000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047078748999979, 28.938360160000059 ], [ -82.047072318999938, 28.938360193000051 ], [ -82.045509748999962, 28.938368136000065 ], [ -82.044090598999958, 28.938353036000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04239148399995, 28.938345910000066 ], [ -82.041222474999984, 28.938342237000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053647210999941, 28.938376332000075 ], [ -82.053590913999983, 28.938385526000047 ], [ -82.05357477299998, 28.938385514000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05357477299998, 28.938385514000061 ], [ -82.053574650999963, 28.938385514000061 ], [ -82.051674295999987, 28.938384098000029 ], [ -82.051315396999939, 28.938383122000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037121558999957, 28.934007932000043 ], [ -82.037122692999958, 28.93355493200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037117770999942, 28.934857143000045 ], [ -82.037120152999989, 28.93456933300007 ], [ -82.037121558999957, 28.934007932000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039121297999941, 28.931090022000035 ], [ -82.039092787999948, 28.931095819000063 ], [ -82.039044538999974, 28.931095833000029 ], [ -82.038976549999973, 28.931095852000055 ], [ -82.038936177999972, 28.931093898000029 ], [ -82.038694673999942, 28.93108571700003 ], [ -82.038443349999966, 28.931080441000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038443349999966, 28.931080441000063 ], [ -82.038443031999975, 28.931080434000023 ], [ -82.038365445999943, 28.931078806000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038365445999943, 28.931078806000073 ], [ -82.038102810999987, 28.931073292000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037596912999959, 28.931076130000065 ], [ -82.037596805999954, 28.931076131000054 ], [ -82.037178960999938, 28.931078476000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037178960999938, 28.931078476000039 ], [ -82.037205843999971, 28.929900823000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037205843999971, 28.929900823000025 ], [ -82.037205851999943, 28.929900475000068 ], [ -82.037206852999986, 28.929856614000073 ], [ -82.037225512999953, 28.929380110000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037432962999958, 28.927485466000064 ], [ -82.03759249899997, 28.927521821000028 ], [ -82.03789425399998, 28.92751123100004 ], [ -82.038180810999961, 28.927500646000055 ], [ -82.038272439999957, 28.927503726000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037355798999954, 28.926607163000028 ], [ -82.037032269999941, 28.926605747000053 ], [ -82.036840171999984, 28.926604703000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036465657999941, 28.926603723000028 ], [ -82.03636543999994, 28.926603365000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036170192999975, 28.925196497000059 ], [ -82.036169616999985, 28.925196486000061 ], [ -82.035302277999961, 28.925179601000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037240963999977, 28.922224717000063 ], [ -82.03720593099996, 28.920977116000074 ], [ -82.037196432999963, 28.920583143000044 ], [ -82.037194905999968, 28.920519821000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037194905999968, 28.920519821000028 ], [ -82.037189602999945, 28.920299836000027 ], [ -82.03718760299995, 28.920170322000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037180700999954, 28.91965927800004 ], [ -82.037178107999978, 28.919472736000046 ], [ -82.037163126999985, 28.918884095000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019205914999986, 28.801385808000077 ], [ -82.019347609999954, 28.801301048000028 ], [ -82.019472531999952, 28.801232638000045 ], [ -82.019645042999969, 28.801185049000026 ], [ -82.019844321999983, 28.801170177000074 ], [ -82.020019807999972, 28.801188023000066 ], [ -82.020257753999942, 28.801199921000034 ], [ -82.020483802999934, 28.801182075000042 ], [ -82.020686056999978, 28.801128537000068 ], [ -82.020992411999941, 28.801066076000041 ], [ -82.021117333999939, 28.80103633300007 ], [ -82.021182407999959, 28.800984253000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021182407999959, 28.800984253000024 ], [ -82.021122633999937, 28.800929138000072 ], [ -82.021069744999977, 28.80090546200006 ], [ -82.02080205599998, 28.800893565000024 ], [ -82.020465956999942, 28.800807309000049 ], [ -82.020225035999943, 28.80076269500006 ], [ -82.019978166999977, 28.800780541000051 ], [ -82.019692631999987, 28.800878693000072 ], [ -82.019442787999935, 28.801066076000041 ], [ -82.01929407199998, 28.80124156100004 ], [ -82.019205914999986, 28.801385808000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013150186999951, 28.803087122000079 ], [ -82.013150608999979, 28.803318656000044 ], [ -82.013167264999936, 28.803544705000036 ], [ -82.013224371999968, 28.803823102000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021182407999959, 28.800984253000024 ], [ -82.021218423999983, 28.801038161000065 ], [ -82.021244187999969, 28.80105588300006 ], [ -82.021279474999972, 28.801068687000054 ], [ -82.021487985999954, 28.801096292000068 ], [ -82.021687860999975, 28.801158158000078 ], [ -82.021892493999985, 28.801272372000028 ], [ -82.022016225999948, 28.801362792000077 ], [ -82.022158993999938, 28.801515077000033 ], [ -82.022301761999984, 28.801619774000073 ], [ -82.022592055999951, 28.801776818000064 ], [ -82.02287759099994, 28.801871997000035 ], [ -82.022993051999947, 28.801890398000069 ], [ -82.023058130999971, 28.801893015000076 ], [ -82.023095606999959, 28.801882902000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023095606999959, 28.801882902000045 ], [ -82.023078712999961, 28.801841857000056 ], [ -82.023020177999967, 28.801771901000052 ], [ -82.022840290999966, 28.801634844000034 ], [ -82.022563321999939, 28.801367868000057 ], [ -82.022489081999936, 28.801262220000069 ], [ -82.022362018999956, 28.80111088600006 ], [ -82.022222106999948, 28.800993817000062 ], [ -82.022083621999968, 28.800919578000048 ], [ -82.021929432999968, 28.800862471000073 ], [ -82.021718136999937, 28.800831062000043 ], [ -82.021536821999973, 28.800828206000062 ], [ -82.02133551999998, 28.800868181000055 ], [ -82.021235581999974, 28.800892452000028 ], [ -82.021201317999953, 28.800919578000048 ], [ -82.021192752, 28.80094527600005 ], [ -82.021182407999959, 28.800984253000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027501089999987, 28.823712011000055 ], [ -82.027364413999976, 28.82364106600005 ], [ -82.027178585999934, 28.823573492000037 ], [ -82.02701621999995, 28.82354721300004 ], [ -82.026790973999937, 28.823526565000066 ], [ -82.026568542999939, 28.823491840000031 ], [ -82.026381775999937, 28.823447729000065 ], [ -82.025978642999974, 28.82331952100003 ], [ -82.025157728999943, 28.822926910000035 ], [ -82.024843639999972, 28.822712758000023 ], [ -82.024615211999958, 28.822512884000048 ], [ -82.024393921999945, 28.822227348000069 ], [ -82.024308261999977, 28.821956090000072 ], [ -82.024253643999941, 28.821693196000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021182407999959, 28.800984253000024 ], [ -82.021173484999963, 28.800912571000026 ], [ -82.021171402999983, 28.800889372000029 ], [ -82.021167583999954, 28.800868191000063 ], [ -82.021164928999951, 28.800846386000046 ], [ -82.021138577999977, 28.800673407000033 ], [ -82.021136326999965, 28.800650554000072 ], [ -82.021136515999956, 28.800627616000043 ], [ -82.021139140999935, 28.800604795000027 ], [ -82.021144178999975, 28.800582290000079 ], [ -82.021151586999963, 28.80056029900004 ], [ -82.02116129999996, 28.800539016000073 ], [ -82.021173231999967, 28.800518627000031 ], [ -82.021187278999946, 28.800499312000056 ], [ -82.021203315999969, 28.800481239000078 ], [ -82.021221204999961, 28.800464569000042 ], [ -82.021240784999975, 28.800449446000073 ], [ -82.021261885999934, 28.800436004000062 ], [ -82.021284323999964, 28.800424362000058 ], [ -82.021307900999943, 28.800414620000026 ], [ -82.021332408999967, 28.80040686600006 ], [ -82.02135763299998, 28.800401166000029 ], [ -82.021383353999965, 28.800397571000076 ], [ -82.021685002999959, 28.800368092000042 ], [ -82.021736082999951, 28.800362094000036 ], [ -82.021786814999984, 28.800354123000034 ], [ -82.021837099999971, 28.800344194000047 ], [ -82.021886839999979, 28.800332325000056 ], [ -82.021935938999945, 28.800318540000035 ], [ -82.021984300999975, 28.800302864000059 ], [ -82.022213509999972, 28.800223487000039 ], [ -82.022262240999964, 28.800207744000033 ], [ -82.022311744999968, 28.800194001000079 ], [ -82.022361915999966, 28.800182285000062 ], [ -82.022412647999943, 28.800172622000048 ], [ -82.022463831999971, 28.800165032000052 ], [ -82.022515359999943, 28.800159531000077 ], [ -82.022567119999962, 28.800156132000041 ], [ -82.022619005999957, 28.800154841000051 ], [ -82.022670900999969, 28.800155661000076 ], [ -82.022722698999985, 28.800158590000024 ], [ -82.022774287999937, 28.80016362300006 ], [ -82.022825557999965, 28.800170748000028 ], [ -82.022876399999973, 28.800179950000029 ], [ -82.022933567999985, 28.800190419000046 ], [ -82.022991178999973, 28.800198786000067 ], [ -82.023049135999941, 28.800205038000058 ], [ -82.023107337999988, 28.800209162000044 ], [ -82.023165682999945, 28.800211154000067 ], [ -82.023224072999938, 28.800211008000076 ], [ -82.023282405999964, 28.800208726000051 ], [ -82.023340578999978, 28.800204310000026 ], [ -82.023398493999935, 28.800197770000068 ], [ -82.023456049999936, 28.80018911600007 ], [ -82.023520927999982, 28.800179092000064 ], [ -82.023586138999974, 28.800170930000036 ], [ -82.023651616999985, 28.800164634000055 ], [ -82.023717291999958, 28.800160214000073 ], [ -82.023783095999988, 28.800157673000058 ], [ -82.023848957999974, 28.800157015000025 ], [ -82.023914809999951, 28.800158239000041 ], [ -82.023980581999979, 28.800161345000049 ], [ -82.02404620599998, 28.800166330000025 ], [ -82.024111609999977, 28.800173186000052 ], [ -82.024176728999976, 28.800181910000049 ], [ -82.024202118999938, 28.800186769000049 ], [ -82.024226884999962, 28.800193695000075 ], [ -82.024250807999977, 28.800202629000069 ], [ -82.024273677999986, 28.800213493000058 ], [ -82.024295296999981, 28.800226190000046 ], [ -82.024315473999934, 28.80024061000006 ], [ -82.024334034999981, 28.800256627000067 ], [ -82.024350814999934, 28.80027410100007 ], [ -82.024365669999952, 28.800292880000029 ], [ -82.024378467999952, 28.80031279800005 ], [ -82.024389098999961, 28.800333683000076 ], [ -82.024397467999961, 28.800355350000075 ], [ -82.024403503999963, 28.800377611000044 ], [ -82.024407151999981, 28.800400272000047 ], [ -82.024408380999944, 28.800423134000027 ], [ -82.024407302999975, 28.80049507800004 ], [ -82.024403974999984, 28.800566968000055 ], [ -82.024398401999974, 28.800638750000076 ], [ -82.024390586999971, 28.800710370000047 ], [ -82.024380535999967, 28.80078177200005 ], [ -82.024368256999935, 28.800852904000067 ], [ -82.024353758999951, 28.800923712000042 ], [ -82.024337051999964, 28.800994140000057 ], [ -82.02424392599994, 28.801222753000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02172761199995, 28.808773700000074 ], [ -82.021758097999964, 28.808761178000054 ], [ -82.021812616999966, 28.808736847000034 ], [ -82.02186620599997, 28.808710963000067 ], [ -82.021918807999953, 28.808683553000037 ], [ -82.021970365999948, 28.808654646000036 ], [ -82.022385371999974, 28.808413502000064 ], [ -82.022385785999973, 28.808413261000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020285050999973, 28.809228248000068 ], [ -82.02028493499995, 28.809227512000064 ], [ -82.020280169999978, 28.809197287000075 ], [ -82.020268840999961, 28.809137556000053 ], [ -82.020255650999957, 28.809078121000027 ], [ -82.020240606999948, 28.809019029000069 ], [ -82.020223723999948, 28.808960324000054 ], [ -82.020205011999963, 28.808902050000029 ], [ -82.020193243999984, 28.808870708000029 ], [ -82.020179361999965, 28.808840043000032 ], [ -82.020163414999956, 28.808810167000047 ], [ -82.020145463999938, 28.808781188000069 ], [ -82.020125570999937, 28.808753209000031 ], [ -82.020103806999941, 28.808726332000049 ], [ -82.020080252999946, 28.808700653000074 ], [ -82.020054990999938, 28.808676265000031 ], [ -82.020017933999952, 28.808641070000078 ], [ -82.019982652999943, 28.808604487000025 ], [ -82.019949218999955, 28.808566581000036 ], [ -82.019917692999968, 28.808527428000048 ], [ -82.019888136999953, 28.808487099000047 ], [ -82.019860606999941, 28.808445676000076 ], [ -82.019835152999974, 28.808403232000046 ], [ -82.019811826999955, 28.808359852000024 ], [ -82.019790670999953, 28.808315616000073 ], [ -82.019771725999988, 28.808270610000079 ], [ -82.019755027999963, 28.808224918000064 ], [ -82.019740608999939, 28.808178629000054 ], [ -82.01972849699996, 28.808131829000047 ], [ -82.019718902999955, 28.808090636000031 ], [ -82.019714960999977, 28.808068689000038 ], [ -82.019713293999985, 28.808046518000026 ], [ -82.019713917999979, 28.808024304000071 ], [ -82.019716824999989, 28.808002232000035 ], [ -82.019721993999951, 28.807980483000051 ], [ -82.019729379999944, 28.807959237000034 ], [ -82.019738922999977, 28.807938668000077 ], [ -82.019750544999965, 28.807918947000076 ], [ -82.019764149999958, 28.807900234000044 ], [ -82.019779623999966, 28.807882686000028 ], [ -82.019796842999938, 28.807866446000048 ], [ -82.019815661999985, 28.807851647000064 ], [ -82.019835926999974, 28.80783841300007 ], [ -82.019857470999966, 28.807826852000062 ], [ -82.019880116999957, 28.807817060000048 ], [ -82.019903677999935, 28.807809117000033 ], [ -82.019927959999961, 28.80780308900006 ], [ -82.019952761999946, 28.807799024000076 ], [ -82.020476726999959, 28.807734670000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020590397999968, 28.810455321000063 ], [ -82.020464804999961, 28.810193014000049 ], [ -82.020442905999971, 28.810144752000042 ], [ -82.020423095999945, 28.810095796000041 ], [ -82.02040539799998, 28.810046215000057 ], [ -82.020389841999986, 28.809996082000055 ], [ -82.020376447, 28.809945466000045 ], [ -82.020365233999939, 28.809894440000051 ], [ -82.020356216999971, 28.809843078000029 ], [ -82.020349409999938, 28.80979145200007 ], [ -82.020297207999988, 28.809317461000035 ], [ -82.020289626999954, 28.809257271000035 ], [ -82.020285050999973, 28.809228248000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022703147999948, 28.807268615000055 ], [ -82.02270318799998, 28.807268608000072 ], [ -82.022732124999948, 28.807263309000064 ], [ -82.022774484999957, 28.807257667000044 ], [ -82.022817130999954, 28.807254081000053 ], [ -82.022859935999975, 28.807252560000052 ], [ -82.022902772999942, 28.807253110000033 ], [ -82.022945509999943, 28.80725572800003 ], [ -82.023362120999934, 28.80729139500005 ], [ -82.023387750999973, 28.807294658000046 ], [ -82.023412925999935, 28.807300007000038 ], [ -82.023437426999976, 28.807307396000056 ], [ -82.023461037999937, 28.807316763000074 ], [ -82.023483558999942, 28.807328025000061 ], [ -82.023504790999937, 28.807341084000029 ], [ -82.02352455099998, 28.807355827000038 ], [ -82.023542666999958, 28.807372127000065 ], [ -82.02355898199994, 28.807389840000042 ], [ -82.023573352999961, 28.807408815000031 ], [ -82.023585656999956, 28.807428885000036 ], [ -82.02367432799997, 28.80764504900003 ], [ -82.023739775999957, 28.807842626000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02172761199995, 28.808773700000074 ], [ -82.021656846999974, 28.808639516000028 ], [ -82.021645031999981, 28.808615641000074 ], [ -82.02163451399997, 28.808591301000035 ], [ -82.021367872999974, 28.807927401000029 ], [ -82.021358134999957, 28.807901064000077 ], [ -82.021349914999973, 28.807874329000072 ], [ -82.021343233999971, 28.807847263000042 ], [ -82.021338106999963, 28.807819935000055 ], [ -82.02130843499998, 28.807632520000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022385786999962, 28.808413263000034 ], [ -82.022345632999986, 28.808359653000025 ], [ -82.022325871999954, 28.808331458000055 ], [ -82.022308073999966, 28.808302267000045 ], [ -82.022292303999961, 28.808272184000032 ], [ -82.022278619999952, 28.808241320000036 ], [ -82.021975149999946, 28.807490926000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021015167999963, 28.808978985000067 ], [ -82.020761409999977, 28.808347157000071 ], [ -82.020745168999952, 28.808309646000055 ], [ -82.020726874, 28.808272875000057 ], [ -82.020706571999938, 28.808236931000067 ], [ -82.020684305999964, 28.808201899000039 ], [ -82.020660133999968, 28.808167863000051 ], [ -82.020634109999946, 28.808134903000052 ], [ -82.020609785999966, 28.808103892000076 ], [ -82.020587428999988, 28.808071755000071 ], [ -82.020567103999952, 28.808038586000066 ], [ -82.020548872999939, 28.808004487000062 ], [ -82.020532791999983, 28.807969558000025 ], [ -82.020518906999939, 28.807933907000063 ], [ -82.020507260999977, 28.807897638000043 ], [ -82.020497889999945, 28.807860862000041 ], [ -82.020490820999953, 28.807823689000031 ], [ -82.020476726999959, 28.807734672000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020285050999973, 28.809228248000068 ], [ -82.020430261999934, 28.809210536000023 ], [ -82.020465581999986, 28.809205316000032 ], [ -82.020500502999937, 28.809198323000032 ], [ -82.02053491099997, 28.80918957800003 ], [ -82.020568693999962, 28.809179110000059 ], [ -82.020601738999972, 28.809166954000034 ], [ -82.020633939999982, 28.809153149000053 ], [ -82.020665188999942, 28.809137742000075 ], [ -82.020695383999964, 28.809120782000036 ], [ -82.020724424999969, 28.809102326000072 ], [ -82.020757291999985, 28.809081321000065 ], [ -82.020791354999972, 28.809061850000035 ], [ -82.020826519999957, 28.809043965000058 ], [ -82.020862693999959, 28.80902771500007 ], [ -82.020899779, 28.809013144000062 ], [ -82.020937672999935, 28.809000291000075 ], [ -82.020976275999942, 28.808989191000023 ], [ -82.021014357999945, 28.808979198000031 ], [ -82.021015167999963, 28.808978985000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022385785999973, 28.808413261000055 ], [ -82.022801509999965, 28.808171701000049 ], [ -82.022821447999945, 28.808158965000075 ], [ -82.022840025999983, 28.808144724000044 ], [ -82.022857099999953, 28.808129089000033 ], [ -82.022872535999966, 28.808112185000027 ], [ -82.022886211999946, 28.808094144000052 ], [ -82.022898019999957, 28.808075107000036 ], [ -82.022907868999937, 28.808055223000054 ], [ -82.022915679999983, 28.808034650000025 ], [ -82.022921391999944, 28.808013549000066 ], [ -82.022924959999955, 28.807992085000024 ], [ -82.02292635699996, 28.807970427000043 ], [ -82.022925571999963, 28.807948744000043 ], [ -82.022922608999977, 28.80792720900007 ], [ -82.022917494999945, 28.807905989000062 ], [ -82.02291026599994, 28.807885251000073 ], [ -82.02278380499996, 28.807572556000025 ], [ -82.022775478999961, 28.807550504000062 ], [ -82.022768217999953, 28.807528163000029 ], [ -82.022762033999982, 28.807505571000036 ], [ -82.022703147999948, 28.807268615000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021015167999963, 28.808978985000067 ], [ -82.021473613999945, 28.808858685000075 ], [ -82.021531894999953, 28.808842476000052 ], [ -82.021589544999983, 28.808824600000037 ], [ -82.021646502999943, 28.808805078000034 ], [ -82.021702705999985, 28.808783930000061 ], [ -82.021726392999938, 28.808774201000062 ], [ -82.02172761199995, 28.808773700000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021975149999946, 28.807490926000071 ], [ -82.022608043999981, 28.807292367000059 ], [ -82.02264877999994, 28.80728068600007 ], [ -82.022690181999963, 28.807270990000063 ], [ -82.022703147999948, 28.807268615000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02130843499998, 28.807632520000027 ], [ -82.021409644999949, 28.807620089000068 ], [ -82.021481455999947, 28.807610328000067 ], [ -82.021552914999972, 28.807598733000077 ], [ -82.021623959999943, 28.807585311000025 ], [ -82.021694533999948, 28.807570076000047 ], [ -82.021764572999984, 28.807553038000037 ], [ -82.021834019999972, 28.807534214000043 ], [ -82.021902816999955, 28.807513619000076 ], [ -82.021974666999938, 28.807491077000066 ], [ -82.021975149999946, 28.807490926000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020476726999959, 28.807734670000059 ], [ -82.020477028999949, 28.807734633000052 ], [ -82.021308185999942, 28.807632550000051 ], [ -82.02130843499998, 28.807632520000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020590397999968, 28.810455321000063 ], [ -82.020931806999954, 28.810369304000062 ], [ -82.021474323999939, 28.810290782000038 ], [ -82.021699182999953, 28.810272936000047 ], [ -82.022245268999939, 28.81015872200004 ], [ -82.022752093999941, 28.81001595400005 ], [ -82.023183965999976, 28.809851771000069 ], [ -82.023765744999935, 28.809580513000071 ], [ -82.024272569999937, 28.809252147000052 ], [ -82.02443664499998, 28.80912332500003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025415097999939, 28.804913558000067 ], [ -82.025419780999982, 28.804203029000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025415097999939, 28.804913558000067 ], [ -82.025415325999973, 28.804913541000076 ], [ -82.025452119999954, 28.804912778000073 ], [ -82.02652348099997, 28.804918374000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02652348099997, 28.804918374000067 ], [ -82.026528224999936, 28.804209214000025 ], [ -82.026528227999961, 28.804208819000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025419780999982, 28.804203027000028 ], [ -82.025419850999981, 28.804203027000028 ], [ -82.026528227999961, 28.804208819000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02456588299998, 28.805278346000023 ], [ -82.024500997999951, 28.805211823000036 ], [ -82.024422475999984, 28.80510474700003 ], [ -82.024297553999986, 28.804876319000073 ], [ -82.024208323999972, 28.804672875000051 ], [ -82.02415121699994, 28.804412324000054 ], [ -82.024144078999939, 28.804262418000064 ], [ -82.024136940999938, 28.803748454000072 ], [ -82.024133370999948, 28.803259475000061 ], [ -82.024138129999983, 28.803070308000031 ], [ -82.024033433999989, 28.802689594000071 ], [ -82.023757416999956, 28.802299362000042 ], [ -82.023528987999953, 28.802099488000067 ], [ -82.023095606999959, 28.801882902000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02456588299998, 28.805278346000023 ], [ -82.024659128999986, 28.805211273000054 ], [ -82.024686215999964, 28.805192856000076 ], [ -82.024714407999966, 28.805175772000041 ], [ -82.024743620999971, 28.805160074000071 ], [ -82.024773765999953, 28.805145809000066 ], [ -82.025168035999968, 28.804971322000029 ], [ -82.025201394999954, 28.804957627000078 ], [ -82.02523561199996, 28.804945688000032 ], [ -82.025270567999939, 28.804935545000035 ], [ -82.025306140999987, 28.804927232000068 ], [ -82.025342209999963, 28.804920780000032 ], [ -82.025378646999968, 28.804916211000034 ], [ -82.025415097999939, 28.804913558000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025002943999937, 28.80420084800005 ], [ -82.025419780999982, 28.804203027000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026528227999961, 28.804208819000053 ], [ -82.026530517999959, 28.803866418000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026521023999976, 28.805285527000024 ], [ -82.02652347999998, 28.804918453000028 ], [ -82.02652348099997, 28.804918374000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019005525999944, 28.81271107200007 ], [ -82.019098966999934, 28.812570741000059 ], [ -82.019283505999965, 28.812360018000049 ], [ -82.019463056999939, 28.812113135000061 ], [ -82.019567796, 28.811855030000061 ], [ -82.019575201999942, 28.811752105000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018597625999973, 28.814008839000053 ], [ -82.018608262999976, 28.813852835000034 ], [ -82.018611766999982, 28.813393753000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01981617499996, 28.811080697000079 ], [ -82.019875325999976, 28.81098320500007 ], [ -82.020053785999949, 28.810765485000047 ], [ -82.020328612999947, 28.810576317000027 ], [ -82.020590397999968, 28.810455321000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025437623999949, 28.806321445000037 ], [ -82.025293358999988, 28.806032737000066 ], [ -82.025132744999951, 28.805822154000055 ], [ -82.024922162999985, 28.80559015700004 ], [ -82.024693733999982, 28.805393851000076 ], [ -82.02456588299998, 28.805278346000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02443664499998, 28.80912332500003 ], [ -82.02464376599994, 28.808941628000071 ], [ -82.024890039999946, 28.808709630000067 ], [ -82.025189851999983, 28.808349142000054 ], [ -82.025296927999989, 28.808181390000072 ], [ -82.025389726999947, 28.807995792000042 ], [ -82.02545397199998, 28.807738810000046 ], [ -82.025543201999938, 28.807246262000035 ], [ -82.025568185999987, 28.807021403000078 ], [ -82.025553909999985, 28.806814390000056 ], [ -82.025528924999946, 28.806643068000028 ], [ -82.025478956999962, 28.806432486000062 ], [ -82.025437623999949, 28.806321445000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026050684999973, 28.807055655000056 ], [ -82.026411091999989, 28.807180584000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025356686999942, 28.811133429000051 ], [ -82.025080719999949, 28.810392123000042 ], [ -82.025065144999985, 28.810347771000067 ], [ -82.025051279999957, 28.810302981000063 ], [ -82.025039137999954, 28.810257804000059 ], [ -82.025028734999978, 28.810212292000074 ], [ -82.025004206999938, 28.810094765000031 ], [ -82.024993240999947, 28.810046997000029 ], [ -82.024980359999972, 28.809999601000072 ], [ -82.024965579999957, 28.809952636000048 ], [ -82.024948919999986, 28.809906163000051 ], [ -82.024930400999949, 28.809860238000056 ], [ -82.024910044999956, 28.809814921000054 ], [ -82.024887879999937, 28.809770266000044 ], [ -82.02486393099997, 28.809726333000071 ], [ -82.02476833299994, 28.809558636000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026252632999956, 28.809075509000024 ], [ -82.026343226999984, 28.809046805000037 ], [ -82.026367309999955, 28.809038031000057 ], [ -82.026390352999954, 28.809027308000054 ], [ -82.026412154999946, 28.809014731000048 ], [ -82.026432523999972, 28.809000411000056 ], [ -82.026451279999947, 28.808984472000077 ], [ -82.026468257999966, 28.808967057000075 ], [ -82.026483308999957, 28.808948317000045 ], [ -82.026496300999952, 28.80892841800005 ], [ -82.026507118999973, 28.80890753400007 ], [ -82.026515668999934, 28.808885850000024 ], [ -82.026521874999958, 28.808863555000073 ], [ -82.026525681999942, 28.808840847000056 ], [ -82.026527057999942, 28.808817924000039 ], [ -82.026529932999949, 28.808388212000068 ], [ -82.02652920099996, 28.808337244000029 ], [ -82.026526325999953, 28.808286336000037 ], [ -82.026521309999964, 28.808235555000067 ], [ -82.026514160999966, 28.808184974000028 ], [ -82.026504887999977, 28.808134661000054 ], [ -82.026493504999962, 28.80808468500004 ], [ -82.026480026999934, 28.808035115000052 ], [ -82.026464472999976, 28.807986019000055 ], [ -82.026347800999986, 28.807642485000031 ], [ -82.026338058999954, 28.807610273000023 ], [ -82.026330547999976, 28.807577600000059 ], [ -82.026325299999939, 28.807544586000063 ], [ -82.02632233199995, 28.807511353000052 ], [ -82.026321654999947, 28.807478023000044 ], [ -82.026323270999967, 28.807444717000067 ], [ -82.026327174999949, 28.807411559000059 ], [ -82.026333351999938, 28.807378670000048 ], [ -82.026341780999985, 28.807346172000052 ], [ -82.026352427999939, 28.807314182000027 ], [ -82.026365255999963, 28.807282819000079 ], [ -82.026411091999989, 28.807180584000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026411091999989, 28.807180584000037 ], [ -82.026496984999937, 28.806989008000073 ], [ -82.026510022999958, 28.80695707700005 ], [ -82.026520800999947, 28.806924498000058 ], [ -82.026529277999941, 28.806891397000072 ], [ -82.026535420999949, 28.806857898000032 ], [ -82.026539206999985, 28.806824129000063 ], [ -82.02654062299996, 28.80679021800006 ], [ -82.026541794999957, 28.806615001000068 ], [ -82.026540808999982, 28.806592915000067 ], [ -82.026537566999934, 28.806570995000072 ], [ -82.026532090999979, 28.806549424000025 ], [ -82.026524428999949, 28.806528375000028 ], [ -82.026514641999938, 28.80650802200006 ], [ -82.026502809999954, 28.806488529000035 ], [ -82.026489029999937, 28.806470055000034 ], [ -82.026473413999952, 28.806452751000052 ], [ -82.026456088999964, 28.806436760000054 ], [ -82.02643719799994, 28.806422209000061 ], [ -82.026399363999985, 28.806396981000034 ], [ -82.026360126999975, 28.806373473000065 ], [ -82.026319590999947, 28.80635174400004 ], [ -82.026277856999968, 28.806331852000028 ], [ -82.026235032999978, 28.806313847000069 ], [ -82.026191227999959, 28.806297775000075 ], [ -82.026146554999968, 28.806283678000057 ], [ -82.026101129999972, 28.806271591000041 ], [ -82.026055067999948, 28.80626154600003 ], [ -82.026008487999945, 28.806253568000045 ], [ -82.025961507999966, 28.806247678000034 ], [ -82.025914249999971, 28.806243891000065 ], [ -82.025866834999988, 28.806242217000033 ], [ -82.025819384999977, 28.806242660000066 ], [ -82.025772020999966, 28.806245219000061 ], [ -82.025724864999972, 28.806249887000035 ], [ -82.025678035999988, 28.806256653000048 ], [ -82.025631658999941, 28.806265498000073 ], [ -82.025585848999981, 28.806276401000048 ], [ -82.025540723999939, 28.806289332000063 ], [ -82.025437623999949, 28.806321445000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02476833299994, 28.809558636000077 ], [ -82.024768011999981, 28.809558073000062 ], [ -82.024661275999961, 28.809370837000074 ], [ -82.024645110999984, 28.809344316000079 ], [ -82.024627321999958, 28.809318612000027 ], [ -82.024607963999983, 28.809293805000038 ], [ -82.02458709299998, 28.809269967000034 ], [ -82.024564773999941, 28.809247170000049 ], [ -82.02443664499998, 28.80912332500003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025821205999989, 28.811107999000058 ], [ -82.025821650999944, 28.811108001000036 ], [ -82.026233802999968, 28.811110142000075 ], [ -82.026259452999966, 28.811109231000046 ], [ -82.026284896999982, 28.811106240000072 ], [ -82.02630991999996, 28.81110119300007 ], [ -82.026334306999956, 28.811094135000076 ], [ -82.026357850999943, 28.811085124000044 ], [ -82.026380349999954, 28.811074240000039 ], [ -82.026401612999962, 28.811061572000028 ], [ -82.026421457999959, 28.811047232000078 ], [ -82.02643971599997, 28.811031339000067 ], [ -82.026456231999987, 28.811014030000024 ], [ -82.026470862999986, 28.810995454000079 ], [ -82.026483485999961, 28.810975768000048 ], [ -82.026493992999974, 28.810955139000043 ], [ -82.026502293999954, 28.810933745000057 ], [ -82.026508317999969, 28.81091176700005 ], [ -82.026512013999934, 28.810889394000071 ], [ -82.026513350999949, 28.810866816000043 ], [ -82.026519308, 28.809976412000026 ], [ -82.026518478999947, 28.809922757000038 ], [ -82.026515272999973, 28.809869172000049 ], [ -82.026509694999959, 28.809815738000054 ], [ -82.026501755999959, 28.809762535000061 ], [ -82.026491465999982, 28.809709646000044 ], [ -82.026478839999982, 28.809657151000067 ], [ -82.026463898999964, 28.809605130000079 ], [ -82.02644666599997, 28.809553662000042 ], [ -82.026427164999973, 28.809502826000028 ], [ -82.026252632999956, 28.809075509000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025821205999989, 28.811107999000058 ], [ -82.025793291999946, 28.810864682000044 ], [ -82.025787776999948, 28.810806250000041 ], [ -82.025784621999946, 28.810747684000034 ], [ -82.025783831999945, 28.810689054000079 ], [ -82.025788048999971, 28.81005940600005 ], [ -82.025787194999964, 28.810027221000041 ], [ -82.025784204, 28.809995135000065 ], [ -82.025779087999979, 28.809963259000028 ], [ -82.025771861999942, 28.809931702000029 ], [ -82.025762552999936, 28.809900570000025 ], [ -82.025751192999962, 28.809869971000069 ], [ -82.025521343999969, 28.809307209000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02476833299994, 28.809558636000077 ], [ -82.024801631999935, 28.809544026000026 ], [ -82.024858513999959, 28.809521124000071 ], [ -82.024916232999942, 28.809499906000042 ], [ -82.024974722999957, 28.809480398000062 ], [ -82.025521343999969, 28.809307209000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025521343999969, 28.809307209000053 ], [ -82.025521373999936, 28.809307199000045 ], [ -82.02625261999998, 28.809075513000039 ], [ -82.026252632999956, 28.809075509000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025356686999942, 28.811133429000051 ], [ -82.02540309799997, 28.811120026000026 ], [ -82.025427328999967, 28.811113970000065 ], [ -82.025452036, 28.811109654000063 ], [ -82.025477056999989, 28.811107106000065 ], [ -82.025502228999983, 28.811106342000073 ], [ -82.025821205999989, 28.811107999000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023876983999969, 28.81152439400006 ], [ -82.023600951999981, 28.810404635000054 ], [ -82.023596696999959, 28.810382536000077 ], [ -82.023594754999976, 28.810360187000072 ], [ -82.023595141999976, 28.81033777600004 ], [ -82.023597650999989, 28.810317167000051 ], [ -82.023597663999965, 28.810317060000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024551092999957, 28.812133334000066 ], [ -82.024253256999941, 28.81213494800005 ], [ -82.024228029999961, 28.812134074000028 ], [ -82.024202995999985, 28.81213118900007 ], [ -82.024178362999976, 28.812126314000068 ], [ -82.024154332999956, 28.812119489000054 ], [ -82.02413110599997, 28.812110773000029 ], [ -82.024108872999989, 28.812100236000049 ], [ -82.024087817999941, 28.812087965000046 ], [ -82.024068113999988, 28.812074062000079 ], [ -82.02404992299995, 28.812058642000068 ], [ -82.024033395999936, 28.812041831000045 ], [ -82.024018669999975, 28.812023769000064 ], [ -82.024005866999971, 28.812004604000037 ], [ -82.023995089999971, 28.811984495000047 ], [ -82.023986429999979, 28.811963607000052 ], [ -82.023979957999984, 28.811942114000033 ], [ -82.023876983999969, 28.81152439400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025325197999962, 28.811681201000056 ], [ -82.025367138999968, 28.811696209000047 ], [ -82.025412019999976, 28.811709976000031 ], [ -82.025457635999942, 28.811721721000026 ], [ -82.025503869999966, 28.811731413000075 ], [ -82.025550601999953, 28.811739028000034 ], [ -82.025597711999978, 28.811744544000078 ], [ -82.025645079999947, 28.811747951000029 ], [ -82.025692582999966, 28.811749236000026 ], [ -82.026229356999977, 28.811751767000032 ], [ -82.02625500299996, 28.811752932000047 ], [ -82.026280415999963, 28.811756178000053 ], [ -82.026305380999986, 28.811761476000072 ], [ -82.026329683999961, 28.811768781000069 ], [ -82.026353117999975, 28.811778029000038 ], [ -82.026375481999935, 28.811789144000045 ], [ -82.026396586999965, 28.811802029000035 ], [ -82.026416250999944, 28.811816575000023 ], [ -82.026434305999942, 28.811832657000025 ], [ -82.026450598999986, 28.811850137000079 ], [ -82.026464990999955, 28.811868869000079 ], [ -82.026477357999966, 28.811888690000046 ], [ -82.026487594999935, 28.81190943200005 ], [ -82.026495614999988, 28.811930917000041 ], [ -82.026501348999943, 28.811952963000067 ], [ -82.026504748999969, 28.811975381000025 ], [ -82.026505782999948, 28.811997979000068 ], [ -82.026504518999957, 28.812187094000024 ], [ -82.026503228999957, 28.81220924400003 ], [ -82.026499669999964, 28.812231199000053 ], [ -82.026493866999942, 28.812252781000041 ], [ -82.026485870999977, 28.812273811000068 ], [ -82.026475746999949, 28.812294118000068 ], [ -82.026463576999959, 28.812313535000044 ], [ -82.02644946199996, 28.812331900000061 ], [ -82.026433516999987, 28.812349066000024 ], [ -82.026415873999952, 28.812364890000026 ], [ -82.026396676, 28.812379243000066 ], [ -82.026376081999956, 28.812392006000039 ], [ -82.026354261999984, 28.812403075000077 ], [ -82.026331391999975, 28.812412360000053 ], [ -82.026307662999955, 28.812419783000053 ], [ -82.026283267999986, 28.812425284000028 ], [ -82.026258408999979, 28.812428817000068 ], [ -82.026233286999968, 28.812430354000071 ], [ -82.026208111999949, 28.81242988300005 ], [ -82.025570756999969, 28.812392446000047 ], [ -82.025510936999979, 28.812387913000066 ], [ -82.025451356999952, 28.812381358000039 ], [ -82.025392107999949, 28.81237279000004 ], [ -82.025333276999959, 28.812362221000058 ], [ -82.025274950999972, 28.812349669000071 ], [ -82.025217215999987, 28.81233515100007 ], [ -82.025160157999949, 28.812318688000062 ], [ -82.025146793999966, 28.812314324000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025146793999966, 28.812314324000056 ], [ -82.025182466, 28.812226851000048 ], [ -82.025194624999983, 28.812193803000071 ], [ -82.025204389999942, 28.812160145000064 ], [ -82.025325197999962, 28.811681201000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025325197999962, 28.811681201000056 ], [ -82.025383127999987, 28.811451539000075 ], [ -82.02539010199996, 28.811419401000023 ], [ -82.025394894999977, 28.811386955000046 ], [ -82.025397487999953, 28.811354315000074 ], [ -82.025397872999974, 28.811321597000074 ], [ -82.025396048999937, 28.81128891700007 ], [ -82.025392021999949, 28.811256391000029 ], [ -82.025385806999964, 28.811224132000063 ], [ -82.025377424999988, 28.811192256000027 ], [ -82.025366904999942, 28.811160876000031 ], [ -82.025356701999954, 28.811133470000073 ], [ -82.025356686999942, 28.811133429000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024583336999967, 28.811489910000034 ], [ -82.024618966999981, 28.81149034300006 ], [ -82.024672979999934, 28.811492901000065 ], [ -82.024726832999988, 28.811497355000029 ], [ -82.024780440999962, 28.81150369900007 ], [ -82.024833718999957, 28.811511921000033 ], [ -82.024886581999965, 28.811522009000043 ], [ -82.024938946999953, 28.811533946000054 ], [ -82.024990727999977, 28.811547715000074 ], [ -82.025041843999986, 28.811563293000063 ], [ -82.025092214999972, 28.811580654000068 ], [ -82.025141756999972, 28.811599772000079 ], [ -82.025190394999981, 28.811620616000027 ], [ -82.025238049999984, 28.811643152000045 ], [ -82.025280041999963, 28.811662754000054 ], [ -82.025323108999942, 28.811680454000054 ], [ -82.025325197999962, 28.811681201000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024583336999967, 28.811489910000034 ], [ -82.024583133999954, 28.811463280000055 ], [ -82.024582093999982, 28.811434743000063 ], [ -82.024579372999938, 28.811406294000051 ], [ -82.024574979999954, 28.811378006000041 ], [ -82.024568926999962, 28.811349957000061 ], [ -82.024268752999944, 28.810132294000027 ], [ -82.024259678999954, 28.810100182000042 ], [ -82.024248431999979, 28.810068609000041 ], [ -82.024235046999934, 28.810037688000079 ], [ -82.02421957699994, 28.810007532000043 ], [ -82.024202074999948, 28.809978250000029 ], [ -82.024182605999954, 28.809949948000053 ], [ -82.024157575999936, 28.809915876000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024157575999936, 28.809915876000048 ], [ -82.024211058999981, 28.809884817000068 ], [ -82.024302310999985, 28.809829728000068 ], [ -82.024392424999974, 28.809773206000045 ], [ -82.024481372999958, 28.809715267000058 ], [ -82.024531943999989, 28.809682855000062 ], [ -82.024583715999938, 28.809651947000077 ], [ -82.024636629999975, 28.809622578000074 ], [ -82.024690627999973, 28.809594782000033 ], [ -82.024745648999954, 28.809568587000058 ], [ -82.024768331999951, 28.809558636000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023876983999969, 28.81152439400006 ], [ -82.02398012499998, 28.811504672000069 ], [ -82.024011972999972, 28.811499340000069 ], [ -82.024044089999961, 28.811495471000057 ], [ -82.024076391999984, 28.811493075000044 ], [ -82.024108791999936, 28.811492158000078 ], [ -82.024564882999982, 28.811489686000073 ], [ -82.024583336999967, 28.811489910000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022085854999943, 28.810703209000053 ], [ -82.022211905999939, 28.810679278000066 ], [ -82.022330530999966, 28.810653193000064 ], [ -82.022448549999979, 28.81062504700003 ], [ -82.022565911999948, 28.810594852000065 ], [ -82.022682573999987, 28.810562620000042 ], [ -82.022798490999946, 28.81052836300006 ], [ -82.022861273999979, 28.810508585000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023597663999965, 28.810317060000045 ], [ -82.023597854999934, 28.810315489000061 ], [ -82.023602871999969, 28.810293515000069 ], [ -82.023610150999957, 28.810272037000061 ], [ -82.023619627999949, 28.810251235000067 ], [ -82.023631226999953, 28.810231284000054 ], [ -82.023644849999982, 28.810212351000075 ], [ -82.023660380999956, 28.810194595000041 ], [ -82.023677691999978, 28.810178165000025 ], [ -82.023696635999954, 28.810163198000055 ], [ -82.023717054999963, 28.810149821000039 ], [ -82.023738777999938, 28.810138145000053 ], [ -82.02383526999995, 28.810090483000067 ], [ -82.02393077499994, 28.810041303000048 ], [ -82.024025260999963, 28.809990621000054 ], [ -82.024118699999974, 28.809938453000029 ], [ -82.024157396999954, 28.809915980000028 ], [ -82.024157575999936, 28.809915876000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02389852999994, 28.813041157000043 ], [ -82.023898691999989, 28.813041156000054 ], [ -82.024424694999936, 28.813038308000046 ], [ -82.024442010999962, 28.813037214000076 ], [ -82.02445901599998, 28.81303414000007 ], [ -82.024475419999987, 28.813029135000079 ], [ -82.024490941999943, 28.81302228900006 ], [ -82.024505316999978, 28.813013716000057 ], [ -82.024518297999975, 28.813003565000031 ], [ -82.024529663999942, 28.812992008000037 ], [ -82.024539218999962, 28.812979244000076 ], [ -82.024546800999985, 28.812965489000078 ], [ -82.024552279999966, 28.812950981000029 ], [ -82.024555561999989, 28.812935968000033 ], [ -82.024556589999975, 28.812920705000067 ], [ -82.024553981999986, 28.812547253000048 ], [ -82.024553982999976, 28.812547240000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025146793999966, 28.812314324000056 ], [ -82.025103859999945, 28.812300305000065 ], [ -82.025048406999986, 28.812280029000078 ], [ -82.024993878999965, 28.812257891000058 ], [ -82.02494035899997, 28.812233923000065 ], [ -82.024887923999984, 28.812208160000068 ], [ -82.024855366999986, 28.812192553000045 ], [ -82.024821813999949, 28.812178675000041 ], [ -82.024787385999957, 28.812166575000049 ], [ -82.024752202999935, 28.812156295000079 ], [ -82.02471639099997, 28.812147872000025 ], [ -82.024680072999956, 28.812141334000046 ], [ -82.024643377999951, 28.812136705000057 ], [ -82.024606438999967, 28.81213400200005 ], [ -82.024569380999935, 28.812133235000033 ], [ -82.024551092999957, 28.812133334000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023195068999939, 28.811862663000056 ], [ -82.022861273999979, 28.810508585000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022861273999979, 28.810508585000036 ], [ -82.022913614999936, 28.810492096000075 ], [ -82.023027902999956, 28.810453831000075 ], [ -82.023141309999971, 28.810413584000059 ], [ -82.023253791999934, 28.810371370000041 ], [ -82.023365303999981, 28.810327207000057 ], [ -82.023386535999975, 28.810319496000034 ], [ -82.023408417999974, 28.810313354000073 ], [ -82.023430800999961, 28.810308826000039 ], [ -82.023453531999962, 28.810305940000035 ], [ -82.023476455999969, 28.810304717000065 ], [ -82.023499416999982, 28.810305166000035 ], [ -82.023522255999978, 28.810307283000043 ], [ -82.023597663999965, 28.810317060000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023195068999939, 28.811862663000056 ], [ -82.022517532999984, 28.811947518000068 ], [ -82.02249951899995, 28.811948680000057 ], [ -82.02248149199994, 28.811947677000035 ], [ -82.022463786999936, 28.811944528000026 ], [ -82.022446731999935, 28.811939291000044 ], [ -82.022430641999961, 28.811932063000029 ], [ -82.022415815999977, 28.811922977000052 ], [ -82.022402527999986, 28.81191220200003 ], [ -82.022391022999955, 28.811899938000067 ], [ -82.022381515999939, 28.811886412000035 ], [ -82.022374181999965, 28.811871874000076 ], [ -82.022369156999957, 28.811856594000062 ], [ -82.022085854999943, 28.810703209000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022085854999943, 28.810703209000053 ], [ -82.021996123999941, 28.810343241000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023287529999948, 28.812241043000029 ], [ -82.023195068999939, 28.811862663000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023895105999941, 28.812550809000072 ], [ -82.023895277999941, 28.812550808000026 ], [ -82.024553982999976, 28.812547240000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024553982999976, 28.812547240000072 ], [ -82.024551092999957, 28.812133334000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02323970599997, 28.813044725000054 ], [ -82.023236251999947, 28.812554401000057 ], [ -82.023236251999947, 28.812554377000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02389852999994, 28.813041159000079 ], [ -82.023895105999941, 28.812550809000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02323970599997, 28.813044725000054 ], [ -82.02389852999994, 28.813041157000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023236251999947, 28.812554377000026 ], [ -82.023895105999941, 28.812550809000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022993209999981, 28.813046060000033 ], [ -82.023239648999947, 28.813044725000054 ], [ -82.02323970599997, 28.813044725000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023236251999947, 28.812554377000026 ], [ -82.023234207999963, 28.81226422900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023170209999989, 28.848993058000076 ], [ -82.024774638999986, 28.849634939000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02481099299996, 28.849510790000068 ], [ -82.024519416999965, 28.849394717000052 ], [ -82.023406483999963, 28.848948207000035 ], [ -82.023230727999987, 28.84887817200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020530338999947, 28.847799391000024 ], [ -82.02034016999994, 28.847723313000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012714048999953, 28.843612087000054 ], [ -82.012713331999976, 28.843611590000023 ], [ -82.012697399999979, 28.843600551000065 ], [ -82.012494603999983, 28.84345773900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.250482114999954, 28.683753972000034 ], [ -82.250470388999986, 28.683663703000036 ], [ -82.250322186999938, 28.68252844400007 ], [ -82.250196316999961, 28.681604854000057 ], [ -82.250003770999967, 28.680174565000073 ], [ -82.249933342999952, 28.679619759000047 ], [ -82.249785265999947, 28.678532615000051 ], [ -82.249500027999943, 28.676355097000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249018024999941, 28.664269142000023 ], [ -82.249020642999938, 28.663406900000041 ], [ -82.249021635999952, 28.662975060000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.229713415999981, 28.640046275000032 ], [ -82.230195003999938, 28.640046320000067 ], [ -82.230198308999945, 28.640046320000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018868982999948, 28.940887326000052 ], [ -82.018995918999963, 28.940827451000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018995918999963, 28.940827451000075 ], [ -82.019151593999936, 28.940619085000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019676775999983, 28.94103308800004 ], [ -82.01969629599995, 28.941498072000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210377925999978, 28.603253754000036 ], [ -82.210466634999989, 28.603269492000038 ], [ -82.210546933999979, 28.603292976000034 ], [ -82.210620539, 28.60331351800005 ], [ -82.210643482999956, 28.603317295000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974158491999958, 28.823989840000024 ], [ -81.973649792999936, 28.823917409000046 ], [ -81.973052358999951, 28.823838476000049 ], [ -81.972411389999934, 28.823748881000029 ], [ -81.971816378999961, 28.823663554000063 ], [ -81.971245554999939, 28.82358461900003 ], [ -81.97050300099994, 28.823482213000034 ], [ -81.969966042999943, 28.823407540000062 ], [ -81.969196885999963, 28.823300861000064 ], [ -81.968594620999966, 28.823217647000035 ], [ -81.968524717999969, 28.82320770900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986580475999972, 28.823644528000045 ], [ -81.98629409199998, 28.823583151000037 ], [ -81.985988358999975, 28.823531998000078 ], [ -81.985682623999935, 28.823491067000077 ], [ -81.985601696999936, 28.823483659000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990993599999968, 28.82431930100006 ], [ -81.989968254999951, 28.823600702000078 ], [ -81.989812235999977, 28.823493914000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017063673999985, 28.810395304000053 ], [ -82.017279517999953, 28.810100594000062 ], [ -82.017303595999977, 28.810069609000038 ], [ -82.017329558999961, 28.810039828000072 ], [ -82.017357327999946, 28.810011340000074 ], [ -82.017386822999981, 28.809984229000065 ], [ -82.01741795099997, 28.809958577000032 ], [ -82.017450624999981, 28.809934460000079 ], [ -82.017484745, 28.809911949000025 ], [ -82.017520207999951, 28.809891113000049 ], [ -82.017556910999986, 28.809872013000074 ], [ -82.017594741999972, 28.809854706000067 ], [ -82.017633589999946, 28.809839243000056 ], [ -82.017673337999952, 28.809825672000045 ], [ -82.017713867999987, 28.80981403100003 ], [ -82.017755058999967, 28.809804356000029 ], [ -82.017796787999941, 28.809796677000065 ], [ -82.017838930999972, 28.809791016000077 ], [ -82.017881361999969, 28.809787388000075 ], [ -82.017923954999958, 28.809785807000026 ], [ -82.017966580999939, 28.809786275000079 ], [ -82.018009116999963, 28.809788792000063 ], [ -82.018051430999947, 28.809793350000064 ], [ -82.018093400999987, 28.809799936000047 ], [ -82.018134898999961, 28.809808531000044 ], [ -82.018175803999952, 28.809819107000067 ], [ -82.018215990999977, 28.809831634000034 ], [ -82.018255342999964, 28.809846076000042 ], [ -82.01829374, 28.809862386000077 ], [ -82.018641826999954, 28.810020713000029 ], [ -82.018674357999942, 28.810036608000075 ], [ -82.018705755999974, 28.810054181000055 ], [ -82.018735911999954, 28.810073369000065 ], [ -82.018764715999964, 28.810094105000076 ], [ -82.018792067999982, 28.810116314000027 ], [ -82.018817868999975, 28.810139918000061 ], [ -82.018842029999973, 28.810164833000044 ], [ -82.018864461999954, 28.810190971000054 ], [ -82.01888508899998, 28.810218239000051 ], [ -82.018903834999946, 28.810246541000026 ], [ -82.01914654899997, 28.810639406000064 ], [ -82.019167425999967, 28.810671149000029 ], [ -82.019190195999954, 28.810701867000034 ], [ -82.019214792999946, 28.810731472000043 ], [ -82.019241146999946, 28.810759879000045 ], [ -82.019269184999985, 28.810787007000044 ], [ -82.019290957999942, 28.810805939000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018883545999984, 28.811872495000046 ], [ -82.018900837999979, 28.811843612000075 ], [ -82.018929645999947, 28.811791151000079 ], [ -82.018956367999976, 28.811737841000024 ], [ -82.018980967999937, 28.81168374400005 ], [ -82.019003417999954, 28.811628927000072 ], [ -82.019023691999962, 28.81157345500003 ], [ -82.01904176499994, 28.811517397000046 ], [ -82.019057613999962, 28.811460819000047 ], [ -82.019071219999944, 28.811403790000043 ], [ -82.019082567999988, 28.811346379000042 ], [ -82.019091642999967, 28.811288655000055 ], [ -82.019098434999989, 28.81123068900007 ], [ -82.019102933999989, 28.811172549000048 ], [ -82.019105929999967, 28.811139850000075 ], [ -82.019111132999967, 28.811107366000044 ], [ -82.019118524999953, 28.811075213000038 ], [ -82.019128081999952, 28.811043505000043 ], [ -82.019139766999956, 28.811012355000059 ], [ -82.019153539999934, 28.810981874000049 ], [ -82.01916935099996, 28.810952170000064 ], [ -82.019187144999989, 28.810923351000042 ], [ -82.019206857999961, 28.810895515000027 ], [ -82.01922842, 28.810868766000056 ], [ -82.019251753999981, 28.810843194000029 ], [ -82.019276777999949, 28.810818894000079 ], [ -82.019290957999942, 28.810805939000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019290957999942, 28.810805939000034 ], [ -82.019298824999964, 28.810812780000049 ], [ -82.019329983999967, 28.810837124000045 ], [ -82.019362572999967, 28.810859970000024 ], [ -82.019396497999935, 28.810881252000058 ], [ -82.019431663999967, 28.810900910000043 ], [ -82.019467970999983, 28.81091888800006 ], [ -82.01981617499996, 28.811080697000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018877898999961, 28.812622549000025 ], [ -82.018822254999975, 28.812589325000033 ], [ -82.018755903999988, 28.812552334000031 ], [ -82.018688266999959, 28.812517197000034 ], [ -82.018619408999939, 28.812483951000047 ], [ -82.018549397999948, 28.812452627000027 ], [ -82.018478304999974, 28.812423256000045 ], [ -82.018431212999985, 28.812405369000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017567483999983, 28.811581004000061 ], [ -82.017593075999969, 28.811581668000031 ], [ -82.017682387999969, 28.811586163000072 ], [ -82.017771523999954, 28.811592831000041 ], [ -82.017860417999941, 28.811601665000069 ], [ -82.017949000999977, 28.811612661000026 ], [ -82.018037204999985, 28.811625807000041 ], [ -82.018124960999955, 28.811641096000074 ], [ -82.018212205999987, 28.811658515000033 ], [ -82.018298869999967, 28.811678050000069 ], [ -82.018384887999957, 28.811699689000079 ], [ -82.018470194999963, 28.811723412000049 ], [ -82.018554723999955, 28.811749202000044 ], [ -82.018638411999973, 28.811777040000038 ], [ -82.018721193999966, 28.811806904000036 ], [ -82.018803008999953, 28.811838773000034 ], [ -82.018883545999984, 28.811872495000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018431212999985, 28.812405369000032 ], [ -82.018433494999954, 28.812400659000048 ], [ -82.01844456799995, 28.812380139000027 ], [ -82.018457527999942, 28.812360493000028 ], [ -82.018472282999937, 28.812341857000035 ], [ -82.018488734999949, 28.812324357000023 ], [ -82.018506770999977, 28.812308112000039 ], [ -82.018554149999943, 28.812267435000024 ], [ -82.018599894999966, 28.812225331000036 ], [ -82.018643950999945, 28.812181853000027 ], [ -82.01868626299995, 28.812137052000026 ], [ -82.018726781999987, 28.812090984000065 ], [ -82.018765458999951, 28.81204370100005 ], [ -82.01880224599995, 28.811995265000064 ], [ -82.018837098999938, 28.811945730000048 ], [ -82.018869975999962, 28.811895159000073 ], [ -82.018883545999984, 28.811872495000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016852380999978, 28.811585147000073 ], [ -82.01684860499995, 28.811308108000048 ], [ -82.016846949999945, 28.811274152000067 ], [ -82.016842915999973, 28.811240349000059 ], [ -82.016836520999959, 28.81120683000006 ], [ -82.016827785999965, 28.811173724000071 ], [ -82.01681674699995, 28.811141156000076 ], [ -82.016803444999937, 28.811109250000072 ], [ -82.016787931999943, 28.811078129000066 ], [ -82.01677026599998, 28.81104791100006 ], [ -82.016750512999977, 28.811018712000077 ], [ -82.01672875099996, 28.810990644000071 ], [ -82.016705062999961, 28.810963812000068 ], [ -82.016679537999948, 28.810938320000048 ], [ -82.016635411999971, 28.810896871000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016861852999966, 28.812279965000073 ], [ -82.016852380999978, 28.811585163000075 ], [ -82.016852380999978, 28.811585147000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018431212999985, 28.812405369000032 ], [ -82.01840619799998, 28.812395867000077 ], [ -82.018333149999989, 28.812370489000045 ], [ -82.018259230999945, 28.812347144000057 ], [ -82.018184516999952, 28.812325858000065 ], [ -82.018109079999988, 28.812306651000029 ], [ -82.018032993999952, 28.812289540000052 ], [ -82.017956336999987, 28.812274545000037 ], [ -82.017879180999955, 28.812261678000027 ], [ -82.017801604999988, 28.812250955000025 ], [ -82.017723683999975, 28.812242383000068 ], [ -82.017645494999954, 28.812235972000053 ], [ -82.017567116999942, 28.812231730000065 ], [ -82.017488625999988, 28.812229658000035 ], [ -82.017410100999939, 28.812229762000072 ], [ -82.017331615999979, 28.812232037000058 ], [ -82.017253252999978, 28.812236485000028 ], [ -82.017175086999941, 28.812243100000046 ], [ -82.017097194999963, 28.812251875000072 ], [ -82.017019654999956, 28.812262802000077 ], [ -82.016969352, 28.81226986300004 ], [ -82.016918815999986, 28.812275476000025 ], [ -82.016868098999964, 28.812279634000049 ], [ -82.016861852999966, 28.812279965000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016255094999963, 28.812244934000034 ], [ -82.016245567999988, 28.812239328000032 ], [ -82.016225639999959, 28.812225094000041 ], [ -82.016207286999986, 28.812209301000053 ], [ -82.016190666999989, 28.812192085000049 ], [ -82.016175918999977, 28.812173593000068 ], [ -82.016163171999949, 28.812153981000051 ], [ -82.016152530999989, 28.812133417000041 ], [ -82.016144089999955, 28.812112078000041 ], [ -82.016137918999959, 28.812090143000034 ], [ -82.016134071999943, 28.812067800000079 ], [ -82.016132579999976, 28.812045241000078 ], [ -82.016123063999942, 28.81134680200006 ], [ -82.016123909999976, 28.811324550000052 ], [ -82.016127049999966, 28.811302458000057 ], [ -82.016132455, 28.811280708000027 ], [ -82.016135994999956, 28.811270856000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017567483999983, 28.811581004000061 ], [ -82.017563640999981, 28.811300546000041 ], [ -82.017561784999941, 28.811251052000046 ], [ -82.017557573999966, 28.811201671000049 ], [ -82.017551013999935, 28.811152489000051 ], [ -82.017542115999959, 28.811103593000041 ], [ -82.017530895999982, 28.81105506800003 ], [ -82.017517374999954, 28.811007001000064 ], [ -82.017501574999983, 28.81095947600005 ], [ -82.017483523999942, 28.810912577000067 ], [ -82.017463256999974, 28.810866387000033 ], [ -82.017440804999978, 28.810820985000078 ], [ -82.017416209999965, 28.810776454000063 ], [ -82.01738951599998, 28.810732871000027 ], [ -82.017360767999946, 28.810690313000066 ], [ -82.017330017999939, 28.810648855000068 ], [ -82.017297319999955, 28.810608570000056 ], [ -82.01726273099996, 28.810569529000077 ], [ -82.017226312999981, 28.810531800000035 ], [ -82.017188129999965, 28.810495451000065 ], [ -82.017148247999955, 28.810460545000069 ], [ -82.017106738999985, 28.810427143000027 ], [ -82.017063673999985, 28.810395304000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016635411999971, 28.810896871000068 ], [ -82.016635597999937, 28.810896714000023 ], [ -82.016668913, 28.810868686000049 ], [ -82.016712301999974, 28.810829440000077 ], [ -82.016754046999949, 28.810788836000029 ], [ -82.016794096999945, 28.810746929000061 ], [ -82.016832397999963, 28.810703770000032 ], [ -82.016868898999974, 28.810659419000046 ], [ -82.016903552999963, 28.81061393300007 ], [ -82.017063664999966, 28.81039531700003 ], [ -82.017063673999985, 28.810395304000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016852381999968, 28.811585147000073 ], [ -82.017414198999973, 28.811579205000044 ], [ -82.017503655999974, 28.811579348000066 ], [ -82.017567483999983, 28.811581004000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016011293999952, 28.812852940000028 ], [ -82.016099824999969, 28.812511863000054 ], [ -82.016109575999963, 28.812479586000052 ], [ -82.016121533999979, 28.812447890000044 ], [ -82.016135654999971, 28.812416891000055 ], [ -82.016151885999989, 28.812386704000062 ], [ -82.016170166999984, 28.812357441000074 ], [ -82.016190430999984, 28.812329208000051 ], [ -82.016255094999963, 28.812244934000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016861852999966, 28.812279965000073 ], [ -82.016817252999942, 28.812282332000052 ], [ -82.016766335999989, 28.812283568000055 ], [ -82.016413600999954, 28.812287061000063 ], [ -82.016387958999985, 28.812286272000051 ], [ -82.016362508999975, 28.812283403000038 ], [ -82.016337466999971, 28.812278479000042 ], [ -82.016313046999983, 28.812271542000076 ], [ -82.01628945899995, 28.812262652000072 ], [ -82.016266901999984, 28.812251883000044 ], [ -82.016255094999963, 28.812244934000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015316992999942, 28.811253227000066 ], [ -82.015945571999964, 28.811246589000064 ], [ -82.015984142999969, 28.811247231000038 ], [ -82.016022594999981, 28.811249969000073 ], [ -82.016060782999944, 28.811254793000046 ], [ -82.016098558999943, 28.811261684000044 ], [ -82.016135994999956, 28.811270856000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016135994999956, 28.811270856000078 ], [ -82.016140081999936, 28.811259481000036 ], [ -82.016149866999967, 28.811238952000053 ], [ -82.016161728999975, 28.811219291000043 ], [ -82.016175570999962, 28.811200660000054 ], [ -82.016191277999951, 28.811183214000039 ], [ -82.016208720999941, 28.811167098000055 ], [ -82.016227751999963, 28.811152445000062 ], [ -82.016248218999976, 28.811139375000039 ], [ -82.016269946999955, 28.811127997000028 ], [ -82.016324256999951, 28.811101303000044 ], [ -82.016377433999935, 28.811072896000042 ], [ -82.016429408999954, 28.811042812000039 ], [ -82.016480111999954, 28.811011089000033 ], [ -82.016529477999939, 28.810977771000069 ], [ -82.016577441999971, 28.810942900000043 ], [ -82.016623939999988, 28.810906522000039 ], [ -82.016635411999971, 28.810896871000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014396031, 28.812279381000053 ], [ -82.014467383999943, 28.812137426000049 ], [ -82.014481787999955, 28.812106222000068 ], [ -82.014493996999988, 28.812074298000027 ], [ -82.014503963999971, 28.812041778000037 ], [ -82.014511650999964, 28.812008780000042 ], [ -82.014517030999968, 28.811975429000029 ], [ -82.014520083999969, 28.811941852000075 ], [ -82.014520795999942, 28.811908173000063 ], [ -82.014512144999969, 28.811261727000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014067052999962, 28.811266427000078 ], [ -82.014512144999969, 28.811261727000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014396031, 28.812279381000053 ], [ -82.01504683099995, 28.812475139000071 ], [ -82.015064257999938, 28.812479261000078 ], [ -82.015082160999953, 28.812481262000063 ], [ -82.015100204999953, 28.812481107000053 ], [ -82.015118059999963, 28.81247879600005 ], [ -82.01513539299998, 28.812474373000043 ], [ -82.015151883999977, 28.812467921000064 ], [ -82.015167228999985, 28.812459558000057 ], [ -82.015181143999939, 28.812449438000044 ], [ -82.015193371999942, 28.812437750000072 ], [ -82.015203686999939, 28.812424709000027 ], [ -82.015211896999972, 28.812410556000032 ], [ -82.01523418499994, 28.812361903000067 ], [ -82.01525415499998, 28.812312477000035 ], [ -82.015271770999959, 28.812262360000034 ], [ -82.015287003999958, 28.812211642000079 ], [ -82.015299825999989, 28.812160409000057 ], [ -82.015310219999947, 28.81210875000005 ], [ -82.015318159999936, 28.812056756000061 ], [ -82.015323637999984, 28.812004515000069 ], [ -82.015326641999934, 28.811952119000068 ], [ -82.015327166999953, 28.811899658000073 ], [ -82.015316992999942, 28.811253227000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014252331999955, 28.812559112000031 ], [ -82.014396031, 28.812279381000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034131732999981, 28.584451599000033 ], [ -82.031636619999972, 28.584432645000049 ], [ -82.030440028999976, 28.584425095000029 ], [ -82.029964781999979, 28.584421686000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034131732999981, 28.584451599000033 ], [ -82.034134252999934, 28.582698405000031 ], [ -82.034140986999944, 28.581679174000044 ], [ -82.034140732999958, 28.580893712000034 ], [ -82.034144048999963, 28.580229810000048 ], [ -82.034147083999983, 28.57869628900005 ], [ -82.034146865999958, 28.578021923000051 ], [ -82.034146865999958, 28.578021567000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01924194999998, 28.814426411000056 ], [ -82.01905315099998, 28.814641262000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019270377999987, 28.815269729000079 ], [ -82.019296775999976, 28.815179536000073 ], [ -82.019301635999966, 28.815159501000039 ], [ -82.019304574999978, 28.815139177000049 ], [ -82.019305574999976, 28.815118708000057 ], [ -82.01930462699994, 28.815098238000076 ], [ -82.019301738999957, 28.815077909000024 ], [ -82.019296929999939, 28.815057864000039 ], [ -82.019290234999971, 28.81503824300006 ], [ -82.019281701999944, 28.81501918400005 ], [ -82.019139603999974, 28.814737060000027 ], [ -82.019128769999952, 28.814717864000045 ], [ -82.019116069999939, 28.814699577000056 ], [ -82.019101601999978, 28.814682339000058 ], [ -82.019085476999976, 28.814666282000076 ], [ -82.019067819999975, 28.81465152800007 ], [ -82.019053216999964, 28.814641308000034 ], [ -82.01905315099998, 28.814641262000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018469606999986, 28.815247819000035 ], [ -82.019270377999987, 28.815269729000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019290527999942, 28.81588146200005 ], [ -82.019227435999937, 28.815746607000051 ], [ -82.019215799999984, 28.81571897300006 ], [ -82.019206433999955, 28.815690677000077 ], [ -82.019199385999968, 28.815661866000028 ], [ -82.019194691999985, 28.815632684000036 ], [ -82.019192375999978, 28.815603281000051 ], [ -82.019192447999956, 28.815573808000067 ], [ -82.019194910999943, 28.815544415000033 ], [ -82.019199749999984, 28.815515251000079 ], [ -82.019206940999936, 28.815486467000028 ], [ -82.019270377999987, 28.815269729000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01854749599994, 28.816091680000056 ], [ -82.018743537999967, 28.815985986000044 ], [ -82.018763913999976, 28.815975903000037 ], [ -82.018785088999948, 28.815967191000027 ], [ -82.018806945999984, 28.815959898000074 ], [ -82.018829358999938, 28.815954065000028 ], [ -82.018852205999963, 28.815949725000053 ], [ -82.019290527999942, 28.81588146200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020457619999945, 28.816846806000058 ], [ -82.020272791999957, 28.816801751000071 ], [ -82.019803798999988, 28.81675070600005 ], [ -82.019779477999975, 28.816747087000067 ], [ -82.019755615999941, 28.816741584000056 ], [ -82.019732402999978, 28.816734239000027 ], [ -82.019710019999934, 28.81672511000005 ], [ -82.019688644999974, 28.816714270000034 ], [ -82.019668444999979, 28.816701803000058 ], [ -82.019649578999974, 28.816687807000051 ], [ -82.019632196999964, 28.816672394000079 ], [ -82.019616435999978, 28.816655684000068 ], [ -82.019602416999987, 28.816637809000042 ], [ -82.019590254999969, 28.816618910000045 ], [ -82.019580041999973, 28.816599137000026 ], [ -82.019571860999974, 28.816578643000071 ], [ -82.019565775, 28.816557591000048 ], [ -82.019488825999986, 28.81623152700007 ], [ -82.01948239799998, 28.816209490000062 ], [ -82.019473675999961, 28.816188074000024 ], [ -82.019462732999955, 28.816167464000046 ], [ -82.019449664999968, 28.816147837000074 ], [ -82.019383744999971, 28.816058616000078 ], [ -82.019363641999973, 28.816029470000046 ], [ -82.01934562799994, 28.815999282000064 ], [ -82.019329773999971, 28.81596816900003 ], [ -82.019290527999942, 28.81588146200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01905315099998, 28.814641262000066 ], [ -82.019048764, 28.814638191000029 ], [ -82.019028457, 28.814626375000046 ], [ -82.01852084799998, 28.81435835700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01854749599994, 28.816091680000056 ], [ -82.018465494999987, 28.815980073000048 ], [ -82.018301311999949, 28.815865859000041 ], [ -82.018179959999941, 28.815765922000026 ], [ -82.018090729999983, 28.815630293000027 ], [ -82.01802291599995, 28.815498232000039 ], [ -82.017987223999967, 28.815330480000057 ], [ -82.017987223999967, 28.815187713000057 ], [ -82.018037191999952, 28.814980700000035 ], [ -82.018119283999965, 28.814830794000045 ], [ -82.01817282199994, 28.814748702000031 ], [ -82.018322727999987, 28.814623781000023 ], [ -82.018440510999937, 28.814491720000035 ], [ -82.01852084799998, 28.81435835700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025695197999937, 28.815404903000058 ], [ -82.025734555999975, 28.815326940000034 ], [ -82.025795695999989, 28.815234404000023 ], [ -82.025823787999968, 28.815191440000035 ], [ -82.025840311999957, 28.815118733000077 ], [ -82.025850226999978, 28.815041069000074 ], [ -82.025858488999972, 28.814971666000076 ], [ -82.025871707999954, 28.814842776000035 ], [ -82.025867319999975, 28.814805620000072 ], [ -82.025853530999939, 28.814775027000053 ], [ -82.025837278999973, 28.81474907300003 ], [ -82.02580891599996, 28.814725453000051 ], [ -82.025770129999955, 28.814705780000054 ], [ -82.025731250999968, 28.814699014000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024618075999967, 28.817573262000053 ], [ -82.02512356799997, 28.817575544000078 ], [ -82.025149829999975, 28.817574569000044 ], [ -82.025175868999952, 28.817571412000063 ], [ -82.025201453999955, 28.817566103000047 ], [ -82.025226354999973, 28.817558689000066 ], [ -82.025250349999965, 28.817549236000048 ], [ -82.025273221999953, 28.817537830000049 ], [ -82.025294769999959, 28.817524571000035 ], [ -82.025314797999954, 28.817509579000046 ], [ -82.025333128999989, 28.817492988000026 ], [ -82.025349598999981, 28.817474946000061 ], [ -82.025364058999969, 28.817455615000029 ], [ -82.025376380999944, 28.817435167000042 ], [ -82.025386453999943, 28.817413784000053 ], [ -82.02539418799995, 28.817391660000055 ], [ -82.025399515999936, 28.817368991000023 ], [ -82.025402386999986, 28.817345980000027 ], [ -82.025402777999943, 28.817322834000038 ], [ -82.025384659999986, 28.816831335000074 ], [ -82.025383877999957, 28.816776957000059 ], [ -82.025385537999966, 28.816722593000065 ], [ -82.025389635999943, 28.816668330000027 ], [ -82.025396167999986, 28.816614252000079 ], [ -82.025405121999938, 28.816560444000061 ], [ -82.025416484999937, 28.81650699000005 ], [ -82.025430239999935, 28.816453973000023 ], [ -82.025446362999958, 28.816401477000056 ], [ -82.025464830999965, 28.816349583000033 ], [ -82.025485614, 28.816298373000052 ], [ -82.025508679999973, 28.816247926000074 ], [ -82.025533992999954, 28.816198322000048 ], [ -82.025560252999981, 28.816147071000046 ], [ -82.025584370999979, 28.816095010000026 ], [ -82.025606315999937, 28.816042208000056 ], [ -82.025626056999954, 28.815988735000076 ], [ -82.025643567999964, 28.815934665000043 ], [ -82.025658827999962, 28.815880066000034 ], [ -82.025659941999947, 28.815875340000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023776141999974, 28.817709310000055 ], [ -82.023939777999942, 28.817660556000078 ], [ -82.024075719999985, 28.817621275000079 ], [ -82.024130297999989, 28.817608204000067 ], [ -82.024185447999969, 28.817597144000047 ], [ -82.024241073999974, 28.817588115000035 ], [ -82.024297076999972, 28.817581135000069 ], [ -82.024353360999953, 28.817576213000052 ], [ -82.024409829999968, 28.817573358000061 ], [ -82.024466384999982, 28.817572577000078 ], [ -82.024618075999967, 28.817573262000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022999298999935, 28.816909229000032 ], [ -82.023071676999962, 28.81682218900005 ], [ -82.023117231999947, 28.816723039000067 ], [ -82.023127950999935, 28.816637288000038 ], [ -82.023127950999935, 28.816503302000058 ], [ -82.023135575999959, 28.816462288000025 ], [ -82.023152068999934, 28.816420230000062 ], [ -82.023168328999986, 28.816389162000064 ], [ -82.023200303999943, 28.816355917000067 ], [ -82.023243178999962, 28.816313041000058 ], [ -82.023287921999952, 28.816292421000071 ], [ -82.023336969999946, 28.81627820500006 ], [ -82.02344951799995, 28.816256767000027 ], [ -82.02350579299997, 28.816232649000028 ], [ -82.023593156999937, 28.816179543000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023289683999963, 28.818618181000033 ], [ -82.023383232999947, 28.818651591000048 ], [ -82.023406843999965, 28.818661089000045 ], [ -82.023429345999944, 28.818672486000025 ], [ -82.023450542999967, 28.818685682000023 ], [ -82.023470249999946, 28.818700561000071 ], [ -82.023488293999947, 28.818716994000056 ], [ -82.023504518999971, 28.818734839000058 ], [ -82.023518782999986, 28.818753939000032 ], [ -82.023530960999949, 28.81877412800003 ], [ -82.023540946999958, 28.818795228000056 ], [ -82.023631335999937, 28.81901453200004 ], [ -82.023645433999945, 28.819045732000063 ], [ -82.023661666999942, 28.819076116000076 ], [ -82.023679974999936, 28.819105571000023 ], [ -82.023700289999965, 28.819133987000043 ], [ -82.02372253599998, 28.819161260000044 ], [ -82.023746628999959, 28.819187285000055 ], [ -82.02377248099998, 28.819211967000058 ], [ -82.02379999599998, 28.819235214000059 ], [ -82.023829068999987, 28.81925693900007 ], [ -82.023859594999976, 28.819277062000026 ], [ -82.023891456999934, 28.81929550600006 ], [ -82.02392453799996, 28.819312203000038 ], [ -82.023958712999956, 28.819327093000027 ], [ -82.023993856999937, 28.819340117000024 ], [ -82.024029838, 28.819351229000063 ], [ -82.024066521999941, 28.819360387000074 ], [ -82.024103771999989, 28.819367555000042 ], [ -82.024141448999956, 28.819372710000039 ], [ -82.024179413999946, 28.81937583000007 ], [ -82.024277025999936, 28.819381884000052 ], [ -82.024465519999978, 28.819374444000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022832152999968, 28.819122674000027 ], [ -82.022759232999988, 28.819060286000024 ], [ -82.022537942999975, 28.818917518000035 ], [ -82.022181023999963, 28.818767612000045 ], [ -82.02195973399995, 28.818696228000078 ], [ -82.021774135999976, 28.818614137000054 ], [ -82.021631367999987, 28.818499923000047 ], [ -82.021467184999949, 28.818360724000058 ], [ -82.021406508999974, 28.818278633000034 ], [ -82.021317278999959, 28.818110881000052 ], [ -82.021149526999977, 28.817886022000039 ], [ -82.021067435999953, 28.817800361000025 ], [ -82.020849713999951, 28.817654024000035 ], [ -82.020671255999957, 28.817579071000068 ], [ -82.020496364999985, 28.817532672000027 ], [ -82.020185845999947, 28.817454149000071 ], [ -82.019836064999936, 28.817354212000055 ], [ -82.019600497999988, 28.81726141300004 ], [ -82.019454160999942, 28.817186460000073 ], [ -82.019154348999962, 28.817043692000027 ], [ -82.01899016599998, 28.816883079000036 ], [ -82.018900936999955, 28.816718896000054 ], [ -82.018701061999934, 28.816358408000042 ], [ -82.01854749599994, 28.816091680000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022832149999942, 28.819122677000053 ], [ -82.023118371999942, 28.818854761000068 ], [ -82.023147876999985, 28.818825676000074 ], [ -82.023175640999966, 28.818795289000036 ], [ -82.023201587999949, 28.818763682000053 ], [ -82.023225651999951, 28.818730938000044 ], [ -82.023247766999987, 28.818697146000034 ], [ -82.023267872999952, 28.818662396000036 ], [ -82.023285918999989, 28.818626778000066 ], [ -82.02328960899996, 28.818618353000033 ], [ -82.023289683999963, 28.818618181000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023289683999963, 28.818618181000033 ], [ -82.023301856999979, 28.818590388000075 ], [ -82.023344010999949, 28.818538576000037 ], [ -82.023401257999978, 28.81848807700004 ], [ -82.02348048999994, 28.818428169000072 ], [ -82.02366987399995, 28.818258110000045 ], [ -82.023783890999937, 28.818118970000057 ], [ -82.023830270999952, 28.818033941000067 ], [ -82.023843798999962, 28.817981763000034 ], [ -82.023847663999959, 28.817910261000065 ], [ -82.023832203999973, 28.817842624000036 ], [ -82.023776141999974, 28.817709310000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023776141999974, 28.817709310000055 ], [ -82.023750293999967, 28.817645260000063 ], [ -82.023726679999982, 28.817578228000059 ], [ -82.023706771999969, 28.81751355800003 ], [ -82.023698732999947, 28.817425127000035 ], [ -82.023704091999946, 28.817350095000052 ], [ -82.023720170999979, 28.817269703000079 ], [ -82.023752326999954, 28.817162514000074 ], [ -82.023773764999987, 28.817076763000046 ], [ -82.023781803999952, 28.816969574000041 ], [ -82.023773764999987, 28.816862385000036 ], [ -82.023752326999954, 28.81676055500003 ], [ -82.023706771999969, 28.816658726000071 ], [ -82.023631739999985, 28.816554216000043 ], [ -82.023610134999956, 28.816506469000046 ], [ -82.023594223999964, 28.816449707000061 ], [ -82.023586183999953, 28.816331799000068 ], [ -82.023593156999937, 28.816179543000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022999298999935, 28.816909229000032 ], [ -82.022798318999946, 28.816858984000078 ], [ -82.022553267999967, 28.816799198000069 ], [ -82.022548712999935, 28.816798087000052 ], [ -82.022530324999934, 28.816792589000045 ], [ -82.022506798999984, 28.816783623000049 ], [ -82.022484309999982, 28.816772786000058 ], [ -82.022463051999978, 28.816760171000055 ], [ -82.022443202999966, 28.816745883000067 ], [ -82.022424932999968, 28.816730047000078 ], [ -82.022408396999936, 28.816712795000058 ], [ -82.022393736999959, 28.816694274000042 ], [ -82.022381076999977, 28.816674644000045 ], [ -82.022370523999939, 28.816654069000037 ], [ -82.022362168999962, 28.816632726000023 ], [ -82.022356081999988, 28.816610795000031 ], [ -82.022352314999978, 28.816588463000073 ], [ -82.022350900999982, 28.816565921000063 ], [ -82.02235184999995, 28.816543360000026 ], [ -82.022355156999936, 28.816520973000024 ], [ -82.02237480399998, 28.81641766000007 ], [ -82.022392212999989, 28.816314036000051 ], [ -82.022407378999958, 28.816210140000067 ], [ -82.022420294999961, 28.816106008000077 ], [ -82.022422100999961, 28.816088339000032 ], [ -82.022426257999939, 28.816047664000052 ], [ -82.022430957999973, 28.816001679000067 ], [ -82.022439361999943, 28.815897188000065 ], [ -82.022441632999971, 28.815858525000067 ], [ -82.022441637999975, 28.815858443000025 ], [ -82.022441679999986, 28.815857729000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022441679999986, 28.815857729000072 ], [ -82.022447393999983, 28.815741634000062 ], [ -82.022447609999972, 28.81531706800007 ], [ -82.022445499999947, 28.815193 ], [ -82.022438140999952, 28.814781108000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024618075999967, 28.817573262000053 ], [ -82.024624897999956, 28.816934334000052 ], [ -82.02462428399997, 28.81689573500006 ], [ -82.024621619999948, 28.81685720300004 ], [ -82.024616914999967, 28.816818823000062 ], [ -82.024600585999963, 28.816733863000024 ], [ -82.024585871999989, 28.816694625000025 ], [ -82.024569195999959, 28.816628901000058 ], [ -82.024545652999961, 28.816455273000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022441679999986, 28.815857729000072 ], [ -82.023625124999967, 28.815864675000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023625124999967, 28.815864675000057 ], [ -82.02493033199994, 28.81587152000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02493033199994, 28.81587152000003 ], [ -82.025659941999947, 28.815875340000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022960043999944, 28.814674425000078 ], [ -82.023292803999936, 28.814676173000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023292803999936, 28.814676173000066 ], [ -82.024824385999977, 28.814684207000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024824385999977, 28.814684207000028 ], [ -82.025198223999951, 28.814686166000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023195150999982, 28.815255975000071 ], [ -82.023292803999936, 28.814676173000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02483671899995, 28.815264587000058 ], [ -82.024832774999936, 28.815249255000026 ], [ -82.024827602999949, 28.815226106000068 ], [ -82.024823943999934, 28.815202735000071 ], [ -82.024821807999956, 28.815179217000036 ], [ -82.024821200999952, 28.815155630000049 ], [ -82.024824385999977, 28.814684207000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023195150999982, 28.815255975000071 ], [ -82.02483671899995, 28.815264587000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023146323999981, 28.815545876000044 ], [ -82.023195150999982, 28.815255975000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02493033199994, 28.81587152000003 ], [ -82.024931610999943, 28.815682037000045 ], [ -82.024931004999985, 28.815658450000058 ], [ -82.02492886899995, 28.815634933000069 ], [ -82.024925208999946, 28.815611561000026 ], [ -82.024920036999958, 28.815588412000068 ], [ -82.02483671899995, 28.815264587000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004885754999975, 28.799778167000056 ], [ -82.005033147999939, 28.799771989000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010341312999969, 28.802406436000069 ], [ -82.010280927999986, 28.802348659000074 ], [ -82.010132827999939, 28.802324643000077 ], [ -82.009906674999968, 28.802296624000064 ], [ -82.009748567999964, 28.802288619000024 ], [ -82.009270243999936, 28.802266604000067 ], [ -82.009233624999979, 28.802256025000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009230165999952, 28.802368228000034 ], [ -82.009260274999974, 28.802366302000053 ], [ -82.009663900999954, 28.802366302000053 ], [ -82.010033175999979, 28.802374889000077 ], [ -82.010260751999965, 28.802398506000031 ], [ -82.010341312999969, 28.802406436000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024191702999985, 28.820128210000064 ], [ -82.025564390999989, 28.820135854000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025564390999989, 28.820135854000057 ], [ -82.025946913999974, 28.820137981000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023483551999959, 28.820143935000033 ], [ -82.023521395999978, 28.820134774000053 ], [ -82.023542244999987, 28.82013039900005 ], [ -82.023563384999989, 28.820127293000041 ], [ -82.023584717999938, 28.820125472000029 ], [ -82.023606141999949, 28.820124944000042 ], [ -82.024191702999985, 28.820128210000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023483551999959, 28.820143935000033 ], [ -82.023423101999981, 28.819959722000078 ], [ -82.023316026999964, 28.819709878000026 ], [ -82.023098305999952, 28.819395790000044 ], [ -82.022941260999971, 28.819210192000071 ], [ -82.022832152999968, 28.819122674000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048562713999956, 28.800015453000071 ], [ -82.048457406999944, 28.800047677000066 ], [ -82.04806917999997, 28.800199677000023 ], [ -82.047505674999968, 28.800509772000055 ], [ -82.047222254999951, 28.800709833000042 ], [ -82.046929915999954, 28.800954317000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046851393999987, 28.801031411000054 ], [ -82.046754311999962, 28.801124210000069 ], [ -82.046699691999947, 28.801180485000032 ], [ -82.04657078799994, 28.801320633000046 ], [ -82.046446184, 28.801462672000071 ], [ -82.046362403999979, 28.801572512000064 ], [ -82.046302883999942, 28.801653318000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045611705999988, 28.805264685000054 ], [ -82.045609712999976, 28.805613189000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045583246999968, 28.811550950000026 ], [ -82.045583209999961, 28.812392263000049 ], [ -82.045582764999949, 28.812576471000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045582764999949, 28.812576471000057 ], [ -82.045582097999954, 28.812852765000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045571119999977, 28.81693772400007 ], [ -82.045566246999954, 28.81803029200006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036915988999965, 28.912762930000042 ], [ -82.036087339999938, 28.912773822000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037217108999982, 28.839888036000048 ], [ -82.036299379999946, 28.839896226000064 ], [ -82.035099486999968, 28.839885245000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033025186999964, 28.839880373000028 ], [ -82.032335700999965, 28.839878974000044 ], [ -82.031715800999962, 28.839875062000033 ], [ -82.031395842999984, 28.839869663000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058636460999935, 28.847949564000032 ], [ -82.058949504999987, 28.848030402000063 ], [ -82.059666562999951, 28.848245879000046 ], [ -82.060593900999947, 28.848568750000027 ], [ -82.061050605999981, 28.848739916000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057946338999955, 28.847779693000064 ], [ -82.058174625999982, 28.847830303000023 ], [ -82.058632619999969, 28.847948572000064 ], [ -82.058636460999935, 28.847949564000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032107743999973, 28.823004157000071 ], [ -82.032107748999977, 28.823004254000068 ], [ -82.03212678999995, 28.82339672300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026991270999986, 28.814365449000036 ], [ -82.026979068999935, 28.816111211000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027002226999969, 28.813455114000078 ], [ -82.026990504999958, 28.814133310000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053727630999958, 28.878675531000056 ], [ -82.053729290999968, 28.879141135000054 ], [ -82.053731031999973, 28.879775065000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053728327999977, 28.885514030000024 ], [ -82.053728323999962, 28.885515449000025 ], [ -82.053726032999975, 28.886292992000051 ], [ -82.05373455299997, 28.887361394000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053731370999969, 28.883860499000036 ], [ -82.05373016599998, 28.884890043000041 ], [ -82.053730052999981, 28.884928440000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053730052999981, 28.884928440000067 ], [ -82.053730050999945, 28.884929150000062 ], [ -82.053728327999977, 28.885514030000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047511174999954, 28.887340383000037 ], [ -82.046166508999988, 28.887336146000052 ], [ -82.045412096999939, 28.887338739000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041374921999989, 28.887325076000025 ], [ -82.041210311999976, 28.887324220000039 ], [ -82.041210131999946, 28.88732421900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041210131999946, 28.88732421900005 ], [ -82.040626976999988, 28.887321188000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040626976999988, 28.887321188000044 ], [ -82.040626530999987, 28.887321186000065 ], [ -82.040004151999938, 28.887317951000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037123634999944, 28.886416687000064 ], [ -82.037124509999956, 28.886131310000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037124509999956, 28.886131310000053 ], [ -82.037147655999945, 28.885618216000069 ], [ -82.03715002399997, 28.885238768000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037035, 28.88359538900005 ], [ -82.037034130999984, 28.883947761000059 ], [ -82.037034418999951, 28.88432857600003 ], [ -82.037034418999951, 28.884328836000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037149991999968, 28.884329723000064 ], [ -82.037149275, 28.884074075000058 ], [ -82.037153438999951, 28.883576550000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037035, 28.88359538900005 ], [ -82.036375560999943, 28.883608572000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035747422999975, 28.883621958000049 ], [ -82.03538780699995, 28.883632781000074 ], [ -82.03537724499995, 28.883633099000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03537724499995, 28.883633099000065 ], [ -82.03486400099996, 28.883648547000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054554275999976, 28.536758386000031 ], [ -82.054557244999955, 28.536052301000041 ], [ -82.054564815999981, 28.534573167000076 ], [ -82.054572429999951, 28.533178659000043 ], [ -82.054571887999941, 28.532126340000048 ], [ -82.054583460999936, 28.53032709200005 ], [ -82.054583234999939, 28.529889238000067 ], [ -82.054590660999963, 28.528130465000061 ], [ -82.054594252999948, 28.527015594000034 ], [ -82.054597903999934, 28.52601478400004 ], [ -82.054605624999965, 28.52482632300007 ], [ -82.054609563999975, 28.52438846900003 ], [ -82.05460525899997, 28.524116191000076 ], [ -82.05460514899994, 28.523902784000029 ], [ -82.054592518999982, 28.523648908000041 ], [ -82.054563218999988, 28.523384 ], [ -82.054542218999984, 28.523052858000028 ], [ -82.05451706599996, 28.522747474000028 ], [ -82.054491934999987, 28.522486244000049 ], [ -82.054479352999977, 28.522324355000023 ], [ -82.054470933999937, 28.522155104000035 ], [ -82.054470778999985, 28.521853390000047 ], [ -82.054466520999938, 28.521631954000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106640528999947, 28.746942665000063 ], [ -82.106483242999957, 28.74715380300006 ], [ -82.106262754999989, 28.747711673000026 ], [ -82.105990198999962, 28.748324016000026 ], [ -82.105910600999948, 28.748476872000026 ], [ -82.105834461999962, 28.748623613000063 ], [ -82.10574444599996, 28.748762725000063 ], [ -82.105693842999983, 28.748834716000033 ], [ -82.105692098999953, 28.748837197000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106640528999947, 28.746942665000063 ], [ -82.106632342999944, 28.746964544000036 ], [ -82.10653526699997, 28.747219703000042 ], [ -82.106420310999965, 28.747524540000029 ], [ -82.106307895999976, 28.74780905700004 ], [ -82.106185229999937, 28.748091325000075 ], [ -82.106065103999981, 28.748348761000045 ], [ -82.105960282999945, 28.748547491000068 ], [ -82.105893813999955, 28.748676213000067 ], [ -82.105822229999944, 28.748811713000066 ], [ -82.105800939999938, 28.748850462000064 ], [ -82.10580013799995, 28.748851922000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108655687999942, 28.741557414000056 ], [ -82.108634968, 28.741612967000037 ], [ -82.108039820999977, 28.743202638000071 ], [ -82.107459978999941, 28.744749402000025 ], [ -82.107069155999966, 28.745797135000032 ], [ -82.106640528999947, 28.746942665000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106635671999982, 28.747720761000039 ], [ -82.106886026999973, 28.747065925000072 ], [ -82.10741223399998, 28.745650134000073 ], [ -82.107774951999943, 28.744674658000065 ], [ -82.108319026999936, 28.74322273000007 ], [ -82.108888631999946, 28.741705316000036 ], [ -82.108943776, 28.741556896000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10314336, 28.74972106000007 ], [ -82.103212956999982, 28.749356356000078 ], [ -82.103299211999968, 28.748916245000032 ], [ -82.103313784999955, 28.748823275000063 ], [ -82.103314439999963, 28.748819095000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.092462875999956, 28.749083735000056 ], [ -82.092357343999936, 28.749047228000052 ], [ -82.092210299999977, 28.749003128000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087455523999949, 28.74883254100007 ], [ -82.086236823999968, 28.748836188000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025559961999988, 28.820845409000071 ], [ -82.025564390999989, 28.820135854000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024191702999985, 28.820128210000064 ], [ -82.024190981999936, 28.820228598000028 ], [ -82.024191845999951, 28.820271330000026 ], [ -82.024195049999946, 28.820313976000079 ], [ -82.024200587999985, 28.820356436000054 ], [ -82.024208446999978, 28.820398612000076 ], [ -82.024218605999977, 28.820440404000067 ], [ -82.024231044999965, 28.820481716000074 ], [ -82.02424573199994, 28.820522452000034 ], [ -82.024262634999957, 28.820562515000063 ], [ -82.024281713999983, 28.820601814000042 ], [ -82.024302921999947, 28.820640256000047 ], [ -82.024326212999938, 28.820677752000051 ], [ -82.024351531999969, 28.820714214000077 ], [ -82.024366399999963, 28.820732779000025 ], [ -82.024382956999943, 28.820750198000042 ], [ -82.024401090999959, 28.820766355000046 ], [ -82.024420675999977, 28.820781140000065 ], [ -82.024441579999973, 28.820794450000051 ], [ -82.024463659999981, 28.820806196000035 ], [ -82.024486765999939, 28.820816296000032 ], [ -82.024510738999936, 28.820824684000058 ], [ -82.024535416999981, 28.820831299000076 ], [ -82.024560629999939, 28.820836099000076 ], [ -82.024586205999981, 28.820839050000075 ], [ -82.024611971999946, 28.820840132000058 ], [ -82.025559961999988, 28.820845409000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025557857999956, 28.821182333000024 ], [ -82.025559961999988, 28.820845409000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025105090999944, 28.822351077000064 ], [ -82.025290971999937, 28.822258744000067 ], [ -82.025495360999969, 28.822175525000034 ], [ -82.025521195999943, 28.82216276500003 ], [ -82.025546062999979, 28.822148592000076 ], [ -82.025569864999966, 28.82213306400007 ], [ -82.02570026099994, 28.822042017000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028121193999937, 28.822654990000046 ], [ -82.028126752999981, 28.821863097000062 ], [ -82.028127938999944, 28.821841974000051 ], [ -82.028131190999943, 28.821821020000073 ], [ -82.028136483999958, 28.821800391000068 ], [ -82.028143779999937, 28.821780242000045 ], [ -82.028153023999948, 28.821760723000068 ], [ -82.028164145999938, 28.821741978000034 ], [ -82.028177063999976, 28.821724150000023 ], [ -82.028191681999942, 28.82170737000007 ], [ -82.028207888999987, 28.821691765000025 ], [ -82.028225565999946, 28.821677448000059 ], [ -82.028244579999978, 28.821664530000078 ], [ -82.028466091999974, 28.821527054000057 ], [ -82.028485115999956, 28.821514128000047 ], [ -82.028502802999981, 28.821499802000062 ], [ -82.02851901799994, 28.821484185000031 ], [ -82.028533639999978, 28.821467393000034 ], [ -82.028546559999938, 28.821449551000057 ], [ -82.028557682999974, 28.821430794000037 ], [ -82.02856692499995, 28.821411261000037 ], [ -82.028574215999981, 28.82139109700006 ], [ -82.028579502999946, 28.821370454000032 ], [ -82.028582744999937, 28.821349486000031 ], [ -82.028583918999971, 28.821328350000044 ], [ -82.028582244999939, 28.820672591000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02711196599995, 28.822593958000027 ], [ -82.027111976999947, 28.822593960000063 ], [ -82.027130089999957, 28.822597537000036 ], [ -82.027260256999966, 28.822621150000032 ], [ -82.027318105999939, 28.822630354000069 ], [ -82.027376252999943, 28.822637956000051 ], [ -82.027434643999982, 28.822643947000074 ], [ -82.027493217999961, 28.822648322000077 ], [ -82.027551919999951, 28.822651077000046 ], [ -82.02761069099995, 28.822652209000069 ], [ -82.028121193999937, 28.822654990000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02605757799995, 28.82286741300004 ], [ -82.026259929999981, 28.822384315000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026985767999975, 28.823105535000025 ], [ -82.02711196599995, 28.822593958000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027501089999987, 28.823712011000055 ], [ -82.027847380999958, 28.823369952000064 ], [ -82.027880944999936, 28.823335147000023 ], [ -82.027912567999977, 28.823298960000045 ], [ -82.027942177999989, 28.823261476000027 ], [ -82.027969705999965, 28.823222781000027 ], [ -82.027995087999955, 28.823182964000068 ], [ -82.028018264999957, 28.823142116000042 ], [ -82.028039184999955, 28.823100336000039 ], [ -82.028057796999974, 28.82305771700004 ], [ -82.028074058999948, 28.823014358000023 ], [ -82.028087932999938, 28.822970361000046 ], [ -82.028099388999976, 28.822925828000052 ], [ -82.028108396999983, 28.822880860000055 ], [ -82.028114938999977, 28.822835563000069 ], [ -82.028118998999958, 28.822790040000029 ], [ -82.028120566999974, 28.822744399000044 ], [ -82.028121193999937, 28.822654990000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024253643999941, 28.821693196000069 ], [ -82.024318927999957, 28.821681944000034 ], [ -82.024358728999971, 28.821674128000041 ], [ -82.02439801099996, 28.821664492000025 ], [ -82.024918735999961, 28.821523765000052 ], [ -82.024951428999941, 28.821515987000055 ], [ -82.02498464599995, 28.821510176000061 ], [ -82.025018232999969, 28.821506361000047 ], [ -82.025052036999966, 28.821504557000026 ], [ -82.025085901999944, 28.821504775000051 ], [ -82.02511967199996, 28.821507012000041 ], [ -82.025153191999948, 28.821511258000044 ], [ -82.025186307999945, 28.821517495000023 ], [ -82.025218869999946, 28.821525692000023 ], [ -82.025250725999967, 28.821535812000036 ], [ -82.025281729999961, 28.821547810000027 ], [ -82.02531173999995, 28.821561631000066 ], [ -82.025340617999973, 28.821577208000065 ], [ -82.025368231999948, 28.821594473000061 ], [ -82.025394453999979, 28.821613346000049 ], [ -82.02541916499996, 28.821633740000038 ], [ -82.025442249999969, 28.821655560000067 ], [ -82.025463603999981, 28.821678709000025 ], [ -82.025483128999952, 28.821703077000052 ], [ -82.025500732999944, 28.82172855400006 ], [ -82.025516338999978, 28.821755023000037 ], [ -82.025529872999982, 28.821782361000032 ], [ -82.025550495999937, 28.821825338000053 ], [ -82.025573304999966, 28.821867449000024 ], [ -82.025598252999941, 28.821908609000047 ], [ -82.025625290999983, 28.821948732000067 ], [ -82.025654360999965, 28.821987738000075 ], [ -82.025685403999944, 28.822025546000077 ], [ -82.02570026099994, 28.822042017000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02570026099994, 28.822042017000058 ], [ -82.025700324999946, 28.822042088000046 ], [ -82.025718357999949, 28.822062079000034 ], [ -82.025753152999982, 28.822097263000046 ], [ -82.025789719999977, 28.822131024000043 ], [ -82.025827983999989, 28.822163294000063 ], [ -82.025867864999952, 28.822194007000064 ], [ -82.025909283999965, 28.822223100000031 ], [ -82.025952152999935, 28.822250514000075 ], [ -82.025996386999964, 28.82227619300005 ], [ -82.026041894999935, 28.822300083000073 ], [ -82.026088582999989, 28.822322136000025 ], [ -82.026136355999938, 28.822342307000042 ], [ -82.026185115999965, 28.822360554000056 ], [ -82.026234762999934, 28.82237684100005 ], [ -82.026259929999981, 28.822384315000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026259929999981, 28.822384315000079 ], [ -82.026259950999986, 28.822384321000072 ], [ -82.026360694999937, 28.822414240000057 ], [ -82.026487348999979, 28.82244969900006 ], [ -82.026614686999949, 28.822483207000062 ], [ -82.02674266799994, 28.822514754000053 ], [ -82.026871255999936, 28.822544330000028 ], [ -82.027000408999982, 28.82257192700007 ], [ -82.02711196599995, 28.822593958000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024253643999941, 28.821693196000069 ], [ -82.024201185999971, 28.821470680000061 ], [ -82.024136940999938, 28.821306497000023 ], [ -82.024037003999979, 28.821166109000046 ], [ -82.02385497399996, 28.820973372000026 ], [ -82.023747898999943, 28.820834174000026 ], [ -82.023647960999938, 28.820652145000054 ], [ -82.023537315999988, 28.820313072000033 ], [ -82.023483551999959, 28.820143935000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955761268999936, 28.947942008000041 ], [ -81.95577574899994, 28.947870958000067 ], [ -81.955796002999989, 28.947832152000046 ], [ -81.955853381999987, 28.947769956000059 ], [ -81.955977243999939, 28.947687286000075 ], [ -81.956214717999956, 28.947533410000062 ], [ -81.956309704999967, 28.947481031000052 ], [ -81.956433555999979, 28.947422109000058 ], [ -81.956632826999964, 28.947339465000027 ], [ -81.956794145999936, 28.947287445000029 ], [ -81.956926152999984, 28.94724659600007 ], [ -81.957114488999935, 28.947199684000054 ], [ -81.957269090999944, 28.947170067000059 ], [ -81.957508011999948, 28.947140475000026 ], [ -81.957718820999958, 28.947125708000044 ], [ -81.95791309599997, 28.947126411000056 ], [ -81.958086231999971, 28.94713110400005 ], [ -81.958100243999979, 28.947132360000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963974619999988, 28.944474026000023 ], [ -81.963634302999935, 28.944843117000062 ], [ -81.963343188999943, 28.945153205000054 ], [ -81.963273691999973, 28.945236547000036 ], [ -81.963204640999948, 28.945306238000057 ], [ -81.963137877999941, 28.945374437000055 ], [ -81.963071649999961, 28.945438474000071 ], [ -81.963002604999986, 28.94550632000005 ], [ -81.96293355499995, 28.94557151500004 ], [ -81.962864690999936, 28.945632044000035 ], [ -81.962780678999934, 28.945704817000035 ], [ -81.962706399999945, 28.94576289400004 ], [ -81.962630948999958, 28.945819596000035 ], [ -81.962531061999982, 28.945896575000063 ], [ -81.962455220999971, 28.945952933000058 ], [ -81.962378009999952, 28.946007915000052 ], [ -81.96230001899994, 28.946061866000036 ], [ -81.962220660999947, 28.946114785000077 ], [ -81.962140520999981, 28.94616632900005 ], [ -81.96205920899996, 28.946216497000023 ], [ -81.961966923999967, 28.946272848000035 ], [ -81.961885094999957, 28.946320048000075 ], [ -81.961800712999946, 28.946364999000025 ], [ -81.961706102999983, 28.94641219600004 ], [ -81.961621718999936, 28.946457146000057 ], [ -81.961524550999968, 28.94650659000007 ], [ -81.961455512999976, 28.946535803000074 ], [ -81.961378802999945, 28.94657176100003 ], [ -81.961312321999969, 28.946598728000026 ], [ -81.961230498999953, 28.946632434000037 ], [ -81.961151234999988, 28.946659397000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961151234999988, 28.946659397000076 ], [ -81.961079647999952, 28.946668371000044 ], [ -81.96101317199998, 28.946679595000035 ], [ -81.960969604999946, 28.946691590000057 ], [ -81.960889419999944, 28.946718912000051 ], [ -81.960789598999952, 28.946750544000054 ], [ -81.960684867999987, 28.946786494000037 ], [ -81.960537593999959, 28.946826749000024 ], [ -81.960421412999949, 28.946855498000048 ], [ -81.960292139999979, 28.946887121000032 ], [ -81.960126869999954, 28.946920173000024 ], [ -81.959923442, 28.946957454000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964600771999983, 28.940587717000028 ], [ -81.964607200999978, 28.940671984000062 ], [ -81.964614827999981, 28.940797915000076 ], [ -81.964622444999975, 28.940950831000066 ], [ -81.964622372999941, 28.941162211000062 ], [ -81.964627356999983, 28.941544497000052 ], [ -81.964629946999935, 28.941782662000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959923442, 28.946957454000028 ], [ -81.959699790999935, 28.946993445000032 ], [ -81.959550884999942, 28.947016427000051 ], [ -81.959390531999986, 28.947032210000032 ], [ -81.959316140999988, 28.947037307000073 ], [ -81.959185997999953, 28.947047980000036 ], [ -81.959089897999945, 28.947051160000058 ], [ -81.958989347999989, 28.947054404000028 ], [ -81.958886935999942, 28.947056831000054 ], [ -81.958773350999934, 28.947057615000062 ], [ -81.958655110999985, 28.947056760000066 ], [ -81.958549908999942, 28.947054270000024 ], [ -81.958435394999981, 28.947048503000076 ], [ -81.958324606999952, 28.947042736000071 ], [ -81.958219405999955, 28.947035333000031 ], [ -81.958107816999984, 28.947024531000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958107816999984, 28.947024531000068 ], [ -81.957905660999984, 28.947015582000063 ], [ -81.957823731999952, 28.947014738000064 ], [ -81.957758559999945, 28.947016355000073 ], [ -81.957690511999942, 28.947018734000039 ], [ -81.957632731999979, 28.94702303300005 ], [ -81.957546283999989, 28.947026933000075 ], [ -81.957428040999957, 28.947037543000079 ], [ -81.957317244999956, 28.94705306700007 ], [ -81.957218762999958, 28.947070815000075 ], [ -81.957095645999971, 28.947092304000023 ], [ -81.956978326999945, 28.947117652000031 ], [ -81.956868567999948, 28.947149439000043 ], [ -81.956812929999955, 28.947166691000064 ], [ -81.956737652999948, 28.947189693000041 ], [ -81.956672195999943, 28.947211261000064 ], [ -81.956611458999987, 28.947232181000061 ], [ -81.956556520999982, 28.947250998000072 ], [ -81.956503444999953, 28.947269816000073 ], [ -81.956448504999969, 28.947293546000026 ], [ -81.956400082999949, 28.947314822000067 ], [ -81.956355385999984, 28.947335281000051 ], [ -81.95630882599994, 28.947356556000045 ], [ -81.956264127999987, 28.947379471000033 ], [ -81.956215609999958, 28.947406843000067 ], [ -81.956161600999963, 28.947437047000051 ], [ -81.956120686999952, 28.947461500000031 ], [ -81.956058495999969, 28.947496021000063 ], [ -81.955997938999985, 28.947533419000024 ], [ -81.955893487999958, 28.947600456000032 ], [ -81.95581339599994, 28.947656934000065 ], [ -81.955764038999973, 28.947690493000039 ], [ -81.955699779999975, 28.947733055000072 ], [ -81.955660675, 28.94774592400006 ], [ -81.955615642999987, 28.947747831000072 ], [ -81.955576662999988, 28.947749479000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964310378999983, 28.938273591000041 ], [ -81.964327183999956, 28.93843690500006 ], [ -81.964377723999974, 28.938831600000071 ], [ -81.964483189999953, 28.939631684000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95993926899996, 28.947065786000053 ], [ -81.959973024999954, 28.947059646000071 ], [ -81.960081639999942, 28.947035303000064 ], [ -81.960189578999973, 28.947011601000042 ], [ -81.960301118999951, 28.946983154000065 ], [ -81.960453695999945, 28.946948539000061 ], [ -81.960619547999954, 28.946894197000063 ], [ -81.960847241999943, 28.946817624000062 ], [ -81.961077750999948, 28.946733636000033 ], [ -81.961114876999943, 28.946696129000031 ], [ -81.961151234999988, 28.946659397000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964483189999953, 28.939631684000062 ], [ -81.964483497999936, 28.939634022000064 ], [ -81.964530195999941, 28.939988285000027 ], [ -81.964566935999983, 28.940274868000074 ], [ -81.964579560999937, 28.940386260000025 ], [ -81.964588747999983, 28.94045512100007 ], [ -81.964600771999983, 28.940587717000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964263827999957, 28.937949918000072 ], [ -81.964279801999965, 28.938072856000076 ], [ -81.964310378999983, 28.938273591000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964629946999935, 28.941782662000037 ], [ -81.96463479199997, 28.942228112000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053718250999964, 28.858206034000034 ], [ -82.053747349999981, 28.859665262000078 ], [ -82.053755527999954, 28.861404701000026 ], [ -82.053760543999942, 28.861835295000049 ], [ -82.05376059699995, 28.861839881000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05376096699996, 28.864262530000076 ], [ -82.053758760999983, 28.864483551000035 ], [ -82.053763443999969, 28.86548511500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051577854999948, 28.865493507000053 ], [ -82.05157626099998, 28.865493513000047 ], [ -82.050566830999969, 28.865497359000074 ], [ -82.049762464999958, 28.865497658000038 ], [ -82.049649937999959, 28.865499534000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053761150999946, 28.853400234000048 ], [ -82.053779010999961, 28.852608532000033 ], [ -82.05379974799996, 28.852375948000031 ], [ -82.053817081999966, 28.852287195000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053859337999938, 28.849296791000029 ], [ -82.053859011999975, 28.848663262000059 ], [ -82.05387928, 28.847493447000033 ], [ -82.053881506999971, 28.847293782000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053817081999966, 28.852287195000031 ], [ -82.053824836999979, 28.852126003000024 ], [ -82.053854951999938, 28.851569253000036 ], [ -82.053866773999971, 28.850910801000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053662506999956, 28.926662004000036 ], [ -82.053664379999987, 28.927175762000047 ], [ -82.053645722999988, 28.927386719000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053653864999944, 28.923806693000074 ], [ -82.053653879999956, 28.923810343000071 ], [ -82.053654365999989, 28.923925287000031 ], [ -82.053663427999936, 28.925326731000041 ], [ -82.053663177999965, 28.925527487000068 ], [ -82.053663177999965, 28.92552762300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053652799999952, 28.934710528000039 ], [ -82.053653953999969, 28.935272605000023 ], [ -82.053654732999973, 28.936785945000054 ], [ -82.053648804999966, 28.937422468000079 ], [ -82.053647210999941, 28.938376332000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053647210999941, 28.938376332000075 ], [ -82.053649993999954, 28.939730083000029 ], [ -82.053654841999958, 28.941047146000074 ], [ -82.053657142999953, 28.942020198000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030550152999979, 28.912832519000062 ], [ -82.030711151999981, 28.913473574000079 ], [ -82.03077899699997, 28.913767672000063 ], [ -82.030833260999941, 28.913966387000073 ], [ -82.030896580999979, 28.914232664000053 ], [ -82.030977998999958, 28.914598303000048 ], [ -82.03109104899994, 28.915003678000062 ], [ -82.031176995999942, 28.915401110000062 ], [ -82.031276495999975, 28.915806488000044 ], [ -82.031335304999971, 28.916080718000046 ], [ -82.031416707999938, 28.916386736000049 ], [ -82.031427434999955, 28.91643016200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035698599999989, 28.934582452000029 ], [ -82.035698655999965, 28.934582672000033 ], [ -82.035730133999948, 28.934705333000068 ], [ -82.035752751999951, 28.934766714000034 ], [ -82.035776787999964, 28.934794185000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053682251999987, 28.909244907000073 ], [ -82.052300076999984, 28.909232610000061 ], [ -82.051406694999969, 28.909247851000032 ], [ -82.048927910999964, 28.909236742000076 ], [ -82.047518428999979, 28.909228491000079 ], [ -82.047516497999936, 28.909228480000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047516497999936, 28.909228480000024 ], [ -82.046509515999958, 28.909222585000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046509515999958, 28.909222585000066 ], [ -82.046435842999983, 28.909222154000076 ], [ -82.045388012999979, 28.909217451000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044224713999938, 28.909212230000037 ], [ -82.044224334999967, 28.909212228000058 ], [ -82.043298536999941, 28.909208073000059 ], [ -82.041243337999958, 28.909200729000077 ], [ -82.041242749999981, 28.909200727000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041242749999981, 28.909200727000041 ], [ -82.041176072999974, 28.909200489000057 ], [ -82.040778732999968, 28.909198891000074 ], [ -82.04038881699995, 28.909196945000076 ], [ -82.040214416999959, 28.909196272000031 ], [ -82.040207897999949, 28.909196247000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042844677999938, 28.901905742000054 ], [ -82.041422304999969, 28.901910666000049 ], [ -82.041267727, 28.901910419000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043339872999979, 28.901904024000032 ], [ -82.043337955999959, 28.901904031000072 ], [ -82.042844677999938, 28.901905742000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049709100999962, 28.839322792000075 ], [ -82.050376047999976, 28.839551931000074 ], [ -82.051053784999965, 28.839757666000025 ], [ -82.051917088999971, 28.840005946000076 ], [ -82.052249370999959, 28.840101872000048 ], [ -82.05226208199997, 28.84010554200006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052332758999967, 28.839939703000027 ], [ -82.052332256999989, 28.839939560000062 ], [ -82.052008437999973, 28.839847274000078 ], [ -82.051024110999947, 28.839565893000042 ], [ -82.050399053999968, 28.83936959600004 ], [ -82.049936088999971, 28.839215349000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983699211999976, 28.803048856000032 ], [ -81.98350024299998, 28.803136312000049 ], [ -81.983246727999983, 28.803251294000063 ], [ -81.983040518999985, 28.803360096000063 ], [ -81.982816722999985, 28.803496816000063 ], [ -81.98268313799997, 28.80359076700006 ], [ -81.982547129999944, 28.803693290000069 ], [ -81.982435912999961, 28.803785545000039 ], [ -81.982173004999936, 28.803956295000035 ], [ -81.982040084999937, 28.804062138000063 ], [ -81.981887472999972, 28.804155675000061 ], [ -81.981759475999979, 28.804229519000046 ], [ -81.981601941999941, 28.804249211000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984437885999967, 28.802721788000042 ], [ -81.98442653099994, 28.802726844000063 ], [ -81.984022581999966, 28.802906720000067 ], [ -81.983699211999976, 28.803048856000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982639852999966, 28.803774786000076 ], [ -81.982768682999961, 28.803675686000076 ], [ -81.982858332999967, 28.803630515000066 ], [ -81.98301880799994, 28.803527401000053 ], [ -81.983237397999972, 28.803403666000065 ], [ -81.983347557999934, 28.803349439000044 ], [ -81.983655484999986, 28.803209670000058 ], [ -81.984789164999938, 28.802709408000055 ], [ -81.985671294999975, 28.80231912000005 ], [ -81.986673983999935, 28.801872305000074 ], [ -81.987468419999971, 28.80152103000006 ], [ -81.988032143999988, 28.80126652000007 ], [ -81.988374075999957, 28.801116539000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988458108999964, 28.800939615000061 ], [ -81.987695775999953, 28.801276547000043 ], [ -81.986692750999964, 28.801721225000051 ], [ -81.985681220999936, 28.802170025000066 ], [ -81.984688612999946, 28.802610141000059 ], [ -81.984437885999967, 28.802721788000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051227710999967, 28.801683155000035 ], [ -82.050730714999986, 28.80168926500005 ], [ -82.050357006999945, 28.801691124000058 ], [ -82.050255530999948, 28.801692193000065 ], [ -82.050119311999936, 28.801700918000051 ], [ -82.050011731999973, 28.80172370300005 ], [ -82.049878336999939, 28.801761660000068 ], [ -82.049736340999971, 28.801814783000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046372127999973, 28.804628734000062 ], [ -82.045611705999988, 28.805264685000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014703744999963, 28.79966713500005 ], [ -82.014700793999964, 28.799667120000038 ], [ -82.013560368999947, 28.799661151000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008271828999966, 28.869545274000075 ], [ -82.008259434999957, 28.869549689000053 ], [ -82.008248287999947, 28.869554362000031 ], [ -82.00823930599995, 28.869558731000041 ], [ -82.008229724999978, 28.86956404700004 ], [ -82.008222519999947, 28.869568538000067 ], [ -82.008215132999965, 28.869573634000062 ], [ -82.008206142999938, 28.869580598000027 ], [ -82.008199219999938, 28.869586624000078 ], [ -82.008193217999974, 28.869592392000072 ], [ -82.008187138999972, 28.869598844000052 ], [ -82.008182278999982, 28.869604525000057 ], [ -82.008176747999983, 28.869611678000069 ], [ -82.008172019999961, 28.869618512000045 ], [ -82.008166955999968, 28.869626778000054 ], [ -82.008163635999949, 28.869632901000045 ], [ -82.008160124999961, 28.869640188000062 ], [ -82.008156311999983, 28.869649472000049 ], [ -82.008153548999985, 28.869657582000059 ], [ -82.00815111299994, 28.869666407000068 ], [ -82.008149037999942, 28.869676460000051 ], [ -82.008147900999973, 28.86968446700007 ], [ -82.00814722299998, 28.869692290000046 ], [ -82.008146966999959, 28.869700761000047 ], [ -82.008139203999974, 28.869925736000027 ], [ -82.008142445999965, 28.870549640000036 ], [ -82.008141560999945, 28.870863834000033 ], [ -82.008141554999952, 28.870866002000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038151992999985, 28.650138553000033 ], [ -82.038126403999968, 28.650138455000047 ], [ -82.03747356599996, 28.650138637000055 ], [ -82.036868156999958, 28.650141264000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019583618999945, 28.609897659000069 ], [ -82.018182825999986, 28.609900921000076 ], [ -82.017410846999951, 28.609902623000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01135057099998, 28.609916032000058 ], [ -82.011341241999958, 28.609916063000071 ], [ -82.009194105999939, 28.609923300000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970156319999944, 28.714459895000061 ], [ -81.970096730999956, 28.714367910000078 ], [ -81.970007330999977, 28.71428905700003 ], [ -81.969808634999936, 28.714205799000069 ], [ -81.969659611999987, 28.714148831000045 ], [ -81.969520521999982, 28.714105003000043 ], [ -81.969396336999978, 28.714056799000048 ], [ -81.969282079999971, 28.714039254000056 ], [ -81.969182732999968, 28.713995436000062 ], [ -81.969022528999972, 28.713880474000064 ], [ -81.968909568999948, 28.713741355000025 ], [ -81.96874868499998, 28.713514965000059 ], [ -81.968621574999986, 28.713250770000059 ], [ -81.968527237999979, 28.713071184000057 ], [ -81.968447810999976, 28.712874081000052 ], [ -81.968388251999954, 28.712685743000065 ], [ -81.968348549999973, 28.712549965000051 ], [ -81.968348603999971, 28.712370400000054 ], [ -81.968358742999953, 28.712132848000067 ], [ -81.968313941999952, 28.711998123000058 ], [ -81.96823448899994, 28.71188423500007 ], [ -81.968125224999937, 28.711792236000065 ], [ -81.967981176999956, 28.711726507000037 ], [ -81.96780234299996, 28.711700188000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999567222999985, 28.786608370000067 ], [ -81.99961852399997, 28.786618508000061 ], [ -81.999726210999938, 28.786638043000039 ], [ -81.999834270999941, 28.786655902000064 ], [ -81.999942672999964, 28.786672085000077 ], [ -82.000083335999989, 28.786691961000031 ], [ -82.000208974999964, 28.786708944000054 ], [ -82.000334863999967, 28.786724424000056 ], [ -82.000460979999957, 28.786738398000068 ], [ -82.00058729899996, 28.786750862000076 ], [ -82.000637028999961, 28.786756487000048 ], [ -82.000686411999936, 28.786764116000029 ], [ -82.000735347999978, 28.786773731000039 ], [ -82.000783729999966, 28.786785316000078 ], [ -82.000831457999936, 28.786798842000053 ], [ -82.000878432999968, 28.786814284000059 ], [ -82.000924552999948, 28.786831608000057 ], [ -82.000969721999979, 28.786850776000051 ], [ -82.001013845999978, 28.786871750000046 ], [ -82.001056831999961, 28.786894485000062 ], [ -82.001098587999934, 28.786918934000028 ], [ -82.001139027999955, 28.786945044000049 ], [ -82.001179540999942, 28.78697380400007 ], [ -82.001218522999977, 28.787004162000073 ], [ -82.001255890999971, 28.787036056000034 ], [ -82.001291566999953, 28.787069418000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998742358999948, 28.786438636000071 ], [ -81.998742371999981, 28.78643863700006 ], [ -81.998786640999981, 28.786441907000039 ], [ -81.998847557999966, 28.786448540000038 ], [ -81.998908130999951, 28.786457276000078 ], [ -81.998968266999952, 28.78646810500004 ], [ -81.999027873999978, 28.786481007000077 ], [ -81.999086858999988, 28.786495964000039 ], [ -81.999192178999976, 28.786523765000027 ], [ -81.999298037999949, 28.786549928000056 ], [ -81.999404403999961, 28.786574443000063 ], [ -81.999511243999962, 28.786597307000079 ], [ -81.999567222999985, 28.786608370000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001364918999968, 28.788339634000067 ], [ -82.00110971099997, 28.788708682000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996604984999976, 28.787545544000068 ], [ -81.996625804999951, 28.787516354000047 ], [ -81.996671761999949, 28.787455938000051 ], [ -81.996719712999948, 28.787396738000041 ], [ -81.996769618999963, 28.787338804000058 ], [ -81.99682143299998, 28.787282188000063 ], [ -81.996875114999966, 28.787226937000071 ], [ -81.99693061499994, 28.787173098000039 ], [ -81.996987885999943, 28.787120719000029 ], [ -81.99704688099996, 28.787069845000076 ], [ -81.997107544999949, 28.787020520000056 ], [ -81.997169827999983, 28.786972786000035 ], [ -81.99723367699994, 28.786926685000026 ], [ -81.99729903399998, 28.786882256000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001458985999989, 28.78728420300007 ], [ -82.001466201999961, 28.787296366000078 ], [ -82.001488170999949, 28.787337915000023 ], [ -82.001507962999938, 28.787380305000056 ], [ -82.001525538999942, 28.787423447000037 ], [ -82.001540860999967, 28.787467249000031 ], [ -82.001553897999941, 28.787511622000068 ], [ -82.001564621999989, 28.787556474000041 ], [ -82.001573009999959, 28.787601711000036 ], [ -82.001579043999982, 28.787647236000055 ], [ -82.001582714999984, 28.787692958000036 ], [ -82.001584011999967, 28.787738779000051 ], [ -82.001582932999952, 28.78778460500007 ], [ -82.001579480999965, 28.787830340000028 ], [ -82.001573662999988, 28.78787588800003 ], [ -82.001565490999951, 28.78792115400006 ], [ -82.001554981999959, 28.787966045000076 ], [ -82.00154215799995, 28.78801046600006 ], [ -82.001527044999989, 28.788054326000065 ], [ -82.001509674999966, 28.788097532000052 ], [ -82.001490083999954, 28.788139994000062 ], [ -82.001468313999965, 28.78818162500005 ], [ -82.001444408999987, 28.788222336000047 ], [ -82.001418418999947, 28.788262043000032 ], [ -82.001364918999968, 28.788339634000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00110971099997, 28.788708682000049 ], [ -82.001216371999988, 28.788773175000074 ], [ -82.001550710999936, 28.788910169000076 ], [ -82.001744722999945, 28.788958451000042 ], [ -82.001952864999964, 28.788991830000043 ], [ -82.002066254999988, 28.789002175000064 ], [ -82.002201903999946, 28.789007950000041 ], [ -82.002527431999965, 28.789009129000078 ], [ -82.002601624999954, 28.789009295000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994552341999963, 28.789142808000065 ], [ -81.995202155999948, 28.788830406000045 ], [ -81.995575327999973, 28.788650039000061 ], [ -81.996041657999967, 28.788481931000035 ], [ -81.996390858999973, 28.788389517000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995901351999976, 28.759626356000069 ], [ -81.995901304999961, 28.758809905000078 ], [ -81.995854196999971, 28.758303514000033 ], [ -81.995763895999971, 28.757816600000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023104, 28.755884859000048 ], [ -82.021009819999961, 28.755868106000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998967044999972, 28.755816591000041 ], [ -81.998964665999949, 28.755816587000027 ], [ -81.99871938299998, 28.755816201000073 ], [ -81.998033673999942, 28.755815319000078 ], [ -81.996563988999981, 28.755807824000044 ], [ -81.996224250999944, 28.75579280900007 ], [ -81.995903846999965, 28.755791050000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954095264999978, 28.755331350000063 ], [ -81.954035137999938, 28.755329761000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021909879999953, 28.872750646000043 ], [ -82.020615377999945, 28.872731446000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028897489999963, 28.872798385000067 ], [ -82.028885818999981, 28.873687133000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028883547999953, 28.880059508000045 ], [ -82.02888354199996, 28.880060076000063 ], [ -82.02888119399995, 28.880298005000043 ], [ -82.028875610999989, 28.881994587000065 ], [ -82.028875607999964, 28.881995068000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028895518999946, 28.87884624700007 ], [ -82.028895502999944, 28.878847870000072 ], [ -82.02888625199995, 28.87978548600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028878500999951, 28.883683234000046 ], [ -82.028201442999944, 28.883680881000032 ], [ -82.027800415999934, 28.883682726000075 ], [ -82.026798335999956, 28.883679438000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020553691999964, 28.897771849000037 ], [ -82.020550882999942, 28.898061517000031 ], [ -82.020549123999956, 28.898339144000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020574055999987, 28.890953274000026 ], [ -82.020574056999976, 28.890955760000054 ], [ -82.020574107999948, 28.891219739000064 ], [ -82.020574693999947, 28.891624732000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017645770999934, 28.891431726000064 ], [ -82.017565221999973, 28.891430813000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024691388999941, 28.902951180000059 ], [ -82.024683533999962, 28.903732026000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024683533999962, 28.903732026000057 ], [ -82.024683532999973, 28.903732081000044 ], [ -82.024677215999986, 28.904360052000072 ], [ -82.024674112999946, 28.904900092000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024670776999983, 28.90548076400006 ], [ -82.024668863999977, 28.905813837000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024675921999972, 28.907799813000054 ], [ -82.024675921999972, 28.907800163000047 ], [ -82.024676621999959, 28.908960259000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024676621999959, 28.908960259000025 ], [ -82.024676621999959, 28.908961008000063 ], [ -82.02467669899994, 28.909087421000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054961722999963, 28.916517409000051 ], [ -82.054586658999938, 28.916521446000047 ], [ -82.053665151999951, 28.916525485000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057000703999961, 28.916518472000064 ], [ -82.05668062899997, 28.916518607000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003466106999952, 28.78657019700006 ], [ -82.003380116999949, 28.786017163000054 ], [ -82.003366299999982, 28.785923696000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003555124999934, 28.78718920700004 ], [ -82.003549431999943, 28.787136421000071 ], [ -82.003533768999944, 28.787012939000078 ], [ -82.00351578599998, 28.786889702000053 ], [ -82.003466106999952, 28.78657019700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002008027999977, 28.78718578400003 ], [ -82.003555124999934, 28.78718920700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001458985999989, 28.78728420300007 ], [ -82.001610862999939, 28.787215447000051 ], [ -82.001633321999975, 28.78720628700006 ], [ -82.001656533999949, 28.787198723000074 ], [ -82.001680353999973, 28.78719280200005 ], [ -82.00170462899996, 28.78718856100005 ], [ -82.00172921099994, 28.787186029000054 ], [ -82.001753942999983, 28.787185219000037 ], [ -82.002008027999977, 28.78718578400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003577305999954, 28.787501709000026 ], [ -82.003573784999958, 28.787383987000055 ], [ -82.003562771999952, 28.787260115000038 ], [ -82.003555124999934, 28.78718920700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002364497999963, 28.787874830000078 ], [ -82.002364039999975, 28.787536233000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003574642, 28.787877506000029 ], [ -82.003577305999954, 28.787530438000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002364497999963, 28.787874830000078 ], [ -82.003574642, 28.787877506000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00236254899994, 28.788557445000038 ], [ -82.002364497999963, 28.787874830000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001364918999968, 28.788339634000067 ], [ -82.001417562999961, 28.788366930000052 ], [ -82.001471304999939, 28.788392515000055 ], [ -82.001526069999954, 28.788416355000038 ], [ -82.001581786999964, 28.788438417000066 ], [ -82.001638380999964, 28.788458673000036 ], [ -82.001695775999963, 28.788477095000076 ], [ -82.001753896999958, 28.788493660000029 ], [ -82.001812665999978, 28.788508343000046 ], [ -82.00187200299996, 28.788521127000024 ], [ -82.001931830999979, 28.788531995000028 ], [ -82.001992069999972, 28.788540932000046 ], [ -82.002052637999952, 28.788547925000046 ], [ -82.002113455999961, 28.788552965000065 ], [ -82.002174442999944, 28.788556046000053 ], [ -82.002235515999985, 28.788557164000053 ], [ -82.00236254899994, 28.788557445000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003567459999942, 28.788560110000049 ], [ -82.003574642, 28.787877506000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00236254899994, 28.788557445000038 ], [ -82.003567459999942, 28.788560110000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003565226999967, 28.788772322000057 ], [ -82.003567459999942, 28.788560110000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001291566999953, 28.787069418000044 ], [ -82.001325476999966, 28.787104182000064 ], [ -82.001357550999955, 28.787140272000045 ], [ -82.001387720999958, 28.787177615000076 ], [ -82.001415923999957, 28.787216132000026 ], [ -82.001442102999988, 28.787255744000049 ], [ -82.001458917999969, 28.787284088000035 ], [ -82.001458985999989, 28.78728420300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08335174399997, 28.725009717000034 ], [ -82.083352209999987, 28.725009427000032 ], [ -82.083373219999942, 28.724996360000034 ], [ -82.083561350999958, 28.724871074000077 ], [ -82.083742878999942, 28.724748705000025 ], [ -82.08388066699996, 28.724647101000073 ], [ -82.084041554999942, 28.724526926000067 ], [ -82.084206560999974, 28.724392195000064 ], [ -82.084417390999988, 28.724217014000033 ], [ -82.08503200399997, 28.723659450000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08503200399997, 28.723659450000071 ], [ -82.085879229999989, 28.722898015000055 ], [ -82.087492396999949, 28.721422462000078 ], [ -82.087748340999951, 28.721188916000074 ], [ -82.08775028499997, 28.721187142000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001596536999955, 28.785300930000062 ], [ -82.001597453999977, 28.784980525000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001596536999955, 28.785300930000062 ], [ -82.003301950999969, 28.785304707000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003301950999969, 28.785304707000023 ], [ -82.003664267999966, 28.785305506000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00162383299994, 28.785919824000075 ], [ -82.003366299999982, 28.785923696000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002009796999971, 28.786566975000028 ], [ -82.001811448999945, 28.786566535000077 ], [ -82.00178860799997, 28.786565430000053 ], [ -82.001766025999984, 28.786562227000047 ], [ -82.001743944999987, 28.786556963000066 ], [ -82.001722610999934, 28.78654969300004 ], [ -82.001702255999987, 28.786540500000058 ], [ -82.001683102999948, 28.786529482000049 ], [ -82.001665362999972, 28.78651676100003 ], [ -82.001649228999952, 28.786502476000067 ], [ -82.001634878999937, 28.786486784000033 ], [ -82.001622468999983, 28.786469856000053 ], [ -82.001612135999949, 28.786451878000037 ], [ -82.001603991999957, 28.78643304700006 ], [ -82.001598127999955, 28.786413568000057 ], [ -82.001594605999969, 28.786393658000065 ], [ -82.001593466999964, 28.786373532000027 ], [ -82.001594119999936, 28.786145255000065 ], [ -82.001595196999972, 28.786110837000024 ], [ -82.001598228999967, 28.786076509000054 ], [ -82.001603208999938, 28.786042357000042 ], [ -82.001610120999942, 28.786008467000045 ], [ -82.001617034999981, 28.785974578000037 ], [ -82.001622012999974, 28.785940426000025 ], [ -82.00162383299994, 28.785919824000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003466106999952, 28.78657019700006 ], [ -82.002009796999971, 28.786566975000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002008027999977, 28.78718578400003 ], [ -82.002009796999971, 28.786566975000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00162383299994, 28.785919824000075 ], [ -82.001625044999969, 28.785906097000066 ], [ -82.001626121999948, 28.785871679000024 ], [ -82.001626664999947, 28.785681910000051 ], [ -82.001625784999987, 28.785647487000062 ], [ -82.001622948999966, 28.78561314500007 ], [ -82.001618166999947, 28.785578971000064 ], [ -82.001611446999959, 28.785545051000042 ], [ -82.001604728999951, 28.785511132000067 ], [ -82.001599944999953, 28.785476958000061 ], [ -82.001597108999988, 28.785442617000058 ], [ -82.001596229999961, 28.785408193000023 ], [ -82.001596536999955, 28.785300930000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003366299999982, 28.785923696000054 ], [ -82.003362624999966, 28.785898835000069 ], [ -82.003346915999941, 28.785780314000078 ], [ -82.003332990999979, 28.785661620000042 ], [ -82.003320852999934, 28.785542773000032 ], [ -82.003310505999934, 28.785423795000042 ], [ -82.003301950999969, 28.785304707000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026979068999935, 28.816111211000077 ], [ -82.026959831999989, 28.817966170000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075377866999986, 28.639232686000071 ], [ -82.075373429999956, 28.638757377000047 ], [ -82.075372724999966, 28.637771541000063 ], [ -82.075366822999968, 28.636668400000076 ], [ -82.075371175999976, 28.635603604000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977210501999934, 28.784518932000026 ], [ -81.977671358999942, 28.784921388000043 ], [ -81.977908613999944, 28.785115678000068 ], [ -81.978330637999989, 28.785461699000052 ], [ -81.978863943999954, 28.785905787000047 ], [ -81.979132697999944, 28.786127830000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977210501999934, 28.784518932000026 ], [ -81.977766909999957, 28.78491215300005 ], [ -81.978197341999987, 28.785208226000066 ], [ -81.978748509999946, 28.78558294100003 ], [ -81.979191556999979, 28.785842937000041 ], [ -81.979541647999952, 28.786036468000077 ], [ -81.979707189999942, 28.786126334000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980618837999941, 28.785163066000052 ], [ -81.980548281999972, 28.785125333000053 ], [ -81.98011573399998, 28.784877369000071 ], [ -81.979175049999981, 28.784359223000024 ], [ -81.97886428399994, 28.784222275000047 ], [ -81.978356144999964, 28.783977992000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987578531999986, 28.789092592000031 ], [ -81.986583197999948, 28.788370991000079 ], [ -81.985604675, 28.787671585000055 ], [ -81.984596769999939, 28.786938869000039 ], [ -81.984290199999975, 28.786731632000055 ], [ -81.983975230999988, 28.786516995000056 ], [ -81.983520369999951, 28.786216839000076 ], [ -81.983050506999973, 28.785943905000067 ], [ -81.982578835999959, 28.785681079000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99511462199996, 28.786747324000032 ], [ -81.995630974999983, 28.786748494000051 ], [ -81.995654990999981, 28.786747734000073 ], [ -81.995678869999949, 28.786745349000057 ], [ -81.995702469999969, 28.786741352000035 ], [ -81.995829374999971, 28.786715172000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993194665999965, 28.786822761000053 ], [ -81.993236747999958, 28.786818090000054 ], [ -81.993316030999949, 28.786802578000049 ], [ -81.993395744999987, 28.786788890000025 ], [ -81.993475835999959, 28.786777032000032 ], [ -81.993556249999983, 28.786767013000031 ], [ -81.993636932999948, 28.786758840000061 ], [ -81.993717828999934, 28.786752519000061 ], [ -81.993798885999979, 28.786748054000043 ], [ -81.993880045999958, 28.786745447000044 ], [ -81.993961256999967, 28.786744702000078 ], [ -81.99511462199996, 28.786747324000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995829374999971, 28.786715172000072 ], [ -81.995823318999953, 28.786692306000077 ], [ -81.995812916999967, 28.786643903000027 ], [ -81.995804839999948, 28.786595157000079 ], [ -81.995799101999978, 28.786546155000053 ], [ -81.995795711999961, 28.786496984000053 ], [ -81.995794676999935, 28.786447730000077 ], [ -81.995798738999952, 28.785288675000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996390858999973, 28.788389517000041 ], [ -81.996354788999952, 28.788212734000069 ], [ -81.996349427999974, 28.788181326000029 ], [ -81.996346133999964, 28.788149696000062 ], [ -81.996344918999966, 28.78811795300004 ], [ -81.996345783999971, 28.788086200000066 ], [ -81.996348729999966, 28.788054544000033 ], [ -81.996353743999975, 28.788023091000071 ], [ -81.996360809999942, 28.787991945000044 ], [ -81.996369905999984, 28.787961211000038 ], [ -81.996381, 28.787930990000064 ], [ -81.996394054999939, 28.787901383000076 ], [ -81.996427272999938, 28.787834804000056 ], [ -81.996462693999945, 28.787769113000024 ], [ -81.99650029299994, 28.78770436700006 ], [ -81.996540033999963, 28.787640622000026 ], [ -81.996581882999976, 28.787577933000023 ], [ -81.996604984999976, 28.787545544000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996604984999976, 28.787545544000068 ], [ -81.996414681999966, 28.787439939000024 ], [ -81.996367995999947, 28.787412824000057 ], [ -81.996322647999989, 28.787384 ], [ -81.996278718999974, 28.787353518000032 ], [ -81.996236284999952, 28.787321433000045 ], [ -81.996195426999975, 28.787287800000058 ], [ -81.996156212999949, 28.78725268200003 ], [ -81.996118711999941, 28.787216139000066 ], [ -81.996082992999959, 28.787178236000045 ], [ -81.996049118999963, 28.787139041000046 ], [ -81.996017148999954, 28.787098624000066 ], [ -81.995987140999944, 28.787057055000048 ], [ -81.99595914799994, 28.787014409000051 ], [ -81.995933219999984, 28.786970763000056 ], [ -81.995909401999938, 28.786926193000056 ], [ -81.995887737999965, 28.786880778000068 ], [ -81.995868263999967, 28.786834599000031 ], [ -81.995863899999961, 28.786822743000073 ], [ -81.99585101699995, 28.786787739000033 ], [ -81.995836025999949, 28.786740279000071 ], [ -81.995829381999954, 28.786715196000046 ], [ -81.995829374999971, 28.786715172000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992143745999954, 28.785327731000052 ], [ -81.992142306999938, 28.785815045000049 ], [ -81.992143177999935, 28.785876203000043 ], [ -81.992146151999975, 28.785937310000065 ], [ -81.992151226999965, 28.785998310000025 ], [ -81.992158395999979, 28.786059146000071 ], [ -81.992167653999957, 28.786119763000045 ], [ -81.992178992999982, 28.786180105000028 ], [ -81.992192400999954, 28.786240116000045 ], [ -81.992207866999934, 28.786299743000029 ], [ -81.992225375999965, 28.786358929000073 ], [ -81.992244912, 28.786417620000066 ], [ -81.99226645799996, 28.786475764000045 ], [ -81.992289993999975, 28.786533306000024 ], [ -81.992348149999941, 28.786669010000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99467640499995, 28.787389894000057 ], [ -81.995003722999968, 28.787390637000044 ], [ -81.995030675999942, 28.787389672000074 ], [ -81.995057433999989, 28.787386660000038 ], [ -81.995083794999971, 28.787381625000023 ], [ -81.99510956599994, 28.787374604000036 ], [ -81.995134551999968, 28.787365650000027 ], [ -81.995158567999965, 28.787354829000037 ], [ -81.995286699999951, 28.787290686000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992497541999967, 28.787017602000049 ], [ -81.992662692999943, 28.787402965000069 ], [ -81.992672489999961, 28.787423059000048 ], [ -81.992684283999949, 28.787442303000034 ], [ -81.992697980999935, 28.787460542000076 ], [ -81.992713470999945, 28.787477632000048 ], [ -81.992730630999972, 28.787493436000034 ], [ -81.992749322999941, 28.787507828000059 ], [ -81.99276939899994, 28.787520691000054 ], [ -81.992790697999965, 28.787531926000042 ], [ -81.992813050999985, 28.787541440000041 ], [ -81.99283627799997, 28.787549159000037 ], [ -81.992860193999945, 28.78755502100006 ], [ -81.992884608999987, 28.787558979000039 ], [ -81.992909328999986, 28.787561001000029 ], [ -81.992934152999965, 28.787561072000074 ], [ -81.99295888499995, 28.787559190000025 ], [ -81.992983329999959, 28.787555371000053 ], [ -81.993007287999944, 28.78754964500007 ], [ -81.993224587999975, 28.787488413000062 ], [ -81.993296037999983, 28.787469357000077 ], [ -81.99336812699994, 28.787452274000032 ], [ -81.99344078699994, 28.787437183000065 ], [ -81.99351394599995, 28.787424095000063 ], [ -81.993587532999982, 28.787413027000071 ], [ -81.993661476999989, 28.787403988000051 ], [ -81.99373570399996, 28.787396986000033 ], [ -81.993810142999962, 28.787392027000067 ], [ -81.993884721999962, 28.787389119000068 ], [ -81.993959367999935, 28.787388262000036 ], [ -81.99467640499995, 28.787389894000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994669468999973, 28.787959679000039 ], [ -81.99467640499995, 28.787389894000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995561063999958, 28.788239855000029 ], [ -81.995541740999954, 28.788056292000078 ], [ -81.995542151999985, 28.787793284000031 ], [ -81.995538929999952, 28.787756707000028 ], [ -81.995533494999961, 28.787720332000049 ], [ -81.995525866999969, 28.787684265000053 ], [ -81.995516066999983, 28.78764860800004 ], [ -81.995504119999964, 28.787613462000024 ], [ -81.995490063999966, 28.787578928000073 ], [ -81.99547393499995, 28.787545102000024 ], [ -81.995455782999954, 28.78751208400007 ], [ -81.995435654999937, 28.787479964000056 ], [ -81.995413612999982, 28.787448837000056 ], [ -81.995389716999966, 28.787418789000071 ], [ -81.995364035999955, 28.787389908000023 ], [ -81.995339358999956, 28.787362217000066 ], [ -81.995316323999987, 28.787333451000052 ], [ -81.995294989999934, 28.787303683000061 ], [ -81.995286742999951, 28.787290754000026 ], [ -81.995286699999951, 28.787290686000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995286699999951, 28.787290686000063 ], [ -81.995275413999934, 28.787272992000055 ], [ -81.99525764599997, 28.787241459000029 ], [ -81.995241734999979, 28.787209167000071 ], [ -81.995227719999946, 28.787176198000054 ], [ -81.99521563899998, 28.787142641000059 ], [ -81.995126770999946, 28.786871936000068 ], [ -81.995121371999971, 28.786852994000071 ], [ -81.995117513999958, 28.78683376400005 ], [ -81.995115212999963, 28.786814340000035 ], [ -81.995114482999952, 28.786794821000058 ], [ -81.99511462199996, 28.786747324000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992348149999941, 28.786669010000026 ], [ -81.99234869199995, 28.786670274000073 ], [ -81.992497541999967, 28.787017602000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028686325999956, 28.865461542000048 ], [ -82.028457202999959, 28.865427977000024 ], [ -82.028000382999949, 28.865407350000055 ], [ -82.026812498999959, 28.865364619000047 ], [ -82.025826347999953, 28.865353159000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990372074999982, 28.789965580000057 ], [ -81.99004107899998, 28.789707939000039 ], [ -81.98999549499996, 28.789671014000078 ], [ -81.989951607999956, 28.789632524000069 ], [ -81.989909489999945, 28.789592532000029 ], [ -81.98986920699997, 28.78955109900005 ], [ -81.989830818999963, 28.789508291000061 ], [ -81.989794389999986, 28.789464176000024 ], [ -81.98975997499997, 28.789418823000062 ], [ -81.989739328999974, 28.789392166000027 ], [ -81.989716943999952, 28.789366622000045 ], [ -81.989692897999987, 28.789342278000049 ], [ -81.989667271999963, 28.78931921800006 ], [ -81.989640154999961, 28.789297522000027 ], [ -81.989611639999964, 28.789277263000031 ], [ -81.989581826999938, 28.789258514000039 ], [ -81.989550814999973, 28.789241336000032 ], [ -81.989518713999985, 28.789225790000046 ], [ -81.989507966999952, 28.789221287000032 ], [ -81.989507946999936, 28.78922127900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991352283999959, 28.790888518000031 ], [ -81.991306392999945, 28.790841732000047 ], [ -81.991232145999959, 28.790762690000065 ], [ -81.991159827999979, 28.790682271000037 ], [ -81.990960977999976, 28.790456238000047 ], [ -81.990924193999945, 28.790416010000058 ], [ -81.990892104999944, 28.790383494000025 ], [ -81.990892081999959, 28.790383471000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991840067999988, 28.791324259000078 ], [ -81.991790449999939, 28.791285119000065 ], [ -81.991705361999948, 28.791215066000063 ], [ -81.991621990999988, 28.791143430000034 ], [ -81.991540370999985, 28.791070245000071 ], [ -81.991460540999981, 28.790995545000044 ], [ -81.991382535999946, 28.790919362000068 ], [ -81.991352283999959, 28.790888518000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996136519999936, 28.791399729000034 ], [ -81.996059096999943, 28.791447830000038 ], [ -81.996029937999936, 28.791467058000023 ], [ -81.996002100999988, 28.791487750000044 ], [ -81.995659200999967, 28.791758108000067 ], [ -81.995657922999953, 28.79175910500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993196722999983, 28.792218815000069 ], [ -81.993182777999948, 28.792211740000027 ], [ -81.993129784999951, 28.792182829000069 ], [ -81.993077866999954, 28.792152442000031 ], [ -81.993027076999965, 28.792120609000051 ], [ -81.992240221999964, 28.791610572000025 ], [ -81.992147156999977, 28.791548890000058 ], [ -81.992055606999941, 28.791485474000069 ], [ -81.991965610999955, 28.791420354000024 ], [ -81.991877211999963, 28.791353559000072 ], [ -81.991840067999988, 28.791324259000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995657922999953, 28.79175910500004 ], [ -81.995559238999988, 28.791835580000054 ], [ -81.995457789999989, 28.791911539000068 ], [ -81.995354884999983, 28.791985962000069 ], [ -81.995250553999938, 28.792058829000041 ], [ -81.995144827, 28.792130116000067 ], [ -81.995087206999983, 28.792169538000053 ], [ -81.995031009999934, 28.792210521000072 ], [ -81.994976287999975, 28.792253027000072 ], [ -81.994923096999969, 28.792297014000042 ], [ -81.994871486999955, 28.792342439000038 ], [ -81.994821507999973, 28.79238926000005 ], [ -81.994773209999948, 28.792437428000028 ], [ -81.994726637999975, 28.79248689800005 ], [ -81.994681838999952, 28.792537623000044 ], [ -81.994638854999948, 28.792589552000038 ], [ -81.994597728999963, 28.792642636000039 ], [ -81.994558498999936, 28.792696823000028 ], [ -81.99454425, 28.792715261000069 ], [ -81.994528152999976, 28.792732480000041 ], [ -81.994510344999981, 28.792748337000035 ], [ -81.994490970999948, 28.792762700000026 ], [ -81.994470193999973, 28.792775450000079 ], [ -81.994448185999943, 28.792786481000064 ], [ -81.994425127999989, 28.792795701000045 ], [ -81.994401213999936, 28.79280303400003 ], [ -81.994376640999974, 28.792808419000039 ], [ -81.994351613999982, 28.792811809000057 ], [ -81.994326339999986, 28.792813180000053 ], [ -81.994301029999974, 28.792812518000062 ], [ -81.994275892999951, 28.792809829000078 ], [ -81.994251138999971, 28.792805136000027 ], [ -81.994226970999989, 28.792798477000076 ], [ -81.994203592999952, 28.792789907000042 ], [ -81.994181195999943, 28.792779498000073 ], [ -81.994159969999941, 28.792767337000043 ], [ -81.994140087999938, 28.792753524000034 ], [ -81.994121715999938, 28.792738174000078 ], [ -81.994105005999984, 28.792721414000027 ], [ -81.994069081999953, 28.792683552000028 ], [ -81.994031375999953, 28.792647060000036 ], [ -81.993991953999966, 28.792612001000066 ], [ -81.993950888999962, 28.792578439000067 ], [ -81.993908250999937, 28.792546435000077 ], [ -81.993864117999976, 28.79251604500007 ], [ -81.993830093999975, 28.792494590000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996136519999936, 28.791399729000034 ], [ -81.996206066999946, 28.791478249000079 ], [ -81.996377460999952, 28.791636769000036 ], [ -81.996474780999961, 28.791733879000049 ], [ -81.996620165999957, 28.791827126000044 ], [ -81.996674575999975, 28.791860502000077 ], [ -81.996743571999957, 28.791902826000069 ], [ -81.996894595999947, 28.791962373000047 ], [ -81.997005638999951, 28.791988930000059 ], [ -81.997071646999984, 28.791998526000043 ], [ -81.997071726999934, 28.79199853800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99093912099994, 28.787904940000033 ], [ -81.991457234999984, 28.787620739000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990589951999937, 28.788096433000078 ], [ -81.99093912099994, 28.787904940000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989923939999983, 28.788516916000049 ], [ -81.989943133999986, 28.788496140000063 ], [ -81.989975064999953, 28.788464959000066 ], [ -81.990008756999941, 28.788435249000031 ], [ -81.990044119999936, 28.788407089000032 ], [ -81.99008106499997, 28.788380550000056 ], [ -81.990119493999941, 28.788355701000057 ], [ -81.990159308999978, 28.788332607000029 ], [ -81.990589951999937, 28.788096433000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989507946999936, 28.78922127900006 ], [ -81.989812591999964, 28.788671171000033 ], [ -81.989834583999937, 28.788633912000023 ], [ -81.989858698999967, 28.788597687000049 ], [ -81.989884874999973, 28.788562590000026 ], [ -81.989913043999934, 28.788528711000026 ], [ -81.989923939999983, 28.788516916000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990589951999937, 28.788096433000078 ], [ -81.990617286999964, 28.788127546000055 ], [ -81.990657411999962, 28.788174945000037 ], [ -81.990695583, 28.788223579000032 ], [ -81.990731750999942, 28.788273387000061 ], [ -81.990765870999951, 28.78832430500006 ], [ -81.990797898999972, 28.788376267000046 ], [ -81.990827791999948, 28.788429206000046 ], [ -81.990855512999985, 28.788483054000039 ], [ -81.990881025999954, 28.788537744000052 ], [ -81.990897484999948, 28.788572342000066 ], [ -81.99091587099997, 28.788606179000055 ], [ -81.990936136999949, 28.788639171000057 ], [ -81.990958236999973, 28.788671237000074 ], [ -81.990982112999973, 28.788702298000032 ], [ -81.991007708999973, 28.788732278000055 ], [ -81.991034960999968, 28.788761104000059 ], [ -81.991063800999939, 28.788788703000023 ], [ -81.991094160999978, 28.788815009000075 ], [ -81.991125962999945, 28.788839956000061 ], [ -81.991159128999982, 28.788863483000057 ], [ -81.991235901999971, 28.788914066000075 ], [ -81.991313914999978, 28.788963152000065 ], [ -81.991393132999974, 28.789010719000032 ], [ -81.99145453999995, 28.789045879000071 ], [ -81.991454548999968, 28.789045884000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99285165799995, 28.789295224000057 ], [ -81.993003048999981, 28.789254406000055 ], [ -81.993034232999946, 28.789247024000076 ], [ -81.993065919999935, 28.789241552000078 ], [ -81.993097957999964, 28.789238018000049 ], [ -81.99313019799996, 28.789236436000067 ], [ -81.993162483999981, 28.789236814000049 ], [ -81.993194664999976, 28.78923915300004 ], [ -81.993226584999945, 28.789243439000074 ], [ -81.993258093999941, 28.78924965300007 ], [ -81.993289042999947, 28.78925776400007 ], [ -81.993319282999948, 28.789267735000067 ], [ -81.993348671999968, 28.789279518000058 ], [ -81.993377068999962, 28.789293057000066 ], [ -81.993404338999937, 28.789308288000029 ], [ -81.993430353999941, 28.789325137000048 ], [ -81.993454988999986, 28.789343527000028 ], [ -81.993478125999957, 28.789363367000078 ], [ -81.994065584999987, 28.789903095000057 ], [ -81.994105501999968, 28.789941179000039 ], [ -81.994143759999986, 28.78998056100005 ], [ -81.994180307999954, 28.790021186000047 ], [ -81.994215089999955, 28.790062994000039 ], [ -81.994248058999972, 28.790105929000049 ], [ -81.994279167999935, 28.790149927000073 ], [ -81.994308372999967, 28.790194927000073 ], [ -81.994335631999945, 28.790240864000054 ], [ -81.994400176999989, 28.790356928000051 ], [ -81.994462794999947, 28.790473809000048 ], [ -81.994523471999969, 28.790591481000035 ], [ -81.994582196999943, 28.79070992000004 ], [ -81.994638954999971, 28.790829100000053 ], [ -81.994647071999964, 28.790845479000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989507946999936, 28.78922127900006 ], [ -81.989485634999937, 28.789211929000032 ], [ -81.989451686999985, 28.789199801000052 ], [ -81.989416991999974, 28.789189447000069 ], [ -81.989381667999965, 28.789180903000045 ], [ -81.989328914999987, 28.789168560000064 ], [ -81.989276796999945, 28.789154275000044 ], [ -81.989225406999935, 28.78913807400005 ], [ -81.989174832999936, 28.789119987000049 ], [ -81.989125168999976, 28.789100043000076 ], [ -81.989076496999985, 28.789078280000069 ], [ -81.989028906999977, 28.789054735000036 ], [ -81.988982481999983, 28.789029450000044 ], [ -81.988937302999943, 28.789002469000025 ], [ -81.988893450999967, 28.78897383900005 ], [ -81.988851002, 28.788943613000072 ], [ -81.988810031999947, 28.788911843000051 ], [ -81.988770612999986, 28.788878584000031 ], [ -81.98863662399998, 28.788756238000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991019011999981, 28.786622011000077 ], [ -81.991085753999982, 28.786768907000067 ], [ -81.991252775999953, 28.787189537000074 ], [ -81.991326862999983, 28.787416342000029 ], [ -81.991457234999984, 28.787620739000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035364349999952, 28.845672252000043 ], [ -82.035307884999952, 28.845885991000046 ], [ -82.03530798099996, 28.846171043000027 ], [ -82.035434070999941, 28.846181754000042 ], [ -82.035442346999957, 28.847188738000057 ], [ -82.035398750999946, 28.847230299000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028896820999989, 28.856276806000039 ], [ -82.02891154799994, 28.85622489800005 ], [ -82.028946903999952, 28.856157415000041 ], [ -82.029297577999955, 28.855697981000048 ], [ -82.030066706999946, 28.854737573000079 ], [ -82.030122693999942, 28.854659703000038 ], [ -82.030158053999969, 28.854605195000033 ], [ -82.03018162099994, 28.854550689000064 ], [ -82.030182771999989, 28.854545363000057 ], [ -82.030182930999956, 28.854544625000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036908388999962, 28.890845489000071 ], [ -82.036913025999979, 28.891736258000037 ], [ -82.036913770999945, 28.89183347900007 ], [ -82.03691377499996, 28.891834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03708173299998, 28.89183031400006 ], [ -82.037081704999935, 28.891827935000038 ], [ -82.037080251999953, 28.891705856000044 ], [ -82.037078061999978, 28.891222762000041 ], [ -82.037083982999945, 28.890848008000034 ], [ -82.037081870999941, 28.890583373000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03691377499996, 28.891834 ], [ -82.036917528999936, 28.892323741000041 ], [ -82.036926134999987, 28.89265645100005 ], [ -82.036926147999964, 28.892656939000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037091682999971, 28.892656502000079 ], [ -82.037090651999961, 28.892579683000065 ], [ -82.03708173299998, 28.89183031400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036921879999966, 28.897370568000042 ], [ -82.036922149999953, 28.897601875000078 ], [ -82.036923287999969, 28.898325337000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037104287999966, 28.893519796000078 ], [ -82.037098945999958, 28.893197757000053 ], [ -82.037095485999942, 28.892939906000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03710788099994, 28.893790652000064 ], [ -82.037107730999935, 28.893769764000069 ], [ -82.037107194999976, 28.89369505600007 ], [ -82.037104287999966, 28.893519796000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037111331999938, 28.894882614000039 ], [ -82.03711356499997, 28.89458309500003 ], [ -82.03710788099994, 28.893790652000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036946588999967, 28.893979739000031 ], [ -82.036946610999962, 28.893981450000069 ], [ -82.036948525999946, 28.894132002000049 ], [ -82.036950455999943, 28.895095342000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036923287999969, 28.898325337000074 ], [ -82.036934593999945, 28.89986465000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037090319999947, 28.899880302000042 ], [ -82.037086639999984, 28.898325300000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037083877999976, 28.901909424000053 ], [ -82.03708692899994, 28.901002176000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051539688999981, 28.847316515000045 ], [ -82.051819748999947, 28.847307963000048 ], [ -82.052457496999978, 28.847280979000061 ], [ -82.05282409299997, 28.847268421000024 ], [ -82.053136466999945, 28.847271163000073 ], [ -82.053475958999968, 28.847277892000079 ], [ -82.053881506999971, 28.847293782000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049062641999967, 28.847335733000079 ], [ -82.049997300999962, 28.847332619000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049837012999944, 28.847227541000052 ], [ -82.049086453999962, 28.847231635000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051540227999965, 28.847213775000057 ], [ -82.051005152999949, 28.847220419000053 ], [ -82.050220968999952, 28.847223578000069 ], [ -82.049837012999944, 28.847227541000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053877256999954, 28.847122814000045 ], [ -82.053441222999936, 28.847128790000056 ], [ -82.053097094999941, 28.847135222000077 ], [ -82.052746845999934, 28.847164987000042 ], [ -82.052746670999966, 28.847164994000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031474281999976, 28.878484789000026 ], [ -82.031469904999938, 28.878852155000061 ], [ -82.031471143999966, 28.880056895000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031471143999966, 28.880056895000052 ], [ -82.03147114799998, 28.880060762000028 ], [ -82.031471431999989, 28.880337411000028 ], [ -82.031475010999941, 28.880902288000073 ], [ -82.03147727299995, 28.880961539000054 ], [ -82.031488514999978, 28.881032639000068 ], [ -82.031531196999936, 28.881184712000049 ], [ -82.031540064999945, 28.881207619000065 ], [ -82.031540660999951, 28.881209158000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045161065999935, 28.872818867000035 ], [ -82.045458782999958, 28.872820089000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993196722999983, 28.792218815000069 ], [ -81.993282418999968, 28.792090056000063 ], [ -81.993332215999942, 28.792017369000064 ], [ -81.993384094999954, 28.79194582100007 ], [ -81.993438021999964, 28.79187545700006 ], [ -81.993493962999935, 28.791806325000039 ], [ -81.993551879999984, 28.791738468000062 ], [ -81.99361173799997, 28.791671930000064 ], [ -81.993673496999975, 28.791606754000043 ], [ -81.993737115999977, 28.791542982000067 ], [ -81.993802554999945, 28.791480656000033 ], [ -81.993869771999982, 28.79141981600003 ], [ -81.993938723999975, 28.791360501000042 ], [ -81.994438961999947, 28.790940982000052 ], [ -81.994457479999937, 28.790926772000034 ], [ -81.994477349999954, 28.790914058000055 ], [ -81.994498415999942, 28.790902939000034 ], [ -81.994520514999977, 28.790893502000074 ], [ -81.994647071999964, 28.790845479000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993830093999975, 28.792494590000047 ], [ -81.994040651999967, 28.792229680000048 ], [ -81.994089972999973, 28.792169410000042 ], [ -81.994141156999945, 28.792110358000059 ], [ -81.994194165999943, 28.792052568000031 ], [ -81.994248958999947, 28.791996085000051 ], [ -81.994305494999935, 28.791940951000072 ], [ -81.994363731999954, 28.791887208000048 ], [ -81.994423622999989, 28.791834896000069 ], [ -81.994936167999981, 28.791399371000068 ], [ -81.994953550999981, 28.791383190000033 ], [ -81.994969193999964, 28.791365685000073 ], [ -81.995041456999957, 28.791276759000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995041456999957, 28.791276759000027 ], [ -81.995046188999936, 28.791279850000024 ], [ -81.995088414999941, 28.791305004000037 ], [ -81.995144442999958, 28.791337891000069 ], [ -81.995199335999985, 28.79137223400005 ], [ -81.995253041999945, 28.791408002000026 ], [ -81.995305514999984, 28.791445163000049 ], [ -81.995356709999953, 28.79148368400007 ], [ -81.995406577999972, 28.791523531000053 ], [ -81.995455076999974, 28.791564669000024 ], [ -81.995502164999948, 28.791607061000036 ], [ -81.995547797999961, 28.791650670000024 ], [ -81.995657922999953, 28.79175910500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994647071999964, 28.790845479000041 ], [ -81.994659350999939, 28.790870253000037 ], [ -81.994681756999967, 28.790910587000042 ], [ -81.994706127999962, 28.790950026000075 ], [ -81.994732419999934, 28.790988497000058 ], [ -81.994760583999948, 28.791025925000042 ], [ -81.994790565999949, 28.791062241000077 ], [ -81.994822308999971, 28.791097376000039 ], [ -81.994855752999968, 28.791131264000057 ], [ -81.994890836999957, 28.791163841000071 ], [ -81.994927492999977, 28.791195046000041 ], [ -81.994965651999962, 28.791224819000035 ], [ -81.995005241999934, 28.791253104000077 ], [ -81.995041456999957, 28.791276759000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993830093999975, 28.792494590000047 ], [ -81.993830070999934, 28.792494575000035 ], [ -81.993818568999984, 28.792487322000056 ], [ -81.993771683999967, 28.792460318000053 ], [ -81.993723546999945, 28.792435082000054 ], [ -81.993674242999987, 28.792411658000049 ], [ -81.993623861999936, 28.792390087000058 ], [ -81.993572490999952, 28.792370410000046 ], [ -81.993520223999951, 28.792352660000063 ], [ -81.993461948999936, 28.792333171000053 ], [ -81.993404409999982, 28.792312053000046 ], [ -81.993347665999977, 28.792289328000038 ], [ -81.993291773999943, 28.792265016000044 ], [ -81.993236792999937, 28.792239145000053 ], [ -81.993196722999983, 28.792218815000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020527699999946, 28.860533338000039 ], [ -82.020529938999971, 28.861187360000031 ], [ -82.020528764999938, 28.861837104000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020615676999967, 28.854992615000072 ], [ -82.020605528999965, 28.855034916000079 ], [ -82.020578224999952, 28.855187329000046 ], [ -82.020545732999949, 28.855447462000029 ], [ -82.020528861999935, 28.855701863000036 ], [ -82.020530287999975, 28.856337856000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993401227999982, 28.790168949000076 ], [ -81.993175497999971, 28.789961559000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993807599999968, 28.790629371000023 ], [ -81.994032792999974, 28.790440514000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993807599999968, 28.790629371000023 ], [ -81.993571310999982, 28.790335976000051 ], [ -81.993548371999964, 28.790308926000023 ], [ -81.993523952999965, 28.790282899000033 ], [ -81.993498111999941, 28.790257962000055 ], [ -81.993401227999982, 28.790168949000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993025941999974, 28.791284893000068 ], [ -81.993807599999968, 28.790629371000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993025941999974, 28.791284893000068 ], [ -81.992539459999989, 28.790851678000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992539459999989, 28.790851678000024 ], [ -81.992557601999977, 28.790845037000054 ], [ -81.992585585999961, 28.790832806000026 ], [ -81.992612579999957, 28.790818959000035 ], [ -81.992638466999949, 28.79080355800005 ], [ -81.992663130999972, 28.790786670000045 ], [ -81.992686460999948, 28.790768372000059 ], [ -81.993401227999982, 28.790168949000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993255029999943, 28.791488855000068 ], [ -81.993025941999974, 28.791284893000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991840067999988, 28.791324259000078 ], [ -81.992249310999966, 28.790976545000035 ], [ -81.992272797999988, 28.790957896000066 ], [ -81.992297659999963, 28.790940684000077 ], [ -81.99232378399995, 28.790924991000054 ], [ -81.992351049999968, 28.790910886000063 ], [ -81.992379335999942, 28.790898434000042 ], [ -81.992408509999962, 28.790887692000069 ], [ -81.992438441, 28.790878710000072 ], [ -81.992468990999953, 28.790871525000057 ], [ -81.992499174999978, 28.790864440000064 ], [ -81.992528755999956, 28.790855597000075 ], [ -81.992539377999947, 28.790851708000048 ], [ -81.992539459999989, 28.790851678000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986145171999965, 28.879135142000052 ], [ -81.986140801999966, 28.879138047000026 ], [ -81.985983001999955, 28.879242949000059 ], [ -81.985533966999981, 28.879545969000048 ], [ -81.985045483999954, 28.879873015000044 ], [ -81.984634368999934, 28.880147998000041 ], [ -81.984117057999981, 28.880495064000058 ], [ -81.983675593999976, 28.880810095000072 ], [ -81.983341834999976, 28.881061052000064 ], [ -81.983196195999938, 28.881171847000076 ], [ -81.982951940999953, 28.881377421000025 ], [ -81.982833605999986, 28.881474867000065 ], [ -81.982788094999989, 28.881500230000029 ], [ -81.982735, 28.881520250000051 ], [ -81.982661229999962, 28.881525446000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958436912999957, 28.821512234000068 ], [ -81.958317719999968, 28.821485204000055 ], [ -81.957841261999988, 28.821376419000046 ], [ -81.957372063999969, 28.821265506000032 ], [ -81.956598127999939, 28.821088459000066 ], [ -81.955480761, 28.820834610000077 ], [ -81.954774549999968, 28.820670355000061 ], [ -81.954237639999974, 28.820544498000061 ], [ -81.953738962999978, 28.820411249000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009633418999954, 28.837096938000059 ], [ -82.010800967999955, 28.837480678000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012365323999973, 28.837810844000046 ], [ -82.012135259, 28.837734902000079 ], [ -82.01158628099995, 28.837554989000068 ], [ -82.011121761999959, 28.837401837000073 ], [ -82.010894664999967, 28.837324373000058 ], [ -82.010894553999947, 28.837324335000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010894553999947, 28.837324335000062 ], [ -82.010642503999975, 28.837238359000025 ], [ -82.010456237999961, 28.837181773000054 ], [ -82.010223140999983, 28.837102298000048 ], [ -82.010221028999979, 28.837101578000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.193009608999944, 28.857099202000029 ], [ -82.193147284999952, 28.857710810000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.191091044999951, 28.858291487000031 ], [ -82.193147284999952, 28.857710810000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991352283999959, 28.790888518000031 ], [ -81.991855012999963, 28.790461376000053 ], [ -81.991885546999981, 28.790436773000067 ], [ -81.991917519999959, 28.790413631000035 ], [ -81.991950840999948, 28.790392016000055 ], [ -81.991985412999952, 28.790371985000036 ], [ -81.992021142999988, 28.790353597000035 ], [ -81.992057928999941, 28.790336902000035 ], [ -81.992095668, 28.790321949000031 ], [ -81.992134252999961, 28.790308779000043 ], [ -81.992172249999953, 28.790295826000033 ], [ -81.992209427999967, 28.790281142000026 ], [ -81.992245684999943, 28.790264770000078 ], [ -81.992280922999953, 28.790246754000066 ], [ -81.992315045999987, 28.790227143000038 ], [ -81.992347959999961, 28.790205989000071 ], [ -81.992379577999941, 28.790183351000053 ], [ -81.99240980999997, 28.790159291000066 ], [ -81.992704979999985, 28.789911753000069 ], [ -81.992731961999937, 28.789887691000047 ], [ -81.992757213999937, 28.78986221200006 ], [ -81.992780639999978, 28.789835414000038 ], [ -81.992802151999967, 28.78980739900004 ], [ -81.992821668999966, 28.789778273000024 ], [ -81.99283911699996, 28.789748143000054 ], [ -81.992854429999966, 28.789717127000074 ], [ -81.992867549999971, 28.789685340000062 ], [ -81.992878427999983, 28.789652903000047 ], [ -81.992887021999934, 28.789619938000044 ], [ -81.992893298999945, 28.789586571000029 ], [ -81.992897237999955, 28.789552926000056 ], [ -81.992898819999937, 28.789519132000066 ], [ -81.992898041999979, 28.789485316000025 ], [ -81.992894906999936, 28.789451606000057 ], [ -81.992889424999987, 28.789418130000058 ], [ -81.992881617999956, 28.789385014000061 ], [ -81.99287151599998, 28.78935238300005 ], [ -81.99285165799995, 28.789295224000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990892081999959, 28.790383471000041 ], [ -81.991460779999954, 28.789900300000056 ], [ -81.991488713999956, 28.78987769400004 ], [ -81.991517860999977, 28.789856310000062 ], [ -81.99154815199995, 28.789836199000035 ], [ -81.99157951799998, 28.789817408000033 ], [ -81.991611882999962, 28.789799983000023 ], [ -81.99164516999997, 28.789783963000048 ], [ -81.991679301999966, 28.789769386000046 ], [ -81.991845748999935, 28.789702652000074 ], [ -81.991874584999948, 28.789690018000044 ], [ -81.991902367999955, 28.789675670000065 ], [ -81.991928963999953, 28.789659672000028 ], [ -81.991954250999981, 28.789642102000073 ], [ -81.991978105999976, 28.789623043000063 ], [ -81.992000417999975, 28.789602584000079 ], [ -81.992021079999972, 28.789580822000062 ], [ -81.992039996999949, 28.789557862000038 ], [ -81.99205707699997, 28.789533810000023 ], [ -81.99207223999997, 28.789508781000052 ], [ -81.992085414999963, 28.78948289300007 ], [ -81.992096538999988, 28.789456268000038 ], [ -81.992133750999983, 28.789356733000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992133750999983, 28.789356733000034 ], [ -81.992145205999975, 28.789360190000025 ], [ -81.992186152999977, 28.789370387000076 ], [ -81.992227670999966, 28.789378604000035 ], [ -81.992269633999967, 28.789384816000052 ], [ -81.992311918999974, 28.789389003000053 ], [ -81.992354400999943, 28.789391154000043 ], [ -81.992396953999958, 28.789391262000038 ], [ -81.99243944899996, 28.789389328000027 ], [ -81.992481760999965, 28.789385356000025 ], [ -81.992523764999987, 28.78937935700003 ], [ -81.992565335999984, 28.789371353000035 ], [ -81.992606348999971, 28.789361364000058 ], [ -81.99285165799995, 28.789295224000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990892081999959, 28.790383471000041 ], [ -81.990885720999984, 28.790377026000044 ], [ -81.990845612999976, 28.790339345000064 ], [ -81.990803926999945, 28.790303016000053 ], [ -81.990760721999948, 28.79026809100003 ], [ -81.990372074999982, 28.789965580000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990867654999988, 28.789544515000046 ], [ -81.991454548999968, 28.789045884000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990867654999988, 28.789544515000046 ], [ -81.990532567999935, 28.789238456000078 ], [ -81.99049125199997, 28.789199502000031 ], [ -81.990451672999939, 28.78915917300003 ], [ -81.990413884999953, 28.789117531000045 ], [ -81.990377948999935, 28.789074638000045 ], [ -81.990343915999972, 28.789030556000057 ], [ -81.990311834999943, 28.788985352000054 ], [ -81.990281756999934, 28.788939092000078 ], [ -81.990253723999956, 28.788891845000023 ], [ -81.990227778999952, 28.788843682000049 ], [ -81.990203959999974, 28.78879467400003 ], [ -81.990182302999983, 28.788744893000057 ], [ -81.990172589999986, 28.788724398000056 ], [ -81.990160806999938, 28.788704764000045 ], [ -81.990147053999976, 28.788686151000036 ], [ -81.990131441999949, 28.788668711000071 ], [ -81.990114099999971, 28.788652592000062 ], [ -81.990095169999961, 28.788637922000078 ], [ -81.989923939999983, 28.788516916000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990372074999982, 28.789965580000057 ], [ -81.990867654999988, 28.789544515000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991454548999968, 28.789045884000075 ], [ -81.991473515999985, 28.78905674400005 ], [ -81.991555024999968, 28.789101205000065 ], [ -81.991637621999985, 28.789144080000028 ], [ -81.991721264999967, 28.789185349000036 ], [ -81.991805916999965, 28.789224993000062 ], [ -81.991891534999979, 28.789262990000054 ], [ -81.991978078999978, 28.789299325000059 ], [ -81.99206550699995, 28.789333978000059 ], [ -81.992104949999941, 28.789348041000039 ], [ -81.992133623999962, 28.789356695000038 ], [ -81.992133750999983, 28.789356733000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990304651999963, 28.786582836000036 ], [ -81.990284149, 28.786545532000048 ], [ -81.990229590999945, 28.786450856000044 ], [ -81.99017301899994, 28.786357102000068 ], [ -81.990114453, 28.786264302000063 ], [ -81.99005391299994, 28.78617249000007 ], [ -81.989991422999935, 28.786081700000068 ], [ -81.989976957999943, 28.786063097000067 ], [ -81.989960611999948, 28.78604574600007 ], [ -81.989942521999978, 28.786029793000068 ], [ -81.989922843999977, 28.786015375000034 ], [ -81.989901741999972, 28.786002613000051 ], [ -81.989879396999982, 28.785991616000047 ], [ -81.989855997999939, 28.785982477000061 ], [ -81.989831743999957, 28.785975274000066 ], [ -81.989806839999972, 28.78597006800004 ], [ -81.989781497999957, 28.785966902000041 ], [ -81.989755932999969, 28.785965804000057 ], [ -81.989157267999985, 28.785964421000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99093912099994, 28.787904940000033 ], [ -81.990804267999977, 28.78771411300005 ], [ -81.990785441999947, 28.787686007000048 ], [ -81.990768149999951, 28.787657145000026 ], [ -81.990752432999955, 28.787627593000025 ], [ -81.990738324999938, 28.787597417000029 ], [ -81.990725858999951, 28.787566686000048 ], [ -81.990715061999936, 28.787535467000055 ], [ -81.990681586999983, 28.787433466000039 ], [ -81.990645937999943, 28.787332040000024 ], [ -81.990637342999946, 28.787309120000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990637342999946, 28.787309120000032 ], [ -81.990608127999963, 28.787231222000059 ], [ -81.990568168999971, 28.787131049000038 ], [ -81.99052607699997, 28.787031557000034 ], [ -81.990481863999946, 28.786932781000075 ], [ -81.990435548999983, 28.786834756000076 ], [ -81.990387145999989, 28.786737516000073 ], [ -81.990336673999934, 28.786641097000029 ], [ -81.990304710999965, 28.786582944000031 ], [ -81.990304651999963, 28.786582836000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990704722999965, 28.785420633000058 ], [ -81.990707927999949, 28.785420693000049 ], [ -81.990767087999984, 28.785419842000067 ], [ -81.990826168999945, 28.785417016000054 ], [ -81.990885085999935, 28.785412218000033 ], [ -81.990943752999954, 28.78540545900006 ], [ -81.991002087999959, 28.785396743000035 ], [ -81.991060006999987, 28.785386088000052 ], [ -81.99111742599996, 28.785373505000052 ], [ -81.991174842999953, 28.785360924000031 ], [ -81.991232761999981, 28.785350267000069 ], [ -81.991291096999987, 28.785341553000023 ], [ -81.991349764999939, 28.785334792000072 ], [ -81.991408681999985, 28.78532999600003 ], [ -81.991467761999957, 28.785327169000027 ], [ -81.991526921999935, 28.785326317000056 ], [ -81.992143745999954, 28.785327731000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989157267999985, 28.785964421000074 ], [ -81.989158455999984, 28.785565633000033 ], [ -81.989159708999978, 28.785543051000047 ], [ -81.989163320999978, 28.785520667000071 ], [ -81.989169262999951, 28.785498673000063 ], [ -81.989177481999945, 28.785477254000057 ], [ -81.989187909999941, 28.785456595000028 ], [ -81.989200456999981, 28.785436873000037 ], [ -81.989215016999935, 28.785418255000025 ], [ -81.989231463999943, 28.785400898000034 ], [ -81.989249657999949, 28.785384954000051 ], [ -81.989269444999934, 28.785370555000043 ], [ -81.989290654999934, 28.785357827000041 ], [ -81.989313108999966, 28.785346877000052 ], [ -81.989336612999978, 28.785337799000047 ], [ -81.989360967999971, 28.785330671000054 ], [ -81.98938596499994, 28.785325552000074 ], [ -81.989411392999955, 28.78532248700003 ], [ -81.989437032999945, 28.785321502000045 ], [ -81.989889503999962, 28.785322547000078 ], [ -81.989948658999936, 28.785323672000061 ], [ -81.990007721999973, 28.78532677100003 ], [ -81.990066609999985, 28.785331839000037 ], [ -81.990125236999972, 28.785338870000032 ], [ -81.99018351899997, 28.785347853000076 ], [ -81.990241372999947, 28.785358775000077 ], [ -81.990298715999984, 28.785371621000024 ], [ -81.990356058999964, 28.785384467000029 ], [ -81.990413913999987, 28.785395390000076 ], [ -81.990472195999985, 28.785404373000063 ], [ -81.990530822999972, 28.785411404000058 ], [ -81.990589710999984, 28.785416471000076 ], [ -81.990648773999965, 28.785419570000045 ], [ -81.990704722999965, 28.785420633000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992143745999954, 28.785327731000052 ], [ -81.992596416999959, 28.785328767000067 ], [ -81.992622049999966, 28.785329871000044 ], [ -81.992647457999965, 28.785333053000045 ], [ -81.992672425999956, 28.785338286000069 ], [ -81.99269673799995, 28.785345526000071 ], [ -81.992720187999964, 28.785354712000071 ], [ -81.992742575999955, 28.785365765000051 ], [ -81.992763710999952, 28.78537859100004 ], [ -81.992783411999937, 28.785393079000073 ], [ -81.992801512999961, 28.785409108000067 ], [ -81.992817855999988, 28.785426539000071 ], [ -81.992832304999979, 28.785445225000046 ], [ -81.992844734999949, 28.785465005000049 ], [ -81.992855039999938, 28.785485712000025 ], [ -81.992863131999968, 28.785507166000059 ], [ -81.992868942999962, 28.785529189000044 ], [ -81.992872422999937, 28.785551589000079 ], [ -81.992873541999984, 28.785574177000058 ], [ -81.992872826999985, 28.785816717000046 ], [ -81.992873711999948, 28.785866707000025 ], [ -81.992876657999943, 28.785916635000035 ], [ -81.992881662999935, 28.78596643700007 ], [ -81.992888719999939, 28.786016045000054 ], [ -81.99289781899995, 28.786065395000037 ], [ -81.992908947999979, 28.786114420000047 ], [ -81.992922092999947, 28.786163057000067 ], [ -81.992934250999951, 28.78620174100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992934250999951, 28.78620174100007 ], [ -81.992937235999989, 28.786211241000046 ], [ -81.992954357999963, 28.786258907000047 ], [ -81.992973433999964, 28.786305995000077 ], [ -81.993144384999937, 28.786704887000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990637342999946, 28.787309120000032 ], [ -81.989962946999981, 28.787678976000052 ], [ -81.989940555999965, 28.787690025000074 ], [ -81.989917103999971, 28.787699208000049 ], [ -81.989892788999953, 28.787706444000037 ], [ -81.989867820999962, 28.787711674000036 ], [ -81.989842410999984, 28.787714852000079 ], [ -81.989816776999987, 28.787715951000052 ], [ -81.989791137999987, 28.787714962000052 ], [ -81.989765710999961, 28.787711892000061 ], [ -81.989740712999946, 28.787706769000067 ], [ -81.989716359999989, 28.78769963700006 ], [ -81.989692856999966, 28.787690554000051 ], [ -81.989670405999959, 28.787679601000036 ], [ -81.989649197999938, 28.787666868000031 ], [ -81.989629413999978, 28.787652467000044 ], [ -81.989611221999951, 28.787636519000046 ], [ -81.989594777999969, 28.78761915900003 ], [ -81.989580223999951, 28.787600538000049 ], [ -81.989453804999982, 28.787421642000027 ], [ -81.989437866999936, 28.787397275000046 ], [ -81.98942385099997, 28.787372007000045 ], [ -81.989411820999976, 28.78734595700007 ], [ -81.989401834999967, 28.787319246000038 ], [ -81.989393936999988, 28.787291997000068 ], [ -81.98938816499998, 28.787264338000057 ], [ -81.98938454499995, 28.787236396000026 ], [ -81.989383094999937, 28.787208303000057 ], [ -81.989383821, 28.787180186000057 ], [ -81.989386838999962, 28.787115670000048 ], [ -81.989387562, 28.787051102000078 ], [ -81.989386813999943, 28.787020360000042 ], [ -81.989386811999964, 28.787020270000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989311162999968, 28.786540277000029 ], [ -81.989291479999963, 28.786478078000073 ], [ -81.989269595999986, 28.786416452000026 ], [ -81.989245534999952, 28.786355459000049 ], [ -81.989219316999936, 28.786295161000055 ], [ -81.989190969999981, 28.786235613000031 ], [ -81.989180599999941, 28.786212615000068 ], [ -81.989172058999941, 28.786189040000068 ], [ -81.989165391999961, 28.786165001000029 ], [ -81.989160627, 28.786140611000064 ], [ -81.989157787999943, 28.786115991000031 ], [ -81.989156889999947, 28.786091257000066 ], [ -81.989157267999985, 28.785964421000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993144384999937, 28.786704887000042 ], [ -81.993144559999962, 28.786705296000036 ], [ -81.993194665999965, 28.786822761000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989386811999964, 28.787020270000028 ], [ -81.989385990999949, 28.786986547000026 ], [ -81.989382126999942, 28.786922065000056 ], [ -81.989375974999973, 28.786857722000036 ], [ -81.989367537999954, 28.786793580000051 ], [ -81.989356827999984, 28.786729702000059 ], [ -81.989343852, 28.786666151000077 ], [ -81.989328625999974, 28.786602989000073 ], [ -81.989311162999968, 28.786540277000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993618481999988, 28.786086329000057 ], [ -81.994944222999948, 28.78608934500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992934250999951, 28.78620174100007 ], [ -81.993325732999949, 28.786102153000058 ], [ -81.993357943999968, 28.786095038000042 ], [ -81.993390644999977, 28.786089953000044 ], [ -81.993423672999938, 28.786086921000049 ], [ -81.99345686199996, 28.786085960000037 ], [ -81.993618481999988, 28.786086329000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993620556999986, 28.78537992400004 ], [ -81.993621789999963, 28.784960425000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993618481999988, 28.786086329000057 ], [ -81.993620556999986, 28.78537992400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993620556999986, 28.78537992400004 ], [ -81.994946288999984, 28.785382941000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994946288999984, 28.785382941000023 ], [ -81.995357594999973, 28.785383874000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994944222999948, 28.78608934500005 ], [ -81.994946288999984, 28.785382941000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994943231999969, 28.786427902000071 ], [ -81.994944222999948, 28.78608934500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997219761999986, 28.786472271000036 ], [ -81.997223127999973, 28.785313147000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997369033999973, 28.786837623000054 ], [ -81.99730455699995, 28.78675667300007 ], [ -81.997287105999987, 28.786733086000027 ], [ -81.997271521999949, 28.786708507000071 ], [ -81.997257877999971, 28.786683049000032 ], [ -81.997246235999967, 28.786656829000037 ], [ -81.99723665099998, 28.786629971000025 ], [ -81.997229168, 28.786602600000037 ], [ -81.997223820999977, 28.786574843000039 ], [ -81.997220635999952, 28.786546830000077 ], [ -81.997219626999936, 28.786518690000037 ], [ -81.997219761999986, 28.786472271000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99729903399998, 28.786882256000069 ], [ -81.997365846999969, 28.786839537000048 ], [ -81.997369012999968, 28.78683763600003 ], [ -81.997369033999973, 28.786837623000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996673030999943, 28.786541214000067 ], [ -81.996680076999951, 28.786535542000024 ], [ -81.996699904999957, 28.786521012000037 ], [ -81.996721175999937, 28.786508164000054 ], [ -81.99674370799994, 28.786497109000038 ], [ -81.996767306999971, 28.786487942000065 ], [ -81.996791768999969, 28.786480743000027 ], [ -81.996816882999951, 28.786475572000029 ], [ -81.996842432999983, 28.786472475000039 ], [ -81.996868199999938, 28.786471478000067 ], [ -81.997219761999986, 28.786472271000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996289536999939, 28.78684987400004 ], [ -81.996673030999943, 28.786541214000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996564414999966, 28.785311660000048 ], [ -81.996565250999936, 28.785024258000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996673030999943, 28.786541214000067 ], [ -81.996596285999942, 28.786467214000027 ], [ -81.996585041999936, 28.786454767000066 ], [ -81.996575820999965, 28.786441090000039 ], [ -81.996568790999959, 28.786426437000046 ], [ -81.996564086999967, 28.78641108000005 ], [ -81.996561792999955, 28.786395301000027 ], [ -81.996561304999943, 28.786380165000025 ], [ -81.996564414999966, 28.785311660000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996564414999966, 28.785311660000048 ], [ -81.997223127999973, 28.785313147000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997223127999973, 28.785313147000068 ], [ -81.997549363999951, 28.785313881000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998004286999958, 28.786543781000034 ], [ -81.997926115999974, 28.786358465000035 ], [ -81.997918504999973, 28.786337600000024 ], [ -81.997913042999983, 28.78631622000006 ], [ -81.997909773999936, 28.78629449500005 ], [ -81.997908723999956, 28.786272599000029 ], [ -81.997910634999982, 28.785612924000077 ], [ -81.997911903999977, 28.785590182000078 ], [ -81.997915565999961, 28.785567641000057 ], [ -81.997921588999986, 28.785545497000044 ], [ -81.997929920999979, 28.785523943000044 ], [ -81.997940491999941, 28.785503164000033 ], [ -81.997953207999956, 28.785483341000031 ], [ -81.997967959999983, 28.785464643000068 ], [ -81.997984622, 28.785447235000049 ], [ -81.998003045999951, 28.785431266000046 ], [ -81.998023076999971, 28.785416874000077 ], [ -81.998044537999988, 28.785404184000072 ], [ -81.998067243999969, 28.78539330600006 ], [ -81.998091, 28.785384334000071 ], [ -81.998115598999959, 28.785377346000075 ], [ -81.998140829999954, 28.785372401000075 ], [ -81.998166472999969, 28.785369544000048 ], [ -81.998192305999964, 28.785368798000036 ], [ -81.998218104999978, 28.785370170000078 ], [ -81.999310774999969, 28.785473384000056 ], [ -81.999336516999961, 28.785476897000024 ], [ -81.99936176999995, 28.785482518000038 ], [ -81.999386315999971, 28.785490198000048 ], [ -81.999409936999939, 28.785499869000034 ], [ -81.999432426999988, 28.785511447000033 ], [ -81.999453586999948, 28.785524828000064 ], [ -81.999473231999957, 28.785539897000035 ], [ -81.999491187, 28.785556520000057 ], [ -81.999507298999958, 28.785574551000025 ], [ -81.999521421999987, 28.785593832000075 ], [ -81.999533432999954, 28.785614194000061 ], [ -81.999543227999936, 28.785635457000069 ], [ -81.999550717999966, 28.785657434000029 ], [ -81.999570878999975, 28.785732056000029 ], [ -81.999589144999959, 28.785807055000078 ], [ -81.999605505999966, 28.785882395000044 ], [ -81.999619955999947, 28.785958037000057 ], [ -81.999623397999983, 28.785978884000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999623397999983, 28.785978884000031 ], [ -81.999623401999941, 28.785978911000029 ], [ -81.999632485999939, 28.786033943000064 ], [ -81.999643090999939, 28.786110078000036 ], [ -81.999651764999953, 28.786186403000045 ], [ -81.999653434999971, 28.786211845000025 ], [ -81.999653317999957, 28.786237330000063 ], [ -81.99965141499996, 28.786262760000056 ], [ -81.999647732999961, 28.786288038000066 ], [ -81.999642286999972, 28.786313067000037 ], [ -81.999567222999985, 28.786608370000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997369033999973, 28.786837623000054 ], [ -81.997434053999939, 28.786798566000073 ], [ -81.99750359799998, 28.786759379000046 ], [ -81.997574418999989, 28.786722007000037 ], [ -81.997646454999938, 28.786686485000075 ], [ -81.997719643999972, 28.786652842000024 ], [ -81.99779392399995, 28.786621109000066 ], [ -81.997869230999981, 28.786591311000052 ], [ -81.997945498999968, 28.786563475000037 ], [ -81.998004259999959, 28.786543790000053 ], [ -81.998004286999958, 28.786543781000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998742358999948, 28.786438636000071 ], [ -81.998774367999943, 28.786064739000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998004286999958, 28.786543781000034 ], [ -81.998022661999983, 28.786537625000051 ], [ -81.998100652999938, 28.786513783000032 ], [ -81.998179404999973, 28.786491970000043 ], [ -81.998238556999979, 28.786477533000038 ], [ -81.99829830799996, 28.78646515500003 ], [ -81.998358562999954, 28.786454857000024 ], [ -81.998419232999936, 28.786446654000031 ], [ -81.998480220999966, 28.786440558000038 ], [ -81.998541433999947, 28.786436579000053 ], [ -81.998602777999963, 28.78643472300007 ], [ -81.998664156999951, 28.786434993000057 ], [ -81.998725475999947, 28.786437389000071 ], [ -81.998742358999948, 28.786438636000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999623397999983, 28.785978884000031 ], [ -82.000239745999977, 28.78595901500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000239745999977, 28.78595901500006 ], [ -82.000251878999961, 28.785958624000045 ], [ -82.000278486999946, 28.785958763000053 ], [ -82.000304983999968, 28.785960899000031 ], [ -82.000331177999954, 28.785965015000045 ], [ -82.00035687999997, 28.785971081000071 ], [ -82.000381900999969, 28.785979052000073 ], [ -82.000715295999953, 28.786099655000044 ], [ -82.000731507999944, 28.786104469000065 ], [ -82.000748287999954, 28.786107406000042 ], [ -82.000765357999967, 28.786108415000058 ], [ -82.000898038999935, 28.786108711000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000239745999977, 28.78595901500006 ], [ -82.00024158399998, 28.785319915000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999853392999967, 28.785318343000029 ], [ -82.00024158399998, 28.785319915000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00024158399998, 28.785319915000059 ], [ -82.000900297999976, 28.785321383000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000900297999976, 28.785321383000053 ], [ -82.000901114999976, 28.785036731000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000898038999935, 28.786108711000054 ], [ -82.000900297999976, 28.785321383000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000897015999954, 28.786465428000042 ], [ -82.000898038999935, 28.786108711000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086236823999968, 28.748836188000041 ], [ -82.085928090999971, 28.748842113000023 ], [ -82.08289270399996, 28.748838280000029 ], [ -82.081209267999952, 28.748836438000069 ], [ -82.080549822999956, 28.748837981000065 ], [ -82.080544186999987, 28.748837994000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.080544186999987, 28.748837994000041 ], [ -82.079568083999959, 28.748840278000046 ], [ -82.078973366999946, 28.748854947000041 ], [ -82.077579166999953, 28.74885002700006 ], [ -82.07586323299995, 28.748851 ], [ -82.075703801999964, 28.748849358000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091617833999976, 28.747659426000041 ], [ -82.091617834999965, 28.747659346000034 ], [ -82.091623727999945, 28.747245964000058 ], [ -82.091632396999955, 28.747031052000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05776962799996, 28.854607341000076 ], [ -82.057139971999959, 28.854598291000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053645722999988, 28.927386719000026 ], [ -82.053295224999943, 28.927393384000027 ], [ -82.052040087999956, 28.927396969000029 ], [ -82.051578124999935, 28.927398648000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050861487999953, 28.927401253000028 ], [ -82.050826982, 28.92740137800007 ], [ -82.050826948999941, 28.92740137800007 ], [ -82.05041259799998, 28.92740288400006 ], [ -82.050412560999973, 28.92740288400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023382418999972, 28.841639318000034 ], [ -82.023444941999969, 28.841491724000036 ], [ -82.023585783999977, 28.841160140000056 ], [ -82.023681737999937, 28.840802512000039 ], [ -82.023739972999977, 28.840454868000052 ], [ -82.023769870999956, 28.840049437000062 ], [ -82.02376486299994, 28.839841223000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02475125999996, 28.842094557000053 ], [ -82.024039541999969, 28.841858932000036 ], [ -82.023894100999939, 28.84181041100004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023257374999957, 28.841599345000077 ], [ -82.023247124999955, 28.841632143000027 ], [ -82.023195311999984, 28.841772223000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038625054999955, 28.865501982000069 ], [ -82.038602813999944, 28.865662223000072 ], [ -82.038081485999953, 28.866766355000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038625054999955, 28.865501982000069 ], [ -82.038422557999979, 28.865506675000063 ], [ -82.037916171999939, 28.865522861000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038901837999958, 28.867066855000076 ], [ -82.038178498999969, 28.866804319000039 ], [ -82.038081485999953, 28.866766355000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019356586999947, 28.846930671000052 ], [ -82.019737511999949, 28.846676362000039 ], [ -82.019935446999966, 28.846632166000063 ], [ -82.02024543999994, 28.846439324000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02024543999994, 28.846439324000073 ], [ -82.020345377999945, 28.846513087000062 ], [ -82.020540493999988, 28.846674891000077 ], [ -82.020611876999965, 28.846724859000062 ], [ -82.020685640999943, 28.846758172000079 ], [ -82.020796238999935, 28.846840894000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021870105999938, 28.847908640000071 ], [ -82.02188130199994, 28.847788681000054 ], [ -82.02214424999994, 28.847245961000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020796238999935, 28.846840894000024 ], [ -82.021099666999987, 28.846974703000058 ], [ -82.02130429999994, 28.847055604000047 ], [ -82.021470863, 28.847103193000066 ], [ -82.021618388999968, 28.847138885000049 ], [ -82.021837299999959, 28.847191234000036 ], [ -82.022020517999977, 28.847222167000041 ], [ -82.022099039999944, 28.847248341000068 ], [ -82.02214424999994, 28.847245961000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021870105999938, 28.847908640000071 ], [ -82.022005989999968, 28.847943701000077 ], [ -82.022312118999935, 28.847969308000074 ], [ -82.022791081999969, 28.847983340000042 ], [ -82.022856159999947, 28.847986911000078 ], [ -82.022928011999966, 28.84796302500007 ], [ -82.022963258999937, 28.847942726000042 ], [ -82.023101514999951, 28.847789911000064 ], [ -82.02331976399995, 28.847641857000042 ], [ -82.023669517999963, 28.84746751800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02034016999994, 28.847723313000074 ], [ -82.020494131999953, 28.847425426000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019356586999947, 28.846930671000052 ], [ -82.019416254999953, 28.847009445000026 ], [ -82.019741716999988, 28.847152547000064 ], [ -82.020081388999984, 28.847272596000039 ], [ -82.020143010999959, 28.847306566000043 ], [ -82.020262325999965, 28.847341165000046 ], [ -82.020438246999959, 28.847354688000053 ], [ -82.020494131999953, 28.847425426000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988374075999957, 28.801116539000077 ], [ -81.988686819999941, 28.800980180000067 ], [ -81.989659992999975, 28.800551677000044 ], [ -81.990019941999947, 28.800409606000073 ], [ -81.990609731999939, 28.800211783000066 ], [ -81.990849114999946, 28.800141514000074 ], [ -81.991188240999975, 28.80005062500004 ], [ -81.991433694999955, 28.799993344000029 ], [ -81.991610054999967, 28.799952591000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138139080999963, 28.61333395500003 ], [ -82.138166502, 28.613371499000039 ], [ -82.138175682999986, 28.613414431000024 ], [ -82.138160952999954, 28.613779439000041 ], [ -82.138176227999963, 28.613830415000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039173784999946, 28.928151367000055 ], [ -82.039173784999946, 28.928151423000031 ], [ -82.03917385699998, 28.928362048000054 ], [ -82.03917385699998, 28.928362075000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989747802999943, 28.865300963000038 ], [ -81.989749716999938, 28.865222954000046 ], [ -81.989745909999954, 28.865116354000065 ], [ -81.989736391999941, 28.865030694000041 ], [ -81.989696416999948, 28.864962165000065 ], [ -81.98965263499997, 28.864910769000062 ], [ -81.98962979199996, 28.864872697000067 ], [ -81.989624080999988, 28.864836530000048 ], [ -81.989643116999957, 28.864790844000026 ], [ -81.989679284999966, 28.864741351000077 ], [ -81.989713548999987, 28.864720412000054 ], [ -81.989766848999977, 28.864705183000069 ], [ -81.989831569999978, 28.864712798000028 ], [ -81.989879158999941, 28.864731833000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037035677999938, 28.930397768000034 ], [ -82.037007639999956, 28.931110540000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037059735999946, 28.92978623700003 ], [ -82.037059709999937, 28.929786886000045 ], [ -82.037047872999949, 28.93008779400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956846926999958, 28.895744750000063 ], [ -81.957135989999983, 28.895603657000038 ], [ -81.957142850999958, 28.895600333000061 ], [ -81.957142898999962, 28.895600310000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041697556999964, 28.845036760000028 ], [ -82.041681413999981, 28.845012416000031 ], [ -82.041674486999966, 28.844977924000034 ], [ -82.04167216899998, 28.844945458000041 ], [ -82.04166984699998, 28.844898790000059 ], [ -82.041673147999973, 28.844331272000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041674709999938, 28.84395435700003 ], [ -82.041674657999977, 28.843821682000055 ], [ -82.041674539999974, 28.843527689000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043882304999954, 28.845064474000026 ], [ -82.043898426999988, 28.845044178000023 ], [ -82.043909940999981, 28.845019825000065 ], [ -82.043921449999971, 28.844985327000074 ], [ -82.043926039999974, 28.844944743000042 ], [ -82.043926015999944, 28.844885900000065 ], [ -82.043928257999937, 28.844733718000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127225627999962, 28.912539910000078 ], [ -82.127225945999953, 28.912539912000057 ], [ -82.127561778999961, 28.912542305000045 ], [ -82.128037034999977, 28.912535455000068 ], [ -82.128245549999974, 28.912520321000045 ], [ -82.128289199999983, 28.912522412000044 ], [ -82.128342560999954, 28.912535164000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038305612999977, 28.859144402000027 ], [ -82.040076539999973, 28.859122978000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020873110999958, 28.799700441000027 ], [ -82.020862308999938, 28.799191122000025 ], [ -82.020865414999946, 28.79869754200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136661371999935, 28.88246517500005 ], [ -82.136620377999975, 28.882432479000045 ], [ -82.136526150999941, 28.882400118000078 ], [ -82.136440489999984, 28.882376324000063 ], [ -82.136320564999949, 28.882354433000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136303742999985, 28.882432708000067 ], [ -82.136355953999953, 28.882451028000048 ], [ -82.13642282099994, 28.882466600000043 ], [ -82.136458544999982, 28.882471180000039 ], [ -82.13651258799996, 28.882462936000024 ], [ -82.136661371999935, 28.88246517500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136047549999944, 28.882348912000054 ], [ -82.136085712999943, 28.882369566000079 ], [ -82.136189243999979, 28.882403397000076 ], [ -82.136303742999985, 28.882432708000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136320564999949, 28.882354433000046 ], [ -82.136144484999988, 28.882322072000079 ], [ -82.136078811999937, 28.88232492700007 ], [ -82.136047549999944, 28.882348912000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002881723999963, 28.957212778000041 ], [ -82.002669422999986, 28.957177090000073 ], [ -82.002367507999963, 28.957148336000046 ], [ -82.002073756999948, 28.957165427000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117545895999967, 28.768095653000046 ], [ -82.117528900999957, 28.76938623500007 ], [ -82.117524042999946, 28.769752520000054 ], [ -82.117507235999938, 28.769798957000035 ], [ -82.117486188999976, 28.769824973000027 ], [ -82.117460923999943, 28.769847278000043 ], [ -82.117431427999975, 28.769856588000039 ], [ -82.117397708999988, 28.769856617000073 ], [ -82.117347651999978, 28.769852946000071 ], [ -82.117207024999971, 28.769857233000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038081485999953, 28.866766355000038 ], [ -82.037814528999945, 28.86737535900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037814528999945, 28.86737535900005 ], [ -82.037811585999975, 28.867374331000065 ], [ -82.037383046999935, 28.86722461100004 ], [ -82.037091092999958, 28.867121905000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037814528999945, 28.86737535900005 ], [ -82.037539317999972, 28.868004012000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037539317999972, 28.868004012000029 ], [ -82.037091346999944, 28.86783729800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037539317999972, 28.868004012000029 ], [ -82.037262092999981, 28.868637265000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037262092999981, 28.868637265000075 ], [ -82.037096281999936, 28.868583525000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957394591999957, 28.952407766000078 ], [ -81.958321274999946, 28.953319836000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005145498, 28.801735443000041 ], [ -82.005312470999968, 28.801640534000057 ], [ -82.005491598999981, 28.801602843000069 ], [ -82.005760041999963, 28.801622623000071 ], [ -82.00644103999997, 28.801619798000047 ], [ -82.006692528999963, 28.801616972000033 ], [ -82.007220937999989, 28.801616972000033 ], [ -82.007839769999975, 28.801611320000063 ], [ -82.007916063999971, 28.801600018000045 ], [ -82.007948437999971, 28.801519847000066 ], [ -82.00795147499997, 28.80087891200003 ], [ -82.00795147499997, 28.800347330000079 ], [ -82.007950115999961, 28.799770866000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005145498, 28.801735443000041 ], [ -82.005069244999959, 28.801592258000028 ], [ -82.005027729999938, 28.801475338000046 ], [ -82.005003159999944, 28.801331306000066 ], [ -82.004998076999982, 28.801218622000079 ], [ -82.004978589999951, 28.800087548000079 ], [ -82.004983012999958, 28.799929389000056 ], [ -82.004999335999969, 28.799852438000073 ], [ -82.005033147999939, 28.799771989000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007950115999961, 28.799770866000074 ], [ -82.007950131999962, 28.799770866000074 ], [ -82.009902043999944, 28.799775026000077 ], [ -82.010338292999961, 28.799779143000023 ], [ -82.01051216999997, 28.799808860000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010534080999946, 28.799606183000037 ], [ -82.010381123999935, 28.799636375000034 ], [ -82.010139436999964, 28.799649435000049 ], [ -82.008552073999965, 28.799643471000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007950115999961, 28.799770866000074 ], [ -82.007987973999946, 28.799723646000075 ], [ -82.008066496999959, 28.799687954000035 ], [ -82.008552073999965, 28.799643471000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122749853999949, 28.666789124000047 ], [ -82.12274085599995, 28.667124953000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006134032999967, 28.83993934700004 ], [ -82.006113008999989, 28.839876098000047 ], [ -82.006075888999987, 28.839830412000026 ], [ -82.006027347999975, 28.839810425000053 ], [ -82.005988800999944, 28.839787582000042 ], [ -82.005978570999957, 28.83975543400004 ], [ -82.005980234999981, 28.839733330000058 ], [ -82.005985709999948, 28.839710224000044 ], [ -82.006000222999944, 28.839687645000026 ], [ -82.006005549999941, 28.839681864000056 ], [ -82.006006142999979, 28.839681220000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006268947999956, 28.839786636000042 ], [ -82.006210090999957, 28.83975046300003 ], [ -82.006167260999973, 28.839707632000056 ], [ -82.006131569, 28.839661947000025 ], [ -82.00610884699995, 28.839651332000074 ], [ -82.006078744999968, 28.839647670000033 ], [ -82.006055308999976, 28.839648953000051 ], [ -82.006035914999984, 28.839657664000072 ], [ -82.00601723799997, 28.839669178000065 ], [ -82.006006142999979, 28.839681220000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006134032999967, 28.83993934700004 ], [ -82.006268947999956, 28.839786636000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965122294999958, 28.831688335000024 ], [ -81.965164872999935, 28.831678857000043 ], [ -81.965201991999947, 28.83166243900007 ], [ -81.965239825999959, 28.83164173800003 ], [ -81.965284, 28.83161010300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962640712999985, 28.835831033000034 ], [ -81.962890572999981, 28.835828996000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956049771999972, 28.845533757000055 ], [ -81.95586392599995, 28.845226696000054 ], [ -81.955667620999975, 28.845048237000071 ], [ -81.955548648, 28.844926289000057 ], [ -81.955388033999952, 28.844780547000028 ], [ -81.955188753999948, 28.844697266000026 ], [ -81.954950807999978, 28.844566396000062 ], [ -81.954766399999983, 28.844420654000032 ], [ -81.954632553999943, 28.844331424000075 ], [ -81.954531427999939, 28.84433737300003 ], [ -81.954391634999979, 28.844322501000079 ], [ -81.954236969999954, 28.844212451000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955279793999978, 28.845983344000047 ], [ -81.955511521999938, 28.845799412000076 ], [ -81.955578672999934, 28.845751437000047 ], [ -81.955628422999951, 28.845719191000057 ], [ -81.955700020999984, 28.845677198000033 ], [ -81.95576254599996, 28.845644410000034 ], [ -81.955816407999976, 28.845618831000024 ], [ -81.955899273999989, 28.845583944000055 ], [ -81.955997521999961, 28.84554907200004 ], [ -81.95604949799997, 28.845533837000062 ], [ -81.956049771999972, 28.845533757000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00169591599996, 28.87026224400006 ], [ -82.001769334999949, 28.870152896000036 ], [ -82.001814635999949, 28.87009353600007 ], [ -82.001859936999949, 28.870031051000069 ], [ -82.001902153999936, 28.869971768000028 ], [ -82.001915240999949, 28.869953327000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983981532999962, 28.809260480000034 ], [ -81.984339109999951, 28.80930220700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979040274999988, 28.812179387000072 ], [ -81.979154641999969, 28.812286525000047 ], [ -81.979355607999935, 28.812383766000039 ], [ -81.979530642999975, 28.812406456000076 ], [ -81.979666781999981, 28.812404295000078 ], [ -81.980010368999956, 28.812475606000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977515618999973, 28.811996967000027 ], [ -81.977833102999966, 28.811763348000056 ], [ -81.97803677099995, 28.811613591000025 ], [ -81.978258410999956, 28.811529728000039 ], [ -81.978348263999976, 28.81154170800005 ], [ -81.978462078999939, 28.811613591000025 ], [ -81.978581883999937, 28.811721416000069 ], [ -81.978701569999942, 28.811845848000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976443363999977, 28.812901495000062 ], [ -81.977515618999973, 28.811996967000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975817415999984, 28.81494174200003 ], [ -81.975755549999974, 28.814684760000034 ], [ -81.975736514999937, 28.814532474000032 ], [ -81.975736514999937, 28.81442301900006 ], [ -81.975754484999982, 28.814303214000063 ], [ -81.975856319999934, 28.814153458000078 ], [ -81.975928202999967, 28.813937809000038 ], [ -81.975976124999988, 28.813728150000031 ], [ -81.975964143999988, 28.81348255000006 ], [ -81.976048007999964, 28.813218979000055 ], [ -81.976149841999984, 28.813099174000058 ], [ -81.976443363999977, 28.812901495000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975837589999969, 28.815696996000042 ], [ -81.975892963999968, 28.815398003000041 ], [ -81.975904861999936, 28.815279030000056 ], [ -81.97589891299998, 28.815213595000046 ], [ -81.975817415999984, 28.81494174200003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976957286999948, 28.813403597000047 ], [ -81.976443363999977, 28.812901495000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978701569999942, 28.811845848000075 ], [ -81.978869374999988, 28.811688894000042 ], [ -81.979073042999971, 28.811566693000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979073042999971, 28.811566693000032 ], [ -81.979500746999975, 28.811281557000029 ], [ -81.979667075999942, 28.811094860000026 ], [ -81.979765515999986, 28.810999815000059 ], [ -81.979860561999942, 28.810925137000027 ], [ -81.979938634999939, 28.810874219000027 ], [ -81.980029637999962, 28.810832314000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979073042999971, 28.811566693000032 ], [ -81.979344371999957, 28.81177335600006 ], [ -81.979466839999986, 28.811843775000057 ], [ -81.97959476799997, 28.811898632000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975805351999952, 28.810963682000079 ], [ -81.97608196799996, 28.810985811000023 ], [ -81.976458163999951, 28.811101990000054 ], [ -81.976790101999939, 28.811312217000079 ], [ -81.977227153999934, 28.811749269000074 ], [ -81.977515618999973, 28.811996967000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974892522999937, 28.811207103000072 ], [ -81.975036361999969, 28.811101990000054 ], [ -81.975301912999953, 28.811007940000025 ], [ -81.97555639899997, 28.810958150000033 ], [ -81.975805351999952, 28.810963682000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974300565999954, 28.811666284000069 ], [ -81.974488664999967, 28.811483718000034 ], [ -81.974892522999937, 28.811207103000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972270210999966, 28.813458750000052 ], [ -81.97238638999994, 28.813231926000071 ], [ -81.972696198999984, 28.812822536000056 ], [ -81.97318304099997, 28.812429742000063 ], [ -81.973443058999976, 28.812236112000051 ], [ -81.97370860999996, 28.812108869000042 ], [ -81.973996289999945, 28.811926303000064 ], [ -81.974300565999954, 28.811666284000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972026789999973, 28.814089433000049 ], [ -81.972126371999934, 28.813834947000032 ], [ -81.972270210999966, 28.813458750000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97156259999997, 28.814658119000057 ], [ -81.971848134999959, 28.814296441000067 ], [ -81.972026789999973, 28.814089433000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971162849999985, 28.815410029000077 ], [ -81.97134368899998, 28.81495317200006 ], [ -81.97156259999997, 28.814658119000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970873240999936, 28.817638196000075 ], [ -81.970725028999937, 28.817402827000024 ], [ -81.970543713999973, 28.817150367000067 ], [ -81.970439493999947, 28.817039008000052 ], [ -81.970352405999961, 28.816944781000075 ], [ -81.970288159999939, 28.816869114000042 ], [ -81.970271027999956, 28.816814863000047 ], [ -81.970276738999985, 28.816744906000054 ], [ -81.970299581999939, 28.816679233000059 ], [ -81.970353833, 28.816590242000075 ], [ -81.970772617999955, 28.816133385000057 ], [ -81.971162849999985, 28.815410029000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976346163999949, 28.812050333000059 ], [ -81.976191075999964, 28.811811592000026 ], [ -81.975942739999937, 28.811487281000041 ], [ -81.975815586999943, 28.811280657000054 ], [ -81.9757785, 28.81115350400006 ], [ -81.975805351999952, 28.810963682000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975674907999974, 28.812602574000039 ], [ -81.97559933399998, 28.812500736000061 ], [ -81.975384848999965, 28.812209649000067 ], [ -81.975267392999967, 28.812036018000072 ], [ -81.975206110999977, 28.811882814000057 ], [ -81.975175469999954, 28.811693863000073 ], [ -81.975103974999968, 28.811479377000069 ], [ -81.974960984999939, 28.81130064000007 ], [ -81.974892522999937, 28.811207103000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974640386999965, 28.812356329000067 ], [ -81.974535157999981, 28.812057615000072 ], [ -81.974453690999951, 28.811857341000064 ], [ -81.974375617999954, 28.811755507000044 ], [ -81.974300565999954, 28.811666284000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975067816999967, 28.813055714000029 ], [ -81.974928916999943, 28.812926601000072 ], [ -81.974813504999986, 28.81275008800003 ], [ -81.97474561599995, 28.812621098000079 ], [ -81.974640386999965, 28.812356329000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974026919999972, 28.812685846000079 ], [ -81.974278510999966, 28.812524828000051 ], [ -81.974640386999965, 28.812356329000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97372596799994, 28.812853852000046 ], [ -81.974026919999972, 28.812685846000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975067816999967, 28.813055714000029 ], [ -81.97530212199996, 28.812878740000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974578381999947, 28.813454081000032 ], [ -81.975067816999967, 28.813055714000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974806809999961, 28.813682509000046 ], [ -81.974578381999947, 28.813454081000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974578381999947, 28.813454081000032 ], [ -81.974321399999951, 28.813182822000044 ], [ -81.97416435599996, 28.81295439400003 ], [ -81.974026919999972, 28.812685846000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972855056999947, 28.813806241000066 ], [ -81.972679571999947, 28.813663473000076 ], [ -81.972483266999973, 28.813547475000064 ], [ -81.972270210999966, 28.813458750000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973377632999984, 28.81431215200007 ], [ -81.973322649999943, 28.814281182000059 ], [ -81.973182232999989, 28.814148289000059 ], [ -81.972855056999947, 28.813806241000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972855056999947, 28.813806241000066 ], [ -81.972942298999953, 28.81372977500007 ], [ -81.973087581999948, 28.813573096000027 ], [ -81.973212924999984, 28.813399326000024 ], [ -81.973295536999956, 28.813313865000055 ], [ -81.973406636999982, 28.813231253000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973406636999982, 28.813231253000026 ], [ -81.973762044999944, 28.812907511000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973956434999934, 28.813843723000048 ], [ -81.973697203999961, 28.813536063000072 ], [ -81.973523432999968, 28.813311016000057 ], [ -81.973406636999982, 28.813231253000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974257643999977, 28.814133355000024 ], [ -81.973956434999934, 28.813843723000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973377632999984, 28.81431215200007 ], [ -81.973853524999981, 28.813949285000035 ], [ -81.973956434999934, 28.813843723000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973064381999961, 28.814571671000067 ], [ -81.973377632999984, 28.81431215200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972861289999969, 28.814801132000071 ], [ -81.972343756999976, 28.814313342000048 ], [ -81.972026789999973, 28.814089433000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97233185999994, 28.815232409000032 ], [ -81.972434044999943, 28.815221195000049 ], [ -81.972535172999983, 28.815203350000047 ], [ -81.972659036999971, 28.81515210200007 ], [ -81.972723149999979, 28.815091515000063 ], [ -81.972769085999971, 28.815006360000041 ], [ -81.972823086999938, 28.814926142000047 ], [ -81.972861289999969, 28.814801132000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97156259999997, 28.814658119000057 ], [ -81.971957094999937, 28.814964720000035 ], [ -81.972227758999963, 28.815220512000053 ], [ -81.97233185999994, 28.815232409000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972861289999969, 28.814801132000071 ], [ -81.973118751999948, 28.814631081000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972066746999985, 28.815496702000075 ], [ -81.97233185999994, 28.815232409000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971730423999986, 28.81576835900006 ], [ -81.971331623999959, 28.815481302000023 ], [ -81.971268165999959, 28.815445661000069 ], [ -81.971162849999985, 28.815410029000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975837589999969, 28.815696996000042 ], [ -81.976193255999988, 28.815746145000048 ], [ -81.976380179999978, 28.815726808000079 ], [ -81.976715354999953, 28.815668797000058 ], [ -81.977130854999984, 28.815663667000024 ], [ -81.977333123999983, 28.81567238100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974246663999963, 28.81588150400006 ], [ -81.974485153999979, 28.815855721000048 ], [ -81.975110382999958, 28.815694579000024 ], [ -81.975329535999947, 28.815655905000028 ], [ -81.975497123999958, 28.815655905000028 ], [ -81.975837589999969, 28.815696996000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973542940999948, 28.816014452000047 ], [ -81.973808358999975, 28.815920178000056 ], [ -81.974246663999963, 28.81588150400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973047769999937, 28.816416494000066 ], [ -81.973105780999958, 28.816345592000062 ], [ -81.973286258999963, 28.816165113000068 ], [ -81.973542940999948, 28.816014452000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972882393999953, 28.817021036000028 ], [ -81.972970421999946, 28.816796789000023 ], [ -81.973047769999937, 28.816416494000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972526441999946, 28.817280704000041 ], [ -81.972635246999971, 28.817222203000028 ], [ -81.972882393999953, 28.817021036000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971957101999976, 28.817694395000046 ], [ -81.972526441999946, 28.817280704000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974246663999963, 28.81588150400006 ], [ -81.974195831999964, 28.815576495000073 ], [ -81.974176050999972, 28.815420718000041 ], [ -81.974183467999978, 28.815326757000037 ], [ -81.974215612999956, 28.815264941000066 ], [ -81.974284846999979, 28.815222906000031 ], [ -81.974435678999953, 28.815178398000057 ], [ -81.975036532999979, 28.815047347000075 ], [ -81.975533535999944, 28.814997894000044 ], [ -81.975817415999984, 28.81494174200003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973542940999948, 28.816014452000047 ], [ -81.973351855999965, 28.81563552700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972596779999947, 28.816237558000068 ], [ -81.973047769999937, 28.816416494000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972526441999946, 28.817280704000041 ], [ -81.972363236999968, 28.81707431500007 ], [ -81.971970208999949, 28.816739127000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973502112999938, 28.817393210000034 ], [ -81.972882393999953, 28.817021036000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973866108999971, 28.817687535000061 ], [ -81.97364310599994, 28.817481828000041 ], [ -81.973562037999955, 28.817423225000027 ], [ -81.973502112999938, 28.817393210000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971957101999976, 28.817694395000046 ], [ -81.972063674999958, 28.817841276000024 ], [ -81.97216266099997, 28.81800307900005 ], [ -81.972232307999946, 28.818062815000076 ], [ -81.972341808999943, 28.818090191000067 ], [ -81.97248781199994, 28.818081066000047 ], [ -81.972715941, 28.818008064000026 ], [ -81.972898443999952, 28.817898563000028 ], [ -81.973502112999938, 28.817393210000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970873240999936, 28.817638196000075 ], [ -81.971146867999948, 28.817545847000076 ], [ -81.971410233999961, 28.817511643000046 ], [ -81.971735165999974, 28.817583471000034 ], [ -81.971957101999976, 28.817694395000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970783825999945, 28.820122476000051 ], [ -81.970817731999944, 28.819958307000036 ], [ -81.970889115999967, 28.819572834000041 ], [ -81.970846285999983, 28.819406272000037 ], [ -81.970736830999954, 28.819268263000026 ], [ -81.970422741999982, 28.819049353000025 ], [ -81.970294249999938, 28.818911344000071 ], [ -81.970241902999987, 28.818792371000029 ], [ -81.970237143999952, 28.818616291000069 ], [ -81.970284732999971, 28.818321238000067 ], [ -81.970365634999951, 28.818097568000042 ], [ -81.970497167999952, 28.81789376100005 ], [ -81.970594892999941, 28.817797943000073 ], [ -81.970725510999955, 28.81770546100006 ], [ -81.970873240999936, 28.817638196000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971173883999938, 28.821840068000029 ], [ -81.970378721999964, 28.820877969000037 ], [ -81.970301388999985, 28.820758996000052 ], [ -81.970286538999972, 28.820710576000067 ], [ -81.970286538999972, 28.82065304200006 ], [ -81.970308456999987, 28.820595508000054 ], [ -81.970343029999981, 28.820538895000027 ], [ -81.970652359999974, 28.820324744000061 ], [ -81.970783825999945, 28.820122476000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970670627999937, 28.822391161000041 ], [ -81.971173883999938, 28.821840068000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971173883999938, 28.821840068000029 ], [ -81.971545079999942, 28.821451274000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970783825999945, 28.820122476000051 ], [ -81.970943103999957, 28.82016094100004 ], [ -81.971239278999974, 28.820276848000049 ], [ -81.971761907999962, 28.820481990000076 ], [ -81.971973552999941, 28.820564402000059 ], [ -81.972190210999941, 28.820617620000064 ], [ -81.972426717999952, 28.820675530000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972426717999952, 28.820675530000074 ], [ -81.972964056999956, 28.820807827000067 ], [ -81.97313201999998, 28.820914384000048 ], [ -81.973246691999975, 28.821031646000051 ], [ -81.973514901999977, 28.821356866000031 ], [ -81.973661191999952, 28.821548307000057 ], [ -81.973703547999946, 28.821681239000043 ], [ -81.973786353999969, 28.82178688700003 ], [ -81.973876772999972, 28.821834476000049 ], [ -81.974079026999959, 28.821896342000059 ], [ -81.97423607199994, 28.821951069000079 ], [ -81.974295557999938, 28.822015315000044 ], [ -81.974347905999934, 28.822198533000062 ], [ -81.974443084999962, 28.822434100000066 ], [ -81.974533473999941, 28.82268188200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972426717999952, 28.820675530000074 ], [ -81.972459798999978, 28.820580104000044 ], [ -81.972511114999975, 28.820509648000041 ], [ -81.972609617999979, 28.820419152000056 ], [ -81.972721172999968, 28.820347728000058 ], [ -81.972856835999949, 28.820308342000033 ], [ -81.972932794999963, 28.820274423000058 ], [ -81.973026629999936, 28.820189494000033 ], [ -81.973265513999934, 28.819959199000039 ], [ -81.973323086999983, 28.819904170000029 ], [ -81.973362847999965, 28.819843733000027 ], [ -81.973377797999945, 28.819786478000026 ], [ -81.973377161999963, 28.819712363000065 ], [ -81.973329466999985, 28.819573139000056 ], [ -81.973278236999988, 28.819470299000045 ], [ -81.97320444099995, 28.819393004000062 ], [ -81.973011515999985, 28.819238469000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977987195999958, 28.795856160000028 ], [ -81.977984050999964, 28.795805836000056 ], [ -81.977984050999964, 28.795768093000049 ], [ -81.977982477999944, 28.795705188000056 ], [ -81.977982477999944, 28.795653291000065 ], [ -81.977991913999972, 28.795606899000063 ], [ -81.977998990999936, 28.795557361000078 ], [ -81.978013143999988, 28.795481875000064 ], [ -81.97803516099998, 28.795396167000035 ], [ -81.97807447699995, 28.795264066000072 ], [ -81.978204218999963, 28.794729373000052 ], [ -81.978222303999985, 28.794617716000062 ], [ -81.978229380999949, 28.794446300000061 ], [ -81.978224662999935, 28.794316558000048 ], [ -81.978215171999977, 28.794234194000069 ], [ -81.978204251999955, 28.79417959400007 ], [ -81.978190064999978, 28.794120766000049 ], [ -81.978179681999961, 28.794064935000051 ], [ -81.978155111999968, 28.79399941500003 ], [ -81.978122351999957, 28.793917515000032 ], [ -81.978018611999971, 28.793701846000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981806243999984, 28.804406746000041 ], [ -81.981768601999988, 28.804336918000047 ], [ -81.981697552999947, 28.804283868000027 ], [ -81.981601941999941, 28.804249211000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977887710999937, 28.793743838000069 ], [ -81.978055838999978, 28.794161947000077 ], [ -81.978089705999935, 28.794354313000042 ], [ -81.97808618199997, 28.794581463000043 ], [ -81.978077252999981, 28.794631409000033 ], [ -81.978065962999949, 28.794680983000035 ], [ -81.977853299999936, 28.79554995500007 ], [ -81.977843152999981, 28.795694102000027 ], [ -81.977845861999981, 28.795826862000069 ], [ -81.977875665999989, 28.79602058200004 ], [ -81.977894091999985, 28.796098380000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981601941999941, 28.804249211000069 ], [ -81.981518250999954, 28.80423690300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981561863999957, 28.805119427000079 ], [ -81.981626555999981, 28.804751353000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981560095999953, 28.805351954000059 ], [ -81.98168316999994, 28.805041807000066 ], [ -81.981713084999967, 28.804973372000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963336893999951, 28.785292382000023 ], [ -81.963288455999987, 28.78524912000006 ], [ -81.963196596999978, 28.785170066000035 ], [ -81.963103086, 28.785092529000053 ], [ -81.963007956999945, 28.785016535000068 ], [ -81.962911241999961, 28.784942110000031 ], [ -81.962812975999952, 28.784869280000066 ], [ -81.96269879099998, 28.784786431000043 ], [ -81.962597522999943, 28.784716866000053 ], [ -81.962494805999938, 28.784648969000045 ], [ -81.962390675999984, 28.784582765000039 ], [ -81.962285167999937, 28.784518275000039 ], [ -81.962178318999975, 28.784455523000076 ], [ -81.962070166, 28.784394529000053 ], [ -81.961960744999942, 28.784335315000078 ], [ -81.961850096999967, 28.784277901000053 ], [ -81.961738256999979, 28.78422230700005 ], [ -81.961625263999963, 28.784168553000029 ], [ -81.961511157999951, 28.784116656000037 ], [ -81.961395977999985, 28.784066635000045 ], [ -81.961279762999936, 28.784018506000052 ], [ -81.96117518899996, 28.783983321000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97634048599997, 28.790717011000027 ], [ -81.976342551999949, 28.790763843000036 ], [ -81.976351048999959, 28.79080698000007 ], [ -81.976359779999939, 28.790834008000047 ], [ -81.976418792999937, 28.790915943000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976652082999976, 28.791009006000024 ], [ -81.976715020999961, 28.791002201000026 ], [ -81.976771477999989, 28.790989453000066 ], [ -81.976858712999956, 28.790939706000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99168659299994, 28.799807169000076 ], [ -81.991434487999982, 28.799861362000058 ], [ -81.991073218999986, 28.799945956000045 ], [ -81.990690726999958, 28.800054412000065 ], [ -81.990385396999955, 28.800146343000051 ], [ -81.989967366999963, 28.800290424000025 ], [ -81.989665821999949, 28.800408539000045 ], [ -81.989261345999978, 28.800582203000033 ], [ -81.988689596999961, 28.800836285000059 ], [ -81.988458108999964, 28.800939615000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994733971999949, 28.799590176000038 ], [ -81.994710829999974, 28.799590296000076 ], [ -81.99466136999996, 28.799588960000051 ], [ -81.994591858999968, 28.799587623000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994736235999937, 28.799716216000036 ], [ -81.994733971999949, 28.799590176000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994591858999968, 28.799587623000036 ], [ -81.994593194999936, 28.799714615000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991610054999967, 28.799952591000078 ], [ -81.991914018999978, 28.79989245400003 ], [ -81.992204862999984, 28.799844345000054 ], [ -81.992579550999949, 28.799792484000079 ], [ -81.992761880999979, 28.799774928000033 ], [ -81.993009064999967, 28.799751258000072 ], [ -81.993374202999973, 28.799726066000062 ], [ -81.993766225999934, 28.799713097000051 ], [ -81.994383277999987, 28.799715734000074 ], [ -81.994593194999936, 28.799714615000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994593194999936, 28.799714615000028 ], [ -81.994710829999974, 28.799715952000042 ], [ -81.994723153999985, 28.799716216000036 ], [ -81.994736235999937, 28.799716216000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953611097999953, 28.90391168900004 ], [ -81.95361139299996, 28.90394875000004 ], [ -81.953612539999938, 28.904092981000076 ], [ -81.953626786999962, 28.904736381000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953526728999975, 28.89141593100004 ], [ -81.953529294999953, 28.891623742000036 ], [ -81.953539556999942, 28.892252308000025 ], [ -81.953542122999977, 28.892706414000031 ], [ -81.953542122999977, 28.892750028000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953487850999977, 28.887230363000072 ], [ -81.953511749999961, 28.887253818000033 ], [ -81.953519032999964, 28.887511131000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055163171999936, 28.840844607000065 ], [ -82.055105014999981, 28.841003833000059 ], [ -82.054962071999967, 28.841482351000025 ], [ -82.054918067999949, 28.841585821000024 ], [ -82.054525319999982, 28.84181551100005 ], [ -82.054440885999952, 28.841844642000069 ], [ -82.054396848999943, 28.841886687000056 ], [ -82.054367547999959, 28.84202571000003 ], [ -82.054276019999975, 28.842533304000028 ], [ -82.054173781999964, 28.843632511000067 ], [ -82.053928230999986, 28.844515174000037 ], [ -82.053935753999951, 28.844861085000048 ], [ -82.05395434199994, 28.845307210000044 ], [ -82.053936610999983, 28.846522765000032 ], [ -82.053877256999954, 28.847122814000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002513390999979, 28.609932790000073 ], [ -82.002381305999961, 28.609951197000044 ], [ -82.00225269799995, 28.60997573800006 ], [ -82.002092805999951, 28.610021751000033 ], [ -82.002023289999954, 28.61004629100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040665114999967, 28.960104232000049 ], [ -82.040459062999957, 28.960116600000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999218670999937, 28.799763444000064 ], [ -81.999383772999977, 28.799762897000051 ], [ -82.000117514999943, 28.799769011000024 ], [ -82.000697743999979, 28.799771301000078 ], [ -82.001320469999939, 28.799769004000041 ], [ -82.001846926999974, 28.799772054000073 ], [ -82.002721171999951, 28.799771275000069 ], [ -82.003702097999962, 28.799775836000038 ], [ -82.004429334999941, 28.799779252000064 ], [ -82.004885754999975, 28.799778167000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004294869999967, 28.79963673900005 ], [ -82.003685164999979, 28.799636642000053 ], [ -82.002476588999968, 28.799614286000065 ], [ -82.001819612999952, 28.799607681000055 ], [ -82.000513879999971, 28.799603203000061 ], [ -81.999053343999947, 28.799598609000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963906016999942, 28.834078928000054 ], [ -81.963702160999958, 28.833997130000057 ], [ -81.96346013699997, 28.833897750000062 ], [ -81.963176474999955, 28.833785371000033 ], [ -81.963073243999986, 28.833750965000036 ], [ -81.962996035999936, 28.83372878800003 ], [ -81.962917091999941, 28.833711196000024 ], [ -81.962824266999974, 28.833692835000079 ], [ -81.962740980999968, 28.833684409000057 ], [ -81.962658562999934, 28.833675982000045 ], [ -81.962457104999942, 28.833654538000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964348903999962, 28.834258270000078 ], [ -81.963906016999942, 28.834078928000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965288695999959, 28.834759553000026 ], [ -81.965273811999964, 28.834751647000076 ], [ -81.965165166999952, 28.834688020000044 ], [ -81.965029198999957, 28.834599173000072 ], [ -81.964908846999947, 28.834521219000067 ], [ -81.964819720999969, 28.834462753000025 ], [ -81.964696113999935, 28.834389381000051 ], [ -81.96461673999994, 28.83435727400007 ], [ -81.964536058999954, 28.834343501000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958758004999936, 28.832484556000054 ], [ -81.959002343999941, 28.832382844000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960749575999955, 28.833570613000063 ], [ -81.960541354999975, 28.833570553000072 ], [ -81.960316865999971, 28.833575261000078 ], [ -81.960141193999959, 28.833585764000077 ], [ -81.959873787999982, 28.833599221000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959873787999982, 28.833599221000043 ], [ -81.959496771999966, 28.833618194000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962457104999942, 28.833654538000076 ], [ -81.96191104199994, 28.833617738000044 ], [ -81.961478673999977, 28.833593907000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961478673999977, 28.833593907000079 ], [ -81.961243011999954, 28.833582215000035 ], [ -81.960962133999942, 28.833571629000062 ], [ -81.960749575999955, 28.833570613000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958758004999936, 28.832484556000054 ], [ -81.958719573999986, 28.832421901000032 ], [ -81.958676127, 28.832361840000033 ], [ -81.958627891999981, 28.832304685000054 ], [ -81.958575115999963, 28.832250730000055 ], [ -81.958518070999958, 28.832200255000032 ], [ -81.958462886999939, 28.832154818000049 ], [ -81.958434025999964, 28.832127099000047 ], [ -81.958410326999967, 28.832095815000059 ], [ -81.958392350999986, 28.832061704000068 ], [ -81.958380519999935, 28.832025570000042 ], [ -81.958375115999957, 28.831988267000042 ], [ -81.95837626399998, 28.83195067500003 ], [ -81.958383936999951, 28.831913680000071 ], [ -81.958397955999942, 28.831878159000041 ], [ -81.958531750999953, 28.831608082000059 ], [ -81.958585636999942, 28.831491280000023 ], [ -81.958632697999974, 28.831372213000066 ], [ -81.958672812999964, 28.831251190000046 ], [ -81.958705879999968, 28.831128527000033 ], [ -81.958731807999982, 28.831004539000048 ], [ -81.958750534999979, 28.830879550000077 ], [ -81.958762010999976, 28.830753883000057 ], [ -81.958772948999979, 28.830578188000061 ], [ -81.958780844999978, 28.830507387000068 ], [ -81.958795638999959, 28.830437448000055 ], [ -81.958817217999979, 28.830368890000045 ], [ -81.958845424999936, 28.830302225000025 ], [ -81.958880047999969, 28.830237947000057 ], [ -81.958920830999944, 28.830176535000078 ], [ -81.958967468999958, 28.830118445000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959190898999964, 28.833602576000033 ], [ -81.959152537999955, 28.833582718000059 ], [ -81.959118265999962, 28.833557722000023 ], [ -81.959088961999953, 28.833528234000028 ], [ -81.95906537999997, 28.833495005000032 ], [ -81.959048119999977, 28.833458887000063 ], [ -81.95903762599994, 28.833420807000039 ], [ -81.958984400999952, 28.833126475000029 ], [ -81.95896400099997, 28.833028703000025 ], [ -81.958938346999958, 28.832931897000037 ], [ -81.95890749299997, 28.832836273000055 ], [ -81.958871511999973, 28.832742049000046 ], [ -81.958807047999983, 28.832585653000024 ], [ -81.958784120999951, 28.832534504000023 ], [ -81.958758004999936, 28.832484556000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959496771999966, 28.833618194000053 ], [ -81.959328002999939, 28.833626687000049 ], [ -81.959280966999984, 28.83362554200005 ], [ -81.959234824999953, 28.833617427000036 ], [ -81.959190898999964, 28.833602576000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958967468999958, 28.830118445000039 ], [ -81.959018266999976, 28.830065400000024 ], [ -81.959073948999958, 28.830016302000047 ], [ -81.959134118999941, 28.829971495000052 ], [ -81.959198347999973, 28.829931301000045 ], [ -81.959269044999985, 28.829887762000055 ], [ -81.959336158999974, 28.82984003100006 ], [ -81.95939937299994, 28.829788335000046 ], [ -81.959458383999959, 28.829732920000026 ], [ -81.959512911, 28.82967405200003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959512911, 28.82967405200003 ], [ -81.95956345999997, 28.829610982000077 ], [ -81.959608861999982, 28.829544944000077 ], [ -81.959648892999951, 28.829476266000029 ], [ -81.959706789999984, 28.829367722000029 ], [ -81.959742154999958, 28.829294680000032 ], [ -81.959771443999955, 28.829219582000064 ], [ -81.95979450599998, 28.829142820000072 ], [ -81.959811219999949, 28.829064792000054 ], [ -81.95982149799994, 28.828985906000071 ], [ -81.959825288, 28.828906572000051 ], [ -81.959828387999949, 28.82844805600007 ], [ -81.95983244599995, 28.828382014000056 ], [ -81.959843690999946, 28.828316620000066 ], [ -81.959862021999982, 28.82825248100005 ], [ -81.959887262999985, 28.828190190000043 ], [ -81.959919185, 28.82813032100006 ], [ -81.959957491999944, 28.828073431000064 ], [ -81.960001828999964, 28.828020046000063 ], [ -81.960051784999962, 28.827970658000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960051784999962, 28.827970658000027 ], [ -81.960108043999981, 28.827924880000069 ], [ -81.960169127999961, 28.827884176000055 ], [ -81.960234445999959, 28.827848940000024 ], [ -81.960303369999963, 28.827819509000051 ], [ -81.960375237999983, 28.827796167000031 ], [ -81.960449356999959, 28.827779138000039 ], [ -81.960525013999984, 28.827768589000073 ], [ -81.960601480999969, 28.827764616000024 ], [ -81.960678022999957, 28.827767262000066 ], [ -81.961034119999965, 28.827795026000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961034119999965, 28.827795026000047 ], [ -81.961620178999965, 28.827840714000047 ], [ -81.961684590999937, 28.827844262000042 ], [ -81.961749124999983, 28.827844875000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961749124999983, 28.827844875000039 ], [ -81.961749259999976, 28.82784487300006 ], [ -81.962507670999969, 28.827834757000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962507670999969, 28.827834757000062 ], [ -81.962552756999969, 28.827834155000062 ], [ -81.962637246999975, 28.827831011000058 ], [ -81.962721420999969, 28.827823844000079 ], [ -81.962981780999939, 28.827795389000073 ], [ -81.96304510799996, 28.827791648000073 ], [ -81.963108511999963, 28.827794216000029 ], [ -81.963171179999961, 28.827803061000054 ], [ -81.963232318999985, 28.827818072000071 ], [ -81.96329114599996, 28.827839055000027 ], [ -81.963346912999953, 28.827865743000075 ], [ -81.963787407999973, 28.828105864000065 ], [ -81.963861809999969, 28.828148603000045 ], [ -81.963933829999974, 28.82819439900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963933829999974, 28.82819439900004 ], [ -81.964025423999942, 28.828259699000057 ], [ -81.964112173999979, 28.828329939000071 ], [ -81.964193740999974, 28.828404841000065 ], [ -81.964269799999954, 28.828484111000023 ], [ -81.964447315999962, 28.828681385000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964447315999962, 28.828681385000039 ], [ -81.964607307999984, 28.828859183000077 ], [ -81.964661359, 28.828914457000053 ], [ -81.964720346999968, 28.828965665000055 ], [ -81.96478388099996, 28.82901246800003 ], [ -81.964851536999959, 28.829054552000059 ], [ -81.964922863999959, 28.829091639000069 ], [ -81.964997388999961, 28.829123481000067 ], [ -81.965074612999956, 28.829149866000023 ], [ -81.965118692999965, 28.82916313100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965118692999965, 28.82916313100003 ], [ -81.965369084999963, 28.829257339000037 ], [ -81.965471009999987, 28.829293653000036 ], [ -81.965562089999935, 28.829332829000066 ], [ -81.965641239999968, 28.829377733000058 ], [ -81.965723638999975, 28.829435050000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967745483999977, 28.830640519000042 ], [ -81.967745098999956, 28.830639930000075 ], [ -81.967676152999957, 28.83055855200007 ], [ -81.96762281499997, 28.830505826000035 ], [ -81.967527841999981, 28.830425778000063 ], [ -81.967479698999966, 28.830402656000047 ], [ -81.967337867999959, 28.830352201000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965723638999975, 28.829435050000029 ], [ -81.965782437999962, 28.829475449000029 ], [ -81.965853740999989, 28.829528668000023 ], [ -81.965954569999951, 28.829602225000031 ], [ -81.966051063999942, 28.829665276000071 ], [ -81.966144306999979, 28.829727370000057 ], [ -81.966233211999963, 28.829788509000025 ], [ -81.966335128999958, 28.829849652000064 ], [ -81.966439218999938, 28.829906019000077 ], [ -81.966536800999961, 28.829961431000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966536800999961, 28.829961431000072 ], [ -81.966672672999948, 28.830029652000064 ], [ -81.966823050999949, 28.830099014000041 ], [ -81.967108216999975, 28.830239462000065 ], [ -81.967189539999936, 28.830273860000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964536058999954, 28.834343501000035 ], [ -81.964568430999975, 28.834400870000024 ], [ -81.964637523999954, 28.834469581000064 ], [ -81.964722524999956, 28.834542178000049 ], [ -81.964814467999986, 28.834604847000037 ], [ -81.964921156999935, 28.834679362000031 ], [ -81.965055173999986, 28.834757320000051 ], [ -81.965198298999951, 28.834846167000023 ], [ -81.965216987999952, 28.834855745000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964536058999954, 28.834343501000035 ], [ -81.964480108999965, 28.834313692000023 ], [ -81.964348903999962, 28.834258270000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967616163999935, 28.830707748000066 ], [ -81.967655262999983, 28.830780858000026 ], [ -81.967851371999984, 28.831100952000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967189539999936, 28.830273860000034 ], [ -81.967255681999973, 28.830308254000045 ], [ -81.967305557999964, 28.830333094000025 ], [ -81.967337867999959, 28.830352201000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020601782999961, 28.867997398000057 ], [ -82.020367559999954, 28.867974778000075 ], [ -82.020078455999965, 28.867989055000066 ], [ -82.019721535999963, 28.86802831600005 ], [ -82.019282525999984, 28.868142530000057 ], [ -82.018900622, 28.868310282000039 ], [ -82.018654347999984, 28.868463758000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018654347999984, 28.868463758000075 ], [ -82.018458042999953, 28.868586300000061 ], [ -82.018249839999953, 28.86877368200004 ], [ -82.017988098999979, 28.869062192000058 ], [ -82.017878048999989, 28.869228754000062 ], [ -82.017705537999973, 28.869401265000079 ], [ -82.017497334999973, 28.869514290000041 ], [ -82.017292106999946, 28.869597571000043 ], [ -82.017069031999938, 28.869639211000049 ], [ -82.01683406099994, 28.869636237000066 ], [ -82.016557447999958, 28.869579725000051 ], [ -82.016417654999941, 28.86952916100006 ], [ -82.016251092999937, 28.869454803000053 ], [ -82.016001248999942, 28.869291215000032 ], [ -82.015730584999972, 28.869118704000073 ], [ -82.015450998999938, 28.868984860000069 ], [ -82.015201154999943, 28.86890455300005 ], [ -82.014885876999983, 28.868833169000027 ], [ -82.014639007999961, 28.868803426000056 ], [ -82.014405896999961, 28.868796383000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014405896999961, 28.868796383000074 ], [ -82.014187147999962, 28.868808541000078 ], [ -82.013861161999955, 28.86885613100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013861161999955, 28.86885613100003 ], [ -82.013581792999958, 28.868922637000026 ], [ -82.013290308999956, 28.86897914900004 ], [ -82.012787647999971, 28.869005918000028 ], [ -82.012325622999981, 28.869024087000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014452349999942, 28.865470638000033 ], [ -82.014439660999983, 28.866227694000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017866096999967, 28.865319742000054 ], [ -82.017832254999973, 28.865319602000056 ], [ -82.016091342999971, 28.865317842000024 ], [ -82.014451017999988, 28.865314741000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014451017999988, 28.865314741000077 ], [ -82.014320912999949, 28.865314494000074 ], [ -82.013656472999969, 28.865315847000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014441204999969, 28.866738858000076 ], [ -82.014442749999944, 28.866826883000044 ], [ -82.014431422999962, 28.867171997000071 ], [ -82.014402869999969, 28.867343318000053 ], [ -82.014321968, 28.86755271100003 ], [ -82.014145887999973, 28.867823969000028 ], [ -82.013936494999939, 28.86811902200003 ], [ -82.013855593999949, 28.868299862000072 ], [ -82.013827039999967, 28.868442629000072 ], [ -82.013831798999945, 28.868718647000037 ], [ -82.013861161999955, 28.86885613100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013861161999955, 28.86885613100003 ], [ -82.013869869999951, 28.86908627300005 ], [ -82.013857972999972, 28.869276630000059 ], [ -82.013816332999966, 28.869407501000069 ], [ -82.013715205999972, 28.869532422000077 ], [ -82.013614077999989, 28.869603806000043 ], [ -82.013507002999972, 28.869663293000031 ], [ -82.013411823999945, 28.869687087000045 ], [ -82.013245261999941, 28.869734677000054 ], [ -82.013096545999986, 28.869800112000064 ], [ -82.012992443999963, 28.869886367000049 ], [ -82.012906188999978, 28.870020212000043 ], [ -82.012861573999942, 28.870180825000034 ], [ -82.012852650999946, 28.870546668000031 ], [ -82.012852650999946, 28.871144507000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020545136999942, 28.866529181000033 ], [ -82.019983955999976, 28.866530409000063 ], [ -82.019748229999948, 28.866510022000057 ], [ -82.019523970999956, 28.866485813000054 ], [ -82.019293341999969, 28.866467974000045 ], [ -82.018574701999967, 28.866462914000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01785420799996, 28.86646100400003 ], [ -82.01785388899998, 28.86646100300004 ], [ -82.014753153999948, 28.866459339000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018581984999969, 28.865476709000063 ], [ -82.018574701999967, 28.866462914000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017876696999963, 28.865476805000071 ], [ -82.018581897999979, 28.865476709000063 ], [ -82.018581984999969, 28.865476709000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018574701999967, 28.866462914000067 ], [ -82.01785420799996, 28.86646100400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01785420799996, 28.86646100400003 ], [ -82.017855079999947, 28.86690432000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017855079999947, 28.86690432000006 ], [ -82.015409597999962, 28.86694626700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015409597999962, 28.86694626700006 ], [ -82.015377139999941, 28.866974834000075 ], [ -82.015301948999934, 28.867066206000061 ], [ -82.015187734999984, 28.867188986000031 ], [ -82.015004277999935, 28.867368635000048 ], [ -82.014890063999985, 28.867532818000029 ], [ -82.014443914999958, 28.868257364000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014443914999958, 28.868257364000044 ], [ -82.014405293999971, 28.868447204000063 ], [ -82.014403138999967, 28.868606673000045 ], [ -82.014405896999961, 28.868796383000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015541480999957, 28.868602719000023 ], [ -82.015504875999966, 28.868564371000048 ], [ -82.015463738999983, 28.868524067000067 ], [ -82.015412492999985, 28.868496391000065 ], [ -82.015289605999953, 28.868451071000038 ], [ -82.015103095999962, 28.868404008000027 ], [ -82.014938910999945, 28.868374257000028 ], [ -82.014679526999942, 28.868335156000057 ], [ -82.014514804999976, 28.86828722100006 ], [ -82.014443914999958, 28.868257364000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015409597999962, 28.86694626700006 ], [ -82.014566706999972, 28.866944111000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.073277178999945, 28.729741971000067 ], [ -82.07341946799994, 28.729642883000054 ], [ -82.073612836999985, 28.729521766000062 ], [ -82.073800078999966, 28.729408292000073 ], [ -82.074017945999969, 28.729277184000068 ], [ -82.074235825999949, 28.729163540000059 ], [ -82.074473509999962, 28.729038241000069 ], [ -82.074658385999953, 28.728956633000053 ], [ -82.074972014999958, 28.728816737000045 ], [ -82.075229521999972, 28.728703069000062 ], [ -82.075526544999946, 28.728562838000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08100871399995, 28.867940555000075 ], [ -82.081008481999959, 28.867940290000035 ], [ -82.080560042999934, 28.867428956000026 ], [ -82.07969163599995, 28.866427293000072 ], [ -82.079076540999949, 28.865737649000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078910575999942, 28.865862954000079 ], [ -82.07933972099994, 28.866360486000076 ], [ -82.079941615999985, 28.867039023000075 ], [ -82.080808479999973, 28.868032515000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.080808479999973, 28.868032515000039 ], [ -82.08100871399995, 28.867940555000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956598504999988, 28.913801931000023 ], [ -81.955007239999986, 28.914854843000057 ], [ -81.955114315999936, 28.915018431000078 ], [ -81.955396876999941, 28.915390222000042 ], [ -81.955492054999979, 28.915527041000075 ], [ -81.955518824999956, 28.915589501000056 ], [ -81.955495029999952, 28.915696577000062 ], [ -81.955465285999935, 28.915824473000043 ], [ -81.955434483999966, 28.91600470800006 ], [ -81.955378229999951, 28.916145048000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957051910999951, 28.913392307000038 ], [ -81.957056074999969, 28.91345298300007 ], [ -81.957051910999951, 28.913470829000062 ], [ -81.957024546999946, 28.913502952000044 ], [ -81.956980526999985, 28.913535075000027 ], [ -81.956598504999988, 28.913801931000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957557277999967, 28.913383090000025 ], [ -81.957568808999952, 28.913570886000059 ], [ -81.958038752999983, 28.913585757000078 ], [ -81.958023881999964, 28.913374580000038 ], [ -81.957557277999967, 28.913383090000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957557277999967, 28.913383090000025 ], [ -81.957051910999951, 28.913392307000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955378229999951, 28.916145048000033 ], [ -81.955148968999936, 28.916099848000044 ], [ -81.954919706999988, 28.916062611000029 ], [ -81.954690439999979, 28.916035991000058 ], [ -81.954452118999939, 28.916014675000042 ], [ -81.954219829999943, 28.916001325000025 ], [ -81.953999601999953, 28.916001250000079 ], [ -81.953774458999987, 28.916032944000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953774458999987, 28.916032944000051 ], [ -81.953978756999959, 28.916091413000061 ], [ -81.954380216999937, 28.916113088000031 ], [ -81.954580944999975, 28.916130388000056 ], [ -81.954705786999966, 28.916141199000037 ], [ -81.954943229999969, 28.916171432000056 ], [ -81.955197798999961, 28.916218903000072 ], [ -81.955353211999977, 28.916247387000055 ], [ -81.955353576999983, 28.916247454000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955378229999951, 28.916145048000033 ], [ -81.955353576999983, 28.916247454000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956598504999988, 28.913801931000023 ], [ -81.956514794999975, 28.913712979000024 ], [ -81.956482671999936, 28.913577349000036 ], [ -81.956487398999968, 28.913154022000072 ], [ -81.955291842999941, 28.913146325000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955291842999941, 28.913146325000071 ], [ -81.954850563999969, 28.913156588000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954850563999969, 28.913156588000049 ], [ -81.954465728999935, 28.913159153000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955291842999941, 28.913146325000071 ], [ -81.955319153999937, 28.913385666000067 ], [ -81.955294407999986, 28.913454194000053 ], [ -81.955241107999939, 28.913497976000031 ], [ -81.955166868999981, 28.91352653000007 ], [ -81.955126893999989, 28.913530337000054 ], [ -81.955058364999957, 28.91352653000007 ], [ -81.955014582999979, 28.913524626000026 ], [ -81.954889047999984, 28.913484981000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954889047999984, 28.913484981000067 ], [ -81.954550392999977, 28.913695358000041 ], [ -81.954207758999985, 28.91370302100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954889047999984, 28.913484981000067 ], [ -81.954853129999947, 28.913292563000027 ], [ -81.954850563999969, 28.913220727000066 ], [ -81.954850563999969, 28.913156588000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033075290999989, 28.927399933000061 ], [ -82.033050542999945, 28.927421983000045 ], [ -82.033000097999945, 28.927439116000073 ], [ -82.032957267999961, 28.927455296000062 ], [ -82.032933472999957, 28.927465765000079 ], [ -82.032913485999984, 28.927476235000029 ], [ -82.032893021999939, 28.927497324000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03736040299998, 28.800681847000078 ], [ -82.037360540999941, 28.801068767000061 ], [ -82.037360673999956, 28.801444199000059 ], [ -82.037351108999985, 28.801480057000049 ], [ -82.037329568999951, 28.80150959100007 ], [ -82.037303234999968, 28.801524364000045 ], [ -82.037272109999947, 28.801534917000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.097581709999986, 28.754202806000023 ], [ -82.097580285999982, 28.754530499000055 ], [ -82.097582833999979, 28.754624205000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.097582833999979, 28.754624205000027 ], [ -82.097879398999964, 28.754679531000079 ], [ -82.098261219999983, 28.754739963000077 ], [ -82.09856612699997, 28.754761939000048 ], [ -82.09874192999996, 28.754770179000047 ], [ -82.099064351999971, 28.754770147000045 ], [ -82.099144407999972, 28.75475670700007 ], [ -82.099177715999986, 28.754743267000038 ], [ -82.099226801999976, 28.754715218000058 ], [ -82.099348930999952, 28.754621721000035 ], [ -82.099408534999952, 28.754592504000072 ], [ -82.099444764999987, 28.754581985000073 ], [ -82.099481578999985, 28.754575557000067 ], [ -82.099517224999943, 28.754574389000027 ], [ -82.099895300999947, 28.754562702000044 ], [ -82.09995665799994, 28.754572636000034 ], [ -82.099985874999959, 28.754590166000071 ], [ -82.099992302999965, 28.754621137000072 ], [ -82.099974772999985, 28.754668469000023 ], [ -82.099450632999947, 28.75533329600006 ], [ -82.099392947999945, 28.755440426000064 ], [ -82.099305046999973, 28.755715117000079 ], [ -82.099233627, 28.755866197000046 ], [ -82.099151219999953, 28.755959593000057 ], [ -82.099024861999965, 28.756088697000052 ], [ -82.098791373999973, 28.756322185000045 ], [ -82.098549645999981, 28.756613358000038 ], [ -82.098475478999944, 28.756734222000034 ], [ -82.098387577999972, 28.756929253000067 ], [ -82.098302423999939, 28.757072092000044 ], [ -82.098173318999955, 28.757250641000041 ], [ -82.097975540999983, 28.757423697000036 ], [ -82.097893133999946, 28.757503357000076 ], [ -82.097824460999959, 28.757588512000041 ], [ -82.097753040999976, 28.757651691000035 ], [ -82.097604707999949, 28.757736845000068 ], [ -82.097497577999945, 28.757791783000073 ], [ -82.09737671399995, 28.757841228000075 ], [ -82.097319028999948, 28.757893419000027 ], [ -82.097277824999935, 28.757948357000032 ], [ -82.097206405999941, 28.758047246000046 ], [ -82.097082794999949, 28.758269746000053 ], [ -82.097005880999973, 28.758415332000027 ], [ -82.09695643699996, 28.758516968000038 ], [ -82.096879522999984, 28.758624098000041 ], [ -82.096703720999983, 28.758852091000051 ], [ -82.096511436999947, 28.759060857000065 ], [ -82.096346621999942, 28.759231165000074 ], [ -82.096217516999957, 28.759365764000052 ], [ -82.096198288999972, 28.759428943000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023593156999937, 28.816179543000032 ], [ -82.023603936999962, 28.816157248000025 ], [ -82.023612446999948, 28.816134203000047 ], [ -82.023618621999958, 28.816110588000072 ], [ -82.023622410999963, 28.81608658600004 ], [ -82.023623786999963, 28.816062384000077 ], [ -82.023625124999967, 28.815864675000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023366194999937, 28.817822929000044 ], [ -82.023358762999976, 28.817752665000057 ], [ -82.023346574999948, 28.817703152000036 ], [ -82.023311213999989, 28.817620773000044 ], [ -82.023249153999984, 28.817536434000033 ], [ -82.023083657999962, 28.817313652000053 ], [ -82.023035918999938, 28.817216583000061 ], [ -82.02299772799995, 28.817124288000059 ], [ -82.02298499799997, 28.817071775000045 ], [ -82.02297863299998, 28.816993801000024 ], [ -82.022999298999935, 28.816909229000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023289683999963, 28.818618181000033 ], [ -82.023279387999935, 28.818459388000065 ], [ -82.023265536999986, 28.818401631000029 ], [ -82.023258700999975, 28.818340041000056 ], [ -82.023263997999948, 28.818281613000067 ], [ -82.023274768999954, 28.818233143000043 ], [ -82.023344631999976, 28.818050424000035 ], [ -82.023368500999936, 28.817959720000033 ], [ -82.023371684999972, 28.817888112000048 ], [ -82.023366194999937, 28.817822929000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023366194999937, 28.817822929000044 ], [ -82.023776141999974, 28.817709310000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025659941999947, 28.815875340000048 ], [ -82.025671812999974, 28.81582501400004 ], [ -82.025682508999978, 28.81576958100004 ], [ -82.025690899999972, 28.815713840000058 ], [ -82.025696975999949, 28.815657868000073 ], [ -82.025700726999958, 28.815601737000065 ], [ -82.025702148999983, 28.815545523000026 ], [ -82.025701240999979, 28.815489301000071 ], [ -82.025698002999945, 28.815433146000032 ], [ -82.025695197999937, 28.815404903000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025695197999937, 28.815404903000058 ], [ -82.025642015999949, 28.815330445000029 ], [ -82.025568816999964, 28.815237219000039 ], [ -82.025543942999946, 28.815191729000048 ], [ -82.025536873999954, 28.815157271000032 ], [ -82.025547964999987, 28.815006285000038 ], [ -82.025556226999981, 28.81493688200004 ], [ -82.025569445999963, 28.814807992000055 ], [ -82.02558193599998, 28.814764093000065 ], [ -82.025612858999978, 28.814732286000037 ], [ -82.025663220999945, 28.814707547000069 ], [ -82.025731250999968, 28.814699014000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005033147999939, 28.799771989000078 ], [ -82.005041863999963, 28.799648287000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004885754999975, 28.799778167000056 ], [ -82.004884440999945, 28.799906862000057 ], [ -82.004886419999934, 28.800312462000079 ], [ -82.004884283999957, 28.800581461000036 ], [ -82.00489883399996, 28.801274459000069 ], [ -82.004906754999979, 28.801390835000063 ], [ -82.004946968999946, 28.801530975000048 ], [ -82.004998758999989, 28.801649179000037 ], [ -82.005061424999951, 28.801788874000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005061424999951, 28.801788874000067 ], [ -82.005145498, 28.801735443000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005061424999951, 28.801788874000067 ], [ -82.005120090999981, 28.801885253000023 ], [ -82.005171212999983, 28.801943918000063 ], [ -82.005273487999943, 28.802054462000058 ], [ -82.005351399999938, 28.802125782000076 ], [ -82.005447172999936, 28.802198494000038 ], [ -82.005539967999937, 28.80225652200005 ], [ -82.005620858999976, 28.802300163000041 ], [ -82.00576541199996, 28.802367987000025 ], [ -82.005947895999952, 28.802452668000058 ], [ -82.006578348999938, 28.802694838000036 ], [ -82.006642880999948, 28.802714113000036 ], [ -82.006740097999966, 28.802740094000058 ], [ -82.006871676999936, 28.802766912000038 ], [ -82.007029584999941, 28.802778597000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007029584999941, 28.802778597000042 ], [ -82.007138084999951, 28.802786322000031 ], [ -82.007242944999973, 28.802780322000046 ], [ -82.007354410999937, 28.802763560000074 ], [ -82.007477606999942, 28.802740932000063 ], [ -82.007548844999974, 28.802721656000074 ], [ -82.007616728999949, 28.802703218000033 ], [ -82.007677070999989, 28.802678914000069 ], [ -82.007819812999969, 28.802607644000034 ], [ -82.007990244999974, 28.802538921000064 ], [ -82.008100300999956, 28.802497889000051 ], [ -82.008210156999951, 28.802464701000076 ], [ -82.008458232999942, 28.802404768000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008450606999986, 28.802313265000066 ], [ -82.008303185999978, 28.802328516000046 ], [ -82.008040539999968, 28.802404768000031 ], [ -82.007907521999982, 28.802456450000079 ], [ -82.007644875999972, 28.802580995000028 ], [ -82.007494913999949, 28.802640302000043 ], [ -82.007372061999945, 28.802671651000026 ], [ -82.007110262999959, 28.802698763000024 ], [ -82.007033686999989, 28.802693822000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007029584999941, 28.802778597000042 ], [ -82.007033686999989, 28.802693822000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008458232999942, 28.802404768000031 ], [ -82.008450606999986, 28.802313265000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009233624999979, 28.802256025000077 ], [ -82.009180182999955, 28.802240586000039 ], [ -82.009059780999962, 28.802259725000056 ], [ -82.008863968999947, 28.802272608000067 ], [ -82.008591783999975, 28.802296624000064 ], [ -82.008494663999954, 28.802304793000076 ], [ -82.008450606999986, 28.802313265000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008458232999942, 28.802404768000031 ], [ -82.008516693, 28.802401379000059 ], [ -82.008575397999948, 28.802400653000063 ], [ -82.008891, 28.802389918000074 ], [ -82.009230165999952, 28.802368228000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009230165999952, 28.802368228000034 ], [ -82.009233624999979, 28.802256025000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981305760999987, 28.805684211000028 ], [ -81.981237975999989, 28.806192542000076 ], [ -81.98112155299998, 28.806804576000047 ], [ -81.98106900199997, 28.807075163000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980347533999975, 28.807054280000045 ], [ -81.981052289, 28.807158278000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979292868999948, 28.806859521000035 ], [ -81.979918939999948, 28.806950202000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979831098999966, 28.80748262000003 ], [ -81.979918939999948, 28.806950202000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973837677999938, 28.800472489000072 ], [ -81.973706866999976, 28.800208326000075 ], [ -81.973659332999944, 28.800065726000071 ], [ -81.973654580999948, 28.799961153000027 ], [ -81.973678346999975, 28.799866086000065 ], [ -81.973759152999946, 28.799775773000079 ], [ -81.97449116699994, 28.79944779300007 ], [ -81.974937979999936, 28.799276673000065 ], [ -81.976145156999962, 28.798904707000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978379385999972, 28.798501153000075 ], [ -81.978429815999959, 28.798556485000063 ], [ -81.97845132599997, 28.798615147000078 ], [ -81.978502166999988, 28.798851751000029 ], [ -81.978578426999945, 28.799070757000038 ], [ -81.978629268999953, 28.79926043200004 ], [ -81.978660554999976, 28.799563520000049 ], [ -81.978650777999974, 28.799935048000066 ], [ -81.978656643999955, 28.800208805000068 ], [ -81.978703573999951, 28.800541225000075 ], [ -81.978758324999944, 28.800703524000028 ], [ -81.978836541999954, 28.800863867000032 ], [ -81.978910846999952, 28.80099292400007 ], [ -81.979079012999989, 28.801213885000038 ], [ -81.979241310999953, 28.80136445200003 ], [ -81.979434896999976, 28.801507197000035 ], [ -81.979693010999938, 28.801691005000066 ], [ -81.980080181999938, 28.801986272000079 ], [ -81.980248346999986, 28.802172036000059 ], [ -81.980398913999977, 28.802410595000026 ], [ -81.980857440999955, 28.803292040000031 ], [ -81.981055494999964, 28.803689190000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979918939999948, 28.806950202000053 ], [ -81.980055438999955, 28.806245516000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980055438999955, 28.806245516000047 ], [ -81.980190341999958, 28.80554907100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980190341999958, 28.80554907100003 ], [ -81.980380544999946, 28.804567131000056 ], [ -81.980394804999946, 28.804434038000068 ], [ -81.980371037999987, 28.804277178000063 ], [ -81.979857677999973, 28.803473865000058 ], [ -81.979738844999986, 28.803326512000069 ], [ -81.979638484999953, 28.803230197000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979638484999953, 28.803230197000062 ], [ -81.979633036999985, 28.803224968000052 ], [ -81.979529698999954, 28.803150638000034 ], [ -81.979182704999971, 28.802941492000059 ], [ -81.979030598999941, 28.802870192000057 ], [ -81.978980379999939, 28.802853452000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978980379999939, 28.802853452000079 ], [ -81.978845218999936, 28.802808399000071 ], [ -81.978502978999984, 28.802770372000055 ], [ -81.978129210999953, 28.80275948600007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978129210999953, 28.80275948600007 ], [ -81.978013385999986, 28.802756112000054 ], [ -81.97779473199995, 28.802727592000053 ], [ -81.97760459899996, 28.802675305000037 ], [ -81.977404958999955, 28.80258499200005 ], [ -81.977306430999988, 28.80255255000003 ], [ -81.97684881899994, 28.802480419000062 ], [ -81.976601645999949, 28.802399612000045 ], [ -81.976330705999942, 28.802266519000057 ], [ -81.976247401999956, 28.802226533000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976247401999956, 28.802226533000066 ], [ -81.976093038999977, 28.802152439000054 ], [ -81.975803085999985, 28.802062125000077 ], [ -81.975441832999934, 28.801948045000074 ], [ -81.975056812999981, 28.801795939000044 ], [ -81.974719325999956, 28.80162481900004 ], [ -81.974358072999962, 28.801387152000075 ], [ -81.974196459999973, 28.801197019000028 ], [ -81.974156041999947, 28.801115399000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974156041999947, 28.801115399000025 ], [ -81.973837677999938, 28.800472489000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977349102999938, 28.798524484000041 ], [ -81.977513296999973, 28.798524631000078 ], [ -81.977878142999941, 28.79842915200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976145156999962, 28.798904707000077 ], [ -81.976926414, 28.798663980000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981225609999967, 28.80706415800006 ], [ -81.981393324999942, 28.806146365000075 ], [ -81.981449379999958, 28.805859569000063 ], [ -81.981487581999943, 28.805648721000068 ], [ -81.981525774999966, 28.805474543000059 ], [ -81.981560095999953, 28.805351954000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98119279499997, 28.807223243000067 ], [ -81.981684383999948, 28.807302978000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980189682999935, 28.807545284000071 ], [ -81.979831098999966, 28.80748262000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979831098999966, 28.80748262000003 ], [ -81.979486819999977, 28.807441235000056 ], [ -81.979425239999955, 28.807409383000049 ], [ -81.979370029999984, 28.807358420000071 ], [ -81.979331807999984, 28.807296840000049 ], [ -81.979314819999956, 28.807209779000061 ], [ -81.979292868999948, 28.806859521000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979292868999948, 28.806859521000035 ], [ -81.979211181999972, 28.806642817000068 ], [ -81.979150139999945, 28.806412521000027 ], [ -81.979114068999934, 28.806121184000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979114068999934, 28.806121184000062 ], [ -81.980055438999955, 28.806245516000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979114068999934, 28.806121184000062 ], [ -81.979086323, 28.805788226000061 ], [ -81.979089096999985, 28.805721635000054 ], [ -81.979102970999975, 28.805643945000043 ], [ -81.979191758999946, 28.805394227000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979191758999946, 28.805394227000079 ], [ -81.980190341999958, 28.80554907100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979191758999946, 28.805394227000079 ], [ -81.979517854999983, 28.804549885000029 ], [ -81.979527897999958, 28.80445949600005 ], [ -81.97952025099994, 28.804396073000078 ], [ -81.979497894999952, 28.804344481000044 ], [ -81.97945834099994, 28.804279131000044 ], [ -81.979029084999979, 28.803682821000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978704290999985, 28.803924555000037 ], [ -81.979029084999979, 28.803682821000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979029084999979, 28.803682821000052 ], [ -81.979638484999953, 28.803230197000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978980379999939, 28.802853452000079 ], [ -81.979103446999943, 28.802554952000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978129210999953, 28.80275948600007 ], [ -81.978147957999965, 28.802620748000038 ], [ -81.978191747999972, 28.802468941000029 ], [ -81.978253054999982, 28.802349247000052 ], [ -81.978387345999977, 28.802197440000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978387345999977, 28.802197440000043 ], [ -81.978658393999979, 28.801893993000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976247401999956, 28.802226533000066 ], [ -81.976545012999964, 28.801608707000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976545012999964, 28.801608707000071 ], [ -81.976623475999986, 28.801254818000075 ], [ -81.976640258999964, 28.801103770000054 ], [ -81.976640258999964, 28.800966150000079 ], [ -81.976626832999955, 28.800811746000079 ], [ -81.976599979999946, 28.800667412000053 ], [ -81.97655634399996, 28.800516364000032 ], [ -81.976428792999968, 28.800244479000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976428792999968, 28.800244479000071 ], [ -81.976307954999982, 28.799969237000028 ], [ -81.976237465999986, 28.799751058000027 ], [ -81.976210612999978, 28.79961679400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976210612999978, 28.79961679400003 ], [ -81.976193829999943, 28.799435537000079 ], [ -81.976173690999985, 28.799227427000062 ], [ -81.976145156999962, 28.798904707000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975751154999955, 28.801327566000055 ], [ -81.976545012999964, 28.801608707000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974878268999987, 28.800746298000035 ], [ -81.975007681999955, 28.800937195000074 ], [ -81.975134419999961, 28.801051710000024 ], [ -81.975266436999959, 28.80114628900003 ], [ -81.97541421699998, 28.801215253000066 ], [ -81.975751154999955, 28.801327566000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976545012999964, 28.801608707000071 ], [ -81.977205307999952, 28.801820165000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977205307999952, 28.801820165000038 ], [ -81.977479192999965, 28.801898981000079 ], [ -81.977758989999984, 28.801965974000041 ], [ -81.977961941, 28.802023116000044 ], [ -81.978147157999956, 28.802092080000079 ], [ -81.978387345999977, 28.802197440000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975751154999955, 28.801327566000055 ], [ -81.975905333999947, 28.801005694000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974156041999947, 28.801115399000025 ], [ -81.974878268999987, 28.800746298000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976428792999968, 28.800244479000071 ], [ -81.977092097999957, 28.799993767000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974878268999987, 28.800746298000035 ], [ -81.975651329999948, 28.800424126000053 ], [ -81.975803693999978, 28.800389377000045 ], [ -81.976144246999979, 28.800336571000059 ], [ -81.976428792999968, 28.800244479000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973837677999938, 28.800472489000072 ], [ -81.974564587999964, 28.800120844000048 ], [ -81.974868167999944, 28.799995591000027 ], [ -81.975243926999951, 28.799849109000036 ], [ -81.97551141699995, 28.799764191000065 ], [ -81.975721586999953, 28.799706872000058 ], [ -81.976210612999978, 28.79961679400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977205307999952, 28.801820165000038 ], [ -81.977311201999953, 28.80157041700005 ], [ -81.977376316999937, 28.801379897000061 ], [ -81.977426960999935, 28.801203846000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977426960999935, 28.801203846000078 ], [ -81.97741007999997, 28.800960270000076 ], [ -81.977393197999959, 28.800834864000024 ], [ -81.977352199999984, 28.800632286000052 ], [ -81.977308790999984, 28.800429708000024 ], [ -81.977275026999962, 28.800309125000069 ], [ -81.977092097999957, 28.799993767000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977092097999957, 28.799993767000046 ], [ -81.977014569999938, 28.799848501000042 ], [ -81.976975982999988, 28.799735153000029 ], [ -81.97694463199997, 28.799616983000078 ], [ -81.976927749999959, 28.799510870000063 ], [ -81.976922926999976, 28.799431286000072 ], [ -81.976927749999959, 28.799030952000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976927749999959, 28.799030952000066 ], [ -81.976926414, 28.798663980000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976927749999959, 28.799030952000066 ], [ -81.97700982899994, 28.799052959000051 ], [ -81.977645088999964, 28.799021924000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977426960999935, 28.801203846000078 ], [ -81.97801702199996, 28.801198377000048 ], [ -81.978061108999952, 28.801182269000037 ], [ -81.978094173999978, 28.801152595000076 ], [ -81.978121303999956, 28.801119530000051 ], [ -81.978135716999986, 28.801059334000058 ], [ -81.978142295999987, 28.801000384000076 ], [ -81.978120992999948, 28.800812918000076 ], [ -81.978057083999943, 28.800501896000071 ], [ -81.978010217999952, 28.800233480000031 ], [ -81.97797613299997, 28.800109923000036 ], [ -81.977899442999956, 28.799943761000065 ], [ -81.977711977999945, 28.799654042000043 ], [ -81.977639547999956, 28.799411189000068 ], [ -81.977642297999978, 28.799181485000076 ], [ -81.977645088999964, 28.799021924000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038380822999954, 28.610670973000026 ], [ -82.038403320999976, 28.611524269000029 ], [ -82.038467399999945, 28.612004857000045 ], [ -82.038551502999951, 28.612080950000063 ], [ -82.03893597299998, 28.612080950000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97697153699994, 28.790721935000079 ], [ -81.977009423999959, 28.790690042000051 ], [ -81.977109177999978, 28.790660308000042 ], [ -81.977225171999976, 28.790628298000058 ], [ -81.977455450999969, 28.790563160000033 ], [ -81.977680224999972, 28.790515452000079 ], [ -81.977939861999971, 28.790476002000048 ], [ -81.978334362999988, 28.790420038000036 ], [ -81.978697670999964, 28.790358569000034 ], [ -81.978910517999964, 28.790315449000047 ], [ -81.979153640999982, 28.790262238000025 ], [ -81.979380249999963, 28.790203521000024 ], [ -81.979856403999975, 28.790054895000026 ], [ -81.980361915999936, 28.789893425000059 ], [ -81.980685773999937, 28.789800763000073 ], [ -81.980938070999969, 28.789740212000027 ], [ -81.981210528999952, 28.789689937000048 ], [ -81.981494458999975, 28.789646103000052 ], [ -81.981575153999984, 28.789655069000048 ], [ -81.981696160999945, 28.789726607000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982146250999961, 28.791623713000035 ], [ -81.982084190999956, 28.79141684800004 ], [ -81.981987653999965, 28.790685925000048 ], [ -81.981992177999985, 28.790607414000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981691146999935, 28.791782309000041 ], [ -81.982146250999961, 28.791623713000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981691146999935, 28.791782309000041 ], [ -81.98152246099994, 28.791127997000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98152246099994, 28.791127997000046 ], [ -81.981329133999964, 28.790321680000034 ], [ -81.98127726599995, 28.790232089000028 ], [ -81.981187673999955, 28.790222658000062 ], [ -81.981069791999971, 28.790246235000041 ], [ -81.980617121999956, 28.790373548000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980900040999984, 28.791420346000052 ], [ -81.980791589999967, 28.791080844000078 ], [ -81.980673705999948, 28.790581022000026 ], [ -81.980617121999956, 28.790373548000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980900040999984, 28.791420346000052 ], [ -81.981060360999948, 28.791321325000069 ], [ -81.981154666999942, 28.791250595000065 ], [ -81.981263118999948, 28.791212873000063 ], [ -81.981381001999978, 28.791170435000026 ], [ -81.98152246099994, 28.791127997000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980617121999956, 28.790373548000048 ], [ -81.979881534999947, 28.790599883000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980235182999934, 28.791679688000045 ], [ -81.980551107999986, 28.791580667000062 ], [ -81.980749150999941, 28.791495791000045 ], [ -81.980900040999984, 28.791420346000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980235182999934, 28.791679688000045 ], [ -81.980070146999935, 28.791151574000025 ], [ -81.979919256999949, 28.790703620000045 ], [ -81.979881534999947, 28.790599883000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979881534999947, 28.790599883000027 ], [ -81.979801373999976, 28.790331110000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979471302999968, 28.791707980000069 ], [ -81.979721213999937, 28.791731556000059 ], [ -81.979971124999963, 28.791722126000025 ], [ -81.980131445999973, 28.791679688000045 ], [ -81.980235182999934, 28.791679688000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979471302999968, 28.791707980000069 ], [ -81.979424149999943, 28.791377908000072 ], [ -81.97930626699997, 28.791061983000077 ], [ -81.979221391999943, 28.790793210000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97880172899994, 28.791707980000069 ], [ -81.97916480799995, 28.791707980000069 ], [ -81.979471302999968, 28.791707980000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97880172899994, 28.791707980000069 ], [ -81.978697992999969, 28.791396770000063 ], [ -81.978570678999972, 28.791038406000041 ], [ -81.978537671999959, 28.790939385000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978537671999959, 28.790939385000058 ], [ -81.978825305999976, 28.790878086000077 ], [ -81.979013917999964, 28.790821502000028 ], [ -81.979221391999943, 28.790793210000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979221391999943, 28.790793210000061 ], [ -81.979494878999958, 28.790717766000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978537671999959, 28.790939385000058 ], [ -81.978443365999965, 28.790665897000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978820590999987, 28.792009760000042 ], [ -81.978815874999952, 28.791797571000075 ], [ -81.97880172899994, 28.791707980000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981644890999974, 28.789447850000045 ], [ -81.981584120999969, 28.78949168500003 ], [ -81.981529326999976, 28.789513602000056 ], [ -81.981201562999956, 28.789556441000059 ], [ -81.981090979999976, 28.789566403000038 ], [ -81.980970434999961, 28.789586328000041 ], [ -81.980849078999938, 28.789610852000067 ], [ -81.980748159999962, 28.789634705000026 ], [ -81.980649075999963, 28.789660394000066 ], [ -81.98048210099995, 28.789709936000065 ], [ -81.980081177999978, 28.789833791000035 ], [ -81.97957566599996, 28.789997096000036 ], [ -81.979179329999965, 28.790116364000028 ], [ -81.978938958999947, 28.790179668000064 ], [ -81.978692165999973, 28.79023287900003 ], [ -81.978440786999954, 28.79027233000005 ], [ -81.978027018999967, 28.790334716000075 ], [ -81.977815088999989, 28.790363157000058 ], [ -81.977652700999954, 28.790389762000075 ], [ -81.977507744999969, 28.790420038000036 ], [ -81.97740315599998, 28.79044297400003 ], [ -81.977320585999962, 28.790464993000057 ], [ -81.977249025999981, 28.790487929000051 ], [ -81.977165537999952, 28.790512700000079 ], [ -81.977037700999972, 28.790552320000074 ], [ -81.976972874999944, 28.790564077000056 ], [ -81.976915992999977, 28.790555820000066 ], [ -81.976831427999969, 28.790512078000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981950540999946, 28.792299352000043 ], [ -81.981719123999937, 28.791915113000073 ], [ -81.981691146999935, 28.791782309000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98150517299996, 28.792648660000054 ], [ -81.981736589999969, 28.792478372000062 ], [ -81.981863213999986, 28.792382313000076 ], [ -81.981950540999946, 28.792299352000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981950540999946, 28.792299352000043 ], [ -81.982295482999973, 28.792159629000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980623169999944, 28.792949938000049 ], [ -81.98150517299996, 28.792648660000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980265128999974, 28.793006701000024 ], [ -81.980623169999944, 28.792949938000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981575034999935, 28.795006490000048 ], [ -81.981474608999974, 28.794561122000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981474608999974, 28.794561122000061 ], [ -81.981382914999983, 28.794220546000076 ], [ -81.981291221999982, 28.794072091000032 ], [ -81.981125300999963, 28.793910536000055 ], [ -81.980955012999971, 28.793753347000063 ], [ -81.980924447999939, 28.793670386000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980924447999939, 28.793670386000031 ], [ -81.980767259999936, 28.793487 ], [ -81.980671198999971, 28.793307979000076 ], [ -81.980636268999945, 28.793089662000057 ], [ -81.980623169999944, 28.792949938000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980924447999939, 28.793670386000031 ], [ -81.98128685599994, 28.793521930000054 ], [ -81.981885045999945, 28.79324685000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982356612, 28.794133219000059 ], [ -81.982164491999981, 28.79388870400004 ], [ -81.982059699999979, 28.793679119000046 ], [ -81.981950540999946, 28.793364742000051 ], [ -81.981885045999945, 28.79324685000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981885045999945, 28.79324685000006 ], [ -81.98150517299996, 28.792648660000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981474608999974, 28.794561122000061 ], [ -81.981972372999962, 28.794329705000052 ], [ -81.982356612, 28.794133219000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982356612, 28.794133219000059 ], [ -81.982758315999945, 28.79391490200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981963876999941, 28.797270898000079 ], [ -81.981891847999975, 28.796916755000041 ], [ -81.981891847999975, 28.796592623000038 ], [ -81.981939343999954, 28.796107650000067 ], [ -81.98199305199995, 28.795995758000061 ], [ -81.982095992999973, 28.795888341000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982095992999973, 28.795888341000079 ], [ -81.982409290999954, 28.795686936000038 ], [ -81.982659928999965, 28.795512384000062 ], [ -81.982959799999946, 28.795324405000031 ], [ -81.983116448999965, 28.795248318000063 ], [ -81.98324176899996, 28.79520356200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98324176899996, 28.79520356200004 ], [ -81.983519260999969, 28.795190134000052 ], [ -81.984172710999985, 28.79520356200004 ], [ -81.984450203999984, 28.795257270000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982095992999973, 28.795888341000079 ], [ -81.981876683999985, 28.795633227000053 ], [ -81.981737937999981, 28.795458676000067 ], [ -81.981760316999953, 28.795364686000028 ], [ -81.981836402999988, 28.795293075000075 ], [ -81.982216836999953, 28.795029010000064 ], [ -81.982543561999989, 28.794823128000075 ], [ -81.982709161999935, 28.794755993000024 ], [ -81.982852383999955, 28.794729139000026 ], [ -81.982964275999962, 28.794733615000041 ], [ -81.983111973999939, 28.794836555000074 ], [ -81.983188059999975, 28.795024534000049 ], [ -81.98324176899996, 28.79520356200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982146250999961, 28.791623713000035 ], [ -81.982403246999979, 28.791498482000065 ], [ -81.982588570999951, 28.791465778000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982588570999951, 28.791465778000031 ], [ -81.982539514999985, 28.791215045000058 ], [ -81.982534063999935, 28.791046073000075 ], [ -81.982512260999954, 28.790849847000061 ], [ -81.982539514999985, 28.790768086000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982539514999985, 28.790768086000071 ], [ -81.982817500999943, 28.790795340000045 ], [ -81.98306278299998, 28.790811692000034 ], [ -81.983220853999967, 28.79086619900005 ], [ -81.983493389999978, 28.790909805000069 ], [ -81.983695065999939, 28.790975213000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983695065999939, 28.790975213000024 ], [ -81.98380407999997, 28.790735382000037 ], [ -81.983902192999949, 28.790441043000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982539514999985, 28.790768086000071 ], [ -81.982544964999988, 28.790250268000079 ], [ -81.982534063999935, 28.790179409000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982534063999935, 28.790179409000075 ], [ -81.982517711999947, 28.789895972000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982534063999935, 28.790179409000075 ], [ -81.982730289999949, 28.790184860000068 ], [ -81.983073684999965, 28.790233916000034 ], [ -81.983400726999946, 28.790304775000038 ], [ -81.983613304999949, 28.790348381000058 ], [ -81.98376047499994, 28.790391987000078 ], [ -81.983902192999949, 28.790441043000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983902192999949, 28.790441043000044 ], [ -81.984027559999959, 28.790179409000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983695065999939, 28.790975213000024 ], [ -81.984033008999972, 28.791095129000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976145156999962, 28.798904707000077 ], [ -81.976037874999975, 28.798597856000072 ], [ -81.976026604999959, 28.798513335000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976026604999959, 28.798513335000052 ], [ -81.97584629399995, 28.798113270000044 ], [ -81.975795581999989, 28.797983672000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975795581999989, 28.797983672000043 ], [ -81.975158857999986, 28.79677220700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975793061, 28.796502167000028 ], [ -81.97593081499997, 28.79642285400007 ], [ -81.976116760999957, 28.796321429000045 ], [ -81.976257628999974, 28.796248178000042 ], [ -81.976330879999978, 28.796242543000062 ], [ -81.976471747999938, 28.796287621000033 ], [ -81.977085932999955, 28.796687686000041 ], [ -81.977316955999981, 28.796924344000047 ], [ -81.977593057999968, 28.797228619000066 ], [ -81.977733925999985, 28.797527259000049 ], [ -81.977773368999976, 28.797707570000057 ], [ -81.977728290999949, 28.797859708000033 ], [ -81.977570518999983, 28.797949863000042 ], [ -81.976026604999959, 28.798513335000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975795581999989, 28.797983672000043 ], [ -81.975553288999947, 28.79812454000006 ], [ -81.975085606999983, 28.798259773000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975085606999983, 28.798259773000041 ], [ -81.974431978999974, 28.798468258000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974431978999974, 28.798468258000071 ], [ -81.973569866999981, 28.798744359000068 ], [ -81.973293765999983, 28.798834515000067 ], [ -81.973164166999936, 28.798817610000071 ], [ -81.973062741999968, 28.798738724000032 ], [ -81.972983855999985, 28.798614760000078 ], [ -81.972927508999987, 28.798468258000071 ], [ -81.972899334999966, 28.79834992900004 ], [ -81.972893700999975, 28.798248504000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972893700999975, 28.798248504000071 ], [ -81.974110799999949, 28.797882247000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974431978999974, 28.798468258000071 ], [ -81.974110799999949, 28.797882247000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974110799999949, 28.797882247000075 ], [ -81.973800890999939, 28.797279332000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972893700999975, 28.798248504000071 ], [ -81.972865526999954, 28.798056923000047 ], [ -81.97287679599998, 28.797893516000045 ], [ -81.97288243099996, 28.797747013000048 ], [ -81.972904969999945, 28.797628684000074 ], [ -81.972950047999973, 28.797549798000034 ], [ -81.973062741999968, 28.797504720000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973062741999968, 28.797504720000063 ], [ -81.973800890999939, 28.797279332000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973800890999939, 28.797279332000073 ], [ -81.974200955999947, 28.797053943000037 ], [ -81.974437613999953, 28.796980691000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974437613999953, 28.796980691000044 ], [ -81.974679906999938, 28.796924344000047 ], [ -81.974860217999947, 28.796845458000064 ], [ -81.975158857999986, 28.79677220700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973062741999968, 28.797504720000063 ], [ -81.972983855999985, 28.797279332000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975085606999983, 28.798259773000041 ], [ -81.974437613999953, 28.796980691000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975158857999986, 28.79677220700006 ], [ -81.97550257599994, 28.79664260800007 ], [ -81.975744868999982, 28.796529914000075 ], [ -81.975793061, 28.796502167000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976438517999952, 28.797697780000078 ], [ -81.976058565999949, 28.796999825000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976058565999949, 28.796999825000057 ], [ -81.975793061, 28.796502167000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976157683999986, 28.797821677000059 ], [ -81.976438517999952, 28.797697780000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976438517999952, 28.797697780000078 ], [ -81.976942366999936, 28.797495415000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976942366999936, 28.797495415000071 ], [ -81.977252110999984, 28.797388037000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976942366999936, 28.797495415000071 ], [ -81.976764780999986, 28.797272399000065 ], [ -81.976578934999964, 28.797107203000053 ], [ -81.976450907999947, 28.796999825000057 ], [ -81.976335269999936, 28.796921357000031 ], [ -81.976256801999966, 28.796921357000031 ], [ -81.976137034999965, 28.796979176000036 ], [ -81.976058565999949, 28.796999825000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040188859999944, 28.926295819000075 ], [ -82.038717162999944, 28.926272158000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040188859999944, 28.926295819000075 ], [ -82.040188818, 28.927333334000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040188818, 28.927333334000025 ], [ -82.040168837999943, 28.927412530000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038698232999934, 28.925207425000053 ], [ -82.038717162999944, 28.926272158000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03869823399998, 28.923967603000051 ], [ -82.038698232999934, 28.925207425000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038698232999934, 28.925207425000053 ], [ -82.03751402499995, 28.925208306000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03751402499995, 28.925208306000059 ], [ -82.037407564999967, 28.925108456000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03869823399998, 28.923967603000051 ], [ -82.037321005999956, 28.923946543000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008614441999953, 28.870707737000032 ], [ -82.008613197999978, 28.871557710000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008613197999978, 28.871557710000047 ], [ -82.008528502, 28.871555733000037 ], [ -82.008477427999935, 28.87158682200004 ], [ -82.008450779999976, 28.871630495000034 ], [ -82.008453740999983, 28.872335177000025 ], [ -82.008478865999962, 28.872380579000037 ], [ -82.008522580999966, 28.872404757000027 ], [ -82.011794785999939, 28.872394377000035 ], [ -82.011841470999968, 28.872355063000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011845007999966, 28.870731444000057 ], [ -82.011780607999981, 28.870698021000067 ], [ -82.01140780999998, 28.870698021000067 ], [ -82.008614441999953, 28.870707737000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011861505999946, 28.871545365000031 ], [ -82.008613197999978, 28.871557710000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982703609999987, 28.959903989000054 ], [ -81.982894342999941, 28.959666795000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03893597299998, 28.612080950000063 ], [ -82.038968012999987, 28.612004857000045 ], [ -82.038972016999935, 28.611800607000077 ], [ -82.038984031999973, 28.611532278000027 ], [ -82.038988036999967, 28.611275965000061 ], [ -82.039112188999979, 28.611239921000049 ], [ -82.039396536999959, 28.611235916000055 ], [ -82.040145453999969, 28.611247930000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040145453999969, 28.611247930000047 ], [ -82.040141448999975, 28.612297215000069 ], [ -82.040121424999938, 28.613010088000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040121424999938, 28.613010088000067 ], [ -82.039060124999935, 28.613014093000061 ], [ -82.038968012999987, 28.612982053000053 ], [ -82.038931967999986, 28.612873921000073 ], [ -82.03893597299998, 28.612080950000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03836215299998, 28.609962884000026 ], [ -82.038380822999954, 28.610670973000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038380822999954, 28.610670973000026 ], [ -82.037438139999949, 28.610667219000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03741811499998, 28.610290759000065 ], [ -82.037069688999964, 28.610302773000058 ], [ -82.036937526999964, 28.610458965000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037438139999949, 28.610667219000049 ], [ -82.03741811499998, 28.610290759000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113993479999976, 28.688150054000062 ], [ -82.114147978999938, 28.688276188000032 ], [ -82.114375099999961, 28.688360698000054 ], [ -82.114570528999934, 28.68843464400004 ], [ -82.114866313999983, 28.68843464400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114866313999983, 28.68843464400004 ], [ -82.114876877999961, 28.688181114000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114876877999961, 28.688181114000031 ], [ -82.114887440999951, 28.687806101000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114887440999951, 28.687806101000035 ], [ -82.114887440999951, 28.687409960000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114887440999951, 28.687409960000025 ], [ -82.114898004999986, 28.687124739000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114043833999972, 28.687334709000027 ], [ -82.114329023999971, 28.687209329000041 ], [ -82.114524751999966, 28.687138534000042 ], [ -82.114712150999935, 28.687130205000074 ], [ -82.114898004999986, 28.687124739000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114898004999986, 28.687124739000069 ], [ -82.11660696499996, 28.687163521000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116581977999942, 28.687425880000035 ], [ -82.11660696499996, 28.687163521000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11658614299995, 28.687833993000027 ], [ -82.116581977999942, 28.687425880000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116577813999982, 28.688217120000047 ], [ -82.11658614299995, 28.687833993000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116590306999967, 28.688425342000073 ], [ -82.116577813999982, 28.688217120000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114876877999961, 28.688181114000031 ], [ -82.116577813999982, 28.688217120000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114887440999951, 28.687806101000035 ], [ -82.11658614299995, 28.687833993000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114887440999951, 28.687409960000025 ], [ -82.116581977999942, 28.687425880000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114866313999983, 28.68843464400004 ], [ -82.116590306999967, 28.688425342000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979004677999967, 28.798123244000067 ], [ -81.979430849999972, 28.798105237000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979430849999972, 28.798105237000073 ], [ -81.980215856999962, 28.797986200000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980215856999962, 28.797986200000025 ], [ -81.980524947999982, 28.798013880000042 ], [ -81.980935532, 28.798023106000073 ], [ -81.981032410999944, 28.798023106000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981032410999944, 28.798023106000073 ], [ -81.981304595999973, 28.797972360000074 ], [ -81.981438381999965, 28.797898547000045 ], [ -81.981484514999977, 28.797755535000078 ], [ -81.981549100999985, 28.797547937000047 ], [ -81.981562940999936, 28.797404924000034 ], [ -81.981715178999934, 28.797321885000031 ], [ -81.981867417999979, 28.797271139000031 ], [ -81.981963876999941, 28.797270898000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979371622999963, 28.799822293000034 ], [ -81.979430849999972, 28.798105237000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980202016999954, 28.799434776000055 ], [ -81.980174337999983, 28.799231791000068 ], [ -81.980215856999962, 28.797986200000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981009344999961, 28.798950379000075 ], [ -81.981032410999944, 28.798023106000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978997945999936, 28.799808453000026 ], [ -81.979371622999963, 28.799822293000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979371622999963, 28.799822293000034 ], [ -81.979569994999963, 28.799780773000066 ], [ -81.979832952999971, 28.799656214000038 ], [ -81.980202016999954, 28.799434776000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980202016999954, 28.799434776000055 ], [ -81.980363482999962, 28.799388643000043 ], [ -81.981009344999961, 28.798950379000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981009344999961, 28.798950379000075 ], [ -81.981359954999959, 28.798719715000061 ], [ -81.981701339999972, 28.798410623000052 ], [ -81.981941230999951, 28.797847801000046 ], [ -81.982038109999962, 28.797487964000027 ], [ -81.981963876999941, 28.797270898000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979839917999982, 28.792381223000064 ], [ -81.979859513999941, 28.792839774000072 ], [ -81.979773290999958, 28.792965189000029 ], [ -81.979616520999969, 28.793023978000065 ], [ -81.979240274999938, 28.793008301000043 ], [ -81.978428992999966, 28.792969109000069 ], [ -81.978283980999947, 28.792835854000032 ], [ -81.978225191999968, 28.792667327000061 ], [ -81.978197756999975, 28.792490962000045 ], [ -81.978272222999976, 28.792392981000035 ], [ -81.978428992999966, 28.792326354000068 ], [ -81.978683742999976, 28.792318515000034 ], [ -81.979839917999982, 28.792381223000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979839917999982, 28.792381223000064 ], [ -81.980208325999968, 28.792334192000055 ], [ -81.980517945999964, 28.792275403000076 ], [ -81.980800130999967, 28.792185261000043 ], [ -81.98118029699998, 28.792028491000053 ], [ -81.981580058999953, 28.791828610000039 ], [ -81.981691146999935, 28.791782309000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04797580099995, 28.927411724000024 ], [ -82.047947509999972, 28.927769410000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048856181999952, 28.92777578700003 ], [ -82.048576872999945, 28.92771889100004 ], [ -82.048297563999938, 28.927780960000064 ], [ -82.048082153999985, 28.927852600000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047019984999963, 28.92774475300007 ], [ -82.047133776999942, 28.927734408000049 ], [ -82.047288948999949, 28.927729236000062 ], [ -82.047469981999939, 28.927765442000066 ], [ -82.047666532999983, 28.927811994000024 ], [ -82.047815301999947, 28.927855335000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04584800899994, 28.92838755300005 ], [ -82.045876887999952, 28.928189578000058 ], [ -82.04603205899997, 28.928024062000077 ], [ -82.046244126999966, 28.92786889000007 ], [ -82.046414815999981, 28.927786132000051 ], [ -82.046569986999941, 28.927760270000078 ], [ -82.047019984999963, 28.92774475300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047934723999958, 28.92801625900006 ], [ -82.047883772999967, 28.928184406000071 ], [ -82.047790669999983, 28.928608541000074 ], [ -82.04767170599996, 28.928810264000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047019984999963, 28.92774475300007 ], [ -82.04705101899998, 28.92792578600006 ], [ -82.047133776999942, 28.928044751000073 ], [ -82.047294120999936, 28.928163716000029 ], [ -82.047392396999953, 28.928282681000042 ], [ -82.047454464999987, 28.928375784000025 ], [ -82.047475154999972, 28.928525783000055 ], [ -82.047537222999949, 28.928706817000034 ], [ -82.04767170599996, 28.928810264000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04767170599996, 28.928810264000049 ], [ -82.047676877999947, 28.928949919000047 ], [ -82.047713084999941, 28.929120607000073 ], [ -82.047801014999948, 28.929229228000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047801014999948, 28.929229228000054 ], [ -82.047568257999956, 28.929353365000054 ], [ -82.047319982999966, 28.929430951000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047319982999966, 28.929430951000029 ], [ -82.047371706999968, 28.929643018000036 ], [ -82.047382051999989, 28.929839569000023 ], [ -82.047340672999951, 28.930041292000055 ], [ -82.047232052999959, 28.930170602000032 ], [ -82.047082053999986, 28.930248187000075 ], [ -82.046916536999959, 28.930284394000068 ], [ -82.046756192999965, 28.930274049000047 ], [ -82.046611366999969, 28.93021198100007 ], [ -82.046492401999956, 28.93014474000006 ], [ -82.046414815999981, 28.930056809000064 ], [ -82.046363091999979, 28.929963706000024 ], [ -82.046342401999937, 28.929829224000059 ], [ -82.046363091999979, 28.929658536000034 ], [ -82.04640447099996, 28.929539571000078 ], [ -82.046518263999985, 28.92937405400005 ], [ -82.046580331999962, 28.929280951000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047319982999966, 28.929430951000029 ], [ -82.047071708999965, 28.929425778000052 ], [ -82.046813089999944, 28.929399916000079 ], [ -82.046580331999962, 28.929280951000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046580331999962, 28.929280951000067 ], [ -82.046373436999943, 28.929167159000031 ], [ -82.046275160999983, 28.929037849000053 ], [ -82.046187230999976, 28.928924057000074 ], [ -82.046130334999987, 28.928758540000047 ], [ -82.046065177999935, 28.92865437100005 ], [ -82.045975700999975, 28.928578596000079 ], [ -82.04590408699994, 28.928536832000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047801014999948, 28.929229228000054 ], [ -82.048013082999944, 28.929430951000029 ], [ -82.048111357999971, 28.929549915000052 ], [ -82.048111357999971, 28.92968957000005 ], [ -82.048080323999955, 28.92980336200003 ], [ -82.04797687599995, 28.930061982000041 ], [ -82.047738946999971, 28.930558531000031 ], [ -82.047578602999977, 28.930693013000052 ], [ -82.047407913999962, 28.930770598000038 ], [ -82.047247569999968, 28.930801633000044 ], [ -82.046988950999946, 28.930796460000067 ], [ -82.046523435999973, 28.930801633000044 ], [ -82.046249299999943, 28.930796460000067 ], [ -82.04609929999998, 28.930744736000065 ], [ -82.045969990999936, 28.930693013000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045969990999936, 28.930693013000052 ], [ -82.045814818999986, 28.930522324000037 ], [ -82.045721715999946, 28.930341290000058 ], [ -82.045737232999954, 28.930067154000028 ], [ -82.045747577999975, 28.929777500000057 ], [ -82.045788956999957, 28.929472330000067 ], [ -82.04575792299994, 28.929161987000043 ], [ -82.045748532999937, 28.928795276000073 ], [ -82.045758816999978, 28.928587384000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045969990999936, 28.930693013000052 ], [ -82.045752750999952, 28.930961977000038 ], [ -82.045437234999952, 28.931225768000047 ], [ -82.045075167999983, 28.931406802000026 ], [ -82.044604480999965, 28.931551629000069 ], [ -82.044407929999977, 28.931618870000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044407929999977, 28.931618870000079 ], [ -82.044133793999947, 28.931743007000023 ], [ -82.043973449999953, 28.93184128200005 ], [ -82.043844139999976, 28.932032660000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044407929999977, 28.931618870000079 ], [ -82.044304482999962, 28.931417147000047 ], [ -82.044138965999934, 28.931334388000039 ], [ -82.043942415999936, 28.931355078000024 ], [ -82.043792415999974, 28.931427491000079 ], [ -82.043637244999957, 28.93159300800005 ], [ -82.043632072999969, 28.93177404100004 ], [ -82.043647589999978, 28.931893006000053 ], [ -82.04373034799994, 28.931970592000027 ], [ -82.043844139999976, 28.932032660000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043844139999976, 28.932032660000061 ], [ -82.043704485999967, 28.932301624000047 ], [ -82.043652761999965, 28.932953345000044 ], [ -82.043544141999973, 28.933392998000045 ], [ -82.043585520999954, 28.933718858000077 ], [ -82.043632072999969, 28.933775754000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045698942999934, 28.928414978000035 ], [ -82.045659318999981, 28.92840088500003 ], [ -82.045432654999956, 28.928317599000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013481013999979, 28.838206082000056 ], [ -82.013036595999949, 28.838042482000048 ], [ -82.012500118999981, 28.837855339000043 ], [ -82.012365323999973, 28.837810844000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013606017999962, 28.837196237000057 ], [ -82.013610170999982, 28.837930770000071 ], [ -82.013481013999979, 28.838206082000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013606017999962, 28.837196237000057 ], [ -82.012659217999953, 28.836879167000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972616003999974, 28.790981857000077 ], [ -81.972690944999954, 28.790928244000042 ], [ -81.972767953999949, 28.790918160000047 ], [ -81.973066822999954, 28.790935578000074 ], [ -81.973334521999959, 28.790952080000068 ], [ -81.973953345999973, 28.790973166000072 ], [ -81.974533665999957, 28.790968582000062 ], [ -81.975103899999965, 28.790949330000046 ], [ -81.975575123999988, 28.790921827000034 ], [ -81.975884993999955, 28.790896157000077 ], [ -81.976235202999987, 28.790859486000045 ], [ -81.976358050999977, 28.790876905000061 ], [ -81.976418792999937, 28.790915943000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972215713999958, 28.791072823000036 ], [ -81.972200869999938, 28.791859224000063 ], [ -81.972255042999961, 28.791972636000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972227200999953, 28.792339594000055 ], [ -81.972244234999948, 28.793055027000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972244234999948, 28.793055027000037 ], [ -81.972159063999982, 28.793480880000061 ], [ -81.971895034999989, 28.793864148000068 ], [ -81.971613971999943, 28.794170762000078 ], [ -81.971230704999982, 28.794315552000057 ], [ -81.971094431999973, 28.794366654000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971094431999973, 28.794366654000044 ], [ -81.970498236999958, 28.794451825000067 ], [ -81.970183105999979, 28.794494410000027 ], [ -81.969757252999955, 28.794434791000072 ], [ -81.969189669999935, 28.794376893000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969189669999935, 28.794376893000049 ], [ -81.968568915999981, 28.794313571000032 ], [ -81.968266766999989, 28.794332586000053 ], [ -81.967840913999964, 28.794400723000024 ], [ -81.967389509999975, 28.794426274000045 ], [ -81.967031793, 28.794366654000044 ], [ -81.966546319999964, 28.79423889800006 ], [ -81.966009745999941, 28.793974869000067 ], [ -81.965963431999967, 28.793936274000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965285794999943, 28.793055027000037 ], [ -81.964962146999937, 28.793097612000054 ], [ -81.964766253999983, 28.793089095000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964766253999983, 28.793089095000028 ], [ -81.964425571999982, 28.792986890000066 ], [ -81.964110440999946, 28.792876168000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964110440999946, 28.792876168000078 ], [ -81.963454626999976, 28.792509935000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962938627999961, 28.788695908000079 ], [ -81.964003401999946, 28.788147071000026 ], [ -81.964541101999941, 28.787844955000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964321343999984, 28.794246570000041 ], [ -81.964240159999974, 28.793986105000045 ], [ -81.964158975999965, 28.793752701000074 ], [ -81.964047347999951, 28.79345502700005 ], [ -81.964030434999984, 28.793140439000069 ], [ -81.964110440999946, 28.792876168000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963624514999935, 28.794381876000045 ], [ -81.964321343999984, 28.794246570000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964321343999984, 28.794246570000041 ], [ -81.965028319999988, 28.794070671000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965028319999988, 28.794070671000043 ], [ -81.964882865999982, 28.793668134000029 ], [ -81.964757707, 28.793316337000078 ], [ -81.964766253999983, 28.793089095000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963624514999935, 28.794381876000045 ], [ -81.963550096999938, 28.794138325000063 ], [ -81.963391110999964, 28.793820354000047 ], [ -81.963286248999964, 28.793485471000054 ], [ -81.963286248999964, 28.793191179000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963597453999967, 28.795014434000052 ], [ -81.96362789799997, 28.79450365200006 ], [ -81.963624514999935, 28.794381876000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963597453999967, 28.795014434000052 ], [ -81.964307812999948, 28.794889276000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964307812999948, 28.794889276000049 ], [ -81.965075677999948, 28.794733673000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965075677999948, 28.794733673000053 ], [ -81.965089207999938, 28.794473208000056 ], [ -81.965028319999988, 28.794070671000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964226628999938, 28.795995407000078 ], [ -81.964324725999973, 28.795078705000037 ], [ -81.964307812999948, 28.794889276000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963235508999958, 28.796445301000062 ], [ -81.963309926999955, 28.796191601000032 ], [ -81.963404641999944, 28.795924371000069 ], [ -81.963516269999957, 28.795518451000078 ], [ -81.963563626999985, 28.795220777000054 ], [ -81.963597453999967, 28.795014434000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96251161899994, 28.796337055000038 ], [ -81.962589419999972, 28.795870248000028 ], [ -81.962721343999988, 28.795440650000046 ], [ -81.962822823999943, 28.795139593000044 ], [ -81.962890476999974, 28.795078705000037 ], [ -81.962988573999951, 28.795031348000066 ], [ -81.963211829999977, 28.795024582000053 ], [ -81.963597453999967, 28.795014434000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965035085999943, 28.796455449000064 ], [ -81.965055381999946, 28.795305343000052 ], [ -81.965075677999948, 28.794733673000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96251161899994, 28.796337055000038 ], [ -81.963235508999958, 28.796445301000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963235508999958, 28.796445301000062 ], [ -81.963604219, 28.796516337000071 ], [ -81.964043964999973, 28.796621199000072 ], [ -81.964273985999966, 28.796682087000079 ], [ -81.964524302999962, 28.796705766000059 ], [ -81.964740793999965, 28.796709148000048 ], [ -81.964882865999982, 28.796658408000042 ], [ -81.965011406999963, 28.796553546000041 ], [ -81.965035085999943, 28.796455449000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965035085999943, 28.796455449000064 ], [ -81.96548159699995, 28.796458831000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970024512999942, 28.795674054000074 ], [ -81.970430433, 28.79557595600005 ], [ -81.970876944999986, 28.795477859000073 ], [ -81.971167853999987, 28.79545756300007 ], [ -81.971343751999939, 28.795393293000075 ], [ -81.971424935999949, 28.79530872600003 ], [ -81.971428318999983, 28.795153123000034 ], [ -81.971269332999952, 28.794760735000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969936563999966, 28.794909572000051 ], [ -81.970477789999961, 28.79487574500007 ], [ -81.970924301999958, 28.794818240000041 ], [ -81.971269332999952, 28.794760735000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970024512999942, 28.795674054000074 ], [ -81.969963625999981, 28.795440650000046 ], [ -81.969936563999966, 28.795329022000033 ], [ -81.969926415999964, 28.795139593000044 ], [ -81.969936563999966, 28.794909572000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969378424999945, 28.795900692000032 ], [ -81.970024512999942, 28.795674054000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969219439999961, 28.794828388000042 ], [ -81.969716690999974, 28.794889276000049 ], [ -81.969936563999966, 28.794909572000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969378424999945, 28.795900692000032 ], [ -81.969287092999934, 28.795694350000076 ], [ -81.969192377999946, 28.795440650000046 ], [ -81.969175464999978, 28.795163271000035 ], [ -81.969219439999961, 28.794828388000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968603794999979, 28.796208514000057 ], [ -81.968492166999965, 28.795998789000066 ], [ -81.968461722999962, 28.795724793000034 ], [ -81.968424513999935, 28.795105766000063 ], [ -81.968400834999954, 28.794753969000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968400834999954, 28.794753969000055 ], [ -81.968728953999971, 28.794753969000055 ], [ -81.969043540999962, 28.794787796000037 ], [ -81.969219439999961, 28.794828388000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968603794999979, 28.796208514000057 ], [ -81.969378424999945, 28.795900692000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971269332999952, 28.794760735000068 ], [ -81.971094431999973, 28.794366654000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967771659999983, 28.795937901000059 ], [ -81.967805486999964, 28.796144244000061 ], [ -81.967862991999937, 28.796242341000038 ], [ -81.967981384999973, 28.796340438000072 ], [ -81.968150517999959, 28.79634382100005 ], [ -81.96842789699997, 28.796276168000077 ], [ -81.968603794999979, 28.796208514000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967619439999964, 28.794852066000033 ], [ -81.968400834999954, 28.794753969000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967619439999964, 28.794852066000033 ], [ -81.967643118999945, 28.795163271000035 ], [ -81.967673562999948, 28.795332405000067 ], [ -81.967747980999945, 28.795488007000074 ], [ -81.967771659999983, 28.795748472000071 ], [ -81.967771659999983, 28.795937901000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966976733999957, 28.795937901000059 ], [ -81.966963202999978, 28.795721411000045 ], [ -81.966885401999946, 28.795447415000069 ], [ -81.966848192999976, 28.795224159000043 ], [ -81.966865105999943, 28.794967077000024 ], [ -81.966875253999945, 28.794774265000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966875253999945, 28.794774265000058 ], [ -81.967619439999964, 28.794852066000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966164894999963, 28.794567923000045 ], [ -81.966476099999966, 28.794676168000024 ], [ -81.966658763999988, 28.794740439000066 ], [ -81.966875253999945, 28.794774265000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967771659999983, 28.795937901000059 ], [ -81.967291321999937, 28.79594804900006 ], [ -81.966976733999957, 28.795937901000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966976733999957, 28.795937901000059 ], [ -81.966618171999983, 28.795954815000073 ], [ -81.966334027999949, 28.795920988000034 ], [ -81.966175042999964, 28.795714646000079 ], [ -81.966110771999979, 28.79549477200004 ], [ -81.96612091999998, 28.79506179200007 ], [ -81.966164894999963, 28.794567923000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965963431999967, 28.793936274000032 ], [ -81.965813097999956, 28.794084202000079 ], [ -81.965782653999952, 28.79421274300006 ], [ -81.965786036999987, 28.794334519000074 ], [ -81.966164894999963, 28.794567923000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965963431999967, 28.793936274000032 ], [ -81.965652028999955, 28.793676772000026 ], [ -81.965478692999966, 28.793482489000041 ], [ -81.965390567999975, 28.793327985000076 ], [ -81.965285794999943, 28.793055027000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972244234999948, 28.793055027000037 ], [ -81.973392828999977, 28.793045724000024 ], [ -81.973721369999964, 28.792968769000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972715027999982, 28.792323526000075 ], [ -81.973452025999961, 28.792308727000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973452025999961, 28.792308727000034 ], [ -81.973721369999964, 28.792968769000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97338770999994, 28.791590584000062 ], [ -81.97299481999994, 28.791584445000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97338770999994, 28.791590584000062 ], [ -81.97338770999994, 28.792051002000051 ], [ -81.973452025999961, 28.792308727000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973721369999964, 28.792968769000026 ], [ -81.973934072999953, 28.793401562000042 ], [ -81.974013877999937, 28.793536618000076 ], [ -81.974155072999963, 28.793616424000049 ], [ -81.974241017999987, 28.793610285000057 ], [ -81.974480434999975, 28.793561173000057 ], [ -81.974738268999943, 28.793444534000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974738268999943, 28.793444534000059 ], [ -81.974695296999982, 28.79334631200004 ], [ -81.974443601999951, 28.792824505000056 ], [ -81.974216461999958, 28.792327253000053 ], [ -81.974112100999946, 28.792020308000076 ], [ -81.974075267999979, 28.791553751000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974738268999943, 28.793444534000059 ], [ -81.975382854999964, 28.793211256000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975382854999964, 28.793211256000063 ], [ -81.975223242999959, 28.792861338000023 ], [ -81.975057492999952, 28.792456170000037 ], [ -81.97486104799998, 28.791989613000055 ], [ -81.974824213999966, 28.791516917000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976070411999956, 28.792959560000043 ], [ -81.975824855999974, 28.792443892000051 ], [ -81.975628410999946, 28.791983474000062 ], [ -81.975530187999937, 28.791670390000036 ], [ -81.975542465999979, 28.791498501000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975382854999964, 28.793211256000063 ], [ -81.976070411999956, 28.792959560000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976070411999956, 28.792959560000043 ], [ -81.976487857999984, 28.792830643000059 ], [ -81.976622913999961, 28.792750838000075 ], [ -81.976678163999964, 28.792585087000077 ], [ -81.976512413999956, 28.79219833600007 ], [ -81.976242301999946, 28.791547612000045 ], [ -81.976137939999944, 28.791467806000071 ], [ -81.975781883999957, 28.791492362000042 ], [ -81.975542465999979, 28.791498501000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975542465999979, 28.791498501000035 ], [ -81.974824213999966, 28.791516917000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974824213999966, 28.791516917000024 ], [ -81.974075267999979, 28.791553751000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974075267999979, 28.791553751000038 ], [ -81.97338770999994, 28.791590584000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984316898999964, 28.797372587000041 ], [ -81.984161098999948, 28.796551831000045 ], [ -81.984168243999989, 28.796419644000025 ], [ -81.984275422999985, 28.796121926000069 ], [ -81.984332584999947, 28.795917096000039 ], [ -81.984386173999951, 28.795643196000071 ], [ -81.984450203999984, 28.795257270000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984105083999964, 28.797817400000042 ], [ -81.984263944999952, 28.797557926000025 ], [ -81.984316898999964, 28.797372587000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983048677999989, 28.799988331000066 ], [ -81.983008125999959, 28.799754031000077 ], [ -81.983201873999974, 28.799217845000044 ], [ -81.983494748999988, 28.798357244000044 ], [ -81.983607316999951, 28.798103351000066 ], [ -81.98373440599994, 28.797965671000043 ], [ -81.983946221999986, 28.797891536000066 ], [ -81.984105083999964, 28.797817400000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984115673999952, 28.798654072000033 ], [ -81.984210991999987, 28.798346939000055 ], [ -81.984248058999981, 28.79822514500006 ], [ -81.984258649999958, 28.798108647000049 ], [ -81.984221581999975, 28.797970967000026 ], [ -81.984105083999964, 28.797817400000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984115673999952, 28.798654072000033 ], [ -81.984872915999972, 28.798675254000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984872915999972, 28.798675254000045 ], [ -81.985190638999939, 28.798669958000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984888801999944, 28.799511926000037 ], [ -81.984878210999966, 28.799236565000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984878210999966, 28.799236565000058 ], [ -81.984872915999972, 28.798675254000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98395151699998, 28.799231270000064 ], [ -81.984878210999966, 28.799236565000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98395151699998, 28.799231270000064 ], [ -81.983972698999935, 28.799035340000046 ], [ -81.984115673999952, 28.798654072000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983586134999939, 28.799236565000058 ], [ -81.98395151699998, 28.799231270000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985582497999985, 28.798548164000067 ], [ -81.985580617999972, 28.798314321000078 ], [ -81.985552036999934, 28.798205952000046 ], [ -81.985477012, 28.798116636000032 ], [ -81.985026862999973, 28.797721267000043 ], [ -81.984717235999938, 28.797517628000037 ], [ -81.984616011999947, 28.797422358000063 ], [ -81.984473106999985, 28.797362815000042 ], [ -81.984316898999964, 28.797372587000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985580598999945, 28.799229045000061 ], [ -81.985582497999985, 28.798548164000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985582497999985, 28.798548164000067 ], [ -81.985766393999938, 28.798534632000042 ], [ -81.985863848999941, 28.798509898000077 ], [ -81.98606172999996, 28.798419118000027 ], [ -81.986162953999951, 28.798385773000064 ], [ -81.98630585899997, 28.798398873000053 ], [ -81.986432090999983, 28.798489379000046 ], [ -81.986533856999984, 28.798656815000072 ], [ -81.986673348999943, 28.798823525000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985580598999945, 28.799229045000061 ], [ -81.985746654999957, 28.799231270000064 ], [ -81.985916107999969, 28.79918890700003 ], [ -81.986673348999943, 28.798823525000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98563545199994, 28.799866717000043 ], [ -81.985577730999978, 28.799752837000028 ], [ -81.985575205999965, 28.799526684000057 ], [ -81.985580598999945, 28.799229045000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985450112999956, 28.800083828000027 ], [ -81.98563545199994, 28.799866717000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986720651999974, 28.799591915000065 ], [ -81.98628443299998, 28.79978402100005 ], [ -81.985914866999963, 28.799937431000046 ], [ -81.985757245999935, 28.799924966000049 ], [ -81.98563545199994, 28.799866717000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023661956999945, 28.880143464000071 ], [ -82.022679265999955, 28.880136898000046 ], [ -82.022637681999981, 28.880136898000046 ], [ -82.022585154999945, 28.880152218000035 ], [ -82.022556702999964, 28.880195991000051 ], [ -82.022541382999975, 28.880237574000034 ], [ -82.022543571999961, 28.880303233000063 ], [ -82.022574211999938, 28.880966386000068 ], [ -82.02256764599997, 28.881007969000052 ], [ -82.022521684999958, 28.881051742000068 ], [ -82.022484478999957, 28.881069251000042 ], [ -82.022307199999943, 28.881067062000056 ], [ -82.021171305999985, 28.881058308000036 ], [ -82.020937122999953, 28.881051742000068 ], [ -82.020770787999936, 28.881029856000055 ], [ -82.020613293999986, 28.880971506000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023661956999945, 28.880143464000071 ], [ -82.023671370999978, 28.881383300000039 ], [ -82.023686461999944, 28.881436119000057 ], [ -82.023724189999939, 28.881488938000075 ], [ -82.023814736999952, 28.881519120000064 ], [ -82.024116560999971, 28.881519120000064 ], [ -82.026214233999951, 28.88152666600007 ], [ -82.026304780999965, 28.881519120000064 ], [ -82.026365145999989, 28.881496484000024 ], [ -82.026387782999961, 28.881390845000055 ], [ -82.026380236999955, 28.880145823000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026380236999955, 28.880145823000078 ], [ -82.025120123999955, 28.880130732000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025120123999955, 28.880130732000055 ], [ -82.023661956999945, 28.880143464000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026380236999955, 28.880145823000078 ], [ -82.026372691999939, 28.879451629000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026372691999939, 28.879451629000073 ], [ -82.026380236999955, 28.878742344000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026380236999955, 28.878742344000045 ], [ -82.026380236999955, 28.878274517000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026380236999955, 28.878742344000045 ], [ -82.025135214999978, 28.878749889000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025127668999971, 28.878274517000079 ], [ -82.025135214999978, 28.878749889000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025135214999978, 28.878749889000062 ], [ -82.025135214999978, 28.87943653800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025135214999978, 28.87943653800005 ], [ -82.025120123999955, 28.880130732000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026372691999939, 28.879451629000073 ], [ -82.025135214999978, 28.87943653800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022074490999955, 28.753331316000072 ], [ -82.021562499999959, 28.753553921000048 ], [ -82.021307637999939, 28.753641121000044 ], [ -82.021025227999985, 28.753736352000033 ], [ -82.020243672999982, 28.753956370000026 ], [ -82.01984304399997, 28.754084440000042 ], [ -82.019646013999989, 28.754219077000073 ], [ -82.019468685999982, 28.754379985000071 ], [ -82.019186275999971, 28.754793750000033 ], [ -82.018856100999983, 28.755186049000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97634048599997, 28.790717011000027 ], [ -81.976261768999962, 28.790737931000024 ], [ -81.976027515999988, 28.790758614000026 ], [ -81.975814401999969, 28.790770559000066 ], [ -81.975374349999981, 28.790807230000041 ], [ -81.975089231999959, 28.790826482000057 ], [ -81.974054191999983, 28.790846651000038 ], [ -81.973816745999954, 28.790841150000062 ], [ -81.973609554999939, 28.790836566000053 ], [ -81.973419781999951, 28.790827399000079 ], [ -81.973141998999949, 28.79081364700005 ], [ -81.972769787999937, 28.790785227000072 ], [ -81.972696445999986, 28.790765975000056 ], [ -81.972649927999953, 28.79070544700005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994595204999939, 28.799823544000049 ], [ -81.994599878999963, 28.800076877000038 ], [ -81.994601215999978, 28.800540733000048 ], [ -81.994606562999934, 28.800673072000052 ], [ -81.994618593999974, 28.80076931800005 ], [ -81.994644939999944, 28.800874940000028 ], [ -81.994681795999952, 28.800976166000055 ], [ -81.994718975999945, 28.801046068000062 ], [ -81.994765047999977, 28.801127240000028 ], [ -81.994828375999987, 28.801235312000074 ], [ -81.994850993999989, 28.801329968000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995078912999986, 28.801191814000049 ], [ -81.994988580999973, 28.801152715000057 ], [ -81.994956056999968, 28.801131704000056 ], [ -81.994903748999945, 28.801088968000045 ], [ -81.994869419999986, 28.801043686000071 ], [ -81.994830071999957, 28.800953253000046 ], [ -81.994799719999946, 28.800873036000041 ], [ -81.994750932999978, 28.800723869000024 ], [ -81.994732217999967, 28.80059152900003 ], [ -81.994735740999943, 28.799824104000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995078912999986, 28.801191814000049 ], [ -81.994944586999964, 28.801234822000026 ], [ -81.994907410999986, 28.801261708000027 ], [ -81.994850993999989, 28.801329968000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994833300999971, 28.801506239000048 ], [ -81.99486419599998, 28.801573161000078 ], [ -81.99492767199996, 28.801636314000064 ], [ -81.995011351999949, 28.801677321000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995218732999945, 28.801670906000027 ], [ -81.995327644999975, 28.801597664000042 ], [ -81.995353442999942, 28.801564033000034 ], [ -81.995385010999939, 28.801488053000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995385010999939, 28.801488053000071 ], [ -81.995386920999977, 28.801404060000038 ], [ -81.995375880999973, 28.801363042000048 ], [ -81.995357185999978, 28.801324237000074 ], [ -81.995331365999959, 28.801288743000043 ], [ -81.995261458999948, 28.801231593000068 ], [ -81.995219352999982, 28.801211556000055 ], [ -81.995126767999977, 28.801191381000024 ], [ -81.995078912999986, 28.801191814000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017530943999986, 28.824498585000072 ], [ -82.017576632999976, 28.824438790000045 ], [ -82.017603103999988, 28.824351751000052 ], [ -82.017594724999981, 28.824270751000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019536154999969, 28.829745216000049 ], [ -82.019730011999968, 28.829774063000059 ], [ -82.020148664999965, 28.830068125000025 ], [ -82.020405725999979, 28.830313509000064 ], [ -82.020637830999988, 28.830475815000057 ], [ -82.020914406999964, 28.830680131000065 ], [ -82.021150875999979, 28.830966578000073 ], [ -82.021309274999965, 28.831301741000061 ], [ -82.021396121999942, 28.831741958000066 ], [ -82.021498133999955, 28.83209527300005 ], [ -82.021684738999966, 28.832461943000055 ], [ -82.02180298199994, 28.832636679000075 ], [ -82.021915804999935, 28.832818101000043 ], [ -82.022004769999967, 28.832995707000066 ], [ -82.022137155999985, 28.83336907000006 ], [ -82.022192482999969, 28.833536650000042 ], [ -82.022241034999979, 28.833720967000033 ], [ -82.022252528999957, 28.83384254200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022126191999973, 28.834241380000037 ], [ -82.022164308999947, 28.834376665000036 ], [ -82.022073321999983, 28.834763699000064 ], [ -82.022061099999974, 28.835142584000039 ], [ -82.022095049999962, 28.835377521000055 ], [ -82.022380575999989, 28.836615653000024 ], [ -82.022494839999979, 28.837083843000073 ], [ -82.022654551999949, 28.83760873500006 ], [ -82.022922665999943, 28.838146799000071 ], [ -82.023334915999953, 28.838940946000037 ], [ -82.02351406799994, 28.839386672000046 ], [ -82.023602656999969, 28.839862092000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02376486299994, 28.839841223000064 ], [ -82.023633286999939, 28.839353630000062 ], [ -82.023445275999961, 28.838852721000023 ], [ -82.02294244999996, 28.837917004000076 ], [ -82.022725167999965, 28.837418614000057 ], [ -82.022598905999985, 28.83692131600003 ], [ -82.022467907999953, 28.836336190000054 ], [ -82.022338134999984, 28.835822949000033 ], [ -82.022209122999982, 28.835287892000053 ], [ -82.022200491999968, 28.834999092000032 ], [ -82.022240033999935, 28.83463682200005 ], [ -82.022283813999934, 28.834477158000027 ], [ -82.022393103999946, 28.834340270000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022445052999956, 28.833851286000026 ], [ -82.022325906999981, 28.833614461000025 ], [ -82.022245401999953, 28.833267525000053 ], [ -82.022105607999947, 28.832906880000053 ], [ -82.021990607999953, 28.832696810000073 ], [ -82.021742189999941, 28.832335881000063 ], [ -82.021600058999979, 28.832022680000023 ], [ -82.021544715999937, 28.831851753000024 ], [ -82.021463585999982, 28.831384448000051 ], [ -82.021336307999945, 28.830919757000061 ], [ -82.021213699999976, 28.830677439000056 ], [ -82.021023885999966, 28.830428962000042 ], [ -82.020714762999944, 28.830155895000075 ], [ -82.020368785999949, 28.829959228000064 ], [ -82.020190921999983, 28.829883815000073 ], [ -82.019933883999954, 28.829759709000029 ], [ -82.019749497999953, 28.829593576000036 ], [ -82.019726134999985, 28.829516907000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019403685999976, 28.829265347000046 ], [ -82.019289092999941, 28.829253337000068 ], [ -82.019179436999934, 28.829207563000068 ], [ -82.019000825999967, 28.829071569000064 ], [ -82.018706502999976, 28.828897313000027 ], [ -82.018539683999961, 28.828791059000025 ], [ -82.01832823899997, 28.828615740000032 ], [ -82.018160357999989, 28.828436171000078 ], [ -82.018009476999964, 28.828223664000063 ], [ -82.01786178499998, 28.827928278000059 ], [ -82.017590836999943, 28.827029370000048 ], [ -82.017335827999943, 28.826237779000053 ], [ -82.017268888, 28.825983833000066 ], [ -82.017228511999974, 28.825733074000027 ], [ -82.017212573999984, 28.825411124000027 ], [ -82.017232761999935, 28.825092363000067 ], [ -82.017281638999975, 28.824825666000038 ], [ -82.017323077999947, 28.824684348000062 ], [ -82.017376204999948, 28.824611033000053 ], [ -82.017456435999975, 28.82455396000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019180229999961, 28.829590150000058 ], [ -82.019192238999949, 28.829617643000063 ], [ -82.019204727999977, 28.829636359000062 ], [ -82.019214962999968, 28.829651978000072 ], [ -82.01924362699998, 28.829682674000026 ], [ -82.01925820799994, 28.829699346000041 ], [ -82.019298614999968, 28.829723115000036 ], [ -82.019357240999966, 28.829745621000029 ], [ -82.019401070999947, 28.829755090000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019536154999969, 28.829745216000049 ], [ -82.019614717999957, 28.829708817000039 ], [ -82.019676501999982, 28.829652682000074 ], [ -82.019707436999965, 28.829604271000051 ], [ -82.019721052999955, 28.82955836800005 ], [ -82.019726134999985, 28.829516907000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019726134999985, 28.829516907000027 ], [ -82.019727344999978, 28.829502330000025 ], [ -82.019721800999946, 28.829460796000035 ], [ -82.01970840599995, 28.829420674000062 ], [ -82.019672972999956, 28.829358264000064 ], [ -82.019639696999945, 28.82932736500004 ], [ -82.019587028999979, 28.82929587700005 ], [ -82.01954406699997, 28.829278054000042 ], [ -82.019478068999945, 28.829262001000075 ], [ -82.019431719999943, 28.82926081200003 ], [ -82.019403685999976, 28.829265347000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019403685999976, 28.829265347000046 ], [ -82.01936133199996, 28.829274011000052 ], [ -82.019320997999955, 28.829288316000032 ], [ -82.019283647999941, 28.829307920000076 ], [ -82.019250171999943, 28.829332357000055 ], [ -82.019221368999979, 28.829361041000027 ], [ -82.019197926999936, 28.829393290000041 ], [ -82.01918040399994, 28.829428333000067 ], [ -82.019169219999981, 28.829465335000066 ], [ -82.019164640999975, 28.829503412000065 ], [ -82.019166775999963, 28.82954165600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022252528999957, 28.83384254200007 ], [ -82.022168206999936, 28.833891797000035 ], [ -82.022102908999955, 28.833971949000045 ], [ -82.022084520999954, 28.834009287000072 ], [ -82.022073198999976, 28.834048745000075 ], [ -82.022069239999951, 28.834089293000034 ], [ -82.022072746999982, 28.834129873000052 ], [ -82.022083627999962, 28.834169427000063 ], [ -82.022101598999939, 28.834206922000078 ], [ -82.022126191999973, 28.834241380000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022126191999973, 28.834241380000037 ], [ -82.022155353999949, 28.834270695000043 ], [ -82.022227222999959, 28.834315796000055 ], [ -82.022268209999936, 28.834330501000068 ], [ -82.022311281999976, 28.834339465000028 ], [ -82.022355408999942, 28.83434247200006 ], [ -82.022393103999946, 28.834340270000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02260578399995, 28.834212384000068 ], [ -82.022637676999977, 28.834153138000033 ], [ -82.022638819999941, 28.834056277000059 ], [ -82.022612116999937, 28.833979362000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022445052999956, 28.833851286000026 ], [ -82.02240197499998, 28.833834255000056 ], [ -82.022366010999974, 28.83382886000004 ], [ -82.02232644999998, 28.833829759000025 ], [ -82.022287787999971, 28.833834255000056 ], [ -82.022252528999957, 28.83384254200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023602656999969, 28.839862092000033 ], [ -82.023619460999953, 28.840069337000045 ], [ -82.023611538999944, 28.84030659900003 ], [ -82.023581500999967, 28.840620478000062 ], [ -82.023516891999975, 28.84092802300006 ], [ -82.023413034999976, 28.841242945000033 ], [ -82.023315415999946, 28.841458722000027 ], [ -82.023290172999964, 28.841526573000067 ], [ -82.023257374999957, 28.841599345000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067088609999985, 28.606418046000044 ], [ -82.066928230999963, 28.606414248000078 ], [ -82.066678321999973, 28.606409360000043 ], [ -82.066456807999941, 28.606399443000043 ], [ -82.066175659999942, 28.606394568000042 ], [ -82.065954154999986, 28.606394676000036 ], [ -82.065732645999958, 28.606392278000044 ], [ -82.065647447999936, 28.606387306000045 ], [ -82.065582134999943, 28.606392351000068 ], [ -82.065491263999945, 28.606397407000031 ], [ -82.06536915199996, 28.606399972000077 ], [ -82.065190248999954, 28.606410083000071 ], [ -82.064988616999983, 28.606405168000038 ], [ -82.064860824999982, 28.606405229000075 ], [ -82.064721671999962, 28.606402788000025 ], [ -82.064588199999946, 28.606402852000031 ], [ -82.064517200999944, 28.606397874000038 ], [ -82.064429162999943, 28.606392903000028 ], [ -82.064372366999976, 28.606392930000027 ], [ -82.064315564999958, 28.606387945000051 ], [ -82.064244561999942, 28.606375448000051 ], [ -82.064145158999963, 28.60636045800004 ], [ -82.064057128999934, 28.606368018000069 ], [ -82.06386402399994, 28.606375628000023 ], [ -82.063662392999959, 28.606368204000034 ], [ -82.063446565999982, 28.606370811000033 ], [ -82.063261976999968, 28.606370898000023 ], [ -82.063171101999956, 28.606370940000033 ], [ -82.063057509999965, 28.606370993000041 ], [ -82.063014924999948, 28.606393568000044 ], [ -82.062997906999954, 28.606428662000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071256102999939, 28.60636192000004 ], [ -82.071048724999969, 28.606256772000052 ], [ -82.070872625999982, 28.606214260000058 ], [ -82.070801623999955, 28.60620427300006 ], [ -82.07075335199994, 28.60621181700003 ], [ -82.070506430999956, 28.60629890000007 ], [ -82.070358798999962, 28.606321667000032 ], [ -82.070197718999964, 28.606332408000071 ], [ -82.069404452999947, 28.606242587000054 ], [ -82.069234079999944, 28.606267734000028 ], [ -82.069118748999983, 28.606296635000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962775617999966, 28.957449661000055 ], [ -81.962582434999945, 28.957513759000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959570273999987, 28.949258016000044 ], [ -81.95950070799995, 28.949385492000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961696366999945, 28.950172604000045 ], [ -81.961795380999945, 28.950089693000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966038554999955, 28.952756485000066 ], [ -81.966038311999966, 28.952877422000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981366175999938, 28.952876180000032 ], [ -81.981847178999942, 28.953041614000028 ], [ -81.981908291999957, 28.953056029000038 ], [ -81.981961937999984, 28.953067401000055 ], [ -81.982030305999956, 28.953086738000025 ], [ -81.982104337999942, 28.953103807000048 ], [ -81.982170692999944, 28.953114428000049 ], [ -81.982270226999958, 28.953130358000067 ], [ -81.982336582999949, 28.953140979000068 ], [ -81.982424051999942, 28.953154255000072 ], [ -81.982496438999988, 28.953164875000027 ], [ -81.982577875999937, 28.95317284500004 ], [ -81.982647249999957, 28.95317816000005 ], [ -81.982752816999948, 28.953183479000074 ], [ -81.982861401999969, 28.95318349300004 ], [ -81.982945855999958, 28.953183503000048 ], [ -81.983048408999935, 28.953183516000024 ], [ -81.98314492999998, 28.953178223000066 ], [ -81.983235416999946, 28.953172929000061 ], [ -81.983337970999969, 28.953162329000065 ], [ -81.983467671999961, 28.953146428000025 ], [ -81.983603405999986, 28.95312522100005 ], [ -81.983721042999946, 28.953101360000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983652051999968, 28.952989509000076 ], [ -81.98354612199995, 28.953010378000045 ], [ -81.983367470999951, 28.953033634000064 ], [ -81.983192128999974, 28.953051071000061 ], [ -81.982963855999969, 28.953062680000073 ], [ -81.982771974999935, 28.953062656000043 ], [ -81.982613177999951, 28.953050997000048 ], [ -81.982494082999949, 28.953039343000057 ], [ -81.982262506999973, 28.953007305000028 ], [ -81.982107023999959, 28.952975278000054 ], [ -81.981832448999967, 28.95290540700006 ], [ -81.981647840999983, 28.952846926000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983721042999946, 28.953101360000062 ], [ -81.983652051999968, 28.952989509000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991990122999937, 28.951517039000066 ], [ -81.991942653999956, 28.951630162000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97173199599996, 28.792346409000061 ], [ -81.972227200999953, 28.792339594000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970921700999952, 28.792346409000061 ], [ -81.97173199599996, 28.792346409000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970785023999952, 28.79395723600004 ], [ -81.97095098799997, 28.793927949000079 ], [ -81.971175527999947, 28.793840085000056 ], [ -81.97140982999997, 28.793683884000075 ], [ -81.971556268999962, 28.793527682000047 ], [ -81.971673419999945, 28.793327549000026 ], [ -81.971756401999983, 28.793049315000076 ], [ -81.971751520999987, 28.792697862000068 ], [ -81.97173199599996, 28.792346409000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970785023999952, 28.79395723600004 ], [ -81.970750854999949, 28.793820560000029 ], [ -81.970848480999962, 28.793425175000039 ], [ -81.970936343999938, 28.79305419700006 ], [ -81.970921700999952, 28.792346409000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970301775999985, 28.794010931000059 ], [ -81.970785023999952, 28.79395723600004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970921700999952, 28.792346409000061 ], [ -81.970911937999972, 28.791999837000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965963431999967, 28.793936274000032 ], [ -81.966177080999955, 28.793679003000079 ], [ -81.966338162999989, 28.793586258000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966338162999989, 28.793586258000062 ], [ -81.966450432999977, 28.793737578000048 ], [ -81.966650565999942, 28.793830323000066 ], [ -81.966894630999946, 28.793918186000042 ], [ -81.967109407999942, 28.793942593000054 ], [ -81.967441335999979, 28.793927949000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967441335999979, 28.793927949000079 ], [ -81.967451098999959, 28.793683884000075 ], [ -81.967475504999982, 28.793542326000079 ], [ -81.967624888999978, 28.793313678000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967624888999978, 28.793313678000061 ], [ -81.96781297299998, 28.793051001000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967624888999978, 28.793313678000061 ], [ -81.967743976999941, 28.793351956000038 ], [ -81.968710472999987, 28.793347074000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968710472999987, 28.793347074000053 ], [ -81.96906680799998, 28.793347074000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967441335999979, 28.793927949000079 ], [ -81.968600694999964, 28.793921564000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968555394999953, 28.794167876000074 ], [ -81.968600694999964, 28.793921564000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968600694999964, 28.793921564000073 ], [ -81.968710472999987, 28.793347074000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986673348999943, 28.798823525000046 ], [ -81.986890459999984, 28.799030045000052 ], [ -81.986959583999976, 28.799099169000044 ], [ -81.987046354999961, 28.799205935000032 ], [ -81.987049958999989, 28.799363436000078 ], [ -81.986972746999982, 28.799465894000036 ], [ -81.986720651999974, 28.799591915000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987567738999985, 28.800867525000058 ], [ -81.987335366999957, 28.800648623000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987335366999957, 28.800648623000029 ], [ -81.987153712999941, 28.800449929000024 ], [ -81.987060913999983, 28.800335715000074 ], [ -81.986964545999967, 28.800167963000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986964545999967, 28.800167963000035 ], [ -81.986720651999974, 28.799591915000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985397670999987, 28.800856817000067 ], [ -81.986964545999967, 28.800167963000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985372686999938, 28.801852621000023 ], [ -81.985383393999939, 28.801456441000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985383393999939, 28.801456441000028 ], [ -81.985533299999986, 28.801463580000075 ], [ -81.987335366999957, 28.800648623000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985383393999939, 28.801456441000028 ], [ -81.985397670999987, 28.800856817000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985397670999987, 28.800856817000067 ], [ -81.985401239999987, 28.800414237000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983048677999989, 28.799988331000066 ], [ -81.98332352999995, 28.799979320000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983003619999977, 28.800812887000063 ], [ -81.983053183999971, 28.800601116000053 ], [ -81.983098240999936, 28.800461437000024 ], [ -81.983080217999941, 28.800159550000046 ], [ -81.983048677999989, 28.799988331000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983003619999977, 28.800812887000063 ], [ -81.983296495, 28.800907508000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982692721999967, 28.801448200000038 ], [ -81.982881963999944, 28.80106971500004 ], [ -81.983003619999977, 28.800812887000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982692721999967, 28.801448200000038 ], [ -81.982994608999945, 28.801569855000025 ], [ -81.983102746999975, 28.801601396000024 ], [ -81.983328034999943, 28.801623925000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983328034999943, 28.801623925000058 ], [ -81.983655098999975, 28.80161793700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982782836999945, 28.802281767000068 ], [ -81.983102746999975, 28.802033950000066 ], [ -81.983264954999981, 28.801876248000042 ], [ -81.98332352999995, 28.801786132000075 ], [ -81.983328034999943, 28.801623925000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982237639999937, 28.801822179000055 ], [ -81.982476444999975, 28.801641948000054 ], [ -81.982584583999937, 28.801511281000046 ], [ -81.982692721999967, 28.801448200000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982237639999937, 28.801822179000055 ], [ -81.982782836999945, 28.802281767000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982782836999945, 28.802281767000068 ], [ -81.983053183999971, 28.802538595000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981796073999988, 28.802042961000041 ], [ -81.982237639999937, 28.801822179000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981713084999967, 28.804973372000063 ], [ -81.981760673999986, 28.804857254000069 ], [ -81.981939608999937, 28.804539358000056 ], [ -81.982136082999943, 28.804281210000056 ], [ -81.982639852999966, 28.803774786000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981350870999961, 28.804291056000068 ], [ -81.981277025999987, 28.804382131000068 ], [ -81.981259890999979, 28.804472385000054 ], [ -81.981274564999978, 28.804554434000067 ], [ -81.981313887999988, 28.804641008000033 ], [ -81.981397251999965, 28.804719636000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981518250999954, 28.80423690300006 ], [ -81.981430408999984, 28.804256396000028 ], [ -81.981350870999961, 28.804291056000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981055494999964, 28.803689190000057 ], [ -81.981173531999957, 28.803893025000036 ], [ -81.981301640999959, 28.804163059000075 ], [ -81.981350870999961, 28.804291056000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981397251999965, 28.804719636000073 ], [ -81.981472090999944, 28.804753739000034 ], [ -81.981559243999982, 28.804759423000064 ], [ -81.981626555999981, 28.804751353000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981626555999981, 28.804751353000029 ], [ -81.981747760999951, 28.804666586000053 ], [ -81.981801320999978, 28.804569203000028 ], [ -81.981806243999984, 28.804406746000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981397251999965, 28.804719636000073 ], [ -81.981441944999972, 28.804864581000061 ], [ -81.98141979199994, 28.805174727000065 ], [ -81.981408840999961, 28.805265620000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981806243999984, 28.804406746000041 ], [ -81.981934240999976, 28.804273826000042 ], [ -81.982342846999984, 28.80396121800004 ], [ -81.982639852999966, 28.803774786000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981055494999964, 28.803689190000057 ], [ -81.981110881999939, 28.804150284000059 ], [ -81.981148858999973, 28.804552712000032 ], [ -81.981181965999951, 28.80473749600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01051216999997, 28.799808860000041 ], [ -82.010555991999979, 28.799866376000068 ], [ -82.010651852999956, 28.799937586000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010920261999956, 28.799934847000031 ], [ -82.011038032999977, 28.799880070000029 ], [ -82.011098287999971, 28.799808860000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010939433999965, 28.799499368000056 ], [ -82.010797011999955, 28.799463762000073 ], [ -82.010651852999956, 28.799485673000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011068160999969, 28.799617139000077 ], [ -82.010939433999965, 28.799499368000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955740372999969, 28.782276793000051 ], [ -81.955626128999938, 28.782208661000027 ], [ -81.955506200999935, 28.782151608000049 ], [ -81.955339699999968, 28.78208640500003 ], [ -81.955098679999935, 28.782014215000061 ], [ -81.954703966999944, 28.781930382000041 ], [ -81.954446646999941, 28.781872165000038 ], [ -81.95429411799995, 28.781838399000037 ], [ -81.954213777999939, 28.781816277000075 ], [ -81.954101783999988, 28.781780642000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959337915999981, 28.783564353000031 ], [ -81.959335869999961, 28.779707485000074 ], [ -81.959347387999969, 28.778603670000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034968262999939, 28.845557132000067 ], [ -82.035364349999952, 28.845672252000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020494131999953, 28.847425426000029 ], [ -82.020611005999967, 28.847386463000078 ], [ -82.020734158999971, 28.847448525000061 ], [ -82.020848073999957, 28.847594137000044 ], [ -82.020896891999939, 28.847643070000061 ], [ -82.021039107999968, 28.847688531000074 ], [ -82.021367472999941, 28.847778951000066 ], [ -82.021845816999985, 28.847906920000071 ], [ -82.021870105999938, 28.847908640000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969287397999949, 28.793947507000041 ], [ -81.969949955999937, 28.794026108000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969949955999937, 28.794026108000025 ], [ -81.970019157999957, 28.79373600100007 ], [ -81.970167047999951, 28.793083084000045 ], [ -81.970179260999942, 28.79301982100003 ], [ -81.970181987999979, 28.792961330000026 ], [ -81.970180662999951, 28.792856286000074 ], [ -81.970177784999976, 28.79219140400005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969287397999949, 28.793947507000041 ], [ -81.969305934999966, 28.793867386000045 ], [ -81.969468756999959, 28.793144045000076 ], [ -81.969509456999958, 28.792979325000033 ], [ -81.969513560999985, 28.792846826000073 ], [ -81.969513598999981, 28.792715042000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967323199999953, 28.792655925000076 ], [ -81.967416620999984, 28.792704765000053 ], [ -81.967453880999983, 28.792719098000077 ], [ -81.967481656999951, 28.79272865400003 ], [ -81.967504013999985, 28.792736418000061 ], [ -81.967529758999945, 28.792740602000038 ], [ -81.967564311999979, 28.792744192000043 ], [ -81.967643583999973, 28.79274612100005 ], [ -81.969513598999981, 28.792715042000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967323199999953, 28.792655925000076 ], [ -81.967382106999935, 28.792577747000053 ], [ -81.967471583999952, 28.792438106000077 ], [ -81.967500061999942, 28.792373654000073 ], [ -81.967534916999966, 28.792277212000045 ], [ -81.967551997999976, 28.792250716000069 ], [ -81.96757721299997, 28.792218492000075 ], [ -81.967600797999978, 28.792198444000064 ], [ -81.967628446999981, 28.792178397000043 ], [ -81.967656906999935, 28.792165512000054 ], [ -81.967693496999971, 28.792156925000029 ], [ -81.967743907999989, 28.792149059000053 ], [ -81.967800820999969, 28.792147641000042 ], [ -81.968146499999989, 28.792144619000055 ], [ -81.969222836999961, 28.792127918000062 ], [ -81.969504688999962, 28.792124197000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969949955999937, 28.794026108000025 ], [ -81.970277479999936, 28.794064563000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970177784999976, 28.79219140400005 ], [ -81.970176467999977, 28.791887245000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969504688999962, 28.792124197000078 ], [ -81.969667300999959, 28.792122050000046 ], [ -81.969831263999936, 28.792123281000045 ], [ -81.969882756999937, 28.792123292000042 ], [ -81.969927471999938, 28.792130465000071 ], [ -81.969983026999955, 28.792138833000024 ], [ -81.970177784999976, 28.79219140400005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969189669999935, 28.794376893000049 ], [ -81.969287397999949, 28.793947507000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969513598999981, 28.792715042000054 ], [ -81.969513614999983, 28.792660609000052 ], [ -81.969504688999962, 28.792124197000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003283161999946, 28.792564683000023 ], [ -82.00319652099995, 28.792564 ], [ -82.002776671999982, 28.792534225000054 ], [ -82.002337626999974, 28.792462612000065 ], [ -82.001588123999966, 28.792256874000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004202632999977, 28.792821881000066 ], [ -82.004274600999963, 28.792851881000047 ], [ -82.004372776999958, 28.792865392000067 ], [ -82.004431730999954, 28.792845758000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004277891999948, 28.789082665000024 ], [ -82.004274491999979, 28.789227193000045 ], [ -82.004272531999959, 28.792214534000038 ], [ -82.004241610999941, 28.792382886000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004277891999948, 28.789082665000024 ], [ -82.004441124999971, 28.789091166000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004439423999941, 28.788972143000024 ], [ -82.004277891999948, 28.788963641000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004441124999971, 28.789091166000048 ], [ -82.004439423999941, 28.788972143000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003601608999986, 28.788971189000051 ], [ -82.003516142999956, 28.788972143000024 ], [ -82.002836008999964, 28.788982345000079 ], [ -82.002601624999954, 28.789009295000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004277891999948, 28.788963641000066 ], [ -82.004277891999948, 28.789082665000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004313651999951, 28.786628412000027 ], [ -82.004320278999955, 28.787076370000079 ], [ -82.004277891999948, 28.788963641000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004431730999954, 28.792845758000055 ], [ -82.004528597999979, 28.792801442000041 ], [ -82.004633285999944, 28.792690385000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004633285999944, 28.792690385000071 ], [ -82.004622978999976, 28.792522034000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00406714199994, 28.792666168000039 ], [ -82.004086996999945, 28.79272700100006 ], [ -82.004129948999946, 28.792769407000037 ], [ -82.004202632999977, 28.792821881000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004241610999941, 28.792382886000041 ], [ -82.004186638999954, 28.792408654000042 ], [ -82.004069823999941, 28.792499701000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004432090999956, 28.792371212000035 ], [ -82.004368214999943, 28.792358792000073 ], [ -82.004302564999989, 28.792362341000057 ], [ -82.004241610999941, 28.792382886000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991457234999984, 28.787620739000033 ], [ -81.991457320999984, 28.787620874000027 ], [ -81.991489982999951, 28.787672081000039 ], [ -81.991740622999941, 28.787904874000048 ], [ -81.992335500999957, 28.788255172000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994552341999963, 28.789142808000065 ], [ -81.994171667999979, 28.788777738000078 ], [ -81.993920339999988, 28.788581187000034 ], [ -81.993646456999954, 28.788455523000039 ], [ -81.993356462999941, 28.788391080000054 ], [ -81.993063246999952, 28.788381413000025 ], [ -81.992731365999987, 28.788371747000042 ], [ -81.992335500999957, 28.788255172000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981794400999945, 28.806738317000054 ], [ -81.981731243999945, 28.807055571000035 ], [ -81.981715561999977, 28.807138369000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981715561999977, 28.807138369000029 ], [ -81.981684383999948, 28.807302978000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98106900199997, 28.807075163000036 ], [ -81.980357500999958, 28.806968653000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981715561999977, 28.807138369000029 ], [ -81.981225609999967, 28.80706415800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981052289, 28.807158278000031 ], [ -81.98119279499997, 28.807223243000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98106900199997, 28.807075163000036 ], [ -81.981052289, 28.807158278000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981225609999967, 28.80706415800006 ], [ -81.98106900199997, 28.807075163000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98119279499997, 28.807223243000067 ], [ -81.981225609999967, 28.80706415800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002083083999935, 28.957271115000026 ], [ -82.002716866999947, 28.957238911000047 ], [ -82.002881723999963, 28.957212778000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001651243999959, 28.957262943000046 ], [ -82.001535086, 28.957225971000071 ], [ -82.001165262999962, 28.957333087000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006568011999946, 28.956246253000074 ], [ -82.006398271999956, 28.956255054000053 ], [ -82.006185330999983, 28.956308270000079 ], [ -82.00609441499995, 28.956343987000025 ], [ -82.005890608999948, 28.956466271000068 ], [ -82.005642335999937, 28.956584849000023 ], [ -82.005490407999957, 28.956684900000027 ], [ -82.005345344999967, 28.956811641000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005345344999967, 28.956811641000058 ], [ -82.005794263999974, 28.956670078000059 ], [ -82.006112942999948, 28.956551499000057 ], [ -82.00643162199998, 28.956381043000079 ], [ -82.006568011999946, 28.956246253000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047947509999972, 28.927769410000053 ], [ -82.047886930999937, 28.92778753500005 ], [ -82.047843693999937, 28.927808457000026 ], [ -82.047815301999947, 28.927855335000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047934723999958, 28.92801625900006 ], [ -82.048011061999944, 28.92801208800006 ], [ -82.048054298999944, 28.927980009000066 ], [ -82.048084982999967, 28.927924220000079 ], [ -82.048082153999985, 28.927852600000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048082153999985, 28.927852600000051 ], [ -82.048061271999984, 28.92781264100006 ], [ -82.048027798999954, 28.927787536000039 ], [ -82.047994324999934, 28.92777916700004 ], [ -82.047947509999972, 28.927769410000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047815301999947, 28.927855335000061 ], [ -82.047804640999971, 28.927896325000063 ], [ -82.047819982999954, 28.927947930000073 ], [ -82.047843693999937, 28.927975825000033 ], [ -82.047893903999977, 28.92801208800006 ], [ -82.047934723999958, 28.92801625900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045669647999944, 28.928497588000027 ], [ -82.045673930999953, 28.928525742000033 ], [ -82.04569715599996, 28.928556112000024 ], [ -82.045718593999936, 28.928575764000072 ], [ -82.045758816999978, 28.928587384000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04590408699994, 28.928536832000077 ], [ -82.045911537999984, 28.928520382000045 ], [ -82.045918683999957, 28.928491798000039 ], [ -82.045915110999942, 28.928459641000074 ], [ -82.045905284999947, 28.928434630000027 ], [ -82.045882953999978, 28.928404259000047 ], [ -82.04584800899994, 28.92838755300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04584800899994, 28.92838755300005 ], [ -82.045808812999951, 28.928376568000033 ], [ -82.045770402999949, 28.928375674000051 ], [ -82.045728419999989, 28.928390860000036 ], [ -82.045698942999934, 28.928414978000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045758816999978, 28.928587384000025 ], [ -82.045770374999961, 28.928594536000048 ], [ -82.045812385999966, 28.928596309000056 ], [ -82.045852582999942, 28.928582910000046 ], [ -82.045880273999956, 28.928564152000035 ], [ -82.04590408699994, 28.928536832000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956049771999972, 28.845533757000055 ], [ -81.956288648999987, 28.845500627000035 ], [ -81.956394534999959, 28.845488729000067 ], [ -81.956542060999936, 28.845495868000057 ], [ -81.956649136999943, 28.845491109000079 ], [ -81.956768109999985, 28.845495868000057 ], [ -81.95688708299997, 28.845505385000024 ], [ -81.956994158999976, 28.845522042000027 ], [ -81.957110751999949, 28.845557734000067 ], [ -81.957177376999937, 28.845576769000047 ], [ -81.957289211999978, 28.845605323000029 ], [ -81.957517639999935, 28.845662430000061 ], [ -81.957748211999956, 28.845706003000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957748211999956, 28.845706003000032 ], [ -81.957661597999959, 28.845621979000043 ], [ -81.957364164999944, 28.845512524000071 ], [ -81.95702152299998, 28.845422104000079 ], [ -81.956728848999944, 28.845393551000029 ], [ -81.95653611299997, 28.845410207000043 ], [ -81.95613874299994, 28.845479211000054 ], [ -81.956049771999972, 28.845533757000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982135035999988, 28.789388135000024 ], [ -81.982073275999937, 28.789334279000059 ], [ -81.98203442199997, 28.789317342000061 ], [ -81.981994572999952, 28.789305388000059 ], [ -81.98192284299995, 28.789291440000056 ], [ -81.98185908399995, 28.789293433000068 ], [ -81.981774402999974, 28.789318339000033 ], [ -81.98170665799995, 28.789366158000064 ], [ -81.981664815999977, 28.789415971000039 ], [ -81.981644890999974, 28.789447850000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981797476999986, 28.789781581000057 ], [ -81.981850117999954, 28.789797656000076 ], [ -81.981923028999972, 28.789797656000076 ], [ -81.981951889999948, 28.789797656000076 ], [ -81.981998977999979, 28.789787023000031 ], [ -81.982040330999951, 28.789771720000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981644890999974, 28.789447850000045 ], [ -81.98163094399996, 28.789509617000078 ], [ -81.981622973999947, 28.789577362000045 ], [ -81.981639909999956, 28.789640125000062 ], [ -81.981696160999945, 28.789726607000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982136610999987, 28.789703965000058 ], [ -81.982173895999949, 28.789634148000061 ], [ -81.982189835999975, 28.789545482000051 ], [ -81.982173895999949, 28.789458809000052 ], [ -81.982135035999988, 28.789388135000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981992177999985, 28.790607414000078 ], [ -81.982010512999977, 28.79056762700003 ], [ -81.982013500999983, 28.79050486400007 ], [ -81.98197066299997, 28.789929036000046 ], [ -81.98199257999994, 28.789832400000023 ], [ -81.982040330999951, 28.789771720000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981797476999986, 28.789781581000057 ], [ -81.981848124999942, 28.789887193000027 ], [ -81.981871037999952, 28.789995784000041 ], [ -81.981915868999977, 28.790508849000048 ], [ -81.981941771999971, 28.790563642000052 ], [ -81.981992177999985, 28.790607414000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981696160999945, 28.789726607000034 ], [ -81.981705814999941, 28.789736897000068 ], [ -81.981752903999961, 28.789762720000056 ], [ -81.981797476999986, 28.789781581000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982040330999951, 28.789771720000033 ], [ -81.982073406999973, 28.789756644000079 ], [ -81.982112900999937, 28.789729302000069 ], [ -81.982136610999987, 28.789703965000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976858712999956, 28.790939706000074 ], [ -81.976893498999971, 28.790903856000057 ], [ -81.976924459999964, 28.790865611000072 ], [ -81.976953312999967, 28.790795551000031 ], [ -81.97697153699994, 28.790721935000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976418792999937, 28.790915943000073 ], [ -81.976512867999986, 28.790980347000072 ], [ -81.976589357999956, 28.79100584300005 ], [ -81.976652082999976, 28.791009006000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97697153699994, 28.790721935000079 ], [ -81.97696194599996, 28.790684767000073 ], [ -81.976949955999942, 28.790661636000038 ], [ -81.976924459999964, 28.790605179000067 ], [ -81.976886214, 28.790552364000064 ], [ -81.976831427999969, 28.790512078000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976831427999969, 28.790512078000063 ], [ -81.97680061799997, 28.790492264000079 ], [ -81.976713199999949, 28.790466767000055 ], [ -81.976616675999935, 28.790457661000062 ], [ -81.976500118999979, 28.790501370000072 ], [ -81.976394840999944, 28.790605017000075 ], [ -81.97634048599997, 28.790717011000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972471002999953, 28.791085767000027 ], [ -81.972517985999957, 28.791063392000069 ], [ -81.972578805999945, 28.791026900000077 ], [ -81.972616003999974, 28.790981857000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97207059699997, 28.790880469000058 ], [ -81.972089207999943, 28.790935670000067 ], [ -81.97211846, 28.790967384000055 ], [ -81.972157731999971, 28.791009962000032 ], [ -81.972215713999958, 28.791072823000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972215713999958, 28.791072823000036 ], [ -81.972305117999952, 28.791084678000061 ], [ -81.972370184999988, 28.791089754000041 ], [ -81.972471002999953, 28.791085767000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972154850999971, 28.790624981000065 ], [ -81.972089207999943, 28.790680228000042 ], [ -81.972074002999989, 28.790771457000062 ], [ -81.97207059699997, 28.790880469000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972616003999974, 28.790981857000077 ], [ -81.972651789999986, 28.79092958800004 ], [ -81.97266699499994, 28.790874850000023 ], [ -81.972679158999938, 28.790817072000038 ], [ -81.972649927999953, 28.79070544700005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972507757999949, 28.790606094000054 ], [ -81.972450845999958, 28.790570641000045 ], [ -81.972414925999942, 28.790557579000051 ], [ -81.972385069999973, 28.790553847000069 ], [ -81.972349149999957, 28.790553381000052 ], [ -81.972310336999954, 28.790556870000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972255042999961, 28.791972636000025 ], [ -81.972227200999953, 28.792339594000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972255042999961, 28.791972636000025 ], [ -81.972300060999942, 28.791860678000035 ], [ -81.972381541999937, 28.791188884000064 ], [ -81.972471002999953, 28.791085767000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97861331699994, 28.798505977000048 ], [ -81.978650364999964, 28.798471193000069 ], [ -81.978715597999951, 28.798428984000054 ], [ -81.97873862199998, 28.798336889000041 ], [ -81.978723272999957, 28.798248632000025 ], [ -81.978681062999954, 28.798164212000074 ], [ -81.978608560999987, 28.79813081900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976926414, 28.798663980000072 ], [ -81.977349102999938, 28.798524484000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97785702799996, 28.798346499000047 ], [ -81.977832356999954, 28.798350879000054 ], [ -81.977482747999943, 28.798457540000072 ], [ -81.977349102999938, 28.798524484000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981518250999954, 28.80423690300006 ], [ -81.981422252999948, 28.804126137000026 ], [ -81.981192808999936, 28.803658146000032 ], [ -81.981014866999942, 28.80332181600005 ], [ -81.98055534599996, 28.802434060000053 ], [ -81.98045366499997, 28.80223851900007 ], [ -81.980326562999949, 28.802050800000075 ], [ -81.980134932999988, 28.801855259000035 ], [ -81.97982011199997, 28.801620610000043 ], [ -81.979518978999977, 28.801407471000061 ], [ -81.979325393999943, 28.801268637000078 ], [ -81.979182648999938, 28.801127847000032 ], [ -81.979043814999955, 28.800961637000057 ], [ -81.978920623999954, 28.800732855000035 ], [ -81.978860005999934, 28.800588154000025 ], [ -81.978807209999957, 28.800367193000056 ], [ -81.978795477999938, 28.800165786000036 ], [ -81.978801343999976, 28.799850965000076 ], [ -81.978787655999952, 28.799401221000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978787655999952, 28.799401221000039 ], [ -81.978789611999957, 28.799039471000071 ], [ -81.978824808999946, 28.798787223000033 ], [ -81.978854139999953, 28.798534975000052 ], [ -81.978866675999939, 28.798426494000068 ], [ -81.978861852999955, 28.798344801000042 ], [ -81.978854601999956, 28.798263246000033 ], [ -81.978844926999955, 28.798181887000055 ], [ -81.978832835999981, 28.798100779000038 ], [ -81.978818334999971, 28.79801997800007 ], [ -81.978801435999969, 28.797939539000026 ], [ -81.978768406999961, 28.797839932000045 ], [ -81.978720991999978, 28.797704463000059 ], [ -81.978655966999952, 28.797563575000027 ], [ -81.978551655999979, 28.797377982000057 ], [ -81.978451408999945, 28.797169360000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978286207999986, 28.798226473000057 ], [ -81.97827431199994, 28.798283167000079 ], [ -81.978262800999971, 28.798336889000041 ], [ -81.978297120999969, 28.798411487000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978373654999984, 28.798141658000077 ], [ -81.978286207999986, 28.798226473000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978297120999969, 28.798411487000067 ], [ -81.978379385999972, 28.798501153000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978608560999987, 28.79813081900005 ], [ -81.978585522999936, 28.79807971200006 ], [ -81.978582813999935, 28.79796185400005 ], [ -81.97857062199995, 28.797694980000074 ], [ -81.978523207999956, 28.797445717000073 ], [ -81.978451408999945, 28.797169360000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978787655999952, 28.799401221000039 ], [ -81.97859823999994, 28.798699912000075 ], [ -81.978589252999939, 28.798585331000027 ], [ -81.97861331699994, 28.798505977000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978379385999972, 28.798501153000075 ], [ -81.978450826999961, 28.798532590000036 ], [ -81.978539083999976, 28.798521078000078 ], [ -81.97861331699994, 28.798505977000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978608560999987, 28.79813081900005 ], [ -81.978527571999962, 28.798106653000048 ], [ -81.978454663999969, 28.798106653000048 ], [ -81.978377089999981, 28.798139217000028 ], [ -81.978373654999984, 28.798141658000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02910067199997, 28.844760594000036 ], [ -82.029190751999977, 28.844788860000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029764732999979, 28.84613390100003 ], [ -82.029632806999984, 28.846099107000043 ], [ -82.029480810999985, 28.846059265000065 ], [ -82.029341732999967, 28.846027656000047 ], [ -82.029246906999958, 28.846000262000075 ], [ -82.029143651999959, 28.845968654000046 ], [ -82.029017217999979, 28.845930723000038 ], [ -82.028884461999951, 28.845890686000075 ], [ -82.028705341999967, 28.845828684000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028705341999967, 28.845828684000026 ], [ -82.028764813999942, 28.845950869000035 ], [ -82.02892660599997, 28.846027656000047 ], [ -82.029261657999939, 28.846107732000064 ], [ -82.029764732999979, 28.84613390100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027563804999943, 28.846043663000046 ], [ -82.02741574199996, 28.846041765000052 ], [ -82.027288906999956, 28.846034612000039 ], [ -82.027150189999986, 28.846019455000032 ], [ -82.026996228999963, 28.845994309000048 ], [ -82.026914855999962, 28.845974649000027 ], [ -82.026846323999962, 28.845953611000027 ], [ -82.026795497999956, 28.845934319000037 ], [ -82.026752667999972, 28.845912904000045 ], [ -82.026718403999951, 28.845891489000053 ], [ -82.02667415999997, 28.845867505000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020378689999973, 28.846406012000045 ], [ -82.020333807999975, 28.846381418000078 ], [ -82.020244059999982, 28.846290360000069 ], [ -82.020183045999943, 28.846181407000074 ], [ -82.020026153999936, 28.845852370000046 ], [ -82.020008306999955, 28.845778750000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020837925999956, 28.846734377000075 ], [ -82.020726090999972, 28.846672511000065 ], [ -82.020495283999935, 28.846529744000065 ], [ -82.020412003, 28.846458360000042 ], [ -82.020378689999973, 28.846406012000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02024543999994, 28.846439324000073 ], [ -82.020378689999973, 28.846406012000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020796238999935, 28.846840894000024 ], [ -82.020837925999956, 28.846734377000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022153767999953, 28.847167439000032 ], [ -82.021839678999982, 28.847105573000078 ], [ -82.021461805999934, 28.847006691000047 ], [ -82.021025186999964, 28.84685446800006 ], [ -82.020837925999956, 28.846734377000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02214424999994, 28.847245961000056 ], [ -82.022153767999953, 28.847167439000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023676622999972, 28.846862868000073 ], [ -82.023536234999938, 28.846974703000058 ], [ -82.023324462999938, 28.847091296000031 ], [ -82.023084136999955, 28.847160301000031 ], [ -82.022915195999985, 28.847184095000046 ], [ -82.022596347999979, 28.847219787000029 ], [ -82.022382195999967, 28.847210269000072 ], [ -82.022153767999953, 28.847167439000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023762283999986, 28.846903319000035 ], [ -82.023676622999972, 28.846862868000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024513857999978, 28.845826697000064 ], [ -82.024488922999979, 28.845895018000078 ], [ -82.024441073999981, 28.845998873000042 ], [ -82.02436471599998, 28.846134868000036 ], [ -82.024224802999981, 28.846327604000066 ], [ -82.02400922399994, 28.846573164000063 ], [ -82.023793644999955, 28.846767328000055 ], [ -82.023676622999972, 28.846862868000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027220966999948, 28.843101140000044 ], [ -82.027231727999947, 28.842916112000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027231727999947, 28.842916112000069 ], [ -82.027081323999937, 28.843055643000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004534961, 28.798515934000079 ], [ -82.004556897999976, 28.798575021000033 ], [ -82.004752800999938, 28.798887582000077 ], [ -82.004832169999986, 28.799129373000028 ], [ -82.004860795999946, 28.799256571000058 ], [ -82.004860795999946, 28.799254280000071 ], [ -82.004881617999956, 28.799390647000052 ], [ -82.004890730999989, 28.799535035000076 ], [ -82.004886832999944, 28.799639698000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005041863999963, 28.799648287000025 ], [ -82.005040339999937, 28.799518987000056 ], [ -82.005029925999963, 28.799370015000079 ], [ -82.005002597999976, 28.799216458000046 ], [ -82.00495965999994, 28.799072071000069 ], [ -82.004914120999956, 28.798948311000061 ], [ -82.004854246999969, 28.798837976000073 ], [ -82.004686988999936, 28.798506977000045 ], [ -82.004665208999938, 28.798458578000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963347533999979, 28.789222714000061 ], [ -81.962938627999961, 28.788695908000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967496778999987, 28.790385704000073 ], [ -81.968285442999957, 28.790689446000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967916072999969, 28.789034868000044 ], [ -81.967888703999961, 28.789142580000032 ], [ -81.967855309999948, 28.789231633000043 ], [ -81.967757907999953, 28.789414377000071 ], [ -81.967735644999948, 28.789496009000061 ], [ -81.967725917999985, 28.789597040000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967725917999985, 28.789597040000046 ], [ -81.967855800999985, 28.789415242000075 ], [ -81.967950855999959, 28.789276159000053 ], [ -81.96800187599996, 28.789208442000074 ], [ -81.968097848999946, 28.789112772000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968605171999968, 28.79080668000006 ], [ -81.968844967999985, 28.790902598000059 ], [ -81.969186011999966, 28.791035819000058 ], [ -81.969329889999983, 28.791078449000054 ], [ -81.969479096999976, 28.791078449000054 ], [ -81.969617645999961, 28.791003846000024 ], [ -81.970081799999946, 28.790070141000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967725917999985, 28.789597040000046 ], [ -81.967422174999967, 28.79022051000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968605171999968, 28.79080668000006 ], [ -81.968547763999936, 28.790733138000064 ], [ -81.968535896999981, 28.790678788000037 ], [ -81.968484221999972, 28.790622822000046 ], [ -81.968427739999981, 28.790618409000047 ], [ -81.968377435999969, 28.79062811700004 ], [ -81.96833242699995, 28.790652828000077 ], [ -81.968285442999957, 28.790689446000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968285442999957, 28.790689446000044 ], [ -81.968293595999967, 28.790747258000067 ], [ -81.968315658999984, 28.790800210000043 ], [ -81.968362432999982, 28.790837276000047 ], [ -81.968418031999988, 28.790846101000056 ], [ -81.968471866999948, 28.790834629000074 ], [ -81.968525700999976, 28.790811683000072 ], [ -81.968605171999968, 28.79080668000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967496778999987, 28.790385704000073 ], [ -81.967494040999952, 28.790303874000074 ], [ -81.967470660999936, 28.790249730000028 ], [ -81.967422174999967, 28.79022051000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967422174999967, 28.79022051000004 ], [ -81.967331585999943, 28.790225839000072 ], [ -81.967275006999955, 28.790244808000068 ], [ -81.967230337999979, 28.790300443000035 ], [ -81.967256981999981, 28.790380375000041 ], [ -81.967287312999986, 28.790433079000024 ], [ -81.967356221999978, 28.790453998000032 ], [ -81.967410365999967, 28.790438001000041 ], [ -81.967496778999987, 28.790385704000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972154850999971, 28.790624981000065 ], [ -81.972089539999956, 28.790650460000052 ], [ -81.972001528999954, 28.790648627000053 ], [ -81.971872263999956, 28.790626624000026 ], [ -81.971227769999985, 28.790420350000034 ], [ -81.970755629999985, 28.790234244000033 ], [ -81.970312826999987, 28.79003713700007 ], [ -81.969972702999939, 28.789864783000041 ], [ -81.969580322999946, 28.789645674000042 ], [ -81.969242948999977, 28.789441233000048 ], [ -81.968867987999943, 28.789191870000025 ], [ -81.968551699999978, 28.789002097000036 ], [ -81.968494859999964, 28.788960842000051 ], [ -81.968451770999934, 28.788923254000053 ], [ -81.968413879999957, 28.788884837000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970081799999946, 28.790070141000058 ], [ -81.97038708599996, 28.790217742000038 ], [ -81.97083263899998, 28.790405682000028 ], [ -81.971399207, 28.790613790000066 ], [ -81.971687074999977, 28.790704551000033 ], [ -81.971964857999978, 28.79078247700005 ], [ -81.972027198999967, 28.79081364700005 ], [ -81.972052868999981, 28.790835650000076 ], [ -81.97207059699997, 28.790880469000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965677385999982, 28.788011216000029 ], [ -81.96582740599996, 28.788085140000078 ], [ -81.966040385999975, 28.788172175000057 ], [ -81.966225718999965, 28.788258186000064 ], [ -81.966421290999961, 28.788340101000074 ], [ -81.966570786999966, 28.78839232200005 ], [ -81.966714137999986, 28.788432255000032 ], [ -81.966914347999989, 28.788481907000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966948503999959, 28.788354384000058 ], [ -81.966753047999987, 28.788300167000045 ], [ -81.966656797999974, 28.788272521000067 ], [ -81.966304561999948, 28.788181390000034 ], [ -81.965677385999982, 28.788011216000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968302269999981, 28.78906812200006 ], [ -81.968379065999954, 28.788982111000053 ], [ -81.968413879999957, 28.788884837000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967919708999943, 28.788643120000074 ], [ -81.967870151999989, 28.788727928000071 ], [ -81.967841878999934, 28.788812285000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967841878999934, 28.788812285000063 ], [ -81.967871078999963, 28.788921803000051 ], [ -81.967916072999969, 28.789034868000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967916072999969, 28.789034868000044 ], [ -81.968000019999977, 28.78908506700003 ], [ -81.968097848999946, 28.789112772000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968097848999946, 28.789112772000067 ], [ -81.968197606, 28.789104547000079 ], [ -81.968302269999981, 28.78906812200006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968371421999962, 28.788686922000068 ], [ -81.968278310999949, 28.788637020000067 ], [ -81.968192656999975, 28.788606128000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968302269999981, 28.78906812200006 ], [ -81.968358259999945, 28.789073606000045 ], [ -81.968399514999987, 28.789081857000042 ], [ -81.968490275999955, 28.789114860000041 ], [ -81.969220029999974, 28.789577833000067 ], [ -81.969594074999975, 28.789805193000063 ], [ -81.969937865999952, 28.789995883000074 ], [ -81.970081799999946, 28.790070141000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043990985999983, 28.796407086000045 ], [ -82.044175455999948, 28.796329141000058 ], [ -82.044315757999982, 28.796297963000029 ], [ -82.044497629999967, 28.796292766000079 ], [ -82.044913216999987, 28.79631474200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044913216999987, 28.79631474200005 ], [ -82.045010340999966, 28.796308083000042 ], [ -82.04512257, 28.796316500000046 ], [ -82.045386306999944, 28.796369809000055 ], [ -82.045666877999963, 28.796445563000077 ], [ -82.045840832999943, 28.796482037000033 ], [ -82.046026009999935, 28.796493260000034 ], [ -82.046286940999948, 28.79648484300003 ], [ -82.046533843999953, 28.796445563000077 ], [ -82.046854857999961, 28.796357573000023 ], [ -82.047131460999935, 28.796215495000069 ], [ -82.04720442699994, 28.796163857000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047677715999953, 28.795684888000039 ], [ -82.047839953999983, 28.795422445000042 ], [ -82.048096935999979, 28.794958450000024 ], [ -82.048245115999975, 28.794811881000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048245115999975, 28.794811881000044 ], [ -82.048753667999961, 28.794308857000033 ], [ -82.048786204999942, 28.794275349000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049259047999954, 28.793784680000044 ], [ -82.049403259999963, 28.793616434000057 ], [ -82.049476283, 28.793486850000079 ], [ -82.049528055999986, 28.793311398000071 ], [ -82.049550407999959, 28.793025666000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047011632999954, 28.795183241000075 ], [ -82.047092560999943, 28.79515120700006 ], [ -82.047316523999939, 28.795055904000037 ], [ -82.047678677999954, 28.794736636000039 ], [ -82.048360098999979, 28.794036155000072 ], [ -82.048946216, 28.793421446000025 ], [ -82.049257687999955, 28.793124442000078 ], [ -82.049398624999981, 28.793049660000065 ], [ -82.049550407999959, 28.793025666000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046580012999982, 28.796007405000069 ], [ -82.046254789999978, 28.795491609000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048539769999934, 28.795099409000045 ], [ -82.048245115999975, 28.794811881000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047677715999953, 28.795684888000039 ], [ -82.047866339999985, 28.795742573000041 ], [ -82.048093339, 28.795757706000074 ], [ -82.048524636999957, 28.795735006000029 ], [ -82.048925667999981, 28.795735006000029 ], [ -82.049092133999977, 28.795674473000076 ], [ -82.049251032999962, 28.795636640000055 ], [ -82.049167799999964, 28.795386941000061 ], [ -82.049356965999948, 28.79497077700006 ], [ -82.049311565999972, 28.794728645000077 ], [ -82.049099700999989, 28.794539479000036 ], [ -82.048786204999942, 28.794275349000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045573650999984, 28.796014971000034 ], [ -82.045481706999965, 28.795815567000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047011632999954, 28.795183241000075 ], [ -82.047298842999965, 28.79547774100007 ], [ -82.047677715999953, 28.795684888000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044913216999987, 28.79631474200005 ], [ -82.044985089999955, 28.796128517000056 ], [ -82.045041203999972, 28.796024706000026 ], [ -82.045150626999941, 28.795943340000065 ], [ -82.045481706999965, 28.795815567000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045481706999965, 28.795815567000034 ], [ -82.046254789999978, 28.795491609000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046254789999978, 28.795491609000067 ], [ -82.046282479999945, 28.795480005000059 ], [ -82.046573155999965, 28.795341814000039 ], [ -82.046863831999985, 28.795241746000045 ], [ -82.047011632999954, 28.795183241000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963347533999979, 28.789222714000061 ], [ -81.963680370999953, 28.789032027000076 ], [ -81.964450929999941, 28.788636766000025 ], [ -81.964826227999936, 28.788417177000042 ], [ -81.964878130999978, 28.788349303000075 ], [ -81.964886115999946, 28.788285423000048 ], [ -81.964890108999953, 28.788209565000045 ], [ -81.96485417599996, 28.78813769900006 ], [ -81.964541101999941, 28.787844955000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96230174699997, 28.790509434000057 ], [ -81.96244111599998, 28.790499918000023 ], [ -81.962573977999966, 28.79044411600006 ], [ -81.962873878999972, 28.790265720000036 ], [ -81.963504698999941, 28.789894414000059 ], [ -81.963676730999964, 28.789803722000045 ], [ -81.963747147999982, 28.789751906000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963047122999967, 28.790935972000057 ], [ -81.963137385999971, 28.791275831000064 ], [ -81.963277124999934, 28.791523368000071 ], [ -81.96350070699998, 28.791746950000061 ], [ -81.963716302999956, 28.791910644000041 ], [ -81.964015742999948, 28.792082323000045 ], [ -81.964303205999954, 28.792226054000025 ], [ -81.964642749999939, 28.792371440000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964642749999939, 28.792371440000068 ], [ -81.964670518999981, 28.792309897000052 ], [ -81.964782309999975, 28.792082323000045 ], [ -81.964931462999971, 28.791802110000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963737138999988, 28.790526707000026 ], [ -81.963768205999941, 28.79066098100003 ], [ -81.963756228999955, 28.790928480000048 ], [ -81.963816116999965, 28.791080197000042 ], [ -81.963919922999935, 28.791219935000072 ], [ -81.964123541999982, 28.791395607000027 ], [ -81.964426973999934, 28.791543331000071 ], [ -81.964931462999971, 28.791802110000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963047122999967, 28.790935972000057 ], [ -81.963737138999988, 28.790526707000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96507859899998, 28.790345150000064 ], [ -81.964840819999949, 28.790347266000026 ], [ -81.96449789899998, 28.790285901000061 ], [ -81.964205513999957, 28.790188440000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963737138999988, 28.790526707000026 ], [ -81.964143504999981, 28.790285682000047 ], [ -81.964205513999957, 28.790188440000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964205513999957, 28.790188440000065 ], [ -81.963967274999959, 28.789989907000063 ], [ -81.963747147999982, 28.789751906000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963454626999976, 28.792509935000055 ], [ -81.963250448999986, 28.792433110000047 ], [ -81.963013505999982, 28.792264618000047 ], [ -81.962733453999988, 28.791996890000064 ], [ -81.962629130999971, 28.79186971200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962215903999947, 28.789876395000078 ], [ -81.962821975999987, 28.789543071000026 ], [ -81.963297086999944, 28.789251616000058 ], [ -81.963347533999979, 28.789222714000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963747147999982, 28.789751906000049 ], [ -81.963347533999979, 28.789222714000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962938627999961, 28.788695908000079 ], [ -81.962693458999979, 28.788426933000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962215903999947, 28.789876395000078 ], [ -81.962149978999946, 28.789695100000074 ], [ -81.962013077999984, 28.789426564000053 ], [ -81.962013077999984, 28.789273868000066 ], [ -81.962049935999971, 28.789221214000065 ], [ -81.962149978999946, 28.789142233000064 ], [ -81.96236059499995, 28.789010598000061 ], [ -81.962938627999961, 28.788695908000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965677385999982, 28.788011216000029 ], [ -81.965674694999962, 28.78801016400007 ], [ -81.965627264999966, 28.787989344000039 ], [ -81.965580942999964, 28.787966673000028 ], [ -81.965535821999936, 28.787942194000038 ], [ -81.965491990999965, 28.787915958000042 ], [ -81.965449539999952, 28.787888018000046 ], [ -81.965408553999964, 28.78785842800005 ], [ -81.965342332999967, 28.787806977000059 ], [ -81.965277750999974, 28.787753932000044 ], [ -81.965214858999957, 28.787699334000024 ], [ -81.965153703999988, 28.787643226000057 ], [ -81.965094332999968, 28.78758565000004 ], [ -81.96506186299996, 28.787552357000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964541101999941, 28.787844955000025 ], [ -81.96506186299996, 28.787552357000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96230174699997, 28.790509434000057 ], [ -81.962301094999987, 28.790485055000033 ], [ -81.962278407999975, 28.790237248000039 ], [ -81.962255286999948, 28.789984697000079 ], [ -81.962215903999947, 28.789876395000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962750109999945, 28.791112137000027 ], [ -81.963047122999967, 28.790935972000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964522794999937, 28.792637285000069 ], [ -81.964642749999939, 28.792371440000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964931462999971, 28.791802110000049 ], [ -81.965197533999969, 28.791938592000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962375340999984, 28.791341961000057 ], [ -81.962313206999966, 28.790937736000046 ], [ -81.96230174699997, 28.790509434000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962629130999971, 28.79186971200005 ], [ -81.962385736999977, 28.79140959700004 ], [ -81.962375340999984, 28.791341961000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979367336999985, 28.822974457000043 ], [ -81.979320046999987, 28.822981054000024 ], [ -81.978626100999975, 28.823068274000036 ], [ -81.977540311999974, 28.823187503000042 ], [ -81.977154270999961, 28.823180825000065 ], [ -81.976940443999979, 28.823098985000058 ], [ -81.976762534999978, 28.822966283000028 ], [ -81.976713944999972, 28.822912590000044 ], [ -81.976635682999984, 28.822794012000031 ], [ -81.976606755999967, 28.822730255000067 ], [ -81.976570681999988, 28.822596832000045 ], [ -81.976564675999953, 28.822459781000077 ], [ -81.976588964999962, 28.822324307000031 ], [ -81.976706953999951, 28.822034261000056 ], [ -81.976820864, 28.821801512000036 ], [ -81.977040525999939, 28.821443443000078 ], [ -81.977219497999954, 28.821197574000053 ], [ -81.977477828999952, 28.820980016000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979367336999985, 28.822974457000043 ], [ -81.97927677499996, 28.82265420300007 ], [ -81.979240197999957, 28.82255034700006 ], [ -81.979130546999954, 28.822344918000056 ], [ -81.979020706999961, 28.822081194000077 ], [ -81.978870289999975, 28.821891375000064 ], [ -81.978524690999961, 28.82169078000004 ], [ -81.978154084999971, 28.821548810000024 ], [ -81.977911389999974, 28.821444916000075 ], [ -81.977766728999939, 28.821350430000052 ], [ -81.97758338999995, 28.821176058000049 ], [ -81.977477828999952, 28.820980016000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981408559999977, 28.822625472000027 ], [ -81.981522730999984, 28.822006298000076 ], [ -81.981579346, 28.821883555000056 ], [ -81.981662811999968, 28.821773334000056 ], [ -81.981830643999956, 28.821641131000035 ], [ -81.981964847999961, 28.821558785000036 ], [ -81.982111252999971, 28.821465697000065 ], [ -81.982212925999988, 28.821383346000061 ], [ -81.982298340999989, 28.821250858000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985601696999936, 28.823483659000033 ], [ -81.985584123999956, 28.823482050000052 ], [ -81.985328510999977, 28.823458651000067 ], [ -81.984943434999934, 28.823443272000077 ], [ -81.984695746999989, 28.823441540000033 ], [ -81.98447321499998, 28.823446627000067 ], [ -81.984175210999979, 28.823463634000063 ], [ -81.983960416999935, 28.823482353000031 ], [ -81.983722398999987, 28.823507886000073 ], [ -81.983503732999964, 28.823535125000035 ], [ -81.983059234999985, 28.823594660000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983059234999985, 28.823594660000026 ], [ -81.983116810999945, 28.823522279000031 ], [ -81.983139840999968, 28.823443318000045 ], [ -81.98309378, 28.82333968100005 ], [ -81.98301975399994, 28.823313361000032 ], [ -81.982373258999985, 28.823393967000072 ], [ -81.98225810799994, 28.823382452000033 ], [ -81.982161050999935, 28.823328166000067 ], [ -81.981987919999938, 28.823010190000048 ], [ -81.98190935599996, 28.822897031000025 ], [ -81.981808397999941, 28.822798607000038 ], [ -81.981622764999941, 28.822685848000049 ], [ -81.981482427999936, 28.822637703000055 ], [ -81.981408559999977, 28.822625472000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981408559999977, 28.822625472000027 ], [ -81.98133480499996, 28.822613259000036 ], [ -81.981259902999966, 28.822610160000067 ], [ -81.981110722999972, 28.822622243000069 ], [ -81.980977008999957, 28.82266852500004 ], [ -81.980301469999972, 28.822844153000062 ], [ -81.979367336999985, 28.822974457000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979144235999968, 28.815211670000053 ], [ -81.979340331999936, 28.814694663000068 ], [ -81.979547104999938, 28.814167359000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979420111999957, 28.814082459000076 ], [ -81.979387877999955, 28.814165466000077 ], [ -81.979195446999938, 28.814672227000074 ], [ -81.978990773999953, 28.815197839000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979144235999968, 28.815211670000053 ], [ -81.978990773999953, 28.815197839000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96225869999995, 28.792074354000079 ], [ -81.962604665999947, 28.792490071000032 ], [ -81.962621405999982, 28.792587722000064 ], [ -81.962540494999985, 28.792649103000031 ], [ -81.961019921999934, 28.792746755000053 ], [ -81.961017131999938, 28.792746755000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961017131999938, 28.792746755000053 ], [ -81.96023493499996, 28.792863465000039 ], [ -81.959558566999988, 28.793008629000042 ], [ -81.959463078999988, 28.792972748000068 ], [ -81.959421378999934, 28.792877822000037 ], [ -81.959434140999974, 28.792463068000075 ], [ -81.959496558999945, 28.792403579000052 ], [ -81.960004346999938, 28.792291978000037 ], [ -81.960696276999954, 28.792180376000033 ], [ -81.960916689999976, 28.792169216000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960916689999976, 28.792169216000048 ], [ -81.96225869999995, 28.792074354000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96225869999995, 28.792074354000079 ], [ -81.962629130999971, 28.79186971200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961017131999938, 28.792746755000053 ], [ -81.960916689999976, 28.792169216000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959699436999983, 28.79171516100007 ], [ -81.960274733999938, 28.791601534000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960274733999938, 28.791601534000051 ], [ -81.96062808399995, 28.791555134000077 ], [ -81.96096715699997, 28.791519442000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96096715699997, 28.791519442000038 ], [ -81.961634595999953, 28.791494458000045 ], [ -81.961870162999958, 28.791451628000061 ], [ -81.962375340999984, 28.791341961000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96096715699997, 28.791519442000038 ], [ -81.960949310999979, 28.791066155000067 ], [ -81.960892203999947, 28.790598591000048 ], [ -81.960728021999955, 28.789849061000041 ], [ -81.960642360999941, 28.789781246000075 ], [ -81.96048174699996, 28.789795523000066 ], [ -81.96002846, 28.789906168000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960274733999938, 28.791601534000051 ], [ -81.960199780999972, 28.790812742000071 ], [ -81.960117689999947, 28.790291641000067 ], [ -81.96002846, 28.789906168000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96002846, 28.789906168000073 ], [ -81.959906940999986, 28.789685818000066 ], [ -81.959730857999944, 28.789490972000067 ], [ -81.959440753999957, 28.789265817000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962748739999938, 28.794095216000073 ], [ -81.962658834999957, 28.793803026000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962658834999957, 28.793803026000035 ], [ -81.962595191999981, 28.793459562000066 ], [ -81.962577861999989, 28.793244171000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961292942999989, 28.793897772000037 ], [ -81.961639548999983, 28.793875490000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961639548999983, 28.793875490000062 ], [ -81.962658834999957, 28.793803026000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961639548999983, 28.793875490000062 ], [ -81.961639548999983, 28.793538787000045 ], [ -81.961632121999969, 28.793298638000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961632121999969, 28.793298638000067 ], [ -81.961604888999943, 28.793033732000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961632121999969, 28.793298638000067 ], [ -81.962577861999989, 28.793244171000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962577861999989, 28.793244171000026 ], [ -81.963286248999964, 28.793191179000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962461465999979, 28.788172413000041 ], [ -81.963422426999955, 28.787648252000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963422426999955, 28.787648252000054 ], [ -81.964124543999958, 28.787285869000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964124543999958, 28.787285869000073 ], [ -81.96353243599998, 28.786418739000055 ], [ -81.963441839999973, 28.786347557000056 ], [ -81.963370657999974, 28.786321672000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963422426999955, 28.787648252000054 ], [ -81.963079457999982, 28.787111149000054 ], [ -81.963063279999972, 28.786997904000032 ], [ -81.963150639999981, 28.786677584000074 ], [ -81.963280061999967, 28.786421975000053 ], [ -81.963370657999974, 28.786321672000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963370657999974, 28.786321672000042 ], [ -81.963538906999986, 28.786108125000055 ], [ -81.963723791999939, 28.785961021000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963286248999964, 28.793191179000075 ], [ -81.963394493999942, 28.792737902000056 ], [ -81.963451998999972, 28.792633040000055 ], [ -81.963454626999976, 28.792509935000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964348384999937, 28.787578490000044 ], [ -81.964124543999958, 28.787285869000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961815939999951, 28.796131674000037 ], [ -81.962159804999942, 28.796244462000061 ], [ -81.96251161899994, 28.796337055000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960795380999969, 28.794487553000067 ], [ -81.960993077999944, 28.794526233000056 ], [ -81.961474427999974, 28.794513340000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961474427999974, 28.794513340000037 ], [ -81.962230834999957, 28.794457469000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962230834999957, 28.794457469000065 ], [ -81.963624514999935, 28.794381876000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961815939999951, 28.796131674000037 ], [ -81.962028839999959, 28.795222471000045 ], [ -81.962235131999989, 28.794646571000044 ], [ -81.962230834999957, 28.794457469000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961099325999953, 28.795860709000067 ], [ -81.961474427999974, 28.794616486000052 ], [ -81.961474427999974, 28.794513340000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960447261999946, 28.795549101000063 ], [ -81.960795380999969, 28.794487553000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960795380999969, 28.794487553000067 ], [ -81.960941504999937, 28.793825698000035 ], [ -81.960944340999959, 28.793621564000034 ], [ -81.960880715999963, 28.793499616000076 ], [ -81.960769372999948, 28.79343599200007 ], [ -81.960620914999936, 28.793421708000039 ], [ -81.96048306199998, 28.793441294000047 ], [ -81.960356562999948, 28.793490380000037 ], [ -81.960244468999974, 28.79358975100007 ], [ -81.960202289999984, 28.79372255100003 ], [ -81.960163609999938, 28.794031990000065 ], [ -81.959854170999961, 28.795115027000065 ], [ -81.959910042, 28.795291235000036 ], [ -81.960064760999956, 28.795381489000079 ], [ -81.960447261999946, 28.795549101000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960447261999946, 28.795549101000063 ], [ -81.960793973999955, 28.795734167000035 ], [ -81.961099325999953, 28.795860709000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961099325999953, 28.795860709000067 ], [ -81.961436312999979, 28.795996879000029 ], [ -81.961815939999951, 28.796131674000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959889230999977, 28.787004591000027 ], [ -81.95997936599997, 28.787354527000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95997936599997, 28.787354527000048 ], [ -81.959979973999964, 28.787489465000078 ], [ -81.96013312599996, 28.787821109000049 ], [ -81.960313395999947, 28.787990775000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960313395999947, 28.787990775000026 ], [ -81.960594404999938, 28.788229367000042 ], [ -81.960891319999973, 28.788414940000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960891319999973, 28.788414940000052 ], [ -81.961304881, 28.788733063000052 ], [ -81.961453338999945, 28.788759574000039 ], [ -81.961617702999945, 28.788706553000054 ], [ -81.962461465999979, 28.788172413000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960891319999973, 28.788414940000052 ], [ -81.96199945099994, 28.787693859000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96199945099994, 28.787693859000058 ], [ -81.962190324999938, 28.787518891000047 ], [ -81.962259251999967, 28.787370433000035 ], [ -81.962269855999978, 28.786972779000052 ], [ -81.962349386999961, 28.786617541000055 ], [ -81.962550865999958, 28.786113845000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962550865999958, 28.786113845000045 ], [ -81.96285308299997, 28.78573209700005 ], [ -81.963294472999962, 28.785330787000078 ], [ -81.963336893999951, 28.785292382000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960313395999947, 28.787990775000026 ], [ -81.961480992999952, 28.787213309000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957265663999976, 28.787556872000039 ], [ -81.957493602999989, 28.787497871000028 ], [ -81.957774379999989, 28.787469317000046 ], [ -81.958664650999935, 28.787488018000033 ], [ -81.959519827999941, 28.787488018000033 ], [ -81.959856978999937, 28.787427244000071 ], [ -81.95997936599997, 28.787354527000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95997936599997, 28.787354527000048 ], [ -81.960110203999989, 28.787314378000076 ], [ -81.96080931399996, 28.786840806000043 ], [ -81.961026362999974, 28.786729348000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961957672999972, 28.785815628000023 ], [ -81.962550865999958, 28.786113845000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962461465999979, 28.788172413000041 ], [ -81.96199945099994, 28.787693859000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96199945099994, 28.787693859000058 ], [ -81.961480992999952, 28.787213309000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961480992999952, 28.787213309000037 ], [ -81.961188235999941, 28.786940966000031 ], [ -81.961026362999974, 28.786729348000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96442486899997, 28.786600332000035 ], [ -81.964297030999944, 28.786379684000053 ], [ -81.964229286999966, 28.786283575000027 ], [ -81.964159528999971, 28.786188591000041 ], [ -81.964087780999989, 28.78609476400004 ], [ -81.964014067999983, 28.786002128000064 ], [ -81.963938414999973, 28.785910713000078 ], [ -81.96386546399998, 28.78583734800003 ], [ -81.963786009999978, 28.785748471000034 ], [ -81.963704695999979, 28.785660909000057 ], [ -81.96362155099996, 28.785574693000058 ], [ -81.963559387999965, 28.78550776700007 ], [ -81.963472666999962, 28.785424330000069 ], [ -81.963378635999959, 28.785329663000027 ], [ -81.963336893999951, 28.785292382000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96507859899998, 28.790345150000064 ], [ -81.965060256999948, 28.790209359000073 ], [ -81.965216057999953, 28.789841669000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965216057999953, 28.789841669000054 ], [ -81.965695924999977, 28.788707438000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965695924999977, 28.788707438000074 ], [ -81.965839261999974, 28.788383372000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965216057999953, 28.789841669000054 ], [ -81.965357562999941, 28.789863633000039 ], [ -81.965790839999954, 28.789906187000042 ], [ -81.966011346999949, 28.789960346000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966011346999949, 28.789960346000044 ], [ -81.966344040999957, 28.790084140000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965695924999977, 28.788707438000074 ], [ -81.965779233999967, 28.788726281000038 ], [ -81.966433017999975, 28.788973868000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966433017999975, 28.788973868000028 ], [ -81.966769580999937, 28.789089924000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966011346999949, 28.789960346000044 ], [ -81.966433017999975, 28.788973868000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959777644999974, 28.78218527100006 ], [ -81.960431946999961, 28.782173154000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960431946999961, 28.782173154000077 ], [ -81.961126638999986, 28.782181232000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960431946999961, 28.782173154000077 ], [ -81.960435985999936, 28.780387958000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959773605999942, 28.782504344000074 ], [ -81.959777644999974, 28.78218527100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959777644999974, 28.78218527100006 ], [ -81.959777644999974, 28.780391997000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959439419999967, 28.78039059300005 ], [ -81.959777644999974, 28.780391997000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959777644999974, 28.780391997000038 ], [ -81.960435985999936, 28.780387958000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960435985999936, 28.780387958000063 ], [ -81.960751020999965, 28.78038391900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992497541999967, 28.787017602000049 ], [ -81.993002020999938, 28.786875444000032 ], [ -81.993079689999945, 28.786854535000032 ], [ -81.993157948999965, 28.786835413000063 ], [ -81.993194665999965, 28.786822761000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975385180999979, 28.822515809000038 ], [ -81.975489609999954, 28.822344842000064 ], [ -81.975774709999939, 28.821901474000072 ], [ -81.976399521999952, 28.820931356000074 ], [ -81.976811092999981, 28.820288227000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014279247, 28.866456250000056 ], [ -82.012319898999976, 28.866473098000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959699188999934, 28.949386449000031 ], [ -81.959570273999987, 28.949258016000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.173871748999943, 28.858579256000041 ], [ -82.173877860999937, 28.858768734000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165226749999988, 28.860119453000038 ], [ -82.165343080999946, 28.860286287000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.130051211999955, 28.877676206000046 ], [ -82.130152504999955, 28.877847835000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119954795999945, 28.879462844000045 ], [ -82.119940917999941, 28.879659412000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107404354999971, 28.877170625000076 ], [ -82.10743512099998, 28.877371295000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093095328999937, 28.873889477000034 ], [ -82.09311157999997, 28.873661875000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091780322999966, 28.873261659000036 ], [ -82.091689305999978, 28.873464224000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086853533999943, 28.871853860000044 ], [ -82.086843672999976, 28.871964817000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.079076540999949, 28.865737649000039 ], [ -82.078910575999942, 28.865862954000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061056808999979, 28.848536510000031 ], [ -82.061050605999981, 28.848739916000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055882020999945, 28.847413396000036 ], [ -82.055841843999985, 28.847245427000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053877256999954, 28.847122814000045 ], [ -82.053881506999971, 28.847293782000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03888505499998, 28.846753928000055 ], [ -82.038886297999966, 28.846622238000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010894553999947, 28.837324335000062 ], [ -82.010800967999955, 28.837480678000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998223553999935, 28.831223689000069 ], [ -81.998265939999953, 28.831030423000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986528389999989, 28.823812536000048 ], [ -81.986580475999972, 28.823644528000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971675234999964, 28.920047256000032 ], [ -81.97177923299995, 28.920171635000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983313468999938, 28.919973221000078 ], [ -81.983302542, 28.920096150000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98772465899998, 28.919967770000028 ], [ -81.987719865999964, 28.920094469000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008560356999965, 28.927184512000053 ], [ -82.008561015999987, 28.927311186000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020307958999979, 28.927414944000077 ], [ -82.020322564999958, 28.927289504000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023546260999979, 28.927305702000069 ], [ -82.023565866999945, 28.927429605000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028833920999944, 28.927321843000072 ], [ -82.028778519999946, 28.927444939000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017866096999967, 28.865319742000054 ], [ -82.017876696999963, 28.865476805000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001172204999989, 28.955020734000072 ], [ -82.001313449999941, 28.954996152000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000556560999939, 28.945511879000037 ], [ -82.000684724999985, 28.945435791000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020673259999967, 28.861843954000051 ], [ -82.020528764999938, 28.861837104000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020673525999939, 28.85801654100004 ], [ -82.020529348999958, 28.858183082000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038274977999947, 28.945622092000065 ], [ -82.038070547999951, 28.945622436000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037114755999937, 28.938319737000029 ], [ -82.036974321999935, 28.938324089000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037178960999938, 28.931078476000039 ], [ -82.037007639999956, 28.931110540000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037117001999945, 28.916462585000033 ], [ -82.036959782999986, 28.916425349000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037083877999976, 28.901909424000053 ], [ -82.036949583999956, 28.901905576000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037086639999984, 28.898325300000067 ], [ -82.036923287999969, 28.898325337000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037125644999946, 28.887315725000065 ], [ -82.036963870999955, 28.887311434000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037153438999951, 28.883576550000043 ], [ -82.037035, 28.88359538900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037040599999955, 28.877683273000059 ], [ -82.037184976999981, 28.87768741800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953738962999978, 28.820411249000074 ], [ -81.953761331999942, 28.820593090000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.188212797999938, 28.857458550000047 ], [ -82.188356651999982, 28.857643533000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134972489999939, 28.875068558000066 ], [ -82.134942820999981, 28.874847722000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994627737999963, 28.828505974000052 ], [ -81.994340270999942, 28.828537019000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958436912999957, 28.821512234000068 ], [ -81.95826733399997, 28.821654196000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037164720999954, 28.923822523000069 ], [ -82.037321005999956, 28.923946543000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037084465999953, 28.912861448000058 ], [ -82.036915988999965, 28.912762930000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037111728999946, 28.895528942000055 ], [ -82.037047322999967, 28.895408142000065 ], [ -82.037016838999989, 28.895168083000044 ], [ -82.036950455999943, 28.895095342000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03708173299998, 28.89183031400006 ], [ -82.037026606999973, 28.89172725800006 ], [ -82.037003744999936, 28.890917537000064 ], [ -82.036908388999962, 28.890845489000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037151540999957, 28.880075431000023 ], [ -82.037037436999981, 28.879833696000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045561524999982, 28.839227270000038 ], [ -82.045521212999972, 28.839026512000032 ], [ -82.045507586999975, 28.838275770000052 ], [ -82.045408993999956, 28.838218867000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96639201499994, 28.871922643000062 ], [ -81.966336598999987, 28.871834658000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045413335999967, 28.837606084000072 ], [ -82.045542461999958, 28.83778662900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04552870699996, 28.836628535000045 ], [ -82.045411190999971, 28.836646837000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99685336999994, 28.924499887000025 ], [ -81.996730668999987, 28.924571122000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996798398999942, 28.924627696000073 ], [ -81.99685336999994, 28.924499887000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027027864, 28.927314197000044 ], [ -82.026785164999978, 28.927444272000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037137571999949, 28.905825238000034 ], [ -82.036951322999982, 28.905572618000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02376486299994, 28.839841223000064 ], [ -82.023602656999969, 28.839862092000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015946369999938, 28.927382737000073 ], [ -82.015947232999963, 28.927254033000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015796315999978, 28.927250087000061 ], [ -82.015794577999941, 28.927382755000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037225512999953, 28.929380110000068 ], [ -82.037059735999946, 28.92978623700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999872099999948, 28.926711035000039 ], [ -81.999892170999942, 28.926854383000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999892170999942, 28.926854383000034 ], [ -81.999998716999983, 28.926755172000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980709219999937, 28.865300329000036 ], [ -81.980629014999977, 28.86542772100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980745955999964, 28.865426051000043 ], [ -81.980709219999937, 28.865300329000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989748076999945, 28.865425020000032 ], [ -81.989747802999943, 28.865300963000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989747802999943, 28.865300963000038 ], [ -81.989640718999965, 28.865425504000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967851371999984, 28.831100952000043 ], [ -81.968030260999967, 28.831144112000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968030260999967, 28.831144112000061 ], [ -81.968002440999953, 28.831023907000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027563804999943, 28.846043663000046 ], [ -82.027503175999982, 28.846137145000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027635776999944, 28.846132868000041 ], [ -82.027563804999943, 28.846043663000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037086500999976, 28.910260744000027 ], [ -82.037026486999935, 28.909996902000046 ], [ -82.037026486999935, 28.909263391000025 ], [ -82.036930594999944, 28.909144509000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029626267999959, 28.843894482000053 ], [ -82.029626597999936, 28.843894591000037 ], [ -82.030326498999955, 28.84412536800005 ], [ -82.031538317999946, 28.844525159000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037252495999951, 28.846152451000023 ], [ -82.037044723999941, 28.846084032000078 ], [ -82.036554938999984, 28.845922861000076 ], [ -82.03610039299997, 28.845774088000042 ], [ -82.035642325999959, 28.845625313000028 ], [ -82.035230064999951, 28.845492035000063 ], [ -82.035000828999955, 28.845424212000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035000828999955, 28.845424212000069 ], [ -82.034968262999939, 28.845557132000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035000828999955, 28.845424212000069 ], [ -82.034842475999938, 28.845377361000033 ], [ -82.03437384199998, 28.845234789000074 ], [ -82.033750176999945, 28.84504882400006 ], [ -82.033330876999969, 28.844918644000074 ], [ -82.032781204999935, 28.84474506600003 ], [ -82.032404187999987, 28.844621077000056 ], [ -82.031974318999971, 28.844481589000054 ], [ -82.031813668999973, 28.844428159000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031813668999973, 28.844428159000074 ], [ -82.03162612899996, 28.844445651000058 ], [ -82.031568120999964, 28.844472842000073 ], [ -82.031538317999946, 28.844525159000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183445462999941, 28.857837610000047 ], [ -82.181719510999983, 28.857972852000046 ], [ -82.179686379999964, 28.85813375400005 ], [ -82.178849457999945, 28.858194664000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183460556999989, 28.858028740000066 ], [ -82.18353826699996, 28.858022472000073 ], [ -82.184048743999938, 28.857985125000027 ], [ -82.184502253999938, 28.857949784000027 ], [ -82.185115692999943, 28.857900717000064 ], [ -82.185711604999938, 28.857851673000027 ], [ -82.18632942499994, 28.857802597000045 ], [ -82.186837705999949, 28.857763313000078 ], [ -82.187639561999958, 28.857702402000029 ], [ -82.188356651999982, 28.857643533000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183460556999989, 28.858028740000066 ], [ -82.183445462999941, 28.857837610000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153109736999966, 28.864615176000029 ], [ -82.154425066999977, 28.863859902000058 ], [ -82.154684621999934, 28.863707861000023 ], [ -82.154912879999983, 28.863587744000029 ], [ -82.155143714999951, 28.863480219000053 ], [ -82.155378663999954, 28.863380597000059 ], [ -82.155618712999967, 28.863283615000057 ], [ -82.155854096999974, 28.86320640200006 ], [ -82.156107202999976, 28.863129828000069 ], [ -82.156438742999967, 28.863044147000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156402506999939, 28.862852522000026 ], [ -82.156438742999967, 28.863044147000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.151000141999987, 28.865830724000034 ], [ -82.151559783999971, 28.86550660100005 ], [ -82.152296599999943, 28.865081624000027 ], [ -82.153109736999966, 28.864615176000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.15315508599997, 28.864359839000031 ], [ -82.153018402999976, 28.86443941400006 ], [ -82.15156239199996, 28.865279007000026 ], [ -82.150898985999959, 28.865660685000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.151000141999987, 28.865830724000034 ], [ -82.150898985999959, 28.865660685000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.146554962999971, 28.868158314000027 ], [ -82.145459210999945, 28.868790111000067 ], [ -82.144654822999939, 28.869256504000077 ], [ -82.143509871999981, 28.869917224000062 ], [ -82.143160009999974, 28.870119492000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14665301399998, 28.868335131000038 ], [ -82.147866806999957, 28.867636607000065 ], [ -82.150262273999942, 28.866258068000036 ], [ -82.151000141999987, 28.865830724000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14665301399998, 28.868335131000038 ], [ -82.146554962999971, 28.868158314000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137684863999937, 28.873272483000051 ], [ -82.137491298999976, 28.87338391000003 ], [ -82.136510674999954, 28.873948711000025 ], [ -82.134942820999981, 28.874847722000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137836564999986, 28.873434910000071 ], [ -82.137684863999937, 28.873272483000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137684863999937, 28.873272483000051 ], [ -82.137746945999936, 28.873489863000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068443072999969, 28.853615942000033 ], [ -82.067968185999973, 28.853103330000067 ], [ -82.067219541999975, 28.852384399000073 ], [ -82.066907243999935, 28.852109763000044 ], [ -82.06664546899998, 28.851883594000071 ], [ -82.066383697999981, 28.851665508000053 ], [ -82.066071418999968, 28.851415116000055 ], [ -82.065713227999936, 28.851144541000053 ], [ -82.065423927999973, 28.850934547000065 ], [ -82.065212693999968, 28.850781090000055 ], [ -82.065019831999962, 28.850647827000046 ], [ -82.064748913999949, 28.850470152000071 ], [ -82.064473406, 28.850288437000074 ], [ -82.06427595699995, 28.850159217000055 ], [ -82.064014233999956, 28.850001741000028 ], [ -82.063674458999969, 28.849803891000079 ], [ -82.063301716999945, 28.849601019000033 ], [ -82.062952032999988, 28.849409798000067 ], [ -82.062590600999954, 28.849218582000049 ], [ -82.062214489999974, 28.849040304000027 ], [ -82.061847199999988, 28.848872365000034 ], [ -82.061474034999947, 28.848704429000065 ], [ -82.061100877999934, 28.848549422000076 ], [ -82.061056808999979, 28.848536510000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061050605999981, 28.848739916000056 ], [ -82.061911514999963, 28.849109652000038 ], [ -82.06269661999994, 28.849497229000065 ], [ -82.063123620999988, 28.849727370000039 ], [ -82.063573582999936, 28.849973662000025 ], [ -82.064074072999972, 28.850276505000068 ], [ -82.064455186999965, 28.850518785000077 ], [ -82.06486844799997, 28.850785296000026 ], [ -82.065309282999976, 28.85110028500003 ], [ -82.065777673999946, 28.85143950500003 ], [ -82.066158838999968, 28.851746438000077 ], [ -82.06659052599997, 28.852101839000056 ], [ -82.066985489, 28.852445132000071 ], [ -82.067476917999954, 28.85290152500005 ], [ -82.068106174999969, 28.853543734000027 ], [ -82.068279814999983, 28.853739388000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068443072999969, 28.853615942000033 ], [ -82.068279814999983, 28.853739388000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061056808999979, 28.848536510000031 ], [ -82.060713043999954, 28.848407352000038 ], [ -82.060316394999973, 28.848262699000031 ], [ -82.059908277999966, 28.84812682200004 ], [ -82.059519909999949, 28.848005716000046 ], [ -82.059114190999935, 28.847888436000062 ], [ -82.058726932999946, 28.84778235400006 ], [ -82.058675401999949, 28.847771127000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058675401999949, 28.847771127000044 ], [ -82.058636460999935, 28.847949564000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041367746999981, 28.847048503000053 ], [ -82.041183354999987, 28.847027005000029 ], [ -82.040935949999948, 28.846997323000039 ], [ -82.040621129999977, 28.84695156600003 ], [ -82.040282876999981, 28.846895833000076 ], [ -82.040127845999962, 28.846877266000035 ], [ -82.039824824999982, 28.846821519000059 ], [ -82.039440763999949, 28.846744083000033 ], [ -82.039112350999972, 28.84667494100006 ], [ -82.038886297999966, 28.846622238000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041351048999957, 28.847176924000053 ], [ -82.041367746999981, 28.847048503000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000337395999964, 28.933082870000078 ], [ -82.000247105999961, 28.933268508000026 ], [ -82.000200488999951, 28.933398371000067 ], [ -82.000172000999953, 28.933494060000044 ], [ -82.000147391999974, 28.933603181000024 ], [ -82.000133152999979, 28.933680881000043 ], [ -82.000120911999943, 28.933793601000048 ], [ -82.000112433999959, 28.933895042000074 ], [ -82.000112330999968, 28.934115400000053 ], [ -82.00010984499994, 28.934551196000029 ], [ -82.000109845999987, 28.935200513000041 ], [ -82.000109845999987, 28.935583268000073 ], [ -82.000107306999951, 28.936543938000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000245834999987, 28.936540432000072 ], [ -82.000250153999957, 28.935842702000059 ], [ -82.00025114999994, 28.934656726000071 ], [ -82.00025322, 28.934077125000044 ], [ -82.000259201999938, 28.933785309000029 ], [ -82.000271741999939, 28.933686237000074 ], [ -82.000285558999963, 28.93361128500004 ], [ -82.000303980999945, 28.933524178000027 ], [ -82.000383050999972, 28.933289178000052 ], [ -82.000425185999973, 28.933204076000038 ], [ -82.000461753999957, 28.933133221000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000245834999987, 28.936540432000072 ], [ -82.000107306999951, 28.936543938000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974960591999945, 28.865298447000043 ], [ -81.973528607999981, 28.865299770000036 ], [ -81.971779990999948, 28.865298969000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971771817999979, 28.865428547000079 ], [ -81.971839913999986, 28.865428561000044 ], [ -81.972935079999957, 28.865428785000063 ], [ -81.974303478999957, 28.865428067000039 ], [ -81.974702128, 28.865428142000042 ], [ -81.974965840999971, 28.865427688000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971771817999979, 28.865428547000079 ], [ -81.971779990999948, 28.865298969000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999805327999979, 28.832316867000031 ], [ -82.00039054399997, 28.832722223000076 ], [ -82.001315971999986, 28.83336421000007 ], [ -82.001916654999945, 28.833781957000042 ], [ -82.002257171999986, 28.834004304000075 ], [ -82.00260151699996, 28.834223282000039 ], [ -82.002957340999956, 28.834442258000024 ], [ -82.003324644999964, 28.834657864000064 ], [ -82.003694722999967, 28.834857499000066 ], [ -82.004070732999935, 28.835048645000029 ], [ -82.004304249999961, 28.835163965000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00437390899998, 28.834992709000062 ], [ -82.004304249999961, 28.835163965000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990863586999978, 28.825896174000036 ], [ -81.990812276999975, 28.825860212000066 ], [ -81.990644299999985, 28.825749600000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99040778899996, 28.825806447000048 ], [ -81.990644299999985, 28.825749600000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990863586999978, 28.825896174000036 ], [ -81.990700825999966, 28.825829618000057 ], [ -81.990602691999982, 28.825813262000054 ], [ -81.990495018, 28.825806447000048 ], [ -81.99040778899996, 28.825806447000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967910825, 28.823121234000041 ], [ -81.967515871999979, 28.823068283000055 ], [ -81.966956895999942, 28.822987017000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968524717999969, 28.82320770900003 ], [ -81.96840094099997, 28.823203032000038 ], [ -81.968284144999984, 28.823209612000028 ], [ -81.96820024799996, 28.82323264300004 ], [ -81.968136091999952, 28.823273768000035 ], [ -81.968087428, 28.823326645000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982861916, 28.823797650000074 ], [ -81.983925146, 28.823660805000031 ], [ -81.98416806299997, 28.823640008000041 ], [ -81.984438924999949, 28.823626789000059 ], [ -81.984703336999985, 28.823617353000031 ], [ -81.984969896999985, 28.823621169000035 ], [ -81.985236456999985, 28.823630664000063 ], [ -81.985505162999971, 28.82365151700003 ], [ -81.985765269999945, 28.823679942000069 ], [ -81.986023227999965, 28.823714045000031 ], [ -81.986255387999961, 28.823755716000051 ], [ -81.986528389999989, 28.823812536000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983059234999985, 28.823594660000026 ], [ -81.982985053999982, 28.823620822000066 ], [ -81.98291925999996, 28.823648236000054 ], [ -81.98288910399998, 28.823681133000036 ], [ -81.982853465999938, 28.823746927000059 ], [ -81.982861916, 28.823797650000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981913236999958, 28.823922964000076 ], [ -81.982419626999956, 28.823856834000026 ], [ -81.982764292999946, 28.823810215000037 ], [ -81.982861916, 28.823797650000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983059234999985, 28.823594660000026 ], [ -81.982102977999944, 28.823719099000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981913236999958, 28.823922964000076 ], [ -81.982022816999972, 28.82388125600005 ], [ -81.982088610999938, 28.823834652000073 ], [ -81.982116024999982, 28.823777083000039 ], [ -81.982102977999944, 28.823719099000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968524717999969, 28.82320770900003 ], [ -81.968009291999977, 28.823134435000043 ], [ -81.967910825, 28.823121234000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967574068999966, 28.823253918000034 ], [ -81.968087428, 28.823326645000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967574068999966, 28.823253918000034 ], [ -81.967673692999938, 28.823247632000061 ], [ -81.967786617999934, 28.823222789000056 ], [ -81.967874698999935, 28.82319117000003 ], [ -81.967899542999987, 28.823161809000055 ], [ -81.967910825, 28.823121234000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966956895999942, 28.822987017000059 ], [ -81.966649973999949, 28.822942395000041 ], [ -81.965926779999961, 28.822839968000039 ], [ -81.965325222999979, 28.822754581000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96535720199995, 28.822939630000064 ], [ -81.965325222999979, 28.822754581000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965325222999979, 28.822754581000027 ], [ -81.965237286, 28.822922345000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960255927999981, 28.955221008000024 ], [ -81.96025885499995, 28.955223892000049 ], [ -81.961111198999959, 28.956063869000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961467596999967, 28.956154001000073 ], [ -81.960677876999966, 28.955371744000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961467596999967, 28.956154001000073 ], [ -81.961394369999937, 28.956110495000075 ], [ -81.961310645999959, 28.956069901000035 ], [ -81.961234533999971, 28.956054679000033 ], [ -81.961160958999983, 28.956052142000033 ], [ -81.961111198999959, 28.956063869000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98257072499996, 28.786249228000031 ], [ -81.982350235999945, 28.786141397000051 ], [ -81.982179063999979, 28.786098604000074 ], [ -81.981998365999971, 28.786069705000045 ], [ -81.981791566999959, 28.786069705000045 ], [ -81.981612967, 28.786086155000078 ], [ -81.981521317999977, 28.786109654000029 ], [ -81.981460217999938, 28.786140204000048 ], [ -81.981422617999954, 28.786187204000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981422617999954, 28.786187204000043 ], [ -81.981276917999935, 28.786396354000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979707189999942, 28.786126334000073 ], [ -81.979856964999954, 28.786192550000067 ], [ -81.979967325999951, 28.786236695000071 ], [ -81.98012307099998, 28.786260054000024 ], [ -81.980487319999952, 28.786276504000057 ], [ -81.980752868999957, 28.786290604000044 ], [ -81.980903268999953, 28.786321154000063 ], [ -81.981025468999974, 28.786351704000026 ], [ -81.981152367999982, 28.786386954000079 ], [ -81.981276917999935, 28.786396354000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98257072499996, 28.786249228000031 ], [ -81.981530978999956, 28.785650876000034 ], [ -81.980618837999941, 28.785163066000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981422617999954, 28.786187204000043 ], [ -81.98125186599998, 28.786030215000039 ], [ -81.981112072999963, 28.785848781000027 ], [ -81.980884468999989, 28.785493956000039 ], [ -81.980759918999979, 28.785324756000023 ], [ -81.980680019999966, 28.785228407000034 ], [ -81.980618837999941, 28.785163066000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979707189999942, 28.786126334000073 ], [ -81.98101835999995, 28.786875513000041 ], [ -81.981425037999941, 28.787103577000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981276917999935, 28.786396354000033 ], [ -81.981222867999975, 28.786488004000034 ], [ -81.981208052999989, 28.786577471000044 ], [ -81.981220517999986, 28.786657203000061 ], [ -81.981274567999947, 28.786786453000047 ], [ -81.98137326799997, 28.786997952000036 ], [ -81.981425037999941, 28.787103577000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966122674999951, 28.920038127000055 ], [ -81.965836299999978, 28.920038935000036 ], [ -81.964590300999987, 28.920041267000045 ], [ -81.964077419999967, 28.920041131000062 ], [ -81.96388292599994, 28.92003070800007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966122674999951, 28.920038127000055 ], [ -81.966137015999948, 28.920167529000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962689676999958, 28.919849503000023 ], [ -81.96263539499995, 28.919836353000051 ], [ -81.962418194999941, 28.919780552000077 ], [ -81.962188933999983, 28.91970881900005 ], [ -81.961956658999952, 28.919626470000026 ], [ -81.96174248799997, 28.919544124000026 ], [ -81.961549436999974, 28.91945647600005 ], [ -81.961460353999939, 28.919412286000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961388329999977, 28.919542026000045 ], [ -81.961551523999958, 28.919619653000041 ], [ -81.961881962999939, 28.919755440000074 ], [ -81.962131635999981, 28.91984381900005 ], [ -81.962354384999969, 28.919914958000049 ], [ -81.962481672999957, 28.919951609000066 ], [ -81.962594272999979, 28.919981794000023 ], [ -81.962661121999986, 28.919996785000023 ], [ -81.962662207999983, 28.919997028000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961460353999939, 28.919412286000068 ], [ -81.961388329999977, 28.919542026000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974356345999979, 28.920150917000058 ], [ -81.974484541999971, 28.920144308000033 ], [ -81.974736696999969, 28.920133585000031 ], [ -81.974976611999978, 28.920120707000024 ], [ -81.975228765999987, 28.920114292000051 ], [ -81.975476022999942, 28.920110030000046 ], [ -81.975853026999971, 28.920107943000062 ], [ -81.976102732999948, 28.920103681000057 ], [ -81.976352437999935, 28.920105878000072 ], [ -81.976713938999978, 28.920105941000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976711559999956, 28.919977549000066 ], [ -81.976639990999956, 28.919977537000079 ], [ -81.975855584999977, 28.919977399000061 ], [ -81.975152635999962, 28.91999054300004 ], [ -81.974335436999979, 28.920021820000045 ], [ -81.974314598999968, 28.920022618000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976711559999956, 28.919977549000066 ], [ -81.976713938999978, 28.920105941000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99057040699995, 28.920128236000039 ], [ -81.990430423999953, 28.92009601500007 ], [ -81.99018605599997, 28.92005352700005 ], [ -81.989926600999979, 28.92001900200006 ], [ -81.989802101999942, 28.920002927000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989829759999964, 28.920136897000077 ], [ -81.98983891499995, 28.920137726000064 ], [ -81.990083718999983, 28.920170051000071 ], [ -81.990228154999954, 28.920189447000041 ], [ -81.990333420999946, 28.920208839000054 ], [ -81.990459462999979, 28.920235545000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99057040699995, 28.920128236000039 ], [ -81.990536806999955, 28.920141168000043 ], [ -81.990500104999967, 28.920154381000032 ], [ -81.990476615999967, 28.920174934000045 ], [ -81.990463402999978, 28.920192551000071 ], [ -81.990459462999979, 28.920235545000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99685336999994, 28.924499887000025 ], [ -81.996035768999946, 28.923799118000034 ], [ -81.995227229999955, 28.923111615000039 ], [ -81.99424070799995, 28.922262183000043 ], [ -81.994052226999941, 28.922104240000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993970225999988, 28.922210849000066 ], [ -81.994159653999986, 28.92237583900004 ], [ -81.994446072999949, 28.922612776000051 ], [ -81.994862238999985, 28.922974640000064 ], [ -81.995070322999936, 28.923153418000027 ], [ -81.995413051999947, 28.923444201000052 ], [ -81.995841464999955, 28.923810370000069 ], [ -81.996081377999985, 28.924017147000029 ], [ -81.996382493999988, 28.924275618000024 ], [ -81.996686059999945, 28.924534090000066 ], [ -81.996730668999987, 28.924571122000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994052226999941, 28.922104240000067 ], [ -81.993970225999988, 28.922210849000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000880153999958, 28.865321742000049 ], [ -82.000842661999968, 28.865335942000058 ], [ -82.000798239999938, 28.865362318000052 ], [ -82.000770475999957, 28.86538730500007 ], [ -82.000755205999951, 28.865416457000038 ], [ -82.000753370999973, 28.865455652000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004152248999958, 28.865327741000044 ], [ -82.00410818499995, 28.865343491000033 ], [ -82.00405399899995, 28.865362998000023 ], [ -82.00402365399998, 28.865389007000033 ], [ -82.004004146999989, 28.865421519000051 ], [ -82.004000513999983, 28.865454176000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008162509999977, 28.865336573000036 ], [ -82.008163098999944, 28.865460619000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02488148599997, 28.865351378000071 ], [ -82.024881475999962, 28.865351378000071 ], [ -82.023223209999969, 28.865353332000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023229209999954, 28.865500651000048 ], [ -82.023223209999969, 28.865353332000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025826347999953, 28.865353159000051 ], [ -82.025600216999976, 28.865350531000047 ], [ -82.02488148599997, 28.865351378000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024889612999971, 28.865485858000056 ], [ -82.025532252999938, 28.86548444400006 ], [ -82.025835993999976, 28.865482988000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025826347999953, 28.865353159000051 ], [ -82.025835993999976, 28.865482988000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958100243999979, 28.947132360000069 ], [ -81.958269634999965, 28.947147539000071 ], [ -81.958449587999951, 28.947160547000067 ], [ -81.958635090999962, 28.947168021000039 ], [ -81.958851514999935, 28.947168088000069 ], [ -81.958960906999948, 28.947167873000069 ], [ -81.959081432999938, 28.947159999000064 ], [ -81.959192962999964, 28.947155287000044 ], [ -81.959336874999963, 28.947142672000041 ], [ -81.959453804999953, 28.947133214000075 ], [ -81.959590747999982, 28.947118866000039 ], [ -81.959626641999989, 28.947114050000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958107816999984, 28.947024531000068 ], [ -81.958100243999979, 28.947132360000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959626641999989, 28.947114050000039 ], [ -81.959632877999979, 28.947113213000023 ], [ -81.959730839999963, 28.947100070000033 ], [ -81.959854967999945, 28.947081121000053 ], [ -81.95993926899996, 28.947065786000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959923442, 28.946957454000028 ], [ -81.95993926899996, 28.947065786000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968713956999977, 28.921343278000052 ], [ -81.968711785999972, 28.921604739000031 ], [ -81.96871168499996, 28.921940149000079 ], [ -81.968711648999943, 28.922060435000049 ], [ -81.968700849999948, 28.922230877000061 ], [ -81.968690495999965, 28.922299060000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968787083999985, 28.922314948000064 ], [ -81.968807197, 28.922230902000024 ], [ -81.968815284999948, 28.922193005000054 ], [ -81.968821777999949, 28.92215036500005 ], [ -81.968828772999984, 28.922104181000066 ], [ -81.968834169, 28.922066283000049 ], [ -81.968836874999965, 28.922024832000034 ], [ -81.968840934999946, 28.921947850000038 ], [ -81.968845020999936, 28.921790333000047 ], [ -81.96884916099998, 28.921451610000076 ], [ -81.96885027899998, 28.921335934000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968713956999977, 28.921343278000052 ], [ -81.96885027899998, 28.921335934000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968720356999938, 28.920778821000056 ], [ -81.96871985599995, 28.920998686000075 ], [ -81.968714513999942, 28.921276267000053 ], [ -81.968713956999977, 28.921343278000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96885027899998, 28.921335934000069 ], [ -81.968853327999966, 28.921020508000026 ], [ -81.96884892099996, 28.920771353000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968720356999938, 28.920778821000056 ], [ -81.96884892099996, 28.920771353000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968638349999935, 28.894523530000072 ], [ -81.968573319999962, 28.89454203400004 ], [ -81.96850021399996, 28.894564072000037 ], [ -81.968381161999957, 28.894576910000069 ], [ -81.968257932999961, 28.894589748000044 ], [ -81.968059516999972, 28.89459705400003 ], [ -81.967869457999939, 28.894597009000051 ], [ -81.967712394999978, 28.894589999000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967699680999942, 28.89469342600006 ], [ -81.96787732599995, 28.894707496000024 ], [ -81.968010039999967, 28.894709085000045 ], [ -81.968125721999968, 28.894708334000029 ], [ -81.968298254, 28.89469669500005 ], [ -81.968404647999989, 28.894688934000044 ], [ -81.968533828999966, 28.894671835000054 ], [ -81.968643322999981, 28.894655899000043 ], [ -81.96864788299996, 28.894655900000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967712394999978, 28.894589999000061 ], [ -81.967699680999942, 28.89469342600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965226690999941, 28.872338964000051 ], [ -81.965209957999946, 28.872370430000046 ], [ -81.965185738999935, 28.872410115000037 ], [ -81.965163381999957, 28.872438522000039 ], [ -81.965127363999954, 28.872476762000076 ], [ -81.965078931999983, 28.872511721000023 ], [ -81.96495557999998, 28.872578984000029 ], [ -81.964841578999938, 28.872640709000052 ], [ -81.964739923999957, 28.872709436000036 ], [ -81.964689789999966, 28.872740960000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964754385999981, 28.872838767000076 ], [ -81.964965629999938, 28.872702458000049 ], [ -81.965142119999939, 28.872606568000037 ], [ -81.965209598999934, 28.872577653000064 ], [ -81.965256312999941, 28.872568528000045 ], [ -81.965297831999976, 28.872565494000071 ], [ -81.965373954999961, 28.872559423000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964689789999966, 28.872740960000044 ], [ -81.964754385999981, 28.872838767000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962383456999987, 28.859838849000027 ], [ -81.962477166999975, 28.859816379000051 ], [ -81.962583047999942, 28.859792726000023 ], [ -81.962749405999944, 28.859760743000038 ], [ -81.962837828999966, 28.859736226000052 ], [ -81.962878032999981, 28.85972534900003 ], [ -81.963044558999968, 28.859645361000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963044558999968, 28.859645361000048 ], [ -81.962894477999953, 28.859632790000035 ], [ -81.962777319999987, 28.859648037000056 ], [ -81.962648444999957, 28.859665190000044 ], [ -81.962532150999948, 28.859688077000044 ], [ -81.962421061999976, 28.859715548000054 ], [ -81.962360842999942, 28.859725925000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962383456999987, 28.859838849000027 ], [ -81.962360842999942, 28.859725925000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966393596999978, 28.835363508000057 ], [ -81.966439885999989, 28.835353081000051 ], [ -81.966480665999939, 28.835346216000062 ], [ -81.966528383999957, 28.835343172000023 ], [ -81.966571764999969, 28.835342037000032 ], [ -81.966655980999974, 28.835348658000044 ], [ -81.966786112999955, 28.835376193000059 ], [ -81.966813817999935, 28.835381490000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96683643199998, 28.835302720000072 ], [ -81.96671450599996, 28.835275990000071 ], [ -81.966663320999942, 28.835265282000023 ], [ -81.96660693299998, 28.835249607000037 ], [ -81.966584377999936, 28.83524043400007 ], [ -81.966554015999975, 28.835223619000033 ], [ -81.966526258999977, 28.835206042000038 ], [ -81.966505559999973, 28.835186820000047 ], [ -81.966466779999962, 28.835146376000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966813817999935, 28.835381490000032 ], [ -81.96683643199998, 28.835302720000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966062028999943, 28.834974937000027 ], [ -81.966013579999981, 28.834983601000033 ], [ -81.965969979999954, 28.834991898000055 ], [ -81.965932237999937, 28.834997045000023 ], [ -81.965893846999961, 28.834996462000049 ], [ -81.965865216999987, 28.834994163000033 ], [ -81.965819670999963, 28.83498441100005 ], [ -81.965755257999945, 28.834966633000079 ], [ -81.965699954999934, 28.834948857000029 ], [ -81.965648554999973, 28.834927644000061 ], [ -81.965556818999971, 28.834889805000046 ], [ -81.965413035999973, 28.83482559600003 ], [ -81.965288695999959, 28.834759553000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965216987999952, 28.834855745000027 ], [ -81.965353789999938, 28.834925850000047 ], [ -81.965501475999986, 28.834991206000041 ], [ -81.965617935999944, 28.835038219000069 ], [ -81.965722686999982, 28.835075489000076 ], [ -81.965802060999977, 28.835109887000044 ], [ -81.965852153999947, 28.83514427800003 ], [ -81.965885113999946, 28.835169592000057 ], [ -81.965912700999979, 28.835195193000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965288695999959, 28.834759553000026 ], [ -81.965216987999952, 28.834855745000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959570273999987, 28.949258016000044 ], [ -81.959086124999942, 28.949271961000079 ], [ -81.958335156999965, 28.94930664900005 ], [ -81.958020882999961, 28.949303641000029 ], [ -81.957769470999949, 28.949280284000054 ], [ -81.957618087999947, 28.949260066000079 ], [ -81.957536649999952, 28.949243485000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957505300999969, 28.949360479000063 ], [ -81.957599291999941, 28.94938019500006 ], [ -81.95768766499998, 28.949394355000038 ], [ -81.957786750999958, 28.949406165000028 ], [ -81.957896550999976, 28.949415621000071 ], [ -81.957966177999936, 28.949422710000078 ], [ -81.958097402999954, 28.949432173000048 ], [ -81.958242021, 28.949434574000065 ], [ -81.958448239999939, 28.949425215000076 ], [ -81.958627677999971, 28.949415848000058 ], [ -81.958932988999948, 28.949406519000036 ], [ -81.959080289999974, 28.949397142000066 ], [ -81.95919545299995, 28.949387755000032 ], [ -81.959321323999973, 28.949387793000028 ], [ -81.959425771999975, 28.949385469000049 ], [ -81.95950070799995, 28.949385492000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956583011999953, 28.949042620000057 ], [ -81.956592455999953, 28.949047736000068 ], [ -81.956651361999945, 28.949078379000071 ], [ -81.956715623999969, 28.949106666000034 ], [ -81.95677453199994, 28.949134952000065 ], [ -81.956846827999982, 28.949165598000036 ], [ -81.956940547999977, 28.949200962000077 ], [ -81.957018200999983, 28.949229253000055 ], [ -81.957082466999964, 28.949252829000045 ], [ -81.957157443999961, 28.949276410000039 ], [ -81.957237779999957, 28.949295280000058 ], [ -81.957390416999942, 28.949335372000064 ], [ -81.957486820999975, 28.949356603000069 ], [ -81.957505300999969, 28.949360479000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957536649999952, 28.949243485000068 ], [ -81.957488295999951, 28.949233640000045 ], [ -81.957304775999944, 28.94919165400006 ], [ -81.957170885999972, 28.949151568000048 ], [ -81.957007543999964, 28.94909498100003 ], [ -81.956823443999951, 28.94901810600004 ], [ -81.956641126999955, 28.948925093000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956641126999955, 28.948925093000071 ], [ -81.956583011999953, 28.949042620000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957536649999952, 28.949243485000068 ], [ -81.957505300999969, 28.949360479000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974838764999959, 28.952659262000054 ], [ -81.976839145999975, 28.952658565000036 ], [ -81.978560602999949, 28.952665294000042 ], [ -81.979854748999969, 28.952663346000065 ], [ -81.979996372999949, 28.952663367000071 ], [ -81.980091602999948, 28.952661234000061 ], [ -81.980162413999949, 28.952663392000034 ], [ -81.980260084999941, 28.952663406000056 ], [ -81.980338220999954, 28.952667713000039 ], [ -81.980409031999955, 28.95267631400003 ], [ -81.980484725999986, 28.952680620000024 ], [ -81.98055553599994, 28.952687074000039 ], [ -81.980628788, 28.952695675000029 ], [ -81.980699597999944, 28.952708570000027 ], [ -81.980765523999935, 28.952719318000049 ], [ -81.980833891999964, 28.952730066000072 ], [ -81.98089005099996, 28.952742960000023 ], [ -81.98095597799994, 28.952758003000042 ], [ -81.981029226999965, 28.952773046000061 ], [ -81.981097593999948, 28.952792384000077 ], [ -81.981158636999965, 28.952807427000039 ], [ -81.981222119999984, 28.952826763000076 ], [ -81.98126850999995, 28.952841804000059 ], [ -81.981319783999936, 28.952861140000039 ], [ -81.981366175999938, 28.952876180000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974766390999946, 28.952537634000066 ], [ -81.974838764999959, 28.952659262000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974838764999959, 28.952659262000054 ], [ -81.974908768999967, 28.952534760000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000406938999959, 28.952622417000043 ], [ -82.000354836999975, 28.952662133000047 ], [ -82.000316629999986, 28.952686573000051 ], [ -82.000271474999977, 28.952705922000064 ], [ -82.000212427999941, 28.952722216000041 ], [ -82.000138079999942, 28.952735945000029 ], [ -81.999930713999959, 28.952764961000071 ], [ -81.999619664999955, 28.952806412000029 ], [ -81.99949522999998, 28.952820092000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999511989999974, 28.952943934000075 ], [ -81.999926000999949, 28.95288931500005 ], [ -82.000166356999955, 28.952852008000036 ], [ -82.000251189999972, 28.952839573000063 ], [ -82.000328208999974, 28.952841361000026 ], [ -82.000372205999952, 28.952849507000053 ], [ -82.000467145999949, 28.952891258000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999511989999974, 28.952943934000075 ], [ -81.99949522999998, 28.952820092000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000561313999981, 28.951726283000028 ], [ -82.000592960999938, 28.952049143000067 ], [ -82.00061184499998, 28.952219979000063 ], [ -82.000617658999943, 28.95226294400004 ], [ -82.000615343999982, 28.952294513000027 ], [ -82.000609553999936, 28.952324045000069 ], [ -82.000597975999938, 28.952359686000079 ], [ -82.000575977999972, 28.952397365000024 ], [ -82.000548863999938, 28.952441838000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000892059999956, 28.952398382000069 ], [ -82.000861956999984, 28.952376996000055 ], [ -82.000818477999985, 28.952350038000077 ], [ -82.000792573999945, 28.952318142000024 ], [ -82.000769260999959, 28.952281690000063 ], [ -82.000754278999977, 28.952236468000024 ], [ -82.000739313999986, 28.952144262000047 ], [ -82.000718819999975, 28.951968778000037 ], [ -82.000699316999942, 28.951734897000051 ], [ -82.000697847999959, 28.951709830000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000561313999981, 28.951726283000028 ], [ -82.000697847999959, 28.951709830000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003023183999971, 28.922007951000069 ], [ -82.003065359999937, 28.92196283100003 ], [ -82.003115187999981, 28.921921298000029 ], [ -82.003225334999968, 28.921856690000027 ], [ -82.003311879999956, 28.921815155000047 ], [ -82.003406290999976, 28.921775928000045 ], [ -82.003524046999985, 28.921741544000042 ], [ -82.003583145999983, 28.921730211000067 ], [ -82.003593326999976, 28.921729342000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003576414999941, 28.921619662000069 ], [ -82.003457689999948, 28.921631718000071 ], [ -82.003405657999963, 28.921643533000065 ], [ -82.003298237999957, 28.921676023000032 ], [ -82.003200887999981, 28.921709990000068 ], [ -82.00308675399998, 28.921758723000039 ], [ -82.003014581999935, 28.921785305000071 ], [ -82.002940729999978, 28.921789736000051 ], [ -82.002864525999939, 28.921785597000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003593326999976, 28.921729342000049 ], [ -82.003576414999941, 28.921619662000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994475676999969, 28.908752883000034 ], [ -81.994363911999983, 28.90879837600005 ], [ -81.994279284999948, 28.908892335000075 ], [ -81.994264671999986, 28.908908004000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994339262999972, 28.908977291000042 ], [ -81.994359874999986, 28.90895084400006 ], [ -81.994394129999989, 28.908911842000066 ], [ -81.994438459999969, 28.908858657000053 ], [ -81.994475676999969, 28.908752883000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994339262999972, 28.908977291000042 ], [ -81.994264671999986, 28.908908004000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979051106999975, 28.89430000200008 ], [ -81.979049203999978, 28.894299986000078 ], [ -81.979035541999963, 28.894299869000065 ], [ -81.978918228999987, 28.894286322000028 ], [ -81.978786087999936, 28.894253074000062 ], [ -81.978653599999973, 28.89421782900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978249425999934, 28.894136693000064 ], [ -81.978330315999983, 28.894224522000059 ], [ -81.978470542999958, 28.894279132000065 ], [ -81.978613358999951, 28.894324547000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978653599999973, 28.89421782900007 ], [ -81.978613358999951, 28.894324547000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980435406999959, 28.894475082000042 ], [ -81.980348600999946, 28.894450482000025 ], [ -81.980155337999975, 28.89441120400005 ], [ -81.979996760999938, 28.89438937400007 ], [ -81.979914995999934, 28.894371918000047 ], [ -81.979848100999959, 28.894341380000071 ], [ -81.979781621999962, 28.894296664000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979740153999956, 28.89455749800004 ], [ -81.979820809999978, 28.894528905000072 ], [ -81.979895147999969, 28.894511471000044 ], [ -81.979996738999944, 28.894502764000038 ], [ -81.980073551999965, 28.894507137000062 ], [ -81.980197438999937, 28.894528961000049 ], [ -81.980405640999948, 28.894578572000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980405640999948, 28.894578572000057 ], [ -81.980435406999959, 28.894475082000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982318430999953, 28.881811567000057 ], [ -81.982296251999969, 28.881900855000026 ], [ -81.982252417999973, 28.881977985000049 ], [ -81.982181619999949, 28.882058076000078 ], [ -81.981901802999971, 28.882313178000061 ], [ -81.981470267999953, 28.882761095000035 ], [ -81.981315181999946, 28.882933144000049 ], [ -81.980934204999983, 28.88336326600006 ], [ -81.980691454999942, 28.883653971000058 ], [ -81.980681374999961, 28.883667274000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98079205099998, 28.883738513000026 ], [ -81.981210631999943, 28.883238702000028 ], [ -81.981608459999961, 28.882814516000053 ], [ -81.981750057999989, 28.882663232000027 ], [ -81.981986053999947, 28.882419991000063 ], [ -81.982188557999962, 28.882227366000052 ], [ -81.982360267, 28.882064034000052 ], [ -81.982427688999962, 28.882031408000046 ], [ -81.982552575999989, 28.882002231000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98079205099998, 28.883738513000026 ], [ -81.980681374999961, 28.883667274000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983146934999979, 28.882194801000026 ], [ -81.983131928999967, 28.882181381000066 ], [ -81.982931590999954, 28.882001253000055 ], [ -81.982880445999967, 28.881926203000035 ], [ -81.982861209999953, 28.881805882000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982644006999976, 28.881999746000076 ], [ -81.982741023999949, 28.882035373000065 ], [ -81.982794879999972, 28.882053604000077 ], [ -81.982872836999945, 28.882108781000056 ], [ -81.98299665199994, 28.882212404000029 ], [ -81.983073169999955, 28.882278300000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983073169999955, 28.882278300000053 ], [ -81.983146934999979, 28.882194801000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992339825999977, 28.876517830000068 ], [ -81.992310719999978, 28.876421221000044 ], [ -81.992067569999961, 28.876226634000034 ], [ -81.992051771999968, 28.876214859000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991967016999979, 28.876314595000053 ], [ -81.992196499999977, 28.87649904400007 ], [ -81.992339825999977, 28.876517830000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992051771999968, 28.876214859000072 ], [ -81.99150536999997, 28.87580760000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991426416999957, 28.875909703000048 ], [ -81.991942297999969, 28.876294727000072 ], [ -81.991967016999979, 28.876314595000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991967016999979, 28.876314595000053 ], [ -81.992051771999968, 28.876214859000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991426416999957, 28.875909703000048 ], [ -81.99150536999997, 28.87580760000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990324610999949, 28.875046956000062 ], [ -81.990247480999983, 28.875001689000044 ], [ -81.989964493999935, 28.874836631000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989898800999981, 28.874925306000023 ], [ -81.989933317999942, 28.874944643000049 ], [ -81.990199721999943, 28.875097801000038 ], [ -81.990263408999965, 28.875141033000034 ], [ -81.990263431999949, 28.875141049000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989964493999935, 28.874836631000051 ], [ -81.989898800999981, 28.874925306000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999424872999953, 28.860961908000036 ], [ -81.999464121999949, 28.860975318000044 ], [ -81.999538752999968, 28.861000529000023 ], [ -81.999610781999934, 28.861026504000051 ], [ -81.999655908999955, 28.861037963000058 ], [ -81.999704505999944, 28.861046367000029 ], [ -81.999765614999944, 28.861057520000031 ], [ -81.999839236999946, 28.861071787000071 ], [ -81.999900302999947, 28.861083772000029 ], [ -81.999956803999964, 28.861098040000059 ], [ -82.000034383999946, 28.861118847000057 ], [ -82.000089418999949, 28.861127056000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99946317499996, 28.860862612000062 ], [ -81.999401747999968, 28.860843058000057 ], [ -81.999170042999936, 28.860768190000044 ], [ -81.999125494999987, 28.860752879000074 ], [ -81.999071256999969, 28.860734257000047 ], [ -81.999025696999979, 28.860717068000042 ], [ -81.998985017999985, 28.860698923000029 ], [ -81.998947051999949, 28.860678392000068 ], [ -81.998909085999969, 28.860650220000025 ], [ -81.998862162999956, 28.860605865000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999424872999953, 28.860961908000036 ], [ -81.99946317499996, 28.860862612000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997732492999944, 28.86030379400006 ], [ -81.997364856, 28.860212175000072 ], [ -81.997169506999967, 28.860157911000044 ], [ -81.99707661399998, 28.86016489800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997693746999971, 28.860404283000037 ], [ -81.997978966999938, 28.860491375000038 ], [ -81.998099843999967, 28.860531825000066 ], [ -81.998311116999957, 28.860606404000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997732492999944, 28.86030379400006 ], [ -81.997693746999971, 28.860404283000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000113031999945, 28.853713898000024 ], [ -82.000007710999967, 28.853704036000067 ], [ -81.999708389999967, 28.853697613000065 ], [ -81.999623043999975, 28.853700153000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999623951999979, 28.853784599000051 ], [ -81.999977802999979, 28.853798738000023 ], [ -82.00010347999995, 28.853806076000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00010347999995, 28.853806076000069 ], [ -82.000113031999945, 28.853713898000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003965231999985, 28.84835380100003 ], [ -82.003977493999969, 28.848366073000079 ], [ -82.004158420999943, 28.84855056400005 ], [ -82.004265418999978, 28.848663382000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004334451999966, 28.848562877000063 ], [ -82.004318512999987, 28.848545975000036 ], [ -82.004092030999971, 28.84831908600006 ], [ -82.004050664999966, 28.848276934000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004050664999966, 28.848276934000069 ], [ -82.003965231999985, 28.84835380100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013688780999985, 28.847319537000033 ], [ -82.01381139199998, 28.847270240000057 ], [ -82.014027217999967, 28.847161354000036 ], [ -82.014195319999942, 28.847057247000066 ], [ -82.014381858999968, 28.846927355000048 ], [ -82.014507660999982, 28.846828027000072 ], [ -82.014611770999977, 28.846732521000035 ], [ -82.014695274999951, 28.846645613000078 ], [ -82.014828661999957, 28.846497581000051 ], [ -82.015172422999967, 28.846066861000054 ], [ -82.015241826999954, 28.845982819000028 ], [ -82.015297131999944, 28.845911192000074 ], [ -82.015344734999985, 28.845850691000066 ], [ -82.015370760999986, 28.845820131000039 ], [ -82.015401992999955, 28.845785749000072 ], [ -82.015435828999955, 28.845759006000037 ], [ -82.015475738999953, 28.84574066600004 ], [ -82.015506866999942, 28.845729299000027 ], [ -82.015536149999946, 28.845720415000073 ], [ -82.015571981999983, 28.845711351000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015300033999949, 28.845512998000061 ], [ -82.015306007999982, 28.845565996000062 ], [ -82.015305435999949, 28.845608521000031 ], [ -82.015299475999939, 28.845644811000057 ], [ -82.015292146999968, 28.84566942400005 ], [ -82.015267490999975, 28.845716913000047 ], [ -82.015247972999987, 28.845752725000068 ], [ -82.015228996999952, 28.84578280900007 ], [ -82.015211103999945, 28.845806684000024 ], [ -82.015168812999946, 28.845862554000064 ], [ -82.01478850899997, 28.846340018000035 ], [ -82.014651869999966, 28.846505239000066 ], [ -82.014514142999985, 28.846645632000047 ], [ -82.014357977999964, 28.846786026000075 ], [ -82.014157341999976, 28.846934063000049 ], [ -82.013988154999936, 28.847039125000038 ], [ -82.01385692499997, 28.847105984000052 ], [ -82.013689902999943, 28.847187172000076 ], [ -82.01362325499997, 28.847211811000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013688780999985, 28.847319537000033 ], [ -82.01362325499997, 28.847211811000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015990041999942, 28.842955857000049 ], [ -82.015968352999948, 28.842940857000031 ], [ -82.015908477999972, 28.842897319000031 ], [ -82.015849903999936, 28.842852634000053 ], [ -82.015813457999968, 28.842827428000078 ], [ -82.015787860999978, 28.842806804000077 ], [ -82.015765732999967, 28.842796493000037 ], [ -82.015735361999987, 28.842785801000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015735361999987, 28.842785801000048 ], [ -82.015741441999978, 28.842827818000046 ], [ -82.015761836999957, 28.842857610000067 ], [ -82.015785268999934, 28.84288549200005 ], [ -82.015836902, 28.842935143000034 ], [ -82.015910663999989, 28.843001981000043 ], [ -82.015926716999957, 28.843015348000051 ], [ -82.015946631999952, 28.843029239000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015990041999942, 28.842955857000049 ], [ -82.015946631999952, 28.843029239000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018887450999955, 28.843595750000077 ], [ -82.019045223999967, 28.843619334000039 ], [ -82.019208352999954, 28.843652924000025 ], [ -82.019333952999943, 28.843681554000057 ], [ -82.01949773299998, 28.843719729000043 ], [ -82.019686462999971, 28.843777953000028 ], [ -82.019862610999951, 28.84383617800006 ], [ -82.019979753999962, 28.843876270000067 ], [ -82.020165236999958, 28.843962187000045 ], [ -82.020375668999975, 28.844076749000067 ], [ -82.020520387999966, 28.844123646000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020520387999966, 28.844123646000071 ], [ -82.020466410999973, 28.844054602000028 ], [ -82.020376422999959, 28.844000782000023 ], [ -82.020228080999971, 28.843920660000038 ], [ -82.020075674999987, 28.843846687000052 ], [ -82.01991953199996, 28.843779021000046 ], [ -82.01975999299998, 28.843717809000054 ], [ -82.019597397999974, 28.843663183000047 ], [ -82.019432097999982, 28.843615261000025 ], [ -82.019264451999959, 28.843574146000037 ], [ -82.019094817999985, 28.843539926000062 ], [ -82.019034816999977, 28.843530378000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019034816999977, 28.843530378000025 ], [ -82.019011864999982, 28.843534896000051 ], [ -82.018975707999971, 28.843542127000035 ], [ -82.018942650999975, 28.843552458000033 ], [ -82.018912692999947, 28.843568986000037 ], [ -82.018887450999955, 28.843595750000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020527290999951, 28.863351403000024 ], [ -82.020527841999979, 28.86376341700003 ], [ -82.020529523999983, 28.864411933000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020674812999971, 28.863347394000073 ], [ -82.020673470999952, 28.862908616000027 ], [ -82.020673259999967, 28.861843954000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020527290999951, 28.863351403000024 ], [ -82.020674812999971, 28.863347394000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020673525999939, 28.85801654100004 ], [ -82.020674464999956, 28.857436785000061 ], [ -82.020670793999955, 28.855958530000066 ], [ -82.020673342999942, 28.855681214000072 ], [ -82.020692815999951, 28.855422229000055 ], [ -82.020714908999935, 28.855243460000054 ], [ -82.020764320999945, 28.854989055000033 ], [ -82.020800737999934, 28.854842370000028 ], [ -82.020852767999941, 28.854667033000055 ], [ -82.020860521999964, 28.854644802000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020722185999944, 28.854609700000026 ], [ -82.020686170999966, 28.854730085000028 ], [ -82.02063934399996, 28.854893962000062 ], [ -82.020615720999956, 28.854992435000042 ], [ -82.020615676999967, 28.854992615000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020722185999944, 28.854609700000026 ], [ -82.020860521999964, 28.854644802000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021706656999982, 28.852626091000047 ], [ -82.021669803999941, 28.85274746500005 ], [ -82.021617765999963, 28.852878109000073 ], [ -82.021555316999979, 28.853024800000071 ], [ -82.021472046999975, 28.853189827000051 ], [ -82.021356244999936, 28.853394969000078 ], [ -82.02112723, 28.853749098000037 ], [ -82.020939859999942, 28.854076865000025 ], [ -82.020792842999981, 28.854414937000058 ], [ -82.020730396999966, 28.854582253000046 ], [ -82.020722185999944, 28.854609700000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020860521999964, 28.854644802000053 ], [ -82.02092431799997, 28.854461900000047 ], [ -82.021026300999949, 28.854230749000067 ], [ -82.021073939999951, 28.854134140000042 ], [ -82.021149406999939, 28.853989741000078 ], [ -82.021257404999972, 28.853804082000067 ], [ -82.021433068999954, 28.853532468000026 ], [ -82.021546117999947, 28.853352541000049 ], [ -82.021626943999934, 28.853201262000027 ], [ -82.021711512999957, 28.853022483000075 ], [ -82.021784365999963, 28.852841413000078 ], [ -82.021844205999969, 28.852678681000043 ], [ -82.021845858999939, 28.852673166000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021706656999982, 28.852626091000047 ], [ -82.021845858999939, 28.852673166000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023039415999961, 28.848940731000027 ], [ -82.022702600999935, 28.849577640000064 ], [ -82.022618772999976, 28.849742405000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02274369099996, 28.849808460000077 ], [ -82.02297626099994, 28.849361247000047 ], [ -82.023170209999989, 28.848993058000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022618772999976, 28.849742405000029 ], [ -82.02274369099996, 28.849808460000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026517164999973, 28.844510973000069 ], [ -82.026499945999944, 28.844603488000075 ], [ -82.026446702999976, 28.845073332000027 ], [ -82.02643164899996, 28.845241427000076 ], [ -82.026414329999966, 28.845378227000026 ], [ -82.02640170899997, 28.845519246000038 ], [ -82.026387264999983, 28.845577577000029 ], [ -82.026366124999981, 28.845616017000054 ], [ -82.026349318999962, 28.845637507000049 ], [ -82.026286771999935, 28.845711681000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026517164999973, 28.844510973000069 ], [ -82.026525371999981, 28.844556381000075 ], [ -82.026546786999972, 28.844608730000061 ], [ -82.026572960999943, 28.844653939000068 ], [ -82.02660627399996, 28.844677734000072 ], [ -82.026645776999942, 28.844691902000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004277891999948, 28.788963641000066 ], [ -82.003601608999986, 28.788971189000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003601587999981, 28.789066025000068 ], [ -82.004277891999948, 28.789082665000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003601608999986, 28.788971189000051 ], [ -82.003601587999981, 28.789066025000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139411246999941, 28.668609458000049 ], [ -82.138979501999984, 28.668608081000059 ], [ -82.138800842999956, 28.668607308000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139900657999988, 28.668739597000069 ], [ -82.140433364999978, 28.668755142000066 ], [ -82.140724936999959, 28.668773783000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140018556999962, 28.668611394000038 ], [ -82.140000159999943, 28.668614937000029 ], [ -82.139960397999971, 28.668633872000044 ], [ -82.13992177199998, 28.66866681700003 ], [ -82.139900944999965, 28.668703170000072 ], [ -82.139900657999988, 28.668739597000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137352724999971, 28.668713275000073 ], [ -82.137760580999952, 28.668718924000075 ], [ -82.138789077999945, 28.668724087000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137352724999971, 28.668713275000073 ], [ -82.137358574999951, 28.668604005000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030777369999953, 28.927481903000057 ], [ -82.031274909, 28.927489895000065 ], [ -82.031561910999983, 28.927491824000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031561401999966, 28.927394437000032 ], [ -82.031561910999983, 28.927491824000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03698004599994, 28.933630546000074 ], [ -82.036973663999959, 28.934594893000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037121558999957, 28.934007932000043 ], [ -82.037075450999964, 28.933746600000063 ], [ -82.03705021899998, 28.933694454000033 ], [ -82.037016575999985, 28.933657446000041 ], [ -82.03698004599994, 28.933630546000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036977952999962, 28.932658556000035 ], [ -82.037018257999989, 28.933073740000054 ], [ -82.037026667999953, 28.933378209000068 ], [ -82.037041807999969, 28.933467363000034 ], [ -82.037072086999956, 28.933516145000056 ], [ -82.037122692999958, 28.93355493200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037451620999946, 28.925701792000041 ], [ -82.037448706999953, 28.925660726000046 ], [ -82.037407564999967, 28.925108456000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037451620999946, 28.925701792000041 ], [ -82.037391758999945, 28.92555395100004 ], [ -82.03737098199997, 28.92538124400005 ], [ -82.037354100999949, 28.925282555000024 ], [ -82.037332025999945, 28.925242300000036 ], [ -82.037300860999949, 28.925207239000031 ], [ -82.037258494999946, 28.925190638000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037164720999954, 28.923822523000069 ], [ -82.037201907999986, 28.924336894000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037407564999967, 28.925108456000032 ], [ -82.037328420999984, 28.924816302000067 ], [ -82.037304199999937, 28.924487395000028 ], [ -82.037286351999967, 28.92439943100004 ], [ -82.037260854999943, 28.924356087000035 ], [ -82.037231533999943, 28.924331865000056 ], [ -82.037201907999986, 28.924336894000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037116530999981, 28.922867418000067 ], [ -82.037124873999971, 28.923191742000029 ], [ -82.037159186999986, 28.923745974000042 ], [ -82.037164720999954, 28.923822523000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037091715999964, 28.921997410000074 ], [ -82.037136854999972, 28.922116556000049 ], [ -82.03715348299994, 28.922174754000025 ], [ -82.037179612999978, 28.922199696000064 ], [ -82.037208117999967, 28.922215136000034 ], [ -82.037240963999977, 28.922224717000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03718760299995, 28.920170322000047 ], [ -82.037180700999954, 28.91965927800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037041371999976, 28.920168783000065 ], [ -82.037051156999951, 28.92054261100003 ], [ -82.037071883999943, 28.921270922000076 ], [ -82.037091715999964, 28.921997410000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037041371999976, 28.920168783000065 ], [ -82.03718760299995, 28.920170322000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037163126999985, 28.918884095000067 ], [ -82.037160804999985, 28.918792877000044 ], [ -82.037155344999974, 28.918524638000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036970236999935, 28.917299627000034 ], [ -82.036972602999981, 28.917491692000056 ], [ -82.036977280999963, 28.917724192000037 ], [ -82.036986609999985, 28.918093562000024 ], [ -82.036991794999949, 28.918301006000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037163126999985, 28.918884095000067 ], [ -82.03712061899995, 28.918719782000039 ], [ -82.037070649999976, 28.918605568000032 ], [ -82.037042095999936, 28.918574635000027 ], [ -82.036998694999966, 28.918577029000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037155344999974, 28.918524638000065 ], [ -82.037150651, 28.918294064000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036991794999949, 28.918301006000036 ], [ -82.036998694999966, 28.918577029000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036991794999949, 28.918301006000036 ], [ -82.037020680999944, 28.918353345000071 ], [ -82.03705875299994, 28.91843424700005 ], [ -82.037103961999946, 28.918488975000059 ], [ -82.037155344999974, 28.918524638000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037084465999953, 28.912861448000058 ], [ -82.037084507999964, 28.912760713000068 ], [ -82.037084507999964, 28.912737234000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036913, 28.912512983000056 ], [ -82.036915988999965, 28.912762930000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036913, 28.912512983000056 ], [ -82.036941557999967, 28.912570121000044 ], [ -82.036973588999956, 28.912638359000027 ], [ -82.037000047999982, 28.912699634000035 ], [ -82.037029292999989, 28.912723308000068 ], [ -82.037057144999949, 28.912737234000076 ], [ -82.037084507999964, 28.912737234000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036938705999944, 28.908165336000025 ], [ -82.036930594999944, 28.909144509000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036938705999944, 28.908165336000025 ], [ -82.036977865999972, 28.90885606300003 ], [ -82.036988099999974, 28.908989099000053 ], [ -82.037013682999941, 28.909065850000047 ], [ -82.037049500999956, 28.909122135000075 ], [ -82.037098861999937, 28.909177131000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037111728999946, 28.895528942000055 ], [ -82.037111860999971, 28.895465807000051 ], [ -82.037109764999968, 28.895092831000056 ], [ -82.037111331999938, 28.894882614000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036946588999967, 28.893979739000031 ], [ -82.036973127999943, 28.894195729000046 ], [ -82.036992359999942, 28.894728739000072 ], [ -82.037023955999985, 28.894807042000025 ], [ -82.037066541999934, 28.894860618000052 ], [ -82.037111331999938, 28.894882614000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036919850999936, 28.890019567000024 ], [ -82.036912231999963, 28.890611723000063 ], [ -82.036908388999962, 28.890845489000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036919850999936, 28.890019567000024 ], [ -82.036954388999959, 28.890149200000053 ], [ -82.036959573, 28.890356543000053 ], [ -82.036980306999965, 28.890444664000029 ], [ -82.037016591999986, 28.890512050000041 ], [ -82.037045101999979, 28.890556111000024 ], [ -82.037081870999941, 28.890583373000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037153438999951, 28.883576550000043 ], [ -82.037148882999986, 28.882971119000047 ], [ -82.037153904999968, 28.882221753000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037037816999941, 28.881939035000073 ], [ -82.037037902999941, 28.882420191000051 ], [ -82.037035, 28.88359538900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037153904999968, 28.882221753000067 ], [ -82.037134179999953, 28.882085331000042 ], [ -82.037114454999937, 28.881981773000064 ], [ -82.03709308599997, 28.881945610000059 ], [ -82.037063497999952, 28.881935747000057 ], [ -82.037037816999941, 28.881939035000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037153904999968, 28.882221753000067 ], [ -82.037155064999979, 28.882048643000076 ], [ -82.037153150999984, 28.881708892000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037037717999965, 28.881388371000071 ], [ -82.037037816999941, 28.881939035000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037037717999965, 28.881388371000071 ], [ -82.037071716999947, 28.88150343500007 ], [ -82.037089798999943, 28.881623430000047 ], [ -82.037112810999986, 28.88167274400007 ], [ -82.037135823999961, 28.881694113000037 ], [ -82.037153150999984, 28.881708892000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045503069999938, 28.846504542000048 ], [ -82.045505226999978, 28.846217974000069 ], [ -82.045541444999969, 28.844528654000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045541444999969, 28.844528654000044 ], [ -82.04540654799996, 28.844526264000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045541444999969, 28.844528654000044 ], [ -82.045541931999935, 28.844505926000068 ], [ -82.045547282999962, 28.843564939000032 ], [ -82.045549930999982, 28.843032306000055 ], [ -82.045551524999951, 28.842664020000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045415435999985, 28.842667205000055 ], [ -82.045414540999957, 28.843032351000033 ], [ -82.045411892999937, 28.843570058000068 ], [ -82.04540654799996, 28.844526264000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045551524999951, 28.842664020000029 ], [ -82.045415435999985, 28.842667205000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045551524999951, 28.842664020000029 ], [ -82.045557557999985, 28.841269690000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045425866999949, 28.839929377000033 ], [ -82.045419971999934, 28.840946455000051 ], [ -82.045419053999979, 28.841273338000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045557557999985, 28.841269690000047 ], [ -82.045419053999979, 28.841273338000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045558197999981, 28.839926001000038 ], [ -82.045561610999982, 28.839424090000023 ], [ -82.045561524999982, 28.839227270000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045558197999981, 28.839926001000038 ], [ -82.045425866999949, 28.839929377000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979588913999976, 28.897327326000038 ], [ -81.979578145999938, 28.896827662000078 ], [ -81.979580474999977, 28.895948563000047 ], [ -81.97958669999997, 28.895018685000025 ], [ -81.979589762999979, 28.894795488000057 ], [ -81.979599633999953, 28.894725124000047 ], [ -81.979621945999952, 28.894664072000069 ], [ -81.979673446999982, 28.894605389000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979375189999985, 28.894589781000036 ], [ -81.979409467999972, 28.894644413000037 ], [ -81.979436714999963, 28.894692389000056 ], [ -81.97945404799998, 28.894749087000037 ], [ -81.979463949999968, 28.894801422000057 ], [ -81.979463927999973, 28.894908269000041 ], [ -81.979463863999968, 28.895237534000046 ], [ -81.979458819999934, 28.895686731000069 ], [ -81.979456299999981, 28.895898246000058 ], [ -81.97945869299997, 28.896327817000042 ], [ -81.979453661999969, 28.896709416000078 ], [ -81.979451149999989, 28.896886041000073 ], [ -81.979451064999978, 28.897315613000046 ], [ -81.979450920999966, 28.897324769000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979450920999966, 28.897324769000079 ], [ -81.979588913999976, 28.897327326000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039776268999958, 28.955955136000057 ], [ -82.039895214999945, 28.956667975000073 ], [ -82.040164126999969, 28.958319533000065 ], [ -82.040433032999942, 28.959932149000053 ], [ -82.040459062999957, 28.960116600000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040665114999967, 28.960104232000049 ], [ -82.040064345999951, 28.956372143000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040064345999951, 28.956372143000067 ], [ -82.039973867999947, 28.956279453000036 ], [ -82.039945233999958, 28.956189459000029 ], [ -82.039928870999972, 28.956058559000041 ], [ -82.039900236999983, 28.955997199000024 ], [ -82.039847057999964, 28.955952202000049 ], [ -82.039776268999958, 28.955955136000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040064345999951, 28.956372143000067 ], [ -82.039981765999983, 28.955859141000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039654848999987, 28.955227469000079 ], [ -82.039776268999958, 28.955955136000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039654848999987, 28.955227469000079 ], [ -82.039730277, 28.955326710000065 ], [ -82.039786241999934, 28.955521369000053 ], [ -82.039813006999964, 28.955689262000078 ], [ -82.039844638999966, 28.955793891000042 ], [ -82.039890870999955, 28.955849855000054 ], [ -82.03992736899994, 28.955864455000039 ], [ -82.039981765999983, 28.955859141000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039123820999976, 28.951994229000036 ], [ -82.039216461999956, 28.952551672000027 ], [ -82.039459247999957, 28.954045179000047 ], [ -82.039634155999977, 28.955103460000032 ], [ -82.039654848999987, 28.955227469000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039981765999983, 28.955859141000076 ], [ -82.039962151999987, 28.955737293000027 ], [ -82.039647567999964, 28.953785235000055 ], [ -82.039344522999954, 28.95198318100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039344522999954, 28.95198318100006 ], [ -82.039123820999976, 28.951994229000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038749479999979, 28.948444767000069 ], [ -82.03857844099997, 28.947427683000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038445545999934, 28.947890406000056 ], [ -82.038555196999937, 28.948558161000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038852365999958, 28.949056576000032 ], [ -82.038786211999934, 28.948984908000057 ], [ -82.038754291999965, 28.948883346000059 ], [ -82.038719470999979, 28.948764373000074 ], [ -82.038702059999935, 28.948636695000062 ], [ -82.038664336999943, 28.948575757000071 ], [ -82.038609202999965, 28.948549641000056 ], [ -82.038555196999937, 28.948558161000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038852365999958, 28.949056576000032 ], [ -82.038749479999979, 28.948444767000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038368075999983, 28.947424432000048 ], [ -82.038420307999957, 28.94773671300004 ], [ -82.038445545999934, 28.947890406000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038445545999934, 28.947890406000056 ], [ -82.038499109999975, 28.947983521000026 ], [ -82.038548439999943, 28.948105396000074 ], [ -82.03858616399998, 28.948221467000053 ], [ -82.038597770999957, 28.948340440000038 ], [ -82.038626788999977, 28.948412985000061 ], [ -82.038693528999943, 28.948450708000053 ], [ -82.038749479999979, 28.948444767000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036974321999935, 28.938324089000048 ], [ -82.036991943999965, 28.938929852000058 ], [ -82.037010519999967, 28.939159523000058 ], [ -82.037056763999942, 28.939570161000063 ], [ -82.037191551999967, 28.94039110600005 ], [ -82.037409080999964, 28.941619738000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037682367999935, 28.941975070000069 ], [ -82.037409080999964, 28.941619738000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002073756999948, 28.957165427000064 ], [ -82.001972142999989, 28.95717133900007 ], [ -82.001844188999939, 28.957215907000034 ], [ -82.001780383999971, 28.957238606000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001780382999982, 28.957238606000033 ], [ -82.001884443999984, 28.957273415000031 ], [ -82.00200952299997, 28.957274853000058 ], [ -82.002083083999935, 28.957271115000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002083083999935, 28.957271115000026 ], [ -82.002073756999948, 28.957165427000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001165262999962, 28.957333087000052 ], [ -82.000855058999946, 28.957422935000068 ], [ -82.000813716999971, 28.957500478000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000813716999971, 28.957500478000043 ], [ -82.001047708999977, 28.957456002000072 ], [ -82.001178377999963, 28.957421131000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001165262999962, 28.957333087000052 ], [ -82.001178377999963, 28.957421131000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014364006999983, 28.866332714000066 ], [ -82.014344734999952, 28.866343110000059 ], [ -82.01433493899998, 28.866349908000075 ], [ -82.014332586999956, 28.866351712000039 ], [ -82.014330275999953, 28.866353556000035 ], [ -82.014325778999989, 28.866357362000031 ], [ -82.014309587999946, 28.866374049000058 ], [ -82.01429656199997, 28.866392760000053 ], [ -82.014291339999943, 28.86640273200004 ], [ -82.014287021999962, 28.866413035000051 ], [ -82.014281202999939, 28.866434373000061 ], [ -82.014279735999935, 28.866445278000072 ], [ -82.014279368999951, 28.866450760000077 ], [ -82.014279276999957, 28.866453505000038 ], [ -82.014279247, 28.866456250000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014279247, 28.866456250000056 ], [ -82.014281202999939, 28.86647812800004 ], [ -82.014287021999962, 28.86649946600005 ], [ -82.01429656199997, 28.866519741000047 ], [ -82.014299502999961, 28.866524584000047 ], [ -82.014302657999963, 28.866529322000076 ], [ -82.014309587999946, 28.866538452000043 ], [ -82.014325777999943, 28.86655513900007 ], [ -82.014344734999952, 28.866569391000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014344734999952, 28.866569391000041 ], [ -82.014365990999977, 28.866580857000031 ], [ -82.014389022999978, 28.866589255000065 ], [ -82.014401028999941, 28.866592236000031 ], [ -82.014413263999984, 28.866594378000059 ], [ -82.014438116999941, 28.866596100000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014344734999952, 28.866569391000041 ], [ -82.014371725, 28.866597937000051 ], [ -82.014394375999984, 28.866623461000074 ], [ -82.014414363999947, 28.866656298000066 ], [ -82.014428640999938, 28.86669484500004 ], [ -82.014441204999969, 28.866738858000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014441204999969, 28.866738858000076 ], [ -82.014450055999987, 28.86669484500004 ], [ -82.01445862199995, 28.866662008000048 ], [ -82.01447432599997, 28.866632027000037 ], [ -82.014492885999971, 28.866604901000073 ], [ -82.014509657999952, 28.866581070000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014438116999941, 28.866596100000038 ], [ -82.014462969999954, 28.866594378000059 ], [ -82.014469110999983, 28.866593413000032 ], [ -82.01447520399995, 28.866592236000031 ], [ -82.01448721099996, 28.866589255000065 ], [ -82.014509657999952, 28.866581070000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014509657999952, 28.866581070000052 ], [ -82.014510242999961, 28.866580857000031 ], [ -82.014531498999986, 28.866569391000041 ], [ -82.014550454999949, 28.86655513900007 ], [ -82.014566645999935, 28.866538452000043 ], [ -82.014573575999975, 28.866529322000076 ], [ -82.014576810999984, 28.866524236000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014576810999984, 28.866524236000032 ], [ -82.014599961999977, 28.866503536000039 ], [ -82.014622804999988, 28.866487832000075 ], [ -82.014654212999972, 28.866474983000046 ], [ -82.014688477999982, 28.866466417000026 ], [ -82.014725596999938, 28.866462134000074 ], [ -82.014753153999948, 28.866459339000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014753153999948, 28.866459339000073 ], [ -82.014704181999946, 28.866454995000026 ], [ -82.014664206999953, 28.866443574000073 ], [ -82.014622804999988, 28.866426442000034 ], [ -82.01459710599994, 28.866407882000033 ], [ -82.014581668999938, 28.866397007000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014576810999984, 28.866524236000032 ], [ -82.014579670999979, 28.866519741000047 ], [ -82.014589211999976, 28.86649946600005 ], [ -82.014595030999942, 28.86647812800004 ], [ -82.014596986999948, 28.866456250000056 ], [ -82.014595030999942, 28.866434373000061 ], [ -82.014589210999986, 28.866413035000051 ], [ -82.014581668999938, 28.866397007000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014581668999938, 28.866397007000046 ], [ -82.014579670999979, 28.866392760000053 ], [ -82.014566644999945, 28.866374049000058 ], [ -82.014550454999949, 28.866357362000031 ], [ -82.014541294999958, 28.866349908000075 ], [ -82.01453149799994, 28.866343110000059 ], [ -82.01452637999995, 28.86633997000007 ], [ -82.014523769999983, 28.866338467000048 ], [ -82.014521125999977, 28.866337009000063 ], [ -82.014510241999972, 28.86633164400007 ], [ -82.014487649999978, 28.866323407000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014487649999978, 28.866323407000039 ], [ -82.014472898999941, 28.866307945000074 ], [ -82.01446135499998, 28.866291126000078 ], [ -82.014452736999942, 28.866271304000065 ], [ -82.014445772999977, 28.866250838000042 ], [ -82.014439660999983, 28.866227694000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014439660999983, 28.866227694000031 ], [ -82.014432923999948, 28.866255121000052 ], [ -82.014420074999975, 28.866279391000035 ], [ -82.014405797999984, 28.866299379000054 ], [ -82.014389822999988, 28.866314395000074 ], [ -82.014364006999983, 28.866332714000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014487649999978, 28.866323407000039 ], [ -82.01448720999997, 28.866323246000036 ], [ -82.014462969999954, 28.866318123000042 ], [ -82.014450581999938, 28.866316832000052 ], [ -82.014438116999941, 28.866316401000063 ], [ -82.014413263999984, 28.866318123000042 ], [ -82.014389022999978, 28.866323246000036 ], [ -82.014365990999977, 28.86633164400007 ], [ -82.014364006999983, 28.866332714000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000145077999946, 28.926242089000027 ], [ -82.000139053999987, 28.926249415000029 ], [ -82.000049188999981, 28.926362148000067 ], [ -81.999994270999935, 28.926464631000044 ], [ -81.999872099999948, 28.926711035000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999998716999983, 28.926755172000071 ], [ -82.000134061999972, 28.926477809000062 ], [ -82.000187313999959, 28.926378251000074 ], [ -82.000228917999948, 28.926307977000079 ], [ -82.000240011999949, 28.926290232000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000240011999949, 28.926290232000042 ], [ -82.000145077999946, 28.926242089000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000755676999972, 28.925709226000038 ], [ -82.000650293999968, 28.925763308000057 ], [ -82.000581717999978, 28.92580726500006 ], [ -82.000518479999982, 28.92585265200006 ], [ -82.000441929999965, 28.925911214000052 ], [ -82.000385318999975, 28.925963898000077 ], [ -82.000317117999941, 28.926031269000077 ], [ -82.000252215999978, 28.926111792000029 ], [ -82.000145077999946, 28.926242089000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000240011999949, 28.926290232000042 ], [ -82.000283835999937, 28.926220132000026 ], [ -82.000338752999937, 28.926142537000032 ], [ -82.000413639999977, 28.926064942000039 ], [ -82.000496846999965, 28.925988811000025 ], [ -82.000600023999937, 28.925903894000044 ], [ -82.000714849999952, 28.925827763000029 ], [ -82.000787991999971, 28.92578899800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000787991999971, 28.92578899800003 ], [ -82.000755676999972, 28.925709226000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004069823999941, 28.792499701000054 ], [ -82.003833181999937, 28.792569018000052 ], [ -82.003283161999946, 28.792564683000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003289667, 28.792674007000073 ], [ -82.003489859999945, 28.792676571000072 ], [ -82.003892550999979, 28.792665831000079 ], [ -82.00406714199994, 28.792666168000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003283161999946, 28.792564683000023 ], [ -82.003289667, 28.792674007000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00590305999998, 28.792463466000072 ], [ -82.005779476999976, 28.792449720000036 ], [ -82.00558174799994, 28.792503588000045 ], [ -82.005429546999949, 28.792534534000026 ], [ -82.005390337999984, 28.792539701000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00540147199996, 28.792646727000033 ], [ -82.005475081999975, 28.792635376000078 ], [ -82.005679317999977, 28.792589529000054 ], [ -82.005844524999986, 28.792537955000057 ], [ -82.00590305999998, 28.792463466000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00540147199996, 28.792646727000033 ], [ -82.005390337999984, 28.792539701000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.079076540999949, 28.865737649000039 ], [ -82.078672217999951, 28.865277208000066 ], [ -82.076613899999984, 28.862922468000079 ], [ -82.075253993999979, 28.861371474000066 ], [ -82.074106354999969, 28.860060596000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07394540599995, 28.860197411000058 ], [ -82.074307824999948, 28.860612283000023 ], [ -82.074647785999957, 28.860991954000042 ], [ -82.075754995999944, 28.862260224000067 ], [ -82.076912770999968, 28.863585028000045 ], [ -82.077505448999943, 28.86425954200007 ], [ -82.078910575999942, 28.865862954000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07394540599995, 28.860197411000058 ], [ -82.074106354999969, 28.860060596000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965476153999987, 28.84780059600007 ], [ -81.965526594999972, 28.847784661000048 ], [ -81.965580829999965, 28.847772261000046 ], [ -81.965620963999982, 28.847766542000045 ], [ -81.965669771999956, 28.847764644000051 ], [ -81.965789075999965, 28.847779953000042 ], [ -81.965882351999937, 28.847790481000061 ], [ -81.966007080999987, 28.847801018000041 ], [ -81.966166635999969, 28.847803581000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966175044999943, 28.847689905000038 ], [ -81.966053757999987, 28.847681661000024 ], [ -81.965911675999962, 28.847671121000076 ], [ -81.965800614999978, 28.847654620000071 ], [ -81.965731244999972, 28.847646008000027 ], [ -81.965694802999963, 28.847638741000026 ], [ -81.965671008999948, 28.847631668000076 ], [ -81.965646217999961, 28.847620776000042 ], [ -81.965624095999942, 28.847606637000069 ], [ -81.96559911099996, 28.847589025000048 ], [ -81.965542551999988, 28.847547027000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966166635999969, 28.847803581000051 ], [ -81.966175044999943, 28.847689905000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970213908999938, 28.894392986000071 ], [ -81.970145634999938, 28.894358918000023 ], [ -81.970022720999964, 28.894364900000028 ], [ -81.969874767999954, 28.894376886000032 ], [ -81.969746661999977, 28.894386098000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969761302999984, 28.894496188000062 ], [ -81.96992026099997, 28.894481056000075 ], [ -81.970075044999987, 28.894461060000026 ], [ -81.970152437999957, 28.894447055000057 ], [ -81.970213908999938, 28.894392986000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969761302999984, 28.894496188000062 ], [ -81.969746661999977, 28.894386098000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968002440999953, 28.831023907000031 ], [ -81.967814037999972, 28.830745372000024 ], [ -81.967745483999977, 28.830640519000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967337867999959, 28.830352201000039 ], [ -81.967411787999936, 28.83047827300004 ], [ -81.967480953999939, 28.83055162900007 ], [ -81.967539496999962, 28.830610086000036 ], [ -81.967601938999962, 28.830681149000043 ], [ -81.967616163999935, 28.830707748000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967745483999977, 28.830640519000042 ], [ -81.967616163999935, 28.830707748000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958389952999937, 28.91768563200003 ], [ -81.958393359999945, 28.917687778000072 ], [ -81.958590078999976, 28.917811689000075 ], [ -81.958784115999947, 28.917935552000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958784115999947, 28.917935552000074 ], [ -81.95887490299998, 28.917839537000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976697757999943, 28.820216307000067 ], [ -81.976028596999981, 28.821265523000079 ], [ -81.975135336999983, 28.822648558000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976811092999981, 28.820288227000049 ], [ -81.976697757999943, 28.820216307000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998795964999942, 28.917765700000075 ], [ -81.998724649999986, 28.917767125000069 ], [ -81.998609734999945, 28.917767123000033 ], [ -81.998502060999954, 28.91781123100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998502060999954, 28.91781123100003 ], [ -81.998606251999945, 28.917862103000061 ], [ -81.99869401899997, 28.917874028000028 ], [ -81.998798070999953, 28.917874181000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998795964999942, 28.917765700000075 ], [ -81.998798070999953, 28.917874181000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967974962999961, 28.906735052000045 ], [ -81.967927483999972, 28.906739362000053 ], [ -81.967837225999972, 28.906747127000074 ], [ -81.967743426999959, 28.906756448000067 ], [ -81.967672635999975, 28.906765775000054 ], [ -81.967606818999968, 28.906802411000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967606818999968, 28.906802411000058 ], [ -81.96767261399998, 28.906835851000039 ], [ -81.967792950999979, 28.906851451000023 ], [ -81.967934974999935, 28.906845495000027 ], [ -81.96798013199998, 28.906844776000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967974962999961, 28.906735052000045 ], [ -81.96798013199998, 28.906844776000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99587235599995, 28.871315241000048 ], [ -81.995837485999971, 28.871286819000034 ], [ -81.995692599999984, 28.871173770000041 ], [ -81.995635559999982, 28.871116554000025 ], [ -81.995614050999961, 28.871091311000043 ], [ -81.995597110999938, 28.871047205000025 ], [ -81.995566880999945, 28.870976248000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995806074999962, 28.871411385000044 ], [ -81.995959315999983, 28.871536100000071 ], [ -81.996081153999967, 28.871620163000046 ], [ -81.99619475999998, 28.87164867000007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995806074999962, 28.871411385000044 ], [ -81.99587235599995, 28.871315241000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01058758399995, 28.798866884000063 ], [ -82.010495650999985, 28.798710112000037 ], [ -82.010367268999971, 28.798496212000032 ], [ -82.010294406999947, 28.79840301400003 ], [ -82.010214830999985, 28.798330557000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010214830999985, 28.798330557000043 ], [ -82.010230229999934, 28.79844427300003 ], [ -82.010254088999943, 28.798524488000055 ], [ -82.010310475999972, 28.798642897000036 ], [ -82.010449265999966, 28.798875896000027 ], [ -82.010459218999983, 28.798893604000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01058758399995, 28.798866884000063 ], [ -82.010459218999983, 28.798893604000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020520387999966, 28.844123646000071 ], [ -82.020399076999979, 28.844178985000042 ], [ -82.020320178999953, 28.844286130000057 ], [ -82.020257839999942, 28.844377691000034 ], [ -82.020190630999934, 28.844488732000059 ], [ -82.020138031999977, 28.844578345000059 ], [ -82.020072770999946, 28.84471178900003 ], [ -82.020014642999968, 28.844844513000055 ], [ -82.019980117999978, 28.84497146800004 ], [ -82.019953015999988, 28.845053936000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020036519999962, 28.845082740000066 ], [ -82.020276745999979, 28.844490460000031 ], [ -82.020520387999966, 28.844123646000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019953015999988, 28.845053936000056 ], [ -82.020036519999962, 28.845082740000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96117518899996, 28.783983321000051 ], [ -81.961039575999962, 28.783937693000041 ], [ -81.960920344999977, 28.783895667000024 ], [ -81.960800248999988, 28.783855598000059 ], [ -81.960679328999959, 28.783817502000034 ], [ -81.960557626999957, 28.783781390000058 ], [ -81.960435183999948, 28.783747275000053 ], [ -81.960312043999977, 28.783715169000061 ], [ -81.960188247999952, 28.783685083000023 ], [ -81.960063839999975, 28.78365702800005 ], [ -81.959938860999955, 28.783631013000047 ], [ -81.959813355999984, 28.783607047000032 ], [ -81.959687367999948, 28.783585138000035 ], [ -81.959638621999943, 28.783577907000051 ], [ -81.959589602999984, 28.783572294000066 ], [ -81.959540377999986, 28.783568307000053 ], [ -81.959491018999984, 28.78356595200006 ], [ -81.959441593999941, 28.783565232000058 ], [ -81.959392172999969, 28.783566148000034 ], [ -81.959337915999981, 28.783564353000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961026362999974, 28.786729348000051 ], [ -81.960970350999958, 28.786617445000047 ], [ -81.96093717399998, 28.786493031000077 ], [ -81.960920585999986, 28.786364470000024 ], [ -81.960912290999943, 28.786211025000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960912290999943, 28.78531349800005 ], [ -81.960912290999943, 28.784883940000043 ], [ -81.960912290999943, 28.784659994000037 ], [ -81.960920585999986, 28.784552168000062 ], [ -81.960945468999967, 28.784456784000042 ], [ -81.96117518899996, 28.783983321000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959755238999946, 28.786654770000041 ], [ -81.959755238999946, 28.786381058000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959755238999946, 28.786381058000075 ], [ -81.959764101999951, 28.785264338000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95976767999997, 28.784813438000072 ], [ -81.95976767999997, 28.78448581400005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959755238999946, 28.786381058000075 ], [ -81.959894558999963, 28.786369795000041 ], [ -81.960421983999936, 28.786263389000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960421983999936, 28.786263389000055 ], [ -81.960605124999972, 28.786227068000073 ], [ -81.960749385999975, 28.786211209000044 ], [ -81.960912290999943, 28.786211025000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95976767999997, 28.784813438000072 ], [ -81.959832646999985, 28.784809802000041 ], [ -81.960423820999949, 28.784938684000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960423820999949, 28.784938684000053 ], [ -81.960762834999969, 28.78499191800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960421983999936, 28.786263389000055 ], [ -81.960423271999957, 28.785292911000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964172164999979, 28.783713462000037 ], [ -81.964119023999956, 28.783710141000029 ], [ -81.963995816999955, 28.783693638000045 ], [ -81.963863433999961, 28.783655288000034 ], [ -81.963774290999936, 28.783618225000055 ], [ -81.963484925999978, 28.783473134000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963484925999978, 28.783473134000076 ], [ -81.962858758999971, 28.783152537000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962858758999971, 28.783152537000035 ], [ -81.962623320999967, 28.783017285000028 ], [ -81.962377863999961, 28.782917099000031 ], [ -81.962152443999969, 28.78282192100005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962152443999969, 28.78282192100005 ], [ -81.961871921999943, 28.782721735000052 ], [ -81.961627304999979, 28.782663093000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962858758999971, 28.783152537000035 ], [ -81.962483059999954, 28.783868871000038 ], [ -81.962463022999941, 28.783949020000023 ], [ -81.962478050999948, 28.784039188000065 ], [ -81.962518124999974, 28.784109319000038 ], [ -81.962558199999989, 28.784149393000064 ], [ -81.962818684999945, 28.784284645000071 ], [ -81.962903842999935, 28.784284645000071 ], [ -81.962968964999959, 28.784269617000064 ], [ -81.963039094999942, 28.784239561000049 ], [ -81.963094197999965, 28.784194477000028 ], [ -81.963484925999978, 28.783473134000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961627304999979, 28.782663093000053 ], [ -81.961320895999961, 28.782596502000047 ], [ -81.961250764999988, 28.782566446000033 ], [ -81.96119065299996, 28.782526371000074 ], [ -81.961150577999945, 28.782456240000045 ], [ -81.961120522999977, 28.782366072000059 ], [ -81.961126638999986, 28.782181232000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961126638999986, 28.782181232000028 ], [ -81.961130540999989, 28.781464393000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961130540999989, 28.781464393000078 ], [ -81.961135550999984, 28.780823199000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961135550999984, 28.780823199000054 ], [ -81.961135550999984, 28.780537668000079 ], [ -81.961135550999984, 28.780387388000065 ], [ -81.961150577999945, 28.780302229000029 ], [ -81.961185643999954, 28.780237108000051 ], [ -81.961240745999987, 28.780187015000024 ], [ -81.961305867999954, 28.780151949000071 ], [ -81.961571361999972, 28.78007180000003 ], [ -81.961741678999942, 28.77998664200004 ], [ -81.961901977999958, 28.779871427000046 ], [ -81.962067285999979, 28.77974619400004 ], [ -81.962207546999934, 28.779585895000025 ], [ -81.962292704999982, 28.779430606000062 ], [ -81.962377863999961, 28.779285336000044 ], [ -81.962442984999939, 28.779230233000078 ], [ -81.962558199999989, 28.779195168000058 ], [ -81.962663395999982, 28.779175130000056 ], [ -81.962778609999987, 28.779195168000058 ], [ -81.962888814999985, 28.779225224000072 ], [ -81.962978982999971, 28.779275317000042 ], [ -81.963029076999987, 28.779345448000072 ], [ -81.963049113999944, 28.779450643000075 ], [ -81.963029076999987, 28.779555839000068 ], [ -81.962994010999978, 28.779646007000053 ], [ -81.962938908999945, 28.779741184000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962938908999945, 28.779741184000045 ], [ -81.962793637999937, 28.779966604000037 ], [ -81.962648367999975, 28.780146940000066 ], [ -81.962533152999981, 28.780257145000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962533152999981, 28.780257145000064 ], [ -81.962377863999961, 28.780377369000064 ], [ -81.962147434999963, 28.780512621000071 ], [ -81.961896967999962, 28.780642864000072 ], [ -81.961641492999945, 28.780728022000062 ], [ -81.961391025999944, 28.780788134000034 ], [ -81.961135550999984, 28.780823199000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963484925999978, 28.783473134000076 ], [ -81.963797853999949, 28.78293547800007 ], [ -81.963945729999978, 28.782752240000036 ], [ -81.964083960999972, 28.782617223000045 ], [ -81.964247910999973, 28.782491850000042 ], [ -81.964402215999939, 28.782398624000052 ], [ -81.964562950999948, 28.782311827000058 ], [ -81.964720470999964, 28.782250748000024 ], [ -81.96482012599995, 28.782208957000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96482012599995, 28.782208957000023 ], [ -81.965041939999935, 28.782147878000046 ], [ -81.965295901, 28.782090014000062 ], [ -81.965491996999958, 28.782048223000061 ], [ -81.965675233999946, 28.782012861000055 ], [ -81.965961341999957, 28.781980714000042 ], [ -81.966244234999976, 28.781964641000059 ], [ -81.966282810999985, 28.781958211000074 ], [ -81.966314957999941, 28.781938923000041 ], [ -81.96650462499997, 28.781816765000031 ], [ -81.966668574999971, 28.781668889000059 ], [ -81.966700720999938, 28.781582092000065 ], [ -81.966703935999988, 28.781469578000042 ], [ -81.966652500999942, 28.781382781000048 ], [ -81.966562489999944, 28.781305628000041 ], [ -81.966430686999956, 28.781247764000057 ], [ -81.966250663999972, 28.781180255000038 ], [ -81.966138149999949, 28.781177041000035 ], [ -81.966019206999988, 28.781189900000072 ], [ -81.965221962999976, 28.781376352000052 ], [ -81.965000148999934, 28.781443860000024 ], [ -81.964714040999979, 28.781533872000068 ], [ -81.964575808999939, 28.781585307000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964575808999939, 28.781585307000057 ], [ -81.964328277999982, 28.781675318000055 ], [ -81.964051814999948, 28.78180390600005 ], [ -81.963897508999935, 28.781893917000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963897508999935, 28.781893917000048 ], [ -81.963707841999963, 28.782048223000061 ], [ -81.963460310999949, 28.782257178000066 ], [ -81.963277073999961, 28.782466133000071 ], [ -81.963158129999954, 28.782626867000033 ], [ -81.963026326999966, 28.782845466000026 ], [ -81.962858758999971, 28.783152537000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962152443999969, 28.78282192100005 ], [ -81.963177652999946, 28.781457088000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963177652999946, 28.781457088000025 ], [ -81.963490025999988, 28.781632795000064 ], [ -81.963897508999935, 28.781893917000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962579484999935, 28.781058097000027 ], [ -81.962881665999987, 28.781250979000049 ], [ -81.963177652999946, 28.781457088000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961130540999989, 28.781464393000078 ], [ -81.961292306999951, 28.781466076000072 ], [ -81.961480054999981, 28.781441373000064 ], [ -81.961756734999938, 28.781382084000029 ], [ -81.962053177999962, 28.781288210000071 ], [ -81.962319976999936, 28.781169633000047 ], [ -81.962457943999937, 28.781106054000077 ], [ -81.962579484999935, 28.781058097000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962579484999935, 28.781058097000027 ], [ -81.962828870999942, 28.780888012000048 ], [ -81.962986974999978, 28.780764494000039 ], [ -81.963105551999945, 28.780640976000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962533152999981, 28.780257145000064 ], [ -81.96262222699994, 28.780319962000078 ], [ -81.963105551999945, 28.780640976000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963105551999945, 28.780640976000029 ], [ -81.964431915999967, 28.781456361000039 ], [ -81.964575808999939, 28.781585307000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964575808999939, 28.781585307000057 ], [ -81.96482012599995, 28.782208957000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959337915999981, 28.783564353000031 ], [ -81.959257778999984, 28.783564353000031 ], [ -81.959125230999973, 28.78356143600007 ], [ -81.958920346999946, 28.783532367000078 ], [ -81.958854695999946, 28.783521567000037 ], [ -81.958813322999958, 28.783513816000038 ], [ -81.958616143999961, 28.783474683000065 ], [ -81.95849771099995, 28.783448111000041 ], [ -81.958379902, 28.783419465000065 ], [ -81.958286019999946, 28.783395878000078 ], [ -81.95816857799997, 28.783361429000024 ], [ -81.958048003999977, 28.783323847000077 ], [ -81.957927430999973, 28.783289398000079 ], [ -81.957816251999986, 28.783250251000027 ], [ -81.957714468999939, 28.783212669000079 ], [ -81.957601724999961, 28.783171956000047 ], [ -81.957485848999966, 28.783124979000036 ], [ -81.957351182999957, 28.783067041000038 ], [ -81.957256744999938, 28.783021822000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957256744999938, 28.783021822000023 ], [ -81.957253388999959, 28.782563080000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957253388999959, 28.782563080000045 ], [ -81.957265137999968, 28.781958573000054 ], [ -81.957250266999949, 28.781925855000054 ], [ -81.957226471999945, 28.781887189000031 ], [ -81.957187805999979, 28.781857445000071 ], [ -81.956741656999952, 28.781640320000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956741656999952, 28.781640320000065 ], [ -81.956441249999955, 28.781476732000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956004295999946, 28.781923805000076 ], [ -81.956387609999979, 28.782118456000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956387609999979, 28.782118456000035 ], [ -81.957253388999959, 28.782563080000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956387609999979, 28.782118456000035 ], [ -81.956741656999952, 28.781640320000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95616681499996, 28.781425771000045 ], [ -81.956262065999965, 28.781411117000061 ], [ -81.956328008999947, 28.781385472000068 ], [ -81.956393951999985, 28.781348837000053 ], [ -81.956448903999956, 28.781304875000046 ], [ -81.956500192999954, 28.781246259000056 ], [ -81.956540491999988, 28.781194970000058 ], [ -81.956577126999946, 28.781132691000039 ], [ -81.956599107999978, 28.781063084000039 ], [ -81.956606434999969, 28.780989814000066 ], [ -81.956606434999969, 28.780454943000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956606434999969, 28.780454943000052 ], [ -81.956602317999966, 28.779109553000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956606434999969, 28.780454943000052 ], [ -81.957265864999954, 28.780454943000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957265864999954, 28.780454943000052 ], [ -81.957602906999966, 28.780454943000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957265864999954, 28.780454943000052 ], [ -81.95726402799994, 28.779107897000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956302363999953, 28.779106776000049 ], [ -81.956602317999966, 28.779109553000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956602317999966, 28.779109553000069 ], [ -81.95726402799994, 28.779107897000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95726402799994, 28.779107897000074 ], [ -81.957599242999947, 28.77910311200003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957256744999938, 28.783021822000023 ], [ -81.957185197999934, 28.782991879000065 ], [ -81.957029749999947, 28.782924202000061 ], [ -81.956891018999954, 28.782860277000054 ], [ -81.956744127999968, 28.782796352000048 ], [ -81.956586355999946, 28.782718826000064 ], [ -81.956444905999945, 28.782649461000062 ], [ -81.956292574999964, 28.782571935000078 ], [ -81.956160644999954, 28.782502570000077 ], [ -81.955997432999936, 28.782418244000041 ], [ -81.955846460999965, 28.782332558000064 ], [ -81.955740372999969, 28.782276793000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954101783999988, 28.781780642000058 ], [ -81.954008852999948, 28.781751073000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956004295999946, 28.781923805000076 ], [ -81.955740372999969, 28.782276793000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95616681499996, 28.781425771000045 ], [ -81.956156215999954, 28.78159097300005 ], [ -81.95613783899995, 28.781688983000038 ], [ -81.956113335999987, 28.781750240000065 ], [ -81.956004295999946, 28.781923805000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955874435999988, 28.780998828000065 ], [ -81.955927524999936, 28.781043749000048 ], [ -81.955978571999935, 28.781094796000048 ], [ -81.956035744999951, 28.781147885000053 ], [ -81.95607658199998, 28.781209141000033 ], [ -81.956117419999941, 28.781276523000031 ], [ -81.956146005999983, 28.781345947000034 ], [ -81.95616681499996, 28.781425771000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954186816999936, 28.780893162000041 ], [ -81.955428384999948, 28.780890937000038 ], [ -81.955526286999941, 28.780890937000038 ], [ -81.955590811999969, 28.780897612000047 ], [ -81.955675363999944, 28.780917637000073 ], [ -81.955758801999934, 28.78094433800004 ], [ -81.955827777999957, 28.780973263000078 ], [ -81.955874435999988, 28.780998828000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954101783999988, 28.781780642000058 ], [ -81.954163339, 28.781605266000042 ], [ -81.954177632999972, 28.781544010000061 ], [ -81.954183757999942, 28.781490921000056 ], [ -81.954186816999936, 28.780893162000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954186816999936, 28.780893162000041 ], [ -81.954185301999985, 28.780297118000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954185301999985, 28.780297118000078 ], [ -81.954184619999978, 28.77971244500003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954184619999978, 28.77971244500003 ], [ -81.954186915999969, 28.779112976000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955874435999988, 28.780998828000065 ], [ -81.955898938999951, 28.780955948000042 ], [ -81.955925482999987, 28.780911027000059 ], [ -81.955937733999974, 28.780864063000024 ], [ -81.95593977599998, 28.780798723000032 ], [ -81.95593977599998, 28.780294378000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95593977599998, 28.780294378000065 ], [ -81.955935691999969, 28.77970835900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955935691999969, 28.77970835900004 ], [ -81.95593572699994, 28.779111230000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954185301999985, 28.780297118000078 ], [ -81.95593977599998, 28.780294378000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954184619999978, 28.77971244500003 ], [ -81.955935691999969, 28.77970835900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953882371999953, 28.77910788500003 ], [ -81.954186915999969, 28.779112976000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954186915999969, 28.779112976000079 ], [ -81.95593572699994, 28.779111230000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95593572699994, 28.779111230000069 ], [ -81.956256267999947, 28.779110087000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960912290999943, 28.786211025000057 ], [ -81.960912290999943, 28.78531349800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960423271999957, 28.785292911000056 ], [ -81.960423820999949, 28.784938684000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959764101999951, 28.785264338000047 ], [ -81.95976767999997, 28.784813438000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035349092, 28.794529156000067 ], [ -82.035405051999987, 28.794613191000053 ], [ -82.035463626999956, 28.794712491000041 ], [ -82.035513527999967, 28.794811793000065 ], [ -82.035563973999956, 28.794921122000062 ], [ -82.035604665999983, 28.795033318000037 ], [ -82.035637224999959, 28.795140743000047 ], [ -82.035665435999988, 28.795250939000027 ], [ -82.035694209999974, 28.795346042000062 ], [ -82.035732182999936, 28.795434365000062 ], [ -82.035780994999982, 28.795517911000047 ], [ -82.035846068999945, 28.795601452000028 ], [ -82.035913849999986, 28.795673055000066 ], [ -82.035995181999965, 28.795747043000063 ], [ -82.036076507999951, 28.795801930000039 ], [ -82.036182227999973, 28.795863975000032 ], [ -82.036270302999981, 28.79590920000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036784810999961, 28.797401601000047 ], [ -82.036786968999934, 28.797398488000056 ], [ -82.036805486999981, 28.797369612000068 ], [ -82.036824564999961, 28.797336667000025 ], [ -82.036833154999954, 28.797320529000046 ], [ -82.036850286999936, 28.797285273000057 ], [ -82.036877893999986, 28.797231152000052 ], [ -82.036902475999966, 28.79719136500006 ], [ -82.036931802999959, 28.797150736000049 ], [ -82.036962142999982, 28.797114403000023 ], [ -82.036990854999942, 28.79708411200005 ], [ -82.03702575899996, 28.79705156700004 ], [ -82.037045304999936, 28.797035072000028 ], [ -82.037064605999944, 28.797019856000077 ], [ -82.037101438999969, 28.796993459000078 ], [ -82.037141299999973, 28.796968330000027 ], [ -82.037163914999951, 28.796955491000062 ], [ -82.037199105999946, 28.796937362000051 ], [ -82.037238140999989, 28.796919683000056 ], [ -82.03726837399995, 28.796907612000041 ], [ -82.037304736999943, 28.796894848000079 ], [ -82.037382407999985, 28.796868025000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036270302999981, 28.79590920000004 ], [ -82.036336054999936, 28.795969641000056 ], [ -82.036439985999948, 28.796041864000074 ], [ -82.036543915999971, 28.796122894000064 ], [ -82.036647846999983, 28.796223302000044 ], [ -82.036788769999987, 28.796330756000032 ], [ -82.036908554999968, 28.796395933000042 ], [ -82.036986061999983, 28.796432925000033 ], [ -82.037098800999956, 28.796484010000029 ], [ -82.037188638999964, 28.796542140000042 ], [ -82.037227345999952, 28.796588168000028 ], [ -82.03725733899995, 28.796637263000036 ], [ -82.037278477999962, 28.796688348000032 ], [ -82.037324277999971, 28.796762333000061 ], [ -82.037382407999985, 28.796868025000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037502192999966, 28.796829271000036 ], [ -82.037474007999947, 28.796716533000051 ], [ -82.037440538999988, 28.79661436300006 ], [ -82.037361269999963, 28.796457587000077 ], [ -82.037324277999971, 28.796410025000057 ], [ -82.037250292999943, 28.796330756000032 ], [ -82.037155169999949, 28.796237394000059 ], [ -82.037063569999987, 28.796177502000035 ], [ -82.036896223999975, 28.796087664000027 ], [ -82.036725354999987, 28.79601720200003 ], [ -82.036549200999957, 28.795960833000038 ], [ -82.036394185999939, 28.795920318000071 ], [ -82.036270302999981, 28.79590920000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037382407999985, 28.796868025000038 ], [ -82.037502192999966, 28.796829271000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033252668999978, 28.799741437000023 ], [ -82.03581083499995, 28.799748846000057 ], [ -82.03660249099994, 28.799754062000034 ], [ -82.036603867999986, 28.799754071000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037348102999943, 28.799759125000037 ], [ -82.037994614999945, 28.799765122000053 ], [ -82.039373920999935, 28.799766676000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039840851999941, 28.799765291000028 ], [ -82.041089514999953, 28.799775830000044 ], [ -82.043433715999981, 28.799783970000078 ], [ -82.043535498999972, 28.799784504000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039373920999935, 28.799766676000047 ], [ -82.03948638199995, 28.799766803000068 ], [ -82.039694276999967, 28.799767195000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036603867999986, 28.799754071000052 ], [ -82.037348102999943, 28.799759125000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039840851999941, 28.799765291000028 ], [ -82.039846799999964, 28.799607216000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039846799999964, 28.799607216000027 ], [ -82.039695307999978, 28.799619547000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039695307999978, 28.799619547000077 ], [ -82.039694276999967, 28.799767195000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039694276999967, 28.799767195000072 ], [ -82.039840851999941, 28.799765291000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039695307999978, 28.799619547000077 ], [ -82.037351085999944, 28.799623927000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027686364999965, 28.799716311000054 ], [ -82.028477068999962, 28.799723491000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029159030999949, 28.798541095000076 ], [ -82.029159263999986, 28.799376792000032 ], [ -82.029131855999935, 28.799548773000026 ], [ -82.029132429999947, 28.799586375000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029460470999936, 28.799728738000056 ], [ -82.029989131999969, 28.799728622000032 ], [ -82.030122253999934, 28.799728423000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030523737999943, 28.799727822000079 ], [ -82.031200840999986, 28.799732109000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031200840999986, 28.799732109000047 ], [ -82.032265978999988, 28.799737199000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027103324999985, 28.799711247000062 ], [ -82.027500323999959, 28.799714621000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027500323999959, 28.799714621000078 ], [ -82.027500344999964, 28.799714621000078 ], [ -82.027680913999973, 28.799716261000071 ], [ -82.027686364999965, 28.799716311000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031205514999954, 28.799604987000066 ], [ -82.030509653999957, 28.799593227000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030509653999957, 28.799593227000059 ], [ -82.029132429999947, 28.799586375000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029132429999947, 28.799586375000047 ], [ -82.028341039999987, 28.799581236000051 ], [ -82.02809265999997, 28.799579523000034 ], [ -82.027899094999952, 28.799579523000034 ], [ -82.027705529999935, 28.799581236000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027705529999935, 28.799581236000051 ], [ -82.027345806999961, 28.799589801000025 ], [ -82.027099139999962, 28.799601792000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02086817199995, 28.799816883000062 ], [ -82.022761854999942, 28.799855139000044 ], [ -82.024062566999987, 28.799870442000042 ], [ -82.025026623999963, 28.799839837000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025026623999963, 28.799839837000036 ], [ -82.025126089999958, 28.799836011000025 ], [ -82.025317370999971, 28.799836011000025 ], [ -82.025764968999965, 28.799797755000043 ], [ -82.026472708999961, 28.799744196000063 ], [ -82.027103324999985, 28.799711247000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027099139999962, 28.799601792000033 ], [ -82.027103324999985, 28.799711247000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027099139999962, 28.799601792000033 ], [ -82.026784675999977, 28.799612196000055 ], [ -82.026371665999989, 28.799636780000071 ], [ -82.025924237999959, 28.799666281000043 ], [ -82.025501394999935, 28.799700698000038 ], [ -82.025240804999953, 28.799710532000063 ], [ -82.025034299999959, 28.799725282000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025034299999959, 28.799725282000054 ], [ -82.024359689999983, 28.799738575000049 ], [ -82.020873110999958, 28.799700441000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02086817199995, 28.799816883000062 ], [ -82.020873110999958, 28.799700441000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020198319999963, 28.799691026000062 ], [ -82.019876819999979, 28.799686540000039 ], [ -82.018976111999962, 28.799675137000065 ], [ -82.017616913999973, 28.79965801700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013563705999957, 28.799791097000025 ], [ -82.014120419999983, 28.799793668000063 ], [ -82.014598516999968, 28.799793700000066 ], [ -82.014694557999974, 28.799793314000055 ], [ -82.014700002999973, 28.799793292000061 ], [ -82.01581274199998, 28.79978882100005 ], [ -82.016526106999947, 28.799789657000076 ], [ -82.017008111999985, 28.799792235000041 ], [ -82.017603044999987, 28.799799790000066 ], [ -82.018469506999963, 28.799805406000075 ], [ -82.019383830999971, 28.799816883000062 ], [ -82.020206338999969, 28.799816883000062 ], [ -82.020635836999986, 28.799819384000045 ], [ -82.02086817199995, 28.799816883000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007331879999981, 28.92608679600005 ], [ -82.007332693999956, 28.926086496000039 ], [ -82.008223304999945, 28.926080031000026 ], [ -82.008504244999983, 28.926085020000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003955008999981, 28.924950033000073 ], [ -82.004175029999942, 28.924933159000034 ], [ -82.004380175999984, 28.924913099000037 ], [ -82.004491974999951, 28.924904501000071 ], [ -82.004540819999988, 28.924902590000045 ], [ -82.004580980999947, 28.924906408000027 ], [ -82.004649363999988, 28.924916910000036 ], [ -82.004712319999953, 28.924930277000044 ], [ -82.004787215999954, 28.924953193000078 ], [ -82.00485994099995, 28.924979928000027 ], [ -82.004947863999973, 28.925029581000047 ], [ -82.005033795999964, 28.925093427000036 ], [ -82.005083701, 28.925155774000075 ], [ -82.005161749999957, 28.925273826000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005217033999941, 28.925235689000033 ], [ -82.005132304999961, 28.925111987000037 ], [ -82.005034696999985, 28.925003795000066 ], [ -82.004956541999945, 28.924936953000042 ], [ -82.004843654999945, 28.924866291000058 ], [ -82.00475464699997, 28.924822367000047 ], [ -82.004669981999939, 28.924789903000033 ], [ -82.004585317999954, 28.924775582000052 ], [ -82.004446381999969, 28.924771767000038 ], [ -82.004349778999938, 28.924776544000053 ], [ -82.004206500999942, 28.924789918000045 ], [ -82.003931944999977, 28.92482255300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005161749999957, 28.925273826000023 ], [ -82.005216537999956, 28.925341843000069 ], [ -82.00527078999994, 28.925404660000027 ], [ -82.005360733999964, 28.925504598000032 ], [ -82.005452104999961, 28.925588831000027 ], [ -82.005540620999966, 28.925663070000041 ], [ -82.005573372999947, 28.925686034000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005573372999947, 28.925686034000023 ], [ -82.005664828999954, 28.925750158000028 ], [ -82.005773332, 28.92581440400005 ], [ -82.005885372999956, 28.925873526000032 ], [ -82.005986055999983, 28.925922907000029 ], [ -82.006133787999943, 28.925982030000057 ], [ -82.006283012999972, 28.926028555000073 ], [ -82.006437201999972, 28.926064247000056 ], [ -82.006562837, 28.926088518000029 ], [ -82.006654228999935, 28.926098138000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006654228999935, 28.926098138000043 ], [ -82.006752717999973, 28.926108505000059 ], [ -82.006942598999956, 28.92611564300006 ], [ -82.007190073999936, 28.926116924000041 ], [ -82.007261457999959, 28.926108358000079 ], [ -82.007331879999981, 28.92608679600005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007331879999981, 28.92608679600005 ], [ -82.007280039999955, 28.926061632000028 ], [ -82.007215683999959, 28.926047006000033 ], [ -82.007105987999978, 28.926045543000043 ], [ -82.00694071199996, 28.926048468000033 ], [ -82.006794450999962, 28.926042618000054 ], [ -82.00666281499997, 28.926030917000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00666281499997, 28.926030917000048 ], [ -82.006520940999962, 28.926008978000027 ], [ -82.006377604999955, 28.925982651000027 ], [ -82.006241580999983, 28.925947548000067 ], [ -82.006096781999986, 28.925894894000066 ], [ -82.005966608999984, 28.92583785100004 ], [ -82.005811571999971, 28.925760333000028 ], [ -82.005707725999969, 28.925697440000079 ], [ -82.005612359999986, 28.925630160000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005612359999986, 28.925630160000026 ], [ -82.005499738999958, 28.925539478000076 ], [ -82.005400280999936, 28.925445870000033 ], [ -82.005290583999965, 28.925325935000046 ], [ -82.005247288999954, 28.925275639000063 ], [ -82.005217033999941, 28.925235689000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005217033999941, 28.925235689000033 ], [ -82.005161749999957, 28.925273826000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005612359999986, 28.925630160000026 ], [ -82.005573372999947, 28.925686034000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00666281499997, 28.926030917000048 ], [ -82.006654228999935, 28.926098138000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023382418999972, 28.841639318000034 ], [ -82.023257374999957, 28.841599345000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023894100999939, 28.84181041100004 ], [ -82.023398293999946, 28.841645005000032 ], [ -82.023382418999972, 28.841639318000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010587962999978, 28.848429968000062 ], [ -82.010582251999949, 28.848523243000045 ], [ -82.010586441999976, 28.84862288100004 ], [ -82.010597480999934, 28.848707889000025 ], [ -82.010612709999975, 28.848787839000067 ], [ -82.010627843999941, 28.848842743000034 ], [ -82.010660298999937, 28.848888728000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010660298999937, 28.848888728000077 ], [ -82.010686948999989, 28.848848753000027 ], [ -82.010702176999985, 28.848791646000052 ], [ -82.010705983999969, 28.84871550400004 ], [ -82.010705983999969, 28.848608904000059 ], [ -82.010709791999943, 28.848424258000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010587962999978, 28.848429968000062 ], [ -82.010709791999943, 28.848424258000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008552073999965, 28.799643471000024 ], [ -82.008516509999936, 28.799643337000077 ], [ -82.007951487999946, 28.799643079000077 ], [ -82.007951134999985, 28.799643079000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023007609999979, 28.842469904000041 ], [ -82.023046034999936, 28.84244153800006 ], [ -82.023083154999938, 28.842404419000047 ], [ -82.02313169599995, 28.842318758000033 ], [ -82.023185349999949, 28.842203781000023 ], [ -82.023286238999958, 28.841937281000071 ], [ -82.023327071999972, 28.841816636000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023195311999984, 28.841772223000078 ], [ -82.023327071999972, 28.841816636000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023195311999984, 28.841772223000078 ], [ -82.023173327999984, 28.841851484000074 ], [ -82.023146678999979, 28.841937580000035 ], [ -82.023106705999965, 28.842052376000026 ], [ -82.023059714999988, 28.842179034000026 ], [ -82.023014028999967, 28.842293248000033 ], [ -82.022998799999982, 28.842359873000078 ], [ -82.022996896999985, 28.842413173000068 ], [ -82.023007609999979, 28.842469904000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140018556999962, 28.668611394000038 ], [ -82.139411246999941, 28.668609458000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138789077999945, 28.668724087000044 ], [ -82.138814626999988, 28.668692471000043 ], [ -82.138878334999958, 28.668669501000068 ], [ -82.139215494999974, 28.668669501000068 ], [ -82.139330622999978, 28.66865305400006 ], [ -82.139411246999941, 28.668609458000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974566048999975, 28.90375795500006 ], [ -81.974552683999946, 28.903676168000061 ], [ -81.974518771999954, 28.903591572000039 ], [ -81.97448013099995, 28.903527799000074 ], [ -81.974372449999976, 28.903400028000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974372449999976, 28.903400028000078 ], [ -81.974398170999962, 28.903550449000079 ], [ -81.974412196999936, 28.903639052000074 ], [ -81.97444294099995, 28.903776398000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974566048999975, 28.90375795500006 ], [ -81.97444294099995, 28.903776398000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008618866999939, 28.926085013000034 ], [ -82.008619274999944, 28.925777933000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008507282999972, 28.925768068000025 ], [ -82.008504244999983, 28.926085020000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008619274999944, 28.925777933000063 ], [ -82.008507282999972, 28.925768068000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974395802999936, 28.880249227000036 ], [ -81.974425705999977, 28.880488975000048 ], [ -81.974439294999968, 28.88061364400005 ], [ -81.974458317999961, 28.880793456000049 ], [ -81.974459678999949, 28.88087186000007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974587190999955, 28.880871641000056 ], [ -81.974580900999968, 28.880762312000059 ], [ -81.974559153999962, 28.880582501000049 ], [ -81.974531968999941, 28.880361931000039 ], [ -81.974528046999978, 28.880247213000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974459678999949, 28.88087186000007 ], [ -81.974587190999955, 28.880871641000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95887490299998, 28.917839537000077 ], [ -81.95874360199997, 28.917762507000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955089447999967, 28.946505909000052 ], [ -81.955043358999944, 28.946449065000024 ], [ -81.954969614999982, 28.946373785000048 ], [ -81.954892798999936, 28.946318478000023 ], [ -81.954789864999952, 28.946261634000052 ], [ -81.954673104999983, 28.946203253000078 ], [ -81.954542516999936, 28.946143337000024 ], [ -81.954401175999976, 28.946078811000064 ], [ -81.954295168999977, 28.946025040000052 ], [ -81.954182730999946, 28.945976255000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000787991999971, 28.92578899800003 ], [ -82.00085297399994, 28.925754558000051 ], [ -82.000949495999976, 28.925712100000055 ], [ -82.00102438, 28.925684283000066 ], [ -82.001094275999947, 28.92566524800003 ], [ -82.001159174999941, 28.925652072000048 ], [ -82.001242383999966, 28.925633038000058 ], [ -82.001328134999937, 28.925622351000072 ], [ -82.001437088999978, 28.925615467000057 ], [ -82.001531486999966, 28.925622349000037 ], [ -82.001650948999952, 28.925636843000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001663330999975, 28.925553458000024 ], [ -82.001620144999947, 28.925546654000073 ], [ -82.001506835999976, 28.925535608000075 ], [ -82.001340567999989, 28.925539337000032 ], [ -82.001212428999963, 28.925553979000028 ], [ -82.001120900999979, 28.925573013000076 ], [ -82.000996088999955, 28.925608151000063 ], [ -82.000916210999947, 28.925634504000072 ], [ -82.000798184999951, 28.925687411000069 ], [ -82.000755676999972, 28.925709226000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001650948999952, 28.925636843000063 ], [ -82.001663330999975, 28.925553458000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001650948999952, 28.925636843000063 ], [ -82.001710190999972, 28.925644031000047 ], [ -82.001907380999967, 28.925665714000047 ], [ -82.001992916999939, 28.925665238000079 ], [ -82.002099420999969, 28.92565938000007 ], [ -82.00217235599996, 28.925649446000079 ], [ -82.002239209999971, 28.925641809000069 ], [ -82.002300012999967, 28.925626651000073 ], [ -82.002387319999968, 28.92561106200003 ], [ -82.002395633999981, 28.925608725000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002383605999967, 28.925523936000047 ], [ -82.002294124999935, 28.925545180000029 ], [ -82.002177634999953, 28.925562751000029 ], [ -82.002061143999981, 28.925575930000036 ], [ -82.001977936999936, 28.925581787000056 ], [ -82.00183814899998, 28.925578861000076 ], [ -82.001731642999971, 28.925564221000059 ], [ -82.001663330999975, 28.925553458000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002395633999981, 28.925608725000075 ], [ -82.002383605999967, 28.925523936000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003156647999958, 28.925191060000031 ], [ -82.003207729999986, 28.925158649000025 ], [ -82.003264308999974, 28.925120581000044 ], [ -82.003360827999984, 28.925066409000067 ], [ -82.003424065, 28.925037127000053 ], [ -82.003497206999953, 28.925015127000052 ], [ -82.003563850999967, 28.924994664000053 ], [ -82.003626609999969, 28.924982595000074 ], [ -82.00372527199994, 28.924971235000044 ], [ -82.003815920999955, 28.924965543000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00379453499994, 28.924837801000024 ], [ -82.003640615999984, 28.924862491000056 ], [ -82.003497281999955, 28.924892182000065 ], [ -82.00336082299998, 28.924937571000044 ], [ -82.003239343999951, 28.924994672000025 ], [ -82.003137833999972, 28.925064950000035 ], [ -82.003092422999941, 28.925112874000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003156647999958, 28.925191060000031 ], [ -82.003092422999941, 28.925112874000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999796627999956, 28.917928083000049 ], [ -81.999867851999966, 28.917889133000074 ], [ -81.99993438499996, 28.917877836000059 ], [ -82.000128604999986, 28.917867563000073 ], [ -82.000408815999947, 28.91785468300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00038834999998, 28.917672080000045 ], [ -82.000375984999948, 28.917673440000044 ], [ -82.000235578999934, 28.917683244000045 ], [ -82.000030544999959, 28.917693047000057 ], [ -81.999925796999946, 28.917693047000057 ], [ -81.99986116599996, 28.917687165000075 ], [ -81.999798437999971, 28.917664492000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000408815999947, 28.91785468300003 ], [ -82.00038834999998, 28.917672080000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991120622999972, 28.875040029000047 ], [ -81.991252190999944, 28.874912613000049 ], [ -81.991879615999949, 28.874306789000059 ], [ -81.991974625999944, 28.874214848000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991867623999951, 28.87414117700007 ], [ -81.991767624999966, 28.874240222000026 ], [ -81.991036455999961, 28.874942619000024 ], [ -81.991015668999978, 28.874961092000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991974625999944, 28.874214848000065 ], [ -81.991867623999951, 28.87414117700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974519310999938, 28.87962049600003 ], [ -81.974520359999985, 28.879609966000032 ], [ -81.974541645999977, 28.87947392500007 ], [ -81.974593732999949, 28.879203135000068 ], [ -81.974630248999972, 28.879028353000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974630248999972, 28.879028353000024 ], [ -81.974516025999947, 28.879231641000047 ], [ -81.974458918999972, 28.879352993000055 ], [ -81.974426082999969, 28.87944579200007 ], [ -81.974403239999958, 28.879541446000076 ], [ -81.974392816999966, 28.879608020000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974519310999938, 28.87962049600003 ], [ -81.974392816999966, 28.879608020000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027548743999944, 28.846447210000065 ], [ -82.027543169999944, 28.846565110000029 ], [ -82.027530320999972, 28.846636493000062 ], [ -82.027514753999981, 28.84668300900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02762011599998, 28.84668722300006 ], [ -82.027627266999957, 28.846618532000036 ], [ -82.027637259999949, 28.846514311000078 ], [ -82.027643632999968, 28.846450625000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027548743999944, 28.846447210000065 ], [ -82.027643632999968, 28.846450625000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024597333999964, 28.845856806000029 ], [ -82.02459747499995, 28.84585635600007 ], [ -82.024637924999979, 28.845742142000063 ], [ -82.02466452799996, 28.845645175000072 ], [ -82.024688797999943, 28.845562369000049 ], [ -82.024725625999963, 28.845453752000026 ], [ -82.024765818999981, 28.845334496000078 ], [ -82.024812768999936, 28.845217169000023 ], [ -82.024866353999982, 28.845102067000028 ], [ -82.024961315999974, 28.844870354000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024961315999974, 28.844870354000079 ], [ -82.02486397399997, 28.844895054000062 ], [ -82.024704502999953, 28.845241142000077 ], [ -82.024643916999935, 28.845393140000056 ], [ -82.024537987999963, 28.845749280000064 ], [ -82.024513857999978, 28.845826697000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024597333999964, 28.845856806000029 ], [ -82.024513857999978, 28.845826697000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024768376999987, 28.847916358000077 ], [ -82.024834401999954, 28.847945156000037 ], [ -82.024912168999947, 28.84797125700004 ], [ -82.024987835, 28.847989436000034 ], [ -82.02506197799994, 28.84799870300003 ], [ -82.025103950999949, 28.847996398000078 ], [ -82.025142666999955, 28.847990591000041 ], [ -82.025152023999965, 28.847986719000062 ], [ -82.025160826999979, 28.847978786000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024801554999954, 28.847835122000049 ], [ -82.024727997999946, 28.847792798000057 ], [ -82.024658041999942, 28.847739974000035 ], [ -82.024600934999967, 28.84767572800007 ], [ -82.024568528999964, 28.847626958000035 ], [ -82.024537995999935, 28.847581500000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024768376999987, 28.847916358000077 ], [ -82.024801554999954, 28.847835122000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037240963999977, 28.922224717000063 ], [ -82.037277065999945, 28.922238528000037 ], [ -82.037331470999959, 28.922254277000036 ], [ -82.037411648999978, 28.922255709000069 ], [ -82.037898437999957, 28.92224711800003 ], [ -82.038024404999987, 28.922244466000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038024404999987, 28.922244466000052 ], [ -82.038170466999986, 28.922241391000057 ], [ -82.038368046999949, 28.922232801000064 ], [ -82.038468267999974, 28.922217052000065 ], [ -82.038555603999953, 28.922198439000056 ], [ -82.038607145999947, 28.922174100000063 ], [ -82.038650326999971, 28.922145165000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038650326999971, 28.922145165000074 ], [ -82.038595691999944, 28.922128284000053 ], [ -82.038489743999946, 28.922129716000029 ], [ -82.038329389999944, 28.922152624000034 ], [ -82.038128946999961, 28.922158351000064 ], [ -82.03800298799996, 28.922161230000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038024404999987, 28.922244466000052 ], [ -82.03800298799996, 28.922161230000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028753853999945, 28.928950150000048 ], [ -82.028799320999951, 28.928913370000032 ], [ -82.028825970999947, 28.928860070000042 ], [ -82.028833584999973, 28.92877250600003 ], [ -82.028843102999986, 28.927567547000024 ], [ -82.028822163999962, 28.927514247000033 ], [ -82.028791706999982, 28.927476175000038 ], [ -82.028778519999946, 28.927444939000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026668083999937, 28.927443035000067 ], [ -82.026785164999978, 28.927444272000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026668083999937, 28.927443035000067 ], [ -82.026709497999946, 28.927421429000049 ], [ -82.02677517099994, 28.927385737000066 ], [ -82.026803724, 28.927355756000054 ], [ -82.026825767999981, 28.927313341000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027027864, 28.927314197000044 ], [ -82.026825767999981, 28.927313341000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026785164999978, 28.927444272000059 ], [ -82.02691366199997, 28.92744392700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026820855999972, 28.928360841000028 ], [ -82.026826920999952, 28.928455027000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026820855999972, 28.928360841000028 ], [ -82.026846554999963, 28.928330859000027 ], [ -82.026869396999984, 28.928275180000071 ], [ -82.026870824999946, 28.928182381000056 ], [ -82.026885101999937, 28.927966802000071 ], [ -82.026883673999976, 28.927816896000024 ], [ -82.026885101999937, 28.927627015000041 ], [ -82.02691366199997, 28.92744392700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023565866999945, 28.927429605000043 ], [ -82.023566223999978, 28.927494757000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02357098799996, 28.928364588000079 ], [ -82.023571364999952, 28.928433342000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02357098799996, 28.928364588000079 ], [ -82.023591275999934, 28.928350773000034 ], [ -82.023615491999976, 28.928307723000046 ], [ -82.023608764999949, 28.927577222000025 ], [ -82.023589930999947, 28.92753013600003 ], [ -82.023566223999978, 28.927494757000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962938908999945, 28.779741184000045 ], [ -81.963433203999955, 28.780031869000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963433203999955, 28.780031869000027 ], [ -81.964739803999976, 28.780853902000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964359072999969, 28.780975044000058 ], [ -81.964739803999976, 28.780853902000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964739803999976, 28.780853902000047 ], [ -81.965452393999954, 28.780662899000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965452393999954, 28.780662899000049 ], [ -81.96602044499997, 28.780507783000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963433203999955, 28.780031869000027 ], [ -81.963824750999947, 28.779532560000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963824750999947, 28.779532560000064 ], [ -81.964036027999953, 28.779261754000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963824750999947, 28.779532560000064 ], [ -81.965403198999979, 28.780504898000061 ], [ -81.965420328999983, 28.780521812000075 ], [ -81.965436005999948, 28.780546039000058 ], [ -81.965446693999979, 28.780586655000036 ], [ -81.965450256999986, 28.780625133000058 ], [ -81.965452393999954, 28.780662899000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957070623999982, 28.783576286000027 ], [ -81.957106085999953, 28.783447737000074 ], [ -81.95714597999995, 28.783323621000079 ], [ -81.957208037999976, 28.783168475000025 ], [ -81.957256744999938, 28.783021822000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95696867099997, 28.784192434000033 ], [ -81.957070623999982, 28.783576286000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956689409999967, 28.785375972000054 ], [ -81.956689409999967, 28.785269586000027 ], [ -81.95672043899998, 28.785136605000048 ], [ -81.956778063999934, 28.785008056000038 ], [ -81.956893314999945, 28.784857343000056 ], [ -81.956946507999987, 28.784764256000074 ], [ -81.95696867099997, 28.784657870000046 ], [ -81.95696867099997, 28.784192434000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956933208999942, 28.786071909000043 ], [ -81.956915477999985, 28.78599212000006 ], [ -81.956875583999988, 28.785894600000063 ], [ -81.956791362, 28.78579264800004 ], [ -81.956724870999949, 28.785655233000057 ], [ -81.956693841999936, 28.785517819000063 ], [ -81.956689409999967, 28.785375972000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957265663999976, 28.787556872000039 ], [ -81.957208037999976, 28.787450486000068 ], [ -81.957132681999951, 28.787344101000031 ], [ -81.957039594999969, 28.787251014000049 ], [ -81.956995266999968, 28.787140196000053 ], [ -81.956986401999984, 28.787024945000041 ], [ -81.956999699999983, 28.786905261000072 ], [ -81.957048459999953, 28.786776712000062 ], [ -81.957052892999968, 28.786630433000028 ], [ -81.957035161999954, 28.786497451000059 ], [ -81.956933208999942, 28.786071909000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957083921999981, 28.790030332000072 ], [ -81.957172575999948, 28.789866321000034 ], [ -81.957221335999975, 28.789724474000025 ], [ -81.957225769, 28.789556030000028 ], [ -81.957172575999948, 28.789369856000064 ], [ -81.957088354999939, 28.789201412000068 ], [ -81.957048459999953, 28.789024103000031 ], [ -81.957044026999938, 28.788860093000039 ], [ -81.957079488999966, 28.788678351000044 ], [ -81.957163710999964, 28.788496609000049 ], [ -81.957239066999989, 28.788323733000027 ], [ -81.957283395, 28.78817745300006 ], [ -81.957292259999974, 28.787924788000055 ], [ -81.957283395, 28.787698719000048 ], [ -81.957265663999976, 28.787556872000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95696867099997, 28.784192434000033 ], [ -81.956906612999944, 28.784183569000049 ], [ -81.956831256999976, 28.784165838000035 ], [ -81.955395053999951, 28.783452170000032 ], [ -81.955328562999966, 28.783412275000046 ], [ -81.955301966999968, 28.783354650000035 ], [ -81.955306399999984, 28.783274861000052 ], [ -81.955443813999977, 28.783048792000045 ], [ -81.955510304999962, 28.78299559900006 ], [ -81.955598958999985, 28.782955705000063 ], [ -81.955692046999957, 28.782946839000033 ], [ -81.955811729999937, 28.782964570000047 ], [ -81.956946507999987, 28.783545257000071 ], [ -81.957070623999982, 28.783576286000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956689409999967, 28.785375972000054 ], [ -81.957230201999948, 28.785384837000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955461544999935, 28.786027582000031 ], [ -81.955749671999968, 28.78604974600006 ], [ -81.955944711999962, 28.786080775000073 ], [ -81.956122020999942, 28.786102938000056 ], [ -81.956281598999965, 28.786151698000026 ], [ -81.956410147999975, 28.786151698000026 ], [ -81.956547561999969, 28.786151698000026 ], [ -81.956933208999942, 28.786071909000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042855174999943, 28.796982734000039 ], [ -82.042921087999957, 28.796947040000077 ], [ -82.043216985999948, 28.796795108000026 ], [ -82.043425089999971, 28.796689040000047 ], [ -82.043616931999964, 28.79658297900005 ], [ -82.043746756999951, 28.79651621000005 ], [ -82.043897450999964, 28.796448657000042 ], [ -82.043990985999983, 28.796407086000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042855174999943, 28.796982734000039 ], [ -82.043128389999936, 28.797350225000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043128389999936, 28.797350225000059 ], [ -82.04336482399998, 28.797643819000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043128389999936, 28.797350225000059 ], [ -82.044201437999959, 28.796781224000028 ], [ -82.044261195999979, 28.796760438000035 ], [ -82.044320953999943, 28.796750046000056 ], [ -82.044411890999982, 28.796742251000069 ], [ -82.044500228999937, 28.796747448000076 ], [ -82.044856178999964, 28.796781224000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044856178999964, 28.796781224000028 ], [ -82.04521992399998, 28.79680460700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04336482399998, 28.797643819000029 ], [ -82.04341743699996, 28.79761532200007 ], [ -82.043478853999943, 28.797590391000028 ], [ -82.043518378999977, 28.797582790000035 ], [ -82.043560944999967, 28.797579445000054 ], [ -82.043653221999989, 28.797578865000048 ], [ -82.044861375999972, 28.797529499000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04487176799995, 28.797836085000029 ], [ -82.044861375999972, 28.797529499000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044861375999972, 28.797529499000063 ], [ -82.044856178999964, 28.796781224000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04720442699994, 28.796163857000067 ], [ -82.047313832999976, 28.796086432000038 ], [ -82.047473758999956, 28.79594895200006 ], [ -82.047597248999978, 28.795815056000038 ], [ -82.047677715999953, 28.795684888000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047392392999939, 28.797837197000035 ], [ -82.047392392999939, 28.797570655000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047392392999939, 28.797570655000072 ], [ -82.047389586999941, 28.796936563000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047389586999941, 28.796936563000031 ], [ -82.047395198999936, 28.796611100000064 ], [ -82.047392392999939, 28.796521317000042 ], [ -82.047375558999988, 28.796442757000079 ], [ -82.047339083999987, 28.796369809000055 ], [ -82.047291386999973, 28.796302472000036 ], [ -82.047252106999963, 28.796237940000026 ], [ -82.04720442699994, 28.796163857000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045588317999943, 28.797562237000079 ], [ -82.047392392999939, 28.797570655000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045588317999943, 28.796930952000025 ], [ -82.047389586999941, 28.796936563000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045593929999939, 28.79781755700003 ], [ -82.045588317999943, 28.797562237000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045588317999943, 28.797562237000079 ], [ -82.045588317999943, 28.796930952000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045588317999943, 28.796930952000025 ], [ -82.045577095999988, 28.796583043000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048786204999942, 28.794275349000031 ], [ -82.049231938999981, 28.793816308000032 ], [ -82.049259047999954, 28.793784680000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049259047999954, 28.793784680000044 ], [ -82.049315212999943, 28.793834876000062 ], [ -82.049384242999963, 28.793883772000072 ], [ -82.049461901999962, 28.793915411000057 ], [ -82.049565446999964, 28.793952802000035 ], [ -82.049677620999944, 28.793978689000028 ], [ -82.04979842299997, 28.794004575000031 ], [ -82.049896215999979, 28.794016080000063 ], [ -82.049982503999956, 28.794021832000055 ], [ -82.050060161999966, 28.794021832000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050060161999966, 28.794021832000055 ], [ -82.05085975999998, 28.794030461000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05085975999998, 28.794030461000034 ], [ -82.051296949999937, 28.79403333700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050060161999966, 28.794021832000055 ], [ -82.050068790999944, 28.792842569000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050068790999944, 28.792842569000072 ], [ -82.050071666999941, 28.792529058000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05085975999998, 28.794030461000034 ], [ -82.050865512999962, 28.792854074000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050068790999944, 28.792842569000072 ], [ -82.050865512999962, 28.792854074000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050865512999962, 28.792854074000047 ], [ -82.051302702999976, 28.792851198000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026733981999939, 28.846807450000028 ], [ -82.026797650999981, 28.846764596000071 ], [ -82.026875254999936, 28.846742404000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026523832999942, 28.847142371000075 ], [ -82.02656525499998, 28.847093299000051 ], [ -82.026608621999969, 28.847027590000039 ], [ -82.026650252999957, 28.846951186000069 ], [ -82.026699162999989, 28.846860394000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035940186999937, 28.84585670000007 ], [ -82.036238705999949, 28.845952319000048 ], [ -82.036570451999978, 28.846064556000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036570451999978, 28.846064556000044 ], [ -82.036620780999954, 28.846081584000046 ], [ -82.037059572999965, 28.846226846000036 ], [ -82.037250019999988, 28.846291073000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037252495999951, 28.846152451000023 ], [ -82.037084203999939, 28.846132304000037 ], [ -82.036979673999952, 28.846101816000044 ], [ -82.03674448299995, 28.846029952000038 ], [ -82.036670440999956, 28.846027775000039 ], [ -82.036618176, 28.846043018000046 ], [ -82.036570451999978, 28.846064556000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012199377999934, 28.927357452000024 ], [ -82.012212226999964, 28.927885692000075 ], [ -82.012230786999964, 28.927968498000041 ], [ -82.012250773999938, 28.928015611000035 ], [ -82.012279327999977, 28.928048448000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012334363999969, 28.927357733000065 ], [ -82.012957050999944, 28.927361519000044 ], [ -82.013686031999953, 28.927367101000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009290376999957, 28.92732705700007 ], [ -82.009842871999979, 28.927338089000045 ], [ -82.010476971999935, 28.927346657000044 ], [ -82.011076792999972, 28.927350916000023 ], [ -82.011583580999968, 28.927353028000027 ], [ -82.012056609999945, 28.927357452000024 ], [ -82.012199377999934, 28.927357452000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012290486999973, 28.927231990000053 ], [ -82.012199377999934, 28.927357452000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012199377999934, 28.927357452000024 ], [ -82.012334363999969, 28.927357733000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012334363999969, 28.927357733000065 ], [ -82.012290486999973, 28.927231990000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012279327999977, 28.928048448000027 ], [ -82.012279803999945, 28.928199900000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012279327999977, 28.928048448000027 ], [ -82.012297166999986, 28.928019860000063 ], [ -82.01230491299998, 28.927994038000065 ], [ -82.01230620399997, 28.927966926000067 ], [ -82.012334363999969, 28.927357733000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018581984999969, 28.865476709000063 ], [ -82.018903833999957, 28.865476665000074 ], [ -82.019930134999981, 28.865478735000067 ], [ -82.020542099999943, 28.865475716000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020598785999937, 28.86711662700003 ], [ -82.02063020099996, 28.867073166000068 ], [ -82.020643835999977, 28.867001583000047 ], [ -82.02064668099996, 28.866921433000073 ], [ -82.02064588099995, 28.866287115000034 ], [ -82.020657865999965, 28.865818811000054 ], [ -82.02066973999996, 28.865475089000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02066973999996, 28.865475089000029 ], [ -82.020677852999938, 28.865326023000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020533359999945, 28.865325668000025 ], [ -82.020542099999943, 28.865475716000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020601782999961, 28.867997398000057 ], [ -82.020598785999937, 28.86711662700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020542099999943, 28.865475716000049 ], [ -82.020545136999942, 28.866529181000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020542099999943, 28.865475716000049 ], [ -82.02066973999996, 28.865475089000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017871744, 28.865220327000031 ], [ -82.017866096999967, 28.865319742000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014451661999942, 28.864422088000026 ], [ -82.01782482699997, 28.864425976000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014451663999978, 28.864422088000026 ], [ -82.014413379999951, 28.864457214000026 ], [ -82.014391196999952, 28.864513526000053 ], [ -82.014394608999964, 28.865071520000072 ], [ -82.014398021999966, 28.865194381000038 ], [ -82.014451081999937, 28.865226804000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01782482699997, 28.864425976000064 ], [ -82.017821590999972, 28.864492306000045 ], [ -82.017819972999973, 28.865063398000075 ], [ -82.017829679999977, 28.865132965000043 ], [ -82.017842622999979, 28.865179882000064 ], [ -82.017871744, 28.865220327000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017946145999986, 28.864426852000065 ], [ -82.01807181199996, 28.864427759000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01782482699997, 28.864425976000064 ], [ -82.017946145999986, 28.864426852000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017871744, 28.865220327000031 ], [ -82.017905717999952, 28.865192824000076 ], [ -82.017929984999967, 28.865142672000047 ], [ -82.017946145999986, 28.864426852000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014451081999937, 28.865226804000031 ], [ -82.014451017999988, 28.865314741000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014451081999937, 28.865226804000031 ], [ -82.014479929999936, 28.865206325000031 ], [ -82.014500405999968, 28.865168785000037 ], [ -82.014500405999968, 28.864503287000048 ], [ -82.014451661999942, 28.864422088000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041869, 28.798255797000024 ], [ -82.041906118999975, 28.798141583000074 ], [ -82.041930389999948, 28.798017375000029 ], [ -82.041948949999949, 28.797944564000034 ], [ -82.041981785999951, 28.797856048000028 ], [ -82.042034609999973, 28.797748972000079 ], [ -82.042087433999939, 28.797673305000046 ], [ -82.042178805999981, 28.797546242000067 ], [ -82.042274459999987, 28.797430600000041 ], [ -82.042341560999944, 28.797363500000074 ], [ -82.042510766999953, 28.79717309800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039835987999936, 28.79884542800005 ], [ -82.039945919, 28.79884542800005 ], [ -82.040062988999978, 28.798832579000077 ], [ -82.040202900999986, 28.798842573000059 ], [ -82.040355661999968, 28.798858277000079 ], [ -82.040492718999985, 28.798866843000042 ], [ -82.040595511999982, 28.798865415000023 ], [ -82.040718291999951, 28.79884542800005 ], [ -82.040862487999959, 28.798809736000067 ], [ -82.041003827999987, 28.798786893000056 ], [ -82.041128035999975, 28.798766906000026 ], [ -82.041270802999975, 28.798742635000053 ], [ -82.041389299999935, 28.798722648000023 ], [ -82.041480671999977, 28.79868695600004 ], [ -82.041583463999984, 28.798641270000076 ], [ -82.041684828999962, 28.798575597000024 ], [ -82.041743363999956, 28.798512779000077 ], [ -82.041794760999949, 28.798439968000025 ], [ -82.041836162999971, 28.798357162000059 ], [ -82.041869, 28.798255797000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039713207999966, 28.798849711000059 ], [ -82.039707496999938, 28.798942510000074 ], [ -82.039695307999978, 28.799619547000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037382407999985, 28.796868025000038 ], [ -82.037442300999942, 28.796993094000072 ], [ -82.037505715999941, 28.797132256000054 ], [ -82.03754975399994, 28.797216809000076 ], [ -82.037583223999945, 28.797266132000061 ], [ -82.037634307999951, 28.797345402000076 ], [ -82.037695961999987, 28.797414102000062 ], [ -82.037748807999947, 28.797465186000068 ], [ -82.03780693899995, 28.797518032000028 ], [ -82.037868592999985, 28.797574402000066 ], [ -82.037924961999977, 28.797620202000076 ], [ -82.038004230999945, 28.797671286000025 ], [ -82.038069407999956, 28.797710040000027 ], [ -82.038148676999981, 28.797745271000053 ], [ -82.038213853999935, 28.797776978000059 ], [ -82.038282553999977, 28.79779811700007 ], [ -82.038442853999982, 28.797843917000023 ], [ -82.038661284999989, 28.797889717000032 ], [ -82.03879692299995, 28.797912617000065 ], [ -82.038934322999978, 28.797928471000034 ], [ -82.039043538999977, 28.797956655000064 ], [ -82.039138661999971, 28.797986601000048 ], [ -82.039244353999948, 28.798039448000054 ], [ -82.039307768999947, 28.798078201000067 ], [ -82.039372945999958, 28.798129286000062 ], [ -82.039431076999961, 28.798178609000047 ], [ -82.039517391999937, 28.79825435500004 ], [ -82.039587854, 28.798361809000028 ], [ -82.039628368999956, 28.798421701000052 ], [ -82.039649507999968, 28.798492163000049 ], [ -82.039670646, 28.798537963000058 ], [ -82.039688260999981, 28.798606663000044 ], [ -82.03969871299995, 28.798708490000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039846799999964, 28.799607216000027 ], [ -82.03985208499995, 28.799494478000042 ], [ -82.039844842999969, 28.799357611000062 ], [ -82.039846889999978, 28.799228669000058 ], [ -82.039834609999957, 28.799120194000068 ], [ -82.039832707999949, 28.799001247000035 ], [ -82.039835987999936, 28.798908246000053 ], [ -82.039835987999936, 28.79884542800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039830306999988, 28.798706364000054 ], [ -82.039829184999974, 28.798678886000062 ], [ -82.039806284999941, 28.798527394000075 ], [ -82.039760484999988, 28.798386471000072 ], [ -82.039675930999977, 28.798233217000075 ], [ -82.03957728499995, 28.798104625000065 ], [ -82.039431076999961, 28.797965463000025 ], [ -82.03930072299994, 28.797868578000077 ], [ -82.039172130999987, 28.797780502000023 ], [ -82.038967791999937, 28.797688902000061 ], [ -82.038766976999966, 28.797616679000043 ], [ -82.038601392999965, 28.797574402000066 ], [ -82.038451661999943, 28.79755854800004 ], [ -82.038333638999973, 28.79755678600003 ], [ -82.038245561999986, 28.79755678600003 ], [ -82.038136346999977, 28.797537409000029 ], [ -82.038027130999978, 28.797505702000024 ], [ -82.037933769999938, 28.797468709000043 ], [ -82.037836885, 28.797396486000025 ], [ -82.037762900999951, 28.797311932000071 ], [ -82.03767834699994, 28.797197432000075 ], [ -82.037614930999951, 28.797074125000051 ], [ -82.037553277999962, 28.796940248000055 ], [ -82.037502192999966, 28.796829271000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039713207999966, 28.798849711000059 ], [ -82.039835987999936, 28.79884542800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041783338999949, 28.798227244000032 ], [ -82.041869, 28.798255797000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042510766999953, 28.79717309800003 ], [ -82.042514380999989, 28.797169031000067 ], [ -82.042693475999954, 28.797068872000068 ], [ -82.042855174999943, 28.796982734000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042510766999953, 28.79717309800003 ], [ -82.04238830099996, 28.797214881000059 ], [ -82.042276839999943, 28.79727973100006 ], [ -82.042181591999963, 28.797362819000057 ], [ -82.042070131999935, 28.797492519000059 ], [ -82.041997174999949, 28.797601953000026 ], [ -82.041934351999942, 28.79774989200007 ], [ -82.041889767999976, 28.797887698000068 ], [ -82.041845183999953, 28.798045770000044 ], [ -82.041783338999949, 28.798227244000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041783338999949, 28.798227244000032 ], [ -82.041739802999984, 28.798290983000072 ], [ -82.041666845999941, 28.798374072000058 ], [ -82.041573624999955, 28.798471347000032 ], [ -82.041445951999947, 28.798574701000064 ], [ -82.041316251999945, 28.798637525000061 ], [ -82.041210870999976, 28.798680082000033 ], [ -82.04106901199998, 28.798712507000062 ], [ -82.040959577999956, 28.798736826000038 ], [ -82.040833930999952, 28.798771277000071 ], [ -82.040714363999939, 28.798799649000046 ], [ -82.04060898299997, 28.798819915000024 ], [ -82.040536026999973, 28.798811809000028 ], [ -82.040452937999987, 28.798795596000048 ], [ -82.040361742999949, 28.798761145000071 ], [ -82.040242175999936, 28.798726693000049 ], [ -82.040114502999984, 28.79870642800006 ], [ -82.039988855999979, 28.798698321000074 ], [ -82.039895634999937, 28.798698321000074 ], [ -82.039830306999988, 28.798706364000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039835987999936, 28.79884542800005 ], [ -82.039830306999988, 28.798706364000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03969871299995, 28.798708490000024 ], [ -82.039713207999966, 28.798849711000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039830306999988, 28.798706364000054 ], [ -82.03969871299995, 28.798708490000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008163098999944, 28.865460619000032 ], [ -82.008157979999964, 28.866172190000043 ], [ -82.008169924999947, 28.866286519000028 ], [ -82.008213830999978, 28.866315535000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011316483999963, 28.865914528000076 ], [ -82.011320122999962, 28.866138684000077 ], [ -82.011314665999976, 28.866180327000052 ], [ -82.011305413999935, 28.866212118000078 ], [ -82.011285509999936, 28.866254304000051 ], [ -82.011270807999949, 28.866276705000075 ], [ -82.011252701999979, 28.866298996000069 ], [ -82.011235780999982, 28.866316255000072 ], [ -82.011218529999951, 28.86633123200005 ], [ -82.01120128599996, 28.866344109000067 ], [ -82.011167914999987, 28.866364313000076 ], [ -82.01113160899996, 28.866380640000045 ], [ -82.011103228999957, 28.86639000200006 ], [ -82.011075424999945, 28.866396613000063 ], [ -82.011032887999988, 28.866402229000073 ], [ -82.010433535999937, 28.866402027000049 ], [ -82.01041902299994, 28.866401999000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011487881999983, 28.865336064000076 ], [ -82.011433655999951, 28.865354358000047 ], [ -82.011375133999934, 28.865376032000029 ], [ -82.011305061999963, 28.865411986000026 ], [ -82.011255093999978, 28.865463383000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008213830999978, 28.866315535000069 ], [ -82.008213628999954, 28.866397819000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008213830999978, 28.866315535000069 ], [ -82.008243299999947, 28.866291638000064 ], [ -82.008274014999984, 28.866175602000055 ], [ -82.008281265999983, 28.865460807000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008281265999983, 28.865460807000034 ], [ -82.008282546999965, 28.865334553000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011255093999978, 28.865463383000076 ], [ -82.011253665999959, 28.865550471000063 ], [ -82.01126508699997, 28.865747490000047 ], [ -82.01126794299995, 28.865807453000059 ], [ -82.01128792999998, 28.865864560000034 ], [ -82.011316483999963, 28.865914528000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011255093999978, 28.865463383000076 ], [ -82.011439265999968, 28.865464280000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011316483999963, 28.865914528000076 ], [ -82.011330759999964, 28.865895969000064 ], [ -82.011346464999974, 28.865865987000063 ], [ -82.011353602999975, 28.865820302000031 ], [ -82.011352175999946, 28.865584735000027 ], [ -82.011357885999985, 28.865561892000073 ], [ -82.011373590999938, 28.865533339000024 ], [ -82.011403571999949, 28.865499075000059 ], [ -82.011439265999968, 28.865464280000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051849429999947, 28.790393228000028 ], [ -82.051847036999959, 28.789797387000078 ], [ -82.051847036999959, 28.789315419000047 ], [ -82.051821217999986, 28.788979763000043 ], [ -82.051767712999947, 28.788734673000079 ], [ -82.05176354699995, 28.788687798000069 ], [ -82.051764587999969, 28.788638840000033 ], [ -82.051776745999973, 28.78858103400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049555043999987, 28.792555916000026 ], [ -82.049556817999985, 28.792543439000042 ], [ -82.049631033999958, 28.792348481000033 ], [ -82.049730305999958, 28.792183027000078 ], [ -82.049789592999957, 28.79211960300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051208451999969, 28.791491081000061 ], [ -82.051623266999968, 28.791333658000042 ], [ -82.051687927999978, 28.791306636000058 ], [ -82.051743757999986, 28.791273412000066 ], [ -82.051781964999975, 28.791228038000042 ], [ -82.051812610999946, 28.791183043000046 ], [ -82.051835299999937, 28.791135404000045 ], [ -82.051847930999941, 28.791079263000029 ], [ -82.051851339999985, 28.790868904000035 ], [ -82.051849429999947, 28.790393228000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052014762999988, 28.788039560000072 ], [ -82.052023471999973, 28.788020132000042 ], [ -82.052083717999949, 28.787873820000073 ], [ -82.052122446999988, 28.787650050000025 ], [ -82.052126578999946, 28.787323616000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051776745999973, 28.78858103400006 ], [ -82.051782487999958, 28.788527919000046 ], [ -82.051802868999971, 28.788438368000072 ], [ -82.051954511999952, 28.788192306000042 ], [ -82.051980262999962, 28.788137943000038 ], [ -82.052014762999988, 28.788039560000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052126578999946, 28.787323616000037 ], [ -82.052126749999957, 28.787310091000052 ], [ -82.052092323999943, 28.786995951000051 ], [ -82.052083717999949, 28.786995951000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050329398999963, 28.791823537000027 ], [ -82.051208451999969, 28.791491081000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050329398999963, 28.791823537000027 ], [ -82.050292609999985, 28.791743992000079 ], [ -82.05024786599995, 28.791628651000053 ], [ -82.050238916999945, 28.791593850000027 ], [ -82.050235724999936, 28.79155376600005 ], [ -82.05024167299996, 28.79072095500004 ], [ -82.050250590999951, 28.790659343000073 ], [ -82.050265467999964, 28.790596033000043 ], [ -82.050289256999974, 28.790556795000043 ], [ -82.050319005999938, 28.790518701000053 ], [ -82.050346975999958, 28.790491792000068 ], [ -82.050384440999949, 28.790465163000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050384440999949, 28.790465163000079 ], [ -82.050446590999968, 28.790452887000072 ], [ -82.050669868999989, 28.790429354000025 ], [ -82.051005649, 28.790396637000072 ], [ -82.051156928999944, 28.790390783000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051156928999944, 28.790390783000078 ], [ -82.051849429999947, 28.790393228000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051208451999969, 28.791491081000061 ], [ -82.051185461999978, 28.791441375000034 ], [ -82.051172411999971, 28.791399783000031 ], [ -82.051158794999935, 28.791348742000025 ], [ -82.051156928999944, 28.791291400000034 ], [ -82.051156928999944, 28.790390783000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050384440999949, 28.790465163000079 ], [ -82.050338898999939, 28.790330807000032 ], [ -82.050315104999981, 28.790230870000073 ], [ -82.050310345999947, 28.790130932000068 ], [ -82.050338898999939, 28.790021477000039 ], [ -82.050362693999944, 28.789883468000028 ], [ -82.050367452999978, 28.789731183000072 ], [ -82.050357934999965, 28.789578897000069 ], [ -82.050338898999939, 28.78943613000007 ], [ -82.050310345999947, 28.789288603000045 ], [ -82.050305586999968, 28.789174389000038 ], [ -82.050315104999981, 28.789050657000075 ], [ -82.050334139999961, 28.788898371000073 ], [ -82.050343657999974, 28.788760363000051 ], [ -82.050343657999974, 28.788641390000066 ], [ -82.050338898999939, 28.788584282000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050338898999939, 28.788584282000045 ], [ -82.050529255999948, 28.788570006000043 ], [ -82.05094804099997, 28.788555729000052 ], [ -82.051295442999958, 28.78856048800003 ], [ -82.051552423999965, 28.78856048800003 ], [ -82.051666638999961, 28.788570006000043 ], [ -82.051776745999973, 28.78858103400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050338898999939, 28.788584282000045 ], [ -82.050277032999986, 28.78832254200006 ], [ -82.050248479999937, 28.788132185000052 ], [ -82.050246627999968, 28.788039648000051 ], [ -82.050253238999971, 28.787951346000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050253238999971, 28.787951346000057 ], [ -82.051742784999988, 28.787960550000037 ], [ -82.051815461, 28.787967703000049 ], [ -82.051866512999936, 28.787979899000049 ], [ -82.051907620999941, 28.787990531000048 ], [ -82.051956659999973, 28.78800913200007 ], [ -82.052014762999988, 28.788039560000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050253238999971, 28.787951346000057 ], [ -82.050353175999987, 28.787494489000039 ], [ -82.050368437999964, 28.78746028200004 ], [ -82.050391247999983, 28.787427864000051 ], [ -82.050424551999981, 28.787401279000051 ], [ -82.050462630999959, 28.787380275000032 ], [ -82.050515737999945, 28.787364970000056 ], [ -82.050567327999943, 28.787356481000074 ], [ -82.051757057999964, 28.787346963000061 ], [ -82.05189030799994, 28.787337445000048 ], [ -82.052126578999946, 28.787323616000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052126578999946, 28.787323616000037 ], [ -82.052228190999983, 28.787313650000044 ], [ -82.052303576999975, 28.787302477000026 ], [ -82.052375717999951, 28.78727082000006 ], [ -82.052489931999958, 28.787199436000037 ], [ -82.052547039, 28.787170883000044 ], [ -82.052627940999969, 28.787151847000075 ], [ -82.053732010999965, 28.787189918000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051849429999947, 28.790393228000028 ], [ -82.05248517299998, 28.790383155000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05248517299998, 28.790383155000029 ], [ -82.053351296999949, 28.790387914000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053398885999968, 28.792462804000024 ], [ -82.053398885999968, 28.792191545000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053398885999968, 28.792191545000037 ], [ -82.053394127, 28.791615716000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053394127, 28.791615716000024 ], [ -82.053398885999968, 28.791030368000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053398885999968, 28.791030368000065 ], [ -82.053409193999983, 28.790554467000049 ], [ -82.053408403999981, 28.790516405000062 ], [ -82.053399679999984, 28.790473800000029 ], [ -82.053389367999955, 28.790440262000061 ], [ -82.053370307999955, 28.790411334000055 ], [ -82.053351296999949, 28.790387914000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053351296999949, 28.790387914000064 ], [ -82.05336557399994, 28.790321289000076 ], [ -82.053370332999975, 28.790235628000062 ], [ -82.05336557399994, 28.789807325000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05336557399994, 28.789807325000027 ], [ -82.053370332999975, 28.789207701000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053370332999975, 28.789207701000066 ], [ -82.05338226899994, 28.788877094000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052461378999965, 28.792467563000059 ], [ -82.052475654999967, 28.79218202800007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052475654999967, 28.79218202800007 ], [ -82.05248517299998, 28.791601439000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05248517299998, 28.791601439000033 ], [ -82.052499449999971, 28.791035127000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052499449999971, 28.791035127000043 ], [ -82.052499481999973, 28.79074474500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052475654999967, 28.79218202800007 ], [ -82.053398885999968, 28.792191545000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05248517299998, 28.791601439000033 ], [ -82.053394127, 28.791615716000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052499449999971, 28.791035127000043 ], [ -82.053398885999968, 28.791030368000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05248517299998, 28.790383155000029 ], [ -82.052489931999958, 28.78981684300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052489931999958, 28.78981684300004 ], [ -82.052461378999965, 28.789326674000051 ], [ -82.052461659999949, 28.789300198000035 ], [ -82.052466137999943, 28.789274326000054 ], [ -82.052478421999979, 28.789255100000048 ], [ -82.052494690999936, 28.789236255000048 ], [ -82.052517933, 28.789221177000059 ], [ -82.052547039, 28.789207701000066 ], [ -82.052576200999965, 28.789205213000059 ], [ -82.052682360999938, 28.789206410000077 ], [ -82.053370332999975, 28.789207701000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052489931999958, 28.78981684300004 ], [ -82.05336557399994, 28.789807325000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96442486899997, 28.786600332000035 ], [ -81.96450574399995, 28.786548974000027 ], [ -81.964613784999983, 28.786509504000037 ], [ -81.964978675999987, 28.78643517200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964978675999987, 28.78643517200004 ], [ -81.966245047999962, 28.786087656000063 ], [ -81.966325501999961, 28.786080433000052 ], [ -81.96639818999995, 28.786081766000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964978675999987, 28.78643517200004 ], [ -81.965186639999956, 28.786845 ], [ -81.965248260999942, 28.786904340000035 ], [ -81.965334987999938, 28.786940856000058 ], [ -81.965432213999975, 28.786941720000073 ], [ -81.965532344999986, 28.786924050000039 ], [ -81.966209706999962, 28.786747347000073 ], [ -81.966280387999973, 28.786706116000062 ], [ -81.966321618999984, 28.786653105000028 ], [ -81.966351069999973, 28.786570644000051 ], [ -81.96639818999995, 28.786081766000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96639818999995, 28.786081766000052 ], [ -81.96646887199995, 28.785398514000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96646887199995, 28.785398514000065 ], [ -81.96653366299995, 28.785056888000042 ], [ -81.966569002999961, 28.784933196000054 ], [ -81.966616123999984, 28.784844844000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966616123999984, 28.784844844000077 ], [ -81.966792826999949, 28.784609240000066 ], [ -81.966987200999938, 28.784261724000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966987200999938, 28.784261724000032 ], [ -81.967181573999937, 28.783984889000067 ], [ -81.967370056999982, 28.783660934000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967370056999982, 28.783660934000068 ], [ -81.967403396450251, 28.783608552010005 ], [ -81.967440738999983, 28.783560802000068 ], [ -81.967462297198509, 28.783538598946031 ], [ -81.967487065458215, 28.78351809765315 ], [ -81.967515301143536, 28.78349907964569 ], [ -81.967547553267764, 28.783481172707216 ], [ -81.967611746683488, 28.78345276483121 ], [ -81.967732309619095, 28.783408508958001 ], [ -81.967777786578083, 28.783390440062902 ], [ -81.967821639313897, 28.783370027111168 ], [ -81.967858935999971, 28.783348758000045 ], [ -81.968003199253772, 28.783260913933731 ], [ -81.968071895406695, 28.78321368832388 ], [ -81.968104001092939, 28.783187682803348 ], [ -81.968131946472539, 28.783161541392577 ], [ -81.968156206516113, 28.783134817515567 ], [ -81.968177000999958, 28.783107264000023 ], [ -81.968213103725887, 28.783052113580766 ], [ -81.96822327113594, 28.783031808015245 ], [ -81.968230011999935, 28.783013022000034 ], [ -81.968234892128621, 28.782986147784776 ], [ -81.968235576309681, 28.782955081903438 ], [ -81.968232239434968, 28.782919601075488 ], [ -81.968224121999981, 28.782871660000069 ], [ -81.9682150200005, 28.782830339032213 ], [ -81.968203383611154, 28.782790381001906 ], [ -81.968189533027257, 28.782752875862499 ], [ -81.968173695446438, 28.782718426568735 ], [ -81.96815619396817, 28.782687665578145 ], [ -81.968137083935133, 28.782660625633845 ], [ -81.968116499633624, 28.782637495570764 ], [ -81.968094539999981, 28.782618385000035 ], [ -81.968065907215177, 28.782599375371511 ], [ -81.968033558337808, 28.782582636876917 ], [ -81.967999254623649, 28.782569080328017 ], [ -81.967964957999982, 28.782559484000046 ], [ -81.96793249340908, 28.782554398584619 ], [ -81.967896688749533, 28.782552695376275 ], [ -81.967858050997734, 28.782554405928106 ], [ -81.967817704999959, 28.782559484000046 ], [ -81.967791224396194, 28.782565766617516 ], [ -81.967764783614854, 28.78257589402741 ], [ -81.967738097327967, 28.782589970509644 ], [ -81.967710629918528, 28.782608276086734 ], [ -81.967662226279572, 28.782648408375486 ], [ -81.967549005316812, 28.782755479713074 ], [ -81.967517475867865, 28.782780933400556 ], [ -81.967487858999959, 28.782800979000058 ], [ -81.967412488302131, 28.782844796680415 ], [ -81.967335512410571, 28.782885771595129 ], [ -81.967256931325778, 28.782923903743857 ], [ -81.967176745047382, 28.782959193126835 ], [ -81.967094953575696, 28.782991639743891 ], [ -81.967011556910506, 28.783021243595137 ], [ -81.966926555052027, 28.783048004680499 ], [ -81.966839947999972, 28.783071923000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966839947999972, 28.783071923000023 ], [ -81.966771528478446, 28.783121804067044 ], [ -81.966701238971211, 28.783167787756131 ], [ -81.966629079478338, 28.783209874067133 ], [ -81.966555049999954, 28.78324806300003 ], [ -81.966474791308187, 28.783284182008725 ], [ -81.966392444577579, 28.783315949178295 ], [ -81.966308009808131, 28.783343364508767 ], [ -81.966221486999984, 28.783366428000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966221486999984, 28.783366428000079 ], [ -81.966074234999951, 28.783372319000023 ], [ -81.965720828999963, 28.783389989000057 ], [ -81.965526454999974, 28.783407659000034 ], [ -81.965367422999975, 28.783437110000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965367422999975, 28.783437110000079 ], [ -81.965196609999964, 28.783448890000045 ], [ -81.965014015999941, 28.783507791000034 ], [ -81.964849093999987, 28.783584362000056 ], [ -81.964654719999942, 28.783672714000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967370056999982, 28.783660934000068 ], [ -81.967234584999972, 28.783525461000067 ], [ -81.966904738999972, 28.783160275000057 ], [ -81.966839947999972, 28.783071923000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966987200999938, 28.784261724000032 ], [ -81.966521882999984, 28.783749285000056 ], [ -81.966221486999984, 28.783366428000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966616123999984, 28.784844844000077 ], [ -81.965443993999941, 28.783572582000033 ], [ -81.965367422999975, 28.783437110000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96646887199995, 28.785398514000065 ], [ -81.966339288999961, 28.785392624000053 ], [ -81.966254750999951, 28.785386617000029 ], [ -81.966168023999955, 28.785356947000025 ], [ -81.966097794999939, 28.785304272000076 ], [ -81.964716487999965, 28.783779885000058 ], [ -81.964679970999953, 28.783734239000069 ], [ -81.964654719999942, 28.783672714000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964928257999986, 28.787369297000055 ], [ -81.964910977999978, 28.787344706000056 ], [ -81.964826246999962, 28.787223136000023 ], [ -81.964767303999963, 28.787142089000042 ], [ -81.964682572999948, 28.787009467000075 ], [ -81.964597842999979, 28.786873161000074 ], [ -81.964509427999985, 28.786714752000023 ], [ -81.96442486899997, 28.786600332000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964135542999941, 28.785950311000079 ], [ -81.964561353999954, 28.785834073000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964561353999954, 28.785834073000046 ], [ -81.965384509999978, 28.785620574000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965384509999978, 28.785620574000063 ], [ -81.965794901999971, 28.785512639000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964561353999954, 28.785834073000046 ], [ -81.963650119999954, 28.784783696000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963650119999954, 28.784783696000034 ], [ -81.963370294999947, 28.784486739000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965384509999978, 28.785620574000063 ], [ -81.965382523999949, 28.785605793000059 ], [ -81.965376655999989, 28.785588905000054 ], [ -81.965351221999981, 28.785548034000044 ], [ -81.965313838999975, 28.785497534000058 ], [ -81.96417433299996, 28.784236965000048 ], [ -81.964137432999962, 28.784199300000068 ], [ -81.964067041999954, 28.784150609000051 ], [ -81.964000375999944, 28.78410983200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963650119999954, 28.784783696000034 ], [ -81.964000375999944, 28.78410983200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964000375999944, 28.78410983200007 ], [ -81.96415075799996, 28.783833815000037 ], [ -81.96416217999996, 28.783809068000039 ], [ -81.96417360099997, 28.783753865000051 ], [ -81.964172164999979, 28.783713462000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964654719999942, 28.783672714000033 ], [ -81.964508829999943, 28.783704306000061 ], [ -81.964364111999942, 28.783717144000036 ], [ -81.964249737999978, 28.78371831100003 ], [ -81.964172164999979, 28.783713462000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038460283999939, 28.898289010000042 ], [ -82.03782543899996, 28.89829934200003 ], [ -82.037086639999984, 28.898325300000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038460283999939, 28.898289010000042 ], [ -82.038477634999936, 28.899469521000071 ], [ -82.038566730999946, 28.899632891000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955715216999977, 28.957343609000077 ], [ -81.956260430999976, 28.957386751000058 ], [ -81.956441221999967, 28.957505032000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181851562999952, 28.85815722500007 ], [ -82.182019997999987, 28.85814412700006 ], [ -82.182832809999979, 28.858079370000041 ], [ -82.183460556999989, 28.858028740000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953703753999946, 28.91216627700004 ], [ -81.953714015999935, 28.913374661000034 ], [ -81.953747368999984, 28.913713317000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020527322999953, 28.859255673000064 ], [ -82.020526987999972, 28.859418040000037 ], [ -82.020527107999953, 28.860029888000042 ], [ -82.020527111999968, 28.860050707000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019915220999962, 28.858179863000032 ], [ -82.019811224999955, 28.858179318000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017594724999981, 28.824270751000029 ], [ -82.017587671999934, 28.82424898000005 ], [ -82.017578059999948, 28.824229939000077 ], [ -82.017530195999939, 28.824167362000026 ], [ -82.017507523999939, 28.824141667000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017456435999975, 28.82455396000006 ], [ -82.017530943999986, 28.824498585000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022393103999946, 28.834340270000041 ], [ -82.022430141999962, 28.834333713000035 ], [ -82.022473264999974, 28.834320084000069 ], [ -82.022513364999952, 28.83430056900005 ], [ -82.022549412999979, 28.834275668000032 ], [ -82.022580484999935, 28.834246020000023 ], [ -82.02260578399995, 28.834212384000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022612116999937, 28.833979362000036 ], [ -82.022588673999962, 28.833944700000075 ], [ -82.022559248999983, 28.833913776000031 ], [ -82.022524594999936, 28.833887385000025 ], [ -82.022485601999961, 28.833866203000071 ], [ -82.022445052999956, 28.833851286000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02260578399995, 28.834212384000068 ], [ -82.02278735699997, 28.834138536000069 ], [ -82.02293825299995, 28.834132451000073 ], [ -82.023147560999973, 28.834136102000059 ], [ -82.023393375999945, 28.834134885000026 ], [ -82.023713421999958, 28.834075256000062 ], [ -82.023881354999958, 28.833977904000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023881354999958, 28.833977904000051 ], [ -82.023289929999976, 28.834034231000032 ], [ -82.023096450999958, 28.834035099000062 ], [ -82.022820212999989, 28.834026580000057 ], [ -82.022612116999937, 28.833979362000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019811224999955, 28.858179318000055 ], [ -82.019808087999934, 28.858281420000026 ], [ -82.019814366999981, 28.858308751000038 ], [ -82.019832128999951, 28.858335394000051 ], [ -82.019917524999983, 28.858409176000066 ], [ -82.020073970999988, 28.858540345000051 ], [ -82.020132039999964, 28.85861071100004 ], [ -82.020179177999978, 28.85870157200003 ], [ -82.020203088999949, 28.858784919000072 ], [ -82.020220774999984, 28.858939369000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019381166999949, 28.859225687000048 ], [ -82.020220774999984, 28.858939369000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019378505999953, 28.859539819000076 ], [ -82.018879109999943, 28.859545968000077 ], [ -82.018849733999957, 28.859540502000073 ], [ -82.01884290199996, 28.859517958000026 ], [ -82.018836069999963, 28.85934375000005 ], [ -82.018842218999964, 28.859323255000049 ], [ -82.018866129999935, 28.85931847300003 ], [ -82.019125801999962, 28.859314677000043 ], [ -82.019381166999949, 28.859225687000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020216905999973, 28.85923342500007 ], [ -82.020209920999946, 28.859495413000047 ], [ -82.02019489099996, 28.859529572000042 ], [ -82.020155950999936, 28.85954255200005 ], [ -82.019378505999953, 28.859539819000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020220774999984, 28.858939369000041 ], [ -82.020216905999973, 28.85923342500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019378505999953, 28.859539819000076 ], [ -82.019381166999949, 28.859225687000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020527322999953, 28.859255673000064 ], [ -82.020216905999973, 28.85923342500007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045407352999973, 28.928416699000024 ], [ -82.045577664999939, 28.928462027000023 ], [ -82.045669647999944, 28.928497588000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045698942999934, 28.928414978000035 ], [ -82.045667943999945, 28.928486383000063 ], [ -82.045669647999944, 28.928497588000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045446327999969, 28.92741976800005 ], [ -82.045431970999971, 28.927926347000039 ], [ -82.045432654999956, 28.928317599000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045407352999973, 28.928416699000024 ], [ -82.045345295999937, 28.928490127000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045432654999956, 28.928317599000025 ], [ -82.045407352999973, 28.928416699000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037351085999944, 28.799623927000027 ], [ -82.033254916999965, 28.799611303000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031205514999954, 28.799604987000066 ], [ -82.031200840999986, 28.799732109000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033254916999965, 28.799611303000063 ], [ -82.031205514999954, 28.799604987000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033254916999965, 28.799611303000063 ], [ -82.033252668999978, 28.799741437000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046929915999954, 28.800954317000048 ], [ -82.046851393999987, 28.801031411000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046929915999954, 28.800954317000048 ], [ -82.046790219999934, 28.800799579000056 ], [ -82.046622310999965, 28.80063167000003 ], [ -82.046382072999961, 28.800427596000077 ], [ -82.046147, 28.800246771000047 ], [ -82.045977565999976, 28.800130915000068 ], [ -82.045658057999958, 28.799967762000051 ], [ -82.04535214699996, 28.799841998000034 ], [ -82.045286653999938, 28.799823555000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045286653999938, 28.799823555000046 ], [ -82.044966357999954, 28.799741728000072 ], [ -82.044818500999952, 28.799711136000042 ], [ -82.044617958999936, 28.799682245000042 ], [ -82.044453106999981, 28.799668649000068 ], [ -82.044191382999941, 28.799660151000069 ], [ -82.043894437999938, 28.79966038200007 ], [ -82.043696462999947, 28.799659044000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043534700999942, 28.799657950000039 ], [ -82.039846799999964, 28.799607216000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045286653999938, 28.799823555000046 ], [ -82.045042835999936, 28.799881087000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043534700999942, 28.799657950000039 ], [ -82.043535498999972, 28.799784504000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991610054999967, 28.799952591000078 ], [ -81.99168659299994, 28.799807169000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056114070999968, 28.609950666000032 ], [ -82.056373144999952, 28.609952576000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994591858999968, 28.799587623000036 ], [ -81.994400822999978, 28.79958589000006 ], [ -81.993814802999964, 28.799585519000061 ], [ -81.993332668999983, 28.799598726000056 ], [ -81.993032490999951, 28.799619094000036 ], [ -81.992674290999958, 28.799655745000052 ], [ -81.992338257999961, 28.799694549000037 ], [ -81.991965408999988, 28.799753593000048 ], [ -81.99168659299994, 28.799807169000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026791430999936, 28.912376213000073 ], [ -82.026812215999939, 28.911283535000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026812215999939, 28.911283535000052 ], [ -82.026815872999975, 28.910442485000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026815872999975, 28.910442485000033 ], [ -82.026823185999945, 28.90960509100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026823185999945, 28.90960509100006 ], [ -82.026844191999942, 28.909124218000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026823185999945, 28.90960509100006 ], [ -82.02670434199996, 28.909603263000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026815872999975, 28.910442485000033 ], [ -82.026702513999965, 28.910444313000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026812215999939, 28.911283535000052 ], [ -82.02669154299997, 28.911283535000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026791430999936, 28.912376213000073 ], [ -82.02676925631954, 28.91236962896151 ], [ -82.026746283678008, 28.912366922717656 ], [ -82.026723186027752, 28.912368173544252 ], [ -82.026700639983133, 28.91237334480002 ], [ -82.026679305999949, 28.912382285000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026664499999981, 28.912611364000043 ], [ -82.0266827321622, 28.912622164716382 ], [ -82.02670240194233, 28.912630049319226 ], [ -82.026723046339114, 28.912634832215186 ], [ -82.026744179410073, 28.912636400821064 ], [ -82.026765303709965, 28.912634718213894 ], [ -82.026785921999988, 28.912629824000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026679305999949, 28.912382285000035 ], [ -82.026663485794117, 28.912392020841239 ], [ -82.026649159209143, 28.912403845158526 ], [ -82.026636599961009, 28.912417532042873 ], [ -82.026626047999969, 28.912432820000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026626047999969, 28.912432820000049 ], [ -82.026581763999957, 28.912438516000066 ], [ -82.026518946999943, 28.912452792000067 ], [ -82.026466122999977, 28.912475635000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026626047999969, 28.912432820000049 ], [ -82.026616832403263, 28.91245155200647 ], [ -82.026610629006711, 28.912471485223932 ], [ -82.026607587498788, 28.912492138662309 ], [ -82.026607781271309, 28.91251301395247 ], [ -82.026611205648521, 28.912533607371998 ], [ -82.026617777999945, 28.91255342200003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026466122999977, 28.912475635000078 ], [ -82.026617777999945, 28.91255342200003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026617777999945, 28.91255342200003 ], [ -82.026626279098281, 28.912570234038618 ], [ -82.026637047603344, 28.912585692130772 ], [ -82.026649871906201, 28.91259949251376 ], [ -82.026664499999981, 28.912611364000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026664499999981, 28.912611364000043 ], [ -82.026693122999973, 28.912742611000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026693122999973, 28.912742611000056 ], [ -82.026785921999988, 28.912629824000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026785921999988, 28.912629824000078 ], [ -82.026804093151114, 28.912622054431719 ], [ -82.026820936951864, 28.912611717928353 ], [ -82.026836093242665, 28.912599035508435 ], [ -82.026849237946792, 28.912584278351567 ], [ -82.026860089999957, 28.912567762000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026860089999957, 28.912567762000037 ], [ -82.027001500999972, 28.912478491000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026860089999957, 28.912567762000037 ], [ -82.026869263535175, 28.912547540952112 ], [ -82.026875002250577, 28.912526090738289 ], [ -82.026877151240058, 28.912503990367888 ], [ -82.026875652495548, 28.912481836400016 ], [ -82.026870546472935, 28.91246022684054 ], [ -82.02686197099996, 28.912439745000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027001500999972, 28.912478491000059 ], [ -82.02686197099996, 28.912439745000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02686197099996, 28.912439745000029 ], [ -82.026851830718982, 28.912423225337118 ], [ -82.026839431522134, 28.912408326193571 ], [ -82.026825028465183, 28.912395354049909 ], [ -82.026808917823956, 28.912384575747609 ], [ -82.026791430999936, 28.912376213000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119962982999937, 28.890632291000031 ], [ -82.119962983999983, 28.890770795000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119962983999983, 28.890770795000037 ], [ -82.120256689999962, 28.890763462000052 ], [ -82.120649300999958, 28.890763462000052 ], [ -82.120800634999966, 28.890770600000053 ], [ -82.120879157, 28.890762034000034 ], [ -82.120945781999978, 28.890754833000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120945781999978, 28.890754833000074 ], [ -82.120892092999952, 28.890677378000078 ], [ -82.120744375999948, 28.890640448000056 ], [ -82.120564345999981, 28.890631216000031 ], [ -82.120375082999942, 28.890635832000044 ], [ -82.120162739999955, 28.890631216000031 ], [ -82.119962982999937, 28.890632291000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016265951999969, 28.930706398000041 ], [ -82.016272318999938, 28.93149353900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016160192999962, 28.929235514000027 ], [ -82.016054813999972, 28.928876775000049 ], [ -82.015954466999972, 28.928501815000061 ], [ -82.015942543999984, 28.928380307000054 ], [ -82.015924816999984, 28.928218331000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015793808999945, 28.928230807000034 ], [ -82.015822159999971, 28.928386552000063 ], [ -82.015839880999977, 28.928504919000034 ], [ -82.015878854999983, 28.92866689300007 ], [ -82.015985134999937, 28.929040677000046 ], [ -82.016031146999978, 28.929218671000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016160192999962, 28.929235514000027 ], [ -82.016031146999978, 28.929218671000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016315376999955, 28.929945559000032 ], [ -82.016308475999949, 28.929852161000042 ], [ -82.016283377999969, 28.929687960000024 ], [ -82.016238776999955, 28.929518861000076 ], [ -82.016163517999985, 28.929246832000047 ], [ -82.016160192999962, 28.929235514000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016031146999978, 28.929218671000058 ], [ -82.016038278999986, 28.929246259000024 ], [ -82.016126845999963, 28.929548400000044 ], [ -82.016176452999957, 28.929778903000056 ], [ -82.016197713999986, 28.929881694000073 ], [ -82.016202939999971, 28.929950513000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016315376999955, 28.929945559000032 ], [ -82.016202939999971, 28.929950513000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968413879999957, 28.788884837000069 ], [ -81.968404663999934, 28.788793706000035 ], [ -81.968371421999962, 28.788686922000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968192656999975, 28.788606128000026 ], [ -81.968043618999957, 28.788602697000044 ], [ -81.967919708999943, 28.788643120000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968371421999962, 28.788686922000068 ], [ -81.968376469999953, 28.788611723000031 ], [ -81.968419678999965, 28.788510056000064 ], [ -81.968513720999965, 28.78837788800007 ], [ -81.968643346999954, 28.788144053000053 ], [ -81.968752639999934, 28.787917843000059 ], [ -81.968839056999968, 28.787681466000038 ], [ -81.968938182999977, 28.787366297000062 ], [ -81.96902205899994, 28.787028252000027 ], [ -81.969105934999959, 28.786723250000023 ], [ -81.969202518999964, 28.786438581000027 ], [ -81.969306727999935, 28.786181870000064 ], [ -81.969418561999987, 28.785942952000028 ], [ -81.969568521999975, 28.785678616000041 ], [ -81.96969052299994, 28.785480365000069 ], [ -81.969820148999986, 28.785282113000051 ], [ -81.969924357999957, 28.785066070000028 ], [ -81.970003149999968, 28.784860193000043 ], [ -81.970102275999977, 28.78459839900006 ], [ -81.970211567999968, 28.784354397000072 ], [ -81.970346277999965, 28.78413327100003 ], [ -81.970541987999979, 28.783876560000067 ], [ -81.970735155999989, 28.783665600000063 ], [ -81.970920698999976, 28.783436848000065 ], [ -81.971070658999963, 28.783208096000067 ], [ -81.971177409999939, 28.783007303000034 ], [ -81.971340076999979, 28.782641300000023 ], [ -81.971574675999989, 28.782233579000035 ], [ -81.972058548999939, 28.78154214500006 ], [ -81.972253015999968, 28.781272983000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972159678999958, 28.781223187000023 ], [ -81.97170565, 28.781869953000069 ], [ -81.971478168999965, 28.782206005000035 ], [ -81.971230606999939, 28.782653504000052 ], [ -81.971078283999987, 28.782989511000039 ], [ -81.970892740999943, 28.783276722000039 ], [ -81.97073007299997, 28.783495307000067 ], [ -81.970592820999968, 28.78365797500004 ], [ -81.970425069999976, 28.783858768000073 ], [ -81.970282735999945, 28.784051937000072 ], [ -81.970130233999953, 28.784288313000047 ], [ -81.970013316999939, 28.784532315000035 ], [ -81.969909107999968, 28.78480681800005 ], [ -81.969807439999954, 28.785076236000066 ], [ -81.969700688999978, 28.785282113000051 ], [ -81.969492270999979, 28.785607449000054 ], [ -81.969370269999956, 28.785810784000034 ], [ -81.96919997699996, 28.786174245000041 ], [ -81.969044933999953, 28.786591082000029 ], [ -81.968915307999964, 28.787101961000076 ], [ -81.96881364099994, 28.787478131000057 ], [ -81.968745014999968, 28.787684007000053 ], [ -81.968653513999982, 28.787920384000074 ], [ -81.968544221999935, 28.788149136000072 ], [ -81.968424761999984, 28.788334679000059 ], [ -81.96832309499996, 28.788479556000027 ], [ -81.968228816999954, 28.788579061000064 ], [ -81.968192656999975, 28.788606128000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026693122999973, 28.912742611000056 ], [ -82.026667130999954, 28.912817188000076 ], [ -82.026605264999944, 28.912890951000065 ], [ -82.026524363999954, 28.912969473000032 ], [ -82.026441081999963, 28.913040857000055 ], [ -82.026374456999974, 28.913107482000044 ], [ -82.026310211999942, 28.913176486000054 ], [ -82.026253104999967, 28.913285942000073 ], [ -82.026212653999949, 28.913492955000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045446327999969, 28.92741976800005 ], [ -82.044756887999938, 28.927418494000051 ], [ -82.044755696999971, 28.927418492000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014451017999988, 28.865314741000077 ], [ -82.014452349999942, 28.865470638000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994733971999949, 28.799590176000038 ], [ -81.994739906999939, 28.798701039000036 ], [ -81.99473472699998, 28.79838146000003 ], [ -81.994690243999969, 28.798147343000039 ], [ -81.994615326999963, 28.797917908000045 ], [ -81.994556797999962, 28.797775096000066 ], [ -81.994348432999971, 28.797459038000056 ], [ -81.99411665699995, 28.797201509000047 ], [ -81.993826351999985, 28.796995486000071 ], [ -81.993404941999984, 28.79677541600006 ], [ -81.99299055399996, 28.796527252000033 ], [ -81.992627672999959, 28.796272065000039 ], [ -81.992339708999964, 28.796028583000066 ], [ -81.991915956999947, 28.795595466000066 ], [ -81.991714615999967, 28.795349643000065 ], [ -81.99154839299996, 28.795122550000031 ], [ -81.991446486999962, 28.794918739000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991319000999965, 28.794969343000048 ], [ -81.991328322999948, 28.794991444000061 ], [ -81.991501569999969, 28.795274726000059 ], [ -81.991803580999942, 28.795661019000079 ], [ -81.992199238999945, 28.796068383000033 ], [ -81.992611284999953, 28.796419558000025 ], [ -81.99309356599997, 28.796737958000051 ], [ -81.993561799999952, 28.796993145000044 ], [ -81.99384274099998, 28.797157027000026 ], [ -81.99410260999997, 28.797374756000067 ], [ -81.994308633999935, 28.797615897000071 ], [ -81.994446762999985, 28.797857037000028 ], [ -81.994528703999947, 28.798051355000041 ], [ -81.994591914999944, 28.798329954000053 ], [ -81.994603620999953, 28.798852035000039 ], [ -81.994591858999968, 28.799587623000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991319000999965, 28.794969343000048 ], [ -81.991446486999962, 28.794918739000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978018611999971, 28.793701846000033 ], [ -81.977671903999976, 28.792893770000035 ], [ -81.977243295999983, 28.791891864000036 ], [ -81.976870743999939, 28.791047125000034 ], [ -81.976858712999956, 28.790939706000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976652082999976, 28.791009006000024 ], [ -81.976713340999936, 28.791081380000037 ], [ -81.976800041, 28.79124394300004 ], [ -81.977308049999976, 28.792417105000027 ], [ -81.977849925999976, 28.793649873000049 ], [ -81.977887710999937, 28.793743838000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977887710999937, 28.793743838000069 ], [ -81.978018611999971, 28.793701846000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978286207999986, 28.798226473000057 ], [ -81.978127271999938, 28.798298517000035 ], [ -81.97785702799996, 28.798346499000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977878142999941, 28.79842915200004 ], [ -81.977964586999974, 28.798406530000079 ], [ -81.978162443999963, 28.798382688000061 ], [ -81.978297120999969, 28.798411487000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97785702799996, 28.798346499000047 ], [ -81.977878142999941, 28.79842915200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023327071999972, 28.841816636000033 ], [ -82.023382418999972, 28.841639318000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980037794999987, 28.812373285000035 ], [ -81.980010368999956, 28.812475606000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980150232999961, 28.812499807000052 ], [ -81.980175678999956, 28.81240753700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980010368999956, 28.812475606000078 ], [ -81.980150232999961, 28.812499807000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978701569999942, 28.811845848000075 ], [ -81.978867697999988, 28.812002238000048 ], [ -81.978999954999949, 28.81214161500003 ], [ -81.979040274999988, 28.812179387000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980037794999987, 28.812373285000035 ], [ -81.979802919999941, 28.812320019000026 ], [ -81.97962032199996, 28.812299490000044 ], [ -81.979498228999944, 28.812298410000039 ], [ -81.979399906999959, 28.812282203000052 ], [ -81.979296182999974, 28.812246548000076 ], [ -81.979223791999971, 28.812219536000043 ], [ -81.979139515999975, 28.812195766000059 ], [ -81.979040274999988, 28.812179387000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980357500999958, 28.806968653000069 ], [ -81.980034405999959, 28.806920286000036 ], [ -81.979918939999948, 28.806950202000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979918939999948, 28.806950202000053 ], [ -81.980027681999957, 28.807007081000052 ], [ -81.980347533999975, 28.807054280000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980357500999958, 28.806968653000069 ], [ -81.980347533999975, 28.807054280000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045551625999963, 28.822612364000065 ], [ -82.045549256999948, 28.823025335000068 ], [ -82.045543760999976, 28.824477078000029 ], [ -82.045538466999972, 28.826395646000037 ], [ -82.045533227999954, 28.828441037000061 ], [ -82.04552726999998, 28.828832307000027 ], [ -82.045527668999966, 28.829749763000052 ], [ -82.045517475999986, 28.832993185000078 ], [ -82.045507684999961, 28.835313951000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028034980999962, 28.82428817400006 ], [ -82.027958764999937, 28.824181874000033 ], [ -82.027890572999979, 28.824063539000065 ], [ -82.027808339999979, 28.823953227000061 ], [ -82.027713269999936, 28.823862038000073 ], [ -82.027605766999955, 28.823776728000041 ], [ -82.027501089999987, 28.823712011000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049301044999936, 28.788142231000052 ], [ -82.049774562999971, 28.78794681100004 ], [ -82.049866636, 28.787924262000047 ], [ -82.050052660999938, 28.787931778000029 ], [ -82.050253238999971, 28.787951346000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049402577999956, 28.788341968000054 ], [ -82.049301044999936, 28.788142231000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049301044999936, 28.788142231000052 ], [ -82.049041250999949, 28.787682439000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028333825999937, 28.825132562000078 ], [ -82.028261621999945, 28.825172675000033 ], [ -82.02813125299997, 28.825206772000058 ], [ -82.027902606999987, 28.825248891000058 ], [ -82.027852464999967, 28.825244879000024 ], [ -82.027814356999954, 28.825224823000042 ], [ -82.027631840999959, 28.825064369000074 ], [ -82.027617800999963, 28.82503829500007 ], [ -82.027623817999938, 28.824980131000075 ], [ -82.027750175999984, 28.82466323500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027750175999984, 28.82466323500006 ], [ -82.027808339999979, 28.824502781000035 ], [ -82.027858481999942, 28.824426566000056 ], [ -82.027940713999953, 28.824356367000064 ], [ -82.028034980999962, 28.82428817400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027750175999984, 28.82466323500006 ], [ -82.027875378999966, 28.824725440000066 ], [ -82.028333825999937, 28.825132562000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028333825999937, 28.825132562000078 ], [ -82.028806817999964, 28.825561289000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028913521999982, 28.825094458000024 ], [ -82.02866899199995, 28.824874381000029 ], [ -82.028328871999975, 28.824567606000073 ], [ -82.028204383999935, 28.824449787000049 ], [ -82.028099902999941, 28.82435197500007 ], [ -82.028034980999962, 28.82428817400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031315134999943, 28.827059115000054 ], [ -82.031069732999981, 28.826778655000055 ], [ -82.030765003999988, 28.826473926000062 ], [ -82.030541175999986, 28.826274368000043 ], [ -82.030260716999976, 28.826064024000061 ], [ -82.029961379999975, 28.825848286000053 ], [ -82.029645863999974, 28.82565412200006 ], [ -82.029446305999954, 28.825538163000033 ], [ -82.029346527999962, 28.825462655000024 ], [ -82.02915236399997, 28.825287368000033 ], [ -82.028913521999982, 28.825094458000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033242180999935, 28.82849720300004 ], [ -82.033185559999936, 28.828487350000046 ], [ -82.033039199999962, 28.828456105000043 ], [ -82.032901885999934, 28.828419926000038 ], [ -82.032571344999951, 28.828317968000079 ], [ -82.032409362999942, 28.828244789000053 ], [ -82.032257247999951, 28.828169965000029 ], [ -82.032133911999949, 28.828097607000075 ], [ -82.03201304199996, 28.828003872000068 ], [ -82.031918483999959, 28.827904380000064 ], [ -82.031827214999964, 28.827785155000072 ], [ -82.031745812999986, 28.827650308000045 ], [ -82.031656188999989, 28.827514638000025 ], [ -82.031514692999963, 28.827326090000042 ], [ -82.031315134999943, 28.827059115000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028913521999982, 28.825094458000024 ], [ -82.029473326999948, 28.824593723000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029005282999947, 28.824117540000032 ], [ -82.029119240999989, 28.824245743000063 ], [ -82.029473326999948, 28.824593723000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029473326999948, 28.824593723000078 ], [ -82.029615774999968, 28.824683262000065 ], [ -82.029752117999976, 28.824815536000074 ], [ -82.02987014699994, 28.824951879000025 ], [ -82.029975964999949, 28.825149271000043 ], [ -82.030061433999947, 28.825271370000053 ], [ -82.030169287999968, 28.825377188000061 ], [ -82.030277140999942, 28.825460622000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030277140999942, 28.825460622000037 ], [ -82.030356504999986, 28.825535916000035 ], [ -82.030820478999942, 28.825861512000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030820478999942, 28.825861512000074 ], [ -82.031173584999976, 28.826175587000023 ], [ -82.031237608999959, 28.826227269000071 ], [ -82.031292376999943, 28.82624886800005 ], [ -82.031335573999968, 28.826253496000049 ], [ -82.031388799999945, 28.826242697000055 ], [ -82.03180225899996, 28.826078393000046 ], [ -82.032000503999939, 28.825999712000055 ], [ -82.03209437299995, 28.825953086000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030820478999942, 28.825861512000074 ], [ -82.030881231999956, 28.825791440000046 ], [ -82.031010051999942, 28.825680361000025 ], [ -82.031159699999989, 28.825587795000047 ], [ -82.031311661999951, 28.825519143000065 ], [ -82.031447423999964, 28.825466689000052 ], [ -82.031607099999974, 28.825421949000031 ], [ -82.031753661999971, 28.825391865000029 ], [ -82.031901049999988, 28.82538125800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030985311999984, 28.824866410000027 ], [ -82.03092629799994, 28.824764661000074 ], [ -82.030910017999986, 28.824693437000064 ], [ -82.030914087999975, 28.824620178000032 ], [ -82.031036186999984, 28.824280338000051 ], [ -82.031070780999983, 28.82423353300004 ], [ -82.031121654999936, 28.824194869000053 ], [ -82.031176599999981, 28.824168414000042 ], [ -82.031253928999945, 28.82415213400003 ], [ -82.032112687999984, 28.824168414000042 ], [ -82.032190016999948, 28.82416230900003 ], [ -82.032249030999935, 28.824156204000076 ], [ -82.032310079999945, 28.824141959000031 ], [ -82.032393513999978, 28.824111435000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032393513999978, 28.824111435000077 ], [ -82.033168838999984, 28.823785839000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032393513999978, 28.824111435000077 ], [ -82.032257170999969, 28.823806189000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031315134999943, 28.827059115000054 ], [ -82.031391312999972, 28.826992877000066 ], [ -82.031500534999964, 28.826917575000039 ], [ -82.031598223999936, 28.826860590000024 ], [ -82.031752567999945, 28.826777462000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031752567999945, 28.826777462000052 ], [ -82.032387479999954, 28.826529195000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032387479999954, 28.826529195000035 ], [ -82.032442895999964, 28.826496072000054 ], [ -82.032486408999944, 28.82643994600005 ], [ -82.032514786999968, 28.826372470000024 ], [ -82.032515417999946, 28.826313822000031 ], [ -82.032503401999975, 28.826248157000066 ], [ -82.032466772999953, 28.826197283000056 ], [ -82.032413863999977, 28.826152513000068 ], [ -82.032340604999945, 28.826111814000058 ], [ -82.032246995999969, 28.826071114000058 ], [ -82.032177806999982, 28.826022275000071 ], [ -82.03209437299995, 28.825953086000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03209437299995, 28.825953086000027 ], [ -82.032049602999962, 28.825879827000051 ], [ -82.032010938999974, 28.82580249800003 ], [ -82.031984483999963, 28.825710924000077 ], [ -82.031901049999988, 28.82538125800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031901049999988, 28.82538125800005 ], [ -82.031827790999955, 28.825078047000034 ], [ -82.031791162, 28.824949844000059 ], [ -82.031752496999957, 28.824876585000027 ], [ -82.031703657999969, 28.82482774500005 ], [ -82.031626328999948, 28.824795186000074 ], [ -82.031542894999973, 28.82477687100004 ], [ -82.031430970999963, 28.82477687100004 ], [ -82.031284452999955, 28.82478704600004 ], [ -82.031152179999935, 28.824815536000074 ], [ -82.031074850999971, 28.82483792000005 ], [ -82.030985311999984, 28.824866410000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030985311999984, 28.824866410000027 ], [ -82.030910017999986, 28.824907109000037 ], [ -82.030791989999955, 28.824994613000058 ], [ -82.030627156999969, 28.825124852000044 ], [ -82.030498952999949, 28.825244915000042 ], [ -82.03039313499994, 28.825346664000051 ], [ -82.030277140999942, 28.825460622000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031752567999945, 28.826777462000052 ], [ -82.031819993999989, 28.826869849000047 ], [ -82.03200911, 28.827139687000056 ], [ -82.032195920999982, 28.827427975000035 ], [ -82.032269722999956, 28.827552515000036 ], [ -82.032325073999971, 28.827626317000068 ], [ -82.032385037999973, 28.827686281000069 ], [ -82.032470370999988, 28.82774855100007 ], [ -82.032585381999979, 28.827811760000031 ], [ -82.032726065999952, 28.827876337000077 ], [ -82.032892424999943, 28.82793997400006 ], [ -82.033063090999974, 28.827990713000077 ], [ -82.033210694, 28.828027614000064 ], [ -82.033346765999966, 28.828055289000076 ], [ -82.033448243999942, 28.828073740000036 ], [ -82.033510513999943, 28.828078352000034 ], [ -82.033554333999973, 28.828071433000048 ], [ -82.033588927999972, 28.828052983000077 ], [ -82.033614297999975, 28.828027614000064 ], [ -82.033630441999946, 28.827993019000075 ], [ -82.033639666999989, 28.827942281000048 ], [ -82.033648891999974, 28.82786386600003 ], [ -82.033667341999944, 28.827582497000037 ], [ -82.03365581099996, 28.82754559600005 ], [ -82.033635053999944, 28.827515614000049 ], [ -82.033595846999958, 28.827487939000036 ], [ -82.033568493999951, 28.827476518000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034331388999988, 28.828509730000064 ], [ -82.034335302999978, 28.828338899000073 ], [ -82.034338942999966, 28.827799388000074 ], [ -82.034357687999943, 28.827733783000042 ], [ -82.034402205999982, 28.827675206000038 ], [ -82.03445843999998, 28.827630688000056 ], [ -82.03452638899995, 28.827609600000073 ], [ -82.034580278999954, 28.827600228000051 ], [ -82.034638855999958, 28.827600228000051 ], [ -82.034686714999964, 28.827607800000067 ], [ -82.035002754999937, 28.82768309100004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035002754999937, 28.82768309100004 ], [ -82.035277457999939, 28.827749299000061 ], [ -82.035610266999981, 28.827835583000024 ], [ -82.035701905999986, 28.827878428000076 ], [ -82.035813657999938, 28.827928245000066 ], [ -82.036309782999979, 28.828177637000067 ], [ -82.03655003199998, 28.828384165000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034890429999962, 28.828114963000075 ], [ -82.035002754999937, 28.82768309100004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034331388999988, 28.828509730000064 ], [ -82.033944084999973, 28.828520489000027 ], [ -82.033671079999976, 28.828524486000049 ], [ -82.033444565999957, 28.82851695100004 ], [ -82.033242180999935, 28.82849720300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033118463999983, 28.82904601000007 ], [ -82.033242180999935, 28.82849720300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03284610299994, 28.82895694900003 ], [ -82.033118463999983, 28.82904601000007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033118463999983, 28.82904601000007 ], [ -82.033811508999975, 28.829289667000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033811508999975, 28.829289667000069 ], [ -82.034440266999979, 28.829513662000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034440266999979, 28.829513662000068 ], [ -82.034733684999935, 28.82961900600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033811508999975, 28.829289667000069 ], [ -82.033882243999983, 28.829047333000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033882243999983, 28.829047333000062 ], [ -82.033953335999968, 28.828759448000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033882243999983, 28.829047333000062 ], [ -82.034613175999937, 28.829051263000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034440266999979, 28.829513662000068 ], [ -82.034575543999949, 28.829216608000024 ], [ -82.034586023999964, 28.82919171900005 ], [ -82.03459352699997, 28.829169155000045 ], [ -82.034598766999977, 28.829140337000069 ], [ -82.034613175999937, 28.829051263000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034613175999937, 28.829051263000053 ], [ -82.034622275999936, 28.828766705000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036678586999983, 28.828533290000053 ], [ -82.034331388999988, 28.828509730000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036677543999986, 28.829035696000062 ], [ -82.036678586999983, 28.828533290000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036416807999956, 28.829948272000024 ], [ -82.036651470999971, 28.829404451000073 ], [ -82.036673818999986, 28.829341129000056 ], [ -82.036681268999985, 28.829307606000043 ], [ -82.036677543999986, 28.829035696000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035295642999984, 28.829058045000068 ], [ -82.036010804999989, 28.829061769000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036010804999989, 28.829061769000077 ], [ -82.036677543999986, 28.829035696000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035742618999961, 28.829810454000039 ], [ -82.035969831999978, 28.829873776000056 ], [ -82.036077850999959, 28.829896125000062 ], [ -82.036416807999956, 28.829948272000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036416807999956, 28.829948272000024 ], [ -82.036725966999938, 28.830011594000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036010804999989, 28.829061769000077 ], [ -82.036010804999989, 28.829192137000064 ], [ -82.036003354999934, 28.829229385000076 ], [ -82.035984730999985, 28.829281533000028 ], [ -82.035742618999961, 28.829810454000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035742618999961, 28.829810454000039 ], [ -82.035578727999962, 28.830171760000042 ], [ -82.035534029999951, 28.830197834000046 ], [ -82.035481882999989, 28.830212733000053 ], [ -82.035422285999971, 28.830205283000055 ], [ -82.035038631999953, 28.830041392000055 ], [ -82.034990208999943, 28.830011594000041 ], [ -82.034967859999938, 28.829959446000032 ], [ -82.034975309999936, 28.82990729900007 ], [ -82.035280743999976, 28.829221936000067 ], [ -82.035295642999984, 28.829173513000057 ], [ -82.035295642999984, 28.829058045000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035295642999984, 28.829058045000068 ], [ -82.035295642999984, 28.828771235000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034631741999988, 28.825814075000039 ], [ -82.03435297599998, 28.825524588000064 ], [ -82.034325405999937, 28.825489359000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034325405999937, 28.825489359000073 ], [ -82.034302582999942, 28.825455907000048 ], [ -82.034261411999978, 28.825383857000077 ], [ -82.034062415999983, 28.825018460000024 ], [ -82.033873712999934, 28.824668501000076 ], [ -82.033769068999959, 28.82449695300005 ], [ -82.03371588899995, 28.824416326000062 ], [ -82.033667854999976, 28.824356284000032 ], [ -82.033587227999988, 28.824275656000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033587227999988, 28.824275656000054 ], [ -82.033535038999958, 28.82425091500005 ], [ -82.033457841999962, 28.824192589000063 ], [ -82.033385792, 28.824123969000027 ], [ -82.033327465999946, 28.824057066000023 ], [ -82.033276001, 28.823991877000026 ], [ -82.033231398999988, 28.823911250000037 ], [ -82.033168838999984, 28.823785839000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033587227999988, 28.824275656000054 ], [ -82.03363829999995, 28.824234080000053 ], [ -82.033690647999947, 28.824210285000049 ], [ -82.033750133999945, 28.824176973000078 ], [ -82.033821517999968, 28.824150799000051 ], [ -82.033938111999987, 28.824117486000034 ], [ -82.034057084999972, 28.824096071000042 ], [ -82.034142745999986, 28.824084174000063 ], [ -82.034245061999968, 28.824072277000027 ], [ -82.03431674899997, 28.82406306200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03431674899997, 28.82406306200005 ], [ -82.034640355999954, 28.824003575000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03497823899994, 28.825317038000037 ], [ -82.034963962999939, 28.825259931000062 ], [ -82.034364337999989, 28.824143964000029 ], [ -82.03431674899997, 28.82406306200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034325405999937, 28.825489359000073 ], [ -82.03497823899994, 28.825317038000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03497823899994, 28.825317038000037 ], [ -82.035361332999969, 28.825219480000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033168838999984, 28.823785839000038 ], [ -82.033472451999955, 28.823658180000052 ], [ -82.033629345999941, 28.82358890200004 ], [ -82.033668059999968, 28.823576676000073 ], [ -82.033725111999956, 28.823564451000038 ], [ -82.034499393999965, 28.82344219600003 ], [ -82.034568671999978, 28.823434046000045 ], [ -82.034631836999949, 28.823438121000038 ], [ -82.034703151999963, 28.823446271000023 ], [ -82.034784655999943, 28.823454421000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036931324999955, 28.82565549900005 ], [ -82.036565350999979, 28.825332618000061 ], [ -82.036529640999959, 28.825270913000054 ], [ -82.036506219999978, 28.825189813000065 ], [ -82.036514029999978, 28.825105022000059 ], [ -82.036546383999962, 28.825026925000031 ], [ -82.036574275999953, 28.824938788000054 ], [ -82.036591010999985, 28.82485846000003 ], [ -82.036599935999959, 28.824773669000024 ], [ -82.036601508999979, 28.824700066000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036601508999979, 28.824700066000048 ], [ -82.036589868999954, 28.824623502000065 ], [ -82.036563017999981, 28.824554695000074 ], [ -82.036521061999963, 28.824484209000047 ], [ -82.036463563999973, 28.824407765000046 ], [ -82.036388046999946, 28.824332248000076 ], [ -82.036308554999948, 28.824268655000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036308554999948, 28.824268655000026 ], [ -82.036227075999989, 28.824216985000078 ], [ -82.036133672999938, 28.824177239000051 ], [ -82.036030333999975, 28.824151404000077 ], [ -82.035948854999958, 28.824135506000061 ], [ -82.035893210999973, 28.824131531000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035893210999973, 28.824131531000035 ], [ -82.035835578999979, 28.824133519000043 ], [ -82.035740188999966, 28.824139481000032 ], [ -82.035646785999973, 28.824159353000027 ], [ -82.035549408999941, 28.824185188000058 ], [ -82.035471903999962, 28.824207048000062 ], [ -82.035400361999962, 28.824214998000059 ], [ -82.035346704999938, 28.824213010000051 ], [ -82.035293047999971, 28.824203074000025 ], [ -82.035251314999982, 28.824183201000039 ], [ -82.035207593999985, 28.824153392000028 ], [ -82.035171822999985, 28.824115633000076 ], [ -82.034808147999968, 28.82360688600005 ], [ -82.034792249999953, 28.823567140000023 ], [ -82.034786287999964, 28.823525407000034 ], [ -82.034784655999943, 28.823454421000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034784655999943, 28.823454421000065 ], [ -82.034788275999972, 28.823426042000051 ], [ -82.034806160999949, 28.823398220000058 ], [ -82.035086369999988, 28.823106088000031 ], [ -82.035120153999969, 28.823066342000061 ], [ -82.035153937999951, 28.823032558000079 ], [ -82.035173809999947, 28.823016660000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035173809999947, 28.823016660000064 ], [ -82.035225621999984, 28.822973791000038 ], [ -82.035291486999938, 28.82292609600006 ], [ -82.035359621999987, 28.822901113000057 ], [ -82.03543002899994, 28.822876130000054 ], [ -82.035511791999966, 28.822851147000051 ], [ -82.035600368999951, 28.822844333000035 ], [ -82.03567531799996, 28.822842062000063 ], [ -82.035763894999945, 28.822835248000047 ], [ -82.03585474199997, 28.822814807000043 ], [ -82.035936504999938, 28.82278982400004 ], [ -82.036022810999953, 28.822753485000078 ], [ -82.036118200999965, 28.822710333000032 ], [ -82.036218132999977, 28.822660366000036 ], [ -82.036302166999974, 28.822605858000031 ], [ -82.036374845999944, 28.822555891000036 ], [ -82.036436167999966, 28.822492298000043 ], [ -82.036858609999967, 28.82206758500007 ], [ -82.036924473999989, 28.822022161000064 ], [ -82.036985795999954, 28.821999449000032 ], [ -82.037074372999939, 28.821990365000033 ], [ -82.037156135999965, 28.821985822000045 ], [ -82.037242440999989, 28.821997178000061 ], [ -82.037328745999957, 28.822024432000035 ], [ -82.037394610999968, 28.822072127000069 ], [ -82.037449119999962, 28.822149348000039 ], [ -82.037564949999989, 28.822344671000053 ], [ -82.037589933999982, 28.822412806000045 ], [ -82.037610373999939, 28.822492298000043 ], [ -82.03763762899996, 28.822555891000036 ], [ -82.037673967999979, 28.822599044000071 ], [ -82.037726204999956, 28.822646739000049 ], [ -82.038418941999964, 28.823275117000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038418941999964, 28.823275117000037 ], [ -82.038648308999939, 28.823457555000061 ], [ -82.038795936999975, 28.823598369000024 ], [ -82.038898139999958, 28.823700573000053 ], [ -82.038941292999937, 28.823770980000063 ], [ -82.039002614999958, 28.823870912000075 ], [ -82.039054852999982, 28.823961760000032 ], [ -82.039125259999935, 28.824141184000041 ], [ -82.039150242999938, 28.824207048000062 ], [ -82.039186581999957, 28.824252472000069 ], [ -82.03925017499995, 28.824304710000035 ], [ -82.039320581999959, 28.824336506000066 ], [ -82.040137036999965, 28.82475280400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035893210999973, 28.824131531000035 ], [ -82.035898567999936, 28.824084773000038 ], [ -82.035898567999936, 28.824030980000032 ], [ -82.035881214999961, 28.823985864000065 ], [ -82.035856921999937, 28.82393380700006 ], [ -82.035251325, 28.823081807000051 ], [ -82.035218355999973, 28.82305404300007 ], [ -82.035173809999947, 28.823016660000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036601508999979, 28.824700066000048 ], [ -82.036654383999974, 28.824697308000054 ], [ -82.036711646999947, 28.824690367000073 ], [ -82.036758497999983, 28.824664339000037 ], [ -82.036796672999969, 28.824638310000068 ], [ -82.036829642999976, 28.824600135000026 ], [ -82.037058693999938, 28.824317292000046 ], [ -82.037084721999975, 28.824292999000079 ], [ -82.037131573999943, 28.824266970000053 ], [ -82.037433455999974, 28.824105644000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037433455999974, 28.824105644000042 ], [ -82.037523687999965, 28.824032764000037 ], [ -82.037657300999967, 28.823932121000041 ], [ -82.037789178999958, 28.823822801000063 ], [ -82.037978319999979, 28.823661424000079 ], [ -82.038209105999954, 28.823460137000041 ], [ -82.038418941999964, 28.823275117000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037433455999974, 28.824105644000042 ], [ -82.03780429699998, 28.824581713000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036308554999948, 28.824268655000026 ], [ -82.036331293999979, 28.824214668000025 ], [ -82.036371398999961, 28.824157853000031 ], [ -82.036488371999951, 28.824011914000039 ], [ -82.036584178999988, 28.823902739000062 ], [ -82.036633725999934, 28.823857179000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036633725999934, 28.823857179000072 ], [ -82.03667330199994, 28.823821414000065 ], [ -82.036737915999936, 28.823779081000055 ], [ -82.036843748999956, 28.823725607000029 ], [ -82.036997485999962, 28.823636485000065 ], [ -82.037136739999937, 28.823548476000042 ], [ -82.037268195999957, 28.823459353000032 ], [ -82.03736734499995, 28.823382485000025 ], [ -82.037473372999955, 28.823278538000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036633725999934, 28.823857179000072 ], [ -82.036569480999958, 28.82380007200004 ], [ -82.036508803999936, 28.823739396000065 ], [ -82.036455265999962, 28.823675151000032 ], [ -82.03629108399997, 28.823428877000026 ], [ -82.036231541999939, 28.823347467000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036231541999939, 28.823347467000076 ], [ -82.036050628999988, 28.823091165000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036231541999939, 28.823347467000076 ], [ -82.036345755999946, 28.823297498000045 ], [ -82.036488371999951, 28.823233204000076 ], [ -82.036600889999988, 28.823174160000065 ], [ -82.036706722999952, 28.82310509000007 ], [ -82.036789161999934, 28.823042704000045 ], [ -82.036865722999949, 28.822986297000057 ], [ -82.036944011999935, 28.822921275000056 ], [ -82.037009377999937, 28.822864512000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037009377999937, 28.822864512000024 ], [ -82.037216950999948, 28.822639424000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037700441999959, 28.823474950000048 ], [ -82.037473372999955, 28.823278538000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037473372999955, 28.823278538000068 ], [ -82.037009377999937, 28.822864512000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03780429699998, 28.824581713000043 ], [ -82.037894113999982, 28.824679674000038 ], [ -82.037973772999976, 28.82477721500004 ], [ -82.038048642999968, 28.824858032000066 ], [ -82.038135465999972, 28.824939651000079 ], [ -82.038199361999943, 28.824994075000063 ], [ -82.038225813999986, 28.82501637200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038225813999986, 28.82501637200005 ], [ -82.038297043999989, 28.825078570000073 ], [ -82.038392958999964, 28.825137095000059 ], [ -82.038500253999985, 28.825203748000035 ], [ -82.038594543999977, 28.825254144000041 ], [ -82.038706715999979, 28.825301289000038 ], [ -82.03881888799998, 28.825341931000025 ], [ -82.038922931999934, 28.825371193000024 ], [ -82.03923343799994, 28.825447600000075 ], [ -82.039759737999987, 28.825565492000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037333420999971, 28.82611227600006 ], [ -82.037263940999935, 28.826027444000033 ], [ -82.037161110999989, 28.825904161000039 ], [ -82.037036858999954, 28.825763703000064 ], [ -82.036931324999955, 28.82565549900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038997310999946, 28.827287263000073 ], [ -82.038864955999941, 28.827281861000074 ], [ -82.038747339999986, 28.827261569000029 ], [ -82.038602947999948, 28.827235942000073 ], [ -82.038470592999943, 28.827203528000041 ], [ -82.038269497999977, 28.827137590000063 ], [ -82.037908759999937, 28.827019852000035 ], [ -82.037822324, 28.82698203700005 ], [ -82.037765601, 28.826933416000031 ], [ -82.037692669999956, 28.826811866000071 ], [ -82.037627842999939, 28.826655201000051 ], [ -82.03755221199998, 28.826482329000044 ], [ -82.037422557999946, 28.826247332000037 ], [ -82.037333420999971, 28.82611227600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03952862999995, 28.827288301000067 ], [ -82.038997310999946, 28.827287263000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036931324999955, 28.82565549900005 ], [ -82.036985819999984, 28.825620753000067 ], [ -82.037038981999956, 28.825575410000056 ], [ -82.037084324999967, 28.825526938000053 ], [ -82.037129668999967, 28.825478467000039 ], [ -82.03716875899994, 28.825414360000025 ], [ -82.037201593999953, 28.825353380000024 ], [ -82.037234429999955, 28.825270510000053 ], [ -82.03725319299997, 28.825190768000027 ], [ -82.037273518999939, 28.825120406000053 ], [ -82.037301663999983, 28.82505786300004 ], [ -82.037347007999983, 28.824990629000069 ], [ -82.037397041999952, 28.824924958000054 ], [ -82.037473133999981, 28.824831029000052 ], [ -82.03750962099997, 28.824788926000053 ], [ -82.037556527999982, 28.824746710000056 ], [ -82.037633580999966, 28.824699905000045 ], [ -82.037717576999967, 28.824646640000026 ], [ -82.03780429699998, 28.824581713000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037333420999971, 28.82611227600006 ], [ -82.03741010899995, 28.826083848000053 ], [ -82.037458579999964, 28.826054140000053 ], [ -82.037522686999978, 28.82600566900004 ], [ -82.037569594, 28.82596032500004 ], [ -82.037625882999976, 28.825889963000066 ], [ -82.037705626, 28.825800839000067 ], [ -82.037774423999963, 28.825700770000026 ], [ -82.037811752999971, 28.825633164000067 ], [ -82.037857293999934, 28.825545975000068 ], [ -82.037880058999974, 28.825486721000061 ], [ -82.03791671, 28.825394307000067 ], [ -82.037937036999949, 28.825333327000067 ], [ -82.037979252999946, 28.825273911000068 ], [ -82.038173137999934, 28.825089408000053 ], [ -82.038225813999986, 28.82501637200005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040137036999965, 28.82475280400007 ], [ -82.039972907999982, 28.825066911000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039972907999982, 28.825066911000079 ], [ -82.039907822999965, 28.825211231000026 ], [ -82.039845567999976, 28.82535555000004 ], [ -82.039803120999977, 28.825463082000056 ], [ -82.039759737999987, 28.825565492000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038997310999946, 28.827287263000073 ], [ -82.039057956999955, 28.826622173000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039057956999955, 28.826622173000032 ], [ -82.039110812, 28.826023149000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039110812, 28.826023149000036 ], [ -82.039144033999946, 28.825749406000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038071330999969, 28.826357898000026 ], [ -82.038172635999956, 28.826419562000069 ], [ -82.039057956999955, 28.826622173000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037761578999948, 28.826607013000057 ], [ -82.038071330999969, 28.826357898000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038071330999969, 28.826357898000026 ], [ -82.038132994999955, 28.826309447000028 ], [ -82.038216681999984, 28.826194928000064 ], [ -82.038322391999941, 28.826049577000049 ], [ -82.038388460999954, 28.825943867000035 ], [ -82.038441315999989, 28.825864584000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038153342999976, 28.825704262000045 ], [ -82.038441315999989, 28.825864584000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038441315999989, 28.825864584000044 ], [ -82.038525002999961, 28.825891012000056 ], [ -82.038648331, 28.82592624800003 ], [ -82.03878487299994, 28.825965890000077 ], [ -82.038965460999975, 28.826005531000078 ], [ -82.039110812, 28.826023149000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040487629999973, 28.824344163000035 ], [ -82.040346441999986, 28.824498122000023 ], [ -82.040233249999972, 28.824628292000057 ], [ -82.040137036999965, 28.82475280400007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041185289999987, 28.823746406000055 ], [ -82.040917214999979, 28.823946213000056 ], [ -82.040735723999944, 28.824096069000063 ], [ -82.040577542999984, 28.824242594000054 ], [ -82.040487629999973, 28.824344163000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041185289999987, 28.823746406000055 ], [ -82.041102702999979, 28.823607895000066 ], [ -82.040752839999982, 28.823301480000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040752839999982, 28.823301480000055 ], [ -82.040627072999939, 28.823173426000039 ], [ -82.039934207999977, 28.822544588000028 ], [ -82.039104141999985, 28.821799129000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039789926999958, 28.824230731000057 ], [ -82.039948226999968, 28.824033301000043 ], [ -82.04009941299995, 28.823850100000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04009941299995, 28.823850100000072 ], [ -82.040222139999969, 28.823741602000041 ], [ -82.040508557999942, 28.823496697000053 ], [ -82.040652572999988, 28.823373421000042 ], [ -82.040752839999982, 28.823301480000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04009941299995, 28.823850100000072 ], [ -82.040016528999956, 28.823777110000037 ], [ -82.039966220999986, 28.82371536900007 ], [ -82.039806153999962, 28.823418101000073 ], [ -82.039730692999967, 28.823301480000055 ], [ -82.039680385999986, 28.82322601900006 ], [ -82.039618645999951, 28.823145985000053 ], [ -82.038598784999976, 28.822231312000042 ], [ -82.038550764999968, 28.822181005000061 ], [ -82.03853247099994, 28.82212841200004 ], [ -82.038539331999971, 28.82200950400005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038141448999966, 28.821984351000026 ], [ -82.038539331999971, 28.82200950400005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038539331999971, 28.82200950400005 ], [ -82.038626224999973, 28.821998071000053 ], [ -82.038751992999948, 28.821979777000024 ], [ -82.03884117399997, 28.82195691000004 ], [ -82.038916633999975, 28.821918037000046 ], [ -82.03898980799994, 28.821872303000077 ], [ -82.039104141999985, 28.821799129000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039104141999985, 28.821799129000055 ], [ -82.039373970999975, 28.821570461000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041939252999953, 28.825592085000039 ], [ -82.041869725999959, 28.82544086300004 ], [ -82.041784553999946, 28.825277473000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041784553999946, 28.825277473000028 ], [ -82.041596829999946, 28.82504629400006 ], [ -82.04149427699997, 28.824940264000077 ], [ -82.041367388999959, 28.82482206800006 ], [ -82.041231810999989, 28.824707347000071 ], [ -82.041099708, 28.82461870000003 ], [ -82.040990202999978, 28.82454569600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040990202999978, 28.82454569600003 ], [ -82.040553285999977, 28.82436006100005 ], [ -82.040487629999973, 28.824344163000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040990202999978, 28.82454569600003 ], [ -82.041031425999961, 28.824490414000024 ], [ -82.041093678999971, 28.824421047000044 ], [ -82.041195061999986, 28.824335672000075 ], [ -82.041472531999943, 28.824113340000054 ], [ -82.041601951999951, 28.824022358000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041601951999951, 28.824022358000036 ], [ -82.041891315999976, 28.823804587000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042433560999939, 28.824774267000066 ], [ -82.041601951999951, 28.824022358000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041784553999946, 28.825277473000028 ], [ -82.041875420999986, 28.825237317000074 ], [ -82.041939868999975, 28.825195483000073 ], [ -82.042038236999986, 28.825117467000041 ], [ -82.042159217999938, 28.825020230000064 ], [ -82.042433560999939, 28.824774267000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042433560999939, 28.824774267000066 ], [ -82.042706460999966, 28.824539697000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043104254999946, 28.822780998000042 ], [ -82.042971278999971, 28.822817092000037 ], [ -82.042819307999935, 28.822866482000052 ], [ -82.042627443999947, 28.822931070000038 ], [ -82.042424181999934, 28.823012755000036 ], [ -82.042234216999987, 28.823096339000074 ], [ -82.042042352999943, 28.823185623000029 ], [ -82.041878983999936, 28.823274906000051 ], [ -82.041689018999989, 28.823388885000043 ], [ -82.041499054999974, 28.823518061000073 ], [ -82.041333785999939, 28.823637738000059 ], [ -82.041185289999987, 28.823746406000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043938198999967, 28.82258153600003 ], [ -82.04353357399998, 28.822678418000066 ], [ -82.043104254999946, 28.822780998000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045557800999973, 28.821535813000025 ], [ -82.045552384999951, 28.822479998000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045552384999951, 28.822479998000063 ], [ -82.044236029999979, 28.822487405000061 ], [ -82.044160573999989, 28.822489763000078 ], [ -82.044092191999937, 28.822496837000074 ], [ -82.044042673999968, 28.822510985000065 ], [ -82.04399551399996, 28.822529849000034 ], [ -82.043938198999967, 28.82258153600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045552384999951, 28.822479998000063 ], [ -82.045551625999963, 28.822612364000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043938198999967, 28.82258153600003 ], [ -82.043969575999938, 28.822600589000047 ], [ -82.044009661999951, 28.822607663000042 ], [ -82.044054463999942, 28.822614737000038 ], [ -82.044443533999981, 28.822612379000077 ], [ -82.045551625999963, 28.822612364000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043986478999955, 28.824109494000027 ], [ -82.044108699999981, 28.823930863000044 ], [ -82.044113400999947, 28.823850949000075 ], [ -82.044089895999946, 28.823789839000028 ], [ -82.044036520999953, 28.82373565100005 ], [ -82.043280166999978, 28.823053089000041 ], [ -82.043213755999943, 28.822979298000064 ], [ -82.043175015999964, 28.822916576000068 ], [ -82.043132585999956, 28.822844630000077 ], [ -82.043104254999946, 28.822780998000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043104254999946, 28.822780998000042 ], [ -82.04306248499995, 28.822706273000051 ], [ -82.043023744999971, 28.822602966000034 ], [ -82.042938885999945, 28.822248771000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042938885999945, 28.822248771000034 ], [ -82.042684307999934, 28.821324544000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042684307999934, 28.821324544000049 ], [ -82.04248322899997, 28.820737909000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04248322899997, 28.820737909000059 ], [ -82.042459246999954, 28.820671498000024 ], [ -82.042416816999946, 28.820601397000075 ], [ -82.042328268999938, 28.82047041800007 ], [ -82.042234185999973, 28.820354198000075 ], [ -82.042108741999982, 28.820223220000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042108741999982, 28.820223220000059 ], [ -82.041555311999957, 28.819726978000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041555311999957, 28.819726978000062 ], [ -82.040821095999945, 28.819072087000052 ], [ -82.040732546999948, 28.818972470000062 ], [ -82.040649532999964, 28.818876542000055 ], [ -82.040546225999947, 28.81873818400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040546225999947, 28.81873818400004 ], [ -82.040502448999973, 28.81864429500007 ], [ -82.040448263999963, 28.818521913000041 ], [ -82.040394079999942, 28.818373372000053 ], [ -82.040360447999944, 28.818227634000039 ], [ -82.040345499999944, 28.818131410000035 ], [ -82.040341762999958, 28.818052936000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042938885999945, 28.822248771000034 ], [ -82.042810108999959, 28.822273928000072 ], [ -82.042580839999971, 28.822336704000065 ], [ -82.042539898999962, 28.822339433000025 ], [ -82.042496227999948, 28.822331245000044 ], [ -82.042452557999979, 28.822306680000054 ], [ -82.041994018999958, 28.821891812000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041994018999958, 28.821891812000047 ], [ -82.041521833, 28.821457838000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041521833, 28.821457838000072 ], [ -82.041120611999986, 28.821105745000068 ], [ -82.04109604699994, 28.821070263000024 ], [ -82.041090587999975, 28.821034781000037 ], [ -82.041090587999975, 28.82099929900005 ], [ -82.041106964999983, 28.820963816000074 ], [ -82.041251622999937, 28.820832805000066 ], [ -82.041543667999974, 28.820573513000056 ], [ -82.041663761999985, 28.820491631000039 ], [ -82.041808419999938, 28.820393372000069 ], [ -82.041936701999987, 28.820316949000073 ], [ -82.042108741999982, 28.820223220000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041994018999958, 28.821891812000047 ], [ -82.042520655999965, 28.821416684000042 ], [ -82.042565464999939, 28.821389590000024 ], [ -82.042684307999934, 28.821324544000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041521833, 28.821457838000072 ], [ -82.041685791999953, 28.821299600000032 ], [ -82.041963148999969, 28.821053619000054 ], [ -82.042147634999935, 28.820920588000035 ], [ -82.042281919999937, 28.820837758000039 ], [ -82.042372280999984, 28.820792577000077 ], [ -82.04248322899997, 28.820737909000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042684307999934, 28.821324544000049 ], [ -82.042751292999981, 28.82128328500005 ], [ -82.04285420399998, 28.821245635000025 ], [ -82.042962133999936, 28.821214260000033 ], [ -82.043112734999966, 28.821181630000069 ], [ -82.043288435999955, 28.821162804000039 ], [ -82.043464136999944, 28.821169079000072 ], [ -82.043634817999987, 28.821191670000076 ], [ -82.04377035899995, 28.821226810000041 ], [ -82.043811773999948, 28.821228065000071 ], [ -82.043849423999973, 28.821223045000067 ], [ -82.043874523999989, 28.821205475000056 ], [ -82.043889583999942, 28.821182885000042 ], [ -82.043919703999961, 28.821136449000051 ], [ -82.044001279999975, 28.820984593000048 ], [ -82.044080344999941, 28.820835248000037 ], [ -82.044138075999967, 28.820714767000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044138075999967, 28.820714767000027 ], [ -82.044434256999978, 28.820155034000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044434256999978, 28.820155034000038 ], [ -82.044585524999945, 28.819881644000077 ], [ -82.044641186999968, 28.819775886000059 ], [ -82.044656029999942, 28.819707236000056 ], [ -82.044650463999972, 28.81963673100006 ], [ -82.044628198999987, 28.819581069000037 ], [ -82.044563259999961, 28.819540250000045 ], [ -82.044470489999981, 28.819519840000055 ], [ -82.044194034999975, 28.819466034000072 ], [ -82.043980663999946, 28.819417793000071 ], [ -82.043791412999951, 28.819388107000066 ], [ -82.043596595999986, 28.819362131000048 ], [ -82.04345929599998, 28.819352854000044 ], [ -82.043283032999966, 28.819350999000051 ], [ -82.043093781999971, 28.819352854000044 ], [ -82.042897108999966, 28.819365842000025 ], [ -82.042659617999959, 28.819401095000046 ], [ -82.042477787999985, 28.819441913000048 ], [ -82.042240296999978, 28.81950314200003 ], [ -82.04198053999994, 28.81957735800006 ], [ -82.041765313999974, 28.81963673100006 ], [ -82.041652133999946, 28.819679405000045 ], [ -82.041555311999957, 28.819726978000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04248322899997, 28.820737909000059 ], [ -82.042589305999968, 28.82069638300004 ], [ -82.042755312999986, 28.820649589000027 ], [ -82.042968114999951, 28.820608366000044 ], [ -82.043187600999943, 28.820581627000024 ], [ -82.043408200999977, 28.820571599000061 ], [ -82.043628800999954, 28.82059276800004 ], [ -82.043851629999949, 28.820630649000066 ], [ -82.044138075999967, 28.820714767000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042108741999982, 28.820223220000059 ], [ -82.042264429999989, 28.820168200000069 ], [ -82.042466011999977, 28.820093540000073 ], [ -82.042652661999966, 28.820048744000076 ], [ -82.042870668999967, 28.820005441000035 ], [ -82.043097634999981, 28.819977071000039 ], [ -82.043302202999939, 28.81996960500004 ], [ -82.04351722399997, 28.819974084000023 ], [ -82.043727764999971, 28.819993496000052 ], [ -82.043935318999957, 28.820029333000036 ], [ -82.044156312999974, 28.820081595000033 ], [ -82.044434256999978, 28.820155034000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041024439999944, 28.820212219000041 ], [ -82.041303432999939, 28.819973253000057 ], [ -82.04140410399998, 28.819882848000077 ], [ -82.041464373999986, 28.819824565000033 ], [ -82.041509079999969, 28.819779528000026 ], [ -82.041555311999957, 28.819726978000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040555319999953, 28.820625177000068 ], [ -82.041024439999944, 28.820212219000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040337278999971, 28.820816789000048 ], [ -82.040555319999953, 28.820625177000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041024439999944, 28.820212219000041 ], [ -82.040327367999964, 28.819568006000054 ], [ -82.040291027999956, 28.81954488100007 ], [ -82.040244775999952, 28.819531666000046 ], [ -82.039603866999983, 28.819528362000028 ], [ -82.039547704999961, 28.819548184000041 ], [ -82.039501452999957, 28.819577917000061 ], [ -82.039448594999953, 28.819624168000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040555319999953, 28.820625177000068 ], [ -82.039448594999953, 28.819624168000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039448594999953, 28.819624168000075 ], [ -82.039045548999979, 28.819264070000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03875046099995, 28.818929857000057 ], [ -82.039729576999946, 28.81893367300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039729576999946, 28.81893367300006 ], [ -82.040034452999976, 28.818938770000045 ], [ -82.040100551999956, 28.818933591000075 ], [ -82.040142232999983, 28.818925698000044 ], [ -82.040203891999965, 28.81891016000003 ], [ -82.040290461999973, 28.818878591000043 ], [ -82.040449542999966, 28.818805833000056 ], [ -82.04050306299996, 28.818773770000064 ], [ -82.040546225999947, 28.81873818400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039729576999946, 28.81893367300006 ], [ -82.039732865999952, 28.81883550200007 ], [ -82.039732865999952, 28.818766123000046 ], [ -82.039718989999983, 28.818699519000063 ], [ -82.039616308999939, 28.818338749000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039616308999939, 28.818338749000077 ], [ -82.039599657999986, 28.818041808000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038561340999934, 28.819227878000049 ], [ -82.038734430999966, 28.819077676000063 ], [ -82.03875323699998, 28.81903808800007 ], [ -82.038758786999949, 28.818993686000056 ], [ -82.03875046099995, 28.818929857000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03875046099995, 28.818929857000057 ], [ -82.038209305999942, 28.818463631000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038209305999942, 28.818463631000043 ], [ -82.037818009999967, 28.818111187000056 ], [ -82.037784707999947, 28.818069560000026 ], [ -82.037768056999937, 28.818027932000064 ], [ -82.037766621999936, 28.817997753000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038209305999942, 28.818463631000043 ], [ -82.038239832999977, 28.818416454000044 ], [ -82.03827313499994, 28.818377602000055 ], [ -82.038317536999955, 28.818352625000045 ], [ -82.038381365999953, 28.818338749000077 ], [ -82.039616308999939, 28.818338749000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039416372999938, 28.827706354000043 ], [ -82.039375820999965, 28.827803324000058 ], [ -82.039287626999965, 28.827957312000024 ], [ -82.039225760999955, 28.828052490000061 ], [ -82.039173412999958, 28.828114356000071 ], [ -82.039087751999944, 28.828190499000073 ], [ -82.03907789799996, 28.828198200000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038749640999981, 28.828407945000038 ], [ -82.03868091399994, 28.828439247000063 ], [ -82.038619974999961, 28.828464194000048 ], [ -82.038567012999977, 28.828481630000056 ], [ -82.038484952999966, 28.82850460700007 ], [ -82.038412739999956, 28.828517737000027 ], [ -82.038340526999946, 28.828532508000023 ], [ -82.03826503099998, 28.828539073000059 ], [ -82.038171481999939, 28.828542355000025 ], [ -82.036678586999983, 28.828533290000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033568493999951, 28.827476518000026 ], [ -82.033552026999985, 28.827469488000077 ], [ -82.033492062999983, 28.827460263000035 ], [ -82.03333754099998, 28.827430281000034 ], [ -82.033194549999962, 28.827391074000047 ], [ -82.033044640999947, 28.827340335000031 ], [ -82.032938550999972, 28.827273453000032 ], [ -82.032850910999969, 28.827192732000071 ], [ -82.032760964999966, 28.827082029000053 ], [ -82.032470370999988, 28.826657670000031 ], [ -82.032387479999954, 28.826529195000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987719865999964, 28.920094469000048 ], [ -81.987728410999978, 28.921456711000076 ], [ -81.987725549999936, 28.921726321000051 ], [ -81.987823344999981, 28.922163822000073 ], [ -81.987828491999949, 28.922378283000057 ], [ -81.987795035999966, 28.922589335000055 ], [ -81.987658818999989, 28.923074624000037 ], [ -81.987586015999966, 28.923403412000027 ], [ -81.987668212999949, 28.924502503000042 ], [ -81.987729273999946, 28.924641063000024 ], [ -81.987898364999978, 28.924843033000059 ], [ -81.987898364999978, 28.92498159400003 ], [ -81.987780939999936, 28.925502957000049 ], [ -81.987825561999955, 28.925709624000035 ], [ -81.987935939999943, 28.925904548000062 ], [ -81.987961773999984, 28.92610651800004 ], [ -81.987912973999983, 28.926686182000026 ], [ -81.987816167999938, 28.92690265400006 ], [ -81.987582945999975, 28.927155378000066 ], [ -81.987532000999977, 28.927377048000039 ], [ -81.987539206999941, 28.927668314000073 ], [ -81.987611849999951, 28.927884321000079 ], [ -81.987638612999945, 28.928089796000052 ], [ -81.987590897999951, 28.928296561000025 ], [ -81.987576621999949, 28.928558336000037 ], [ -81.987578969999959, 28.928916855000068 ], [ -81.987610551999978, 28.929180435000035 ], [ -81.98769194099998, 28.929315148000057 ], [ -81.987793910999983, 28.929452668000067 ], [ -81.987829472999977, 28.929564983000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113314953999975, 28.679010879000032 ], [ -82.115588311999943, 28.679020125000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040694139999971, 28.847450882000032 ], [ -82.040645471999937, 28.847452087000079 ], [ -82.040129199999967, 28.84748313700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041329502999986, 28.847391176000031 ], [ -82.041024500999981, 28.847438879000038 ], [ -82.040694139999971, 28.847450882000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023232226999937, 28.935278109000024 ], [ -82.023239473999979, 28.935525143000064 ], [ -82.023239473999979, 28.935786379000035 ], [ -82.023239473999979, 28.936081270000045 ], [ -82.023241075999977, 28.936379367000029 ], [ -82.023242678999964, 28.93663579400004 ], [ -82.023245883999948, 28.93707332300005 ], [ -82.023247486999935, 28.937140635000048 ], [ -82.023271526999963, 28.937180702000035 ], [ -82.023311593999949, 28.937214358000062 ], [ -82.023345249999977, 28.937228782000034 ], [ -82.023596868999959, 28.937235193000049 ], [ -82.023787586999958, 28.937236796000036 ], [ -82.02385329599997, 28.937235193000049 ], [ -82.023909389999972, 28.937207948000037 ], [ -82.023941442999956, 28.937183908000065 ], [ -82.023954264999986, 28.937140635000048 ], [ -82.023959072999958, 28.936940302000039 ], [ -82.023957469999971, 28.936690285000054 ], [ -82.023960674999955, 28.936344108000071 ], [ -82.023954264999986, 28.936018766000075 ], [ -82.023950309999975, 28.935668691000046 ], [ -82.023951693999948, 28.935280685000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028760071999955, 28.932242354000039 ], [ -82.028679710999938, 28.932242299000052 ], [ -82.028299617999949, 28.932242379000058 ], [ -82.02749519799994, 28.93224110500006 ], [ -82.024528323999959, 28.932225607000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112708226999985, 28.664179774000047 ], [ -82.113328628999966, 28.66417853400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08100871399995, 28.867940555000075 ], [ -82.081353160999981, 28.867682768000066 ], [ -82.081999437999968, 28.867254919000061 ], [ -82.082310190999976, 28.867025231000071 ], [ -82.082499345999963, 28.866768522000029 ], [ -82.082569152999952, 28.866491546000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965285794999943, 28.793055027000037 ], [ -81.965285794999943, 28.792731378000042 ], [ -81.965353931999971, 28.792467349000049 ], [ -81.965477158999988, 28.792240130000039 ], [ -81.965659927, 28.791975474000026 ], [ -81.965938196999957, 28.791668609000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966338162999989, 28.793586258000062 ], [ -81.966709650999974, 28.793393455000057 ], [ -81.966900696999971, 28.793217105000053 ], [ -81.967323199999953, 28.792655925000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964493083999969, 28.79076397700004 ], [ -81.964787946999934, 28.790921939000043 ], [ -81.96509860599997, 28.791090432000033 ], [ -81.965403998999989, 28.791258925000079 ], [ -81.96566968999997, 28.791441947000067 ], [ -81.965835676999973, 28.791575852000051 ], [ -81.965938196999957, 28.791668609000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965938196999957, 28.791668609000055 ], [ -81.966491251999969, 28.791211101000044 ], [ -81.966559598999936, 28.79109393400006 ], [ -81.966565875999947, 28.790937712000073 ], [ -81.966508686999987, 28.790809387000024 ], [ -81.966388730999938, 28.790708261000077 ], [ -81.965846834999979, 28.790448123000033 ], [ -81.965583907999985, 28.79036164300004 ], [ -81.965312610999945, 28.790340023000056 ], [ -81.96507859899998, 28.790345150000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028830067999934, 28.909150829000055 ], [ -82.026844191999942, 28.909124218000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034511978999944, 28.864726708000035 ], [ -82.034531099999981, 28.865479462000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04336482399998, 28.797643819000029 ], [ -82.043565285999989, 28.797925673000066 ], [ -82.04359055499998, 28.797977895000031 ], [ -82.043606557999965, 28.798061281000059 ], [ -82.043609926999977, 28.798817653000071 ], [ -82.043632668999976, 28.798877456000071 ], [ -82.04367057199994, 28.798906093000028 ], [ -82.043733742999962, 28.798931362000076 ], [ -82.044394094999973, 28.799082131000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023881354999958, 28.833977904000051 ], [ -82.023974991999978, 28.833933341000034 ], [ -82.024082927999984, 28.833874680000065 ], [ -82.024211982999987, 28.833771436000063 ], [ -82.024380926999982, 28.833654114000069 ], [ -82.02464138199997, 28.833522713000036 ], [ -82.024871333999954, 28.833449973000029 ], [ -82.025113017999956, 28.83339131200006 ], [ -82.025371126999971, 28.833367848000023 ], [ -82.025734825999962, 28.833358462000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044394094999973, 28.799082131000034 ], [ -82.04467626099995, 28.799148672000058 ], [ -82.044709951999948, 28.799154568000063 ], [ -82.044748696999989, 28.799157937000075 ], [ -82.045216165999989, 28.799156252000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045216165999989, 28.799156252000046 ], [ -82.045294497999976, 28.799156252000046 ], [ -82.045405679999988, 28.79916214800005 ], [ -82.045517703999963, 28.799168044000055 ], [ -82.045632254999987, 28.799177309000072 ], [ -82.045781338999973, 28.799194155000066 ], [ -82.045889151999972, 28.79921100100006 ], [ -82.046009598999945, 28.799228689000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046009598999945, 28.799228689000074 ], [ -82.046059293999974, 28.799239639000064 ], [ -82.046120780999956, 28.799249746000044 ], [ -82.046402103999981, 28.799250588000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044394094999973, 28.799082131000034 ], [ -82.044409801999961, 28.798967438000034 ], [ -82.044413717999987, 28.798261230000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045216165999989, 28.799156252000046 ], [ -82.045212608999975, 28.798228595000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046009598999945, 28.799228689000074 ], [ -82.046024552999938, 28.79822990100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044007745999977, 28.798266451000075 ], [ -82.044413717999987, 28.798261230000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044413717999987, 28.798261230000037 ], [ -82.045212608999975, 28.798228595000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045212608999975, 28.798228595000069 ], [ -82.046024552999938, 28.79822990100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046024552999938, 28.79822990100007 ], [ -82.046405722999964, 28.798225984000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994833300999971, 28.801506239000048 ], [ -81.994833319999941, 28.801567257000045 ], [ -81.994824697999945, 28.80161127100007 ], [ -81.99479611199996, 28.801645756000028 ], [ -81.994762987999934, 28.80166889700007 ], [ -81.994723057999977, 28.801684778000038 ], [ -81.994686759, 28.801696122000067 ], [ -81.994640929999946, 28.801708827000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994640929999946, 28.801708827000027 ], [ -81.994592378999982, 28.801712457000065 ], [ -81.99454518899995, 28.801713818000053 ], [ -81.994489830999953, 28.801708827000027 ], [ -81.994437195999978, 28.801699752000047 ], [ -81.994390459999977, 28.801690223000037 ], [ -81.994344177999949, 28.801681148000057 ], [ -81.994313279999972, 28.80167722300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994313279999972, 28.80167722300007 ], [ -81.994318257999964, 28.801693402000069 ], [ -81.994335681999985, 28.801713316000075 ], [ -81.994360512999947, 28.801736052000024 ], [ -81.994388190999985, 28.801751933000048 ], [ -81.994419045999962, 28.801763277000077 ], [ -81.994454438999981, 28.801772352000057 ], [ -81.994496636999941, 28.801778704000071 ], [ -81.99453611399997, 28.80178369600003 ], [ -81.994591470999978, 28.801783242000056 ], [ -81.994653006999954, 28.801777715000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994653006999954, 28.801777715000071 ], [ -81.994709899999975, 28.801761916000032 ], [ -81.994759811999984, 28.801742858000068 ], [ -81.99480155699996, 28.801720171000056 ], [ -81.994833512999946, 28.801699625000026 ], [ -81.994859648999977, 28.801684690000059 ], [ -81.994882051, 28.801679712000066 ], [ -81.994908186999965, 28.801674734000073 ], [ -81.994943034999949, 28.801672245000077 ], [ -81.995011351999949, 28.801677321000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994640929999946, 28.801708827000027 ], [ -81.994653006999954, 28.801777715000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992210502999967, 28.800380535000045 ], [ -81.992423180999936, 28.800344762000066 ], [ -81.992773226999986, 28.80030100700003 ], [ -81.993076632999987, 28.800271158000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993076632999987, 28.800271158000044 ], [ -81.993450154999948, 28.800248242000066 ], [ -81.993816930999969, 28.800236660000053 ], [ -81.993873531999952, 28.800253720000057 ], [ -81.993923818999974, 28.800279269000043 ], [ -81.993938779999951, 28.800330497000061 ], [ -81.993935437999937, 28.801094959000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993935437999937, 28.801094959000068 ], [ -81.994000347999986, 28.801253725000038 ], [ -81.994083677999981, 28.801447578000079 ], [ -81.994145078999964, 28.801542311000048 ], [ -81.994207357999983, 28.801606344000049 ], [ -81.994313279999972, 28.80167722300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988620921999939, 28.802347937000036 ], [ -81.989031405999981, 28.802392406000024 ], [ -81.989274275999946, 28.802392406000024 ], [ -81.989513725999984, 28.802354779000041 ], [ -81.989760015999934, 28.802293206000058 ], [ -81.989989202999936, 28.802217950000056 ], [ -81.990228652999974, 28.802118750000034 ], [ -81.990427053999952, 28.802022970000053 ], [ -81.990600897999968, 28.801911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990600897999968, 28.801911 ], [ -81.990720209999949, 28.801821516000075 ], [ -81.990832419999947, 28.801735583000038 ], [ -81.99094249999996, 28.801642548000075 ], [ -81.991036294999958, 28.801557043000059 ], [ -81.991179964999958, 28.801451001000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991179964999958, 28.801451001000032 ], [ -81.991374944999961, 28.801341539000077 ], [ -81.991573345999939, 28.801232076000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991573345999939, 28.801232076000076 ], [ -81.991929098999947, 28.801098669000055 ], [ -81.992325900999958, 28.800934475000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992325900999958, 28.800934475000076 ], [ -81.992394314999956, 28.800910530000067 ], [ -81.992510618999972, 28.800890006000031 ], [ -81.992644025999937, 28.800872902000037 ], [ -81.992753488999938, 28.800866061000079 ], [ -81.992890317, 28.800869482000053 ], [ -81.99302030399997, 28.800883164000027 ], [ -81.993112662999977, 28.800893427000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993112662999977, 28.800893427000062 ], [ -81.993283697999971, 28.80094815800004 ], [ -81.993543670999941, 28.801016572000037 ], [ -81.993800223999983, 28.801078145000076 ], [ -81.993935437999937, 28.801094959000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993112662999977, 28.800893427000062 ], [ -81.993076632999987, 28.800271158000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992325900999958, 28.800934475000076 ], [ -81.992210502999967, 28.800380535000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992210502999967, 28.800380535000045 ], [ -81.99213985199998, 28.800050208000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991573345999939, 28.801232076000076 ], [ -81.991351714999951, 28.800554548000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991351714999951, 28.800554548000036 ], [ -81.991249137999944, 28.800233138000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991179964999958, 28.801451001000032 ], [ -81.991146559999947, 28.801380296000048 ], [ -81.991115786999956, 28.801332427000034 ], [ -81.991098690999934, 28.801272590000053 ], [ -81.991076464999935, 28.801171722000049 ], [ -81.991062788999955, 28.801098208000042 ], [ -81.991030305999971, 28.800987082000063 ], [ -81.990972177999936, 28.800829797000063 ], [ -81.990917469999943, 28.800674221000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99051912799996, 28.800793895000027 ], [ -81.990917469999943, 28.800674221000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990917469999943, 28.800674221000065 ], [ -81.991351714999951, 28.800554548000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990164973999981, 28.800882153000032 ], [ -81.990049299999953, 28.800616104000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990358313999934, 28.801420861000054 ], [ -81.990346745999943, 28.801313450000066 ], [ -81.990328568999985, 28.801232479000078 ], [ -81.990290561999984, 28.801118458000076 ], [ -81.990247597999939, 28.801014351000049 ], [ -81.990198022999948, 28.800925117000077 ], [ -81.990164973999981, 28.800882153000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990600897999968, 28.801911 ], [ -81.990528461999986, 28.801799035000045 ], [ -81.990494063999961, 28.801744068000062 ], [ -81.990465251999979, 28.801695813000038 ], [ -81.990417802999957, 28.801594372000068 ], [ -81.990388057999951, 28.801520010000047 ], [ -81.990369880999936, 28.801463826000031 ], [ -81.990358313999934, 28.801420861000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990164973999981, 28.800882153000032 ], [ -81.990006334999975, 28.80093338000006 ], [ -81.989860916999987, 28.800989564000076 ], [ -81.989723760999937, 28.801047401000062 ], [ -81.989571732999934, 28.801118458000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989571732999934, 28.801118458000076 ], [ -81.989270981999937, 28.801247351000029 ], [ -81.989064421999956, 28.801339890000065 ], [ -81.988869428999976, 28.801424166000061 ], [ -81.988823159999981, 28.80145060600006 ], [ -81.988798372999952, 28.801478698000039 ], [ -81.988783499999954, 28.801508443000046 ], [ -81.98877688999994, 28.801543145000039 ], [ -81.98877523799996, 28.801576195000052 ], [ -81.988780194999947, 28.801599329000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988780194999947, 28.801599329000055 ], [ -81.988798372999952, 28.801612549000026 ], [ -81.988829769999938, 28.801630726000042 ], [ -81.988866123999969, 28.80164559900004 ], [ -81.988902478999989, 28.801660471000048 ], [ -81.988933875999976, 28.801670386000069 ], [ -81.988980144999971, 28.801686911000047 ], [ -81.989021456999978, 28.801698478000048 ], [ -81.989061116999949, 28.801708393000069 ], [ -81.989112343999977, 28.801721613000041 ], [ -81.989185052999972, 28.801731528000062 ], [ -81.989269328999967, 28.801736485000049 ], [ -81.989351952999982, 28.801733180000042 ], [ -81.98943292499996, 28.801724918000048 ], [ -81.98952381099997, 28.80171004500005 ], [ -81.989588257999969, 28.801695173000041 ], [ -81.989656009999976, 28.801670386000069 ], [ -81.989740285999972, 28.801637336000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989740285999972, 28.801637336000056 ], [ -81.989983200999973, 28.801531578000038 ], [ -81.990059214999974, 28.801498528000025 ], [ -81.990133575999948, 28.801468783000075 ], [ -81.990179846, 28.801457216000074 ], [ -81.990247597999939, 28.801443996000046 ], [ -81.990358313999934, 28.801420861000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989740285999972, 28.801637336000056 ], [ -81.989717150999979, 28.801520010000047 ], [ -81.989685753999936, 28.801391117000037 ], [ -81.989637831999971, 28.801267181000071 ], [ -81.989571732999934, 28.801118458000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988330208999969, 28.801612646000024 ], [ -81.988656258999981, 28.801612549000026 ], [ -81.988780194999947, 28.801599329000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028624904999958, 28.831221296000024 ], [ -82.028635518999977, 28.831055311000057 ], [ -82.028649423, 28.830845013000044 ], [ -82.028654636999988, 28.830672952000043 ], [ -82.028647684999953, 28.830482247000077 ], [ -82.028637256999957, 28.830320139000037 ], [ -82.02860771099995, 28.830106365000063 ], [ -82.02858337899994, 28.829930828000045 ], [ -82.028564260999985, 28.829784836000044 ], [ -82.028538190999939, 28.829644058000042 ], [ -82.02850343199998, 28.829517185000043 ], [ -82.028451291999943, 28.829412905000027 ], [ -82.028374819999954, 28.829303411000069 ], [ -82.028296609999984, 28.829209560000038 ], [ -82.028222921999941, 28.829123331000062 ], [ -82.02811038599998, 28.829033491000075 ], [ -82.028023382999947, 28.828980533000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028537495999956, 28.831833157000062 ], [ -82.028565692999962, 28.831697814000051 ], [ -82.028593888999978, 28.83153427600007 ], [ -82.02861362699997, 28.831365098000049 ], [ -82.028624904999958, 28.831221296000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027432199999964, 28.831100052000068 ], [ -82.027516788999947, 28.831131068000047 ], [ -82.027584459999957, 28.831147986000076 ], [ -82.028187861999982, 28.83118182100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028187861999982, 28.83118182100003 ], [ -82.028624904999958, 28.831221296000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028187861999982, 28.83118182100003 ], [ -82.028201618999958, 28.831113608000067 ], [ -82.02821593699997, 28.830934644000024 ], [ -82.028219515999979, 28.83077178800005 ], [ -82.028219515999979, 28.830612510000037 ], [ -82.028208777999964, 28.830455022000024 ], [ -82.028189091999934, 28.830261742000062 ], [ -82.028165826999953, 28.830072041000051 ], [ -82.028130033999958, 28.829796437000027 ], [ -82.028106430999969, 28.82961842800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027282759999935, 28.831483522000042 ], [ -82.027432199999964, 28.831100052000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027432199999964, 28.831100052000068 ], [ -82.027485772999967, 28.83093651300004 ], [ -82.027505840999936, 28.83086292400003 ], [ -82.027513603999978, 28.830784590000064 ], [ -82.027512898999987, 28.830696376000049 ], [ -82.02750008299995, 28.830480077000061 ], [ -82.027480396999977, 28.830297534000067 ], [ -82.027455341999939, 28.830113202000064 ], [ -82.027433865999967, 28.829923501000053 ], [ -82.027412390999984, 28.829803595000044 ], [ -82.027399551999963, 28.829730678000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027064181999947, 28.829923964000045 ], [ -82.027399551999963, 28.829730678000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027399551999963, 28.829730678000033 ], [ -82.027457412999979, 28.829691079000042 ], [ -82.027517542999988, 28.829652901000031 ], [ -82.027575764999938, 28.829629995000062 ], [ -82.027645438999969, 28.829614723000077 ], [ -82.027713204999941, 28.829609951000066 ], [ -82.027819147999935, 28.829611860000057 ], [ -82.027986175999956, 28.829613769000048 ], [ -82.028106430999969, 28.82961842800006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028106430999969, 28.82961842800006 ], [ -82.028419493999934, 28.829609951000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028415079999945, 28.832819407000045 ], [ -82.028427716999943, 28.832413433000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028427716999943, 28.832413433000056 ], [ -82.028446672999962, 28.832282321000037 ], [ -82.02847352699996, 28.832127514000035 ], [ -82.028500381999947, 28.83199008400004 ], [ -82.028537495999956, 28.831833157000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026287396999976, 28.833253416000048 ], [ -82.026190511999971, 28.832927529000074 ], [ -82.026176418999967, 28.832853544000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026176418999967, 28.832853544000045 ], [ -82.026137664999965, 28.832562887000051 ], [ -82.026113002999978, 28.832418440000026 ], [ -82.026090102999945, 28.832310985000049 ], [ -82.026061917999982, 28.832224669000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026176418999967, 28.832853544000045 ], [ -82.02625579499994, 28.832839363000062 ], [ -82.026353229999984, 28.832816164000064 ], [ -82.026476956999943, 28.832775953000066 ], [ -82.026600683999959, 28.83272800900005 ], [ -82.026698118999946, 28.832689344000073 ], [ -82.026792459999967, 28.83265222600005 ], [ -82.026886801999979, 28.832624388000056 ], [ -82.026998155999934, 28.832585723000079 ], [ -82.027100230999963, 28.832553245000042 ], [ -82.027234783999972, 28.832525406000059 ], [ -82.027392759999941, 28.832488946000069 ], [ -82.027551833999951, 28.832452717000024 ], [ -82.02766937399997, 28.832437251000044 ], [ -82.027779181999961, 28.832429518000026 ], [ -82.027915280999935, 28.832420239000044 ], [ -82.02803746099994, 28.832418692000033 ], [ -82.028181293999978, 28.832414052000047 ], [ -82.028300380999951, 28.832414052000047 ], [ -82.028427716999943, 28.832413433000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025348693999945, 28.831071536000024 ], [ -82.025065014999939, 28.830532764000054 ], [ -82.025056217999975, 28.830493181000065 ], [ -82.025058416999968, 28.830451399000026 ], [ -82.025065014999939, 28.830405218000067 ], [ -82.025089203999983, 28.830356839000046 ], [ -82.025117791999946, 28.830315056000074 ], [ -82.025146379999967, 28.830277672000079 ], [ -82.025183763999962, 28.830255682000029 ], [ -82.025229944999978, 28.83023589000004 ], [ -82.025891863999959, 28.830022581000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025891863999959, 28.830022581000037 ], [ -82.02624568899995, 28.829920036000033 ], [ -82.026287470999989, 28.829913439000052 ], [ -82.026340248999986, 28.829915638000045 ], [ -82.026390826999943, 28.829920036000033 ], [ -82.026437007999959, 28.829928833000054 ], [ -82.026489784999967, 28.82994642500006 ], [ -82.02654036399997, 28.829975013000023 ], [ -82.026582145999953, 28.830007999000031 ], [ -82.026615131999961, 28.830036587000052 ], [ -82.026641520999988, 28.830078369000034 ], [ -82.026667909999958, 28.83012455000005 ], [ -82.026692098999945, 28.830175128000064 ], [ -82.026705293999953, 28.830230105000055 ], [ -82.026711890999934, 28.830293878000077 ], [ -82.026703094999959, 28.830353253000055 ], [ -82.026678904999983, 28.830397234000031 ], [ -82.026641520999988, 28.830443414000058 ], [ -82.026593140999978, 28.830476400000066 ], [ -82.026535965999983, 28.83050498800003 ], [ -82.026452400999972, 28.830535775000044 ], [ -82.026327053999978, 28.830579757000066 ], [ -82.026179716999934, 28.83062813600003 ], [ -82.026056568999934, 28.830672117000063 ], [ -82.02595321299998, 28.830711701000041 ], [ -82.025889439999958, 28.830749085000036 ], [ -82.025810273, 28.830804061000038 ], [ -82.025750898999945, 28.830856839000035 ], [ -82.025698120999948, 28.830903020000051 ], [ -82.025632148999989, 28.830947001000027 ], [ -82.025555181999948, 28.830988783000066 ], [ -82.025473815999987, 28.831030565000049 ], [ -82.025348693999945, 28.831071536000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025348693999945, 28.831071536000024 ], [ -82.025268960999938, 28.831117063000079 ], [ -82.025071044999947, 28.831200627000044 ], [ -82.024912711999946, 28.83127319700003 ], [ -82.024855535999961, 28.831341368000039 ], [ -82.024818151999966, 28.831413937000036 ], [ -82.024811554999985, 28.831484307000039 ], [ -82.024811554999985, 28.831552478000049 ], [ -82.024837942999966, 28.831770186000028 ], [ -82.024859933999949, 28.831836158000044 ], [ -82.02489511899995, 28.831926320000036 ], [ -82.024950095999941, 28.832003287000077 ], [ -82.025020465999944, 28.832086851000042 ], [ -82.025082039999972, 28.832139629000039 ], [ -82.025178798999946, 28.832205601000055 ], [ -82.025304145999939, 28.832262777000039 ], [ -82.025436089999971, 28.832302360000028 ], [ -82.025526250999974, 28.832315554000047 ], [ -82.025609815999985, 28.832319953000024 ], [ -82.025710972999946, 28.832315554000047 ], [ -82.025827523999965, 28.83229136500006 ], [ -82.025924282999938, 28.832262777000039 ], [ -82.026061917999982, 28.832224669000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026061917999982, 28.832224669000027 ], [ -82.026226392999945, 28.83216446800003 ], [ -82.026503475999959, 28.832080903000076 ], [ -82.026681599999961, 28.832025927000075 ], [ -82.026773960999947, 28.831999538000048 ], [ -82.026857525999958, 28.831962154000053 ], [ -82.02694108999998, 28.83191817200003 ], [ -82.02704224699994, 28.831869793000067 ], [ -82.02711041799995, 28.831847802000027 ], [ -82.02718738599998, 28.831819214000063 ], [ -82.027279745999977, 28.83179722400007 ], [ -82.027378703999943, 28.831781830000068 ], [ -82.027501851999943, 28.831770835000043 ], [ -82.027928470999939, 28.831788427000049 ], [ -82.028359487999978, 28.83181701500007 ], [ -82.028537495999956, 28.831833157000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025891863999959, 28.830022581000037 ], [ -82.025765547999981, 28.829674015000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025734825999962, 28.833358462000035 ], [ -82.025902217999942, 28.833342925000068 ], [ -82.026051136999968, 28.833319355000071 ], [ -82.026177393999944, 28.833292306000033 ], [ -82.026287396999976, 28.833253416000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026287396999976, 28.833253416000048 ], [ -82.026449414999945, 28.833212417000027 ], [ -82.026622136999947, 28.833163763000073 ], [ -82.026780261999988, 28.833100513000034 ], [ -82.026933521999979, 28.833034830000031 ], [ -82.027045425999972, 28.832995907000054 ], [ -82.027171925999937, 28.832964282000034 ], [ -82.027305724999962, 28.832927792000078 ], [ -82.027437089999978, 28.832893734000038 ], [ -82.027614676999974, 28.832866974000069 ], [ -82.027797128999964, 28.832842647000064 ], [ -82.027969850999966, 28.832828051000035 ], [ -82.028113819999987, 28.832822795000027 ], [ -82.028274377999935, 28.832817930000033 ], [ -82.028415079999945, 28.832819407000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026515943999982, 28.833635349000076 ], [ -82.026769830999967, 28.833553838000057 ], [ -82.026954232999969, 28.833484353000074 ], [ -82.027113246999988, 28.833424222000076 ], [ -82.027252216999955, 28.833372108000049 ], [ -82.027381832999936, 28.833332021000047 ], [ -82.027527483999961, 28.833298615000047 ], [ -82.027658435999967, 28.833275898000068 ], [ -82.027750637999986, 28.833262536000063 ], [ -82.027840165999976, 28.83325719100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027840165999976, 28.83325719100003 ], [ -82.02797245499994, 28.833242492000068 ], [ -82.028106079999986, 28.833230466000032 ], [ -82.02826108499994, 28.833230466000032 ], [ -82.028500828999938, 28.833220185000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02785881799997, 28.834158445000071 ], [ -82.027839918999973, 28.833869561000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027839918999973, 28.833869561000029 ], [ -82.027840165999976, 28.83325719100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026417095999989, 28.834298837000063 ], [ -82.026714079999977, 28.834211092000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026714079999977, 28.834211092000032 ], [ -82.027839918999973, 28.833869561000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026714079999977, 28.834211092000032 ], [ -82.026515943999982, 28.833635349000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026515943999982, 28.833635349000076 ], [ -82.02641244199998, 28.833356343000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972507757999949, 28.790606094000054 ], [ -81.972475102999965, 28.790556180000067 ], [ -81.972460641999987, 28.790525857000034 ], [ -81.972455510999964, 28.790491803000066 ], [ -81.97245737999998, 28.790440141000033 ], [ -81.972481935999951, 28.790224478000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972481935999951, 28.790224478000027 ], [ -81.972531046999961, 28.789889241000026 ], [ -81.972528911999973, 28.789830521000056 ], [ -81.972526775999938, 28.78977820700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972526775999938, 28.78977820700004 ], [ -81.972494746999985, 28.789810236000051 ], [ -81.972463785999935, 28.789860415000078 ], [ -81.972444567999958, 28.789922338000054 ], [ -81.972436026999958, 28.789974652000069 ], [ -81.972403997999947, 28.790218073000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972403997999947, 28.790218073000062 ], [ -81.972387983999965, 28.790363271000047 ], [ -81.972378374999948, 28.790416653000079 ], [ -81.972361292999949, 28.790465764000032 ], [ -81.972343142999989, 28.790497793000043 ], [ -81.972329911999964, 28.790524398000059 ], [ -81.972321463999947, 28.790539903000024 ], [ -81.972310336999954, 28.790556870000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972481935999951, 28.790224478000027 ], [ -81.972403997999947, 28.790218073000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972526775999938, 28.78977820700004 ], [ -81.972559390999947, 28.789562682000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972559390999947, 28.789562682000053 ], [ -81.972592373999987, 28.789436556000055 ], [ -81.972644960999958, 28.789305088000049 ], [ -81.972717268999986, 28.789152256000079 ], [ -81.972804365999934, 28.789010928000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972804365999934, 28.789010928000039 ], [ -81.972912827999949, 28.788867956000047 ], [ -81.97306072899994, 28.788695404000066 ], [ -81.97317740799997, 28.788557362000063 ], [ -81.973248072, 28.788478481000027 ], [ -81.973307231999968, 28.788402887000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972804365999934, 28.789010928000039 ], [ -81.972624659999951, 28.788934749000077 ], [ -81.972494121999944, 28.788885235000066 ], [ -81.972386090999976, 28.788864979000039 ], [ -81.972237547999953, 28.78885372600007 ], [ -81.972102508999967, 28.788860478000061 ], [ -81.97197872299995, 28.788864979000039 ], [ -81.971854936999989, 28.788876232000064 ], [ -81.971733401999984, 28.788873982000041 ], [ -81.971609615999967, 28.788869480000074 ], [ -81.971465573999978, 28.788855977000026 ], [ -81.971344038999973, 28.788840222000033 ], [ -81.971251761999952, 28.788835721000055 ], [ -81.971190993999983, 28.788837971000078 ], [ -81.971134727999981, 28.788858227000048 ], [ -81.97108521399997, 28.788885235000066 ], [ -81.97103569899997, 28.788932499000055 ], [ -81.970968179999943, 28.789006770000071 ], [ -81.970907411999974, 28.789085543000056 ], [ -81.970878154, 28.789146311000025 ], [ -81.970866899999976, 28.789234086000079 ], [ -81.970882654999969, 28.789310608000051 ], [ -81.970920915999955, 28.789366875000042 ], [ -81.970990685999936, 28.789423141000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970990685999936, 28.789423141000043 ], [ -81.971051453999962, 28.789447898000049 ], [ -81.97114598099995, 28.789470405000031 ], [ -81.971258513999942, 28.789483909000069 ], [ -81.971366544999967, 28.789499663000072 ], [ -81.971519589999957, 28.789506415000062 ], [ -81.971672633999958, 28.789513167000052 ], [ -81.971758159, 28.789519919000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971758159, 28.789519919000043 ], [ -81.971971970999959, 28.789513167000052 ], [ -81.972066497999947, 28.789513167000052 ], [ -81.972158774999969, 28.789513167000052 ], [ -81.972248800999978, 28.789522170000055 ], [ -81.972356832999935, 28.789537924000058 ], [ -81.972462612999948, 28.789555930000063 ], [ -81.972559390999947, 28.789562682000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970810633999974, 28.789666212000043 ], [ -81.970990685999936, 28.789423141000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971762659999968, 28.790026316000024 ], [ -81.971758159, 28.789519919000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972559390999947, 28.789562682000053 ], [ -81.973590189999982, 28.789672964000033 ], [ -81.973650957999951, 28.789663961000031 ], [ -81.973700471999962, 28.789641454000048 ], [ -81.973736482999982, 28.789609945000052 ], [ -81.973772492999956, 28.789578436000056 ], [ -81.973804001999952, 28.78954017500007 ], [ -81.973824257999979, 28.789492911000025 ], [ -81.97383776199996, 28.789425392000055 ], [ -81.973880523999981, 28.789216081000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973880523999981, 28.789216081000063 ], [ -81.974028342999986, 28.788581039000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973880523999981, 28.789216081000063 ], [ -81.973988555999938, 28.789236337000034 ], [ -81.974103338999953, 28.789276849000032 ], [ -81.974287892999939, 28.789348870000026 ], [ -81.974456692, 28.789418640000065 ], [ -81.974848304999966, 28.789632452000035 ], [ -81.975026106999962, 28.789722478000044 ], [ -81.97516339699996, 28.789787747000048 ], [ -81.975298435999946, 28.78985076500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975084623999976, 28.79033015400006 ], [ -81.975298435999946, 28.78985076500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975298435999946, 28.78985076500004 ], [ -81.975631531999966, 28.789333115000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973307231999968, 28.788402887000075 ], [ -81.974028342999986, 28.788581039000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974683383999945, 28.788818373000026 ], [ -81.97476506199996, 28.78885428500007 ], [ -81.975186717999975, 28.78907048800005 ], [ -81.975631531999966, 28.789333115000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975631531999966, 28.789333115000034 ], [ -81.975766048999958, 28.789391808000062 ], [ -81.975933277999957, 28.789462283000034 ], [ -81.976131563999957, 28.789535147000038 ], [ -81.976270125999974, 28.789580538000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976270125999974, 28.789580538000052 ], [ -81.97639315899994, 28.789610400000072 ], [ -81.976501857999949, 28.78963787400005 ], [ -81.976639224999985, 28.789662958000065 ], [ -81.976787341999966, 28.789684459000057 ], [ -81.977054908999946, 28.789723877000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976075422999941, 28.790164646000051 ], [ -81.976270125999974, 28.789580538000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976270125999974, 28.789580538000052 ], [ -81.976501872999961, 28.789133252000056 ], [ -81.976623998999969, 28.788924399000052 ], [ -81.976774443999943, 28.788724395000031 ], [ -81.976916038999946, 28.788570410000034 ], [ -81.977110732999961, 28.788398726000025 ], [ -81.977177990999962, 28.78836155700003 ], [ -81.977238168999975, 28.788345628000059 ], [ -81.977293036999981, 28.788345628000059 ], [ -81.97735675499996, 28.788350937000075 ], [ -81.977408082999943, 28.788365097000053 ], [ -81.977461181999956, 28.788396956000042 ], [ -81.977500119999945, 28.788427045000049 ], [ -81.97779230499998, 28.788744329000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97779230499998, 28.788744329000053 ], [ -81.977928446999954, 28.788873071000069 ], [ -81.978041723, 28.788975727000036 ], [ -81.978183317999935, 28.789085464000038 ], [ -81.978296594999961, 28.78918458000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978296594999961, 28.78918458000004 ], [ -81.978539076999937, 28.789331486000037 ], [ -81.978671822999956, 28.789428833000045 ], [ -81.978960322999967, 28.789692554000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977048784999965, 28.790062472000045 ], [ -81.977054908999946, 28.789723877000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977054908999946, 28.789723877000029 ], [ -81.977089365999973, 28.78962811100007 ], [ -81.977129717999958, 28.789536056000031 ], [ -81.977182680999988, 28.789428870000052 ], [ -81.97723186099995, 28.789339337000058 ], [ -81.977299955999968, 28.789228367000078 ], [ -81.977356701999952, 28.789142618000028 ], [ -81.977423535999947, 28.789056869000035 ], [ -81.977499196999986, 28.788977424000052 ], [ -81.977617732999988, 28.788877804000037 ], [ -81.97779230499998, 28.788744329000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977897505999977, 28.78988098800005 ], [ -81.977949557999978, 28.789719626000078 ], [ -81.977980789999947, 28.789646753000056 ], [ -81.978087497, 28.789477583000064 ], [ -81.978196805999971, 28.789320125000074 ], [ -81.978296594999961, 28.78918458000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974028342999986, 28.788581039000064 ], [ -81.974192897999956, 28.788623747000031 ], [ -81.974503466999977, 28.788737224000045 ], [ -81.974683383999945, 28.788818373000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974683383999945, 28.788818373000026 ], [ -81.974964718999956, 28.788193234000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974586132999946, 28.788040204000026 ], [ -81.97479819199998, 28.788121630000035 ], [ -81.974964718999956, 28.788193234000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974964718999956, 28.788193234000062 ], [ -81.975156805999973, 28.788284746000045 ], [ -81.975384099999985, 28.78841471000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975384099999985, 28.78841471000004 ], [ -81.975964698999974, 28.788734005000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975384099999985, 28.78841471000004 ], [ -81.975452594999979, 28.78830010300004 ], [ -81.975525828999935, 28.78818652700005 ], [ -81.975599062999947, 28.788093433000029 ], [ -81.975672917999987, 28.788000959000044 ], [ -81.975736842999936, 28.787930207000045 ], [ -81.975820007999971, 28.787834630000077 ], [ -81.975893862999953, 28.787763878000078 ], [ -81.975997507999978, 28.787668922000023 ], [ -81.976106117999961, 28.787573966000025 ], [ -81.976215969999942, 28.78748149200004 ], [ -81.976318993999939, 28.787396465000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976003713999944, 28.787150075000056 ], [ -81.976318993999939, 28.787396465000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976318993999939, 28.787396465000029 ], [ -81.976838444999942, 28.787776136000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976838444999942, 28.787776136000048 ], [ -81.977169980999975, 28.788001769000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975816007999981, 28.789028046000055 ], [ -81.975964698999974, 28.788734005000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975964698999974, 28.788734005000038 ], [ -81.976048339999977, 28.788599753000028 ], [ -81.976151452999943, 28.788463772000057 ], [ -81.976255210999966, 28.788343259000044 ], [ -81.976357034999978, 28.78823112300006 ], [ -81.976449836999961, 28.788142832000062 ], [ -81.976528460999987, 28.788075809000077 ], [ -81.976616106999984, 28.788002340000048 ], [ -81.976690863999977, 28.787945628000045 ], [ -81.976743709999937, 28.787894716000039 ], [ -81.976784954999971, 28.787850893000041 ], [ -81.976812667, 28.78781415900005 ], [ -81.976838444999942, 28.787776136000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973307231999968, 28.788402887000075 ], [ -81.97334995999995, 28.788304286000027 ], [ -81.973417336999944, 28.788110370000027 ], [ -81.973478140999987, 28.787914811000064 ], [ -81.973527441999977, 28.78773568500003 ], [ -81.973563595999963, 28.787619007000046 ], [ -81.973588245999963, 28.787523693000026 ], [ -81.973614538999982, 28.787431665000042 ], [ -81.973635902999945, 28.787349497000037 ], [ -81.973660552999945, 28.787227889000064 ], [ -81.973674677999952, 28.787116160000039 ], [ -81.973682846999964, 28.786999747000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973682846999964, 28.786999747000038 ], [ -81.973686931999964, 28.786907843000051 ], [ -81.973699185999976, 28.786783261000039 ], [ -81.973715524999989, 28.786670933000039 ], [ -81.973754328999973, 28.786483039000075 ], [ -81.973789047999958, 28.786315568000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973789047999958, 28.786315568000077 ], [ -81.973925883999982, 28.785700828000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974028342999986, 28.788581039000064 ], [ -81.974078433999978, 28.788409176000073 ], [ -81.974152581999988, 28.788167958000031 ], [ -81.97424652899997, 28.787865694000061 ], [ -81.974310751999951, 28.78766990400004 ], [ -81.974387614999955, 28.787398723000024 ], [ -81.97443371199995, 28.787232088000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973789047999958, 28.786315568000077 ], [ -81.973926025999958, 28.78633701900003 ], [ -81.974164128999973, 28.786388302000034 ], [ -81.974376590999952, 28.786443249000058 ], [ -81.974563410999963, 28.786505523000073 ], [ -81.974826549999989, 28.786628044000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974826549999989, 28.786628044000054 ], [ -81.974898162999978, 28.786669853000035 ], [ -81.975050091999947, 28.786763691000033 ], [ -81.975206489999948, 28.786858275000043 ], [ -81.975284688999977, 28.786905194000042 ], [ -81.975382062999984, 28.786975240000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975382062999984, 28.786975240000061 ], [ -81.97540248599995, 28.787001790000033 ], [ -81.975437205999981, 28.787056933000031 ], [ -81.975449459999936, 28.787130456000057 ], [ -81.975437205999981, 28.787199895000072 ], [ -81.97540248599995, 28.787269335000076 ], [ -81.975337131999936, 28.787353070000052 ], [ -81.975216634999981, 28.787449059000039 ], [ -81.975161491999984, 28.787477652000064 ], [ -81.975090009999974, 28.787493991000076 ], [ -81.975018528999954, 28.787496033000025 ], [ -81.974951131999944, 28.78748377900007 ], [ -81.974902422999946, 28.787460379000038 ], [ -81.974851588999968, 28.787435709000079 ], [ -81.97443371199995, 28.787232088000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97443371199995, 28.787232088000053 ], [ -81.974290168999971, 28.78716733400006 ], [ -81.974114490999966, 28.787101548000066 ], [ -81.97393806599996, 28.787053704000073 ], [ -81.973787057999971, 28.787021559000038 ], [ -81.973682846999964, 28.786999747000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975382062999984, 28.786975240000061 ], [ -81.975790536999966, 28.78682574100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973682846999964, 28.786999747000038 ], [ -81.973008873999959, 28.786840509000058 ], [ -81.97224504899998, 28.786705652000023 ], [ -81.972140890999981, 28.786679102000051 ], [ -81.972063281999965, 28.786648467000077 ], [ -81.97198975799995, 28.78660353600003 ], [ -81.971946869999954, 28.786523885000065 ], [ -81.971946869999954, 28.786474870000063 ], [ -81.971957080999971, 28.786425854000072 ], [ -81.971973264999974, 28.786352188000023 ], [ -81.972083704999989, 28.786015346000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972083704999989, 28.786015346000056 ], [ -81.972191948999978, 28.785613008000041 ], [ -81.97221441399995, 28.785561949000055 ], [ -81.972238921999974, 28.785529272000076 ], [ -81.972269556999947, 28.785498637000046 ], [ -81.972310403999984, 28.785472087000073 ], [ -81.972371673999987, 28.78545574900005 ], [ -81.972432942999944, 28.78545166400005 ], [ -81.972528932999978, 28.785459833000061 ], [ -81.972645344999989, 28.785478214000079 ], [ -81.973925883999982, 28.785700828000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973925883999982, 28.785700828000074 ], [ -81.974264909999988, 28.785760055000026 ], [ -81.974485481999977, 28.785807029000068 ], [ -81.974659851999945, 28.785857666000027 ], [ -81.97482615399997, 28.785915283000065 ], [ -81.974938877999989, 28.785978584000077 ], [ -81.975014443999953, 28.786058235000041 ], [ -81.975061417999939, 28.786154224000029 ], [ -81.975051205999989, 28.786221621000038 ], [ -81.975008316999947, 28.786313526000072 ], [ -81.974945004999938, 28.786417684000071 ], [ -81.974826549999989, 28.786628044000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972083704999989, 28.786015346000056 ], [ -81.973789047999958, 28.786315568000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971402768999951, 28.788119278000067 ], [ -81.971512750999977, 28.788147791000029 ], [ -81.971582213999966, 28.788159890000031 ], [ -81.971692232999942, 28.788169764000031 ], [ -81.971806481999977, 28.788181048000069 ], [ -81.971920731999944, 28.78817822700006 ], [ -81.972034981999968, 28.78817117400007 ], [ -81.972147820999965, 28.788159890000031 ], [ -81.972267712999951, 28.788147196000068 ], [ -81.972352341999965, 28.788144375000059 ], [ -81.97243132899996, 28.788147196000068 ], [ -81.972510316999944, 28.78815283800003 ], [ -81.972651265999957, 28.788178342000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972651265999957, 28.788178342000037 ], [ -81.972724586999959, 28.788198709000028 ], [ -81.972791798999936, 28.788229259000047 ], [ -81.972858708, 28.788254393000045 ], [ -81.972934873999975, 28.788288245000047 ], [ -81.97302796699995, 28.788319276000038 ], [ -81.973123879999946, 28.788347486000077 ], [ -81.973307231999968, 28.788402887000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971284640999954, 28.788455333000059 ], [ -81.971402768999951, 28.788119278000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971402768999951, 28.788119278000067 ], [ -81.971498493999945, 28.787785259000032 ], [ -81.971565704999989, 28.787599919000058 ], [ -81.971618658999944, 28.787451240000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971618658999944, 28.787451240000053 ], [ -81.971710310999981, 28.787125368000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971618658999944, 28.787451240000053 ], [ -81.971689943999934, 28.787461424000071 ], [ -81.971761227999934, 28.787473644000045 ], [ -81.971842695999953, 28.787477717000058 ], [ -81.971926200999974, 28.787475681000046 ], [ -81.972017852999954, 28.787467534000029 ], [ -81.972113577999949, 28.787455314000056 ], [ -81.972219485999972, 28.787445130000037 ], [ -81.972296879999988, 28.787443093000036 ], [ -81.972380384999951, 28.787439020000079 ], [ -81.972453705999953, 28.787445130000037 ], [ -81.972516843999983, 28.787443093000036 ], [ -81.97258405499997, 28.787449203000051 ], [ -81.972716440999989, 28.787467534000029 ], [ -81.972831595999935, 28.787493956000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972831595999935, 28.787493956000048 ], [ -81.973217784999974, 28.78757893900007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972651265999957, 28.788178342000037 ], [ -81.972831595999935, 28.787493956000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972310336999954, 28.790556870000046 ], [ -81.972275343999968, 28.790563758000076 ], [ -81.972221480999963, 28.790584437000064 ], [ -81.97218860199996, 28.790601192000054 ], [ -81.972154850999971, 28.790624981000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972649927999953, 28.79070544700005 ], [ -81.972625314999959, 28.790671404000079 ], [ -81.97258986099996, 28.790645747000042 ], [ -81.972546943999987, 28.79062428800006 ], [ -81.972507757999949, 28.790606094000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995011351999949, 28.801677321000057 ], [ -81.995105741999964, 28.801691529000038 ], [ -81.995182252999939, 28.801682293000056 ], [ -81.995218732999945, 28.801670906000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994850993999989, 28.801329968000061 ], [ -81.994833381999968, 28.801369348000037 ], [ -81.994823550999968, 28.801410777000058 ], [ -81.994823276999966, 28.801473644000055 ], [ -81.994833300999971, 28.801506239000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104255388999945, 28.697857389000035 ], [ -82.103447987999971, 28.69787737200005 ], [ -82.102574948999973, 28.697870865000027 ], [ -82.101511579999965, 28.697867124000027 ], [ -82.100077856999974, 28.69787010500005 ], [ -82.099266636999971, 28.697864965000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977645088999964, 28.799021924000044 ], [ -81.97792835499996, 28.799006120000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966914347999989, 28.788481907000062 ], [ -81.966970123999943, 28.78849574000003 ], [ -81.967250682999975, 28.78857765500004 ], [ -81.967407345999959, 28.788631924000072 ], [ -81.967739102999985, 28.788755821000052 ], [ -81.967841878999934, 28.788812285000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967919708999943, 28.788643120000074 ], [ -81.967823065999937, 28.788633972000071 ], [ -81.967741150999984, 28.788611445000072 ], [ -81.96756708099997, 28.788546937000035 ], [ -81.967414513999984, 28.78849266800006 ], [ -81.967294712999944, 28.788454782000031 ], [ -81.967192318999935, 28.788422016000027 ], [ -81.966948503999959, 28.788354384000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966948503999959, 28.788354384000058 ], [ -81.966914347999989, 28.788481907000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020805966999944, 28.791302725000037 ], [ -82.020849819999967, 28.791226197000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021049755999968, 28.791399747000071 ], [ -82.021144653999954, 28.791449362000037 ], [ -82.021323508999956, 28.791540170000076 ], [ -82.02136461799995, 28.791545386000053 ], [ -82.021399385999985, 28.79154806300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020805966999944, 28.791302725000037 ], [ -82.020839518999935, 28.791313686000024 ], [ -82.020885765999935, 28.791327915000068 ], [ -82.021049755999968, 28.791399747000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021399385999985, 28.79154806300005 ], [ -82.021396410999955, 28.791524363000065 ], [ -82.021389273999944, 28.791497245000073 ], [ -82.021366437999973, 28.791471554000054 ], [ -82.021286509999982, 28.791423027000064 ], [ -82.021095254999977, 28.791318836000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021095254999977, 28.791318836000073 ], [ -82.020849819999967, 28.791226197000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021049755999968, 28.791399747000071 ], [ -82.021095254999977, 28.791318836000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020189855999945, 28.791106636000052 ], [ -82.020276155999966, 28.791153344000065 ], [ -82.020312125999965, 28.791167178000023 ], [ -82.020485251999958, 28.791208681000057 ], [ -82.020523329999946, 28.79121744300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020849819999967, 28.791226197000071 ], [ -82.020547601999965, 28.791141461000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020547601999965, 28.791141461000052 ], [ -82.020456845999945, 28.791117189000033 ], [ -82.020337597999969, 28.791090807000046 ], [ -82.020291164999946, 28.791083420000064 ], [ -82.020262671999944, 28.791086586000063 ], [ -82.020224680999945, 28.791089752000062 ], [ -82.020189855999945, 28.791106636000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020547601999965, 28.791141461000052 ], [ -82.020523329999946, 28.79121744300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019575201999942, 28.811752105000039 ], [ -82.019600497999988, 28.811686336000037 ], [ -82.019679019999955, 28.811411508000049 ], [ -82.019736126999987, 28.811211633000028 ], [ -82.01981617499996, 28.811080697000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018611766999982, 28.813393753000071 ], [ -82.018617420999988, 28.813384772000063 ], [ -82.018672392999974, 28.813325808000059 ], [ -82.018778022999982, 28.813117211000076 ], [ -82.018943124999964, 28.812822512000025 ], [ -82.019005525999944, 28.81271107200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019005525999944, 28.81271107200007 ], [ -82.018887252999946, 28.812628134000079 ], [ -82.018877898999961, 28.812622549000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019575201999942, 28.811752105000039 ], [ -82.01952739799998, 28.811801392000064 ], [ -82.01946388999994, 28.811907698000027 ], [ -82.019403143999966, 28.812023669000041 ], [ -82.019336874999965, 28.812125833000039 ], [ -82.019265083999983, 28.812227998000026 ], [ -82.019172582999943, 28.812334304000046 ], [ -82.019103552999979, 28.812408857000037 ], [ -82.019048328999986, 28.812462700000026 ], [ -82.01898896299997, 28.812522066000042 ], [ -82.018877898999961, 28.812622549000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018877898999961, 28.812622549000025 ], [ -82.018838476999974, 28.812671171000034 ], [ -82.018777730999943, 28.812755388000028 ], [ -82.018711461999942, 28.81285064900004 ], [ -82.018656237999949, 28.812961098000073 ], [ -82.01860791699994, 28.813072926000075 ], [ -82.018567878999988, 28.81319441900007 ], [ -82.018571269999939, 28.813259232000064 ], [ -82.018580949999944, 28.81332320100006 ], [ -82.018593574999954, 28.813358973000049 ], [ -82.018611766999982, 28.813393753000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017504990999953, 28.935451153000031 ], [ -82.017461736999962, 28.935413595000057 ], [ -82.01741814199994, 28.935385439000072 ], [ -82.017310969999983, 28.935360917000025 ], [ -82.016320648999965, 28.935364143000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016320648999965, 28.935364143000072 ], [ -82.016321090999952, 28.935467426000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016321090999952, 28.935467426000059 ], [ -82.017315907999944, 28.935470464000048 ], [ -82.017372103999946, 28.935465907000037 ], [ -82.017429818999972, 28.935458313000026 ], [ -82.017504990999953, 28.935451153000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053651608999985, 28.919930007000062 ], [ -82.053651301999935, 28.919985269000051 ], [ -82.053651122999952, 28.920018321000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052772469999979, 28.91993879100005 ], [ -82.052717218999987, 28.919944900000075 ], [ -82.052630780999948, 28.919954505000078 ], [ -82.052467508999939, 28.919973713000047 ], [ -82.052308078999943, 28.919992921000073 ], [ -82.05219658599998, 28.920029432000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052779948999955, 28.920021431000066 ], [ -82.052924587999939, 28.920013490000031 ], [ -82.053101372999947, 28.920009626000024 ], [ -82.053240482999968, 28.920011558000056 ], [ -82.053490686999965, 28.920012524000072 ], [ -82.053651122999952, 28.920018321000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05219658599998, 28.920029432000035 ], [ -82.052299537999943, 28.920051166000064 ], [ -82.052422224999987, 28.920056962000046 ], [ -82.052558436999959, 28.920046336000041 ], [ -82.052653107999959, 28.92003184500004 ], [ -82.052766134999956, 28.92002218500005 ], [ -82.052779948999955, 28.920021431000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052772469999979, 28.91993879100005 ], [ -82.052779948999955, 28.920021431000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013564805999977, 28.838238381000053 ], [ -82.013481013999979, 28.838206082000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013564805999977, 28.838238381000053 ], [ -82.013678661999961, 28.837961091000068 ], [ -82.01368509699995, 28.837929376000034 ], [ -82.013687394999977, 28.837893523000048 ], [ -82.013688314999968, 28.837536838000062 ], [ -82.013689233999969, 28.837204055000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013689233999969, 28.837204055000029 ], [ -82.013606017999962, 28.837196237000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020614225999964, 28.874564589000045 ], [ -82.020358572999953, 28.874572140000055 ], [ -82.019884653999952, 28.874580966000053 ], [ -82.019576650999966, 28.874593321000077 ], [ -82.019320114999971, 28.874625583000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020614095999974, 28.874689149000062 ], [ -82.020614225999964, 28.874564589000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019881814999962, 28.874659375000078 ], [ -82.020224043999974, 28.874663635000047 ], [ -82.020614095999974, 28.874689149000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954436234999946, 28.552358763000029 ], [ -81.954848201999937, 28.552187111000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.240276434999942, 28.625219285000071 ], [ -82.240323676999935, 28.625222826000027 ], [ -82.240381531999958, 28.625236149000045 ], [ -82.240424204999954, 28.625265612000078 ], [ -82.24043310199994, 28.625285899000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023080137999955, 28.836238784000045 ], [ -82.023348896999948, 28.836182203000078 ], [ -82.023542686999974, 28.836144011000044 ], [ -82.023725159999969, 28.836105819000068 ], [ -82.023818517999985, 28.836097332000065 ], [ -82.023901974999944, 28.83609308900003 ], [ -82.023972700999934, 28.836095918000069 ], [ -82.024083032999954, 28.836102990000029 ], [ -82.024173562999977, 28.836111477000031 ], [ -82.02428389499994, 28.83612703700004 ], [ -82.024446564999948, 28.836139768000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024446564999948, 28.836139768000066 ], [ -82.024535679999985, 28.836138353000024 ], [ -82.024672458999987, 28.836132055000064 ], [ -82.024822523999944, 28.83611939900004 ], [ -82.025026830999934, 28.836094087000049 ], [ -82.025236561999975, 28.836063350000074 ], [ -82.025406515999975, 28.836043462000077 ], [ -82.025520420999953, 28.836032614000032 ], [ -82.025601781999967, 28.836021766000044 ], [ -82.025675910999951, 28.836010918000056 ], [ -82.025757037999938, 28.835995030000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025757037999938, 28.835995030000049 ], [ -82.025820691999968, 28.835972397000035 ], [ -82.025962143999948, 28.835931376000076 ], [ -82.026058330999945, 28.835908744000051 ], [ -82.026172906999989, 28.835891770000046 ], [ -82.02630445799997, 28.835873381000056 ], [ -82.026351136999949, 28.835857821000047 ], [ -82.026390742999979, 28.835835189000079 ], [ -82.026413375999937, 28.835798411000042 ], [ -82.026423276999935, 28.83575597600003 ], [ -82.026421862999939, 28.83570363900003 ], [ -82.02635554799997, 28.835260009000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02635554799997, 28.835260009000024 ], [ -82.026335640999946, 28.835177154000064 ], [ -82.026316712999972, 28.835074543000076 ], [ -82.026296788999957, 28.834969940000065 ], [ -82.02626989099997, 28.834877292000044 ], [ -82.026230041999952, 28.834755753000024 ], [ -82.026180230999955, 28.834627241000078 ], [ -82.026098540999953, 28.834454895000079 ], [ -82.026039265999941, 28.834349046000057 ], [ -82.025959118999936, 28.834181191000027 ], [ -82.025886532999948, 28.833998213000029 ], [ -82.025844190999976, 28.833875724000052 ], [ -82.025809410999955, 28.833774406000032 ], [ -82.02577916599995, 28.833662503000028 ], [ -82.025757995999982, 28.83356572200006 ], [ -82.025736237, 28.833447018000072 ], [ -82.025734825999962, 28.833358462000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024441292999938, 28.836725391000073 ], [ -82.024283736999962, 28.836738768000032 ], [ -82.024127667999949, 28.836732822000045 ], [ -82.023982002999958, 28.836719445000028 ], [ -82.023877956999968, 28.836719445000028 ], [ -82.023772423999958, 28.836728363000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023772423999958, 28.836728363000077 ], [ -82.023695133, 28.836732822000045 ], [ -82.023585140999955, 28.83674620000005 ], [ -82.023490012999957, 28.836765523000054 ], [ -82.023403802999951, 28.836786332000031 ], [ -82.023332456999981, 28.836798223000073 ], [ -82.023287865999976, 28.836795250000023 ], [ -82.023250706999988, 28.836781873000064 ], [ -82.023219492999942, 28.83676255000006 ], [ -82.023201655999969, 28.836734309000065 ], [ -82.023188278999953, 28.836694177000027 ], [ -82.023080137999955, 28.836238784000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023080137999955, 28.836238784000045 ], [ -82.023039979999965, 28.836081376000038 ], [ -82.023004785999944, 28.835954466000032 ], [ -82.02298452399998, 28.835877681000056 ], [ -82.022981323999943, 28.835821158000044 ], [ -82.022993054999972, 28.83576783500007 ], [ -82.023018649999983, 28.835714512000038 ], [ -82.023052776999975, 28.835670787000026 ], [ -82.023097568999958, 28.835634527000025 ], [ -82.023151958999961, 28.835608932000071 ], [ -82.023223411999936, 28.83558333700006 ], [ -82.023314060999951, 28.83556094100004 ], [ -82.023568945999955, 28.835489488000064 ], [ -82.02368519099997, 28.835463893000053 ], [ -82.023779039999965, 28.835452161000035 ], [ -82.023879287999989, 28.835453228000063 ], [ -82.024002997999958, 28.835461760000044 ], [ -82.024155501999985, 28.835492687000055 ], [ -82.024224821999951, 28.835509751000075 ], [ -82.024342132999948, 28.835526814000048 ], [ -82.024482906999935, 28.835534279000058 ], [ -82.02460874999997, 28.835528947000057 ], [ -82.024731585999973, 28.835519031000047 ], [ -82.024952797999958, 28.835494035000067 ], [ -82.025151513999958, 28.835466540000027 ], [ -82.025333982999939, 28.835441544000048 ], [ -82.025493954999945, 28.835420298000031 ], [ -82.025600186999952, 28.835395302000052 ], [ -82.025717666999981, 28.835365308000064 ], [ -82.025841394999986, 28.83533531300003 ], [ -82.025946376999968, 28.835309067000026 ], [ -82.02607885499998, 28.835292820000063 ], [ -82.026222579999967, 28.835274073000051 ], [ -82.02635554799997, 28.835260009000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02635554799997, 28.835260009000024 ], [ -82.02643220899995, 28.835252010000033 ], [ -82.026519426999982, 28.835254305000035 ], [ -82.026661731, 28.835260425000058 ], [ -82.026807859999963, 28.835270371000036 ], [ -82.026942512999938, 28.83527725700003 ], [ -82.02709992299998, 28.835281776000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023772423999958, 28.836728363000077 ], [ -82.023769414999947, 28.837745455000061 ], [ -82.023776130999977, 28.837784072000034 ], [ -82.023791241999959, 28.83781093500005 ], [ -82.02381474799995, 28.837829404000047 ], [ -82.023839932999977, 28.837846194000065 ], [ -82.023870153999951, 28.837851231000059 ], [ -82.023898696999936, 28.837854589000074 ], [ -82.024336911999967, 28.837849552000023 ], [ -82.024365453999962, 28.837841157000071 ], [ -82.024388959999953, 28.837827725000068 ], [ -82.02440742899995, 28.837807577000035 ], [ -82.024422539999989, 28.837784072000034 ], [ -82.024437649999982, 28.837752171000034 ], [ -82.024442686999976, 28.837710196000046 ], [ -82.024442686999976, 28.836786756000038 ], [ -82.024441292999938, 28.836725391000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024441292999938, 28.836725391000073 ], [ -82.024446564999948, 28.836139768000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028500828999938, 28.833220185000073 ], [ -82.028415079999945, 28.832819407000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028583445999971, 28.834399854000026 ], [ -82.028561646999947, 28.834144609000077 ], [ -82.028551915999969, 28.83402540700007 ], [ -82.028542184999935, 28.833911071000045 ], [ -82.028539751999972, 28.833821061000037 ], [ -82.028530021999984, 28.833740782000064 ], [ -82.028527588999964, 28.833621580000056 ], [ -82.028532453999958, 28.833555897000053 ], [ -82.028527588999964, 28.833426964000068 ], [ -82.02852029099995, 28.833332089000066 ], [ -82.028500828999938, 28.833220185000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02709992299998, 28.835281776000045 ], [ -82.02709992299998, 28.835177157000032 ], [ -82.027086335999968, 28.835079332000078 ], [ -82.027055085999962, 28.834947539000041 ], [ -82.027034705999938, 28.834844279000038 ], [ -82.027034705999938, 28.834787214000073 ], [ -82.027056444999971, 28.834745095000073 ], [ -82.027103998999962, 28.834709769000028 ], [ -82.027154269999983, 28.834696182000073 ], [ -82.027862144999972, 28.834477434000064 ], [ -82.02793823199994, 28.834463847000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02793823199994, 28.834463847000052 ], [ -82.028011508999953, 28.834442649000039 ], [ -82.028136751999966, 28.834425323000062 ], [ -82.028583445999971, 28.834399854000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028583445999971, 28.834399854000026 ], [ -82.029451849999987, 28.834355944000038 ], [ -82.029512909999937, 28.834355944000038 ], [ -82.029586602999984, 28.834364366000045 ], [ -82.029672927999968, 28.834383316000071 ], [ -82.029908744999943, 28.834448587000054 ], [ -82.029976121999937, 28.834463325000058 ], [ -82.03005402499997, 28.834480169000074 ], [ -82.030146667999986, 28.834501224000064 ], [ -82.030291947999956, 28.834526491000076 ], [ -82.030504603999987, 28.834558073000039 ], [ -82.030647778999935, 28.83457912800003 ], [ -82.030795163999983, 28.834593867000024 ], [ -82.030944654999985, 28.834598078000056 ], [ -82.031085723999979, 28.83459176100007 ], [ -82.03121416, 28.834577023000065 ], [ -82.031319436, 28.834555968000075 ], [ -82.031441554999958, 28.834528596000041 ], [ -82.031578412999977, 28.83448648600006 ], [ -82.031746027999986, 28.834421699000075 ], [ -82.031923761999963, 28.834363801000052 ], [ -82.03209179199996, 28.834332303000053 ], [ -82.033045932999983, 28.834343989000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02709992299998, 28.835281776000045 ], [ -82.027174485999979, 28.835288157000036 ], [ -82.027232039999944, 28.835289264000039 ], [ -82.027301768999962, 28.835274875000039 ], [ -82.027942610999958, 28.83507232900007 ], [ -82.02798577599998, 28.835039125000037 ], [ -82.028025620999983, 28.834999280000034 ], [ -82.028052184999979, 28.834946153000033 ], [ -82.028066573, 28.834884172000045 ], [ -82.028059931999962, 28.834811123000065 ], [ -82.028042222999943, 28.834749142000078 ], [ -82.028015659999937, 28.834686054000031 ], [ -82.02793823199994, 28.834463847000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000530882999954, 28.803483076000077 ], [ -82.00111629099996, 28.803638352000064 ], [ -82.001557031999937, 28.803746367000031 ], [ -82.001843465999968, 28.803874636000046 ], [ -82.00204985299996, 28.804011584000079 ], [ -82.002185835999967, 28.804127315000073 ], [ -82.002321819999963, 28.804277765000052 ], [ -82.002495415999988, 28.804518870000038 ], [ -82.002698438999971, 28.804709500000058 ], [ -82.002913010999976, 28.804862205000063 ], [ -82.003042243999971, 28.804989509000052 ], [ -82.003156045999958, 28.805135137000036 ], [ -82.003261167999938, 28.805266298000049 ], [ -82.003378786999974, 28.805383920000054 ], [ -82.003583284999934, 28.805522835000033 ], [ -82.003726277999988, 28.805606414000067 ], [ -82.003898651999975, 28.805720542000074 ], [ -82.004012863999947, 28.805830619000062 ], [ -82.004106002999947, 28.805942359000028 ], [ -82.004305637999948, 28.806214326000031 ], [ -82.00445319499994, 28.806358025000065 ], [ -82.004599634999977, 28.806474438000066 ], [ -82.004740592999951, 28.806558625000036 ], [ -82.00489586499998, 28.806632886000045 ], [ -82.005227626999954, 28.806745723000063 ], [ -82.005534312999941, 28.806880743000079 ], [ -82.005842928999982, 28.807053374000077 ], [ -82.006087891999982, 28.807225042000027 ], [ -82.006781312999976, 28.807857703000025 ], [ -82.007696549999935, 28.808725684000024 ], [ -82.008447835999959, 28.809444179000025 ], [ -82.00886350199994, 28.809860810000032 ], [ -82.009179832999962, 28.810159781000038 ], [ -82.009417080999981, 28.810388350000039 ], [ -82.009592605999956, 28.810579305000033 ], [ -82.009697727999935, 28.810724933000074 ], [ -82.009840462999989, 28.810882134000053 ], [ -82.010118216999956, 28.811151208000069 ], [ -82.010563779999984, 28.811570732000064 ], [ -82.011035382999978, 28.812012438000068 ], [ -82.01121283699996, 28.812141671000063 ], [ -82.011468408999974, 28.812304658000073 ], [ -82.011615965999965, 28.812425211000061 ], [ -82.013043311999979, 28.813780226000063 ], [ -82.013446082999963, 28.814155279000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013528037999947, 28.814081260000023 ], [ -82.01329502699997, 28.813857380000059 ], [ -82.012528309999936, 28.813136956000051 ], [ -82.011644898999975, 28.812303694000036 ], [ -82.011395112999935, 28.812122382000041 ], [ -82.011208014999966, 28.812008581000043 ], [ -82.011069137999982, 28.811896707000074 ], [ -82.010435511999958, 28.811294907000047 ], [ -82.009943655999962, 28.81083198400006 ], [ -82.009744984999941, 28.810606309000036 ], [ -82.009596463999969, 28.810411496000029 ], [ -82.00930038599995, 28.810117347000073 ], [ -82.008984054999985, 28.809820304000027 ], [ -82.008317638999984, 28.809226220000028 ], [ -82.007658937999963, 28.808601274000068 ], [ -82.007187334999969, 28.808159568000065 ], [ -82.006538277999937, 28.807533657000079 ], [ -82.006220982999935, 28.807209611000076 ], [ -82.005859323999971, 28.806936679000046 ], [ -82.005549410999947, 28.806743699000037 ], [ -82.005336606999947, 28.806601060000048 ], [ -82.004972054999939, 28.80631173300003 ], [ -82.004628890999982, 28.806081952000056 ], [ -82.004475376999949, 28.805927893000046 ], [ -82.004365418999953, 28.805794043000049 ], [ -82.004184887999941, 28.805497536000075 ], [ -82.004078034999964, 28.805346345000032 ], [ -82.003956113999948, 28.805232305000061 ], [ -82.003790635999962, 28.805095595000068 ], [ -82.003527849999955, 28.804962543000045 ], [ -82.003356645999986, 28.804874742000038 ], [ -82.003160572999946, 28.804739332000054 ], [ -82.003004631999943, 28.804589273000033 ], [ -82.002882742999986, 28.80443972300003 ], [ -82.002669011999956, 28.804215077000038 ], [ -82.002409758999988, 28.804026714000031 ], [ -82.002127005999967, 28.803855347000024 ], [ -82.001870374999953, 28.803745012000036 ], [ -82.001616826999964, 28.803647996000052 ], [ -82.001312068999937, 28.80357470000007 ], [ -82.000949445999936, 28.803485973000079 ], [ -82.000604181999961, 28.803391460000057 ], [ -82.00055797999994, 28.803377520000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017507523999939, 28.824141667000049 ], [ -82.01746534199998, 28.824110490000066 ], [ -82.017420467999955, 28.82408375600005 ], [ -82.017372092999949, 28.824068798000042 ], [ -82.017314805999945, 28.824066888000061 ], [ -82.017236629999957, 28.824075896000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017112616999952, 28.824146957000039 ], [ -82.017090933999953, 28.82416936900006 ], [ -82.017069808999963, 28.824201480000056 ], [ -82.01705227399998, 28.824241829000073 ], [ -82.017043651999984, 28.824291896000034 ], [ -82.01704097399994, 28.824347030000069 ], [ -82.017050861999962, 28.824398793000057 ], [ -82.017067146999977, 28.82443601600005 ], [ -82.017076774999964, 28.824453605000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01713635699997, 28.824544194000055 ], [ -82.017187537999973, 28.82457560000006 ], [ -82.017237555999941, 28.824591885000075 ], [ -82.017282339999952, 28.824597120000078 ], [ -82.017343407999988, 28.824595956000053 ], [ -82.017400404999989, 28.824580253000079 ], [ -82.017456435999975, 28.82455396000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01713635699997, 28.824544194000055 ], [ -82.017154000999938, 28.824586329000056 ], [ -82.017166600999985, 28.824626200000068 ], [ -82.017174161999947, 28.824675054000068 ], [ -82.017168926999943, 28.824723327000072 ], [ -82.017079888999945, 28.825207914000032 ], [ -82.017087060999984, 28.82567171200003 ], [ -82.017151609999985, 28.826070961000028 ], [ -82.017330913999956, 28.826663857000028 ], [ -82.017553249999935, 28.827366726000037 ], [ -82.017718208999952, 28.827904636000028 ], [ -82.017859260999955, 28.828248899000073 ], [ -82.017981186999975, 28.828447328000038 ], [ -82.018220257999985, 28.828748558000029 ], [ -82.018531050999968, 28.829042615000048 ], [ -82.018825107999987, 28.829243435000024 ], [ -82.019085695999934, 28.829394050000076 ], [ -82.019133509999961, 28.829453817000058 ], [ -82.019166775999963, 28.82954165600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995218732999945, 28.801670906000027 ], [ -81.995293103999984, 28.80166321300004 ], [ -81.995392439999989, 28.801697933000071 ], [ -81.995637860999977, 28.801793357000065 ], [ -81.995824500999959, 28.801839703000041 ], [ -81.995970128999943, 28.801861885000051 ], [ -81.996152775999974, 28.801870877000056 ], [ -81.996325036999963, 28.80188503100004 ], [ -81.996500561999937, 28.801912035000043 ], [ -81.996647153999959, 28.80193711000004 ], [ -81.996990488999984, 28.802029694000055 ], [ -81.997366613999986, 28.802178215000026 ], [ -81.998260633999962, 28.802663320000079 ], [ -81.998682086999963, 28.802864885000076 ], [ -81.999140187999956, 28.803062591000071 ], [ -81.999372613999981, 28.803151318000062 ], [ -82.000086286999988, 28.803344203000051 ], [ -82.000409584999943, 28.803446999000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000409584999943, 28.803446999000073 ], [ -82.000483628999973, 28.803470542000071 ], [ -82.000530882999954, 28.803483076000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000433469999962, 28.803339953000034 ], [ -81.999935726999979, 28.803189777000057 ], [ -81.999591537999947, 28.803104062000045 ], [ -81.999343680999971, 28.803020157000049 ], [ -81.998857611999938, 28.802814735000027 ], [ -81.998304997999981, 28.802546625000048 ], [ -81.997577821999982, 28.80215892700005 ], [ -81.997318392999944, 28.802029694000055 ], [ -81.997001096999952, 28.801911070000074 ], [ -81.996572893999939, 28.801805948000037 ], [ -81.996239202999959, 28.801759656000058 ], [ -81.995925765999971, 28.801738438000029 ], [ -81.995684659999938, 28.80168539500005 ], [ -81.995512027999951, 28.80161017000006 ], [ -81.995436802999961, 28.801546518000066 ], [ -81.995385010999939, 28.801488053000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00055797999994, 28.803377520000026 ], [ -82.000433469999962, 28.803339953000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000433469999962, 28.803339953000034 ], [ -82.000409584999943, 28.803446999000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000530882999954, 28.803483076000077 ], [ -82.00055797999994, 28.803377520000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000409584999943, 28.803446999000073 ], [ -82.000368206999951, 28.803585173000045 ], [ -82.000277770999958, 28.803830463000054 ], [ -82.000219545999983, 28.803989035000029 ], [ -82.000214589999985, 28.804029916000047 ], [ -82.000218306999955, 28.804079470000033 ], [ -82.000226979, 28.804133979000028 ], [ -82.000246799999957, 28.804186010000024 ], [ -82.000269896999953, 28.804220801000042 ], [ -82.000290027999938, 28.804238113000054 ], [ -82.000313781999978, 28.804250997000054 ], [ -82.000327068, 28.804258244000039 ], [ -82.000339145999988, 28.804263478000053 ], [ -82.000352028999941, 28.80427112700005 ], [ -82.000364912999942, 28.804277569000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000364912999942, 28.804277569000078 ], [ -82.000353639999958, 28.804250997000054 ], [ -82.000345587999959, 28.804227243000071 ], [ -82.000332944999968, 28.804196551000075 ], [ -82.000330438999981, 28.804164976000038 ], [ -82.000330939999969, 28.804124380000076 ], [ -82.000338170999953, 28.804089717000068 ], [ -82.000349985999947, 28.804043187000048 ], [ -82.000423158999979, 28.803805122000028 ], [ -82.000504478999972, 28.803559157000052 ], [ -82.000530882999954, 28.803483076000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000364912999942, 28.804277569000078 ], [ -82.000416134999966, 28.804314360000035 ], [ -82.000505919999966, 28.804350274000058 ], [ -82.000599694999948, 28.804388183000071 ], [ -82.000667532999955, 28.804410130000065 ], [ -82.000745345999974, 28.804434073000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000745345999974, 28.804434073000039 ], [ -82.000816357999952, 28.804456949000041 ], [ -82.000893713999972, 28.804487137000024 ], [ -82.000974843999984, 28.804522042000031 ], [ -82.001059746999942, 28.804571097000064 ], [ -82.001265400999955, 28.804701281000064 ], [ -82.001483317999941, 28.804833353000049 ], [ -82.001679538999952, 28.804951274000075 ], [ -82.001851230999989, 28.805055044000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001851230999989, 28.805055044000028 ], [ -82.002026697999952, 28.805155041000035 ], [ -82.002157825999973, 28.805226737000055 ], [ -82.002253105999955, 28.805283339000027 ], [ -82.002358762999961, 28.805329564000033 ], [ -82.002485173999958, 28.805378619000066 ], [ -82.002553095999986, 28.805400316000032 ], [ -82.002604037999959, 28.805405976000031 ], [ -82.002721015999953, 28.805407863000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000745345999974, 28.804434073000039 ], [ -82.00084736499997, 28.804277580000075 ], [ -82.000894290999952, 28.804198009000061 ], [ -82.000922854999942, 28.80414088200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000922854999942, 28.80414088200007 ], [ -82.001028949999977, 28.803820557000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000922854999942, 28.80414088200007 ], [ -82.001079536999953, 28.804164376000074 ], [ -82.00130606099998, 28.804221007000024 ], [ -82.001427001999957, 28.804263241000058 ], [ -82.001570019999974, 28.804338109000071 ], [ -82.001657365999961, 28.804401459000076 ], [ -82.001739912999938, 28.804468648000068 ], [ -82.001807101999987, 28.804533918000061 ], [ -82.001860853999972, 28.804608786000074 ], [ -82.001900207999938, 28.804669256000068 ], [ -82.001940520999938, 28.804719169000066 ], [ -82.001982754999972, 28.804760442000031 ], [ -82.002048023999976, 28.804802675000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001884196999981, 28.805006854000055 ], [ -82.002048023999976, 28.804802675000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002048023999976, 28.804802675000076 ], [ -82.002264296999954, 28.804544399000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003174003999959, 28.80591656100006 ], [ -82.003105585999947, 28.805869682000036 ], [ -82.00303463399996, 28.80581520100003 ], [ -82.002967482999964, 28.805760720000023 ], [ -82.002896530999976, 28.805699904000051 ], [ -82.00282937999998, 28.805636554000046 ], [ -82.002785034999988, 28.805584607000071 ], [ -82.00275209299997, 28.805533927000056 ], [ -82.002734354999973, 28.805483247000041 ], [ -82.002721015999953, 28.805407863000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002721015999953, 28.805407863000028 ], [ -82.002711548999969, 28.80532740600006 ], [ -82.002714082999944, 28.80528686200006 ], [ -82.002725485999974, 28.805247585000075 ], [ -82.002748291999978, 28.805209575000049 ], [ -82.002848384999936, 28.805079073000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017236629999957, 28.824075896000068 ], [ -82.017112616999952, 28.824146957000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017076774999964, 28.824453605000031 ], [ -82.017097389999947, 28.824491268000031 ], [ -82.01713635699997, 28.824544194000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017112616999952, 28.824146957000039 ], [ -82.017006220999974, 28.82419197300004 ], [ -82.01696502599998, 28.824200846000053 ], [ -82.016922563999969, 28.824206127000025 ], [ -82.016861201999973, 28.824209875000065 ], [ -82.016812904999938, 28.824206544000049 ], [ -82.01676460799996, 28.824194886000043 ], [ -82.016717976999985, 28.824178232000065 ], [ -82.01666967999995, 28.824159913000074 ], [ -82.016624713999988, 28.824136597000063 ], [ -82.016588075999948, 28.824118278000071 ], [ -82.01653478299994, 28.824088301000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01653478299994, 28.824088301000074 ], [ -82.016498143999968, 28.824059989000034 ], [ -82.01644485099996, 28.824020019000045 ], [ -82.016411542999947, 28.824003365000067 ], [ -82.016368241999942, 28.824000034000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016368241999942, 28.824000034000051 ], [ -82.016366470999969, 28.824012596000046 ], [ -82.016368684999975, 28.824029427000028 ], [ -82.016374442999961, 28.824042715000076 ], [ -82.016380200999947, 28.824057331000063 ], [ -82.016388616999961, 28.824071948000039 ], [ -82.016409434999957, 28.824088779000078 ], [ -82.016488274999972, 28.824143259000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016488274999972, 28.824143259000039 ], [ -82.016554802999963, 28.824179402000027 ], [ -82.016639994999935, 28.824218078000058 ], [ -82.016695918999972, 28.824241075000032 ], [ -82.016739298999937, 28.824254664000023 ], [ -82.016787906, 28.824268775000064 ], [ -82.016840693999939, 28.824286546000053 ], [ -82.016857023999989, 28.824293387000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01653478299994, 28.824088301000074 ], [ -82.016488274999972, 28.824143259000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016368241999942, 28.824000034000051 ], [ -82.016314862999934, 28.823951049000073 ], [ -82.01624802799995, 28.823871316000066 ], [ -82.016199952999955, 28.823802135000051 ], [ -82.016160085999957, 28.823722401000055 ], [ -82.016130772999986, 28.82364618500003 ], [ -82.016109666999967, 28.823572315000035 ], [ -82.016103803999954, 28.823503134000077 ], [ -82.016097940999941, 28.823404640000035 ], [ -82.016096768999944, 28.823331941000049 ], [ -82.016102630999967, 28.823241655000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016102630999967, 28.823241655000061 ], [ -82.016116701999977, 28.82264951600007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016116701999977, 28.82264951600007 ], [ -82.016115529, 28.822579162000068 ], [ -82.016107321999982, 28.822478323000041 ], [ -82.01610145899997, 28.822406797000042 ], [ -82.016092077999986, 28.82233644400003 ], [ -82.016076834999978, 28.822263746000033 ], [ -82.016060418999984, 28.822176977000026 ], [ -82.016023828999948, 28.82205467700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016023828999948, 28.82205467700004 ], [ -82.015986306999935, 28.821967908000033 ], [ -82.015953716999945, 28.821901427000057 ], [ -82.015897434999943, 28.821798242000057 ], [ -82.015835047999985, 28.821685323000054 ], [ -82.015776419999952, 28.821598554000047 ], [ -82.015747105999935, 28.821549307000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015747105999935, 28.821549307000055 ], [ -82.015670732, 28.821463996000034 ], [ -82.015581617999942, 28.821370192000074 ], [ -82.015496021, 28.821292803000063 ], [ -82.015040694999982, 28.820937554000068 ], [ -82.014953399999968, 28.820842984000024 ], [ -82.014882732999979, 28.820744258000047 ], [ -82.014762727999937, 28.820536080000068 ], [ -82.014647299999979, 28.820241785000064 ], [ -82.014574110999945, 28.819975993000071 ], [ -82.014545219999945, 28.819685162000042 ], [ -82.014547145999984, 28.819465595000054 ], [ -82.014533663999941, 28.819288400000062 ], [ -82.014491290999956, 28.819167060000041 ], [ -82.014420027999961, 28.819051498000078 ], [ -82.01426276899997, 28.818885995000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015747105999935, 28.821549307000055 ], [ -82.015806173999977, 28.821517073000052 ], [ -82.015881261999937, 28.821479992000036 ], [ -82.015939663999973, 28.821455890000038 ], [ -82.016003627999964, 28.821430860000078 ], [ -82.016582084999982, 28.821243603000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016582084999982, 28.821243603000028 ], [ -82.017845431999945, 28.820817301000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017845431999945, 28.820817301000034 ], [ -82.017881584999941, 28.820803395000041 ], [ -82.017929789999982, 28.820787636000034 ], [ -82.017972432999954, 28.82077836600007 ], [ -82.018022491999943, 28.820774658000062 ], [ -82.01808923699997, 28.820770950000053 ], [ -82.01854872399997, 28.820798656000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01854872399997, 28.820798656000079 ], [ -82.018581212999948, 28.820807596000066 ], [ -82.018626361999964, 28.820828062000032 ], [ -82.01863862, 28.820849077000048 ], [ -82.018647376, 28.820887603000074 ], [ -82.018645624999976, 28.820934885000042 ], [ -82.01863862, 28.82101368900004 ], [ -82.018619356999977, 28.82111175600005 ], [ -82.018579079999938, 28.821237842000073 ], [ -82.018530045999967, 28.821367430000066 ], [ -82.018477509999968, 28.821467248000033 ], [ -82.018435481999973, 28.821540798000058 ], [ -82.018346956999949, 28.821666039000036 ], [ -82.018254020999962, 28.821806244000072 ], [ -82.018161085999964, 28.821952056000043 ], [ -82.018078564999939, 28.822077039000078 ], [ -82.018017451999981, 28.822188366000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018017451999981, 28.822188366000034 ], [ -82.017955257999972, 28.822283294000044 ], [ -82.017887607999967, 28.822391315000061 ], [ -82.017824322999957, 28.822473149000075 ], [ -82.017751217999944, 28.82256153000003 ], [ -82.017679204, 28.822637909000036 ], [ -82.017583184999978, 28.822720834000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017583184999978, 28.822720834000052 ], [ -82.017540630999974, 28.822763388000055 ], [ -82.017492620999974, 28.822803760000056 ], [ -82.017447884999967, 28.822843040000066 ], [ -82.01739441999996, 28.822881230000064 ], [ -82.017349683999953, 28.822913963000076 ], [ -82.017291854999939, 28.822949970000025 ], [ -82.017234244999941, 28.822977885000057 ], [ -82.017171535999978, 28.82300022000004 ], [ -82.017093362999958, 28.82302770900003 ], [ -82.016994573999966, 28.823053480000056 ], [ -82.016917260999946, 28.82307753300006 ], [ -82.016838228999973, 28.823103304000028 ], [ -82.016744593999988, 28.823132512000029 ], [ -82.016581376999966, 28.823189208000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016581376999966, 28.823189208000031 ], [ -82.016532411999947, 28.823204671000042 ], [ -82.016466266999942, 28.823222710000039 ], [ -82.016407851999986, 28.823235596000075 ], [ -82.016357168999946, 28.823245045000078 ], [ -82.016307344999973, 28.823245045000078 ], [ -82.016211991999967, 28.823245045000078 ], [ -82.016102630999967, 28.823241655000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016731063999941, 28.82357292100005 ], [ -82.016581376999966, 28.823189208000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016116701999977, 28.82264951600007 ], [ -82.01618, 28.822639 ], [ -82.01624874099997, 28.822625907000031 ], [ -82.016326209999988, 28.82260954000003 ], [ -82.016949241999953, 28.822409864000065 ], [ -82.01701798299996, 28.822391315000061 ], [ -82.017079085999967, 28.822391315000061 ], [ -82.017130367999982, 28.822398953000061 ], [ -82.017180559999986, 28.82241422900006 ], [ -82.017212202999985, 28.822429505000059 ], [ -82.017246027999988, 28.822449145000064 ], [ -82.017286347999971, 28.822481518000075 ], [ -82.017583184999978, 28.822720834000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016023828999948, 28.82205467700004 ], [ -82.01610481299997, 28.822029431000033 ], [ -82.017515119999985, 28.821579498000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017515119999985, 28.821579498000062 ], [ -82.017561011999987, 28.821563312000023 ], [ -82.017604310999957, 28.821543172000077 ], [ -82.017643582999938, 28.821516991000067 ], [ -82.017670770999985, 28.821491817000037 ], [ -82.017701985999963, 28.82146160800005 ], [ -82.017737229999966, 28.821414281000045 ], [ -82.017758375999961, 28.82138205800004 ], [ -82.017786570999988, 28.821342787000049 ], [ -82.017813758999978, 28.821299488000079 ], [ -82.017827856999986, 28.821262230000059 ], [ -82.017849002999981, 28.821215910000035 ], [ -82.017863099999943, 28.821173617000056 ], [ -82.017882232999966, 28.821128304000069 ], [ -82.01789129499997, 28.821056810000073 ], [ -82.017892611999969, 28.821002199000077 ], [ -82.017885252999974, 28.820938995000063 ], [ -82.017874176999953, 28.820886633000043 ], [ -82.017845431999945, 28.820817301000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018017451999981, 28.822188366000034 ], [ -82.017975222999951, 28.82217296500005 ], [ -82.017921840999975, 28.822146274000033 ], [ -82.017880423999941, 28.822118663000026 ], [ -82.017845449999982, 28.822081848000039 ], [ -82.01779298799994, 28.822019262000026 ], [ -82.017714755999975, 28.821921702000054 ], [ -82.017637443999945, 28.821833345000073 ], [ -82.017608911999957, 28.821796530000029 ], [ -82.017588663999959, 28.82175695400008 ], [ -82.017564733999961, 28.821710935000056 ], [ -82.017528998999978, 28.821629482000048 ], [ -82.017515119999985, 28.821579498000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01854872399997, 28.820798656000079 ], [ -82.018573719999949, 28.820512492000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016582084999982, 28.821243603000028 ], [ -82.016319564999947, 28.820647585000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016319564999947, 28.820647585000074 ], [ -82.016051713999957, 28.820085738000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016051713999957, 28.820085738000046 ], [ -82.015784408999934, 28.819515271000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015784408999934, 28.819515271000057 ], [ -82.015740401999949, 28.819423996000069 ], [ -82.015683354999965, 28.819308273000047 ], [ -82.015649126999961, 28.819239816000049 ], [ -82.015616159, 28.819140022000056 ], [ -82.015593709999962, 28.819063787000061 ], [ -82.015574150999953, 28.818974142000059 ], [ -82.015551332999962, 28.818866568000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015551332999962, 28.818866568000033 ], [ -82.015530143999968, 28.818814411000062 ], [ -82.015420939999956, 28.818613932000062 ], [ -82.015270988999987, 28.818353147000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016319564999947, 28.820647585000074 ], [ -82.016383645999952, 28.820620811000026 ], [ -82.016576375999989, 28.820553885000038 ], [ -82.016753259999973, 28.820488101000024 ], [ -82.016928682999946, 28.820425241000066 ], [ -82.017109952999988, 28.820357996000041 ], [ -82.017263447999937, 28.820287827000072 ], [ -82.017411094999943, 28.820207425000035 ], [ -82.01756605199995, 28.820121176000043 ], [ -82.017726855999967, 28.820017384000039 ], [ -82.01789935499994, 28.819904821000023 ], [ -82.018089395999937, 28.819782025000052 ], [ -82.018177106999985, 28.81973086000005 ], [ -82.018213653999965, 28.819704547000072 ], [ -82.018234119999988, 28.819682619000048 ], [ -82.018244352999943, 28.819647535000058 ], [ -82.018242890999943, 28.819618297000034 ], [ -82.018235581999988, 28.819590522000055 ], [ -82.018219500999976, 28.819564209000077 ], [ -82.018185878999986, 28.81952327700003 ], [ -82.017757059999951, 28.819139551000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017757059999951, 28.819139551000035 ], [ -82.017270261999954, 28.818674681000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017270261999954, 28.818674681000061 ], [ -82.01688287099995, 28.818303370000024 ], [ -82.016859480999983, 28.818290213000068 ], [ -82.016824395999947, 28.818279980000057 ], [ -82.016793696999969, 28.818278518000056 ], [ -82.016760074999979, 28.818282904000057 ], [ -82.016730837999944, 28.818294599000069 ], [ -82.016704523999977, 28.818310679000035 ], [ -82.016675286999941, 28.818334069000059 ], [ -82.016596346999961, 28.818398390000027 ], [ -82.016537872999947, 28.818445170000075 ], [ -82.016469165999979, 28.818480254000065 ], [ -82.016385839999941, 28.818524110000055 ], [ -82.016290818999948, 28.818570889000057 ], [ -82.016187026999944, 28.81862790100007 ], [ -82.016056921999962, 28.818693685000028 ], [ -82.015982367999982, 28.818734617000075 ], [ -82.015899041999944, 28.818775549000065 ], [ -82.015840567999987, 28.818806248000044 ], [ -82.015782093999974, 28.818831099000079 ], [ -82.015725080999971, 28.818844256000034 ], [ -82.015663682999957, 28.818855951000046 ], [ -82.015551332999962, 28.818866568000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016051713999957, 28.820085738000046 ], [ -82.016124935999983, 28.820050576000028 ], [ -82.016311377999955, 28.819992139000078 ], [ -82.016496427999982, 28.819925354000077 ], [ -82.016657824999982, 28.819857178000063 ], [ -82.01682339599995, 28.819784827000035 ], [ -82.016975053999943, 28.819708303000027 ], [ -82.017082187999961, 28.819649866000077 ], [ -82.017178190999971, 28.819594212000027 ], [ -82.017271411999957, 28.819531601000051 ], [ -82.017370197999981, 28.819457859000067 ], [ -82.017482897999969, 28.819364638000025 ], [ -82.017588640999975, 28.819282548000047 ], [ -82.017677687999935, 28.819208807000052 ], [ -82.017757059999951, 28.819139551000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015784408999934, 28.819515271000057 ], [ -82.015906493999978, 28.819457859000067 ], [ -82.016038671999979, 28.819414727000037 ], [ -82.016216765999957, 28.819353507000073 ], [ -82.016386510999951, 28.819283940000048 ], [ -82.016539559999956, 28.819211589000076 ], [ -82.016677303999984, 28.819139239000037 ], [ -82.016777480999963, 28.81907523700005 ], [ -82.016888789999939, 28.81899732100004 ], [ -82.017004271999951, 28.818909665000035 ], [ -82.01714201599998, 28.81879974800006 ], [ -82.017270261999954, 28.818674681000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01426276899997, 28.818885995000073 ], [ -82.01416276499998, 28.818817676000037 ], [ -82.014075858999945, 28.818744624000033 ], [ -82.01400532599996, 28.818672832000061 ], [ -82.013937312999985, 28.818589704000033 ], [ -82.013886931999934, 28.818520431000024 ], [ -82.013837810999973, 28.818447379000077 ], [ -82.013784911999949, 28.81832646600003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013784911999949, 28.81832646600003 ], [ -82.01370430299994, 28.81815139400004 ], [ -82.013635029999989, 28.818006550000064 ], [ -82.013574572999971, 28.817881858000078 ], [ -82.013546863999977, 28.817808806000073 ], [ -82.013534269, 28.817757166000035 ], [ -82.013524192999967, 28.817721900000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013524192999967, 28.817721900000038 ], [ -82.013502780999943, 28.817662703000053 ], [ -82.013483887999939, 28.817589651000048 ], [ -82.013463735999949, 28.817506524000066 ], [ -82.013446102999978, 28.817414579000058 ], [ -82.013436026999955, 28.81733397000005 ], [ -82.013419652999971, 28.817262178000078 ], [ -82.013398241999937, 28.81719038600005 ], [ -82.013375569999937, 28.817137487000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013375569999937, 28.817137487000025 ], [ -82.013326353999958, 28.817020724000031 ], [ -82.013293632999989, 28.816956398000059 ], [ -82.013210694999941, 28.816834294000046 ], [ -82.013116236999963, 28.816707583000039 ], [ -82.013028690999988, 28.816585479000025 ], [ -82.012925017999976, 28.816447249000078 ], [ -82.012828256999967, 28.816304410000043 ], [ -82.012708456999974, 28.816150053000058 ], [ -82.012641645999963, 28.81605329100006 ], [ -82.012597872999947, 28.815974961000052 ], [ -82.012551795999968, 28.815885111000057 ], [ -82.012510326999973, 28.815792957000042 ], [ -82.012478072999954, 28.815686980000066 ], [ -82.012445818999936, 28.815583307000054 ], [ -82.01240665399996, 28.815507280000077 ], [ -82.01233753799994, 28.815410519000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01233753799994, 28.815410519000068 ], [ -82.012199307999936, 28.81526537700006 ], [ -82.012088722999977, 28.81515018500005 ], [ -82.011991961999968, 28.815055727000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011991961999968, 28.815055727000072 ], [ -82.011955742999987, 28.815012823000075 ], [ -82.011919809999938, 28.814953348000074 ], [ -82.011880159999976, 28.814880243000061 ], [ -82.011847943999953, 28.814805899000078 ], [ -82.011823162999974, 28.814745185000049 ], [ -82.011785990999954, 28.814662168000041 ], [ -82.011756253999977, 28.814565521000077 ], [ -82.011738906999938, 28.814496133000034 ], [ -82.011721559999955, 28.814418072000024 ], [ -82.011715364999986, 28.814341250000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011715364999986, 28.814341250000041 ], [ -82.011706690999972, 28.814273101000026 ], [ -82.01169306099996, 28.814197518000071 ], [ -82.011694299999988, 28.814136804000043 ], [ -82.011699256999975, 28.814046352000048 ], [ -82.011699256999975, 28.813963335000039 ], [ -82.011672700999952, 28.813691834000053 ], [ -82.011616552999953, 28.813478474000078 ], [ -82.011515487999986, 28.813247147000027 ], [ -82.011398700999962, 28.813056245000041 ], [ -82.011228012999936, 28.812865344000045 ], [ -82.011084275999963, 28.81274406600005 ], [ -82.010594022999953, 28.81238257800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015270988999987, 28.818353147000039 ], [ -82.01497737699998, 28.818477297000072 ], [ -82.014780172999963, 28.818565208000052 ], [ -82.014563960999965, 28.818659058000037 ], [ -82.014468921999935, 28.818701825000062 ], [ -82.014430906999962, 28.818720833000043 ], [ -82.014397643999985, 28.818746968000028 ], [ -82.014363191999962, 28.818780232000051 ], [ -82.014310920999947, 28.818836067000063 ], [ -82.01426276899997, 28.818885995000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015822778999961, 28.817320598000038 ], [ -82.015883640999959, 28.817351409000025 ], [ -82.015946784999983, 28.81739058900007 ], [ -82.016027605999966, 28.817446852000046 ], [ -82.016137897999954, 28.817548789000057 ], [ -82.016178003999983, 28.817587224000079 ], [ -82.016211425999984, 28.81762231700003 ], [ -82.016233149999948, 28.817657410000038 ], [ -82.016246518999935, 28.817704200000037 ], [ -82.016251531999956, 28.817744306000066 ], [ -82.016246518999935, 28.817796110000074 ], [ -82.016233149999948, 28.817854598000054 ], [ -82.016213096999934, 28.817894705000072 ], [ -82.016174661999969, 28.817939824000064 ], [ -82.016136226999947, 28.817966561000048 ], [ -82.015270988999987, 28.818353147000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013524192999967, 28.817721900000038 ], [ -82.013656736999963, 28.817686560000027 ], [ -82.01375894499995, 28.817658485000038 ], [ -82.01384416999997, 28.817631748000053 ], [ -82.013959474999979, 28.817583286000058 ], [ -82.015030643999978, 28.817068591000066 ], [ -82.015090802999964, 28.817040182000028 ], [ -82.015139264999959, 28.81702012900007 ], [ -82.015182712999945, 28.817006760000027 ], [ -82.015222818999973, 28.816998405000049 ], [ -82.015261254999984, 28.816998405000049 ], [ -82.015306373999977, 28.81700341800007 ], [ -82.015351492999969, 28.81701010200004 ], [ -82.015391599999987, 28.817021800000077 ], [ -82.015435047999972, 28.817046866000055 ], [ -82.015496877999965, 28.817088644000023 ], [ -82.015583774999982, 28.81715381600003 ], [ -82.015710777999971, 28.817242384000053 ], [ -82.015822778999961, 28.817320598000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013784911999949, 28.81832646600003 ], [ -82.013926529999935, 28.818266290000054 ], [ -82.014123448999953, 28.818187523000063 ], [ -82.015558589999955, 28.817527452000036 ], [ -82.015649959999962, 28.817486493000047 ], [ -82.015723116999936, 28.817439279000041 ], [ -82.015771806999965, 28.817394393000029 ], [ -82.015822778999961, 28.817320598000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011715364999986, 28.814341250000041 ], [ -82.011804266999945, 28.814332931000024 ], [ -82.012558063999961, 28.814372605000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01116948799995, 28.815119417000062 ], [ -82.011462102999985, 28.815152081000065 ], [ -82.011561455999981, 28.815165010000044 ], [ -82.011634949999973, 28.815171135000071 ], [ -82.011700957999949, 28.815175218000036 ], [ -82.011748592999936, 28.815170454000054 ], [ -82.011803179999959, 28.815160364000064 ], [ -82.011854070999959, 28.815140512000028 ], [ -82.011892610999951, 28.815118463000033 ], [ -82.01193576299994, 28.815091571000039 ], [ -82.011991961999968, 28.815055727000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011991961999968, 28.815055727000072 ], [ -82.012071601999935, 28.815004975000079 ], [ -82.012187271999949, 28.814951731000065 ], [ -82.012302023999951, 28.814911338000059 ], [ -82.012403004999953, 28.81488104400006 ], [ -82.012477363999949, 28.814867273000061 ], [ -82.012578345999941, 28.814843405000033 ], [ -82.012660966999988, 28.814829635000024 ], [ -82.012708703999976, 28.814811274000078 ], [ -82.012751850999962, 28.814780980000023 ], [ -82.012963911999975, 28.814609311000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012963911999975, 28.814609311000027 ], [ -82.013064569999983, 28.814572690000034 ], [ -82.013150752999934, 28.814506786000038 ], [ -82.013249608999956, 28.814425673000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013249608999956, 28.814425673000073 ], [ -82.013502852999977, 28.814208142000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013502852999977, 28.814208142000041 ], [ -82.013587134999966, 28.814138042000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013528037999947, 28.814081260000023 ], [ -82.013446082999963, 28.814155279000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013446082999963, 28.814155279000033 ], [ -82.013197139999988, 28.814369644000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013197139999988, 28.814369644000067 ], [ -82.013004268999964, 28.814529838000055 ], [ -82.012963911999975, 28.814609311000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017507523999939, 28.824141667000049 ], [ -82.017501839999966, 28.824041688000079 ], [ -82.017538488999946, 28.823902811000039 ], [ -82.017627214999948, 28.823741753000036 ], [ -82.017754518999936, 28.823576836000029 ], [ -82.018070849999958, 28.823253755000053 ], [ -82.018247339999959, 28.823037724000073 ], [ -82.018458547999955, 28.822746468000048 ], [ -82.018955225999946, 28.822050154000067 ], [ -82.019075778999934, 28.821876558000042 ], [ -82.019267698999954, 28.821491753000032 ], [ -82.019359318999989, 28.821182174000057 ], [ -82.019398860999956, 28.820905384000071 ], [ -82.019409468999982, 28.820597733000056 ], [ -82.019357390999971, 28.820237039000062 ], [ -82.019267698999954, 28.819929388000048 ], [ -82.019091209999942, 28.819562907000034 ], [ -82.018884822999951, 28.819281296000042 ], [ -82.018648539999958, 28.81903826100006 ], [ -82.018204904999948, 28.818618737000065 ], [ -82.017227943999956, 28.817687104000072 ], [ -82.01669076099995, 28.817185604000031 ], [ -82.016539345999945, 28.81701490100005 ], [ -82.016358998999976, 28.816771867000057 ], [ -82.016173929, 28.816559406000067 ], [ -82.015955869999971, 28.816378382000039 ], [ -82.015721721999967, 28.816222839000034 ], [ -82.015526701999988, 28.816112201000067 ], [ -82.015342496999949, 28.81596946600007 ], [ -82.015157327999987, 28.815788155000064 ], [ -82.01502327299994, 28.815614559000039 ], [ -82.014797597999973, 28.815268331000027 ], [ -82.014632681999956, 28.815086055000052 ], [ -82.014230516999987, 28.814705108000055 ], [ -82.013910328999941, 28.814448571000071 ], [ -82.013587134999966, 28.814138042000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013587134999966, 28.814138042000025 ], [ -82.013528037999947, 28.814081260000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013502852999977, 28.814208142000041 ], [ -82.013940225999988, 28.814615416000038 ], [ -82.014171686999987, 28.814803479000034 ], [ -82.01453238199997, 28.815142956000045 ], [ -82.014682831999949, 28.815303050000068 ], [ -82.014797597999973, 28.815470860000062 ], [ -82.014935509999987, 28.815687855000078 ], [ -82.015057027999944, 28.815845056000057 ], [ -82.015191082999934, 28.815979111000047 ], [ -82.015383966999934, 28.816161387000079 ], [ -82.015488125, 28.816297370000029 ], [ -82.015602890999958, 28.816470966000054 ], [ -82.015760091999937, 28.816636847000041 ], [ -82.015953940999964, 28.816797906000033 ], [ -82.016194082999959, 28.816946427000062 ], [ -82.016380215999959, 28.817057336000062 ], [ -82.01660878499996, 28.817252149000069 ], [ -82.017546203999984, 28.818142312000077 ], [ -82.018027450999966, 28.818604271000027 ], [ -82.018546310999966, 28.819096126000034 ], [ -82.018699653999988, 28.819245612000032 ], [ -82.018921626999941, 28.819513164000057 ], [ -82.019067098999983, 28.819769294000025 ], [ -82.019177042999956, 28.82002486600004 ], [ -82.01926287699996, 28.820361450000064 ], [ -82.019290844999944, 28.820645954000042 ], [ -82.019281200999956, 28.82092949500003 ], [ -82.019244552999965, 28.821154205000028 ], [ -82.019176078999976, 28.821403991000068 ], [ -82.019073849999984, 28.821644132000074 ], [ -82.018972585999961, 28.821818693000068 ], [ -82.018671685999948, 28.822252683000045 ], [ -82.01841129099995, 28.822610484000052 ], [ -82.018327386999943, 28.82273103700004 ], [ -82.018194296, 28.822894025000039 ], [ -82.018030343999953, 28.823068585000044 ], [ -82.017887609999946, 28.823201676000053 ], [ -82.017747767999936, 28.823321264000072 ], [ -82.017587673999969, 28.823483287000045 ], [ -82.017449761999956, 28.823675207000065 ], [ -82.017334030999962, 28.823889309000037 ], [ -82.017298346999951, 28.823979965000035 ], [ -82.017272795999986, 28.824032517000035 ], [ -82.017236629999957, 28.824075896000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013446082999963, 28.814155279000033 ], [ -82.013502852999977, 28.814208142000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013197139999988, 28.814369644000067 ], [ -82.013249608999956, 28.814425673000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013375569999937, 28.817137487000025 ], [ -82.013443842999948, 28.817117082000038 ], [ -82.013516956999979, 28.817094261000079 ], [ -82.013588382999956, 28.817072584000073 ], [ -82.013647428999946, 28.817053996000027 ], [ -82.013738184999966, 28.817021192000027 ], [ -82.01384315599995, 28.816966520000051 ], [ -82.013926257999969, 28.816927156000077 ], [ -82.014031228999954, 28.816872483000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014031228999954, 28.816872483000054 ], [ -82.014888492999944, 28.816465720000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014031228999954, 28.816872483000054 ], [ -82.014000169999974, 28.816795194000065 ], [ -82.013716449999947, 28.816356615000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013716449999947, 28.816356615000075 ], [ -82.013534448999962, 28.816135093000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013716449999947, 28.816356615000075 ], [ -82.013758272999951, 28.816326096000068 ], [ -82.014505439999937, 28.815973424000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014505439999937, 28.815973424000049 ], [ -82.014793808999968, 28.815832484000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015051019999987, 28.816699582000069 ], [ -82.014888492999944, 28.816465720000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014888492999944, 28.816465720000053 ], [ -82.014505439999937, 28.815973424000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01233753799994, 28.815410519000068 ], [ -82.01241192599997, 28.815387011000041 ], [ -82.012453597999979, 28.815363724000065 ], [ -82.012511202999974, 28.815341662000037 ], [ -82.012568807999969, 28.815325729000051 ], [ -82.012617833999968, 28.815314698000066 ], [ -82.012669310999968, 28.81530611900007 ], [ -82.012723239999957, 28.815285283000037 ], [ -82.012790649999943, 28.815255867000076 ], [ -82.012853157999984, 28.815222775000052 ], [ -82.012941403999946, 28.815187231000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012941403999946, 28.815187231000039 ], [ -82.013012491999973, 28.815146785000024 ], [ -82.013099512999986, 28.815100210000026 ], [ -82.013162019999982, 28.815073246000054 ], [ -82.013233107999952, 28.815043831000025 ], [ -82.013296840999942, 28.815008287000069 ], [ -82.013348317999942, 28.81496661500006 ], [ -82.013399794999941, 28.81492004100005 ], [ -82.01343901599995, 28.814884497000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01343901599995, 28.814884497000037 ], [ -82.013640021999947, 28.814667558000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013521586999957, 28.816117076000069 ], [ -82.013373926999975, 28.815865386000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013373926999975, 28.815865386000041 ], [ -82.012997783999936, 28.815255867000076 ], [ -82.012941403999946, 28.815187231000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013373926999975, 28.815865386000041 ], [ -82.014013960999989, 28.815567928000064 ], [ -82.014036017999956, 28.815548913000043 ], [ -82.014067201999978, 28.815520010000057 ], [ -82.014102949999938, 28.815489586000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014354078999986, 28.815714744000047 ], [ -82.014102949999938, 28.815489586000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014102949999938, 28.815489586000069 ], [ -82.014046935999943, 28.81542378100005 ], [ -82.013510102999987, 28.814923718000045 ], [ -82.01343901599995, 28.814884497000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010594022999953, 28.81238257800004 ], [ -82.010157702999948, 28.812039918000039 ], [ -82.010117288999936, 28.812014515000044 ], [ -82.010079184999938, 28.811996040000054 ], [ -82.010037616999966, 28.811981029000037 ], [ -82.009997202999955, 28.811972946000026 ], [ -82.009953324999969, 28.811966018000078 ], [ -82.009904828999936, 28.811966018000078 ], [ -82.009347118999983, 28.811999504000028 ], [ -82.009183311999948, 28.812015835000068 ], [ -82.009117796999988, 28.812025966000078 ], [ -82.009052956999938, 28.812035760000072 ], [ -82.008999599999981, 28.812046566000049 ], [ -82.008946445999982, 28.812060702000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009076924999988, 28.812631113000066 ], [ -82.009080388999962, 28.812541048000071 ], [ -82.009080388999962, 28.812463685000068 ], [ -82.009073460999957, 28.812410569000065 ], [ -82.009058449999941, 28.812343598000041 ], [ -82.009042283999975, 28.812284710000029 ], [ -82.009019190999936, 28.812214274000041 ], [ -82.008991477999984, 28.812144993000061 ], [ -82.008946445999982, 28.812060702000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007371633999981, 28.811174995000044 ], [ -82.007254793999948, 28.811265602000049 ], [ -82.007089150999946, 28.811412492000045 ], [ -82.007004766999955, 28.811507814000038 ], [ -82.006987577999951, 28.811554694000051 ], [ -82.006982889999961, 28.811607825000067 ], [ -82.006982889999961, 28.811653142000068 ], [ -82.006995390999975, 28.811692209000057 ], [ -82.007017268999959, 28.811742214000049 ], [ -82.007050084999946, 28.81178753100005 ], [ -82.007393870999977, 28.812187573000074 ], [ -82.007664810999984, 28.812516524000046 ], [ -82.007710493, 28.81255778600007 ], [ -82.007756911999934, 28.812584311000023 ], [ -82.007798173999959, 28.812601258000029 ], [ -82.007844592999959, 28.812610836000033 ], [ -82.007907221999972, 28.812618204000046 ], [ -82.008378045999962, 28.812619678000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008946445999982, 28.812060702000053 ], [ -82.00808563399994, 28.811021138000058 ], [ -82.008041878999961, 28.810986759000059 ], [ -82.007999686999938, 28.810963319000052 ], [ -82.007959057999983, 28.810944567000035 ], [ -82.007915302999947, 28.810935191000056 ], [ -82.007863736, 28.810930503000066 ], [ -82.007818417999943, 28.810935191000056 ], [ -82.007765287999973, 28.810946130000048 ], [ -82.007710593999946, 28.810969570000054 ], [ -82.007657463999976, 28.810997698000051 ], [ -82.007460567999942, 28.811108647000026 ], [ -82.007371633999981, 28.811174995000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008378045999962, 28.812619678000033 ], [ -82.009076924999988, 28.812631113000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009076924999988, 28.812631113000066 ], [ -82.010207545999947, 28.812680757000066 ], [ -82.01024472499995, 28.812675732000059 ], [ -82.010292957, 28.812660660000063 ], [ -82.010336165999945, 28.812638553000056 ], [ -82.010378368999966, 28.812608408000074 ], [ -82.010442678999937, 28.812551131000077 ], [ -82.01051100899997, 28.812476773000071 ], [ -82.010594022999953, 28.81238257800004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008378045999962, 28.812619678000033 ], [ -82.008382634999975, 28.812516351000056 ], [ -82.008386514999984, 28.812440683000034 ], [ -82.008370992999971, 28.812384418000079 ], [ -82.008336069999984, 28.812320391000071 ], [ -82.008283683999935, 28.812252484000055 ], [ -82.007432748999975, 28.811242685000025 ], [ -82.007371633999981, 28.811174995000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093200801999956, 28.684741599000063 ], [ -82.093232959999966, 28.684456466000029 ], [ -82.093299419999937, 28.684231362000048 ], [ -82.093340152999986, 28.683845468000072 ], [ -82.093306430999974, 28.683515880000073 ], [ -82.093291287999989, 28.683063007000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09599917099996, 28.65754146300003 ], [ -82.094288089999964, 28.657641399000056 ], [ -82.094161325999949, 28.657658215000026 ], [ -82.094123814999989, 28.657687965000036 ], [ -82.094101824999939, 28.657720303000076 ], [ -82.094083715999943, 28.657765575000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181880971999988, 28.57967235600006 ], [ -82.18183197999997, 28.579550856000026 ], [ -82.181808463999971, 28.579282379000063 ], [ -82.181774866999945, 28.579057435000038 ], [ -82.181802584999957, 28.578911998000024 ], [ -82.181773189999944, 28.578751304000036 ], [ -82.181779068999958, 28.578549456000076 ], [ -82.181777108999938, 28.578365246000033 ], [ -82.181777108999938, 28.578212390000033 ], [ -82.181788866999966, 28.578049736000025 ], [ -82.181802840999978, 28.577912840000067 ], [ -82.181804544999977, 28.577734227000064 ], [ -82.181816302999948, 28.577528460000053 ], [ -82.181824141999982, 28.577340330000027 ], [ -82.181847657999981, 28.577156120000041 ], [ -82.18186630699995, 28.577008152000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181880971999988, 28.57967235600006 ], [ -82.181951520999974, 28.579697832000079 ], [ -82.182033709999985, 28.579698624000059 ], [ -82.182255430999987, 28.57971040700005 ], [ -82.182559233999939, 28.579705166000053 ], [ -82.182698827999957, 28.579707395000071 ], [ -82.182841144999941, 28.579702371000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147120318999953, 28.616381127000068 ], [ -82.147128693999946, 28.612497663000056 ], [ -82.147119757999974, 28.611793627000054 ], [ -82.14712530099996, 28.610315451000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.17682115599996, 28.568474052000056 ], [ -82.177005289999954, 28.568559509000067 ], [ -82.177149694999969, 28.568643304000034 ], [ -82.177383361999944, 28.568759898000053 ], [ -82.177485201999957, 28.568812369000057 ], [ -82.177574454999956, 28.568839324000066 ], [ -82.177644172999976, 28.568853998000066 ], [ -82.177711090999935, 28.568860986000061 ], [ -82.177846991999957, 28.568860808000068 ], [ -82.178090879999957, 28.568838955000047 ], [ -82.178237220999961, 28.568829533000041 ], [ -82.178397536999967, 28.56884162800003 ], [ -82.178617104999944, 28.568862873000057 ], [ -82.178805349999948, 28.568905693000033 ], [ -82.179021439999985, 28.568930019000049 ], [ -82.179422294999938, 28.569000244000051 ], [ -82.179589616999976, 28.569033863000072 ], [ -82.179791788999978, 28.569070510000074 ], [ -82.179896318999965, 28.56906421900004 ], [ -82.180051228999957, 28.569018515000039 ], [ -82.180233961999988, 28.568998186000044 ], [ -82.180547913999987, 28.568962489000057 ], [ -82.180822507999949, 28.568839837000041 ], [ -82.181209766999984, 28.568905581000024 ], [ -82.181307389999972, 28.568936213000029 ], [ -82.181398085999945, 28.568991466000057 ], [ -82.18191025699997, 28.569353297000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.176351649999958, 28.646138027000063 ], [ -82.176338797999961, 28.645513058000063 ], [ -82.176332462999937, 28.642750223000064 ], [ -82.176323287999935, 28.641814379000039 ], [ -82.176309524999965, 28.640949640000031 ], [ -82.176300350999952, 28.640199589000076 ], [ -82.176309524999965, 28.63996792100005 ], [ -82.176311818999977, 28.639862409000045 ], [ -82.176314112999989, 28.639784422000048 ], [ -82.17632099399998, 28.639706435000051 ], [ -82.176327649999962, 28.639634327000067 ], [ -82.176344292999943, 28.639554760000067 ], [ -82.176377682999941, 28.639458522000041 ], [ -82.176419470999974, 28.639369673000033 ], [ -82.176471738999965, 28.639277108000044 ], [ -82.176534468999989, 28.639171583000063 ], [ -82.176582574999941, 28.639099374000068 ], [ -82.176628605999952, 28.639038268000036 ], [ -82.176707176999969, 28.638939610000079 ], [ -82.176781379999966, 28.638860478000026 ], [ -82.176860931999954, 28.63878267900003 ], [ -82.176938396999958, 28.638712281000039 ], [ -82.177061949999938, 28.638614074000031 ], [ -82.177170870999987, 28.638545485000066 ], [ -82.177281908999987, 28.638487994000059 ], [ -82.177449530999979, 28.638411928000039 ], [ -82.17762345999995, 28.638345104000052 ], [ -82.177793212999973, 28.638289385000064 ], [ -82.178053107999972, 28.638220597000043 ], [ -82.178501663999953, 28.638118263000024 ], [ -82.179071773999965, 28.637976918000049 ], [ -82.179522419999955, 28.637870877000069 ], [ -82.179625118, 28.637842993000049 ], [ -82.17969846699998, 28.637818846000073 ], [ -82.179759240999942, 28.637798417000056 ], [ -82.179809531999979, 28.637778001000072 ], [ -82.179868189, 28.637746475000029 ], [ -82.179918462999979, 28.637716810000029 ], [ -82.179987559999972, 28.63766498800004 ], [ -82.180085987999973, 28.637585244000036 ], [ -82.180184072999964, 28.637502113000039 ], [ -82.18032468399997, 28.637383288000024 ], [ -82.180670157999941, 28.637086843000077 ], [ -82.180778815999986, 28.636982197000066 ], [ -82.180870806999962, 28.636883752000074 ], [ -82.181141092999951, 28.636588592000066 ], [ -82.181436160999965, 28.636247815000047 ], [ -82.181881894999947, 28.63573109500004 ], [ -82.183119500999965, 28.634319148000031 ], [ -82.183216353999967, 28.634218630000078 ], [ -82.183310896999956, 28.634133243000065 ], [ -82.183420129999945, 28.634047461000023 ], [ -82.183499707999943, 28.633990007000079 ], [ -82.183602320999967, 28.633915872000046 ], [ -82.183719599999961, 28.633834316000048 ], [ -82.18388086799996, 28.633728654000038 ], [ -82.184088201999941, 28.633587781000074 ], [ -82.184262012999966, 28.633459900000048 ], [ -82.184527942999978, 28.633254199000078 ], [ -82.184699618999957, 28.633105974000046 ], [ -82.184879004999971, 28.632947097000056 ], [ -82.185010108999961, 28.632825217000061 ], [ -82.185128744999986, 28.632700260000036 ], [ -82.185289873999977, 28.632516899000052 ], [ -82.185486557, 28.632283542000039 ], [ -82.185622543999955, 28.632111315000031 ], [ -82.185785733999978, 28.631909452000059 ], [ -82.186070273999974, 28.631559431000028 ], [ -82.186202096999978, 28.631405707000056 ], [ -82.186338097999965, 28.631242730000054 ], [ -82.186453159999985, 28.631096429000024 ], [ -82.186526370999957, 28.630998284000043 ], [ -82.186612149999974, 28.630892720000077 ], [ -82.186679070999958, 28.630794584000057 ], [ -82.186739688999978, 28.630689056000051 ], [ -82.186800294999955, 28.630576129000076 ], [ -82.186865036999961, 28.630431747000046 ], [ -82.186902511999961, 28.630281853000042 ], [ -82.186919017999969, 28.630130139000073 ], [ -82.18692077999998, 28.629941446000032 ], [ -82.186924493999982, 28.629671354000038 ], [ -82.186937162999982, 28.62942599400003 ], [ -82.186931548999951, 28.629215576000036 ], [ -82.186915431999978, 28.628993609000077 ], [ -82.186909804999971, 28.628776254000059 ], [ -82.186901572999943, 28.628568150000035 ], [ -82.186896035999951, 28.628401667000048 ], [ -82.186890527999935, 28.628251370000044 ], [ -82.186884942999939, 28.628057138000031 ], [ -82.186879254999951, 28.627805097000078 ], [ -82.186884225999961, 28.627652472000079 ], [ -82.186897580999982, 28.627391077000027 ], [ -82.186956543999941, 28.627051154000071 ], [ -82.187114566999981, 28.62601036600006 ], [ -82.187140516999989, 28.62586465000004 ], [ -82.187150717999941, 28.625705082000025 ], [ -82.187126961999979, 28.625610307000045 ], [ -82.18709010699996, 28.625517862000038 ], [ -82.18704538999998, 28.625425429000074 ], [ -82.187008583999955, 28.625360734000026 ], [ -82.186743569999976, 28.625042243000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997583114999941, 28.675404402000026 ], [ -81.997533977999979, 28.67539531500006 ], [ -81.997489756999983, 28.675369721000038 ], [ -81.997464881999974, 28.675330720000034 ], [ -81.997456591999935, 28.675286847000052 ], [ -81.997455210999988, 28.675214942000025 ], [ -81.997464887999968, 28.675107693000029 ], [ -81.997463299999936, 28.674487900000031 ], [ -81.997272840999983, 28.674257345000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994154269999967, 28.647044612000059 ], [ -81.994146702999956, 28.646640696000077 ], [ -81.994129015999988, 28.64625686100004 ], [ -81.994151788999943, 28.646167599000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999588007999989, 28.649916478000023 ], [ -81.999590640999941, 28.650283326000078 ], [ -81.999603287999946, 28.650841222000054 ], [ -81.999634880999963, 28.651356449000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071376495999971, 28.683043155000064 ], [ -82.07132022199994, 28.683034164000048 ], [ -82.071276725999951, 28.68300712100006 ], [ -82.071256242999937, 28.68297330200005 ], [ -82.071258769999986, 28.682930447000047 ], [ -82.07127664099994, 28.682880820000037 ], [ -82.071302174999971, 28.682819910000035 ], [ -82.071345593, 28.68272967200005 ], [ -82.071368548999942, 28.682639445000063 ], [ -82.071381264999957, 28.682531179000023 ], [ -82.071378639999978, 28.68243194300004 ], [ -82.071352958999967, 28.682278590000067 ], [ -82.071365612999955, 28.682080110000072 ], [ -82.071365525999965, 28.681951552000044 ], [ -82.071378223999943, 28.681818477000036 ], [ -82.071347317999937, 28.681502739000052 ], [ -82.071342129999948, 28.68139448200003 ], [ -82.071324162999986, 28.681299766000052 ], [ -82.071280576999982, 28.681139656000028 ], [ -82.071267890999934, 28.681040119000045 ], [ -82.071265131999951, 28.68092702000007 ], [ -82.071259912999949, 28.680839699000046 ], [ -82.071270093999942, 28.680767522000053 ], [ -82.071277708999958, 28.680681813000035 ], [ -82.071284441999978, 28.680292562000034 ], [ -82.071292716999949, 28.680190498000059 ], [ -82.071334094999941, 28.680080157000077 ], [ -82.07138374799996, 28.680000160000077 ], [ -82.071408574999964, 28.679909129000066 ], [ -82.071400298999947, 28.679801548000057 ], [ -82.071336852999934, 28.679627761000063 ], [ -82.071246102999964, 28.679328594000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074964125999941, 28.792653680000058 ], [ -82.07533022299998, 28.791881338000053 ], [ -82.076365160999956, 28.789651419000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076365160999956, 28.789651419000052 ], [ -82.076493906999985, 28.789367125000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.082858070999976, 28.799874398000043 ], [ -82.081691163999949, 28.799876151000035 ], [ -82.081131160999973, 28.799880037000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01323317799995, 28.677267390000054 ], [ -82.013263911999957, 28.677113477000034 ], [ -82.013256097999943, 28.675421337000046 ], [ -82.013275279999959, 28.675376785000026 ], [ -82.013336538999965, 28.675343990000044 ], [ -82.013438635999989, 28.675337184000057 ], [ -82.013893563999943, 28.675383302000057 ], [ -82.014315762999956, 28.675377783000044 ], [ -82.015332628999943, 28.67538882100007 ], [ -82.015346991999934, 28.673218031000033 ], [ -82.015325575999952, 28.671697556000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.193147284999952, 28.857710810000071 ], [ -82.195119206999948, 28.857111753000027 ], [ -82.195343544999957, 28.857058256000073 ], [ -82.195422748999988, 28.857060029000024 ], [ -82.195500178999964, 28.857092538000074 ], [ -82.195572847999983, 28.857177737000029 ], [ -82.195693818999985, 28.85737019100003 ], [ -82.195966946999988, 28.85787618300003 ], [ -82.196120421999979, 28.858165287000077 ], [ -82.196245343999976, 28.858340178000049 ], [ -82.196421198999985, 28.858499459000029 ], [ -82.196807419999971, 28.858731191000061 ], [ -82.196945115999938, 28.858825228000057 ], [ -82.197072736999985, 28.858932698000046 ], [ -82.197113037999941, 28.859016659000076 ], [ -82.197180962999937, 28.859330016000058 ], [ -82.197131031999959, 28.859611981000057 ], [ -82.197045854999942, 28.85980289500003 ], [ -82.197034106, 28.85997618600004 ], [ -82.197084037999957, 28.860228780000057 ], [ -82.197175088999984, 28.860525432000031 ], [ -82.197263202999977, 28.860692849000031 ], [ -82.197442368999987, 28.860957191000068 ], [ -82.197521542999937, 28.861340441000038 ], [ -82.19759292599997, 28.861775883000064 ], [ -82.197650032999945, 28.861854405000031 ], [ -82.197835630999975, 28.862125664000075 ], [ -82.198099751999962, 28.862439752000057 ], [ -82.198299625999937, 28.862746703000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.082858070999976, 28.799874398000043 ], [ -82.082857502999957, 28.799026275000074 ], [ -82.082819192999978, 28.798684968000032 ], [ -82.082756503999974, 28.79840635000005 ], [ -82.082704262999982, 28.798256593000076 ], [ -82.082592815999988, 28.798005836000073 ], [ -82.082450023999968, 28.797744632000047 ], [ -82.082227128999989, 28.797445117000052 ], [ -82.081809201999988, 28.796964501000048 ], [ -82.080576316999952, 28.795553080000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07926238899995, 28.792966162000027 ], [ -82.079779418999976, 28.792921169000067 ], [ -82.080137585999978, 28.792898376000039 ], [ -82.080606459999956, 28.792970010000033 ], [ -82.081322793999959, 28.792989546000058 ], [ -82.08177864299995, 28.792950473000076 ], [ -82.082013078999978, 28.792885352000042 ], [ -82.082247515999939, 28.792787670000052 ], [ -82.082478695999953, 28.792631379000056 ], [ -82.082670803999974, 28.792458808000049 ], [ -82.082833606999941, 28.792230883000059 ], [ -82.082918264999989, 28.792035519000024 ], [ -82.082973617999983, 28.791853180000032 ], [ -82.082996409999964, 28.791706657000077 ], [ -82.082931288999987, 28.790264221000029 ], [ -82.082905239999945, 28.789567423000051 ], [ -82.082869423999966, 28.78927112100007 ], [ -82.082833606999941, 28.789095294000049 ], [ -82.082735924999952, 28.788870626000062 ], [ -82.082436366999957, 28.788411521000057 ], [ -82.082260539999936, 28.788147779000042 ], [ -82.082100992999983, 28.787805893000041 ], [ -82.081977261999953, 28.787529127000028 ], [ -82.081703589999961, 28.786623612000028 ], [ -82.081635375999952, 28.78636345700005 ], [ -82.081557229999987, 28.786063899000055 ], [ -82.08155071799996, 28.785927144000027 ], [ -82.081500687999949, 28.785648858000059 ], [ -82.081525211999974, 28.785413433000031 ], [ -82.081579162999958, 28.785288364000053 ], [ -82.081674484999951, 28.785108364000052 ], [ -82.081853596999963, 28.78492925200004 ], [ -82.084065244999977, 28.783870153000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078591607999954, 28.790969275000066 ], [ -82.078486508999958, 28.790857994000078 ], [ -82.078294856999946, 28.790644704000044 ], [ -82.077961011999946, 28.790360317000079 ], [ -82.077673534999974, 28.790181030000042 ], [ -82.077324233999946, 28.790004834000058 ], [ -82.076365160999956, 28.789651419000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.080576316999952, 28.795553080000047 ], [ -82.080069180999942, 28.794978505000074 ], [ -82.079877528999987, 28.794712665000077 ], [ -82.079682785999978, 28.794381912000063 ], [ -82.079531319999944, 28.794044976000066 ], [ -82.079441675999988, 28.793754407000051 ], [ -82.07926238899995, 28.792966162000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.080576316999952, 28.795553080000047 ], [ -82.080649315999949, 28.795509998000057 ], [ -82.080797429999961, 28.795456513000033 ], [ -82.08087971499998, 28.795440056000075 ], [ -82.081003142999975, 28.795448284000031 ], [ -82.081393998999943, 28.795518227000059 ], [ -82.081644968999967, 28.795579941000028 ], [ -82.081809539999938, 28.795596398000043 ], [ -82.082044052999947, 28.795592284000065 ], [ -82.082204508999951, 28.795571712000026 ], [ -82.08237730899998, 28.795547027000055 ], [ -82.082652964999966, 28.795551141000033 ], [ -82.082908566999947, 28.79554653200006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07926238899995, 28.792966162000027 ], [ -82.07923766, 28.792848698000057 ], [ -82.079203656999937, 28.792653955000048 ], [ -82.079008913999985, 28.791779158000054 ], [ -82.078869811999937, 28.791426766000029 ], [ -82.078709071999981, 28.791148562000046 ], [ -82.078591607999954, 28.790969275000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078591607999954, 28.790969275000066 ], [ -82.078680842999972, 28.790924881000024 ], [ -82.078816199999949, 28.790883232000056 ], [ -82.078953525999964, 28.790866568000069 ], [ -82.079081708, 28.790862408000066 ], [ -82.079212303999952, 28.790859103000059 ], [ -82.079331596999964, 28.790841584000077 ], [ -82.079425305999962, 28.790810348000036 ], [ -82.079515869999966, 28.790772014000027 ], [ -82.079602310999974, 28.79071143300007 ], [ -82.079669988999967, 28.790628137000056 ], [ -82.079690812999957, 28.790544840000052 ], [ -82.079722049999987, 28.790180418000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11660696499996, 28.687163521000059 ], [ -82.116881913999975, 28.687106371000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116942295999934, 28.687889805000054 ], [ -82.116938223999966, 28.687493877000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116590306999967, 28.688425342000073 ], [ -82.116922597999974, 28.688418151000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116881913999975, 28.687106371000027 ], [ -82.117903303999981, 28.687102891000052 ], [ -82.117983344999971, 28.687116811000067 ], [ -82.117985084999987, 28.687191632000065 ], [ -82.117983344999971, 28.687497875000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116938223999966, 28.687493877000065 ], [ -82.117983344999971, 28.687497875000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117983344999971, 28.687497875000076 ], [ -82.117992969999989, 28.687814058000072 ], [ -82.117986861999952, 28.687869646000024 ], [ -82.117931884999962, 28.687897135000071 ], [ -82.116942295999934, 28.687889805000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116938223999966, 28.687493877000065 ], [ -82.116887133999967, 28.687315173000059 ], [ -82.116881913999975, 28.687106371000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116922597999974, 28.688418151000064 ], [ -82.116942295999934, 28.687889805000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116937353999958, 28.689333161000036 ], [ -82.116922597999974, 28.688418151000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116937353999958, 28.689333161000036 ], [ -82.117606777999981, 28.689327197000068 ], [ -82.117606777999981, 28.688914212000043 ], [ -82.117612741999949, 28.688420717000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116922597999974, 28.688418151000064 ], [ -82.117612741999949, 28.688420717000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114983333999987, 28.689317970000047 ], [ -82.114972499999965, 28.688659780000023 ], [ -82.114866313999983, 28.68843464400004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114983333999987, 28.689317970000047 ], [ -82.11658549699996, 28.68933912500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11658549699996, 28.68933912500006 ], [ -82.116937353999958, 28.689333161000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11658102399997, 28.690124840000067 ], [ -82.115070009999954, 28.69013867700005 ], [ -82.114988750999942, 28.690114299000072 ], [ -82.114967082999954, 28.690052001000026 ], [ -82.114983333999987, 28.689317970000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11658102399997, 28.690124840000067 ], [ -82.11658549699996, 28.68933912500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11658102399997, 28.690124840000067 ], [ -82.116721170999938, 28.690078622000044 ], [ -82.116830007999965, 28.69006818500003 ], [ -82.116940335999971, 28.690108440000074 ], [ -82.11702687899998, 28.690152108000063 ], [ -82.117177392999963, 28.690156150000064 ], [ -82.117259392999983, 28.690132295000069 ], [ -82.117268338999963, 28.690011530000049 ], [ -82.117244483999968, 28.689877347000049 ], [ -82.117186337999954, 28.689792365000073 ], [ -82.116996990999951, 28.689658182000073 ], [ -82.116935862999981, 28.689589600000033 ], [ -82.116928408999968, 28.689519526000026 ], [ -82.116937353999958, 28.689333161000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.094046438999953, 28.658437549000041 ], [ -82.094072074999985, 28.658041092000076 ], [ -82.094083715999943, 28.657765575000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030688040999962, 28.798269279000067 ], [ -82.03065841199998, 28.79865241300007 ], [ -82.030619587, 28.798908858000061 ], [ -82.030580762999989, 28.799104001000046 ], [ -82.030517417999988, 28.799338990000024 ], [ -82.030513757999984, 28.799449043000038 ], [ -82.030509653999957, 28.799593227000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039759737999987, 28.825565492000067 ], [ -82.039722388999962, 28.825703006000026 ], [ -82.039688593999983, 28.825890178000066 ], [ -82.039659997999934, 28.826118944000029 ], [ -82.039641800999959, 28.826334712000062 ], [ -82.039634001999957, 28.82657907600003 ], [ -82.039623603999985, 28.826766248000069 ], [ -82.03961060599994, 28.826896228000066 ], [ -82.039596370999959, 28.826999325000031 ], [ -82.039576736999948, 28.827127003000044 ], [ -82.03952862999995, 28.827288301000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037041371999976, 28.920168783000065 ], [ -82.036669094999979, 28.920159269000067 ], [ -82.036488277999979, 28.920149362000075 ], [ -82.03631736899996, 28.920124592000036 ], [ -82.036163798999951, 28.920112207000045 ], [ -82.035950781999986, 28.920109731000025 ], [ -82.034135183999979, 28.920112207000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015427946999978, 28.600157230000036 ], [ -82.015449819999958, 28.600059142000077 ], [ -82.015466642999968, 28.59917088900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068297303999941, 28.60608897700007 ], [ -82.068305130999988, 28.605139904000055 ], [ -82.068295346999946, 28.604967701000078 ], [ -82.068238597999937, 28.604950089000056 ], [ -82.067609779999941, 28.604948232000027 ], [ -82.067519313999981, 28.604948232000027 ], [ -82.067503348999935, 28.605049342000029 ], [ -82.067500864999943, 28.606057668000062 ], [ -82.067659369999944, 28.606061581000063 ], [ -82.068129014999954, 28.606067452000048 ], [ -82.068297303999941, 28.60608897700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048883513999954, 28.606423779000067 ], [ -82.048885883999958, 28.606340824000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995336688999942, 28.827361145000054 ], [ -81.995320601999936, 28.827311814000041 ], [ -81.995038501999943, 28.827089842000078 ], [ -81.994699426999944, 28.826851453000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986580475999972, 28.823644528000045 ], [ -81.986646669999971, 28.823449074000052 ], [ -81.986755799999969, 28.823180739000065 ], [ -81.986825684999985, 28.823008 ], [ -81.986914387999946, 28.82277610400007 ], [ -81.98704341399997, 28.822409330000028 ], [ -81.987252534999982, 28.822016087000065 ], [ -81.987343857999974, 28.821844856000041 ], [ -81.987368590999949, 28.821704066000052 ], [ -81.987378103999959, 28.821559471000057 ], [ -81.987435843999947, 28.821417858000075 ], [ -81.987462720999986, 28.821375266000075 ], [ -81.987500346, 28.821318477000034 ], [ -81.987537969999948, 28.82127825200007 ], [ -81.987564843999962, 28.821247492000055 ], [ -81.987602463999963, 28.821221465000065 ], [ -81.987629336999987, 28.821209636000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989386811999964, 28.787020270000028 ], [ -81.989779064999937, 28.787010082000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995336688999942, 28.827361145000054 ], [ -81.995310950999965, 28.827439431000073 ], [ -81.994633663999934, 28.828197401000068 ], [ -81.994465629999979, 28.828392700000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189837816999955, 28.592520360000037 ], [ -82.189702466999961, 28.592498534000072 ], [ -82.18892753199998, 28.592503806000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18892753199998, 28.592503806000025 ], [ -82.18789789899995, 28.592496347000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18789789899995, 28.592496347000065 ], [ -82.18588346699994, 28.592486766000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18588346699994, 28.592486766000036 ], [ -82.183791612999983, 28.592468222000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183791612999983, 28.592468222000036 ], [ -82.182308956999975, 28.592457679000063 ], [ -82.182154573999981, 28.592482729000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.188931705999948, 28.592555267000023 ], [ -82.18892753199998, 28.592503806000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18789512099994, 28.592554785000061 ], [ -82.18789789899995, 28.592496347000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185886067999945, 28.592540976000066 ], [ -82.18588346699994, 28.592486766000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183784023999976, 28.592528703000028 ], [ -82.183791612999983, 28.592468222000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009326968999972, 28.908200299000043 ], [ -82.009324788999947, 28.908170314000074 ], [ -82.009324770999967, 28.907968516000039 ], [ -82.009334220999961, 28.90781068900003 ], [ -82.009356931999946, 28.907693583000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009326968999972, 28.908200299000043 ], [ -82.009301587999971, 28.908273541000028 ], [ -82.009294134999948, 28.908344344000056 ], [ -82.00929040799997, 28.908459864000065 ], [ -82.009288544999947, 28.908633144000078 ], [ -82.009281091999981, 28.90872444200005 ], [ -82.009273638999957, 28.908832509000035 ], [ -82.009273638999957, 28.908946165000032 ], [ -82.009279228999958, 28.909087771000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009381705999942, 28.909087771000031 ], [ -82.009279228999958, 28.909087771000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00932897499996, 28.910146733000033 ], [ -82.009329126999944, 28.91006602300007 ], [ -82.009329114999957, 28.909936953000056 ], [ -82.009330055999953, 28.909813583000073 ], [ -82.009330665999983, 28.909809560000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009279228999958, 28.909087771000031 ], [ -82.009283951999976, 28.909556460000033 ], [ -82.009304007999958, 28.909686156000078 ], [ -82.009330665999983, 28.909809560000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014512144999969, 28.811261727000044 ], [ -82.015316992999942, 28.811253227000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996238366999989, 28.819620851000025 ], [ -81.996477843999969, 28.819697549000068 ], [ -81.997386390999964, 28.820000890000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995806181999967, 28.820181029000025 ], [ -81.995983769999953, 28.820240412000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996238366999989, 28.819620851000025 ], [ -81.995983769999953, 28.820240412000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023880582999936, 28.619260182000062 ], [ -82.023722853999971, 28.619307302000038 ], [ -82.023673039999949, 28.619301032000067 ], [ -82.023598312, 28.619262324000033 ], [ -82.023404966999976, 28.619149334000042 ], [ -82.023269744999936, 28.619069822000029 ], [ -82.023184341999979, 28.619019604000073 ], [ -82.023133332999976, 28.618976706000069 ], [ -82.02308587999994, 28.618918109000049 ], [ -82.023052656999937, 28.618852184000048 ], [ -82.022985014999961, 28.618672196000034 ], [ -82.022929241999975, 28.618524647000072 ], [ -82.022887707999985, 28.61841372300006 ], [ -82.022848554999939, 28.618346754000072 ], [ -82.022802288999969, 28.618294435000053 ], [ -82.022733491999986, 28.618249447000039 ], [ -82.022510502999978, 28.618153204000066 ], [ -82.022319539999955, 28.618069515000059 ], [ -82.022235325999986, 28.618032901000049 ], [ -82.022167716999945, 28.617999424000061 ], [ -82.022120271999938, 28.617965943000058 ], [ -82.02206214399996, 28.617903162000061 ], [ -82.022030109999946, 28.617845609000028 ], [ -82.022008742999958, 28.617753518000029 ], [ -82.022000338999987, 28.617266892000032 ], [ -82.022001301999978, 28.616194214000075 ], [ -82.021999969999968, 28.615495143000032 ], [ -82.022002221999969, 28.614917468000044 ], [ -82.022003301999973, 28.614416187000074 ], [ -82.022003250999944, 28.614170256000079 ], [ -82.022012725999957, 28.614101185000038 ], [ -82.022045916999957, 28.61403838800004 ], [ -82.022112319999962, 28.613981866000074 ], [ -82.022202445999937, 28.613951502000077 ], [ -82.022311553999941, 28.61394834400005 ], [ -82.022545185999945, 28.613949352000077 ], [ -82.022827917999962, 28.613945457000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023733142999959, 28.617598344000044 ], [ -82.023731037999937, 28.617400778000047 ], [ -82.023728241999947, 28.616795034000063 ], [ -82.023730601999944, 28.615459109000028 ], [ -82.023733042999936, 28.614480055000058 ], [ -82.023732990999974, 28.614247617000046 ], [ -82.023732367999969, 28.614149035000025 ], [ -82.023722312999951, 28.614095009000039 ], [ -82.023696762999975, 28.614033924000069 ], [ -82.023644571999967, 28.613994166000055 ], [ -82.023590011999943, 28.613966965000031 ], [ -82.023509363999949, 28.613950235000061 ], [ -82.023357561999944, 28.613948168000036 ], [ -82.022967826999945, 28.613943530000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022902035999948, 28.613391501000024 ], [ -82.022901936999972, 28.612935220000054 ], [ -82.022908886999971, 28.612173357000074 ], [ -82.022918358999959, 28.612102193000055 ], [ -82.022942057999956, 28.612008003000028 ], [ -82.022989472999939, 28.611909622000042 ], [ -82.023053494999942, 28.611823797000056 ], [ -82.023117519999971, 28.611756809000042 ], [ -82.02322423399994, 28.611676809000073 ], [ -82.023447690999944, 28.611512422000033 ], [ -82.023496952999949, 28.611469999000064 ], [ -82.023548772999959, 28.611418490000062 ], [ -82.023601285999973, 28.611346492000052 ], [ -82.023629736999965, 28.611298347000059 ], [ -82.023660473999939, 28.611225947000037 ], [ -82.023687053999936, 28.61110855000004 ], [ -82.023686992999956, 28.610836198000072 ], [ -82.023699100999977, 28.610652724000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02575864399995, 28.609917930000051 ], [ -82.025758386999939, 28.609917930000051 ], [ -82.025020671999982, 28.609919301000048 ], [ -82.023747722999985, 28.609916369000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023611983999956, 28.609917030000076 ], [ -82.023434940999948, 28.609918520000065 ], [ -82.021693500999959, 28.609894270000041 ], [ -82.021473101999959, 28.609894624000049 ], [ -82.021472861999939, 28.609894624000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023699100999977, 28.610652724000033 ], [ -82.023741970999936, 28.61053757600007 ], [ -82.023747722999985, 28.609916369000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023747722999985, 28.609916369000075 ], [ -82.023611983999956, 28.609917030000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023611983999956, 28.609917030000076 ], [ -82.023619233999966, 28.610355847000051 ], [ -82.023630104999938, 28.610527967000053 ], [ -82.023699100999977, 28.610652724000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022827917999962, 28.613945457000057 ], [ -82.022967826999945, 28.613943530000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022967826999945, 28.613943530000029 ], [ -82.022964268999942, 28.613562814000034 ], [ -82.022931059999962, 28.613435909000032 ], [ -82.022902035999948, 28.613391501000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022902035999948, 28.613391501000024 ], [ -82.022874129999934, 28.613432351000029 ], [ -82.022833804999948, 28.613550954000061 ], [ -82.022827917999962, 28.613945457000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990698663999979, 28.858867602000032 ], [ -81.990706804999945, 28.858854033000057 ], [ -81.990722649999952, 28.858825140000079 ], [ -81.990748745999952, 28.85877853900007 ], [ -81.990776706999952, 28.858731007000074 ], [ -81.990803734999986, 28.858692794000035 ], [ -81.990839151999978, 28.858648057000039 ], [ -81.99088575199994, 28.858594 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983269294999957, 28.793012461000046 ], [ -81.982906091999951, 28.792719556000065 ], [ -81.982695734999936, 28.792477869000038 ], [ -81.982310825999946, 28.791967641000042 ], [ -81.982194457999981, 28.791784138000025 ], [ -81.982146250999961, 28.791623713000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987215448999962, 28.793102690000069 ], [ -81.987492748999955, 28.793247879000035 ], [ -81.987698037999962, 28.793388812000046 ], [ -81.987745485999938, 28.79346206300005 ], [ -81.987749173999987, 28.793569134000052 ], [ -81.987732634999986, 28.793639835000079 ], [ -81.987424429999976, 28.794258763000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982588570999951, 28.791465778000031 ], [ -81.982713623999985, 28.791434879000064 ], [ -81.982910162999985, 28.791433073000064 ], [ -81.983128094999984, 28.791475250000076 ], [ -81.983406177999939, 28.791558440000074 ], [ -81.983749572999955, 28.79168925700003 ], [ -81.984185802999946, 28.79193547400007 ], [ -81.984524914999952, 28.79218846200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984524914999952, 28.79218846200007 ], [ -81.984818273999963, 28.792323031000024 ], [ -81.985146620999956, 28.792473747000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985146620999956, 28.792473747000031 ], [ -81.985477658999969, 28.792597550000039 ], [ -81.985808697999971, 28.792740193000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985808697999971, 28.792740193000043 ], [ -81.986126278999961, 28.792837082000062 ], [ -81.986478848, 28.792912440000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986478848, 28.792912440000066 ], [ -81.986831417999952, 28.792963576000034 ], [ -81.987033985999972, 28.793030004000059 ], [ -81.987215448999962, 28.793102690000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984450203999984, 28.795257270000036 ], [ -81.984445727999969, 28.795042437000063 ], [ -81.984306981999964, 28.794729139000026 ], [ -81.983979919999967, 28.794027243000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983979919999967, 28.794027243000073 ], [ -81.984624016999987, 28.793848524000055 ], [ -81.984752886999956, 28.793807339000068 ], [ -81.984906998999975, 28.793743568000025 ], [ -81.985019926999939, 28.793702383000038 ], [ -81.985107611999979, 28.793678469000042 ], [ -81.985192639, 28.793662526000048 ], [ -81.985272352999971, 28.793655883000042 ], [ -81.985368008999956, 28.793651898000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985368008999956, 28.793651898000064 ], [ -81.985418180999943, 28.793652732000055 ], [ -81.985479440999939, 28.793659295000054 ], [ -81.985552732999963, 28.793674610000039 ], [ -81.985664312999972, 28.793705240000065 ], [ -81.986054842999977, 28.793828853000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986054842999977, 28.793828853000036 ], [ -81.98672322699997, 28.794057482000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98672322699997, 28.794057482000028 ], [ -81.987134540999989, 28.794194222000044 ], [ -81.987224241999968, 28.794219382000051 ], [ -81.987300816999948, 28.794236885000032 ], [ -81.987376296999969, 28.794251106000047 ], [ -81.987424429999976, 28.794258763000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987424429999976, 28.794258763000073 ], [ -81.987703378999981, 28.794281735000027 ], [ -81.987874031, 28.79428501700005 ], [ -81.98805780899994, 28.794268608000039 ], [ -81.988240493999967, 28.79420297300004 ], [ -81.988358636999976, 28.794108896000068 ], [ -81.988420989999952, 28.794039979000047 ], [ -81.988480061999951, 28.793938245000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98672322699997, 28.794057482000028 ], [ -81.987215448999962, 28.793102690000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986054842999977, 28.793828853000036 ], [ -81.986259280999946, 28.793402910000054 ], [ -81.986363609999955, 28.79321357300006 ], [ -81.986437025999976, 28.793068672000061 ], [ -81.986466808999978, 28.792986575000043 ], [ -81.986478848, 28.792912440000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985368008999956, 28.793651898000064 ], [ -81.985808697999971, 28.792740193000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983979919999967, 28.794027243000073 ], [ -81.983908645999975, 28.793874283000036 ], [ -81.983792277999953, 28.793610217000037 ], [ -81.983730007999952, 28.793452908000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983730007999952, 28.793452908000063 ], [ -81.98395312599996, 28.793373315000053 ], [ -81.984064503999946, 28.793337235000024 ], [ -81.98414764599994, 28.793308998000043 ], [ -81.984240199999988, 28.793287036000038 ], [ -81.984342166999966, 28.793260368000062 ], [ -81.984455113999957, 28.793225856000049 ], [ -81.984546098999942, 28.793197619000068 ], [ -81.984635515999969, 28.793150558000036 ], [ -81.984699832999979, 28.793106634000026 ], [ -81.984768856999949, 28.793054866000034 ], [ -81.984830035999948, 28.793003099000032 ], [ -81.984891215999937, 28.792940350000038 ], [ -81.984957101999953, 28.79286191500006 ], [ -81.984997888999942, 28.79280230300003 ], [ -81.985054361999971, 28.792689356000039 ], [ -81.985099854999987, 28.792593665000027 ], [ -81.985146620999956, 28.792473747000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983730007999952, 28.793452908000063 ], [ -81.983659898999974, 28.793331851000062 ], [ -81.983564017999981, 28.793229784000061 ], [ -81.983322330999954, 28.793055232000029 ], [ -81.983269294999957, 28.793012461000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983269294999957, 28.793012461000046 ], [ -81.983335784999952, 28.792948197000044 ], [ -81.983416704999968, 28.792890770000042 ], [ -81.983492403999946, 28.79284378400007 ], [ -81.98362814099994, 28.792798103000052 ], [ -81.983720806999941, 28.792764169000066 ], [ -81.983827829999939, 28.792734151000047 ], [ -81.983993584999951, 28.792684555000051 ], [ -81.984147593999978, 28.792623212000024 ], [ -81.984276804999979, 28.792526630000054 ], [ -81.984375996999972, 28.792427438000061 ], [ -81.984442559999934, 28.792341298000053 ], [ -81.984485629999938, 28.792272124000078 ], [ -81.984524914999952, 28.79218846200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98236841399995, 28.789595045000056 ], [ -81.982502108999938, 28.789595045000056 ], [ -81.983216165999977, 28.789669963000051 ], [ -81.983824869999978, 28.789810433000071 ], [ -81.98436333899997, 28.789981338000075 ], [ -81.986077076999948, 28.79057599600003 ], [ -81.986852003999957, 28.790896736000036 ], [ -81.987624496999956, 28.791252438000072 ], [ -81.987791090999963, 28.791335557000025 ], [ -81.988767081999981, 28.791870663000054 ], [ -81.989624766999952, 28.792420266000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989690173999975, 28.792304128000069 ], [ -81.989010563999955, 28.791863640000031 ], [ -81.988165400999947, 28.79138370000004 ], [ -81.987212543999988, 28.790913124000042 ], [ -81.98628544099995, 28.790517467000029 ], [ -81.985096125999974, 28.790096056000039 ], [ -81.983796775999963, 28.789667621000035 ], [ -81.983293423999953, 28.789555245000031 ], [ -81.982715154999937, 28.789482669000051 ], [ -81.982377588999952, 28.78946669000004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988480061999951, 28.793938245000049 ], [ -81.988534658999981, 28.793832130000055 ], [ -81.988608318999979, 28.793710691000058 ], [ -81.988703876999978, 28.793561381000075 ], [ -81.988885676999985, 28.793340990000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984524914999952, 28.79218846200007 ], [ -81.984578868999961, 28.792133926000076 ], [ -81.984621079999954, 28.79207563500006 ], [ -81.984709520999957, 28.791920864000076 ], [ -81.984775850999938, 28.791792223000073 ], [ -81.984844191999969, 28.791683682000041 ], [ -81.984896451999987, 28.791607302000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984896451999987, 28.791607302000045 ], [ -81.984944692999989, 28.791532931000063 ], [ -81.985009012999967, 28.791456550000078 ], [ -81.985101473999975, 28.791364090000059 ], [ -81.985173833999966, 28.791285699000071 ], [ -81.985228104999976, 28.791227408000054 ], [ -81.985280364999937, 28.791155048000064 ], [ -81.985312525999973, 28.791098767000051 ], [ -81.985352725999974, 28.791028417000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984896451999987, 28.791607302000045 ], [ -81.984988440999985, 28.791646275000062 ], [ -81.986269279999988, 28.792166573000031 ], [ -81.986322819999941, 28.792184419000023 ], [ -81.986383223999951, 28.792196775000036 ], [ -81.986439508999979, 28.792202266000061 ], [ -81.986535605999961, 28.792214621000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986535605999961, 28.792214621000028 ], [ -81.986914503999969, 28.792277771000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986535605999961, 28.792214621000028 ], [ -81.986829388999979, 28.791627055000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984983537999938, 28.790857574000029 ], [ -81.985352725999974, 28.791028417000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985352725999974, 28.791028417000064 ], [ -81.986829388999979, 28.791627055000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986829388999979, 28.791627055000049 ], [ -81.98718275799996, 28.791755763000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987197145999971, 28.792422311000053 ], [ -81.987407255999983, 28.792507380000075 ], [ -81.987525121999965, 28.792562726000028 ], [ -81.987640938999959, 28.792622172000051 ], [ -81.98775163199997, 28.792683668000052 ], [ -81.987879747999955, 28.792756438000026 ], [ -81.987987364999981, 28.792816909000067 ], [ -81.988078583999936, 28.79286508000007 ], [ -81.988169801999959, 28.792919401000063 ], [ -81.988273319999962, 28.792977822000068 ], [ -81.988372737999953, 28.793031118000044 ], [ -81.988432183999976, 28.793062891000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988432183999976, 28.793062891000034 ], [ -81.98863511899998, 28.793178708000028 ], [ -81.988885676999985, 28.793340990000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989095474999942, 28.793103194000025 ], [ -81.989154128999985, 28.793082138000045 ], [ -81.989195536999944, 28.793053152000027 ], [ -81.989265339999974, 28.792973885000038 ], [ -81.989416774999938, 28.792796422000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988432183999976, 28.793062891000034 ], [ -81.988491003999968, 28.792992800000036 ], [ -81.988563183999986, 28.79290357900004 ], [ -81.988640374999989, 28.792803330000027 ], [ -81.988719571, 28.792693057000065 ], [ -81.988787740999953, 28.792594813000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988787740999953, 28.792594813000051 ], [ -81.98897620799994, 28.792355219000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987071482999966, 28.792677017000074 ], [ -81.987197145999971, 28.792422311000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987197145999971, 28.792422311000053 ], [ -81.987482502999967, 28.791901092000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987217179999959, 28.791764070000056 ], [ -81.987482502999967, 28.791901092000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987482502999967, 28.791901092000046 ], [ -81.987693024999942, 28.791985301000068 ], [ -81.987936628999989, 28.792099585000074 ], [ -81.988142139, 28.792216876000055 ], [ -81.988267449999967, 28.792292062000058 ], [ -81.988489, 28.792412361000061 ], [ -81.988639372999955, 28.792498575000025 ], [ -81.988787740999953, 28.792594813000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988885676999985, 28.793340990000047 ], [ -81.989095474999942, 28.793103194000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989416774999938, 28.792796422000038 ], [ -81.989711738999972, 28.792475998000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989711738999972, 28.792475998000043 ], [ -81.989800374999959, 28.792377147000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989690173999975, 28.792304128000069 ], [ -81.989624766999952, 28.792420266000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989624766999952, 28.792420266000079 ], [ -81.989352887999985, 28.792758563000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989352887999985, 28.792758563000064 ], [ -81.989115678999951, 28.79302535000005 ], [ -81.98910207299997, 28.793054335000079 ], [ -81.989095565999946, 28.793080363000058 ], [ -81.989095474999942, 28.793103194000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989352887999985, 28.792758563000064 ], [ -81.989416774999938, 28.792796422000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989711738999972, 28.792475998000043 ], [ -81.989822949999962, 28.792547262000028 ], [ -81.990328642999941, 28.792910143000029 ], [ -81.990553394999949, 28.793111484000065 ], [ -81.990740688999949, 28.793324530000064 ], [ -81.990876476999972, 28.793535236000025 ], [ -81.990977146999967, 28.793734235000045 ], [ -81.991061428999956, 28.794005811000034 ], [ -81.99111527599996, 28.794328893000056 ], [ -81.991183169999942, 28.794647292000036 ], [ -81.991319000999965, 28.794969343000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989624766999952, 28.792420266000079 ], [ -81.989711738999972, 28.792475998000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991446486999962, 28.794918739000025 ], [ -81.991440698999952, 28.794907162000072 ], [ -81.991340028999957, 28.794675386000051 ], [ -81.991276816999971, 28.794436587000064 ], [ -81.991248722999956, 28.794165011000075 ], [ -81.991169122999963, 28.793839588000026 ], [ -81.991009923999968, 28.793483730000048 ], [ -81.990801558999976, 28.793181719000074 ], [ -81.990581488999965, 28.792947602000027 ], [ -81.990274795999937, 28.79270880200005 ], [ -81.989800374999959, 28.792377147000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989800374999959, 28.792377147000025 ], [ -81.989769102999958, 28.792355286000031 ], [ -81.989690173999975, 28.792304128000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988873681999962, 28.794156201000078 ], [ -81.988766009999949, 28.794076072000053 ], [ -81.988702156999977, 28.794029748000071 ], [ -81.988640808999946, 28.794002204000037 ], [ -81.988556924999955, 28.793959636000068 ], [ -81.988480061999951, 28.793938245000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988873681999962, 28.794156201000078 ], [ -81.988934713999981, 28.794078806000073 ], [ -81.988980426999944, 28.794020031000059 ], [ -81.989009813999985, 28.793960168000069 ], [ -81.989041377999968, 28.793892687000039 ], [ -81.989078384999971, 28.793829559000073 ], [ -81.98911865599996, 28.793769696000027 ], [ -81.989156750999939, 28.793719629000066 ], [ -81.989214436999987, 28.793656501000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989214436999987, 28.793656501000044 ], [ -81.989262326999949, 28.79359772600003 ], [ -81.989342869999973, 28.793506299000057 ], [ -81.989412527999946, 28.793438817000037 ], [ -81.989483274999941, 28.793377866000071 ], [ -81.989556198999935, 28.793321269000046 ], [ -81.989621503999956, 28.793276644000059 ], [ -81.989711841999963, 28.793221134000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989711841999963, 28.793221134000078 ], [ -81.989966531999983, 28.793023043000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990458407999938, 28.794435167000074 ], [ -81.990459146999967, 28.794302620000053 ], [ -81.990437031999988, 28.794162030000052 ], [ -81.990400699999952, 28.794034078000038 ], [ -81.990350150999973, 28.793902966000076 ], [ -81.990283805, 28.793781332000037 ], [ -81.990204821999953, 28.793664437000075 ], [ -81.990117940999937, 28.79355860000004 ], [ -81.990045275999989, 28.793484356000079 ], [ -81.989961554, 28.793405373000041 ], [ -81.989879411999937, 28.793342186000075 ], [ -81.989790950999975, 28.793277420000038 ], [ -81.989711841999963, 28.793221134000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990786692999961, 28.79436116100004 ], [ -81.990458407999938, 28.794435167000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990458407999938, 28.794435167000074 ], [ -81.990356886999962, 28.794471222000027 ], [ -81.990200419999951, 28.794514612000057 ], [ -81.990077939999935, 28.794548075000023 ], [ -81.99002765399996, 28.794551870000078 ], [ -81.989975068999968, 28.794549007000057 ], [ -81.989928977999966, 28.794517713000062 ], [ -81.989891025999952, 28.794466478000061 ], [ -81.989839897999957, 28.794372285000065 ], [ -81.989783342999942, 28.794266715000049 ], [ -81.989729299999965, 28.794167428000037 ], [ -81.989686569999947, 28.794071912000049 ], [ -81.989637554999945, 28.794002788000057 ], [ -81.989593566999986, 28.793948746000069 ], [ -81.989544551999984, 28.79388842000003 ], [ -81.989481711999986, 28.79383563500005 ], [ -81.989420129999985, 28.793782850000071 ], [ -81.989349748999985, 28.793737605000047 ], [ -81.989270570999963, 28.793689847000053 ], [ -81.989214436999987, 28.793656501000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991942389999963, 28.798657318000039 ], [ -81.991927767999982, 28.79853707500007 ], [ -81.991886771999987, 28.798419945000035 ], [ -81.991822350999939, 28.798308671000029 ], [ -81.991721749999954, 28.798146776000067 ], [ -81.991630675999943, 28.798036529000058 ], [ -81.991546792999941, 28.797946255000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991215584999964, 28.797329321000063 ], [ -81.991198934999943, 28.797246070000028 ], [ -81.991174228999967, 28.797162746000026 ], [ -81.991141041999981, 28.797061233000079 ], [ -81.991101998999966, 28.796961672000066 ], [ -81.991062955999951, 28.796883585000046 ], [ -81.990998188999981, 28.796781597000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990998188999981, 28.796781597000063 ], [ -81.990926694999985, 28.796686052000041 ], [ -81.990830646999939, 28.796551716000067 ], [ -81.990742798999975, 28.796424825000031 ], [ -81.990627620999987, 28.796260842000038 ], [ -81.990514394999934, 28.796108573000026 ], [ -81.990377742999954, 28.795928973000059 ], [ -81.990281437999954, 28.795794494000063 ], [ -81.990199695999934, 28.795679677000066 ], [ -81.990111418999959, 28.795560013000056 ], [ -81.990062613999953, 28.795501447000049 ], [ -81.990010734999942, 28.795450691000042 ], [ -81.98992719499995, 28.795371566000028 ], [ -81.989844299999959, 28.795300276000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989844299999959, 28.795300276000035 ], [ -81.989734050999971, 28.795207435000066 ], [ -81.989612491999935, 28.795111013000053 ], [ -81.989520739999989, 28.795036830000072 ], [ -81.989427034999949, 28.794964600000071 ], [ -81.98936651799994, 28.794898226000043 ], [ -81.989325521999945, 28.794820139000024 ], [ -81.989255243999935, 28.794679583000061 ], [ -81.989183013999934, 28.794537074000061 ], [ -81.989128352999955, 28.794445322000058 ], [ -81.989079548999939, 28.794351618000064 ], [ -81.989042456999982, 28.794289148000075 ], [ -81.988987795999947, 28.794240344000059 ], [ -81.988921422999965, 28.794193492000034 ], [ -81.988873681999962, 28.794156201000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991215584999964, 28.797329321000063 ], [ -81.991288851999968, 28.797308058000056 ], [ -81.991437952999945, 28.797257123000065 ], [ -81.991782457999989, 28.79711635700005 ], [ -81.991954710999948, 28.797043196000061 ], [ -81.992240323999965, 28.796903986000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990998188999981, 28.796781597000063 ], [ -81.991098490999946, 28.796742637000079 ], [ -81.991240239999968, 28.796676321000064 ], [ -81.99141265999998, 28.796595085000035 ], [ -81.991493895999952, 28.796534572000041 ], [ -81.99153782999997, 28.796443388000057 ], [ -81.991530369999964, 28.796325679000063 ], [ -81.991477317999966, 28.796234495000078 ], [ -81.991370383999936, 28.796117614000025 ], [ -81.991266765999967, 28.796001562000072 ], [ -81.991162318999955, 28.795873076000078 ], [ -81.991074860999959, 28.795762654000043 ], [ -81.990962906999982, 28.795614970000031 ], [ -81.990877155999954, 28.795498253000062 ], [ -81.990810459999977, 28.795379153000056 ], [ -81.990741381999953, 28.795264818000078 ], [ -81.990700888999982, 28.79517906600006 ], [ -81.990664124999967, 28.795110449000049 ], [ -81.990618532999974, 28.79506402800007 ], [ -81.990554703999976, 28.795048278000024 ], [ -81.990489217999936, 28.795056567000074 ], [ -81.990233902999989, 28.795128685000066 ], [ -81.990067285999942, 28.795175106000045 ], [ -81.98999516799995, 28.795202461000031 ], [ -81.989938799999948, 28.795233961000065 ], [ -81.989891549999982, 28.795267119000073 ], [ -81.989844299999959, 28.795300276000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991546792999941, 28.797946255000056 ], [ -81.991486875999954, 28.797882343000026 ], [ -81.991437344999952, 28.797824024000079 ], [ -81.991371835999985, 28.797740141000077 ], [ -81.991299167999955, 28.797621507000031 ], [ -81.991256220999958, 28.797504376000063 ], [ -81.991215584999964, 28.797329321000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991546792999941, 28.797946255000056 ], [ -81.991608473999975, 28.797912117000067 ], [ -81.991654219999987, 28.797890345000042 ], [ -81.991725459999941, 28.797847940000054 ], [ -81.99178991499997, 28.797810624000078 ], [ -81.991857761999938, 28.797781789000055 ], [ -81.991923912999937, 28.797764827000037 ], [ -81.992013809999946, 28.79774616900005 ], [ -81.992093530999966, 28.797727511000062 ], [ -81.992193605999944, 28.797710550000033 ], [ -81.992312337999977, 28.797690196000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992312337999977, 28.797690196000076 ], [ -81.992388665999954, 28.797669841000072 ], [ -81.99247177899997, 28.797641006000049 ], [ -81.99255319599996, 28.797598602000051 ], [ -81.99260916999998, 28.797561286000075 ], [ -81.992671927999936, 28.797503616000029 ], [ -81.992726205999986, 28.797445946000039 ], [ -81.992782179999949, 28.797384883000063 ], [ -81.992841545999966, 28.797308555000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992841545999966, 28.797308555000029 ], [ -81.993043391999947, 28.797057520000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992602384999941, 28.798555247000024 ], [ -81.992578637999941, 28.798407680000025 ], [ -81.992544714999951, 28.798270289000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992544714999951, 28.798270289000072 ], [ -81.992483651999976, 28.798131202000036 ], [ -81.992415804999951, 28.797961584000063 ], [ -81.992341172999943, 28.797771612000076 ], [ -81.992312337999977, 28.797690196000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992544714999951, 28.798270289000072 ], [ -81.992649877999952, 28.798246543000062 ], [ -81.992768610999974, 28.798209227000029 ], [ -81.992904304999968, 28.798156645000063 ], [ -81.992963670999984, 28.798117633000061 ], [ -81.993050176999986, 28.798065051000037 ], [ -81.993123111999978, 28.798000596000065 ], [ -81.993182478999984, 28.797959888000037 ], [ -81.993284248999942, 28.797847940000054 ], [ -81.99338093199998, 28.797754650000059 ], [ -81.993470828999989, 28.797652880000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993718470999966, 28.797885256000029 ], [ -81.993616700999951, 28.797766524000053 ], [ -81.993548852999936, 28.797700373000055 ], [ -81.993470828999989, 28.797652880000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993470828999989, 28.797652880000044 ], [ -81.993397892999951, 28.797588425000072 ], [ -81.993265590999954, 28.797510400000078 ], [ -81.993138377999969, 28.797447642000066 ], [ -81.992994202999967, 28.79737979500004 ], [ -81.992841545999966, 28.797308555000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037007639999956, 28.931110540000077 ], [ -82.036359512999979, 28.931095271000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035776871999985, 28.93108154500004 ], [ -82.035457232999988, 28.931074015000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060886177999976, 28.620969713000079 ], [ -82.060927148999951, 28.620969695000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059891966999942, 28.62097497700006 ], [ -82.060886177999976, 28.620969713000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05885951199997, 28.620977838000044 ], [ -82.059891966999942, 28.62097497700006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056819184999938, 28.620976300000052 ], [ -82.056963946999986, 28.620976239000072 ], [ -82.057346336999956, 28.620976078000069 ], [ -82.057985483999971, 28.620987855000067 ], [ -82.058785396999951, 28.620985563000033 ], [ -82.05885951199997, 28.620977838000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054737671999987, 28.620981854000036 ], [ -82.055809429999954, 28.620981417000053 ], [ -82.056129526999939, 28.620983089000049 ], [ -82.056442464999975, 28.62098295900006 ], [ -82.056819184999938, 28.620976300000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128524621999986, 28.725211429000069 ], [ -82.128256844999953, 28.724887961000036 ], [ -82.128027712999938, 28.724553099000047 ], [ -82.127714652999941, 28.724076331000049 ], [ -82.127546829999972, 28.723823759000027 ], [ -82.127462934999983, 28.723710252000046 ], [ -82.127414500999976, 28.723616588000027 ], [ -82.127366034999966, 28.723497368000039 ], [ -82.127272355999935, 28.723284481000064 ], [ -82.127000945999953, 28.722611736000033 ], [ -82.126745645999961, 28.721941814000047 ], [ -82.126587381999968, 28.721595524000065 ], [ -82.126367724999966, 28.721093109000037 ], [ -82.126177119999966, 28.720638940000072 ], [ -82.126070598999945, 28.720457301000067 ], [ -82.12598021499997, 28.720301204000066 ], [ -82.125876925999989, 28.720128081000041 ], [ -82.125809144999948, 28.720017397000049 ], [ -82.125760722999985, 28.719932251000046 ], [ -82.125673635999988, 28.719838623000044 ], [ -82.125605937999978, 28.719796092000024 ], [ -82.125525357999948, 28.719756410000059 ], [ -82.125377088999983, 28.719682717000069 ], [ -82.125257815999987, 28.719611835000023 ], [ -82.125161117999937, 28.719560811000065 ], [ -82.125080523999941, 28.719509771000048 ], [ -82.125022482999952, 28.719461552000041 ], [ -82.124967627, 28.719382092000046 ], [ -82.124925642999983, 28.719291261000023 ], [ -82.124825511999973, 28.719064180000032 ], [ -82.124305505999985, 28.717897556000025 ], [ -82.124082612999985, 28.717366743000071 ], [ -82.123427019999951, 28.715933310000025 ], [ -82.122929584999952, 28.71476098200003 ], [ -82.122028525999951, 28.712728595000044 ], [ -82.121608669999944, 28.711766326000031 ], [ -82.121108061999962, 28.710599670000079 ], [ -82.121062879999954, 28.710523040000055 ], [ -82.121020932999954, 28.710457764000068 ], [ -82.120969345999981, 28.710415216000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128083833999938, 28.665047013000049 ], [ -82.128093724999985, 28.664971570000034 ], [ -82.128065110999955, 28.664510899000049 ], [ -82.128045230999987, 28.664251389000071 ], [ -82.128059761999964, 28.663971562000029 ], [ -82.128054430999953, 28.663663468000038 ], [ -82.128071494999972, 28.663429411000038 ], [ -82.128091189999964, 28.663320089000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134950301999936, 28.679680621000045 ], [ -82.135185867999951, 28.679627797000023 ], [ -82.135267245999955, 28.679516438000064 ], [ -82.135344339999961, 28.679332268000053 ], [ -82.135361472999989, 28.679075286000057 ], [ -82.135353607999946, 28.678822077000063 ], [ -82.13531781599994, 28.678643744000055 ], [ -82.135275159999935, 28.678310572000044 ], [ -82.135292571999969, 28.678024380000068 ], [ -82.135294449999947, 28.677755847000071 ], [ -82.135291939999945, 28.677532399000029 ], [ -82.135311829999978, 28.677444176000051 ], [ -82.135333947999982, 28.677359869000043 ], [ -82.135338067999953, 28.677279808000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136850774999971, 28.677148284000054 ], [ -82.137039647999984, 28.677142052000079 ], [ -82.137140130999967, 28.677137367000057 ], [ -82.137178227999982, 28.677122048000058 ], [ -82.137213180999936, 28.677087787000062 ], [ -82.137415081999961, 28.67673065300005 ], [ -82.137577560999944, 28.676437122000038 ], [ -82.137738296999942, 28.676135952000038 ], [ -82.137889272999985, 28.675845546000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033085747999962, 28.78870697800005 ], [ -82.031098688999975, 28.788699764000057 ], [ -82.029881585999988, 28.788690431000077 ], [ -82.02880844699996, 28.788694507000059 ], [ -82.027443030999962, 28.788714006000077 ], [ -82.027386253999964, 28.788712975000067 ], [ -82.027233642999988, 28.788731342000062 ], [ -82.027100591999954, 28.788739056000054 ], [ -82.026605452999945, 28.788698802000056 ], [ -82.02575915999995, 28.788723946000061 ], [ -82.025191460999963, 28.788707549000037 ], [ -82.025135257999978, 28.788705060000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025135257999978, 28.788705060000041 ], [ -82.024646745999974, 28.788674195000056 ], [ -82.023316226999953, 28.788678274000063 ], [ -82.020954001999939, 28.788655603000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054565392999962, 28.71222838400007 ], [ -82.04846407499997, 28.712168064000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04846407499997, 28.712168064000025 ], [ -82.048417660999974, 28.712181325000074 ], [ -82.048330523999937, 28.712228544000027 ], [ -82.048303157999953, 28.712262447000057 ], [ -82.048291150999944, 28.712302500000078 ], [ -82.048301411999944, 28.713867502000028 ], [ -82.048282767999979, 28.713913582000032 ], [ -82.048241716999939, 28.713946508000049 ], [ -82.047816138999963, 28.713949949000039 ], [ -82.04744655199994, 28.713936916000023 ], [ -82.047192694999978, 28.713930423000079 ], [ -82.047076962999938, 28.713920590000043 ], [ -82.046834305999937, 28.713917383000023 ], [ -82.046550584999977, 28.713914189000036 ], [ -82.046238491999986, 28.71391034800007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037138525999978, 28.715626384000075 ], [ -82.03635817299994, 28.713879856000062 ], [ -82.035545131999982, 28.712044697000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044373997999969, 28.602757956000062 ], [ -82.044358952999971, 28.600013111000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041226562999952, 28.931013113000063 ], [ -82.041142998999987, 28.93115636400006 ], [ -82.041163773999983, 28.93198086600006 ], [ -82.041190333999964, 28.932475856000053 ], [ -82.041177507999976, 28.93296669700004 ], [ -82.04118690699994, 28.933218656000065 ], [ -82.041179586999988, 28.933519704000048 ], [ -82.041172161999953, 28.933557337000025 ], [ -82.04115729199998, 28.933578612000076 ], [ -82.041144278, 28.933593340000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058880036999938, 28.613702153000077 ], [ -82.05887738499996, 28.615069864000077 ], [ -82.058884747999969, 28.616027862000067 ], [ -82.058885142999941, 28.616735817000063 ], [ -82.058890274999953, 28.617367552000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110570008999957, 28.654033112000036 ], [ -82.110610154999961, 28.653994086000068 ], [ -82.110626189999948, 28.653956851000032 ], [ -82.110632163999981, 28.653905446000067 ], [ -82.110636122999949, 28.653848725000046 ], [ -82.110640074999935, 28.653784915000074 ], [ -82.110645985999952, 28.653673247000029 ], [ -82.110663321999937, 28.653595792000033 ], [ -82.110697775999938, 28.653518220000024 ], [ -82.110769902999948, 28.653437849000056 ], [ -82.110848310999984, 28.65336024000004 ], [ -82.110936163999952, 28.653307550000079 ], [ -82.111017759999982, 28.653274250000038 ], [ -82.111140185999943, 28.653257533000044 ], [ -82.111294000999976, 28.653232481000032 ], [ -82.111460369999975, 28.653204651000067 ], [ -82.111573357999987, 28.653168555000036 ], [ -82.111661222999942, 28.653126941000039 ], [ -82.111730234999982, 28.653071496000052 ], [ -82.111783546999959, 28.653013294000061 ], [ -82.111824298999977, 28.652955103000068 ], [ -82.111861906999934, 28.652891375000024 ], [ -82.111877507999964, 28.652799971000036 ], [ -82.111880535999944, 28.652694731000054 ], [ -82.111883807999959, 28.651635978000058 ], [ -82.111883732999956, 28.651565080000069 ], [ -82.111873643999957, 28.651525210000045 ], [ -82.111848479999935, 28.651480919000051 ], [ -82.111805729999958, 28.651432213000078 ], [ -82.11176048699997, 28.651401232000069 ], [ -82.111707713999976, 28.651372475000073 ], [ -82.111642392999954, 28.651357021000024 ], [ -82.111562014999947, 28.651350440000044 ], [ -82.111471594999955, 28.651350514000058 ], [ -82.111408818999962, 28.651363859000071 ], [ -82.111091295999984, 28.651438098000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120809923999957, 28.69430802200003 ], [ -82.123124633999964, 28.694270440000025 ], [ -82.124819412999955, 28.694251140000063 ], [ -82.127174371999956, 28.694209902000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013212516999943, 28.649951216000034 ], [ -82.013206649999972, 28.647872804000031 ], [ -82.013201778999985, 28.647582843000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106263351999985, 28.669440217000044 ], [ -82.107435140999939, 28.669441677000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107435140999939, 28.669441677000066 ], [ -82.108431576999976, 28.669442918000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996953917999974, 28.929468397000051 ], [ -81.996228040999938, 28.929467602000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126386031999971, 28.663141708000069 ], [ -82.127932262999934, 28.663122624000039 ], [ -82.128029006999952, 28.66313870700003 ], [ -82.128078610999978, 28.663167079000061 ], [ -82.128103446999944, 28.663208590000067 ], [ -82.128091189999964, 28.663320089000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124983190999956, 28.663159023000048 ], [ -82.126386031999971, 28.663141708000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087952413999972, 28.653868059000047 ], [ -82.085557165999944, 28.653848796000034 ], [ -82.084350298999937, 28.653831856000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.084350298999937, 28.653831856000068 ], [ -82.082670987999961, 28.653808285000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.082670987999961, 28.653808285000025 ], [ -82.082070233999957, 28.653799853000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055624688999956, 28.646551260000024 ], [ -82.054792151999948, 28.646548237000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056191694999939, 28.646553077000078 ], [ -82.056132177999984, 28.646553102000041 ], [ -82.055624688999956, 28.646551260000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056293363999941, 28.646550618000049 ], [ -82.056191694999939, 28.646553077000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954095264999978, 28.755331350000063 ], [ -81.954095, 28.755293 ], [ -81.954087184999935, 28.755074573000059 ], [ -81.954021383999986, 28.754692032000037 ], [ -81.953986365999981, 28.754343663000043 ], [ -81.953989195999952, 28.754103598000029 ], [ -81.953994829999942, 28.75282009600005 ], [ -81.954001895999966, 28.751682585000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124961963999965, 28.659446996000042 ], [ -82.124967813999945, 28.658582668000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124967813999945, 28.658582668000065 ], [ -82.124956438999959, 28.657688029000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124983190999956, 28.663159023000048 ], [ -82.124986809999939, 28.662216851000039 ], [ -82.124980835999963, 28.661359928000024 ], [ -82.124977601999944, 28.660721606000038 ], [ -82.124973925999939, 28.659711657000059 ], [ -82.124961963999965, 28.659446996000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124926340999934, 28.668610467000065 ], [ -82.124924201999988, 28.666807185000039 ], [ -82.124940416999948, 28.664946999000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124940416999948, 28.664946999000051 ], [ -82.124983190999956, 28.663159023000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.098686627999939, 28.668481985000028 ], [ -82.098059578999937, 28.668475621000027 ], [ -82.097403955999937, 28.668473129000063 ], [ -82.096442382999953, 28.668476783000074 ], [ -82.096089347999964, 28.668468138000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104313571999967, 28.668518096000071 ], [ -82.103232300999935, 28.668518925000058 ], [ -82.102212896999959, 28.668522071000041 ], [ -82.101110098999982, 28.66851103700003 ], [ -82.099299888999951, 28.66848628200006 ], [ -82.098896430999957, 28.668486577000067 ], [ -82.098686627999939, 28.668481985000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107742550999944, 28.668527174000076 ], [ -82.107174915999963, 28.668525835000025 ], [ -82.106275456999981, 28.668521025000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109558678999974, 28.668539432000046 ], [ -82.109448937999957, 28.668538313000056 ], [ -82.108459570999969, 28.668535678000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108440703999975, 28.668535628000029 ], [ -82.107742550999944, 28.668527174000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110520937999979, 28.668549243000029 ], [ -82.109558678999974, 28.668539432000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119172250999952, 28.668589303000033 ], [ -82.119514570999968, 28.66859379400006 ], [ -82.120820392999974, 28.668594593000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118784845999983, 28.668584220000071 ], [ -82.119172250999952, 28.668589303000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020943001999967, 28.790536024000062 ], [ -82.020943020999937, 28.790534066000077 ], [ -82.020952006999948, 28.789587525000059 ], [ -82.020954001999939, 28.788655603000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020865414999946, 28.79869754200007 ], [ -82.020868705999987, 28.798174502000052 ], [ -82.02086838699995, 28.796835095000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02086838699995, 28.796835095000063 ], [ -82.020868367999981, 28.796756600000037 ], [ -82.02087376299994, 28.796030991000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071178389999943, 28.608096722000028 ], [ -82.071037738999962, 28.608105440000031 ], [ -82.070935266999982, 28.608110151000062 ], [ -82.07063491699995, 28.608107795000024 ], [ -82.070361459999958, 28.608101919000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102274180999984, 28.655831602000035 ], [ -82.102278440999953, 28.654692107000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102262171999939, 28.657550517000061 ], [ -82.102272334999952, 28.657162213000049 ], [ -82.102271611999981, 28.656776536000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102271611999981, 28.656776536000052 ], [ -82.102271289999976, 28.656604575000074 ], [ -82.102273557, 28.655998364000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102273557, 28.655998364000027 ], [ -82.102274180999984, 28.655831602000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102278440999953, 28.654692107000074 ], [ -82.102281344999938, 28.653915377000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096124437999947, 28.649310309000043 ], [ -82.096124509999981, 28.648790830000053 ], [ -82.096139204999986, 28.648326281000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030198515999984, 28.851810111000077 ], [ -82.029157826999949, 28.851397696000049 ], [ -82.028835242999946, 28.851268306000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02034016999994, 28.847723313000074 ], [ -82.019159422999962, 28.847251202000052 ], [ -82.017723425999975, 28.846675552000079 ], [ -82.01754525399997, 28.84660423400004 ], [ -82.017416392999962, 28.84655039200004 ], [ -82.017295339999976, 28.846494256000028 ], [ -82.017169079999974, 28.846435830000075 ], [ -82.017038914999944, 28.846367089000069 ], [ -82.016890525999941, 28.846284601000036 ], [ -82.016723913999954, 28.846183779000057 ], [ -82.016540376999956, 28.846064625000054 ], [ -82.016102203999935, 28.845759614000031 ], [ -82.015968899999962, 28.845663354000067 ], [ -82.015942865999989, 28.845642826000073 ], [ -82.015918459999966, 28.845623253000042 ], [ -82.015899474999969, 28.845599858000071 ], [ -82.015886997999985, 28.845576750000077 ], [ -82.015846055999987, 28.845501052000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03712978599998, 28.854585289000056 ], [ -82.036658057999944, 28.854395966000027 ], [ -82.035381452999957, 28.853879853000024 ], [ -82.034408529999951, 28.853485629000033 ], [ -82.034084471999961, 28.853356678000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020277979999946, 28.84783374400007 ], [ -82.020282219999956, 28.847835436000025 ], [ -82.020523755999989, 28.847931869000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032441444999961, 28.852702853000039 ], [ -82.031377777999978, 28.852279579000026 ], [ -82.030858900999988, 28.852072080000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028835242999946, 28.851268306000065 ], [ -82.028155469999945, 28.850995646000058 ], [ -82.028120042999944, 28.850982471000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020613460999982, 28.876089764000028 ], [ -82.020613562999984, 28.876042303000077 ], [ -82.020613423999976, 28.875335833000065 ], [ -82.020614095999974, 28.874689149000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020610513999941, 28.879159020000031 ], [ -82.02061277699994, 28.87879668100004 ], [ -82.020610777999934, 28.878131160000066 ], [ -82.020610550999947, 28.877446557000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020966227999963, 28.882758096000032 ], [ -82.020869237999989, 28.882603133000032 ], [ -82.020818325999983, 28.882521788000076 ], [ -82.020751867999934, 28.882397619000074 ], [ -82.020715492999955, 28.882284702000049 ], [ -82.020655506999958, 28.882067610000036 ], [ -82.020615806999956, 28.881714861000034 ], [ -82.020613293999986, 28.880971506000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040004151999938, 28.887317951000057 ], [ -82.040003939999963, 28.887317950000067 ], [ -82.03885766999997, 28.887311993000026 ], [ -82.037125644999946, 28.887315725000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023693015999982, 28.883672617000059 ], [ -82.02320571499996, 28.883671893000042 ], [ -82.02282368799996, 28.883669738000037 ], [ -82.022629519999953, 28.883660894000059 ], [ -82.022490827999945, 28.883644271000037 ], [ -82.022396262999962, 28.883630971000059 ], [ -82.022229825999943, 28.883591052000043 ], [ -82.022082301999944, 28.883550016000072 ], [ -82.021954949999952, 28.883503431000065 ], [ -82.021794812999985, 28.883435767000037 ], [ -82.021685471999945, 28.883382700000027 ], [ -82.021593905999964, 28.883328995000056 ], [ -82.021480832999941, 28.883254939000039 ], [ -82.02136986499994, 28.88317395100006 ], [ -82.02125889499996, 28.883081865000065 ], [ -82.021163054999988, 28.882993106000072 ], [ -82.021060904999956, 28.882876605000035 ], [ -82.020981454999969, 28.882780075000028 ], [ -82.020966227999963, 28.882758096000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059215675999951, 28.887331707000044 ], [ -82.059215251999944, 28.887331709000023 ], [ -82.05685738699998, 28.887344682000048 ], [ -82.056121674999986, 28.88734424300003 ], [ -82.054853417999936, 28.887354865000077 ], [ -82.05373455299997, 28.887361394000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036375560999943, 28.883608572000071 ], [ -82.036315959999968, 28.883609764000028 ], [ -82.035829312999965, 28.883619493000026 ], [ -82.035747422999975, 28.883621958000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020613293999986, 28.880971506000037 ], [ -82.020613287999936, 28.88096967000007 ], [ -82.020613200999946, 28.880944009000075 ], [ -82.020613023999942, 28.88004843300007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03637047999996, 28.927407936000066 ], [ -82.034272172999977, 28.92740598000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031561401999966, 28.927394437000032 ], [ -82.030866018999973, 28.927382296000076 ], [ -82.030517396999983, 28.927365252000072 ], [ -82.029909877999955, 28.927330441000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050412560999973, 28.92740288400006 ], [ -82.050401825999984, 28.927402923000045 ], [ -82.050399915999947, 28.927402930000028 ], [ -82.048931678999963, 28.927408268000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044755696999971, 28.927418492000072 ], [ -82.042959330999963, 28.927415171000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034272172999977, 28.92740598000006 ], [ -82.034084815999961, 28.927405805000035 ], [ -82.034001512999964, 28.927406425000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057822534999957, 28.927357523000069 ], [ -82.057816835999972, 28.927357561000065 ], [ -82.05781445599996, 28.927357577000066 ], [ -82.055942243999937, 28.927370051000025 ], [ -82.053645722999988, 28.927386719000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040665838999985, 28.927412956000069 ], [ -82.040168837999943, 28.927412530000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040168837999943, 28.927412530000026 ], [ -82.039586948999954, 28.927412031000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051578124999935, 28.927398648000064 ], [ -82.051577970999972, 28.927398649000054 ], [ -82.051564636999956, 28.927398697000058 ], [ -82.051564604999953, 28.927398697000058 ], [ -82.050861487999953, 28.927401253000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04797580099995, 28.927411724000024 ], [ -82.047453262999966, 28.927413680000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000753370999973, 28.865455652000037 ], [ -82.001778194999986, 28.865448614000059 ], [ -82.001989755999944, 28.865448612000023 ], [ -82.002509927999938, 28.865452090000076 ], [ -82.002860985999973, 28.865452083000037 ], [ -82.003081026999951, 28.86545355800007 ], [ -82.00339009299995, 28.865454291000049 ], [ -82.004000513999983, 28.865454176000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999949095999966, 28.865469116000043 ], [ -82.000753370999973, 28.865455652000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014452349999942, 28.865470638000033 ], [ -82.015555938999967, 28.865473474000055 ], [ -82.017674290999935, 28.865475354000068 ], [ -82.017876696999963, 28.865476805000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013657947999945, 28.865468596000028 ], [ -82.014452349999942, 28.865470638000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000880153999958, 28.865321742000049 ], [ -82.000206052999943, 28.86532464000004 ], [ -81.999966197999981, 28.865325861000031 ], [ -81.999942274999967, 28.865325983000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004152248999958, 28.865327741000044 ], [ -82.001095600999975, 28.865320816000064 ], [ -82.000880153999958, 28.865321742000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008162509999977, 28.865336573000036 ], [ -82.008120853999969, 28.86533673100007 ], [ -82.004152248999958, 28.865327741000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013656472999969, 28.865315847000034 ], [ -82.01312758399996, 28.865316924000069 ], [ -82.011487881999983, 28.865336064000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004000513999983, 28.865454176000071 ], [ -82.005551107999963, 28.865453873000035 ], [ -82.008163098999944, 28.865460619000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011487881999983, 28.865336064000076 ], [ -82.011197387999971, 28.865339455000026 ], [ -82.008282546999965, 28.865334553000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008281265999983, 28.865460807000034 ], [ -82.008626972999934, 28.865461345000028 ], [ -82.008956527999942, 28.865463869000052 ], [ -82.010436643999981, 28.865466307000077 ], [ -82.011114207999981, 28.865462746000048 ], [ -82.011255093999978, 28.865463383000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011439265999968, 28.865464280000026 ], [ -82.012344604999953, 28.865468690000057 ], [ -82.012762838999947, 28.865466296000079 ], [ -82.013657947999945, 28.865468596000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008163098999944, 28.865460619000032 ], [ -82.008281265999983, 28.865460807000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008282546999965, 28.865334553000025 ], [ -82.008162509999977, 28.865336573000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004142807999983, 28.755832139000063 ], [ -82.003639420999946, 28.755831024000031 ], [ -81.999562872999945, 28.75581479300007 ], [ -81.999278071999981, 28.755817081000032 ], [ -81.998967044999972, 28.755816591000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966623924999965, 28.755548186000055 ], [ -81.964232946999971, 28.755503905000069 ], [ -81.963464524999949, 28.755493837000074 ], [ -81.962023794999936, 28.755467342000031 ], [ -81.960244902999989, 28.755435259000024 ], [ -81.959046659999956, 28.755413868000062 ], [ -81.958221199999969, 28.755399772000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970803057999944, 28.755616646000078 ], [ -81.970751435999944, 28.755615721000026 ], [ -81.969752951999965, 28.755601201000047 ], [ -81.968749022999987, 28.755587543000047 ], [ -81.966623924999965, 28.755548186000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958221199999969, 28.755399772000032 ], [ -81.958003717999986, 28.755396058000031 ], [ -81.957382518999964, 28.755385370000056 ], [ -81.956065008999985, 28.755361214000061 ], [ -81.955675705999965, 28.755360336000024 ], [ -81.954095264999978, 28.755331350000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01642805299997, 28.90906841900005 ], [ -82.01448256499998, 28.909051756000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022636931999955, 28.90908326300007 ], [ -82.022627413999942, 28.909083285000065 ], [ -82.021540806999951, 28.909067084000071 ], [ -82.020408566999947, 28.909060680000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020408566999947, 28.909060680000039 ], [ -82.01929133699997, 28.909063631000038 ], [ -82.018511573999945, 28.909066454000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018511573999945, 28.909066454000026 ], [ -82.017347045999941, 28.909065793000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141834579999966, 28.657760041000074 ], [ -82.143466431999968, 28.657765019000067 ], [ -82.145551809999972, 28.657776188000071 ], [ -82.146231649999947, 28.657778304000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147148736999952, 28.657781159000024 ], [ -82.149844880999979, 28.657796401000041 ], [ -82.150054188999945, 28.657799007000051 ], [ -82.150236351999979, 28.657798175000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.146231649999947, 28.657778304000033 ], [ -82.147148736999952, 28.657781159000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124956438999959, 28.657688029000042 ], [ -82.125982291999946, 28.657692765000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122381264999945, 28.657670089000078 ], [ -82.124232464999977, 28.657683001000066 ], [ -82.124956438999959, 28.657688029000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.130097790999969, 28.657712197000023 ], [ -82.13112758699998, 28.657716703000062 ], [ -82.132102561999943, 28.657717501000036 ], [ -82.133140824999941, 28.657721718000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127007437999964, 28.657697497000072 ], [ -82.129070806999948, 28.657710569000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129070806999948, 28.657710569000074 ], [ -82.129442633999986, 28.657709330000046 ], [ -82.130097790999969, 28.657712197000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125982291999946, 28.657692765000036 ], [ -82.127007437999964, 28.657697497000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120853155999953, 28.657657712000059 ], [ -82.121285367999974, 28.657661363000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121285367999974, 28.657661363000045 ], [ -82.12201996999994, 28.657667569000068 ], [ -82.122381264999945, 28.657670089000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997056226999973, 28.625064419000068 ], [ -81.997054797999965, 28.625255265000078 ], [ -81.997040879999986, 28.625709233000066 ], [ -81.997035303999951, 28.626192647000039 ], [ -81.99701301999994, 28.627444125000068 ], [ -81.996987954999952, 28.628602357000034 ], [ -81.996965674999956, 28.629672248000077 ], [ -81.996943387999977, 28.630940903000067 ], [ -81.996923889999948, 28.631939632000069 ], [ -81.996898826999939, 28.633016885000075 ], [ -81.996884895999983, 28.633831572000076 ], [ -81.996865391999961, 28.634965262000037 ], [ -81.996859823999955, 28.635151757000074 ], [ -81.996860378999941, 28.635209914000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996910956999955, 28.619454674000053 ], [ -81.996943685999952, 28.620646871000076 ], [ -81.996946745999935, 28.620758057000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996946745999935, 28.620758057000046 ], [ -81.996963132999952, 28.621353591000059 ], [ -81.99698813599997, 28.622254166000062 ], [ -81.997002029999976, 28.622654148000038 ], [ -81.997018696999987, 28.623321605000058 ], [ -81.997054821999939, 28.624411130000055 ], [ -81.99705758999994, 28.624882275000061 ], [ -81.997056226999973, 28.625064419000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017410846999951, 28.609902623000039 ], [ -82.017409813999961, 28.609902625000075 ], [ -82.016705560999981, 28.609904178000079 ], [ -82.014088196999978, 28.609910610000043 ], [ -82.011988741999971, 28.609913880000079 ], [ -82.01135057099998, 28.609916032000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036534605999975, 28.609955210000066 ], [ -82.036446507999983, 28.609954849000076 ], [ -82.035081165999941, 28.609950301000026 ], [ -82.032611868999936, 28.609938648000025 ], [ -82.030511913999987, 28.609932448000052 ], [ -82.029927956999984, 28.609926443000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043217614999946, 28.609996110000054 ], [ -82.042275638999968, 28.609990271000072 ], [ -82.041515798999967, 28.609982838000064 ], [ -82.04003088199994, 28.609971015000042 ], [ -82.03836215299998, 28.609962884000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03836215299998, 28.609962884000026 ], [ -82.038128854999968, 28.609961747000057 ], [ -82.036534605999975, 28.609955210000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071242624999968, 28.602713917000074 ], [ -82.069587801999944, 28.602704442000061 ], [ -82.06861953799995, 28.602702453000063 ], [ -82.067897259999938, 28.602697764000027 ], [ -82.067146356999956, 28.602694770000028 ], [ -82.065743463999979, 28.602692583000078 ], [ -82.064998012999979, 28.602687776000039 ], [ -82.063856421999958, 28.602686596000069 ], [ -82.062962661999961, 28.602681848000032 ], [ -82.061532257999943, 28.602679059000025 ], [ -82.06099170799996, 28.602675859000044 ], [ -82.060369195999954, 28.602670972000055 ], [ -82.059736929999985, 28.602667806000056 ], [ -82.058919279999941, 28.602669887000047 ], [ -82.058171989999948, 28.602682394000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058171989999948, 28.602682394000055 ], [ -82.058074314999942, 28.602684029000045 ], [ -82.056550761999972, 28.60271812700006 ], [ -82.056238033999989, 28.602720969000075 ], [ -82.054925150999964, 28.602751570000066 ], [ -82.054715986999952, 28.602752561000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.097979549999934, 28.653883323000059 ], [ -82.097052747999953, 28.653878611000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093410687999949, 28.653753083000026 ], [ -82.093173652999951, 28.65371523500005 ], [ -82.092940203999945, 28.653674217000059 ], [ -82.092735481999966, 28.653630013000054 ], [ -82.092555897999944, 28.653588957000068 ], [ -82.092372718999968, 28.653541570000073 ], [ -82.092182356999956, 28.653494186000046 ], [ -82.092006354999967, 28.653440458000034 ], [ -82.091841124999974, 28.65338672200005 ], [ -82.091632792999974, 28.653320345000054 ], [ -82.091449595999961, 28.653250783000033 ], [ -82.091219701999989, 28.653165414000057 ], [ -82.091040086999953, 28.653086347000055 ], [ -82.090795814999979, 28.652981983000075 ], [ -82.090558722999958, 28.652874445000066 ], [ -82.090314432999946, 28.652751074000037 ], [ -82.090084500999978, 28.652618192000034 ], [ -82.089850979999937, 28.652485310000031 ], [ -82.089667746999964, 28.652371401000039 ], [ -82.089491700999986, 28.652263821000076 ], [ -82.089283315999978, 28.652130923000072 ], [ -82.089082118999954, 28.652004354000042 ], [ -82.08890607799998, 28.651899940000078 ], [ -82.08867614199994, 28.651757552000049 ], [ -82.088485718999948, 28.651630975000046 ], [ -82.088345604999972, 28.651548711000032 ], [ -82.088223454999934, 28.651475938000033 ], [ -82.088108494999972, 28.651412662000041 ], [ -82.087982758999942, 28.651346226000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102281344999938, 28.653915377000033 ], [ -82.100223881999966, 28.653898747000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100223881999966, 28.653898747000028 ], [ -82.10010032799994, 28.653897748000077 ], [ -82.098842474999969, 28.65388882600007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.097052747999953, 28.653878611000039 ], [ -82.096540383, 28.653876006000075 ], [ -82.096094526999934, 28.653872267000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096094526999934, 28.653872267000054 ], [ -82.095722213999977, 28.65386847700006 ], [ -82.095626465999942, 28.653867484000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.095626465999942, 28.653867484000045 ], [ -82.095172935999983, 28.653862782000033 ], [ -82.094628255999964, 28.653857082000059 ], [ -82.094470110999964, 28.653856876000077 ], [ -82.094337236999934, 28.653847466000059 ], [ -82.094161268999983, 28.653834919000076 ], [ -82.093970933999969, 28.653819213000077 ], [ -82.093805739999937, 28.653806657000075 ], [ -82.093622578999941, 28.653781443000071 ], [ -82.093410687999949, 28.653753083000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.150221857999952, 28.668683996000027 ], [ -82.150321904999942, 28.668682739000076 ], [ -82.151044345999935, 28.668689957000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138800842999956, 28.668607308000048 ], [ -82.138105694999979, 28.668605154000034 ], [ -82.137358574999951, 28.668604005000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138789077999945, 28.668724087000044 ], [ -82.139103685999942, 28.668725664000078 ], [ -82.13976981899998, 28.668735779000031 ], [ -82.139900657999988, 28.668739597000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134173441999963, 28.668642342000055 ], [ -82.13531385899995, 28.668645324000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133071564999966, 28.668639460000065 ], [ -82.134173441999963, 28.668642342000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120820392999974, 28.668594593000023 ], [ -82.121815480999942, 28.66860194700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122463953999954, 28.668609649000075 ], [ -82.12289560499994, 28.668614776000027 ], [ -82.123787349999986, 28.66861151300003 ], [ -82.124131299999988, 28.668613365000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121815480999942, 28.66860194700007 ], [ -82.122463953999954, 28.668609649000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124131299999988, 28.668613365000056 ], [ -82.124565202999975, 28.668615701000078 ], [ -82.124926340999934, 28.668610467000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996147580999946, 28.952217945000029 ], [ -81.996380506999969, 28.952248730000065 ], [ -81.996615620999989, 28.952277590000051 ], [ -81.996817537999959, 28.952298619000032 ], [ -81.997000550999985, 28.952316073000077 ], [ -81.997085847999983, 28.952320884000073 ], [ -81.997165227999972, 28.952321400000073 ], [ -81.997245505999956, 28.952317039000036 ], [ -81.997326430999976, 28.952305499000033 ], [ -81.997402979999947, 28.95228337900005 ], [ -81.997471874999974, 28.952257411000062 ], [ -81.997542956999951, 28.952225673000044 ], [ -81.997599820999937, 28.952192009000044 ], [ -81.997646844999963, 28.952159308000034 ], [ -81.997715740999979, 28.952104485000064 ], [ -81.99771928499996, 28.952100757000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100248059999956, 28.661247765000041 ], [ -82.101050139999984, 28.661239929000033 ], [ -82.10113180899998, 28.661241269000072 ], [ -82.101137947999973, 28.661241786000062 ], [ -82.101151561999984, 28.661246506000055 ], [ -82.101166589999934, 28.661253920000036 ], [ -82.101187958999958, 28.661266152000053 ], [ -82.101198090999958, 28.661273264000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96117518899996, 28.783983321000051 ], [ -81.961386586999936, 28.783558473000028 ], [ -81.961436079999942, 28.783329003000063 ], [ -81.961454077999974, 28.783162526000069 ], [ -81.961627304999979, 28.782663093000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045458782999958, 28.872820089000072 ], [ -82.04547077999996, 28.872820138000066 ], [ -82.047458079999956, 28.872827480000069 ], [ -82.047559412999988, 28.872827855000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016351078999946, 28.938290413000061 ], [ -82.01635115299996, 28.938296196000067 ], [ -82.016352017999964, 28.938363616000061 ], [ -82.016354768999975, 28.938985858000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016357679999942, 28.939251285000068 ], [ -82.016363855999941, 28.939792470000043 ], [ -82.01636386399997, 28.939793167000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016354768999975, 28.938985858000024 ], [ -82.016357657999947, 28.939249381000025 ], [ -82.016357679999942, 28.939251285000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037773131999984, 28.945610909000038 ], [ -82.037200691999942, 28.945606644000065 ], [ -82.036554815999978, 28.945606821000069 ], [ -82.03503537399996, 28.945597256000042 ], [ -82.035034527999983, 28.945597251000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032855616999939, 28.928657678000036 ], [ -82.03284913899995, 28.929225756000051 ], [ -82.032849361999979, 28.929934182000068 ], [ -82.032862456999965, 28.930271252000068 ], [ -82.032866327999955, 28.930891725000038 ], [ -82.03286663199998, 28.930940387000078 ], [ -82.032857338999975, 28.930962762000036 ], [ -82.032842823999943, 28.930975988000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03526915599997, 28.92660423500007 ], [ -82.03389249199995, 28.926593854000032 ], [ -82.03382070899994, 28.926593228000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03382070899994, 28.926593228000058 ], [ -82.033265903999961, 28.926591603000077 ], [ -82.032875607999983, 28.926598222000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036840171999984, 28.926604703000066 ], [ -82.036465657999941, 28.926603723000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03157835199994, 28.926609710000037 ], [ -82.031567561999964, 28.926618151000071 ], [ -82.031554598999946, 28.926642880000031 ], [ -82.03155028499998, 28.926675214000056 ], [ -82.03155245499994, 28.926703743000076 ], [ -82.031552475999945, 28.926772694000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028637295999943, 28.901879761000032 ], [ -82.026733228999944, 28.901860532000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028611853999962, 28.900721373000067 ], [ -82.028290455999979, 28.900721537000038 ], [ -82.026730509999936, 28.900723828000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024668863999977, 28.905813837000039 ], [ -82.024668859999963, 28.905814454000051 ], [ -82.024666765999939, 28.90617897900006 ], [ -82.024676013999965, 28.906940053000028 ], [ -82.024675731999935, 28.907485733000044 ], [ -82.024675921999972, 28.907799813000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024674112999946, 28.904900092000048 ], [ -82.024674110999968, 28.904900436000048 ], [ -82.024670776999983, 28.90548076400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028693204999968, 28.899623328000075 ], [ -82.026730224999937, 28.899609620000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026227868999968, 28.898513668000078 ], [ -82.025366632999976, 28.898507450000068 ], [ -82.024991315999955, 28.898507520000067 ], [ -82.024612370999989, 28.898501207000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020586714999979, 28.887324399000079 ], [ -82.020580073999952, 28.887746570000047 ], [ -82.020574469999985, 28.888311634000047 ], [ -82.020574265999983, 28.889206103000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020574778999958, 28.893691347000072 ], [ -82.020574895999971, 28.894283175000055 ], [ -82.020570447999944, 28.894468615000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020570162999945, 28.894598100000053 ], [ -82.020573145999947, 28.895360548000042 ], [ -82.020570393999947, 28.895866036000029 ], [ -82.020561544999964, 28.896962181000049 ], [ -82.020556662, 28.897465718000035 ], [ -82.020556660999944, 28.897465730000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020587061999947, 28.885425654000073 ], [ -82.020587065999962, 28.885426043000052 ], [ -82.020595491999984, 28.886361690000058 ], [ -82.020589745999985, 28.886706708000077 ], [ -82.020586714999979, 28.887324399000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020570447999944, 28.894468615000051 ], [ -82.020570142999986, 28.894592787000079 ], [ -82.020570161999956, 28.894597732000079 ], [ -82.020570162999945, 28.894598100000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020574693999947, 28.891624732000025 ], [ -82.020574693999947, 28.891624745000058 ], [ -82.020576482999957, 28.892861803000073 ], [ -82.020574778999958, 28.893691347000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020574265999983, 28.889206103000049 ], [ -82.020573967999951, 28.890511018000041 ], [ -82.020574055999987, 28.890953274000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03481775399996, 28.890879814000073 ], [ -82.034788316999936, 28.890880302000028 ], [ -82.034135579999941, 28.890891469000053 ], [ -82.033668585999976, 28.890899494000053 ], [ -82.032728607999957, 28.890902069000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036908388999962, 28.890845489000071 ], [ -82.036607704999938, 28.890848138000024 ], [ -82.035513318999961, 28.890868081000065 ], [ -82.03549626299997, 28.890868385000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03549626299997, 28.890868385000033 ], [ -82.035495871999956, 28.890868392000073 ], [ -82.035356872999955, 28.890870871000061 ], [ -82.034822034999934, 28.890879743000028 ], [ -82.03481775399996, 28.890879814000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017565221999973, 28.891430813000056 ], [ -82.01756433099996, 28.891430803000048 ], [ -82.01728602299994, 28.891427649000036 ], [ -82.017285042999958, 28.891427638000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028875607999964, 28.881995068000037 ], [ -82.028875544999948, 28.882014588000061 ], [ -82.028875676999974, 28.882491568000034 ], [ -82.028869014999941, 28.883617493000031 ], [ -82.028878500999951, 28.883683234000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02888625199995, 28.87978548600006 ], [ -82.02888623399997, 28.879787290000024 ], [ -82.028883547999953, 28.880059508000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028885818999981, 28.873687133000033 ], [ -82.028885809999963, 28.873687781000058 ], [ -82.028884219999952, 28.873808891000067 ], [ -82.028889000999982, 28.875315327000067 ], [ -82.028892286999962, 28.876129154000068 ], [ -82.028886442999976, 28.877139704000058 ], [ -82.028892352999947, 28.878150503000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028893042999982, 28.878268612000056 ], [ -82.028896084999985, 28.878788916000076 ], [ -82.028895518999946, 28.87884624700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028892352999947, 28.878150503000029 ], [ -82.028893042999982, 28.878268612000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028878500999951, 28.883683234000046 ], [ -82.028889319999962, 28.883729840000058 ], [ -82.028888101999939, 28.884409326000025 ], [ -82.028886162999981, 28.885511422000036 ], [ -82.028897820999987, 28.887095434000059 ], [ -82.02889111099995, 28.887174437000056 ], [ -82.028869670999939, 28.887227830000029 ], [ -82.028837273999955, 28.887259377000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026784297999939, 28.887298679000025 ], [ -82.025749266999981, 28.887303597000027 ], [ -82.025667823999981, 28.887303613000029 ], [ -82.025237643999958, 28.887299601000052 ], [ -82.023502913999948, 28.887331516000074 ], [ -82.022728675999986, 28.887331649000032 ], [ -82.021941947999949, 28.887329068000042 ], [ -82.021941929999969, 28.887329068000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021941929999969, 28.887329068000042 ], [ -82.021007398999984, 28.887326003000055 ], [ -82.020899679999957, 28.887326020000046 ], [ -82.020586714999979, 28.887324399000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028837273999955, 28.887259377000078 ], [ -82.028796885999952, 28.887281112000039 ], [ -82.028752005999934, 28.887292972000068 ], [ -82.028682436999986, 28.887296937000031 ], [ -82.027515471999948, 28.887295204000054 ], [ -82.026784297999939, 28.887298679000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031722697999953, 28.870951813000033 ], [ -82.031722754999976, 28.871140449000052 ], [ -82.031722975999969, 28.871868045000042 ], [ -82.031717048999951, 28.872550501000035 ], [ -82.031717089999972, 28.872652232000064 ], [ -82.031712985999945, 28.872689820000062 ], [ -82.031707180999945, 28.872721167000066 ], [ -82.031698472999949, 28.872747869000079 ], [ -82.031685701999947, 28.872771670000077 ], [ -82.031667125999945, 28.872790245000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031279651999967, 28.872816413000066 ], [ -82.029907786999956, 28.872803554000029 ], [ -82.028897489999963, 28.872798385000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031667125999945, 28.872790245000033 ], [ -82.031635198999936, 28.872801855000034 ], [ -82.03157076399998, 28.872812304000036 ], [ -82.031479518999959, 28.87281828600004 ], [ -82.031279651999967, 28.872816413000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032551947999934, 28.870300244000077 ], [ -82.032493981999949, 28.870302184000025 ], [ -82.031774542999983, 28.870296965000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033048407999956, 28.870283629000028 ], [ -82.032551947999934, 28.870300244000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020528764999938, 28.861837104000074 ], [ -82.019242287999987, 28.861851693000062 ], [ -82.018819776999976, 28.861852944000077 ], [ -82.018515117999982, 28.861835794000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01863723699995, 28.858201263000069 ], [ -82.01863704799996, 28.858201268000073 ], [ -82.018462665999948, 28.858205934000068 ], [ -82.016449304999981, 28.858199075000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019811224999955, 28.858179318000055 ], [ -82.019515382999941, 28.858177768000076 ], [ -82.01863723699995, 28.858201263000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020529348999958, 28.858183082000039 ], [ -82.019915220999962, 28.858179863000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989812235999977, 28.823493914000039 ], [ -81.987874375, 28.822167533000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028681374999962, 28.839834387000053 ], [ -82.026930086999982, 28.839855253000053 ], [ -82.026176524999983, 28.839862409000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030032991999974, 28.839846657000066 ], [ -82.030032872999982, 28.839846655000031 ], [ -82.029936748999944, 28.839845032000028 ], [ -82.028681374999962, 28.839834387000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026176524999983, 28.839862409000034 ], [ -82.025607305999984, 28.839867814000058 ], [ -82.025169486999971, 28.839888401000053 ], [ -82.025034416999972, 28.839904831000069 ], [ -82.024913113999958, 28.839936544000068 ], [ -82.024857224999948, 28.839955942000074 ], [ -82.024816268999984, 28.839979991000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998733077999987, 28.832199415000048 ], [ -81.997989323999946, 28.833044498000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999075650999941, 28.83181017000004 ], [ -81.998733077999987, 28.832199415000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999462444999949, 28.832702590000054 ], [ -81.999249492, 28.832942149000075 ], [ -81.998714811999946, 28.833549441000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999805327999979, 28.832316867000031 ], [ -81.999462444999949, 28.832702590000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010800967999955, 28.837480678000077 ], [ -82.010774306999963, 28.838666560000036 ], [ -82.010770529999945, 28.839138217000027 ], [ -82.010782013999972, 28.839198859000078 ], [ -82.010801150999953, 28.839259769000023 ], [ -82.010835439999937, 28.839307200000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03722959299995, 28.836231205000047 ], [ -82.037223224999934, 28.838096550000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03917353099996, 28.927411676000077 ], [ -82.039173784999946, 28.928151367000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03917385699998, 28.928362075000052 ], [ -82.039173925999989, 28.928561139000067 ], [ -82.039173079999955, 28.928862601000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038102810999987, 28.931073292000065 ], [ -82.037596912999959, 28.931076130000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047998138999958, 28.926104039000052 ], [ -82.047990854999966, 28.926115264000032 ], [ -82.047985394999955, 28.926129693000064 ], [ -82.047983582999962, 28.926148931000057 ], [ -82.04798177899994, 28.926189007000062 ], [ -82.047980303999964, 28.926945642000078 ], [ -82.04797580099995, 28.927411724000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048903726999981, 28.926087684000038 ], [ -82.04891831499998, 28.926108517000046 ], [ -82.048925615999963, 28.926135768000051 ], [ -82.048931096999979, 28.926166223000052 ], [ -82.048934759999952, 28.926206298000068 ], [ -82.048933203999979, 28.926773774000026 ], [ -82.048931678999963, 28.927408268000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053657142999953, 28.942020198000023 ], [ -82.053657192999935, 28.942041204000077 ], [ -82.053657509999937, 28.942175271000053 ], [ -82.05363938399995, 28.943422636000037 ], [ -82.053639889999943, 28.944404014000042 ], [ -82.053638242999966, 28.945627478000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053734351999935, 28.872774038000045 ], [ -82.053730684999948, 28.873749925000027 ], [ -82.053727263999974, 28.87520274700006 ], [ -82.053723386999934, 28.875767734000078 ], [ -82.053723763999983, 28.876501482000037 ], [ -82.053724418999934, 28.877774533000036 ], [ -82.053727630999958, 28.878675531000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053663177999965, 28.92552762300005 ], [ -82.05366195199997, 28.926509891000023 ], [ -82.053662506999956, 28.926662004000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05364524099997, 28.921530884000049 ], [ -82.053647471999966, 28.922683430000063 ], [ -82.053648988999953, 28.922911806000059 ], [ -82.053648989999942, 28.922911888000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053651122999952, 28.920018321000043 ], [ -82.053650558999948, 28.920122369000069 ], [ -82.053644630999941, 28.921215946000075 ], [ -82.053645236999955, 28.921529527000075 ], [ -82.05364524099997, 28.921530884000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053648989999942, 28.922911888000044 ], [ -82.05365199299996, 28.923363975000029 ], [ -82.053653864999944, 28.923806693000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053665151999951, 28.916525485000079 ], [ -82.052558226999963, 28.916530033000072 ], [ -82.050992856999983, 28.916516663000039 ], [ -82.049543192999977, 28.916509220000023 ], [ -82.049506195999982, 28.916509097000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039049294999984, 28.916457475000072 ], [ -82.038051021999934, 28.916459137000061 ], [ -82.037117001999945, 28.916462585000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041241744, 28.916468424000072 ], [ -82.041165085999978, 28.916462140000078 ], [ -82.040552546999947, 28.916448353000078 ], [ -82.040163692999954, 28.916451579000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045388012999979, 28.909217451000075 ], [ -82.045380944999977, 28.909217419000072 ], [ -82.044224713999938, 28.909212230000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040207897999949, 28.909196247000068 ], [ -82.03914737499997, 28.909192155000028 ], [ -82.038387717999967, 28.909187788000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038387717999967, 28.909187788000054 ], [ -82.037894016999985, 28.909184950000054 ], [ -82.037098861999937, 28.909177131000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061050605999981, 28.848739916000056 ], [ -82.061013646999982, 28.84887580700007 ], [ -82.061004434999973, 28.848957336000069 ], [ -82.060946275999981, 28.849791633000052 ], [ -82.06086666799996, 28.850894971000059 ], [ -82.060802247999959, 28.851582525000026 ], [ -82.060802320999983, 28.851707530000056 ], [ -82.060805459999983, 28.851797205000025 ], [ -82.060817866999969, 28.851903183000047 ], [ -82.060842625999953, 28.852014588000031 ], [ -82.060882822999986, 28.852136857000062 ], [ -82.060929189999968, 28.852250971000046 ], [ -82.060997169999951, 28.852375944000073 ], [ -82.061058958, 28.852468311000052 ], [ -82.061203146999958, 28.852644730000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05147475299998, 28.901934699000037 ], [ -82.051474669999948, 28.901934699000037 ], [ -82.050063272999978, 28.901927427000032 ], [ -82.047864071999982, 28.901915761000055 ], [ -82.04753802, 28.901915512000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04753802, 28.901915512000073 ], [ -82.047537335999948, 28.901915511000027 ], [ -82.045949329999985, 28.901914297000076 ], [ -82.045517674999985, 28.901913442000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045517674999985, 28.901913442000023 ], [ -82.045422568999982, 28.901913180000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049838260999934, 28.860609261000036 ], [ -82.049779693999938, 28.860630253000068 ], [ -82.049716831999945, 28.860654341000043 ], [ -82.049650078999946, 28.860662411000078 ], [ -82.04957785199997, 28.860673402000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120829519999972, 28.685955800000045 ], [ -82.120829321999963, 28.685782758000073 ], [ -82.120826890999979, 28.683665920000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120826890999979, 28.683665920000067 ], [ -82.120826789999967, 28.683577571000058 ], [ -82.120814738999968, 28.683220712000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109923796999965, 28.69043328500004 ], [ -82.112422564999974, 28.690438160000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127123950999987, 28.68325365000004 ], [ -82.127132925999945, 28.682613850000052 ], [ -82.127140459999964, 28.681737203000068 ], [ -82.127133633999961, 28.681618891000028 ], [ -82.127090405, 28.681548359000033 ], [ -82.127008496999963, 28.681505130000062 ], [ -82.126940239999954, 28.681473277000066 ], [ -82.126915212999961, 28.681405020000057 ], [ -82.126910661999943, 28.68131401100004 ], [ -82.126928863999979, 28.680626893000067 ], [ -82.126928863999979, 28.680408472000067 ], [ -82.126926588999936, 28.680226454000035 ], [ -82.126928863999979, 28.679914748000044 ], [ -82.126941701999954, 28.679605330000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013564439999982, 28.798774456000046 ], [ -82.013564430999963, 28.798776583000063 ], [ -82.013560368999947, 28.799661151000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027078896999967, 28.801535404000049 ], [ -82.027063662999979, 28.802639721000048 ], [ -82.027069456999982, 28.803215737000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027103324999985, 28.799711247000062 ], [ -82.027086334999979, 28.800996209000061 ], [ -82.027085169999964, 28.801080677000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103561912999965, 28.799104923000073 ], [ -82.101694071999987, 28.799313613000038 ], [ -82.099501658999941, 28.799523631000056 ], [ -82.096916938999982, 28.799805049000042 ], [ -82.096478445999935, 28.799840940000024 ], [ -82.095985040999949, 28.799856025000054 ], [ -82.095522542999959, 28.799857638000049 ], [ -82.094595083999934, 28.799852717000078 ], [ -82.091211892999979, 28.79986069000006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091211892999979, 28.79986069000006 ], [ -82.087828096999942, 28.799868665000076 ], [ -82.082858070999976, 28.799874398000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053929698, 28.801674431000038 ], [ -82.052824517999966, 28.801668802000052 ], [ -82.052551277999953, 28.801670295000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052551277999953, 28.801670295000065 ], [ -82.051850298999966, 28.801674125000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051850298999966, 28.801674125000034 ], [ -82.051629826999942, 28.801675330000023 ], [ -82.051227710999967, 28.801683155000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049736340999971, 28.801814783000054 ], [ -82.049620165999954, 28.801864106000039 ], [ -82.049522860999957, 28.801925548000042 ], [ -82.049444042999937, 28.801970269000037 ], [ -82.04929051199997, 28.802079305000063 ], [ -82.048972550999963, 28.80235788400006 ], [ -82.048544652999965, 28.802732584000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048544652999965, 28.802732584000069 ], [ -82.047205584999972, 28.803898661000062 ], [ -82.046372127999973, 28.804628734000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053962255999977, 28.794296380000048 ], [ -82.053969396999946, 28.794947008000065 ], [ -82.053959575999954, 28.795702583000036 ], [ -82.053936724999971, 28.797600514000067 ], [ -82.053933649999976, 28.798236154000051 ], [ -82.053931553999973, 28.798917880000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053931553999973, 28.798917880000033 ], [ -82.053928747999976, 28.799830599000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064743483999962, 28.741472748000035 ], [ -82.064350728999955, 28.741487007000046 ], [ -82.063980321999964, 28.741489998000077 ], [ -82.063574787999983, 28.741493004000063 ], [ -82.063252281999951, 28.741504411000051 ], [ -82.06303805899995, 28.74149985300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065436399999953, 28.74146115800005 ], [ -82.065251183999976, 28.741444362000038 ], [ -82.065107497999975, 28.741455687000041 ], [ -82.064743483999962, 28.741472748000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066442768999934, 28.734141952000073 ], [ -82.065706200999955, 28.734143821000032 ], [ -82.064897163999944, 28.734148263000066 ], [ -82.063943705999975, 28.734156292000023 ], [ -82.063069930999973, 28.734147102000065 ], [ -82.062898601999962, 28.73415525300004 ], [ -82.062847680999937, 28.734152412000071 ], [ -82.062803263999967, 28.734161983000035 ], [ -82.062772720999988, 28.734178995000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069792753999934, 28.734125567000035 ], [ -82.067118655999934, 28.734140237000076 ], [ -82.066442768999934, 28.734141952000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091632396999955, 28.747031052000068 ], [ -82.091659969999967, 28.746347478000075 ], [ -82.091683655999987, 28.745139567000024 ], [ -82.091686730999982, 28.744963276000078 ], [ -82.091689847999987, 28.744811481000056 ], [ -82.09169944599995, 28.744636766000042 ], [ -82.091698442999984, 28.743488285000069 ], [ -82.091694692999965, 28.742915478000043 ], [ -82.091703330999962, 28.741643835000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065606625999976, 28.748853504000067 ], [ -82.065622555999937, 28.748022357000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104253421999942, 28.683128932000045 ], [ -82.105810744999985, 28.683107378000045 ], [ -82.10742345999995, 28.683104073000038 ], [ -82.10785051199997, 28.683105960000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109159176999981, 28.68310828500006 ], [ -82.109785655999985, 28.683107225000072 ], [ -82.110169027999973, 28.683128316000079 ], [ -82.11028670099995, 28.683134324000036 ], [ -82.110743990999936, 28.683155900000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10785051199997, 28.683105960000034 ], [ -82.108343944999945, 28.683108141000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108343944999945, 28.683108141000048 ], [ -82.108593204999977, 28.683109243000047 ], [ -82.109159176999981, 28.68310828500006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104267128999936, 28.677705693000064 ], [ -82.104789122999989, 28.677703161000068 ], [ -82.105621018999955, 28.677709873000026 ], [ -82.106231278999985, 28.677709518000029 ], [ -82.107249267999975, 28.677711209000051 ], [ -82.107490281999958, 28.677709348000064 ], [ -82.107706128999951, 28.677713375000053 ], [ -82.108112422999966, 28.677717251000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108190339999965, 28.680606465000039 ], [ -82.108189984999967, 28.679221981000069 ], [ -82.108213744999944, 28.677922410000065 ], [ -82.108202355999936, 28.677845113000046 ], [ -82.108182498999952, 28.677785279000034 ], [ -82.108112422999966, 28.677717251000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108190443999945, 28.681007554000075 ], [ -82.108190339999965, 28.680606465000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109879439999986, 28.670319747000065 ], [ -82.109922786999959, 28.670321362000038 ], [ -82.110794126999963, 28.670344324000041 ], [ -82.111174053999946, 28.670360401000039 ], [ -82.111310328999934, 28.670363931000054 ], [ -82.111405287999958, 28.670345644000065 ], [ -82.111448622999944, 28.67032193600005 ], [ -82.11148781299994, 28.670285483000043 ], [ -82.111529030999975, 28.670212611000068 ], [ -82.111557793999964, 28.67007783400004 ], [ -82.111582368999962, 28.669886611000038 ], [ -82.111623163, 28.669416764000061 ], [ -82.111672197999951, 28.668926880000072 ], [ -82.111702258999969, 28.668556513000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108774754999956, 28.670278585000062 ], [ -82.109879439999986, 28.670319747000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103301137999949, 28.65729536300006 ], [ -82.103307328999961, 28.655715306000047 ], [ -82.103307924999967, 28.655593754000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103312319999986, 28.654697096000064 ], [ -82.103316119999988, 28.653921814000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103311337999969, 28.654897488000074 ], [ -82.103312319999986, 28.654697096000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103309158999934, 28.655341966000037 ], [ -82.103311337999969, 28.654897488000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103307924999967, 28.655593754000051 ], [ -82.103309158999934, 28.655341966000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103300054999977, 28.657571697000037 ], [ -82.103301137999949, 28.65729536300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000955504999979, 28.67901101700005 ], [ -82.000939150999955, 28.678261379000048 ], [ -82.000942043999942, 28.677255222000042 ], [ -82.000940803999981, 28.676747998000053 ], [ -82.00093155199994, 28.676389180000058 ], [ -82.000936571999944, 28.675449833000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000991445999944, 28.682444736000036 ], [ -82.000997249999955, 28.682326968000041 ], [ -82.00099143999995, 28.681840530000045 ], [ -82.000976914999967, 28.680780611000046 ], [ -82.000956576999954, 28.679060159000073 ], [ -82.000955504999979, 28.67901101700005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000897756999962, 28.664412508000055 ], [ -82.000887885999987, 28.66034247500005 ], [ -82.000884078999945, 28.659081340000057 ], [ -82.000906287999953, 28.657069576000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991073216999951, 28.656972636000035 ], [ -81.991145901999971, 28.657024786000079 ], [ -81.991199244999962, 28.657063058000062 ], [ -81.991306306999945, 28.657123521000074 ], [ -81.991497924999976, 28.657208906000051 ], [ -81.991671371999985, 28.657286812000052 ], [ -81.991796897999961, 28.657341436000024 ], [ -81.991884382999956, 28.657386249000069 ], [ -81.992163774999938, 28.657528161000073 ], [ -81.992293591999953, 28.657610318000025 ], [ -81.992395185999953, 28.657702430000029 ], [ -81.992468557999985, 28.657782094000027 ], [ -81.992524998999954, 28.657844333000071 ], [ -81.992598369999939, 28.657968806000042 ], [ -81.992640695999967, 28.658073362000039 ], [ -81.99268019799996, 28.658205300000077 ], [ -81.992704303999972, 28.658324177000054 ], [ -81.992711222999958, 28.658499049000056 ], [ -81.992705565999984, 28.658693220000032 ], [ -81.992712, 28.659687688000076 ], [ -81.992706552999948, 28.660777499000062 ], [ -81.99268877999998, 28.663260179000076 ], [ -81.99268432599996, 28.663502846000029 ], [ -81.992663429999936, 28.663624210000023 ], [ -81.992640820999952, 28.663706798000078 ], [ -81.992607718999977, 28.663799352000069 ], [ -81.99256735299997, 28.663874106000037 ], [ -81.992470473999958, 28.664027175000058 ], [ -81.992345345, 28.664158883000027 ], [ -81.992183893999936, 28.664265670000077 ], [ -81.992006296999989, 28.664354655000068 ], [ -81.991723758999967, 28.664454314000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127007437999964, 28.657697497000072 ], [ -82.127005362999967, 28.657245696000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127003404999982, 28.656852788000037 ], [ -82.126991994999969, 28.655981716000042 ], [ -82.127011681999988, 28.655907288000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127005362999967, 28.657245696000075 ], [ -82.127003614999978, 28.656865164000067 ], [ -82.127003404999982, 28.656852788000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974304200999939, 28.653476100000034 ], [ -81.973864653999954, 28.65347601600007 ], [ -81.973573929999986, 28.653472905000058 ], [ -81.973255515999938, 28.653478949000032 ], [ -81.972224135999966, 28.653478741000072 ], [ -81.970441717999961, 28.653478364000023 ], [ -81.967859804999989, 28.653483883000035 ], [ -81.965585923999981, 28.653486376000046 ], [ -81.963917717999948, 28.653485942000032 ], [ -81.960363263999966, 28.653491055000075 ], [ -81.958321963999936, 28.653483359000063 ], [ -81.957167244999937, 28.653486281000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98445406899998, 28.653443813000024 ], [ -81.984354966999945, 28.653444051000065 ], [ -81.982368349999945, 28.653449912000042 ], [ -81.980360966999967, 28.653449636000062 ], [ -81.978062855999951, 28.653458442000044 ], [ -81.976141920999964, 28.653466942000023 ], [ -81.976141819999953, 28.653466942000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986891882999942, 28.653456531000074 ], [ -81.986744585999986, 28.653438321000067 ], [ -81.98445406899998, 28.653443813000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976141819999953, 28.653466942000023 ], [ -81.976069315999951, 28.653467263000039 ], [ -81.974304200999939, 28.653476100000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982924781999941, 28.64617940200003 ], [ -81.982526022999934, 28.646179630000063 ], [ -81.982145021999941, 28.646180381000079 ], [ -81.981958625999937, 28.646180749000052 ], [ -81.98185084499994, 28.646173502000067 ], [ -81.981754127999977, 28.64616581100006 ], [ -81.981679403999976, 28.646158825000043 ], [ -81.98159764199994, 28.646147444000064 ], [ -81.981488835999983, 28.646129740000049 ], [ -81.981391865999967, 28.646100048000051 ], [ -81.981289337999954, 28.646065981000049 ], [ -81.981210885999985, 28.646036991000074 ], [ -81.981147616999976, 28.646009074000062 ], [ -81.981077834999951, 28.645976029000053 ], [ -81.980989045999934, 28.645931319000056 ], [ -81.980904369999962, 28.645881574000043 ], [ -81.98080846199997, 28.645819430000074 ], [ -81.980751164999958, 28.645775895000043 ], [ -81.980698606999965, 28.645735048000063 ], [ -81.980654585999957, 28.645693228000027 ], [ -81.980617799999948, 28.645657813000071 ], [ -81.980583085999967, 28.645620209000072 ], [ -81.980540592999944, 28.645568507000064 ], [ -81.98050490199995, 28.645520417000057 ], [ -81.980459891999942, 28.645457278000038 ], [ -81.980411978999939, 28.645390083000052 ], [ -81.980384483999956, 28.645355380000069 ], [ -81.980359065999949, 28.645334653000077 ], [ -81.980327598999963, 28.645317688000034 ], [ -81.980286435999972, 28.645305393000058 ], [ -81.980231406999962, 28.645301482000036 ], [ -81.980180037999958, 28.645297494000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984142237999947, 28.646183883000049 ], [ -81.983548298999949, 28.646179046000043 ], [ -81.982924781999941, 28.64617940200003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984402393999972, 28.646186002000036 ], [ -81.984142237999947, 28.646183883000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046491928999956, 28.602693162000037 ], [ -82.045362366999939, 28.602729148000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045362366999939, 28.602729148000037 ], [ -82.044700760999945, 28.602740048000044 ], [ -82.044373997999969, 28.602757956000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046491928999956, 28.602693162000037 ], [ -82.046491400999969, 28.601775288000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065152295999951, 28.615003935000061 ], [ -82.065151496999988, 28.613708321000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065163493999989, 28.620975256000065 ], [ -82.065159496999968, 28.620032322000043 ], [ -82.065161339999975, 28.618591706000075 ], [ -82.065161016, 28.618067518000032 ], [ -82.065160645999981, 28.617468015000043 ], [ -82.065160331999948, 28.617374895000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065160331999948, 28.617374895000069 ], [ -82.065159282999957, 28.617063309000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065159282999957, 28.617063309000059 ], [ -82.065156465999962, 28.616226835000077 ], [ -82.065154130999986, 28.615595306000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065154130999986, 28.615595306000046 ], [ -82.065152366999939, 28.615118208000069 ], [ -82.065152295999951, 28.615003935000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062900665999962, 28.610042539000062 ], [ -82.062232260999963, 28.610016803000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075438685999984, 28.650178441000037 ], [ -82.075438560999942, 28.650003155000036 ], [ -82.075438387999952, 28.649761211000055 ], [ -82.075437186999977, 28.649241712000048 ], [ -82.075446535999959, 28.648780655000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108496084999956, 28.652719639000054 ], [ -82.108500035999953, 28.651678333000064 ], [ -82.10850138099994, 28.650543977000041 ], [ -82.108499906999953, 28.650279934000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108498741999938, 28.653959174000079 ], [ -82.108494773999951, 28.653641636000032 ], [ -82.108496084999956, 28.652719639000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108499906999953, 28.650279934000025 ], [ -82.108498300999941, 28.649992311000062 ], [ -82.108497702999955, 28.649411840000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102262171999939, 28.657550517000061 ], [ -82.101531984999951, 28.657542302000024 ], [ -82.100188854999942, 28.657524015000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114832020999984, 28.668572806000043 ], [ -82.114847845999975, 28.669484958000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062203131999979, 28.809493260000067 ], [ -82.062193546999936, 28.810748768000053 ], [ -82.062189366999974, 28.810787643000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062240248999956, 28.805321309000078 ], [ -82.062240383999949, 28.805547514000068 ], [ -82.062230599999964, 28.806466401000023 ], [ -82.062225842999965, 28.807152071000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062225842999965, 28.807152071000075 ], [ -82.062209550999967, 28.808707810000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062209550999967, 28.808707810000044 ], [ -82.06220301999997, 28.809305239000025 ], [ -82.062203131999979, 28.809493260000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069138429999953, 28.60766058400003 ], [ -82.069127119999962, 28.607583813000076 ], [ -82.06911744699994, 28.607537597000032 ], [ -82.069105624999963, 28.607501054000068 ], [ -82.069081978999975, 28.607449464000069 ], [ -82.069063707999987, 28.60742366900007 ], [ -82.069038987999988, 28.607384977000038 ], [ -82.069023939999965, 28.607347359000073 ], [ -82.069009190999964, 28.607304351000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01861024599998, 28.832792698000048 ], [ -82.018607990999953, 28.833324388000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018607990999953, 28.833324388000051 ], [ -82.018598675999954, 28.833791946000076 ], [ -82.018596337999952, 28.833854012000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100248062999981, 28.66124774900004 ], [ -82.100232028999983, 28.662028306000025 ], [ -82.100247646999946, 28.662542815000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100247646999946, 28.662542815000052 ], [ -82.100247981999985, 28.662895718000073 ], [ -82.100244276999945, 28.663572756000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100244276999945, 28.663572756000065 ], [ -82.100229682999952, 28.664023434000057 ], [ -82.100219367999955, 28.664879896000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972463092999988, 28.908295095000028 ], [ -81.972264295999935, 28.908347379000077 ], [ -81.972181037999974, 28.908375766000063 ], [ -81.972073991999935, 28.908414613000048 ], [ -81.971961846999989, 28.908457944000077 ], [ -81.971904074999941, 28.90848035700003 ], [ -81.97181231999997, 28.908513226000025 ], [ -81.971718864999957, 28.90854908700004 ], [ -81.97164749999996, 28.908575982000059 ], [ -81.971520205, 28.908628037000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104362079999987, 28.667577772000072 ], [ -82.104332312999986, 28.667772369000033 ], [ -82.104321529999936, 28.667885280000064 ], [ -82.104316170999937, 28.667974164000043 ], [ -82.104316289999986, 28.668094272000076 ], [ -82.104313741999988, 28.66827203500003 ], [ -82.104313571999967, 28.668518096000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020123856999987, 28.848344828000052 ], [ -82.020472324999957, 28.848486216000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137456071999964, 28.665081677000046 ], [ -82.137484943999937, 28.665067927000052 ], [ -82.137527156999965, 28.665058084000066 ], [ -82.137618266999937, 28.665054072000032 ], [ -82.137704938999946, 28.665053984000053 ], [ -82.140544753999961, 28.665086097000028 ], [ -82.141553797999961, 28.665083632000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142472060999978, 28.665092098000059 ], [ -82.142931269999963, 28.665097934000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141553797999961, 28.665083632000062 ], [ -82.14176520999996, 28.665083115000073 ], [ -82.142012946999955, 28.665086263000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142012946999955, 28.665086263000035 ], [ -82.142472060999978, 28.665092098000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142931269999963, 28.665097934000073 ], [ -82.143162916999984, 28.665100878000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143162916999984, 28.665100878000032 ], [ -82.143331993999936, 28.665103027000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137137536999944, 28.675523790000057 ], [ -82.137189054999965, 28.675516823000066 ], [ -82.137329375999968, 28.675504075000049 ], [ -82.137456612999983, 28.675479450000068 ], [ -82.137580108999941, 28.675462565000032 ], [ -82.137671061999981, 28.675456743000041 ], [ -82.137782817999948, 28.675461213000062 ], [ -82.137920569999949, 28.675471386000027 ], [ -82.138006598999937, 28.675477601000068 ], [ -82.138076785999942, 28.675491585000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104301843999963, 28.653930165000077 ], [ -82.104332437999972, 28.653094706000047 ], [ -82.104344868999988, 28.652049411000064 ], [ -82.104255233999936, 28.64713806900005 ], [ -82.10386909999994, 28.646626302000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112198799999987, 28.669110027000045 ], [ -82.112201158999937, 28.669236351000052 ], [ -82.112222333999966, 28.669580038000049 ], [ -82.112213301999986, 28.66998047800007 ], [ -82.112185281999984, 28.670315864000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112114375999965, 28.670988586000078 ], [ -82.112082291999968, 28.671310356000049 ], [ -82.112042906999989, 28.671634070000039 ], [ -82.111981085999957, 28.672206405000054 ], [ -82.111906131999945, 28.672883866000063 ], [ -82.11183304399998, 28.673537966000026 ], [ -82.111744922999947, 28.674287179000032 ], [ -82.111660395999934, 28.674861203000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111660395999934, 28.674861203000034 ], [ -82.111568618999968, 28.675733887000035 ], [ -82.111484283999971, 28.676489772000025 ], [ -82.111390557999982, 28.67731240300003 ], [ -82.111313711999969, 28.67799653700007 ], [ -82.111203151999973, 28.679002714000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111203151999973, 28.679002714000035 ], [ -82.111083206999979, 28.680083977000038 ], [ -82.110982045999947, 28.681038423000075 ], [ -82.110852701999988, 28.682181427000046 ], [ -82.110743990999936, 28.683155900000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112227213999972, 28.668570610000074 ], [ -82.11219112699996, 28.668699113000059 ], [ -82.112198799999987, 28.669110027000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112185281999984, 28.670315864000031 ], [ -82.112127213999941, 28.670859832000076 ], [ -82.112114375999965, 28.670988586000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019972977999942, 28.851567595000063 ], [ -82.020435114999941, 28.85156710900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004140728999971, 28.78223317100003 ], [ -82.004140025999959, 28.781736745000046 ], [ -82.004137628999956, 28.779875711000045 ], [ -82.004124696999952, 28.779558579000025 ], [ -82.004096939999954, 28.779242031000024 ], [ -82.004058132999944, 28.778948950000029 ], [ -82.004004775999988, 28.778646258000038 ], [ -82.003942188999986, 28.778362178000066 ], [ -82.00383730599998, 28.777962569000067 ], [ -82.003743011999973, 28.777662169000052 ], [ -82.003667729999961, 28.777450986000076 ], [ -82.003585297999962, 28.777239101000077 ], [ -82.003464855999937, 28.776964650000025 ], [ -82.00333956299994, 28.776702304000025 ], [ -82.003203647999953, 28.776443083000061 ], [ -82.003030742999954, 28.776138816000071 ], [ -82.002547547999939, 28.775433315000043 ], [ -82.001788097999963, 28.774436511000033 ], [ -82.000958623999963, 28.773348254000041 ], [ -81.999993834999941, 28.772086906000027 ], [ -81.999584525999978, 28.771552242000041 ], [ -81.998563870999988, 28.770214873000043 ], [ -81.998179972999935, 28.769698421000044 ], [ -81.997684770999967, 28.769056386000045 ], [ -81.99731228099995, 28.768559795000044 ], [ -81.997127284999976, 28.768291956000041 ], [ -81.99704348399996, 28.768162431000064 ], [ -81.996965413999988, 28.768031841000038 ], [ -81.996876757999985, 28.767880265000031 ], [ -81.996769578999988, 28.767684380000048 ], [ -81.996642553999948, 28.767433696000069 ], [ -81.996565809999936, 28.767262297000059 ], [ -81.996471865, 28.767047758000047 ], [ -81.996408352999936, 28.766889187000061 ], [ -81.996297208999977, 28.766581371000029 ], [ -81.996197976999952, 28.766268890000049 ], [ -81.99612809599995, 28.765997984000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99612809599995, 28.765997984000023 ], [ -81.996128067999962, 28.765997877000075 ], [ -81.996104298999967, 28.765905733000068 ], [ -81.996063024999955, 28.765732545000049 ], [ -81.996010430999945, 28.765442928000027 ], [ -81.995983646999946, 28.765301136000062 ], [ -81.995962480999935, 28.76514839500004 ], [ -81.995936023999946, 28.764896548000024 ], [ -81.99592279899997, 28.764719322000076 ], [ -81.995910934999984, 28.764394198000048 ], [ -81.99590847199994, 28.764054939000061 ], [ -81.995908469999961, 28.764054610000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995902669999964, 28.761250869000037 ], [ -81.995901351999976, 28.759626356000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995904184999972, 28.763117632000046 ], [ -81.995903286999976, 28.762011192000045 ], [ -81.995903281999972, 28.762005307000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995905538999978, 28.763651080000045 ], [ -81.995904501999973, 28.763508227000045 ], [ -81.995904186999951, 28.763119646000064 ], [ -81.995904184999972, 28.763117632000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995908469999961, 28.764054610000073 ], [ -81.995905542999935, 28.763651602000039 ], [ -81.995905538999978, 28.763651080000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004313651999951, 28.786628412000027 ], [ -82.004184532999943, 28.785588056000051 ], [ -82.004163251999955, 28.785336954000059 ], [ -82.004146225999989, 28.78510084100003 ], [ -82.00414333699996, 28.784984055000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995903281999972, 28.762005307000038 ], [ -81.995902669999964, 28.761250869000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020545136999942, 28.866529181000033 ], [ -82.02054637599997, 28.866959048000069 ], [ -82.020552481999971, 28.867020672000024 ], [ -82.020568161999961, 28.867071121000038 ], [ -82.020598785999937, 28.86711662700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019320114999971, 28.874625583000068 ], [ -82.019578740999975, 28.874654631000055 ], [ -82.019862373999956, 28.874659133000023 ], [ -82.019881814999962, 28.874659375000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020610550999947, 28.877446557000042 ], [ -82.020613460999982, 28.876089764000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122463210999967, 28.664929640000025 ], [ -82.122763793999979, 28.664933510000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141057199999977, 28.675861269000052 ], [ -82.141342700999985, 28.675985378000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114847721, 28.670336645000077 ], [ -82.115206375999946, 28.670337129000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115206375999946, 28.670337129000075 ], [ -82.116548507999937, 28.670338942000058 ], [ -82.11666517599997, 28.670340258000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11331185399996, 28.669492688000048 ], [ -82.113988386999949, 28.669489283000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114847845999975, 28.669484958000055 ], [ -82.115360512999985, 28.669488656000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115360512999985, 28.669488656000055 ], [ -82.116299825999988, 28.669495432000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122921473999952, 28.659427162000043 ], [ -82.123328752999953, 28.659430298000075 ], [ -82.123761977999948, 28.659429903000046 ], [ -82.123932175999983, 28.659435899000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020529249999981, 28.857017916000075 ], [ -82.020529134999947, 28.85709302600003 ], [ -82.020526706999988, 28.857983417000071 ], [ -82.020529348999958, 28.858183082000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106155749999971, 28.653940734000059 ], [ -82.106135177999988, 28.653940525000053 ], [ -82.10577144399997, 28.653940810000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054801732999977, 28.651543967000066 ], [ -82.05479812699997, 28.650171685000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054782007999961, 28.640717560000041 ], [ -82.054779135999979, 28.63968903500006 ], [ -82.054778129999988, 28.639241560000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12452813699997, 28.658556888000078 ], [ -82.124696163999943, 28.658558658000061 ], [ -82.124967813999945, 28.658582668000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124213871999984, 28.658564194000064 ], [ -82.124431413999957, 28.658555869000054 ], [ -82.12452813699997, 28.658556888000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123285444999965, 28.658600722000074 ], [ -82.123589668999955, 28.65859804300004 ], [ -82.124142311999947, 28.658566933000031 ], [ -82.124213871999984, 28.658564194000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122848886999975, 28.658604566000065 ], [ -82.123285444999965, 28.658600722000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122383575999947, 28.658608663000052 ], [ -82.122848886999975, 28.658604566000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121753582999986, 28.658611033000057 ], [ -82.121929170999977, 28.658612664000032 ], [ -82.122383575999947, 28.658608663000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017206754999961, 28.874666016000049 ], [ -82.017027112999983, 28.874668013000075 ], [ -82.016714271999945, 28.87468799100003 ], [ -82.016513130999954, 28.874705893000055 ], [ -82.015756198999952, 28.874854941000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102274732999945, 28.659391378000066 ], [ -82.10224397199994, 28.659391379000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980180037999958, 28.645297494000033 ], [ -81.980159601999958, 28.645204892000038 ], [ -81.980132940999965, 28.645099873000049 ], [ -81.980098196999961, 28.644980990000079 ], [ -81.980065342999978, 28.644881602000055 ], [ -81.98002397099998, 28.644769413000063 ], [ -81.979976210999951, 28.644653290000065 ], [ -81.979893601999947, 28.644476864000069 ], [ -81.979441209999948, 28.643649536000055 ], [ -81.978824853999981, 28.642528607000031 ], [ -81.978070858999956, 28.641157319000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978070858999956, 28.641157319000058 ], [ -81.977463077999971, 28.640051948000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974779416999979, 28.635166630000072 ], [ -81.974106739999968, 28.633937614000047 ], [ -81.973051571999974, 28.632020356000055 ], [ -81.97282772899996, 28.631613023000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97282772899996, 28.631613023000057 ], [ -81.972665667999934, 28.631318115000056 ], [ -81.97191281399995, 28.629955429000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024341333999985, 28.825281436000068 ], [ -82.023890155999936, 28.825280323000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068656374999989, 28.803526731000034 ], [ -82.06847425899997, 28.803527379000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036917180999978, 28.912862580000024 ], [ -82.036934814999938, 28.914337323000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036934814999938, 28.914337323000041 ], [ -82.036944645999938, 28.915159466000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037047872999949, 28.93008779400003 ], [ -82.037047856999948, 28.930088190000049 ], [ -82.037035677999938, 28.930397768000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069814489999942, 28.789183440000045 ], [ -82.069885136999972, 28.78967491700007 ], [ -82.069951525999954, 28.790114007000057 ], [ -82.069982286999959, 28.790331386000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045582097999954, 28.812852765000059 ], [ -82.045579076999957, 28.814104394000026 ], [ -82.045578305999982, 28.814389101000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045578305999982, 28.814389101000074 ], [ -82.045576437999955, 28.815078521000032 ], [ -82.045575794999934, 28.815303159000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118712781999989, 28.650333307000039 ], [ -82.119107381999981, 28.649537087000056 ], [ -82.119556707999948, 28.648615875000075 ], [ -82.120024136999973, 28.647664477000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104253421999942, 28.683128932000045 ], [ -82.104257613999948, 28.681792813000072 ], [ -82.104257124999947, 28.681299132000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104305425999939, 28.670797876000051 ], [ -82.104305389, 28.670322857000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104303958999935, 28.671075442000074 ], [ -82.104305432999979, 28.670883192000076 ], [ -82.104305425999939, 28.670797876000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104257124999947, 28.681299132000049 ], [ -82.104256716999942, 28.680887340000027 ], [ -82.104256329999941, 28.680496466000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037027210999952, 28.91962221600005 ], [ -82.037032705999934, 28.919818300000031 ], [ -82.037041371999976, 28.920168783000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064224908999961, 28.744308094000075 ], [ -82.06450087099995, 28.743581992000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120843656999966, 28.661294661000056 ], [ -82.120842356999958, 28.661875864000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120804867999937, 28.679584272000056 ], [ -82.120805685999983, 28.680074322000053 ], [ -82.120812004999948, 28.681391215000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120812004999948, 28.681391215000076 ], [ -82.120812837999949, 28.681564714000046 ], [ -82.120813478999935, 28.682123034000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120798558, 28.670818324000038 ], [ -82.120796578999943, 28.671446881000065 ], [ -82.120798118999971, 28.671638950000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120798118999971, 28.671638950000045 ], [ -82.120802951999963, 28.672241662000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120799974999954, 28.670368115000031 ], [ -82.120798558, 28.670818324000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120843202999936, 28.662745943000061 ], [ -82.120841254999959, 28.663820542000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120846894999943, 28.66036469900007 ], [ -82.120845933999988, 28.659974946000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019271215999936, 28.870981758000028 ], [ -82.019251574999942, 28.871164857000053 ], [ -82.019232082999963, 28.87137709600006 ], [ -82.019232082999963, 28.871537358000069 ], [ -82.019251574999942, 28.871756094000034 ], [ -82.019318710999983, 28.872187069000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019271215999936, 28.870981758000028 ], [ -82.019096948999959, 28.870954050000023 ], [ -82.018882796999947, 28.870930255000076 ], [ -82.018701957999951, 28.870925496000041 ], [ -82.018478288999972, 28.870939773000032 ], [ -82.018230824999989, 28.870996880000064 ], [ -82.017935771999987, 28.87106826400003 ], [ -82.017642503, 28.871120017000067 ], [ -82.017345070999966, 28.871143812000071 ], [ -82.017023843999937, 28.871149760000037 ], [ -82.016818614999977, 28.871131915000035 ], [ -82.016634206999981, 28.871111094000071 ], [ -82.01634272299998, 28.871087300000056 ], [ -82.016128570999967, 28.871069454000065 ], [ -82.015908470999989, 28.871069454000065 ], [ -82.01565267899997, 28.871093248000079 ], [ -82.015417706999983, 28.871117043000027 ], [ -82.015120274999958, 28.871149760000037 ], [ -82.014888276999955, 28.871146786000054 ], [ -82.014724688999934, 28.871146786000054 ], [ -82.012852650999946, 28.871144507000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018654347999984, 28.868463758000075 ], [ -82.018780617999937, 28.868600220000076 ], [ -82.018959077999966, 28.868821510000032 ], [ -82.019066153999972, 28.869010677000063 ], [ -82.019100560999959, 28.869118633000028 ], [ -82.019122951999975, 28.869244581000032 ], [ -82.019122951999975, 28.869525863000035 ], [ -82.019120083999951, 28.869792269000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019120083999951, 28.869792269000072 ], [ -82.019130398999948, 28.869977928000026 ], [ -82.019173228999989, 28.870159956000066 ], [ -82.019273166999938, 28.870427646000053 ], [ -82.019312427999978, 28.870659643000067 ], [ -82.019301719999987, 28.870806218000041 ], [ -82.019271215999936, 28.870981758000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019120083999951, 28.869792269000072 ], [ -82.018963649999989, 28.869791597000074 ], [ -82.018739773999982, 28.869806326000059 ], [ -82.018554193999989, 28.869844620000038 ], [ -82.018401015999984, 28.869894697000063 ], [ -82.018262566999965, 28.86996244900007 ], [ -82.018138845999943, 28.87002430900003 ], [ -82.01800039699998, 28.870074387000045 ], [ -82.017814815999941, 28.870124464000071 ], [ -82.017646909999939, 28.870174542000029 ], [ -82.017508460999977, 28.870195162000073 ], [ -82.017355282999972, 28.870215782000059 ], [ -82.017202104999967, 28.870224619000055 ], [ -82.017022415999975, 28.870224619000055 ], [ -82.01686923799997, 28.870203999000069 ], [ -82.016692493999983, 28.870177487000035 ], [ -82.016551098999969, 28.870148030000053 ], [ -82.016371409999977, 28.870103844000027 ], [ -82.016203503999975, 28.870039038000073 ], [ -82.016073891999952, 28.869983069000057 ], [ -82.015935441999943, 28.869912372000044 ], [ -82.015788155999985, 28.869824 ], [ -82.015664435999952, 28.869738574000053 ], [ -82.015540714999986, 28.869650202000059 ], [ -82.015437614999939, 28.869582450000053 ], [ -82.015299164999988, 28.869517644000041 ], [ -82.015193118999946, 28.869476404000068 ], [ -82.014978080999981, 28.869455784000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012852650999946, 28.871144507000054 ], [ -82.012851920999935, 28.871888202000036 ], [ -82.012867080999968, 28.871968333000041 ], [ -82.012912560999951, 28.872037636000073 ], [ -82.013001354999972, 28.872091778000026 ], [ -82.01311613699994, 28.872122098000034 ], [ -82.013226587999952, 28.872124264000036 ], [ -82.014889847999939, 28.872113435000074 ], [ -82.015013292999981, 28.872119933000079 ], [ -82.015117246999978, 28.872119933000079 ], [ -82.015253685999937, 28.872128595000049 ], [ -82.015377131999969, 28.872141590000069 ], [ -82.01549407899995, 28.872156749000055 ], [ -82.015660838999963, 28.872171909000031 ], [ -82.015784283999949, 28.872180572000048 ], [ -82.015942379999956, 28.872189235000064 ], [ -82.016102641999964, 28.872187069000063 ], [ -82.016247743999941, 28.872182738000049 ], [ -82.01638851499996, 28.872184904000051 ], [ -82.016509793999944, 28.872169744000075 ], [ -82.016644067999948, 28.872156749000055 ], [ -82.016752352999958, 28.872143755000025 ], [ -82.016877963999946, 28.872135092000065 ], [ -82.016984082999954, 28.872132927000052 ], [ -82.017092368999954, 28.872130761000051 ], [ -82.017217978999952, 28.872128595000049 ], [ -82.017363080999985, 28.872128595000049 ], [ -82.01746486899998, 28.872126430000037 ], [ -82.017586148999953, 28.872130761000051 ], [ -82.017716090999954, 28.872143755000025 ], [ -82.017867689999946, 28.872158915000057 ], [ -82.018036614999971, 28.872174075000032 ], [ -82.018173053999988, 28.872182738000049 ], [ -82.018337647999942, 28.872184904000051 ], [ -82.018504406999966, 28.872195732000023 ], [ -82.018649508999943, 28.872189235000064 ], [ -82.018918055999961, 28.872191401000066 ], [ -82.019065323999939, 28.872193566000078 ], [ -82.019318710999983, 28.872187069000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019318710999983, 28.872187069000063 ], [ -82.019689046999986, 28.872187069000063 ], [ -82.019998741999984, 28.872141590000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028806067999938, 28.799726479000071 ], [ -82.028928739999969, 28.799727593000057 ], [ -82.029147159, 28.799728807000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029147159, 28.799728807000065 ], [ -82.029460470999936, 28.799728738000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030122253999934, 28.799728423000033 ], [ -82.030523737999943, 28.799727822000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032265978999988, 28.799737199000049 ], [ -82.032486985999981, 28.799738255000079 ], [ -82.032736682999939, 28.799738406000074 ], [ -82.033252668999978, 28.799741437000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017297661999976, 28.799653996000075 ], [ -82.01682920899998, 28.799648096000055 ], [ -82.016158831999974, 28.799674752000044 ], [ -82.014703744999963, 28.79966713500005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017616913999973, 28.79965801700007 ], [ -82.017297661999976, 28.799653996000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020873110999958, 28.799700441000027 ], [ -82.020516276999956, 28.799695462000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96319479899995, 28.866897945000062 ], [ -81.963195008999946, 28.866302700000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039453322999975, 28.92436404700004 ], [ -82.039605602999984, 28.924252375000037 ], [ -82.039914536999959, 28.923979787000064 ], [ -82.040103530999943, 28.923808965000035 ], [ -82.040263448999951, 28.923707199000035 ], [ -82.040405194999948, 28.923641778000047 ], [ -82.04072866599995, 28.923645412000042 ], [ -82.041273842999942, 28.923649047000026 ], [ -82.041433760999951, 28.923634509000067 ], [ -82.041444664999972, 28.923856214000068 ], [ -82.041430126999956, 28.924154244000079 ], [ -82.041310187999954, 28.924259644000074 ], [ -82.041179345999979, 28.924266913000054 ], [ -82.041070309999952, 28.92428145100007 ], [ -82.040943102999961, 28.92438321800006 ], [ -82.040943102999961, 28.924673978000044 ], [ -82.04094958099995, 28.92489910200004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04094958099995, 28.92489910200004 ], [ -82.040555186999939, 28.924895018000029 ], [ -82.040296612999953, 28.924842247000072 ], [ -82.040101362999962, 28.924794754000061 ], [ -82.03990347499996, 28.924710322000067 ], [ -82.039652817, 28.924562565000031 ], [ -82.039477551999937, 28.924398458000042 ], [ -82.039453322999975, 28.92436404700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039453322999975, 28.92436404700004 ], [ -82.038982634999968, 28.923979455000051 ], [ -82.03869823399998, 28.923967603000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040194393999968, 28.925960595000049 ], [ -82.039623775999985, 28.925967864000029 ], [ -82.03952564399998, 28.925964229000044 ], [ -82.039427511999975, 28.925946056000043 ], [ -82.039347552999971, 28.925916980000068 ], [ -82.039249420999965, 28.925844290000043 ], [ -82.039162192999981, 28.925757062000059 ], [ -82.039096771999937, 28.925611682000067 ], [ -82.039100406999978, 28.925375439000049 ], [ -82.039096771999937, 28.924830262000057 ], [ -82.039111309999953, 28.924724862000062 ], [ -82.039158558999986, 28.924641268000073 ], [ -82.039296669999942, 28.924492253000039 ], [ -82.039442049999934, 28.924372314000038 ], [ -82.039453322999975, 28.92436404700004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04094958099995, 28.92489910200004 ], [ -82.040972178999937, 28.925684372000035 ], [ -82.040964909999957, 28.925840656000048 ], [ -82.040881315999968, 28.925935153000069 ], [ -82.040674148999983, 28.925971498000024 ], [ -82.040194393999968, 28.925960595000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040188859999944, 28.926295819000075 ], [ -82.040194393999968, 28.925960595000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087951056999941, 28.741165650000028 ], [ -82.088576911999951, 28.74112883500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086360813999988, 28.741523736000033 ], [ -82.086380857999984, 28.741502379000053 ], [ -82.086453759999984, 28.741450764000035 ], [ -82.08653699599995, 28.741400934000069 ], [ -82.086668987999985, 28.74136952300006 ], [ -82.086872089999986, 28.741369392000024 ], [ -82.087171669999975, 28.741373675000034 ], [ -82.087417634999952, 28.741288122000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087417634999952, 28.741288122000071 ], [ -82.087494550999963, 28.741261369000028 ], [ -82.087951056999941, 28.741165650000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033490872999948, 28.869148566000035 ], [ -82.033017450999978, 28.869156696000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021472861999939, 28.609894624000049 ], [ -82.019583618999945, 28.609897659000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131500158999984, 28.668632109000043 ], [ -82.131857556999989, 28.668633298000032 ], [ -82.132611169999961, 28.668637123000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13109217799996, 28.668630751000023 ], [ -82.131500158999984, 28.668632109000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129337073999977, 28.668623351000065 ], [ -82.130146282999988, 28.668627603000061 ], [ -82.13109217799996, 28.668630751000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129023014999973, 28.668621700000074 ], [ -82.129337073999977, 28.668623351000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128962834999982, 28.668621384000062 ], [ -82.129023014999973, 28.668621700000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128466257999946, 28.668620700000076 ], [ -82.128962834999982, 28.668621384000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.132611169999961, 28.668637123000053 ], [ -82.133071564999966, 28.668639460000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029423679999979, 28.741250963000027 ], [ -82.029319036999937, 28.741250938000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001681742999949, 28.872459178000042 ], [ -82.001735266999958, 28.872158726000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001760958999967, 28.872074514000076 ], [ -82.00186525099997, 28.871775885000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004324348999944, 28.876710228000036 ], [ -82.004612204999944, 28.876934204000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005132755999966, 28.877377128000035 ], [ -82.005419461999963, 28.87721682800003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988435969999955, 28.849664019000045 ], [ -81.988537881999946, 28.849558709000064 ], [ -81.988705188999973, 28.849378664000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986606639999934, 28.848500517000048 ], [ -81.986875009999949, 28.848715383000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985800205999965, 28.852518844000031 ], [ -81.985737693999965, 28.852257073000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986435749999941, 28.852175025000065 ], [ -81.98673789299994, 28.852137257000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986840534999942, 28.851012737000076 ], [ -81.986894399999983, 28.850887443000033 ], [ -81.986990419999984, 28.850721164000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956193850999966, 28.952428562000023 ], [ -81.956857375999959, 28.951909388000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956193850999966, 28.952428562000023 ], [ -81.956114124999942, 28.952363134000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956777129999978, 28.951840351000044 ], [ -81.956857375999959, 28.951909388000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957012318999944, 28.951767468000071 ], [ -81.956953045999967, 28.951708375000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956857375999959, 28.951909388000047 ], [ -81.956966850999947, 28.951813457000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956966850999947, 28.951813457000071 ], [ -81.957012318999944, 28.951767468000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958321274999946, 28.953319836000048 ], [ -81.958404786999949, 28.953401801000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957520231999979, 28.954033125000024 ], [ -81.957567118999975, 28.954019176000031 ], [ -81.957620295999959, 28.95399597200003 ], [ -81.957680239999945, 28.953964066000026 ], [ -81.957727615999943, 28.95393699400006 ], [ -81.958259381999937, 28.953520283000046 ], [ -81.958404786999949, 28.953401801000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98803666799995, 28.850113152000063 ], [ -81.988286504999962, 28.850242697000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03907789799996, 28.828198200000031 ], [ -82.039183337999987, 28.828291698000044 ], [ -82.039240177999943, 28.828319171000032 ], [ -82.039286595999954, 28.828335275000029 ], [ -82.03934911999994, 28.828344748000063 ], [ -82.04069321999998, 28.828362236000032 ], [ -82.040762521999966, 28.828354221000041 ], [ -82.040803255999947, 28.828329591000056 ], [ -82.040831675999982, 28.828291698000044 ], [ -82.040850621999937, 28.828247174000069 ], [ -82.040864831999954, 28.82819317700006 ], [ -82.040875252999967, 28.828133496000078 ], [ -82.040875252999967, 28.828070025000045 ], [ -82.040865293999957, 28.828007046000039 ], [ -82.040845336999951, 28.827932660000045 ], [ -82.040821750999953, 28.827854645000059 ], [ -82.040803451999977, 28.827744428000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040803451999977, 28.827744428000074 ], [ -82.04083925599997, 28.827129983000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04083925599997, 28.827129983000077 ], [ -82.040862412999957, 28.826688260000026 ], [ -82.040895737999961, 28.826216573000067 ], [ -82.040916245999938, 28.826047381000024 ], [ -82.040947008999979, 28.825929459000065 ], [ -82.040959825999948, 28.825826919000065 ], [ -82.04095469899994, 28.825747450000051 ], [ -82.040912259999971, 28.825675923000063 ], [ -82.040790633999961, 28.825526987000046 ], [ -82.040639386999942, 28.825383430000045 ], [ -82.040482612999938, 28.825279830000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040482612999938, 28.825279830000056 ], [ -82.040389710999989, 28.825225130000035 ], [ -82.040150942999958, 28.825120941000023 ], [ -82.039972907999982, 28.825066911000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039416372999938, 28.827706354000043 ], [ -82.039516764999973, 28.82773052500005 ], [ -82.039621448999981, 28.827742663000038 ], [ -82.040803451999977, 28.827744428000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04083925599997, 28.827129983000077 ], [ -82.040293709999958, 28.827122590000045 ], [ -82.040235399999972, 28.827113619000045 ], [ -82.04019802199997, 28.827098668000076 ], [ -82.040170361999969, 28.827060542000027 ], [ -82.040151671999979, 28.826996251000025 ], [ -82.040213842999947, 28.826131977000045 ], [ -82.040242041999988, 28.825929459000065 ], [ -82.040308692999986, 28.825688489000072 ], [ -82.040393288999951, 28.825452645000041 ], [ -82.040482612999938, 28.825279830000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03907789799996, 28.828198200000031 ], [ -82.039023721999968, 28.828240541000071 ], [ -82.038961355999959, 28.828283213000077 ], [ -82.038887501999966, 28.828327525000077 ], [ -82.038813647999973, 28.828375120000032 ], [ -82.038749640999981, 28.828407945000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03952862999995, 28.827288301000067 ], [ -82.03949750299995, 28.827449600000079 ], [ -82.039440906999971, 28.827647686000034 ], [ -82.039416372999938, 28.827706354000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013971524999988, 28.858529393000026 ], [ -82.014345771999956, 28.858539458000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016080667999972, 28.858574229000055 ], [ -82.016082497999946, 28.858260374000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01605779199997, 28.859162593000065 ], [ -82.016418313999964, 28.85917082900005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053761150999946, 28.853400234000048 ], [ -82.053734944999974, 28.854561939000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053734944999974, 28.854561939000064 ], [ -82.053719085999944, 28.856750211000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053719085999944, 28.856750211000076 ], [ -82.053718874999959, 28.857473451000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053718874999959, 28.857473451000033 ], [ -82.053718250999964, 28.858206034000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075526544999946, 28.728562838000073 ], [ -82.075632322999979, 28.728519205000055 ], [ -82.075891025999965, 28.728407534000041 ], [ -82.076794351999979, 28.728012306000039 ], [ -82.077264373999981, 28.727803618000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075526544999946, 28.728562838000073 ], [ -82.075455143999989, 28.728439871000035 ], [ -82.075378454999964, 28.72829574800005 ], [ -82.075332175999961, 28.728197902000034 ], [ -82.07530705399995, 28.728115924000065 ], [ -82.075293831999943, 28.728052457000047 ], [ -82.075276642999938, 28.727991634000034 ], [ -82.075260963999938, 28.72791832300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075260963999938, 28.72791832300004 ], [ -82.074976173999971, 28.727980681000076 ], [ -82.07482874699997, 28.728019477000032 ], [ -82.074378704999958, 28.728218634000029 ], [ -82.073968267999987, 28.728412117000062 ], [ -82.073896435999984, 28.728438582000024 ], [ -82.073824602999935, 28.728446143000042 ], [ -82.073745025999983, 28.728430722000041 ], [ -82.073693297999966, 28.728371234000065 ], [ -82.073670019999952, 28.728303986000071 ], [ -82.073673375999988, 28.728226864000078 ], [ -82.073669594999956, 28.728139909000049 ], [ -82.073667432999969, 28.728029823000043 ], [ -82.073677778999979, 28.727941884000074 ], [ -82.073690710999983, 28.727890155000068 ], [ -82.073719161999975, 28.72786429100006 ], [ -82.073757958999977, 28.727841013000045 ], [ -82.073944182999981, 28.727763419000041 ], [ -82.074451125999985, 28.727540985000076 ], [ -82.074971000999938, 28.727315965000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075260963999938, 28.72791832300004 ], [ -82.075198607999937, 28.727714277000075 ], [ -82.07512877399995, 28.727566850000073 ], [ -82.074971000999938, 28.727315965000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074971000999938, 28.727315965000059 ], [ -82.074678840999979, 28.726793831000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074678840999979, 28.726793831000066 ], [ -82.074278471999946, 28.72608036500003 ], [ -82.074207711999975, 28.725898125000072 ], [ -82.074165149999942, 28.725709195000036 ], [ -82.074151426999947, 28.725408315000038 ], [ -82.07415341799998, 28.72515532500006 ], [ -82.074155387999951, 28.72513284200005 ], [ -82.07416104899994, 28.725115858000038 ], [ -82.074172423999983, 28.725102679000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033045932999983, 28.834343989000047 ], [ -82.033882271999971, 28.834341952000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033045932999983, 28.834343989000047 ], [ -82.033048490999988, 28.834683111000061 ], [ -82.033061725999971, 28.834721344000059 ], [ -82.033091135999939, 28.834756637000055 ], [ -82.033126427999946, 28.834775753000031 ], [ -82.033167602999981, 28.834787517000052 ], [ -82.033226422999974, 28.834788988000071 ], [ -82.033880801999942, 28.834787517000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033886683999981, 28.83513897000006 ], [ -82.033880801999942, 28.834787517000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033880801999942, 28.834787517000052 ], [ -82.033882271999971, 28.834341952000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033882271999971, 28.834341952000045 ], [ -82.033885212999962, 28.83400961600006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025793157999942, 28.836557131000063 ], [ -82.025794135999945, 28.836403477000033 ], [ -82.025796093999986, 28.836339863000035 ], [ -82.025796093999986, 28.836282121000067 ], [ -82.025795114999937, 28.836216549000028 ], [ -82.025795114999937, 28.836167615000079 ], [ -82.025793157999942, 28.836134339000068 ], [ -82.025784348999935, 28.836087363000047 ], [ -82.025773583999978, 28.836051151000049 ], [ -82.025757037999938, 28.835995030000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025783242999978, 28.837801692000028 ], [ -82.025793157999942, 28.836557131000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024796864999985, 28.836720705000062 ], [ -82.02513086099998, 28.836702384000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02513086099998, 28.836702384000034 ], [ -82.02518652699996, 28.836696747000076 ], [ -82.025245715999972, 28.836686882000038 ], [ -82.025311951999981, 28.836674199000072 ], [ -82.025382414999967, 28.836661516000049 ], [ -82.025435966999964, 28.836649537000028 ], [ -82.025514885999939, 28.836629807000065 ], [ -82.02558394, 28.836612896000076 ], [ -82.025670609999963, 28.836591052000074 ], [ -82.02574177799994, 28.836574846000076 ], [ -82.025793157999942, 28.836557131000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025793157999942, 28.836557131000063 ], [ -82.02583690299997, 28.836548070000049 ], [ -82.02588340899996, 28.836543842000026 ], [ -82.025959508999961, 28.836538910000058 ], [ -82.02606379499997, 28.836536091000028 ], [ -82.026168784999982, 28.836533977000045 ], [ -82.026247703999957, 28.836532568000052 ], [ -82.026314643999967, 28.836532568000052 ], [ -82.026380174999986, 28.836534682000035 ], [ -82.02644993399997, 28.836536091000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02644993399997, 28.836536091000028 ], [ -82.026779701999942, 28.836533977000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026447142999984, 28.838087625000071 ], [ -82.026444455999979, 28.837801928000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026444455999979, 28.837801928000033 ], [ -82.026448038999945, 28.837091715000042 ], [ -82.02644993399997, 28.836536091000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025130615999956, 28.837800149000032 ], [ -82.02513086099998, 28.836702384000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024790199999984, 28.837805109000044 ], [ -82.025130615999956, 28.837800149000032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025130615999956, 28.837800149000032 ], [ -82.025783242999978, 28.837801692000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025783242999978, 28.837801692000028 ], [ -82.026444455999979, 28.837801928000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076962691999938, 28.726177242000063 ], [ -82.077022939999949, 28.726283043000024 ], [ -82.077036150999959, 28.726321354000049 ], [ -82.077035116, 28.726357188000065 ], [ -82.077024883999968, 28.726384579000069 ], [ -82.077009748999956, 28.726404624000054 ], [ -82.076994862999982, 28.726415635000023 ], [ -82.076977540999962, 28.726425671000072 ], [ -82.075074989999962, 28.727263676000064 ], [ -82.074971000999938, 28.727315965000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076962691999938, 28.726177242000063 ], [ -82.07683018299997, 28.725942205000024 ], [ -82.07680484399998, 28.725919517000079 ], [ -82.076772790999939, 28.725904841000045 ], [ -82.076737161999972, 28.72589961500006 ], [ -82.076701444999969, 28.725904349000075 ], [ -82.075862552, 28.726272455000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075862552, 28.726272455000071 ], [ -82.075276427999938, 28.726530620000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075276427999938, 28.726530620000062 ], [ -82.074902127999962, 28.726695483000071 ], [ -82.074678840999979, 28.726793831000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075276427999938, 28.726530620000062 ], [ -82.074988257999962, 28.726021580000065 ], [ -82.074914539999952, 28.725900498000044 ], [ -82.074864901999945, 28.725781509000058 ], [ -82.074838530999955, 28.72568725800005 ], [ -82.074822166, 28.725586075000024 ], [ -82.074821964999956, 28.725056450000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075862552, 28.726272455000071 ], [ -82.075702164999939, 28.725989528000071 ], [ -82.075507683999945, 28.72564645500006 ], [ -82.075489406999964, 28.725606742000025 ], [ -82.075478349999969, 28.725565009000036 ], [ -82.075474781999958, 28.725522268000077 ], [ -82.075476647999949, 28.725161034000052 ], [ -82.07547498699995, 28.72514336100005 ], [ -82.075469869999949, 28.725126211000031 ], [ -82.075461452999946, 28.725110104000066 ], [ -82.075449990999971, 28.725095530000033 ], [ -82.075435833999961, 28.725082931000031 ], [ -82.075421592999987, 28.725072567000041 ], [ -82.075407147999954, 28.725066050000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075407147999954, 28.725066050000066 ], [ -82.075381810999943, 28.725060444000064 ], [ -82.075361778999934, 28.725058811000054 ], [ -82.074821964999956, 28.725056450000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074821964999956, 28.725056450000068 ], [ -82.074345623999989, 28.725054018000037 ], [ -82.074231225999938, 28.725058141000034 ], [ -82.07419824599998, 28.72507360000003 ], [ -82.074172423999983, 28.725102679000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027470276999964, 28.865483914000038 ], [ -82.028490912999985, 28.865484555000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044427083999949, 28.832050324000079 ], [ -82.044372498999962, 28.831983766000064 ], [ -82.044338133999986, 28.831936037000048 ], [ -82.044308541999953, 28.831885444000079 ], [ -82.044298041, 28.831839624000054 ], [ -82.044288495999979, 28.831791894000048 ], [ -82.044288495999979, 28.831688799000062 ], [ -82.044341951999968, 28.831333693000033 ], [ -82.04435340699996, 28.831279282000025 ], [ -82.044397317999938, 28.831185733000041 ], [ -82.044446121999954, 28.831102575000045 ], [ -82.044473508999943, 28.831052634000059 ], [ -82.044483230999958, 28.831006270000046 ], [ -82.044486094999968, 28.830950905000066 ], [ -82.04448704899994, 28.830864037000026 ], [ -82.044492776999959, 28.830632073000061 ], [ -82.04450805, 28.830566207000061 ], [ -82.044541170999935, 28.830512947000045 ], [ -82.044592053999963, 28.830475521000039 ], [ -82.044672238999965, 28.830407745000059 ], [ -82.04470469499995, 28.830355243000042 ], [ -82.044718059, 28.830311332000065 ], [ -82.044723786999953, 28.830264558000067 ], [ -82.044722831999934, 28.830229238000072 ], [ -82.044727604999935, 28.829859813000041 ], [ -82.044717104999961, 28.829815902000064 ], [ -82.044691330999967, 28.829773901000067 ], [ -82.044656965999934, 28.829739536000034 ], [ -82.044625464999967, 28.829708989000039 ], [ -82.044592053999963, 28.829680351000036 ], [ -82.04456055299994, 28.82965075900006 ], [ -82.044539551999947, 28.829608757000074 ], [ -82.044522368999935, 28.829552437000075 ], [ -82.044516641999962, 28.829484661000038 ], [ -82.044506140999943, 28.829056052000055 ], [ -82.044515686999944, 28.829009278000058 ], [ -82.044530960999964, 28.828973004000034 ], [ -82.044563416999949, 28.828937684000039 ], [ -82.044734286999983, 28.828722902000038 ], [ -82.044760060999977, 28.828682810000032 ], [ -82.044767697999987, 28.828632217000063 ], [ -82.044767697999987, 28.828564441000026 ], [ -82.044761969999968, 28.82831720300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044761969999968, 28.82831720300004 ], [ -82.044763879999948, 28.827657585000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043947708999951, 28.828316249000068 ], [ -82.044761969999968, 28.82831720300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043917161999957, 28.82867708200007 ], [ -82.043947708999951, 28.828316249000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043947708999951, 28.828316249000068 ], [ -82.043972527999983, 28.828058511000052 ], [ -82.043984937999937, 28.828018418000056 ], [ -82.044007847999978, 28.827983098000061 ], [ -82.044044121999946, 28.827955416000066 ], [ -82.044450775999962, 28.827669040000046 ], [ -82.044492776999959, 28.827652812000053 ], [ -82.04456532599994, 28.827648994000072 ], [ -82.044763879999948, 28.827657585000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044763879999948, 28.827657585000054 ], [ -82.045142849999934, 28.827654721000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044822370999952, 28.834288220000076 ], [ -82.044824821999953, 28.832612522000034 ], [ -82.044819331999975, 28.832506633000037 ], [ -82.044808350999972, 28.832449374000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044808350999972, 28.832449374000078 ], [ -82.044790309999939, 28.832395253000072 ], [ -82.04476991699994, 28.832356034000043 ], [ -82.044688342999962, 28.832261911000046 ], [ -82.044427083999949, 28.832050324000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044294785999966, 28.834286361000068 ], [ -82.044822370999952, 28.834288220000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044822370999952, 28.834288220000076 ], [ -82.045139726999935, 28.834298457000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044294785999966, 28.834651091000069 ], [ -82.044294785999966, 28.834286361000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044294785999966, 28.834286361000068 ], [ -82.044289883999966, 28.832850185000041 ], [ -82.044301649999966, 28.832792927000071 ], [ -82.044325964999985, 28.83274586400006 ], [ -82.044369128999961, 28.832692721000058 ], [ -82.044540880999989, 28.832556832000023 ], [ -82.044584805999989, 28.832530948000056 ], [ -82.044655398999964, 28.832505064000031 ], [ -82.044729913999959, 28.832479964000072 ], [ -82.044808350999972, 28.832449374000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042087377999962, 28.834277280000038 ], [ -82.042120822999948, 28.833392509000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042120822999948, 28.833392509000078 ], [ -82.04214263199998, 28.83289502100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041196526999954, 28.833766484000023 ], [ -82.042087377999962, 28.834277280000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042087377999962, 28.834277280000038 ], [ -82.042437028999984, 28.834474909000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040941128999975, 28.83396715400005 ], [ -82.041196526999954, 28.833766484000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041196526999954, 28.833766484000023 ], [ -82.04161610899996, 28.833413793000034 ], [ -82.041655633999937, 28.833392509000078 ], [ -82.041695159999961, 28.833386429000029 ], [ -82.041752928999983, 28.833386429000029 ], [ -82.042120822999948, 28.833392509000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040940106999983, 28.833072714000025 ], [ -82.041259732999947, 28.832816454000067 ], [ -82.041311500999939, 28.832770776000075 ], [ -82.041338561999964, 28.832718457000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040398060999962, 28.832558075000065 ], [ -82.039849925999988, 28.833005719000028 ], [ -82.039831653999954, 28.833054442000048 ], [ -82.039831653999954, 28.833094030000041 ], [ -82.039856015999987, 28.833139708000033 ], [ -82.040291478999961, 28.83348686100004 ], [ -82.040340202999971, 28.833502087000056 ], [ -82.040391970999963, 28.833502087000056 ], [ -82.040434603999984, 28.833489906000068 ], [ -82.040940106999983, 28.833072714000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040940106999983, 28.833072714000025 ], [ -82.040398060999962, 28.832558075000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040398060999962, 28.832558075000065 ], [ -82.040142264999986, 28.832287052000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038749640999981, 28.828407945000038 ], [ -82.03879528799996, 28.828526236000073 ], [ -82.038806436999948, 28.828596279000067 ], [ -82.038808850999942, 28.828683185000045 ], [ -82.038801608999961, 28.828776126000037 ], [ -82.038800401999936, 28.828871481000078 ], [ -82.038812527999937, 28.828953793000039 ], [ -82.038836663999973, 28.829019306000077 ], [ -82.038848682999969, 28.829060984000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038848682999969, 28.829060984000023 ], [ -82.038929761999952, 28.829298598000037 ], [ -82.039022858999942, 28.829481345000033 ], [ -82.039147045999982, 28.829618262000054 ], [ -82.039252894999947, 28.829730594000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039252894999947, 28.829730594000068 ], [ -82.039388023999948, 28.829935553000041 ], [ -82.039460432999988, 28.83012519600004 ], [ -82.039510512999982, 28.830276372000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039510512999982, 28.830276372000071 ], [ -82.039527752999959, 28.830400255000029 ], [ -82.039534648999961, 28.830627826000068 ], [ -82.039569129999961, 28.83091401400003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039569129999961, 28.83091401400003 ], [ -82.03961363999997, 28.831077064000056 ], [ -82.039727425999956, 28.831280499000059 ], [ -82.039875691999953, 28.831459797000036 ], [ -82.040027405999979, 28.831583927000054 ], [ -82.040141190999975, 28.831659784000067 ], [ -82.040238613999975, 28.831718149000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040238613999975, 28.831718149000039 ], [ -82.040363412999966, 28.831808784000032 ], [ -82.040511678999962, 28.831981186000064 ], [ -82.040966821999973, 28.832453569000052 ], [ -82.04111508799997, 28.832557010000073 ], [ -82.041338578999955, 28.832718457000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041338578999955, 28.832718457000055 ], [ -82.041441753999948, 28.832765595000069 ], [ -82.041560825999966, 28.832812189000038 ], [ -82.041669543999944, 28.832853605000025 ], [ -82.041793793999943, 28.832879490000039 ], [ -82.041938750999975, 28.83289502100007 ], [ -82.04214263199998, 28.83289502100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04214263199998, 28.83289502100007 ], [ -82.042272950999973, 28.832894303000046 ], [ -82.042448970999942, 28.832863241000041 ], [ -82.042619438999964, 28.832813284000053 ], [ -82.042760677, 28.832744411000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042760677, 28.832744411000078 ], [ -82.042864217999977, 28.832677109000031 ], [ -82.042993643999978, 28.832620162000069 ], [ -82.043143779, 28.832568391000052 ], [ -82.043288736999955, 28.832542506000038 ], [ -82.043428516999938, 28.832537329000047 ], [ -82.043521703999943, 28.832532152000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043521703999943, 28.832532152000056 ], [ -82.043630421999978, 28.832521798000073 ], [ -82.043770202999951, 28.832480381000039 ], [ -82.043884097999978, 28.832438965000051 ], [ -82.044008346999988, 28.832387194000034 ], [ -82.044117064999966, 28.832309538000061 ], [ -82.044427083999949, 28.832050324000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042760677, 28.832744411000078 ], [ -82.042794024999978, 28.832795803000067 ], [ -82.042811979999954, 28.832837699000038 ], [ -82.042819960999964, 28.83289555600004 ], [ -82.042821955999955, 28.832953413000041 ], [ -82.042813974999945, 28.833352425000044 ], [ -82.042835920999948, 28.83338434500007 ], [ -82.042865846999973, 28.833412276000047 ], [ -82.042911732999983, 28.833430232000069 ], [ -82.043390547999934, 28.83343222700006 ], [ -82.043432443999961, 28.833412276000047 ], [ -82.043460374999938, 28.83337836000004 ], [ -82.043480324999962, 28.833342449000043 ], [ -82.043486310999981, 28.833292573000051 ], [ -82.043521703999943, 28.832532152000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04214263199998, 28.83289502100007 ], [ -82.04213686199995, 28.832616294000047 ], [ -82.042120900999976, 28.832560432000037 ], [ -82.04209097599994, 28.832524521000039 ], [ -82.04204907899998, 28.832498585000053 ], [ -82.041979251999976, 28.832490605000032 ], [ -82.041897454999969, 28.832480630000077 ], [ -82.041807676999952, 28.832460679000064 ], [ -82.041656051999951, 28.832402822000063 ], [ -82.041580239999973, 28.832356936000053 ], [ -82.041524377999963, 28.832320607000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041524377999963, 28.832320607000042 ], [ -82.04144741999994, 28.83227320900005 ], [ -82.041093474999968, 28.831937110000069 ], [ -82.041072654999937, 28.831907367000042 ], [ -82.041066705999981, 28.831874649000042 ], [ -82.041066705999981, 28.831838958000048 ], [ -82.041081577999989, 28.831803266000065 ], [ -82.041126192999968, 28.831705113000055 ], [ -82.041149986999983, 28.831633729000032 ], [ -82.041167832999975, 28.83155044800003 ], [ -82.041173781999987, 28.831467167000028 ], [ -82.041173781999987, 28.831366040000034 ], [ -82.04114403899996, 28.831232195000041 ], [ -82.04107860299996, 28.831107273000043 ], [ -82.041010193999966, 28.830991275000031 ], [ -82.040917989999969, 28.830905019000056 ], [ -82.040831733999937, 28.830824712000037 ], [ -82.040706812999986, 28.830738457000052 ], [ -82.040614608999988, 28.830681945000038 ], [ -82.040537275999952, 28.830592715000023 ], [ -82.040516455999978, 28.830530254000053 ], [ -82.040501583999969, 28.830452922000063 ], [ -82.040501583999969, 28.830378563000068 ], [ -82.040495634999957, 28.830268513000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041524377999963, 28.832320607000042 ], [ -82.041583689999982, 28.832249321000063 ], [ -82.041663996999944, 28.83213332300005 ], [ -82.041729431999954, 28.832011375000036 ], [ -82.041782969999986, 28.831874556000059 ], [ -82.041824610999981, 28.831743686000038 ], [ -82.041848404999939, 28.831615790000058 ], [ -82.041857327999935, 28.831487894000077 ], [ -82.041851379999969, 28.831348100000071 ], [ -82.041830558999948, 28.831202358000041 ], [ -82.041777020999973, 28.83100902700005 ], [ -82.041711585999963, 28.830872208000073 ], [ -82.041649124999935, 28.830753235000032 ], [ -82.041559895999967, 28.830640211000059 ], [ -82.041426050999974, 28.830509340000049 ], [ -82.041274359999989, 28.830372521000072 ], [ -82.041131592999989, 28.83025354800003 ], [ -82.041049313999963, 28.83018614100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041049313999963, 28.83018614100007 ], [ -82.040989851999939, 28.830109363000076 ], [ -82.040927390999968, 28.830005261000053 ], [ -82.040867904999971, 28.829886288000068 ], [ -82.040832212999987, 28.829758392000031 ], [ -82.040810685999986, 28.82967523800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040810685999986, 28.82967523800005 ], [ -82.040800225999988, 28.829273065000052 ], [ -82.040779405999956, 28.829210605000071 ], [ -82.040746687999956, 28.829160041000023 ], [ -82.040693149999981, 28.82912434900004 ], [ -82.040642586999979, 28.829094606000069 ], [ -82.040547407999952, 28.829073786000038 ], [ -82.038947220999944, 28.829064863000042 ], [ -82.038848682999969, 28.829060984000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039569129999961, 28.83091401400003 ], [ -82.039479240999981, 28.83092162500003 ], [ -82.039378352999961, 28.830924280000033 ], [ -82.039264189999983, 28.830911005000075 ], [ -82.039155336999954, 28.830892420000055 ], [ -82.03911020299995, 28.830860561000065 ], [ -82.039075688999958, 28.830812772000058 ], [ -82.039070378999952, 28.830759673000045 ], [ -82.039075688999958, 28.830512763000058 ], [ -82.039088963999973, 28.830451700000026 ], [ -82.039144717999989, 28.830382671000052 ], [ -82.039205780999964, 28.830345502000057 ], [ -82.039288084999953, 28.830318952000027 ], [ -82.039362422999943, 28.830303023000056 ], [ -82.039510512999982, 28.830276372000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039510512999982, 28.830276372000071 ], [ -82.039592856999946, 28.830263199000058 ], [ -82.039693744999965, 28.830260544000055 ], [ -82.040354620999949, 28.830263021000064 ], [ -82.040495634999957, 28.830268513000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040495634999957, 28.830268513000078 ], [ -82.040593770999976, 28.830269055000031 ], [ -82.040856610999981, 28.830269055000031 ], [ -82.040928293999968, 28.830258435000076 ], [ -82.040984047999984, 28.830239850000055 ], [ -82.041049313999963, 28.83018614100007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039252894999947, 28.829730594000068 ], [ -82.039331032999939, 28.829705191000073 ], [ -82.039437229999976, 28.829675986000041 ], [ -82.039500948999944, 28.829668021000032 ], [ -82.040810685999986, 28.82967523800005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040238613999975, 28.831718149000039 ], [ -82.040159308999989, 28.831821590000061 ], [ -82.03993518599998, 28.831959512000026 ], [ -82.039883464999946, 28.83197675200006 ], [ -82.039845535999973, 28.831980200000032 ], [ -82.03980415999996, 28.831962960000055 ], [ -82.039752438999983, 28.831935376000047 ], [ -82.039614516999961, 28.831821590000061 ], [ -82.039483491999988, 28.831742285000075 ], [ -82.039369705999945, 28.831669876000035 ], [ -82.039221439999949, 28.831600915000024 ], [ -82.039049037999973, 28.831535402000043 ], [ -82.038893875999975, 28.831480234000026 ], [ -82.038697336999974, 28.831438857000023 ], [ -82.038573206999956, 28.831421617000046 ], [ -82.038466317999962, 28.831421617000046 ], [ -82.038380116999974, 28.831442305000053 ], [ -82.038293915999986, 28.83145954500003 ], [ -82.03823529899995, 28.831456097000057 ], [ -82.038180129999944, 28.831442305000053 ], [ -82.038111169, 28.831411273000072 ], [ -82.03785256599997, 28.831235422000077 ], [ -82.037631891, 28.831080260000078 ], [ -82.037580169999956, 28.831021643000042 ], [ -82.037549137999974, 28.830949234000059 ], [ -82.037549137999974, 28.830856137000069 ], [ -82.037552585999947, 28.830735455000024 ], [ -82.037542240999983, 28.830618222000055 ], [ -82.037518796999962, 28.830493976000071 ], [ -82.037490038999977, 28.830384861000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037490038999977, 28.830384861000027 ], [ -82.037440473999936, 28.830299522000075 ], [ -82.037337376999972, 28.830162807000079 ], [ -82.037238762999948, 28.830046263000042 ], [ -82.03717600899995, 28.829987991000053 ], [ -82.037160319999941, 28.829954373000078 ], [ -82.037158078999937, 28.829916272000048 ], [ -82.037169284999948, 28.829864724000061 ], [ -82.037498745999983, 28.829149771000061 ], [ -82.037523398999951, 28.829113912000025 ], [ -82.037552534999975, 28.829087017000063 ], [ -82.037588394999943, 28.829073569000059 ], [ -82.037626495999973, 28.829064604000052 ], [ -82.038251786999979, 28.829068604000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038251786999979, 28.829068604000042 ], [ -82.038848682999969, 28.829060984000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037490038999977, 28.830384861000027 ], [ -82.037569002999987, 28.830355016000055 ], [ -82.037639887999944, 28.830317489000038 ], [ -82.03769588199998, 28.830281748000061 ], [ -82.037741747999974, 28.830236477000028 ], [ -82.037774510999952, 28.830184058000043 ], [ -82.037810846999946, 28.830110194000042 ], [ -82.038226941999937, 28.82921675700004 ], [ -82.038240258999963, 28.829161590000069 ], [ -82.038251786999979, 28.829068604000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954207758999985, 28.91370302100006 ], [ -81.953747368999984, 28.913713317000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954207758999985, 28.91370302100006 ], [ -81.954212025999936, 28.913753918000054 ], [ -81.954208606999941, 28.913812035000035 ], [ -81.954201769999941, 28.913846221000028 ], [ -81.954189803999952, 28.913880407000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954189803999952, 28.913880407000079 ], [ -81.954167582999958, 28.913912885000059 ], [ -81.954141942999968, 28.913945362000049 ], [ -81.954109465999977, 28.913974420000045 ], [ -81.954083825999987, 28.913994932000037 ], [ -81.954063314999985, 28.914020572000027 ], [ -81.954053058999989, 28.914054758000077 ], [ -81.954049639999937, 28.914095782000061 ], [ -81.954049639999937, 28.914150481000036 ], [ -81.95405134899994, 28.914323122000042 ], [ -81.954058186999987, 28.914596614000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954058186999987, 28.914596614000061 ], [ -81.954065023999988, 28.914984630000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954189803999952, 28.913880407000079 ], [ -81.954388010999935, 28.913949253000055 ], [ -81.954403242999945, 28.913961439000047 ], [ -81.954417459999945, 28.913974641000038 ], [ -81.954427614999986, 28.913988858000039 ], [ -81.954432692999944, 28.914012215000071 ], [ -81.954442847999985, 28.914593083000057 ], [ -81.954058186999987, 28.914596614000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994627737999963, 28.828505974000052 ], [ -81.994465629999979, 28.828392700000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994199614999957, 28.828439315000026 ], [ -81.994340270999942, 28.828537019000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994199614999957, 28.828439315000026 ], [ -81.994465629999979, 28.828392700000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019923738999978, 28.845797893000054 ], [ -82.019944878999979, 28.845892718000073 ], [ -82.019973529999959, 28.845986002000075 ], [ -82.020009551999976, 28.846077282000067 ], [ -82.020052764999946, 28.846166111000059 ], [ -82.02010295599996, 28.846252048000053 ], [ -82.020159879999937, 28.846334669000044 ], [ -82.02024543999994, 28.846439324000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020008306999955, 28.845778750000079 ], [ -82.019991288999961, 28.845708552000076 ], [ -82.019986930999949, 28.845401305000053 ], [ -82.020023974999958, 28.845113670000046 ], [ -82.020036519999962, 28.845082740000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019923738999978, 28.845797893000054 ], [ -82.020008306999955, 28.845778750000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037037436999981, 28.879833696000048 ], [ -82.037039747999984, 28.88020973600004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037151450999943, 28.88042150900003 ], [ -82.037152263999985, 28.880274364000059 ], [ -82.037151540999957, 28.880075431000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037151450999943, 28.88042150900003 ], [ -82.037039747999984, 28.88020973600004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036951073999944, 28.905047835000062 ], [ -82.036951322999982, 28.905572618000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036951073999944, 28.905047835000062 ], [ -82.037138557999981, 28.905574043000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037137571999949, 28.905825238000034 ], [ -82.037138557999981, 28.905574043000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020615377999945, 28.872731446000046 ], [ -82.020615724999971, 28.871174307000047 ], [ -82.020613912999977, 28.87078916300004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022686005999958, 28.872762157000068 ], [ -82.022685381999963, 28.872762148000049 ], [ -82.021909879999953, 28.872750646000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995903846999965, 28.755791050000028 ], [ -81.994800211999973, 28.755798969000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995763895999971, 28.757816600000069 ], [ -81.995549653999944, 28.757145544000025 ], [ -81.995271518999971, 28.756522666000023 ], [ -81.994800211999973, 28.755798969000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994384429999968, 28.755302318000076 ], [ -81.994346673999985, 28.755238547000033 ], [ -81.994011087, 28.754891480000026 ], [ -81.993943486999967, 28.754741241000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127162034999969, 28.787479618000077 ], [ -82.127189223999949, 28.787517256000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125433554999972, 28.788448320000043 ], [ -82.125477804999946, 28.788509505000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123698557999944, 28.789460503000043 ], [ -82.123734377999938, 28.789516723000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123260680999977, 28.78976109000007 ], [ -82.123269326999946, 28.789774568000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127162034999969, 28.787479618000077 ], [ -82.127014774999964, 28.787548985000058 ], [ -82.125433554999972, 28.788448320000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125433554999972, 28.788448320000043 ], [ -82.123698557999944, 28.789460503000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123698557999944, 28.789460503000043 ], [ -82.12327337499994, 28.789717996000036 ], [ -82.123260680999977, 28.78976109000007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012107543999946, 28.84741391700004 ], [ -82.01205166699998, 28.847411544000067 ], [ -82.011858754999935, 28.847408702000052 ], [ -82.011694976999934, 28.847413492000044 ], [ -82.011516014999984, 28.847427831000061 ], [ -82.011344645999941, 28.847449809000068 ], [ -82.01111416699996, 28.847499008000057 ], [ -82.011086238999951, 28.847502528000064 ], [ -82.011053157999982, 28.84750635000006 ], [ -82.011020618999964, 28.847505875000024 ], [ -82.010982926999986, 28.847499974000073 ], [ -82.010956624999949, 28.84749537600004 ], [ -82.010923541999944, 28.84748582900005 ], [ -82.01087023599996, 28.84746410300005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010495397999989, 28.847443424000062 ], [ -82.010456824999949, 28.847461802000055 ], [ -82.010426455999948, 28.847472117000052 ], [ -82.010394351999935, 28.847482433000039 ], [ -82.010357908999936, 28.847490840000034 ], [ -82.010320597999964, 28.847495427000069 ], [ -82.010287191999964, 28.847495811000044 ], [ -82.010252482999988, 28.847495049000031 ], [ -82.010214032999954, 28.847491821000062 ], [ -82.00999601999996, 28.847451730000046 ], [ -82.009626178999952, 28.847382769000035 ], [ -82.009348843999987, 28.847357958000032 ], [ -82.009028521999937, 28.847341980000067 ], [ -82.008853904999967, 28.847338365000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012107543999946, 28.84741391700004 ], [ -82.011701186999971, 28.847356127000069 ], [ -82.011239724999939, 28.847314925000035 ], [ -82.010761782999964, 28.847268229000065 ], [ -82.010536544999979, 28.847265482000068 ], [ -82.010154740999951, 28.847284710000054 ], [ -82.009781176, 28.84729569700005 ], [ -82.009380143999977, 28.847301191000042 ], [ -82.009099970999955, 28.847306684000046 ], [ -82.008853904999967, 28.847338365000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061874274, 28.617398170000058 ], [ -82.063015038999936, 28.617404084000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018606529999943, 28.754993318000061 ], [ -82.018583021999973, 28.754830092000077 ], [ -82.01847328599996, 28.754691195000078 ], [ -82.018325767999954, 28.754541873000051 ], [ -82.018192376999934, 28.754396572000076 ], [ -82.01805660499997, 28.754256035000026 ], [ -82.017932741999971, 28.75410835200006 ], [ -82.017818406999936, 28.753977344000077 ], [ -82.017706453999949, 28.753860627000051 ], [ -82.017636319999951, 28.753768183000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017636319999951, 28.753768183000034 ], [ -82.017241967999951, 28.753331827000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017241967999951, 28.753331827000068 ], [ -82.016851322999969, 28.752891161000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016851322999969, 28.752891161000036 ], [ -82.016756043999976, 28.75278873600007 ], [ -82.016658381999946, 28.752683929000057 ], [ -82.016544046999968, 28.752555302000076 ], [ -82.016479733999972, 28.752476696000031 ], [ -82.016444003999936, 28.752414765000026 ], [ -82.016415420999977, 28.752329014000054 ], [ -82.016393982999944, 28.752245644000027 ], [ -82.016393982999944, 28.75214083700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016393982999944, 28.75214083700007 ], [ -82.016402677999963, 28.752035552000052 ], [ -82.016425283, 28.75193143000007 ], [ -82.016465013999948, 28.751842379000038 ], [ -82.016510699999969, 28.751757338000061 ], [ -82.016586922999977, 28.75166682300005 ], [ -82.016658381999946, 28.75157630800004 ], [ -82.016741751999973, 28.751478647000056 ], [ -82.016810828999951, 28.751383368000063 ], [ -82.016867996999963, 28.751295234000054 ], [ -82.016943886999968, 28.751203547000046 ], [ -82.017002281999964, 28.75117659600005 ], [ -82.017056932999935, 28.751178842000058 ], [ -82.017119819999948, 28.751207291000071 ], [ -82.017394369999977, 28.751382254000077 ], [ -82.017429693999986, 28.751428757000042 ], [ -82.017440872999941, 28.751485991000038 ], [ -82.017424198999947, 28.75154315900005 ], [ -82.017128054999944, 28.751938721000045 ], [ -82.01706917599995, 28.751997249000055 ], [ -82.016996462999941, 28.752055420000033 ], [ -82.016910062999955, 28.752094770000042 ], [ -82.01680313199995, 28.752121289000058 ], [ -82.016703044999986, 28.752135831000032 ], [ -82.016577394999956, 28.75214083700007 ], [ -82.016393982999944, 28.75214083700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016851322999969, 28.752891161000036 ], [ -82.017087852999964, 28.752720602000068 ], [ -82.017252652999957, 28.752607844000067 ], [ -82.017413064999971, 28.752495974000055 ], [ -82.017537104999974, 28.752391610000075 ], [ -82.017640613999959, 28.752283824000074 ], [ -82.017738379999969, 28.752171268000041 ], [ -82.01784506599995, 28.752011792000076 ], [ -82.017922055999975, 28.751945922000061 ], [ -82.018052083999976, 28.751869788000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017241967999951, 28.753331827000068 ], [ -82.017492625999978, 28.753160069000046 ], [ -82.017645860999949, 28.753061767000077 ], [ -82.017804878999982, 28.752949009000076 ], [ -82.017932092999956, 28.752853599000048 ], [ -82.018065088999947, 28.752735058000042 ], [ -82.018160499999965, 28.75262519100005 ], [ -82.01824434599996, 28.752529781000078 ], [ -82.01832240899995, 28.752425696000046 ], [ -82.018464408999989, 28.752210255000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017636319999951, 28.753768183000034 ], [ -82.017748477999987, 28.753685379000046 ], [ -82.017893932999982, 28.753582421000033 ], [ -82.018067024999937, 28.753460171000029 ], [ -82.018215071999975, 28.753359858000067 ], [ -82.018348258999936, 28.753255586000023 ], [ -82.018466112999988, 28.753152629000056 ], [ -82.018597075999935, 28.753029964000064 ], [ -82.018698751999978, 28.752904655000066 ], [ -82.018813917999978, 28.752761079000038 ], [ -82.018860660999962, 28.752674606000028 ], [ -82.018874405999952, 28.752601345000073 ], [ -82.018869034999966, 28.752511372000072 ], [ -82.018840804999968, 28.75245234700003 ], [ -82.01880145399997, 28.752407008000034 ], [ -82.018744994999963, 28.75236680200004 ], [ -82.018464408999989, 28.752210255000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018464408999989, 28.752210255000023 ], [ -82.01829160799997, 28.752102469000079 ], [ -82.018141904999936, 28.751965598000027 ], [ -82.018052083999976, 28.751869788000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018052083999976, 28.751869788000079 ], [ -82.018005888999937, 28.75179023100003 ], [ -82.017955417999985, 28.751679023000065 ], [ -82.017912625999941, 28.751549284000077 ], [ -82.017905436999968, 28.751445032000049 ], [ -82.017917311999952, 28.751365032000024 ], [ -82.017959704999953, 28.751267616000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017959704999953, 28.751267616000064 ], [ -82.018010436999987, 28.751210657000058 ], [ -82.018097311999952, 28.751146281000047 ], [ -82.018222936999962, 28.751090656000031 ], [ -82.01837190599997, 28.751047890000052 ], [ -82.018504992999965, 28.751043137000067 ], [ -82.018646001999969, 28.751057396000078 ], [ -82.018784634999975, 28.751083538000046 ], [ -82.019149211999945, 28.751203932000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019149211999945, 28.751203932000067 ], [ -82.01941468299998, 28.751298424000026 ], [ -82.019633141999975, 28.751364251000041 ], [ -82.019840027999976, 28.751397526000062 ], [ -82.020005680999986, 28.751404037000043 ], [ -82.020110569999986, 28.75139318600003 ], [ -82.020181460999936, 28.75137148500005 ], [ -82.020237884999972, 28.75134399600006 ], [ -82.020297200999948, 28.751299870000025 ], [ -82.020340603999955, 28.751254298000049 ], [ -82.02037170899996, 28.751192811000067 ], [ -82.020436802999939, 28.751018475000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020436802999939, 28.751018475000023 ], [ -82.020502775999944, 28.750918544000058 ], [ -82.020593003999977, 28.750804061000053 ], [ -82.020699725999975, 28.75069903800005 ], [ -82.020869782999966, 28.750578225000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020869782999966, 28.750578225000027 ], [ -82.020966893999969, 28.750527646000023 ], [ -82.021080851999955, 28.750463146000072 ], [ -82.021176262999973, 28.750425560000053 ], [ -82.021291911999981, 28.750385083000026 ], [ -82.021413343999939, 28.750356171000078 ], [ -82.021523209999941, 28.750341714000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021523209999941, 28.750341714000058 ], [ -82.021647532999964, 28.750321476000067 ], [ -82.021774747999984, 28.750269434000074 ], [ -82.02187883199997, 28.750202935000061 ], [ -82.022006045999944, 28.750101742000027 ], [ -82.022369887999957, 28.749743134000028 ], [ -82.022487361999936, 28.749577098000032 ], [ -82.022535191999964, 28.749467089000063 ], [ -82.022560302999977, 28.749341536000031 ], [ -82.022561162999978, 28.749240155000052 ], [ -82.022514902999944, 28.749121615000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022514902999944, 28.749121615000035 ], [ -82.022337893999975, 28.748864432000062 ], [ -82.022236254999939, 28.748685070000079 ], [ -82.022163313999954, 28.748496142000079 ], [ -82.022129832999951, 28.748322759000075 ], [ -82.022110701999964, 28.748167312000078 ], [ -82.022109197999953, 28.747978551000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017959704999953, 28.751267616000064 ], [ -82.017863561999945, 28.751158781000072 ], [ -82.016866738999965, 28.750415252000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019149211999945, 28.751203932000067 ], [ -82.019294054999989, 28.750884739000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019294054999989, 28.750884739000071 ], [ -82.019386933999954, 28.750740337000025 ], [ -82.019493370999953, 28.75060542500006 ], [ -82.019633140999986, 28.750442175000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019633140999986, 28.750442175000046 ], [ -82.020063906999951, 28.74995124700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020063906999951, 28.74995124700007 ], [ -82.020206719999976, 28.749812143000042 ], [ -82.020431758999962, 28.749598232000039 ], [ -82.020537600999944, 28.749494425000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020537600999944, 28.749494425000023 ], [ -82.020649318999972, 28.749392508000028 ], [ -82.020869264999988, 28.749198288000059 ], [ -82.021005621999961, 28.749080107000054 ], [ -82.021141907999947, 28.748974107000038 ], [ -82.021245743999941, 28.748909210000079 ], [ -82.02133876399995, 28.748857291000036 ], [ -82.021391083999958, 28.748840465000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019633140999986, 28.750442175000046 ], [ -82.019713558999968, 28.750498176000065 ], [ -82.01998654199997, 28.750711927000054 ], [ -82.020135909999965, 28.750820090000047 ], [ -82.020342450999976, 28.750963901000034 ], [ -82.020436802999939, 28.751018475000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017895993999957, 28.74991278400006 ], [ -82.017959270999938, 28.749949564000076 ], [ -82.018044974999953, 28.749981702000071 ], [ -82.018186269999944, 28.750013841000055 ], [ -82.018342910999934, 28.750037873000053 ], [ -82.018484403999935, 28.750060504000032 ], [ -82.018633771999987, 28.750083681000035 ], [ -82.018757386999937, 28.750104284000031 ], [ -82.01890160399995, 28.750135188000058 ], [ -82.019074149999938, 28.750173817000075 ], [ -82.019241544999943, 28.750227899000038 ], [ -82.019375460999981, 28.750281980000068 ], [ -82.019542855999987, 28.750379842000029 ], [ -82.019633140999986, 28.750442175000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018189308999979, 28.749332987000059 ], [ -82.018878770999947, 28.749484763000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018878770999947, 28.749484763000055 ], [ -82.019053703999987, 28.749527753000052 ], [ -82.01924659499997, 28.749575358000072 ], [ -82.019417846999943, 28.749626053000043 ], [ -82.019570551999948, 28.749682313000051 ], [ -82.019718310999963, 28.749751556000035 ], [ -82.019868542999973, 28.749828836000063 ], [ -82.019988481999974, 28.74989931500005 ], [ -82.020063906999951, 28.74995124700007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020063906999951, 28.74995124700007 ], [ -82.020282763999944, 28.750102715000025 ], [ -82.020545676999973, 28.75028487000003 ], [ -82.020687295999949, 28.750384004000068 ], [ -82.020758914999988, 28.750443079000036 ], [ -82.020816776999936, 28.750496490000046 ], [ -82.020846718999962, 28.750534120000054 ], [ -82.020869782999966, 28.750578225000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019003178999981, 28.748880715000041 ], [ -82.019217500999957, 28.74892378900006 ], [ -82.019491626999979, 28.74899232100006 ], [ -82.019682625999963, 28.749048161000076 ], [ -82.019842531999984, 28.749105271000076 ], [ -82.019951107999987, 28.749151457000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019951107999987, 28.749151457000039 ], [ -82.020031395, 28.749191600000074 ], [ -82.020156101999987, 28.749257167000053 ], [ -82.020278236999957, 28.749327877000042 ], [ -82.020414513999981, 28.74941401500007 ], [ -82.020537600999944, 28.749494425000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020537600999944, 28.749494425000023 ], [ -82.020774986999982, 28.749650189000079 ], [ -82.020922022999969, 28.749753754000039 ], [ -82.02106650199994, 28.749850286000026 ], [ -82.021182852999971, 28.74992700100006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021182852999971, 28.74992700100006 ], [ -82.021229520999952, 28.749962482000058 ], [ -82.021296965999966, 28.750010108000026 ], [ -82.02134874799998, 28.750050384000076 ], [ -82.021409799999958, 28.750096093000025 ], [ -82.021459024999956, 28.750139564000051 ], [ -82.021481081, 28.750176323000062 ], [ -82.021498340999983, 28.750218516000075 ], [ -82.021511765999946, 28.750272536000068 ], [ -82.021523209999941, 28.750341714000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019294054999989, 28.750884739000071 ], [ -82.019167476999939, 28.750839669000072 ], [ -82.019076149999989, 28.750807052000027 ], [ -82.018972298999984, 28.75077652300007 ], [ -82.018862554999941, 28.75074378100004 ], [ -82.018763079999985, 28.750719032000063 ], [ -82.018661526999949, 28.750704244000076 ], [ -82.018556256999943, 28.750699521000058 ], [ -82.018432166999958, 28.750696938000033 ], [ -82.018345531999955, 28.750695618000066 ], [ -82.018263582999964, 28.750685863000058 ], [ -82.018169927999963, 28.75066244900006 ], [ -82.01807236999997, 28.750642937000066 ], [ -82.017976762999979, 28.75060781600007 ], [ -82.017855790999988, 28.750551233000067 ], [ -82.017773842999986, 28.750494649000075 ], [ -82.017668479999941, 28.750420505000079 ], [ -82.017598237999948, 28.750361970000029 ], [ -82.01758848299994, 28.750320996000028 ], [ -82.017594335999945, 28.750278071000025 ], [ -82.017625554999938, 28.750227341000027 ], [ -82.017895993999957, 28.74991278400006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017895993999957, 28.74991278400006 ], [ -82.01796167599997, 28.749810588000059 ], [ -82.018008919999943, 28.749734137000075 ], [ -82.018058741999937, 28.749641366000048 ], [ -82.018109422999942, 28.749531415000035 ], [ -82.018149794999943, 28.749435207000033 ], [ -82.018189308999979, 28.749332987000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018189308999979, 28.749332987000059 ], [ -82.018212944999959, 28.74924328700007 ], [ -82.01823226099998, 28.749120183000059 ], [ -82.018249820999984, 28.749010918000067 ], [ -82.018253723999976, 28.748907507000069 ], [ -82.018253723999976, 28.748759219000078 ], [ -82.01824591899998, 28.748577761000035 ], [ -82.018253723999976, 28.748499715000037 ], [ -82.018282534999969, 28.748433443000067 ], [ -82.018329439999945, 28.748383326000067 ], [ -82.018395619999978, 28.748343490000025 ], [ -82.01849778199994, 28.748319074000051 ], [ -82.018902572999934, 28.748303010000029 ], [ -82.019055467999976, 28.748301997000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019055467999976, 28.748301997000056 ], [ -82.019603139999958, 28.748275398000033 ], [ -82.019757849999962, 28.748265853000078 ], [ -82.019899435999946, 28.74823443300005 ], [ -82.020000056999947, 28.748203014000069 ], [ -82.020075621999979, 28.748178754000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020075621999979, 28.748178754000037 ], [ -82.020228343999975, 28.748115517000031 ], [ -82.020579920999978, 28.747972341000036 ], [ -82.020813036999982, 28.74786365600005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018878770999947, 28.749484763000055 ], [ -82.018911508999963, 28.749322498000026 ], [ -82.018946748999952, 28.74916422900003 ], [ -82.018982693999988, 28.748967897000057 ], [ -82.019003178999981, 28.748880715000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019003178999981, 28.748880715000041 ], [ -82.019024202999958, 28.748780017000058 ], [ -82.019048233999968, 28.748642385000039 ], [ -82.019061341999986, 28.74858340000003 ], [ -82.019067894999978, 28.748533153000039 ], [ -82.019065710999939, 28.748471983000059 ], [ -82.019065710999939, 28.74839989000003 ], [ -82.019055467999976, 28.748301997000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019951107999987, 28.749151457000039 ], [ -82.019998773999987, 28.749060533000034 ], [ -82.020094448999942, 28.748916175000033 ], [ -82.020171586999936, 28.748798864000037 ], [ -82.02021108799994, 28.748739612000065 ], [ -82.020236763999947, 28.748672459000034 ], [ -82.02024466499995, 28.748595431000069 ], [ -82.020238738999979, 28.748528279000027 ], [ -82.020217013999968, 28.748457176000045 ], [ -82.020167636999986, 28.748348547000035 ], [ -82.020108384999958, 28.748243869000078 ], [ -82.020075621999979, 28.748178754000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021182852999971, 28.74992700100006 ], [ -82.021259476999944, 28.749853761000054 ], [ -82.021368415999973, 28.749746580000078 ], [ -82.021473839999942, 28.749653454000054 ], [ -82.021579264999957, 28.749572629000056 ], [ -82.021674146999942, 28.749502345000053 ], [ -82.021821741999986, 28.749405706000061 ], [ -82.021877968999945, 28.749351237000042 ], [ -82.021898911999983, 28.749288033000028 ], [ -82.021911480999961, 28.749210478000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020813036999982, 28.74786365600005 ], [ -82.020653164999942, 28.747543354000072 ], [ -82.020470761999945, 28.74699675200003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021391083999958, 28.748840465000058 ], [ -82.020813036999982, 28.74786365600005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021911480999961, 28.749210478000066 ], [ -82.021833182999956, 28.749200620000067 ], [ -82.021771472999944, 28.749180873000057 ], [ -82.021682609999971, 28.749141378000047 ], [ -82.02160362099994, 28.749092010000027 ], [ -82.021527099999957, 28.749022895000053 ], [ -82.021457984999984, 28.74893650000007 ], [ -82.021391083999958, 28.748840465000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022514902999944, 28.749121615000035 ], [ -82.022445888999982, 28.749152909000031 ], [ -82.02238171099998, 28.749175124000033 ], [ -82.022282993999966, 28.749198915000079 ], [ -82.022178992999955, 28.749206464000054 ], [ -82.022052198999972, 28.749205964000055 ], [ -82.021911480999961, 28.749210478000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022109197999953, 28.747978551000074 ], [ -82.022109519999958, 28.747863745000075 ], [ -82.022127901999966, 28.747707930000047 ], [ -82.022159415999965, 28.74752935500004 ], [ -82.022197931999983, 28.747382293000044 ], [ -82.022256580999965, 28.747212472000058 ], [ -82.022309102999941, 28.747086420000073 ], [ -82.022353746999954, 28.746955115000048 ], [ -82.022383508999951, 28.746808929000053 ], [ -82.02240276699996, 28.746655740000051 ], [ -82.022410990999958, 28.746522693000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022410990999958, 28.746522693000031 ], [ -82.02240102199994, 28.745742684000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020470761999945, 28.74699675200003 ], [ -82.020162976999984, 28.746237058000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022109197999953, 28.747978551000074 ], [ -82.02300020399997, 28.747976539000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02300020399997, 28.747976539000035 ], [ -82.023981078999952, 28.747969534000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023981078999952, 28.747969534000049 ], [ -82.02463335799996, 28.747974638000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023018358999934, 28.748823682000079 ], [ -82.023018358999934, 28.748540239000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023018358999934, 28.748540239000079 ], [ -82.02300020399997, 28.747976539000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02300020399997, 28.747976539000035 ], [ -82.022997183999962, 28.747717992000048 ], [ -82.023005431999934, 28.747625357000061 ], [ -82.023023197999976, 28.747537798000053 ], [ -82.02306570899998, 28.747417880000057 ], [ -82.02312027399995, 28.747268141000063 ], [ -82.023168494999936, 28.747113326000033 ], [ -82.023206564999953, 28.746962953000036 ], [ -82.023235116999956, 28.746808138000063 ], [ -82.023248440999964, 28.746695834000036 ], [ -82.023256688999936, 28.746617792000052 ], [ -82.023257323999985, 28.746506757000077 ], [ -82.023254785999939, 28.746425543000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023018358999934, 28.748540239000079 ], [ -82.024633405999964, 28.748540481000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024633405999964, 28.748540481000077 ], [ -82.025033919999942, 28.748541379000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023981078999952, 28.747969534000049 ], [ -82.023974108999937, 28.746420912000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014900412999964, 28.745172430000025 ], [ -82.015123807999942, 28.74526510100003 ], [ -82.015321897999968, 28.745343623000053 ], [ -82.015488459999972, 28.745400730000028 ], [ -82.015667966999956, 28.745461488000046 ], [ -82.015838544999951, 28.745510693000028 ], [ -82.016028803999973, 28.745553337000047 ], [ -82.016205441999944, 28.745576165000045 ], [ -82.016376136999952, 28.745607318000054 ], [ -82.016513731999964, 28.745639121000067 ], [ -82.016639448999967, 28.74567761000003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016639448999967, 28.74567761000003 ], [ -82.01673569999997, 28.745724144000064 ], [ -82.016852630999949, 28.745786703000078 ], [ -82.017015329999936, 28.745885361000035 ], [ -82.017169373999934, 28.745970172000057 ], [ -82.017337264999981, 28.74603421200004 ], [ -82.017501693999975, 28.746075752000024 ], [ -82.017645352999978, 28.746105176000071 ], [ -82.017868629999953, 28.746117292000065 ], [ -82.018379225999979, 28.746105176000071 ], [ -82.018528077999974, 28.746113831000059 ], [ -82.018638850999935, 28.746129408000058 ], [ -82.018830972999979, 28.74617267900004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018830972999979, 28.74617267900004 ], [ -82.018926674999989, 28.746190124000066 ], [ -82.019102689999954, 28.746223650000047 ], [ -82.019196084999976, 28.746247598000025 ], [ -82.019314624999936, 28.746273940000037 ], [ -82.019425980999983, 28.746295493000048 ], [ -82.019557692999967, 28.746312256000067 ], [ -82.019623548999959, 28.746317046000058 ], [ -82.019851049999943, 28.746312256000067 ], [ -82.019948037999939, 28.746291901000063 ], [ -82.020048616999986, 28.746264361000044 ], [ -82.020162976999984, 28.746237058000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020162976999984, 28.746237058000077 ], [ -82.020380290999981, 28.746149413000069 ], [ -82.020586239999943, 28.746064399000034 ], [ -82.020788595999989, 28.74598297700004 ], [ -82.021075492999955, 28.745869366000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021075492999955, 28.745869366000079 ], [ -82.021175348999975, 28.745839292000028 ], [ -82.02136812699996, 28.745792594000079 ], [ -82.021467509, 28.745769844000051 ], [ -82.021615983999936, 28.745742305000078 ], [ -82.021683199999984, 28.745734743000071 ], [ -82.021865704999982, 28.745735007000064 ], [ -82.022098815999982, 28.745735007000064 ], [ -82.02240102199994, 28.745742684000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02240102199994, 28.745742684000049 ], [ -82.023578438999948, 28.74573779900004 ], [ -82.023671263999972, 28.745742684000049 ], [ -82.023729192999951, 28.745755945000042 ], [ -82.023797589999958, 28.745777581000027 ], [ -82.023882737999941, 28.745817363000072 ], [ -82.024173078999979, 28.745981378000067 ], [ -82.024434075999977, 28.746142805000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024434075999977, 28.746142805000034 ], [ -82.024522498999943, 28.74619165200005 ], [ -82.024577895999983, 28.746243293000077 ], [ -82.024611696999955, 28.746307140000056 ], [ -82.024636108999971, 28.746371457000066 ], [ -82.024638925999966, 28.746474269000032 ], [ -82.02463335799996, 28.747974638000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02463335799996, 28.747974638000073 ], [ -82.024633405999964, 28.748540481000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018830972999979, 28.74617267900004 ], [ -82.018746212999986, 28.746489409000048 ], [ -82.018688529999963, 28.74671052900004 ], [ -82.018691733999958, 28.74684512400006 ], [ -82.018765440999971, 28.746947673000079 ], [ -82.018900035999934, 28.74700215200005 ], [ -82.019082700999945, 28.747043812000072 ], [ -82.019262160999972, 28.747079063000058 ], [ -82.019441620999942, 28.747104700000079 ], [ -82.019624285999953, 28.747111110000048 ], [ -82.019810155999949, 28.747107905000064 ], [ -82.01997679699997, 28.747098291000043 ], [ -82.020169075999945, 28.747066245000042 ], [ -82.020470761999945, 28.74699675200003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020470761999945, 28.74699675200003 ], [ -82.020731705999935, 28.746891557000026 ], [ -82.020908116999976, 28.746820314000047 ], [ -82.021096401999955, 28.746742286000028 ], [ -82.021257546999948, 28.746676131000072 ], [ -82.021428868999976, 28.746616762000031 ], [ -82.021598494999978, 28.746564178000028 ], [ -82.02176812099998, 28.746538734000069 ], [ -82.021944531999964, 28.746525164000047 ], [ -82.022410990999958, 28.746522693000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022410990999958, 28.746522693000031 ], [ -82.022514217999969, 28.746534071000042 ], [ -82.022636639999973, 28.746532107000064 ], [ -82.022706034999942, 28.746522287000062 ], [ -82.022922728999959, 28.746466640000051 ], [ -82.023044133999974, 28.746432555000069 ], [ -82.023138113999948, 28.746424087000037 ], [ -82.023254785999939, 28.746425543000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023254785999939, 28.746425543000043 ], [ -82.023974108999937, 28.746420912000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023974108999937, 28.746420912000076 ], [ -82.024091170999952, 28.746412442000064 ], [ -82.024166187999981, 28.746396410000045 ], [ -82.024237186999983, 28.746363216000077 ], [ -82.02430291099995, 28.746301430000074 ], [ -82.024369923999984, 28.746222167000042 ], [ -82.024434075999977, 28.746142805000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020391643999972, 28.745095903000049 ], [ -82.020608643999935, 28.74521438000005 ], [ -82.02076451399995, 28.745343530000071 ], [ -82.02088921099994, 28.745481587000029 ], [ -82.020979392999948, 28.745618530000058 ], [ -82.021038400999942, 28.745755474000077 ], [ -82.021075492999955, 28.745869366000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018821113999934, 28.744899795000038 ], [ -82.018972475999988, 28.744796947000054 ], [ -82.019100550999951, 28.744744553000032 ], [ -82.019201458999987, 28.744721266000056 ], [ -82.019315949999964, 28.744709623000062 ], [ -82.019420738999941, 28.744703801000071 ], [ -82.019542992999959, 28.744709623000062 ], [ -82.019655543999988, 28.744730969000045 ], [ -82.019764213999963, 28.744762017000028 ], [ -82.019969909999986, 28.744860985000059 ], [ -82.020186679999938, 28.744983914000045 ], [ -82.020391643999972, 28.745095903000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016639448999967, 28.74567761000003 ], [ -82.016701067999975, 28.745597168000074 ], [ -82.016827726999963, 28.745425911000041 ], [ -82.01696865699995, 28.745284980000065 ], [ -82.017068556999959, 28.745199352000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017068556999959, 28.745199352000043 ], [ -82.017541297999969, 28.744751586000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017541297999969, 28.744751586000064 ], [ -82.017682227999956, 28.744630279000035 ], [ -82.017805319, 28.744537515000047 ], [ -82.017951600999936, 28.744430479000073 ], [ -82.018080043999987, 28.744353770000032 ], [ -82.018197782999948, 28.74428954900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015063074999944, 28.744570682000074 ], [ -82.015168218999975, 28.744608736000032 ], [ -82.015298869999981, 28.744655847000047 ], [ -82.015393354999958, 28.744691598000031 ], [ -82.015508267999962, 28.744732967000061 ], [ -82.015609391999988, 28.744768718000046 ], [ -82.015696215999981, 28.744798340000045 ], [ -82.015789167999969, 28.744826941000042 ], [ -82.015877523999961, 28.744855031000043 ], [ -82.015973202999987, 28.744877652000071 ], [ -82.016062730999977, 28.744897816000048 ], [ -82.016253076999988, 28.744942982000055 ], [ -82.016380511999955, 28.744967986000063 ], [ -82.016475684999989, 28.744980890000079 ], [ -82.016594248, 28.744996215000072 ], [ -82.016699098999936, 28.745006700000033 ], [ -82.01679138999998, 28.745022009000024 ], [ -82.016858709999951, 28.745036969000068 ], [ -82.016912940999987, 28.745059409000078 ], [ -82.016969040999982, 28.745096810000064 ], [ -82.01702327199996, 28.745139820000077 ], [ -82.017068556999959, 28.745199352000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015222494999989, 28.743965537000065 ], [ -82.015302859999963, 28.743984152000053 ], [ -82.015471160999937, 28.744053343000076 ], [ -82.015645071999984, 28.744128143000069 ], [ -82.015828332999945, 28.744202944000051 ], [ -82.016026554999939, 28.744268394000073 ], [ -82.016213555999968, 28.744318884000052 ], [ -82.016406166999957, 28.744356285000038 ], [ -82.016576337999936, 28.744386205000069 ], [ -82.016761469999949, 28.744414255000038 ], [ -82.01693912099995, 28.744423605000065 ], [ -82.017030751999982, 28.744427345000076 ], [ -82.017129862, 28.744436695000047 ], [ -82.017202792999967, 28.744449785000029 ], [ -82.017285072999982, 28.744494666000037 ], [ -82.017346783999983, 28.744526456000074 ], [ -82.017421583999976, 28.74459564600005 ], [ -82.017492644999948, 28.744681667000066 ], [ -82.017541297999969, 28.744751586000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015498857999944, 28.743209494000041 ], [ -82.015562554999974, 28.743239970000047 ], [ -82.015801691999968, 28.74336373400007 ], [ -82.015971604999947, 28.743443446000072 ], [ -82.016091173999939, 28.743485400000054 ], [ -82.016185569999948, 28.743521061000024 ], [ -82.016326115999959, 28.743563015000063 ], [ -82.016416315999948, 28.743588187000057 ], [ -82.016584131999934, 28.743625945000076 ], [ -82.016712090999988, 28.743644825000047 ], [ -82.016879905999986, 28.743667899000059 ], [ -82.017018353999958, 28.743682583000066 ], [ -82.017179877, 28.743682583000066 ], [ -82.017326714999967, 28.743684681000047 ], [ -82.017425306999939, 28.743695169000034 ], [ -82.017567949999943, 28.743732928000043 ], [ -82.017691713999966, 28.743774882000025 ], [ -82.017790304999949, 28.743835715000046 ], [ -82.017897286999982, 28.743911232000073 ], [ -82.017983292999986, 28.743984651000062 ], [ -82.018037832999937, 28.744064363000064 ], [ -82.018197782999948, 28.74428954900003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018821113999934, 28.744899795000038 ], [ -82.019313155999953, 28.745327392000036 ], [ -82.01937522299994, 28.745362305000072 ], [ -82.01944763399996, 28.745390752000048 ], [ -82.019523923999941, 28.74541014700003 ], [ -82.019609264999985, 28.745417906000057 ], [ -82.019694605999973, 28.745421785000076 ], [ -82.019759258999954, 28.745412733000023 ], [ -82.019848478999961, 28.745399803000055 ], [ -82.020214411999973, 28.745257567000067 ], [ -82.020273892999967, 28.745221362000052 ], [ -82.02032302899994, 28.745174812000073 ], [ -82.020355354999936, 28.745136021000064 ], [ -82.020391643999972, 28.745095903000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071284165999941, 28.610071722000043 ], [ -82.070822951999958, 28.61005792900005 ], [ -82.069692588999942, 28.610039702000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069692588999942, 28.610039702000051 ], [ -82.069671468999957, 28.609684212000047 ], [ -82.069659935999937, 28.60929800200006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016804267999987, 28.750483773000042 ], [ -82.017819810999981, 28.751221907000058 ], [ -82.017959704999953, 28.751267616000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993389504999982, 28.754633783000031 ], [ -81.993388879372262, 28.75467393771557 ], [ -81.993392989650872, 28.754713886410162 ], [ -81.993401778566763, 28.754753072473338 ], [ -81.9934151236628, 28.754790949920476 ], [ -81.993432838999979, 28.754826991000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993933913999967, 28.754575800000055 ], [ -81.993911853410609, 28.754543200644626 ], [ -81.99388558453056, 28.754513886253644 ], [ -81.993855590571101, 28.754488396059983 ], [ -81.993822423265613, 28.754467198951112 ], [ -81.993786692720661, 28.754450684843974 ], [ -81.993749056193082, 28.754439157512568 ], [ -81.993710205999946, 28.754432829000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993783909999934, 28.754931826000075 ], [ -81.993821662778501, 28.754911530932471 ], [ -81.993855902497486, 28.754885747144858 ], [ -81.993885837675293, 28.754855070652422 ], [ -81.993910776333692, 28.754820210569569 ], [ -81.993930141993403, 28.754781972718124 ], [ -81.993943486999967, 28.754741241000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020536054, 28.755865367000069 ], [ -82.019891776999941, 28.755808702000024 ], [ -82.01953412599994, 28.755733142000054 ], [ -82.019151287999989, 28.755609728000024 ], [ -82.018980018999969, 28.755511499000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025137589999986, 28.755901187000063 ], [ -82.023104, 28.755884859000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022806689999982, 28.752035674000069 ], [ -82.022788307999974, 28.749904733000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023104, 28.755884859000048 ], [ -82.023108801999967, 28.755576993000034 ], [ -82.023106711999958, 28.755338683000048 ], [ -82.023098349999941, 28.75518399200007 ], [ -82.023075355999936, 28.755079470000055 ], [ -82.023046089, 28.754979129000048 ], [ -82.02300846199995, 28.754878789000031 ], [ -82.022956200999943, 28.754770086000065 ], [ -82.022893487999966, 28.754655113000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022893487999966, 28.754655113000069 ], [ -82.022279925999953, 28.753698817000043 ], [ -82.022074490999955, 28.753331316000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023651640999958, 28.753041075000056 ], [ -82.023643036999943, 28.752787268000077 ], [ -82.023632942999939, 28.752046966000023 ], [ -82.022806689999982, 28.752035674000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972182385999986, 28.78127382200006 ], [ -81.972780333999935, 28.781608966000078 ], [ -81.973520445999952, 28.782025366000028 ], [ -81.974192326999969, 28.782400124000048 ], [ -81.974565008999946, 28.782622196000034 ], [ -81.974890450999965, 28.782816508000053 ], [ -81.975221138999984, 28.783029321000072 ], [ -81.975515083999937, 28.783219001000077 ], [ -81.975798531999942, 28.783413304000078 ], [ -81.976129217999983, 28.783649240000045 ], [ -81.976433270999962, 28.783877031000031 ], [ -81.976796438999941, 28.784176075000062 ], [ -81.977210501999934, 28.784518932000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979132697999944, 28.786127830000055 ], [ -81.979464448999977, 28.786379482000029 ], [ -81.979821397999956, 28.786645939000039 ], [ -81.980148954999947, 28.786879089000024 ], [ -81.980539510999961, 28.78712704700007 ], [ -81.980875472999969, 28.78734909700006 ], [ -81.981236637999984, 28.787563749000071 ], [ -81.981627203999949, 28.78778210400003 ], [ -81.982383148999986, 28.788174408000032 ], [ -81.982467080999982, 28.788214751000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981425037999941, 28.787103577000039 ], [ -81.982219452999971, 28.787549082000055 ], [ -81.98250341499994, 28.787706447000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965325222999979, 28.822754581000027 ], [ -81.965160050999941, 28.822731136000073 ], [ -81.964511841, 28.822637241000052 ], [ -81.963914423999938, 28.822549748000029 ], [ -81.963186399999984, 28.822440915000072 ], [ -81.962838444999988, 28.822391042000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962693458999979, 28.788426933000039 ], [ -81.962461465999979, 28.788172413000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96506186299996, 28.787552357000038 ], [ -81.965006759999937, 28.787481012000057 ], [ -81.964928257999986, 28.787369297000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040736028999959, 28.834298957000044 ], [ -82.040248328999951, 28.833983334000038 ], [ -82.039855013999954, 28.833700919000023 ], [ -82.039477428999987, 28.833418498000071 ], [ -82.039187943999934, 28.833188680000035 ], [ -82.038552339999967, 28.832681969000078 ], [ -82.038263644999972, 28.83245284000003 ], [ -82.038004053999941, 28.832238245000042 ], [ -82.037764140999968, 28.832068655000057 ], [ -82.037454218999983, 28.831848533000027 ], [ -82.037280382999938, 28.831729475000031 ], [ -82.037150597999982, 28.831646414000033 ], [ -82.03688316399996, 28.831480292000037 ], [ -82.036580337999965, 28.831300330000033 ], [ -82.03628538199996, 28.831130751000046 ], [ -82.035958964999963, 28.830947332000051 ], [ -82.035608962999959, 28.830777768000075 ], [ -82.035357276999946, 28.830653188000042 ], [ -82.035030872999982, 28.830500928000049 ], [ -82.034700541999939, 28.830355592000046 ], [ -82.034291566999968, 28.830192963000059 ], [ -82.033921918999965, 28.830051098000069 ], [ -82.03322981599996, 28.829784667000069 ], [ -82.03285230399996, 28.829632414000059 ], [ -82.032423667999979, 28.829445547000034 ], [ -82.032164123999962, 28.829320963000043 ], [ -82.031861327999934, 28.829192927000065 ], [ -82.031656837999947, 28.829085640000073 ], [ -82.031192803999943, 28.828846843000065 ], [ -82.030791686999976, 28.828625342000066 ], [ -82.030205740999975, 28.828289622000057 ], [ -82.029800687999966, 28.828043881000042 ], [ -82.029434962999972, 28.827815444000066 ], [ -82.028951255999971, 28.827493545000038 ], [ -82.028573725999934, 28.827223559000061 ], [ -82.02833777099994, 28.827053952000028 ], [ -82.028042824999943, 28.826825495000037 ], [ -82.027661355999953, 28.826510495000036 ], [ -82.027315280999971, 28.826216262000059 ], [ -82.02687874999998, 28.825811250000072 ], [ -82.026343900999962, 28.825302382000075 ], [ -82.025537707999945, 28.824544271000036 ], [ -82.024542760999964, 28.823595759000057 ], [ -82.022351214999958, 28.821519111000043 ], [ -82.021561262999967, 28.820779727000058 ], [ -82.020889355999941, 28.820132259000047 ], [ -82.016937755999948, 28.816393007000045 ], [ -82.015519190999953, 28.815052078000065 ], [ -82.014655106999953, 28.814231027000062 ], [ -82.014354046999983, 28.813945920000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01852084799998, 28.81435835700006 ], [ -82.018586847999984, 28.814166924000062 ], [ -82.018597625999973, 28.814008839000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049789592999957, 28.79211960300006 ], [ -82.049848880999946, 28.792056179000042 ], [ -82.049956735999956, 28.791987388000052 ], [ -82.05006978199998, 28.791923207000025 ], [ -82.050329398999963, 28.791823537000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049550407999959, 28.793025666000062 ], [ -82.049536684999964, 28.79278792100007 ], [ -82.049539584999934, 28.792664625000043 ], [ -82.049555043999987, 28.792555916000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043696462999947, 28.799659044000066 ], [ -82.043534700999942, 28.799657950000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043535498999972, 28.799784504000058 ], [ -82.043537593999986, 28.799784555000031 ], [ -82.043696725999951, 28.799783604000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999053343999947, 28.799598609000043 ], [ -81.997113167999942, 28.799592505000078 ], [ -81.995754099999942, 28.799593233000053 ], [ -81.995099283999934, 28.799588627000048 ], [ -81.994858026999964, 28.799588173000075 ], [ -81.994733971999949, 28.799590176000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994736235999937, 28.799716216000036 ], [ -81.995113153999966, 28.799719265000078 ], [ -81.995748889999959, 28.79971699400005 ], [ -81.996300496999936, 28.799718538000036 ], [ -81.996992607999971, 28.799731543000064 ], [ -81.997433181999952, 28.79974452700003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997433181999952, 28.79974452700003 ], [ -81.997563295999953, 28.799748362000059 ], [ -81.998352544999989, 28.799765181000055 ], [ -81.998872928999958, 28.799763659000064 ], [ -81.999153069999977, 28.799763661000043 ], [ -81.999218670999937, 28.799763444000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981560095999953, 28.805351954000059 ], [ -81.981555172999947, 28.805157497000039 ], [ -81.981561863999957, 28.805119427000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981408840999961, 28.805265620000057 ], [ -81.981395176999968, 28.80537903000004 ], [ -81.981305760999987, 28.805684211000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981181965999951, 28.80473749600003 ], [ -81.981241805999957, 28.805071498000075 ], [ -81.981278565999958, 28.805445613000074 ], [ -81.981305760999987, 28.805684212000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978451408999945, 28.797169360000055 ], [ -81.978414608999969, 28.797074934000079 ], [ -81.978378291999945, 28.797004401000038 ], [ -81.978345875999935, 28.79694977500003 ], [ -81.978304156999968, 28.796874740000078 ], [ -81.978275942999971, 28.796818313000074 ], [ -81.978246529999979, 28.796757985000056 ], [ -81.978218916999936, 28.79669825700006 ], [ -81.978191903999971, 28.796638529000063 ], [ -81.978166691999945, 28.796571597000025 ], [ -81.978143580999983, 28.796506466000039 ], [ -81.978123471999936, 28.796441636000054 ], [ -81.978073947999974, 28.796264552000025 ], [ -81.978013930999964, 28.79601578200004 ], [ -81.977992699999959, 28.795892331000061 ], [ -81.977987195999958, 28.795856160000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982377588999952, 28.78946669000004 ], [ -81.982319496999935, 28.789463940000076 ], [ -81.98222819199998, 28.78943818700003 ], [ -81.982135035999988, 28.789388135000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982136610999987, 28.789703965000058 ], [ -81.98221882699994, 28.789623139000071 ], [ -81.982275014999971, 28.789595045000056 ], [ -81.98236841399995, 28.789595045000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986289020999948, 28.789684470000054 ], [ -81.986385619999965, 28.789717781000036 ], [ -81.986503217999939, 28.789765893000038 ], [ -81.986767813999961, 28.789865820000045 ], [ -81.987032409999983, 28.789969445000054 ], [ -81.987381002999939, 28.790121180000028 ], [ -81.987712796999972, 28.790272912000034 ], [ -81.988073991999954, 28.79044314500004 ], [ -81.988409986999955, 28.790617076000046 ], [ -81.988808980999977, 28.790824311000051 ], [ -81.989090375999979, 28.790983435000044 ], [ -81.989308772999948, 28.791109253000059 ], [ -81.989598568999952, 28.791286877000061 ], [ -81.989913563999949, 28.791483002000064 ], [ -81.990228560999981, 28.791690226000071 ], [ -81.990606556999978, 28.791941854000072 ], [ -81.990938353999979, 28.792193479000048 ], [ -81.99128695099995, 28.792456203000029 ], [ -81.991597748999936, 28.792711524000026 ], [ -81.991895947999978, 28.792963144000055 ], [ -81.992198346999942, 28.793233264000037 ], [ -81.992840946999934, 28.793840103000036 ], [ -81.993701961999989, 28.794650451000052 ], [ -81.995071208999946, 28.795952916000033 ], [ -81.996369084999969, 28.797173963000034 ], [ -81.998893521999946, 28.799564960000055 ], [ -81.999027891999958, 28.799692036000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011083944999939, 28.799680280000075 ], [ -82.011068160999969, 28.799617139000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010534080999946, 28.799606183000037 ], [ -82.010525936999954, 28.799681513000053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026990504999958, 28.814133310000045 ], [ -82.026991270999986, 28.814365449000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029509311999959, 28.796461458000067 ], [ -82.029302326999982, 28.796501589000059 ], [ -82.029242045, 28.796510205000061 ], [ -82.029170071999943, 28.796517726000047 ], [ -82.029132860999937, 28.796520260000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028892021, 28.794260370000075 ], [ -82.029001741999934, 28.794235539000056 ], [ -82.029110861999982, 28.794204645000036 ], [ -82.029206061999957, 28.794171923000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977894091999985, 28.796098380000046 ], [ -81.977948818999948, 28.796329452000066 ], [ -81.978019262999965, 28.796570587000076 ], [ -81.978088351999986, 28.796746696000071 ], [ -81.978237367999952, 28.797025763000079 ], [ -81.978363353999953, 28.797326504000068 ], [ -81.978435151999975, 28.797620472000062 ], [ -81.978459536999935, 28.797955080000065 ], [ -81.978439216999959, 28.798060746000033 ], [ -81.978373654999984, 28.798141658000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016857023999989, 28.824293387000068 ], [ -82.01687936999997, 28.824302748000036 ], [ -82.016906025999958, 28.824315291000062 ], [ -82.016938952999965, 28.824334630000067 ], [ -82.016968743999939, 28.824355536000041 ], [ -82.016998012999977, 28.824376964000066 ], [ -82.017024667999976, 28.824399439000047 ], [ -82.01704766499995, 28.824422958000071 ], [ -82.017076774999964, 28.824453605000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994735740999943, 28.799824104000038 ], [ -81.994736235999937, 28.799716216000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994593194999936, 28.799714615000028 ], [ -81.994595204999939, 28.799823544000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004421941999965, 28.787188121000042 ], [ -82.004418732999966, 28.787118565000071 ], [ -82.004313651999951, 28.786628412000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037113877999957, 28.93560235700005 ], [ -82.037115980999943, 28.935073345000035 ], [ -82.037117770999942, 28.934857143000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041144278, 28.933593340000073 ], [ -82.041107076999936, 28.933583536000071 ], [ -82.041058718999977, 28.933578642000043 ], [ -82.041008500999965, 28.933575384000051 ], [ -82.040891328999976, 28.933573784000032 ], [ -82.040738158999943, 28.933573830000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039756023999985, 28.933939370000076 ], [ -82.039750851999941, 28.93454794400003 ], [ -82.039735335999978, 28.934582424000041 ], [ -82.039702579999982, 28.93461000800005 ], [ -82.039664651999942, 28.934625524000069 ], [ -82.039625, 28.934627248000027 ], [ -82.039571554999952, 28.934630696000056 ], [ -82.038756101, 28.934634144000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038756101, 28.934634144000029 ], [ -82.037713076999978, 28.934641040000031 ], [ -82.03768204499994, 28.934637592000058 ], [ -82.037663080999948, 28.934630696000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037663080999948, 28.934630696000056 ], [ -82.03762342899995, 28.934694484000033 ], [ -82.037563088999946, 28.934766892000027 ], [ -82.037521711999943, 28.934789304000049 ], [ -82.037440683999989, 28.934822061000034 ], [ -82.037356207999949, 28.934841025000026 ], [ -82.037294143999986, 28.934853093000072 ], [ -82.037245870999982, 28.934856541000045 ], [ -82.037117770999942, 28.934857143000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037601794999944, 28.933929668000076 ], [ -82.037597020999954, 28.934559876000037 ], [ -82.03761293499997, 28.93459329600006 ], [ -82.037635215999956, 28.934613985000055 ], [ -82.037663080999948, 28.934630696000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038756101, 28.934634144000029 ], [ -82.038753994, 28.93527443000005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038753994, 28.93527443000005 ], [ -82.038755585, 28.935529060000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040743187999965, 28.933940535000033 ], [ -82.039756023999985, 28.933939370000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039756023999985, 28.933939370000076 ], [ -82.037601794999944, 28.933929668000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040738158999943, 28.933573830000057 ], [ -82.040743187999965, 28.933940535000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040743187999965, 28.933940535000033 ], [ -82.040753665999944, 28.935281952000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041056896999976, 28.935283129000027 ], [ -82.040753665999944, 28.935281952000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040753665999944, 28.935281952000025 ], [ -82.038753994, 28.93527443000005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993710205999946, 28.754432829000052 ], [ -81.993674962110816, 28.75442542080938 ], [ -81.993638971435672, 28.754424122998728 ], [ -81.993603285503085, 28.75442897348584 ], [ -81.993568946938069, 28.754439830555512 ], [ -81.993536958999982, 28.754456377000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993536958999982, 28.754456377000054 ], [ -81.993505273110287, 28.754470252925994 ], [ -81.993476106611325, 28.754488850029649 ], [ -81.993450157548082, 28.754511723224507 ], [ -81.993428046962336, 28.75453832508391 ], [ -81.993410304029112, 28.754568018942653 ], [ -81.993397353391998, 28.754600094134378 ], [ -81.993389504999982, 28.754633783000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993432838999979, 28.754826991000073 ], [ -81.993457406428618, 28.754859595916241 ], [ -81.993486425429609, 28.754888310663137 ], [ -81.993519287465958, 28.75491253308406 ], [ -81.993555303411057, 28.754931755227698 ], [ -81.993593717999943, 28.754945574000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993593717999943, 28.754945574000033 ], [ -81.993631787134618, 28.75495344349093 ], [ -81.993670576901053, 28.754956001208729 ], [ -81.993709349737401, 28.754953198520116 ], [ -81.99374736840366, 28.754945088716372 ], [ -81.993783909999934, 28.754931826000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993943486999967, 28.754741241000033 ], [ -81.993950426416902, 28.754699806689885 ], [ -81.993951131359395, 28.754657801206655 ], [ -81.993945586172572, 28.754616157377964 ], [ -81.993933913999967, 28.754575800000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016329497999948, 28.954609686000026 ], [ -82.016335798999989, 28.955292414000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016337104999934, 28.95372294200007 ], [ -82.016328020999936, 28.954449647000047 ], [ -82.016329497999948, 28.954609686000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00414333699996, 28.784984055000052 ], [ -82.004138918999956, 28.784805438000035 ], [ -82.004142830999967, 28.78371631300007 ], [ -82.004140728999971, 28.78223317100003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993432838999979, 28.754826991000073 ], [ -81.993392533999952, 28.754925329000059 ], [ -81.993275081999968, 28.755066272000079 ], [ -81.993098903999964, 28.755254195000077 ], [ -81.992612652999981, 28.755731050000065 ], [ -81.992201570999953, 28.756074009000031 ], [ -81.991910289999964, 28.756299517000059 ], [ -81.991619009999965, 28.756508582000038 ], [ -81.991448921999961, 28.756609370000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991607787999953, 28.756636266000044 ], [ -81.991943176999939, 28.756412271000045 ], [ -81.992133448999937, 28.756278376000068 ], [ -81.99232607, 28.756128037000053 ], [ -81.992708963999974, 28.75578742700003 ], [ -81.993223402999945, 28.755275336000068 ], [ -81.993408976999945, 28.755078017000073 ], [ -81.993493542999943, 28.754991102000076 ], [ -81.993593717999943, 28.754945574000033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987933099999964, 28.757947847000025 ], [ -81.987917520999986, 28.757950892000053 ], [ -81.987209327999949, 28.758058958000049 ], [ -81.986540188999982, 28.758190069000079 ], [ -81.985942245999979, 28.758334400000024 ], [ -81.985359787999982, 28.758514096000056 ], [ -81.984820579999962, 28.758703978000028 ], [ -81.984272675999989, 28.758918502000029 ], [ -81.98391755199998, 28.759079394000025 ], [ -81.983350804999986, 28.759367841000028 ], [ -81.983012003999988, 28.75958402200007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983086389999983, 28.759665847000065 ], [ -81.983442139999966, 28.759455502000037 ], [ -81.983995824999965, 28.759173610000062 ], [ -81.984486562999962, 28.758957086000066 ], [ -81.984901750999938, 28.758801093000045 ], [ -81.98533079799995, 28.758650347000071 ], [ -81.98583502799994, 28.75849110300004 ], [ -81.986334001999978, 28.75836326700005 ], [ -81.986939723999967, 28.758222750000073 ], [ -81.987535461999983, 28.758116938000057 ], [ -81.987962339999967, 28.758053374000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982959932999961, 28.759743953000054 ], [ -81.983086389999983, 28.759665847000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983012003999988, 28.75958402200007 ], [ -81.982878582999945, 28.759644942000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982878582999945, 28.759644942000079 ], [ -81.982588623999959, 28.759792781000044 ], [ -81.982196843999986, 28.759985912000047 ], [ -81.981763678999982, 28.760173525000027 ], [ -81.981198079999956, 28.760383210000043 ], [ -81.980853202999981, 28.76050736600007 ], [ -81.980397964999952, 28.760642558000029 ], [ -81.980002076999938, 28.760731560000067 ], [ -81.97974131999996, 28.760783267000079 ], [ -81.979496966999989, 28.760832958000037 ], [ -81.979281027999946, 28.760868635000065 ], [ -81.979079483999953, 28.760899930000051 ], [ -81.978954301999977, 28.760902434000059 ], [ -81.978865473999974, 28.760889583000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978916314999935, 28.761130078000065 ], [ -81.979021215999978, 28.761050892000071 ], [ -81.979139853999982, 28.761012266000023 ], [ -81.979269527999975, 28.760990194000044 ], [ -81.979591479999954, 28.760930600000052 ], [ -81.979874390999953, 28.760876772000074 ], [ -81.980262773999982, 28.760791544000028 ], [ -81.980513843999972, 28.760725328000035 ], [ -81.980789745999971, 28.760645317000069 ], [ -81.981076670999983, 28.760559239000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978394604999949, 28.760933940000029 ], [ -81.978383855060457, 28.760973362442261 ], [ -81.978379385448648, 28.761013979097964 ], [ -81.978381305566259, 28.761054795801638 ], [ -81.978389568414997, 28.761094813491241 ], [ -81.9784039717468, 28.761133052662039 ], [ -81.978424163014296, 28.761168577341735 ], [ -81.97844964799998, 28.761200518000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978543810999952, 28.761264801000038 ], [ -81.97858273464692, 28.761277205334554 ], [ -81.978623014729607, 28.761284019492297 ], [ -81.978663852606132, 28.761285108367488 ], [ -81.978704438575065, 28.761280450370766 ], [ -81.978743967929617, 28.761270137857235 ], [ -81.978781656912759, 28.76125437529533 ], [ -81.978816758256855, 28.76123347521278 ], [ -81.978848575999962, 28.761207852000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978916314999935, 28.761130078000065 ], [ -81.978918858533319, 28.761080144729686 ], [ -81.978914926767501, 28.761030301552918 ], [ -81.978904585663301, 28.760981384657914 ], [ -81.978888008707003, 28.760934214693183 ], [ -81.978865473999974, 28.760889583000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978865473999974, 28.760889583000051 ], [ -81.978842200499486, 28.760856297984944 ], [ -81.978814048119176, 28.760827023567121 ], [ -81.978781697622651, 28.760802467642581 ], [ -81.978745931289737, 28.760783224007632 ], [ -81.978707613999973, 28.760769758000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978707613999973, 28.760769758000038 ], [ -81.978668717967551, 28.760762507020146 ], [ -81.978629172957426, 28.760761214649911 ], [ -81.978589886489161, 28.760765910547974 ], [ -81.978551760149074, 28.760776486948039 ], [ -81.978515668899632, 28.76079270113199 ], [ -81.978482440999983, 28.760814181000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978848575999962, 28.761207852000041 ], [ -81.978916314999935, 28.761130078000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120969345999981, 28.710415216000058 ], [ -82.120826435999959, 28.71036560500005 ], [ -82.120257167999966, 28.710176287000024 ], [ -82.120180236999943, 28.710149238000042 ], [ -82.120107149999967, 28.710118796000074 ], [ -82.120084018999989, 28.71006458100004 ], [ -82.120080056999939, 28.709962892000078 ], [ -82.120095351999964, 28.70988830400006 ], [ -82.120141312999976, 28.709732336000059 ], [ -82.120333080999956, 28.709315231000062 ], [ -82.120570896999936, 28.708820120000041 ], [ -82.120705125999962, 28.708521704000077 ], [ -82.120751118999976, 28.708396243000038 ], [ -82.120766397999944, 28.708308097000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987962339999967, 28.758053374000042 ], [ -81.988579088999984, 28.757940101000031 ], [ -81.989327841999966, 28.757728210000039 ], [ -81.990028878999965, 28.757480785000041 ], [ -81.990543137999964, 28.75725159600006 ], [ -81.991062052999951, 28.756987790000039 ], [ -81.991607787999953, 28.756636266000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981076670999983, 28.760559239000031 ], [ -81.981093237999971, 28.760554269000068 ], [ -81.981363620999957, 28.760457704000032 ], [ -81.981656076999968, 28.760352861000058 ], [ -81.981973363999941, 28.760225946000048 ], [ -81.982240987999944, 28.760101790000078 ], [ -81.98257758799997, 28.759936249000077 ], [ -81.982959932999961, 28.759743953000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006114633999971, 28.786627672000066 ], [ -82.004313651999951, 28.786628412000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006949843999962, 28.78615755900006 ], [ -82.006120636999981, 28.78615755900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00694995799995, 28.785429755000052 ], [ -82.006949843999962, 28.78615755900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006949843999962, 28.78615755900006 ], [ -82.006950920999941, 28.786251092000043 ], [ -82.00700965599998, 28.786296347000075 ], [ -82.007775145999972, 28.786293458000046 ], [ -82.007782848999966, 28.785432644000025 ], [ -82.00694995799995, 28.785429755000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00694995799995, 28.785429755000052 ], [ -82.006130546999941, 28.785424941000031 ], [ -82.006120636999981, 28.78615755900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006120636999981, 28.78615755900006 ], [ -82.006114633999971, 28.786627672000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99115521899995, 28.954138182000065 ], [ -81.991165044999946, 28.954127521000032 ], [ -81.991199062999954, 28.954090611000026 ], [ -81.991295485999956, 28.953988275000029 ], [ -81.99139523499997, 28.953847926000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017098441999963, 28.838458434000074 ], [ -82.017259802999945, 28.838389143000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016506857999957, 28.838312976000054 ], [ -82.01653741299998, 28.838283749000027 ], [ -82.016561325999987, 28.838249208000036 ], [ -82.016579924999974, 28.838209353000025 ], [ -82.016590552999958, 28.838168170000074 ], [ -82.01659320999994, 28.838125658000024 ], [ -82.016590552999958, 28.838077833000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016590552999958, 28.838077833000057 ], [ -82.016579924999974, 28.838043292000066 ], [ -82.016561325999987, 28.83800476600004 ], [ -82.01653209899996, 28.837960925000061 ], [ -82.016493572999934, 28.83792638500006 ], [ -82.016455045999976, 28.837899815000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016455045999976, 28.837899815000071 ], [ -82.016400577999946, 28.837879887000042 ], [ -82.016335481999988, 28.837869259000058 ], [ -82.016291641999942, 28.837866602000076 ], [ -82.016243815999985, 28.837869259000058 ], [ -82.016206617999956, 28.837877230000061 ], [ -82.016149492999944, 28.837907786000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016149492999944, 28.837907786000073 ], [ -82.016113623999956, 28.837937012000054 ], [ -82.016079082999966, 28.837972882000031 ], [ -82.016052512999977, 28.838024693000079 ], [ -82.016035242999976, 28.838083147000077 ], [ -82.016032585999938, 28.838138943000047 ], [ -82.016049855999938, 28.838197397000044 ], [ -82.016080410999962, 28.838251865000075 ], [ -82.016118937999977, 28.838291720000029 ], [ -82.016174733999947, 28.838327589000073 ], [ -82.016234516999987, 28.838350174000027 ], [ -82.016295626999977, 28.838358145000029 ], [ -82.016352751999989, 28.838356816000044 ], [ -82.016411205999987, 28.838347517000045 ], [ -82.01646035999994, 28.838332903000037 ], [ -82.016506857999957, 28.838312976000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016506857999957, 28.838312976000054 ], [ -82.016563398999949, 28.83830843100003 ], [ -82.016618157999972, 28.838307648000068 ], [ -82.016672132999986, 28.838316253000073 ], [ -82.016745665999963, 28.838332681000054 ], [ -82.016817633999949, 28.838354584000058 ], [ -82.017098441999963, 28.838458434000074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017259802999945, 28.838389143000029 ], [ -82.017133666999939, 28.838344415000051 ], [ -82.016959222999958, 28.838284181000063 ], [ -82.01683719, 28.838238810000064 ], [ -82.016719068999976, 28.838195785000039 ], [ -82.01667839199996, 28.838168406000079 ], [ -82.016641624999977, 28.838140245000034 ], [ -82.016618157999972, 28.838112084000045 ], [ -82.016590552999958, 28.838077833000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016164663999973, 28.832339010000055 ], [ -82.016136476630962, 28.832306247126539 ], [ -82.016103336621185, 28.832278504138156 ], [ -82.016066126219854, 28.832256519605295 ], [ -82.016025836037642, 28.832240878797453 ], [ -82.015983538674774, 28.832231998102273 ], [ -82.015940360166383, 28.832230113940518 ], [ -82.01589745000534, 28.832235276472108 ], [ -82.015855950540626, 28.832247348260765 ], [ -82.015816966565836, 28.832266007932841 ], [ -82.015781535907479, 28.832290758732857 ], [ -82.015750601796157, 28.832320941748097 ], [ -82.015724987755917, 28.832355753450088 ], [ -82.015705375680568, 28.832394267086023 ], [ -82.015692287680324, 28.832435457350677 ], [ -82.015686072182319, 28.832478227681946 ], [ -82.015686894654749, 28.832521439453394 ], [ -82.015694733201855, 28.832563942286615 ], [ -82.015709379146827, 28.832604604676469 ], [ -82.015730442587142, 28.832642344113864 ], [ -82.015757362774494, 28.832676155904203 ], [ -82.015789423043003, 28.832705139914196 ], [ -82.015825769888195, 28.832728524535142 ], [ -82.015865435688895, 28.83274568722457 ], [ -82.015907364467054, 28.832756171079492 ], [ -82.015950439999983, 28.832759697000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015950439999983, 28.832759697000029 ], [ -82.015987415906665, 28.832757103573595 ], [ -82.016023667773283, 28.832749374039128 ], [ -82.016058485734831, 28.832736659752303 ], [ -82.016091188004296, 28.832719209677599 ], [ -82.016121134223056, 28.832697365513202 ], [ -82.016147737999972, 28.832671555000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016147737999972, 28.832671555000047 ], [ -82.016169200909729, 28.83264417194076 ], [ -82.016186889762864, 28.832614212085865 ], [ -82.016200499390834, 28.83258219230358 ], [ -82.016209794999952, 28.832548665000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016209794999952, 28.832548665000047 ], [ -82.01621475401015, 28.832512231508797 ], [ -82.016214620056303, 28.83247546232165 ], [ -82.0162093957195, 28.832439065929361 ], [ -82.016199181665399, 28.832403743639432 ], [ -82.01618417470452, 28.832370176062934 ], [ -82.016164663999973, 28.832339010000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015950439999983, 28.832759697000029 ], [ -82.016015994999975, 28.832818305000046 ], [ -82.01609670199997, 28.832958197000039 ], [ -82.016161266999973, 28.833184175000042 ], [ -82.016209690999972, 28.833399393000036 ], [ -82.016247353999972, 28.833617301000061 ], [ -82.016260804999945, 28.833819068000025 ], [ -82.016260804999945, 28.834211840000023 ], [ -82.016258114999971, 28.835667250000029 ], [ -82.016252734999966, 28.837154942000041 ], [ -82.016246705999947, 28.837470431000042 ], [ -82.016245166999965, 28.837676599000076 ], [ -82.016239012999961, 28.837738142000035 ], [ -82.016219010999976, 28.837795069000038 ], [ -82.016189778999944, 28.837853535000079 ], [ -82.016149492999944, 28.837907786000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016455045999976, 28.837899815000071 ], [ -82.016415947999974, 28.837858150000045 ], [ -82.016395946999978, 28.837824302000058 ], [ -82.016382099999987, 28.837790453000025 ], [ -82.016380560999949, 28.837751989000026 ], [ -82.016380560999949, 28.837619672000073 ], [ -82.016382099999987, 28.837073480000072 ], [ -82.016388253999935, 28.836207265000041 ], [ -82.016392869999947, 28.835333357000025 ], [ -82.016389792999973, 28.834462527000028 ], [ -82.016395946999978, 28.833790172000079 ], [ -82.016388253999935, 28.833670163000079 ], [ -82.016377483999975, 28.833577849000051 ], [ -82.016360559999953, 28.833468611000058 ], [ -82.016323633999946, 28.833273212000051 ], [ -82.016275938999968, 28.83311320100006 ], [ -82.016234603999976, 28.832992552000064 ], [ -82.016196178999962, 28.832891334000067 ], [ -82.016168062999952, 28.832807924000065 ], [ -82.016154004999976, 28.832759189000058 ], [ -82.016146506999974, 28.832715141000051 ], [ -82.016147737999972, 28.832671555000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016209794999952, 28.832548665000047 ], [ -82.016244692999976, 28.83251215100006 ], [ -82.01629309599997, 28.832471555000041 ], [ -82.016349305999938, 28.832443450000028 ], [ -82.016438304999951, 28.832420030000037 ], [ -82.016535110999939, 28.832401293000032 ], [ -82.01667407399998, 28.832390363000059 ], [ -82.016914526999983, 28.83238411800005 ], [ -82.017119067999943, 28.832390363000059 ], [ -82.017275205999965, 28.832401293000032 ], [ -82.017412607999972, 28.832405977000064 ], [ -82.017562500999986, 28.832396609000057 ], [ -82.017734252999958, 28.832368504000044 ], [ -82.017902882999977, 28.832327908000025 ], [ -82.018090248999954, 28.832252962000041 ], [ -82.01826043899996, 28.832167086000027 ], [ -82.018394717999968, 28.832079648000047 ], [ -82.018514944999936, 28.831978158000027 ], [ -82.018617995999989, 28.831870423000055 ], [ -82.018703871999946, 28.83176112600006 ], [ -82.018783502999952, 28.831633092000061 ], [ -82.01885376499996, 28.831486322000046 ], [ -82.018900606999978, 28.83134267500003 ], [ -82.018922465999935, 28.831236501000035 ], [ -82.018938079999941, 28.83110066100005 ], [ -82.018938079999941, 28.83097575000005 ], [ -82.018924026999969, 28.83085083900005 ], [ -82.018919342999936, 28.83072280600004 ], [ -82.018927149999968, 28.830599457000062 ], [ -82.018949008999982, 28.830496405000076 ], [ -82.018969306999963, 28.830387108000025 ], [ -82.019023955999955, 28.830226286000027 ], [ -82.019091094999965, 28.83007639300007 ], [ -82.019175409999946, 28.829942114000062 ], [ -82.019256601999984, 28.829845308000074 ], [ -82.019339354999943, 28.829789099000038 ], [ -82.019401070999947, 28.829755090000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019401070999947, 28.829755090000049 ], [ -82.019446055999936, 28.82975827000007 ], [ -82.019491710999944, 28.829754981000065 ], [ -82.019536154999969, 28.829745216000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019166775999963, 28.82954165600006 ], [ -82.019176036999966, 28.829580551000049 ], [ -82.019180229999961, 28.829590150000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019180229999961, 28.829590150000058 ], [ -82.01917783, 28.829642929000045 ], [ -82.019173516999956, 28.829669926000065 ], [ -82.019166881, 28.82970227900006 ], [ -82.019151947999944, 28.82974458700005 ], [ -82.019132867999986, 28.829781088000061 ], [ -82.019107151999947, 28.829819248000035 ], [ -82.019078945999979, 28.829857408000066 ], [ -82.019035808999945, 28.829923774000065 ], [ -82.018989352999938, 28.83000009400007 ], [ -82.018939578999948, 28.830089687000054 ], [ -82.018885656999942, 28.830211634000079 ], [ -82.018843348999951, 28.830330262000075 ], [ -82.018827586999976, 28.830402434000064 ], [ -82.01880684799994, 28.83050447100004 ], [ -82.018792745999974, 28.830613974000073 ], [ -82.018786108999961, 28.830692783000075 ], [ -82.018783619999965, 28.830763296000043 ], [ -82.018784449999941, 28.830821366000066 ], [ -82.018788597999958, 28.830898516000047 ], [ -82.018795233999981, 28.830985620000035 ], [ -82.018798552999954, 28.831066088000057 ], [ -82.018794404999937, 28.831147386000055 ], [ -82.018784449999941, 28.831218729000057 ], [ -82.018772835999982, 28.831276798000033 ], [ -82.018742141999951, 28.831382154000039 ], [ -82.018694026999981, 28.831501611000078 ], [ -82.018643422999958, 28.831598671000052 ], [ -82.018587012999944, 28.831691582000076 ], [ -82.018523135999942, 28.831774539000037 ], [ -82.018442667999977, 28.831857496000055 ], [ -82.018339801999957, 28.831948748000059 ], [ -82.018234446999941, 28.83202589800004 ], [ -82.018134898999961, 28.832089775000043 ], [ -82.01800465599996, 28.832155310000076 ], [ -82.017882709999981, 28.832196789000079 ], [ -82.017745830999957, 28.83223577900003 ], [ -82.017574110999988, 28.832267302000048 ], [ -82.017400730999952, 28.83227974600004 ], [ -82.017272147999961, 28.832276427000068 ], [ -82.017110382999988, 28.832263154000032 ], [ -82.016976821999947, 28.832257347000052 ], [ -82.016893035999942, 28.832260666000025 ], [ -82.016812567999978, 28.832268132000024 ], [ -82.016710530999944, 28.832274768000048 ], [ -82.016600198999981, 28.832289700000047 ], [ -82.016478251999956, 28.832310440000072 ], [ -82.016382021999959, 28.832327861000067 ], [ -82.016292428999975, 28.832346941000026 ], [ -82.016254268999944, 28.832349429000033 ], [ -82.01620864299997, 28.832346111000049 ], [ -82.016164663999973, 28.832339010000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.088615967999942, 28.811422987000071 ], [ -82.088637913999946, 28.81180944700003 ], [ -82.088764506999951, 28.813968058000057 ], [ -82.088791746999959, 28.814439947000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.089066966999951, 28.814438883000037 ], [ -82.089054506999958, 28.81422662500006 ], [ -82.088907358999961, 28.81156823300006 ], [ -82.088897899999949, 28.811412847000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.088615967999942, 28.811422987000071 ], [ -82.088897899999949, 28.811412847000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118946603999973, 28.714071999000055 ], [ -82.118897814999968, 28.714201978000062 ], [ -82.118527638999979, 28.715191038000057 ], [ -82.117950648999965, 28.71672430700005 ], [ -82.117463015999988, 28.718029499000068 ], [ -82.116949832999978, 28.719397920000063 ], [ -82.116418761999967, 28.720813758000077 ], [ -82.115989817999946, 28.721963134000077 ], [ -82.115433192999944, 28.723451226000066 ], [ -82.114840803999982, 28.725034156000049 ], [ -82.114399053999989, 28.726215142000058 ], [ -82.113926651999975, 28.727477417000046 ], [ -82.113479762999987, 28.72866066000006 ], [ -82.113053309999941, 28.729805510000062 ], [ -82.11249404299997, 28.731295848000059 ], [ -82.11190413099996, 28.732883275000063 ], [ -82.111521053, 28.733903927000028 ], [ -82.111189044999946, 28.734789093000074 ], [ -82.110926001999985, 28.735502641000039 ], [ -82.11072421199998, 28.736017489000062 ], [ -82.110530123, 28.736548132000053 ], [ -82.110310470999934, 28.737128458000029 ], [ -82.110060186999988, 28.737808132000055 ], [ -82.109860964999939, 28.738336521000065 ], [ -82.109723052999982, 28.738713616000041 ], [ -82.109403773999986, 28.739553618000059 ], [ -82.109181561999947, 28.740147489000037 ], [ -82.108655687999942, 28.741557414000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108943776, 28.741556896000077 ], [ -82.109233441999947, 28.740777256000058 ], [ -82.109570594, 28.739878545000067 ], [ -82.11007886699997, 28.738525964000075 ], [ -82.110569244999965, 28.737218542000051 ], [ -82.11088082699996, 28.736380798000027 ], [ -82.111332880999953, 28.735179502000051 ], [ -82.111790026999984, 28.733957882000027 ], [ -82.112183301999949, 28.732894330000079 ], [ -82.112571481999964, 28.731862385000056 ], [ -82.112732354999935, 28.731419806000076 ], [ -82.113018390999969, 28.730674631000056 ], [ -82.11363705499997, 28.729009120000057 ], [ -82.114090905999944, 28.727802341000029 ], [ -82.114384565999956, 28.727021039000078 ], [ -82.115119979999974, 28.725070037000023 ], [ -82.115720013999976, 28.723455496000042 ], [ -82.116148972999952, 28.722310635000042 ], [ -82.116674943999953, 28.720906090000028 ], [ -82.117198358999985, 28.719517346000032 ], [ -82.117706430999988, 28.718160216000058 ], [ -82.11828851599995, 28.716595342000062 ], [ -82.118811888999971, 28.715206590000037 ], [ -82.119215664999956, 28.714129705000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119215664999956, 28.714129705000062 ], [ -82.118946603999973, 28.714071999000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.146893455999987, 28.662914664000027 ], [ -82.147043484999983, 28.662694457000043 ], [ -82.147300683999958, 28.662316744000066 ], [ -82.147878172999981, 28.661477612000056 ], [ -82.148261539999964, 28.660919621000062 ], [ -82.148872983, 28.660031125000046 ], [ -82.149278179999953, 28.659443083000042 ], [ -82.14980709799994, 28.658664043000044 ], [ -82.150372417999961, 28.657844214000079 ], [ -82.150869775, 28.657108095000069 ], [ -82.151017518999936, 28.656889171000046 ], [ -82.151847888999953, 28.655680148000044 ], [ -82.152373953999984, 28.654915950000031 ], [ -82.15294384799995, 28.654085597000062 ], [ -82.153441519999944, 28.653353340000024 ], [ -82.153732905999959, 28.652929036000046 ], [ -82.154413654999985, 28.651936713000055 ], [ -82.155115013999989, 28.650910170000031 ], [ -82.155673158999946, 28.650109714000052 ], [ -82.15584729699998, 28.649835720000056 ], [ -82.156558949999976, 28.648800039000037 ], [ -82.157555136999974, 28.647345185000063 ], [ -82.160237213999949, 28.643445263000046 ], [ -82.162001225999973, 28.640843337000035 ], [ -82.162521906999984, 28.640088091000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.162272939, 28.639978920000033 ], [ -82.162127158999965, 28.640190933000042 ], [ -82.161928651999972, 28.640480657000069 ], [ -82.161719838999943, 28.640790908000042 ], [ -82.161459450999985, 28.641167325000026 ], [ -82.161016031999964, 28.641819769000051 ], [ -82.160260646999973, 28.642923908000057 ], [ -82.159549058999971, 28.643952769000066 ], [ -82.158930305999945, 28.644867547000047 ], [ -82.158515197999975, 28.645467523000036 ], [ -82.158074329999977, 28.646122233000028 ], [ -82.156903760999967, 28.647828605000029 ], [ -82.156380347999971, 28.648592818000054 ], [ -82.155568141999936, 28.649781334000068 ], [ -82.154820381999969, 28.650876315000062 ], [ -82.154129326999964, 28.651882329000046 ], [ -82.153969460999974, 28.652119572000061 ], [ -82.15369611999995, 28.652511943000036 ], [ -82.153507876999981, 28.652783408000062 ], [ -82.152832284999988, 28.653778001000035 ], [ -82.152597610999976, 28.654111062000027 ], [ -82.152105090999953, 28.654838752000046 ], [ -82.151493925999944, 28.65572841200003 ], [ -82.150784760999954, 28.656764063000026 ], [ -82.150147789999949, 28.657694775000039 ], [ -82.14996171699994, 28.657973341000059 ], [ -82.149658432999956, 28.658413300000063 ], [ -82.149056724, 28.65929535600003 ], [ -82.148619986999961, 28.659932755000057 ], [ -82.147996416999945, 28.660842709000065 ], [ -82.147671277999962, 28.661314856000047 ], [ -82.147050115999946, 28.662218369000072 ], [ -82.146815964999973, 28.662561744000072 ], [ -82.146742850999942, 28.662668207000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.162272939, 28.639978920000033 ], [ -82.162521906999984, 28.640088091000052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021009819999961, 28.755868106000037 ], [ -82.020536054, 28.755865367000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038070547999951, 28.945622436000065 ], [ -82.037773131999984, 28.945610909000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.161492625999983, 28.86171766700005 ], [ -82.162152875999936, 28.861548713000047 ], [ -82.162541094999938, 28.861440883000057 ], [ -82.162887118999947, 28.861336786000038 ], [ -82.163108257999966, 28.861251691000064 ], [ -82.163343669999961, 28.861163435000037 ], [ -82.163568358999953, 28.86106576800006 ], [ -82.163800184999957, 28.860968091000075 ], [ -82.165343080999946, 28.860286287000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.175950993999948, 28.837798724000038 ], [ -82.176070636999953, 28.83785262400005 ], [ -82.176151438999966, 28.837866744000053 ], [ -82.17652942899997, 28.837834954000073 ], [ -82.176720050999961, 28.837826170000028 ], [ -82.177220923999982, 28.837853963000043 ], [ -82.177369594999959, 28.837876528000038 ], [ -82.177524756999958, 28.837916155000073 ], [ -82.177712272999941, 28.83798134500006 ], [ -82.177896586999964, 28.838063609000073 ], [ -82.178051745999937, 28.838100390000079 ], [ -82.178297354999984, 28.838125672000047 ], [ -82.178520400999957, 28.838182278000033 ], [ -82.178717592999988, 28.838236074000065 ], [ -82.179244495999967, 28.83836909200005 ], [ -82.179425519999938, 28.838414373000035 ], [ -82.179625899999962, 28.838442557000064 ], [ -82.179826274999982, 28.838467897000044 ], [ -82.180181816999948, 28.838656392000075 ], [ -82.180602564999958, 28.838939142000072 ], [ -82.181214058999956, 28.839402069000073 ], [ -82.18163478799994, 28.839791278000064 ], [ -82.181909977999965, 28.840101020000077 ], [ -82.182065408999961, 28.840291431000026 ], [ -82.182198160999974, 28.84044773100004 ], [ -82.182298555999978, 28.840578468000047 ], [ -82.182402237999952, 28.84074049700007 ], [ -82.182450949999975, 28.840879839000024 ], [ -82.182606464999935, 28.841118615000028 ], [ -82.182677755999975, 28.841235167000036 ], [ -82.182761927999934, 28.841326096000046 ], [ -82.182930419999934, 28.841593304000071 ], [ -82.183056884999985, 28.841849189000072 ], [ -82.183092509999938, 28.841894662000072 ], [ -82.183137846999955, 28.841951502000029 ], [ -82.183189650999964, 28.842011178000064 ], [ -82.183247887999983, 28.842053775000068 ], [ -82.183306120999987, 28.842093527000031 ], [ -82.18355440199997, 28.842233002000057 ], [ -82.183619076999946, 28.842265229000077 ], [ -82.183761727, 28.842343073000052 ], [ -82.183898011999986, 28.84241705900007 ], [ -82.184033879999959, 28.842505071000062 ], [ -82.18417945799996, 28.842601606000073 ], [ -82.184289507999949, 28.842706723000049 ], [ -82.184399570999972, 28.842820375000031 ], [ -82.184496710999952, 28.842934046000039 ], [ -82.184561460999987, 28.843005083000037 ], [ -82.18463914299997, 28.843078949000073 ], [ -82.184733020999943, 28.843175553000037 ], [ -82.184788062999985, 28.843238069000051 ], [ -82.184839849999946, 28.84328636500004 ], [ -82.184907776999978, 28.843326102000049 ], [ -82.185004795999987, 28.843371490000038 ], [ -82.185019607999948, 28.843376008000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.15360366799996, 28.628632320000065 ], [ -82.153618739999956, 28.628574359000027 ], [ -82.153664158999959, 28.628543107000041 ], [ -82.153727295999943, 28.628536350000047 ], [ -82.15380055199995, 28.628539609000029 ], [ -82.154474993999941, 28.628561129000047 ], [ -82.155078676999949, 28.628558211000041 ], [ -82.155952617999958, 28.628548293000051 ], [ -82.156157223999969, 28.628554743000052 ], [ -82.156334035999976, 28.628554540000039 ], [ -82.156533589999981, 28.628560996000033 ], [ -82.15662956999995, 28.628558656000052 ], [ -82.156717982999965, 28.62856301100004 ], [ -82.156851856999936, 28.628565085000048 ], [ -82.156973100999949, 28.628564945000051 ], [ -82.15731158799997, 28.628577924000069 ], [ -82.157400005999989, 28.628586735000056 ], [ -82.157458104999989, 28.628588896000053 ], [ -82.15752630999998, 28.628593274000025 ], [ -82.157561662999967, 28.628586547000054 ], [ -82.157604573999947, 28.628566441000032 ], [ -82.157639898999946, 28.628541884000072 ], [ -82.157665097999939, 28.628501740000047 ], [ -82.157675130999962, 28.628454929000043 ], [ -82.157680066999944, 28.628376922000029 ], [ -82.157679926999947, 28.628283322000073 ], [ -82.157689609999977, 28.628002508000066 ], [ -82.157691916999966, 28.627855417000035 ], [ -82.157699140999966, 28.627619179000078 ], [ -82.157703932999937, 28.627445343000034 ], [ -82.157713575999935, 28.627137786000048 ], [ -82.157705605999979, 28.626874820000069 ], [ -82.157702460999985, 28.62646030600007 ], [ -82.15769708199997, 28.626241910000033 ], [ -82.157694319999962, 28.626083683000047 ], [ -82.157696645999977, 28.625949965000075 ], [ -82.157701404999955, 28.62575384400003 ], [ -82.157708654999965, 28.625535432000049 ], [ -82.15771579699998, 28.625243478000073 ], [ -82.157722974999956, 28.624976039000046 ], [ -82.157724209999969, 28.624930634000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.084517196999968, 28.537601262000067 ], [ -82.084518341999967, 28.53759128400003 ], [ -82.084545360999982, 28.537420735000069 ], [ -82.084578416999989, 28.537250183000026 ], [ -82.084608472999946, 28.537103613000056 ], [ -82.084627221999938, 28.536964669000042 ], [ -82.084817084999941, 28.536323715000037 ], [ -82.084900172999937, 28.536043468000059 ], [ -82.084948316999942, 28.53588116700007 ], [ -82.084986437999987, 28.535732390000078 ], [ -82.085024402999977, 28.535564899000065 ], [ -82.08504450099997, 28.535408575000076 ], [ -82.085053433999974, 28.535265650000042 ], [ -82.085046734999935, 28.535131658000068 ], [ -82.085037801999988, 28.534995432000073 ], [ -82.08500653699997, 28.534823475000053 ], [ -82.084948473999987, 28.534604621000028 ], [ -82.084892642999989, 28.534381300000064 ], [ -82.084821180999938, 28.53407535100007 ], [ -82.084619570999962, 28.533286442000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960677876999966, 28.955371744000047 ], [ -81.960374686999955, 28.955071418000045 ], [ -81.960371822999946, 28.955068581000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012332225999955, 28.959706896000057 ], [ -82.012356501999989, 28.959717842000032 ], [ -82.012392408999972, 28.959728363000067 ], [ -82.012432469999965, 28.959737432000054 ], [ -82.012497294999946, 28.959738318000063 ], [ -82.012559077999981, 28.959738313000059 ], [ -82.012625926999988, 28.959738306000077 ], [ -82.01271202099997, 28.959738298000048 ], [ -82.012790008999957, 28.959738291000065 ], [ -82.012937887999954, 28.959738277000042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054466520999938, 28.521631954000043 ], [ -82.054433550999988, 28.521404656000072 ], [ -82.054433550999988, 28.521148864000054 ], [ -82.054433550999988, 28.52063133200005 ], [ -82.054433550999988, 28.519810418000077 ], [ -82.054433550999988, 28.519275039000036 ], [ -82.054445448999957, 28.518352998000069 ], [ -82.054445448999957, 28.516544607000071 ], [ -82.054457345999936, 28.514754063000055 ], [ -82.054469242999971, 28.512957570000026 ], [ -82.054469242999971, 28.512160450000067 ], [ -82.054475191999984, 28.510363957000038 ], [ -82.054475191999984, 28.509548992000077 ], [ -82.054469242999971, 28.507990445000075 ], [ -82.054475191999984, 28.507318247000057 ], [ -82.054487088999963, 28.506414052000025 ], [ -82.054522780999946, 28.504986375000044 ], [ -82.05454657599995, 28.503909669000052 ], [ -82.054576318999978, 28.503064961000064 ], [ -82.054588215999956, 28.501774103000059 ], [ -82.054589186999976, 28.501722292000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030550152999979, 28.912832519000062 ], [ -82.030477772999973, 28.912834950000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035364349999952, 28.845672252000043 ], [ -82.035940186999937, 28.84585670000007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148440784999934, 28.632914541000048 ], [ -82.148460918999945, 28.632232151000039 ], [ -82.148447522999959, 28.631645551000076 ], [ -82.148454011999945, 28.63087222200005 ], [ -82.148452668999937, 28.629918386000043 ], [ -82.148453614999937, 28.62879517500005 ], [ -82.148454663999985, 28.627745506000053 ], [ -82.148449022999955, 28.627326537000044 ], [ -82.148452688999953, 28.626341495000077 ], [ -82.14845626999994, 28.625296281000033 ], [ -82.148453483999958, 28.625111310000079 ], [ -82.148455564999949, 28.624794848000079 ], [ -82.148459762999948, 28.624188665000077 ], [ -82.148464717999957, 28.62411957300003 ], [ -82.148464657999966, 28.624077230000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.173877860999937, 28.858768734000023 ], [ -82.173997672999974, 28.858759537000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955018855999981, 28.955693899000039 ], [ -81.955898967999985, 28.956560695000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955898967999985, 28.956560695000064 ], [ -81.955948335999949, 28.956609198000024 ], [ -81.95598281499997, 28.956636916000036 ], [ -81.95607272999996, 28.956691 ], [ -81.956718033999948, 28.957044573000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956718033999948, 28.957044573000076 ], [ -81.95660281499994, 28.957174821000024 ], [ -81.956514992999985, 28.957343440000045 ], [ -81.956441221999967, 28.957505032000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955898967999985, 28.956560695000064 ], [ -81.955832489999977, 28.956613621000031 ], [ -81.955783001999976, 28.956653020000033 ], [ -81.955704100999981, 28.95667402600003 ], [ -81.954432748999977, 28.956704860000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954421621999984, 28.955872581000051 ], [ -81.954432748999977, 28.956704860000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954408269999988, 28.955046979000031 ], [ -81.954421621999984, 28.955872581000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956323432999966, 28.954809509000029 ], [ -81.956255509999949, 28.954825008000057 ], [ -81.956087931999946, 28.954863248000038 ], [ -81.956027382999935, 28.954877064000073 ], [ -81.955955786999937, 28.95491985700005 ], [ -81.955810351999958, 28.95504 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955810351999958, 28.95504 ], [ -81.955362663999949, 28.955408014000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955362663999949, 28.955408014000056 ], [ -81.955018855999981, 28.955693899000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955018855999981, 28.955693899000039 ], [ -81.954902329999982, 28.955788675000065 ], [ -81.954856542999948, 28.955825916000038 ], [ -81.954826737999952, 28.955850158000032 ], [ -81.95474424799994, 28.955864554000073 ], [ -81.954421621999984, 28.955872581000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954408269999988, 28.955046979000031 ], [ -81.954758158999937, 28.955036206000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954758158999937, 28.955036206000045 ], [ -81.954925093999975, 28.955031147000057 ], [ -81.954998443999955, 28.955055175000041 ], [ -81.955059146999986, 28.955107026000064 ], [ -81.955362663999949, 28.955408014000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954791039999975, 28.953691878000029 ], [ -81.954737924999961, 28.953812020000044 ], [ -81.954740453999989, 28.953991601000041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954740453999989, 28.953991601000041 ], [ -81.954758158999937, 28.955036206000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954740453999989, 28.953991601000041 ], [ -81.955810351999958, 28.95504 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053731031999973, 28.879775065000047 ], [ -82.053731854999967, 28.880074828000033 ], [ -82.053731694999954, 28.880112628000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05373455299997, 28.887361394000038 ], [ -82.051499909999961, 28.887354037000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075703801999964, 28.748849358000029 ], [ -82.075700475999952, 28.748849324000048 ], [ -82.075041574999943, 28.748842540000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075041574999943, 28.748842540000055 ], [ -82.074543773999949, 28.748837415000025 ], [ -82.073913348999952, 28.748839780000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062658342999953, 28.741496246000054 ], [ -82.062670811999965, 28.740792647000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062670811999965, 28.740792647000035 ], [ -82.062685770999963, 28.739948499000036 ], [ -82.062685535999947, 28.739915954000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06366527199998, 28.738977144000046 ], [ -82.063219844999935, 28.738825415000065 ], [ -82.06303878999995, 28.738747 ], [ -82.062952561999964, 28.738691330000051 ], [ -82.062886438999953, 28.738622989000078 ], [ -82.062814546999959, 28.738516667000056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06437809099998, 28.739026330000058 ], [ -82.063940450999951, 28.739026538000076 ], [ -82.063846874999967, 28.739022001000023 ], [ -82.06366527199998, 28.738977144000046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070614360999969, 28.736596661000078 ], [ -82.070257104999939, 28.736611724000056 ], [ -82.069135692999964, 28.736589984000034 ], [ -82.068886082999938, 28.736577358000034 ], [ -82.06865094799997, 28.736574288000043 ], [ -82.06853517899998, 28.736555218000035 ], [ -82.068374516999938, 28.736481266000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067938505999962, 28.73721508400007 ], [ -82.068308029999969, 28.736595824000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069906980999974, 28.733933404000027 ], [ -82.070178448999968, 28.733471279000071 ], [ -82.070305389999987, 28.733252537000055 ], [ -82.070427106999944, 28.733052661000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070427106999944, 28.733052661000045 ], [ -82.070447243999979, 28.733019593000051 ], [ -82.070575893999944, 28.732798297000045 ], [ -82.070704538999962, 28.732571180000036 ], [ -82.070823302999941, 28.732381911000061 ], [ -82.070922267999947, 28.732218848000059 ], [ -82.070994845999962, 28.732105285000046 ], [ -82.071110308999948, 28.731921837000073 ], [ -82.07119609199998, 28.731802446000074 ], [ -82.071203693999962, 28.731791091000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104256215999953, 28.695220988000074 ], [ -82.104257349999955, 28.694801566000024 ], [ -82.104256721999946, 28.694168160000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104256721999946, 28.694168160000061 ], [ -82.104254443999935, 28.693620435000071 ], [ -82.104255708999972, 28.693146143000035 ], [ -82.104255317999957, 28.692751340000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.098842474999969, 28.65388882600007 ], [ -82.098287027999959, 28.653884886000071 ], [ -82.097979549999934, 28.653883323000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07128397799994, 28.664747547000047 ], [ -82.071163078999973, 28.664748585000041 ], [ -82.07025602899995, 28.664746605000062 ], [ -82.068817548999959, 28.664744890000065 ], [ -82.067178745999968, 28.664755528000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075387316, 28.664739347000079 ], [ -82.075325479999947, 28.664738972000066 ], [ -82.073823008999966, 28.664742254000032 ], [ -82.071772411999973, 28.664743356000031 ], [ -82.07128397799994, 28.664747547000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.079379830999983, 28.726875563000078 ], [ -82.079366523999965, 28.726747491000026 ], [ -82.079366324999967, 28.726484346000063 ], [ -82.079345067999952, 28.72408733900005 ], [ -82.079337643999963, 28.723151656000027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029817742999967, 28.653672180000058 ], [ -82.029812977999939, 28.652280060000066 ], [ -82.029821349999963, 28.650457035000045 ], [ -82.029830111999956, 28.650006178000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046453628999984, 28.650158629000032 ], [ -82.045846080999979, 28.650155751000057 ], [ -82.043284946999961, 28.650154131000079 ], [ -82.042324640999936, 28.65015001300003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054793447999941, 28.646522356000048 ], [ -82.054436001999989, 28.646525387000054 ], [ -82.054102689, 28.646516704000078 ], [ -82.052887958999975, 28.646487857000068 ], [ -82.052717332999975, 28.646483653000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054793447999941, 28.646522356000048 ], [ -82.05479046399995, 28.645818943000052 ], [ -82.054786977999981, 28.644936973000029 ], [ -82.054786852999939, 28.644695714000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054773697999963, 28.636753484000053 ], [ -82.054768654999975, 28.635604390000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061380394999958, 28.613703862000079 ], [ -82.060279762999983, 28.613701538000043 ], [ -82.059692558999984, 28.613698785000054 ], [ -82.05917704899997, 28.613699011000051 ], [ -82.058880036999938, 28.613702153000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065151496999988, 28.613708321000047 ], [ -82.064799857999958, 28.613708490000079 ], [ -82.064367814999969, 28.613706252000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064367814999969, 28.613706252000043 ], [ -82.064267277999988, 28.613705731000039 ], [ -82.063708764999944, 28.613705992000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05614585099994, 28.595434766000039 ], [ -82.05555594599997, 28.595443345000035 ], [ -82.054719054999964, 28.595441239000024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057469480999941, 28.595426273000044 ], [ -82.056707705999941, 28.59542659400006 ], [ -82.05614585099994, 28.595434766000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056145793999974, 28.588113305000036 ], [ -82.055809790999945, 28.588113251000038 ], [ -82.054723579999973, 28.588125923000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067232198999989, 28.584520002000033 ], [ -82.067163301999983, 28.584531863000052 ], [ -82.06702796999997, 28.584558707000042 ], [ -82.066908973999944, 28.584591724000063 ], [ -82.066787645999966, 28.584624741000027 ], [ -82.066666320999957, 28.584659817000045 ], [ -82.066449336999938, 28.584732017000078 ], [ -82.066120359999957, 28.584835171000066 ], [ -82.065691056999981, 28.584973388000037 ], [ -82.065415738999945, 28.585055914000066 ], [ -82.065226736999989, 28.585093083000061 ], [ -82.065092419999985, 28.585114179000072 ], [ -82.064977061999969, 28.585134399000026 ], [ -82.06485338899995, 28.585148878000041 ], [ -82.064669035999941, 28.585157204000041 ], [ -82.064237331999948, 28.585190367000052 ], [ -82.063894310999956, 28.585229666000032 ], [ -82.063593300999969, 28.585277183000073 ], [ -82.063485969999988, 28.585306072000037 ], [ -82.06339264099995, 28.585334952000039 ], [ -82.06328297999994, 28.585370021000074 ], [ -82.063208327999973, 28.585409193000032 ], [ -82.063126805999957, 28.585466943000029 ], [ -82.063045052999939, 28.585545219000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05471966999994, 28.580794716000071 ], [ -82.054719758999966, 28.580744567000067 ], [ -82.054716302999964, 28.579420180000056 ], [ -82.054715775999966, 28.578401513000074 ], [ -82.054717930999971, 28.577212862000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036359512999979, 28.931095271000061 ], [ -82.035776871999985, 28.93108154500004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039173079999955, 28.928862601000048 ], [ -82.039173077999976, 28.928863217000071 ], [ -82.039171559999943, 28.929404040000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037446294999938, 28.927411597000059 ], [ -82.037463287999969, 28.927186280000058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037091715999964, 28.921997410000074 ], [ -82.037093721999952, 28.922070911000048 ], [ -82.037113344999966, 28.922743550000064 ], [ -82.037116530999981, 28.922867418000067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040163692999954, 28.916451579000068 ], [ -82.039554348999957, 28.916456634000042 ], [ -82.039049294999984, 28.916457475000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020556660999944, 28.897465730000079 ], [ -82.020553691999964, 28.897771849000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037095485999942, 28.892939906000038 ], [ -82.037091688999965, 28.892656946000045 ], [ -82.037091682999971, 28.892656502000079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036963870999955, 28.887311434000026 ], [ -82.036953327999981, 28.888170107000064 ], [ -82.036952521999979, 28.888276474000065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035614939999959, 28.88730014600003 ], [ -82.034976940999968, 28.887300313000026 ], [ -82.034445991999974, 28.887291953000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051499909999961, 28.887354037000023 ], [ -82.05055751499998, 28.88735093400004 ], [ -82.049585044999958, 28.88734699500003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05373455299997, 28.887361394000038 ], [ -82.05374003299994, 28.887863548000041 ], [ -82.053734255999984, 28.888788071000079 ], [ -82.053724664999947, 28.890402315000074 ], [ -82.053722002999962, 28.891158325000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053731694999954, 28.880112628000063 ], [ -82.053731693999964, 28.880112924000059 ], [ -82.053726279999978, 28.881391907000079 ], [ -82.053725787999952, 28.881884651000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026798335999956, 28.883679438000058 ], [ -82.026797374999944, 28.883679435000033 ], [ -82.026670442999944, 28.883679019000056 ], [ -82.025839327999961, 28.883677012000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025839327999961, 28.883677012000078 ], [ -82.024540921999971, 28.883673876000046 ], [ -82.023693015999982, 28.883672617000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019320114999971, 28.874625583000068 ], [ -82.019086336999976, 28.874639442000046 ], [ -82.01854076099994, 28.874676752000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024699298999963, 28.872768155000074 ], [ -82.024550144999978, 28.872769604000041 ], [ -82.023383711999941, 28.872772506000047 ], [ -82.022686005999958, 28.872762157000068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020527111999968, 28.860050707000028 ], [ -82.020527176999963, 28.860380624000072 ], [ -82.020527699999946, 28.860533338000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018515117999982, 28.861835794000058 ], [ -82.018189822999943, 28.861829209000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037220962999982, 28.838759077000077 ], [ -82.037217108999982, 28.839888036000048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037223224999934, 28.838096550000046 ], [ -82.037220962999982, 28.838759077000077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001803582999969, 28.836059519000059 ], [ -82.001115324999944, 28.835567248000075 ], [ -82.000457123999979, 28.835109308000028 ], [ -81.999845985999968, 28.834681927000076 ], [ -81.99726794999998, 28.832941823000056 ], [ -81.997076125999968, 28.83280833200007 ], [ -81.997030505999987, 28.832768159000068 ], [ -81.997000093999986, 28.832721292000031 ], [ -81.996992491999947, 28.832687816000032 ], [ -81.996992492999937, 28.832658803000072 ], [ -81.997005165999951, 28.832620863000045 ], [ -81.997035580999977, 28.832571765000068 ], [ -81.997133952999945, 28.832453065000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003638701999989, 28.837402244000032 ], [ -82.003160825999942, 28.837064674000032 ], [ -82.00267994799998, 28.836711685000068 ], [ -82.002013345999956, 28.836209551000024 ], [ -82.001803582999969, 28.836059519000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028477068999962, 28.799723491000066 ], [ -82.028806067999938, 28.799726479000071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027085169999964, 28.801080677000073 ], [ -82.027078896999967, 28.801535404000049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020516276999956, 28.799695462000045 ], [ -82.020198319999963, 28.799691026000062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008351065999989, 28.755838686000061 ], [ -82.007279334999964, 28.755836999000053 ], [ -82.006051806999949, 28.755836185000078 ], [ -82.005175823999934, 28.755834785000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005175823999934, 28.755834785000047 ], [ -82.004985037999973, 28.755834480000033 ], [ -82.004418408999982, 28.755832750000025 ], [ -82.004142807999983, 28.755832139000063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954001895999966, 28.751682585000026 ], [ -81.95400750999994, 28.750778730000036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95400750999994, 28.750778730000036 ], [ -81.954011367999954, 28.750157697000077 ], [ -81.954011046999938, 28.750051570000039 ], [ -81.954022, 28.749998 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020530287999975, 28.856337856000039 ], [ -82.020529249999981, 28.857017916000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051882916999944, 28.799811636000072 ], [ -82.04996456899994, 28.799809992000064 ], [ -82.049888804999966, 28.799814280000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100687428999947, 28.664881720000039 ], [ -82.100219367999955, 28.664879896000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.079545328999984, 28.650170916000036 ], [ -82.077956555999947, 28.650171839000052 ], [ -82.077130198999953, 28.650169844000061 ], [ -82.076532997999948, 28.650182765000068 ], [ -82.076185954999971, 28.650185429000032 ], [ -82.075852901999951, 28.650180678000027 ], [ -82.075687775999938, 28.650180771000066 ], [ -82.075539444999947, 28.650183323000078 ], [ -82.075438685999984, 28.650178441000037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.082070233999957, 28.653799853000066 ], [ -82.082021421999968, 28.653799168000035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117612741999949, 28.688420717000042 ], [ -82.119089679999945, 28.688440921000051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119089679999945, 28.688440921000051 ], [ -82.119776748999982, 28.688446870000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119776748999982, 28.688446870000064 ], [ -82.120371613999964, 28.688449844000047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119089679999945, 28.688440921000051 ], [ -82.119092408999961, 28.688343349000036 ], [ -82.119099215999938, 28.68809998100005 ], [ -82.11910955899998, 28.68804768900003 ], [ -82.119124861999978, 28.687970321000023 ], [ -82.119125986999961, 28.687831964000054 ], [ -82.119131229999937, 28.687187453000035 ], [ -82.119136818999948, 28.68716108700005 ], [ -82.119148104999965, 28.687141738000037 ], [ -82.119165572999975, 28.687123732000032 ], [ -82.119189221999989, 28.687112177000074 ], [ -82.119220932999951, 28.687103308000076 ], [ -82.11924511899997, 28.687103577000073 ], [ -82.11968131499998, 28.687114733000044 ], [ -82.11971045599995, 28.687121164000075 ], [ -82.119739394999954, 28.687136840000051 ], [ -82.119767128999968, 28.687160554000059 ], [ -82.119782804999943, 28.687182861000053 ], [ -82.11978725299997, 28.687213787000076 ], [ -82.119787558999974, 28.687293992000036 ], [ -82.119789380999975, 28.687771368000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119789380999975, 28.687771368000028 ], [ -82.119776748999982, 28.688446870000064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120371613999964, 28.688449844000047 ], [ -82.120376977999967, 28.68785248100005 ], [ -82.120368044999964, 28.687823532000039 ], [ -82.120349449999935, 28.687799770000026 ], [ -82.120319144999939, 28.687782552000044 ], [ -82.120286774999954, 28.687775665000061 ], [ -82.12024476199997, 28.687776009000061 ], [ -82.119789380999975, 28.687771368000028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118798420999951, 28.670351498000059 ], [ -82.119680755, 28.670358823000072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035302277999961, 28.925179601000025 ], [ -82.03524852399994, 28.925178555000059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972253015999968, 28.781272983000065 ], [ -81.972531135999986, 28.780888038000057 ], [ -81.973035163999953, 28.780141940000078 ], [ -81.973301843999934, 28.779808814000035 ], [ -81.973681662, 28.779446955000026 ], [ -81.974036731999945, 28.779200819000039 ], [ -81.974816371999964, 28.778787241000032 ], [ -81.974950124999964, 28.778766122000036 ], [ -81.975149937999959, 28.778801353000063 ], [ -81.975172326999939, 28.778798909000045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974890358999971, 28.778586468000071 ], [ -81.974858472999983, 28.778633420000062 ], [ -81.974817767, 28.778680960000031 ], [ -81.974769334999962, 28.778719884000054 ], [ -81.973848421999946, 28.779225458000042 ], [ -81.973551463999968, 28.779448751000075 ], [ -81.973206665999953, 28.779774694000025 ], [ -81.972978595999962, 28.780056638000076 ], [ -81.972159678999958, 28.781223187000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.154998658999943, 28.581209029000036 ], [ -82.154992615999959, 28.580677894000075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976776418999975, 28.755669229000034 ], [ -81.975523400999975, 28.755659210000033 ], [ -81.974517168999967, 28.755653777000077 ], [ -81.973899933999974, 28.755647538000062 ], [ -81.972388601999967, 28.755634995000037 ], [ -81.971129323999946, 28.755622490000064 ], [ -81.970803674999956, 28.755616657000076 ], [ -81.970803057999944, 28.755616646000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978474056999971, 28.756663547000073 ], [ -81.978355091999958, 28.756494904000078 ], [ -81.978230897999936, 28.756352408000055 ], [ -81.978096244999961, 28.756226906000052 ], [ -81.977948519999984, 28.756110556000067 ], [ -81.977740657999959, 28.755964138000024 ], [ -81.977528873999972, 28.755849095000031 ], [ -81.977307938999957, 28.755762812000057 ], [ -81.97708046799994, 28.755722286000037 ], [ -81.976776418999975, 28.755669229000034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978707613999973, 28.760769758000038 ], [ -81.978669489999959, 28.760716111000079 ], [ -81.978630726999938, 28.760648524000032 ], [ -81.978607866999937, 28.760564041000066 ], [ -81.978520401999958, 28.760184363000064 ], [ -81.97843293699998, 28.759798722000028 ], [ -81.97840311899995, 28.759535333000031 ], [ -81.978397155999971, 28.759248090000028 ], [ -81.978427966999959, 28.75892407200007 ], [ -81.978485614999954, 28.758667640000056 ], [ -81.978620787999944, 28.758174655000062 ], [ -81.978687380999986, 28.75794406600005 ], [ -81.978728130999968, 28.757738324000059 ], [ -81.978758942999946, 28.757451081000056 ], [ -81.97873363399998, 28.757198163000055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978619222999953, 28.757063577000054 ], [ -81.978628260999983, 28.757150946000024 ], [ -81.978626598999938, 28.757432202000075 ], [ -81.978605287999983, 28.757652130000054 ], [ -81.978568633999942, 28.757863534000023 ], [ -81.978512372999944, 28.758085167000047 ], [ -81.978393883999956, 28.758512237000048 ], [ -81.97831972299997, 28.758815703000039 ], [ -81.978287329999944, 28.759016878000068 ], [ -81.978268236999952, 28.759274474000051 ], [ -81.978268888999935, 28.759487859000046 ], [ -81.978287812999952, 28.759705160000067 ], [ -81.978331533999949, 28.759946605000039 ], [ -81.978381127999967, 28.760158685000079 ], [ -81.978430722999974, 28.760374028000058 ], [ -81.97844768899995, 28.76044515600006 ], [ -81.978481621999947, 28.760594591000029 ], [ -81.978494672999943, 28.760661804000051 ], [ -81.978492714999959, 28.760721839000041 ], [ -81.978482440999983, 28.760814181000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97873363399998, 28.757198163000055 ], [ -81.978681918999939, 28.757055739000066 ], [ -81.978636679999966, 28.756931150000071 ], [ -81.978560339999945, 28.756772053000077 ], [ -81.978474056999971, 28.756663547000073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978474056999971, 28.756663547000073 ], [ -81.978555109999945, 28.75685179900006 ], [ -81.978619222999953, 28.757063577000054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994800211999973, 28.755798969000068 ], [ -81.994621114999973, 28.755552997000052 ], [ -81.994384429999968, 28.755302318000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993783909999934, 28.754931826000075 ], [ -81.993875782999964, 28.754949988000078 ], [ -81.993993911999951, 28.75499140900007 ], [ -81.994093629999952, 28.755069650000053 ], [ -81.994179541999983, 28.755159397000057 ], [ -81.994257781999977, 28.755222296000056 ], [ -81.994384429999968, 28.755302318000076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.161773126999947, 28.657827102000056 ], [ -82.161792214999934, 28.657793516000027 ], [ -82.161810633999949, 28.657764539000027 ], [ -82.161828023999988, 28.657731946000069 ], [ -82.16184334999997, 28.657692117000067 ], [ -82.161857624999982, 28.65763690700004 ], [ -82.161868179999942, 28.657576358000028 ], [ -82.161859006999975, 28.657253037000032 ], [ -82.161864274999971, 28.656445657000063 ], [ -82.161864737999963, 28.656094490000044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.161864737999963, 28.656094490000044 ], [ -82.165428479999946, 28.656130848000032 ], [ -82.165818134999938, 28.656110307000063 ], [ -82.165928065999935, 28.656131585000026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165943201999937, 28.65964983300006 ], [ -82.165943717999937, 28.659651204000056 ], [ -82.165971039999988, 28.65967852600005 ], [ -82.166021977999947, 28.659699827000054 ], [ -82.167966382999964, 28.659737004000078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165928065999935, 28.656131585000026 ], [ -82.165928279999946, 28.656131626000047 ], [ -82.165969731999951, 28.656187290000048 ], [ -82.165981575999979, 28.656257167000035 ], [ -82.165986289999978, 28.657218623000063 ], [ -82.166015092999942, 28.657533945000068 ], [ -82.165998416999969, 28.657821979000062 ], [ -82.165963549999958, 28.657970544000079 ], [ -82.165930288999959, 28.659615547000044 ], [ -82.165943201999937, 28.65964983300006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991448921999961, 28.756609370000035 ], [ -81.991076547999967, 28.756845741000063 ], [ -81.990564880999955, 28.757113895000032 ], [ -81.990136096999947, 28.757307587000071 ], [ -81.989608221999958, 28.757509604000063 ], [ -81.989109283999937, 28.757682848000059 ], [ -81.988465978999955, 28.757843675000061 ], [ -81.987933099999964, 28.757947847000025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96463479199997, 28.942228112000066 ], [ -81.964637188999973, 28.942702594000025 ], [ -81.964637017999962, 28.943206309000061 ], [ -81.964619893999952, 28.94334103500006 ], [ -81.964608821999946, 28.94342443000005 ], [ -81.964591709999979, 28.943483699000069 ], [ -81.964575137999987, 28.943543383000076 ], [ -81.96456018899994, 28.943599817000063 ], [ -81.964538685999969, 28.943662752000023 ], [ -81.964505556999939, 28.943745726000031 ], [ -81.964477398999975, 28.94380540700007 ], [ -81.964452555999969, 28.943857812000033 ], [ -81.964427711999974, 28.94390730300006 ], [ -81.964392934999978, 28.943966983000053 ], [ -81.964359813999977, 28.944023752000078 ], [ -81.964318415999969, 28.944080518000078 ], [ -81.964283643999977, 28.944125639000049 ], [ -81.964242984999942, 28.944177657000068 ], [ -81.96419919899995, 28.944227526000077 ], [ -81.96413296999998, 28.944301756000073 ], [ -81.964028154999937, 28.944415965000076 ], [ -81.963974619999988, 28.944474026000023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97844964799998, 28.761200518000066 ], [ -81.978477767917681, 28.761226489283011 ], [ -81.978509381937585, 28.761248071476029 ], [ -81.978543810999952, 28.761264801000038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978482440999983, 28.760814181000057 ], [ -81.978454204605598, 28.760839034102041 ], [ -81.978429831195996, 28.760867685586309 ], [ -81.978409826342329, 28.760899541142745 ], [ -81.978394604999949, 28.760933940000029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012282642999935, 28.871509733000039 ], [ -82.011983611999938, 28.871510406000027 ], [ -82.011948589999975, 28.871519162000027 ], [ -82.011920976999988, 28.871534652000037 ], [ -82.011887301999934, 28.871543408000036 ], [ -82.011861505999946, 28.871545365000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011861505999946, 28.871545365000031 ], [ -82.011861505999946, 28.870773915000029 ], [ -82.01184649399994, 28.870732215000032 ], [ -82.011845007999966, 28.870731444000057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011845007999966, 28.870731444000057 ], [ -82.011945729999979, 28.870700646000046 ], [ -82.012283270999944, 28.870698244000039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011841470999968, 28.872355063000043 ], [ -82.011842323999986, 28.872354345000076 ], [ -82.011859837999964, 28.87231347900007 ], [ -82.011861505999946, 28.871545365000031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012272135999979, 28.872402559000079 ], [ -82.011990748999949, 28.872405135000065 ], [ -82.011957173999974, 28.872402697000041 ], [ -82.011928312999942, 28.872395745000063 ], [ -82.011904085999959, 28.872385633000079 ], [ -82.01187374999995, 28.872368990000041 ], [ -82.011841470999968, 28.872355063000043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053722002999962, 28.891158325000049 ], [ -82.053721027999984, 28.891435065000053 ], [ -82.053713409999943, 28.892831020000074 ], [ -82.053710000999956, 28.894305850000023 ], [ -82.053706560999956, 28.89463721900006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027153874999954, 28.850592275000054 ], [ -82.027309188999936, 28.850656929000024 ], [ -82.027737462999937, 28.850840191000032 ], [ -82.028120042999944, 28.850982471000066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087750832999973, 28.553415543000028 ], [ -82.087667442999987, 28.553521869000065 ], [ -82.087560770999971, 28.553645352000046 ], [ -82.087448277999954, 28.553770553000049 ], [ -82.087351289999958, 28.55386831900006 ], [ -82.087244601999942, 28.553972947000034 ], [ -82.087155360999986, 28.554048425000076 ], [ -82.087071939999987, 28.55411704100004 ], [ -82.086959412999988, 28.554204532000028 ], [ -82.08687211199998, 28.554276579000032 ], [ -82.086778980999952, 28.554343488000029 ], [ -82.086676142999977, 28.554408688000024 ], [ -82.086581066999941, 28.554470456000047 ], [ -82.086529197999937, 28.554499566000061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022074490999955, 28.753331316000072 ], [ -82.022240379999971, 28.753259190000051 ], [ -82.022490900999969, 28.753076457000077 ], [ -82.022653002999959, 28.752876040000046 ], [ -82.022770894999951, 28.752613730000064 ], [ -82.022809209999934, 28.752327842000057 ], [ -82.022806689999982, 28.752035674000069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": null, "surface": "asphalt", "maxspeed": "10 mph" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022893487999966, 28.754655113000069 ], [ -82.023781873999951, 28.754231440000069 ] ] ] } } +] +} diff --git a/sumter-roads-9-22-23.geojson b/sumter-roads-9-22-23.geojson new file mode 100755 index 0000000..5e4f345 --- /dev/null +++ b/sumter-roads-9-22-23.geojson @@ -0,0 +1,16506 @@ +{ +"type": "FeatureCollection", +"name": "sumtercounty-roads-9-22", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "name": "Southwest 79th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.234965173751164, 28.724389676075383 ], [ -82.234156527155662, 28.723177853163747 ], [ -82.23360513955096, 28.722334122808206 ], [ -82.233513297706509, 28.722159980978105 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 120th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.198264183152205, 28.581674156518247 ], [ -82.200245820301632, 28.581655787926106 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 120th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.192560837554922, 28.581677864431011 ], [ -82.192696775876456, 28.581682829161121 ], [ -82.194230744619077, 28.581685122475314 ], [ -82.194607949484464, 28.581681145470178 ], [ -82.194960813320023, 28.581678234523995 ], [ -82.195238903279957, 28.581679211532929 ], [ -82.196814878675596, 28.581649783829189 ], [ -82.198173819613416, 28.581672912805868 ], [ -82.198264183152205, 28.581674156518247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 58th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200324653233167, 28.585338382081662 ], [ -82.200314683028992, 28.585112868165819 ], [ -82.200273370470612, 28.584790107124483 ], [ -82.200236029490853, 28.584611390060065 ], [ -82.200275601164719, 28.584424652719196 ], [ -82.200239682600525, 28.584173735380343 ], [ -82.20027139584316, 28.58395297414604 ], [ -82.200250434481134, 28.583681065281546 ], [ -82.200253991408175, 28.583400523755934 ], [ -82.200253994902255, 28.583093518142054 ], [ -82.200254561931729, 28.582775851417381 ], [ -82.200229914520463, 28.582409403225018 ], [ -82.200221294489708, 28.58217701227478 ], [ -82.200227681481124, 28.581949068563425 ], [ -82.200242644680273, 28.58182940683372 ], [ -82.200245820301632, 28.581655787926106 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 56th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.198227159061375, 28.585404019280691 ], [ -82.198198147346204, 28.585094649404738 ], [ -82.19821168062785, 28.584522558547313 ], [ -82.198232275478418, 28.583769276130493 ], [ -82.198236164215203, 28.58345401294417 ], [ -82.198242139433702, 28.583109867250791 ], [ -82.198216547663222, 28.582650940826642 ], [ -82.1981885373647, 28.582252524436704 ], [ -82.198171127686749, 28.581794963017437 ], [ -82.198264183152205, 28.581674156518247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 113th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174950590149194, 28.590567686688441 ], [ -82.175358215323072, 28.590567162891357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 43rd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.175361121461904, 28.592319472980734 ], [ -82.175358215323072, 28.590567162891357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 38th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.168288208007894, 28.579823941360019 ], [ -82.168280401305694, 28.579569544341211 ], [ -82.168250868427833, 28.579244008109232 ], [ -82.168253354654084, 28.57896965748148 ], [ -82.168263450581804, 28.578461518328169 ], [ -82.168280562740364, 28.5779564646142 ], [ -82.168291459166056, 28.577829592502511 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.212883220019449, 28.585114090059239 ], [ -82.212906535792342, 28.585086894043553 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 128th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158860801211802, 28.569835315827021 ], [ -82.159465206912799, 28.569834611619001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 21st Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13977271575618, 28.619460370437562 ], [ -82.139179714276921, 28.619460975921704 ], [ -82.139145602388581, 28.618559588887482 ], [ -82.13855245101422, 28.618589415812703 ], [ -82.138533973204929, 28.617571810326329 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Archer Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006912825624298, 28.936516533941855 ], [ -82.006755488987451, 28.935879869915002 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 17th Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074335662921101, 28.898217759712388 ], [ -82.07435262926532, 28.898730662586289 ], [ -82.074319459261631, 28.899611779090637 ], [ -82.074342147374651, 28.900203063134153 ], [ -82.074330595824804, 28.901269806315636 ], [ -82.07428853431783, 28.90173117676326 ], [ -82.074291127956869, 28.901805774594006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 71st Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050860782077024, 28.860597652895262 ], [ -82.049833729502936, 28.860602501260722 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 62nd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037137270621699, 28.847170968994199 ], [ -82.037124194739405, 28.847179909862927 ], [ -82.037109943784699, 28.847187132155391 ], [ -82.037094717602628, 28.847192637621927 ], [ -82.037078515047298, 28.847196078874841 ], [ -82.035852858471785, 28.84724143975097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 406A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14057094759346, 28.810037108442739 ], [ -82.140679600306015, 28.810141160098322 ], [ -82.141180061486679, 28.810770790570981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 449", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126549291467583, 28.791725328499155 ], [ -82.126774583151686, 28.791819315277312 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 406A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140681161634689, 28.811162873117432 ], [ -82.140680668101268, 28.810794685167945 ], [ -82.141180061486679, 28.810770790570981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Bend Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01028290695146, 28.924417855576149 ], [ -82.010985091374806, 28.924420553163074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Bend Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010985091374806, 28.924420553163074 ], [ -82.012823395343872, 28.924427617356159 ], [ -82.0131688195424, 28.924415552401115 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Willow Grove Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004094388594865, 28.920182157801289 ], [ -82.004816863934082, 28.920189700818405 ], [ -82.005390663263412, 28.92019518273203 ], [ -82.005948833456529, 28.920206161421586 ], [ -82.006426510705197, 28.920214392034822 ], [ -82.006792633045976, 28.920222627070295 ], [ -82.006942285879489, 28.920229837522104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ashford Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003374461367514, 28.920409067150132 ], [ -82.003369375029393, 28.920207958932732 ], [ -82.003366830104738, 28.919973159810695 ], [ -82.003361745731425, 28.919876215385891 ], [ -82.003353929430958, 28.919784083865476 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Castleberry Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001042109935511, 28.915320871379716 ], [ -82.001079032767294, 28.915383092746012 ], [ -82.001145456815607, 28.915490006554155 ], [ -82.001226334663215, 28.915609641742872 ], [ -82.001292954900009, 28.915718962801634 ], [ -82.001333395613386, 28.915790122228987 ], [ -82.001368169510613, 28.915874346937638 ], [ -82.001371688140296, 28.915883973523012 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Linley Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00429424330207, 28.9147463695308 ], [ -82.004429823055631, 28.914746366610434 ], [ -82.004954751582829, 28.914746350522872 ], [ -82.005011211697976, 28.914746348670668 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caldwell Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005017519039882, 28.916010066836851 ], [ -82.005017490738041, 28.91536995752756 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caldwell Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005017490738041, 28.91536995752756 ], [ -82.005017489407621, 28.915316672378196 ], [ -82.005013368054406, 28.914925799245182 ], [ -82.005011211697976, 28.914746348670668 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hialeah Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018500324136184, 28.922506306479399 ], [ -82.018748054930327, 28.92249458488649 ], [ -82.019012979690075, 28.922483891805573 ], [ -82.019259538632667, 28.922474919630201 ], [ -82.019451199932433, 28.922469392467743 ], [ -82.019642663274951, 28.922463865060557 ], [ -82.019889223140979, 28.922454891732279 ], [ -82.020076779354881, 28.922445926521991 ], [ -82.020223503856684, 28.922440747641861 ], [ -82.020235811698996, 28.922440060098253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ascot Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018500324136184, 28.922506306479399 ], [ -82.018487188858998, 28.922241944567155 ], [ -82.018483066959064, 28.922128843229803 ], [ -82.018487154894771, 28.922051837144608 ], [ -82.01850941824452, 28.921999579514662 ], [ -82.018550244384357, 28.921958664869436 ], [ -82.018599082321103, 28.921929781254075 ], [ -82.01867253930115, 28.921913614877802 ], [ -82.018811057868845, 28.921904657119466 ], [ -82.019035343035952, 28.921901188770843 ], [ -82.019302220600025, 28.921893932602142 ], [ -82.019573199094495, 28.921879455153487 ], [ -82.019887159674411, 28.921867035447484 ], [ -82.020176504323473, 28.921859775220533 ], [ -82.020350581675061, 28.921863186582133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Plainridge Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022621087257122, 28.922264019580037 ], [ -82.022808281294857, 28.922390841630534 ], [ -82.02322780861239, 28.922672666869822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kempton Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024095203847807, 28.921528090210142 ], [ -82.024205129047004, 28.921228986925865 ], [ -82.024230111439195, 28.921119317489094 ], [ -82.024246689529789, 28.920992805464348 ], [ -82.024257593014724, 28.92082985430946 ], [ -82.024263221527505, 28.920669309599816 ], [ -82.02425752128724, 28.920515987053413 ], [ -82.024246552265524, 28.920391885384952 ], [ -82.02421604914403, 28.920279821069361 ], [ -82.024168936511074, 28.920155726638335 ], [ -82.024091537506038, 28.92000997877027 ], [ -82.024003003785509, 28.919871109191966 ], [ -82.023965285166113, 28.919813017810526 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leicester Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02665297407998, 28.922171511431252 ], [ -82.026733470837911, 28.922184903015673 ], [ -82.026888206087634, 28.922194497628066 ], [ -82.026976907169129, 28.922194479347183 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leicester Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025208322278445, 28.92189779348498 ], [ -82.025555124732563, 28.921968548926998 ], [ -82.026169209923225, 28.922084971312952 ], [ -82.026556455189677, 28.922155715568874 ], [ -82.02665297407998, 28.922171511431252 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cheltenham Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025020857652564, 28.920627921098419 ], [ -82.025501488243322, 28.920718933224052 ], [ -82.025726368429488, 28.920761520345661 ], [ -82.0257453206316, 28.920764955451311 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greyville Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025208322278445, 28.92189779348498 ], [ -82.025350024800034, 28.92132297523457 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greyville Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025350024800034, 28.92132297523457 ], [ -82.025355880250288, 28.921299254601912 ], [ -82.025414631146461, 28.921064788493762 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aintree Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02665297407998, 28.922171511431252 ], [ -82.026780798450815, 28.921601850121373 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aintree Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026780798450815, 28.921601850121373 ], [ -82.026848709958117, 28.921299314224768 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morven Park Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019037351326077, 28.916737679066909 ], [ -82.019097913334903, 28.916736295644512 ], [ -82.01914636391713, 28.916734914769172 ], [ -82.019331567195152, 28.916734888180812 ], [ -82.019455035021608, 28.91673487091543 ], [ -82.019578505924514, 28.916734853536429 ], [ -82.019707249040579, 28.91673483619708 ], [ -82.019757261739827, 28.916734828175272 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jasmine Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005907029346176, 28.912887518030114 ], [ -82.005870075588263, 28.912292444456767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jasmine Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005870075588263, 28.912292444456767 ], [ -82.005849545706994, 28.91196242005628 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Haretison Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006500400754717, 28.91086952933054 ], [ -82.006500590533406, 28.910782897926403 ], [ -82.006494113476037, 28.910251764322226 ], [ -82.006493916650598, 28.910235262208907 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Haretison Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006511379278848, 28.911516171203957 ], [ -82.00649749102638, 28.911230149820376 ], [ -82.006500400754717, 28.91086952933054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Haretison Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006493916650598, 28.910235262208907 ], [ -82.00648783919894, 28.909838201865153 ], [ -82.006482549299378, 28.909598932588665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Shore Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971618957307413, 28.910797532074444 ], [ -81.971662517329818, 28.910811637895389 ], [ -81.97180433022011, 28.910856702407617 ], [ -81.971929156385372, 28.910871510075616 ], [ -81.972019800850106, 28.910866717097374 ], [ -81.972104980579715, 28.910846796803494 ], [ -81.972201301843285, 28.910796967605751 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Shore Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970377984171833, 28.910454174586548 ], [ -81.970482890733365, 28.910452135998828 ], [ -81.97059052569638, 28.910462130066961 ], [ -81.970743670833002, 28.910497226895014 ], [ -81.970922984965583, 28.91056120907221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Shore Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970922984965583, 28.91056120907221 ], [ -81.971259738607984, 28.910681946928459 ], [ -81.971616027736715, 28.910796844805031 ], [ -81.971618957307413, 28.910797532074444 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reidville Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975548767028457, 28.897182010888653 ], [ -81.975809757006786, 28.897035951682216 ], [ -81.97594474131057, 28.896977534080957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elizabeth Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967055051805474, 28.906192294325461 ], [ -81.967072450761677, 28.9061517321792 ], [ -81.967092790827877, 28.906075074315115 ], [ -81.967102782012759, 28.905983289585397 ], [ -81.9671028093736, 28.905897346593623 ], [ -81.967082719701523, 28.905799708486054 ], [ -81.967059111101278, 28.905714101655771 ], [ -81.967022225986838, 28.905607522143733 ], [ -81.966982013037281, 28.905521568337676 ], [ -81.966948242061093, 28.905447649156638 ], [ -81.966924821877399, 28.905382667980565 ], [ -81.966904725863728, 28.905305658180378 ], [ -81.966867643356636, 28.905208015835388 ], [ -81.966820603761036, 28.90509249468084 ], [ -81.966787035488451, 28.904994854082915 ], [ -81.966760100370735, 28.904926780728992 ], [ -81.966723212959707, 28.904829140191993 ], [ -81.966696287425236, 28.904728405431211 ], [ -81.96667287229667, 28.904645550578095 ], [ -81.96664261985228, 28.904568880176058 ], [ -81.966625849401723, 28.904482932082949 ], [ -81.96662586458342, 28.904432739935526 ], [ -81.966625899687344, 28.904327200810059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clio Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967055051805474, 28.906192294325461 ], [ -81.96728768098933, 28.906270389269281 ], [ -81.967378511502602, 28.906287942159679 ], [ -81.967459188541838, 28.906285212471065 ], [ -81.967610590109913, 28.906249496487529 ], [ -81.967956768780653, 28.906153321643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clio Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967956768780653, 28.906153321643 ], [ -81.968004045788263, 28.906140269467006 ], [ -81.968300015107943, 28.906060583871575 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcbee Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967956768780653, 28.906153321643 ], [ -81.967570512118456, 28.905110556368978 ], [ -81.967409296813614, 28.904675295474714 ], [ -81.967358952292187, 28.904506833143248 ], [ -81.967342183062385, 28.904411946970605 ], [ -81.967338875407307, 28.904372068185381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fort Lawn Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954095996703856, 28.899968881803229 ], [ -81.95409609012836, 28.899757802547125 ], [ -81.954093443751688, 28.899558411629986 ], [ -81.954091003727427, 28.899335299338183 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fort Lawn Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954102744284825, 28.900611401175563 ], [ -81.954101045876868, 28.900475610041195 ], [ -81.954095865999719, 28.900264185221971 ], [ -81.954095996703856, 28.899968881803229 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodfield Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953998369827872, 28.895035651157734 ], [ -81.953998518767719, 28.894699781932392 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodfield Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953998116760786, 28.895606321208486 ], [ -81.953998369827872, 28.895035651157734 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodfield Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953997995560371, 28.895879624054942 ], [ -81.953998116760786, 28.895606321208486 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whitmire Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955627901980492, 28.892855623708453 ], [ -81.95562561253017, 28.892270857744904 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whitmire Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95562561253017, 28.892270857744904 ], [ -81.955625474587421, 28.891680248244665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whitmire Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955625474587421, 28.891680248244665 ], [ -81.955625595339939, 28.891398009744549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sellers Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953997377320619, 28.892869169759841 ], [ -81.953997642862916, 28.892270309828127 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sellers Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953997642862916, 28.892270309828127 ], [ -81.953997904738941, 28.891679700472856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sellers Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953997904738941, 28.891679700472856 ], [ -81.953998019821327, 28.891420149408308 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sellers Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953997243174115, 28.893171694593477 ], [ -81.953997377320619, 28.892869169759841 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Timmonsville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95793912655698, 28.89520642627679 ], [ -81.958157343728956, 28.895586024218161 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trenton Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958019118982037, 28.896392480648061 ], [ -81.958123247299369, 28.89634094767176 ], [ -81.958354167853585, 28.896226541193762 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Timmonsville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961490920992134, 28.896665104991506 ], [ -81.961732940719926, 28.896634234396746 ], [ -81.962209370096659, 28.896549113888312 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Timmonsville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962209370096659, 28.896549113888312 ], [ -81.962480499609583, 28.896500717567243 ], [ -81.962925278043301, 28.896435523778557 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ulmer Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960976807166176, 28.899303788169682 ], [ -81.960684999739769, 28.898741283736111 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mccoll Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965145457974685, 28.899573769911985 ], [ -81.965131255353398, 28.899404629365716 ], [ -81.965151996163385, 28.899295311303586 ], [ -81.965221188977083, 28.899161601329414 ], [ -81.965297027790214, 28.899010014883 ], [ -81.965304649521087, 28.898993861190164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mccoll Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965304649521087, 28.898993861190164 ], [ -81.96534530923843, 28.898906895485759 ], [ -81.965414547196303, 28.898633611470505 ], [ -81.965414549265859, 28.898627422601241 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Madison Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964198877235177, 28.891123829754793 ], [ -81.964304038070679, 28.890884588532785 ], [ -81.96431185313223, 28.890877371308537 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Madison Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963710590317504, 28.89223512920357 ], [ -81.963946720327712, 28.891697524925533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Madison Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963946720327712, 28.891697524925533 ], [ -81.964198877235177, 28.891123829754793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moncks Cor", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964683237288625, 28.891757883524157 ], [ -81.964945365992918, 28.891139495950757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lisette Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960267785700466, 28.892096986224566 ], [ -81.96023431871059, 28.891764889310206 ], [ -81.960222077143825, 28.891601246353773 ], [ -81.960209634241451, 28.891452043742781 ], [ -81.960199126402117, 28.891352689268921 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lisette Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960199126402117, 28.891352689268921 ], [ -81.96019328784638, 28.89129562066665 ], [ -81.960180853344454, 28.891124759237162 ], [ -81.960168628121323, 28.890913676031541 ], [ -81.960152092325117, 28.890746252038369 ], [ -81.960146834596856, 28.890703966887259 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Foster Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958790738894407, 28.888319804469333 ], [ -81.959566074548633, 28.888291183793442 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inner Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963758161878445, 28.8880200896876 ], [ -81.963799563523111, 28.888025258415123 ], [ -81.964072203646211, 28.888063489994916 ], [ -81.964296213943541, 28.888088645484501 ], [ -81.964425307735382, 28.8881062123817 ], [ -81.964477061543633, 28.888113788276868 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inner Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964477061543633, 28.888113788276868 ], [ -81.964566120203131, 28.888126533365451 ], [ -81.964781340185965, 28.888152029502951 ], [ -81.964996757543688, 28.888182338219291 ], [ -81.965160222533143, 28.888210225769811 ], [ -81.965194009691103, 28.888218829856026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridge Spring Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968520360875559, 28.883626443362449 ], [ -81.968621752855526, 28.883526426288594 ], [ -81.968694821182368, 28.883444280723168 ], [ -81.968780004579642, 28.883333604467168 ], [ -81.968853083432165, 28.883212269166666 ], [ -81.968904868748112, 28.883111552787359 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridge Spring Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968904868748112, 28.883111552787359 ], [ -81.968930272604496, 28.883062054820638 ], [ -81.968978935971052, 28.882951369965006 ], [ -81.969023702938898, 28.882804931403808 ], [ -81.9690723841927, 28.882633741797932 ], [ -81.969081377812685, 28.882604179067343 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hagood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995190854560661, 28.888235650839921 ], [ -81.995106510101621, 28.887678728745414 ], [ -81.99509596638093, 28.887600690160561 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clarendon Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985155921607287, 28.88229271417725 ], [ -81.98570281571655, 28.88188814767874 ], [ -81.985716682680078, 28.881878523412961 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clarendon Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985716682680078, 28.881878523412961 ], [ -81.985940516974551, 28.8817245342692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dorchester Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991108350709297, 28.8853975560172 ], [ -81.991211879597799, 28.885195766906278 ], [ -81.991290208902541, 28.885057916718949 ], [ -81.99132986170909, 28.884992257969131 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bonham Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989356758988691, 28.884493637075181 ], [ -81.989474355263113, 28.884261597142974 ], [ -81.989505805512991, 28.884202813807079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dorchester Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991521894628534, 28.884399941289491 ], [ -81.991546705708075, 28.88431503001874 ], [ -81.991607264081935, 28.884139708628801 ], [ -81.991607264342008, 28.884136612833313 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bonham Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989505805512991, 28.884202813807079 ], [ -81.989527684632819, 28.884161561421195 ], [ -81.989609720777423, 28.884070467025349 ], [ -81.98969155938785, 28.884004811141754 ], [ -81.989862458819516, 28.883904442392353 ], [ -81.990129641777244, 28.883794796847084 ], [ -81.990161672638735, 28.883779673048675 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bonham Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990161672638735, 28.883779673048675 ], [ -81.990314795675388, 28.883707147419582 ], [ -81.990460694318926, 28.883619494917046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beatrice Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993919826675679, 28.884302785734729 ], [ -81.994108096868231, 28.884319294703054 ], [ -81.994440696455158, 28.884344061155335 ], [ -81.994617052744786, 28.884381196414331 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edgefield Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991772364661841, 28.878562956439012 ], [ -81.991610880612512, 28.878283799323665 ], [ -81.991559136109643, 28.878200258204977 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Judson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991502987927731, 28.879380099217908 ], [ -81.991281556103786, 28.879020492250067 ], [ -81.991150142193035, 28.878813874436741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thurmond Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98166373532024, 28.883658109057073 ], [ -81.981786020534088, 28.883512705499459 ], [ -81.981877440294937, 28.883410617128781 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alexandria Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988164468975654, 28.887545933755554 ], [ -81.988493736932583, 28.887735041591437 ], [ -81.988697434468662, 28.887830972738683 ], [ -81.988955624669472, 28.887902500884937 ], [ -81.989363225292934, 28.888010134423546 ], [ -81.989840160077975, 28.888116742531121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Govan Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992166687973366, 28.888092149628644 ], [ -81.992769010285841, 28.888285732025437 ], [ -81.992830922688213, 28.888302579556566 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edisto Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992007052329271, 28.888947457910202 ], [ -81.992634756765199, 28.889287834085284 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edisto Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992634756765199, 28.889287834085284 ], [ -81.992865412032742, 28.889412637642394 ], [ -81.993221062477971, 28.889594515098917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edisto Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993221062477971, 28.889594515098917 ], [ -81.993491951448021, 28.88973375825719 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Oak Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012594569141413, 28.910722330280095 ], [ -82.013282792803807, 28.910722267095533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Oak Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013282792803807, 28.910722267095533 ], [ -82.015666078469735, 28.910722021116484 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tillman Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013282792803807, 28.910722267095533 ], [ -82.013287213420696, 28.910139221859655 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilton Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011191359483405, 28.922037141462454 ], [ -82.011316794155249, 28.922092823005968 ], [ -82.011635852545183, 28.922233744774015 ], [ -82.011762262992335, 28.922279800126343 ], [ -82.011858388679627, 28.922292510851907 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kenilworth Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011854386549132, 28.923214861524638 ], [ -82.012210285475177, 28.92321372856502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kenilworth Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010510405667475, 28.923215656119371 ], [ -82.011189526537635, 28.923215603258992 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kenilworth Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011189526537635, 28.923215603258992 ], [ -82.011658034997879, 28.923215565417948 ], [ -82.011854386549132, 28.923214861524638 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pine Ridge Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010985031833741, 28.923833384216998 ], [ -82.012733258681394, 28.923846988331011 ], [ -82.013050547593892, 28.923849021889225 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pine Ridge Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013050547593892, 28.923849021889225 ], [ -82.013361391693309, 28.923851056215565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seven Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010985091374806, 28.924420553163074 ], [ -82.010985031833741, 28.923833384216998 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seven Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010985031833741, 28.923833384216998 ], [ -82.010985002845473, 28.923537393301736 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Five Forks Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013864247464937, 28.925039094390289 ], [ -82.013864240053735, 28.924989590846646 ], [ -82.013865984201601, 28.924867206910072 ], [ -82.013867529206749, 28.924735541075989 ], [ -82.013868500794118, 28.924690506503438 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allston Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983458021579366, 28.912280510016437 ], [ -81.984115616018698, 28.912437762996348 ], [ -81.984213200479317, 28.912461098980756 ], [ -81.98429831739152, 28.912456238436643 ], [ -81.984362562600467, 28.912424828898807 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Adams Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985219651288006, 28.911477999853414 ], [ -81.985152494573597, 28.911164813021159 ], [ -81.985111686280746, 28.911029360965138 ], [ -81.985053879511298, 28.910910751079363 ], [ -81.984974585232891, 28.910792139646723 ], [ -81.984880832532539, 28.910684181757869 ], [ -81.984755824318739, 28.910559377038702 ], [ -81.984679845558119, 28.910484425283386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harvey Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967870736524873, 28.908927232058922 ], [ -81.968642659452726, 28.908596702041866 ], [ -81.968740217026777, 28.908597519764086 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brunson Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96155469933646, 28.903754142837698 ], [ -81.961530296480532, 28.903713913181889 ], [ -81.961462547380819, 28.903623136948518 ], [ -81.961394990788065, 28.903541642679535 ], [ -81.961320205003801, 28.903466334254166 ], [ -81.961249128046646, 28.903394119937158 ], [ -81.961170630283604, 28.90332224811209 ], [ -81.961133721175742, 28.903295079141007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maybank Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963663199917065, 28.903713132923482 ], [ -81.963902334358792, 28.903597344193457 ], [ -81.963993186611503, 28.903538241001542 ], [ -81.964067435272966, 28.903482912125501 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinewood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974159150211648, 28.89120621802763 ], [ -81.974289032573424, 28.891216556320177 ], [ -81.974466774532985, 28.891190808005486 ], [ -81.974745498414677, 28.891154077697443 ], [ -81.97502402824145, 28.891117688748093 ], [ -81.975338293903036, 28.89110227707241 ], [ -81.975693965052898, 28.891091685057965 ], [ -81.97622170038764, 28.891117906857776 ], [ -81.976577362980862, 28.8911492532289 ], [ -81.976773059797168, 28.891182977424631 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 99th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103338197278205, 28.901857227251647 ], [ -82.103120791404038, 28.901858767085347 ], [ -82.102815671290898, 28.901851435905424 ], [ -82.102540784111596, 28.901799733273972 ], [ -82.102244353894676, 28.901687887505695 ], [ -82.102069680102943, 28.901641266686344 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 50th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187128535943984, 28.573295497362267 ], [ -82.187136728720489, 28.572973007443043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 122nd Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.186600446233143, 28.578376458318424 ], [ -82.18680296745147, 28.578375493324 ], [ -82.187033174994468, 28.578394430013045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 45th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178598023699635, 28.583899558506431 ], [ -82.178597248414164, 28.583786108909134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 61st Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.257231012916037, 28.666247415589041 ], [ -82.258905617470617, 28.666026737086533 ], [ -82.259676079046002, 28.665898553285235 ], [ -82.260093502007024, 28.665890336261445 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 92nd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256526907532333, 28.665476322771809 ], [ -82.256352960724428, 28.665351104892586 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Salinas Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974308610756253, 28.934003262842815 ], [ -81.974319921770345, 28.93408272738133 ], [ -81.974336492827945, 28.934115947630879 ], [ -81.974350301446918, 28.934137825507182 ], [ -81.974358587270544, 28.934149169839955 ], [ -81.974366874727608, 28.934158082488981 ], [ -81.974379765309479, 28.934167808986974 ], [ -81.974385291173775, 28.934174292129029 ], [ -81.974393578617523, 28.934179155278979 ], [ -81.974400023709606, 28.934184826531464 ], [ -81.974409232028705, 28.934190501019451 ], [ -81.974416600652503, 28.934194551927131 ], [ -81.974421202972124, 28.934198604109739 ], [ -81.974428570570822, 28.934202656821125 ], [ -81.974435937144619, 28.934206708629628 ], [ -81.974447908896664, 28.934211572480642 ], [ -81.9744571184481, 28.934216434900616 ], [ -81.974465406099668, 28.934220487785769 ], [ -81.974475535702524, 28.934225352184757 ], [ -81.974487508685669, 28.934229403967503 ], [ -81.974499479617918, 28.934233457553383 ], [ -81.974515133852037, 28.934241561337778 ], [ -81.976209636751136, 28.934876259735219 ], [ -81.976741238009225, 28.935086188198781 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972944133503688, 28.934679985222267 ], [ -81.972965566651169, 28.934664029773856 ], [ -81.972979854232875, 28.934653979297408 ], [ -81.973010337631592, 28.934632202262112 ], [ -81.973049391477133, 28.934603724704626 ], [ -81.973339919455597, 28.934424492532116 ], [ -81.973566619455227, 28.934304729982294 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Puerto Bello Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967293375847262, 28.940293461386631 ], [ -81.967568137465022, 28.940109505459862 ], [ -81.96771092848013, 28.940018431785013 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tillman Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013287213420696, 28.910139221859655 ], [ -82.013286269031326, 28.909915273490988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aiken Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014753659263604, 28.912629045411201 ], [ -82.01474731908678, 28.911982403916713 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canebrake Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013314653089537, 28.91244011378657 ], [ -82.013314515138688, 28.911332810891551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Riley Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011907387296986, 28.909521235955477 ], [ -82.012197871206851, 28.909521211203415 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whisper Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009810172375595, 28.910098252116953 ], [ -82.010130351719994, 28.910094448252039 ], [ -82.010925229556904, 28.910098858591741 ], [ -82.011630834984359, 28.910101208945942 ], [ -82.011907451191348, 28.910101185955035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dillon Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011248760347272, 28.912269779996517 ], [ -82.011565827107944, 28.912336103112242 ], [ -82.011777595138739, 28.912376652040905 ], [ -82.011899109056642, 28.912392111761402 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dillon Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011899109056642, 28.912392111761402 ], [ -82.011962012929246, 28.912400357061824 ], [ -82.012135683208413, 28.91240996616283 ], [ -82.012214409822562, 28.912405147427755 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crystal Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011899109056642, 28.912392111761402 ], [ -82.011902364777058, 28.911813193005791 ], [ -82.011902280348082, 28.911046570442238 ], [ -82.011902240936621, 28.910688700308519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allagash Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011248760347272, 28.912269779996517 ], [ -82.011248366354522, 28.912238152701914 ], [ -82.01124280893859, 28.911395214294689 ], [ -82.011245665347573, 28.910688753934643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alcott Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015495859665691, 28.916390215331173 ], [ -82.015495879110119, 28.916389935617037 ], [ -82.015500252676006, 28.916324211839662 ], [ -82.015530906288717, 28.916195636566862 ], [ -82.015582461051665, 28.916047118197199 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alcott Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015582461051665, 28.916047118197199 ], [ -82.015619173504504, 28.915941576055303 ], [ -82.015734590043436, 28.915654854691088 ], [ -82.015816022460612, 28.915436548313476 ], [ -82.015841407365627, 28.915363320439052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Craven Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021322879423806, 28.913715556042824 ], [ -82.021749732991083, 28.913706553235052 ], [ -82.022965245977659, 28.913716325152425 ], [ -82.02356284200458, 28.913721381973424 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Craven Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02356284200458, 28.913721381973424 ], [ -82.023867405913222, 28.913724078926279 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Collington Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020725193694673, 28.914260531317652 ], [ -82.021403674789411, 28.914275554157548 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Collington Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021403674789411, 28.914275554157548 ], [ -82.02177915462606, 28.914283747947358 ], [ -82.022909691835451, 28.914296284813016 ], [ -82.023550857789985, 28.914298239566705 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Geddes Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021322879423806, 28.913715556042824 ], [ -82.021295707091824, 28.913624117842801 ], [ -82.021239992438808, 28.913430580091131 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edwards Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023460546423877, 28.914930802009906 ], [ -82.023537518863932, 28.914931132677381 ], [ -82.023770973440193, 28.914932810626471 ], [ -82.024099177678309, 28.914935161001832 ], [ -82.024270507403756, 28.91493788025193 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kenmore Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014606841929492, 28.92333148567575 ], [ -82.015716765084761, 28.923333772539895 ], [ -82.016051053969065, 28.923337858860471 ], [ -82.01616261471743, 28.923354004282203 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baton Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012250941716374, 28.923213187269358 ], [ -82.012615175894737, 28.923214795494275 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baton Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012615175894737, 28.923214795494275 ], [ -82.01328120851548, 28.923217141484628 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baton Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01328120851548, 28.923217141484628 ], [ -82.013937472452099, 28.923219483347765 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baton Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013937472452099, 28.923219483347765 ], [ -82.014224283010648, 28.923220485846926 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aldrich Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013937472452099, 28.923219483347765 ], [ -82.013941064717926, 28.922299539110274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aldrich Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013941064717926, 28.922299539110274 ], [ -82.013941225286047, 28.922027270387542 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cloverdale Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01328120851548, 28.923217141484628 ], [ -82.013281102245983, 28.922364234583156 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ingleside Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012615175894737, 28.923214795494275 ], [ -82.012615080316564, 28.92239798493074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brentwood Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011858388679627, 28.922292510851907 ], [ -82.011858752067312, 28.922043275014861 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brentwood Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011854386549132, 28.923214861524638 ], [ -82.011854385221795, 28.923212111327 ], [ -82.011858388679627, 28.922292510851907 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Layton Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011189526537635, 28.923215603258992 ], [ -82.011191359483405, 28.922037141462454 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilton Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010352032144368, 28.921963635564126 ], [ -82.010602495493742, 28.92192855207162 ], [ -82.010733002143979, 28.921911010654235 ], [ -82.010821115167758, 28.921909285088553 ], [ -82.01088949496247, 28.921916155351521 ], [ -82.011005746674996, 28.921954992926551 ], [ -82.011191359483405, 28.922037141462454 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South York Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118786493251946, 28.661272118589654 ], [ -82.118790923765005, 28.660362104288929 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Hopkins Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116207503571104, 28.664176769916985 ], [ -82.116179980843029, 28.664897632847254 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068304042099598, 28.736589675529032 ], [ -82.068332948994978, 28.73653609736396 ], [ -82.068370529460623, 28.736475117612713 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 526", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062654343935264, 28.741490059471367 ], [ -82.062232830249513, 28.741470550948872 ], [ -82.061910313958236, 28.741465068199879 ], [ -82.061571821514832, 28.741442706677464 ], [ -82.061233336180393, 28.741428786440753 ], [ -82.060760737395768, 28.741420554405956 ], [ -82.060518049084166, 28.741412217713865 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 526", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060518049084166, 28.741412217713865 ], [ -82.059959232354544, 28.741398392181157 ], [ -82.059422771286847, 28.741392997701134 ], [ -82.058841608304874, 28.741390432801758 ], [ -82.058429683294804, 28.741384980042273 ], [ -82.057500464157286, 28.741385372303 ], [ -82.056718130697092, 28.741385697605288 ], [ -82.055657986612729, 28.741377687258549 ], [ -82.054371126462485, 28.741375388965253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 67th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.150634403447981, 28.658115176857098 ], [ -82.150719334515401, 28.658089299650253 ], [ -82.150788302547753, 28.658075470868603 ], [ -82.1523395781972, 28.658057102280964 ], [ -82.15309118653856, 28.658066164560445 ], [ -82.153539602951071, 28.65806994683701 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 532A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105916846689581, 28.699556824265358 ], [ -82.105913806541693, 28.699231707764874 ], [ -82.105913498673658, 28.698925714882812 ], [ -82.105913822922091, 28.698708891406358 ], [ -82.10591569143898, 28.698408633816388 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 532B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105916846689581, 28.699556824265358 ], [ -82.105995473436593, 28.699556762309662 ], [ -82.106391328392192, 28.699556455138179 ], [ -82.106798028302151, 28.69955613651593 ], [ -82.107324025861217, 28.69955572378624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 532C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103999462667502, 28.707184222393391 ], [ -82.103842161666478, 28.707150873059618 ], [ -82.103354074670861, 28.707136902013335 ], [ -82.102242320191777, 28.707133946979745 ], [ -82.101957783480344, 28.707133189841809 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103133314055924, 28.708753091261013 ], [ -82.103241620418444, 28.708595232935217 ], [ -82.103420345715861, 28.708351259900763 ], [ -82.103588194360384, 28.708080998355179 ], [ -82.103745182903054, 28.707794011188465 ], [ -82.103853411866055, 28.707559653098134 ], [ -82.103902108824585, 28.707449649389819 ], [ -82.103931857762973, 28.7073683477904 ], [ -82.103961606969108, 28.70728943554629 ], [ -82.103999462667502, 28.707184222393391 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100117730559973, 28.711267824114596 ], [ -82.101095900644879, 28.710506903438656 ], [ -82.101623317477504, 28.710093325358176 ], [ -82.101938573304693, 28.709848869104146 ], [ -82.102174311011623, 28.709671790683615 ], [ -82.102347710395279, 28.709525837468576 ], [ -82.102531944648533, 28.709367920956343 ], [ -82.102724292071599, 28.70918848479911 ], [ -82.102862450477673, 28.709054508762858 ], [ -82.103006009629738, 28.70889662224997 ], [ -82.103133314055924, 28.708753091261013 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087746337377155, 28.72118112309315 ], [ -82.087934926860939, 28.721009038414525 ], [ -82.088404062805978, 28.720579779920524 ], [ -82.088824938932262, 28.720203402192286 ], [ -82.0890776523499, 28.719970838211431 ], [ -82.089313227561036, 28.719764755590276 ], [ -82.089506977702129, 28.719594692842698 ], [ -82.089763332698723, 28.719373576596535 ], [ -82.090013501546082, 28.71916738479759 ], [ -82.090263527110636, 28.718955202083205 ], [ -82.090568300271002, 28.718726381619213 ], [ -82.092349703406185, 28.717324600895051 ], [ -82.094010460110226, 28.716034953942994 ], [ -82.094898789905059, 28.71534504601992 ], [ -82.097404937914561, 28.713388201109883 ], [ -82.098091524205103, 28.712861434664791 ], [ -82.098751828847355, 28.712344616532842 ], [ -82.099933476753776, 28.711411393028605 ], [ -82.100117730559973, 28.711267824114596 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 24th Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.085028050460167, 28.723653412549027 ], [ -82.08494806998219, 28.723421770369004 ], [ -82.08496670839024, 28.723252125201096 ], [ -82.084984496512476, 28.722031592468248 ], [ -82.084987458005955, 28.719888435099882 ], [ -82.084992007442665, 28.719710525173177 ], [ -82.085038854397595, 28.71960292614623 ], [ -82.085109222757751, 28.719561507994804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 526", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054371126462485, 28.741375388965253 ], [ -82.052400919651589, 28.741364895649845 ], [ -82.050992715950287, 28.741354168334958 ], [ -82.048814951262401, 28.741343702222732 ], [ -82.048480767275677, 28.74133733075476 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 526", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048480767275677, 28.74133733075476 ], [ -82.047132137109017, 28.741341472990015 ], [ -82.046298714021987, 28.741344569808657 ], [ -82.045506788774503, 28.741316689989404 ], [ -82.044893695958351, 28.741314075664789 ], [ -82.044443452683552, 28.741305781116083 ], [ -82.043983634578481, 28.741311556243893 ], [ -82.043277942341149, 28.741325850153853 ], [ -82.042636106791662, 28.741314791559361 ], [ -82.041898473737334, 28.741303760811718 ], [ -82.040503047980337, 28.741298549052416 ], [ -82.039347115573321, 28.741310140161371 ], [ -82.038114541720518, 28.741304855526611 ], [ -82.037632366429349, 28.741299359624289 ], [ -82.036987343333422, 28.74129953336767 ], [ -82.035828208601984, 28.741285765221907 ], [ -82.034784033818909, 28.741288845351828 ], [ -82.033596162235156, 28.741275067074238 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 34th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048480767275677, 28.74133733075476 ], [ -82.048411255310185, 28.741196110015185 ], [ -82.047305410153342, 28.738695458103113 ], [ -82.04565528058346, 28.734907402427336 ], [ -82.042732755484693, 28.728306988703089 ], [ -82.041655820958312, 28.725841735416115 ], [ -82.040406736919849, 28.723058108503498 ], [ -82.038648862468207, 28.719056194369372 ], [ -82.03728123714491, 28.715957622440772 ], [ -82.037134497048555, 28.71562003280301 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055134205787994, 28.745039162726052 ], [ -82.055105879925677, 28.744974343996947 ], [ -82.055043552910092, 28.744818836488989 ], [ -82.054958561942371, 28.744603805457185 ], [ -82.054894808256151, 28.744423050544913 ], [ -82.054831053165003, 28.744239181681667 ], [ -82.054770829744669, 28.744045958798228 ], [ -82.054710278774166, 28.743852455390243 ], [ -82.054665740247685, 28.743677704876962 ], [ -82.05462461832542, 28.743496929077885 ], [ -82.054576650040062, 28.743298073425922 ], [ -82.054544941345398, 28.743138761925039 ], [ -82.05451065209607, 28.742946682670173 ], [ -82.054476352280304, 28.742732002015206 ], [ -82.054446322027133, 28.742513555161107 ], [ -82.054420581937862, 28.742325238775667 ], [ -82.054390606866932, 28.741997340065588 ], [ -82.054384135415177, 28.741831299808009 ], [ -82.054371235662217, 28.74158646129349 ], [ -82.054371126462485, 28.741375388965253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060670525237256, 28.752445587968442 ], [ -82.060920743298382, 28.751996819391699 ], [ -82.061082500217935, 28.751681806040597 ], [ -82.061279591450514, 28.75131428616228 ], [ -82.061407924077827, 28.751138715298257 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059497881135087, 28.752992876306614 ], [ -82.059456184439085, 28.752904346330649 ], [ -82.058816067728998, 28.751747643169285 ], [ -82.058255273908415, 28.750743006862304 ], [ -82.057799280815885, 28.749922840491806 ], [ -82.057249832404452, 28.74894063035164 ], [ -82.056643754506879, 28.747861195198066 ], [ -82.05630956618883, 28.747265385599469 ], [ -82.056125481989227, 28.746938812052189 ], [ -82.056003699938614, 28.746714445102867 ], [ -82.055896080967187, 28.746519996902009 ], [ -82.055737487757852, 28.746240788866519 ], [ -82.055629868147633, 28.746041350595164 ], [ -82.055519417999463, 28.745841916082728 ], [ -82.055408966373378, 28.745634999414204 ], [ -82.05530699455484, 28.745418105862221 ], [ -82.055196529671974, 28.745186254223363 ], [ -82.055134205787994, 28.745039162726052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.081401864685475, 28.725978289149158 ], [ -82.081850824603464, 28.725777171660912 ], [ -82.082065402157866, 28.725683893297429 ], [ -82.082240363046381, 28.725605193836927 ], [ -82.08242192269303, 28.725520668369089 ], [ -82.082583670528635, 28.725439065527002 ], [ -82.082752021442346, 28.725354547592818 ], [ -82.082907162655204, 28.725267126558776 ], [ -82.083045797247749, 28.725191359881798 ], [ -82.083224033529149, 28.725080636338134 ], [ -82.083347786946305, 28.725003668390571 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 543B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.081294862953044, 28.739605778077095 ], [ -82.081296746922305, 28.738654428504113 ], [ -82.081306483115824, 28.737578557077693 ], [ -82.081313547990334, 28.736465427413005 ], [ -82.081325868507463, 28.735315034776704 ], [ -82.081343500347458, 28.734199569553372 ], [ -82.08134287505824, 28.733391504380005 ], [ -82.081352572588457, 28.73226672976724 ], [ -82.08136525816964, 28.731589065782806 ], [ -82.081372308008881, 28.730454975943537 ], [ -82.081376762981179, 28.729386092149547 ], [ -82.081386419456237, 28.728207756693422 ], [ -82.081396320666002, 28.727348454134848 ], [ -82.081401290389465, 28.726940924203806 ], [ -82.081406348953507, 28.726652160028088 ], [ -82.081401864685475, 28.725978289149158 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.079375866281495, 28.726869487600258 ], [ -82.07993839621021, 28.726619987401676 ], [ -82.081155880470291, 28.726081335626677 ], [ -82.081401864685475, 28.725978289149158 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.077260405702262, 28.727797530053756 ], [ -82.077807102680723, 28.727559691285759 ], [ -82.079019328404726, 28.727023389785064 ], [ -82.079375866281495, 28.726869487600258 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 15th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075106415594377, 28.734074006879446 ], [ -82.071690508964323, 28.734075839482951 ], [ -82.07126223092385, 28.73399143947767 ], [ -82.0708145102126, 28.733933529580508 ], [ -82.070231880809786, 28.733983805740806 ], [ -82.069902996780186, 28.733927265625539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 26th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060701517112363, 28.62197095160316 ], [ -82.060781718383708, 28.621910724731123 ], [ -82.06087727858008, 28.62184320191496 ], [ -82.060915465943381, 28.621754013130531 ], [ -82.060920781560114, 28.621498544094703 ], [ -82.06092063939947, 28.621250307912398 ], [ -82.060923204419751, 28.620963509952006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 5th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060892660507662, 28.620098311739252 ], [ -82.060884639832352, 28.620399573043368 ], [ -82.060882136210665, 28.620794824973707 ], [ -82.06088223345553, 28.620963528101097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 9th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060892660507662, 28.620098311739252 ], [ -82.061881398114195, 28.620085819484288 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 5th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060892120038133, 28.619160798360618 ], [ -82.060892507672648, 28.619833204468804 ], [ -82.060892660507662, 28.620098311739252 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 8th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060892120038133, 28.619160798360618 ], [ -82.061771609913535, 28.619170045690389 ], [ -82.061869943589329, 28.619179642062491 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 5th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060897077852886, 28.618288353742525 ], [ -82.060892120038133, 28.619160798360618 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 7th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060897077852886, 28.618288353742525 ], [ -82.061235763972221, 28.618295432856637 ], [ -82.061872160761894, 28.618299967300882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mi Tierra Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969089975375596, 28.93948577792068 ], [ -81.969098068626039, 28.939577879612592 ], [ -81.969399123508339, 28.940163903693339 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974515092626632, 28.937276521786643 ], [ -81.974495500548002, 28.937337214466123 ], [ -81.974479066264564, 28.937387116308827 ], [ -81.974468607343567, 28.937422573563627 ], [ -81.974461136221549, 28.937446211336933 ], [ -81.974449183174499, 28.937484294882239 ], [ -81.974441711110941, 28.937515813289735 ], [ -81.974435730780854, 28.937546016437338 ], [ -81.97442676659837, 28.937576220818318 ], [ -81.974419292143224, 28.937609052963708 ], [ -81.974413313199065, 28.937641883590192 ], [ -81.97440882697083, 28.937669462248834 ], [ -81.974405835839036, 28.937690474298037 ], [ -81.974401349888765, 28.937712798898556 ], [ -81.974394261411689, 28.937736102891616 ], [ -81.974384457053034, 28.937754247046989 ], [ -81.974375685367633, 28.937769218934012 ], [ -81.974362787959976, 28.937785095030097 ], [ -81.974352985287751, 28.937796435886998 ], [ -81.974343699235774, 28.937805054621471 ], [ -81.974329770951329, 28.937816846734044 ], [ -81.974319969178623, 28.937824558562408 ], [ -81.97431068368823, 28.937830908025404 ], [ -81.974300366082517, 28.937838166801633 ], [ -81.974289019779675, 28.937844968818506 ], [ -81.974276122567332, 28.937851771438265 ], [ -81.974267354494899, 28.937856307386987 ], [ -81.974260968797708, 28.93785834804881 ], [ -81.974246720748724, 28.937864923027586 ], [ -81.974237952674144, 28.937869458072075 ], [ -81.974223509218675, 28.937873992021835 ], [ -81.974213194791702, 28.937876713155745 ], [ -81.974200298480994, 28.937879885839855 ], [ -81.974186888846319, 28.937880790958946 ], [ -81.974175541960193, 28.937881697377509 ], [ -81.974159552834664, 28.937881694287881 ], [ -81.974145111426552, 28.937882143544961 ], [ -81.974130156240037, 28.937882139749487 ], [ -81.974113134201104, 28.937882137356766 ], [ -81.974099724679434, 28.937882589515635 ], [ -81.974079609030241, 28.937882584714679 ], [ -81.974056398744196, 28.937882581114824 ], [ -81.974032674566388, 28.93788257560654 ], [ -81.974006886613608, 28.937882570595139 ], [ -81.973974393444166, 28.937882565175975 ], [ -81.973944993885809, 28.937882558547301 ], [ -81.973921785651271, 28.937882554924641 ], [ -81.973324763693924, 28.937883343049304 ], [ -81.972535257703115, 28.937884479828661 ], [ -81.972434515362153, 28.937895863195529 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iglesia Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972650703669387, 28.938580537496918 ], [ -81.97271666075018, 28.938565225508636 ], [ -81.973391843308761, 28.938562647463755 ], [ -81.973835647006922, 28.938562735049342 ], [ -81.973894234178786, 28.93856274650231 ], [ -81.973938175839891, 28.938562755075559 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alfredo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975194706425413, 28.94175286924677 ], [ -81.975201353928298, 28.941776277776508 ], [ -81.975223962412485, 28.941812560481726 ], [ -81.97532505554976, 28.941909714682321 ], [ -81.975471374774045, 28.942043159235094 ], [ -81.975569808617578, 28.942135632564913 ], [ -81.975633657425632, 28.942194159753836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alfredo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975194706425413, 28.94175286924677 ], [ -81.975194713486687, 28.941723611481486 ], [ -81.975200041680353, 28.941696694350597 ], [ -81.975217346687188, 28.941661589323619 ], [ -81.975250615636256, 28.941631165643393 ], [ -81.975290534992084, 28.941607768441457 ], [ -81.975701687580141, 28.941458042375835 ], [ -81.976063606372009, 28.941321180161395 ], [ -81.976225936436663, 28.941266203532521 ], [ -81.976287142130985, 28.941242808015453 ], [ -81.976317749637573, 28.941226428697444 ], [ -81.976356334948804, 28.941217074237318 ], [ -81.976382943312345, 28.941217078041934 ], [ -81.976410881775394, 28.941222935254164 ], [ -81.976437489017911, 28.941232302147458 ], [ -81.976476063865334, 28.941268589265508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alfredo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976783305268484, 28.941700489698857 ], [ -81.976766019055191, 28.941654845081466 ], [ -81.976742080476043, 28.941610369577941 ], [ -81.976691537982177, 28.941545991152275 ], [ -81.97660508153109, 28.941431285514675 ], [ -81.976537247043225, 28.941343500311312 ], [ -81.976503996992051, 28.941297851950623 ], [ -81.976476063865334, 28.941268589265508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Salido Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978744990836759, 28.941873913272406 ], [ -81.978750350491097, 28.941982800188896 ], [ -81.978748448447774, 28.942503559411342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Madero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976499445280155, 28.942881737861168 ], [ -81.976594128890952, 28.942797044486255 ], [ -81.976833658012978, 28.942606324299614 ], [ -81.97686692652853, 28.942577072302988 ], [ -81.97689087937313, 28.942554840333063 ], [ -81.976918826353071, 28.942529099128105 ], [ -81.976946772030828, 28.94250452728917 ], [ -81.976965403079973, 28.942486975484819 ], [ -81.976986696040598, 28.942464743038709 ], [ -81.977010648833939, 28.94244251104708 ], [ -81.97703061084033, 28.942417937815819 ], [ -81.977054566711374, 28.942391025621124 ], [ -81.977074529462172, 28.942367621755473 ], [ -81.977098484303468, 28.942336027552336 ], [ -81.977122441964767, 28.942300920717209 ], [ -81.97714373721594, 28.942263475579871 ], [ -81.977162371574366, 28.942230709277371 ], [ -81.977184999279245, 28.942193263458645 ], [ -81.977200972779983, 28.942151134499671 ], [ -81.97721827977486, 28.942109004863735 ], [ -81.977230263753555, 28.942068048201506 ], [ -81.977238252569791, 28.942035279169598 ], [ -81.97724357921463, 28.942013043958905 ], [ -81.977247576973625, 28.941988468874722 ], [ -81.977251571394234, 28.941965063161994 ], [ -81.977254240007653, 28.941939315771865 ], [ -81.977258237254574, 28.941912398333301 ], [ -81.97725824321877, 28.94188548292172 ], [ -81.97725691875722, 28.941858564576599 ], [ -81.977256925229227, 28.94183398790944 ], [ -81.977256928871682, 28.941812922065456 ], [ -81.977255602866691, 28.941788345171201 ], [ -81.977255607535184, 28.941767279327262 ], [ -81.977251623782053, 28.941733340685694 ], [ -81.977244978924006, 28.941700569158165 ], [ -81.977235673481431, 28.941666628706621 ], [ -81.977221048702035, 28.941617472874839 ], [ -81.977213071878921, 28.941591723667923 ], [ -81.977203764376796, 28.941567146312519 ], [ -81.977194454813329, 28.941547249152229 ], [ -81.97718514756528, 28.941526180814709 ], [ -81.97717317872673, 28.941499262453018 ], [ -81.977161209113319, 28.941475854011628 ], [ -81.977145248762909, 28.941450104336909 ], [ -81.977118649992846, 28.94140679871829 ], [ -81.977097369791949, 28.941377535497548 ], [ -81.977012245002712, 28.941260490699712 ], [ -81.976759131276239, 28.940933156161925 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Madero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97461263349949, 28.944013416020091 ], [ -81.974699944126897, 28.944004122717651 ], [ -81.974733016386651, 28.943997147932958 ], [ -81.974775349786071, 28.94398901273507 ], [ -81.974809744568503, 28.943980873320704 ], [ -81.974849433005559, 28.943970408782302 ], [ -81.974879860009736, 28.943962269505487 ], [ -81.974910287009394, 28.943954129319451 ], [ -81.974940714287442, 28.943944827875352 ], [ -81.974972465858528, 28.943935524867793 ], [ -81.975010828938593, 28.943925059131168 ], [ -81.975053165007893, 28.943909940999713 ], [ -81.975088882834868, 28.943898310788754 ], [ -81.975123278689111, 28.943885519070918 ], [ -81.975177521288543, 28.943861093255776 ], [ -81.975246314809326, 28.943832017891687 ], [ -81.975517529376347, 28.943692438900008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Diaz Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972421335665672, 28.943046140488587 ], [ -81.972460648204773, 28.943021627869832 ], [ -81.972493722075725, 28.943004178912371 ], [ -81.972524151155383, 28.942987896068463 ], [ -81.972566490090657, 28.942965796772516 ], [ -81.972607502980537, 28.942942534135526 ], [ -81.972655130715737, 28.942916944922285 ], [ -81.972704083537764, 28.942884375821929 ], [ -81.972754360820261, 28.942847151140292 ], [ -81.973225389056438, 28.942446977262431 ], [ -81.973348433916158, 28.942337141319225 ], [ -81.973393000451537, 28.94226724321523 ], [ -81.973448318420267, 28.942128452622132 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Estevez Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976184278416326, 28.948961212293788 ], [ -81.976172457884317, 28.948924796368406 ], [ -81.976155912521961, 28.948865492047474 ], [ -81.976034183880216, 28.948431635392161 ], [ -81.976015271287352, 28.94837129208619 ], [ -81.976005817673283, 28.948329674851571 ], [ -81.975997546231326, 28.948299503409473 ], [ -81.975986909895752, 28.948262048236085 ], [ -81.975976272002882, 28.948222512374723 ], [ -81.975969182634714, 28.948195461270725 ], [ -81.975969187747225, 28.948173612257172 ], [ -81.975971557214919, 28.948156968092469 ], [ -81.975976291037696, 28.948145526069641 ], [ -81.975983392431317, 28.948129921294441 ], [ -81.975996406727049, 28.948114317581577 ], [ -81.976016517490763, 28.948099756387521 ], [ -81.976049639917264, 28.948085197524293 ], [ -81.976132442045326, 28.948063363331968 ], [ -81.976269655206593, 28.948033217825358 ], [ -81.976592579640027, 28.94796357000666 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elana Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976592579640027, 28.94796357000666 ], [ -81.976833680298753, 28.948820876586726 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Escobar Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976833680298753, 28.948820876586726 ], [ -81.977188543367546, 28.94874603026657 ], [ -81.977254785861646, 28.948732516203947 ], [ -81.977312745710762, 28.948719001603717 ], [ -81.977504372298569, 28.948673258928512 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Espinoza Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977239600229595, 28.947822067038313 ], [ -81.977324520762792, 28.948090287964735 ], [ -81.977504372298569, 28.948673258928512 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Escobar Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977504372298569, 28.948673258928512 ], [ -81.977567065986008, 28.948656622181826 ], [ -81.977604918632949, 28.948646224202587 ], [ -81.97764986847676, 28.948633749421518 ], [ -81.977703098983866, 28.948616070683308 ], [ -81.977758695281196, 28.948597353779501 ], [ -81.977817840382713, 28.948576555853631 ], [ -81.977876986710712, 28.94855471846089 ], [ -81.977942048217685, 28.948531840774159 ], [ -81.978007107511004, 28.948504802584647 ], [ -81.978083997613254, 28.948473604933579 ], [ -81.97817035198149, 28.948433043892418 ], [ -81.978233048289979, 28.948402883274472 ], [ -81.978345427852105, 28.948343600182902 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Escobar Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978345427852105, 28.948343600182902 ], [ -81.978375001885496, 28.948328000730896 ], [ -81.978406941706368, 28.948311358604951 ], [ -81.978443614350937, 28.948291598912885 ], [ -81.978494481003651, 28.948259354672039 ], [ -81.978545348432831, 28.948228151657595 ], [ -81.978582020648759, 28.948205269092846 ], [ -81.97861987585226, 28.948181347266484 ], [ -81.978671926049103, 28.948144942676514 ], [ -81.978729894080715, 28.948104377636216 ], [ -81.978784311443675, 28.948064853251836 ], [ -81.978852926003256, 28.948011803925311 ], [ -81.979118515481048, 28.94779339168992 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barbosa Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97698730150428, 28.951956364296311 ], [ -81.97716320662181, 28.951956394503284 ], [ -81.977334483008505, 28.95195642369444 ], [ -81.97749187320197, 28.951956451229037 ], [ -81.977579825692928, 28.951954431362864 ], [ -81.977646952164591, 28.951927976590579 ], [ -81.977693250208361, 28.951897448967991 ], [ -81.977732607644839, 28.951850633799449 ], [ -81.977751135359043, 28.951791599918018 ], [ -81.977753478568886, 28.951663349411827 ], [ -81.977751198217746, 28.951506598333353 ], [ -81.977746607055451, 28.95133355959031 ], [ -81.977725807230513, 28.951189020646151 ], [ -81.977707312214235, 28.951093338495788 ], [ -81.977672621278259, 28.950963046215968 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avila Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972542482817772, 28.950870427314687 ], [ -81.972540545973487, 28.95146634576275 ], [ -81.972537121336188, 28.951951748417542 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alcaraz Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971816759598624, 28.950880505582091 ], [ -81.971814285835706, 28.951005648472947 ], [ -81.971814180432844, 28.951390583418796 ], [ -81.971817738930639, 28.951949712008076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barrera Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971103719351461, 28.950859939030245 ], [ -81.971097043028948, 28.951309560590673 ], [ -81.971096976629369, 28.95154246201751 ], [ -81.971097444036204, 28.951949527570495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dellano Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969573119136911, 28.950831992146433 ], [ -81.969572672364308, 28.950993573622082 ], [ -81.96958384080483, 28.951171212219254 ], [ -81.969617444208964, 28.951365303791171 ], [ -81.969639823950118, 28.951572550927452 ], [ -81.969658451777775, 28.95181598362494 ], [ -81.969666196782811, 28.951998242956815 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rocha Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979211838866703, 28.951339274630268 ], [ -81.9792330904247, 28.951699813125312 ], [ -81.979237776285231, 28.951964483194701 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Margarita Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978242838760508, 28.949307331131067 ], [ -81.978432737357423, 28.949242635106351 ], [ -81.978615197265654, 28.949163471166191 ], [ -81.978807134169145, 28.949071807221085 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Margarita Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978807134169145, 28.949071807221085 ], [ -81.978878225469032, 28.949030136191439 ], [ -81.979015666883939, 28.948944715293361 ], [ -81.979150736932326, 28.94886137456961 ], [ -81.979259741501153, 28.948796786515775 ], [ -81.979333197732629, 28.948771790879334 ], [ -81.979398443439749, 28.94877064242813 ], [ -81.979454034272379, 28.948778061530479 ], [ -81.979499046812791, 28.9488051615931 ], [ -81.97956300967391, 28.948853102990661 ], [ -81.979716992939984, 28.948980250484215 ], [ -81.979949155134591, 28.949169931225409 ], [ -81.980084188041701, 28.949280403785451 ], [ -81.980240543081905, 28.949403385142734 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 91st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039384584415345, 28.890203689905849 ], [ -82.038879248804577, 28.890197618407683 ], [ -82.03854826997636, 28.890176399665926 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 205C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039384541492282, 28.890088600675558 ], [ -82.039384584415345, 28.890203689905849 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 91st Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040359697399651, 28.890102525999833 ], [ -82.040022265842623, 28.890095520393938 ], [ -82.039473336741509, 28.890084312634471 ], [ -82.039384541492282, 28.890088600675558 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 205C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039377895782138, 28.889582777803856 ], [ -82.039384541492282, 28.890088600675558 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 205C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039387256528642, 28.888711788587475 ], [ -82.039377576277829, 28.888723158547553 ], [ -82.039371124069376, 28.888738790946096 ], [ -82.039377706607482, 28.889072690571744 ], [ -82.039377895782138, 28.889582777803856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 230", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039377895782138, 28.889582777803856 ], [ -82.03709502042085, 28.889574889309497 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 42nd Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033815890984499, 28.926586113113242 ], [ -82.033830697736292, 28.926659387538834 ], [ -82.033938534217569, 28.92701905261147 ], [ -82.033996690525939, 28.927399306766581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015942430414711, 28.927246842826733 ], [ -82.015791514067274, 28.927242896223415 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978608653095449, 28.894317385637198 ], [ -81.978692094147377, 28.894343920257768 ], [ -81.978860373262819, 28.894380020914614 ], [ -81.978966090509516, 28.894395227804669 ], [ -81.979047223935197, 28.894405775796638 ], [ -81.979047443344911, 28.894405804704625 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978648893921459, 28.894210668047137 ], [ -81.978614450718581, 28.894201505102195 ], [ -81.978522493155552, 28.894172298258002 ], [ -81.978368777756302, 28.894127179243497 ], [ -81.978244719592567, 28.894129532168233 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979640532700643, 28.887848391485978 ], [ -81.979640540583546, 28.887844831008714 ], [ -81.979642835030134, 28.887157504685611 ], [ -81.97964424160061, 28.886832058539454 ], [ -81.979657788095707, 28.886521149389548 ], [ -81.979687511257538, 28.886222108841427 ], [ -81.979741503895568, 28.885925445906512 ], [ -81.979806280238222, 28.885640650725918 ], [ -81.979887231100847, 28.885381965113417 ], [ -81.979938499610796, 28.885227703704171 ], [ -81.979992460483686, 28.885087683692152 ], [ -81.980100377193949, 28.88483137501435 ], [ -81.980259540355334, 28.884522859455778 ], [ -81.980504678326355, 28.884112601050507 ], [ -81.980781154104804, 28.883738834842433 ], [ -81.980787384626822, 28.883731394459904 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981922161917751, 28.895080267744458 ], [ -81.981753680676306, 28.89500392741628 ], [ -81.981567858104043, 28.89491885924599 ], [ -81.98120859766091, 28.894770531559637 ], [ -81.980829522888754, 28.894596032475178 ], [ -81.980559457608862, 28.894504410024268 ], [ -81.980430704398202, 28.894467922979 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109E", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974849818280347, 28.953403959854274 ], [ -81.973234129642847, 28.953400072893501 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109E", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973234129642847, 28.953400072893501 ], [ -81.973013682257118, 28.953400028562509 ], [ -81.972721296112113, 28.953406092160268 ], [ -81.972630791773838, 28.953420359645779 ], [ -81.972556531222338, 28.953438714179253 ], [ -81.972475305227277, 28.953467270353631 ], [ -81.972403363459222, 28.953495828395894 ], [ -81.972329092530117, 28.953544795758482 ], [ -81.971662122798492, 28.954057712683671 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Summerchase Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999964882956647, 28.954725400575978 ], [ -81.999967031643379, 28.954615823557024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Summerchase Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999964886166566, 28.953956468372752 ], [ -81.99996394177559, 28.953847799041849 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fair Oak Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999964886166566, 28.953956468372752 ], [ -82.000160360131844, 28.953954579513734 ], [ -82.000463237400794, 28.953952690506934 ], [ -82.000562047938757, 28.95395457988668 ], [ -82.000609305505051, 28.953952690452535 ], [ -82.00063723016909, 28.953939465531928 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001160177196752, 28.917632885813241 ], [ -82.000937312697843, 28.917625042958193 ], [ -82.000801365157201, 28.917628966457833 ], [ -82.000674331528359, 28.917632886203716 ], [ -82.000496040799732, 28.917652495853879 ], [ -82.000383601475065, 28.917664862633803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 125D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013954637368158, 28.891425183705309 ], [ -82.013941840954587, 28.89198737203332 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Church Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106660041485767, 28.656779647770684 ], [ -82.106659741911898, 28.656484471051836 ], [ -82.106661729935666, 28.656392798665753 ], [ -82.106665769474304, 28.656277291323541 ], [ -82.106657373112796, 28.656196628303835 ], [ -82.106606120571982, 28.656116417428144 ], [ -82.106549557208098, 28.656067987277062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Georgia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107547587334835, 28.656789950188479 ], [ -82.10727529681678, 28.656788331733114 ], [ -82.106660041485767, 28.656779647770684 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Georgia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108486082547159, 28.656841477274437 ], [ -82.107547587334835, 28.656789950188479 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Martin Luther King Jr Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10848059445523, 28.65761138009097 ], [ -82.107548409216946, 28.657594810749121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107548409216946, 28.657594810749121 ], [ -82.107547587334835, 28.656789950188479 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Martin Luther King Jr Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107548409216946, 28.657594810749121 ], [ -82.106656709256782, 28.657595511044828 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Church Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106656709256782, 28.657595511044828 ], [ -82.106660041485767, 28.656779647770684 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 616", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153539602951071, 28.65806994683701 ], [ -82.153532855262227, 28.657932938764887 ], [ -82.153522046018395, 28.657804163643391 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 616", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.15350572659095, 28.665065407431122 ], [ -82.153520083060769, 28.662565746521985 ], [ -82.153524664787966, 28.661304380519962 ], [ -82.15352780045518, 28.660054611792759 ], [ -82.153539602951071, 28.65806994683701 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 610", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.15350572659095, 28.665065407431122 ], [ -82.155050890463599, 28.665083928858699 ], [ -82.156813566524505, 28.665105236753035 ], [ -82.157570615525685, 28.665107858510652 ], [ -82.158006572295207, 28.665082883012413 ], [ -82.158389045319424, 28.665073698687181 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 610", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149150101823494, 28.665029943031083 ], [ -82.150471953963319, 28.665026742322517 ], [ -82.151195324032528, 28.665036428192192 ], [ -82.151525927087889, 28.665046385292428 ], [ -82.151912746134727, 28.665046118636436 ], [ -82.153325036733023, 28.665055297308779 ], [ -82.15350572659095, 28.665065407431122 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.151040551171761, 28.668684348342538 ], [ -82.152213884192577, 28.668704816228548 ], [ -82.153497657694075, 28.668722855784591 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 616", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153497657694075, 28.668722855784591 ], [ -82.153496731178279, 28.667638449830484 ], [ -82.153498423653346, 28.665398921243963 ], [ -82.15350572659095, 28.665065407431122 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santo Domingo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979740513398966, 28.949861791046789 ], [ -81.979773689633149, 28.949834705656421 ], [ -81.979821085983687, 28.949793030537887 ], [ -81.979882701795816, 28.949734689501035 ], [ -81.979958537635412, 28.949661759602982 ], [ -81.98006754820058, 28.949557574703931 ], [ -81.980240543081905, 28.949403385142734 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rocha Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979001938383234, 28.950559720835972 ], [ -81.979065078749883, 28.95063068882714 ], [ -81.979095870112261, 28.950684877207632 ], [ -81.979117177892945, 28.950761989537575 ], [ -81.979155040786281, 28.951001656003132 ], [ -81.979190535442072, 28.951224650427669 ], [ -81.979211838866703, 28.951339274630268 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aquino Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982164153486679, 28.950859893121546 ], [ -81.981980816853749, 28.951010884195643 ], [ -81.981809005547376, 28.951177581888473 ], [ -81.98168755184777, 28.951284369576324 ], [ -81.981563135456383, 28.951406788954589 ], [ -81.98141502187417, 28.951537019664684 ], [ -81.981299492767832, 28.951643809626894 ], [ -81.981175076932345, 28.951758412985118 ], [ -81.981106940180624, 28.951839158486838 ], [ -81.981044727787619, 28.951925116434868 ], [ -81.981007656133826, 28.952045282928296 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Esparza Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972500715311085, 28.944181169443908 ], [ -81.972519606159238, 28.944416250446665 ], [ -81.972536608223692, 28.944629657070106 ], [ -81.972557399051396, 28.944853069087038 ], [ -81.972580077827544, 28.945098152752887 ], [ -81.97259517644504, 28.945341569219845 ], [ -81.972629218495982, 28.945628335706136 ], [ -81.972648134706148, 28.94577005279433 ], [ -81.972667064251652, 28.945861753079939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinto Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973842694149454, 28.946245794787149 ], [ -81.973758734472611, 28.946277107740595 ], [ -81.973652577971862, 28.946317099933825 ], [ -81.973563486283922, 28.946335421443958 ], [ -81.973466817223525, 28.94634040369904 ], [ -81.973358773528489, 28.946358721310261 ], [ -81.973239351481652, 28.94638870771459 ], [ -81.973108551777813, 28.94643536338825 ], [ -81.972992920131659, 28.946480353660167 ], [ -81.972871593338837, 28.946543683581886 ], [ -81.972774908471166, 28.946603683539852 ], [ -81.972683909004573, 28.946673688309186 ], [ -81.972608072061846, 28.94674369431895 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinto Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972608072061846, 28.94674369431895 ], [ -81.972524646364192, 28.946835374504051 ], [ -81.972374851985236, 28.947033742465628 ], [ -81.972291415656684, 28.947167101203195 ], [ -81.972192810658129, 28.94732546648034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Augustine Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971908889487167, 28.945856595438698 ], [ -81.97186525947879, 28.945984959078164 ], [ -81.971834909095918, 28.946069982058429 ], [ -81.971804569621867, 28.946114990151344 ], [ -81.971728721966585, 28.946223343113182 ], [ -81.971607364931373, 28.94639837303075 ], [ -81.971478424177576, 28.94657507136073 ], [ -81.971362757632406, 28.946735098937943 ], [ -81.971267949952818, 28.946865120639103 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Augustine Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971788029292824, 28.944221034074147 ], [ -81.971810693002951, 28.944517802135305 ], [ -81.971833340421554, 28.944874590705705 ], [ -81.971857908289806, 28.94514135067255 ], [ -81.971880586967131, 28.945384767909534 ], [ -81.971903266659538, 28.945624851161959 ], [ -81.971910801678334, 28.945799909291715 ], [ -81.971908889487167, 28.945856595438698 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Augustine Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971793914054786, 28.943499133148507 ], [ -81.971776816924745, 28.943642509337977 ], [ -81.971763500332557, 28.94381756402753 ], [ -81.97175777767832, 28.943947604009825 ], [ -81.971771002425413, 28.944107660062809 ], [ -81.971788029292824, 28.944221034074147 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Galindo Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968420155250683, 28.947280644039367 ], [ -81.96841279440072, 28.947473315162018 ], [ -81.968385963575074, 28.947661701204119 ], [ -81.968364015039555, 28.947805130760653 ], [ -81.968363965118058, 28.947967833044689 ], [ -81.968341991429881, 28.948186190760506 ], [ -81.968302998697069, 28.948348884718381 ], [ -81.968220173927818, 28.948577931868904 ], [ -81.968198244413628, 28.948654995969029 ], [ -81.968186050448736, 28.948734204421921 ], [ -81.968190895602433, 28.948806993504551 ], [ -81.968207907379522, 28.94889262961005 ], [ -81.968248122398293, 28.949032558545095 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Guerra Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967731354997426, 28.947282619956464 ], [ -81.967704561202936, 28.94734897892058 ], [ -81.967668000383199, 28.947513812636792 ], [ -81.967641178278697, 28.947670085937464 ], [ -81.967624081817519, 28.9478563330341 ], [ -81.967621604189006, 28.94799762693567 ], [ -81.967616698972378, 28.948117511552283 ], [ -81.967585017442332, 28.948243811299303 ], [ -81.967526550087896, 28.948412922829213 ], [ -81.96748269412268, 28.948554205767234 ], [ -81.9674217849999, 28.948742583300586 ], [ -81.967375498167712, 28.948875302849711 ], [ -81.967338949519728, 28.949001602239854 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Augustine Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967338949519728, 28.949001602239854 ], [ -81.967197790518341, 28.94896945603185 ], [ -81.966886268811919, 28.948890167969996 ], [ -81.96652607496371, 28.948793742415155 ], [ -81.966131820536987, 28.948654488994503 ], [ -81.965849522798734, 28.948528109864977 ], [ -81.965727844529198, 28.948468134969126 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Guerra Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967816738702851, 28.946657520422679 ], [ -81.967811815019047, 28.946830926361933 ], [ -81.967799605245006, 28.946957231768383 ], [ -81.967760603472726, 28.94715417752769 ], [ -81.967731354997426, 28.947282619956464 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Augustine Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967076824963229, 28.946672325731051 ], [ -81.967225292808251, 28.946672363071361 ], [ -81.967454082626134, 28.946668137522991 ], [ -81.967816738702851, 28.946657520422679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Augustine Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966353950903226, 28.946687133060017 ], [ -81.966495118707186, 28.946685027327874 ], [ -81.966672795439251, 28.946676507120873 ], [ -81.967076824963229, 28.946672325731051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landeros Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966353950903226, 28.946687133060017 ], [ -81.966317367592552, 28.946911909329845 ], [ -81.96628080193878, 28.947085306336504 ], [ -81.966234507388677, 28.947239433318273 ], [ -81.966195528884057, 28.947352886777409 ], [ -81.966146799098112, 28.947509154247967 ], [ -81.96608101601359, 28.947714657286973 ], [ -81.966005501824199, 28.947900890261717 ], [ -81.965944607694411, 28.948040027239667 ], [ -81.965873973671435, 28.948189866502553 ], [ -81.965803347565, 28.948318297935625 ], [ -81.965727844529198, 28.948468134969126 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Augustine Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9657211807435, 28.946549958476201 ], [ -81.965828261726784, 28.946584240492282 ], [ -81.965925607123452, 28.946614236761928 ], [ -81.96605945968254, 28.946652804979699 ], [ -81.966168975206173, 28.946680663919881 ], [ -81.966237122385721, 28.946687102742192 ], [ -81.966353950903226, 28.946687133060017 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Augustine Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964576881185579, 28.947615789740713 ], [ -81.964576899105296, 28.947566549835503 ], [ -81.964591525260502, 28.947498049847336 ], [ -81.964620753598894, 28.947433831485231 ], [ -81.964659729593791, 28.947341787180981 ], [ -81.964688964874398, 28.947254020771734 ], [ -81.964752306485522, 28.94708277329849 ], [ -81.964813205430204, 28.946926507718604 ], [ -81.964866802433235, 28.946785227272912 ], [ -81.964927705693825, 28.946618260443692 ], [ -81.964961813009339, 28.946521932483648 ], [ -81.964991034611757, 28.946479123631274 ], [ -81.965029990467059, 28.946438459357974 ], [ -81.965095717933082, 28.946404220965544 ], [ -81.965180906682562, 28.946395680388939 ], [ -81.965278256037294, 28.94641283299136 ], [ -81.965390204236542, 28.946447114814013 ], [ -81.96549971896016, 28.94647925567801 ], [ -81.9657211807435, 28.946549958476201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Augustine Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965061083723683, 28.948054784843013 ], [ -81.964725290388643, 28.947791376254433 ], [ -81.964666894122544, 28.947739981612347 ], [ -81.96462066336565, 28.947697152916014 ], [ -81.964589036638515, 28.947656467402375 ], [ -81.964576881185579, 28.947615789740713 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Augustine Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965727844529198, 28.948468134969126 ], [ -81.965562367035105, 28.948378179058508 ], [ -81.965311719082237, 28.948232538478944 ], [ -81.965180317741869, 28.948144729354311 ], [ -81.965061083723683, 28.948054784843013 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magana Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9657211807435, 28.946549958476201 ], [ -81.965606695335637, 28.946823955405264 ], [ -81.965504377238815, 28.947102235837178 ], [ -81.965404495650702, 28.947378375668617 ], [ -81.96530218397254, 28.947637389271467 ], [ -81.965219361123161, 28.947842885661967 ], [ -81.96516821629659, 28.947937068096451 ], [ -81.96511464967854, 28.947996997050652 ], [ -81.965061083723683, 28.948054784843013 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ballesteros Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996245670968904, 28.945714871798465 ], [ -81.996031160363174, 28.945846939390368 ], [ -81.995898878877341, 28.945919260342549 ], [ -81.9957880483948, 28.945982150197736 ], [ -81.995677221110711, 28.946016736836118 ], [ -81.995591416550212, 28.946026167409403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burgos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996048203396896, 28.942790279227577 ], [ -81.996414068982517, 28.942785660297034 ], [ -81.996879297671185, 28.94278653961743 ], [ -81.997376112249313, 28.942786549985502 ], [ -81.997800542574126, 28.942786559063631 ], [ -81.998196019118311, 28.942790327138319 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barboza Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996048203396896, 28.942790279227577 ], [ -81.996040292045137, 28.943146829226382 ], [ -81.996040286244764, 28.94328574450136 ], [ -81.99604028276454, 28.943369093845448 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ballesteros Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999617360950381, 28.943774326653461 ], [ -81.999401525192198, 28.94378590199825 ], [ -81.999251490736199, 28.943804423321108 ], [ -81.999090929613473, 28.943818313822813 ], [ -81.998948793715243, 28.943832204302961 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santa Cruz Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999617360950381, 28.943774326653461 ], [ -81.999667369890446, 28.944126247381028 ], [ -81.999730539172901, 28.944471221361429 ], [ -81.999814766285468, 28.94485786956573 ], [ -81.999880570142551, 28.945121809407205 ], [ -81.999867409745875, 28.945191267897744 ], [ -81.999833188681606, 28.945230627641436 ], [ -81.999780619123797, 28.945250160335117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011581307912209, 28.950617083243081 ], [ -82.011535207034214, 28.950694536184429 ], [ -82.011517425201234, 28.950726852333869 ], [ -82.011500426159643, 28.950759855963419 ], [ -82.011484014887216, 28.950792515769358 ], [ -82.011468188416771, 28.950825864876656 ], [ -82.01145314466585, 28.950859211211331 ], [ -82.01142930869149, 28.950915934843717 ], [ -82.011416024336611, 28.950949970382023 ], [ -82.0114033237233, 28.950984347840272 ], [ -82.011391406858777, 28.951018727038228 ], [ -82.011380075752442, 28.951053104383007 ], [ -82.011369526380776, 28.951087827241373 ], [ -82.011359562804756, 28.951122892922427 ], [ -82.011350379902396, 28.951157957637314 ], [ -82.011341981814297, 28.951193367865979 ], [ -82.011334168425634, 28.951228432468977 ], [ -82.011326940871328, 28.951264186375319 ], [ -82.011320691949109, 28.95129959642906 ], [ -82.011315027800492, 28.951335349306319 ], [ -82.01130995044187, 28.951371102135969 ], [ -82.011305653762079, 28.951406854902508 ], [ -82.011302140839533, 28.951442607605752 ], [ -82.011299212693288, 28.951478704035043 ], [ -82.011297067244016, 28.951514457530251 ], [ -82.011295701486574, 28.951550552931316 ], [ -82.011294925708611, 28.951587679604636 ], [ -82.011294914118096, 28.95172219240056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99238768130401, 28.954393270401521 ], [ -81.99246082072824, 28.954416666534971 ], [ -81.992563882557803, 28.954425444492514 ], [ -81.992779983360123, 28.954425457460665 ], [ -81.993006059971336, 28.95442546971206 ], [ -81.993265379703445, 28.954425483297253 ], [ -81.993528026415134, 28.954425496547334 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moncayo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99434319055689, 28.955047483221446 ], [ -81.994646729337219, 28.955045449660165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rosales Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993675599535166, 28.955045113840544 ], [ -81.993681924874025, 28.955449336316395 ], [ -81.993680881008103, 28.955648640763648 ], [ -81.993678208475941, 28.955840457910387 ], [ -81.993680858719756, 28.955994849155847 ], [ -81.993681577488758, 28.956144413946731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quintero Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993015989562849, 28.955049759598126 ], [ -81.993015948189083, 28.9556345709284 ], [ -81.993021231300943, 28.956146868024682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duran Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987291910659522, 28.953225583644517 ], [ -81.987388136610434, 28.953158918868034 ], [ -81.987533936007637, 28.953043532218381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blythe Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012522173166218, 28.939844921100271 ], [ -82.012522177507776, 28.939873454330513 ], [ -82.012522226179939, 28.940301109899508 ], [ -82.012518424491617, 28.941217269265522 ], [ -82.012513905077867, 28.941580260497691 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Larranaga Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000978135605351, 28.959221662474672 ], [ -82.001101058701863, 28.959070964895698 ], [ -82.001166243791772, 28.95893009526598 ], [ -82.001194179279963, 28.958825263317312 ], [ -82.001188593212532, 28.958710600177575 ], [ -82.001173690889104, 28.958628699279487 ], [ -82.001125266809652, 28.958487832005748 ], [ -82.0010619418386, 28.958286355164027 ], [ -82.000996755097233, 28.958093070196206 ], [ -82.000944604197358, 28.957930907881771 ], [ -82.000886867259965, 28.957762191315521 ], [ -82.000808812703809, 28.957493114703617 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Martinez Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96080307667161, 28.935294152680694 ], [ -81.961065964948162, 28.934848898395579 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morelos Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966344996586486, 28.925216494924776 ], [ -81.966690127724945, 28.924998750794899 ], [ -81.966924605272723, 28.924850499470253 ], [ -81.967258615630129, 28.924632136659476 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033070469837142, 28.927392811638168 ], [ -82.032481129800331, 28.927389193777348 ], [ -82.031556582437219, 28.927387309392291 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 107", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036360619809756, 28.926596259759791 ], [ -82.03636565594239, 28.927400827585462 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 107", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036369875147358, 28.925778293465058 ], [ -82.036365196342857, 28.926064129155527 ], [ -82.036360485772846, 28.926263794765784 ], [ -82.036360619809756, 28.926596259759791 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Suffolk Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021024022226911, 28.92152532313456 ], [ -82.021016755496802, 28.921626311905541 ], [ -82.021020419222282, 28.921732107348401 ], [ -82.021035012544942, 28.921812254268989 ], [ -82.021062355649946, 28.921881176489389 ], [ -82.021089697130876, 28.921946896455644 ], [ -82.021135263922901, 28.922027038634759 ], [ -82.021170530719502, 28.922070049291563 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Suffolk Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021170530719502, 28.922070049291563 ], [ -82.021192398403102, 28.922092487843564 ], [ -82.021274401434681, 28.922164610191512 ], [ -82.021378269175173, 28.922238328878848 ], [ -82.021493072095964, 28.922313652773518 ], [ -82.021591470503409, 28.922376153901013 ], [ -82.021668005829227, 28.922429039010915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Suffolk Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021668005829227, 28.922429039010915 ], [ -82.021757295951545, 28.922489938966617 ], [ -82.021885778320978, 28.922573820447447 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Plainridge Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021737046026473, 28.921472052275096 ], [ -82.021842765146616, 28.921688437739991 ], [ -82.021882858809775, 28.921738122633752 ], [ -82.021961219172638, 28.921815052576296 ], [ -82.02202864546453, 28.92186954321614 ], [ -82.022105179281454, 28.921920826506952 ], [ -82.022307447935574, 28.922061856203509 ], [ -82.022621087257122, 28.922264019580037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Plainridge Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02322780861239, 28.922672666869822 ], [ -82.023428683107383, 28.922807737236862 ], [ -82.023793502122956, 28.923058631158252 ], [ -82.023863853838449, 28.92313012412248 ], [ -82.023886144174838, 28.923213313725419 ], [ -82.023887427226526, 28.923464195000307 ], [ -82.023880183020495, 28.923658154621808 ], [ -82.023869257790807, 28.923691820260768 ], [ -82.023851046086179, 28.923727088734598 ], [ -82.023820078723261, 28.923760756031832 ], [ -82.023770890259655, 28.923788015655617 ], [ -82.023736274214869, 28.923796037615453 ], [ -82.023692546397072, 28.923797646713655 ], [ -82.023443749372476, 28.92379471438144 ], [ -82.022832614066189, 28.923793441816073 ], [ -82.022404379999131, 28.923793051839478 ], [ -82.022344247873349, 28.923775429828645 ], [ -82.022298694236042, 28.923751391919474 ], [ -82.022271354808169, 28.923720941149337 ], [ -82.02225130500004, 28.92367926554353 ], [ -82.022243914622791, 28.923640212673142 ], [ -82.022240140324357, 28.92335041216187 ], [ -82.022241835134636, 28.923039295825554 ], [ -82.022249234086274, 28.922918628823076 ], [ -82.022269532782218, 28.92282236773983 ], [ -82.022310344131739, 28.922716479452376 ], [ -82.022367757547698, 28.922591336177319 ], [ -82.022450959966946, 28.922465844909024 ], [ -82.022562098202286, 28.92233209662626 ], [ -82.022621087257122, 28.922264019580037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bella Cruz Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956772217661225, 28.951832945468833 ], [ -81.956109211029684, 28.952355725404097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cumberland Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00901456101434, 28.917797168125944 ], [ -82.00899680821216, 28.916865450471988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lynnhaven Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007620540427098, 28.916436238495642 ], [ -82.007620521125418, 28.916157093119832 ], [ -82.007620515352571, 28.916058772538022 ], [ -82.007621678178609, 28.91601270300345 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ladson Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009821953520543, 28.910753831864696 ], [ -82.009631094704531, 28.910760378372149 ], [ -82.009412942599667, 28.910796409878007 ], [ -82.009322136620895, 28.910807683699087 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lynnhaven Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009322136620895, 28.910807683699087 ], [ -82.00932329124673, 28.910699100234059 ], [ -82.009323281994938, 28.910602809745086 ], [ -82.00932443501712, 28.9104634958255 ], [ -82.009326748131571, 28.91030369516033 ], [ -82.009326740314719, 28.910200233204062 ], [ -82.009324248395131, 28.9101395809191 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Castleberry Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001371688140296, 28.915883973523012 ], [ -82.001405680756193, 28.915978512382047 ], [ -82.001427621451825, 28.916061592137751 ], [ -82.001445813293685, 28.916184835857145 ], [ -82.001445814334829, 28.916288870693286 ], [ -82.001440457889146, 28.916375572439183 ], [ -82.001451986905209, 28.9164900494786 ], [ -82.001463513661079, 28.916581495387117 ], [ -82.001475041123157, 28.916639937078326 ], [ -82.001483832425464, 28.916690814832108 ], [ -82.001483832849758, 28.916731723167469 ], [ -82.001472306494449, 28.916782602863655 ], [ -82.001449059287523, 28.91682076205532 ], [ -82.001407617227201, 28.916860276608322 ], [ -82.001362139553606, 28.916884285201217 ], [ -82.001296648745836, 28.916908293889595 ], [ -82.001223936149444, 28.916930737999152 ], [ -82.001139702740545, 28.916948583112504 ], [ -82.001064036486014, 28.916957862637496 ], [ -82.001011926507161, 28.916962859742231 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998469424801385, 28.913213206906235 ], [ -81.99843534071087, 28.91320504428959 ], [ -81.998387206617451, 28.913184338643475 ], [ -81.99834014222246, 28.913158926611615 ], [ -81.998290939779267, 28.913129751051116 ], [ -81.998226761598602, 28.913077046048759 ], [ -81.998132632858713, 28.912985752915894 ], [ -81.997937962897822, 28.912785284613161 ], [ -81.99780854073606, 28.91264410985427 ], [ -81.997673769366401, 28.912487877329337 ], [ -81.997442736864031, 28.912205526828412 ], [ -81.997376420425852, 28.912120823194638 ], [ -81.997228815915165, 28.911916589522573 ], [ -81.996994577381528, 28.911564597029084 ], [ -81.996809542329046, 28.911278482997755 ], [ -81.996732531690512, 28.911183423098677 ], [ -81.996499364564258, 28.910898251191988 ], [ -81.996250153454838, 28.910633779820035 ], [ -81.996097202737815, 28.910495425976098 ], [ -81.995885424509524, 28.910313777852444 ], [ -81.995653326016324, 28.910142480773583 ], [ -81.995416949708854, 28.909978711912444 ], [ -81.995161319394128, 28.909830001268517 ], [ -81.99490889865065, 28.909697172507947 ], [ -81.994698993092712, 28.909598343587405 ], [ -81.99453882180849, 28.90952975062244 ], [ -81.994479996031558, 28.909503395640066 ], [ -81.994427585687916, 28.909474217615575 ], [ -81.994379454972517, 28.909438452078032 ], [ -81.994322197762784, 28.909384875669954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999690117086601, 28.917568067848411 ], [ -81.999664015655739, 28.91750384497487 ], [ -81.999645212972183, 28.917439509337349 ], [ -81.999641035434323, 28.917373333971881 ], [ -81.999655660671564, 28.917211573866208 ], [ -81.999682822304408, 28.916994669929544 ], [ -81.999701626936641, 28.916759382554861 ], [ -81.999712074481394, 28.91652593402214 ], [ -81.999712075923696, 28.916307189276207 ], [ -81.999703721312926, 28.916106828795133 ], [ -81.999691186962508, 28.915871542180586 ], [ -81.999668207607385, 28.915663827008359 ], [ -81.999643137309235, 28.915457950699022 ], [ -81.999605535519493, 28.915231854751379 ], [ -81.999563751883159, 28.915003918983047 ], [ -81.999513612478651, 28.914790690597023 ], [ -81.999442581838494, 28.91456275643495 ], [ -81.999373641964496, 28.914389967035842 ], [ -81.999277542067034, 28.914204309759008 ], [ -81.999202333173116, 28.914088503901368 ], [ -81.999127124400999, 28.913976373958761 ], [ -81.999016399983105, 28.913845862974988 ], [ -81.998899407957822, 28.913719025993259 ], [ -81.998853449339947, 28.913649176913822 ], [ -81.998822293380925, 28.913539025955515 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rainey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00687030203062, 28.909073929302419 ], [ -82.006816116337347, 28.909057047124485 ], [ -82.006714073374795, 28.909045819107519 ], [ -82.00621882008349, 28.909006700889545 ], [ -82.005889325967544, 28.908976721006809 ], [ -82.0057188976172, 28.908974228256358 ], [ -82.005505864260002, 28.908976735586318 ], [ -82.005045231747928, 28.908981606921394 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rainey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005045231747928, 28.908981606921394 ], [ -82.004356522953245, 28.908974470081539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Welcome Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010107690654152, 28.923723192434139 ], [ -82.010158364015879, 28.923788029607298 ], [ -82.010228151687429, 28.923888444714983 ], [ -82.010259719692314, 28.923956200342722 ], [ -82.010275848670233, 28.924037249699939 ], [ -82.010279755645897, 28.924150741079533 ], [ -82.010282897593541, 28.924329848359751 ], [ -82.01028290695146, 28.924417855576149 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Folly Beach Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007255295178723, 28.923634574330585 ], [ -82.007350823231135, 28.923471620317724 ], [ -82.007431115445854, 28.923347858235594 ], [ -82.007522931934034, 28.923208279162179 ], [ -82.007589544840542, 28.923089674310521 ], [ -82.00762861111852, 28.922981383215614 ], [ -82.007667676470717, 28.92283149445964 ], [ -82.007696972327665, 28.922671293867371 ], [ -82.007712348443803, 28.922548113406553 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Admiral Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014722055020158, 28.907910999877146 ], [ -82.01459526448221, 28.907832077406724 ], [ -82.014546050815142, 28.907802220970805 ], [ -82.01449174752166, 28.907776844049177 ], [ -82.014442535515954, 28.907758932194248 ], [ -82.014389929538538, 28.907742513069987 ], [ -82.014344114573674, 28.907738038752992 ], [ -82.014283024541783, 28.907732072672321 ], [ -82.014203271965741, 28.907736559769258 ], [ -82.014113337013569, 28.907742542047799 ], [ -82.014023404296339, 28.90775001486216 ], [ -82.01394704582718, 28.907761967983642 ], [ -82.013874082045405, 28.907785865346213 ], [ -82.013814696143484, 28.907818719349081 ], [ -82.013773975375585, 28.907853065703815 ], [ -82.013729862292962, 28.907902342700208 ], [ -82.013702718359184, 28.907945644817737 ], [ -82.013678969169064, 28.907993427410609 ], [ -82.0136653994754, 28.908041207205745 ], [ -82.01365861960754, 28.908108399278166 ], [ -82.013665415024263, 28.908163643607939 ], [ -82.013694275703756, 28.908274131681335 ], [ -82.013804583225919, 28.908617216022705 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Augustine Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972169712897895, 28.942693497418656 ], [ -81.971936865144087, 28.942816729990984 ], [ -81.971879381131416, 28.942858941631478 ], [ -81.971854728863121, 28.942898949542133 ], [ -81.971839554009222, 28.942945628293341 ], [ -81.971826263271097, 28.943030653999518 ], [ -81.971818651133702, 28.943142354492082 ], [ -81.97179774326834, 28.943360755567642 ], [ -81.971793914054786, 28.943499133148507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Geddes Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021403674789411, 28.914275554157548 ], [ -82.021413025544831, 28.914144332574296 ], [ -82.021418872769743, 28.914077296422057 ], [ -82.021410069289672, 28.914018169365072 ], [ -82.021377813103967, 28.913904727657172 ], [ -82.021322879423806, 28.913715556042824 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965973249572556, 28.924779932656854 ], [ -81.965647400373669, 28.924990663650703 ], [ -81.965456199266427, 28.925111417430806 ], [ -81.965263652118892, 28.925232170587876 ], [ -81.964938985861636, 28.925439360452053 ], [ -81.964578284940075, 28.92566901347865 ], [ -81.964327834137208, 28.925830017608408 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glen Hollow Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996396599856382, 28.924965596393044 ], [ -81.996338761474433, 28.925053529796024 ], [ -81.996269718128929, 28.925169905014954 ], [ -81.996196228485843, 28.925289434490963 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glen Hollow Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996196228485843, 28.925289434490963 ], [ -81.996157706148296, 28.92537620081054 ], [ -81.996086876638699, 28.92549644492064 ], [ -81.996050840529378, 28.925551101285709 ], [ -81.996013561523512, 28.925601385077393 ], [ -81.995967584072346, 28.925656040209418 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carriage Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995967584072346, 28.925656040209418 ], [ -81.996117930453408, 28.925763172583622 ], [ -81.996180055173525, 28.925809088658113 ], [ -81.996238452863423, 28.925855000985532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glen Hollow Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995967584072346, 28.925656040209418 ], [ -81.995907939942896, 28.925718348164708 ], [ -81.995813503349282, 28.925791586282401 ], [ -81.995706641296337, 28.925864823018919 ], [ -81.99564451214313, 28.925897613975724 ], [ -81.99558362712348, 28.925928222292949 ], [ -81.995522740323253, 28.925952268186265 ], [ -81.995465582790317, 28.925973036142445 ], [ -81.99529907673211, 28.926022222471051 ], [ -81.995107721588596, 28.926076871060431 ], [ -81.994941217247771, 28.926126057848013 ], [ -81.994793351367719, 28.926174148886382 ], [ -81.9947014006232, 28.926211311637815 ], [ -81.994604478875971, 28.926262686178539 ], [ -81.994496372813629, 28.926329363110888 ], [ -81.994425544559405, 28.926382924881977 ], [ -81.994365898701503, 28.92643429993386 ], [ -81.994308737610169, 28.926490048493736 ], [ -81.994271457751836, 28.926534864786863 ], [ -81.99423169328837, 28.926588427812728 ], [ -81.994185714456435, 28.926660573326725 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glen Hollow Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993938345852783, 28.928711131248452 ], [ -81.993939538381696, 28.929080785420346 ], [ -81.993939527093005, 28.929263340491246 ], [ -81.993938260534591, 28.929626264299436 ], [ -81.99393825086608, 28.929782584222867 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glen Hollow Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99393825086608, 28.929782584222867 ], [ -81.993949431703385, 28.929845987213405 ], [ -81.993973037941714, 28.929899552149735 ], [ -81.994005342095164, 28.929947651376768 ], [ -81.994042617403849, 28.929982633256273 ], [ -81.994069953702549, 28.930007777853866 ], [ -81.994102259449647, 28.930030735506811 ], [ -81.994134566498829, 28.93004932063003 ], [ -81.994170600990216, 28.930064626971458 ], [ -81.994206636777079, 28.930075559879032 ], [ -81.994240184457681, 28.930084305503982 ], [ -81.994273734323372, 28.930090865762011 ], [ -81.994329652929594, 28.930094148044645 ], [ -81.994405449916243, 28.930095243994327 ], [ -81.99453103031253, 28.930094806291809 ], [ -81.99460286768138, 28.930087976204323 ], [ -81.994682473552629, 28.930058941816071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cutters Cor", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994185714456435, 28.926660573326725 ], [ -81.994471494104332, 28.92680378815697 ], [ -81.994800011907088, 28.926974580948212 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Saddlebrook Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996196228485843, 28.925289434490963 ], [ -81.99600589599423, 28.925213609724569 ], [ -81.995865213627837, 28.925157565511629 ], [ -81.995541319302873, 28.924960932780706 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968716942969948, 28.920159512655875 ], [ -81.968715548315586, 28.920771547987151 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Galley Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016280707381853, 28.905526678005288 ], [ -82.016189158224776, 28.905531494282322 ], [ -82.016076485790208, 28.90554472776083 ], [ -82.015956301191267, 28.905551350864084 ], [ -82.01585489296474, 28.905551362398825 ], [ -82.01576099486357, 28.905551373011242 ], [ -82.015678367619529, 28.905548077177531 ], [ -82.01556944728587, 28.905541480907264 ], [ -82.015494328129023, 28.905538182320576 ], [ -82.015422966165332, 28.905528277553291 ], [ -82.015345318666704, 28.905512826107959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neptune Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018893790088072, 28.902992876860925 ], [ -82.018693074211498, 28.902950272187852 ], [ -82.018625593384087, 28.902938102015252 ], [ -82.018539079333266, 28.902925933443967 ], [ -82.018452567117166, 28.902918332251673 ], [ -82.018348752813338, 28.902918345978069 ], [ -82.018248398441074, 28.902925971863109 ], [ -82.018185147100866, 28.902936119267789 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Miona Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016013837683104, 28.903606636141195 ], [ -82.016053396983096, 28.903549211138785 ], [ -82.016102840168188, 28.903465605699804 ], [ -82.016174930942498, 28.903333400731423 ], [ -82.016216985563162, 28.903267297083744 ], [ -82.016268714337357, 28.903192150363754 ], [ -82.016334081062496, 28.903105845109245 ], [ -82.016397224516538, 28.903018746962672 ], [ -82.016454299598493, 28.902931490695831 ], [ -82.016485958551456, 28.902872316032663 ], [ -82.016501885593485, 28.902843814151698 ], [ -82.016520378548151, 28.902791354135267 ], [ -82.016538396266242, 28.902722610390803 ], [ -82.016553405281115, 28.902645934893481 ], [ -82.016562409010177, 28.902571904742853 ], [ -82.016565403157614, 28.902505804703274 ], [ -82.016566657203143, 28.902459430018148 ], [ -82.016558957432878, 28.902405283994568 ], [ -82.016541344067718, 28.902363035048658 ], [ -82.016514293728292, 28.902304872473728 ], [ -82.016469217828416, 28.902257286958125 ], [ -82.016418556395436, 28.902227628049506 ], [ -82.016349329610918, 28.902212407169937 ], [ -82.016276916844021, 28.902209718650912 ], [ -82.016207810314697, 28.902209725777894 ], [ -82.016144715988545, 28.902212377714896 ], [ -82.016075611673003, 28.902220317783069 ], [ -82.016001283155248, 28.902249674470699 ], [ -82.01594744773648, 28.902291983083444 ], [ -82.015887845211608, 28.902352905846989 ], [ -82.015826259457668, 28.902413353296684 ], [ -82.015747492332309, 28.902501828045565 ], [ -82.015687893072567, 28.902579672425883 ], [ -82.015637007057535, 28.902661903683917 ], [ -82.015584079823924, 28.90275397110538 ], [ -82.015526407997299, 28.902874117658737 ], [ -82.015474809882875, 28.903018852953181 ], [ -82.015402721855935, 28.903174851164888 ], [ -82.015343882640138, 28.903280285785307 ], [ -82.015261567975685, 28.903400073092357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Compass Pointe", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015680225652517, 28.907090226150888 ], [ -82.015592717890144, 28.907021301270554 ], [ -82.015530486776328, 28.906979045457451 ], [ -82.015493152488673, 28.906961132665085 ], [ -82.015440547079166, 28.906932769328122 ], [ -82.015349314037792, 28.906898298044595 ], [ -82.015242002629094, 28.9068655996609 ], [ -82.015133398417063, 28.906834257484963 ], [ -82.015024787933626, 28.906808925428873 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jib Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020149282857972, 28.904335631628935 ], [ -82.020036669777497, 28.90434414848804 ], [ -82.019947092224228, 28.904335716783098 ], [ -82.019879908919052, 28.904324465740117 ], [ -82.019793530103769, 28.904307587963117 ], [ -82.019719945745493, 28.904287893143362 ], [ -82.019649630627185, 28.904258346528266 ], [ -82.019580237720604, 28.904225051599212 ], [ -82.019512497541697, 28.904179120616888 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wedgewood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008303937023669, 28.928455778916426 ], [ -82.008417309537833, 28.928542807722707 ], [ -82.008510576162905, 28.928584306907577 ], [ -82.008575410647438, 28.928593810536604 ], [ -82.00946260266619, 28.928600369371097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 102nd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958601749132256, 28.905636315459319 ], [ -81.957864359602041, 28.905646855740546 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Shore Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970138911938122, 28.910460195763957 ], [ -81.970331687261108, 28.910455196567117 ], [ -81.970377984171833, 28.910454174586548 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974609654292692, 28.905260040080435 ], [ -81.974631794138887, 28.905184493036387 ], [ -81.974633625861202, 28.905153992091023 ], [ -81.974637291440715, 28.905080146885687 ], [ -81.974640501250562, 28.905020750096494 ], [ -81.974645082499151, 28.904934462368661 ], [ -81.974656499340426, 28.904872259179953 ], [ -81.974714196786664, 28.904756469120937 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969126453455203, 28.906669408516606 ], [ -81.969160972288222, 28.906632004481033 ], [ -81.969195642916461, 28.906604720646747 ], [ -81.96923761257554, 28.906580650660832 ], [ -81.969295929582145, 28.906553027550114 ], [ -81.969378108951304, 28.906522889751791 ], [ -81.969461038395693, 28.906497869909039 ], [ -81.969564214562524, 28.906466745155946 ], [ -81.969673688552305, 28.906433058320477 ], [ -81.969803230489774, 28.906397769830289 ], [ -81.969898110590037, 28.90636728899597 ], [ -81.970025831871766, 28.906319158374966 ], [ -81.970135307784986, 28.906274233942693 ], [ -81.97023931343935, 28.906227701212799 ], [ -81.970354265531611, 28.906169934506352 ], [ -81.97047469600227, 28.90610253687592 ], [ -81.970576879857987, 28.906046372351572 ], [ -81.970682714103177, 28.905975759145029 ], [ -81.970783076567656, 28.905905148270168 ], [ -81.970885264356937, 28.905826507262397 ], [ -81.971056796118575, 28.905688485594009 ], [ -81.971231975091257, 28.905556886144144 ], [ -81.971352406832594, 28.905476643506407 ], [ -81.971549476193701, 28.905346651703756 ], [ -81.971766611507107, 28.905231114149171 ], [ -81.971897986546907, 28.905158901073989 ], [ -81.972005636518006, 28.905109157358517 ], [ -81.972116937874802, 28.905059415219224 ], [ -81.972192961089547, 28.905027994052102 ], [ -81.97229939720539, 28.904984002902776 ], [ -81.972419818450092, 28.904937471873673 ], [ -81.972503748765078, 28.904908593031042 ], [ -81.972638764478063, 28.904862065704158 ], [ -81.972875951538882, 28.904793084531914 ], [ -81.973085767596856, 28.904741755420517 ], [ -81.97329923120941, 28.904696850171543 ], [ -81.973487151524722, 28.904664779233325 ], [ -81.973731624548378, 28.90463432523368 ], [ -81.973910416486206, 28.904618308312816 ], [ -81.974029833268901, 28.904610276718003 ], [ -81.974067129613701, 28.904609257133746 ], [ -81.97411278681362, 28.904609468086928 ], [ -81.97416619746754, 28.90461235312922 ], [ -81.974205965954582, 28.90461997168622 ], [ -81.974260693645704, 28.904637640201759 ], [ -81.974310707524623, 28.904659558518077 ], [ -81.974357103472627, 28.904686860137115 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969265905106496, 28.894625498074877 ], [ -81.96931914970024, 28.894589926280585 ], [ -81.969370372855948, 28.894559564783915 ], [ -81.96942349072809, 28.894536206447974 ], [ -81.969478377545585, 28.894522196318977 ], [ -81.9695832055598, 28.894509864058957 ], [ -81.969726610351898, 28.894491867678731 ], [ -81.969756576821197, 28.89448901505682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969741935902633, 28.894378925770919 ], [ -81.969731194567785, 28.894379697518499 ], [ -81.969644697816108, 28.894389693481784 ], [ -81.969510398740255, 28.89441169625325 ], [ -81.969414799429842, 28.894417683786937 ], [ -81.969347401128601, 28.894409990720895 ], [ -81.969303146815037, 28.89439284321352 ], [ -81.969231819984088, 28.894366529332473 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elizabeth Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966825545012881, 28.906546564768306 ], [ -81.966974910756974, 28.906346973615438 ], [ -81.967025338662424, 28.906261385911485 ], [ -81.967055051805474, 28.906192294325461 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buffalo Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020328198347855, 28.924182965146148 ], [ -82.020328142586209, 28.923890889360937 ], [ -82.020328131565691, 28.92383316409758 ], [ -82.020313539901181, 28.923781854492308 ], [ -82.020277075067611, 28.923717720154649 ], [ -82.020218734683127, 28.923627933129247 ], [ -82.02015277637264, 28.923533012221938 ], [ -82.020134790573508, 28.923484015672731 ], [ -82.020109316061507, 28.923294423591187 ], [ -82.02008740567679, 28.923089180662707 ], [ -82.020072805590175, 28.922986559272115 ], [ -82.020054542880942, 28.92294229619166 ], [ -82.020021757868207, 28.922903183708932 ], [ -82.019980249958124, 28.922878674329329 ], [ -82.019941151124485, 28.922864921760041 ], [ -82.019896188981406, 28.922856329349123 ], [ -82.01980431789508, 28.922859782069438 ], [ -82.019505239805241, 28.922878742038428 ], [ -82.018332382419345, 28.922906419358576 ], [ -82.018240507721899, 28.922913309661844 ], [ -82.018148638720717, 28.922935677883626 ], [ -82.017939489354248, 28.923002778117532 ], [ -82.017738157468273, 28.923068156350606 ], [ -82.017507506166268, 28.923135255949553 ], [ -82.017384481175256, 28.923161557068397 ], [ -82.017258759518526, 28.923185769594816 ], [ -82.017175205977139, 28.923210968426563 ], [ -82.017110703317314, 28.923240212563297 ], [ -82.017048156761703, 28.923278055307943 ], [ -82.01699632725601, 28.923320494813865 ], [ -82.016915248576495, 28.923386418300343 ], [ -82.016858563525361, 28.923413940687379 ], [ -82.016813606695251, 28.923425985457733 ], [ -82.016776465759136, 28.923424270163533 ], [ -82.016637006372065, 28.923398886371942 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morven Park Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015495040238378, 28.916744650190612 ], [ -82.015523756933064, 28.916744646100824 ], [ -82.015664787324269, 28.916747841631611 ], [ -82.015837208233236, 28.916745950820605 ], [ -82.015954282217947, 28.916747808853007 ], [ -82.016038343503041, 28.916749058824553 ], [ -82.016076634688332, 28.916750428616261 ], [ -82.01613817458626, 28.91675248506461 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morven Park Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01613817458626, 28.91675248506461 ], [ -82.0162054620872, 28.91675152624417 ], [ -82.016282092986927, 28.916749643250274 ], [ -82.016362981116458, 28.916749633783446 ], [ -82.016465155163232, 28.916744004057048 ], [ -82.016565199343532, 28.916732755905095 ], [ -82.016660960272816, 28.916717357626425 ], [ -82.016758832606257, 28.916694656739011 ], [ -82.016844040263905, 28.916669044698704 ], [ -82.016948339762678, 28.916635319538159 ], [ -82.017071794185625, 28.916603467824554 ], [ -82.017201637107476, 28.91657535793507 ], [ -82.017314451977541, 28.916558489046881 ], [ -82.01742300934859, 28.91655098192512 ], [ -82.017499641104791, 28.916549100945463 ], [ -82.017576272241627, 28.91654347178201 ], [ -82.01767418929704, 28.91654533254323 ], [ -82.017767851066395, 28.916550938308099 ], [ -82.017852995180675, 28.916558420074143 ], [ -82.01794452924797, 28.916571516855974 ], [ -82.018065865549289, 28.916593975544327 ], [ -82.018146755715279, 28.916612694879625 ], [ -82.018242550073893, 28.916638902174586 ], [ -82.018346859331544, 28.916670726878042 ], [ -82.018438394798721, 28.916696935497988 ], [ -82.018546959166187, 28.916717522279033 ], [ -82.018629978543913, 28.916730621535773 ], [ -82.018721510519555, 28.916736227824877 ], [ -82.018842843540071, 28.916738083674048 ], [ -82.018950807814633, 28.916739753562389 ], [ -82.019037351326077, 28.916737679066909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ansel Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012476955575238, 28.916503698565247 ], [ -82.012562780272845, 28.916203495911596 ], [ -82.012590987400657, 28.916117913252357 ], [ -82.012612568079007, 28.916027677132387 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ansel Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012612568079007, 28.916027677132387 ], [ -82.012650331485602, 28.915842456575078 ], [ -82.012684032408117, 28.915637285682404 ], [ -82.012688064018562, 28.915422156092067 ], [ -82.0126907369836, 28.915182323532303 ], [ -82.012690705774048, 28.914925871800104 ], [ -82.012692515830025, 28.914682276721958 ], [ -82.012689768757696, 28.914579831974301 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Luray Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011272960276457, 28.915339479486239 ], [ -82.011505967009214, 28.915308278277543 ], [ -82.011743462551976, 28.915289262715316 ], [ -82.012028594136197, 28.915272322482078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charleston Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011930913429808, 28.913832872888189 ], [ -82.011950653523115, 28.913910221542064 ], [ -82.011979385555421, 28.914037072155015 ], [ -82.011997029805102, 28.914199314498244 ], [ -82.011999747877127, 28.914360784834606 ], [ -82.011997059866985, 28.914470015335883 ], [ -82.01199437736561, 28.91454578415048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilson Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013419083266783, 28.914663883685279 ], [ -82.013412523621668, 28.914766611722587 ], [ -82.013414587120408, 28.914875069423427 ], [ -82.013411315798464, 28.915278662633412 ], [ -82.013411323251617, 28.915338478599921 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Utica Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016247601260773, 28.914004172767871 ], [ -82.016312389624076, 28.914115769423066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ladson Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0105511246622, 28.912615664211817 ], [ -82.010556299135686, 28.910979985424461 ], [ -82.010548283529218, 28.910910887172733 ], [ -82.010510183599223, 28.910839040939909 ], [ -82.010464075906683, 28.910788852229196 ], [ -82.010423440624066, 28.91076513470729 ], [ -82.010369129861331, 28.910753106530692 ], [ -82.010214411702719, 28.910750711267198 ], [ -82.009902435769831, 28.910750732335721 ], [ -82.009821953520543, 28.910753831864696 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Riley Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009832120942349, 28.909526792108746 ], [ -82.010742321577879, 28.909527683818158 ], [ -82.011736457767512, 28.909521250227566 ], [ -82.011907387296986, 28.909521235955477 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974849818280347, 28.953403959854274 ], [ -81.974838558851346, 28.954536464752284 ], [ -81.974816566746895, 28.954645122694931 ], [ -81.974786346225613, 28.954727216514659 ], [ -81.974756128029284, 28.95479965309924 ], [ -81.97470394305995, 28.954876913680994 ], [ -81.974665493595225, 28.954930031522625 ], [ -81.974605073322763, 28.955000046905052 ], [ -81.974544659635725, 28.955055574164057 ], [ -81.974506211566649, 28.955094202959994 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974506211566649, 28.955094202959994 ], [ -81.974313985580366, 28.955248707940591 ], [ -81.973948757552307, 28.955528745526731 ], [ -81.973495651064212, 28.955881205181328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109E", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971662122798492, 28.954057712683671 ], [ -81.971209016686757, 28.954407751084517 ], [ -81.970733938240542, 28.954774686663654 ], [ -81.970566425029304, 28.954905043670117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 207", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04889889541866, 28.926080631937314 ], [ -82.048864261662473, 28.926050186507705 ], [ -82.0488369238399, 28.926038975377654 ], [ -82.048773149216984, 28.926032585627727 ], [ -82.048119002554472, 28.926026407550399 ], [ -82.048084386327616, 28.926036038240159 ], [ -82.048062524923623, 28.926044060139983 ], [ -82.048042485739217, 28.926053685673612 ], [ -82.048020627985665, 28.926069723552537 ], [ -82.048006056779357, 28.926082553006022 ], [ -82.0479933088168, 28.9260969833887 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974632078640184, 28.905773633415414 ], [ -81.974621003307945, 28.905473251711886 ], [ -81.974609654292692, 28.905260040080435 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974697719060003, 28.908263247749602 ], [ -81.974641544656095, 28.908032822708176 ], [ -81.974632078640184, 28.905773633415414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975013260585939, 28.909109851015913 ], [ -81.974836851468638, 28.908643423816041 ], [ -81.974697719060003, 28.908263247749602 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Sumter Lndg", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971515437740365, 28.908620813444962 ], [ -81.971278046835593, 28.908709843896077 ], [ -81.970798980380707, 28.908892004450415 ], [ -81.970488236094056, 28.90900869998697 ], [ -81.970368472103075, 28.909046834423791 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Old Mill Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974697719060003, 28.908263247749602 ], [ -81.974927778414255, 28.908198754197414 ], [ -81.975101111734801, 28.908148620605949 ], [ -81.975164970374863, 28.908134586402909 ], [ -81.975233391184815, 28.90812055211185 ], [ -81.975310932309881, 28.908110531988292 ], [ -81.975552673074816, 28.90809653031025 ], [ -81.975662136972844, 28.908104578014566 ], [ -81.975748795083263, 28.908112618790501 ], [ -81.975862818291603, 28.908128693098345 ], [ -81.976004205322084, 28.908162832616735 ], [ -81.976284686646707, 28.908267228885062 ], [ -81.976578855470464, 28.9083656086388 ], [ -81.976777248994125, 28.908433870493234 ], [ -81.976886705998439, 28.908470009343841 ], [ -81.976982481467502, 28.908502134134608 ], [ -81.977062295684874, 28.908526225668865 ], [ -81.977144391420822, 28.908546307733978 ], [ -81.977272096196998, 28.908574421644619 ], [ -81.977376994987196, 28.908598520863052 ], [ -81.977525227557678, 28.908620618776261 ], [ -81.977684423976356, 28.908644026688808 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fish Camp Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971679071379981, 28.909572327478607 ], [ -81.971861546391011, 28.909507048618799 ], [ -81.972077985566429, 28.909436757116225 ], [ -81.972183142335524, 28.90941562643977 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 92nd Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039452513647532, 28.890526029571692 ], [ -82.039406109397987, 28.890559788047081 ], [ -82.039335480096895, 28.890568689697961 ], [ -82.039216479206814, 28.890573349932193 ], [ -82.039121470145915, 28.890571364988016 ], [ -82.038773032856142, 28.890577995858575 ], [ -82.038302204737718, 28.890574310737083 ], [ -82.037642284208289, 28.890583372324656 ], [ -82.037422314547612, 28.890601193460331 ], [ -82.037264894836127, 28.890579924950735 ], [ -82.037077209422037, 28.890576422612522 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 205C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039384584415345, 28.890203689905849 ], [ -82.039387866656753, 28.890344887148622 ], [ -82.039385872422528, 28.890410603117409 ], [ -82.039395981326237, 28.890456777203624 ], [ -82.039422231413255, 28.89049584373733 ], [ -82.039452513647532, 28.890526029571692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 125", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011255465188114, 28.893748033374344 ], [ -82.01114701489081, 28.89383288515171 ], [ -82.01105864544958, 28.893892990615495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hickory Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956460928854085, 28.940745577872502 ], [ -81.956301218750937, 28.94080420204487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 5th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096112936098464, 28.631955714600547 ], [ -82.096128821010154, 28.62932148185067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 2nd Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100126998394899, 28.686741299862973 ], [ -82.100112876621949, 28.683136264612422 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 542 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100112876621949, 28.683136264612422 ], [ -82.0990833068239, 28.68312605485103 ], [ -82.097680860074618, 28.683117930742117 ], [ -82.096901940160279, 28.683098391520819 ], [ -82.095920018376589, 28.683091777428604 ], [ -82.09435183954767, 28.683072775381763 ], [ -82.094277263806546, 28.683072826857941 ], [ -82.094167472253631, 28.683072901664868 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 6th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093943362425463, 28.684967413374427 ], [ -82.094009439585406, 28.684728062654397 ], [ -82.094023670478819, 28.68442480843602 ], [ -82.094025535474515, 28.684192808031025 ], [ -82.094031489365804, 28.683902348215689 ], [ -82.094029121531833, 28.683569877988273 ], [ -82.094045448750023, 28.68329402425309 ], [ -82.094078521393698, 28.683215450888696 ], [ -82.094117812826141, 28.683138698647124 ], [ -82.094167472253631, 28.683072901664868 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 6th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.092049594131851, 28.693990159790395 ], [ -82.092579330712624, 28.694015021093904 ], [ -82.092914257490037, 28.694014792839592 ], [ -82.093158810599633, 28.694019314813787 ], [ -82.093764866738454, 28.694018899311811 ], [ -82.093869207721767, 28.694019542303685 ], [ -82.093940933428343, 28.693978668014591 ], [ -82.093973301103006, 28.693929655588416 ], [ -82.093998714579314, 28.693787190081739 ], [ -82.093993012176099, 28.693496787424607 ], [ -82.093989983729443, 28.693153580402544 ], [ -82.093995196498142, 28.692894370053825 ], [ -82.093986734655985, 28.692563168623892 ], [ -82.093986533287378, 28.692337562924397 ], [ -82.09397808968103, 28.692025561222582 ], [ -82.093977779096832, 28.691677553667013 ], [ -82.093996583835107, 28.691399133238914 ], [ -82.093982865455018, 28.691276741658488 ], [ -82.093960895366365, 28.691058350577773 ], [ -82.093966111380183, 28.690803942346545 ], [ -82.093963089454078, 28.690465534674637 ], [ -82.093935675576475, 28.69024714820954 ], [ -82.093868043733991, 28.68994261416249 ], [ -82.093867712589159, 28.689569953055809 ], [ -82.093838401480241, 28.689224714693633 ], [ -82.09384232506919, 28.688978099807233 ], [ -82.093862913091343, 28.688833769714321 ], [ -82.09387103142339, 28.688643781261025 ], [ -82.093864583719721, 28.688384384754293 ], [ -82.093854014335832, 28.68814691227567 ], [ -82.093849586167551, 28.687827230588546 ], [ -82.093855643697466, 28.687650031346408 ], [ -82.093855472161621, 28.687456393215619 ], [ -82.093846893234158, 28.6871294081791 ], [ -82.093840414769872, 28.686835303500658 ], [ -82.093846070226931, 28.686206891528656 ], [ -82.093866355932064, 28.685722783663753 ], [ -82.09388786150771, 28.685271181378408 ], [ -82.093907193479623, 28.685055984831607 ], [ -82.093943362425463, 28.684967413374427 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 44th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.079629194301901, 28.690291504176717 ], [ -82.079546679406633, 28.690345358097378 ], [ -82.079464144296992, 28.690373890796412 ], [ -82.079356476630039, 28.690392943704435 ], [ -82.079011880482341, 28.690370989069287 ], [ -82.07874984511237, 28.690358478591435 ], [ -82.078484222077776, 28.690345971468005 ], [ -82.07824734274466, 28.690374591836566 ], [ -82.073480470214676, 28.690322231296701 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 542G", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.083608737309063, 28.686668336448268 ], [ -82.083547707907186, 28.686652548665716 ], [ -82.083433552410781, 28.686664234940469 ], [ -82.083267770687286, 28.686681205018399 ], [ -82.083099023486795, 28.686682648490923 ], [ -82.082869363151829, 28.686684610509126 ], [ -82.082514035307582, 28.686694321406573 ], [ -82.082424299368185, 28.68668804565074 ], [ -82.082219678770215, 28.686647022504925 ], [ -82.082108401095212, 28.686634429635408 ], [ -82.081950475473676, 28.686637689693391 ], [ -82.081702849794127, 28.686682149426193 ], [ -82.081415710665695, 28.686682320580683 ], [ -82.081178797493948, 28.686653973864814 ], [ -82.080866572462838, 28.68666830186142 ], [ -82.08032816104469, 28.686676632561625 ], [ -82.079631835410922, 28.68666437889657 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 14th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.079629194301901, 28.690291504176717 ], [ -82.079663237972426, 28.690218688895104 ], [ -82.079677542320184, 28.690149049569154 ], [ -82.079670258456389, 28.690009792712441 ], [ -82.079637853144703, 28.689876880318138 ], [ -82.079619807273545, 28.68974712493393 ], [ -82.079608985033076, 28.68967433575456 ], [ -82.079644789535507, 28.68955404335156 ], [ -82.07966979874098, 28.68940210889707 ], [ -82.079662414388196, 28.689129918106257 ], [ -82.079633478407061, 28.688838754819688 ], [ -82.079610085080432, 28.688503360576156 ], [ -82.079593616257711, 28.688335535835265 ], [ -82.079607807959704, 28.688117141108197 ], [ -82.079582597050148, 28.688003214018089 ], [ -82.079611237365057, 28.687905082480246 ], [ -82.079631835410922, 28.68666437889657 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 11th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08574566436269, 28.682996527424468 ], [ -82.08573982508365, 28.682877524471508 ], [ -82.08577398781506, 28.682517955767619 ], [ -82.085753532868566, 28.682079928423139 ], [ -82.085747535206394, 28.681767543384961 ], [ -82.085754125735448, 28.681045911706821 ], [ -82.085735931677874, 28.680738914867504 ], [ -82.085749942211692, 28.680314791475357 ], [ -82.085742614971949, 28.68013122399854 ], [ -82.085731716369239, 28.679969814596873 ], [ -82.085731538129096, 28.679748260797634 ], [ -82.085774413226972, 28.67951402209431 ], [ -82.085831308967244, 28.678865153300585 ], [ -82.085836541929226, 28.678678413430664 ], [ -82.085804159694973, 28.678580318739552 ], [ -82.085774009536252, 28.678313070678815 ], [ -82.08577323311782, 28.678064437329457 ], [ -82.085751537780141, 28.677865054613079 ], [ -82.085733379334826, 28.677602366598556 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 542 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093287373440901, 28.683057025170005 ], [ -82.092155718831819, 28.683055534447625 ], [ -82.090459754662206, 28.68304823423891 ], [ -82.088837125805014, 28.683054920756781 ], [ -82.087772359720859, 28.683041553739773 ], [ -82.086707584626225, 28.683016931701456 ], [ -82.086162442201967, 28.68300040808354 ], [ -82.08574566436269, 28.682996527424468 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 542 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.094167472253631, 28.683072901664868 ], [ -82.093287373440901, 28.683057025170005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aalto Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959633620910481, 28.930056449591302 ], [ -81.959882171613643, 28.930232681039595 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104263238471233, 28.677699782301431 ], [ -82.104269007989046, 28.676804157125723 ], [ -82.104275875909082, 28.675762336129498 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104275875909082, 28.675762336129498 ], [ -82.104280707540212, 28.675140172963243 ], [ -82.104288525636363, 28.673957583608878 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Lawrence Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104665083722708, 28.66668042288202 ], [ -82.104616147301996, 28.666771743977765 ], [ -82.104561796930426, 28.666894295328788 ], [ -82.104488433663363, 28.667069709933315 ], [ -82.104431398974583, 28.667233101056386 ], [ -82.10439340894726, 28.667374858604198 ], [ -82.104363596332945, 28.667523814113416 ], [ -82.104358195954134, 28.667571862042927 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Dade Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106936596472238, 28.666697881560495 ], [ -82.106122226289528, 28.666688908024177 ], [ -82.104757677577481, 28.6666731458497 ], [ -82.104665083722708, 28.66668042288202 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grace Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106943042788231, 28.664999545243859 ], [ -82.106936596472238, 28.666697881560495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Lawrence Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106943042788231, 28.664999545243859 ], [ -82.106687103646323, 28.665074213209774 ], [ -82.106531913176923, 28.66512718132055 ], [ -82.106395786996089, 28.665177732388731 ], [ -82.106278723472002, 28.665228270288125 ], [ -82.106167110080975, 28.665281204054271 ], [ -82.106022830594739, 28.665350978071633 ], [ -82.105892170362353, 28.665423144286276 ], [ -82.105761525434986, 28.665509724229139 ], [ -82.105638890069656, 28.665594421898643 ], [ -82.105509957860903, 28.66568356380008 ], [ -82.105385953513547, 28.665791067859072 ], [ -82.105274383634836, 28.665889642656474 ], [ -82.105173709629852, 28.665990612783908 ], [ -82.105037680164443, 28.666142053151081 ], [ -82.104898944635636, 28.666310310430468 ], [ -82.104820072338157, 28.666423274492647 ], [ -82.10474393148877, 28.666543440637447 ], [ -82.104700422646289, 28.666613136805225 ], [ -82.104665083722708, 28.66668042288202 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107517623945313, 28.664907812161061 ], [ -82.107400474179911, 28.664871872405325 ], [ -82.106313784326034, 28.664884732036406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Lawrence Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107517623945313, 28.664907812161061 ], [ -82.107316101580111, 28.664929590611351 ], [ -82.107199006621329, 28.664946497575865 ], [ -82.107079194527742, 28.664970613503897 ], [ -82.106943042788231, 28.664999545243859 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107945745858643, 28.664885346420885 ], [ -82.107813582995561, 28.664887879934483 ], [ -82.107656642418704, 28.664895289215785 ], [ -82.107517623945313, 28.664907812161061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10950189564322, 28.664884316415826 ], [ -82.109471162632332, 28.664884132626334 ], [ -82.108857140012375, 28.664884623641708 ], [ -82.108607528125987, 28.664884822452901 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106313784326034, 28.664884732036406 ], [ -82.104389687108451, 28.664883164822591 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104350083271257, 28.664883131927244 ], [ -82.103011765996612, 28.664884147952275 ], [ -82.102277219996552, 28.664882246540412 ], [ -82.101272781592726, 28.664878087165167 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.101272781592726, 28.664878087165167 ], [ -82.100683540947557, 28.664875785969308 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100215478530259, 28.66487395913137 ], [ -82.0993362457057, 28.664869692582826 ], [ -82.09784211344396, 28.664865862030556 ], [ -82.09637301518768, 28.664857090453715 ], [ -82.094831576375483, 28.664848352249166 ], [ -82.093994083945404, 28.664846478200257 ], [ -82.09249158671993, 28.664825416650203 ], [ -82.090749815498754, 28.664814313026916 ], [ -82.089915101878702, 28.664807501410678 ], [ -82.087953518027234, 28.664789145845056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067174792926963, 28.664749378504219 ], [ -82.065419118313002, 28.664747771477778 ], [ -82.063607798325094, 28.664746170188167 ], [ -82.062834304318798, 28.664748978862281 ], [ -82.061404170965758, 28.664752080937557 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061404170965758, 28.664752080937557 ], [ -82.060480423997433, 28.664750036358054 ], [ -82.059125413988085, 28.664753080378045 ], [ -82.057350266571888, 28.66475383146901 ], [ -82.055761539023663, 28.664759393453714 ], [ -82.054821102546939, 28.664764680979701 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 553", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087916380234176, 28.668424313956045 ], [ -82.087912117284731, 28.667638363141691 ], [ -82.087929131852704, 28.666410104688676 ], [ -82.08794058496234, 28.665962176477287 ], [ -82.087953518027234, 28.664789145845056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 548", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.092040743187638, 28.668435305474432 ], [ -82.090510441276365, 28.668435349009936 ], [ -82.087916380234176, 28.668424313956045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 548", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096085447452296, 28.668462174335282 ], [ -82.095998031950543, 28.668462235772608 ], [ -82.095043171678498, 28.668456973061883 ], [ -82.09395046179425, 28.668448833377372 ], [ -82.093035946978475, 28.668440561904173 ], [ -82.092040743187638, 28.668435305474432 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104301503617805, 28.670316946143654 ], [ -82.104300874847524, 28.670197470603426 ], [ -82.104294889548356, 28.669654585993584 ], [ -82.104305044291721, 28.668907504700972 ], [ -82.104309687754665, 28.668512185656034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104288525636363, 28.673957583608878 ], [ -82.104292297387218, 28.672539583225912 ], [ -82.104291933670851, 28.67217205282741 ], [ -82.10429672232263, 28.671506650508498 ], [ -82.104300073250769, 28.671069531159876 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boitnott Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104301503617805, 28.670316946143654 ], [ -82.10293226975817, 28.670315220353825 ], [ -82.100143661954604, 28.670300714946276 ], [ -82.100052796016854, 28.670300781532944 ], [ -82.099983864647484, 28.670300832005257 ], [ -82.099924321135205, 28.670289822003614 ], [ -82.09988044402435, 28.670276037579736 ], [ -82.099845970493504, 28.670267772152087 ], [ -82.099811491735778, 28.670253981738188 ], [ -82.099773877591687, 28.670237427956774 ], [ -82.099751933598355, 28.670226391313395 ], [ -82.099720579797776, 28.670204307061724 ], [ -82.099682963072482, 28.67018499031494 ], [ -82.098820804235686, 28.669635708246609 ], [ -82.098780047350687, 28.669608104691953 ], [ -82.098745554978493, 28.669580495694699 ], [ -82.098723591546246, 28.669547352653261 ], [ -82.098707896225179, 28.669516966216833 ], [ -82.098698473644703, 28.669492102033505 ], [ -82.098689043306706, 28.669458948126174 ], [ -82.098679618149106, 28.669431321000967 ], [ -82.098676461089809, 28.669406454094606 ], [ -82.098673266249079, 28.669340135863521 ], [ -82.098678011252872, 28.669178225102986 ], [ -82.098682733313524, 28.668476038190775 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 56th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.095428942543691, 28.6746257434 ], [ -82.095384934140327, 28.674468263074129 ], [ -82.095381720628936, 28.674382600633976 ], [ -82.095362817171051, 28.674266553190368 ], [ -82.095325136272635, 28.674178151855678 ], [ -82.095202841567598, 28.674075992979212 ], [ -82.09502731175462, 28.674007029915447 ], [ -82.094886293840844, 28.673987786420408 ], [ -82.094732738867464, 28.673965784920128 ], [ -82.094632483497335, 28.673979671791901 ], [ -82.094494628312276, 28.673993583691342 ], [ -82.094394377833638, 28.674012996264388 ], [ -82.094278459369548, 28.674029655730195 ], [ -82.094165648468092, 28.674021444686652 ], [ -82.094046562541322, 28.673999419555674 ], [ -82.093911802179349, 28.673971879210573 ], [ -82.093172333793959, 28.673977911206567 ], [ -82.09200358398941, 28.673970413175162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 547", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09200358398941, 28.673970413175162 ], [ -82.092000405262922, 28.673917911322498 ], [ -82.091997225516536, 28.67386540947005 ], [ -82.091994053010822, 28.673821198238819 ], [ -82.091990693378051, 28.673561445274725 ], [ -82.09198688509008, 28.673350308450466 ], [ -82.091986686363839, 28.673121468141549 ], [ -82.091986422548729, 28.672819227660312 ], [ -82.091995950156871, 28.672516977869353 ], [ -82.091990868746635, 28.672305411456911 ], [ -82.091995618477014, 28.672137015921997 ], [ -82.091996371981267, 28.672023871974179 ], [ -82.092002351574337, 28.671951671443288 ], [ -82.091999718877332, 28.671225968841846 ], [ -82.0920054215145, 28.670495509772362 ], [ -82.092010618314433, 28.669437658536935 ], [ -82.092021324109751, 28.669081407703572 ], [ -82.092052894885057, 28.668795365941872 ], [ -82.092040743187638, 28.668435305474432 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.084769235041719, 28.664777332305633 ], [ -82.083056540777719, 28.664767665534381 ], [ -82.081236863978873, 28.664756487718158 ], [ -82.079767774914032, 28.664752444691945 ], [ -82.07849901271193, 28.66474826923854 ], [ -82.076801766901895, 28.664741868480483 ], [ -82.075383378848215, 28.664733250420436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087953518027234, 28.664789145845056 ], [ -82.08625905501691, 28.664785316170303 ], [ -82.084769235041719, 28.664777332305633 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 555", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.084769235041719, 28.664777332305633 ], [ -82.084765116743966, 28.664528632845602 ], [ -82.084815340128387, 28.663671958885494 ], [ -82.084795343216712, 28.663153842370185 ], [ -82.084766781667355, 28.661727273332311 ], [ -82.08476640223553, 28.661254048247109 ], [ -82.084707561526585, 28.661136640529158 ], [ -82.084605688031402, 28.661071074110552 ], [ -82.083837876, 28.66077793896384 ], [ -82.083262064973766, 28.660560266775313 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000939334702252, 28.654545752420162 ], [ -82.00415371115426, 28.654537078969199 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 57th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000910005153372, 28.671692135112796 ], [ -81.999261737043014, 28.671680039508207 ], [ -81.996850731284823, 28.671682504485521 ], [ -81.996153557051045, 28.671686122511097 ], [ -81.994057983604094, 28.671694577218869 ], [ -81.992705863010045, 28.671681724422761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 57th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004974171257928, 28.671707023681716 ], [ -82.002965086397353, 28.671695885252856 ], [ -82.000910005153372, 28.671692135112796 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 469", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988630749520553, 28.649880323194164 ], [ -81.987534923240176, 28.64987812025484 ], [ -81.98679892749891, 28.649873016667058 ], [ -81.986256914832637, 28.649870445016749 ], [ -81.984501165188476, 28.649854802957595 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 469", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967866254231296, 28.621946971170836 ], [ -81.967027030339182, 28.620107863206094 ], [ -81.96651852669325, 28.618989711025115 ], [ -81.966127592544908, 28.618142941810266 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Dade Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113318821113253, 28.666730046462135 ], [ -82.114838651765211, 28.666728848988352 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Vermont Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113314955020087, 28.66761619264626 ], [ -82.114835590319686, 28.667619688450785 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Wall Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113318821113253, 28.666730046462135 ], [ -82.113314955020087, 28.66761619264626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Wall Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113331661154305, 28.664901432199393 ], [ -82.113318821113253, 28.666730046462135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Highland Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11668941043564, 28.664904432124771 ], [ -82.116699016440265, 28.666730934897473 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0697887700655, 28.734119428698165 ], [ -82.069902996780186, 28.733927265625539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 526", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033596162235156, 28.741275067074238 ], [ -82.03325129249518, 28.741261079223698 ], [ -82.032778284442031, 28.74125767976323 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Belt Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106271577323014, 28.668515127618054 ], [ -82.105530822128429, 28.668508875121645 ], [ -82.104309687754665, 28.668512185656034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 59th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106257564956621, 28.669856740858293 ], [ -82.1073397267415, 28.669852022399695 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 551", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106222194874405, 28.673966755720045 ], [ -82.106234314992719, 28.672923278864086 ], [ -82.106238348138589, 28.67256899853329 ], [ -82.106239699669942, 28.671732673716939 ], [ -82.106241354857787, 28.67119250030845 ], [ -82.106251933561026, 28.670803416350228 ], [ -82.106255794836883, 28.670278774801385 ], [ -82.106257564956621, 28.669856740858293 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 551", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106213034358959, 28.675765244373551 ], [ -82.106226035714101, 28.67559874325076 ], [ -82.106220925196737, 28.674884388404195 ], [ -82.106222194874405, 28.673966755720045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 551", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105269089866695, 28.675752423391813 ], [ -82.106213034358959, 28.675765244373551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 55th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106213034358959, 28.675765244373551 ], [ -82.106704786007398, 28.675795835213723 ], [ -82.107247038833393, 28.675836791188804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 551", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104275875909082, 28.675762336129498 ], [ -82.105269089866695, 28.675752423391813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 551A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105269089866695, 28.675752423391813 ], [ -82.105279460829806, 28.675008049537315 ], [ -82.105287410751103, 28.674177527339008 ], [ -82.105289392641836, 28.673964574599019 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 544", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104288525636363, 28.673957583608878 ], [ -82.105289392641836, 28.673964574599019 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 544", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105289392641836, 28.673964574599019 ], [ -82.106222194874405, 28.673966755720045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 551", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106257564956621, 28.669856740858293 ], [ -82.106259471773981, 28.669434319681883 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 551", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106259471773981, 28.669434319681883 ], [ -82.106271577323014, 28.668515127618054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 551A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105289392641836, 28.673964574599019 ], [ -82.105291079599922, 28.673455422616517 ], [ -82.105294351427915, 28.673044606413026 ], [ -82.105293281092614, 28.672583669892269 ], [ -82.105294814990032, 28.672360648324332 ], [ -82.105298147908343, 28.672180991441042 ], [ -82.105304588300726, 28.671597109021835 ], [ -82.105309119749478, 28.670859901926153 ], [ -82.105308890192674, 28.670629138748215 ], [ -82.105312059527705, 28.670286863615654 ], [ -82.105316875649805, 28.669834625362878 ], [ -82.105321729404821, 28.66942110613579 ], [ -82.106259471773981, 28.669434319681883 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 2nd Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108423026723443, 28.670186047084801 ], [ -82.108431091956902, 28.670087614271203 ], [ -82.10842770015968, 28.669437034438484 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 2nd Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10842770015968, 28.669437034438484 ], [ -82.108438444805387, 28.669297786990487 ], [ -82.108435454557721, 28.669038516774901 ], [ -82.108436827964098, 28.66852974453807 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Belt Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11169838929365, 28.668550650862656 ], [ -82.110517065738975, 28.668543372453151 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Market Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111892603536063, 28.666729510624222 ], [ -82.11169838929365, 28.668550650862656 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Florida Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110517480872474, 28.667659105174433 ], [ -82.110514910907881, 28.668064092161362 ], [ -82.110517065738975, 28.668543372453151 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Vermont Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110517480872474, 28.667659105174433 ], [ -82.109582161873391, 28.667641649303505 ], [ -82.108465151929963, 28.667622509646709 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Pine Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108465151929963, 28.667622509646709 ], [ -82.10845569497782, 28.6685297945176 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Dade Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110523744616216, 28.666713992358304 ], [ -82.109199223221736, 28.66670232918786 ], [ -82.108453878021052, 28.666699281565649 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Pine Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108453878021052, 28.666699281565649 ], [ -82.108474911681341, 28.667076208036573 ], [ -82.108465151929963, 28.667622509646709 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Dade Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108453878021052, 28.666699281565649 ], [ -82.107950097391068, 28.666696037238804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Dade Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107950097391068, 28.666696037238804 ], [ -82.106936596472238, 28.666697881560495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rutland Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107945745858643, 28.664885346420885 ], [ -82.107951399169892, 28.665618510939971 ], [ -82.107950097391068, 28.666696037238804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 47th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104244159299938, 28.686838589066575 ], [ -82.103335475964073, 28.686805799883693 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104248270223039, 28.690444767183347 ], [ -82.104244923921598, 28.68980170553484 ], [ -82.104246510614473, 28.688666181809786 ], [ -82.104245484995701, 28.687631063956431 ], [ -82.104244159299938, 28.686838589066575 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104251493219863, 28.691068657068492 ], [ -82.104248270223039, 28.690444767183347 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 538", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105597909595758, 28.691038551660643 ], [ -82.105658608941212, 28.691010248232601 ], [ -82.105735473005339, 28.690989516334721 ], [ -82.105809523677507, 28.690969540019584 ], [ -82.105880645113118, 28.690951125161956 ], [ -82.105965659092234, 28.690944939581438 ], [ -82.106019460470222, 28.690958666444001 ], [ -82.106047250760142, 28.690986183950677 ], [ -82.106062892760647, 28.69101218234692 ], [ -82.106062929744738, 28.691048901716762 ], [ -82.106045610742626, 28.691081043520963 ], [ -82.106010936766651, 28.69110861045916 ], [ -82.105960626425912, 28.691117828928029 ], [ -82.105897295123953, 28.691117638966556 ], [ -82.105597909595758, 28.691038551660643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 538", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104251493219863, 28.691068657068492 ], [ -82.10496286030795, 28.691040572776245 ], [ -82.105597909595758, 28.691038551660643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104251416708991, 28.692745428882123 ], [ -82.104251227434503, 28.692554256115507 ], [ -82.104250581662797, 28.691900960189088 ], [ -82.104251868153739, 28.69133884041641 ], [ -82.104251493219863, 28.691068657068492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 536", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104252819519132, 28.694162249856365 ], [ -82.103444248201285, 28.694178165847788 ], [ -82.101812918599819, 28.694167101703005 ], [ -82.101513002224323, 28.694167374677029 ], [ -82.100222061607056, 28.69418821848803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104251483746594, 28.697851478559702 ], [ -82.104251278304019, 28.697096296357088 ], [ -82.104251029743452, 28.696845287629522 ], [ -82.104250192782146, 28.695999025619866 ], [ -82.104252312637627, 28.695215077892406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104252032107226, 28.698404176981668 ], [ -82.104249670371431, 28.698209107974812 ], [ -82.104251483746594, 28.697851478559702 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 532", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104252032107226, 28.698404176981668 ], [ -82.105084941270476, 28.698401625234123 ], [ -82.105748673590384, 28.69840685131501 ], [ -82.10591569143898, 28.698408633816388 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 532", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10591569143898, 28.698408633816388 ], [ -82.106386370285932, 28.698406354729791 ], [ -82.106945984397115, 28.698407831103875 ], [ -82.107514272846061, 28.698407384489833 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 532B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105013972048582, 28.699557522069643 ], [ -82.105493878807323, 28.699557151012016 ], [ -82.105748744135624, 28.699556953740746 ], [ -82.105916846689581, 28.699556824265358 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062459920649786, 28.74885514839918 ], [ -82.062859226169209, 28.747820223290784 ], [ -82.06327900012711, 28.746731065942065 ], [ -82.063642461429453, 28.745793301511519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063642461429453, 28.745793301511519 ], [ -82.06392145093406, 28.745076985548486 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06392145093406, 28.745076985548486 ], [ -82.064220911259667, 28.744301917228228 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064496873744176, 28.743575817456165 ], [ -82.064607376041167, 28.74328506763614 ], [ -82.06468928186267, 28.743081695029925 ], [ -82.064748153408004, 28.742934813259083 ], [ -82.06480445807037, 28.742787934477686 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065045077455579, 28.742225264466335 ], [ -82.065161310272998, 28.741984205062931 ], [ -82.065266546439801, 28.741759011825227 ], [ -82.065359046168879, 28.74159011059292 ], [ -82.065432405039587, 28.741454990586465 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06480445807037, 28.742787934477686 ], [ -82.064922200069574, 28.742498693238691 ], [ -82.065045077455579, 28.742225264466335 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071199713669074, 28.731784961441008 ], [ -82.071277890291711, 28.731668192464785 ], [ -82.071403276458511, 28.731508028604303 ], [ -82.071489066044066, 28.73139736968275 ], [ -82.071588059444466, 28.731277971105612 ], [ -82.071650755082345, 28.731202254938413 ], [ -82.071723010079594, 28.731117631400238 ], [ -82.0717921622944, 28.731040781171025 ], [ -82.071897177223406, 28.730925502828029 ], [ -82.072010455517827, 28.730809095759579 ], [ -82.072122659636022, 28.730692600732482 ], [ -82.072241470431891, 28.730579013024052 ], [ -82.072358236482401, 28.73047114702857 ], [ -82.0724735052016, 28.73036264017054 ], [ -82.072571509788773, 28.730279014944948 ], [ -82.072696930571297, 28.730174156927063 ], [ -82.072795945635079, 28.730089689131312 ], [ -82.072908171314239, 28.730008124224533 ], [ -82.07301709135713, 28.729920739187861 ], [ -82.073132620147732, 28.729839172331307 ], [ -82.073273202856328, 28.729735855866487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 1st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053361193404555, 28.608695526061044 ], [ -82.052428229443976, 28.608691756848224 ], [ -82.051988639222003, 28.608691924251481 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 2nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051988639222003, 28.608691924251481 ], [ -82.051986217492043, 28.608520659932388 ], [ -82.051988472807722, 28.607513925213098 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 3rd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050604389637499, 28.608682120976102 ], [ -82.050614145304053, 28.607509624369577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 1st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050604389637499, 28.608682120976102 ], [ -82.049992839200101, 28.608682080512271 ], [ -82.049833093178009, 28.608684527713109 ], [ -82.049670641863969, 28.608694143897058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 4th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049670641863969, 28.608694143897058 ], [ -82.049667872469428, 28.60856273065022 ], [ -82.049663811967179, 28.608384138962073 ], [ -82.049663698331202, 28.608142331439296 ], [ -82.04966810403144, 28.607795736109342 ], [ -82.049663315766011, 28.607328243883487 ], [ -82.049663937563011, 28.607049970643249 ], [ -82.049663837963578, 28.60683802063884 ], [ -82.0496637808412, 28.606716461751255 ], [ -82.049664614130393, 28.606513999519731 ], [ -82.049667156407239, 28.606379835786573 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 1st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049670641863969, 28.608694143897058 ], [ -82.049527142819699, 28.608701363684926 ], [ -82.049416137663229, 28.60871574078606 ], [ -82.049288890026602, 28.608737289992185 ], [ -82.049142695398345, 28.608768404326838 ], [ -82.048880087735668, 28.608828231675719 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 5th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048880087735668, 28.608828231675719 ], [ -82.048886915014961, 28.608671096490713 ], [ -82.04888683832246, 28.608507520130157 ], [ -82.048885278715503, 28.608345577528379 ], [ -82.048885210189113, 28.608197436604172 ], [ -82.048884392066753, 28.608106565729138 ], [ -82.048884321939084, 28.607954958907946 ], [ -82.048884241662449, 28.60778140985677 ], [ -82.048884153082312, 28.607589907823701 ], [ -82.048879551381233, 28.607414365288335 ], [ -82.048883962906885, 28.607180970458472 ], [ -82.048883855875602, 28.606949571395369 ], [ -82.048881525926461, 28.606799963132399 ], [ -82.048881474359618, 28.606686259122473 ], [ -82.048881417056734, 28.606564573903587 ], [ -82.048879548425575, 28.606417519997045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 4th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059836818431435, 28.617375405015498 ], [ -82.05985078526416, 28.617922483042147 ], [ -82.059872844340475, 28.618291211864367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 6th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05888632628735, 28.617361354330551 ], [ -82.059836818431435, 28.617375405015498 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 726", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056750673250434, 28.622823451222356 ], [ -82.056215527228844, 28.622824889897931 ], [ -82.055628506031667, 28.622832347085335 ], [ -82.054736720264472, 28.622832704504365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 726", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058837462220382, 28.622800883325631 ], [ -82.056936410073419, 28.622823374505042 ], [ -82.056750673250434, 28.622823451222356 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 3rd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058876233798586, 28.620079608136603 ], [ -82.058890180571339, 28.620600777184723 ], [ -82.058852746038113, 28.620817397972338 ], [ -82.058855561404542, 28.620971639951989 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 3rd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0588894052445, 28.619211980479577 ], [ -82.058889491924987, 28.619365621802721 ], [ -82.058876233798586, 28.620079608136603 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 8th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0588894052445, 28.619211980479577 ], [ -82.059430885633262, 28.619199998221177 ], [ -82.059742250839363, 28.619190222725219 ], [ -82.059870611537093, 28.619170886614448 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 3rd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058878654399649, 28.618296461345974 ], [ -82.058882233961896, 28.618594404259095 ], [ -82.0588894052445, 28.619211980479577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 3rd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05888632628735, 28.617361354330551 ], [ -82.058891902063323, 28.617564097776068 ], [ -82.058878465141632, 28.617958751757936 ], [ -82.058878654399649, 28.618296461345974 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06370482956973, 28.613699825514658 ], [ -82.062624637310023, 28.613700324682565 ], [ -82.061376454737754, 28.613697680717355 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 4th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057558295714571, 28.613693500512909 ], [ -82.058876090410635, 28.613695955851558 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 476B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.209237523762596, 28.601663677582469 ], [ -82.209140470385876, 28.601640651901786 ], [ -82.209039357397387, 28.601617871503517 ], [ -82.20892090241864, 28.60159648829141 ], [ -82.208798479485267, 28.601589137021762 ], [ -82.20868460201055, 28.601584288267524 ], [ -82.208582278198364, 28.601590319272038 ], [ -82.208450455263971, 28.601598697227477 ], [ -82.208341015477316, 28.60161265426321 ], [ -82.208237638319929, 28.6016258611191 ], [ -82.208014304666449, 28.601654216490761 ], [ -82.207845446920359, 28.601674768844127 ], [ -82.207712490636567, 28.601690272683634 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 476B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210374326729507, 28.603248509763475 ], [ -82.210385905662221, 28.60315223124914 ], [ -82.21038232136911, 28.603031246658393 ], [ -82.210372042299369, 28.602907321760355 ], [ -82.210345069598702, 28.602795226146153 ], [ -82.210314733867449, 28.602674282870289 ], [ -82.210277731020497, 28.60256220273045 ], [ -82.210213939549377, 28.60243245914236 ], [ -82.210143501454468, 28.602323381224497 ], [ -82.210073065552152, 28.60221430416674 ], [ -82.209975891186261, 28.602111169603543 ], [ -82.209892144399333, 28.602034573722879 ], [ -82.209825151948408, 28.601975657672302 ], [ -82.209778268888044, 28.60194031760696 ], [ -82.209691207229227, 28.601878480854651 ], [ -82.209584083235256, 28.601816676731069 ], [ -82.209503738855091, 28.601769583666162 ], [ -82.20940669510864, 28.601731370890345 ], [ -82.209306294303133, 28.601687261003843 ], [ -82.209237523762596, 28.601663677582469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 106th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210639884825525, 28.603312052481062 ], [ -82.210686916210406, 28.603319793068483 ], [ -82.210755393799914, 28.6033178003015 ], [ -82.210811016250872, 28.603308270314709 ], [ -82.210860198800646, 28.60328930820307 ], [ -82.210913640781598, 28.603259007902697 ], [ -82.210956358022045, 28.60321739082006 ], [ -82.21099450891235, 28.603166043659826 ], [ -82.211022499432204, 28.603117191863301 ], [ -82.211039507362571, 28.603060506734149 ], [ -82.211086349822253, 28.602941449894836 ], [ -82.211148075099132, 28.602773267375188 ], [ -82.211209785082218, 28.602597529562633 ], [ -82.211256661125745, 28.602495470869322 ], [ -82.211295033751881, 28.602421755192726 ], [ -82.211339820788154, 28.60234425235727 ], [ -82.211393168424721, 28.60226862481187 ], [ -82.211458127499014, 28.602185600785852 ], [ -82.211523446192601, 28.602121898859448 ], [ -82.211600436601245, 28.602051301134491 ], [ -82.211705854607672, 28.60197584789632 ], [ -82.211766991454553, 28.601928091272221 ], [ -82.211852471635368, 28.601867522331506 ], [ -82.211970044855704, 28.601803125285155 ], [ -82.212087633817774, 28.60174817289623 ], [ -82.212203122641938, 28.601712108734681 ], [ -82.212331454021026, 28.601677913946673 ], [ -82.212453417807964, 28.601668280719196 ], [ -82.212556140483599, 28.601670008995523 ], [ -82.212656732830311, 28.601675517712927 ], [ -82.212770179235477, 28.601688561555463 ], [ -82.212849398461316, 28.601707322795519 ], [ -82.212920060588161, 28.601727986868895 ], [ -82.213003590279172, 28.601761851849044 ], [ -82.213115007277182, 28.601829667854879 ], [ -82.213494301049991, 28.602082149988558 ], [ -82.213550010367072, 28.602116057346301 ], [ -82.21359931401004, 28.602157530917463 ], [ -82.21361222468002, 28.602191504482018 ], [ -82.213612288551062, 28.602223611409993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 102nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210106176499679, 28.607698381304502 ], [ -82.210144914039304, 28.607658737736699 ], [ -82.21025877378213, 28.607554749714982 ], [ -82.210580810651734, 28.607248951200347 ], [ -82.21065644241807, 28.607178357053431 ], [ -82.210713784283982, 28.607134771994971 ], [ -82.210765067274011, 28.60709503032793 ], [ -82.210850577554126, 28.607047683967849 ], [ -82.210936091523877, 28.607002224337844 ], [ -82.21103872711366, 28.606956738115354 ], [ -82.211119998497693, 28.60693017179263 ], [ -82.211216254193587, 28.606905469867986 ], [ -82.211312533527291, 28.606892099405261 ], [ -82.211421663647243, 28.606884376507129 ], [ -82.211517989324634, 28.606893669862604 ], [ -82.21160360775346, 28.606901090294691 ], [ -82.211811271798737, 28.606936653380021 ], [ -82.212066020594065, 28.606974028701149 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 102nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210106176499679, 28.607698381304502 ], [ -82.209987090077831, 28.607611827745412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 102nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.212095697456689, 28.606832335183181 ], [ -82.211988654482482, 28.606813615953673 ], [ -82.211748893206675, 28.606779993462343 ], [ -82.211517694445789, 28.606746358146353 ], [ -82.211387136210831, 28.60674089513369 ], [ -82.211288689487873, 28.606741048851141 ], [ -82.211183853742028, 28.606756320261308 ], [ -82.211076906336302, 28.606784814123618 ], [ -82.210987088792038, 28.606818948945211 ], [ -82.21089940852255, 28.606851190899782 ], [ -82.210803196990213, 28.606898555665531 ], [ -82.210739073607968, 28.606938317223381 ], [ -82.210687786534834, 28.606974439607846 ], [ -82.210627491433073, 28.607018883739418 ], [ -82.210561714567405, 28.607074571338607 ], [ -82.210475424874332, 28.607148039616376 ], [ -82.210369460926486, 28.607254286810125 ], [ -82.210023399382933, 28.60757588664217 ], [ -82.209987090077831, 28.607611827745412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 476B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.208810372612263, 28.607725773832641 ], [ -82.208883228643359, 28.60750097438336 ], [ -82.209328891264889, 28.606275636033928 ], [ -82.209691304090811, 28.605230435441534 ], [ -82.210007248929998, 28.604362360553836 ], [ -82.210263823057389, 28.60363962513393 ], [ -82.210291492953289, 28.603564037681611 ], [ -82.210314898838547, 28.603496011191165 ], [ -82.210329784966873, 28.603448772407507 ], [ -82.210344659803383, 28.603395866950514 ], [ -82.210357379579463, 28.60333541134117 ], [ -82.210374326729507, 28.603248509763475 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 476B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.208748669597412, 28.607909065713379 ], [ -82.208810372612263, 28.607725773832641 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 102nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.208748669597412, 28.607909065713379 ], [ -82.208834203889964, 28.607940332312928 ], [ -82.208885602038265, 28.607957251718144 ], [ -82.208947705127102, 28.607977930961898 ], [ -82.209026937931085, 28.608000472473893 ], [ -82.209097599803201, 28.608019249914147 ], [ -82.209166108335111, 28.608032365745068 ], [ -82.209228191128915, 28.608041713325292 ], [ -82.209305248218115, 28.60804726066911 ], [ -82.2093801492165, 28.608045256907801 ], [ -82.209452906360127, 28.608041366906665 ], [ -82.209553466150439, 28.608027992008083 ], [ -82.20963475099957, 28.60800709233774 ], [ -82.209709609708071, 28.607984313922749 ], [ -82.209780174197562, 28.607953986803679 ], [ -82.20984430333435, 28.607916116091964 ], [ -82.209908428671383, 28.607876355859123 ], [ -82.209981080587553, 28.607819584194662 ], [ -82.210049440965335, 28.607757155133832 ], [ -82.210106176499679, 28.607698381304502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 102nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.209987090077831, 28.607611827745412 ], [ -82.209846013119588, 28.607698921501584 ], [ -82.20976690239479, 28.607736816200276 ], [ -82.209651422165777, 28.607780432644539 ], [ -82.209533770753751, 28.607808942675 ], [ -82.209480420247289, 28.607819176077804 ], [ -82.20940767924823, 28.607830618641135 ], [ -82.209341200741278, 28.607830013439582 ], [ -82.209238470067731, 28.607828282762128 ], [ -82.209172114674445, 28.607822719841117 ], [ -82.209077913496415, 28.607805866280458 ], [ -82.208983703187087, 28.607783346885103 ], [ -82.208908762314223, 28.607764575949922 ], [ -82.208810372612263, 28.607725773832641 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 476B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.207408599767007, 28.61100467668301 ], [ -82.207455579588625, 28.610951723582506 ], [ -82.207502555655694, 28.610896882779908 ], [ -82.207562347699024, 28.610828800462869 ], [ -82.207660510371298, 28.610683225455286 ], [ -82.207743734573413, 28.610558449504623 ], [ -82.207790646149419, 28.610471502605812 ], [ -82.20785887576919, 28.610341083684663 ], [ -82.207899368742915, 28.610254144740647 ], [ -82.207954721050143, 28.610104860395705 ], [ -82.208035619019867, 28.609887544908769 ], [ -82.208339950554631, 28.609018312796387 ], [ -82.208531505351544, 28.608481651587802 ], [ -82.208748669597412, 28.607909065713379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 100th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.205274419954264, 28.610802050813657 ], [ -82.205430673249865, 28.610811257211068 ], [ -82.205651110427965, 28.610809036739131 ], [ -82.205841586950612, 28.610808748899746 ], [ -82.206271758397492, 28.610804320672433 ], [ -82.206671984975941, 28.610809379507849 ], [ -82.206954516418406, 28.610822171394009 ], [ -82.207127932933844, 28.610852125176816 ], [ -82.207207145928564, 28.610865224798726 ], [ -82.207271397345721, 28.610887791023057 ], [ -82.207331384947352, 28.610919806677948 ], [ -82.20737211480234, 28.61095373933108 ], [ -82.207408599767007, 28.61100467668301 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 123rd Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16766414659341, 28.575881946335603 ], [ -82.168213072053504, 28.575895438069928 ], [ -82.168370387795861, 28.575912245897484 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 38th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16766414659341, 28.575881946335603 ], [ -82.167434974960017, 28.574758935232406 ], [ -82.167438911968503, 28.574650121257047 ], [ -82.167432237393569, 28.574327325828634 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 125th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.167432237393569, 28.574327325828634 ], [ -82.167756828804073, 28.574330967648116 ], [ -82.168456254073661, 28.574291349841896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 38th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.167432237393569, 28.574327325828634 ], [ -82.167426000047072, 28.57428018330608 ], [ -82.16742386983239, 28.574233034838688 ], [ -82.16741765647059, 28.574200399269976 ], [ -82.167394987375147, 28.574155089723941 ], [ -82.167378520167091, 28.574135161815761 ], [ -82.167363102381401, 28.574114356441694 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 125th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165391775855937, 28.574094277524367 ], [ -82.165528081658053, 28.574082370868055 ], [ -82.165608535215952, 28.574074934439707 ], [ -82.165717582681395, 28.574067758291029 ], [ -82.165866522564073, 28.574055837748361 ], [ -82.165967613967993, 28.574062757566939 ], [ -82.166132549982322, 28.574074298062872 ], [ -82.166273548602192, 28.57408586664047 ], [ -82.166493054844523, 28.574109043561485 ], [ -82.166679999467277, 28.574108814320397 ], [ -82.16682586529123, 28.57411226340038 ], [ -82.166994340743187, 28.574124751394141 ], [ -82.167123769924373, 28.574128219375989 ], [ -82.167226480301522, 28.574122652343124 ], [ -82.167363102381401, 28.574114356441694 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 681", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165254827613026, 28.575823256905043 ], [ -82.165277925258223, 28.575708756676086 ], [ -82.165301097742443, 28.575644154160894 ], [ -82.165337490489421, 28.575526703382639 ], [ -82.165367282205381, 28.575441548265015 ], [ -82.16543021108329, 28.575282972541256 ], [ -82.165486501128669, 28.575133210814684 ], [ -82.165516209966398, 28.574995220816817 ], [ -82.165545702897148, 28.574719280728203 ], [ -82.16555216495594, 28.574598929976215 ], [ -82.165532068022003, 28.574505030285515 ], [ -82.165475254064432, 28.574320183674278 ], [ -82.165391775855937, 28.574094277524367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 123rd Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165254827613026, 28.575823256905043 ], [ -82.165575403799124, 28.575831170564591 ], [ -82.165924671381219, 28.57584706679107 ], [ -82.166335595295195, 28.575877396623209 ], [ -82.166810189320813, 28.575896763278436 ], [ -82.167227237395906, 28.575901693671714 ], [ -82.16747579156926, 28.575886881688515 ], [ -82.16766414659341, 28.575881946335603 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 123rd Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.164513231839479, 28.575750773029462 ], [ -82.165055270369706, 28.575788276463459 ], [ -82.165254827613026, 28.575823256905043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 681", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165246962347211, 28.577770043176891 ], [ -82.165246801997597, 28.577666726836952 ], [ -82.165243595241691, 28.577147029527943 ], [ -82.165243063470299, 28.576806551542283 ], [ -82.165238891201895, 28.576263549602256 ], [ -82.165254827613026, 28.575823256905043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 122nd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165246962347211, 28.577770043176891 ], [ -82.168291459166056, 28.577829592502511 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165220946302043, 28.581551506774041 ], [ -82.166176525996164, 28.581580402727418 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 681", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165220946302043, 28.581551506774041 ], [ -82.165225075772241, 28.581470725824229 ], [ -82.16522497997039, 28.581408736775604 ], [ -82.165228960810097, 28.581232151530301 ], [ -82.165238251628068, 28.580368027586605 ], [ -82.165236896038351, 28.57950015907473 ], [ -82.165253386251223, 28.579158252024143 ], [ -82.165241495929962, 28.57835802315773 ], [ -82.165246962347211, 28.577770043176891 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 36th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165184123805048, 28.58522778535616 ], [ -82.165190336934501, 28.585116944895049 ], [ -82.165192295166221, 28.585007990068416 ], [ -82.165213040138141, 28.584664198563519 ], [ -82.165223235040159, 28.584378653409459 ], [ -82.165229199538217, 28.584110019661924 ], [ -82.165222034866716, 28.583610345214144 ], [ -82.165206679573188, 28.583317318065067 ], [ -82.165195760050295, 28.583138873145337 ], [ -82.165201880062014, 28.582969800065616 ], [ -82.165205061371779, 28.582646473217025 ], [ -82.165209566103911, 28.582440052302573 ], [ -82.165245045505785, 28.581992925442272 ], [ -82.165220946302043, 28.581551506774041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Florida Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110557307675819, 28.663090842949352 ], [ -82.110554607915844, 28.663388449961619 ], [ -82.110549883798555, 28.663787781320298 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Florida Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110579480984399, 28.661252048320424 ], [ -82.110565452771823, 28.662237877859791 ], [ -82.110557307675819, 28.663090842949352 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Florida Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110579480984399, 28.661252048320424 ], [ -82.110578339589608, 28.660324688606437 ], [ -82.110594500746615, 28.659308891459609 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Florida Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110603535908325, 28.657618648659401 ], [ -82.110603438361437, 28.657525646983437 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Florida Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11055391218845, 28.66416202431688 ], [ -82.110536758278343, 28.664890558427665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Market Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11226377023641, 28.663795679162135 ], [ -82.112255478038804, 28.663870285468125 ], [ -82.112243239886936, 28.663980422577925 ], [ -82.112226563327638, 28.664163251675514 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Market Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112379884715182, 28.663086489619573 ], [ -82.112355812105974, 28.663319433211043 ], [ -82.112313151663074, 28.663790595395266 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Market Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11275008137919, 28.661263558558524 ], [ -82.112623190442861, 28.661622069246523 ], [ -82.112538822147414, 28.662059194822589 ], [ -82.112450661599652, 28.662557544048084 ], [ -82.112387443586996, 28.662940231426784 ], [ -82.112379813227037, 28.663018465486346 ], [ -82.112379884715182, 28.663086489619573 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111678037621587, 28.661248714054203 ], [ -82.110579480984399, 28.661252048320424 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11275008137919, 28.661263558558524 ], [ -82.111678037621587, 28.661248714054203 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Beville Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111678037621587, 28.661248714054203 ], [ -82.111665389942289, 28.662051410404647 ], [ -82.111664898800285, 28.662952516003152 ], [ -82.11166263260607, 28.663088566243509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Beville Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11166263260607, 28.663088566243509 ], [ -82.111666012276729, 28.66378933615453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Joe P Strickland Jr Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11166263260607, 28.663088566243509 ], [ -82.110557307675819, 28.663090842949352 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Joe P Strickland Jr Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112379884715182, 28.663086489619573 ], [ -82.11166263260607, 28.663088566243509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Mccollum Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112226563327638, 28.664163251675514 ], [ -82.111658949014483, 28.664162074973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Mccollum Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111658949014483, 28.664162074973 ], [ -82.11055391218845, 28.66416202431688 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Beville Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111666012276729, 28.66378933615453 ], [ -82.111663630049378, 28.664030273669731 ], [ -82.111658949014483, 28.664162074973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111654905139332, 28.664895462963774 ], [ -82.11105165535929, 28.664890140482367 ], [ -82.110536758278343, 28.664890558427665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Beville Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111658949014483, 28.664162074973 ], [ -82.111654905139332, 28.664895462963774 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Florida Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110549883798555, 28.663787781320298 ], [ -82.11055391218845, 28.66416202431688 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bushnell Plz", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11226377023641, 28.663795679162135 ], [ -82.112009256007525, 28.663793548521536 ], [ -82.111666012276729, 28.66378933615453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bushnell Plz", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111666012276729, 28.66378933615453 ], [ -82.110549883798555, 28.663787781320298 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Mccollum Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107917284576061, 28.66414613346711 ], [ -82.106943608953657, 28.664144758373919 ], [ -82.106913479326934, 28.66414212550125 ], [ -82.106886357209902, 28.664134174623115 ], [ -82.106853206610623, 28.6641235728911 ], [ -82.106820055369624, 28.664110311975751 ], [ -82.1067664006722, 28.664083517652262 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Church Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.1067664006722, 28.664083517652262 ], [ -82.106751959165507, 28.664102659308742 ], [ -82.106725475697331, 28.664130314866458 ], [ -82.106701395055708, 28.664151590850715 ], [ -82.106674908283608, 28.664174995509654 ], [ -82.106650824343248, 28.664192019693704 ], [ -82.106619511690653, 28.664213302214318 ], [ -82.106581266967922, 28.664239819159267 ], [ -82.106556891461835, 28.664255866327352 ], [ -82.106525773967164, 28.664277955359641 ], [ -82.106503908275954, 28.664296296997748 ], [ -82.106481080315731, 28.664316083115683 ], [ -82.106464130776402, 28.664333782061497 ], [ -82.106448723652733, 28.664350120889051 ], [ -82.106433316201787, 28.664369180249352 ], [ -82.106416369393045, 28.664389600623579 ], [ -82.106405589893072, 28.664407294753016 ], [ -82.10639635076555, 28.664423627865304 ], [ -82.106385571259636, 28.664441322895403 ], [ -82.106374794495309, 28.664461738456719 ], [ -82.106364014980997, 28.664479432582706 ], [ -82.106356319636376, 28.664495764489502 ], [ -82.10634708151656, 28.664512097597459 ], [ -82.106339386865088, 28.664531150036918 ], [ -82.106331694954889, 28.664552923007967 ], [ -82.106325547514771, 28.664573336764569 ], [ -82.106320948006669, 28.66460190911344 ], [ -82.106317885434834, 28.66462367938103 ], [ -82.106314823560226, 28.664648171084433 ], [ -82.106313304434806, 28.66466857943173 ], [ -82.106313323991984, 28.664688986580931 ], [ -82.106314886673189, 28.664710752344451 ], [ -82.106313955396132, 28.664740897309784 ], [ -82.106313414196606, 28.664777417856548 ], [ -82.106313458451069, 28.664822314304857 ], [ -82.106313784326034, 28.664884732036406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Church Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106876523956018, 28.663349418647407 ], [ -82.106876941377166, 28.663762175302843 ], [ -82.106877003335924, 28.663823291182084 ], [ -82.106871026044615, 28.663871124932278 ], [ -82.10686202982167, 28.663910988931267 ], [ -82.106847007809108, 28.663950859449717 ], [ -82.106828971867756, 28.663990731422111 ], [ -82.106807313815807, 28.664026088243322 ], [ -82.106788067683979, 28.664057990848001 ], [ -82.1067664006722, 28.664083517652262 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Anderson Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109290832961847, 28.663372856562226 ], [ -82.109072782470278, 28.66336893797062 ], [ -82.108756446544021, 28.663363876504498 ], [ -82.108208141071117, 28.663364311292099 ], [ -82.107916472920763, 28.663361229685307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Anderson Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106876523956018, 28.663349418647407 ], [ -82.106235729039383, 28.663339921766731 ], [ -82.105700424282958, 28.663338045261771 ], [ -82.105474349972326, 28.663335929046383 ], [ -82.105157313388901, 28.663323567056803 ], [ -82.104936434034158, 28.663320299979649 ], [ -82.104883170797919, 28.663327216677594 ], [ -82.104845501077946, 28.663336413309917 ], [ -82.104794853338063, 28.663359370547976 ], [ -82.104748111475573, 28.663391493379301 ], [ -82.104696187293328, 28.663438517689407 ], [ -82.104633874802545, 28.663493571681734 ], [ -82.104572864703357, 28.663549771513292 ], [ -82.104522242933058, 28.663599085782579 ], [ -82.104504085022285, 28.66363233261157 ], [ -82.104495041218954, 28.663683908777649 ], [ -82.104491062509183, 28.664203030416427 ], [ -82.104488048081535, 28.664416187269008 ], [ -82.104484189237652, 28.66453193158701 ], [ -82.104469949453176, 28.664585802743826 ], [ -82.104453106427158, 28.664633946074808 ], [ -82.104427169512178, 28.664683242320695 ], [ -82.104406434263197, 28.664737118436562 ], [ -82.104390906359455, 28.66480130423529 ], [ -82.104389687108451, 28.664883164822591 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Church Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106890345341967, 28.662124442538872 ], [ -82.106878918925105, 28.662740919310824 ], [ -82.106876389267725, 28.663216559207267 ], [ -82.106876523956018, 28.663349418647407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Martin Luther King Jr Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110603535908325, 28.657618648659401 ], [ -82.109987677746233, 28.657618483905193 ], [ -82.10951985639737, 28.657618859991995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Martin Luther King Jr Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10951985639737, 28.657618859991995 ], [ -82.10848059445523, 28.65761138009097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Pine Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10848059445523, 28.65761138009097 ], [ -82.108486082547159, 28.656841477274437 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Pine Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108486082547159, 28.656841477274437 ], [ -82.108488649416756, 28.656284822616335 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Florida Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110603438361437, 28.657525646983437 ], [ -82.110599394038374, 28.657259930953025 ], [ -82.11058789268688, 28.657063971372359 ], [ -82.110561344322434, 28.656884633234473 ], [ -82.110517293923564, 28.656665374657408 ], [ -82.110463719638588, 28.656474328021869 ], [ -82.110403885777714, 28.656302673070158 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Cherokee Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109524774164086, 28.656306150409918 ], [ -82.108488649416756, 28.656284822616335 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Cherokee Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110403885777714, 28.656302673070158 ], [ -82.110353659037983, 28.65631102237127 ], [ -82.11030028697202, 28.656313833863525 ], [ -82.109524774164086, 28.656306150409918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Florida Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110403885777714, 28.656302673070158 ], [ -82.110474079146471, 28.656292481270476 ], [ -82.110518261177148, 28.656267630420214 ], [ -82.110558421859409, 28.6562427837145 ], [ -82.110590532995246, 28.656205537325828 ], [ -82.110606574610813, 28.65617361959999 ], [ -82.110618592386061, 28.656136390384514 ], [ -82.110622568899942, 28.656095619706026 ], [ -82.110628509915855, 28.656012312305808 ], [ -82.110633793523434, 28.655303335020619 ], [ -82.110635526607226, 28.655039242033151 ], [ -82.110639020460155, 28.654539414568784 ], [ -82.110640807074262, 28.654427775412124 ], [ -82.110642792368367, 28.654303678464135 ], [ -82.110634631422911, 28.654184932458321 ], [ -82.110622492009881, 28.654106955337518 ], [ -82.110600340634122, 28.654060890163667 ], [ -82.11056614776092, 28.654027241836502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 763", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108493840733232, 28.649405956360415 ], [ -82.108493923130538, 28.648996746429567 ], [ -82.108501219166399, 28.648275361566771 ], [ -82.108500372287224, 28.647452955830122 ], [ -82.108489432293098, 28.646584471229673 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 73rd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108493840733232, 28.649405956360415 ], [ -82.109848607227889, 28.64941572923939 ], [ -82.110414793339118, 28.649425105313341 ], [ -82.111036377538852, 28.649419005855322 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 75th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103865230181313, 28.646620389279136 ], [ -82.10364603798925, 28.6466277175854 ], [ -82.103520202618114, 28.646627813895439 ], [ -82.103410594440064, 28.646620734165321 ], [ -82.103268510254082, 28.646610099333138 ], [ -82.103049278540837, 28.646578037051828 ], [ -82.102911250783364, 28.646563816513137 ], [ -82.102489064450197, 28.64653906968681 ], [ -82.102351027824383, 28.646517687648998 ], [ -82.10225355767254, 28.646467627768768 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110403885777714, 28.656302673070158 ], [ -82.110322074464534, 28.656131034946402 ], [ -82.110262289232324, 28.656006459168271 ], [ -82.110186792122917, 28.655868049724965 ], [ -82.110098727490723, 28.655721340776207 ], [ -82.110011422113786, 28.655593229165362 ], [ -82.109917928182654, 28.655475136583298 ], [ -82.10984882223606, 28.655385669817502 ], [ -82.10976850059059, 28.655286402757039 ], [ -82.109700868786234, 28.655208537844075 ], [ -82.109617643647184, 28.655128392585148 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Justice Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109524774164086, 28.656306150409918 ], [ -82.109527074160383, 28.655479104243344 ], [ -82.109526988474173, 28.65539660028281 ], [ -82.109529522554283, 28.655334721580829 ], [ -82.109529460669364, 28.655275135987509 ], [ -82.109552783158264, 28.655217823561344 ], [ -82.109568336125264, 28.655181142020616 ], [ -82.109617643647184, 28.655128392585148 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109617643647184, 28.655128392585148 ], [ -82.109524016461933, 28.655036799582369 ], [ -82.109435592215561, 28.65495207542363 ], [ -82.109344579283984, 28.654876520093445 ], [ -82.109250969177651, 28.654800968583881 ], [ -82.109133965787322, 28.65471626708932 ], [ -82.109009169653248, 28.654631571714056 ], [ -82.108884375383127, 28.65455146007951 ], [ -82.108743996803994, 28.654473653572811 ], [ -82.108624416792466, 28.654407287315028 ], [ -82.108554233210484, 28.654375258825425 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108554233210484, 28.654375258825425 ], [ -82.108455453401774, 28.65432491848274 ], [ -82.108387869266252, 28.654292887841674 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108387869266252, 28.654292887841674 ], [ -82.10823451832627, 28.654231131898403 ], [ -82.10807857322817, 28.654176253622332 ], [ -82.107927832678342, 28.654125954911546 ], [ -82.107790091156915, 28.654084813490087 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 763", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108387869266252, 28.654292887841674 ], [ -82.108428696041287, 28.654200763177503 ], [ -82.108463134293217, 28.654106576326413 ], [ -82.108494876548363, 28.653953290505598 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southland Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108494876548363, 28.653953290505598 ], [ -82.10838435599338, 28.65394806172117 ], [ -82.108165335929584, 28.653948235390153 ], [ -82.107984495431793, 28.653950150703142 ], [ -82.107898099699341, 28.653957308638617 ], [ -82.107871990174161, 28.653969736365557 ], [ -82.107827437859299, 28.654021300264574 ], [ -82.107790091156915, 28.654084813490087 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107790091156915, 28.654084813490087 ], [ -82.10766742889642, 28.654054428499094 ], [ -82.107534376678444, 28.6540251993484 ], [ -82.107390936892671, 28.654001477964623 ], [ -82.107243341739533, 28.6539795932358 ], [ -82.107060411869824, 28.653955902508319 ], [ -82.106825529092731, 28.653943251640385 ], [ -82.106648855713516, 28.653939724442949 ], [ -82.106465947230078, 28.653938033614995 ], [ -82.106151879815926, 28.653934835686247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Lincoln Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105836200794641, 28.656043261284132 ], [ -82.105813298634843, 28.656004779136516 ], [ -82.105786161873198, 28.655889295964084 ], [ -82.105778458675559, 28.655783041245641 ], [ -82.105771406961992, 28.655685800339779 ], [ -82.105771253524935, 28.655531796361242 ], [ -82.105770288169211, 28.654569263525538 ], [ -82.105767573331605, 28.653934909167315 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alabama Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106549557208098, 28.656067987277062 ], [ -82.106414003491139, 28.656015312737765 ], [ -82.106021162121465, 28.656015618281863 ], [ -82.105929716211008, 28.656024856056487 ], [ -82.105836200794641, 28.656043261284132 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Lincoln Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105876434616604, 28.656782089284565 ], [ -82.105859377399042, 28.65635308864104 ], [ -82.105859193358455, 28.656169748914685 ], [ -82.105836200794641, 28.656043261284132 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Georgia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106660041485767, 28.656779647770684 ], [ -82.105876434616604, 28.656782089284565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Martin Luther King Jr Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106656709256782, 28.657595511044828 ], [ -82.10589179641245, 28.657590605688561 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Lincoln Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10589179641245, 28.657590605688561 ], [ -82.105876434616604, 28.656782089284565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Martin Luther King Jr Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10589179641245, 28.657590605688561 ], [ -82.104476287377494, 28.657578862880555 ], [ -82.104282982870117, 28.657579010610387 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Martin Luther King Jr Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104282982870117, 28.657579010610387 ], [ -82.10367031904336, 28.657567787268466 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 1st Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103642708504438, 28.658555551716443 ], [ -82.10367031904336, 28.657567787268466 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Martin Luther King Jr Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10367031904336, 28.657567787268466 ], [ -82.103296176035371, 28.657565779698892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Martin Luther King Jr Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103296176035371, 28.657565779698892 ], [ -82.102258291898636, 28.657544593283472 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Jasper Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100207486959135, 28.659458326427686 ], [ -82.100207290683144, 28.659251794986869 ], [ -82.100206752513884, 28.658685495138901 ], [ -82.100184970515329, 28.657518077682326 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Jasper Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100244120334764, 28.661186840701419 ], [ -82.100207486959135, 28.659458326427686 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Jasper Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100244173638714, 28.661241828871788 ], [ -82.100244121354379, 28.661186837091332 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 5th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.095997150706623, 28.659307436191224 ], [ -82.095995277752067, 28.657535498920733 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 552", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100184970515329, 28.657518077682326 ], [ -82.096185435398269, 28.657534124523995 ], [ -82.095995277752067, 28.657535498920733 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Rosewood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.101270222004047, 28.663538441000433 ], [ -82.101271891647187, 28.664085873608286 ], [ -82.101272133729736, 28.6643389408917 ], [ -82.10126709457154, 28.664750481628982 ], [ -82.101272781592726, 28.664878087165167 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Anderson Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.101270222004047, 28.663538441000433 ], [ -82.10024038819634, 28.663566819180868 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Anderson Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10205184201692, 28.66355360319303 ], [ -82.101270222004047, 28.663538441000433 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105767573331605, 28.653934909167315 ], [ -82.104297969344913, 28.653924254807212 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104297969344913, 28.653924254807212 ], [ -82.103312243879145, 28.653915897538354 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103312243879145, 28.653915897538354 ], [ -82.102277466557808, 28.653909453902816 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 774", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058799125906759, 28.577187817190882 ], [ -82.054713991435833, 28.577206642492889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 774", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054713991435833, 28.577206642492889 ], [ -82.05415985473411, 28.577204416019679 ], [ -82.052637592108326, 28.577211424043249 ], [ -82.051386239660189, 28.577211895960257 ], [ -82.048507536464172, 28.577197380448975 ], [ -82.047021190217933, 28.577197893558726 ], [ -82.046721566312598, 28.577187622744948 ], [ -82.046466986806465, 28.577166737182932 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 727", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046534050298732, 28.599163078855742 ], [ -82.046535012340456, 28.599007307173721 ], [ -82.046526329707234, 28.597294565748047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 727", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046517387119053, 28.600881026739131 ], [ -82.046517265357707, 28.600604312741488 ], [ -82.046521355428581, 28.60000091695521 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 35th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045358395772737, 28.602722866481884 ], [ -82.045338055657069, 28.602331241437998 ], [ -82.045432983395244, 28.601769051228075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 723", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044370024781642, 28.602751668798664 ], [ -82.042397293137483, 28.602762969479762 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 723", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042391080990527, 28.597329988675369 ], [ -82.042382959735576, 28.597201820615354 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 108th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046526329707234, 28.597294565748047 ], [ -82.042391080990527, 28.597329988675369 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 723", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042382959735576, 28.597201820615354 ], [ -82.042367617806704, 28.59537314204967 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 758", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042367617806704, 28.59537314204967 ], [ -82.041169525163184, 28.595372982879439 ], [ -82.040545527584229, 28.595378729900837 ], [ -82.039921515232962, 28.5953455352543 ], [ -82.038495002819403, 28.595351966376377 ], [ -82.037357938903426, 28.59534306972904 ], [ -82.036382570371842, 28.595343328787514 ], [ -82.035815299556475, 28.59535977254146 ], [ -82.035264497027569, 28.595351074984087 ], [ -82.035031680806412, 28.595408124035512 ], [ -82.034812623211408, 28.595435799786415 ], [ -82.034666584750894, 28.595454250391217 ], [ -82.034543493787623, 28.595463211515945 ], [ -82.034399952066607, 28.595463247102455 ], [ -82.034269759913983, 28.5954544407996 ], [ -82.034092832447925, 28.595436806485019 ], [ -82.033889198297743, 28.59541328705193 ], [ -82.033698914616537, 28.595389763177582 ], [ -82.033568723721643, 28.595378010051903 ], [ -82.03339512781605, 28.595348590327408 ], [ -82.033214862567448, 28.59533095476581 ], [ -82.032917768235478, 28.595331026244541 ], [ -82.032694107303627, 28.595325185745686 ], [ -82.032427055802813, 28.595328195241386 ], [ -82.031702679649484, 28.595337199518923 ], [ -82.031075106672958, 28.595340288795381 ], [ -82.030557691448976, 28.595337455173222 ], [ -82.029966839438984, 28.59534347742235 ], [ -82.028067422540332, 28.595326194136113 ], [ -82.027059299758733, 28.595326392720445 ], [ -82.026428390794834, 28.595338297785947 ], [ -82.026034490203344, 28.595350157010799 ], [ -82.025917658396622, 28.595361963255854 ], [ -82.025840888568425, 28.59539733212214 ], [ -82.02580083878243, 28.595423854842682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 721", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04638445030524, 28.588093076155989 ], [ -82.042305009277143, 28.588106131033626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 723", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042367617806704, 28.59537314204967 ], [ -82.042375294434592, 28.59486673945851 ], [ -82.042323276895075, 28.591398733027926 ], [ -82.042286152998258, 28.5910478239275 ], [ -82.042316163477324, 28.589917003292861 ], [ -82.042302634237188, 28.588688465634135 ], [ -82.042305009277143, 28.588106131033626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 721", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054719635864046, 28.588119702690356 ], [ -82.053530882670785, 28.588105494779779 ], [ -82.050415128199575, 28.588094204143847 ], [ -82.048626207159458, 28.588094845154497 ], [ -82.04638445030524, 28.588093076155989 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 38th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040270708318616, 28.587448445201211 ], [ -82.040310645232054, 28.585793793621249 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 41st Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036059601529743, 28.588105399315253 ], [ -82.036079846568086, 28.586552879720571 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 707", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029960781055763, 28.584415311537295 ], [ -82.027258409152125, 28.584395908395951 ], [ -82.02578704336274, 28.584384450121302 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 707", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02578704336274, 28.584384450121302 ], [ -82.022742377853959, 28.584357594140002 ], [ -82.021762947195214, 28.584349924484282 ], [ -82.021093742849146, 28.58434611436827 ], [ -82.020056696658472, 28.58435017687405 ], [ -82.018554309998223, 28.584338646353643 ], [ -82.017282376745712, 28.584330982225172 ], [ -82.015252606294425, 28.584331213016046 ], [ -82.013453289831943, 28.584327480549291 ], [ -82.011445679111105, 28.584343299876519 ], [ -82.009322836881566, 28.584323889977991 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 100th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000958016223265, 28.609967637783321 ], [ -82.000491177356864, 28.610004922079657 ], [ -82.000086676846081, 28.61000981019167 ], [ -81.999648925402298, 28.610009808306135 ], [ -81.999305375856281, 28.61000491720517 ], [ -81.999061563850134, 28.609990244844038 ], [ -81.996872809200738, 28.609995096126344 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 711", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009322836881566, 28.584323889977991 ], [ -82.009318271032782, 28.582798267586032 ], [ -82.009306078377008, 28.581262096916259 ], [ -82.009309568071799, 28.580782091668706 ], [ -82.009313049113288, 28.580227281994397 ], [ -82.009309418830981, 28.579095844467151 ], [ -82.009312892346827, 28.578444409732114 ], [ -82.009302224002937, 28.577590374944073 ], [ -82.009302207031752, 28.577397126874956 ], [ -82.009302200663427, 28.577312971445647 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 122nd Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012737826552822, 28.577203621023795 ], [ -82.012420042361128, 28.577247285035444 ], [ -82.012059888076436, 28.577290952715263 ], [ -82.011660891307216, 28.577325269733123 ], [ -82.011459627452425, 28.577347104344767 ], [ -82.011276018578329, 28.577362703899635 ], [ -82.011180684900026, 28.577375178903914 ], [ -82.011060632320664, 28.577381421401846 ], [ -82.01083111939775, 28.577384556099823 ], [ -82.010569825203561, 28.577372107384456 ], [ -82.01019200799405, 28.577353432846312 ], [ -82.009729450934529, 28.577331645231649 ], [ -82.009460962545788, 28.577318119256482 ], [ -82.009302200663427, 28.577312971445647 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 711", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009302200663427, 28.577312971445647 ], [ -82.009275975149237, 28.57681634476312 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 47th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025809449538002, 28.57689327283245 ], [ -82.025805892481486, 28.576781065036297 ], [ -82.025819967707193, 28.576581580049265 ], [ -82.025823434538523, 28.576319758474657 ], [ -82.025829999653013, 28.576087255328144 ], [ -82.02580236831146, 28.575902192966513 ], [ -82.025769177402111, 28.575536936823784 ], [ -82.025736011913295, 28.575283693316901 ], [ -82.025719418767096, 28.575103499752188 ], [ -82.025751175103466, 28.574905238669906 ], [ -82.025760290771814, 28.574748810869139 ], [ -82.025763410640138, 28.574514200425174 ], [ -82.025779895503476, 28.574241467922825 ], [ -82.025785338690042, 28.573939515873171 ], [ -82.025779786383154, 28.573793411775512 ], [ -82.025779718777386, 28.573515812325198 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 122nd Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028583222868079, 28.576831857316453 ], [ -82.028285273589546, 28.57673938329421 ], [ -82.028147346446843, 28.57673454296906 ], [ -82.027910116208332, 28.576758940294475 ], [ -82.027678404006537, 28.576788206974037 ], [ -82.027391522931666, 28.576817484966927 ], [ -82.027176358812767, 28.576841877591924 ], [ -82.026872922088643, 28.576856546924542 ], [ -82.026508794320449, 28.576866356213237 ], [ -82.026150189015837, 28.576890774270808 ], [ -82.025973639708354, 28.576890807088322 ], [ -82.025809449538002, 28.57689327283245 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 47th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02578704336274, 28.584384450121302 ], [ -82.025775928380554, 28.58423048514474 ], [ -82.025804134820575, 28.584052816468162 ], [ -82.025811112342623, 28.583706838284055 ], [ -82.025824927544491, 28.582438253021191 ], [ -82.025831628203193, 28.580954603970206 ], [ -82.025838590479552, 28.580543169532877 ], [ -82.025848927962386, 28.579499004742868 ], [ -82.025848864774218, 28.579240300630637 ], [ -82.025838208194159, 28.578981598460636 ], [ -82.025816926889831, 28.578585755312783 ], [ -82.025809801721593, 28.578333286768203 ], [ -82.025785035959501, 28.578130691369999 ], [ -82.025770876219013, 28.577984199131336 ], [ -82.025781427226292, 28.577819001243068 ], [ -82.025806091593196, 28.577597695632672 ], [ -82.025816637210824, 28.57739821131938 ], [ -82.025805995573918, 28.577208081903965 ], [ -82.025805957837832, 28.577049119344352 ], [ -82.025809449538002, 28.57689327283245 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 727", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046466986806465, 28.577166737182932 ], [ -82.046462730927757, 28.576546548569933 ], [ -82.046489403494618, 28.574899302569573 ], [ -82.046496184399118, 28.574254097918097 ], [ -82.04650646161663, 28.573540321873658 ], [ -82.04651314750005, 28.572686286324441 ], [ -82.046502296933156, 28.572097192558591 ], [ -82.046484011039524, 28.570660300191374 ], [ -82.04647315538628, 28.570058740335977 ], [ -82.04646943297945, 28.569619256562845 ], [ -82.046461758103874, 28.568222879966314 ], [ -82.046450573589851, 28.566873260254283 ], [ -82.046450267247792, 28.566175071424361 ], [ -82.046439391098446, 28.565529872781347 ], [ -82.046435652614051, 28.565052985539179 ], [ -82.046421094338712, 28.564058694342844 ], [ -82.04641692181977, 28.562593743352178 ], [ -82.046416688251441, 28.562529571204845 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 3rd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048879548425575, 28.606417519997045 ], [ -82.049603592760647, 28.606407910643082 ], [ -82.049667156407239, 28.606379835786573 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 7th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046569718015832, 28.606314337162168 ], [ -82.046538055066932, 28.606276448593924 ], [ -82.046513057972305, 28.606215739364504 ], [ -82.046495345327187, 28.606097302191547 ], [ -82.046502355233571, 28.605975740908196 ], [ -82.046489735836957, 28.604751148627393 ], [ -82.046478317938522, 28.603709763576312 ], [ -82.046480194797283, 28.603374022335061 ], [ -82.046480037223404, 28.603017996215446 ], [ -82.046487959874213, 28.602686888235507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 3rd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046703097337414, 28.606346211549191 ], [ -82.046737009500262, 28.606360163810219 ], [ -82.046777705055533, 28.606372117786261 ], [ -82.046834536231543, 28.606380825971264 ], [ -82.046989946633133, 28.606390123240583 ], [ -82.047389449577508, 28.606401519539546 ], [ -82.047839280596392, 28.606405353656864 ], [ -82.048743459301036, 28.606409027470821 ], [ -82.048879548425575, 28.606417519997045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 3rd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046703097337414, 28.606346211549191 ], [ -82.046628498883024, 28.606334267195908 ], [ -82.046569718015832, 28.606314337162168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 3rd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048881918039783, 28.6063345651121 ], [ -82.048644705241628, 28.606330749010397 ], [ -82.047501235046823, 28.606319460101826 ], [ -82.047148036790105, 28.606311789437228 ], [ -82.04681837090412, 28.606326222654939 ], [ -82.046703097337414, 28.606346211549191 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 3rd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049667156407239, 28.606379835786573 ], [ -82.049603815422046, 28.606352928197396 ], [ -82.049256266068781, 28.606340585060114 ], [ -82.048881918039783, 28.6063345651121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 2nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051988472807722, 28.607513925213098 ], [ -82.051985943052173, 28.60719366632242 ], [ -82.051997321946118, 28.606556577509409 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 2nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051988472807722, 28.607513925213098 ], [ -82.051014273956412, 28.607507091142086 ], [ -82.050614145304053, 28.607509624369577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 3rd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054695119409175, 28.606345061065472 ], [ -82.053564363710379, 28.606334744037405 ], [ -82.053367983595209, 28.606341973097567 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 2nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054712916179383, 28.60753051925246 ], [ -82.054108047196053, 28.60752815852852 ], [ -82.053362501902868, 28.607522411738906 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 2nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053362501902868, 28.607522411738906 ], [ -82.052833709532806, 28.607515755894418 ], [ -82.051988472807722, 28.607513925213098 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 1st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05469273354673, 28.608697464547792 ], [ -82.054349758017338, 28.608691486944171 ], [ -82.053791990151936, 28.608691704965228 ], [ -82.053542557341473, 28.608694858354003 ], [ -82.053361193404555, 28.608695526061044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 1st Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053361193404555, 28.608695526061044 ], [ -82.053357240049863, 28.608219029252997 ], [ -82.053362501902868, 28.607522411738906 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 718", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.079513487493884, 28.635598549637862 ], [ -82.079260342116896, 28.63560095307697 ], [ -82.078846097129784, 28.635594424575846 ], [ -82.077497262183385, 28.635594066186531 ], [ -82.076615088672739, 28.635599073003124 ], [ -82.075367254321634, 28.635597508991353 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 747", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075367254321634, 28.635597508991353 ], [ -82.075385659098444, 28.634514657954536 ], [ -82.075389981262646, 28.633404742556419 ], [ -82.07539682918619, 28.632254220389729 ], [ -82.075396613285548, 28.631951926535667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 27th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058991609097419, 28.652468364748835 ], [ -82.058991461409562, 28.652206113725924 ], [ -82.058991074491146, 28.651512420215543 ], [ -82.058965321998571, 28.651193781475079 ], [ -82.058952425602214, 28.65099921553362 ], [ -82.058958729072728, 28.65083847892955 ], [ -82.058971452057193, 28.650722859044688 ], [ -82.058980819685672, 28.650325249045313 ], [ -82.058964746679493, 28.650164522022809 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058964746679493, 28.650164522022809 ], [ -82.058334988480951, 28.650164790653928 ], [ -82.056992359729747, 28.650165353594748 ], [ -82.054794156336911, 28.650165456991978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054794156336911, 28.650165456991978 ], [ -82.054790923816071, 28.648865374982385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054790923816071, 28.648865374982385 ], [ -82.054791105699749, 28.648230785667874 ], [ -82.054792093276902, 28.647177949766164 ], [ -82.054788182923048, 28.646542010223119 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054788182923048, 28.646542010223119 ], [ -82.054789478777465, 28.646516128906857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054764689964415, 28.635598164210965 ], [ -82.054762258662549, 28.634854613827144 ], [ -82.054763848247646, 28.633975707506938 ], [ -82.054757281984664, 28.633147335231396 ], [ -82.054756850452975, 28.632315352867636 ], [ -82.054756658562198, 28.631945380871972 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054756658562198, 28.631945380871972 ], [ -82.054756278068851, 28.631211755891862 ], [ -82.054755695000651, 28.63082700820565 ], [ -82.05475266786955, 28.629920129812753 ], [ -82.054752093627485, 28.628814727770759 ], [ -82.054748958857544, 28.627698049140157 ], [ -82.054748459416189, 28.626734770452934 ], [ -82.054745331948084, 28.625633881502388 ], [ -82.054742542521907, 28.625184952821151 ], [ -82.054739707548435, 28.624650073642307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054739707548435, 28.624650073642307 ], [ -82.054736705349029, 28.623788538751889 ], [ -82.054736801727344, 28.622987912215212 ], [ -82.054736720264472, 28.622832704504365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054736720264472, 28.622832704504365 ], [ -82.054736290101602, 28.622000719970682 ], [ -82.054733793926829, 28.621132640777045 ], [ -82.05473371358562, 28.620975630149164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Market Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054724267688911, 28.617344095002128 ], [ -82.05473371358562, 28.620975630149164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 4th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053336549663143, 28.613678925028697 ], [ -82.051962946076927, 28.613679637499402 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Market Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054711451116162, 28.611393915919315 ], [ -82.054716223596216, 28.612579196122429 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Market Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054710814217913, 28.610161861931974 ], [ -82.054711451116162, 28.611393915919315 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Market Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054714165609283, 28.609941740870173 ], [ -82.054710814217913, 28.610161861931974 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Market Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054714165609283, 28.609941740870173 ], [ -82.054713982547526, 28.60959016186829 ], [ -82.054699941677725, 28.609235532123591 ], [ -82.05469273354673, 28.608697464547792 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Market Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05469273354673, 28.608697464547792 ], [ -82.054696040629324, 28.608391741970337 ], [ -82.054713255444824, 28.608183843871519 ], [ -82.054712916179383, 28.60753051925246 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Market Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054712916179383, 28.60753051925246 ], [ -82.054712751572708, 28.607212569472889 ], [ -82.054695886115113, 28.606757662637669 ], [ -82.054695706375696, 28.60641036327409 ], [ -82.054695119409175, 28.606345061065472 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054713971291889, 28.597254672342618 ], [ -82.054713673856909, 28.596679916332505 ], [ -82.054713498247082, 28.596340564285132 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054713498247082, 28.596340564285132 ], [ -82.054715107153342, 28.595435017608146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054719635864046, 28.588119702690356 ], [ -82.054716122679409, 28.586684032608858 ], [ -82.054712755980603, 28.585533296269638 ], [ -82.054714935363833, 28.584388671817493 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054714935363833, 28.584388671817493 ], [ -82.054711640505019, 28.583378567238871 ], [ -82.054713673558325, 28.581949009140192 ], [ -82.054715729195095, 28.580788496548514 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054713991435833, 28.577206642492889 ], [ -82.054710877273493, 28.576541392399509 ], [ -82.054713432477442, 28.576125608706803 ], [ -82.054713211178409, 28.575697596603661 ], [ -82.054715523951344, 28.5748110015607 ], [ -82.054717783195983, 28.573822904267843 ], [ -82.054717598572111, 28.573465819987 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 4th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049656577773177, 28.609994667716727 ], [ -82.049635875320746, 28.609149437982875 ], [ -82.049635798124527, 28.608987261166057 ], [ -82.049645903461013, 28.608886604096998 ], [ -82.049666162625357, 28.608782063304087 ], [ -82.049670641863969, 28.608694143897058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 3rd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050594766052214, 28.60998566610084 ], [ -82.050610720104984, 28.609373982294443 ], [ -82.050602206975114, 28.609013981147505 ], [ -82.050604389637499, 28.608682120976102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050594766052214, 28.60998566610084 ], [ -82.049656577773177, 28.609994667716727 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 2nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051984011016941, 28.609932284768583 ], [ -82.0519794120992, 28.608945730090838 ], [ -82.051988639222003, 28.608691924251481 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 2nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051984011016941, 28.609932284768583 ], [ -82.051978879777906, 28.610067046799006 ], [ -82.051971990264491, 28.610157080454361 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 1st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051971990264491, 28.610157080454361 ], [ -82.050736649475766, 28.610134651808345 ], [ -82.050593141685411, 28.610127535433467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054714165609283, 28.609941740870173 ], [ -82.053893092352311, 28.609935949392714 ], [ -82.053351470307845, 28.609935107159494 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053351470307845, 28.609935107159494 ], [ -82.052618355393818, 28.60993562816105 ], [ -82.051984011016941, 28.609932284768583 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 1st Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053351470307845, 28.609935107159494 ], [ -82.053351727431902, 28.609370977968837 ], [ -82.053361193404555, 28.608695526061044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 1st Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053351470307845, 28.609935107159494 ], [ -82.05334719977543, 28.610051709297785 ], [ -82.053342923156848, 28.610166401180763 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 1st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053342923156848, 28.610166401180763 ], [ -82.051971990264491, 28.610157080454361 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 1st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054710814217913, 28.610161861931974 ], [ -82.05370959447194, 28.610162255045683 ], [ -82.053342923156848, 28.610166401180763 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 2nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054711451116162, 28.611393915919315 ], [ -82.053339209231112, 28.611389757402492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 1st Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053342923156848, 28.610166401180763 ], [ -82.053343206851224, 28.610728379817854 ], [ -82.05333909145449, 28.611158466777741 ], [ -82.053339209231112, 28.611389757402492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 2nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051971990264491, 28.610157080454361 ], [ -82.051968419418188, 28.610822088918187 ], [ -82.05196587901402, 28.611382635656216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 2nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053339209231112, 28.611389757402492 ], [ -82.052925477228243, 28.611388004875334 ], [ -82.05196587901402, 28.611382635656216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 2nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05196587901402, 28.611382635656216 ], [ -82.050599049872915, 28.611383144049533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 3rd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050593141685411, 28.610127535433467 ], [ -82.050595972910259, 28.610385586728047 ], [ -82.050596345877665, 28.611164518719107 ], [ -82.050599049872915, 28.611383144049533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 2nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050599049872915, 28.611383144049533 ], [ -82.050490742201063, 28.611377449370448 ], [ -82.049806240783667, 28.611368140654044 ], [ -82.049676270426374, 28.611364364301792 ], [ -82.049565797842661, 28.611362492880886 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 3rd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050599049872915, 28.611383144049533 ], [ -82.050598350756701, 28.611618675071266 ], [ -82.050601969961875, 28.612108494909926 ], [ -82.050599488083463, 28.612580095989692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 4th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050603399574001, 28.613680098994688 ], [ -82.049581237334507, 28.613683456074309 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 4th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051962946076927, 28.613679637499402 ], [ -82.050603399574001, 28.613680098994688 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 3rd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050599488083463, 28.612580095989692 ], [ -82.050603399574001, 28.613680098994688 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 2nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05196587901402, 28.611382635656216 ], [ -82.051963486337385, 28.612574213407118 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 2nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051963486337385, 28.612574213407118 ], [ -82.051962946076927, 28.613679637499402 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 1st Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053340944056671, 28.612573845946919 ], [ -82.053341053974421, 28.61279157344666 ], [ -82.053336549663143, 28.613678925028697 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 1st Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053339209231112, 28.611389757402492 ], [ -82.053342014100096, 28.61197721435331 ], [ -82.053335384830362, 28.612424766105683 ], [ -82.053340944056671, 28.612573845946919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 748", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046517387119053, 28.600881026739131 ], [ -82.046164645414905, 28.600877302894752 ], [ -82.045946911459282, 28.600892746874052 ], [ -82.045768365795809, 28.600896651011087 ], [ -82.045572397814837, 28.60088902872775 ], [ -82.04547323397432, 28.600876990763982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 35th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045432983395244, 28.601769051228075 ], [ -82.04547323397432, 28.600876990763982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 723", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042397293137483, 28.602762969479762 ], [ -82.042388648131251, 28.601324620992571 ], [ -82.042399558050178, 28.600012706013835 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 752", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044354979877639, 28.600006824025481 ], [ -82.043336143173974, 28.600021265995181 ], [ -82.042399558050178, 28.600012706013835 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 122nd Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009275975149237, 28.57681634476312 ], [ -82.009029510364073, 28.576775526931048 ], [ -82.008860023667864, 28.576763068447232 ], [ -82.008256236148043, 28.576825442227729 ], [ -82.00792785846879, 28.576847277589064 ], [ -82.007663038048534, 28.576859760676175 ], [ -82.007455021684763, 28.576898465351871 ], [ -82.007274635991692, 28.576928350681968 ], [ -82.00713340208253, 28.576975110526675 ], [ -82.006953327824704, 28.577065509400331 ], [ -82.006677593889762, 28.577228808150135 ], [ -82.006318850445766, 28.577382885037309 ], [ -82.005979499596833, 28.5775027234547 ], [ -82.005717712027064, 28.577605440765037 ], [ -82.005533490391372, 28.577656800634426 ], [ -82.005397752607621, 28.577750955063419 ], [ -82.00528140893644, 28.577922138324155 ], [ -82.005252344503134, 28.578384323185219 ], [ -82.005203878487109, 28.57869244764451 ], [ -82.005184512371741, 28.579257340648937 ], [ -82.005174842978718, 28.579779438681562 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 50th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02189993084842, 28.568325121832107 ], [ -82.021859635439341, 28.568226081113277 ], [ -82.021850993555773, 28.568167670854503 ], [ -82.021845211233256, 28.568038149831011 ], [ -82.021845195489192, 28.567956879991875 ], [ -82.021842224408118, 28.567497201642453 ], [ -82.021833446996467, 28.56678609788808 ], [ -82.021844926219941, 28.566656574166565 ], [ -82.021821855225028, 28.566369596280261 ], [ -82.021775773779794, 28.566113096888394 ], [ -82.021767094530063, 28.565871829639029 ], [ -82.021784288502644, 28.565554371439021 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024907023280576, 28.564593098586023 ], [ -82.024577954842556, 28.56469271158927 ], [ -82.023178826069682, 28.565125706604128 ], [ -82.022566703995309, 28.565314758338147 ], [ -82.021784288502644, 28.565554371439021 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026820949561127, 28.564005369168264 ], [ -82.026745011541905, 28.564025700932149 ], [ -82.025884376984209, 28.564294051767082 ], [ -82.024907023280576, 28.564593098586023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033691492722099, 28.561884534330005 ], [ -82.033636355820292, 28.561902361806617 ], [ -82.032815360907165, 28.562153184692459 ], [ -82.032046799070613, 28.562389043175116 ], [ -82.030373900764943, 28.562907509241736 ], [ -82.029269363887025, 28.563245011823344 ], [ -82.027909394147343, 28.563667889755781 ], [ -82.026820949561127, 28.564005369168264 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034169402527624, 28.561740150510008 ], [ -82.033691492722099, 28.561884534330005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 772", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033540785191789, 28.56149518798874 ], [ -82.033509826524451, 28.561455263865707 ], [ -82.033452690300891, 28.561436364406408 ], [ -82.033395559758091, 28.56143217318423 ], [ -82.033317006367199, 28.561436397846371 ], [ -82.033247977739691, 28.561457429116196 ], [ -82.033088510581308, 28.56152682152311 ], [ -82.032850497504384, 28.561625654229754 ], [ -82.03267599147857, 28.561699380964185 ], [ -82.032485364693088, 28.561778170695138 ], [ -82.032072549996613, 28.561922752891054 ], [ -82.031860558292436, 28.561981909774865 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 772B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031860558292436, 28.561981909774865 ], [ -82.03186050593051, 28.561807868641349 ], [ -82.031856754032731, 28.561699504799929 ], [ -82.031856722422461, 28.561594424650888 ], [ -82.031856665128828, 28.56140396529754 ], [ -82.031871481063831, 28.561193799782647 ], [ -82.031882550877683, 28.560904824991201 ], [ -82.031875021447206, 28.560599435325827 ], [ -82.031882378830673, 28.560336731402195 ], [ -82.031889747154977, 28.560100298412959 ], [ -82.031871093642494, 28.559909843270969 ], [ -82.031852441151102, 28.559725957211541 ], [ -82.031811486192879, 28.559588047239345 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 772", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031860558292436, 28.561981909774865 ], [ -82.031417984491483, 28.562119927686794 ], [ -82.031083264065359, 28.562228366482238 ], [ -82.030785733335478, 28.562323661682509 ], [ -82.03051051829847, 28.562405817687772 ], [ -82.030175800715753, 28.562530674253846 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 772", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030175800715753, 28.562530674253846 ], [ -82.029948940568289, 28.562629235962731 ], [ -82.029164199359357, 28.562878969605226 ], [ -82.028297630012517, 28.563148417131892 ], [ -82.028091586094106, 28.563210522103308 ], [ -82.028011250409236, 28.563236807342822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 772D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026820949561127, 28.564005369168264 ], [ -82.026719863450197, 28.563622125578675 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 772", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028011250409236, 28.563236807342822 ], [ -82.026719863450197, 28.563622125578675 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 772", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026719863450197, 28.563622125578675 ], [ -82.026601499718552, 28.563657624779228 ], [ -82.025764233672248, 28.56391739361921 ], [ -82.0246030169303, 28.56426742022904 ], [ -82.022846228222136, 28.564808942424428 ], [ -82.021670040078774, 28.565165545188705 ], [ -82.021194413364995, 28.565317902845401 ], [ -82.020094866945797, 28.565649044160487 ], [ -82.019249540519638, 28.565908824416617 ], [ -82.018957281004603, 28.565997051010392 ], [ -82.018751958766984, 28.566052603278067 ], [ -82.018552181904894, 28.566088558245479 ], [ -82.01836905221495, 28.566108178292083 ], [ -82.018197018081949, 28.566119631336509 ], [ -82.017954689083282, 28.566122929516037 ], [ -82.017695711426398, 28.566122961934337 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 719", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033540785191789, 28.56149518798874 ], [ -82.033705732386039, 28.561432470191704 ], [ -82.03380352608923, 28.561399430484954 ], [ -82.033909948187869, 28.561363849399779 ], [ -82.033984730860311, 28.561333355275369 ], [ -82.034045125120954, 28.56128762759236 ], [ -82.034085380847259, 28.561239363806553 ], [ -82.034108377412295, 28.561186024926737 ], [ -82.034108356962619, 28.561122533059368 ], [ -82.03410545941675, 28.561059041896655 ], [ -82.034097693769283, 28.560954159443796 ], [ -82.034092015249499, 28.560849499357342 ], [ -82.034080685510943, 28.56072490779728 ], [ -82.034114515865767, 28.560605287932184 ], [ -82.034142670229443, 28.560385993434537 ], [ -82.034148249137587, 28.56018165546319 ], [ -82.034153826854293, 28.559967350154302 ], [ -82.034153674750954, 28.559498871158343 ], [ -82.034153449158168, 28.558796153505469 ], [ -82.034158816374671, 28.557938935310442 ], [ -82.034152533137487, 28.55595537654796 ], [ -82.034149484215121, 28.555257143891627 ], [ -82.034144405838049, 28.553506827591875 ], [ -82.034134870439331, 28.551951878541754 ], [ -82.034130239504165, 28.551589057003817 ], [ -82.034125598852512, 28.551202313280882 ], [ -82.034111748474146, 28.550257383310157 ], [ -82.034107194971753, 28.550137772666858 ], [ -82.034108766914912, 28.550052618517956 ], [ -82.034108727675672, 28.549930733747622 ], [ -82.034137982620408, 28.549853163367036 ], [ -82.034192343430078, 28.549790361874255 ], [ -82.03425925901162, 28.549753411370723 ], [ -82.034347095752977, 28.549734922242418 ], [ -82.034455850927969, 28.549720119387779 ], [ -82.034614151182666, 28.549714621782336 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 42nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034614151182666, 28.549714621782336 ], [ -82.034884799764839, 28.548856537566913 ], [ -82.034959750671533, 28.548669746925931 ], [ -82.034886643380972, 28.548499713985304 ], [ -82.034813518080924, 28.548271043651344 ], [ -82.034713827038303, 28.548036514632692 ], [ -82.034653997769539, 28.547854750403925 ], [ -82.034521102944794, 28.547620230398859 ], [ -82.034394888281525, 28.547502985132173 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 42nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034394888281525, 28.547502985132173 ], [ -82.034202272407484, 28.547415074312461 ], [ -82.033929972655798, 28.547344774868183 ], [ -82.03371083202569, 28.547368283779857 ], [ -82.033577996481569, 28.547315541985757 ], [ -82.033365463901063, 28.547239362612039 ], [ -82.033046664177917, 28.547122162095629 ], [ -82.032754414536669, 28.546958044154486 ], [ -82.03252194031603, 28.546811502039411 ], [ -82.032242981115573, 28.546676699022314 ], [ -82.031957366554892, 28.546483258682688 ], [ -82.031738136673525, 28.546207707793428 ], [ -82.031651702624018, 28.545867624714962 ], [ -82.031684842754245, 28.545650654473128 ], [ -82.031731298586266, 28.545550959553886 ], [ -82.031837553379233, 28.545556799700282 ], [ -82.032063379221057, 28.545685752339015 ], [ -82.03238218326338, 28.54583813779551 ], [ -82.0326677699789, 28.545937756384706 ], [ -82.032880272951772, 28.545931842924343 ], [ -82.033072863878814, 28.545955252999825 ], [ -82.033245531664392, 28.545978666657462 ], [ -82.03383664880414, 28.546242396491792 ], [ -82.033996071123909, 28.54637722639642 ], [ -82.034115655926485, 28.546529657183935 ], [ -82.034270939332743, 28.546680587491696 ], [ -82.034302206076077, 28.546740776415156 ], [ -82.034290858565129, 28.546784674898323 ], [ -82.034158497250829, 28.546905092583984 ], [ -82.034073609780634, 28.54696406477753 ], [ -82.034065095006596, 28.546989150368312 ], [ -82.034063685633996, 28.547020502840212 ], [ -82.03417563379827, 28.547180527796048 ], [ -82.03430851021821, 28.547362274262799 ], [ -82.034394888281525, 28.547502985132173 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 737", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062957069459458, 28.560713397559226 ], [ -82.062956874386941, 28.560385311363682 ], [ -82.062925585896821, 28.558781717920318 ], [ -82.062900256137382, 28.557633009323286 ], [ -82.062890531833901, 28.557218718830249 ], [ -82.062885468650293, 28.556674699235792 ], [ -82.062878827155714, 28.556302167936664 ], [ -82.062854366779604, 28.555393750195215 ], [ -82.062853664335037, 28.55524509950045 ], [ -82.062863436240704, 28.555177131983054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 737", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062863436240704, 28.555177131983054 ], [ -82.062866388568651, 28.554982177425146 ], [ -82.062862391212946, 28.55462178050432 ], [ -82.062839361218948, 28.55405797770392 ], [ -82.062834882032519, 28.553022980832427 ], [ -82.062815209542492, 28.551817773519904 ], [ -82.062813487691926, 28.551469934277968 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 784", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066959884476034, 28.551515918891425 ], [ -82.066831259549303, 28.551494555213488 ], [ -82.066486676367802, 28.551496864460738 ], [ -82.064737363083253, 28.551478749809583 ], [ -82.062813487691926, 28.551469934277968 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 784", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069808756016712, 28.551510216153869 ], [ -82.069105031411596, 28.551512714033812 ], [ -82.068634263634507, 28.551512949049464 ], [ -82.068277550724034, 28.551515269801381 ], [ -82.066959884476034, 28.551515918891425 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 739", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066959884476034, 28.551515918891425 ], [ -82.066959788310513, 28.551363793800689 ], [ -82.06695653872319, 28.55006108817539 ], [ -82.066966085730556, 28.549810399311717 ], [ -82.066963143925719, 28.548996207793046 ], [ -82.066957811317707, 28.548237725660009 ], [ -82.066955307724513, 28.548113455377027 ], [ -82.066952823760133, 28.548023468028017 ], [ -82.066967323641421, 28.547929185345936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 739", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07524183850505, 28.547864910997237 ], [ -82.074822041547506, 28.547860855155321 ], [ -82.074067387818729, 28.547867692633599 ], [ -82.073667006468156, 28.547867908002051 ], [ -82.073130730975308, 28.547859622304149 ], [ -82.072659979030306, 28.547857730881997 ], [ -82.071339929036199, 28.54785199446038 ], [ -82.070888589132238, 28.547852228088974 ], [ -82.070502768070781, 28.547856711868825 ], [ -82.069791793027193, 28.54786136008541 ], [ -82.069187577928687, 28.547859523441605 ], [ -82.067782602512409, 28.547860223498947 ], [ -82.067171107883865, 28.547856239294678 ], [ -82.067071622537554, 28.547860572219264 ], [ -82.06701096543749, 28.547871315387884 ], [ -82.06698671085033, 28.547890609504041 ], [ -82.066967323641421, 28.547929185345936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 751", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075252341943923, 28.555178165285366 ], [ -82.075247280918589, 28.554884628839691 ], [ -82.075249147942102, 28.554096147945977 ], [ -82.075248408117332, 28.55305484214032 ], [ -82.075245369007192, 28.552193515333997 ], [ -82.075244830186989, 28.551435031314611 ], [ -82.07524172219766, 28.550475145314046 ], [ -82.075243764785398, 28.549935204932758 ], [ -82.075243442137022, 28.549480971791287 ], [ -82.075249991917531, 28.548452516144259 ], [ -82.07524183850505, 28.547864910997237 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075252341943923, 28.555178165285366 ], [ -82.074007433624061, 28.555178841111218 ], [ -82.073342511192465, 28.555179197883938 ], [ -82.071607403365888, 28.555177970464754 ], [ -82.071122057840697, 28.555178222623919 ], [ -82.07026299859568, 28.555176522516618 ], [ -82.069678158131907, 28.555176819459671 ], [ -82.068705043225748, 28.555179452536994 ], [ -82.067884813590325, 28.555182003213204 ], [ -82.066944305628738, 28.555181526944537 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066944305628738, 28.555181526944537 ], [ -82.065017484425383, 28.555180309429318 ], [ -82.064796653336884, 28.555180413656863 ], [ -82.064583872050832, 28.555176334068996 ], [ -82.062863436240704, 28.555177131983054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 739", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066944305628738, 28.555181526944537 ], [ -82.06696083367612, 28.554696954363042 ], [ -82.066948978462619, 28.553937004314115 ], [ -82.06694407764968, 28.552903197095198 ], [ -82.066947224832873, 28.55188210981569 ], [ -82.066959884476034, 28.551515918891425 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.083737522716291, 28.555163470852293 ], [ -82.083506226762196, 28.555165285759255 ], [ -82.083164969302416, 28.555165494051575 ], [ -82.082660668456256, 28.555169146667041 ], [ -82.081743059940962, 28.555166348042658 ], [ -82.080677577575059, 28.555166979783152 ], [ -82.07931254657062, 28.555167774852993 ], [ -82.078156059583989, 28.555165090768785 ], [ -82.076627991814433, 28.555175997448913 ], [ -82.075252341943923, 28.555178165285366 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087746986686554, 28.553409530066585 ], [ -82.087663596936324, 28.553515855668365 ], [ -82.087556923991713, 28.553639337999044 ], [ -82.087444430972582, 28.553764538418417 ], [ -82.087347443167488, 28.553862303798713 ], [ -82.087240753974498, 28.55396693132391 ], [ -82.087151513565203, 28.554042408146291 ], [ -82.087068091718493, 28.554111024270952 ], [ -82.08695556461501, 28.554198514274415 ], [ -82.086868262780555, 28.554270560756351 ], [ -82.086775132275207, 28.554337469292701 ], [ -82.086672293350972, 28.554402668540035 ], [ -82.086577217634101, 28.554464435688477 ], [ -82.086476312236442, 28.55452106486899 ], [ -82.086379287517687, 28.554574263508989 ], [ -82.086245387988043, 28.554641196461247 ], [ -82.086134773925338, 28.554696117033654 ], [ -82.086022217212658, 28.55474761071487 ], [ -82.085913540177742, 28.55479567294898 ], [ -82.085777686148091, 28.5548488945843 ], [ -82.085649593989672, 28.554896967851153 ], [ -82.085546729269822, 28.55493302944399 ], [ -82.085385632757166, 28.554977695032701 ], [ -82.085261411114303, 28.5550111989198 ], [ -82.085108070231357, 28.555045574393972 ], [ -82.084987724121333, 28.555070504221881 ], [ -82.084857668916769, 28.55509029747201 ], [ -82.084715967303893, 28.555114381239758 ], [ -82.084605324900679, 28.555134161349422 ], [ -82.084469437648025, 28.555147100884621 ], [ -82.084358785945668, 28.555154025048594 ], [ -82.08425201681186, 28.555160947639045 ], [ -82.084145240171722, 28.555161013208444 ], [ -82.084020991398802, 28.555161089401409 ], [ -82.083962751975264, 28.555162838635027 ], [ -82.083871509064679, 28.555164608937297 ], [ -82.083737522716291, 28.555163470852293 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087977721041739, 28.55306485030443 ], [ -82.087807097614132, 28.553325501009226 ], [ -82.087760561806874, 28.553392380370713 ], [ -82.087746986686554, 28.553409530066585 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096590442762817, 28.524813422646137 ], [ -82.096421777687226, 28.525017517160332 ], [ -82.096026292617054, 28.525508024546731 ], [ -82.095514926980044, 28.526095460977462 ], [ -82.094849933872808, 28.526896402590982 ], [ -82.094314841033025, 28.527553269624466 ], [ -82.093841787933016, 28.528139814194962 ], [ -82.093136066010118, 28.529005912226566 ], [ -82.092734732955122, 28.529499842692875 ], [ -82.092595128939379, 28.529662776282798 ], [ -82.092471054646936, 28.529827413716262 ], [ -82.092387682632662, 28.529928600046372 ], [ -82.092271364595973, 28.53008466153209 ], [ -82.092153102360712, 28.530239010657507 ], [ -82.09204649028824, 28.5303984916454 ], [ -82.091972828632862, 28.530504815495526 ], [ -82.091899184566458, 28.530635135514672 ], [ -82.091794523460337, 28.530806614452775 ], [ -82.091705369522543, 28.53095580027539 ], [ -82.091610415512491, 28.531130699698444 ], [ -82.09154066171925, 28.531269589246662 ], [ -82.091467039341239, 28.531423906125728 ], [ -82.091395365964658, 28.531588506658295 ], [ -82.091331442067755, 28.531735960927499 ], [ -82.091253197575682, 28.531929459935046 ], [ -82.091199028984676, 28.532089702975764 ], [ -82.091137798670474, 28.532260602036541 ], [ -82.091089427518213, 28.532438900821145 ], [ -82.091019749739758, 28.532666920631552 ], [ -82.090977228292061, 28.532877783126217 ], [ -82.090932757476267, 28.533078360095807 ], [ -82.090896058424931, 28.533287503321237 ], [ -82.090867111051125, 28.533482929270534 ], [ -82.09084397649039, 28.533666351896347 ], [ -82.090826670937474, 28.53385662671133 ], [ -82.090813200138925, 28.533992049594591 ], [ -82.090805658708845, 28.534252597505951 ], [ -82.090801986425831, 28.534495999085259 ], [ -82.090806144325569, 28.534818246468003 ], [ -82.090812329888408, 28.535239908054095 ], [ -82.090814642323195, 28.53567528610165 ], [ -82.090827071873335, 28.536588886849785 ], [ -82.090835266118546, 28.537091111529669 ], [ -82.090833534279071, 28.537334513526762 ], [ -82.090840080983071, 28.538179554682362 ], [ -82.090858312567761, 28.53906744239135 ], [ -82.090860880594974, 28.539799356560358 ], [ -82.09087503165695, 28.540663764009857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 757", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087977721041739, 28.55306485030443 ], [ -82.087896148780061, 28.553022050127165 ], [ -82.087861184296443, 28.552998076400741 ], [ -82.087816509420605, 28.552967251041078 ], [ -82.087787362529895, 28.552936416624259 ], [ -82.087771805539191, 28.552903859939963 ], [ -82.087764005827097, 28.552864439538407 ], [ -82.087756202087078, 28.552816450440488 ], [ -82.087756158060984, 28.552763314793832 ], [ -82.087756106933128, 28.552701607745878 ], [ -82.087755541816719, 28.552615311135629 ], [ -82.087755457924374, 28.552514058696875 ], [ -82.087752333043596, 28.552386162762669 ], [ -82.08773711880319, 28.552234292855566 ], [ -82.087715840319376, 28.552050451210764 ], [ -82.08768249347635, 28.551866619082979 ], [ -82.087658256672484, 28.551752058908516 ], [ -82.087627984182234, 28.551637500781787 ], [ -82.08759167721054, 28.551525613844333 ], [ -82.087558403437725, 28.551429711863655 ], [ -82.087519075367922, 28.551312494856422 ], [ -82.08747372047749, 28.551205942928128 ], [ -82.087413251045461, 28.551067425906531 ], [ -82.087337681541754, 28.550915593497599 ], [ -82.087228870764022, 28.550705162937192 ], [ -82.087068668570055, 28.550388181334373 ], [ -82.086923591444972, 28.550113825003148 ], [ -82.08680872934913, 28.549884746371017 ], [ -82.08667876444818, 28.549637024735389 ], [ -82.086576002866238, 28.549441244828113 ], [ -82.086461152105898, 28.549225487243593 ], [ -82.086394652737496, 28.549089638163306 ], [ -82.086331177973634, 28.548964443881093 ], [ -82.086243531572961, 28.54879929704251 ], [ -82.08619214347631, 28.548692746634121 ], [ -82.086146804048923, 28.548602180219135 ], [ -82.086095406461936, 28.548484972135491 ], [ -82.086040996443273, 28.548370430556702 ], [ -82.085992610370596, 28.548245227534185 ], [ -82.08593815735469, 28.548077394117811 ], [ -82.085895796145934, 28.54793619855937 ], [ -82.085862518680912, 28.54783496683898 ], [ -82.085820166420106, 28.547707094427189 ], [ -82.085780787616017, 28.547520601750339 ], [ -82.085750489204784, 28.547368740041438 ], [ -82.085726222280087, 28.547216875453643 ], [ -82.085701955202055, 28.547059681585125 ], [ -82.085689742002813, 28.546883828622295 ], [ -82.085680558370541, 28.546721296943737 ], [ -82.085677408060747, 28.546556096854008 ], [ -82.085677229206397, 28.546334938433841 ], [ -82.085683000711597, 28.5460098590593 ], [ -82.085679761050059, 28.545735411598809 ], [ -82.085676562348269, 28.545511591304152 ], [ -82.085676367287647, 28.545269116664922 ], [ -82.08568223469328, 28.545063942248333 ], [ -82.085682091338967, 28.54488541615024 ], [ -82.085669894538071, 28.544728216482881 ], [ -82.085657734504224, 28.544618976652565 ], [ -82.085639555152525, 28.54452572840388 ], [ -82.085624387146851, 28.544427149898347 ], [ -82.085600164033139, 28.544325910600584 ], [ -82.085563860598768, 28.544211357452397 ], [ -82.085524548192595, 28.544107464719861 ], [ -82.0854912787443, 28.544014225855182 ], [ -82.085451981420221, 28.543926320013039 ], [ -82.085394554761791, 28.543811779974419 ], [ -82.084983519601224, 28.543004673492629 ], [ -82.084657131517858, 28.542384033611565 ], [ -82.084590642010383, 28.542253510968735 ], [ -82.084548299912001, 28.542133631959569 ], [ -82.084490863480937, 28.542003104583497 ], [ -82.084457581763203, 28.541891213874788 ], [ -82.084442432227803, 28.541813951392136 ], [ -82.084424219443619, 28.54167806874284 ], [ -82.084409027512891, 28.541547515311176 ], [ -82.084405913399095, 28.541427612095106 ], [ -82.08439978163932, 28.541305046095154 ], [ -82.084399668058666, 28.541161160180906 ], [ -82.084405585445708, 28.541014605913102 ], [ -82.084414437597957, 28.540764132524885 ], [ -82.084417276773451, 28.540537641872923 ], [ -82.084446499000322, 28.539343902464253 ], [ -82.084452177306176, 28.538896253945754 ], [ -82.084472706266098, 28.538152829337132 ], [ -82.084478606323472, 28.537982294153835 ], [ -82.084484525559191, 28.537838403550971 ], [ -82.084499514191293, 28.537715824479051 ], [ -82.084513352767118, 28.537595230380134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 526A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062681537711924, 28.73990976753532 ], [ -82.06267368674294, 28.738822136493745 ], [ -82.062686005748347, 28.738748032950788 ], [ -82.062705733954516, 28.73865867223769 ], [ -82.06273783282424, 28.738580201420554 ], [ -82.062810550220561, 28.738510481683026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 124A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031306560416212, 28.898310041145557 ], [ -82.030305904876343, 28.898321814032151 ], [ -82.030246323587832, 28.89834804435305 ], [ -82.030203300579814, 28.898388839527588 ], [ -82.030196271587371, 28.898409474842566 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 222A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045726577932058, 28.901119066704922 ], [ -82.04564169091249, 28.901121988787519 ], [ -82.04555411453164, 28.901118227489068 ], [ -82.045509608377969, 28.901118242335261 ], [ -82.045480896532382, 28.901119515122542 ], [ -82.045455057899858, 28.901125841621571 ], [ -82.045433525334104, 28.901133428095331 ], [ -82.045420610641827, 28.901147328688129 ], [ -82.045415253200332, 28.901161875517936 ], [ -82.045415263186442, 28.901187433111417 ], [ -82.045415277539902, 28.901218367498377 ], [ -82.04541530941367, 28.90129234601487 ], [ -82.045417851268894, 28.901906218304173 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062863436240704, 28.555177131983054 ], [ -82.060765792711663, 28.55517266015497 ], [ -82.059094424168435, 28.555173387732204 ], [ -82.057628533013983, 28.555179422110097 ], [ -82.05629113331365, 28.555176609285141 ], [ -82.055421570049447, 28.555165150893991 ], [ -82.054699854694448, 28.555165203670519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054699854694448, 28.555165203670519 ], [ -82.053401810724907, 28.555166949638004 ], [ -82.053037585594552, 28.555167089286257 ], [ -82.052721567090046, 28.555168900540796 ], [ -82.052377248954116, 28.555192675938088 ], [ -82.052078846038839, 28.555226570116631 ], [ -82.051788101902147, 28.555277348210215 ], [ -82.051550926643912, 28.55533824085251 ], [ -82.0512984580525, 28.555422784798715 ], [ -82.051091880629045, 28.555470152597188 ], [ -82.050886655983078, 28.555544813808041 ], [ -82.050660757455972, 28.555622820083418 ], [ -82.050431336465763, 28.555719528433368 ], [ -82.050212506582454, 28.555819348350404 ], [ -82.049961919342294, 28.555947235216067 ], [ -82.04889250905056, 28.556505546123816 ], [ -82.047134840035724, 28.557425649551153 ], [ -82.046746595162773, 28.557628381073553 ], [ -82.046326589297223, 28.557859175219662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054717598572111, 28.573465819987 ], [ -82.054720195185098, 28.573128301048349 ], [ -82.054722345624938, 28.571929866725299 ], [ -82.054722068689784, 28.571394241501036 ], [ -82.054727260529262, 28.570716757140993 ], [ -82.054726876726704, 28.56997446301158 ], [ -82.054723855081264, 28.569487753107619 ], [ -82.054712687361729, 28.567985204714663 ], [ -82.054716241751123, 28.566487161877244 ], [ -82.054710900978435, 28.564526714589839 ], [ -82.05471048919425, 28.56373183552282 ], [ -82.054710068574181, 28.562917846459115 ], [ -82.054709879203429, 28.562549384813074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054574509999284, 28.48128238855664 ], [ -82.054625605642613, 28.479960083725643 ], [ -82.054642716554426, 28.479515449643877 ], [ -82.054649754797538, 28.478481984084993 ], [ -82.05466890923816, 28.475721604108234 ], [ -82.054674375473965, 28.47466338321771 ], [ -82.054689847266843, 28.472660742264665 ], [ -82.054696817877854, 28.469984169794714 ], [ -82.054696816541949, 28.469906836486015 ], [ -82.054750263847652, 28.464642266627511 ], [ -82.054779905262919, 28.458711444918617 ], [ -82.054821462162579, 28.453839486947725 ], [ -82.054821430462553, 28.452037040914469 ], [ -82.054845189814486, 28.449943110424336 ], [ -82.054857052337113, 28.447926511251307 ], [ -82.054874867771261, 28.446135963275584 ], [ -82.054892670577345, 28.443643472124847 ], [ -82.054898591658812, 28.442043280845695 ], [ -82.054910446917901, 28.439562686444752 ], [ -82.054928254150312, 28.437337885214394 ], [ -82.054940101294775, 28.434428987163709 ], [ -82.054940095551245, 28.434072066909675 ], [ -82.054951954839339, 28.431829420136058 ], [ -82.054999450201493, 28.426398286677177 ], [ -82.055040980514562, 28.419890444405166 ], [ -82.055064731857343, 28.417397953899151 ], [ -82.055106293525327, 28.412769890289017 ], [ -82.055147828824744, 28.406660610094022 ], [ -82.055177530862466, 28.404197862617174 ], [ -82.05521907891881, 28.398861906901526 ], [ -82.05523688974084, 28.39677987459206 ], [ -82.055266550458995, 28.392009043711031 ], [ -82.055260579137411, 28.390628952596291 ], [ -82.055278374261704, 28.387660568553745 ], [ -82.055290218509768, 28.384585106388503 ], [ -82.055313854429315, 28.375299238109939 ], [ -82.055361417281972, 28.373776380127026 ], [ -82.055355467691186, 28.3737109432026 ], [ -82.055391048093341, 28.367226897285963 ], [ -82.055391001380528, 28.364502407006128 ], [ -82.055396878409042, 28.360320495342958 ], [ -82.055426521867943, 28.354449160360915 ], [ -82.055438346694558, 28.350273195847659 ], [ -82.055456133039513, 28.346793226162074 ], [ -82.055450183629219, 28.346715892929332 ], [ -82.055438270292996, 28.345811694890315 ], [ -82.055485754540328, 28.339696465128473 ], [ -82.055491608780429, 28.334146360083285 ], [ -82.055515370694707, 28.332183298862926 ], [ -82.055586706829359, 28.329333889211078 ], [ -82.055687729938185, 28.323206762293726 ], [ -82.055687715296216, 28.322385846186133 ], [ -82.055705531257004, 28.320589349146118 ], [ -82.055717376931511, 28.317609067039161 ], [ -82.055723294704023, 28.315770928572913 ], [ -82.055733982104513, 28.314337241823161 ], [ -82.055741102376132, 28.313486640620795 ], [ -82.055761597069676, 28.312982901699993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054585279586078, 28.501716081624437 ], [ -82.054602155370958, 28.500816108178139 ], [ -82.054608104700435, 28.50048298418843 ], [ -82.05461999971908, 28.499858375891463 ], [ -82.054625928624205, 28.498680539293908 ], [ -82.054637797849253, 28.49706845109543 ], [ -82.054625872616199, 28.49545636110614 ], [ -82.054625854393251, 28.494385600870039 ], [ -82.054619873102197, 28.492523668201549 ], [ -82.054631743626459, 28.490953220607395 ], [ -82.054619821518898, 28.489531489963007 ], [ -82.054613854759452, 28.488442883381062 ], [ -82.054607885427956, 28.487253149195706 ], [ -82.054584066954746, 28.485914699449268 ], [ -82.054578103753258, 28.485004552888288 ], [ -82.054595916858915, 28.483100980564341 ], [ -82.054574509999284, 28.48128238855664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 478A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091885996545514, 28.557393682071215 ], [ -82.092901268363264, 28.557835409243534 ], [ -82.093478790105735, 28.558083900894339 ], [ -82.094890736206338, 28.558694910028731 ], [ -82.095458611582629, 28.558941692654709 ], [ -82.095912524163666, 28.559135709502865 ], [ -82.09689182738046, 28.559561189608928 ], [ -82.097844097807709, 28.559973045664499 ], [ -82.099223258172771, 28.560570395749266 ], [ -82.099984311932431, 28.560897140377584 ], [ -82.100848717408724, 28.561272601720528 ], [ -82.10192077781042, 28.561736331228381 ], [ -82.102154990512048, 28.561838437615442 ], [ -82.102316769628615, 28.561910767086896 ], [ -82.102497861989789, 28.561989473222976 ], [ -82.102659645679495, 28.56206393181839 ], [ -82.102823848957101, 28.562149041507595 ], [ -82.102954256657, 28.562225654663923 ], [ -82.103106408394595, 28.56232568976856 ], [ -82.103215092372309, 28.562400186792544 ], [ -82.103367271653369, 28.562527922721934 ], [ -82.103509791572606, 28.562649273560869 ], [ -82.103640258791913, 28.562785549167018 ], [ -82.103765894907369, 28.562917566524927 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 132nd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103765894907369, 28.562917566524927 ], [ -82.104050667994173, 28.562889650038418 ], [ -82.104654062289427, 28.562887057617068 ], [ -82.106020138855627, 28.562875353671892 ], [ -82.107325902803183, 28.562889250398829 ], [ -82.108101939845668, 28.562917629026945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 478A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103765894907369, 28.562917566524927 ], [ -82.103821479010136, 28.562992104214246 ], [ -82.1038777783141, 28.563063179032952 ], [ -82.103964630284921, 28.563179643917064 ], [ -82.104051503103037, 28.563316084876121 ], [ -82.104123284709317, 28.563445879748276 ], [ -82.104202644482569, 28.563612292347877 ], [ -82.104266903173325, 28.563762067209304 ], [ -82.104334957532885, 28.563935145850134 ], [ -82.104380362394394, 28.564088268293396 ], [ -82.10441824057645, 28.564254711486292 ], [ -82.104444789159416, 28.564407846484613 ], [ -82.104463770545877, 28.564534351790485 ], [ -82.104471439678576, 28.564664193582718 ], [ -82.10447066323168, 28.564830250273925 ], [ -82.104463582425822, 28.565299708584348 ], [ -82.104444905042385, 28.566578463850586 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 778", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10811208844045, 28.566543882041167 ], [ -82.108428506759964, 28.566545166465708 ], [ -82.109028134159459, 28.566528042414227 ], [ -82.111158948621025, 28.566526328011417 ], [ -82.112328058642149, 28.566518713351773 ], [ -82.112784371637574, 28.566498360701431 ], [ -82.114345719674276, 28.566505386218974 ], [ -82.115514837423547, 28.56650440341652 ], [ -82.116189918337284, 28.56651215547447 ], [ -82.116782435947684, 28.56654553007224 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 782A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0971472905415, 28.573707531668912 ], [ -82.096858838991267, 28.573669159013306 ], [ -82.096737553326435, 28.573648029738539 ], [ -82.096639432794888, 28.573640820726645 ], [ -82.09639025559963, 28.57363253601909 ], [ -82.096128300698624, 28.573627080558474 ], [ -82.095802451968751, 28.573613208930325 ], [ -82.095479800676003, 28.573604974850294 ], [ -82.09521465361999, 28.573599519852056 ], [ -82.094946316318627, 28.573599706206465 ], [ -82.094639640215433, 28.573594277975911 ], [ -82.094422413441265, 28.573591609028771 ], [ -82.094288245308931, 28.573591701488642 ], [ -82.093924053613904, 28.57356939045631 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 478A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104444905042385, 28.566578463850586 ], [ -82.104437930361129, 28.567927439527921 ], [ -82.104425709229972, 28.568491445739912 ], [ -82.104416567347911, 28.568937010348542 ], [ -82.104397661764509, 28.569202103295936 ], [ -82.104362737901397, 28.569419270429481 ], [ -82.104299091942167, 28.569664656848623 ], [ -82.104235389409652, 28.569850823226236 ], [ -82.104155721933978, 28.570045463922117 ], [ -82.104063092136059, 28.570220165368251 ], [ -82.103980285153369, 28.570363934092143 ], [ -82.103916904290969, 28.570463339526082 ], [ -82.103819488030013, 28.570605744970624 ], [ -82.103702800159141, 28.57075263246449 ], [ -82.103587939467175, 28.570880612527326 ], [ -82.103431559249799, 28.571030189041942 ], [ -82.103294320254236, 28.571154372455467 ], [ -82.103147486205259, 28.571267282740877 ], [ -82.102933615636672, 28.571425363298324 ], [ -82.102726139090109, 28.571591897302323 ], [ -82.102556960465478, 28.571721743597866 ], [ -82.102394163796163, 28.571843125416102 ], [ -82.102244127100462, 28.571950397453108 ], [ -82.102052609902273, 28.572105639173266 ], [ -82.101886635778854, 28.572246762455872 ], [ -82.101787692452916, 28.572334254416123 ], [ -82.101644066705049, 28.572464080552091 ], [ -82.101516404902696, 28.572585435203578 ], [ -82.10139193708919, 28.572706787366599 ], [ -82.101251513751905, 28.572845070196195 ], [ -82.10110790384114, 28.572991815622625 ], [ -82.100951518667955, 28.573144210880425 ], [ -82.100801526371995, 28.573299419270594 ], [ -82.100626002316076, 28.573480028339308 ], [ -82.100495162558673, 28.573621124057247 ], [ -82.100367989876958, 28.573753428114408 ], [ -82.100217504045148, 28.573897687152723 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 782", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100217504045148, 28.573897687152723 ], [ -82.100112451717735, 28.573863557040564 ], [ -82.099880812879476, 28.573830937782393 ], [ -82.098595978524429, 28.573758572840134 ], [ -82.097894604093483, 28.573761006404652 ], [ -82.097569049547005, 28.573770882220494 ], [ -82.097396427361488, 28.573759432580875 ], [ -82.097295906743327, 28.573747930588201 ], [ -82.097223786196992, 28.57373062341653 ], [ -82.0971472905415, 28.573707531668912 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 478A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100217504045148, 28.573897687152723 ], [ -82.100164973605388, 28.573952245310846 ], [ -82.09994669282429, 28.574181935358318 ], [ -82.099748453714056, 28.574376467706916 ], [ -82.099352809848085, 28.574786630451975 ], [ -82.098868471597939, 28.575278226897019 ], [ -82.098517156107633, 28.575637120882742 ], [ -82.098182900617417, 28.575986959307127 ], [ -82.097974835611311, 28.576198073050151 ], [ -82.097811116719456, 28.576369975870378 ], [ -82.097619478204322, 28.57659335823281 ], [ -82.097482345059504, 28.576757790119668 ], [ -82.097331790992769, 28.576944577077061 ], [ -82.097198166610241, 28.577112787901527 ], [ -82.097089652716676, 28.577273418229598 ], [ -82.096953695157751, 28.57744644176373 ], [ -82.096845181808817, 28.577608445257763 ], [ -82.096730145743507, 28.577793248304431 ], [ -82.096616114027242, 28.577967873896359 ], [ -82.096491519123134, 28.578192743071895 ], [ -82.09635856571505, 28.578412842802667 ], [ -82.096269954017927, 28.578584689920135 ], [ -82.096157494370047, 28.578813815618201 ], [ -82.096079119293677, 28.578979629553121 ], [ -82.095973474352988, 28.57919669678423 ], [ -82.095871246309272, 28.579413758826639 ], [ -82.095772436554569, 28.579636846957797 ], [ -82.09570768534391, 28.579769499892535 ], [ -82.095670211083331, 28.579859938299897 ], [ -82.095639546254304, 28.579929277831496 ], [ -82.095605471525289, 28.580004646495837 ], [ -82.095520268846371, 28.58017347687553 ], [ -82.095421428418945, 28.580366428250549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 783", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090287736103932, 28.578313982479141 ], [ -82.090160760144798, 28.578584778569819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 783", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.095421428418945, 28.580366428250549 ], [ -82.095250635456367, 28.580275192044503 ], [ -82.094977353722214, 28.580115652518803 ], [ -82.094768963735731, 28.579980175468542 ], [ -82.09443535756256, 28.579778852921148 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 124th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09443535756256, 28.579778852921148 ], [ -82.093138415210291, 28.579781445888511 ], [ -82.092028050909136, 28.579778201084672 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 783", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09443535756256, 28.579778852921148 ], [ -82.094201902322652, 28.579643024122539 ], [ -82.093925208509205, 28.579483483903747 ], [ -82.0937031567627, 28.579337467066349 ], [ -82.093481120893742, 28.579211039752032 ], [ -82.09332397766498, 28.579108679406175 ], [ -82.093180514615156, 28.579033432241896 ], [ -82.093050728955532, 28.578982286279217 ], [ -82.09290045936352, 28.578928139357888 ], [ -82.092657991009787, 28.578858988242448 ], [ -82.092360892413225, 28.578786857915961 ], [ -82.092022819083624, 28.57870872681681 ], [ -82.091684752497628, 28.578636623434178 ], [ -82.091261310639609, 28.578540465477765 ], [ -82.090933485220205, 28.578465339563675 ], [ -82.090287736103932, 28.578313982479141 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 478A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.095421428418945, 28.580366428250549 ], [ -82.095239010482473, 28.580760035195858 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 120th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.095239010482473, 28.580760035195858 ], [ -82.095151100179649, 28.580729374211185 ], [ -82.095059362396853, 28.580716655335916 ], [ -82.094982111663512, 28.58070818541303 ], [ -82.094880731146006, 28.580710387957453 ], [ -82.094714169590461, 28.580704109286614 ], [ -82.094501765999013, 28.580719171829138 ], [ -82.094238667319644, 28.580730005368284 ], [ -82.093584528614116, 28.580747500267211 ], [ -82.09348074493478, 28.580760356486227 ], [ -82.093335913837336, 28.580760456199322 ], [ -82.093087268997948, 28.580739317515597 ], [ -82.092901387879081, 28.580722397577251 ], [ -82.092365545950543, 28.580758982905596 ], [ -82.092102438500362, 28.580761291470427 ], [ -82.091906914299543, 28.58075929240853 ], [ -82.091728306341167, 28.580778586988242 ], [ -82.091537627808293, 28.580795760771654 ], [ -82.091392802175889, 28.580802249712466 ], [ -82.091223832655459, 28.580802363278782 ], [ -82.091040374411961, 28.580796091352632 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 117th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091474770374376, 28.584084120972758 ], [ -82.091014096193859, 28.583264762981411 ], [ -82.090803856563952, 28.582969448920856 ], [ -82.090644605521476, 28.582702514695782 ], [ -82.090349593002699, 28.582421975027355 ], [ -82.090058576073403, 28.582278375447686 ], [ -82.08974041652074, 28.58214164182003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 756", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055561363298878, 28.597255080277975 ], [ -82.055391455200777, 28.597256796392649 ], [ -82.055212789078723, 28.597254473310816 ], [ -82.054713971291889, 28.597254672342618 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 756A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055571149394495, 28.596336184771175 ], [ -82.055219237904439, 28.59633730624871 ], [ -82.054713498247082, 28.596340564285132 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 756B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055561363298878, 28.597255080277975 ], [ -82.055571149394495, 28.596336184771175 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 721", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062952749284662, 28.587998532788177 ], [ -82.06288812719626, 28.588037619404751 ], [ -82.062836104439725, 28.588068622452393 ], [ -82.062775437509487, 28.588085127860914 ], [ -82.062712432940558, 28.588095455961064 ], [ -82.062637759401937, 28.588103729297181 ], [ -82.062276048548796, 28.58812861148224 ], [ -82.061267877125005, 28.588114645738976 ], [ -82.059431244252409, 28.588113391330186 ], [ -82.058705455937968, 28.588107522691534 ], [ -82.056141852692804, 28.588107093134891 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 753", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062952749284662, 28.587998532788177 ], [ -82.062958087276769, 28.587166357334475 ], [ -82.06295784083143, 28.586752331406434 ], [ -82.062973830635968, 28.586173511063752 ], [ -82.062978367233285, 28.585953106958346 ], [ -82.062975995101112, 28.585887191816003 ], [ -82.062980604249333, 28.585790378119015 ], [ -82.062980560095255, 28.58571622260563 ], [ -82.062999171618785, 28.585619402491378 ], [ -82.063041129878954, 28.585539051180724 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 753 South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090561730131157, 28.584623532758787 ], [ -82.090485689818422, 28.584567834412212 ], [ -82.09037869360148, 28.584532276920722 ], [ -82.090197029747713, 28.584503893450886 ], [ -82.089973844385256, 28.584489357322486 ], [ -82.089631285089268, 28.584489581042611 ], [ -82.0887185403476, 28.584431412880459 ], [ -82.088043951699433, 28.584403685997749 ], [ -82.087633740738838, 28.584399925490949 ], [ -82.08729190369732, 28.584404167295947 ], [ -82.085327502046439, 28.584453681120316 ], [ -82.084165241552142, 28.584450378172615 ], [ -82.08281612221505, 28.584463269801692 ], [ -82.081298343858634, 28.584456130380623 ], [ -82.079579998899646, 28.584420932884122 ], [ -82.07741049684914, 28.58448251981104 ], [ -82.076061377978832, 28.584499367823145 ], [ -82.073796240853298, 28.584526433480928 ], [ -82.072284057573498, 28.584539596717629 ], [ -82.071348265749677, 28.584533907018852 ], [ -82.070764855043464, 28.584530089759152 ], [ -82.069556029398626, 28.584524529045876 ], [ -82.069357670296881, 28.584524628464344 ], [ -82.069068290797645, 28.584510354839608 ], [ -82.067840786919007, 28.584488309626053 ], [ -82.067465074015232, 28.584490553797785 ], [ -82.067329725386244, 28.584496799448967 ], [ -82.067243390321622, 28.58451126028929 ], [ -82.067228286684951, 28.584513860115496 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 743", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071252188257958, 28.606355801300584 ], [ -82.071256047295748, 28.605761535396763 ], [ -82.071243682263386, 28.605218450545003 ], [ -82.071241190512467, 28.603486223295747 ], [ -82.071254443452119, 28.602885173873304 ], [ -82.071238711914631, 28.60270779880916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 749", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062896730351412, 28.610036367586254 ], [ -82.06294776815497, 28.60990101295431 ], [ -82.062976113131583, 28.609810779424375 ], [ -82.06300442424245, 28.609660398570171 ], [ -82.063009913578199, 28.609342117875666 ], [ -82.063003968973717, 28.608898537932454 ], [ -82.06300660781254, 28.60856021029706 ], [ -82.063009274005168, 28.608269498265596 ], [ -82.062994905524718, 28.607986313237834 ], [ -82.062994723266826, 28.607680566777766 ], [ -82.062994463329247, 28.607244500621672 ], [ -82.062993973348071, 28.606422491464411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 24th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064577086663874, 28.608584542014118 ], [ -82.064579869019781, 28.608489308542573 ], [ -82.064568478229702, 28.608439191561235 ], [ -82.064542887769122, 28.608389080346939 ], [ -82.064486046224758, 28.60831893558499 ], [ -82.064440573557789, 28.608261315374506 ], [ -82.064409296015043, 28.608196171994507 ], [ -82.064406413725237, 28.608126001893485 ], [ -82.064406303751312, 28.607945560807234 ], [ -82.064400341156968, 28.607481931729954 ], [ -82.064405671926863, 28.606910532525124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 740", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063760075925984, 28.610043237224289 ], [ -82.063580590865115, 28.610043320380505 ], [ -82.0633312445146, 28.6100436863602 ], [ -82.062896730351412, 28.610036367586254 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 24th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063760075925984, 28.610043237224289 ], [ -82.06375998156453, 28.60988685529313 ], [ -82.063759873896984, 28.609708420154885 ], [ -82.063763956241615, 28.608946555619681 ], [ -82.063763882257035, 28.608822250971919 ], [ -82.063766124052762, 28.608772129404038 ], [ -82.063779723614147, 28.608717989854863 ], [ -82.063811998730273, 28.608676168513266 ], [ -82.063852372642458, 28.608631745561379 ], [ -82.063902336180121, 28.608601648215259 ], [ -82.06395231041904, 28.608587590858725 ], [ -82.064074993981947, 28.608585528708065 ], [ -82.064218124005066, 28.608585461894268 ], [ -82.064411236751766, 28.608585371508852 ], [ -82.064577086663874, 28.608584542014118 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 740", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064568899411796, 28.610058898652351 ], [ -82.063760075925984, 28.610043237224289 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 24th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064568899411796, 28.610058898652351 ], [ -82.064568840201289, 28.609958654033981 ], [ -82.064568776899847, 28.609858407611362 ], [ -82.064570930123864, 28.609663932303597 ], [ -82.064573001254416, 28.609335128252457 ], [ -82.064575064819977, 28.60899228917836 ], [ -82.064577086663874, 28.608584542014118 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 740", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065039197387534, 28.610064691832456 ], [ -82.064568899411796, 28.610058898652351 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 23rd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065039197387534, 28.610064691832456 ], [ -82.065047719374292, 28.609146444116742 ], [ -82.065056348400404, 28.608400618250471 ], [ -82.06505849329541, 28.60819411108281 ], [ -82.065074359207699, 28.608131951221939 ], [ -82.065108393283879, 28.608061763645349 ], [ -82.065151515190436, 28.607989567650836 ], [ -82.065205989717981, 28.607905336243387 ], [ -82.065262713298551, 28.607789024617528 ], [ -82.065278528038021, 28.607642660088587 ], [ -82.065280685304145, 28.607460212912219 ], [ -82.065278316046843, 28.607297816999381 ], [ -82.065275961283518, 28.607165495203972 ], [ -82.065278166197345, 28.607055225359947 ], [ -82.065282675954606, 28.607003094967858 ], [ -82.065305352816765, 28.606934916826475 ], [ -82.065326844802655, 28.606903505135683 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 102nd Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067881658636878, 28.606915624524646 ], [ -82.067729408197735, 28.606861567353082 ], [ -82.067611254035313, 28.606837566454061 ], [ -82.067513567109046, 28.606843628618151 ], [ -82.06743405999012, 28.606855697694769 ], [ -82.067340926230628, 28.60687779751531 ], [ -82.067096411050457, 28.60694825829599 ], [ -82.0670342777793, 28.606966163112798 ], [ -82.066993384846441, 28.606966183065961 ], [ -82.066945669810465, 28.606958186324032 ], [ -82.066868410682133, 28.606934164838229 ], [ -82.066763881270688, 28.606900133361165 ], [ -82.06667526578849, 28.606880128191335 ], [ -82.06660483209815, 28.606874146455709 ], [ -82.066550312502741, 28.606884197892853 ], [ -82.066425388738139, 28.606930369801855 ], [ -82.06636406041541, 28.606950448564675 ], [ -82.066295910803532, 28.606960507386422 ], [ -82.066236838102739, 28.606954520878308 ], [ -82.06617321513248, 28.606938512428467 ], [ -82.066102766151019, 28.606906467216948 ], [ -82.066039127965595, 28.60686439548866 ], [ -82.06595731135171, 28.606818321553096 ], [ -82.065877779302966, 28.606792295591251 ], [ -82.065805070997442, 28.606780301329096 ], [ -82.065661940134547, 28.606778366618812 ], [ -82.065534716535311, 28.606778426465286 ], [ -82.065441588432108, 28.606808544085432 ], [ -82.065387078681539, 28.60683463236041 ], [ -82.065348481569202, 28.606874750767297 ], [ -82.065326844802655, 28.606903505135683 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 740", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067229349282613, 28.610049602318266 ], [ -82.065039197387534, 28.610064691832456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 22nd Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067229349282613, 28.610049602318266 ], [ -82.06723133943369, 28.609606518634266 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 100th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06723133943369, 28.609606518634266 ], [ -82.067024589947721, 28.609602610593388 ], [ -82.0668133024555, 28.609606722645431 ], [ -82.066658813301828, 28.609610807715921 ], [ -82.066524765793858, 28.60960886680477 ], [ -82.066479327963449, 28.609610894708712 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 22nd Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06723133943369, 28.609606518634266 ], [ -82.067230927162285, 28.60895693177709 ], [ -82.067235238056895, 28.608592038338163 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 22nd Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067971972760688, 28.60957607990791 ], [ -82.067978768292846, 28.609543999230304 ], [ -82.067978734758697, 28.60949187282268 ], [ -82.067980881699086, 28.609297396556602 ], [ -82.067984972024732, 28.608593674209693 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 100th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067971972760688, 28.60957607990791 ], [ -82.067940176332854, 28.609592134752042 ], [ -82.06784930198458, 28.609591758292233 ], [ -82.067619831450671, 28.609590288778428 ], [ -82.06723133943369, 28.609606518634266 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 740", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069688668197756, 28.610033573149913 ], [ -82.068669750044222, 28.61002483130703 ], [ -82.067229349282613, 28.610049602318266 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 743", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071280248935977, 28.610065602786253 ], [ -82.071268183247156, 28.609019804203356 ], [ -82.071264887363355, 28.608343151301824 ], [ -82.071255683367312, 28.607328176741696 ], [ -82.071252485644834, 28.606796879952839 ], [ -82.071252331881524, 28.606568822326217 ], [ -82.071255110528028, 28.60647860029988 ], [ -82.071252188257958, 28.606355801300584 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 740", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075372049592985, 28.610085469758229 ], [ -82.074499620335502, 28.610087951444672 ], [ -82.073406806863787, 28.610080520621963 ], [ -82.072016364729564, 28.610071233431945 ], [ -82.071280248935977, 28.610065602786253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 54th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013544897585632, 28.758943385592911 ], [ -82.013573912782093, 28.758663314244874 ], [ -82.013603543387049, 28.758441546091007 ], [ -82.013633905496306, 28.758223852722207 ], [ -82.013643496620105, 28.758106680422166 ], [ -82.013641978709146, 28.757875987646411 ], [ -82.013641721926675, 28.757520127899298 ], [ -82.013634237529359, 28.757461327248624 ], [ -82.013597913423681, 28.757176021321463 ], [ -82.01356300725746, 28.75687900856429 ], [ -82.013537528394707, 28.756684847437477 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 54th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013537528394707, 28.756684847437477 ], [ -82.013510383582101, 28.756851447674009 ], [ -82.013463418916814, 28.757207700760798 ], [ -82.013435397918613, 28.757420270545037 ], [ -82.013420290903639, 28.757598398544143 ], [ -82.013425634966836, 28.75801150537831 ], [ -82.013425421369206, 28.758122274849136 ], [ -82.01343798828934, 28.758243872750626 ], [ -82.013467411060503, 28.758449391861166 ], [ -82.013516666486069, 28.75882856378232 ], [ -82.013544897585632, 28.758943385592911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 54th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013544897585632, 28.758943385592911 ], [ -82.013545319547916, 28.759156965979734 ], [ -82.01354697755427, 28.759993583989598 ], [ -82.013548511028347, 28.760767635207834 ], [ -82.013549925249862, 28.76148044515984 ], [ -82.013550996432869, 28.762021245403297 ], [ -82.013553900358801, 28.763484653102296 ], [ -82.013554347749562, 28.763884725155908 ], [ -82.013547106864024, 28.764023999388112 ], [ -82.013535109397338, 28.764139156028982 ], [ -82.013516676524233, 28.764259561145678 ], [ -82.013493209895174, 28.76437518895926 ], [ -82.013464584880879, 28.764488583110811 ], [ -82.013441960203082, 28.764565392251246 ], [ -82.013410235108481, 28.764660474152322 ], [ -82.01337944329515, 28.764742549960591 ], [ -82.013335813715727, 28.764846376395734 ], [ -82.013288282085384, 28.764947099203599 ], [ -82.013236687710062, 28.765045431225371 ], [ -82.013184790120448, 28.76513532839466 ], [ -82.013126999292197, 28.765226904387443 ], [ -82.013076687850344, 28.765300575905517 ], [ -82.012991500271085, 28.765414735695625 ], [ -82.012909022491627, 28.765514761296394 ], [ -82.012835695293347, 28.765596448248321 ], [ -82.012716922305486, 28.765716623872436 ], [ -82.012248324680129, 28.766128823572014 ], [ -82.011717041626213, 28.766593712956769 ], [ -82.011496385660749, 28.766787616727438 ], [ -82.011367401282442, 28.766900962316779 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 96th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075339964004783, 28.615903698178585 ], [ -82.075116341071151, 28.615897795934949 ], [ -82.074747597588072, 28.615858833163454 ], [ -82.074293508470916, 28.61583196910437 ], [ -82.073911117289981, 28.615805061296633 ], [ -82.073597003387434, 28.615775104683376 ], [ -82.073446769567553, 28.61575108461351 ], [ -82.073241905000714, 28.615718054818849 ], [ -82.07301996742062, 28.615682022695154 ], [ -82.072705853080933, 28.61564905110313 ], [ -82.072519717180995, 28.615646679921902 ], [ -82.072388628539272, 28.615658317153162 ], [ -82.072275006636133, 28.615656448758216 ], [ -82.071770250837986, 28.615622008834894 ], [ -82.071577967471995, 28.615612469582764 ], [ -82.071455592266815, 28.615589396468277 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 747", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075414936423144, 28.620951466318406 ], [ -82.075397205036012, 28.619278438769872 ], [ -82.075382881186385, 28.61789572047465 ], [ -82.075352651058864, 28.616937004766665 ], [ -82.075339964004783, 28.615903698178585 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 730", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075414936423144, 28.620951466318406 ], [ -82.073844401482674, 28.620952321963003 ], [ -82.072978898617336, 28.620953161499937 ], [ -82.072098033396216, 28.620950615301702 ], [ -82.071217585278859, 28.620944790378488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 20th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071217585278859, 28.620944790378488 ], [ -82.071222935016522, 28.619954989027857 ], [ -82.071219296007342, 28.61962059655977 ], [ -82.071212238427407, 28.619280179123948 ], [ -82.07120841973358, 28.618680678452836 ], [ -82.071207799291216, 28.617761841668699 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 7th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062957004384415, 28.619171917073007 ], [ -82.062954522904064, 28.619591270585193 ], [ -82.06294116405769, 28.620090158545889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 7th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063011100172091, 28.61739791230994 ], [ -82.063010098992095, 28.618054422694041 ], [ -82.062967415726973, 28.618309110493243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 7th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062967415726973, 28.618309110493243 ], [ -82.062951312755814, 28.618786311171423 ], [ -82.062957004384415, 28.619171917073007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 6th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061870332276612, 28.617391990553159 ], [ -82.061871648339718, 28.617425115757584 ], [ -82.061877142535437, 28.617480544921083 ], [ -82.061872160761894, 28.618299967300882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 7th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061872160761894, 28.618299967300882 ], [ -82.06256318042584, 28.618304473904118 ], [ -82.062967415726973, 28.618309110493243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 6th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061872160761894, 28.618299967300882 ], [ -82.061874998818269, 28.618485543006496 ], [ -82.061869943589329, 28.619179642062491 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 8th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061869943589329, 28.619179642062491 ], [ -82.062028355936874, 28.619174750371158 ], [ -82.06219496638775, 28.619174674181057 ], [ -82.062315140488053, 28.619167390205142 ], [ -82.062511799390876, 28.619172120296934 ], [ -82.062724839467691, 28.619169614888062 ], [ -82.062957004384415, 28.619171917073007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 6th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061869943589329, 28.619179642062491 ], [ -82.061878435752988, 28.61968816161367 ], [ -82.061881398114195, 28.620085819484288 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 9th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061881398114195, 28.620085819484288 ], [ -82.062154535654912, 28.620088107297036 ], [ -82.06294116405769, 28.620090158545889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 7th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06294116405769, 28.620090158545889 ], [ -82.062946722152802, 28.620251629641984 ], [ -82.062950284845229, 28.62050016566943 ], [ -82.062953778424628, 28.620632717724291 ], [ -82.062974401126453, 28.620864676263437 ], [ -82.06297787678605, 28.620967102817943 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 10th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060923204419751, 28.620963509952006 ], [ -82.06297787678605, 28.620967102817943 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 6th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060891092332852, 28.617379762516325 ], [ -82.061147833223373, 28.617379649474756 ], [ -82.06178695100084, 28.617379363716896 ], [ -82.061870332276612, 28.617391990553159 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 5th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060891092332852, 28.617379762516325 ], [ -82.060888479695123, 28.617582209023134 ], [ -82.060894180391088, 28.617996736875384 ], [ -82.060894290148426, 28.618187131411279 ], [ -82.060897077852886, 28.618288353742525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 8th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059870611537093, 28.619170886614448 ], [ -82.060430526558406, 28.619161001104292 ], [ -82.060892120038133, 28.619160798360618 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 7th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059872844340475, 28.618291211864367 ], [ -82.060897077852886, 28.618288353742525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 4th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059872844340475, 28.618291211864367 ], [ -82.059864781616824, 28.618524992639014 ], [ -82.059870611537093, 28.619170886614448 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 7th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058878654399649, 28.618296461345974 ], [ -82.059725361866356, 28.618303326738559 ], [ -82.059872844340475, 28.618291211864367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 6th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059836818431435, 28.617375405015498 ], [ -82.060891092332852, 28.617379762516325 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 684", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182597477843572, 28.581644873036268 ], [ -82.182679284229394, 28.581596572911199 ], [ -82.182714723896609, 28.581570021801483 ], [ -82.182758311174311, 28.581519363600304 ], [ -82.182782782164153, 28.581463911608655 ], [ -82.182804528909955, 28.581410875227796 ], [ -82.182815368448559, 28.581365080334901 ], [ -82.182823424434972, 28.581287966153088 ], [ -82.182830962989271, 28.580912076165216 ], [ -82.182837509965779, 28.579696949096434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 50th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.186171775993969, 28.581676420204349 ], [ -82.186331646537155, 28.581625361949094 ], [ -82.186746508500761, 28.581598289632197 ], [ -82.187090438760961, 28.581592998531857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.186171775993969, 28.581676420204349 ], [ -82.186270061120396, 28.581685923835327 ], [ -82.186348693447542, 28.581695454267145 ], [ -82.18642077077088, 28.581703066215766 ], [ -82.18659986640057, 28.581720169567728 ], [ -82.186778957323057, 28.581733416979908 ], [ -82.186896886185011, 28.581737111023536 ], [ -82.187071605672656, 28.58174843664013 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 50th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187071605672656, 28.58174843664013 ], [ -82.187074222165791, 28.581684581487796 ], [ -82.187085059881127, 28.581638786263586 ], [ -82.187090438760961, 28.581592998531857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182840418279113, 28.581644547370814 ], [ -82.183997807998296, 28.581647808408572 ], [ -82.184649676096598, 28.581659215862459 ], [ -82.185339747798395, 28.581664061446592 ], [ -82.185850742364337, 28.581663365617228 ], [ -82.186171775993969, 28.581676420204349 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178664007806901, 28.581645265962106 ], [ -82.179421487616636, 28.581641559532795 ], [ -82.180520199598092, 28.581651253780993 ], [ -82.181459222967035, 28.581658439365608 ], [ -82.182597477843572, 28.581644873036268 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 50th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187090438760961, 28.581592998531857 ], [ -82.187114792416637, 28.581472491541838 ], [ -82.187122687570039, 28.581306226793469 ], [ -82.187094248191272, 28.580969659566495 ], [ -82.187072217690087, 28.580859818764893 ], [ -82.187054797846201, 28.580380150097419 ], [ -82.187056445835225, 28.579879585842018 ], [ -82.187043156118349, 28.579523090252241 ], [ -82.187041623893336, 28.579427174216381 ], [ -82.18704027772813, 28.579228349332517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 50th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187071605672656, 28.58174843664013 ], [ -82.18724881226089, 28.581621695698541 ], [ -82.187363307467407, 28.581537206315065 ], [ -82.187415104116383, 28.58149858251344 ], [ -82.187458700894339, 28.581455152363844 ], [ -82.187502273032251, 28.581397264901732 ], [ -82.187545836577897, 28.581334558025542 ], [ -82.187600292052849, 28.581257379712671 ], [ -82.18763838487898, 28.581187452572074 ], [ -82.187671025357645, 28.581122351437585 ], [ -82.187698196403545, 28.581052439317908 ], [ -82.187721027106605, 28.580960728061676 ], [ -82.187743352768649, 28.580801044929487 ], [ -82.187761190361385, 28.580661324182916 ], [ -82.187787874306068, 28.58040983069003 ], [ -82.187814636082763, 28.580202245071408 ], [ -82.187854991185887, 28.580010604953575 ], [ -82.187907216960312, 28.579858433166841 ], [ -82.187999166905598, 28.579719037882182 ], [ -82.188179600724197, 28.579475316043464 ], [ -82.188283307221113, 28.579311528439352 ], [ -82.188373441318873, 28.579143767547702 ], [ -82.188449924865196, 28.578928130012066 ], [ -82.18849932094129, 28.578736477170605 ], [ -82.188512587147784, 28.578568823366147 ], [ -82.188512253896505, 28.578381229443778 ], [ -82.188521019078607, 28.578225555043783 ], [ -82.188565951370649, 28.578065838641788 ], [ -82.18864254051006, 28.577910070375356 ], [ -82.188749393649246, 28.577753984038097 ], [ -82.18889068679006, 28.577606383346311 ], [ -82.18902608287992, 28.577466499400526 ], [ -82.189129865616351, 28.57734661360362 ], [ -82.189229067733038, 28.577194805578898 ], [ -82.189364335283528, 28.576983077815008 ], [ -82.189486017201176, 28.576759391999374 ], [ -82.189594148278601, 28.576543708851371 ], [ -82.189675306100966, 28.57641587467549 ], [ -82.189755694907134, 28.576299370438356 ], [ -82.189857592163747, 28.57622015530211 ], [ -82.189937096489444, 28.576160063073562 ], [ -82.190041026448228, 28.576123995919403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187071605672656, 28.58174843664013 ], [ -82.187156222627763, 28.581747115841313 ], [ -82.187221735793315, 28.58174702586129 ], [ -82.187475596112435, 28.581746676894333 ], [ -82.187838236397468, 28.581747863145761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187838236397468, 28.581747863145761 ], [ -82.189584683318444, 28.581745685790477 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189584683318444, 28.581745685790477 ], [ -82.189773558606802, 28.581735544967749 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656H", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189579237676057, 28.584494190898578 ], [ -82.188137931005059, 28.584496671085237 ], [ -82.188028736981835, 28.584494411631919 ], [ -82.187963189906071, 28.584475226221109 ], [ -82.187916732138277, 28.584446376541198 ], [ -82.187883928147912, 28.584419916373072 ], [ -82.187851086684958, 28.584371772966939 ], [ -82.187837333494357, 28.584313963522906 ], [ -82.187826281894587, 28.58423928467629 ], [ -82.187833786723459, 28.583853757658087 ], [ -82.187834513677302, 28.582726119354941 ], [ -82.187838236397468, 28.581747863145761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 47th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182868628750711, 28.584284849269586 ], [ -82.18284397074116, 28.584231873351055 ], [ -82.182843866611591, 28.584171638533483 ], [ -82.182849088141751, 28.5840342905184 ], [ -82.182864845327188, 28.583675256238049 ], [ -82.182874135367285, 28.582733136023343 ], [ -82.182868845495335, 28.582337760995404 ], [ -82.182894182868978, 28.582190900527248 ], [ -82.182867913744758, 28.581799395791251 ], [ -82.182840418279113, 28.581644547370814 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 118th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182868628750711, 28.584284849269586 ], [ -82.182895973507399, 28.58431131888295 ], [ -82.182953338434572, 28.584335335334156 ], [ -82.182994294152067, 28.58434009976245 ], [ -82.183087103785439, 28.584339975122663 ], [ -82.183223578783156, 28.584332563062791 ], [ -82.183586651691655, 28.584341712412225 ], [ -82.183927828073138, 28.584317157178464 ], [ -82.184340030559781, 28.584323828948666 ], [ -82.184678503480029, 28.584313732811459 ], [ -82.184929663746317, 28.584327849575615 ], [ -82.185027968092243, 28.584346991986763 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.171423606453118, 28.581632009994465 ], [ -82.172513153472977, 28.581626742162296 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 682", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.171320973125944, 28.592123622286536 ], [ -82.171333550574388, 28.591658887949379 ], [ -82.171346556886789, 28.591458864881012 ], [ -82.171345784750841, 28.590982380741316 ], [ -82.171344707607673, 28.590317657635676 ], [ -82.171357349462383, 28.589894099656583 ], [ -82.171356368641014, 28.589288201796474 ], [ -82.17136258515967, 28.58901171551852 ], [ -82.171362145642362, 28.588741119963153 ], [ -82.171361698645171, 28.588464642941211 ], [ -82.171360974194613, 28.58801756946875 ], [ -82.17138019645526, 28.587541061758859 ], [ -82.171399427065737, 28.587070436371498 ], [ -82.171385278404514, 28.586564556895183 ], [ -82.171384649239826, 28.586176309580303 ], [ -82.171396738636247, 28.585411568258635 ], [ -82.171388978090334, 28.584735087366404 ], [ -82.171399034283525, 28.584360356238335 ], [ -82.171398347932083, 28.583936814640914 ], [ -82.171392017801196, 28.58332033398284 ], [ -82.171370186969128, 28.583009764236344 ], [ -82.171375039782163, 28.582713279892122 ], [ -82.171390454600598, 28.582355601611212 ], [ -82.171413881457354, 28.581969332429658 ], [ -82.171423606453118, 28.581632009994465 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170425924345096, 28.581611936507585 ], [ -82.171423606453118, 28.581632009994465 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 122nd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.168291459166056, 28.577829592502511 ], [ -82.169798800012174, 28.577896821799268 ], [ -82.170440786366143, 28.577884685645525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 33rd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158842827237535, 28.570247591895033 ], [ -82.158860801211802, 28.569835315827021 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 34th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.160512478618884, 28.570278436126202 ], [ -82.160516717206463, 28.56969263527364 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 34th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.161619599604975, 28.570277674921435 ], [ -82.161571088767005, 28.570234964858209 ], [ -82.161541962287629, 28.570196507133506 ], [ -82.161524936392112, 28.570151622111894 ], [ -82.161522458429317, 28.57011527138409 ], [ -82.161536897619712, 28.570053240649834 ], [ -82.161553743969279, 28.569980515180752 ], [ -82.161560856943026, 28.56988000180101 ], [ -82.161553397955089, 28.569753844797894 ], [ -82.161652472266795, 28.569066064934194 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149087922897607, 28.588310323768848 ], [ -82.149088693665419, 28.588308829549703 ], [ -82.14909042662353, 28.588305292277994 ], [ -82.149092415448266, 28.588301233172675 ], [ -82.149094671351989, 28.588296628760574 ], [ -82.149097522577378, 28.588290809144794 ], [ -82.149101528767829, 28.588282632250444 ], [ -82.149104562462071, 28.58827643976764 ], [ -82.149108788842469, 28.58826781597287 ], [ -82.149125721864422, 28.588233253086564 ], [ -82.149420514374015, 28.587631574272347 ], [ -82.149429260605714, 28.587613723575267 ], [ -82.149441489015089, 28.587588765822431 ], [ -82.149461285244328, 28.587548362500701 ], [ -82.149468720544718, 28.587533184171143 ], [ -82.149483084519787, 28.587503867564507 ], [ -82.149508198774441, 28.587452608640984 ], [ -82.149522976594156, 28.587422448788303 ], [ -82.149543367455422, 28.587380393515051 ], [ -82.149558281749648, 28.58734916062328 ], [ -82.149577943022706, 28.587310258027049 ], [ -82.149588914912428, 28.587286001855464 ], [ -82.149623828826236, 28.587216605002588 ], [ -82.149656706431202, 28.587149500519509 ], [ -82.149674236447098, 28.587113720547119 ], [ -82.149692889792007, 28.587075649194105 ], [ -82.149711485020703, 28.587037697011365 ], [ -82.149731207646624, 28.586997440810077 ], [ -82.149745854857542, 28.586967544558807 ], [ -82.149768647776213, 28.586921024528223 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683D 1", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183755306995451, 28.596112647765221 ], [ -82.185361621172703, 28.596134034869774 ], [ -82.18562367372067, 28.596127266087844 ], [ -82.185695340138551, 28.596137506552083 ], [ -82.18574789325244, 28.59615319068908 ], [ -82.18579228388694, 28.596176614483465 ], [ -82.185818967100047, 28.596218328494384 ], [ -82.185824962166308, 28.596265290756651 ], [ -82.185838664584338, 28.596671387592352 ], [ -82.185825978856457, 28.597048400963697 ], [ -82.186771940026432, 28.597040432001627 ], [ -82.187845418963889, 28.597059878771464 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 9th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043213634859413, 28.609989814480439 ], [ -82.043210225746549, 28.610152383987423 ], [ -82.043210299746818, 28.610333359253435 ], [ -82.043206899629268, 28.610520467908202 ], [ -82.04320699243705, 28.610747452613758 ], [ -82.043207058908209, 28.610910022821393 ], [ -82.043203682132827, 28.611149277724845 ], [ -82.043203766388203, 28.611357856466039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jody Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044684586922372, 28.611486215708034 ], [ -82.044469024700433, 28.611366658309212 ], [ -82.044368217038439, 28.611354420672502 ], [ -82.043203766388203, 28.611357856466039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 70th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.213297458848373, 28.712550737134368 ], [ -82.213934205074722, 28.712539620789087 ], [ -82.214591028517177, 28.71252847063467 ], [ -82.215107299942673, 28.712515009815991 ], [ -82.21534245100527, 28.712489351407765 ], [ -82.215391176263154, 28.712471573260078 ], [ -82.215431233619142, 28.712423465479397 ], [ -82.215454087697978, 28.712377912384149 ], [ -82.215465436025312, 28.712317206756317 ], [ -82.215470992600302, 28.71222869345905 ], [ -82.215462018152905, 28.712049171313108 ], [ -82.215470489216671, 28.711983411815243 ], [ -82.215501719963214, 28.711826583409973 ], [ -82.215544397260686, 28.71165709526683 ], [ -82.215586970788451, 28.711437032888007 ], [ -82.215603682601923, 28.711194252207957 ], [ -82.215591981096622, 28.71108300965793 ], [ -82.215574264109392, 28.710835226978563 ], [ -82.215579881677186, 28.710777058735669 ], [ -82.215605596988084, 28.710728972751124 ], [ -82.215637080101288, 28.710696050193146 ], [ -82.216107446422754, 28.710680130133827 ], [ -82.21645452650931, 28.710689692588748 ], [ -82.217271988449824, 28.710690915862617 ], [ -82.217378114349231, 28.710690746977694 ], [ -82.21742686977845, 28.710688138829724 ], [ -82.217487067303566, 28.71067034246569 ], [ -82.217509950457682, 28.710639961555732 ], [ -82.217515577400917, 28.710586850748427 ], [ -82.217509740330769, 28.710538815826357 ], [ -82.217547480807212, 28.709370504009815 ], [ -82.21755240808973, 28.708978550633503 ], [ -82.219494104281878, 28.708932440345571 ], [ -82.219562951346091, 28.708937385709604 ], [ -82.219605937610027, 28.708919616221277 ], [ -82.219625920299677, 28.708874067048768 ], [ -82.2196303215499, 28.708234304490354 ], [ -82.219647817972358, 28.706997750992436 ], [ -82.219653720851241, 28.706943091236376 ], [ -82.21966578528766, 28.706888567692918 ], [ -82.219679753364503, 28.706849733402631 ], [ -82.219699039168376, 28.706802959976599 ], [ -82.219721873327444, 28.706749820319704 ], [ -82.219741290869052, 28.706714198508166 ], [ -82.219763722949978, 28.706691041045584 ], [ -82.219778695017681, 28.706683584372861 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.224042613308569, 28.705244518983143 ], [ -82.226181921256853, 28.707469313471609 ], [ -82.22771551555401, 28.709054024625548 ], [ -82.227855501457896, 28.709200173935827 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 321", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.226263743628323, 28.716298195319435 ], [ -82.226271404329609, 28.716226999158184 ], [ -82.226279145077129, 28.71619254186583 ], [ -82.226302533214749, 28.716167245054244 ], [ -82.226349436199285, 28.716156048456181 ], [ -82.227490289661432, 28.716162964131346 ], [ -82.22758406056343, 28.716162807916582 ], [ -82.227667412699489, 28.716162667299674 ], [ -82.227716876704648, 28.716151103200378 ], [ -82.227748025655913, 28.716100534385404 ], [ -82.227758299200474, 28.716033925683707 ], [ -82.227763305235825, 28.715939772465735 ], [ -82.227764854779764, 28.71424974214149 ], [ -82.227762721985073, 28.713264662616485 ], [ -82.227760460044493, 28.712219879996663 ], [ -82.227767946419874, 28.710865090117512 ], [ -82.2277647203329, 28.709374840248579 ], [ -82.227775023070592, 28.709322010828313 ], [ -82.227797393950411, 28.709277768438543 ], [ -82.227855501457896, 28.709200173935827 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 75th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.228758832534268, 28.710116927408666 ], [ -82.22883403073871, 28.710054183034803 ], [ -82.228926529865504, 28.70998052742733 ], [ -82.228955650016005, 28.709939417172553 ], [ -82.22899504759873, 28.709862335570996 ], [ -82.229010464245292, 28.70978696730548 ], [ -82.229020742326554, 28.709273087116635 ], [ -82.229036071108496, 28.708771376141215 ], [ -82.229020209673763, 28.708663479475998 ], [ -82.228995443564074, 28.70805502069565 ], [ -82.228992752838295, 28.708015987065384 ], [ -82.228995298642204, 28.707988429392206 ], [ -82.229003040860675, 28.707956268320981 ], [ -82.229018620363377, 28.707933279697592 ], [ -82.229057647412631, 28.707914843459715 ], [ -82.229107113415438, 28.707905576167747 ], [ -82.229156614409533, 28.707912380100453 ], [ -82.229995294749287, 28.70792014902414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.227855501457896, 28.709200173935827 ], [ -82.227927603851171, 28.709268940907691 ], [ -82.228758832534268, 28.710116927408666 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.228758832534268, 28.710116927408666 ], [ -82.23024547487725, 28.711675903246668 ], [ -82.230909581375585, 28.712352623058081 ], [ -82.231295989479321, 28.712770798030171 ], [ -82.231669813346713, 28.713150417186437 ], [ -82.232037384153941, 28.71352821063682 ], [ -82.23267230859237, 28.714190274337813 ], [ -82.233436702498139, 28.714973355848965 ], [ -82.234409997919755, 28.715985694758924 ], [ -82.234788023669495, 28.716370808265957 ], [ -82.236170734444755, 28.717810442532276 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 4th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056779913363826, 28.613699848765673 ], [ -82.057558295714571, 28.613693500512909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 6th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056747730908683, 28.61734508141264 ], [ -82.05888632628735, 28.617361354330551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 6th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054724267688911, 28.617344095002128 ], [ -82.056427221621547, 28.617341450422302 ], [ -82.056747730908683, 28.61734508141264 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 1st Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056779913363826, 28.613699848765673 ], [ -82.056776954532182, 28.614549397044275 ], [ -82.056807875276647, 28.614910893352125 ], [ -82.05679791817559, 28.615441111625703 ], [ -82.05673343659339, 28.616158132215272 ], [ -82.056737050035863, 28.616528677543275 ], [ -82.056747730908683, 28.61734508141264 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 1st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056110119888203, 28.60994445192982 ], [ -82.056122897441611, 28.610084994427446 ], [ -82.05614317879575, 28.61012045898072 ], [ -82.056180975077012, 28.610142340667043 ], [ -82.05625656516726, 28.610160244725886 ], [ -82.056602691855261, 28.610164224739837 ], [ -82.057222537739165, 28.610176127496622 ], [ -82.057596388834924, 28.610182651580715 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 2nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057566982650343, 28.609945867997833 ], [ -82.057594697099816, 28.610026088939247 ], [ -82.057596388834924, 28.610182651580715 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057713243758556, 28.609938828937569 ], [ -82.058456427501213, 28.609942003681773 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057566982650343, 28.609945867997833 ], [ -82.057713243758556, 28.609938828937569 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 2nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057713243758556, 28.609938828937569 ], [ -82.057708900987976, 28.609227188795764 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 1st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056969675367483, 28.609224008312204 ], [ -82.057183141631555, 28.609223920696881 ], [ -82.057708900987976, 28.609227188795764 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 3rd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058456427501213, 28.609942003681773 ], [ -82.058460235747518, 28.609683858590312 ], [ -82.058471704211613, 28.608975699279029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056369194604457, 28.609946362829064 ], [ -82.056491877270403, 28.609945115133947 ], [ -82.057352168627929, 28.609944759373828 ], [ -82.057566982650343, 28.609945867997833 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054714165609283, 28.609941740870173 ], [ -82.056082614704948, 28.609944248379559 ], [ -82.056110119888203, 28.60994445192982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 1st Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056369194604457, 28.609946362829064 ], [ -82.056372370853339, 28.608488193914351 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 2nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057708900987976, 28.609227188795764 ], [ -82.057708769538763, 28.608986486697244 ], [ -82.057712574005691, 28.608714386887176 ], [ -82.057716417581744, 28.608512055155554 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 2nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057716417581744, 28.608512055155554 ], [ -82.057716276593041, 28.608253910783059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 2nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056372370853339, 28.608488193914351 ], [ -82.056562112388534, 28.608484626735173 ], [ -82.057056249452359, 28.608494888159857 ], [ -82.057716417581744, 28.608512055155554 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 1st Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056372370853339, 28.608488193914351 ], [ -82.056383638976186, 28.607382353128237 ], [ -82.056383147637291, 28.606461404005973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 722", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065128452430983, 28.631922824036945 ], [ -82.063103306789657, 28.631925405242896 ], [ -82.059161635974576, 28.631936622026995 ], [ -82.057141772834186, 28.631932680013339 ], [ -82.055621926628078, 28.631938717621576 ], [ -82.054756658562198, 28.631945380871972 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 24th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065127115533187, 28.637765940699087 ], [ -82.065126022136027, 28.635995565570379 ], [ -82.065124676983146, 28.633815300548143 ], [ -82.065128452430983, 28.631922824036945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 722", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06720228619163, 28.631927494070645 ], [ -82.065128452430983, 28.631922824036945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 722", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075396613285548, 28.631951926535667 ], [ -82.071310412134423, 28.631935885131305 ], [ -82.067716300302337, 28.63193421834217 ], [ -82.06720228619163, 28.631927494070645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 5th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096022290870593, 28.613691151338376 ], [ -82.096040881760288, 28.613213778764532 ], [ -82.096040256255435, 28.612525701572796 ], [ -82.096020724791373, 28.611968064545135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 5th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096020724791373, 28.611968064545135 ], [ -82.095983523197773, 28.611723619614782 ], [ -82.09598888377306, 28.611415647121511 ], [ -82.095994043182756, 28.61111926351202 ], [ -82.096018666703444, 28.609704537073387 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 6th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.089816200816998, 28.610214675551418 ], [ -82.089787358498356, 28.60795753621813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 6th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.089727888174053, 28.616035376825309 ], [ -82.089744085407332, 28.615019977656527 ], [ -82.089743885179132, 28.614784283900924 ], [ -82.089717858898382, 28.614575216170007 ], [ -82.089661413647917, 28.614058244836752 ], [ -82.089698750986685, 28.613870610349398 ], [ -82.089716534185214, 28.613807642430494 ], [ -82.089732353451978, 28.61376566151862 ], [ -82.089740248736945, 28.613727183270004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 6th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.089740248736945, 28.613727183270004 ], [ -82.089805318086547, 28.61324996872218 ], [ -82.089831046205319, 28.611842198253125 ], [ -82.089823380546278, 28.610743321448201 ], [ -82.089816200816998, 28.610214675551418 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 765", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100136514173386, 28.620956866405912 ], [ -82.100162254819253, 28.620990120397899 ], [ -82.100204751245343, 28.6210102691673 ], [ -82.100253775847136, 28.621024648995345 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100092739416013, 28.617392918491849 ], [ -82.099885644340887, 28.617424750167725 ], [ -82.099706736783403, 28.61745179662427 ], [ -82.099512861604254, 28.617473759129776 ], [ -82.099314042407116, 28.617498273155498 ], [ -82.099154876257174, 28.617512570730515 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 765 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100136514173386, 28.620956866405912 ], [ -82.100105757569281, 28.620886994654402 ], [ -82.100093197237427, 28.620762583937427 ], [ -82.100088709567871, 28.620403965214773 ], [ -82.100071215202362, 28.619447503085219 ], [ -82.100085744283874, 28.61836796627296 ], [ -82.100090182356652, 28.617581191680024 ], [ -82.100092739416013, 28.617392918491849 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107080042655099, 28.616268479035579 ], [ -82.10726642881805, 28.616243659293758 ], [ -82.107414164336248, 28.61622922583155 ], [ -82.107577088480895, 28.616216914285431 ], [ -82.107737261532819, 28.616214350881414 ], [ -82.107897444534217, 28.616221536156193 ], [ -82.108090772663289, 28.616233565856358 ], [ -82.108278586794157, 28.616255350330508 ], [ -82.108491270661887, 28.616289297286279 ], [ -82.108695682629715, 28.616337873801612 ], [ -82.108825517869818, 28.616374325133716 ], [ -82.108994032976241, 28.616427801513179 ], [ -82.109206765761257, 28.616510486268002 ], [ -82.109411225960812, 28.616602924382356 ], [ -82.109662650552977, 28.616712383227178 ], [ -82.109933417996501, 28.616831574013514 ], [ -82.110154452656928, 28.616928871198503 ], [ -82.110389296893828, 28.6170261577664 ], [ -82.110637936959222, 28.617111248466117 ], [ -82.110881040546147, 28.617184157109094 ], [ -82.111118604480154, 28.617240012900666 ], [ -82.11130367180391, 28.61727397789382 ], [ -82.111541213000649, 28.617307900703047 ], [ -82.11176769584975, 28.617332085976759 ], [ -82.1121101652774, 28.617351300395821 ], [ -82.112402921519404, 28.617368117645618 ], [ -82.112557587115532, 28.61737773826535 ], [ -82.11265424705465, 28.617380094902124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11265424705465, 28.617380094902124 ], [ -82.1129000479919, 28.617389640845094 ], [ -82.113239755752801, 28.617408853789943 ], [ -82.113618124581436, 28.617425598317158 ], [ -82.113963346746985, 28.61743749410882 ], [ -82.114209147926545, 28.617447036775214 ], [ -82.11452122282131, 28.617451650812679 ], [ -82.115402200912158, 28.617450909290135 ], [ -82.116816192247384, 28.617458235167788 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 767", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116779444719938, 28.620572074222508 ], [ -82.116780152637531, 28.620144104245011 ], [ -82.116796453530398, 28.619275946442393 ], [ -82.116795927205544, 28.618799991952255 ], [ -82.116768800110862, 28.618488137001108 ], [ -82.116756249525906, 28.618038495921375 ], [ -82.11677240599181, 28.617821368483746 ], [ -82.116816192247384, 28.617458235167788 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116816192247384, 28.617458235167788 ], [ -82.117299489107538, 28.617460258120527 ], [ -82.118306020164695, 28.617459310420291 ], [ -82.119463769204501, 28.617459759712499 ], [ -82.120619871706936, 28.617464573307704 ], [ -82.121265633804867, 28.617464001277419 ], [ -82.122446512648608, 28.617470232759409 ], [ -82.123708311127785, 28.617472009717478 ], [ -82.124762013815925, 28.617475423469369 ], [ -82.125696799054921, 28.617474564955845 ], [ -82.1269206139836, 28.617476346988695 ], [ -82.128169202193249, 28.61747955379294 ], [ -82.129384770830441, 28.617492979544778 ], [ -82.130664731575692, 28.617490302702457 ], [ -82.131929837784995, 28.617494914525771 ], [ -82.133232925958623, 28.617496563807389 ], [ -82.134307177518849, 28.617505072652538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 17th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133321825600504, 28.619560469556699 ], [ -82.133427360783472, 28.619346319929278 ], [ -82.133929294891786, 28.618332527005112 ], [ -82.134307177518849, 28.617505072652538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134307177518849, 28.617505072652538 ], [ -82.134427742313306, 28.617504954816919 ], [ -82.134525600732616, 28.617506862457105 ], [ -82.134769207342103, 28.617508443860864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 117th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054714935363833, 28.584388671817493 ], [ -82.053293461651165, 28.584354988471549 ], [ -82.049592285038159, 28.58428460276663 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 707", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009322836881566, 28.584323889977991 ], [ -82.008839767228409, 28.58430436010055 ], [ -82.007270905919142, 28.584316177607441 ], [ -82.005303180376202, 28.584300610840945 ], [ -82.004493341565961, 28.584302155507459 ], [ -82.003192973204065, 28.584305555437457 ], [ -82.001188046564238, 28.58429324303459 ], [ -82.001081068603227, 28.584287034234197 ], [ -82.001035241689323, 28.584288720789051 ], [ -82.000997050257681, 28.584295463155325 ], [ -82.000940914885774, 28.584326282779791 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 707", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000938108165542, 28.606309576394281 ], [ -82.000937575554204, 28.606205386637967 ], [ -82.000934032278195, 28.604762261885387 ], [ -82.000949083901432, 28.603572712007018 ], [ -82.000951019375989, 28.602070613226726 ], [ -82.000942684331278, 28.60033136866182 ], [ -82.000942992184932, 28.598950451946827 ], [ -82.000930199023131, 28.597119687382762 ], [ -82.000916333341934, 28.59559162407081 ], [ -82.000917281054129, 28.59522826322381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 727", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04638445030524, 28.588093076155989 ], [ -82.046380749871815, 28.587594989014942 ], [ -82.046404456313155, 28.586054595075897 ], [ -82.046403779239654, 28.58451113378478 ], [ -82.046403532756528, 28.583951549551472 ], [ -82.046423860874484, 28.582644827059255 ], [ -82.046430430918946, 28.581740886723658 ], [ -82.046437226224185, 28.581350406513149 ], [ -82.046450847042806, 28.58064323796647 ], [ -82.046457642208182, 28.580252757691859 ], [ -82.046453934314712, 28.579742370115934 ], [ -82.046456824131241, 28.578389533811993 ], [ -82.04647093350826, 28.577431935121343 ], [ -82.046466986806465, 28.577166737182932 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 738G", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116839226246327, 28.598678535566584 ], [ -82.117368964225633, 28.598683949407317 ], [ -82.118601325836423, 28.598698534342347 ], [ -82.119846415308842, 28.59869818030219 ], [ -82.120979585580699, 28.598706961791741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 738F", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120971095134394, 28.6025964386921 ], [ -82.120963634098274, 28.602477490573438 ], [ -82.120963045276824, 28.602411481231922 ], [ -82.12096340722826, 28.602278370252886 ], [ -82.120964641317897, 28.602150605772522 ], [ -82.120966670352502, 28.601796365576888 ], [ -82.120974799344182, 28.601334069104205 ], [ -82.120974389323209, 28.600974935824638 ], [ -82.12097389418328, 28.600543211042218 ], [ -82.120973544372845, 28.600237565760189 ], [ -82.120977429393932, 28.599847864507772 ], [ -82.120977017343478, 28.599488730248929 ], [ -82.120976724965843, 28.599232368959889 ], [ -82.120979776601928, 28.598874761971839 ], [ -82.120979585580699, 28.598706961791741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 738E", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120971095134394, 28.6025964386921 ], [ -82.12119818723221, 28.602596238252342 ], [ -82.122398122589445, 28.602605511600444 ], [ -82.123600512606487, 28.602613528683055 ], [ -82.124159085119601, 28.602609880884973 ], [ -82.1246251574387, 28.602609457195907 ], [ -82.124785260104019, 28.602609310070573 ], [ -82.124902666952991, 28.602609202721869 ], [ -82.1249596119047, 28.602624848645874 ], [ -82.125012729565427, 28.602657579365957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 15th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129225215969541, 28.604629985642436 ], [ -82.129232204736283, 28.604203651002905 ], [ -82.129239573831924, 28.603825826720723 ], [ -82.129236769081828, 28.603666869407753 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 15th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129227648712643, 28.605547469769615 ], [ -82.129225776488667, 28.605350931834796 ], [ -82.129231814608232, 28.604952375795456 ], [ -82.129234155568355, 28.604731210781996 ], [ -82.129225215969541, 28.604629985642436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 738", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125021117174541, 28.604562027144766 ], [ -82.125021394386209, 28.603723737814239 ], [ -82.12501716124153, 28.603152290079979 ], [ -82.125020343262747, 28.602835163936568 ], [ -82.125022768019463, 28.602693833456094 ], [ -82.125012729565427, 28.602657579365957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 103rd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125021117174541, 28.604562027144766 ], [ -82.125488509072738, 28.604596185083288 ], [ -82.125861802452775, 28.60460881803073 ], [ -82.126153847138823, 28.604608132509181 ], [ -82.126676839621368, 28.604595088561005 ], [ -82.127057101958357, 28.604614203190582 ], [ -82.127555658240311, 28.604613109342726 ], [ -82.127907010294976, 28.604633146427226 ], [ -82.128182327370183, 28.604627488581208 ], [ -82.128445151802566, 28.604631113482341 ], [ -82.129225215969541, 28.604629985642436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 738", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125072513709114, 28.610132851109665 ], [ -82.125049550493372, 28.610117123604759 ], [ -82.125034222502705, 28.610090139629904 ], [ -82.125010277532937, 28.610052689180659 ], [ -82.124994259247813, 28.609982398924299 ], [ -82.125009345907003, 28.609265272866992 ], [ -82.125014879567217, 28.60855553572145 ], [ -82.125026223086834, 28.607368775452219 ], [ -82.125026285298176, 28.606345413012928 ], [ -82.125020098545264, 28.605425264965398 ], [ -82.12501343728762, 28.604903405026278 ], [ -82.125021117174541, 28.604562027144766 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 738", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125072513709114, 28.610132851109665 ], [ -82.125113325214627, 28.610148561352336 ], [ -82.12519746033378, 28.610152985092444 ], [ -82.126339812717418, 28.610157767189275 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 738", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126339812717418, 28.610157767189275 ], [ -82.127356838812901, 28.61015773528656 ], [ -82.128578215527043, 28.610155677073497 ], [ -82.12922324307867, 28.610173065991503 ], [ -82.130462269590836, 28.610174135894759 ], [ -82.131673250358318, 28.610172973809377 ], [ -82.132912285292477, 28.610180772623362 ], [ -82.13422273287317, 28.610210985222356 ], [ -82.135433728295141, 28.610221037202621 ], [ -82.136917525529853, 28.61023980572083 ], [ -82.137124028874936, 28.610239598334882 ], [ -82.137231119934327, 28.610250737425726 ], [ -82.137292319788699, 28.610261926228315 ], [ -82.137340806984895, 28.61029787447006 ], [ -82.137379110097598, 28.61034507971241 ], [ -82.137460908446712, 28.610511479916386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137465586008148, 28.612081271919582 ], [ -82.137568277744734, 28.611885753238766 ], [ -82.137682597536568, 28.611644747531273 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 738", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137058943767329, 28.611950158728558 ], [ -82.137138515832305, 28.611971677168317 ], [ -82.137232380096307, 28.612005779651135 ], [ -82.137465586008148, 28.612081271919582 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 631A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.212015364175201, 28.631607850668228 ], [ -82.212153998458163, 28.631355010516614 ], [ -82.212193242591795, 28.631288228855219 ], [ -82.212241016264272, 28.631226018643911 ], [ -82.21228750151019, 28.6311710642984 ], [ -82.212353844341976, 28.631123860688596 ], [ -82.212423639493124, 28.631073933823206 ], [ -82.212504271237876, 28.631032031610946 ], [ -82.212556670711166, 28.631010596007307 ], [ -82.212636165443286, 28.630985630520652 ], [ -82.212726784201976, 28.630967170579304 ], [ -82.212831230729151, 28.630955032367488 ], [ -82.212934908876065, 28.630944274045856 ], [ -82.213022086402859, 28.630933081286241 ], [ -82.213098951011034, 28.630914447722891 ], [ -82.213172573284794, 28.63088809340098 ], [ -82.21323551780219, 28.630857990327019 ], [ -82.213296603454836, 28.630820539714577 ], [ -82.213360604160044, 28.630771101491639 ], [ -82.213405837473474, 28.630727103074673 ], [ -82.213449951797571, 28.630673957620417 ], [ -82.213486905424688, 28.630615491486907 ], [ -82.213515070329379, 28.630549756385506 ], [ -82.213531672098938, 28.630491530610897 ], [ -82.213542608234121, 28.630437491537393 ], [ -82.213546214682367, 28.630373439922529 ], [ -82.213541906860684, 28.630309686767259 ], [ -82.213536259362158, 28.630266200360239 ], [ -82.213525059229482, 28.630212468527059 ], [ -82.213508746075618, 28.63015144121286 ], [ -82.21349136850408, 28.630086475969943 ], [ -82.213472812042014, 28.630024686989294 ], [ -82.21345239726665, 28.629963379158188 ], [ -82.213426335560712, 28.629892713036721 ], [ -82.213402803028416, 28.629829105522113 ], [ -82.21338498648872, 28.629786739940389 ], [ -82.213348966288351, 28.629713868770086 ], [ -82.213312313676937, 28.629653442688291 ], [ -82.213173042742099, 28.629450774421798 ], [ -82.213105539667978, 28.629356195385107 ], [ -82.213065314233674, 28.629289320421929 ], [ -82.213027427007617, 28.629211916944623 ], [ -82.213000662993522, 28.629142683837681 ], [ -82.21297849222988, 28.629066964766988 ], [ -82.212963869426531, 28.628987851023716 ], [ -82.212958779066199, 28.628916713443878 ], [ -82.212962202051031, 28.628832539131611 ], [ -82.212985386689979, 28.628690999489578 ], [ -82.213015535413888, 28.628521336675195 ], [ -82.213046437685705, 28.628394198844468 ], [ -82.21306252798901, 28.628215852287461 ], [ -82.213064853649684, 28.628163671991693 ], [ -82.213061244975748, 28.62810156356457 ], [ -82.213052852912213, 28.628051006205503 ], [ -82.213036299239761, 28.62799110349966 ], [ -82.21301188862023, 28.62793091892847 ], [ -82.212982168798547, 28.62787713300278 ], [ -82.212954376178345, 28.62783013773948 ], [ -82.212910645588082, 28.627779986673421 ], [ -82.212865329607723, 28.627738336270056 ], [ -82.212808051296236, 28.627696254292726 ], [ -82.21273679161466, 28.627656156728115 ], [ -82.21267167972951, 28.627628899680822 ], [ -82.212600551251882, 28.627607693139147 ], [ -82.212531942039135, 28.627594778700065 ], [ -82.211981311257532, 28.627543076470417 ], [ -82.211865166256302, 28.62752818923305 ], [ -82.211723104530478, 28.627497211162986 ], [ -82.211631902170055, 28.627470578916231 ], [ -82.211529608238507, 28.627436569206903 ], [ -82.211431295793517, 28.627391865969482 ], [ -82.211352766478086, 28.627346143880008 ], [ -82.211288119209129, 28.627300373122434 ], [ -82.211228489459558, 28.627250061210805 ], [ -82.211159298420512, 28.627180744674025 ], [ -82.211079075543452, 28.627110853279561 ], [ -82.210996296469574, 28.627035036550939 ], [ -82.210883015009301, 28.626928663416709 ], [ -82.210818773014481, 28.626876148647046 ], [ -82.210746558801631, 28.626825994069822 ], [ -82.210665117535541, 28.626778712336851 ], [ -82.210580461487737, 28.626738339300516 ], [ -82.210511759539969, 28.626707232886396 ], [ -82.210438368033991, 28.626679947862431 ], [ -82.210352723794045, 28.6266547535005 ], [ -82.210275498275209, 28.626637724849644 ], [ -82.210206330449168, 28.626626808765472 ], [ -82.210117387096773, 28.626618565218326 ], [ -82.209300015009532, 28.62660732102481 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183755306995451, 28.596112647765221 ], [ -82.183771100900969, 28.594958078755877 ], [ -82.183767793743854, 28.594288290919543 ], [ -82.18377980093689, 28.593366290678258 ], [ -82.18377804311605, 28.592746730317135 ], [ -82.183777804060767, 28.592609785934105 ], [ -82.183780377283853, 28.592523289454732 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 46th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181727396031746, 28.59606596510389 ], [ -82.181744065895089, 28.595824351962445 ], [ -82.181700135534186, 28.59511754381754 ], [ -82.18172118735734, 28.594938442589122 ], [ -82.181706144115978, 28.594470361564952 ], [ -82.181705593368918, 28.594149915753633 ], [ -82.181715677075076, 28.593804323744351 ], [ -82.181714931930799, 28.593370779630789 ], [ -82.181714073416259, 28.592871261868979 ], [ -82.181710037398062, 28.59259480434919 ], [ -82.181716125432274, 28.592503717519147 ], [ -82.181724421755618, 28.59246557261422 ], [ -82.18174945652396, 28.592434786537318 ], [ -82.181775893209576, 28.59240891905246 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182150923472705, 28.592477305731098 ], [ -82.182337619094071, 28.592506007677585 ], [ -82.182569003274423, 28.59250809991946 ], [ -82.182990940729042, 28.592512339858406 ], [ -82.183576207041028, 28.592516357654599 ], [ -82.183780377283853, 28.592523289454732 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.188928070138815, 28.592549885953247 ], [ -82.189545346388044, 28.592551346752444 ], [ -82.189718569843777, 28.592546685094689 ], [ -82.189834183804308, 28.592514984537168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181775893209576, 28.59240891905246 ], [ -82.18175353967311, 28.592378196175719 ], [ -82.181739537290667, 28.592338851115933 ], [ -82.181739706205434, 28.592291399471915 ], [ -82.181735116013954, 28.592117236586752 ], [ -82.181747074259846, 28.591587145656295 ], [ -82.18174179426461, 28.591011642076268 ], [ -82.181741386787635, 28.590324889485043 ], [ -82.181746373801829, 28.590031675979976 ], [ -82.181743465384002, 28.589937174921076 ], [ -82.181736519167544, 28.589888719418934 ], [ -82.181725462311903, 28.589845116776235 ], [ -82.181695211631691, 28.58981607825022 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179704554940116, 28.589690288194962 ], [ -82.179772040137962, 28.589719735546591 ], [ -82.179870729835471, 28.589728614316357 ], [ -82.179959191129242, 28.58972549454845 ], [ -82.180466173305874, 28.589724825086904 ], [ -82.180948310277998, 28.589732259969832 ], [ -82.181431504857741, 28.589731617578451 ], [ -82.181511144799032, 28.589743626372695 ], [ -82.18159628198265, 28.589760476979002 ], [ -82.181651223677022, 28.589779787861879 ], [ -82.181695211631691, 28.58981607825022 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 45th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179629715610716, 28.596071706936602 ], [ -82.1796158391669, 28.595915558908917 ], [ -82.179628858324094, 28.595567169608074 ], [ -82.179635072413959, 28.595218790160985 ], [ -82.179658420347224, 28.594942463494512 ], [ -82.17966453326261, 28.594534018917305 ], [ -82.179609303898573, 28.594071598628791 ], [ -82.17959314619813, 28.593602698523647 ], [ -82.179578652293429, 28.593152003631836 ], [ -82.179583521915958, 28.592786092442175 ], [ -82.1795856248836, 28.592408070044375 ], [ -82.179606951180091, 28.592032444177363 ], [ -82.179617173820688, 28.591585350338754 ], [ -82.179610699010198, 28.591006211780492 ], [ -82.179617088380311, 28.590641924491127 ], [ -82.179647186016936, 28.590332554023203 ], [ -82.179667357153122, 28.590188373857391 ], [ -82.179667183659021, 28.59008626511288 ], [ -82.179663565995938, 28.589960135159554 ], [ -82.179659968753938, 28.589846018953175 ], [ -82.179669018745273, 28.589781204457232 ], [ -82.179682680749053, 28.589743627378528 ], [ -82.179704554940116, 28.589690288194962 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179704554940116, 28.589690288194962 ], [ -82.179671556806682, 28.589658830952839 ], [ -82.179652258769693, 28.589612813506633 ], [ -82.179649418107687, 28.589557085021045 ], [ -82.179657417266696, 28.58941773848623 ], [ -82.179673381545783, 28.589117242168825 ], [ -82.179673072751456, 28.588935501026164 ], [ -82.179664774135588, 28.588899163835613 ], [ -82.179634517080345, 28.588865278374453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178121709402419, 28.588816376220819 ], [ -82.179299506670276, 28.588824525790987 ], [ -82.179521886337582, 28.588824233066681 ], [ -82.179585053751822, 28.58883868928395 ], [ -82.179634517080345, 28.588865278374453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178099386790734, 28.591091286274192 ], [ -82.178099604650512, 28.590905612982887 ], [ -82.178105697773972, 28.59017541217964 ], [ -82.178117267476125, 28.589439146721144 ], [ -82.178121709402419, 28.588816376220819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177173802405974, 28.59101944895346 ], [ -82.177171229959114, 28.591512312122134 ], [ -82.17742597046194, 28.591511294066475 ], [ -82.177884501282037, 28.591512729366027 ], [ -82.17793838374898, 28.591510591766482 ], [ -82.177994600428562, 28.591504314764006 ], [ -82.178029707817672, 28.591483590854196 ], [ -82.178053076755219, 28.591448407811651 ], [ -82.178076424781665, 28.591400817597325 ], [ -82.178085701586312, 28.591344974903482 ], [ -82.178087888083596, 28.591251920790018 ], [ -82.178097106681932, 28.591160924750895 ], [ -82.178099386790734, 28.591091286274192 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 115th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.172917575252669, 28.588334251584151 ], [ -82.17334663323858, 28.588345740299943 ], [ -82.173419491198246, 28.5883583670457 ], [ -82.173501880673641, 28.58836376288555 ], [ -82.173623567393193, 28.588340673127647 ], [ -82.173740012352283, 28.588345419069952 ], [ -82.173900806635686, 28.588345214040398 ], [ -82.174083768021831, 28.588337638157167 ], [ -82.174244559280638, 28.58833498557269 ], [ -82.174433095923334, 28.588346980205063 ], [ -82.174546757299822, 28.588344387562593 ], [ -82.174715873197556, 28.588346618062545 ], [ -82.175011230410547, 28.588347050385394 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 42nd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174950590149194, 28.590567686688441 ], [ -82.17496087575303, 28.590051038664793 ], [ -82.175041563081578, 28.58967950234355 ], [ -82.175013417580175, 28.589522818863436 ], [ -82.174979641733572, 28.5893182860016 ], [ -82.174992776710482, 28.588971143653616 ], [ -82.174991839535778, 28.588709379993038 ], [ -82.174994653221674, 28.588420406800623 ], [ -82.175011230410547, 28.588347050385394 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.172513153472977, 28.581626742162296 ], [ -82.17348475165285, 28.58162716873467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 42nd Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174598919459797, 28.574264036170408 ], [ -82.174548023826006, 28.574210707842933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 128th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.17471966438508, 28.569730703202865 ], [ -82.174758317352058, 28.569696480988167 ], [ -82.174801832765155, 28.569677203474185 ], [ -82.174898591574447, 28.569668536012696 ], [ -82.17508001568298, 28.569653353161762 ], [ -82.175351017106621, 28.569676499294573 ], [ -82.175612303081664, 28.569676163056851 ], [ -82.175716341293153, 28.569680298928194 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 42nd Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174548023826006, 28.574210707842933 ], [ -82.174571428551644, 28.573732265095455 ], [ -82.174543677235562, 28.573042445150662 ], [ -82.174547629428616, 28.572504226176992 ], [ -82.174549454259349, 28.57214434646632 ], [ -82.174580684187561, 28.572009752543252 ], [ -82.174584908972392, 28.571638123017323 ], [ -82.174574904545949, 28.57143950821613 ], [ -82.174641866863482, 28.570967417039924 ], [ -82.174677710588526, 28.570696125540721 ], [ -82.174694116692507, 28.570375738908485 ], [ -82.17469126716955, 28.570115178898636 ], [ -82.174688495220494, 28.569901604754278 ], [ -82.174705281956236, 28.569811882094974 ], [ -82.17471966438508, 28.569730703202865 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 128th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.175716341293153, 28.569680298928194 ], [ -82.176311516058192, 28.569694481633 ], [ -82.176785310771052, 28.569695175699461 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 684", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182910084244696, 28.57067160224328 ], [ -82.182918904453885, 28.570550420937483 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 696", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.180536774166782, 28.57065711752637 ], [ -82.180551393775872, 28.570658803597723 ], [ -82.180694069118815, 28.570658614586311 ], [ -82.180932472598599, 28.57066308174911 ], [ -82.181261172198759, 28.57066423869054 ], [ -82.181535685063906, 28.570663873456187 ], [ -82.181714491287707, 28.570668418585313 ], [ -82.181969145934048, 28.570672861363715 ], [ -82.182245469032864, 28.570672492277449 ], [ -82.182530816975799, 28.57067051520179 ], [ -82.182695164899499, 28.570670295971325 ], [ -82.182910084244696, 28.57067160224328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 614A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153496056320265, 28.645013812150864 ], [ -82.153514010041974, 28.643804910330076 ], [ -82.153525365460624, 28.642927392001486 ], [ -82.153526622984145, 28.641620880449878 ], [ -82.153529200855772, 28.641222516340687 ], [ -82.153534827768652, 28.640748935504938 ], [ -82.153543286795312, 28.640052492619265 ], [ -82.153545678139238, 28.639525985243655 ], [ -82.15354481883638, 28.63893541114545 ], [ -82.153546983193138, 28.638252901816525 ], [ -82.153548388795471, 28.637574725388301 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 615C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149784118753502, 28.645004280814014 ], [ -82.151181148491077, 28.645000508362457 ], [ -82.152025250558637, 28.645004445431663 ], [ -82.152416822760827, 28.64500400798245 ], [ -82.152742084425739, 28.645006430162447 ], [ -82.152953665596129, 28.645008978321073 ], [ -82.153335765019662, 28.645008548849454 ], [ -82.153496056320265, 28.645013812150864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 614A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153516833407039, 28.646786283695338 ], [ -82.153498488817689, 28.646679332592448 ], [ -82.153478067555369, 28.646534942350041 ], [ -82.153488758946111, 28.645207707769476 ], [ -82.153496056320265, 28.645013812150864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124958458965608, 28.637574499028243 ], [ -82.126755487310376, 28.63392425596458 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 652A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124958458965608, 28.637574499028243 ], [ -82.126577054127949, 28.637576952057522 ], [ -82.128599300600399, 28.637567617455925 ], [ -82.129153073927171, 28.637589229509121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124058105148677, 28.639421642283164 ], [ -82.12434173116462, 28.638849727970317 ], [ -82.124761055372872, 28.637994558434134 ], [ -82.124958458965608, 28.637574499028243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 652", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124058105148677, 28.639421642283164 ], [ -82.125313693586477, 28.639420789955953 ], [ -82.125772030654687, 28.639422462538455 ], [ -82.12723252528869, 28.639421109223157 ], [ -82.127762103987365, 28.639420613389536 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12404479764632, 28.639453270435848 ], [ -82.124058105148677, 28.639421642283164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120020298940418, 28.647658667458295 ], [ -82.120345967261642, 28.64699581035601 ], [ -82.120661621758401, 28.64635011015077 ], [ -82.120900332537872, 28.645863217088554 ], [ -82.121285025225987, 28.645079646775329 ], [ -82.121673666671654, 28.644292583339524 ], [ -82.122044529905125, 28.643526468797305 ], [ -82.122397648906102, 28.642810954022437 ], [ -82.123117669823671, 28.641341535437057 ], [ -82.123846058623144, 28.639857931254333 ], [ -82.12404479764632, 28.639453270435848 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 609A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137344631885213, 28.648609225520214 ], [ -82.137340555760318, 28.647694032078466 ], [ -82.137336190421095, 28.646766387484167 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 609B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13327100983841, 28.648576199358605 ], [ -82.134096608484512, 28.648581930958578 ], [ -82.135335000099872, 28.648585068377741 ], [ -82.137216089421443, 28.648602812128111 ], [ -82.137344631885213, 28.648609225520214 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 68th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137254003449343, 28.655855888953248 ], [ -82.140233150029317, 28.65586577517491 ], [ -82.140415460307509, 28.655865588375018 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 609A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137246560518321, 28.657734592934474 ], [ -82.137248338163744, 28.657581087071666 ], [ -82.137258585321419, 28.656716464336952 ], [ -82.137254003449343, 28.655855888953248 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 634 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.193694453963573, 28.67660623480894 ], [ -82.193842562804804, 28.676540154624853 ], [ -82.194760337259595, 28.676508863515043 ], [ -82.196071494285007, 28.67649270464474 ], [ -82.196871625662894, 28.676495627219353 ], [ -82.197139866844225, 28.676491159198793 ], [ -82.197186122076914, 28.676493131402292 ], [ -82.197223120959478, 28.67649307774942 ], [ -82.197267035053642, 28.676480777563381 ], [ -82.19729938451367, 28.676466454876842 ], [ -82.197324766038676, 28.676437865633776 ], [ -82.197333937336907, 28.676395026858803 ], [ -82.197340786576007, 28.67634811111791 ], [ -82.197341489845229, 28.675489531651856 ], [ -82.197347567458422, 28.67503066376959 ], [ -82.197347427154128, 28.67495520573889 ], [ -82.197344991574951, 28.674889950072284 ], [ -82.197354147452813, 28.674838952442492 ], [ -82.197388736139715, 28.674785877732365 ], [ -82.197423382860563, 28.674765433883564 ], [ -82.197455738395291, 28.674755190582243 ], [ -82.197522792353595, 28.674751013775097 ], [ -82.19793212474066, 28.674764694394529 ], [ -82.198408517821377, 28.674778276855985 ], [ -82.19922864110994, 28.674814294436192 ], [ -82.199280639881536, 28.6747963737728 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.184525514173544, 28.669132422801706 ], [ -82.1847568448419, 28.669187872007292 ], [ -82.184856976469973, 28.669215586437865 ], [ -82.184940269132767, 28.6692440238937 ], [ -82.18506051395164, 28.669286241968194 ], [ -82.185199412102364, 28.669335443851228 ], [ -82.185363713813146, 28.669406598981098 ], [ -82.18553265453059, 28.669485903752765 ], [ -82.185697000839298, 28.66958152962733 ], [ -82.18584978328856, 28.669677172902318 ], [ -82.185997964190847, 28.669785057899805 ], [ -82.18614385220539, 28.669903142207836 ], [ -82.186384699955937, 28.670108790210591 ], [ -82.186917391956769, 28.670587313375986 ], [ -82.187748841975747, 28.671322384499025 ], [ -82.188450627985787, 28.67195566133617 ], [ -82.189777767536953, 28.673140735334201 ], [ -82.190854765674956, 28.674089578849223 ], [ -82.191850733950488, 28.674977347245576 ], [ -82.193071396775878, 28.67606464729619 ], [ -82.193694453963573, 28.67660623480894 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.193694453963573, 28.67660623480894 ], [ -82.193946948244047, 28.676840404895305 ], [ -82.194136608651348, 28.677016539741516 ], [ -82.194314994440475, 28.677191671694985 ], [ -82.194435508914765, 28.677334256114911 ], [ -82.194544450478389, 28.677470739184603 ], [ -82.194644135922047, 28.677605195243927 ], [ -82.194736923155119, 28.677760053751769 ], [ -82.194808867896711, 28.677898629736578 ], [ -82.194880815574095, 28.67803924313549 ], [ -82.194945847148873, 28.678190063632297 ], [ -82.19499702404714, 28.678353140450067 ], [ -82.19504126112048, 28.678514187932862 ], [ -82.195080882783571, 28.678681359811169 ], [ -82.195104292232102, 28.678834279180546 ], [ -82.195118480236872, 28.679003527692753 ], [ -82.195123428188026, 28.679176867985895 ], [ -82.195143316740911, 28.679927331976234 ], [ -82.19516811318654, 28.680828699771997 ], [ -82.195203093488871, 28.682233779767824 ], [ -82.19524123710481, 28.683678292097778 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 55th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.193140192500522, 28.689028165065636 ], [ -82.193243615621952, 28.689045267020358 ], [ -82.193310070808508, 28.689054914991942 ], [ -82.193382421056583, 28.689066705696803 ], [ -82.193617692978691, 28.689083857090377 ], [ -82.193848141672319, 28.689093505777301 ], [ -82.194007847400073, 28.68909511332598 ], [ -82.19431761267326, 28.689091900826831 ], [ -82.194513762819369, 28.689065104541779 ], [ -82.194566283327077, 28.689017944113527 ], [ -82.19466060679062, 28.688947738819742 ], [ -82.194755465705427, 28.688939164405404 ], [ -82.195066839685637, 28.688961675065503 ], [ -82.195147229071409, 28.688955245215503 ], [ -82.195220115190622, 28.688938631589323 ], [ -82.195292465044631, 28.688941311369792 ], [ -82.195375816518919, 28.688949601318118 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 326", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187067859167215, 28.69089705914994 ], [ -82.187912056630282, 28.690908130758906 ], [ -82.189163280867064, 28.690902318296484 ], [ -82.190197107740957, 28.690900876152014 ], [ -82.193296306863843, 28.690914858929585 ], [ -82.19434864841385, 28.690919476532912 ], [ -82.195380153868115, 28.690913920496939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 326", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.195380153868115, 28.690913920496939 ], [ -82.196813981665215, 28.690924536409476 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 631B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.209244538979277, 28.631541576847471 ], [ -82.209272871498243, 28.628982541528607 ], [ -82.209300015009532, 28.62660732102481 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 631", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.209244538979277, 28.631541576847471 ], [ -82.209739795751105, 28.631544856889523 ], [ -82.209817136155394, 28.631545368397298 ], [ -82.209890594861108, 28.631543615572525 ], [ -82.209972288854487, 28.631537855363053 ], [ -82.210068252589878, 28.631526705084571 ], [ -82.210196016414187, 28.631504331102519 ], [ -82.210756588489573, 28.631373615313993 ], [ -82.210825529605003, 28.631357509216212 ], [ -82.210909281255866, 28.631340543664674 ], [ -82.211015016993045, 28.631326348431038 ], [ -82.211119639853351, 28.631320790189935 ], [ -82.21122033336971, 28.631325973049748 ], [ -82.211286878474453, 28.631334062044569 ], [ -82.211384535221285, 28.631352890099247 ], [ -82.211461603593662, 28.631373899441197 ], [ -82.211551684832102, 28.63140590963204 ], [ -82.211669685062716, 28.63145693455953 ], [ -82.212015364175201, 28.631607850668228 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136829937962204, 28.613287823575696 ], [ -82.136960982903574, 28.613032645843344 ], [ -82.137074878334715, 28.612810902447912 ], [ -82.137465586008148, 28.612081271919582 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 23rd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140834101568714, 28.61616492740071 ], [ -82.140832820594582, 28.615204138883922 ], [ -82.14081756014798, 28.615163897683107 ], [ -82.140781034660819, 28.615142466032168 ], [ -82.140726287317818, 28.615139838067456 ], [ -82.140093701919994, 28.615159275932694 ], [ -82.140048046011472, 28.61513248364086 ], [ -82.140035836674855, 28.615100291692627 ], [ -82.140035779751273, 28.615057352139385 ], [ -82.140035569843164, 28.614899009883736 ], [ -82.14004134277161, 28.614546090987719 ], [ -82.140040781270372, 28.614122532632447 ], [ -82.140016176541778, 28.614034855928711 ], [ -82.139976568637891, 28.613960233418037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 97th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13817245696427, 28.613824718613305 ], [ -82.138196817461875, 28.613848848659071 ], [ -82.138215088274137, 28.613864931491882 ], [ -82.138257679956737, 28.613875622561675 ], [ -82.13837324796981, 28.61387282273294 ], [ -82.138604407599232, 28.613886006753329 ], [ -82.138750408466308, 28.613896593464503 ], [ -82.139730107894394, 28.613898277025104 ], [ -82.139824489656931, 28.613900385631325 ], [ -82.139909580961501, 28.613922245982014 ], [ -82.139976568637891, 28.613960233418037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 97th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136829937962204, 28.613287823575696 ], [ -82.137471074277528, 28.613303409425427 ], [ -82.137877134880128, 28.61329631331277 ], [ -82.137980543871379, 28.613298894124934 ], [ -82.138043873251377, 28.613302831030779 ], [ -82.138083966895593, 28.613312207268731 ], [ -82.138135310308201, 28.613328258439108 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138074739022301, 28.615667632415825 ], [ -82.138091630198829, 28.614879231694573 ], [ -82.138079246705345, 28.614646046394011 ], [ -82.138075938968115, 28.614442083178321 ], [ -82.138105934786921, 28.614122684270736 ], [ -82.138100665259657, 28.613959816460397 ], [ -82.138120802067604, 28.613862344330894 ], [ -82.13817245696427, 28.613824718613305 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 673", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137682597536568, 28.611644747531273 ], [ -82.13776430480317, 28.611669577743545 ], [ -82.137817834437556, 28.611662775081488 ], [ -82.138324392857385, 28.611512034603766 ], [ -82.139858676458374, 28.611045002905101 ], [ -82.140737414599016, 28.610758949898099 ], [ -82.142010374696312, 28.610334096729986 ], [ -82.14213387651499, 28.610296227740527 ], [ -82.142266879608812, 28.610258348729413 ], [ -82.142399899562307, 28.610233049990608 ], [ -82.142513930631708, 28.610220349577727 ], [ -82.142637481040268, 28.610220220437647 ], [ -82.142784784297589, 28.610215874955003 ], [ -82.14477592759016, 28.610268289085163 ], [ -82.145759611474205, 28.610288208130182 ], [ -82.146600730519822, 28.610304080187586 ], [ -82.146935272270866, 28.610306655477089 ], [ -82.147121552602215, 28.610309809550092 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 673", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147121552602215, 28.610309809550092 ], [ -82.147223242525612, 28.610307602774654 ], [ -82.147299273906626, 28.610307519773578 ], [ -82.147375294613241, 28.610299051299393 ], [ -82.147456064966093, 28.610290576744838 ], [ -82.147546317339533, 28.610265320999808 ], [ -82.147655563732442, 28.610231654677317 ], [ -82.147760061423483, 28.610197994314351 ], [ -82.148225469225721, 28.60999620706388 ], [ -82.148500870058712, 28.609845363810646 ], [ -82.148630024552119, 28.609774774744697 ], [ -82.148743970842176, 28.609704201241811 ], [ -82.148876911546125, 28.609623544015861 ], [ -82.148994665007308, 28.609556321044099 ], [ -82.149085826066624, 28.609502544835401 ], [ -82.149188385480571, 28.609445403001612 ], [ -82.149302348329527, 28.609384892804332 ], [ -82.149454313825288, 28.609317632873879 ], [ -82.149724051742268, 28.60919656693687 ], [ -82.149910211189095, 28.609115849351397 ], [ -82.150145777479963, 28.609025011520174 ], [ -82.150278753403953, 28.608971191168219 ], [ -82.150453523235981, 28.608900549182358 ], [ -82.150723278079809, 28.608792901735765 ], [ -82.151110815992865, 28.608641509591475 ], [ -82.151817534232407, 28.608389120689058 ], [ -82.152326672746483, 28.608207398241536 ], [ -82.152478658815582, 28.608156908490049 ], [ -82.152577450363282, 28.608123251695631 ], [ -82.152657233379486, 28.608089613404463 ], [ -82.152744609009986, 28.608049259469585 ], [ -82.152839587953395, 28.608008896956058 ], [ -82.152934565800166, 28.607968533474839 ], [ -82.153010527469206, 28.607921482370781 ], [ -82.153717070386335, 28.607555023492527 ], [ -82.154370424974815, 28.607213782900708 ], [ -82.154507173581706, 28.607143178726123 ], [ -82.154594543831791, 28.607099467801184 ], [ -82.1546857244645, 28.607062462296589 ], [ -82.154784497491775, 28.60701873921473 ], [ -82.154894685228342, 28.606981711991143 ], [ -82.154985871596665, 28.606948061177828 ], [ -82.15510746906152, 28.606914374808905 ], [ -82.155248066700409, 28.606877314505468 ], [ -82.155453290199816, 28.60684017948692 ], [ -82.155742129817085, 28.606792882167746 ], [ -82.15598916901736, 28.606755698567468 ], [ -82.156274222425481, 28.606718470951183 ], [ -82.156544059122311, 28.606674549506426 ], [ -82.156851901006249, 28.606623874007784 ], [ -82.15748280235529, 28.606532569842042 ], [ -82.158546935346791, 28.60635353763103 ], [ -82.16011271911313, 28.606086685036299 ], [ -82.161112219726874, 28.605907707696634 ], [ -82.162792005350994, 28.605623915803729 ], [ -82.164106936001417, 28.605397572548014 ], [ -82.165083609441183, 28.605215238532619 ], [ -82.165353429075893, 28.605164591593184 ], [ -82.165490236959101, 28.605137587265535 ], [ -82.165657428077878, 28.605093773182777 ], [ -82.165748614616888, 28.605063470035155 ], [ -82.165866403831913, 28.605029778654242 ], [ -82.165999367673876, 28.604975942901483 ], [ -82.166189287624704, 28.604881778787185 ], [ -82.166455178496378, 28.604750619556022 ], [ -82.166835022751826, 28.604565645579338 ], [ -82.167116105602531, 28.604427757556632 ], [ -82.167256644609807, 28.604357136781751 ], [ -82.167408597695143, 28.604293211642396 ], [ -82.167533955688583, 28.604239381018221 ], [ -82.167674525078098, 28.604188888270681 ], [ -82.167872109152754, 28.604134969364608 ], [ -82.168179907069614, 28.604064141524329 ], [ -82.168514321973021, 28.603999987172784 ], [ -82.168962718571009, 28.603898791353135 ], [ -82.169646720806242, 28.603750335095633 ], [ -82.170304123259925, 28.603608616626694 ], [ -82.171113527793253, 28.603436511916396 ], [ -82.172128138115184, 28.603227242159978 ], [ -82.17254995670028, 28.603149550548391 ], [ -82.173104770845043, 28.603041496461064 ], [ -82.173902799500127, 28.602892872058927 ], [ -82.174423406009552, 28.602788212030557 ], [ -82.17486800233263, 28.602693709556405 ], [ -82.17537338422035, 28.602578999815844 ], [ -82.175734393782406, 28.602511441249337 ], [ -82.176308202049924, 28.602399993766028 ], [ -82.176809818744886, 28.602308765141849 ], [ -82.177391287599548, 28.602234206139038 ], [ -82.177919523143643, 28.602149649460721 ], [ -82.178747927198287, 28.601987540007418 ], [ -82.179557309971557, 28.601818739861212 ], [ -82.180359121569978, 28.601670073408652 ], [ -82.181271093058626, 28.601477645614434 ], [ -82.181708063193639, 28.601376420173583 ], [ -82.182141264711731, 28.601295329569865 ], [ -82.182578273813277, 28.601217586479052 ], [ -82.183725912806068, 28.601024825282721 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 673", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183725912806068, 28.601024825282721 ], [ -82.18430733649349, 28.600930107306581 ], [ -82.184641761800009, 28.600882688601047 ], [ -82.184900197591119, 28.600855499816895 ], [ -82.185086417154992, 28.600831764468218 ], [ -82.185223218115127, 28.600808096058106 ], [ -82.185348628552006, 28.600791151904716 ], [ -82.185500625358571, 28.600760751838447 ], [ -82.185694421839599, 28.600723586640434 ], [ -82.185884415738755, 28.600686425451588 ], [ -82.186112383361021, 28.600625728728556 ], [ -82.186777292310225, 28.600453728808279 ], [ -82.187700549244084, 28.600207565738206 ], [ -82.188262875152759, 28.600065892132999 ], [ -82.188825071511886, 28.599942976929299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 673", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.188825067423764, 28.599942977837294 ], [ -82.18892101327981, 28.599921139028421 ], [ -82.188996221959044, 28.599907204545996 ], [ -82.189220461746402, 28.59989011967258 ], [ -82.189448538926143, 28.599893157591399 ], [ -82.189585392847306, 28.599899677910617 ], [ -82.18976028978328, 28.599922916899448 ], [ -82.18992377760992, 28.599942815766347 ], [ -82.191300266341884, 28.60019584952126 ], [ -82.191805977272963, 28.600279005489519 ], [ -82.19298587478329, 28.600531694194416 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 673", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200439302868645, 28.602540802383842 ], [ -82.200440482381438, 28.602504469757051 ], [ -82.200445591979459, 28.602459387677026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200491532981616, 28.602833441686847 ], [ -82.200476390290618, 28.602723448959647 ], [ -82.200463228129607, 28.602608064542899 ], [ -82.200439302868645, 28.602540802383842 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200439302868645, 28.602540802383842 ], [ -82.20040713348719, 28.602575403007755 ], [ -82.200390152338286, 28.60260119068657 ], [ -82.200380469467831, 28.602626970332221 ], [ -82.200370791683298, 28.602654895732627 ], [ -82.200365974665928, 28.602680667315724 ], [ -82.200361182067724, 28.602719320659421 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.201550459098115, 28.605296128978832 ], [ -82.201791838776856, 28.605011799112443 ], [ -82.20201802770876, 28.604730929256377 ], [ -82.202246356276859, 28.604448337784056 ], [ -82.202378897324294, 28.604291714981443 ], [ -82.202495888850791, 28.60415196093858 ], [ -82.202618740250628, 28.604021482241542 ], [ -82.202725858865733, 28.603914058157727 ], [ -82.202807127129276, 28.603835898351406 ], [ -82.202938593626385, 28.603729125417821 ], [ -82.203082524721637, 28.603622335572997 ], [ -82.203199332529095, 28.603536264053805 ], [ -82.2032813340616, 28.603479783370499 ], [ -82.203378527145816, 28.603417912836782 ], [ -82.203469649865141, 28.60336141570977 ], [ -82.203588121051027, 28.60329414611801 ], [ -82.203749146630201, 28.603216074923317 ], [ -82.203961805368024, 28.603105722629291 ], [ -82.204961390046734, 28.602631877011728 ], [ -82.205611569576504, 28.602322263451899 ], [ -82.205748295328817, 28.602260330619103 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.205748295328817, 28.602260330619103 ], [ -82.205785540620283, 28.602221135373959 ], [ -82.205805832247535, 28.602194365688394 ], [ -82.20581573772607, 28.602169139358075 ], [ -82.205820163109493, 28.602114117945426 ], [ -82.205818612793706, 28.602089298739308 ], [ -82.205813803174919, 28.602064094648586 ], [ -82.205804423752355, 28.602033923769778 ], [ -82.205784692355792, 28.602007603476157 ], [ -82.205766476040253, 28.601988532088875 ], [ -82.205730940390907, 28.601966812331888 ], [ -82.205669187974905, 28.601935572780615 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 476B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.2066468581001, 28.601816736230148 ], [ -82.206398264825808, 28.601846046755675 ], [ -82.206039509599549, 28.60188953146508 ], [ -82.205669187974905, 28.601935572780615 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 476B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.206921652144942, 28.601786713195956 ], [ -82.2066468581001, 28.601816736230148 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.205748295328817, 28.602260330619103 ], [ -82.205802970544013, 28.60222804351055 ], [ -82.205881952992883, 28.60218498450196 ], [ -82.206036903087053, 28.602112286888648 ], [ -82.206161475735527, 28.602055739140578 ], [ -82.206279968900077, 28.602001884946862 ], [ -82.206391736472384, 28.601946043966425 ], [ -82.206517159388667, 28.601895239797187 ], [ -82.206653425322671, 28.601854924091633 ], [ -82.206921652144942, 28.601786713195956 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 60th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.204660049312324, 28.604057412512205 ], [ -82.20464456670075, 28.603915195560301 ], [ -82.204644349452821, 28.603802478394218 ], [ -82.20464413535592, 28.603692443875733 ], [ -82.204653098722474, 28.603609234738297 ], [ -82.204659014022994, 28.603523343916692 ], [ -82.204661873945128, 28.603429407918252 ], [ -82.20466781104345, 28.603354253092618 ], [ -82.204658551468825, 28.603284488219156 ], [ -82.204615779772737, 28.603182569217658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 104th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.204660049312324, 28.604057412512205 ], [ -82.204754312528181, 28.604051901890859 ], [ -82.204921621963422, 28.604078489389671 ], [ -82.205028079710388, 28.604089064271466 ], [ -82.205207558789709, 28.604118314844822 ], [ -82.205280571746329, 28.604131623480637 ], [ -82.20535055852099, 28.604152988211826 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 60th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.204694706397063, 28.604679996003522 ], [ -82.204685390523125, 28.604580708503402 ], [ -82.204673001631136, 28.604465326087375 ], [ -82.204663552710443, 28.604296262709919 ], [ -82.204660049312324, 28.604057412512205 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 60th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.204720194550731, 28.605278438502463 ], [ -82.204719981382524, 28.60516840310456 ], [ -82.204713357965602, 28.604889302484729 ], [ -82.204694706397063, 28.604679996003522 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 60th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.204740734587617, 28.607805895410717 ], [ -82.20470038867775, 28.607613345584333 ], [ -82.204703200834587, 28.607495255913367 ], [ -82.204696677076868, 28.607267145493289 ], [ -82.204665651491837, 28.606950507354174 ], [ -82.204667782716001, 28.606480844971681 ], [ -82.204640012457602, 28.606274235793798 ], [ -82.204627468515014, 28.606078339750074 ], [ -82.204626824092969, 28.60574555364957 ], [ -82.204647483333204, 28.605420785282728 ], [ -82.204692924595463, 28.605329469766641 ], [ -82.204720194550731, 28.605278438502463 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 103rd Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.204720194550731, 28.605278438502463 ], [ -82.205212000140023, 28.605246025226158 ], [ -82.205356222290703, 28.605219160831268 ], [ -82.205473578331109, 28.605193711087974 ], [ -82.205554173091159, 28.605172502691687 ], [ -82.205670116049561, 28.60513291345644 ], [ -82.205752123162171, 28.605096151900788 ], [ -82.205808681689959, 28.605059389961223 ], [ -82.205863581834734, 28.605018490574295 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 104th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.202462362481967, 28.605476301591761 ], [ -82.202856682858695, 28.605437975331522 ], [ -82.202975388230442, 28.605391670880714 ], [ -82.203046655296475, 28.605387370563502 ], [ -82.203260484749563, 28.605387051559077 ], [ -82.203322238748797, 28.605378573029753 ], [ -82.203374435351193, 28.605340754758853 ], [ -82.203421395097308, 28.605051340608917 ], [ -82.203528411357922, 28.604954896622644 ], [ -82.203658609988125, 28.604896599454136 ], [ -82.203804187762387, 28.604834156357501 ], [ -82.203984076414514, 28.604787475203079 ], [ -82.204095521974267, 28.604731633899579 ], [ -82.204204746415087, 28.604697922992056 ], [ -82.204342496650398, 28.604672556434533 ], [ -82.20446357906971, 28.604677658780211 ], [ -82.204694706397063, 28.604679996003522 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 60th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.236996096732256, 28.625233242373142 ], [ -82.236923888199883, 28.625173307815153 ], [ -82.236888110233494, 28.625090936380978 ], [ -82.236856829048918, 28.625028182899289 ], [ -82.236838887277401, 28.624963443607289 ], [ -82.236837817478943, 28.624486503499202 ], [ -82.236735276261768, 28.623778418163226 ], [ -82.236580342188759, 28.622751903844904 ], [ -82.236512148867263, 28.622100398925202 ], [ -82.236493967084158, 28.621927709944423 ], [ -82.236471503903914, 28.621829611860544 ], [ -82.236422365474652, 28.621739414060468 ], [ -82.236118854051995, 28.621296364623539 ], [ -82.235976008831287, 28.621080711471119 ], [ -82.235814986826725, 28.620692372651344 ], [ -82.235386515894291, 28.620068967951863 ], [ -82.234971455279648, 28.619473017503172 ], [ -82.234546022388642, 28.61873777010474 ], [ -82.234349845633957, 28.618013819071777 ], [ -82.234089780373836, 28.617091786621941 ], [ -82.234009079073587, 28.616809292906591 ], [ -82.233870564212452, 28.616534749741223 ], [ -82.233718087632766, 28.615981522997501 ], [ -82.233488655887015, 28.615217598037418 ], [ -82.233440203504472, 28.615043818028393 ], [ -82.233346378816108, 28.614859481773049 ], [ -82.233024312127043, 28.61446981363202 ], [ -82.232757720502079, 28.61420101348779 ], [ -82.232227272408167, 28.613711237988493 ], [ -82.231781607934522, 28.613339079981849 ], [ -82.231206908010833, 28.612951437302044 ], [ -82.229643282939136, 28.611929541469657 ], [ -82.22866172050793, 28.611300926954449 ], [ -82.228025771891211, 28.610875005192622 ], [ -82.227668374658492, 28.609950503635396 ], [ -82.227333720273435, 28.60947215726096 ], [ -82.227054231880345, 28.609195145944398 ], [ -82.226843490428308, 28.609045100209293 ], [ -82.226505042703494, 28.60886901682057 ], [ -82.225903814369318, 28.608536353177705 ], [ -82.225534024976241, 28.608262184697445 ], [ -82.225293391657402, 28.608062385113424 ], [ -82.224856680561686, 28.607694114204971 ], [ -82.224673861640412, 28.607486365829129 ], [ -82.2239693394733, 28.606682808265806 ], [ -82.223866558942461, 28.606459226354314 ], [ -82.223781685500001, 28.606290570021297 ], [ -82.223447328016519, 28.605937827711372 ], [ -82.223246629422206, 28.60568692889537 ], [ -82.22297016617712, 28.605365493582291 ], [ -82.222925470958373, 28.605263504196479 ], [ -82.222854135762219, 28.605185112148625 ], [ -82.222466563612087, 28.604907039035119 ], [ -82.221664778076459, 28.604370557772608 ], [ -82.221495496439204, 28.604249145744649 ], [ -82.221406354567904, 28.604162929738802 ], [ -82.22133051493546, 28.604057065279477 ], [ -82.221129876272769, 28.603829714170182 ], [ -82.220947087799317, 28.603629812701964 ], [ -82.220582534218522, 28.603187317698755 ], [ -82.220459916545408, 28.603045218408294 ], [ -82.220069643232421, 28.602530632461722 ], [ -82.219997148504717, 28.602427706146702 ], [ -82.219952413500678, 28.602305108171659 ], [ -82.219918705839277, 28.602138329195046 ], [ -82.219966468159939, 28.601044031615292 ], [ -82.219985559632818, 28.60000133803015 ], [ -82.219967622527236, 28.599589349918194 ], [ -82.219990216175688, 28.599503895275618 ], [ -82.220035575832, 28.599413379611953 ], [ -82.220069652293802, 28.599373128029015 ], [ -82.220206012384722, 28.599239755661934 ], [ -82.220458676680053, 28.598910235663972 ], [ -82.220889945203126, 28.598231216596904 ], [ -82.221190650601628, 28.597735803362703 ], [ -82.221414982551096, 28.597474160928289 ], [ -82.221483121600315, 28.597388631037617 ], [ -82.221522710597426, 28.597262952855839 ], [ -82.221502383914, 28.597072051794427 ], [ -82.221463356533278, 28.596926520998 ], [ -82.221220477769251, 28.596553215532172 ], [ -82.220754652628983, 28.596148740807802 ], [ -82.220700379343157, 28.596058385485073 ], [ -82.220685999806136, 28.59598806419746 ], [ -82.220680137276588, 28.595907679746539 ], [ -82.220685686156685, 28.595837327058344 ], [ -82.22069379929502, 28.595633817356855 ], [ -82.220558203671246, 28.594767293701171 ], [ -82.220437549881538, 28.594239907208728 ], [ -82.22051912094274, 28.593752102799915 ], [ -82.220518396702488, 28.593404873618546 ], [ -82.220481081633224, 28.593275113484108 ], [ -82.220429594499876, 28.593154607218491 ], [ -82.220275724711342, 28.593031564988856 ], [ -82.219888132902724, 28.592851494233511 ], [ -82.219346890139079, 28.592651383545824 ], [ -82.218558163205458, 28.592527036095319 ], [ -82.21773530192371, 28.592412788898944 ], [ -82.217271362743588, 28.592428604422853 ], [ -82.216858555680531, 28.592394089222605 ], [ -82.21673323487552, 28.592356603398958 ], [ -82.216362247245826, 28.592196923272372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 635", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.240359451252033, 28.640064831362039 ], [ -82.240369979424557, 28.638914133033428 ], [ -82.240378300609976, 28.637949031259932 ], [ -82.240383704741205, 28.636858660826373 ], [ -82.240386491911977, 28.635772934643541 ], [ -82.240390371863967, 28.635167429334484 ], [ -82.24040659193318, 28.634206954672205 ], [ -82.240412307632283, 28.63325345633978 ], [ -82.240416050071445, 28.632587633619959 ], [ -82.240415263782367, 28.632241966122731 ], [ -82.240428328780538, 28.631051822753658 ], [ -82.24043263563091, 28.630345111339004 ], [ -82.24044460052518, 28.629097756152859 ], [ -82.240444379327158, 28.629001086727655 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 93rd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.217477181078422, 28.621516676931133 ], [ -82.217507166373821, 28.621461298646448 ], [ -82.217557109379513, 28.621352769713258 ], [ -82.217616994126786, 28.621199959848667 ], [ -82.217671912872632, 28.621071502934463 ], [ -82.217761768599985, 28.620856675300484 ], [ -82.217839138261425, 28.620668426057485 ], [ -82.217909009542893, 28.620493468458719 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 93rd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.20352335163804, 28.620387907823162 ], [ -82.204757474605771, 28.620378194158917 ], [ -82.204767372024406, 28.620611524490123 ], [ -82.204766994551122, 28.620692683039515 ], [ -82.204772191559925, 28.620744363783491 ], [ -82.204786003339947, 28.620808754516627 ], [ -82.204815771805855, 28.6208670809974 ], [ -82.204843227578749, 28.620909307848336 ], [ -82.20488665177237, 28.620951512464419 ], [ -82.204923220827069, 28.620987688045901 ], [ -82.204975754403762, 28.621021825563204 ], [ -82.205019142505421, 28.62104591487665 ], [ -82.205062519922379, 28.621063964852006 ], [ -82.205119576457733, 28.621077969779584 ], [ -82.205158368474898, 28.621083948855631 ], [ -82.205213128913925, 28.621089904750736 ], [ -82.205263310718394, 28.621087815074517 ], [ -82.205315761257907, 28.621079686227052 ], [ -82.205386449948705, 28.621065489599992 ], [ -82.205457146453355, 28.621055319151058 ], [ -82.205566607546388, 28.621037038579388 ], [ -82.20568518570785, 28.6210147179169 ], [ -82.205780961686841, 28.620998470963489 ], [ -82.205860786974014, 28.620990297812348 ], [ -82.205986215304037, 28.620971993655992 ], [ -82.206081999051719, 28.620959771802678 ], [ -82.206216561126894, 28.620945477124728 ], [ -82.2063351587109, 28.620933221431475 ], [ -82.206451468793588, 28.620918955088264 ], [ -82.206549531014531, 28.620904717238126 ], [ -82.20666356946829, 28.620894479484328 ], [ -82.206731994166518, 28.62088833714451 ], [ -82.206841467561162, 28.620878107076567 ], [ -82.206934985552508, 28.6208719255992 ], [ -82.207021656000137, 28.620865756276459 ], [ -82.207119727007637, 28.620855542422746 ], [ -82.207210964358111, 28.620851379143271 ], [ -82.207338694545243, 28.620843131287245 ], [ -82.207429930850964, 28.620838966959699 ], [ -82.207525725285834, 28.62083077119965 ], [ -82.207635215390894, 28.62082859111408 ], [ -82.207774374674784, 28.620832404092948 ], [ -82.207867898446494, 28.620830248189982 ], [ -82.207972847429417, 28.620838138528143 ], [ -82.208080067044648, 28.620839988681194 ], [ -82.208198704862951, 28.620849871031059 ], [ -82.208310490413496, 28.620853724424055 ], [ -82.208435978755077, 28.62086561009756 ], [ -82.208552337191122, 28.620875496530445 ], [ -82.208680102071497, 28.620885364474134 ], [ -82.208837541132851, 28.620905252338193 ], [ -82.20901038649869, 28.620928888130273 ], [ -82.2091415981224, 28.620951330724019 ], [ -82.209298477731423, 28.620976250340874 ], [ -82.209441108834412, 28.621006223130486 ], [ -82.209597999602082, 28.621036173812058 ], [ -82.209729221476209, 28.621063649053887 ], [ -82.209826235094795, 28.62109620653171 ], [ -82.209908998272283, 28.621131304338917 ], [ -82.209988929387265, 28.621176468420337 ], [ -82.210046027634959, 28.621211604833572 ], [ -82.210100295860684, 28.621256809351273 ], [ -82.210157439251745, 28.621314589784578 ], [ -82.210208881514234, 28.6213723799004 ], [ -82.210260381898067, 28.621460360283937 ], [ -82.210429110199769, 28.621706670215765 ], [ -82.210517756853278, 28.621832334189147 ], [ -82.210590167488562, 28.621939171608933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 92nd Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210590167488562, 28.621939171608933 ], [ -82.210788657057179, 28.621836947248141 ], [ -82.210908301825043, 28.621778893255659 ], [ -82.211022251299099, 28.621723363701992 ], [ -82.21115330436335, 28.621665292707437 ], [ -82.211272958800791, 28.621612269806555 ], [ -82.211409744034384, 28.62156928575649 ], [ -82.211563626765127, 28.621521241759929 ], [ -82.211751736858815, 28.621478176673442 ], [ -82.21191991325631, 28.621447722741092 ], [ -82.212113747548202, 28.621414712901661 ], [ -82.212301866317063, 28.621376679369888 ], [ -82.212495702399067, 28.621343668079671 ], [ -82.212720890385427, 28.62130557608662 ], [ -82.212917590479563, 28.62128010776253 ], [ -82.213100033937536, 28.621254663280709 ], [ -82.213239714775668, 28.621234315182893 ], [ -82.213416469077089, 28.621216427234042 ], [ -82.213596081551273, 28.621201049381252 ], [ -82.213767152872663, 28.621193230946385 ], [ -82.213943922301056, 28.621182889429136 ], [ -82.214132103244424, 28.621175044539616 ], [ -82.214291779267782, 28.621172278408853 ], [ -82.214422930978614, 28.62116452379966 ], [ -82.214594018536786, 28.621164254145615 ], [ -82.214725179421222, 28.621161530657954 ], [ -82.214876307217295, 28.621161292137 ], [ -82.215004632355118, 28.621166120900874 ], [ -82.215150051806262, 28.621163376280709 ], [ -82.215315455625586, 28.621173178459909 ], [ -82.215472295901321, 28.621177961664969 ], [ -82.215623439126944, 28.621185271233443 ], [ -82.215768893543455, 28.621200136794766 ], [ -82.215959970752664, 28.62121492981202 ], [ -82.216131105741624, 28.621237302275606 ], [ -82.216273710216768, 28.621252171820565 ], [ -82.216464828844821, 28.621287092478447 ], [ -82.216610316523614, 28.621317053171197 ], [ -82.216772920226532, 28.621352018775745 ], [ -82.216935526081144, 28.621386984181246 ], [ -82.217115251078852, 28.621426953508816 ], [ -82.217289267794058, 28.621464415997753 ], [ -82.217477181078422, 28.621516676931133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 93rd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210590167488562, 28.621939171608933 ], [ -82.211380068051284, 28.62307998111174 ], [ -82.211460543292191, 28.623183879238884 ], [ -82.21153591389573, 28.623243518435281 ], [ -82.211616268636831, 28.623287659432069 ], [ -82.211696607740294, 28.623322946681213 ], [ -82.211786949088008, 28.62334272520398 ], [ -82.211894834079644, 28.623355836060888 ], [ -82.211987644075307, 28.623355691532552 ], [ -82.212102993604134, 28.623337805271024 ], [ -82.212273499844528, 28.623306554113942 ], [ -82.212426460375326, 28.623281970422276 ], [ -82.212574404717856, 28.623257394393104 ], [ -82.212722347964146, 28.623232816399664 ], [ -82.21283519312324, 28.623217146860831 ], [ -82.212932996790173, 28.623205927624102 ], [ -82.21305086349102, 28.62319246438252 ], [ -82.213196322352843, 28.623178956013426 ], [ -82.213319208548597, 28.623167698106396 ], [ -82.213464675266408, 28.623158616298955 ], [ -82.213559980218321, 28.623151827391059 ], [ -82.213635221102166, 28.623147282441572 ], [ -82.21372049176675, 28.623140509171737 ], [ -82.213868479401995, 28.623138063264932 ], [ -82.213996391573929, 28.623131221903112 ], [ -82.214121806189922, 28.623128813918843 ], [ -82.214229665321241, 28.62312864327567 ], [ -82.214307423707382, 28.623128520851957 ], [ -82.214445379089668, 28.623126090112823 ], [ -82.21456328044988, 28.623130329339389 ], [ -82.214681177326185, 28.623132358649013 ], [ -82.21485427104686, 28.623140936506889 ], [ -82.215019827626492, 28.623142889369216 ], [ -82.215152788421591, 28.623151532052663 ], [ -82.21525563392737, 28.623153582852257 ], [ -82.215388596800807, 28.623162226203323 ], [ -82.215579263126472, 28.623177417418901 ], [ -82.215767416411467, 28.623190397115106 ], [ -82.215920466446136, 28.623210074346019 ], [ -82.216178887358311, 28.623238435980248 ], [ -82.216382121935695, 28.623266884879197 ], [ -82.216555253337361, 28.62329316794845 ], [ -82.216615467513478, 28.62329971240883 ], [ -82.216670663532796, 28.623306263929791 ], [ -82.216708286516123, 28.623303991495309 ], [ -82.216738353461864, 28.6232884505011 ], [ -82.216770904778187, 28.623259627666396 ], [ -82.216810900430659, 28.623193164643546 ], [ -82.216863267165294, 28.623042581456097 ], [ -82.216935645622854, 28.622865406982942 ], [ -82.217020506459136, 28.622659439766998 ], [ -82.217105348765841, 28.62244461970139 ], [ -82.217185240898516, 28.622263006233602 ], [ -82.2172626363934, 28.622085823562553 ], [ -82.217337444635874, 28.621871020257807 ], [ -82.217434817164346, 28.621651752189671 ], [ -82.217477181078422, 28.621516676931133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203232600557527, 28.602306468569754 ], [ -82.203333501624613, 28.602093973139873 ], [ -82.203632513154929, 28.601434591207415 ], [ -82.203934248353477, 28.600787141534898 ], [ -82.204114718563162, 28.600383393646979 ], [ -82.204310675001253, 28.600009692735199 ], [ -82.204564888269957, 28.599468644544054 ], [ -82.204714005532495, 28.599141016441621 ], [ -82.204886857894294, 28.598768296827593 ], [ -82.205208817447613, 28.598064945316892 ], [ -82.205507081253458, 28.597427709801444 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.205550722117607, 28.59668760876265 ], [ -82.20526520785711, 28.597307925295556 ], [ -82.204458555226253, 28.599042278168188 ], [ -82.204228110979145, 28.599553253467167 ], [ -82.203684601475118, 28.600738413437774 ], [ -82.202940045648901, 28.602351705095003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.205550722117607, 28.59668760876265 ], [ -82.205444029920869, 28.596820358687406 ], [ -82.205359534405815, 28.596981832634157 ], [ -82.204946393924075, 28.597878954059585 ], [ -82.204702855349595, 28.598395742060436 ], [ -82.204447251632871, 28.598947290492834 ], [ -82.204264374038601, 28.599285333227254 ], [ -82.203881431259305, 28.600008546680421 ], [ -82.203724049736763, 28.600337124634198 ], [ -82.203168832409048, 28.601519961985236 ], [ -82.202766666999395, 28.602378368508496 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.20573331090668, 28.601683944318804 ], [ -82.205689922820838, 28.601629577142006 ], [ -82.205628655584988, 28.601563297194815 ], [ -82.205585662831865, 28.601510797228915 ], [ -82.205526170492917, 28.601445989879178 ], [ -82.205447003078987, 28.601356341005818 ], [ -82.205366753036031, 28.601266694619603 ], [ -82.205303841441008, 28.601188482659236 ], [ -82.205240917593997, 28.601105492799579 ], [ -82.205188836758964, 28.601032993412879 ], [ -82.205142178688774, 28.600967169464891 ], [ -82.205100936149975, 28.600903249401224 ], [ -82.20506293044005, 28.600835503042546 ], [ -82.205027082890069, 28.600763933820144 ], [ -82.204991074985784, 28.600689790454108 ], [ -82.20496406896585, 28.600633195763365 ], [ -82.204932543135428, 28.600557801307971 ], [ -82.204902086949517, 28.600476672671828 ], [ -82.204859647234102, 28.600353545516057 ], [ -82.204845841640733, 28.600284089746292 ], [ -82.204826700157881, 28.600213669277792 ], [ -82.204811358050378, 28.60014324218951 ], [ -82.204795986536212, 28.600056044259201 ], [ -82.20478443184092, 28.5999789016732 ], [ -82.204772833716035, 28.599878277566717 ], [ -82.204768857878108, 28.599787706693245 ], [ -82.204764895044249, 28.59970384469414 ], [ -82.204764751047293, 28.599630041648521 ], [ -82.204768441939748, 28.599573004623345 ], [ -82.204775907186644, 28.599502545033847 ], [ -82.204779578575412, 28.599435446046915 ], [ -82.204783243458252, 28.599364991267727 ], [ -82.204798304909076, 28.599291163548681 ], [ -82.204817141705902, 28.599203914162622 ], [ -82.204832183612382, 28.599120024477426 ], [ -82.204866205243704, 28.59902268574103 ], [ -82.204896432987937, 28.598928708504399 ], [ -82.204938069185815, 28.598838068991963 ], [ -82.205287027266763, 28.598028783483258 ], [ -82.205507081253458, 28.597427709801444 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.205507081253458, 28.597427709801444 ], [ -82.205632467072007, 28.597151178933753 ], [ -82.206076429100719, 28.596186318775072 ], [ -82.206144208867613, 28.59603903460571 ], [ -82.206408555229501, 28.595467930268448 ], [ -82.206632257365001, 28.594999013012437 ], [ -82.206794937649519, 28.594653340331067 ], [ -82.207062627600209, 28.594055195432908 ], [ -82.207367656239839, 28.593408934468822 ], [ -82.207676022539729, 28.592732631472842 ], [ -82.207764128890858, 28.592540258869818 ], [ -82.207831886284822, 28.592383963055379 ], [ -82.207903045869074, 28.592227660206181 ], [ -82.208306341215447, 28.591370988956843 ], [ -82.208441911931317, 28.591088431932594 ], [ -82.208557121981741, 28.590835944864654 ], [ -82.208624911659939, 28.590697670122154 ], [ -82.208692697277854, 28.59055639145744 ], [ -82.208757109011174, 28.59043013738972 ], [ -82.208852050733299, 28.590255776906005 ], [ -82.208913071637767, 28.590135534842041 ], [ -82.208994444095524, 28.589982220508666 ], [ -82.209089427628342, 28.589828887034244 ], [ -82.209164048446709, 28.58970261528551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.209164048446709, 28.58970261528551 ], [ -82.20987678881481, 28.588737328826745 ], [ -82.210016090372605, 28.588622973387164 ], [ -82.210145282194318, 28.58855969597543 ], [ -82.210240496704799, 28.588523504124854 ], [ -82.210315317325524, 28.588499359272319 ], [ -82.210403750063264, 28.588475192449078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210503635437107, 28.5873666700484 ], [ -82.210374618568125, 28.587517055035313 ], [ -82.21022862679051, 28.587688491548359 ], [ -82.210086075664464, 28.587877945955086 ], [ -82.209933313163987, 28.588067415947691 ], [ -82.209821333875254, 28.588229787905743 ], [ -82.209695751969107, 28.58839818849782 ], [ -82.209614287493196, 28.588503443838235 ], [ -82.209529454242769, 28.588626725865083 ], [ -82.209451397655883, 28.588734979755841 ], [ -82.209386935265499, 28.588834200121319 ], [ -82.209295318650248, 28.588969508899783 ], [ -82.209234259286418, 28.589068724863388 ], [ -82.209139257798043, 28.589213048606894 ], [ -82.209047674123852, 28.58936637961687 ], [ -82.208962859375887, 28.589498672025961 ], [ -82.208895041229965, 28.589621928439989 ], [ -82.208786514401424, 28.589811327451926 ], [ -82.208688180458424, 28.589991701785294 ], [ -82.208583067060843, 28.59018710318167 ], [ -82.208474563813965, 28.590388519270462 ], [ -82.208359312613794, 28.590619980002813 ], [ -82.208261053081358, 28.590839400886384 ], [ -82.208067859348603, 28.591239190355115 ], [ -82.207901805579638, 28.591596885422579 ], [ -82.207627345327666, 28.592207056239744 ], [ -82.207522281870283, 28.592429489908309 ], [ -82.207451109800189, 28.592579784791354 ], [ -82.20733588345017, 28.592826264014594 ], [ -82.20695971808621, 28.593640840150687 ], [ -82.206342923056681, 28.594972418467947 ], [ -82.205770175397717, 28.596210811146928 ], [ -82.205550722117607, 28.59668760876265 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.209164048446709, 28.58970261528551 ], [ -82.209666114013487, 28.588896848795827 ], [ -82.209828985746299, 28.588656301877684 ], [ -82.209979925294121, 28.588438947075257 ], [ -82.210107269085924, 28.588268395030706 ], [ -82.21026001859569, 28.588072917983702 ], [ -82.210426345801281, 28.587859397327215 ], [ -82.210606277380251, 28.587642852436183 ], [ -82.210774463645478, 28.587436938814342 ], [ -82.210989929096385, 28.58719470741374 ], [ -82.211202151724123, 28.586957029395823 ], [ -82.21174489014868, 28.586359362935184 ], [ -82.212087097112814, 28.585987878028181 ], [ -82.212448720682332, 28.58558817101526 ], [ -82.212641466411341, 28.585367843336183 ], [ -82.212883220019449, 28.585114090059239 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.215406620830251, 28.581949323289628 ], [ -82.21471736836402, 28.582704340573905 ], [ -82.213875319531539, 28.583630809108641 ], [ -82.213484856310359, 28.584063956348576 ], [ -82.213152118546901, 28.584436937842369 ], [ -82.212785396052325, 28.584834000954892 ], [ -82.212316828496512, 28.585354374303332 ], [ -82.212024817632141, 28.585676225102468 ], [ -82.211804103935592, 28.585916866492276 ], [ -82.211437396301804, 28.586325939657709 ], [ -82.210904272859878, 28.586903478628866 ], [ -82.210503635437107, 28.5873666700484 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.212906535792342, 28.585086894043553 ], [ -82.213039841275872, 28.584941854403443 ], [ -82.213458481974769, 28.584484080034841 ], [ -82.213927056240294, 28.583972713480946 ], [ -82.214394371209906, 28.583440449038488 ], [ -82.214840350249531, 28.582969780674876 ], [ -82.215380862674479, 28.582350787857028 ], [ -82.215964238968937, 28.581725726127875 ], [ -82.217043897541075, 28.580528532582068 ], [ -82.217240536505017, 28.58031511032215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.217092019472076, 28.580077655825278 ], [ -82.216838871124807, 28.580346912724558 ], [ -82.216489703473371, 28.580757698001733 ], [ -82.215640891716689, 28.581690194386404 ], [ -82.215406620830251, 28.581949323289628 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210403750063264, 28.588475192449078 ], [ -82.210499042139048, 28.588478050005239 ], [ -82.210584125356135, 28.588480921474218 ], [ -82.210672610851091, 28.588483788529654 ], [ -82.210761121318512, 28.588498670158621 ], [ -82.210849643789317, 28.588519559497186 ], [ -82.210914350235399, 28.588543488650934 ], [ -82.210982559996339, 28.588578073505083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210982559996339, 28.588578073505083 ], [ -82.211074372860111, 28.588582287752846 ], [ -82.211152638611424, 28.588579164351021 ], [ -82.211203667001939, 28.588570073552702 ], [ -82.211285288020349, 28.588542912825204 ], [ -82.211380400052988, 28.588455658665509 ], [ -82.21160789445328, 28.588199989837921 ], [ -82.212371921609886, 28.587369777560415 ], [ -82.212453397525522, 28.587289319580666 ], [ -82.212478625085978, 28.587251181582229 ], [ -82.212499387794267, 28.587214363451317 ], [ -82.212509722646956, 28.587172307255582 ], [ -82.212509578471739, 28.587100050713147 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210982559996339, 28.588578073505083 ], [ -82.211064385814979, 28.588693441855298 ], [ -82.211112185890102, 28.58877146357467 ], [ -82.211163339317125, 28.588825452543517 ], [ -82.211231437325893, 28.588843368500008 ], [ -82.211289301434846, 28.588849286532014 ], [ -82.211357327436531, 28.588831157627432 ], [ -82.21143889954925, 28.588779968448037 ], [ -82.211768771979735, 28.588665315234696 ], [ -82.21199629701448, 28.58842466428019 ], [ -82.212074387924602, 28.588334431332093 ], [ -82.212149092472046, 28.588253215292209 ], [ -82.212240783179311, 28.588156953276531 ], [ -82.212308691950042, 28.588081754621133 ], [ -82.212359618480789, 28.588021600973995 ], [ -82.212417338419414, 28.587955429828593 ], [ -82.21246147535922, 28.58790429750859 ], [ -82.21252259240643, 28.587835117125206 ], [ -82.2125769078486, 28.587768951223072 ], [ -82.212665212602317, 28.58768170588084 ], [ -82.212753263316827, 28.58758716725487 ], [ -82.212805430109512, 28.587507542590266 ], [ -82.212819811388101, 28.587430541405617 ], [ -82.212810923833644, 28.587348445866827 ], [ -82.212776740732139, 28.587297055907435 ], [ -82.21267105767113, 28.587204106588956 ], [ -82.212509578471739, 28.587100050713147 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.211937377191944, 28.586639041079934 ], [ -82.211937274352067, 28.58658772419497 ], [ -82.211954998880714, 28.586496347201805 ], [ -82.211985385074769, 28.586376152279971 ], [ -82.212015818350523, 28.586279986622785 ], [ -82.212053064030457, 28.586186812441028 ], [ -82.212097130173873, 28.586099636317734 ], [ -82.212161624515701, 28.586018436148532 ], [ -82.212883220019449, 28.585114090059239 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.212509578471739, 28.587100050713147 ], [ -82.212379884788533, 28.587000408062003 ], [ -82.21218314202703, 28.58686539601668 ], [ -82.212083291074677, 28.586802490519702 ], [ -82.212030644133009, 28.586759496524838 ], [ -82.21198403480507, 28.586710816484203 ], [ -82.211937377191944, 28.586639041079934 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210403750063264, 28.588475192449078 ], [ -82.210638353622542, 28.588369700794342 ], [ -82.210747054219624, 28.588270410487048 ], [ -82.210899936376492, 28.588141013657332 ], [ -82.211823519421742, 28.587115315944278 ], [ -82.211876651589819, 28.587036125056709 ], [ -82.211914768755648, 28.586962385994241 ], [ -82.211929139307969, 28.586880254200828 ], [ -82.21193187190292, 28.586793007997585 ], [ -82.211937377191944, 28.586639041079934 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.211219723334452, 28.584796528191408 ], [ -82.211260669852166, 28.584788302109583 ], [ -82.211320188766692, 28.584773193017515 ], [ -82.211366962553754, 28.584765611158147 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.211435988600599, 28.585952149685848 ], [ -82.211508289805465, 28.585764724013796 ], [ -82.211545845760995, 28.585646632228471 ], [ -82.211564268933301, 28.585564569959853 ], [ -82.211566877509256, 28.585533750951733 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.213541947248359, 28.583389413496814 ], [ -82.213392937041831, 28.583373760400555 ], [ -82.213309831020069, 28.583356780372664 ], [ -82.213207309186075, 28.583325165831134 ], [ -82.21309366785421, 28.583271570422603 ], [ -82.212957844601078, 28.583203343842015 ], [ -82.212896899080874, 28.583191218700751 ], [ -82.21283322072631, 28.583196206198995 ], [ -82.2127880609751, 28.583210948829073 ], [ -82.21273915953924, 28.583240348608626 ], [ -82.212708783654492, 28.583281949780119 ], [ -82.212241274844274, 28.583791813543439 ], [ -82.211521189549089, 28.584583665444828 ], [ -82.211448680377941, 28.584667171519527 ], [ -82.211366962553754, 28.584765611158147 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.215406620830251, 28.581949323289628 ], [ -82.215039751545021, 28.582265290345681 ], [ -82.21460176128798, 28.582749579390661 ], [ -82.21435387926563, 28.583011292351983 ], [ -82.214184694533344, 28.583182684869531 ], [ -82.214076657276749, 28.583250476190045 ], [ -82.213990908452431, 28.583297050844081 ], [ -82.213891305101214, 28.583338759216495 ], [ -82.213802745401821, 28.583363340883178 ], [ -82.213705860829407, 28.583380602223968 ], [ -82.213631109021222, 28.58338805101112 ], [ -82.213541947248359, 28.583389413496814 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.213541947248359, 28.583389413496814 ], [ -82.213429047167239, 28.583428697932291 ], [ -82.213352185215726, 28.58347764404861 ], [ -82.213289674339407, 28.583522776010568 ], [ -82.212940439079716, 28.583910491010528 ], [ -82.21282215593871, 28.584027510150396 ], [ -82.21239775789374, 28.584495511486562 ], [ -82.211992701972719, 28.584943684905618 ], [ -82.211782706702266, 28.585173771154196 ], [ -82.211690464642857, 28.585296370389191 ], [ -82.211657333899126, 28.585347260690178 ], [ -82.21161706148996, 28.585425784551706 ], [ -82.211566877509256, 28.585533750951733 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 60th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203652966984464, 28.581424493440597 ], [ -82.203658186748086, 28.581199972993033 ], [ -82.203634060220168, 28.58041171931216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 120th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200245820301632, 28.581655787926106 ], [ -82.201949125976213, 28.581576706552351 ], [ -82.202818698126862, 28.581556997138797 ], [ -82.202961466082499, 28.581556998386215 ], [ -82.203152971052504, 28.581539991662801 ], [ -82.203282979229158, 28.581544787694458 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 60th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203650762956315, 28.581747296982488 ], [ -82.203650546771883, 28.581635539533391 ], [ -82.203654839702963, 28.581515794126439 ], [ -82.203652966984464, 28.581424493440597 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 120th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203652966984464, 28.581424493440597 ], [ -82.20355528260022, 28.581476027807035 ], [ -82.203455874503902, 28.581512098533672 ], [ -82.203282979229158, 28.581544787694458 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 120th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203282979229158, 28.581544787694458 ], [ -82.203392661705038, 28.581560090138726 ], [ -82.203510170610585, 28.581586031147307 ], [ -82.203589169311272, 28.58164123571262 ], [ -82.203650762956315, 28.581747296982488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 121st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.191133493622317, 28.576161582137605 ], [ -82.191291759853058, 28.576169344028756 ], [ -82.191486214145129, 28.576185035219385 ], [ -82.19165803881458, 28.576188785667124 ], [ -82.191798218318056, 28.576196571498048 ], [ -82.191924821834576, 28.576196392370658 ], [ -82.192141854244014, 28.57619608657027 ], [ -82.192367943542521, 28.576203750668959 ], [ -82.192666385307263, 28.576215304093232 ], [ -82.192896988589752, 28.576218968060626 ], [ -82.193159289050584, 28.576246536705249 ], [ -82.193362748634456, 28.576242256222219 ], [ -82.193593389534641, 28.576265877878786 ], [ -82.193742628316883, 28.576281631860116 ], [ -82.193869289406507, 28.576313381147692 ], [ -82.193982400605819, 28.576353135339868 ], [ -82.1941226767036, 28.57641280425749 ], [ -82.194299052332696, 28.576432510032056 ], [ -82.194498029751045, 28.576448191356665 ], [ -82.194678941391757, 28.576475871387078 ], [ -82.194796537523203, 28.576495661371073 ], [ -82.195203592064814, 28.576558939542753 ], [ -82.195778052729523, 28.576681847453386 ], [ -82.195904731725719, 28.576721578740305 ], [ -82.196008837638175, 28.576781298594025 ], [ -82.19608581228907, 28.576841059213322 ], [ -82.196185599082042, 28.577008552859841 ], [ -82.196298970050648, 28.577187999146112 ], [ -82.196366978819924, 28.577287684944999 ], [ -82.196416826616073, 28.577347482652083 ], [ -82.19648021901682, 28.577395286722549 ], [ -82.196548145505574, 28.577451069055041 ], [ -82.196638613559912, 28.577470894755152 ], [ -82.196701937305491, 28.577482778356739 ], [ -82.196769753632424, 28.577478687583209 ], [ -82.196873697378678, 28.577450599115302 ], [ -82.196959540222977, 28.577414552801862 ], [ -82.197049926548686, 28.577390473953542 ], [ -82.197180999600675, 28.577362345115997 ], [ -82.197321122500099, 28.577338195012612 ], [ -82.197538130438105, 28.577321914555402 ], [ -82.197696398824874, 28.577329667160271 ], [ -82.197832074957503, 28.577345435408038 ], [ -82.198058317526829, 28.577432916450277 ], [ -82.19841128324633, 28.577584075965991 ], [ -82.19861482109242, 28.577619700814171 ], [ -82.19885447109904, 28.577623342361779 ], [ -82.19910350368032, 28.577806581096176 ], [ -82.199642225209573, 28.578153039594568 ], [ -82.200434396080951, 28.57862285526102 ], [ -82.200801084540444, 28.578853812250234 ], [ -82.201181266715594, 28.579044835899509 ], [ -82.201393773895575, 28.57904053000064 ], [ -82.201538459397014, 28.579036325908657 ], [ -82.201787262904659, 28.579095828087269 ], [ -82.201999887543806, 28.579151392389278 ], [ -82.202266899959284, 28.579274727267489 ], [ -82.202552191388236, 28.57949781907482 ], [ -82.202873793512794, 28.579792698902061 ], [ -82.203032304444278, 28.579924176792861 ], [ -82.203326604608833, 28.58012729550779 ], [ -82.203634060220168, 28.58041171931216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 52nd Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.191133493622317, 28.576161582137605 ], [ -82.191146935627259, 28.576093712495403 ], [ -82.191158587790255, 28.576036619338957 ], [ -82.191172866611467, 28.575931226383197 ], [ -82.19119078604227, 28.575838603692279 ], [ -82.191219503083175, 28.575717226218298 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 52nd Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.191219503083175, 28.575717226218298 ], [ -82.191190329196886, 28.575586350681107 ], [ -82.19117925834513, 28.57546502901894 ], [ -82.191160987063697, 28.575362876907079 ], [ -82.191182360350396, 28.575180841585084 ], [ -82.191200322080363, 28.575110568062239 ], [ -82.191232747756203, 28.575040275145501 ], [ -82.191265227379986, 28.574998719071736 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 123rd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.191219503083175, 28.575717226218298 ], [ -82.192004440191553, 28.575719316076611 ], [ -82.192792974326323, 28.575711815226324 ], [ -82.194692015350185, 28.57571869664898 ], [ -82.194974168234339, 28.575724678255462 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 123rd Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.191265227379986, 28.574998719071736 ], [ -82.191471406815722, 28.574998430483248 ], [ -82.191800609279795, 28.575020318652875 ], [ -82.192158678399551, 28.575003848222789 ], [ -82.192393836621434, 28.575025868415196 ], [ -82.19259276840009, 28.575019201567997 ], [ -82.192708499461958, 28.575009458703509 ], [ -82.192950831558022, 28.574999536566001 ], [ -82.19315701097328, 28.574999244514085 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 121st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.190041026448228, 28.576123995919403 ], [ -82.190111532151747, 28.576107133861754 ], [ -82.190269756187163, 28.576090947914075 ], [ -82.190437073852053, 28.576102688328007 ], [ -82.190731027889811, 28.576134207599985 ], [ -82.191133493622317, 28.576161582137605 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.199684940018727, 28.606594628708379 ], [ -82.199543329843536, 28.606744286154594 ], [ -82.199432495725702, 28.606867537457028 ], [ -82.199270102857568, 28.607045571120068 ], [ -82.199038120161418, 28.607303487501145 ], [ -82.198793250099527, 28.607577377446464 ], [ -82.198648916629466, 28.607743986549295 ], [ -82.198491683540354, 28.607919733333631 ], [ -82.198316404169404, 28.608113739772509 ], [ -82.198120467783539, 28.608312336455203 ], [ -82.197942569033955, 28.608488111754955 ], [ -82.197715681941062, 28.608691192336757 ], [ -82.197548636033588, 28.60884132945143 ], [ -82.197325396948273, 28.609044489804631 ], [ -82.196979827233321, 28.609351651669527 ], [ -82.196483098958211, 28.609764575556692 ], [ -82.195894901813233, 28.61024168081363 ], [ -82.195299088656327, 28.610714379282509 ], [ -82.194128081582249, 28.611643784682048 ], [ -82.193171305523563, 28.612399806815073 ], [ -82.192198722381633, 28.613180582065979 ], [ -82.191522913957598, 28.613717201798902 ], [ -82.190449866496934, 28.614573495122311 ], [ -82.188375932178459, 28.616217573558256 ], [ -82.187823910074485, 28.616658265407054 ], [ -82.186603760975402, 28.617628703374425 ], [ -82.18629678716789, 28.617873023718222 ], [ -82.185164326288628, 28.618777225210366 ], [ -82.184398154951197, 28.619384594083524 ], [ -82.183386892018646, 28.620181481940271 ], [ -82.182858056068852, 28.620610726592137 ], [ -82.181452053832388, 28.621720412073994 ], [ -82.180007343704062, 28.622871163313985 ], [ -82.17939333363212, 28.623359773310199 ], [ -82.178033709063044, 28.624439728350719 ], [ -82.177107469442944, 28.625170317483196 ], [ -82.176945597879794, 28.625300136847386 ], [ -82.17692807835131, 28.625314153048031 ], [ -82.176669711253865, 28.625520865515494 ], [ -82.175928440030489, 28.6261155680995 ], [ -82.175390064236453, 28.626537734046188 ], [ -82.175033148137999, 28.62681878744149 ], [ -82.17456616321526, 28.62719549244742 ], [ -82.17442618467534, 28.627309356281909 ], [ -82.174150778753557, 28.627533380821475 ], [ -82.173915976009695, 28.627711476356243 ], [ -82.173448642500688, 28.628073184703069 ], [ -82.173059368433144, 28.628389558137034 ], [ -82.172607844633575, 28.628750282488593 ], [ -82.172373042996981, 28.628932933936145 ], [ -82.172045374159367, 28.629202320298624 ], [ -82.171771872421772, 28.629419211812479 ], [ -82.171498371605111, 28.629636102769357 ], [ -82.171268729158157, 28.629816466492741 ], [ -82.171036514633073, 28.630003670959876 ], [ -82.170763008744188, 28.630220560428707 ], [ -82.170172144410287, 28.630697702833775 ], [ -82.169991541306715, 28.630850648775947 ], [ -82.169736109733861, 28.631062954996377 ], [ -82.169511658323543, 28.631261544567927 ], [ -82.169240762358939, 28.631498941407973 ], [ -82.168949231538704, 28.631756879716814 ], [ -82.168732537408644, 28.631962297170698 ], [ -82.168490043322109, 28.632190541909736 ], [ -82.168203698481747, 28.632462147991586 ], [ -82.167930251901865, 28.632724619453885 ], [ -82.16769810110587, 28.632959687009023 ], [ -82.167435006000176, 28.633233542123193 ], [ -82.16718223003501, 28.633498266850879 ], [ -82.166960412401224, 28.63373559974303 ], [ -82.16672570049144, 28.633988904057368 ], [ -82.166496166262647, 28.634249039532726 ], [ -82.166274368079556, 28.634500047966835 ], [ -82.166031949928367, 28.634782992276868 ], [ -82.165833385324859, 28.635022575152199 ], [ -82.165660596791398, 28.635225654871174 ], [ -82.165518780823589, 28.635408181226328 ], [ -82.165356319066902, 28.635606690302314 ], [ -82.165150022166827, 28.63585995553856 ], [ -82.16491797837223, 28.636172517945013 ], [ -82.164652406441107, 28.636523873087153 ], [ -82.164448725629299, 28.63680220907608 ], [ -82.164211554139385, 28.637142129834512 ], [ -82.164015629814671, 28.637425014402449 ], [ -82.163822285511912, 28.637705617177847 ], [ -82.163641833395303, 28.637970248181599 ], [ -82.163443331525784, 28.638257696298048 ], [ -82.1630901588928, 28.638775548554044 ], [ -82.162711197252349, 28.639327625568608 ], [ -82.162419886446941, 28.639754225630707 ], [ -82.162269195126598, 28.63997337945343 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 109th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183747003552611, 28.598908571823571 ], [ -82.184116125540967, 28.598900354914527 ], [ -82.184694527757202, 28.59887208409744 ], [ -82.185588916102475, 28.598878722722901 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183747003552611, 28.598908571823571 ], [ -82.183748852783012, 28.597518534690565 ], [ -82.183755306995451, 28.596112647765221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683D 1a", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187842476537085, 28.597966682587444 ], [ -82.187841148636153, 28.597780385425942 ], [ -82.187845418963889, 28.597059878771464 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683D 1", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187845418963889, 28.597059878771464 ], [ -82.190590575609619, 28.597085232484662 ], [ -82.190707428932924, 28.597114521348693 ], [ -82.190868841353591, 28.597178109713568 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 110th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181727396031746, 28.59606596510389 ], [ -82.182761881349137, 28.596101339317006 ], [ -82.183755306995451, 28.596112647765221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 46th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181674406256533, 28.598786999508214 ], [ -82.181691642917542, 28.598460247187376 ], [ -82.181708100803135, 28.597681101163232 ], [ -82.18168548664913, 28.596949132790989 ], [ -82.181656306881735, 28.596540759681833 ], [ -82.181638098755343, 28.596302021898623 ], [ -82.181652197287008, 28.596220319614194 ], [ -82.181694787688656, 28.596148005191601 ], [ -82.181727396031746, 28.59606596510389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 110th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179629715610716, 28.596071706936602 ], [ -82.181727396031746, 28.59606596510389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 45th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179490529520507, 28.599040054908649 ], [ -82.179631438035059, 28.598060061036207 ], [ -82.179612447773195, 28.597924707014833 ], [ -82.179591816962414, 28.59779859872679 ], [ -82.179648857450303, 28.597324018716403 ], [ -82.179620819456105, 28.59684354213173 ], [ -82.179613421433288, 28.596495179789763 ], [ -82.179629715610716, 28.596071706936602 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183780377283853, 28.592523289454732 ], [ -82.183940977360905, 28.592520670735627 ], [ -82.184256756409994, 28.592527452022654 ], [ -82.184703184347597, 28.592526847648998 ], [ -82.185040732290261, 28.592528791733582 ], [ -82.185506227566719, 28.592535366724277 ], [ -82.185882425895969, 28.592535575932256 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 49th Plz", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185819910105991, 28.594136729952112 ], [ -82.185819469920901, 28.593886862428509 ], [ -82.185827597105671, 28.593554336900702 ], [ -82.185829169020835, 28.59321028747576 ], [ -82.185846131658067, 28.592948866069896 ], [ -82.1858684760128, 28.592652598824259 ], [ -82.185882425895969, 28.592535575932256 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185882425895969, 28.592535575932256 ], [ -82.186687639296707, 28.592540961147503 ], [ -82.186818301757171, 28.592540782969561 ], [ -82.187705188841861, 28.59255037416013 ], [ -82.187891483679493, 28.592549397328614 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187891483679493, 28.592549397328614 ], [ -82.188928070138815, 28.592549885953247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 51st Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.188811825071866, 28.595744496898202 ], [ -82.188828971928601, 28.595590708880074 ], [ -82.1888547882631, 28.595413845012814 ], [ -82.188858834601064, 28.595240854383587 ], [ -82.188871774636937, 28.595169719368229 ], [ -82.188897597672735, 28.594996701249126 ], [ -82.18890374362843, 28.594779499318026 ], [ -82.188922793099252, 28.594471946154407 ], [ -82.188935365472233, 28.594195151926463 ], [ -82.188950080064188, 28.593899135757823 ], [ -82.188932254588124, 28.593672358003989 ], [ -82.188922992440695, 28.59336484314392 ], [ -82.188917083782485, 28.593218720832947 ], [ -82.188924648036192, 28.593072689021124 ], [ -82.188924067615574, 28.592747863316358 ], [ -82.188928070138815, 28.592549885953247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 53rd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.191852679518888, 28.592524656433778 ], [ -82.191893978605947, 28.59248231367269 ], [ -82.191924376625238, 28.592432296505724 ], [ -82.191941662527299, 28.592357313787925 ], [ -82.191921999855651, 28.592037591542418 ], [ -82.191936522142868, 28.591562105931725 ], [ -82.191959738958147, 28.591048101531264 ], [ -82.191966673776918, 28.590899573625304 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 53rd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.19184565624839, 28.595967886630891 ], [ -82.19185809650098, 28.595791430863592 ], [ -82.191903406389116, 28.594976747515354 ], [ -82.191902803477277, 28.593745088492312 ], [ -82.191896005406136, 28.59359902262759 ], [ -82.191921063541471, 28.593006994888309 ], [ -82.191927055636356, 28.592709068671709 ], [ -82.191909476621746, 28.592622601348971 ], [ -82.191889801266868, 28.592580343560577 ], [ -82.191852679518888, 28.592524656433778 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189934107373375, 28.592515631218742 ], [ -82.190043001882074, 28.592521246236551 ], [ -82.190130114292785, 28.592523046689582 ], [ -82.190260779139763, 28.592524786276304 ], [ -82.19038272690689, 28.592522874413515 ], [ -82.190630995365353, 28.592528292333512 ], [ -82.190868353899162, 28.592522194067787 ], [ -82.191229854816044, 28.592523609147332 ], [ -82.191676286042593, 28.592524903805632 ], [ -82.191852679518888, 28.592524656433778 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 693", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174598919459797, 28.574264036170408 ], [ -82.17472474020083, 28.57427028344771 ], [ -82.175148134684292, 28.574267604401403 ], [ -82.175894033057901, 28.574266598209952 ], [ -82.176839305577715, 28.574263285671453 ], [ -82.177596586441979, 28.574264437225455 ], [ -82.17800968784772, 28.574267492540795 ], [ -82.178376864964008, 28.574268953595929 ], [ -82.178739635844664, 28.574264596610156 ], [ -82.17916178858556, 28.574271804477174 ], [ -82.180502964663233, 28.574270036314534 ], [ -82.181373639365361, 28.574274703587456 ], [ -82.182349825847965, 28.574265637595111 ], [ -82.182896735388042, 28.57426223672136 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 42nd Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174619657975413, 28.575194630111088 ], [ -82.174602355968759, 28.57511883644824 ], [ -82.17456822895825, 28.574958930698038 ], [ -82.174590252846642, 28.574877014806606 ], [ -82.174602101234527, 28.574725359866886 ], [ -82.174601878179956, 28.574590806260236 ], [ -82.174608861809844, 28.574424206608644 ], [ -82.174598919459797, 28.574264036170408 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 684", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182890602019796, 28.575285756987942 ], [ -82.182892303080138, 28.575196536396508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 692", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174619657975413, 28.575194630111088 ], [ -82.175001835482078, 28.575186557743077 ], [ -82.175457035627261, 28.575189763491021 ], [ -82.175727561186278, 28.575181834514147 ], [ -82.176105463249215, 28.575185136785482 ], [ -82.176491948477661, 28.575184637050825 ], [ -82.176878440034656, 28.575187927855154 ], [ -82.177466753755851, 28.575187163362617 ], [ -82.178647685841085, 28.575189411830646 ], [ -82.178750753600667, 28.575193067483664 ], [ -82.179459317077544, 28.575195927385607 ], [ -82.179983209943742, 28.575191446020433 ], [ -82.180833490261037, 28.575197902326735 ], [ -82.181396038573112, 28.5751971549725 ], [ -82.182892303080138, 28.575196536396508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 124th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182890602019796, 28.575285756987942 ], [ -82.183083832796754, 28.57527829600776 ], [ -82.183229818821147, 28.575266727631096 ], [ -82.183410185914909, 28.575270274921607 ], [ -82.183633440600218, 28.575243440051846 ], [ -82.183925470675689, 28.575254418584862 ], [ -82.184196003286871, 28.575250262559564 ], [ -82.184556742050972, 28.575261147777887 ], [ -82.185003353146612, 28.57526433222629 ], [ -82.185334072293301, 28.575298000584315 ], [ -82.185514464035577, 28.575316708022484 ], [ -82.185643252973875, 28.575293788219291 ], [ -82.185767721009043, 28.575255711204022 ], [ -82.185982400943502, 28.575236464743806 ], [ -82.186119825822004, 28.575240067015617 ], [ -82.18626583044157, 28.575239868484537 ], [ -82.186523445789902, 28.575216770844744 ], [ -82.18684120122758, 28.575204963430505 ], [ -82.187075932466072, 28.575200905775986 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 684", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182871395271448, 28.576098527985394 ], [ -82.182890602019796, 28.575285756987942 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 684", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182874998618033, 28.576195567472883 ], [ -82.182871395271448, 28.576098527985394 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 684", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182859225220895, 28.577008332852159 ], [ -82.182874998618033, 28.576195567472883 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 684", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182859162018261, 28.57833795362696 ], [ -82.182873387136965, 28.577250925073823 ], [ -82.182859225220895, 28.577008332852159 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 50th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187033174994468, 28.578394430013045 ], [ -82.187059908198549, 28.578312919878279 ], [ -82.187106224225545, 28.578082376252173 ], [ -82.187118275871399, 28.577893195226657 ], [ -82.187132965185697, 28.577662624609683 ], [ -82.187118790174566, 28.577417606494041 ], [ -82.187143371160275, 28.57733023225185 ], [ -82.187145736919334, 28.577114305516485 ], [ -82.187162046936521, 28.577012387828415 ], [ -82.187167373715923, 28.576915337118319 ], [ -82.187161596296278, 28.576757647049302 ], [ -82.187131059906292, 28.576585435271895 ], [ -82.187088721303155, 28.57632712365502 ], [ -82.187091986273259, 28.576247957503966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 123rd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18660208254262, 28.576244080346118 ], [ -82.186838437577109, 28.576241331075519 ], [ -82.187091986273259, 28.576247957503966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 49th Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.186600446233143, 28.578376458318424 ], [ -82.18660208254262, 28.576244080346118 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 123rd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185499955908966, 28.576226176161693 ], [ -82.185598888209071, 28.576221187788054 ], [ -82.185717059334607, 28.57621617583855 ], [ -82.185958931008713, 28.576225551686647 ], [ -82.18625576402448, 28.576229997406973 ], [ -82.186472904840031, 28.576241830725753 ], [ -82.18660208254262, 28.576244080346118 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 49th Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185482314170827, 28.578312649422177 ], [ -82.185512404930535, 28.578232547185667 ], [ -82.185486829506189, 28.578046303199006 ], [ -82.185417452166945, 28.577764437942623 ], [ -82.185430956704238, 28.57762855918682 ], [ -82.18543353755058, 28.577533935977876 ], [ -82.185433384470528, 28.577446597493477 ], [ -82.185430450690944, 28.577339853389962 ], [ -82.185438486381457, 28.577163765532521 ], [ -82.18543276789643, 28.577094812637974 ], [ -82.185460065920452, 28.57698802649686 ], [ -82.18547074504113, 28.576808480862198 ], [ -82.18547860413625, 28.576587693852474 ], [ -82.185494795561993, 28.576417845406532 ], [ -82.185499955908966, 28.576226176161693 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 123rd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182874998618033, 28.576195567472883 ], [ -82.183015887368626, 28.576216606924977 ], [ -82.183204891576963, 28.576246679902358 ], [ -82.183359485115886, 28.57624647204867 ], [ -82.183503768588452, 28.576243245122203 ], [ -82.183779491694366, 28.576233357564654 ], [ -82.183966374349367, 28.576230679985315 ], [ -82.18429344210702, 28.576237516495063 ], [ -82.184555138215472, 28.576245660706803 ], [ -82.184856392016073, 28.576249376214246 ], [ -82.185125687388421, 28.576240073040289 ], [ -82.185499955908966, 28.576226176161693 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 690", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181862671829464, 28.577002722459184 ], [ -82.182859225220895, 28.577008332852159 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 690", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18086357036826, 28.576997841732588 ], [ -82.181862671829464, 28.577002722459184 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 46th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18080786755263, 28.579398401029589 ], [ -82.180887967203574, 28.578921614022651 ], [ -82.180891264325552, 28.578792735208456 ], [ -82.180876775579122, 28.578548978331025 ], [ -82.180844551574253, 28.57821984812054 ], [ -82.180808899526994, 28.577943513117852 ], [ -82.180785626577574, 28.57770598048274 ], [ -82.180780023562718, 28.577515004263958 ], [ -82.180795640674006, 28.577389214050051 ], [ -82.180774275676399, 28.577238630465306 ], [ -82.180777696570289, 28.577182729372637 ], [ -82.180784591821322, 28.577100426521604 ], [ -82.180807384337839, 28.577056919589438 ], [ -82.18086357036826, 28.576997841732588 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 690", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.17876929494976, 28.576995800901237 ], [ -82.18086357036826, 28.576997841732588 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 45th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178717180153598, 28.57868443856804 ], [ -82.178680090121546, 28.578527338714341 ], [ -82.178705472432227, 28.578105814630625 ], [ -82.178765151311381, 28.577796420350133 ], [ -82.178781478730755, 28.577699355532413 ], [ -82.178775858271649, 28.577626580797844 ], [ -82.178753732092375, 28.577544120296238 ], [ -82.178770131231886, 28.577490726090353 ], [ -82.178750696429091, 28.577374296953234 ], [ -82.178739560108141, 28.577289398342103 ], [ -82.178758538850431, 28.577136529132595 ], [ -82.178772155375711, 28.577061302765529 ], [ -82.17876929494976, 28.576995800901237 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 690", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177815603344271, 28.576994621704728 ], [ -82.17876929494976, 28.576995800901237 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 44th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177778964122794, 28.579724037471891 ], [ -82.177792383906862, 28.57953235780122 ], [ -82.177788856363335, 28.579068976752346 ], [ -82.177763539569696, 28.578722075980139 ], [ -82.177749409535565, 28.57849161520673 ], [ -82.177757351086711, 28.578312073749387 ], [ -82.17774612680401, 28.578173798872989 ], [ -82.177740201894821, 28.578035614537008 ], [ -82.1777346834713, 28.577906943072943 ], [ -82.177761850882135, 28.577717670929996 ], [ -82.177731251034999, 28.577499360892425 ], [ -82.177741857728535, 28.577268866923738 ], [ -82.177760917403532, 28.577162093953969 ], [ -82.177782774681006, 28.577084430538154 ], [ -82.177815603344271, 28.576994621704728 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 690", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.176704707707458, 28.576996308774561 ], [ -82.177815603344271, 28.576994621704728 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 43rd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.176627419363939, 28.579759499356427 ], [ -82.17664905113358, 28.579545974257105 ], [ -82.17668167081429, 28.579330008507878 ], [ -82.176683961726283, 28.579055855655799 ], [ -82.176644173054569, 28.578778898697092 ], [ -82.176672222170609, 28.578609468174744 ], [ -82.176648588805506, 28.578461003787925 ], [ -82.176624677149434, 28.578117030849025 ], [ -82.176632315810792, 28.577753104104733 ], [ -82.176661967501417, 28.577406132725301 ], [ -82.176694624010679, 28.577212002666371 ], [ -82.176716389900406, 28.577078538624171 ], [ -82.176704707707458, 28.576996308774561 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 690", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.175630630255, 28.576991389216385 ], [ -82.176704707707458, 28.576996308774561 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 43rd Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.175567538564977, 28.577520628099549 ], [ -82.175630630255, 28.576991389216385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 690", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174628027141694, 28.576996557993212 ], [ -82.175630630255, 28.576991389216385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 691", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174672809658418, 28.57608915994291 ], [ -82.175911574209053, 28.576084942432132 ], [ -82.176634392932755, 28.576084007929939 ], [ -82.177466458676747, 28.576082625134564 ], [ -82.178767126117648, 28.57608608097075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 50th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18704027772813, 28.579228349332517 ], [ -82.187035785101457, 28.579107554348237 ], [ -82.187035479110762, 28.578933902491688 ], [ -82.187031436485483, 28.578731693898135 ], [ -82.187032920871047, 28.578470407638214 ], [ -82.187033174994468, 28.578394430013045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 121st Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182853368386972, 28.579370763346159 ], [ -82.183011911947929, 28.579350844309058 ], [ -82.183208649225278, 28.579358129927979 ], [ -82.183345448024184, 28.579327746380049 ], [ -82.183597749592423, 28.579316081476481 ], [ -82.183734594116231, 28.579312121684953 ], [ -82.184016902819579, 28.579341941371872 ], [ -82.184307706514275, 28.579337773969659 ], [ -82.184611325997324, 28.579326037781833 ], [ -82.184923512628771, 28.579321839194932 ], [ -82.185218611013198, 28.579328987514806 ], [ -82.185492327447051, 28.579336167902309 ], [ -82.185629193829968, 28.579343530573354 ], [ -82.18577460660552, 28.579347106957844 ], [ -82.185945664105077, 28.579343098300829 ], [ -82.186240722730176, 28.579327594743642 ], [ -82.186501503741638, 28.579274388841625 ], [ -82.186732415135168, 28.579258971072758 ], [ -82.186864969106182, 28.579247465002506 ], [ -82.18704027772813, 28.579228349332517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 684", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182837509965779, 28.579696949096434 ], [ -82.182853368386972, 28.579370763346159 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 42nd Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174672809658418, 28.57608915994291 ], [ -82.174634688574386, 28.576076085990618 ], [ -82.174610496397506, 28.576056428738994 ], [ -82.174579795919357, 28.576034320929971 ], [ -82.174557417132448, 28.575986773516085 ], [ -82.174556483344276, 28.575773938926648 ], [ -82.174568967801946, 28.575643422399448 ], [ -82.174609751750111, 28.575458408680621 ], [ -82.174619657975413, 28.575194630111088 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 122nd Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182859162018261, 28.57833795362696 ], [ -82.183108218716797, 28.578326245265057 ], [ -82.183310054162376, 28.578325974893186 ], [ -82.183634296742127, 28.578334542049689 ], [ -82.183800689644997, 28.57832483957673 ], [ -82.184014369610935, 28.578343980533589 ], [ -82.184246252325551, 28.578336086716554 ], [ -82.184469560543519, 28.578335783789129 ], [ -82.184718549833462, 28.578286166034953 ], [ -82.184899527556695, 28.578243084632351 ], [ -82.185028013017799, 28.578257282801701 ], [ -82.18511671584092, 28.578279181338409 ], [ -82.185276208900817, 28.578327487231281 ], [ -82.185482314170827, 28.578312649422177 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 45th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.17876929494976, 28.576995800901237 ], [ -82.178769012095444, 28.576828400336574 ], [ -82.178755106611121, 28.576731373344067 ], [ -82.178754430287, 28.57633106852548 ], [ -82.178770123843037, 28.576234069488621 ], [ -82.178767126117648, 28.57608608097075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 684", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182853368386972, 28.579370763346159 ], [ -82.182839724544479, 28.578701766517781 ], [ -82.182859162018261, 28.57833795362696 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 691", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178767126117648, 28.57608608097075 ], [ -82.179751906515989, 28.576090624276969 ], [ -82.180691295554183, 28.576093647821594 ], [ -82.181662106737747, 28.576094080190366 ], [ -82.182871395271448, 28.576098527985394 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 125th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.172529826797103, 28.574175194704544 ], [ -82.172614845109479, 28.574174725270854 ], [ -82.17295598624878, 28.574176427051796 ], [ -82.173357595433856, 28.574167375483945 ], [ -82.173667259500775, 28.574154165457795 ], [ -82.174005979608566, 28.574153733639466 ], [ -82.174274527108722, 28.574149119886638 ], [ -82.174429415905564, 28.574176686055328 ], [ -82.174548023826006, 28.574210707842933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 125th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170436597343311, 28.57412996754368 ], [ -82.1706016021637, 28.574131842025952 ], [ -82.170853831590179, 28.574139849469574 ], [ -82.17131820685286, 28.574149669995251 ], [ -82.171825031163976, 28.574171922085892 ], [ -82.17221987952955, 28.57418598962575 ], [ -82.172529826797103, 28.574175194704544 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 125th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.168456254073661, 28.574291349841896 ], [ -82.168581754143545, 28.5742800111143 ], [ -82.169081420647174, 28.574248179561295 ], [ -82.169519781930049, 28.57420393845954 ], [ -82.169908639350467, 28.5741576777259 ], [ -82.17023624533293, 28.574134379405333 ], [ -82.170436597343311, 28.57412996754368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 39th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.167103813015189, 28.566347899087859 ], [ -82.167169998995718, 28.566282791397896 ], [ -82.167191963387552, 28.566198230988878 ], [ -82.167210181430463, 28.566074661376209 ], [ -82.167206287197857, 28.56594136451525 ], [ -82.167187673751428, 28.565814587089413 ], [ -82.167143306626969, 28.565704098769523 ], [ -82.167032663712504, 28.565603445052535 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 130th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.166477784390167, 28.566377924898415 ], [ -82.166606669928711, 28.566371264340663 ], [ -82.166842368635955, 28.566370977160759 ], [ -82.16701913368054, 28.5663642585431 ], [ -82.167103813015189, 28.566347899087859 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 130th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165044990182139, 28.566256117773349 ], [ -82.165277095341608, 28.566314359250914 ], [ -82.165568100773129, 28.566356272205415 ], [ -82.16578172698631, 28.56637226940212 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 36th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165044990182139, 28.566256117773349 ], [ -82.164970071057368, 28.566186796400185 ], [ -82.164927361080728, 28.566095463041577 ], [ -82.164929990381495, 28.565875343594417 ], [ -82.16491093387755, 28.565707133400196 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 37th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16578172698631, 28.56637226940212 ], [ -82.165774144778169, 28.566232474684412 ], [ -82.165836440018751, 28.566034070732488 ], [ -82.165869272969175, 28.565835705281238 ], [ -82.165891111946451, 28.565669863780439 ], [ -82.16594231903899, 28.565445464953349 ], [ -82.166011953231845, 28.565230795320886 ], [ -82.166025959545266, 28.564769098744645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 130th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.166102151123155, 28.566384886013616 ], [ -82.166212623451301, 28.566378248249809 ], [ -82.166289963166207, 28.566378153991145 ], [ -82.166477784390167, 28.566377924898415 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 130th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16578172698631, 28.56637226940212 ], [ -82.165903279890074, 28.566385127123663 ], [ -82.166102151123155, 28.566384886013616 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 41st Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.172917575252669, 28.588334251584151 ], [ -82.172903302756822, 28.588062330878433 ], [ -82.172911666167579, 28.587937178966449 ], [ -82.172924399660005, 28.587148501392431 ], [ -82.172926373304051, 28.586211662850936 ], [ -82.172924363430027, 28.586173503541186 ], [ -82.172923525315042, 28.586136718816871 ], [ -82.172927959128671, 28.586109897385018 ], [ -82.172932319652588, 28.586070766292465 ], [ -82.172947247121428, 28.586045054964281 ], [ -82.172976054342968, 28.586029358265744 ], [ -82.173011516835274, 28.586015610295608 ], [ -82.1732704549175, 28.586021398413344 ], [ -82.173336984979628, 28.586018868490395 ], [ -82.173367432943593, 28.585989463945758 ], [ -82.173420522931224, 28.585616660469594 ], [ -82.173438759488519, 28.585531791824582 ], [ -82.173460880882814, 28.585497506252423 ], [ -82.173494104109224, 28.585470547103522 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.173494104109224, 28.585470547103522 ], [ -82.173532967555701, 28.585502307914151 ], [ -82.173582897764746, 28.585519373512906 ], [ -82.173663307808042, 28.585529058811915 ], [ -82.173804715787909, 28.585543559712189 ], [ -82.174040363968672, 28.585548153380717 ], [ -82.174522768396045, 28.585567113878895 ], [ -82.17496276858482, 28.585566500244262 ], [ -82.175416564337269, 28.585547846753251 ], [ -82.175805573340455, 28.585556380773216 ], [ -82.17613316110689, 28.5855649939549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178121709402419, 28.588816376220819 ], [ -82.177844425892417, 28.588819161086093 ], [ -82.177778402050578, 28.588809391839487 ], [ -82.177730461806618, 28.588789095723339 ], [ -82.1776878437893, 28.588768792652075 ], [ -82.177655853830714, 28.588737513164538 ], [ -82.177634507714799, 28.588704653332876 ], [ -82.177625566008288, 28.588662381247836 ], [ -82.177628868883431, 28.588283056792502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 117th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177591747359415, 28.585684720092882 ], [ -82.17765934521637, 28.585624877100408 ], [ -82.177716073511874, 28.585593961095395 ], [ -82.177777891068217, 28.585586953205492 ], [ -82.177882017592111, 28.585578324518274 ], [ -82.178074210242329, 28.585587711493641 ], [ -82.178303530683337, 28.585598977038615 ], [ -82.17846952346973, 28.585612252528577 ], [ -82.178624617757279, 28.585637108320011 ], [ -82.178969723613434, 28.585673279001025 ], [ -82.179159777602024, 28.585709654495631 ], [ -82.179299558684988, 28.585719109515491 ], [ -82.179869520403528, 28.585708719758212 ], [ -82.18033468778269, 28.585715814725837 ], [ -82.180889442145784, 28.585751702982169 ], [ -82.181415746239864, 28.585752932687644 ], [ -82.181752086811528, 28.585769831218382 ], [ -82.181821974307709, 28.585773593713043 ], [ -82.181859125388044, 28.585788965174313 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177628868883431, 28.588283056792502 ], [ -82.17763001178821, 28.587612922051878 ], [ -82.177637627558198, 28.587403282745392 ], [ -82.177656723250678, 28.586663849011583 ], [ -82.177657690407642, 28.585939074814181 ], [ -82.17765090215994, 28.585798370614395 ], [ -82.1776399085809, 28.585754051064143 ], [ -82.177620195705558, 28.585719378987143 ], [ -82.177591747359415, 28.585684720092882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 115th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.175011230410547, 28.588347050385394 ], [ -82.175137331609278, 28.588339667887489 ], [ -82.175248201761605, 28.58833321531775 ], [ -82.175418319645743, 28.588312098263529 ], [ -82.175599582549651, 28.588293914590427 ], [ -82.175773807204052, 28.588295088669081 ], [ -82.175983814582366, 28.588289810606121 ], [ -82.176071262918697, 28.588257348720006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 115th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.176071262918697, 28.588257348720006 ], [ -82.176168597524153, 28.588293917594726 ], [ -82.176284990941653, 28.588337011852218 ], [ -82.176384829621128, 28.588358416183933 ], [ -82.176469106458725, 28.588358307102784 ], [ -82.176628780488798, 28.588350269767073 ], [ -82.176801282422815, 28.588345815047088 ], [ -82.17692136876019, 28.588330238209711 ], [ -82.177050066912599, 28.588287080828657 ], [ -82.177169814995409, 28.588277137531271 ], [ -82.177258531902226, 28.58827897936818 ], [ -82.177396060651688, 28.588292502511059 ], [ -82.177495865412752, 28.588292373484652 ], [ -82.177628868883431, 28.588283056792502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 43rd Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.176071262918697, 28.588257348720006 ], [ -82.176078104222952, 28.588157847662384 ], [ -82.176088786066899, 28.588015192552206 ], [ -82.176073223389182, 28.587849440706787 ], [ -82.176072889618851, 28.587648972330737 ], [ -82.176070421360095, 28.587477420451286 ], [ -82.176076698501589, 28.587313566881619 ], [ -82.176087373850152, 28.587167056957156 ], [ -82.176082746593735, 28.587010928880954 ], [ -82.176069146289237, 28.586712169247498 ], [ -82.176075324932697, 28.586488561787334 ], [ -82.176075020061575, 28.586305442666813 ], [ -82.176107527205204, 28.586155049712268 ], [ -82.176105173464748, 28.586052890471141 ], [ -82.176094042496246, 28.585925683621188 ], [ -82.176102636780115, 28.585840858665339 ], [ -82.176117801162832, 28.585767590540296 ], [ -82.17613316110689, 28.5855649939549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.17613316110689, 28.5855649939549 ], [ -82.176273061644039, 28.585564812217822 ], [ -82.176392493784121, 28.585567671549441 ], [ -82.176600644437343, 28.585570411356098 ], [ -82.176812237724704, 28.585591221195731 ], [ -82.177040886050904, 28.585608995634782 ], [ -82.177235398279251, 28.585617777118895 ], [ -82.177375299901698, 28.58561759514588 ], [ -82.177467454088628, 28.585632536194385 ], [ -82.177552809781531, 28.585662543420476 ], [ -82.177591747359415, 28.585684720092882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.173494104109224, 28.585470547103522 ], [ -82.173460773546651, 28.585431437784344 ], [ -82.173446844098123, 28.58538985752439 ], [ -82.173441214932197, 28.585338478995439 ], [ -82.173442479480016, 28.585188227454804 ], [ -82.173442188072869, 28.585010528634246 ], [ -82.173461863048075, 28.584525594698022 ], [ -82.173448004813494, 28.583731301857469 ], [ -82.173458564735952, 28.583408288570965 ], [ -82.173476869848614, 28.582737796704137 ], [ -82.173486980109601, 28.582140724393277 ], [ -82.17348475165285, 28.58162716873467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 118th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178597248414164, 28.583786108909134 ], [ -82.17947957660553, 28.583701591624298 ], [ -82.1806021557978, 28.583688061711225 ], [ -82.181281123262536, 28.583657042016334 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.17348475165285, 28.58162716873467 ], [ -82.175462527973536, 28.581641078374176 ], [ -82.175961615877739, 28.581640046204122 ], [ -82.17678051733067, 28.581638987670075 ], [ -82.178664007806901, 28.581645265962106 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 45th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178597248414164, 28.583786108909134 ], [ -82.178597187460923, 28.583750010779148 ], [ -82.178617081768721, 28.583653036135871 ], [ -82.17864331778803, 28.583537038114446 ], [ -82.178646384216933, 28.583332228517001 ], [ -82.178652949444029, 28.583178615047956 ], [ -82.17866627723366, 28.582988851185505 ], [ -82.178669313081755, 28.58276596949398 ], [ -82.178662202541744, 28.582597316544856 ], [ -82.178648154501673, 28.582359397131988 ], [ -82.178644349502704, 28.582127489228085 ], [ -82.178660982648438, 28.581874472196233 ], [ -82.178664007806901, 28.581645265962106 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182597477843572, 28.581644873036268 ], [ -82.182840418279113, 28.581644547370814 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 40th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170367368419832, 28.57614778771983 ], [ -82.170386564833322, 28.576108092196399 ], [ -82.17041373409937, 28.576033935225329 ], [ -82.170432287641589, 28.575844558824326 ], [ -82.170424826269851, 28.575603194814214 ], [ -82.170457329379374, 28.575293112485173 ], [ -82.170473637491654, 28.57517448713034 ], [ -82.170475793512324, 28.575049636147185 ], [ -82.170484846688879, 28.574816573783551 ], [ -82.170455881266363, 28.574394206586316 ], [ -82.170436597343311, 28.57412996754368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 40th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170440786366143, 28.577884685645525 ], [ -82.170440585510875, 28.577760010006003 ], [ -82.170427383137465, 28.577535107473551 ], [ -82.170422726228111, 28.577134869809189 ], [ -82.1704301789879, 28.576780661774862 ], [ -82.170444997455277, 28.576513222901234 ], [ -82.170454399386045, 28.576371532372502 ], [ -82.170438166175416, 28.576258208375968 ], [ -82.170415600299094, 28.576198731526269 ], [ -82.170367368419832, 28.57614778771983 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 53rd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.192956955789782, 28.606912142102228 ], [ -82.192947004833314, 28.60631520929013 ], [ -82.192942889512139, 28.605679166192303 ], [ -82.192953661933913, 28.605108269788094 ], [ -82.192984987977184, 28.604469570410842 ], [ -82.192977828218943, 28.60378400204414 ], [ -82.192979976656915, 28.603343457929927 ], [ -82.192994180666403, 28.603033233335541 ], [ -82.192978968575432, 28.602790826031082 ], [ -82.192966801883372, 28.602597943821628 ], [ -82.192983274715942, 28.602297262733529 ], [ -82.192987476211272, 28.602145644773632 ], [ -82.192977026609185, 28.601727271743432 ], [ -82.192990200458894, 28.601401161942171 ], [ -82.192978030482664, 28.600981841139539 ], [ -82.192973844204346, 28.600770500137251 ], [ -82.19298587478329, 28.600531694194416 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 671", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.188779426034529, 28.61065706641898 ], [ -82.188786150896149, 28.610600215178792 ], [ -82.188787566038684, 28.610543537327835 ], [ -82.188790525828026, 28.610433417231402 ], [ -82.188795102390031, 28.610118526273542 ], [ -82.188787492492125, 28.609895792707086 ], [ -82.188807410834727, 28.60893477699878 ], [ -82.188805886964545, 28.608081983123096 ], [ -82.188811735082638, 28.607318277686012 ], [ -82.188836964216293, 28.605294441168219 ], [ -82.188821141392026, 28.604511671053196 ], [ -82.188812623301402, 28.603779806131424 ], [ -82.188846791782211, 28.602723308582785 ], [ -82.188879959817584, 28.601106765095995 ], [ -82.188867503324758, 28.600199244036851 ], [ -82.188851999043237, 28.600031529544097 ], [ -82.188825071511886, 28.599942976929299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183725912806068, 28.601024825282721 ], [ -82.183717675368413, 28.600659172106305 ], [ -82.183724373343139, 28.600139183267295 ], [ -82.183727422511524, 28.59970641861112 ], [ -82.183742920337906, 28.599324016601667 ], [ -82.183745507762069, 28.599085029193478 ], [ -82.183747003552611, 28.598908571823571 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 38th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.168370387795861, 28.575912245897484 ], [ -82.16836386816918, 28.575849913724277 ], [ -82.168364321858945, 28.575771438132548 ], [ -82.168372722055722, 28.57549572113221 ], [ -82.168369345642446, 28.575225219769912 ], [ -82.168386813343403, 28.575092548244754 ], [ -82.168401346444284, 28.574967680198991 ], [ -82.168409937945498, 28.574811609216503 ], [ -82.168409532245562, 28.574556711100097 ], [ -82.168456254073661, 28.574291349841896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.164179582527794, 28.581525879124886 ], [ -82.165220946302043, 28.581551506774041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 36th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.164072598258983, 28.583122618969803 ], [ -82.164095494535545, 28.581883446242824 ], [ -82.164099590374619, 28.581661813226585 ], [ -82.164129310080213, 28.581614815919103 ], [ -82.164179582527794, 28.581525879124886 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.163121784247139, 28.581451068294843 ], [ -82.163479347909387, 28.581475999602919 ], [ -82.163726894426006, 28.581487561234372 ], [ -82.164179582527794, 28.581525879124886 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 35th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.163121784247139, 28.581451068294843 ], [ -82.163121639832312, 28.581358081105837 ], [ -82.163132196434788, 28.581303593121408 ], [ -82.16314486686403, 28.581239709214952 ], [ -82.163157478305678, 28.581138253612789 ], [ -82.163180789283956, 28.581074356971545 ], [ -82.163189217506911, 28.581019870624797 ], [ -82.163171272863877, 28.580956203811226 ], [ -82.16315066267282, 28.580858365739413 ], [ -82.163146009131808, 28.580601015801761 ], [ -82.163160561505478, 28.580377456388096 ], [ -82.163143069651994, 28.580075038914242 ], [ -82.163132126024877, 28.579877806973876 ], [ -82.163140278975575, 28.579644863603278 ], [ -82.163123027723742, 28.579498359916006 ], [ -82.163109995443733, 28.579327431960539 ], [ -82.163101150265646, 28.579111415207429 ], [ -82.163096368497975, 28.578771411594797 ], [ -82.163094033757147, 28.578636161218888 ], [ -82.163076664022171, 28.578412639918376 ], [ -82.163123329331597, 28.578313023138232 ], [ -82.163169975125413, 28.578202135190846 ], [ -82.163144130951395, 28.578003045049691 ], [ -82.163086002276401, 28.577567301553231 ], [ -82.163081631822465, 28.577494043693779 ], [ -82.163081487043627, 28.577400118915772 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 35th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.163137110823484, 28.582558616499636 ], [ -82.163116592839017, 28.582501534461802 ], [ -82.163108027162039, 28.582466979556195 ], [ -82.163131588735581, 28.582289620221463 ], [ -82.163156380448214, 28.58180568745156 ], [ -82.163142358948335, 28.581545720231198 ], [ -82.163121784247139, 28.581451068294843 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158962623550678, 28.581270983497792 ], [ -82.159662059417414, 28.581301874904575 ], [ -82.161022416462615, 28.581337847459853 ], [ -82.162079739459983, 28.581381677938314 ], [ -82.163121784247139, 28.581451068294843 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156764282644573, 28.581227842923752 ], [ -82.157919288449335, 28.58124574681856 ], [ -82.158243454036622, 28.581251381646119 ], [ -82.158962623550678, 28.581270983497792 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.155881707026822, 28.581231258159416 ], [ -82.156764282644573, 28.581227842923752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 679", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.159965064861311, 28.587128792988011 ], [ -82.160121706047661, 28.587130110664603 ], [ -82.160448612954866, 28.58713423455367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 679", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158885601104544, 28.587119534429291 ], [ -82.159032021622593, 28.587116358070102 ], [ -82.159304436790407, 28.587116039241181 ], [ -82.159965064861311, 28.587128792988011 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 675 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158892334624539, 28.589334657855673 ], [ -82.158886369043813, 28.588763600397321 ], [ -82.158881055031955, 28.588626852108227 ], [ -82.158856907044409, 28.588419492206029 ], [ -82.158846194395295, 28.58808888916796 ], [ -82.158867949290823, 28.58783639295028 ], [ -82.158896404081759, 28.58751024965305 ], [ -82.158889287403554, 28.587305878287903 ], [ -82.158885601104544, 28.587119534429291 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 676", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156396238951828, 28.589313498342136 ], [ -82.156489879783365, 28.589310385231425 ], [ -82.156745263646116, 28.589302579068804 ], [ -82.15702279202948, 28.589302259833499 ], [ -82.15724925280287, 28.5893080076163 ], [ -82.157448459602449, 28.589307777790115 ], [ -82.157673159150519, 28.589275960588001 ], [ -82.157845078851167, 28.58924420320724 ], [ -82.158040894648693, 28.589252992639164 ], [ -82.15831163565862, 28.589267707141619 ], [ -82.158892334624539, 28.589334657855673 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 642", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.243239962999667, 28.632548815554092 ], [ -82.243280337932788, 28.63256967297637 ], [ -82.243377645117221, 28.632588336004648 ], [ -82.244150999007502, 28.632582763942217 ], [ -82.245628928150325, 28.632580103576206 ], [ -82.246186414325138, 28.63257909463664 ], [ -82.247189903053652, 28.632583553707661 ], [ -82.248017827576945, 28.632582046305835 ], [ -82.248608671675996, 28.632578481533663 ], [ -82.24869209955061, 28.632564352742833 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 641", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.24869209955061, 28.632564352742833 ], [ -82.24876292404339, 28.632666497336071 ], [ -82.248786779743796, 28.632722965060907 ], [ -82.248794025274336, 28.632777368853258 ], [ -82.248768161803852, 28.63312746845542 ], [ -82.248780122282028, 28.633169306742843 ], [ -82.248809843650477, 28.633198032303689 ], [ -82.248857357768159, 28.633226722591736 ], [ -82.248946381124313, 28.633252721917817 ], [ -82.249655102378071, 28.633251422657072 ], [ -82.250049502162284, 28.633253314198171 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 643", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.250180539906509, 28.636242905084689 ], [ -82.250140140678468, 28.636213677515009 ], [ -82.250121077878589, 28.636178131096599 ], [ -82.250109122607739, 28.636138386495716 ], [ -82.250101896060073, 28.636092355606767 ], [ -82.250101757185305, 28.636033752920998 ], [ -82.250090466609464, 28.635274017200988 ], [ -82.250078631771288, 28.634284056497847 ], [ -82.250049502162284, 28.633253314198171 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 641", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.250049502162284, 28.633253314198171 ], [ -82.250592146709934, 28.633247076240881 ], [ -82.251176347713127, 28.633259072630587 ], [ -82.251232118148508, 28.633267340796536 ], [ -82.251262972761197, 28.6332735627632 ], [ -82.251296229004609, 28.633292337131738 ], [ -82.251315271734171, 28.633319510683741 ], [ -82.251331936733109, 28.63334459524167 ], [ -82.251343908114521, 28.633390619060275 ], [ -82.251351115077483, 28.633428279888854 ], [ -82.251355993121237, 28.633484781264329 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 645", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.2528196728626, 28.63545573889969 ], [ -82.252793726516444, 28.635518576311902 ], [ -82.252796657932237, 28.635999434160841 ], [ -82.252792359510678, 28.636185718073023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.253940768165535, 28.63404714690358 ], [ -82.253714002278755, 28.633465722982603 ], [ -82.253673297331304, 28.633308826754352 ], [ -82.25364920772509, 28.633156082538925 ], [ -82.253651650321245, 28.633116623417195 ], [ -82.253700546803486, 28.632802271378949 ], [ -82.253702803837911, 28.632754127641473 ], [ -82.253695509543192, 28.632680887184172 ], [ -82.253678768636675, 28.632624408164332 ], [ -82.253633423193577, 28.632511471483536 ], [ -82.25360483077462, 28.632459200624101 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 646", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.251355993121237, 28.633484781264329 ], [ -82.251431802383848, 28.633440687543789 ], [ -82.25151711450286, 28.633402854529514 ], [ -82.252135628288386, 28.6331296138878 ], [ -82.252602425107014, 28.632902700229536 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 607B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133137005049065, 28.657715992823842 ], [ -82.133154399076943, 28.656884850774517 ], [ -82.13315927299027, 28.656343203058384 ], [ -82.133164287182311, 28.655914295455585 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 607B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133164287182311, 28.655914295455585 ], [ -82.133166649819174, 28.6555834271843 ], [ -82.133165958652597, 28.655036884223936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 607C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131290611063378, 28.655911094668802 ], [ -82.131537814204677, 28.65591358236583 ], [ -82.13233097574728, 28.655922031311192 ], [ -82.132641220403443, 28.65592173074571 ], [ -82.133164287182311, 28.655914295455585 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 607B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133174117841932, 28.654526534214884 ], [ -82.133171334517058, 28.654135373332274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 607E", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131303214644817, 28.654129417815522 ], [ -82.13163108060651, 28.654131554246483 ], [ -82.131981173391381, 28.65413121492497 ], [ -82.132320149695545, 28.6541308863894 ], [ -82.13282861465369, 28.654130392897386 ], [ -82.133028667223556, 28.654130196955307 ], [ -82.133171334517058, 28.654135373332274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palm Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121592622146267, 28.667054326605939 ], [ -82.121590569814742, 28.667684008519668 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evergreen Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121592622146267, 28.667054326605939 ], [ -82.120820345345649, 28.667059913442024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120820345345649, 28.667059913442024 ], [ -82.120820673927412, 28.667346576067775 ], [ -82.120814299174043, 28.667969697311559 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120814299174043, 28.667969697311559 ], [ -82.120816541396351, 28.668588789170201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120814299174043, 28.667969697311559 ], [ -82.12087500594852, 28.668031716777467 ], [ -82.120922700958573, 28.668078467655047 ], [ -82.121013727456912, 28.668143324177066 ], [ -82.121095013337495, 28.668210101327709 ], [ -82.121142710646183, 28.668257806791829 ], [ -82.121177075680919, 28.668296308563889 ], [ -82.121185025546282, 28.668332257640373 ], [ -82.121186152997709, 28.668371409741585 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Willow Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124143302865292, 28.667463648400183 ], [ -82.123509915070727, 28.667461772772111 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Willow Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123509915070727, 28.667461772772111 ], [ -82.122815403602758, 28.667452598838135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pine Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123509915070727, 28.667461772772111 ], [ -82.1235065769107, 28.668003267269977 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124922496729837, 28.668604689520343 ], [ -82.126150390064552, 28.668606010718761 ], [ -82.127906118719181, 28.668614175226057 ], [ -82.128462420572518, 28.668614945240858 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 17th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133113425357351, 28.670410616387628 ], [ -82.133118684047375, 28.669380970195633 ], [ -82.133109988818873, 28.669094316824101 ], [ -82.13306773631362, 28.668633735598426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13735475471465, 28.668598307868375 ], [ -82.136809013496531, 28.668582622067046 ], [ -82.136398624127438, 28.668571573808464 ], [ -82.135592272475478, 28.668631492922756 ], [ -82.135310034418808, 28.668639613788585 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 18th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135287383858369, 28.675589185898495 ], [ -82.13528769495602, 28.675474475839245 ], [ -82.135278451354182, 28.675200070764014 ], [ -82.135278235968315, 28.675031505582073 ], [ -82.135275861187125, 28.674911940028231 ], [ -82.135277838378613, 28.674721811457086 ], [ -82.135297672473868, 28.674590464668611 ], [ -82.135310898561144, 28.674504207614696 ], [ -82.135319709700155, 28.674443436778457 ], [ -82.135321837832393, 28.674370910688985 ], [ -82.135308417497683, 28.674304280531004 ], [ -82.135281652372981, 28.674229824164566 ], [ -82.135281579397017, 28.674172980972404 ], [ -82.135278832695732, 28.673765285123832 ], [ -82.135277828239012, 28.672982837531446 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lowery Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13735475471465, 28.668598307868375 ], [ -82.137349604342802, 28.668205681306688 ], [ -82.137367279004408, 28.666635362739438 ], [ -82.137368308886664, 28.665462203279368 ], [ -82.137368080533179, 28.665287754670612 ], [ -82.137370221916655, 28.665225029576394 ], [ -82.137374593056151, 28.665168182734927 ], [ -82.137385658572271, 28.665132889477484 ], [ -82.137418942978428, 28.665093654987182 ], [ -82.137452255471516, 28.665075979890833 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141865641251229, 28.668610874700693 ], [ -82.140333498298446, 28.668606732424475 ], [ -82.140014741328443, 28.668605714059371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120816541396351, 28.668588789170201 ], [ -82.120799930269044, 28.668637805941916 ], [ -82.12079444682729, 28.668701512752545 ], [ -82.120793405924161, 28.669507272015171 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North York Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118780989300674, 28.668578403549869 ], [ -82.118795929972052, 28.66950187621023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Parker Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118795929972052, 28.66950187621023 ], [ -82.119541865935986, 28.669501223639696 ], [ -82.120793405924161, 28.669507272015171 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North York Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118795929972052, 28.66950187621023 ], [ -82.118794563712115, 28.670345680702688 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120793405924161, 28.669507272015171 ], [ -82.120796122120964, 28.67036231142859 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Palm Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.1196768991543, 28.670353011464336 ], [ -82.120796122120964, 28.67036231142859 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12079909730592, 28.672235857642779 ], [ -82.120800834196331, 28.672452408523284 ], [ -82.120781940061633, 28.674158420481358 ], [ -82.120785731891829, 28.675445576759905 ], [ -82.120782362352415, 28.676546815586612 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 675", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156450399251369, 28.590245173084117 ], [ -82.156414592897519, 28.590210650841239 ], [ -82.156390688385557, 28.590165593632793 ], [ -82.156378704512477, 28.590122026054388 ], [ -82.156370120227365, 28.590072443173788 ], [ -82.156396238951828, 28.589313498342136 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 675", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156450399251369, 28.590245173084117 ], [ -82.156496386263868, 28.590255638926209 ], [ -82.156567891074971, 28.590251049660797 ], [ -82.156722834857234, 28.590253877402777 ], [ -82.157589474631465, 28.590246868266171 ], [ -82.158740500799141, 28.590268073873755 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 675 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158853992586018, 28.589878715569387 ], [ -82.158892334624539, 28.589334657855673 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 675 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158740500799141, 28.590268073873755 ], [ -82.158772844068096, 28.590265031423691 ], [ -82.158806851967668, 28.590234935715308 ], [ -82.158822111558749, 28.590192840832845 ], [ -82.158853992586018, 28.589878715569387 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 677", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158853992586018, 28.589878715569387 ], [ -82.159659338802371, 28.589876272699492 ], [ -82.159947081309738, 28.589872930720031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 677", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.159947081309738, 28.589872930720031 ], [ -82.160473212399879, 28.589881329718821 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 675", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156396238951828, 28.589313498342136 ], [ -82.156434574459965, 28.588755913338488 ], [ -82.156429383483342, 28.58869881365742 ], [ -82.156415671100376, 28.588638716241448 ], [ -82.156395168879172, 28.588590651223075 ], [ -82.156359361903171, 28.588554623849479 ], [ -82.156297491752142, 28.588525438117706 ], [ -82.156161793648039, 28.588511506182947 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 675", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.150875584852187, 28.588444662698397 ], [ -82.152362754464477, 28.588468839336038 ], [ -82.153759439699655, 28.588469620039156 ], [ -82.153849892909619, 28.588471866844884 ], [ -82.155129569644885, 28.588505638598548 ], [ -82.155954266312051, 28.588497652652038 ], [ -82.156161793648039, 28.588511506182947 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 28th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.150987274347244, 28.590276078394254 ], [ -82.15095532298453, 28.59025732969755 ], [ -82.15092335152157, 28.590224490039468 ], [ -82.150904641499238, 28.590163460970683 ], [ -82.150888410682668, 28.589975628415509 ], [ -82.15087756584974, 28.589832405307455 ], [ -82.15086666204931, 28.589649262637767 ], [ -82.150858383589835, 28.589440289314709 ], [ -82.15085530374391, 28.589146776097181 ], [ -82.150849637522484, 28.588904924828988 ], [ -82.150862615074388, 28.588677141207651 ], [ -82.150875584852187, 28.588444662698397 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 31st Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.155623298551802, 28.59848081989719 ], [ -82.155818783307296, 28.598288914169515 ], [ -82.155831542802716, 28.597919068787537 ], [ -82.155821267575732, 28.597716554579915 ], [ -82.1558243058725, 28.597522831100427 ], [ -82.155814248037643, 28.59746707339816 ], [ -82.155817472377606, 28.59739956196292 ], [ -82.15582067814735, 28.597317373969013 ], [ -82.15582392182975, 28.597261602871111 ], [ -82.15583049139012, 28.597205827069903 ], [ -82.155837042614124, 28.597138310927619 ], [ -82.155843496352418, 28.597003286238394 ], [ -82.155843209746763, 28.596809566537889 ], [ -82.155839722759552, 28.596700970144568 ], [ -82.155836224842503, 28.596583566911146 ], [ -82.155805160805002, 28.596461172740891 ], [ -82.155817699031147, 28.596378303633607 ], [ -82.155785260827344, 28.596041424491752 ], [ -82.155845081748382, 28.595823351374229 ], [ -82.155851074695448, 28.595377198965895 ], [ -82.15583661189153, 28.594590593894022 ], [ -82.155825362340096, 28.593877306631509 ], [ -82.155851229982559, 28.593225727735003 ], [ -82.155834480064627, 28.593143562493594 ], [ -82.155859518807389, 28.592081007468387 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 771", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140868368299479, 28.605090397510761 ], [ -82.140762069513784, 28.605040954299742 ], [ -82.14066488697415, 28.604998196069694 ], [ -82.140586328916939, 28.604963046965231 ], [ -82.140557651066757, 28.604938220643351 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 771", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140557651066757, 28.604938220643351 ], [ -82.140528444037443, 28.604886822738358 ], [ -82.140520823449236, 28.604836044158887 ], [ -82.140533195589228, 28.604790772724019 ], [ -82.140602939287504, 28.604648071513886 ], [ -82.141061756786328, 28.603768335605032 ], [ -82.141354290070751, 28.603180029767767 ], [ -82.14161714602109, 28.602643397732415 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 103rd Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139157917915639, 28.604101364888756 ], [ -82.139391203253908, 28.604239984340992 ], [ -82.139575883742083, 28.604346082234475 ], [ -82.139745031815423, 28.60445733732028 ], [ -82.140003633163914, 28.604642217137265 ], [ -82.140093081432312, 28.604710696881568 ], [ -82.140166969948496, 28.60476547697694 ], [ -82.140236967322593, 28.60481512129973 ], [ -82.140314729008139, 28.60486132780472 ], [ -82.140380822640481, 28.604895546947407 ], [ -82.140460507674476, 28.604926321367049 ], [ -82.140509077205678, 28.604931413792684 ], [ -82.140557651066757, 28.604938220643351 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 25th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145736321171185, 28.606514671018953 ], [ -82.145771922529988, 28.606468763415858 ], [ -82.145777889055196, 28.606394091097791 ], [ -82.145777769984164, 28.606307037054634 ], [ -82.145791413239706, 28.60519540966521 ], [ -82.145791208973691, 28.605048087484032 ], [ -82.145787180002074, 28.604877333803632 ], [ -82.145787090120237, 28.604785497305798 ], [ -82.145802176501405, 28.604746733782136 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 103rd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145802176501405, 28.604746733782136 ], [ -82.145862844770889, 28.604721139904864 ], [ -82.145986139952342, 28.604712636989262 ], [ -82.146251735714316, 28.604724907632495 ], [ -82.14677342477269, 28.604732718267492 ], [ -82.147595989336097, 28.604746813987408 ], [ -82.14774775898448, 28.604753346835302 ], [ -82.147822870241583, 28.604745965515555 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 26th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147822870241583, 28.604745965515555 ], [ -82.14783980598709, 28.604700947446023 ], [ -82.147842163378556, 28.604651659962922 ], [ -82.147842319778178, 28.604545653749728 ], [ -82.147838250041744, 28.604348112390053 ], [ -82.147843740385909, 28.604043082893277 ], [ -82.147848024541815, 28.603633791051688 ], [ -82.14785199120675, 28.603323538622547 ], [ -82.147852217713364, 28.603160212031387 ], [ -82.147849472625225, 28.602933070619862 ], [ -82.147849178850933, 28.60272307101517 ], [ -82.147856117071058, 28.602476632463425 ], [ -82.147865115865386, 28.601966619755842 ], [ -82.147871603353536, 28.601396609483821 ], [ -82.14786876235506, 28.601100896531289 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140117578738611, 28.606625259328691 ], [ -82.140308367041612, 28.606232050749203 ], [ -82.140868368299479, 28.605090397510761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137682597536568, 28.611644747531273 ], [ -82.137720826373339, 28.611563881874055 ], [ -82.13778120654149, 28.611433616006266 ], [ -82.138064073749945, 28.610851202741436 ], [ -82.138299172319407, 28.610296961401399 ], [ -82.13844538032356, 28.610004344026262 ], [ -82.138884022065326, 28.609140551132427 ], [ -82.139739792996025, 28.607392791175201 ], [ -82.140117578738611, 28.606625259328691 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13314652709667, 28.620860422443094 ], [ -82.133158615156546, 28.620835678450423 ], [ -82.133584953307889, 28.619978116773044 ], [ -82.13377630570173, 28.619583642499823 ], [ -82.134064489206168, 28.618944786274092 ], [ -82.134464461257963, 28.618131753585509 ], [ -82.134769207342103, 28.617508443860864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 720", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129207336822986, 28.622791626001618 ], [ -82.129238965879779, 28.622838739614803 ], [ -82.129282749477923, 28.622894411211622 ], [ -82.129319216819269, 28.622926520652157 ], [ -82.129365392552401, 28.622952190816534 ], [ -82.12942126938097, 28.622967138302041 ], [ -82.130244652519607, 28.623041355400634 ], [ -82.131218622998176, 28.623126135313424 ], [ -82.131650961368692, 28.623164291082929 ], [ -82.131871999505449, 28.62319193460354 ], [ -82.131988623104675, 28.623232538036707 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 720A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129074134135237, 28.621107461642062 ], [ -82.12911300962071, 28.621122424438415 ], [ -82.129154326985613, 28.621148100182211 ], [ -82.129217518540287, 28.621188754774614 ], [ -82.129253999406671, 28.621231578596483 ], [ -82.12927589822489, 28.621265841300794 ], [ -82.129300234722706, 28.621306533560283 ], [ -82.129312445760959, 28.621362236878632 ], [ -82.129310538112691, 28.621788668496496 ], [ -82.129247829744315, 28.622142300183103 ], [ -82.129168139914398, 28.622515233575651 ], [ -82.129156129021894, 28.62262238859628 ], [ -82.129165909741033, 28.622675951163679 ], [ -82.129180540783295, 28.622725223031395 ], [ -82.129190300551514, 28.622761642090843 ], [ -82.129207336822986, 28.622791626001618 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 652D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126755487310376, 28.63392425596458 ], [ -82.128130144894527, 28.633964843070849 ], [ -82.128608258348422, 28.633955088312593 ], [ -82.129328968283247, 28.633960609665941 ], [ -82.130281705345354, 28.633962805364913 ], [ -82.131248513106485, 28.633971184393541 ], [ -82.131610641245189, 28.633986342143352 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137346580302278, 28.637648417874626 ], [ -82.137387558335632, 28.63671787304061 ], [ -82.137377815479397, 28.635715423259487 ], [ -82.137396482210278, 28.634931300225265 ], [ -82.137355551694867, 28.634166438862632 ], [ -82.137356025832403, 28.634100093181821 ], [ -82.137361560611623, 28.634030610392536 ], [ -82.137400883223762, 28.63399086796602 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 674A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14160045015349, 28.633842035330485 ], [ -82.141593202317253, 28.633680754701249 ], [ -82.141571732456313, 28.633400074506365 ], [ -82.143543785713135, 28.633252235544198 ], [ -82.144654612659167, 28.633176620471598 ], [ -82.146784842304115, 28.633016158403343 ], [ -82.148437019082181, 28.632908911424099 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 83rd Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137400883223762, 28.63399086796602 ], [ -82.137490854097294, 28.63396844625818 ], [ -82.137583653694676, 28.633958426058697 ], [ -82.13813209654252, 28.633962834475167 ], [ -82.139723995653, 28.633981064017505 ], [ -82.140306911814065, 28.634000005550664 ], [ -82.141259686479273, 28.634030038715355 ], [ -82.141407337439404, 28.634026784333368 ], [ -82.141516282382369, 28.633995654383401 ], [ -82.141579512797534, 28.633959920277913 ], [ -82.141607566967352, 28.633907162203485 ], [ -82.14160045015349, 28.633842035330485 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 652A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129153073927171, 28.637589229509121 ], [ -82.129585026177139, 28.63759844328202 ], [ -82.130038809312438, 28.637621106749194 ], [ -82.130523191413346, 28.637627822208316 ], [ -82.130658189390928, 28.637622730115655 ], [ -82.131746676840677, 28.637631608815056 ], [ -82.132188256284664, 28.637633663900434 ], [ -82.132447016867843, 28.637635893395313 ], [ -82.132674834673367, 28.637633190552151 ], [ -82.132953285133226, 28.637635401730172 ], [ -82.133223286015991, 28.637627693086436 ], [ -82.133473586554459, 28.63761255981424 ], [ -82.133681696577867, 28.637594987820719 ], [ -82.13398261910352, 28.637574842033452 ], [ -82.1342948165086, 28.637574534970859 ], [ -82.134637990467795, 28.637603971901967 ], [ -82.134896778429692, 28.637626048088581 ], [ -82.135116167590169, 28.637630794654136 ], [ -82.135287731458192, 28.637628142238821 ], [ -82.135923379359085, 28.637627511066569 ], [ -82.137346580302278, 28.637648417874626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137342808734289, 28.639501968787922 ], [ -82.137340288924079, 28.63924215181439 ], [ -82.137331339376487, 28.639070871294432 ], [ -82.137328349739676, 28.638767517966933 ], [ -82.137352673953615, 28.638008203835518 ], [ -82.137372216497269, 28.637896524565662 ], [ -82.137346580302278, 28.637648417874626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 80th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137342808734289, 28.639501968787922 ], [ -82.137471489703699, 28.639478744729221 ], [ -82.137556565495899, 28.639474808662953 ], [ -82.137669993336118, 28.639465070775426 ], [ -82.138385521580688, 28.639447025212931 ], [ -82.138963636275875, 28.63944836191596 ], [ -82.139469758653533, 28.63944784513237 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 609C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13217146033341, 28.643180407469046 ], [ -82.133163081645066, 28.643180270259542 ], [ -82.135164745702838, 28.643190329058072 ], [ -82.135644717590537, 28.643199475850654 ], [ -82.136573141737372, 28.643199872820279 ], [ -82.137358531164452, 28.643201007653559 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 609A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137336190421095, 28.646766387484167 ], [ -82.137340242213753, 28.645910843488586 ], [ -82.137347841901558, 28.645044772778046 ], [ -82.137355981674219, 28.644594409074848 ], [ -82.137358531164452, 28.643201007653559 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 615B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137336190421095, 28.646766387484167 ], [ -82.139346221526495, 28.646783499860977 ], [ -82.141365575893801, 28.646783137831672 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 22nd Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141425903552644, 28.648711839230302 ], [ -82.141423606524157, 28.648597704404747 ], [ -82.141419866650779, 28.648278669821963 ], [ -82.141418916589501, 28.647859934268439 ], [ -82.141416398272, 28.647581467354595 ], [ -82.141420140601525, 28.647320183412013 ], [ -82.141386676902471, 28.647069249938347 ], [ -82.14138020547766, 28.646893236387307 ], [ -82.141365575893801, 28.646783137831672 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 614A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153533715871205, 28.648665407866488 ], [ -82.153543113696131, 28.648178673580226 ], [ -82.153541856697558, 28.647315767997977 ], [ -82.15353934243727, 28.646977024502494 ], [ -82.153516833407039, 28.646786283695338 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 615B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149731385215944, 28.646786930097015 ], [ -82.150737879649682, 28.646789385521846 ], [ -82.15136238581519, 28.646788694122531 ], [ -82.153138895802741, 28.646786708112955 ], [ -82.153516833407039, 28.646786283695338 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 615B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141365575893801, 28.646783137831672 ], [ -82.143197294353399, 28.64678542799291 ], [ -82.145183623793983, 28.646788898520718 ], [ -82.14562661662238, 28.64678959532122 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 615B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14562661662238, 28.64678959532122 ], [ -82.146877648982809, 28.646786468867909 ], [ -82.148181225351237, 28.6467814934309 ], [ -82.149731385215944, 28.646786930097015 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 76th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143379141950376, 28.644927760458252 ], [ -82.146555487671861, 28.644974362368377 ], [ -82.149354619743804, 28.644982467261169 ], [ -82.149784118753502, 28.645004280814014 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 674", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148085797424685, 28.637559447372542 ], [ -82.148191375629494, 28.637189385693326 ], [ -82.148241614718103, 28.636988758003856 ], [ -82.148306814042812, 28.636647712323647 ], [ -82.148394458086585, 28.636101614244666 ], [ -82.148409372363204, 28.635929995322616 ], [ -82.148424285506408, 28.635756149430176 ], [ -82.148426250769006, 28.635357228953573 ], [ -82.148430898971839, 28.635069735042112 ], [ -82.148429610887504, 28.634153786538288 ], [ -82.148437019082181, 28.632908911424099 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 674", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14846090011514, 28.624071599079599 ], [ -82.148443175397219, 28.624040418246942 ], [ -82.1484178956931, 28.624024844349599 ], [ -82.148352198127981, 28.624004860494821 ], [ -82.148256211739167, 28.62400050645714 ], [ -82.147230743088542, 28.62399938893741 ], [ -82.147177689149601, 28.623990532925784 ], [ -82.147137243383142, 28.62396606096452 ], [ -82.147104364217498, 28.623934896308914 ], [ -82.147084102549513, 28.623894803838898 ], [ -82.147076452196487, 28.623843553889873 ], [ -82.147071312272658, 28.623778930390159 ], [ -82.147077721039494, 28.622940971913927 ], [ -82.147095585996226, 28.621258364684266 ], [ -82.147094505781382, 28.620482814276038 ], [ -82.147098090429836, 28.619430913103994 ], [ -82.147109222578919, 28.618356717668949 ], [ -82.14711061855796, 28.617545506541052 ], [ -82.147116565398363, 28.616375486215574 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 614A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.151715217592667, 28.621326845494757 ], [ -82.151677302078753, 28.621306830515049 ], [ -82.151649487040785, 28.621284574611771 ], [ -82.151634287771415, 28.621253392277673 ], [ -82.151628939384267, 28.621046139289355 ], [ -82.151630102202219, 28.620096756433387 ], [ -82.151621275735323, 28.619227613261593 ], [ -82.151620345757223, 28.618579092870718 ], [ -82.151628973216901, 28.617551698710656 ], [ -82.151635294357078, 28.616675853840693 ], [ -82.151632589392648, 28.61655105528736 ], [ -82.1516350096189, 28.616477509284337 ], [ -82.151627364011887, 28.616430717087987 ], [ -82.151597015904713, 28.616401780349058 ], [ -82.151531321468212, 28.616381795292302 ], [ -82.151455551472722, 28.616379649805101 ], [ -82.150841830488289, 28.616380331082649 ], [ -82.149106735303874, 28.616373325385634 ], [ -82.148530891933575, 28.616369496319596 ], [ -82.147116565398363, 28.616375486215574 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 614A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.15772047039647, 28.624925061447644 ], [ -82.157724025374222, 28.624794402477949 ], [ -82.157723142201107, 28.624203826304974 ], [ -82.157717894860838, 28.624072345552847 ], [ -82.157725401876036, 28.624025535322325 ], [ -82.157745551079074, 28.623987626456682 ], [ -82.157801080885932, 28.623963048367582 ], [ -82.157886953683658, 28.623960719236091 ], [ -82.158167325896898, 28.623967080459945 ], [ -82.15878615640959, 28.623977504728948 ], [ -82.158970545293727, 28.623981746413307 ], [ -82.159036174344365, 28.623954926361865 ], [ -82.159071445358677, 28.623894714621688 ], [ -82.15908897946322, 28.623796634423528 ], [ -82.159091360039099, 28.623700803393191 ], [ -82.159091198873909, 28.623593831459232 ], [ -82.159088126646196, 28.623230571963255 ], [ -82.159094749952374, 28.6225976456236 ], [ -82.15910120297842, 28.621851057341367 ], [ -82.159098454432581, 28.621703974067128 ], [ -82.159095780780646, 28.621605919230444 ], [ -82.159100718471436, 28.621530142350444 ], [ -82.159093034293036, 28.621458834143663 ], [ -82.159060143350715, 28.621420986975412 ], [ -82.159012105972124, 28.621389842893016 ], [ -82.158936301044648, 28.621367645373983 ], [ -82.158789820188787, 28.621374502439895 ], [ -82.15861555059459, 28.621376933239389 ], [ -82.158461480895696, 28.621377112458354 ], [ -82.158246788641208, 28.621372906158836 ], [ -82.158069985421733, 28.621370881649373 ], [ -82.157878034394741, 28.621373333810787 ], [ -82.157658290329593, 28.621369130626174 ], [ -82.157395616423472, 28.62136943331463 ], [ -82.157024342884711, 28.621374319102959 ], [ -82.156635376707897, 28.621370310011283 ], [ -82.156112554779909, 28.621370909826613 ], [ -82.155513958166011, 28.621369364422463 ], [ -82.155001220463006, 28.621358806376396 ], [ -82.1544228400017, 28.621363919488317 ], [ -82.154006089856992, 28.621359934324634 ], [ -82.153591865652032, 28.621355943228881 ], [ -82.153205427752326, 28.621354150220991 ], [ -82.152243113731785, 28.621341855690922 ], [ -82.152010747766383, 28.621342115898369 ], [ -82.15178342722686, 28.62133791344235 ], [ -82.151715217592667, 28.621326845494757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 81st Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148085797424685, 28.637559447372542 ], [ -82.148671853279254, 28.637558808466768 ], [ -82.148957295994322, 28.63755404106977 ], [ -82.150010680437262, 28.637552885723071 ], [ -82.150897335600831, 28.637547449357744 ], [ -82.151551590031985, 28.637542264929888 ], [ -82.151739771984396, 28.637533420176364 ], [ -82.151910272218927, 28.637524872791975 ], [ -82.152023974801523, 28.637544246381129 ], [ -82.152143976100362, 28.637552468994581 ], [ -82.152611309732578, 28.637554732859115 ], [ -82.15293967453033, 28.637534864353622 ], [ -82.153227017629007, 28.637534540662536 ], [ -82.15341963654366, 28.637537112159539 ], [ -82.153548388795471, 28.637574725388301 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 614A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153548388795471, 28.637574725388301 ], [ -82.15355263520452, 28.637022029941278 ], [ -82.153549440973862, 28.636562944853591 ], [ -82.153548949156232, 28.636224198541349 ], [ -82.153553193325536, 28.635669276021289 ], [ -82.153559638447362, 28.634891491078271 ], [ -82.153558365243356, 28.634015656049716 ], [ -82.153552313822644, 28.633365524997167 ], [ -82.153551324106601, 28.63268587816572 ], [ -82.153560996430144, 28.632203017058039 ], [ -82.153573059262428, 28.631580563547054 ], [ -82.153580310885161, 28.631216702546176 ], [ -82.153576502080043, 28.630381447084911 ], [ -82.153580530799871, 28.629585085140889 ], [ -82.153595237765259, 28.628883014312201 ], [ -82.153595017291408, 28.628731472471213 ], [ -82.153599917085799, 28.628626722763119 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 605", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127007851092287, 28.655901523716221 ], [ -82.127006743234503, 28.654981637670005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 605", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127006743234503, 28.654981637670005 ], [ -82.127003475083541, 28.654320955309039 ], [ -82.126998079114784, 28.65413163980369 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 69th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124953523887825, 28.655018662015035 ], [ -82.125085534784048, 28.655013526747332 ], [ -82.125654745420405, 28.655023830658685 ], [ -82.126462615698841, 28.654977175941788 ], [ -82.127006743234503, 28.654981637670005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 70th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126998079114784, 28.65413163980369 ], [ -82.127731525649068, 28.654143112009091 ], [ -82.128237846038672, 28.654174953049804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 605", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124954796489803, 28.654121636058111 ], [ -82.125100999391208, 28.654108384814148 ], [ -82.126884574420714, 28.654116101680071 ], [ -82.126998079114784, 28.65413163980369 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Battlefield Pkwy", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124953523887825, 28.655018662015035 ], [ -82.124953899999056, 28.654316443608398 ], [ -82.124951355170765, 28.654255392205489 ], [ -82.12495126991989, 28.654183437449724 ], [ -82.124954796489803, 28.654121636058111 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 604", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124950848688059, 28.655914734468748 ], [ -82.126766824565721, 28.655896296962265 ], [ -82.127007851092287, 28.655901523716221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Battlefield Pkwy", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124950848688059, 28.655914734468748 ], [ -82.124953523887825, 28.655018662015035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Seminole Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118755472563777, 28.657638483488405 ], [ -82.120849312648943, 28.657651907863652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Seminole Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117932273605817, 28.657630474613843 ], [ -82.118755472563777, 28.657638483488405 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 80th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129179823140745, 28.63943498339632 ], [ -82.129229647532782, 28.639454157766764 ], [ -82.129276336265377, 28.639456860238649 ], [ -82.130676369457589, 28.63946539323177 ], [ -82.131405845000103, 28.6394604017954 ], [ -82.131649030679029, 28.639481620325945 ], [ -82.13188735398748, 28.639502841317 ], [ -82.132694636004146, 28.63949347707506 ], [ -82.133156647056978, 28.639497318291685 ], [ -82.133589465328683, 28.639492603511581 ], [ -82.134090376789032, 28.639492111924596 ], [ -82.135495904019919, 28.63953791574632 ], [ -82.136341478697261, 28.639506822126915 ], [ -82.137159544120507, 28.639490605159647 ], [ -82.137264270392947, 28.639500122286993 ], [ -82.137342808734289, 28.639501968787922 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 15th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129179823140745, 28.63943498339632 ], [ -82.129154885748861, 28.639404804016511 ], [ -82.129151663450145, 28.6393141944781 ], [ -82.129166808811249, 28.638973697141914 ], [ -82.129166400568124, 28.637783600884919 ], [ -82.129164059787641, 28.637652730951398 ], [ -82.129153073927171, 28.637589229509121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 15th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129153073927171, 28.637589229509121 ], [ -82.129150516980076, 28.637524913396931 ], [ -82.129147641545941, 28.637472807098511 ], [ -82.129147403680079, 28.637279263396294 ], [ -82.129133164796784, 28.636914354898032 ], [ -82.129145184122152, 28.636562875359314 ], [ -82.129125924515805, 28.636085119054087 ], [ -82.129114467727604, 28.63587144126727 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 675", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149087922897607, 28.588310323768848 ], [ -82.149184147465178, 28.588373857188891 ], [ -82.149239945661705, 28.588403490448947 ], [ -82.149301689030111, 28.588420330084396 ], [ -82.149361286395703, 28.588424021301766 ], [ -82.149548582389741, 28.58842945305334 ], [ -82.150010426576614, 28.588434580226462 ], [ -82.150875584852187, 28.588444662698397 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 678", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.159947081309738, 28.589872930720031 ], [ -82.159970821532625, 28.589809784947832 ], [ -82.159980913680698, 28.589727118573904 ], [ -82.159974450935024, 28.589530089831154 ], [ -82.159973668744257, 28.589012367427589 ], [ -82.159973222217417, 28.588717196476125 ], [ -82.159983543856853, 28.588522745857937 ], [ -82.159982892780278, 28.588091700421838 ], [ -82.160003217935696, 28.587588605381953 ], [ -82.159995994526255, 28.587315103951429 ], [ -82.159965064861311, 28.587128792988011 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 29th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153173144246281, 28.583090952470258 ], [ -82.153135926807693, 28.583048825953529 ], [ -82.153109347018244, 28.583020745091542 ], [ -82.153093355338342, 28.5829739079688 ], [ -82.153095815877307, 28.582840375566853 ], [ -82.153124284019682, 28.582339018887595 ], [ -82.153160514131187, 28.581699436115766 ], [ -82.153183635824121, 28.581172315318977 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.152575819551032, 28.581128487433926 ], [ -82.152785504551446, 28.581144651059951 ], [ -82.153183635824121, 28.581172315318977 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153183635824121, 28.581172315318977 ], [ -82.1538603975781, 28.581176239620714 ], [ -82.154085992799381, 28.581183013358146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 30th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.154085992799381, 28.581183013358146 ], [ -82.154112229722841, 28.580974488263806 ], [ -82.154154201667865, 28.579417438141707 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 30th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.154074019586133, 28.582073230949934 ], [ -82.154085992799381, 28.581183013358146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.154085992799381, 28.581183013358146 ], [ -82.15499495668324, 28.581203434173705 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 30th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.154910447326486, 28.582365113027041 ], [ -82.154926100033322, 28.582180027370161 ], [ -82.154970438378115, 28.581648196362018 ], [ -82.154991182172154, 28.581315518526285 ], [ -82.15499495668324, 28.581203434173705 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 31st Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.155827095747824, 28.583062175782946 ], [ -82.155832009918782, 28.582795110003154 ], [ -82.155847351452877, 28.582399185820055 ], [ -82.155872971113297, 28.581776014579784 ], [ -82.155881707026822, 28.581231258159416 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.15499495668324, 28.581203434173705 ], [ -82.155881707026822, 28.581231258159416 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 33rd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158944456623956, 28.583889851480894 ], [ -82.158885922355509, 28.582675297463048 ], [ -82.158936420100815, 28.582294888390319 ], [ -82.158999447074478, 28.581849712528836 ], [ -82.158983320199667, 28.581713857394913 ], [ -82.158981301333611, 28.581464974545774 ], [ -82.1589500022869, 28.581380836838235 ], [ -82.158952155064199, 28.581329755386534 ], [ -82.158962623550678, 28.581270983497792 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 37th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.1661192157095, 28.585271944285058 ], [ -82.166174644624718, 28.5837378707845 ], [ -82.166182192231176, 28.582964326415496 ], [ -82.166159913156548, 28.582541487717616 ], [ -82.166255812374942, 28.582232280480241 ], [ -82.166271575108368, 28.582129185723499 ], [ -82.166271150615842, 28.581859782721093 ], [ -82.166273708650905, 28.581798871449472 ], [ -82.166262996795538, 28.581737976356941 ], [ -82.166176525996164, 28.581580402727418 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.166176525996164, 28.581580402727418 ], [ -82.167393364078691, 28.581598376179119 ], [ -82.167926811223936, 28.581600063677779 ], [ -82.169320156642897, 28.581612396428714 ], [ -82.170425924345096, 28.581611936507585 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 40th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170425924345096, 28.581611936507585 ], [ -82.170429641986431, 28.581427750130153 ], [ -82.170425286234462, 28.581215235757295 ], [ -82.17042868327475, 28.580832696725974 ], [ -82.17047206264516, 28.580361558959726 ], [ -82.170482920960481, 28.580172564958929 ], [ -82.170461347585743, 28.579959413363476 ], [ -82.170402572808044, 28.579718193043981 ], [ -82.170418239542173, 28.579558874698751 ], [ -82.170465854759414, 28.57946276615985 ], [ -82.170494889103423, 28.579364339256479 ], [ -82.170421548699508, 28.578895239510981 ], [ -82.170432838937487, 28.578431225121278 ], [ -82.170440219594425, 28.578030971562267 ], [ -82.170440786366143, 28.577884685645525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 62nd Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.209237523762596, 28.601663677582469 ], [ -82.209273981997796, 28.601574754673596 ], [ -82.209299389113369, 28.60153309973667 ], [ -82.209339182204062, 28.601502890509028 ], [ -82.209401760142882, 28.601477670457751 ], [ -82.209538350640472, 28.601452338310345 ], [ -82.209640793276961, 28.601432081925775 ], [ -82.209834317330902, 28.601406660912705 ], [ -82.210161621021385, 28.601373496874608 ], [ -82.210397862116807, 28.601355545458642 ], [ -82.210602776755394, 28.601332617861566 ], [ -82.210733685877415, 28.601312316621044 ], [ -82.210838967561244, 28.601289541923549 ], [ -82.210907253006113, 28.601271851385295 ], [ -82.210969819376444, 28.601241605501937 ], [ -82.21102668672863, 28.60120885811428 ], [ -82.211100596830889, 28.601155986479412 ], [ -82.211154563434022, 28.601095606687899 ], [ -82.211185781281017, 28.601047825428591 ], [ -82.211214122507428, 28.600984974143906 ], [ -82.211264203176199, 28.600859889072719 ], [ -82.211301871903714, 28.600736119001869 ], [ -82.211505647006945, 28.600142902513319 ], [ -82.211709478173958, 28.599579829139483 ], [ -82.211822639719486, 28.599227932953767 ], [ -82.212159547743596, 28.59831042031017 ], [ -82.212354745992741, 28.597704650649138 ], [ -82.21262381415184, 28.597028422539346 ], [ -82.212802554415049, 28.596734203439361 ], [ -82.213043763481863, 28.596362006326675 ], [ -82.213387350666025, 28.595941915502323 ], [ -82.213770571261819, 28.595416243750577 ], [ -82.214434783303844, 28.594490673597196 ], [ -82.214798058283563, 28.593960006043329 ], [ -82.215541885841375, 28.593001644526137 ], [ -82.215805946211418, 28.592677139086444 ], [ -82.216215172117558, 28.592352403615841 ], [ -82.216286178910821, 28.592276921981107 ], [ -82.216362247245826, 28.592196923272372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 60th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.216362247245826, 28.592196923272372 ], [ -82.216122672714391, 28.592058529177791 ], [ -82.215991337703542, 28.59199484734355 ], [ -82.213987222660833, 28.592061900557322 ], [ -82.212179805815722, 28.592077333337546 ], [ -82.210900290446787, 28.592079321683318 ], [ -82.209953160319003, 28.592149416182597 ], [ -82.208303591326811, 28.592341001169931 ], [ -82.207297145472793, 28.592447357110544 ], [ -82.205996620674199, 28.592554150680098 ], [ -82.205440258615894, 28.59261838312759 ], [ -82.205223037209336, 28.592590757888161 ], [ -82.205114377218322, 28.592550990287538 ], [ -82.204561689685136, 28.592176464008197 ], [ -82.203769018948918, 28.591698471341406 ], [ -82.203676260878282, 28.591626771117763 ], [ -82.203561409287573, 28.591491537551281 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 60th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203561409287573, 28.591491537551281 ], [ -82.203561100757199, 28.591331809256996 ], [ -82.20355681849, 28.590986806549012 ], [ -82.203551392138621, 28.590791504785919 ], [ -82.203547715154528, 28.590678583223067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 60th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203547715154528, 28.590678583223067 ], [ -82.20355418372543, 28.590446616904725 ], [ -82.20355024058388, 28.590193301410615 ], [ -82.20356316589104, 28.589723263511086 ], [ -82.203572916646436, 28.589399729904571 ], [ -82.20357557608483, 28.588984645426766 ], [ -82.203578568375477, 28.588743526384899 ], [ -82.203581453109948, 28.588444419442261 ], [ -82.20358427396512, 28.588114791792652 ], [ -82.203576541330676, 28.587690566710098 ], [ -82.203569061392841, 28.587397578646858 ], [ -82.203595991576535, 28.587016031190217 ], [ -82.203609018317948, 28.586597876646024 ], [ -82.203579961474261, 28.585874580594204 ], [ -82.20361729278693, 28.585508277003562 ], [ -82.20361007836047, 28.585352632060513 ], [ -82.203592237166191, 28.585065763724028 ], [ -82.203580373226416, 28.584904158532179 ], [ -82.203587601191899, 28.584410460357432 ], [ -82.203634878670215, 28.583866236117792 ], [ -82.20363461909929, 28.583731944586678 ], [ -82.203568593852566, 28.583561127089276 ], [ -82.203597928647199, 28.583097842601806 ], [ -82.203638988044531, 28.582677296220705 ], [ -82.203651669723072, 28.582218273951948 ], [ -82.203651054963714, 28.581898967612016 ], [ -82.203650762956315, 28.581747296982488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 113th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.19542595287416, 28.590682274267028 ], [ -82.195624798725248, 28.590689619085026 ], [ -82.195819336280763, 28.590704600000215 ], [ -82.196009517100634, 28.590700512316385 ], [ -82.196225631588305, 28.590696385210602 ], [ -82.196493643833662, 28.590707444212203 ], [ -82.196753011228651, 28.590718516071789 ], [ -82.197042620599916, 28.590721911697258 ], [ -82.197327895342056, 28.590717684591763 ], [ -82.197630437449746, 28.590701985641797 ], [ -82.197889762093666, 28.590690162997586 ], [ -82.198200971405797, 28.590685894576527 ], [ -82.198499218455865, 28.59068546032961 ], [ -82.198775848121244, 28.590681242775926 ], [ -82.19896602773612, 28.590677150949293 ], [ -82.199182193358908, 28.590699724743079 ], [ -82.199350776139639, 28.590703293245774 ], [ -82.199545313191933, 28.590718268816364 ], [ -82.199843555144838, 28.590714017425565 ], [ -82.200115875777328, 28.590717431850962 ], [ -82.200435727906637, 28.590713146508527 ], [ -82.200803070027618, 28.590678269635809 ], [ -82.201209363728921, 28.590670039922781 ], [ -82.201689170141364, 28.590676960558916 ], [ -82.202108444660325, 28.59067633912781 ], [ -82.202439364238344, 28.590667144659584 ], [ -82.202811167246381, 28.590676630140209 ], [ -82.203136219641223, 28.590679197502354 ], [ -82.203547715154528, 28.590678583223067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 128th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181906631156778, 28.569347866766332 ], [ -82.181970689365656, 28.569313327073388 ], [ -82.182025706916804, 28.569290180688906 ], [ -82.182130215902504, 28.569271582767431 ], [ -82.182224308576139, 28.569274534938835 ], [ -82.182499494920947, 28.569264349359493 ], [ -82.182689141684961, 28.569273662930488 ], [ -82.182806548174881, 28.569283070409725 ], [ -82.18286072737871, 28.569282997754382 ], [ -82.182895068972016, 28.569298895211375 ], [ -82.182916792603748, 28.569329158667383 ], [ -82.182934940873082, 28.569380152862408 ], [ -82.182946541824961, 28.569440883111302 ], [ -82.182954981172301, 28.569535822764365 ], [ -82.182957041419471, 28.569627246419486 ], [ -82.182955706615374, 28.569899881586998 ], [ -82.182934657028568, 28.570260229392904 ], [ -82.182918703285452, 28.570434034156921 ], [ -82.182918904453885, 28.570550420937483 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 128th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.176785310771052, 28.569695175699461 ], [ -82.177321351290274, 28.569705959308727 ], [ -82.177633071023493, 28.569707626271086 ], [ -82.177844346690847, 28.569691407353407 ], [ -82.177878597581838, 28.56965309786251 ], [ -82.177901982273355, 28.569597265477761 ], [ -82.17790187775276, 28.569535086869092 ], [ -82.177894488797605, 28.56943784183305 ], [ -82.177901662328523, 28.569407539870962 ], [ -82.177926915350469, 28.569389968956092 ], [ -82.177968451202318, 28.569388320308445 ], [ -82.178544594740387, 28.569405105083455 ], [ -82.178643947980092, 28.569419324032104 ], [ -82.178701814869456, 28.569463889887672 ], [ -82.178772391933933, 28.569548297408684 ], [ -82.178828445772112, 28.569588082258836 ], [ -82.179343152206101, 28.569585811794944 ], [ -82.180076367286134, 28.569572090773953 ], [ -82.180318377811489, 28.569574959817135 ], [ -82.180549599592538, 28.569606539971009 ], [ -82.181427759024032, 28.569710276304633 ], [ -82.181497397588075, 28.569678190102874 ], [ -82.181544704550532, 28.569628906045839 ], [ -82.181591999826196, 28.569572240811556 ], [ -82.181811906828699, 28.569382447325509 ], [ -82.181906631156778, 28.569347866766332 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 43rd Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.176785310771052, 28.569695175699461 ], [ -82.176783751439302, 28.569626301775084 ], [ -82.176778230883386, 28.569565731846726 ], [ -82.176758747289924, 28.569488868338425 ], [ -82.17675127865671, 28.569362868330415 ], [ -82.176746248283948, 28.569247541698537 ], [ -82.176748417997004, 28.569098035752582 ], [ -82.17678195012634, 28.568869783956156 ], [ -82.176792828191608, 28.568707341528857 ], [ -82.17681751853155, 28.568468589762698 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 129th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170526836574481, 28.567492187900545 ], [ -82.172124205305408, 28.567502485696778 ], [ -82.172182791084978, 28.567529482990647 ], [ -82.172227459328681, 28.567568804915339 ], [ -82.172252595264709, 28.567598306012311 ], [ -82.172269414349472, 28.567654887952482 ], [ -82.172266710126209, 28.567706572261137 ], [ -82.172230834314078, 28.567930571411758 ], [ -82.17223650209705, 28.567987168337552 ], [ -82.172261667195286, 28.568033896056548 ], [ -82.172278447321148, 28.568065869296579 ], [ -82.172314725709512, 28.568090433111138 ], [ -82.172373295831818, 28.568107586661032 ], [ -82.172454174667251, 28.568129633365697 ], [ -82.172548970199756, 28.568136896446919 ], [ -82.172615883327325, 28.568141734061619 ], [ -82.172674409358606, 28.568131815392157 ], [ -82.172718976611193, 28.568109610004434 ], [ -82.172760747460487, 28.568082485854248 ], [ -82.172961201237726, 28.567922264112287 ], [ -82.173061466639695, 28.567865533734214 ], [ -82.173234219519983, 28.567813632612161 ], [ -82.173412565040479, 28.567771567837411 ], [ -82.173590940664653, 28.56774919104922 ], [ -82.174095567495982, 28.567780542219833 ], [ -82.174243314853427, 28.567780353526008 ], [ -82.174516479567018, 28.567760315974731 ], [ -82.174897081667609, 28.567806023921783 ], [ -82.174973783256618, 28.567833560737878 ], [ -82.175090928155157, 28.567870326204801 ], [ -82.175241480272277, 28.56787997650061 ], [ -82.175397584637679, 28.567874855325144 ], [ -82.175556512020307, 28.567891876580436 ], [ -82.175651346339635, 28.567923747992573 ], [ -82.175919203406593, 28.568066143704332 ], [ -82.176067047352078, 28.568122555171385 ], [ -82.17681751853155, 28.568468589762698 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 40th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170526811350101, 28.568601313987973 ], [ -82.170526836574481, 28.567492187900545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 129th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170526811350101, 28.568601313987973 ], [ -82.171923335210977, 28.568597859781558 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 40th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170523511394478, 28.56958111636218 ], [ -82.170495566230088, 28.569539313192976 ], [ -82.170481559960251, 28.569497493497025 ], [ -82.170475824152319, 28.56939813628945 ], [ -82.170526811350101, 28.568601313987973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 128th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170523511394478, 28.56958111636218 ], [ -82.170637824666144, 28.569590817062238 ], [ -82.171552230925997, 28.569604435875608 ], [ -82.171789198924245, 28.569609059875582 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 40th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.17048022355435, 28.570398232576544 ], [ -82.170490222798861, 28.569654984199431 ], [ -82.170523511394478, 28.56958111636218 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043468231711159, 28.613757368747152 ], [ -82.04332298057254, 28.613876121716277 ], [ -82.043135333493467, 28.614020345485496 ], [ -82.042972011773145, 28.614149224358314 ], [ -82.042857334239898, 28.614232079440594 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 9th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043203766388203, 28.611357856466039 ], [ -82.043196903131928, 28.611575643050564 ], [ -82.043183068268959, 28.611741284635215 ], [ -82.043137958678159, 28.611934542181842 ], [ -82.043106739828744, 28.612094054156838 ], [ -82.043106801144461, 28.61224435611107 ], [ -82.043120793452061, 28.612459065496996 ], [ -82.043113913914254, 28.612640041966856 ], [ -82.043082701074539, 28.612814890097543 ], [ -82.043051476884756, 28.612962133819384 ], [ -82.043037631846758, 28.613106303264484 ], [ -82.043051586864678, 28.613232060821186 ], [ -82.043089865082592, 28.61333633870526 ], [ -82.043176814088909, 28.613449804361807 ], [ -82.04327418434508, 28.613550996675073 ], [ -82.043359732806934, 28.613644523632651 ], [ -82.043468231711159, 28.613757368747152 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044659483310042, 28.612538432397379 ], [ -82.044343792800916, 28.612790259070888 ], [ -82.044132516921024, 28.612949828900923 ], [ -82.043932358735347, 28.61309467408346 ], [ -82.043862866336454, 28.613163403960399 ], [ -82.043812842415065, 28.613239489829397 ], [ -82.043757817945576, 28.613339936844611 ], [ -82.043682265214201, 28.613533997314544 ], [ -82.043629463667557, 28.61361744528244 ], [ -82.043554407971556, 28.613683725092567 ], [ -82.043468231711159, 28.613757368747152 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 758", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025758010613302, 28.6062725177716 ], [ -82.025785375075529, 28.604459088626211 ], [ -82.025787876441171, 28.603320483552181 ], [ -82.025782024420849, 28.602127895408508 ], [ -82.025795766481934, 28.601475157597772 ], [ -82.025801709576854, 28.600187170434875 ], [ -82.025790089645895, 28.599747295145843 ], [ -82.025779118505824, 28.599296777482031 ], [ -82.025779074105671, 28.599114653214574 ], [ -82.025806162366237, 28.598851046941956 ], [ -82.025811522122183, 28.598558688805269 ], [ -82.025754413899662, 28.59669956585735 ], [ -82.025714121574481, 28.595739114177245 ], [ -82.02570742385538, 28.595650729117853 ], [ -82.0257140757288, 28.595550557012071 ], [ -82.02574743880291, 28.595468057802499 ], [ -82.02580083878243, 28.595423854842682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 746", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025758010613302, 28.6062725177716 ], [ -82.02418137830125, 28.606248259947904 ], [ -82.021935160237263, 28.606243624357383 ], [ -82.020036503656385, 28.606247741259391 ], [ -82.018333357705671, 28.60624797155802 ], [ -82.016404286304365, 28.606255875570621 ], [ -82.015435405758609, 28.606248314253339 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 746", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015435405758609, 28.606248314253339 ], [ -82.013263029129646, 28.606256199532833 ], [ -82.009227268159194, 28.606237261101704 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 746", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029923948327763, 28.609920063325553 ], [ -82.02992406049799, 28.60855380165723 ], [ -82.029909827115716, 28.60738330212504 ], [ -82.029895617693995, 28.606303594175003 ], [ -82.028402410660362, 28.606298998873282 ], [ -82.025758010613302, 28.6062725177716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 746 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009190050951844, 28.609916789778364 ], [ -82.009216372005085, 28.608826112302051 ], [ -82.009230167789013, 28.607606529653715 ], [ -82.009227268159194, 28.606237261101704 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009190050951844, 28.609916789778364 ], [ -82.007740588220372, 28.609919939145485 ], [ -82.006242466369287, 28.609926140214235 ], [ -82.005151025335365, 28.609926179228673 ], [ -82.004104770874719, 28.609923142225892 ], [ -82.002843009686103, 28.609917031627536 ], [ -82.002665736540777, 28.609920102076718 ], [ -82.00250932105682, 28.609926238195019 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 100th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002019218699445, 28.610039735239827 ], [ -82.001974724372943, 28.609993419358062 ], [ -82.001838284161465, 28.609955010474181 ], [ -82.001726844324153, 28.609941352505775 ], [ -82.00156631685158, 28.609926960208458 ], [ -82.00131907196652, 28.609942545619983 ], [ -82.001095159019982, 28.609946244905423 ], [ -82.000958016223265, 28.609967637783321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002019218699445, 28.610039735239827 ], [ -82.001892972520992, 28.610085930711584 ], [ -82.001793978776064, 28.610130838237946 ], [ -82.001652162842717, 28.610214271397268 ], [ -82.001560398473444, 28.610278073727812 ], [ -82.001482538364542, 28.610336966294671 ], [ -82.001403565807948, 28.610407884317858 ], [ -82.00133905271403, 28.610468740239742 ], [ -82.001250069662333, 28.610568859763006 ], [ -82.001172590089823, 28.610676833174242 ], [ -82.001087675711076, 28.610808359453173 ], [ -82.001036511821908, 28.610906515265981 ], [ -82.001009816860787, 28.610961481390916 ], [ -82.000987570989153, 28.611020374492877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 707", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000987570989153, 28.611020374492877 ], [ -82.000962341571125, 28.610880731860959 ], [ -82.000945554109165, 28.610718832978883 ], [ -82.000937610725359, 28.610101509099426 ], [ -82.000944674802298, 28.610032935695529 ], [ -82.000958016223265, 28.609967637783321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000987570989153, 28.611020374492877 ], [ -82.000940856663007, 28.611195091170668 ], [ -82.000916386370008, 28.611338398239287 ], [ -82.0009052633621, 28.611487594873708 ], [ -82.000909715417151, 28.611835064626923 ], [ -82.000911943999924, 28.612247318812244 ], [ -82.000909725360827, 28.613124828788543 ], [ -82.000909729287812, 28.613466408883347 ], [ -82.000909253158241, 28.613511843531239 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 705", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00091866030067, 28.617029448212218 ], [ -82.000923502368153, 28.616917353217016 ], [ -82.00094757630373, 28.61656026566498 ], [ -82.000960920752419, 28.616057711847308 ], [ -82.000965362972281, 28.615274430932839 ], [ -82.00096535676775, 28.614587343020727 ], [ -82.000965355970052, 28.614499002999484 ], [ -82.000952006478045, 28.614410663889974 ], [ -82.00092753453724, 28.614330176048227 ], [ -82.00087191712322, 28.614253614292387 ], [ -82.000765132546206, 28.614212389041757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000765132546206, 28.614212389041757 ], [ -82.000696166953006, 28.614339991639309 ], [ -82.000637773351272, 28.614425296110216 ], [ -82.000580484986813, 28.614497041088789 ], [ -82.000495947036725, 28.614593232177906 ], [ -82.000415858108184, 28.614673719798731 ], [ -82.00032687058669, 28.614756169024954 ], [ -82.000208962364383, 28.614850398110285 ], [ -82.000075480047286, 28.614964257416229 ], [ -81.999924199953171, 28.615084006324082 ], [ -81.999824088431751, 28.615170383400933 ], [ -81.998636076915147, 28.616151926681507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 96th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998636076915147, 28.616151926681507 ], [ -81.998549313842275, 28.616055733395868 ], [ -81.998487022316169, 28.615985060374634 ], [ -81.998449200756014, 28.61597131811353 ], [ -81.998380233651673, 28.615979170199459 ], [ -81.998266772264643, 28.615990946756185 ], [ -81.998159986364996, 28.616002723325618 ], [ -81.998046523942051, 28.616012536205844 ], [ -81.997935285685273, 28.616020388245467 ], [ -81.99781960017765, 28.616026274814296 ], [ -81.997688340501824, 28.61603216188281 ], [ -81.997441396333684, 28.616041972480566 ], [ -81.997212246596717, 28.616041967384216 ], [ -81.996598218975862, 28.616038025736579 ], [ -81.995597087920189, 28.616041921379047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Virginia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996787183981027, 28.638795804862813 ], [ -81.996802784253703, 28.638012527858464 ], [ -81.996813928425496, 28.63738237368409 ], [ -81.996829532623266, 28.636489163841294 ], [ -81.996845132769124, 28.63568821879684 ], [ -81.996851815604415, 28.635450683114271 ], [ -81.996856273127378, 28.635203332640135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Virginia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996800454214821, 28.641447955810953 ], [ -81.996800467698989, 28.641004293943652 ], [ -81.996791593818315, 28.640122863054351 ], [ -81.996787169423868, 28.63927284071401 ], [ -81.996787183981027, 28.638795804862813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mark Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996800454214821, 28.641447955810953 ], [ -81.995244990174825, 28.641469500550961 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Virginia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996809322935576, 28.642539440574176 ], [ -81.996809332348306, 28.642262642488049 ], [ -81.996800454214821, 28.641447955810953 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elm Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996809322935576, 28.642539440574176 ], [ -81.995681099680951, 28.642547258072184 ], [ -81.994755375887863, 28.642572744164973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elm Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994755375887863, 28.642572744164973 ], [ -81.993760668220801, 28.642582514551609 ], [ -81.992874999694138, 28.642592284554556 ], [ -81.992790438780517, 28.642600131128003 ], [ -81.992743705535304, 28.642615834603252 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Jefferson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99344584519757, 28.64616684278824 ], [ -81.992724825080998, 28.64616876792897 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Washington Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992724825080998, 28.64616876792897 ], [ -81.992723450382769, 28.645915804210201 ], [ -81.992734637943073, 28.645065781490882 ], [ -81.992716877512635, 28.644431699694994 ], [ -81.992710235491955, 28.643950739550966 ], [ -81.992710289491129, 28.643169427091092 ], [ -81.992705871473746, 28.642700246084345 ], [ -81.992714776908016, 28.642649205007103 ], [ -81.992743705535304, 28.642615834603252 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 752", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046521355428581, 28.60000091695521 ], [ -82.045486134837219, 28.600008862072677 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 748", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04547323397432, 28.600876990763982 ], [ -82.045486134837219, 28.600008862072677 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 752", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045486134837219, 28.600008862072677 ], [ -82.044701910138471, 28.600010493098761 ], [ -82.044354979877639, 28.600006824025481 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 727", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046487432500953, 28.601769014480961 ], [ -82.046517387119053, 28.600881026739131 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 105th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046487432500953, 28.601769014480961 ], [ -82.045432983395244, 28.601769051228075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 727", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046521355428581, 28.60000091695521 ], [ -82.046528487519367, 28.599509789518198 ], [ -82.046534050298732, 28.599163078855742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 727", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046526329707234, 28.597294565748047 ], [ -82.04650145052463, 28.596058108416209 ], [ -82.046504630029688, 28.595446395638486 ], [ -82.046497474377247, 28.594855990600429 ], [ -82.046490211062789, 28.594025161669393 ], [ -82.046493285200071, 28.593176069342078 ], [ -82.046476674784159, 28.591859458729957 ], [ -82.046473090610945, 28.591631939482578 ], [ -82.046444530927033, 28.590057740579564 ], [ -82.046412706291989, 28.588978559141328 ], [ -82.04638445030524, 28.588093076155989 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 108th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042382959735576, 28.597201820615354 ], [ -82.040724604353414, 28.597183645273542 ], [ -82.03969891273286, 28.597176898385275 ], [ -82.039486299813561, 28.597256069306166 ], [ -82.039029110466146, 28.597314810450847 ], [ -82.038791579350544, 28.597348692402779 ], [ -82.03851061156513, 28.597353278822752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 52nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017695711426398, 28.566122961934337 ], [ -82.017699317099144, 28.565564443085279 ], [ -82.017737762535972, 28.564319795055443 ], [ -82.017709485494947, 28.563256830974236 ], [ -82.01768294920528, 28.562430202993905 ], [ -82.017549702006377, 28.562043876758814 ], [ -82.017500730841334, 28.561760724374846 ], [ -82.017506122002018, 28.561487165369332 ], [ -82.017508811904776, 28.561319189456384 ], [ -82.017492482324258, 28.561182411830991 ], [ -82.01740001606494, 28.56085607294051 ], [ -82.017367377750475, 28.560719296377762 ], [ -82.017342882472292, 28.560515329114235 ], [ -82.017334635859569, 28.559949014970638 ], [ -82.017318277450542, 28.55963946299131 ], [ -82.017340003164406, 28.559533875748372 ], [ -82.01739433663947, 28.559375491772002 ], [ -82.01753018895927, 28.559099517347594 ], [ -82.017600831346058, 28.55895792937719 ], [ -82.017625272065459, 28.558833143391546 ], [ -82.017608850537968, 28.558154047482233 ], [ -82.017608753049373, 28.557561335766806 ], [ -82.017614036010826, 28.556639870874406 ], [ -82.017630224094773, 28.55592957383044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 711", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009275975149237, 28.57681634476312 ], [ -82.009273136520846, 28.576641797053352 ], [ -82.009287989518157, 28.576318677966231 ], [ -82.009274328401375, 28.575754286987021 ], [ -82.009277840247819, 28.575539219931024 ], [ -82.009288425644499, 28.575451947117966 ], [ -82.009299012319289, 28.575367788297424 ], [ -82.009313127252256, 28.575268047551305 ], [ -82.009344888050578, 28.575084146630456 ], [ -82.009401364448877, 28.574878428129523 ], [ -82.00947195903376, 28.574625952758574 ], [ -82.009556682090818, 28.574420229671912 ], [ -82.009729661972656, 28.574064891850103 ], [ -82.009837939776759, 28.57384270733613 ], [ -82.009952673959674, 28.573628411504238 ], [ -82.01001445389312, 28.573534899952062 ], [ -82.010138019205613, 28.573386838247366 ], [ -82.010235104895486, 28.573262154434698 ], [ -82.010349848804267, 28.573172535376088 ], [ -82.010455764627963, 28.573079021418131 ], [ -82.010552853930562, 28.572997194289897 ], [ -82.010720553878912, 28.572845233448824 ], [ -82.010853466293568, 28.572688306652442 ], [ -82.010954440184747, 28.57255690135257 ], [ -82.011042695284587, 28.572408842332703 ], [ -82.011117710003063, 28.572260782451185 ], [ -82.011175063906634, 28.572058178860253 ], [ -82.011223594511591, 28.571886743848864 ], [ -82.011250053363568, 28.571676351720214 ], [ -82.011254450085559, 28.571516608156085 ], [ -82.011245606164877, 28.571360763739353 ], [ -82.011214695743618, 28.571212712766389 ], [ -82.011152888280662, 28.571021806303008 ], [ -82.01100720453347, 28.570647786690714 ], [ -82.010896840702628, 28.570378960714482 ], [ -82.010821785669705, 28.570102341186995 ], [ -82.010751139998433, 28.569810135056979 ], [ -82.01068490620041, 28.56948675880772 ], [ -82.010676052844161, 28.56923740776255 ], [ -82.010608418328403, 28.568996103566416 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005372119104663, 28.570602767148873 ], [ -82.005073002219035, 28.570696353724248 ], [ -82.003043879209628, 28.571323105647011 ], [ -82.001121077747015, 28.571911766934271 ], [ -81.999873686665381, 28.572299965171077 ], [ -81.999163757959849, 28.572513090071674 ], [ -81.997824369575554, 28.572926644202401 ], [ -81.99570604493006, 28.57357866384827 ], [ -81.993665300511651, 28.57420781680916 ], [ -81.992026940017681, 28.574715175816852 ], [ -81.990502389196678, 28.575177108326454 ], [ -81.989483712416614, 28.575493680347741 ], [ -81.988669686120133, 28.575751397158157 ], [ -81.987885552736955, 28.575988814480894 ], [ -81.986807075688986, 28.576317539814003 ], [ -81.985592914947247, 28.576692926469637 ], [ -81.984332759379313, 28.577072355558403 ], [ -81.983415227767011, 28.57736250663293 ], [ -81.981925094959493, 28.577814959886961 ], [ -81.980667209788123, 28.578200445137377 ], [ -81.980278573449922, 28.578322178498173 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 724", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06100537809084, 28.624668248647911 ], [ -82.060613728103903, 28.624660067125067 ], [ -82.058788065026448, 28.624647491560278 ], [ -82.055568102896757, 28.624649741795178 ], [ -82.054739707548435, 28.624650073642307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 23rd Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067195153561187, 28.639199110350944 ], [ -82.067199952112958, 28.637439347853569 ], [ -82.067204278469845, 28.634938083968475 ], [ -82.067198929590319, 28.632865883687419 ], [ -82.06720228619163, 28.631927494070645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 722", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08762305651554, 28.631923631405165 ], [ -82.087248628633063, 28.631902244276553 ], [ -82.08660809660536, 28.631906139510061 ], [ -82.085801505542733, 28.631913624337354 ], [ -82.085038394255733, 28.631907123614123 ], [ -82.083737570581889, 28.631925368462003 ], [ -82.082966566879236, 28.631939790621988 ], [ -82.081143811506053, 28.631940882696355 ], [ -82.080511178815485, 28.631934279121865 ], [ -82.079495033077976, 28.631948826293549 ], [ -82.078894039104256, 28.631949173683715 ], [ -82.077320376259749, 28.631946582238498 ], [ -82.075396613285548, 28.631951926535667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 90th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104367960592384, 28.624716625811935 ], [ -82.104307514354858, 28.6247507144803 ], [ -82.104264302155741, 28.624787875972096 ], [ -82.104091517538052, 28.624810009397152 ], [ -82.103646509518768, 28.624770124960929 ], [ -82.10247644523561, 28.62479438410536 ], [ -82.102150898184632, 28.624792222147267 ], [ -82.101828089942956, 28.624799682611112 ], [ -82.101589982573969, 28.624761356092066 ], [ -82.101375670091031, 28.624749825399466 ], [ -82.101103918699692, 28.624773060649193 ], [ -82.100761439033548, 28.624787752730033 ], [ -82.100480886692907, 28.62477489516785 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103366122712615, 28.627786974857443 ], [ -82.103317582586982, 28.626641977010983 ], [ -82.103263330523816, 28.626093750101745 ], [ -82.103276180447523, 28.625983818449846 ], [ -82.103350419681561, 28.625856755514938 ], [ -82.10345321252295, 28.625789655668939 ], [ -82.103514603183257, 28.625773951812565 ], [ -82.104090524401627, 28.625722831857708 ], [ -82.104207593361224, 28.625689994982565 ], [ -82.104290398913051, 28.625655731392673 ], [ -82.10431324280313, 28.625600053221177 ], [ -82.104367960592384, 28.624716625811935 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 765", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100253775847136, 28.621024648995345 ], [ -82.10033219647336, 28.621027474442645 ], [ -82.100479228923547, 28.621030249437279 ], [ -82.101913602045798, 28.621026304716832 ], [ -82.102368643206191, 28.621034637095796 ], [ -82.104315071426413, 28.621044946447252 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104367960592384, 28.624716625811935 ], [ -82.104383379690773, 28.624588589359309 ], [ -82.104383078101534, 28.624284530408879 ], [ -82.104377654445656, 28.624039916905485 ], [ -82.104364282331687, 28.623616986613321 ], [ -82.104374264118547, 28.6232306183649 ], [ -82.104401073776245, 28.623095756014916 ], [ -82.104389108218783, 28.622946319830433 ], [ -82.10436351312498, 28.622839693777138 ], [ -82.104373395219298, 28.622350449021468 ], [ -82.10437305075736, 28.622002953219795 ], [ -82.104367547159256, 28.621678322093828 ], [ -82.104302618136629, 28.62152062659101 ], [ -82.104305081023639, 28.6213926008766 ], [ -82.104312676749728, 28.621211986542356 ], [ -82.104315071426413, 28.621044946447252 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 765", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104315071426413, 28.621044946447252 ], [ -82.106177985570838, 28.621054633153673 ], [ -82.107743426636645, 28.62105118355494 ], [ -82.10892822500351, 28.621052468412287 ], [ -82.110455865731637, 28.621062363212364 ], [ -82.111660844388837, 28.621074730096115 ], [ -82.11250029883773, 28.621087387808895 ], [ -82.112578436582098, 28.621080649734107 ], [ -82.112618754852704, 28.621065047545265 ], [ -82.112638883304754, 28.621029440902106 ], [ -82.112646397233604, 28.620984948501228 ], [ -82.112646334199269, 28.620924892492553 ], [ -82.112658585472573, 28.618771742866976 ], [ -82.112660833211976, 28.618376779966336 ], [ -82.11265424705465, 28.617380094902124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 1st Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107080042655099, 28.616268479035579 ], [ -82.107113541609337, 28.615259881687322 ], [ -82.107106709930591, 28.614541981985457 ], [ -82.107114686680944, 28.614246138234538 ], [ -82.107114432179799, 28.613994129370706 ], [ -82.107097816518447, 28.613935704159935 ], [ -82.107060536778562, 28.613906515605876 ], [ -82.106998405497919, 28.61385908494702 ], [ -82.106919736364333, 28.61382992694697 ], [ -82.106816261726493, 28.613830008761049 ], [ -82.106634155943013, 28.613837455407296 ], [ -82.106427218709442, 28.613848573819045 ], [ -82.106307178673589, 28.613837709225812 ], [ -82.10625384464997, 28.613823556893578 ], [ -82.106196238391036, 28.613794186289176 ], [ -82.106153961865971, 28.613761131231556 ], [ -82.106121922304027, 28.613726054189982 ], [ -82.106100660496907, 28.613676599914594 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 97th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100143634003828, 28.613660348605777 ], [ -82.101267006947978, 28.613567951796078 ], [ -82.102401892099692, 28.613553735640583 ], [ -82.103539821764798, 28.613556889453626 ], [ -82.104295921148733, 28.61356299921276 ], [ -82.105047512839604, 28.613607885373444 ], [ -82.105830895279496, 28.613609443976337 ], [ -82.105959692443534, 28.61362456305234 ], [ -82.106100660496907, 28.613676599914594 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 1st Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106100660496907, 28.613676599914594 ], [ -82.106103901243415, 28.613370373022835 ], [ -82.106095341168185, 28.61308915189878 ], [ -82.106111820407548, 28.613012440211353 ], [ -82.106153138786581, 28.612943015478358 ], [ -82.106215182042533, 28.612902789688828 ], [ -82.106314497058094, 28.612884450916908 ], [ -82.106401403494587, 28.612873427979402 ], [ -82.106475881943851, 28.612851456652244 ], [ -82.106542074364839, 28.612822185496931 ], [ -82.106564133482465, 28.612765892965193 ], [ -82.106549422546863, 28.610073463100488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 4th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099154876257174, 28.617512570730515 ], [ -82.099272479437701, 28.615728764943693 ], [ -82.099282418055012, 28.615105425967808 ], [ -82.099280561665907, 28.615063648984904 ], [ -82.099271445112393, 28.615026387166445 ], [ -82.099257058880326, 28.61500074408961 ], [ -82.099239452574793, 28.614974036782385 ], [ -82.099215006463538, 28.614946473603176 ], [ -82.099181778158268, 28.614928395868535 ], [ -82.099145629291982, 28.614918942099735 ], [ -82.099106548702977, 28.614917123338191 ], [ -82.098568444186128, 28.614941357474571 ], [ -82.097153269967023, 28.614942368267364 ], [ -82.097002940673889, 28.614942474964337 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 50th Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.186571421946695, 28.641513320572063 ], [ -82.186561693021403, 28.640999769262912 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 78th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179435787974242, 28.641569601379572 ], [ -82.180300077474513, 28.641503615965398 ], [ -82.181558456858696, 28.64150194272959 ], [ -82.183313736835714, 28.641509964657406 ], [ -82.185315973289789, 28.641509848853655 ], [ -82.186571421946695, 28.641513320572063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 476B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203594271953321, 28.625241701355502 ], [ -82.203593755257259, 28.624973734415882 ], [ -82.203578472336645, 28.624522831829783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 90th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203578472336645, 28.624522831829783 ], [ -82.203710145301486, 28.624519219493777 ], [ -82.203805012592269, 28.624508825139959 ], [ -82.203909549267706, 28.624491581037073 ], [ -82.204037309723205, 28.624467470455127 ], [ -82.204192154549716, 28.624429648729887 ], [ -82.204364439726334, 28.624398634037671 ], [ -82.204519308523132, 28.62437277327394 ], [ -82.204674160924071, 28.624340076257756 ], [ -82.204830909113383, 28.624285165202263 ], [ -82.204945085318968, 28.624241185810682 ], [ -82.205028248318428, 28.624192602399276 ], [ -82.205098065586071, 28.624165673463679 ], [ -82.205208235341075, 28.624139364926616 ], [ -82.205374759586945, 28.624132278573931 ], [ -82.205539391406106, 28.624149116713912 ], [ -82.205703982048803, 28.624143741901683 ], [ -82.205851124736299, 28.624129850859756 ], [ -82.20603502405524, 28.624097108358221 ], [ -82.206226600871702, 28.624028475276852 ], [ -82.206290467201654, 28.624009583733013 ], [ -82.206441546928218, 28.624028148536741 ], [ -82.206788209725531, 28.624046417976942 ], [ -82.206979921219343, 28.624047833802958 ], [ -82.207125268776011, 28.624027141394802 ], [ -82.207264458058319, 28.623984182231464 ], [ -82.207408909993148, 28.623921509684898 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 476B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203578472336645, 28.624522831829783 ], [ -82.203577589496888, 28.624064925396645 ], [ -82.203566938510974, 28.623562607905683 ], [ -82.20356225872635, 28.623144004745171 ], [ -82.203542867800721, 28.62212569813126 ], [ -82.203523369671217, 28.62105100719895 ], [ -82.20352335163804, 28.620387907823162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 476B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.20352335163804, 28.620387907823162 ], [ -82.203506044174873, 28.619729599471544 ], [ -82.203455953336174, 28.618221638925544 ], [ -82.203447224265133, 28.618025700417856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 95th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.190981550662144, 28.617928513314201 ], [ -82.193891066017599, 28.617931344181951 ], [ -82.194569940629677, 28.617921522980595 ], [ -82.195118450575464, 28.617947297487394 ], [ -82.195412758538922, 28.61795277671704 ], [ -82.195770535904074, 28.617919801189299 ], [ -82.196716962739814, 28.617915487380465 ], [ -82.197235315249472, 28.617908835299012 ], [ -82.197432627480012, 28.617908549329769 ], [ -82.197663433634531, 28.617934772949781 ], [ -82.197803905347868, 28.617940471135586 ], [ -82.198091512457282, 28.617940052997529 ], [ -82.198201851669154, 28.617928087138537 ], [ -82.198292096624385, 28.617901398142173 ], [ -82.198435873421815, 28.617886432747241 ], [ -82.198840559322775, 28.617900598256714 ], [ -82.199108089846575, 28.617890058692904 ], [ -82.199609722319508, 28.61788766928597 ], [ -82.199897318082904, 28.617881345145275 ], [ -82.200709978111362, 28.617880149536887 ], [ -82.201338668874143, 28.617861516486553 ], [ -82.201911976579765, 28.617854876230236 ], [ -82.202325859829273, 28.617844350498949 ], [ -82.202513147213622, 28.617842954037688 ], [ -82.202692404637631, 28.617845046881207 ], [ -82.202804790349191, 28.617854322469114 ], [ -82.202911854060147, 28.617877769884412 ], [ -82.203000182277265, 28.617898886443424 ], [ -82.203075147481343, 28.617927104421515 ], [ -82.203124314486701, 28.6179468463978 ], [ -82.203163510621806, 28.617964743519209 ], [ -82.203206381394637, 28.617997731246586 ], [ -82.20323868441298, 28.618015221754995 ], [ -82.20330275576292, 28.618022631730096 ], [ -82.203447224265133, 28.618025700417856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 476B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203447224265133, 28.618025700417856 ], [ -82.203446909471083, 28.617862807357831 ], [ -82.203438383902196, 28.617603135549427 ], [ -82.203435883432363, 28.616849648798254 ], [ -82.203439193245913, 28.616557471507651 ], [ -82.203431661625103, 28.615662166351562 ], [ -82.203427662972175, 28.614815074015947 ], [ -82.203430023295525, 28.614652176881545 ], [ -82.203432536716022, 28.614567186449882 ], [ -82.203440424424045, 28.614496351079438 ], [ -82.203448338946941, 28.614437320049785 ], [ -82.203456242321423, 28.61437356710255 ], [ -82.203474768532104, 28.614269666807793 ], [ -82.203490670713606, 28.614191735199867 ], [ -82.203511913843769, 28.614109076379318 ], [ -82.203541174978298, 28.614021684536738 ], [ -82.203570436063103, 28.613934291784599 ], [ -82.203607721154071, 28.613846887928062 ], [ -82.203642345834979, 28.613766569586694 ], [ -82.203679636381906, 28.61368152621619 ], [ -82.20371695316102, 28.613610646792107 ], [ -82.203772962672275, 28.613520854352839 ], [ -82.203820966748012, 28.613442875550884 ], [ -82.2038582990631, 28.613379079414884 ], [ -82.20393301266175, 28.613277452711628 ], [ -82.203997064051009, 28.613197091096612 ], [ -82.204058458578729, 28.613126177300991 ], [ -82.204122533607418, 28.613057617267284 ], [ -82.204202629697932, 28.61297250866102 ], [ -82.204293420076198, 28.612885024346792 ], [ -82.20437623097979, 28.612821158913881 ], [ -82.204488419555943, 28.612731281829308 ], [ -82.204605977239453, 28.612650838646829 ], [ -82.204723539318053, 28.612572755871476 ], [ -82.204870523585939, 28.61249226820804 ], [ -82.20502017550065, 28.612407055335872 ], [ -82.205915512246875, 28.611952434520038 ], [ -82.20646073262057, 28.611677759159566 ], [ -82.206610399536217, 28.611601987474589 ], [ -82.206725311713001, 28.611538072786111 ], [ -82.206821519032331, 28.611485986290305 ], [ -82.206962770084203, 28.611390999079322 ], [ -82.207077133899503, 28.611302127158112 ], [ -82.207147434015496, 28.611247053390684 ], [ -82.207214207249677, 28.611191945251669 ], [ -82.207271896532362, 28.611142754004934 ], [ -82.207325305423083, 28.611093568349425 ], [ -82.207363751627824, 28.611053848430831 ], [ -82.207408599767007, 28.61100467668301 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 476B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203578591511814, 28.626555110327278 ], [ -82.203588534660014, 28.625874937024022 ], [ -82.203594271953321, 28.625241701355502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 631A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203578591511814, 28.626555110327278 ], [ -82.204507030474375, 28.626560337158516 ], [ -82.206136984849081, 28.626582701608022 ], [ -82.206632140711363, 28.626580296792728 ], [ -82.209300015009532, 28.62660732102481 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 476B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203528466629834, 28.630770974964445 ], [ -82.203541361578488, 28.629622263485381 ], [ -82.203554124549171, 28.628404674908339 ], [ -82.203565381679851, 28.627713664575996 ], [ -82.203574222917368, 28.627207141289919 ], [ -82.203578591511814, 28.626555110327278 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 476B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203465738008731, 28.636114594893932 ], [ -82.203465569935716, 28.636027944832691 ], [ -82.203483009332984, 28.634623715048811 ], [ -82.203495762594358, 28.633401684287055 ], [ -82.203504458376187, 28.632686238544427 ], [ -82.203515913157176, 28.63209743227306 ], [ -82.203528466629834, 28.630770974964445 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 476B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203457740028625, 28.637192199390569 ], [ -82.203459303950893, 28.636696726859054 ], [ -82.203465738008731, 28.636114594893932 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 630", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203465738008731, 28.636114594893932 ], [ -82.204699775613051, 28.636121633143254 ], [ -82.206246101652908, 28.636130406941874 ], [ -82.206654090391766, 28.636132010415682 ], [ -82.207054516438191, 28.63613140081593 ], [ -82.208071990209149, 28.636147622995129 ], [ -82.208950919530295, 28.636148498614748 ], [ -82.209119653476208, 28.636148240304724 ], [ -82.209227976116338, 28.636163624622284 ], [ -82.209316168696816, 28.636187930523938 ], [ -82.209359008674909, 28.636201195708939 ], [ -82.209391788532741, 28.636221141005471 ], [ -82.209432133836572, 28.636247741098213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 630", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.209482433859336, 28.640018124788391 ], [ -82.209483985043434, 28.639531539597495 ], [ -82.209499161715613, 28.638296173664102 ], [ -82.209509358244787, 28.637089700706571 ], [ -82.209513173658166, 28.636474243097897 ], [ -82.209502953712331, 28.636400940536497 ], [ -82.209490249628345, 28.636343190828452 ], [ -82.209467476928879, 28.636289901519241 ], [ -82.209432133836572, 28.636247741098213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203418562903195, 28.640516351680795 ], [ -82.204375310503011, 28.640234744174855 ], [ -82.204687462421816, 28.640160954903639 ], [ -82.20500215467969, 28.640098269723815 ], [ -82.205241340674164, 28.640060137447747 ], [ -82.205543500992363, 28.640028575180281 ], [ -82.205873398782487, 28.6400147453577 ], [ -82.207394571900608, 28.640010214628099 ], [ -82.208349097621863, 28.640015420083511 ], [ -82.209482433859336, 28.640018124788391 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 476B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203418562903195, 28.640516351680795 ], [ -82.203428010704314, 28.639145907348436 ], [ -82.203443992076004, 28.638029630702409 ], [ -82.203457740028625, 28.637192199390569 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.194985058817977, 28.642983383344991 ], [ -82.195093815988429, 28.642958342909491 ], [ -82.195196524800281, 28.642931532561402 ], [ -82.195524794603458, 28.642849299024906 ], [ -82.19594368105453, 28.64273849358311 ], [ -82.196392757741137, 28.64261164580012 ], [ -82.197665446798027, 28.642236534613069 ], [ -82.199127405592492, 28.641798921421898 ], [ -82.199993297460793, 28.641539919705728 ], [ -82.20139886041467, 28.641123696074338 ], [ -82.202204326875929, 28.640880765334447 ], [ -82.203418562903195, 28.640516351680795 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 73rd Crossing", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.195084608770657, 28.648875552320735 ], [ -82.195947040354994, 28.648886756329787 ], [ -82.197059310566573, 28.648886927676152 ], [ -82.198121229194825, 28.648899606390774 ], [ -82.199138808404257, 28.648907007989983 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 50th Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.186634924539717, 28.644252983300277 ], [ -82.186594696892968, 28.643220885345272 ], [ -82.186574289496505, 28.642504508537609 ], [ -82.186572856374255, 28.641694033659903 ], [ -82.186571623743518, 28.641627446668789 ], [ -82.186571421946695, 28.641513320572063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185661997565774, 28.644403621269856 ], [ -82.18615349220353, 28.644324741080521 ], [ -82.186389175037192, 28.644290646894866 ], [ -82.186634924539717, 28.644252983300277 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 629A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185671596317761, 28.646422815277365 ], [ -82.18567105824313, 28.6461170917303 ], [ -82.185671955479961, 28.645482532225174 ], [ -82.185668968584423, 28.64492974296736 ], [ -82.185661997565774, 28.644403621269856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.184622569404482, 28.644550788175223 ], [ -82.185661997565774, 28.644403621269856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 629", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.184630852646876, 28.64813237961787 ], [ -82.184646225761185, 28.647705766037973 ], [ -82.184645401289714, 28.647234738972827 ], [ -82.184636768504689, 28.646907695256534 ], [ -82.184631798850688, 28.646370905342341 ], [ -82.184633699109625, 28.645153335600465 ], [ -82.184622569404482, 28.644550788175223 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 74th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183720157780414, 28.648171827518951 ], [ -82.184070700832862, 28.648137582278011 ], [ -82.184376959939542, 28.64812827887965 ], [ -82.184630852646876, 28.64813237961787 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 48th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18360316697175, 28.650368084925667 ], [ -82.183627808305189, 28.649522672549914 ], [ -82.183652152656279, 28.64846164602233 ], [ -82.183649862128831, 28.648303454670049 ], [ -82.183655821829703, 28.648253677508908 ], [ -82.183681934696637, 28.648207427445445 ], [ -82.183720157780414, 28.648171827518951 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 74th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182636020833215, 28.648123517362173 ], [ -82.183079362815775, 28.64815136064226 ], [ -82.183583134559413, 28.648168457200409 ], [ -82.183720157780414, 28.648171827518951 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183597302799186, 28.644704331878089 ], [ -82.184622569404482, 28.644550788175223 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 48th Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183626170519958, 28.646526920295756 ], [ -82.183612845783657, 28.645818952555896 ], [ -82.183606146229806, 28.645442969801788 ], [ -82.183641645113894, 28.644997598355225 ], [ -82.183617459258883, 28.644833553238829 ], [ -82.183597302799186, 28.644704331878089 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182615147634039, 28.644852315687722 ], [ -82.18281761349111, 28.644816045306129 ], [ -82.183322291853258, 28.644740701140584 ], [ -82.183597302799186, 28.644704331878089 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 627", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182636020833215, 28.648123517362173 ], [ -82.18263380979667, 28.648009762204456 ], [ -82.18263635875762, 28.64715479564455 ], [ -82.182637450651995, 28.646621553612221 ], [ -82.182634998609615, 28.646369156033479 ], [ -82.18262892325437, 28.645187144407057 ], [ -82.182615147634039, 28.644852315687722 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178569982927868, 28.645658336593925 ], [ -82.179011645499813, 28.645559754947261 ], [ -82.17990910683551, 28.645371908718246 ], [ -82.180732523713189, 28.645196153208637 ], [ -82.181480407195934, 28.645041829107161 ], [ -82.182176949095705, 28.644915568127065 ], [ -82.182615147634039, 28.644852315687722 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 625", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.17852290288873, 28.64880432451044 ], [ -82.17853851016369, 28.648201650609078 ], [ -82.178540403481207, 28.647534995700383 ], [ -82.178551867703916, 28.647164322613271 ], [ -82.178557374623495, 28.646845656124047 ], [ -82.178562484534623, 28.646293662779076 ], [ -82.178572214351789, 28.645790993038037 ], [ -82.178569982927868, 28.645658336593925 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.176347929017368, 28.646132577162216 ], [ -82.178569982927868, 28.645658336593925 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.17322135803964, 28.646787358802101 ], [ -82.174181895339359, 28.646578065055142 ], [ -82.176347929017368, 28.646132577162216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 41st Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174169172302229, 28.652817393730245 ], [ -82.174192713277776, 28.652771532294 ], [ -82.174199596182021, 28.652648610340098 ], [ -82.174199461984529, 28.652567361705518 ], [ -82.174194603855724, 28.652486120016864 ], [ -82.174185029706919, 28.65240904953221 ], [ -82.174175491001392, 28.652352812977295 ], [ -82.174162201478552, 28.652298611469948 ], [ -82.174158789715776, 28.652250754263971 ], [ -82.174158695439203, 28.652192422136242 ], [ -82.174172718613207, 28.652104905822721 ], [ -82.174184421746617, 28.652040309038398 ], [ -82.174184342613756, 28.651992393427268 ], [ -82.174181910826064, 28.651950731289936 ], [ -82.174181807610424, 28.651888232195056 ], [ -82.174165142840877, 28.651807005602294 ], [ -82.174155069969146, 28.651732025550022 ], [ -82.174151703719502, 28.651535155117205 ], [ -82.174159145542916, 28.65146514707245 ], [ -82.174176050612999, 28.651405124775739 ], [ -82.174183445623683, 28.651306785318781 ], [ -82.174193936696426, 28.650795117159028 ], [ -82.174190064439387, 28.650738457365268 ], [ -82.174176785054385, 28.650705140345323 ], [ -82.174148389967854, 28.650671844464714 ], [ -82.17410678503289, 28.650648565133572 ], [ -82.174063312783517, 28.650638621059194 ], [ -82.174008522049064, 28.650638691099346 ], [ -82.173454953229651, 28.650647730546702 ], [ -82.17332158382321, 28.650652327247112 ], [ -82.173283171627403, 28.650631542159857 ], [ -82.173256556242436, 28.650602932351806 ], [ -82.173238779185226, 28.650563892947634 ], [ -82.173241612598744, 28.650490975365368 ], [ -82.173244426852335, 28.650407640363934 ], [ -82.173245806513705, 28.649846348214034 ], [ -82.173236199431102, 28.649748027710579 ], [ -82.173230106805647, 28.648879045544785 ], [ -82.173253296930653, 28.648618605170544 ], [ -82.173244149822338, 28.648441538280878 ], [ -82.173243829059302, 28.648246229399248 ], [ -82.17326029263667, 28.647485808836269 ], [ -82.173262611689935, 28.647100398224897 ], [ -82.1732505896437, 28.646970207605154 ], [ -82.173241609480044, 28.646894699977132 ], [ -82.17322135803964, 28.646787358802101 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.171960698727773, 28.647057700760367 ], [ -82.17248214479676, 28.646950011750135 ], [ -82.17322135803964, 28.646787358802101 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 621", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16915016641633, 28.646932057321923 ], [ -82.169768926685222, 28.646941702952894 ], [ -82.170250685524636, 28.646934851906483 ], [ -82.171093757918882, 28.646919212579032 ], [ -82.171851845842127, 28.646924506579253 ], [ -82.171901467599014, 28.646941110055234 ], [ -82.171929846367036, 28.646966075198765 ], [ -82.171946435971563, 28.64700146906311 ], [ -82.171960698727773, 28.647057700760367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 621", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.168103692372966, 28.646758356259294 ], [ -82.16815805605043, 28.646787455292198 ], [ -82.168233660987127, 28.646808195006045 ], [ -82.168396639224994, 28.646824659680352 ], [ -82.168587939891864, 28.646830674355467 ], [ -82.168710723340823, 28.646818020451061 ], [ -82.168816982597164, 28.646809556608272 ], [ -82.168916176328167, 28.646813599678993 ], [ -82.168984672548916, 28.646819765166448 ], [ -82.169046098651847, 28.646834270648682 ], [ -82.169091015262353, 28.646863381935589 ], [ -82.16915016641633, 28.646932057321923 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 39th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.169140870751704, 28.647762258758693 ], [ -82.169155715214259, 28.647446621868653 ], [ -82.169162239541762, 28.647096621777656 ], [ -82.16915016641633, 28.646932057321923 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.169140870751704, 28.647762258758693 ], [ -82.169222299867229, 28.647731950149186 ], [ -82.169392235075492, 28.647669240490369 ], [ -82.169583416754392, 28.647600253691337 ], [ -82.169769653972082, 28.647539813380085 ], [ -82.169911288276225, 28.647501305567662 ], [ -82.170079365343611, 28.647457762943517 ], [ -82.170292777257217, 28.647407496977483 ], [ -82.170603314329341, 28.647339996254463 ], [ -82.170860549530985, 28.6472840809117 ], [ -82.171776548819409, 28.647093348012415 ], [ -82.171960698727773, 28.647057700760367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 619", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16187500604353, 28.654192613098754 ], [ -82.161876493813324, 28.65393095086117 ], [ -82.161888202518824, 28.65294262542151 ], [ -82.161896627613686, 28.652277630675339 ], [ -82.161900636394819, 28.651195983048943 ], [ -82.161890467266218, 28.650726005502246 ], [ -82.161859115108555, 28.649994391574417 ], [ -82.161851472915998, 28.648707763344422 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 619", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.161851472915998, 28.648707763344422 ], [ -82.161854205621438, 28.648026107933077 ], [ -82.161862678773758, 28.647391111658539 ], [ -82.161873364871084, 28.646967775089902 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 35th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.161861599809029, 28.65997380943211 ], [ -82.161843699189617, 28.659617974143398 ], [ -82.161839090439244, 28.659441965178942 ], [ -82.161820811354218, 28.658837413090549 ], [ -82.161843825074584, 28.658286380673761 ], [ -82.161835027631597, 28.658207951327654 ], [ -82.161782658418829, 28.658003299474039 ], [ -82.16176936403231, 28.657821560140992 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153522046018395, 28.657804163643391 ], [ -82.153678104565088, 28.6578061713133 ], [ -82.154401411096487, 28.657807538793779 ], [ -82.154810131265478, 28.65780926122692 ], [ -82.155493808272837, 28.657812851555569 ], [ -82.155691974072099, 28.65781262518216 ], [ -82.155781140794105, 28.657808154131601 ], [ -82.156021401873303, 28.657796953674588 ], [ -82.15624257345435, 28.657774443191911 ], [ -82.156416066930163, 28.657755111890687 ], [ -82.156613407400542, 28.657726187315042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 619", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156613407400542, 28.657726187315042 ], [ -82.156728469405238, 28.657794930045029 ], [ -82.156830442045504, 28.657813944832618 ], [ -82.156949749625767, 28.657821460086684 ], [ -82.158700196014649, 28.657840476742745 ], [ -82.159615538175302, 28.657843233809412 ], [ -82.160743496252564, 28.657880172332707 ], [ -82.161526512313458, 28.657873505176688 ], [ -82.161641453457747, 28.657861888407584 ], [ -82.161706492685553, 28.657840766980446 ], [ -82.16176936403231, 28.657821560140992 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 617 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.152028786004962, 28.657578263644822 ], [ -82.152045775209999, 28.657602653699449 ], [ -82.152077795213614, 28.657624186427494 ], [ -82.152121190960003, 28.657633704510861 ], [ -82.153353937027418, 28.657639953315574 ], [ -82.153427688571171, 28.657646957190181 ], [ -82.153482215068422, 28.65766874395651 ], [ -82.153515363066063, 28.657710187761388 ], [ -82.153522046018395, 28.657804163643391 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156613407400542, 28.657726187315042 ], [ -82.156838925555292, 28.657683836676814 ], [ -82.157070934473879, 28.657631913446949 ], [ -82.157237878548329, 28.65758388994179 ], [ -82.157398320949724, 28.657539701441934 ], [ -82.157547921369485, 28.657497437338087 ], [ -82.157784226096197, 28.657416809212442 ], [ -82.158020513256943, 28.657324701212726 ], [ -82.158245938926427, 28.65722303978751 ], [ -82.158467021975483, 28.657117556244689 ], [ -82.158679409525575, 28.65699869094551 ], [ -82.158889624800906, 28.656879826042051 ], [ -82.159095479069563, 28.656745661432733 ], [ -82.159292664745351, 28.656615332541346 ], [ -82.159517970028844, 28.656435228407272 ], [ -82.159656609440788, 28.656318359072195 ], [ -82.159856673169401, 28.656140702211594 ], [ -82.160519858288879, 28.655511816978581 ], [ -82.161765799106632, 28.65430398523867 ], [ -82.161837279413604, 28.654232656574742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 625", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182629578276675, 28.669029187127801 ], [ -82.182628786562603, 28.66857287577551 ], [ -82.182635939242218, 28.667195519920632 ], [ -82.182641439470984, 28.666199530057636 ], [ -82.182651405550843, 28.665279244179207 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182629578276675, 28.669029187127801 ], [ -82.183531395945096, 28.669033071817775 ], [ -82.18391837885855, 28.669048800235228 ], [ -82.18425805854919, 28.669080206454236 ], [ -82.184366481221332, 28.669099179065569 ], [ -82.184525514173544, 28.669132422801706 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 634 South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.184525514173544, 28.669132422801706 ], [ -82.184636737197138, 28.669062636321613 ], [ -82.184998348136844, 28.668862517009707 ], [ -82.185828624335059, 28.668455102851627 ], [ -82.186391823387069, 28.668212156706463 ], [ -82.186644546324388, 28.668106655283776 ], [ -82.186803433438811, 28.668058638033738 ], [ -82.186915384292718, 28.668029805485126 ], [ -82.187099572216169, 28.667988128093786 ], [ -82.18742826447189, 28.667936690350217 ], [ -82.187796698254118, 28.667885198761066 ], [ -82.188096365132537, 28.667766882590858 ], [ -82.189417630519898, 28.66716279482619 ], [ -82.190901458913729, 28.666555279104749 ], [ -82.191394738483254, 28.666374838028183 ], [ -82.191441489652377, 28.666361707392596 ], [ -82.191544328420846, 28.666325809565912 ], [ -82.191643062100539, 28.666282353202288 ], [ -82.191735111622819, 28.666239277045751 ], [ -82.191821715363204, 28.666180523283234 ], [ -82.191914066864513, 28.666103915953325 ], [ -82.191983291887539, 28.666036407822823 ], [ -82.192136228569993, 28.665886917453754 ], [ -82.192271723846744, 28.665695533766435 ], [ -82.192363893165989, 28.665519507530533 ], [ -82.192386945659209, 28.665481235938518 ], [ -82.19241866134378, 28.665437854819906 ], [ -82.192459068687626, 28.665407205923835 ], [ -82.192508149541482, 28.665376546546621 ], [ -82.192557265572475, 28.665366279787818 ], [ -82.192609282087076, 28.66536110797842 ], [ -82.193360814269269, 28.665388083579199 ], [ -82.194372527761203, 28.665442724334572 ], [ -82.194733831741814, 28.665449854849811 ], [ -82.194994299275351, 28.665438745791715 ], [ -82.195147054737319, 28.665400827339244 ], [ -82.195329055934735, 28.665352131688746 ], [ -82.195759438627434, 28.665203658821348 ], [ -82.195947155838653, 28.665121812392716 ], [ -82.196282098923859, 28.664942883576796 ], [ -82.196484240516909, 28.664845721074769 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 634", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.199280639881536, 28.6747963737728 ], [ -82.199301102522398, 28.674764734269857 ], [ -82.199312614014644, 28.674738206046577 ], [ -82.199320942702386, 28.67470964141727 ], [ -82.199326647384453, 28.674668845041129 ], [ -82.199329373833223, 28.674582168655938 ], [ -82.199340289224068, 28.674240556741722 ], [ -82.199319062098411, 28.673715448089403 ], [ -82.199317947223207, 28.673126579249779 ], [ -82.19933408110299, 28.672486700720061 ], [ -82.199359387346107, 28.672111926823714 ], [ -82.199393122210154, 28.67160968008595 ], [ -82.199392939949391, 28.671512810691301 ], [ -82.199384123271301, 28.67143634661776 ], [ -82.199363764630903, 28.671370096697018 ], [ -82.199343406014663, 28.671303845870106 ], [ -82.199311509258322, 28.671250360071447 ], [ -82.199268081227103, 28.671212184756833 ], [ -82.199108815848234, 28.671059464913323 ], [ -82.198845287011736, 28.670797279561622 ], [ -82.198694680369783, 28.67063689930788 ], [ -82.198552692231686, 28.670448463675353 ], [ -82.198269574146877, 28.670021185609968 ], [ -82.19818747391264, 28.669906011798293 ], [ -82.198138159830307, 28.66981176123803 ], [ -82.19809752144657, 28.669720048910587 ], [ -82.198074202840644, 28.669615565026135 ], [ -82.198056677140187, 28.669518720854022 ], [ -82.198047813703013, 28.669416764092713 ], [ -82.198044731829839, 28.669314799813087 ], [ -82.198050373431414, 28.669240864556809 ], [ -82.198090423277378, 28.669019023298922 ], [ -82.198118756583924, 28.668715623888403 ], [ -82.198121407231298, 28.668588159506342 ], [ -82.198112477754933, 28.668450513848455 ], [ -82.198097795563257, 28.668328172875892 ], [ -82.198068637276904, 28.668193105755073 ], [ -82.197998569516386, 28.66782102250999 ], [ -82.197884553604112, 28.667132896808091 ], [ -82.197765291464449, 28.666730292313979 ], [ -82.197724606787546, 28.666613086339531 ], [ -82.197675273511052, 28.666508640149168 ], [ -82.197594096798412, 28.666376198462014 ], [ -82.197524536275537, 28.666274330679801 ], [ -82.197101484862785, 28.665706465887666 ], [ -82.196779816145636, 28.665255719138866 ], [ -82.19655084985979, 28.664917002851286 ], [ -82.196484240516909, 28.664845721074769 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 56th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.199292818685009, 28.675122657322941 ], [ -82.199463648236033, 28.675121386328872 ], [ -82.201322893824965, 28.675130883881575 ], [ -82.20256700286366, 28.675131075529954 ], [ -82.203501237555002, 28.675129680589809 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 628", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.220179889708035, 28.701240471154279 ], [ -82.220239982425866, 28.701217941033008 ], [ -82.220290855594371, 28.701211739882844 ], [ -82.22042502939442, 28.701219680183865 ], [ -82.221052042566356, 28.70130431559015 ], [ -82.221540241878941, 28.701374897024408 ], [ -82.222465710956683, 28.701493707097651 ], [ -82.22390484249469, 28.701689163222703 ], [ -82.225193604094486, 28.701872614230133 ], [ -82.227053844465445, 28.702124439026903 ], [ -82.227481890267839, 28.702184903243122 ], [ -82.227646161329261, 28.702205022404069 ], [ -82.2278104103803, 28.702214944223943 ], [ -82.228011651685136, 28.702216645832454 ], [ -82.228212873260418, 28.702210190154137 ], [ -82.22893208447374, 28.702139641648085 ], [ -82.229789182342486, 28.702037721396863 ], [ -82.22983055407002, 28.70203957064809 ], [ -82.22987195514915, 28.702054858167131 ], [ -82.22993950924473, 28.70208161868355 ], [ -82.230031025979656, 28.702114097227536 ], [ -82.230155182225403, 28.702138842523269 ], [ -82.230279382573656, 28.702182782794676 ], [ -82.230316409145871, 28.702188478657266 ], [ -82.23045570223735, 28.702165207842416 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.220179889708035, 28.701240471154279 ], [ -82.221771779992793, 28.702900364317667 ], [ -82.222842466949146, 28.704001749105736 ], [ -82.223617472756658, 28.704800172039072 ], [ -82.224042613308569, 28.705244518983143 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 328", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.221995996348113, 28.705282269376351 ], [ -82.222718733243369, 28.705266925253056 ], [ -82.224042613308569, 28.705244518983143 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 328", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.21959647633679, 28.70526239946637 ], [ -82.219699771269077, 28.705282460778562 ], [ -82.219764034172499, 28.705290450691429 ], [ -82.221052962871596, 28.705285829314867 ], [ -82.221995996348113, 28.705282269376351 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 328A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.219778695017681, 28.706683584372861 ], [ -82.220189239365666, 28.706680789153907 ], [ -82.220240852065004, 28.706673117834388 ], [ -82.220289562187062, 28.706650281315145 ], [ -82.22033539395693, 28.70662239191568 ], [ -82.22086443428482, 28.706198484946963 ], [ -82.221448807385556, 28.705722403506126 ], [ -82.221995996348113, 28.705282269376351 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 575", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.239129336757017, 28.654576404201944 ], [ -82.238570764276218, 28.654577385566199 ], [ -82.237841644114184, 28.654582511545659 ], [ -82.237683490822945, 28.654587200538046 ], [ -82.237500141189329, 28.654568354544764 ], [ -82.237421560581566, 28.654555659744279 ], [ -82.237334233131818, 28.654532716148882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 575", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.237334233131818, 28.654532716148882 ], [ -82.237235237677311, 28.654496962608505 ], [ -82.237145575470862, 28.654458350371634 ], [ -82.237071914821243, 28.654418543458185 ], [ -82.236995409956734, 28.654371253916562 ], [ -82.236910369793534, 28.654304011513528 ], [ -82.236827356360251, 28.65423592274804 ], [ -82.236763197756218, 28.654166747173203 ], [ -82.236696112685095, 28.654089877970236 ], [ -82.236646498560717, 28.65402067701536 ], [ -82.236593927512473, 28.653928386013639 ], [ -82.236553014595557, 28.653846339628842 ], [ -82.23651199239454, 28.653715535036724 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 91st Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.254274358959748, 28.666474126971515 ], [ -82.254349287737156, 28.666076221085543 ], [ -82.254380999936274, 28.665955551504641 ], [ -82.254406938324109, 28.665852853657913 ], [ -82.254403899711093, 28.665798969576318 ], [ -82.254380498288867, 28.6657476900882 ], [ -82.254357121660078, 28.665706675446163 ], [ -82.254310453034321, 28.665658005101587 ], [ -82.25424346601595, 28.665629903702996 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 91st Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.254095892912559, 28.66729512317389 ], [ -82.254128273859422, 28.667208837464532 ], [ -82.254146552136518, 28.667067149124993 ], [ -82.254274358959748, 28.666474126971515 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 61st Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252288207659362, 28.666701103963153 ], [ -82.252425464843697, 28.666670055400669 ], [ -82.252548786642791, 28.666651346856007 ], [ -82.253183675086234, 28.666540325244984 ], [ -82.253387353193943, 28.666541985079149 ], [ -82.25398219448401, 28.666467584634812 ], [ -82.254274358959748, 28.666474126971515 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 622", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.257440349737976, 28.667134815333522 ], [ -82.257390560213111, 28.667179773158171 ], [ -82.257347859966188, 28.667255501303359 ], [ -82.257315921823533, 28.667347756731893 ], [ -82.257278721857304, 28.667480208297913 ], [ -82.257217466999208, 28.667641075805996 ], [ -82.257137611289437, 28.667868167239693 ], [ -82.257087571406373, 28.668095046643963 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 72nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.223972388456659, 28.634475479363584 ], [ -82.223965504475586, 28.634411975375187 ], [ -82.223962884273519, 28.634304547747895 ], [ -82.223941116192265, 28.633985149052535 ], [ -82.223958388535948, 28.63384245882396 ], [ -82.2239687564837, 28.633758706012589 ], [ -82.223993087535874, 28.633628411254112 ], [ -82.224003348082164, 28.633495037431697 ], [ -82.223998905898441, 28.633057757154745 ], [ -82.22397979446778, 28.632665284774241 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 631", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.212015364175201, 28.631607850668228 ], [ -82.212200072286734, 28.631690594736146 ], [ -82.212420855560381, 28.631789497202305 ], [ -82.212546274729291, 28.631845680159476 ], [ -82.212638072854105, 28.631889874782342 ], [ -82.212713880433014, 28.631932512546815 ], [ -82.21280230259238, 28.631989876501766 ], [ -82.212882037730239, 28.63204980218342 ], [ -82.21295366834741, 28.632111557804048 ], [ -82.213040574521003, 28.632199048430287 ], [ -82.21314017773399, 28.632324797969392 ], [ -82.213586105886776, 28.632957222096639 ], [ -82.214061694045753, 28.633634938542503 ], [ -82.214267892182249, 28.634010296582787 ], [ -82.214290466489615, 28.634089350676717 ], [ -82.214316800670929, 28.634181581954749 ], [ -82.214324451582982, 28.634270547330665 ], [ -82.214328372029414, 28.634362813005467 ], [ -82.214313653377772, 28.634471586475946 ], [ -82.214298900217926, 28.634563882463084 ], [ -82.214272994130511, 28.634682559525178 ], [ -82.214213503130239, 28.634817766091871 ], [ -82.213826469720871, 28.635526894372958 ], [ -82.213774396667361, 28.635635727370378 ], [ -82.213729826194296, 28.635761024288481 ], [ -82.213694811509797, 28.635878272697312 ], [ -82.213665891305951, 28.636007046969755 ], [ -82.213655833496645, 28.636113752996408 ], [ -82.213641219630262, 28.636275252317752 ], [ -82.213637745627935, 28.636403780886539 ], [ -82.21363816623807, 28.637350230699941 ], [ -82.213628683838422, 28.638570879211446 ], [ -82.213632057384004, 28.640020527816585 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.213632057384004, 28.640020527816585 ], [ -82.215080988809518, 28.640023860084092 ], [ -82.215792224556949, 28.640025371303704 ], [ -82.217849702040596, 28.640023919317812 ], [ -82.219329437964745, 28.640033791681635 ], [ -82.219842695379768, 28.640036064498144 ], [ -82.220728019831512, 28.640035499777582 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 72nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.224005381840044, 28.638162276856754 ], [ -82.224015710649965, 28.638059916227128 ], [ -82.224022385836818, 28.637892432949993 ], [ -82.224037877589808, 28.637772201208016 ], [ -82.224040804758189, 28.637520678899431 ], [ -82.224035515796004, 28.636658705895066 ], [ -82.224034382380793, 28.636124783989505 ], [ -82.224033964237861, 28.63592828605826 ], [ -82.224026991640301, 28.63582309980411 ], [ -82.224026759916256, 28.635713933980835 ], [ -82.223992245805533, 28.635352747593043 ], [ -82.223968734891812, 28.634874438104859 ], [ -82.223972388456659, 28.634475479363584 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 86th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.21983305297428, 28.630826140973785 ], [ -82.221643115443626, 28.630813678377905 ], [ -82.221956807038637, 28.630813166986968 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 70th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.21983305297428, 28.630826140973785 ], [ -82.219798869745119, 28.630105317072896 ], [ -82.219830240587825, 28.629924016131028 ], [ -82.219856085405922, 28.62977897452113 ], [ -82.219855693183433, 28.629591135131854 ], [ -82.219873833606144, 28.629334061188221 ], [ -82.219910489705654, 28.629001160241245 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 70th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.219910489705654, 28.629001160241245 ], [ -82.219928891805566, 28.628869313746851 ], [ -82.219943454926693, 28.628688039914081 ], [ -82.219943062566486, 28.628500200495619 ], [ -82.219923963392304, 28.62829591466496 ], [ -82.219893601609542, 28.628065280785865 ], [ -82.219867147456895, 28.627917029218111 ], [ -82.219877446183176, 28.627482012886439 ], [ -82.219900893879995, 28.626186863552942 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 70th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.219839556216499, 28.632603200628772 ], [ -82.219829194719097, 28.631215833224442 ], [ -82.21983305297428, 28.630826140973785 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 73rd Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189895104372894, 28.648806520237716 ], [ -82.190774362074947, 28.648806011486634 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 50th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189895104372894, 28.648806520237716 ], [ -82.189857593516194, 28.648388290444778 ], [ -82.189838573205648, 28.648031641651734 ], [ -82.189836034840482, 28.647642546291976 ], [ -82.189839878383097, 28.647225069026241 ], [ -82.189853303341124, 28.6470264484479 ], [ -82.189866725043984, 28.64682377277909 ], [ -82.189851531865841, 28.646041540923662 ], [ -82.189813456923901, 28.645307976691022 ], [ -82.189822543256696, 28.645251220745873 ], [ -82.189854162435466, 28.645204722684309 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 73rd Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187945128260026, 28.648816521545498 ], [ -82.18830351454767, 28.648816027061997 ], [ -82.188799729321261, 28.648808204843853 ], [ -82.18899276138815, 28.648839390464385 ], [ -82.189227128455087, 28.64885933030973 ], [ -82.189470661486297, 28.648867098044558 ], [ -82.189634213542988, 28.648855521598843 ], [ -82.189795434195915, 28.64881599662192 ], [ -82.189895104372894, 28.648806520237716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 73rd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.184630852646876, 28.64813237961787 ], [ -82.184625367837143, 28.6484532199323 ], [ -82.184635519089255, 28.648495865792494 ], [ -82.184685979958061, 28.648545567351775 ], [ -82.185111409290926, 28.648688347687948 ], [ -82.18528474526822, 28.648726054063406 ], [ -82.185515899239363, 28.64877202530133 ], [ -82.185662125093899, 28.64877001854051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 72nd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.184104734683714, 28.650593771292076 ], [ -82.18465162478941, 28.650578473996635 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 72nd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18465162478941, 28.650578473996635 ], [ -82.185116042494457, 28.650584080963768 ], [ -82.185721875238244, 28.65057285892378 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 317", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170063236506991, 28.679832907566176 ], [ -82.170064878853154, 28.67913130520358 ], [ -82.170063220437825, 28.678103926934913 ], [ -82.170057200830684, 28.677499070080454 ], [ -82.170055119088559, 28.676209289017368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 52nd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170063236506991, 28.679832907566176 ], [ -82.171311703685063, 28.679828004737619 ], [ -82.172635605256133, 28.679844121860693 ], [ -82.173631655785442, 28.679840075292748 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 46th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170323117678535, 28.688969583906957 ], [ -82.170360996141, 28.6890006704295 ], [ -82.170406429042544, 28.689025074759215 ], [ -82.170466979020603, 28.689040564977709 ], [ -82.170575444779885, 28.689055995102834 ], [ -82.170741913980393, 28.689071353262154 ], [ -82.170893267225736, 28.689095624457817 ], [ -82.171130428502849, 28.689159814873769 ], [ -82.171455816688493, 28.689199432486614 ], [ -82.17181902344673, 28.689232332448192 ], [ -82.17225286276954, 28.6892784820465 ], [ -82.172704316269176, 28.689300147570787 ], [ -82.173221302139623, 28.689299490274813 ], [ -82.173506275939644, 28.689299127114815 ], [ -82.173708040713464, 28.689307764785109 ], [ -82.173993051271012, 28.689329638439421 ], [ -82.174159491954441, 28.689327200315255 ], [ -82.174313333589851, 28.689331452655114 ], [ -82.174378888656861, 28.689322472581622 ], [ -82.17443433927366, 28.689304611181392 ], [ -82.174492292235286, 28.689273403817079 ], [ -82.174535109997123, 28.68923999160765 ], [ -82.17458547248043, 28.689195453014694 ], [ -82.174648362209453, 28.689099751632597 ], [ -82.174688635297215, 28.689052999909023 ], [ -82.174723929924568, 28.689046282763851 ], [ -82.17486770773435, 28.689063888327802 ], [ -82.175031636641762, 28.689068125080471 ], [ -82.175462878455107, 28.689067569523662 ], [ -82.175767991412627, 28.689047161978934 ], [ -82.176030218481699, 28.689017914095782 ], [ -82.176534583687626, 28.68901058866264 ], [ -82.176988539547352, 28.689021117257393 ], [ -82.177114653624329, 28.689032072500947 ], [ -82.177288695371246, 28.689051859420399 ], [ -82.177450130197215, 28.689071662562746 ], [ -82.17763675212116, 28.68907364411892 ], [ -82.177838510277866, 28.689077827161906 ], [ -82.177969628696232, 28.689066537180775 ], [ -82.178141082567933, 28.689046298197106 ], [ -82.178347846845355, 28.689028237844685 ], [ -82.178514279383435, 28.689021347703054 ], [ -82.178738737897376, 28.689027723849883 ], [ -82.179096833309657, 28.689020580998541 ], [ -82.179525552414333, 28.689020015819935 ], [ -82.179770203171927, 28.689037483898616 ], [ -82.180433481049207, 28.689049949259676 ], [ -82.180536877731129, 28.689049812055355 ], [ -82.180572177833085, 28.689045315813793 ], [ -82.180609983053358, 28.689031923790225 ], [ -82.180630115332548, 28.689007436737135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 46th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.180630115332548, 28.689007436737135 ], [ -82.180647722387803, 28.688980726088488 ], [ -82.180660276231876, 28.688947354844977 ], [ -82.180662713692996, 28.68889842736122 ], [ -82.180659978666725, 28.688773901551581 ], [ -82.180643095381328, 28.68775321630007 ], [ -82.180642717757451, 28.687533063968552 ], [ -82.180642553740967, 28.687437442620247 ], [ -82.180647475418837, 28.687366276645022 ], [ -82.1806574723593, 28.687312892434477 ], [ -82.180685135047881, 28.68726838081469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 607B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133171334517058, 28.654135373332274 ], [ -82.133172835991829, 28.654034739060766 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 606", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135876523270511, 28.655864424452414 ], [ -82.135999093841122, 28.655865802807099 ], [ -82.136322574441095, 28.655872523319623 ], [ -82.136831046324545, 28.655858329985609 ], [ -82.137254003449343, 28.655855888953248 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 69th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127006743234503, 28.654981637670005 ], [ -82.127597564255922, 28.65499634826277 ], [ -82.127864522001772, 28.654983016194731 ], [ -82.128082030183279, 28.654961006286364 ], [ -82.12828227358041, 28.65497172097599 ], [ -82.128316894184891, 28.654980410366043 ], [ -82.12837342603811, 28.655010368791949 ], [ -82.1284428355182, 28.655025604314666 ], [ -82.128517190018869, 28.655029907876898 ], [ -82.128646040925346, 28.655012296447513 ], [ -82.12906202458268, 28.655010819690293 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 489B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112193943055146, 28.756160253472729 ], [ -82.112204443236095, 28.755249158313461 ], [ -82.112216256564494, 28.752491344404813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 489", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10779163120371, 28.756162555963769 ], [ -82.107893619240542, 28.756143968748422 ], [ -82.108133636242016, 28.7561437784967 ], [ -82.110563813106111, 28.75614975954549 ], [ -82.112193943055146, 28.756160253472729 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106073662640156, 28.755518284141061 ], [ -82.106930243920473, 28.755840689062911 ], [ -82.107248391875515, 28.755964697914138 ], [ -82.107509504972498, 28.756057026488595 ], [ -82.10779163120371, 28.756162555963769 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 490", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106074453891395, 28.756107744118928 ], [ -82.106071817475438, 28.756070314488507 ], [ -82.10607854046593, 28.755594423199536 ], [ -82.106073662640156, 28.755518284141061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105067625118551, 28.755144698680908 ], [ -82.105850363055779, 28.755433856578779 ], [ -82.106073662640156, 28.755518284141061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 490", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105067625118551, 28.755144698680908 ], [ -82.105058693294893, 28.755817292993438 ], [ -82.105061280857484, 28.75600553039639 ], [ -82.105068517012938, 28.75603936618635 ], [ -82.105097355554918, 28.756077414476181 ], [ -82.105140581221193, 28.756100645556291 ], [ -82.105188591342241, 28.756106954502261 ], [ -82.105347009900328, 28.756113176333869 ], [ -82.106074453891395, 28.756107744118928 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 491 South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105071955541064, 28.753466664757909 ], [ -82.105803487256139, 28.753416381269115 ], [ -82.105919544819329, 28.753412117017135 ], [ -82.105975701625695, 28.753423002224629 ], [ -82.106025159001575, 28.753446212849372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 491 South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104055625915038, 28.753434396086195 ], [ -82.104964671864636, 28.753438986740576 ], [ -82.105027679169609, 28.753444226686501 ], [ -82.105071955541064, 28.753466664757909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 491", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104071518107077, 28.754338568231955 ], [ -82.104080335944772, 28.754153495496976 ], [ -82.104080016236551, 28.753828305397704 ], [ -82.104055625915038, 28.753434396086195 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104579163394448, 28.754962122468378 ], [ -82.105067625118551, 28.755144698680908 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104579163394448, 28.754962122468378 ], [ -82.104441684488208, 28.755496278208035 ], [ -82.1043641736252, 28.755996019547549 ], [ -82.104385512213241, 28.756337054357008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104050931743515, 28.754758952401421 ], [ -82.104579163394448, 28.754962122468378 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 121st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976634464178673, 28.578517901446109 ], [ -81.976552683062067, 28.578574598596816 ], [ -81.975627351605496, 28.57924934916436 ], [ -81.975434608664258, 28.579404692269584 ], [ -81.975365567669144, 28.579456133979207 ], [ -81.97527658561404, 28.579503509603597 ], [ -81.975206015867144, 28.579534640059499 ], [ -81.974888458995082, 28.57962801134256 ], [ -81.974480389717513, 28.579743028122284 ], [ -81.97398487798884, 28.579881048208708 ], [ -81.973857545294493, 28.579924352167307 ], [ -81.973806917864081, 28.579947361078403 ], [ -81.97377163027582, 28.579970374787049 ], [ -81.97374400589058, 28.580020470273539 ], [ -81.973734788794161, 28.580071921988747 ], [ -81.973735706573635, 28.580134544021377 ], [ -81.973746472833653, 28.580188463064964 ], [ -81.97377519315198, 28.580286787329531 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 773", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980278573449922, 28.578322178498173 ], [ -81.98024411168474, 28.578153698283593 ], [ -81.980232631440543, 28.578058295209445 ], [ -81.980225821766297, 28.577585348794752 ], [ -81.980246639809948, 28.57692566514579 ], [ -81.980246686769704, 28.576673969395497 ], [ -81.980265737936662, 28.576607575832842 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 43rd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030175800715753, 28.562530674253846 ], [ -82.030102648734683, 28.562411506215366 ], [ -82.030093013660505, 28.562231672282994 ], [ -82.030085777893476, 28.562075109365558 ], [ -82.030080953139731, 28.561965092609697 ], [ -82.030083318034556, 28.561852957395924 ], [ -82.030078859233214, 28.561699899490485 ], [ -82.03009042693823, 28.561563102037443 ], [ -82.030104793486572, 28.56134524701152 ], [ -82.030115891659804, 28.561131797942426 ], [ -82.030115832830376, 28.560924920362574 ], [ -82.030082264096251, 28.560596549811343 ], [ -82.030071035284607, 28.560353551844525 ], [ -82.030070961716831, 28.560090851413371 ], [ -82.030061176073261, 28.559826094808631 ], [ -82.030063504488254, 28.559589132404287 ], [ -82.030070626273712, 28.559352170763994 ], [ -82.030068193365253, 28.55922099519946 ], [ -82.030058589446725, 28.559153293216905 ], [ -82.030039402762071, 28.559106752446663 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 469", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961793165842536, 28.594625193552879 ], [ -81.96135151690973, 28.593009517850319 ], [ -81.961297753941182, 28.592809256997878 ], [ -81.961243993441357, 28.592605600599903 ], [ -81.961201758801778, 28.592425704406601 ], [ -81.961163364445852, 28.5922593868703 ], [ -81.96110961490912, 28.592021790553233 ], [ -81.961063553101823, 28.591794377578935 ], [ -81.961017507742284, 28.59152284358716 ], [ -81.960971467395368, 28.591241126620751 ], [ -81.960925429006807, 28.59094922757992 ], [ -81.960894772943817, 28.590660728509569 ], [ -81.960841074810361, 28.590290765414796 ], [ -81.960802766002018, 28.589897048053732 ], [ -81.96072611475951, 28.589208040908741 ], [ -81.960599633977623, 28.588087980066142 ], [ -81.960545967263727, 28.587639954018986 ], [ -81.959831583639499, 28.581299426481824 ], [ -81.959765533778253, 28.580716994364408 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 760", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970319627981112, 28.591481102297944 ], [ -81.969938927819499, 28.591484412004448 ], [ -81.969277524007325, 28.591450320288263 ], [ -81.968481528070171, 28.591419590181097 ], [ -81.968320018834035, 28.591422945815044 ], [ -81.96817773403707, 28.591436488771038 ], [ -81.96803929019822, 28.591463608254625 ], [ -81.967904682120931, 28.591521273751582 ], [ -81.967823911433243, 28.591572164618803 ], [ -81.967689295805783, 28.591663770654417 ], [ -81.967581592580018, 28.591762171397249 ], [ -81.967477729027806, 28.591880936173833 ], [ -81.967377708264081, 28.592006490135169 ], [ -81.967285374326309, 28.592145622558348 ], [ -81.967200728261261, 28.592294938841913 ], [ -81.967123769054879, 28.592454438096979 ], [ -81.967069903533016, 28.592552852515031 ], [ -81.96699680598114, 28.592661440613412 ], [ -81.966892927125869, 28.592820934905884 ], [ -81.96680444231194, 28.592943097561932 ], [ -81.966687096790366, 28.59308110085097 ], [ -81.966563770567461, 28.593211023863862 ], [ -81.966458561607737, 28.593324792127824 ], [ -81.96621973262485, 28.593553872381911 ], [ -81.965892772623647, 28.593838887752987 ], [ -81.965688907918491, 28.593998354737099 ], [ -81.965592751315299, 28.594056027750302 ], [ -81.965511982007101, 28.594093340566296 ], [ -81.965415834007615, 28.594127256559759 ], [ -81.965319688171547, 28.594154383254121 ], [ -81.965215844276642, 28.59419847915855 ], [ -81.965123535881901, 28.594242577079726 ], [ -81.965054301659649, 28.59428668094904 ], [ -81.964965828105335, 28.594364720503094 ], [ -81.964873510240579, 28.594442758090079 ], [ -81.964796578600044, 28.594507224797802 ], [ -81.964704260705332, 28.594578474841807 ], [ -81.964627333401566, 28.594629363893972 ], [ -81.964515795031929, 28.594680245560202 ], [ -81.964396570816334, 28.594714153823237 ], [ -81.964269662849247, 28.594731089565968 ], [ -81.964138912183046, 28.59473445021332 ], [ -81.963981245148702, 28.594734407094474 ], [ -81.963865879823103, 28.59472758685758 ], [ -81.963692833395456, 28.594717359025651 ], [ -81.963166010821567, 28.594669699922324 ], [ -81.962046983096883, 28.594594720295465 ], [ -81.961793165842536, 28.594625193552879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 112th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9801819224692, 28.591550118111613 ], [ -81.975457894246674, 28.591486079821358 ], [ -81.973646539852211, 28.591483563842583 ], [ -81.973112494297908, 28.591457391525097 ], [ -81.972671953627056, 28.591492056909356 ], [ -81.971826056444343, 28.591521185973725 ], [ -81.97150697631227, 28.591503919752657 ], [ -81.971022258150569, 28.591514565319432 ], [ -81.970510761873911, 28.591471456963401 ], [ -81.970319627981112, 28.591481102297944 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 469", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966127592544908, 28.618142941810266 ], [ -81.965471602713606, 28.616684236405508 ], [ -81.965081955719199, 28.615824463284437 ], [ -81.964827594996095, 28.615263189821576 ], [ -81.964548572078598, 28.614647493672464 ], [ -81.964381905404892, 28.61427972409307 ], [ -81.964292221399859, 28.614081822374299 ], [ -81.964227402322607, 28.613912227328733 ], [ -81.96416247712493, 28.613709385474323 ], [ -81.964109589453102, 28.61350786421789 ], [ -81.964070488552352, 28.613320591878509 ], [ -81.964032081514318, 28.613062932611193 ], [ -81.964010973592067, 28.612801733565341 ], [ -81.964005002238807, 28.612521091312747 ], [ -81.963958053737471, 28.611124705104675 ], [ -81.963915603932307, 28.60986211084467 ], [ -81.963892177147827, 28.609243479194738 ], [ -81.963807253794641, 28.606796453218511 ], [ -81.963718230725206, 28.604407086653691 ], [ -81.963673787393518, 28.603019598245634 ], [ -81.963657581152177, 28.602644795195381 ], [ -81.963654058094349, 28.60253957030833 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.236170734444755, 28.717810442532276 ], [ -82.236260539946969, 28.717900299322928 ], [ -82.237290270937905, 28.718963953751224 ], [ -82.238226022785838, 28.719928567293366 ], [ -82.238666752162885, 28.720383367769809 ], [ -82.240208008695546, 28.721980651146637 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 330", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.233513297706509, 28.722159980978105 ], [ -82.233559094540112, 28.722147183065264 ], [ -82.234417436233286, 28.721916471446267 ], [ -82.235560402890812, 28.721584410068367 ], [ -82.236192420413516, 28.721390424339873 ], [ -82.236500921070942, 28.721309096939102 ], [ -82.236644170057076, 28.721276875331874 ], [ -82.236833433963113, 28.721241822128974 ], [ -82.237024277086704, 28.721215362330689 ], [ -82.237207800332854, 28.721180294264052 ], [ -82.237474579510391, 28.721169709235934 ], [ -82.237635493871579, 28.721167594151467 ], [ -82.237821815555861, 28.721176063729107 ], [ -82.238133058765683, 28.721207824901732 ], [ -82.238670851824551, 28.721351804319934 ], [ -82.239011735986423, 28.721500017414673 ], [ -82.239248873897566, 28.72167787153748 ], [ -82.239716795251098, 28.722198730047698 ], [ -82.239788783006034, 28.722222019979409 ], [ -82.239875592107495, 28.72220508252127 ], [ -82.240013216785101, 28.72211827498624 ], [ -82.240208008695546, 28.721980651146637 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.240208008695546, 28.721980651146637 ], [ -82.240266520778576, 28.722042583159023 ], [ -82.240625554440868, 28.72241867308631 ], [ -82.24090299737928, 28.722712385875489 ], [ -82.241303213380647, 28.723118537515333 ], [ -82.241632887041504, 28.723468125138663 ], [ -82.241727540747092, 28.723565547257664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 330", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.223555945319262, 28.727112661719541 ], [ -82.223993350522548, 28.726865361459922 ], [ -82.224886354245896, 28.726380759479785 ], [ -82.225820937003178, 28.725851994987202 ], [ -82.22626846750012, 28.725606932642723 ], [ -82.227569399731451, 28.724886497256335 ], [ -82.228418461007706, 28.724333976342113 ], [ -82.230141896059308, 28.723202937422066 ], [ -82.230170909458579, 28.723183638093055 ], [ -82.230275097263274, 28.723120547897853 ], [ -82.230384568044826, 28.723065011924806 ], [ -82.230498536704928, 28.723017033298682 ], [ -82.230616425394473, 28.722977297852434 ], [ -82.233513297706509, 28.722159980978105 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 575", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.236170734444755, 28.717810442532276 ], [ -82.236220564544197, 28.717729528463259 ], [ -82.236284927794358, 28.717624709106811 ], [ -82.236652215536125, 28.71693520085098 ], [ -82.23685272204645, 28.716571228563225 ], [ -82.237375536078275, 28.715615631485548 ], [ -82.237865403334396, 28.714695016239222 ], [ -82.238766214275813, 28.713002360196459 ], [ -82.238956925057664, 28.712658571498707 ], [ -82.239085076293435, 28.712390568761805 ], [ -82.239206611973785, 28.712116754855675 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 30th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.239206611973785, 28.712116754855675 ], [ -82.239361818040166, 28.712131034923569 ], [ -82.240078154942367, 28.712086111334553 ], [ -82.240741719931322, 28.712064561087239 ], [ -82.241444804635151, 28.711999280197148 ], [ -82.242177565447832, 28.711919387347141 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 575", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.239206611973785, 28.712116754855675 ], [ -82.239259166200483, 28.711997327256523 ], [ -82.239331409151205, 28.711825473315876 ], [ -82.239374043290681, 28.711700241360258 ], [ -82.239459320962013, 28.71145268738027 ], [ -82.23953798897729, 28.711202235005146 ], [ -82.240006519974742, 28.709629669662625 ], [ -82.240088432971078, 28.709355926705292 ], [ -82.240140924025056, 28.709210301664029 ], [ -82.240196763207891, 28.709085045153142 ], [ -82.24025916487615, 28.708942314329949 ], [ -82.240338075142134, 28.708799555160329 ], [ -82.240416989790958, 28.708659703222807 ], [ -82.240581516147117, 28.708420741707311 ], [ -82.241262824141927, 28.707508505908596 ], [ -82.242118557437252, 28.706363106428132 ], [ -82.242441079410028, 28.705923025068852 ], [ -82.242921606592873, 28.705284739117868 ], [ -82.243356049670254, 28.704707655671172 ], [ -82.243997836382064, 28.703856600974898 ], [ -82.244106415299456, 28.703699231729125 ], [ -82.244175491701839, 28.703591415103709 ], [ -82.244208302561503, 28.703530345426408 ], [ -82.24425439165276, 28.703448651787873 ], [ -82.244290510077164, 28.703364178863382 ], [ -82.244323232266737, 28.703238963058745 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16187500604353, 28.654192613098754 ], [ -82.16215612490069, 28.653928951581353 ], [ -82.163109784499497, 28.653004232811419 ], [ -82.164670935884871, 28.651504321290862 ], [ -82.16501240006086, 28.651175581179437 ], [ -82.165421772784185, 28.650780094200972 ], [ -82.166123558848128, 28.650109254289223 ], [ -82.166944190189056, 28.649326601221624 ], [ -82.167093225162247, 28.649186422212487 ], [ -82.167255454204579, 28.649026226598938 ], [ -82.16739127642758, 28.648894395638155 ], [ -82.167574282620421, 28.64873084087489 ], [ -82.16770257866105, 28.64861901819221 ], [ -82.167859197383919, 28.648495495102146 ], [ -82.168025275077483, 28.648381959825276 ], [ -82.168183813225284, 28.648278432420209 ], [ -82.168331031267144, 28.648184919391785 ], [ -82.168482033568566, 28.648096401354142 ], [ -82.168674577418443, 28.647991165585861 ], [ -82.168793505984937, 28.64792935270404 ], [ -82.16886335996017, 28.647897599583604 ], [ -82.168999288192168, 28.647834099730179 ], [ -82.169140870751704, 28.647762258758693 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 39th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16915016641633, 28.646932057321923 ], [ -82.169138057610624, 28.646744576321218 ], [ -82.169131545724085, 28.646658961004789 ], [ -82.169102266784321, 28.646515458534594 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.240359451252033, 28.640064831362039 ], [ -82.240724977528515, 28.640064184793722 ], [ -82.24112925594109, 28.640080817688894 ], [ -82.241551089472679, 28.640102521791125 ], [ -82.241976595038309, 28.64014025972315 ], [ -82.242388208865137, 28.640181961568825 ], [ -82.24275901314104, 28.640228391964325 ], [ -82.243183219566859, 28.640285190207599 ], [ -82.243486006582131, 28.640333237203539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 79th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.245813395002926, 28.64668320054427 ], [ -82.245878013801587, 28.646572711335274 ], [ -82.246044351656494, 28.646363929281364 ], [ -82.246261555701466, 28.646110089878221 ], [ -82.246377135872436, 28.645995420544224 ], [ -82.24654366187454, 28.645868393334567 ], [ -82.246663810211913, 28.645725100711584 ], [ -82.246760874282529, 28.645618639768767 ], [ -82.246830201543972, 28.64554084477588 ], [ -82.246899005054971, 28.645480995379181 ], [ -82.246978027218788, 28.645344357860395 ], [ -82.24706069005083, 28.645025354130837 ], [ -82.247176145707272, 28.644857542373146 ], [ -82.247287033493876, 28.644718352682727 ], [ -82.247346985213753, 28.644595608544339 ], [ -82.247355736802433, 28.644374849647416 ], [ -82.247493420180177, 28.643806385040964 ], [ -82.247585847131305, 28.643699932830799 ], [ -82.247728814580583, 28.643409433569531 ], [ -82.247885788362197, 28.643163875450757 ], [ -82.248061239684802, 28.642893756230951 ], [ -82.248098031761785, 28.642775140651164 ], [ -82.248097761593257, 28.642660681162152 ], [ -82.24796749771312, 28.642440174860646 ], [ -82.246928591324476, 28.642041455159564 ], [ -82.246594653787653, 28.641911249130064 ], [ -82.246501760448723, 28.641817397207696 ], [ -82.246469094233376, 28.641719346688941 ], [ -82.24644567684166, 28.641613105165039 ], [ -82.246380508004137, 28.641486499653766 ], [ -82.246269041396857, 28.641376329142425 ], [ -82.246023204694239, 28.641270491100265 ], [ -82.245777425606917, 28.641189177008481 ], [ -82.24558990731127, 28.641191842041295 ], [ -82.245406605626286, 28.641214520165704 ], [ -82.245211461642029, 28.641254407937424 ], [ -82.244973579305821, 28.641266869328135 ], [ -82.244815729036858, 28.641257182844157 ], [ -82.244699245977813, 28.641273894379854 ], [ -82.244500165992449, 28.641381859300036 ], [ -82.244193647416608, 28.641541584336032 ], [ -82.244025601291412, 28.641588985991305 ], [ -82.243855486087639, 28.641585164811076 ], [ -82.243738257716913, 28.641531400150761 ], [ -82.243601747540353, 28.641397223347443 ], [ -82.243485720479171, 28.641302309933518 ], [ -82.243442393593298, 28.641107339226611 ], [ -82.243417842231963, 28.640931144020783 ], [ -82.243399926804457, 28.640846630199285 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.243486006582131, 28.640333237203539 ], [ -82.243715168616177, 28.640371319295252 ], [ -82.244008005376259, 28.640438071174341 ], [ -82.244411522874643, 28.640523682598463 ], [ -82.244826927956353, 28.640619734866789 ], [ -82.245239390910058, 28.640726258225332 ], [ -82.24565186890888, 28.640838010217504 ], [ -82.246040627463827, 28.640952423342934 ], [ -82.246402685065775, 28.641061648401518 ], [ -82.247083693800406, 28.641270272643954 ], [ -82.248800104443106, 28.641813211004017 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 663", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.24684229692825, 28.65449557540159 ], [ -82.246834615364861, 28.653700069904819 ], [ -82.246803180674306, 28.652699314447801 ], [ -82.246795692825458, 28.651985927758091 ], [ -82.24677038971771, 28.651118601295469 ], [ -82.24677314880465, 28.651054442323034 ], [ -82.246784672486896, 28.651005663019372 ], [ -82.246802036499048, 28.650967138034659 ], [ -82.246828147087896, 28.650936296761653 ], [ -82.246865910358437, 28.650913131211055 ], [ -82.246918251608321, 28.650902772130845 ], [ -82.246967706676742, 28.650902682294667 ], [ -82.24701716878009, 28.650905159560764 ], [ -82.247188808462553, 28.650904846668567 ], [ -82.247441903188715, 28.65090438622088 ], [ -82.248771352466633, 28.650891695807893 ], [ -82.248817855964475, 28.650873647083337 ], [ -82.248855590547294, 28.650837651683741 ], [ -82.248875850841671, 28.650793988672099 ], [ -82.248881548092115, 28.650742654530724 ], [ -82.248887178728438, 28.65066309287544 ], [ -82.248870708399664, 28.649847074250914 ], [ -82.248865807273745, 28.649002806704406 ], [ -82.248833530779294, 28.647653051434034 ], [ -82.248832641960703, 28.647275821481472 ], [ -82.248874800950233, 28.646649593603808 ], [ -82.24887647497556, 28.646126088170366 ], [ -82.248870312053938, 28.645972127310166 ], [ -82.248828579151237, 28.644319575949439 ], [ -82.248809294218546, 28.642959430863343 ], [ -82.248787091342578, 28.641992115944852 ], [ -82.248800104443106, 28.641813211004017 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.248800104443106, 28.641813211004017 ], [ -82.248995815157798, 28.641883164299077 ], [ -82.249745187368717, 28.642117249960453 ], [ -82.25119407455675, 28.642590394404102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 659", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.251269939373046, 28.64720544939977 ], [ -82.251254636470023, 28.646616824526284 ], [ -82.251196974860875, 28.643808571094649 ], [ -82.25119407455675, 28.642590394404102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 645", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252792359510678, 28.636185718073023 ], [ -82.252789328251595, 28.636399739136522 ], [ -82.252743852631312, 28.636591049370942 ], [ -82.252633301469132, 28.636863902414181 ], [ -82.252799520490854, 28.636824699139101 ], [ -82.25286616602294, 28.636818425923739 ], [ -82.252917913268604, 28.636814504975927 ], [ -82.2529696608714, 28.636813721420019 ], [ -82.253037873145104, 28.636812936786235 ], [ -82.253097528854298, 28.636815135018782 ], [ -82.253182949562344, 28.636821255211302 ], [ -82.253249389653291, 28.636827410026669 ], [ -82.253337207308434, 28.636843989083729 ], [ -82.253387052744671, 28.636854359967696 ], [ -82.253446411595874, 28.636875179149239 ], [ -82.253508134270874, 28.6368918070437 ], [ -82.253565128340981, 28.636916815630908 ], [ -82.253631625890989, 28.63694599317936 ], [ -82.253698147611018, 28.636985635006209 ], [ -82.253764665369872, 28.637023183394628 ], [ -82.253838333865232, 28.637075369497378 ], [ -82.253897757367923, 28.637123397308923 ], [ -82.25394057716754, 28.637171454497526 ], [ -82.253990612190961, 28.637261358240039 ], [ -82.254007328836281, 28.637307373769818 ], [ -82.254028905810969, 28.637351285843863 ], [ -82.254052680799816, 28.637422402730571 ], [ -82.254066996460395, 28.637455864095664 ], [ -82.254081336302121, 28.637499789769294 ], [ -82.254100409730739, 28.637539520615761 ], [ -82.254124234936597, 28.637581335031779 ], [ -82.254152819964645, 28.637629419824652 ], [ -82.254181383833526, 28.637669133707874 ], [ -82.25421233065893, 28.637713028121311 ], [ -82.25424562412617, 28.637746451951354 ], [ -82.254288409038992, 28.637779859713685 ], [ -82.254341825097072, 28.637795979503526 ], [ -82.254434551543582, 28.637818697097423 ], [ -82.254575402416634, 28.637827501118839 ], [ -82.254889024495114, 28.63781338654589 ], [ -82.255183615583093, 28.637789161362402 ], [ -82.255771086005723, 28.637694204274666 ], [ -82.256291340589769, 28.63767783542129 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 643A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249623066853175, 28.636256489530716 ], [ -82.250133117489725, 28.636253457250675 ], [ -82.250180539906509, 28.636242905084689 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 640", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.24320701381815, 28.631634237018961 ], [ -82.244196329048322, 28.631668044233034 ], [ -82.245553299144234, 28.631682346487491 ], [ -82.246877058293549, 28.63169669454291 ], [ -82.247579235380158, 28.63169123213229 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 642 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.243239962999667, 28.632548815554092 ], [ -82.243220929913633, 28.63252582653945 ], [ -82.243201869945509, 28.632490278884372 ], [ -82.243192298981015, 28.632454716063684 ], [ -82.243192202539092, 28.632412856957711 ], [ -82.243192067518706, 28.632354253306577 ], [ -82.243198548226715, 28.632077966862312 ], [ -82.24320701381815, 28.631634237018961 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 646A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252602425107014, 28.632902700229536 ], [ -82.252490412880562, 28.632687330335504 ], [ -82.252447551545913, 28.6326204347003 ], [ -82.252392629460203, 28.632469842152965 ], [ -82.252342397957733, 28.63229621777355 ], [ -82.252255689471212, 28.631750109494845 ], [ -82.252240992106863, 28.631555488179075 ], [ -82.252269073404079, 28.631394277120648 ], [ -82.252305171952187, 28.631328569443625 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 641 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.24869209955061, 28.632564352742833 ], [ -82.248639186927889, 28.632423738645613 ], [ -82.248645349948745, 28.631848876591203 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 639", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.248645349948745, 28.631848876591203 ], [ -82.248065686302937, 28.631834546779235 ], [ -82.247932957682394, 28.631799421840228 ], [ -82.247790524531894, 28.631757822159837 ], [ -82.247716925945312, 28.631732840674562 ], [ -82.247579235380158, 28.63169123213229 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 639", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.247579235380158, 28.63169123213229 ], [ -82.247218174185718, 28.631486774889694 ], [ -82.247004901905314, 28.631332803726476 ], [ -82.246973460931983, 28.631306536131685 ], [ -82.246552908713412, 28.630791540336389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 642 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.24320701381815, 28.631634237018961 ], [ -82.243207955371759, 28.631012618181813 ], [ -82.243212797493342, 28.630797554386458 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 638", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.243212797493342, 28.630797554386458 ], [ -82.244581569404829, 28.630790914767495 ], [ -82.245222072972908, 28.630789760514457 ], [ -82.246552908713412, 28.630791540336389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 642 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.243212797493342, 28.630797554386458 ], [ -82.243210694025976, 28.629885014769545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 639", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.246552908713412, 28.630791540336389 ], [ -82.245893736963183, 28.629907399433879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 636", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.243210694025976, 28.629885014769545 ], [ -82.243744457654074, 28.629890336792744 ], [ -82.245151202930174, 28.629896182098541 ], [ -82.245893736963183, 28.629907399433879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980278573449922, 28.578322178498173 ], [ -81.97993433966262, 28.578429633324433 ], [ -81.979508909437726, 28.57856150579525 ], [ -81.977195966502961, 28.579272512727428 ], [ -81.976897729117937, 28.579367607375723 ], [ -81.97653840592902, 28.579472207671834 ], [ -81.975977859768506, 28.579646544783117 ], [ -81.975291548802929, 28.579855742827156 ], [ -81.97471662498134, 28.580033242901017 ], [ -81.974263873119156, 28.580166362429743 ], [ -81.973990786254944, 28.580236084285229 ], [ -81.97377519315198, 28.580286787329531 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 575", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.244323232266737, 28.703238963058745 ], [ -82.244339528624593, 28.703148703981835 ], [ -82.244345983104793, 28.703084657997746 ], [ -82.244358985634705, 28.702997316644883 ], [ -82.244365337700799, 28.702889611863679 ], [ -82.244373573051675, 28.701743973059973 ], [ -82.244361594279496, 28.69999761507195 ], [ -82.24436520462568, 28.699278100852862 ], [ -82.244352372010255, 28.69830015319069 ], [ -82.244354456868663, 28.697891128082986 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 624", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.244354456868663, 28.697891128082986 ], [ -82.24388487164768, 28.697891474955565 ], [ -82.243650502260778, 28.697891895612191 ], [ -82.243196420411579, 28.6977337504091 ], [ -82.242868853925103, 28.697713140934912 ], [ -82.242570013341194, 28.697707439921736 ], [ -82.242249800231576, 28.697679806550951 ], [ -82.242150595779435, 28.697658788735282 ], [ -82.242045356727473, 28.697627183788711 ], [ -82.241976173212834, 28.697595515430645 ], [ -82.241900953125239, 28.697550610748255 ], [ -82.241277918404137, 28.697090736194102 ], [ -82.240757236267385, 28.696712807912895 ], [ -82.240426143416173, 28.69646170869586 ], [ -82.240340822917375, 28.696379046049323 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 624", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.240340822917375, 28.696379046049323 ], [ -82.239367033254183, 28.69548776810899 ], [ -82.239246282809901, 28.695381724759951 ], [ -82.239040750532752, 28.695198965898381 ], [ -82.238386953261326, 28.694641709574167 ], [ -82.238345806592847, 28.694587522210838 ], [ -82.23830202485523, 28.694501690373052 ], [ -82.238278775527689, 28.694424865615431 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 81st Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.238278775527689, 28.694424865615431 ], [ -82.238255562044472, 28.694363864881311 ], [ -82.238237414142588, 28.694275727728797 ], [ -82.238234681859353, 28.69420112820448 ], [ -82.238234533506201, 28.694135566356898 ], [ -82.238239471157385, 28.694051910267547 ], [ -82.238239302341341, 28.693977306244914 ], [ -82.238200253256807, 28.693802535512816 ], [ -82.238171246321357, 28.693648571941935 ], [ -82.238083981785792, 28.693420792825602 ], [ -82.238053246609567, 28.693335577772029 ], [ -82.23799659526621, 28.693227159684756 ], [ -82.237955342062804, 28.693125498287522 ], [ -82.237908926300804, 28.693008019115886 ], [ -82.237867714127404, 28.692924442940551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 81st Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.237867714127404, 28.692924442940551 ], [ -82.237746684319873, 28.692691796899172 ], [ -82.237622551813601, 28.692473435480387 ], [ -82.237495348464819, 28.69225672875999 ], [ -82.237390441277924, 28.691985320019622 ], [ -82.23720005752476, 28.69158617193472 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 44th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.237867714127404, 28.692924442940551 ], [ -82.237862249146332, 28.692775242040181 ], [ -82.237844052834305, 28.692664497112428 ], [ -82.237854098185807, 28.692571788961146 ], [ -82.237869317360108, 28.692499418303555 ], [ -82.237907679875647, 28.692456396782976 ], [ -82.237964024136943, 28.692429168751218 ], [ -82.238015261966737, 28.692410993659596 ], [ -82.238092142188421, 28.692395033032554 ], [ -82.238204960431403, 28.692397095575952 ], [ -82.238448495838341, 28.692380843310378 ], [ -82.238566415305272, 28.692371593156885 ], [ -82.238630466009894, 28.692351134100434 ], [ -82.238691918414688, 28.692314853678809 ], [ -82.238894118765387, 28.69216076710283 ], [ -82.239193514522142, 28.691904774530471 ], [ -82.239446822069041, 28.691675991882196 ], [ -82.239615729856993, 28.691540047327344 ], [ -82.239766705798985, 28.691410919706499 ], [ -82.23987677215618, 28.691331599489533 ], [ -82.24033510548395, 28.691066279609871 ], [ -82.240465743180764, 28.691014050958984 ], [ -82.240524717548126, 28.691016206877869 ], [ -82.240570923555779, 28.691040994073809 ], [ -82.24060177818977, 28.691079372215004 ], [ -82.240604466583108, 28.691133625240212 ], [ -82.240557044144808, 28.691698897565775 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 575", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.244354456868663, 28.697891128082986 ], [ -82.24434947327542, 28.697564110878158 ], [ -82.244348835258464, 28.697289244760178 ], [ -82.244351044617034, 28.696877853470138 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 624A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.244351044617034, 28.696877853470138 ], [ -82.244507033875493, 28.696873466254061 ], [ -82.244759090723448, 28.696843015341322 ], [ -82.245150457469308, 28.696801055161426 ], [ -82.245443130631614, 28.696738645084139 ], [ -82.245973152660298, 28.696560825900399 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 624A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.245973152660298, 28.696560825900399 ], [ -82.24648730680137, 28.69638744761879 ], [ -82.247413238122661, 28.696071664501829 ], [ -82.247583086599903, 28.69602208439963 ], [ -82.247645904158432, 28.696001440161432 ], [ -82.247697082769236, 28.695982869912296 ], [ -82.247730256629481, 28.695970942020772 ], [ -82.247801734250629, 28.695931356539042 ], [ -82.247843557788144, 28.695894328189052 ], [ -82.247871395938503, 28.695851163370619 ], [ -82.247885196579347, 28.695779286003415 ], [ -82.247868747768365, 28.695715675006898 ], [ -82.2477495952906, 28.695541393487449 ], [ -82.247275282371419, 28.694831940861089 ], [ -82.247237910016878, 28.694780684614837 ], [ -82.24720752684793, 28.694731469329799 ], [ -82.247177206369557, 28.694708943814302 ], [ -82.247139911215527, 28.694690535662936 ], [ -82.247084016023422, 28.694684477183309 ], [ -82.247037461452635, 28.694688668352871 ], [ -82.246951421251723, 28.694733988929684 ], [ -82.246903974022629, 28.694778209745447 ], [ -82.246863139516023, 28.69481626737128 ], [ -82.246565745880872, 28.695083689348944 ], [ -82.246124259829429, 28.695464283476909 ], [ -82.246063880771842, 28.695532139486318 ], [ -82.246022091358782, 28.695583540372734 ], [ -82.246003538286317, 28.695614365839479 ], [ -82.245992005927832, 28.695661605425062 ], [ -82.245980623278683, 28.695772484858292 ], [ -82.245974463903551, 28.696125601263091 ], [ -82.245973152660298, 28.696560825900399 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 575", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.244351044617034, 28.696877853470138 ], [ -82.244349700856745, 28.696298926546024 ], [ -82.244345720666601, 28.695054084359938 ], [ -82.244332506361786, 28.694062924012663 ], [ -82.244340963649307, 28.693004360486057 ], [ -82.244355246350821, 28.692888857818076 ], [ -82.244384044511008, 28.692757290186172 ], [ -82.244416553952831, 28.692657790851303 ], [ -82.244456309381405, 28.692545450097363 ], [ -82.244492457630329, 28.69244594599742 ], [ -82.244543119171226, 28.692330376912235 ], [ -82.24463007766208, 28.692179457881164 ], [ -82.244789546734239, 28.691922553551382 ], [ -82.245275215515093, 28.691148617610686 ], [ -82.245565183930921, 28.690695804479567 ], [ -82.246097992726149, 28.689860833532038 ], [ -82.246203149006334, 28.689716296021647 ], [ -82.246297393604863, 28.689571776408719 ], [ -82.246409796962951, 28.689414395414104 ], [ -82.246514997425734, 28.689289103295298 ], [ -82.246656522001629, 28.689141291648021 ], [ -82.246776292197538, 28.689022388406993 ], [ -82.246925151795708, 28.688900224411832 ], [ -82.247760335579656, 28.688263575863534 ], [ -82.248929593798877, 28.687379314676569 ], [ -82.249786547178061, 28.686729782600224 ], [ -82.249989882934244, 28.686572229550407 ], [ -82.250251266878124, 28.686350413414985 ], [ -82.250363734207397, 28.686225101687739 ], [ -82.250436257688051, 28.686128736661548 ], [ -82.250519587188265, 28.685987440927892 ], [ -82.250581121080444, 28.685859019413886 ], [ -82.250624451306024, 28.685724214336695 ], [ -82.250649662929476, 28.685618312847268 ], [ -82.25066755239105, 28.685493179227461 ], [ -82.250678181803181, 28.685374472830262 ], [ -82.250677892707728, 28.685252579846264 ], [ -82.250659330474392, 28.685095436219637 ], [ -82.250625944047115, 28.684822842137237 ], [ -82.250537163012311, 28.684200709145912 ], [ -82.250478546060606, 28.683749465896938 ], [ -82.25047848561681, 28.683749004920031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 55th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.242617337717746, 28.676426096902539 ], [ -82.242832624904395, 28.676407749678361 ], [ -82.243309713681015, 28.676353005565193 ], [ -82.243958579118825, 28.676339010107014 ], [ -82.244424116739808, 28.676322777934914 ], [ -82.244816986676739, 28.67634003418701 ], [ -82.24508183578412, 28.676362651816152 ], [ -82.245660935553204, 28.676379568676712 ], [ -82.246024629123966, 28.676363515099514 ], [ -82.246533851787532, 28.676362591186283 ], [ -82.247226404081985, 28.676366466145204 ], [ -82.247761436827886, 28.67635971755357 ], [ -82.248787169774999, 28.676364257857589 ], [ -82.249278220743079, 28.67636977425245 ], [ -82.249496411365755, 28.676350126194581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 55th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249496411365755, 28.676350126194581 ], [ -82.249758349002335, 28.676372098462419 ], [ -82.251278479036642, 28.676356498249543 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 58th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249008851011197, 28.670894677753889 ], [ -82.249151156786823, 28.670900899228041 ], [ -82.249218371975815, 28.670904558528406 ], [ -82.249378368828928, 28.670888868550087 ], [ -82.249573287473794, 28.67087567956694 ], [ -82.249742091456199, 28.670893332978942 ], [ -82.250108723967756, 28.670897788834839 ], [ -82.250568408126625, 28.67087897272928 ], [ -82.251028115540734, 28.670870421716604 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 575", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249008851011197, 28.670894677753889 ], [ -82.249011116516712, 28.669759908452786 ], [ -82.249018903624233, 28.669115269467106 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 575", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249018903624233, 28.669115269467106 ], [ -82.249017796670898, 28.668647199134181 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 622C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249017796670898, 28.668647199134181 ], [ -82.249755678586496, 28.66864584494104 ], [ -82.250239886851361, 28.66866205572359 ], [ -82.251815671744168, 28.668639967126094 ], [ -82.251819110318948, 28.668130831504836 ], [ -82.251818370691524, 28.667820836839105 ], [ -82.251776263897582, 28.667732639623452 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 575", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249017796670898, 28.668647199134181 ], [ -82.249015681900929, 28.667752119581792 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 622", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249015681900929, 28.667752119581792 ], [ -82.249395118335741, 28.667761687739002 ], [ -82.249579001292446, 28.667759297340137 ], [ -82.249734934380143, 28.667750798761347 ], [ -82.250209795576339, 28.667756081063814 ], [ -82.251031463831993, 28.667756608385492 ], [ -82.251317785512143, 28.667764287737597 ], [ -82.25139459892597, 28.667764145613866 ], [ -82.251487705811883, 28.667763972191054 ], [ -82.251597114946833, 28.667767873016526 ], [ -82.251659962379662, 28.667767756770957 ], [ -82.251699541613789, 28.667771788577404 ], [ -82.251736756175717, 28.66775940058811 ], [ -82.251776263897582, 28.667732639623452 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 622A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252289781147255, 28.667358046271044 ], [ -82.252288561462862, 28.666848917454708 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 622", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.251776263897582, 28.667732639623452 ], [ -82.251825050085728, 28.667693541840077 ], [ -82.251865455434668, 28.667648981636059 ], [ -82.251907219387675, 28.667591148330665 ], [ -82.251958541263932, 28.667536046570063 ], [ -82.25201708746269, 28.667487118573899 ], [ -82.252080477791125, 28.667436447230319 ], [ -82.252154865243696, 28.667395248720766 ], [ -82.25222928989804, 28.667370475197629 ], [ -82.252289781147255, 28.667358046271044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 622", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252289781147255, 28.667358046271044 ], [ -82.252520139728389, 28.667324767177021 ], [ -82.253236858382323, 28.667241306348284 ], [ -82.253790704305842, 28.667184836206822 ], [ -82.253872147517043, 28.667174419080737 ], [ -82.253916369802056, 28.667172284015294 ], [ -82.253960603850288, 28.667176305504434 ], [ -82.254014189451553, 28.667196734479315 ], [ -82.254051485611583, 28.667219246886976 ], [ -82.254079486708847, 28.667247935174252 ], [ -82.254095892912559, 28.66729512317389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 622", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.259492897763522, 28.667753352777538 ], [ -82.259606345095321, 28.667652115365048 ], [ -82.259823464817288, 28.667387045571708 ], [ -82.259854371908034, 28.667349705472432 ], [ -82.259912679801019, 28.667279942475812 ], [ -82.25997763662842, 28.667191540779978 ], [ -82.260017241055579, 28.667115760930752 ], [ -82.260045230305593, 28.667038658069952 ], [ -82.260064705624401, 28.666936718760798 ], [ -82.260080831427402, 28.666792510892407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 622G", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.260093502007024, 28.665890336261445 ], [ -82.26010264818693, 28.666325227643306 ], [ -82.260095027995433, 28.666657550192543 ], [ -82.260080831427402, 28.666792510892407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 622A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252288561462862, 28.666848917454708 ], [ -82.252288320678616, 28.666748321736108 ], [ -82.252288207659362, 28.666701103963153 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 575", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249015681900929, 28.667752119581792 ], [ -82.249011249431859, 28.666861148854071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 622B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249011249431859, 28.666861148854071 ], [ -82.249756091590925, 28.666855675454663 ], [ -82.250456717035263, 28.666856434074102 ], [ -82.251406396650907, 28.666854667895628 ], [ -82.251985983244239, 28.66685564098152 ], [ -82.252168953885246, 28.666852548123462 ], [ -82.252288561462862, 28.666848917454708 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 575", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249011249431859, 28.666861148854071 ], [ -82.2490163171624, 28.666050226095233 ], [ -82.249015903890452, 28.665875724462047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 575", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249015903890452, 28.665875724462047 ], [ -82.249015409793003, 28.664680909343602 ], [ -82.249014425324404, 28.664264163893094 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 63rd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.242537813793433, 28.663872471658802 ], [ -82.243518289898049, 28.663860453557689 ], [ -82.244207845580348, 28.663861783435454 ], [ -82.244257326621963, 28.663869393196439 ], [ -82.244312642545694, 28.663884690226794 ], [ -82.244359264533031, 28.663915401125013 ], [ -82.244388461084398, 28.663958973569894 ], [ -82.244400199373814, 28.664002577403451 ], [ -82.244397593255258, 28.664133457814529 ], [ -82.244403567040024, 28.664200167144205 ], [ -82.244424012263991, 28.664233492216891 ], [ -82.244453173223036, 28.664261666451107 ], [ -82.2444910359782, 28.664279561023697 ], [ -82.244555087789323, 28.664297411170548 ], [ -82.244639481635375, 28.66430495615927 ], [ -82.245817843751809, 28.664307964211016 ], [ -82.246571398386209, 28.664304032916739 ], [ -82.246954540725611, 28.664286399613083 ], [ -82.247787783618293, 28.664268458745351 ], [ -82.247966999814111, 28.664264027169775 ], [ -82.24811360466002, 28.66424938728921 ], [ -82.248264913709335, 28.664255269363814 ], [ -82.248548908862489, 28.664266881186336 ], [ -82.249014425324404, 28.664264163893094 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 575", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249018038698125, 28.662970081074992 ], [ -82.249018039535613, 28.662969136334123 ], [ -82.249019484049654, 28.662341570482557 ], [ -82.249028698369855, 28.661315077453185 ], [ -82.24902852863363, 28.660011455253343 ], [ -82.249019631867, 28.658707850597086 ], [ -82.249015140095167, 28.656806313655828 ], [ -82.249017158602257, 28.656429079792524 ], [ -82.24902197231107, 28.656003083345198 ], [ -82.249013013050956, 28.655905585775919 ], [ -82.24899529256588, 28.655792705077094 ], [ -82.248971774666245, 28.655690102615193 ], [ -82.248930748468354, 28.655564433446369 ], [ -82.24888979403012, 28.655469559779927 ], [ -82.248837155025967, 28.655354177659245 ], [ -82.248770006974283, 28.655254217639733 ], [ -82.248699947712112, 28.655154265618449 ], [ -82.248592051628478, 28.655046682270367 ], [ -82.248536649025311, 28.654992894576203 ], [ -82.248460851197549, 28.654926312994707 ], [ -82.248376337677527, 28.654864877949439 ], [ -82.248274339337669, 28.654790644544001 ], [ -82.248157825924324, 28.654729268706504 ], [ -82.248032571697365, 28.654662777161214 ], [ -82.247907352798777, 28.654611681907852 ], [ -82.247790893042747, 28.654573402619899 ], [ -82.247654085447579, 28.654542856285765 ], [ -82.247526025894771, 28.654519994376191 ], [ -82.24739216589299, 28.654504840687881 ], [ -82.247130303589785, 28.654492485870421 ], [ -82.24684229692825, 28.65449557540159 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 575", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.24684229692825, 28.65449557540159 ], [ -82.245797886329996, 28.654500033263119 ], [ -82.244549150986472, 28.654525702773082 ], [ -82.241919254384143, 28.654553504461454 ], [ -82.239891534765675, 28.654564796448671 ], [ -82.239129336757017, 28.654576404201944 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 665", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.239197479837287, 28.657683937801011 ], [ -82.239152094243309, 28.656914161546794 ], [ -82.239138419963325, 28.65601601973264 ], [ -82.239129336757017, 28.654576404201944 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 70th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.237334233131818, 28.654532716148882 ], [ -82.237078294201979, 28.654566524602586 ], [ -82.236988141985989, 28.654582077360669 ], [ -82.236886370921709, 28.654605351702291 ], [ -82.236706061604764, 28.654633892486142 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 70th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.23651199239454, 28.653715535036724 ], [ -82.236532896206967, 28.653956720745871 ], [ -82.236559338654828, 28.654072153312327 ], [ -82.236667826223226, 28.654449194071724 ], [ -82.236706061604764, 28.654633892486142 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 70th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.236706061604764, 28.654633892486142 ], [ -82.236572661365642, 28.654657554618126 ], [ -82.236502542217721, 28.654690702844597 ], [ -82.236406547199621, 28.654696002263147 ], [ -82.236319282084011, 28.654701286439355 ], [ -82.2362436013549, 28.654683455258755 ], [ -82.23617951756782, 28.654647638472419 ], [ -82.235661665814987, 28.654645971767536 ], [ -82.235402744334721, 28.654646419426793 ], [ -82.235149634682671, 28.654644292113257 ], [ -82.234815059266538, 28.654639737017867 ], [ -82.234477588047284, 28.654640320355995 ], [ -82.233994655496545, 28.654641151476241 ], [ -82.233532084873517, 28.654641946803757 ], [ -82.232604043014192, 28.654646104815349 ], [ -82.232115277432186, 28.654641807655004 ], [ -82.231760340157237, 28.654637282480977 ], [ -82.231451955094954, 28.654635240662788 ], [ -82.231097027055057, 28.654635844391855 ], [ -82.230616991452223, 28.654631526986272 ], [ -82.23011950574697, 28.654629803645083 ], [ -82.229633661762733, 28.65463062504681 ], [ -82.228987826676502, 28.654639412936067 ], [ -82.228618414334079, 28.654668262202804 ], [ -82.227911650188801, 28.654754133425637 ], [ -82.227612071237886, 28.654787995341678 ], [ -82.227550965007808, 28.654782965154808 ], [ -82.22751019061522, 28.65476250353553 ], [ -82.227463582073995, 28.654734353872492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 575", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.23651199239454, 28.653715535036724 ], [ -82.236491390603376, 28.653610357218042 ], [ -82.236482433677892, 28.653507725370702 ], [ -82.236482087399096, 28.65335375482913 ], [ -82.236481661583824, 28.653163856286881 ], [ -82.236464414892495, 28.650661851250792 ], [ -82.236463135903307, 28.648793666173358 ], [ -82.236456184411693, 28.648288138541322 ], [ -82.23644835869122, 28.647392551282078 ], [ -82.236439401134618, 28.645991426881452 ], [ -82.236432421284661, 28.645473067015836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 620", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.236432421284661, 28.645473067015836 ], [ -82.237305111465332, 28.645468980594053 ], [ -82.238641797881968, 28.645469206577495 ], [ -82.239157564807215, 28.645470355013799 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 81st Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.239188384586058, 28.646617901605126 ], [ -82.239185974777897, 28.645555502372879 ], [ -82.239157564807215, 28.645470355013799 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 83rd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.243399926804457, 28.640846630199285 ], [ -82.243417920415624, 28.64076640314714 ], [ -82.243486006582131, 28.640333237203539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 639", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.245893736963183, 28.629907399433879 ], [ -82.245482105404022, 28.629376522802907 ], [ -82.245189451086262, 28.629000311633668 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647 South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.243215809955942, 28.629016414836048 ], [ -82.245189451086262, 28.629000311633668 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 642 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.243210694025976, 28.629885014769545 ], [ -82.243215809955942, 28.629016414836048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647 South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.240444379327158, 28.629001086727655 ], [ -82.241311781306919, 28.629004921308578 ], [ -82.242352606581321, 28.628984274213249 ], [ -82.242874173925685, 28.629000280692072 ], [ -82.243215809955942, 28.629016414836048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 641 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.248645349948745, 28.631848876591203 ], [ -82.24864773185584, 28.63084633038514 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647 South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.245189451086262, 28.629000311633668 ], [ -82.245414809662705, 28.628999905181541 ], [ -82.246031591421243, 28.629002977682209 ], [ -82.246181077600554, 28.629019452707556 ], [ -82.246292638408207, 28.62904855133306 ], [ -82.246413703639107, 28.629083912894341 ], [ -82.246522953617301, 28.629138132896937 ], [ -82.246589480950206, 28.629184057516177 ], [ -82.246713103966385, 28.629298947728643 ], [ -82.246817717621269, 28.62939922112129 ], [ -82.246915236859337, 28.629509973487128 ], [ -82.24737220228134, 28.630149597417837 ], [ -82.247714863178885, 28.630601059399826 ], [ -82.24779571566576, 28.630684631574102 ], [ -82.247869377431471, 28.630736823697028 ], [ -82.247924016332647, 28.630770210624437 ], [ -82.247990514979591, 28.630801485195779 ], [ -82.2480688563721, 28.630826456984867 ], [ -82.248123439950348, 28.630837131279531 ], [ -82.248197002002371, 28.630845060305823 ], [ -82.24864773185584, 28.63084633038514 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647 South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.24864773185584, 28.63084633038514 ], [ -82.249048655694367, 28.630851875209498 ], [ -82.249736644243612, 28.630867358167375 ], [ -82.250400872562651, 28.630868224534741 ], [ -82.25088479919053, 28.630865235290859 ], [ -82.251553784471113, 28.630872362499666 ], [ -82.25164868800438, 28.630878464232183 ], [ -82.251738885180657, 28.63089922676533 ], [ -82.251850481398748, 28.630942970602721 ], [ -82.252054738724155, 28.631045147224214 ], [ -82.252173609366849, 28.631153761349672 ], [ -82.252305171952187, 28.631328569443625 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 646", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252602425107014, 28.632902700229536 ], [ -82.253187749995277, 28.632642072809954 ], [ -82.25360483077462, 28.632459200624101 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 648", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.253509293321272, 28.635646085180202 ], [ -82.253858549060965, 28.63438427331295 ], [ -82.253940768165535, 28.63404714690358 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 641", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.2528196728626, 28.63545573889969 ], [ -82.253509293321272, 28.635646085180202 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256291340589769, 28.63767783542129 ], [ -82.256291133065147, 28.63759280898795 ], [ -82.256286204429784, 28.63708919295015 ], [ -82.25628932324787, 28.636847185844431 ], [ -82.256280002188717, 28.636366862786765 ], [ -82.256279676578188, 28.636232780321723 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 641", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.253509293321272, 28.635646085180202 ], [ -82.253984016256538, 28.635753111785679 ], [ -82.254651620537928, 28.635912100533556 ], [ -82.255374827418976, 28.636070980896235 ], [ -82.256279676578188, 28.636232780321723 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256279676578188, 28.636232780321723 ], [ -82.256271325465661, 28.635846902587588 ], [ -82.256266714713988, 28.635474097958234 ], [ -82.256281024447361, 28.63526150097163 ], [ -82.25626603973663, 28.635196124673097 ], [ -82.256228852855685, 28.635147140754398 ], [ -82.256184291740908, 28.63511452198696 ], [ -82.256117484936709, 28.635078676219919 ], [ -82.256069232264267, 28.635052604522549 ], [ -82.256024727795051, 28.635042877788528 ], [ -82.255954252234403, 28.635023390072348 ], [ -82.255638997953255, 28.634948770195251 ], [ -82.254845394280835, 28.634799835041292 ], [ -82.254404032889056, 28.634692748609837 ], [ -82.254317073009176, 28.634661778203313 ], [ -82.25426242851411, 28.634628394550454 ], [ -82.25421727919985, 28.634597083717189 ], [ -82.254162605545005, 28.63455113959759 ], [ -82.254112641206774, 28.634490537216081 ], [ -82.254091179416974, 28.634444532406143 ], [ -82.253940768165535, 28.63404714690358 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.25119407455675, 28.642590394404102 ], [ -82.251843297553819, 28.642797666784144 ], [ -82.252729023926818, 28.643078074455776 ], [ -82.253476575547964, 28.643321127340602 ], [ -82.254259347869834, 28.643564928200579 ], [ -82.255943140394422, 28.644109429748621 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.253142662998613, 28.645268384383801 ], [ -82.255039624053353, 28.645029006969516 ], [ -82.255936974210556, 28.64491959478411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256154446349996, 28.646141891833992 ], [ -82.256127629214632, 28.645970181127279 ], [ -82.256010445184216, 28.645277536048752 ], [ -82.255936974210556, 28.64491959478411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.253119279629956, 28.646526070465349 ], [ -82.253942205682776, 28.64642026952243 ], [ -82.254986535323368, 28.646275105691657 ], [ -82.256154446349996, 28.646141891833992 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256088236196177, 28.647414797702716 ], [ -82.256054412986259, 28.647076578606175 ], [ -82.256064066029694, 28.646974668116158 ], [ -82.256077075371536, 28.646896040441202 ], [ -82.256119728203174, 28.64679406828207 ], [ -82.256181957447794, 28.646598898649497 ], [ -82.256198146232919, 28.646470775644687 ], [ -82.256197884631092, 28.646363062097244 ], [ -82.256154446349996, 28.646141891833992 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.255476843113385, 28.652234584138935 ], [ -82.255134384371686, 28.651462014121922 ], [ -82.255052137983327, 28.651296813682102 ], [ -82.255014928248372, 28.651194408907159 ], [ -82.254988245344663, 28.651078011648252 ], [ -82.254987980702907, 28.650968549453026 ], [ -82.254998225904373, 28.650838108064821 ], [ -82.255170882872832, 28.650178686767699 ], [ -82.255278104625361, 28.64975461042377 ], [ -82.255314824366948, 28.649577791455048 ], [ -82.25539253425373, 28.649037074057603 ], [ -82.255422038260676, 28.64897903354813 ], [ -82.255468811030809, 28.64891815231525 ], [ -82.255642641691082, 28.64874548082398 ], [ -82.255729579903331, 28.648668460169439 ], [ -82.255817111771705, 28.648564655332653 ], [ -82.255872996152604, 28.648474301895721 ], [ -82.255928815841187, 28.648357746656501 ], [ -82.255971484550273, 28.648261597277013 ], [ -82.256007553540556, 28.648165460392118 ], [ -82.256043586106784, 28.648054766251551 ], [ -82.256069669682063, 28.647923710901996 ], [ -82.256085950673878, 28.647833433348126 ], [ -82.256092304968121, 28.64773153002367 ], [ -82.256095334147304, 28.647620897530015 ], [ -82.256088236196177, 28.647414797702716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.253114496986498, 28.652509191074682 ], [ -82.253169975139372, 28.652523061486121 ], [ -82.25323598602948, 28.652525266640676 ], [ -82.254099065390051, 28.652409526814839 ], [ -82.255249834681166, 28.652255973613698 ], [ -82.255476843113385, 28.652234584138935 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647C South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.253059112839139, 28.647801208653689 ], [ -82.253068060665782, 28.647794660812366 ], [ -82.253142726539068, 28.647769694141395 ], [ -82.253227832636114, 28.647754396191473 ], [ -82.253567668667742, 28.647721735787378 ], [ -82.254468345206419, 28.647612326998203 ], [ -82.255527355053232, 28.647473500865974 ], [ -82.256088236196177, 28.647414797702716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647C East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.253114496986498, 28.652509191074682 ], [ -82.253066894652449, 28.652476674550968 ], [ -82.253043039153923, 28.652437127671153 ], [ -82.253026782617141, 28.652264814700388 ], [ -82.253028848287556, 28.652024927010721 ], [ -82.253028512016286, 28.65188518993633 ], [ -82.253030739717431, 28.651712841416874 ], [ -82.253030325225694, 28.651540499647979 ], [ -82.253020745405848, 28.650848815745896 ], [ -82.253024428783291, 28.650182724112145 ], [ -82.253011069461238, 28.649015938044062 ], [ -82.252998647945731, 28.648240415453312 ], [ -82.253013706254649, 28.647914333318138 ], [ -82.253018874632815, 28.647867741666673 ], [ -82.253034632185546, 28.647832779279334 ], [ -82.253059112839139, 28.647801208653689 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256392504923454, 28.653115526143488 ], [ -82.256294748105873, 28.653087764704111 ], [ -82.256212838096133, 28.653062300242652 ], [ -82.256123001924095, 28.653034523651979 ], [ -82.25603841789102, 28.652995091562403 ], [ -82.255967042523721, 28.652957962399377 ], [ -82.255895647186932, 28.652913847390543 ], [ -82.255829484493304, 28.652848763089985 ], [ -82.255768610460962, 28.652788325670059 ], [ -82.255718276656594, 28.652718551698388 ], [ -82.255675887049591, 28.652658079234378 ], [ -82.255476843113385, 28.652234584138935 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252980266528155, 28.653785715743386 ], [ -82.253019887354554, 28.653792628264323 ], [ -82.253128098585947, 28.653776122164309 ], [ -82.253708781691344, 28.653702834300546 ], [ -82.254709139964064, 28.653577517828431 ], [ -82.255015324485896, 28.653542004463347 ], [ -82.25589162239433, 28.653430886972078 ], [ -82.256105431228406, 28.653409519639563 ], [ -82.256184621055496, 28.653402381795875 ], [ -82.256253240834681, 28.65339060793546 ], [ -82.256316543181015, 28.653364869735558 ], [ -82.256356097145101, 28.653343833516317 ], [ -82.256377454437683, 28.653310332744258 ], [ -82.256387597223323, 28.653269245708103 ], [ -82.256392504923454, 28.653115526143488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256392504923454, 28.653115526143488 ], [ -82.256794081095421, 28.653221895107418 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 651 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.257871328995506, 28.651072537773675 ], [ -82.257812853230888, 28.650911950566226 ], [ -82.257794007995642, 28.650762933177571 ], [ -82.257772253116116, 28.650504458648989 ], [ -82.257758796390434, 28.650399681279627 ], [ -82.257740168621865, 28.650339164093221 ], [ -82.257705771099097, 28.650308952909516 ], [ -82.257652951737825, 28.650302066026214 ], [ -82.257515663742609, 28.650302327848376 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 651", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256794081095421, 28.653221895107418 ], [ -82.256802005784678, 28.652138911573196 ], [ -82.256791781982685, 28.651193371151713 ], [ -82.256774637032734, 28.650657741214658 ], [ -82.256785067113327, 28.650604156302574 ], [ -82.256798161006685, 28.650559881088899 ], [ -82.256825674491282, 28.650516294906403 ], [ -82.256850777283788, 28.650482924984118 ], [ -82.256892923777556, 28.650443252341859 ], [ -82.256940356147283, 28.650405898547604 ], [ -82.256990461626572, 28.650382514053092 ], [ -82.257040574802872, 28.650361457539795 ], [ -82.257119745240885, 28.650347333347973 ], [ -82.257267536951787, 28.650323761850924 ], [ -82.257515663742609, 28.650302327848376 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 100th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.270239936862183, 28.65980175911854 ], [ -82.270143004368109, 28.659327427989144 ], [ -82.270116414511278, 28.659254701995547 ], [ -82.270079945549028, 28.659190726691385 ], [ -82.270026869400425, 28.659086031778269 ], [ -82.269957328817313, 28.658995921620043 ], [ -82.269884479727381, 28.658902908023478 ], [ -82.26966953124753, 28.658740310830595 ], [ -82.269385334811773, 28.658601141458369 ], [ -82.269012015632839, 28.658459235412789 ], [ -82.268928413359461, 28.658031455884892 ], [ -82.268858754615692, 28.657894768023567 ], [ -82.268805763006014, 28.657822093404043 ], [ -82.268746213710671, 28.657766898206244 ], [ -82.26872843467612, 28.657612924864804 ], [ -82.268716754837172, 28.657085736726962 ], [ -82.268723000747599, 28.656428956370672 ], [ -82.268715535952794, 28.655571914867284 ], [ -82.268717623243461, 28.654318928066473 ], [ -82.268690555874386, 28.653021751464646 ], [ -82.268684461526746, 28.652702695091577 ], [ -82.268679092173841, 28.652667771152281 ], [ -82.268665435716713, 28.652629900443344 ], [ -82.268649824829353, 28.652579329711514 ], [ -82.268637788007254, 28.652553227579187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 64th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.271173431542053, 28.659873287924832 ], [ -82.271201832457862, 28.659930692121783 ], [ -82.271200969831042, 28.660184301595283 ], [ -82.271502705328132, 28.660323520257055 ], [ -82.271847249269769, 28.660466285754953 ], [ -82.271936714881448, 28.660536717401225 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 65th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.270239936862183, 28.65980175911854 ], [ -82.27028291795483, 28.659830784954682 ], [ -82.270434785484738, 28.659847948219998 ], [ -82.270560219662158, 28.659853519714723 ], [ -82.270708742227086, 28.659853221181727 ], [ -82.271048739763089, 28.659870007424612 ], [ -82.271173431542053, 28.659873287924832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 651", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256557729413885, 28.654506403308517 ], [ -82.256556567881219, 28.65435189312484 ], [ -82.256559050467501, 28.654286676972845 ], [ -82.256582636736226, 28.654214435785203 ], [ -82.256624721449384, 28.654149145287189 ], [ -82.256730082462525, 28.654046470051 ], [ -82.256777465464296, 28.653988155276814 ], [ -82.25679584018188, 28.653943870042507 ], [ -82.256800950453368, 28.653873991957809 ], [ -82.256794081095421, 28.653221895107418 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256794081095421, 28.653221895107418 ], [ -82.257517860466308, 28.653364911542237 ], [ -82.257601204958107, 28.653386515010517 ], [ -82.25771015836375, 28.653403773566527 ], [ -82.257799257993042, 28.653400694404162 ], [ -82.257881752564728, 28.653394712364943 ], [ -82.258000540857836, 28.653385752735485 ], [ -82.258162227924899, 28.653373799185573 ], [ -82.258297498782085, 28.653356073227005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 657", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.258271087713283, 28.652005324625584 ], [ -82.258402877505702, 28.651914824118318 ], [ -82.258537980259305, 28.651830140784671 ], [ -82.25873560399711, 28.651669646436385 ], [ -82.259074865438947, 28.651398253516593 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 653", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.258297498782085, 28.653356073227005 ], [ -82.258292088257818, 28.652494366730384 ], [ -82.258271087713283, 28.652005324625584 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 657", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.259074865438947, 28.651398253516593 ], [ -82.259124196685221, 28.651328290496842 ], [ -82.259190094907851, 28.651284495748534 ], [ -82.259727798072703, 28.651187392556398 ], [ -82.259866394455443, 28.651181304129771 ], [ -82.259991774764941, 28.651169418260608 ], [ -82.260074345406949, 28.651195461178443 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 657 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.260006491488937, 28.653122808832162 ], [ -82.260026242115416, 28.653102392572965 ], [ -82.260052567033327, 28.653070318173061 ], [ -82.260072274566426, 28.653032435575618 ], [ -82.260085374959843, 28.652991652975331 ], [ -82.260088538513358, 28.652936334013582 ], [ -82.260093373215028, 28.652220167373578 ], [ -82.26010447028878, 28.651367162755296 ], [ -82.26010760609222, 28.65130019835124 ], [ -82.260100831901312, 28.651230343915962 ], [ -82.260074345406949, 28.651195461178443 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.259204802925652, 28.653240798292099 ], [ -82.259732745188032, 28.6531961157376 ], [ -82.259831717851867, 28.653181368968237 ], [ -82.259887787726797, 28.653166705591591 ], [ -82.259933956634995, 28.653152061247489 ], [ -82.25997353788317, 28.653143250503302 ], [ -82.260006491488937, 28.653122808832162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 655", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.259204802925652, 28.653240798292099 ], [ -82.259203558908567, 28.652734252075373 ], [ -82.259200632462111, 28.651543571726453 ], [ -82.259160777858369, 28.651441757 ], [ -82.259074865438947, 28.651398253516593 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.258297498782085, 28.653356073227005 ], [ -82.258700028428009, 28.65331163539145 ], [ -82.259026665325138, 28.653273162872384 ], [ -82.259204802925652, 28.653240798292099 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 48th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18465162478941, 28.650578473996635 ], [ -82.184623178395725, 28.650489094953787 ], [ -82.184599522537738, 28.650441298856745 ], [ -82.184590026742171, 28.650403880237594 ], [ -82.184589724687768, 28.650231282304976 ], [ -82.184601395297065, 28.650164722992876 ], [ -82.184631745999241, 28.649996241429356 ], [ -82.184640935999198, 28.649858983134887 ], [ -82.184608148529861, 28.649612364814672 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 72nd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185721875238244, 28.65057285892378 ], [ -82.186191026970917, 28.650588854235231 ], [ -82.186683641616995, 28.650542430215754 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 49th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185721875238244, 28.65057285892378 ], [ -82.185702078408497, 28.650040534482542 ], [ -82.185687360848505, 28.649714075872126 ], [ -82.185703351526485, 28.649425003241877 ], [ -82.185697741045928, 28.648915534411671 ], [ -82.185662125093899, 28.64877001854051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.22399881198028, 28.640035485784846 ], [ -82.229709812203282, 28.640041165014509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 633", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.229552685386835, 28.642474496426566 ], [ -82.229584991828943, 28.642047187108705 ], [ -82.229612715142622, 28.641695283564008 ], [ -82.22969092740226, 28.640543240825231 ], [ -82.229709812203282, 28.640041165014509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.236407519697664, 28.640054104701896 ], [ -82.23705276479329, 28.640050895306274 ], [ -82.240359451252033, 28.640064831362039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.230194706149348, 28.640041212340353 ], [ -82.231694543359481, 28.640041364440471 ], [ -82.232193254600276, 28.640040514834716 ], [ -82.233930476901634, 28.640041706602059 ], [ -82.235603887259856, 28.640045072855234 ], [ -82.236331886643057, 28.640054236157848 ], [ -82.236407519697664, 28.640054104701896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 575", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.236432421284661, 28.645473067015836 ], [ -82.236423630035233, 28.644146359114718 ], [ -82.236429788656096, 28.643663446064988 ], [ -82.236426452954191, 28.643229741067568 ], [ -82.236420735482696, 28.641732620880067 ], [ -82.236411518502237, 28.640783897668705 ], [ -82.236407519697664, 28.640054104701896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 90th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.219854857644421, 28.625254161006715 ], [ -82.220292774490773, 28.625259492092514 ], [ -82.220658260743818, 28.625254735624825 ], [ -82.22124005558895, 28.625252134236078 ], [ -82.221711741666567, 28.62524939308571 ], [ -82.222172296580766, 28.625268366936535 ], [ -82.222480793896963, 28.625267862873152 ], [ -82.222818359716754, 28.625269283015204 ], [ -82.223178237419589, 28.625250940663765 ], [ -82.223555991125636, 28.625228622976479 ], [ -82.223779519150341, 28.625218393006566 ], [ -82.2239740371013, 28.625231881396079 ], [ -82.22411044408716, 28.625251380043068 ], [ -82.224262367169743, 28.625262215822641 ], [ -82.224407811668982, 28.625272588390775 ], [ -82.224584403340458, 28.625266379508314 ], [ -82.225353367671474, 28.625243410520589 ], [ -82.22576337582143, 28.625268340909312 ], [ -82.226105267217918, 28.625288701954101 ], [ -82.226491317834757, 28.625278997705191 ], [ -82.226853082982359, 28.625257911087186 ], [ -82.227136315108183, 28.625251281915308 ], [ -82.227380509879808, 28.625259492239767 ], [ -82.227647070345895, 28.62527706884519 ], [ -82.227832595710339, 28.625263659094877 ], [ -82.228107535791594, 28.625254600961252 ], [ -82.228258143612706, 28.625254328519976 ], [ -82.228440954439634, 28.625266334967051 ], [ -82.228567916682053, 28.625261195883095 ], [ -82.228798152898591, 28.625266965531051 ], [ -82.228972585841419, 28.625276520168796 ], [ -82.229259995005577, 28.625264957289527 ], [ -82.229741738095555, 28.625275520399391 ], [ -82.229961850589333, 28.625273620876285 ], [ -82.230243957955082, 28.625265285307638 ], [ -82.230430244556857, 28.625262521882622 ], [ -82.230649339559747, 28.625270038837058 ], [ -82.230859477148144, 28.625269683323062 ], [ -82.23184019048729, 28.625264633664656 ], [ -82.232197213800731, 28.625251670909861 ], [ -82.233269349121372, 28.625267544228475 ], [ -82.234279767390461, 28.625253974709075 ], [ -82.23481850775174, 28.625247128348938 ], [ -82.235947451177353, 28.625253065908996 ], [ -82.236494369592364, 28.625248443713975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 42nd Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174140277968192, 28.668941498001018 ], [ -82.174145674624143, 28.667230484996217 ], [ -82.174156311608911, 28.665670062205244 ], [ -82.174168909232421, 28.664623975616998 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.173573464211856, 28.668938141750271 ], [ -82.174140277968192, 28.668941498001018 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 42nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.173588867984463, 28.669862427752097 ], [ -82.173572330451051, 28.669654327072273 ], [ -82.173573464211856, 28.668938141750271 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 73rd Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145611663315989, 28.648635755546461 ], [ -82.146645770856921, 28.648631988423961 ], [ -82.146983293119419, 28.648631625701864 ], [ -82.147217762882349, 28.648647418819134 ], [ -82.147559331662393, 28.648650614511514 ], [ -82.148183839942234, 28.648642805684556 ], [ -82.148616353101318, 28.648642334660984 ], [ -82.14901657808808, 28.648675773011313 ], [ -82.149463237639779, 28.648673499897345 ], [ -82.150152405758476, 28.648654913880801 ], [ -82.151344850113631, 28.648653594590648 ], [ -82.151731712595577, 28.648659192817153 ], [ -82.152631723841921, 28.648666401496929 ], [ -82.153150017209711, 28.648676771506913 ], [ -82.153392238124809, 28.648665567228552 ], [ -82.153533715871205, 28.648665407866488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 25th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145581954584983, 28.652294382925831 ], [ -82.145572930697384, 28.652052385664565 ], [ -82.145609709602269, 28.651718351910525 ], [ -82.145614312526092, 28.650554845676801 ], [ -82.14559226273586, 28.650319432168409 ], [ -82.145578416592627, 28.649281877909118 ], [ -82.145593310662136, 28.648830149743013 ], [ -82.145605583798186, 28.648728843263786 ], [ -82.145611663315989, 28.648635755546461 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 614", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153320580217766, 28.652347218109753 ], [ -82.153514942470835, 28.652060094940641 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 615", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145581954584983, 28.652294382925831 ], [ -82.14657880747059, 28.652286744411168 ], [ -82.147989338003129, 28.652302302784758 ], [ -82.148476001649328, 28.652321046303676 ], [ -82.149367848141637, 28.652325326734164 ], [ -82.149719437382586, 28.652337206269223 ], [ -82.150144506264908, 28.652340243176678 ], [ -82.150498057632532, 28.652336348437704 ], [ -82.150815834706435, 28.6523167240954 ], [ -82.15169179439647, 28.652322760045411 ], [ -82.152823988015342, 28.652332006898448 ], [ -82.153320580217766, 28.652347218109753 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 615", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141432530765272, 28.652233924971476 ], [ -82.142213148900183, 28.652241873450865 ], [ -82.142685916712125, 28.652265908369429 ], [ -82.143130849983024, 28.652270697016185 ], [ -82.143460572783241, 28.652270351235757 ], [ -82.14446764615198, 28.652292065914015 ], [ -82.144849040939349, 28.652312686350971 ], [ -82.145184724872649, 28.652314078760764 ], [ -82.145456898974729, 28.652299477499536 ], [ -82.145581954584983, 28.652294382925831 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 22nd Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141432530765272, 28.652233924971476 ], [ -82.141438260449732, 28.652063966191829 ], [ -82.141450026974084, 28.651950067677546 ], [ -82.141474709344692, 28.651683854372799 ], [ -82.141459331180627, 28.651407461896515 ], [ -82.141495081450287, 28.651037506533488 ], [ -82.141492825269395, 28.650807514685496 ], [ -82.141483958646702, 28.650590248094502 ], [ -82.141437338806142, 28.65041015083473 ], [ -82.141397267967989, 28.65017366439406 ], [ -82.141412544291057, 28.649940214627058 ], [ -82.141430017286126, 28.649309684856227 ], [ -82.14143593250671, 28.648924978303818 ], [ -82.141425903552644, 28.648711839230302 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 73rd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137344631885213, 28.648609225520214 ], [ -82.138668851559359, 28.648630951367931 ], [ -82.139018436306259, 28.648639355181643 ], [ -82.139417654056331, 28.648631939042591 ], [ -82.139651969865923, 28.648587897165488 ], [ -82.139979719275843, 28.648606833967687 ], [ -82.141425903552644, 28.648711839230302 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 609A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137254003449343, 28.655855888953248 ], [ -82.137255835997124, 28.654604130826115 ], [ -82.137255593757516, 28.654418790780447 ], [ -82.137255012008978, 28.653971794070202 ], [ -82.137260358063898, 28.653331273188975 ], [ -82.137258524199979, 28.651922142169727 ], [ -82.137308105880223, 28.651082880715816 ], [ -82.1373293730759, 28.650330595715399 ], [ -82.137333312162127, 28.649407290564582 ], [ -82.13734439412238, 28.648653662134485 ], [ -82.137344631885213, 28.648609225520214 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 674", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149784118753502, 28.645004280814014 ], [ -82.149783052512404, 28.644253247814373 ], [ -82.149796021938911, 28.643389112345847 ], [ -82.149790561491898, 28.643295131116886 ], [ -82.149779827416282, 28.643238748771221 ], [ -82.149751354460847, 28.643194919354261 ], [ -82.149705142634829, 28.643163641050364 ], [ -82.14964475011196, 28.643151174847624 ], [ -82.148902523453827, 28.643155120765229 ], [ -82.148792430015718, 28.643155241913874 ], [ -82.148756907828741, 28.643149014877128 ], [ -82.148721381229947, 28.643139654928007 ], [ -82.148685845806327, 28.643124028261056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 77th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145244637710945, 28.643170347284283 ], [ -82.146537329826941, 28.643166456898868 ], [ -82.148551692158676, 28.643186833619744 ], [ -82.148611330309507, 28.643169225397539 ], [ -82.148648239685457, 28.643151638333059 ], [ -82.148685845806327, 28.643124028261056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 674", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148685845806327, 28.643124028261056 ], [ -82.148656675837827, 28.643088971875688 ], [ -82.148639569003734, 28.643046381363149 ], [ -82.147952698322314, 28.64150071638873 ], [ -82.147379916249648, 28.64026069779322 ], [ -82.147354266224383, 28.640203079815066 ], [ -82.147334321037377, 28.640160492185888 ], [ -82.147317180229464, 28.640092840052066 ], [ -82.147317091731281, 28.640030181057568 ], [ -82.1473311811759, 28.639947456838879 ], [ -82.147438659968515, 28.639603971206572 ], [ -82.147585742895586, 28.639140138679021 ], [ -82.14780916336845, 28.638413055145261 ], [ -82.148085797424685, 28.637559447372542 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.150232565947249, 28.657792559131579 ], [ -82.150408871598572, 28.657791756420046 ], [ -82.150601558074229, 28.657792129158 ], [ -82.151010278174709, 28.657793861253243 ], [ -82.152067194007685, 28.657794473952574 ], [ -82.153522046018395, 28.657804163643391 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 614", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147144945034341, 28.657775523502945 ], [ -82.14724355182625, 28.657708449406265 ], [ -82.147354840958641, 28.657661450168323 ], [ -82.147472611460756, 28.65761137679273 ], [ -82.14754833858737, 28.657581513294453 ], [ -82.147765480431815, 28.657525025606361 ], [ -82.148131904890434, 28.65750196380014 ], [ -82.148775231999679, 28.657527296031535 ], [ -82.149290803842504, 28.657528551148463 ], [ -82.149448425916276, 28.657529006357045 ], [ -82.149571916086188, 28.657529595409013 ], [ -82.149692754680757, 28.65752010729684 ], [ -82.149785628621999, 28.657478822726311 ], [ -82.149868506447476, 28.657391186301933 ], [ -82.14994603819035, 28.657279946159271 ], [ -82.152137903451603, 28.654074770814571 ], [ -82.153166600646173, 28.652570226279796 ], [ -82.153320580217766, 28.652347218109753 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 22nd Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141847366283827, 28.659549109807571 ], [ -82.141808128923884, 28.658872295163494 ], [ -82.14180320143538, 28.658324077773926 ], [ -82.141830777326518, 28.657754371734807 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140397333739614, 28.657746927397799 ], [ -82.140905516564075, 28.657748187753665 ], [ -82.141460266333169, 28.657751183592151 ], [ -82.141676902263185, 28.657750959452869 ], [ -82.141830777326518, 28.657754371734807 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137246560518321, 28.657734592934474 ], [ -82.137624289036893, 28.657734212076278 ], [ -82.138733749294445, 28.657740065077341 ], [ -82.140104258490794, 28.657743896675829 ], [ -82.140397333739614, 28.657746927397799 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 613", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139431218311586, 28.65953981242858 ], [ -82.140315428932908, 28.659552062766938 ], [ -82.140341741788177, 28.65954667761854 ], [ -82.14036804242312, 28.659530578173275 ], [ -82.140384195907032, 28.659498416816888 ], [ -82.140392238000729, 28.659455548607816 ], [ -82.140397333739614, 28.657746927397799 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 28th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.151040551171761, 28.668684348342538 ], [ -82.151040217802873, 28.668451717653042 ], [ -82.151002242381963, 28.667993888618749 ], [ -82.150989242857733, 28.667705276839136 ], [ -82.151004816915389, 28.666861580098114 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 47th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.180685135047881, 28.68726838081469 ], [ -82.18071283307664, 28.687243881888776 ], [ -82.180753151352505, 28.687226038906875 ], [ -82.180811142258563, 28.68721929001244 ], [ -82.180949873371176, 28.687222352100466 ], [ -82.181257538164473, 28.687236485278074 ], [ -82.182034281302037, 28.687246567335695 ], [ -82.182326800116201, 28.687237281269518 ], [ -82.182473051795782, 28.687228189980996 ], [ -82.182619298570586, 28.687216875203493 ], [ -82.182712648423959, 28.687241211057138 ], [ -82.182904335080309, 28.687256518581755 ], [ -82.183103581987851, 28.687269594123897 ], [ -82.183282653220417, 28.687280471420383 ], [ -82.183688668870346, 28.687279924571286 ], [ -82.183986233172462, 28.687272848735155 ], [ -82.184361947474216, 28.687250103870053 ], [ -82.184805821647387, 28.687267291752271 ], [ -82.18484867043523, 28.687253890788877 ], [ -82.184883928660781, 28.687227156496679 ], [ -82.184906550739242, 28.687184875110905 ], [ -82.184909001811846, 28.687144844484692 ], [ -82.184906406278159, 28.68710259557739 ], [ -82.184888578089584, 28.687002550676656 ], [ -82.18488330404837, 28.686871355663712 ], [ -82.184885492544467, 28.6866823337988 ], [ -82.184894850921495, 28.686266475710656 ], [ -82.184893739339671, 28.685632705006334 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 317", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170078374672201, 28.683461003584899 ], [ -82.170094961332268, 28.683441934678175 ], [ -82.170099793445559, 28.683419349649348 ], [ -82.170099731373497, 28.683381545734669 ], [ -82.170093512047032, 28.682652158209773 ], [ -82.17008229296556, 28.681951686592917 ], [ -82.170071225867233, 28.681344611247567 ], [ -82.170061935881378, 28.680275882761347 ], [ -82.170063236506991, 28.679832907566176 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 37th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.166033286285526, 28.69080208282973 ], [ -82.166013746008289, 28.690759178393645 ], [ -82.166000695585851, 28.690716266939301 ], [ -82.166000596333461, 28.690653307088198 ], [ -82.166006960866753, 28.690573169843329 ], [ -82.166020802753607, 28.689059259363919 ], [ -82.166017326772121, 28.688913311930953 ], [ -82.165981499819623, 28.688833226137159 ], [ -82.165796221659448, 28.68865029551413 ], [ -82.16545805236278, 28.688241469425151 ], [ -82.165292203334317, 28.68802989981182 ], [ -82.165197910615206, 28.687918402548082 ], [ -82.165181562189048, 28.687841154164992 ], [ -82.165187964118772, 28.687783909865846 ], [ -82.165223556641067, 28.68771518408391 ], [ -82.165531289119102, 28.687345638444143 ], [ -82.165647848344534, 28.68717092572502 ], [ -82.165738571784942, 28.687076375699256 ], [ -82.165813035411674, 28.686961812819181 ], [ -82.165874544675532, 28.686864436107342 ], [ -82.165919763654813, 28.686727015820722 ], [ -82.165935823871649, 28.686621108825619 ], [ -82.165945351849459, 28.686489453712085 ], [ -82.165938348253121, 28.686163217046303 ], [ -82.165924797995672, 28.685802645698885 ], [ -82.165908314132139, 28.685639542727863 ], [ -82.165885285695026, 28.685442105981295 ], [ -82.165901103364533, 28.685181662751155 ], [ -82.165913336073885, 28.68470658861423 ], [ -82.165892971122418, 28.684139976775775 ], [ -82.165853126131296, 28.68356766425044 ], [ -82.165868950964537, 28.683521766923722 ], [ -82.165888661700137, 28.683464596567479 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 45th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.166033286285526, 28.69080208282973 ], [ -82.166082005420947, 28.690824915445841 ], [ -82.16614692866446, 28.690833421840495 ], [ -82.166565603886369, 28.690835773044785 ], [ -82.166906383143939, 28.690835355442466 ], [ -82.168091071238095, 28.690882546950252 ], [ -82.168441549790685, 28.690859218719549 ], [ -82.168766105995559, 28.690861678704096 ], [ -82.169366557377245, 28.690880965145269 ], [ -82.169911794491867, 28.690874561828444 ], [ -82.170093555763799, 28.690882919457351 ], [ -82.170177954015159, 28.690891400469798 ], [ -82.170249385974714, 28.690911343691763 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 40th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170289955243604, 28.693921907304986 ], [ -82.170307666789782, 28.692831537171902 ], [ -82.170311254446034, 28.69103718437643 ], [ -82.170304689511397, 28.690991403941279 ], [ -82.170285146441017, 28.690948501935928 ], [ -82.170249385974714, 28.690911343691763 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 316A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.159544106198567, 28.681418201402391 ], [ -82.157915377920219, 28.681290365401228 ], [ -82.156320881310378, 28.681171522664261 ], [ -82.156211387590034, 28.681162596172562 ], [ -82.156108726185977, 28.681147628779495 ], [ -82.15600262632239, 28.681120598389466 ], [ -82.155906785942875, 28.681090536971077 ], [ -82.155619326418815, 28.680971189832412 ], [ -82.155403570042012, 28.680859150334424 ], [ -82.1552965237953, 28.680804794305349 ], [ -82.155205007212103, 28.680752657364145 ], [ -82.155156753066692, 28.680712167968231 ], [ -82.155106835278829, 28.680652266818321 ], [ -82.155077994571485, 28.680584599650583 ], [ -82.155056363315865, 28.680503621212448 ], [ -82.155051371048998, 28.680454257710604 ], [ -82.155054144451938, 28.680381598930701 ], [ -82.155073557751166, 28.680305059224739 ], [ -82.155117374588741, 28.68023406450429 ], [ -82.155190587995875, 28.680166399247973 ], [ -82.155327584549724, 28.680086531172325 ], [ -82.155767973341284, 28.67982585103978 ], [ -82.15592271915996, 28.6797387722842 ], [ -82.156003142226766, 28.679710485943772 ], [ -82.156080792474128, 28.679701612759359 ], [ -82.156165653713188, 28.679702721858959 ], [ -82.156913869373483, 28.679710492317643 ], [ -82.157364241257241, 28.679729352714869 ], [ -82.157486262649797, 28.679726580416652 ], [ -82.157537053475593, 28.679718979975114 ], [ -82.157553695504006, 28.679704331236856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 52nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.157553695504006, 28.679704331236856 ], [ -82.157580835001767, 28.679722787667444 ], [ -82.157602490341262, 28.679730446842594 ], [ -82.157790679224945, 28.679745314002513 ], [ -82.158242296474739, 28.679753841963546 ], [ -82.159032616055029, 28.679761970443273 ], [ -82.160469534168868, 28.679760284128424 ], [ -82.161619078033084, 28.679764958867956 ], [ -82.161776492161664, 28.679788909198088 ], [ -82.161879221541625, 28.679849128580411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.15760320244803, 28.668769412218229 ], [ -82.15801109506846, 28.668772889899845 ], [ -82.160213368846229, 28.668790503316377 ], [ -82.163811344301919, 28.668829969452869 ], [ -82.166359843465685, 28.668859413352109 ], [ -82.168414267367183, 28.668881371797728 ], [ -82.170089273516197, 28.668901733572682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153497657694075, 28.668722855784591 ], [ -82.155037398766865, 28.668739446934559 ], [ -82.156030448685314, 28.668746186459053 ], [ -82.15674551380782, 28.668756018157815 ], [ -82.157369203350854, 28.668760646907444 ], [ -82.15760320244803, 28.668769412218229 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 316A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.157553695504006, 28.679704331236856 ], [ -82.157568124024991, 28.67962790612118 ], [ -82.157585098038368, 28.679540389321009 ], [ -82.157584923056945, 28.679422724764098 ], [ -82.15757006551199, 28.678638302058538 ], [ -82.15757200496833, 28.677648701462982 ], [ -82.157571581841268, 28.677365096783387 ], [ -82.157581678581977, 28.67496651251108 ], [ -82.15756365410023, 28.674351048094842 ], [ -82.157569742493678, 28.673847191198732 ], [ -82.157576846580895, 28.671735228348066 ], [ -82.157588578428914, 28.670428820399103 ], [ -82.15760320244803, 28.668769412218229 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 50th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165888661700137, 28.683464596567479 ], [ -82.165924306412876, 28.683430210452123 ], [ -82.165998916111207, 28.683410086846543 ], [ -82.166625283725551, 28.683426493583717 ], [ -82.167045082185965, 28.683430457179345 ], [ -82.167451167640337, 28.683446293859312 ], [ -82.168572996808635, 28.683457629803065 ], [ -82.169530036511574, 28.683451431086585 ], [ -82.169860703236822, 28.683458346525217 ], [ -82.170078374672201, 28.683461003584899 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.146739054461946, 28.66266256986485 ], [ -82.146542957009885, 28.662854695359115 ], [ -82.146243495655241, 28.663297654596647 ], [ -82.146054385561328, 28.663562862611027 ], [ -82.14590234936226, 28.663755958649293 ], [ -82.145146468258517, 28.664707409390264 ], [ -82.144743822896956, 28.665199646805593 ], [ -82.144405516890473, 28.665627035479332 ], [ -82.144326149101985, 28.665728594064831 ], [ -82.144077110486634, 28.666041706175889 ], [ -82.143895511726129, 28.666264216517416 ], [ -82.143685385772812, 28.666530300543052 ], [ -82.143467450419195, 28.666787227470341 ], [ -82.143175598880092, 28.667150804378874 ], [ -82.142549076660572, 28.667927279227417 ], [ -82.142289647898977, 28.668250711595725 ], [ -82.142187911894382, 28.668385380769735 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141865641251229, 28.668610874700693 ], [ -82.14198803040837, 28.668550839588026 ], [ -82.142044286111656, 28.668516402103222 ], [ -82.142096199275969, 28.668470986841545 ], [ -82.142187911894382, 28.668385380769735 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142197334107351, 28.668663316250566 ], [ -82.142106137967033, 28.668700391668533 ], [ -82.142058528557271, 28.668724316117434 ], [ -82.142008765069349, 28.668757792173597 ], [ -82.141963348783861, 28.668802721492735 ], [ -82.141932446484518, 28.668843325238143 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142171008652966, 28.668615466892327 ], [ -82.142162727634869, 28.668558535679818 ], [ -82.14216589996947, 28.668502188957387 ], [ -82.142169826866891, 28.66846899979712 ], [ -82.142179875246796, 28.66842768687026 ], [ -82.142187911894382, 28.668385380769735 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143658774767388, 28.66836585251621 ], [ -82.143760308202573, 28.668183823561087 ], [ -82.143842951821568, 28.668046698269293 ], [ -82.143985665245239, 28.667810862005002 ], [ -82.144236314397588, 28.667405687999885 ], [ -82.144506810780726, 28.666947015747251 ], [ -82.144690007234018, 28.666625951997979 ], [ -82.144849012552157, 28.666350751283979 ], [ -82.144995927400387, 28.666103830604044 ], [ -82.145198984239926, 28.66574072518527 ], [ -82.145521271939316, 28.66515670405321 ], [ -82.145980128942441, 28.664378053429068 ], [ -82.146318732825435, 28.663839595046255 ], [ -82.146497030121139, 28.663583948589135 ], [ -82.146745703851707, 28.663220872889063 ], [ -82.146889659030236, 28.662909027709933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143119820113256, 28.668622178519854 ], [ -82.143011894668874, 28.668622345088124 ], [ -82.14262317932662, 28.668623709030584 ], [ -82.142281437012372, 28.66861712650504 ], [ -82.142171008652966, 28.668615466892327 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143119820113256, 28.668622178519854 ], [ -82.143209621059668, 28.668693322358944 ], [ -82.143242958818661, 28.668721974248292 ], [ -82.143261160451999, 28.668742050944054 ], [ -82.143283737422379, 28.668770060849628 ], [ -82.143295909572842, 28.668787609231266 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143505217547343, 28.668621579117122 ], [ -82.143545633626189, 28.668568688763433 ], [ -82.143568915075136, 28.668533258531184 ], [ -82.143625937354287, 28.668424331178354 ], [ -82.143658774767388, 28.66836585251621 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145068756276871, 28.668671603328594 ], [ -82.145365437662718, 28.668669377740692 ], [ -82.145554723729802, 28.668669693566162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143507107625993, 28.668843550775843 ], [ -82.143836961744015, 28.668813735470948 ], [ -82.144244023932657, 28.668767467532813 ], [ -82.144573158082679, 28.668742671772172 ], [ -82.144907488443948, 28.668719397332659 ], [ -82.145068756276871, 28.668671603328594 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143383158750467, 28.668942678818841 ], [ -82.143427875481095, 28.668902843425606 ], [ -82.143507107625993, 28.668843550775843 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.144817636009833, 28.668621308339723 ], [ -82.144696786476004, 28.668567589192481 ], [ -82.144601916442326, 28.668560746479134 ], [ -82.143814522777646, 28.668557064680488 ], [ -82.143772936312374, 28.668551378765475 ], [ -82.143726121805798, 28.668523924181315 ], [ -82.143697497435497, 28.668495306239155 ], [ -82.143670156789398, 28.66845522551673 ], [ -82.143662309795161, 28.668418563923574 ], [ -82.143658774767388, 28.66836585251621 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140347799918445, 28.672590070997749 ], [ -82.140465277623832, 28.672391298954768 ], [ -82.140673766389938, 28.672044361168741 ], [ -82.140792967686878, 28.671855405318041 ], [ -82.141002135225293, 28.671527213143229 ], [ -82.141139330231624, 28.671312397380284 ], [ -82.141312523295667, 28.671051827508371 ], [ -82.141537464107827, 28.670723619918739 ], [ -82.141730908452828, 28.670439175315217 ], [ -82.142232513627121, 28.669705182292628 ], [ -82.142725516012263, 28.66898726598879 ], [ -82.14292635756776, 28.668697864383422 ], [ -82.143031896180744, 28.668544640530175 ], [ -82.14319872794141, 28.668297847130653 ], [ -82.143617330013313, 28.667686223655139 ], [ -82.143856962384788, 28.667334806658921 ], [ -82.1443968889714, 28.666546130471129 ], [ -82.145173397931458, 28.665411396651848 ], [ -82.145616008068473, 28.664760690063307 ], [ -82.145903881537663, 28.664348523263868 ], [ -82.146419733701876, 28.663598759556603 ], [ -82.146889659030236, 28.662909027709933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139078627307896, 28.674934856792714 ], [ -82.1391276539361, 28.674904529919122 ], [ -82.139178709268393, 28.674863986566528 ], [ -82.13950403961654, 28.674241396322213 ], [ -82.139703873045207, 28.673915181083878 ], [ -82.139924807711878, 28.673561273878224 ], [ -82.140374074160107, 28.672839754229972 ], [ -82.140590204609552, 28.672513312397488 ], [ -82.140802893891632, 28.672206737689105 ], [ -82.140955068804587, 28.671992668217712 ], [ -82.141174713252454, 28.671706713912361 ], [ -82.141423768186414, 28.671389405177063 ], [ -82.141625268284443, 28.671139375436081 ], [ -82.141838000121098, 28.670868708198707 ], [ -82.142088788369577, 28.670555216877574 ], [ -82.142221126953544, 28.670409922500014 ], [ -82.142333548277605, 28.670269232645168 ], [ -82.142643998267602, 28.669877753463361 ], [ -82.143090213045312, 28.669316526934107 ], [ -82.143383158750467, 28.668942678818841 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141797797171193, 28.669048639472809 ], [ -82.141770167681841, 28.669114371521726 ], [ -82.141562776127074, 28.669490463425053 ], [ -82.141377851511322, 28.66982527617003 ], [ -82.141234405704324, 28.670085177386966 ], [ -82.14104947185038, 28.67041540582305 ], [ -82.140785062525097, 28.670910736359527 ], [ -82.140650285741756, 28.671176738554372 ], [ -82.140548342735087, 28.67138311676106 ], [ -82.140344427052369, 28.67177295373677 ], [ -82.140152614713017, 28.672144445267339 ], [ -82.140004010888433, 28.672439491710598 ], [ -82.139799760823621, 28.67285256770365 ], [ -82.139590656151483, 28.673253104129731 ], [ -82.139405712280933, 28.673604710940907 ], [ -82.139231032031191, 28.673949804796852 ], [ -82.139192368974733, 28.674028629551909 ], [ -82.139172551134791, 28.674108103674595 ], [ -82.139163171838732, 28.674221944148638 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105688161637843, 28.748831296660605 ], [ -82.10564701957594, 28.748889827878667 ], [ -82.105556981097394, 28.749007548658792 ], [ -82.105456546427135, 28.749129862116487 ], [ -82.105356089551961, 28.749232309998376 ], [ -82.105257350608994, 28.749319479268006 ], [ -82.105125683820972, 28.749420424340386 ], [ -82.105007864955539, 28.749499969080919 ], [ -82.104883111648959, 28.749577988715217 ], [ -82.104713288092896, 28.749666738979084 ], [ -82.104560778437957, 28.749731030051304 ], [ -82.104370128218747, 28.7497968768817 ], [ -82.104228018976798, 28.749833445706471 ], [ -82.104129431113748, 28.749854530695547 ], [ -82.104009167709862, 28.749872767277861 ], [ -82.103888221903134, 28.749884337017953 ], [ -82.103740449346731, 28.749893025196954 ], [ -82.103586585582562, 28.749902691447268 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103586585582562, 28.749902691447268 ], [ -82.103496664833614, 28.749922813831411 ], [ -82.103377471359053, 28.749927680241026 ], [ -82.103305957265533, 28.749933463282147 ], [ -82.103196518195816, 28.749940230552063 ], [ -82.103100618367435, 28.749951525272749 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103586585582562, 28.749902691447268 ], [ -82.103513967541431, 28.749887467582681 ], [ -82.103455451321011, 28.749886557337554 ], [ -82.103416276602516, 28.749880666020143 ], [ -82.103382679371222, 28.749873053344359 ], [ -82.103341637705952, 28.749853220745383 ], [ -82.103291756969867, 28.749817924523814 ], [ -82.103235371675666, 28.749780723895615 ], [ -82.103139418019211, 28.749715142676234 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 607B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133165958652597, 28.655036884223936 ], [ -82.133169227815429, 28.654732092476017 ], [ -82.133174117841932, 28.654526534214884 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 607D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131262654813924, 28.655026474332093 ], [ -82.131496054705394, 28.65502870108747 ], [ -82.132117111701703, 28.655029786286239 ], [ -82.132637625671777, 28.655030312292045 ], [ -82.132976522926299, 28.65503153058998 ], [ -82.133052032933705, 28.655032093068442 ], [ -82.133165958652597, 28.655036884223936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tustenugee Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119371189842838, 28.676298797152892 ], [ -82.119394387641975, 28.676325336969708 ], [ -82.119433800704485, 28.676351862583683 ], [ -82.119510288004747, 28.676382444167469 ], [ -82.119613869426317, 28.676415183785295 ], [ -82.119716551220904, 28.676447641683581 ], [ -82.119846323557425, 28.676478175391022 ], [ -82.120038652699535, 28.67651478165946 ], [ -82.12022632907977, 28.676533004951629 ], [ -82.120395461363628, 28.676543070136599 ], [ -82.120522885114525, 28.676547044244725 ], [ -82.120782362352415, 28.676546815586612 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jumper Drive South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119371189842838, 28.676298797152892 ], [ -82.119297252745113, 28.676474570113598 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ft Foster Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11969820560752, 28.674574128113242 ], [ -82.119293157505012, 28.674903423432571 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jumper Drive South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119293157505012, 28.674903423432571 ], [ -82.119365084904743, 28.674999387523616 ], [ -82.119443979248715, 28.675111688501438 ], [ -82.119492736124485, 28.675205629030156 ], [ -82.119529909857391, 28.675299579691679 ], [ -82.119550862890989, 28.675389456097026 ], [ -82.119564882106857, 28.675495687919629 ], [ -82.119562684916261, 28.675599887468309 ], [ -82.119546594201452, 28.675712273414131 ], [ -82.119521232731543, 28.675818535236768 ], [ -82.119493540103633, 28.675914585606765 ], [ -82.119463534308849, 28.676012681776513 ], [ -82.119424294018216, 28.676139389928011 ], [ -82.119387357494588, 28.676255877147145 ], [ -82.119371189842838, 28.676298797152892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jumper Drive South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115525874601573, 28.674596113263423 ], [ -82.117536766706309, 28.674602568816223 ], [ -82.118516732370907, 28.674607849511336 ], [ -82.118704398190985, 28.674619943591185 ], [ -82.118838795208049, 28.674646388495088 ], [ -82.11895931550464, 28.674691230373952 ], [ -82.119065945805517, 28.67474630227337 ], [ -82.119174902154015, 28.674811586448588 ], [ -82.119293157505012, 28.674903423432571 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ft Brooke Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115525874601573, 28.674596113263423 ], [ -82.115533605675708, 28.675309151670422 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jumper Drive South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114251117255279, 28.674917546033626 ], [ -82.114305262470594, 28.674858659639309 ], [ -82.114352702557341, 28.674798549867347 ], [ -82.114416329188373, 28.674733936503007 ], [ -82.114508922130895, 28.674664393725429 ], [ -82.114589968541296, 28.674629591326291 ], [ -82.114673347914405, 28.674609091580781 ], [ -82.114772946688007, 28.674592663897954 ], [ -82.114863290860001, 28.674586457425313 ], [ -82.115525874601573, 28.674596113263423 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jumper Drive South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114195542260944, 28.674942109811795 ], [ -82.114225187643726, 28.674933911676362 ], [ -82.114251117255279, 28.674917546033626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jumper Drive South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114288708004551, 28.67540132306965 ], [ -82.114216431126849, 28.675404652742404 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jumper Drive South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113899429990084, 28.675334634243075 ], [ -82.114216431126849, 28.675404652742404 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jumper Drive South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114235622137116, 28.676011029593962 ], [ -82.114254141665796, 28.675997939303816 ], [ -82.114272655870309, 28.675979943941897 ], [ -82.114287455284426, 28.675953780175739 ], [ -82.114291120428035, 28.675916183270537 ], [ -82.114285526843418, 28.675885133317077 ], [ -82.11426511081811, 28.675858999047186 ], [ -82.114233579573749, 28.675836142325657 ], [ -82.114203917993933, 28.675829629766046 ], [ -82.114172408772617, 28.675828022015274 ], [ -82.114139057215866, 28.675836221434405 ], [ -82.114103852420669, 28.675846058322165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jumper Drive South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114103852420669, 28.675846058322165 ], [ -82.114092756654031, 28.675867315702511 ], [ -82.114087226091627, 28.675893470795128 ], [ -82.11408354541966, 28.675919627047644 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Etheredge Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114843981974715, 28.669479116001209 ], [ -82.11484385620787, 28.670330802242376 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Parker Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113984520881431, 28.669483435170807 ], [ -82.114843981974715, 28.669479116001209 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Palm Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113315675783483, 28.670308829492146 ], [ -82.11484385620787, 28.670330802242376 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Wall Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113307987332831, 28.669486835548103 ], [ -82.113315675783483, 28.670308829492146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Wall Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113320624809177, 28.66858382404823 ], [ -82.113307987332831, 28.669486835548103 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Wall Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113314955020087, 28.66761619264626 ], [ -82.11332046574023, 28.668436822494307 ], [ -82.113320624809177, 28.66858382404823 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Belt Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113320624809177, 28.66858382404823 ], [ -82.114752648353473, 28.668570627174766 ], [ -82.114828157247842, 28.668566963344684 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Belt Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114828157247842, 28.668566963344684 ], [ -82.117590280282769, 28.668579435118229 ], [ -82.118780989300674, 28.668578403549869 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Etheredge Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114890100689109, 28.662044808746071 ], [ -82.114872970449667, 28.662748515864813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Bostick Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114890100689109, 28.662044808746071 ], [ -82.115338517984796, 28.662034831457685 ], [ -82.115461004252012, 28.662041621701253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114891426149214, 28.661263367107971 ], [ -82.115276722691988, 28.66126304217811 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Etheredge Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114891426149214, 28.661263367107971 ], [ -82.114890100689109, 28.662044808746071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115276722691988, 28.66126304217811 ], [ -82.116219289808043, 28.661266082096418 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 622G", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.259986243812889, 28.665019507509538 ], [ -82.260051476748288, 28.665044017270279 ], [ -82.260079499152653, 28.665080917278416 ], [ -82.260091238649068, 28.665121952440757 ], [ -82.260093885228784, 28.665251282674937 ], [ -82.260093502007024, 28.665890336261445 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 622G", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256526907532333, 28.665476322771809 ], [ -82.256607579742635, 28.665440666422356 ], [ -82.256698297098367, 28.665415858578672 ], [ -82.256913203110628, 28.665386868525971 ], [ -82.257538316534806, 28.665313664464776 ], [ -82.258252675801842, 28.665224022359986 ], [ -82.259709328870059, 28.665048781435253 ], [ -82.25983963074269, 28.665030054641537 ], [ -82.259893149542592, 28.665023793238028 ], [ -82.259942019557585, 28.665019592659856 ], [ -82.259986243812889, 28.665019507509538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 622", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.260080831427402, 28.666792510892407 ], [ -82.259098038333036, 28.666901294941368 ], [ -82.258664187445149, 28.666951836156461 ], [ -82.257610152505606, 28.667087273462794 ], [ -82.25751476894574, 28.667107985221879 ], [ -82.257440349737976, 28.667134815333522 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 61st Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252360608777053, 28.665830519586287 ], [ -82.252702626789826, 28.665770343226086 ], [ -82.253102867148399, 28.665724430064653 ], [ -82.253677599887027, 28.665645339562797 ], [ -82.253841910285203, 28.665612696652005 ], [ -82.253999011199724, 28.665607267821958 ], [ -82.254057196255232, 28.665604593017907 ], [ -82.25411539781723, 28.665609615026348 ], [ -82.254185238660398, 28.665614616900701 ], [ -82.25424346601595, 28.665629903702996 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 90th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252360608777053, 28.665830519586287 ], [ -82.252407003538508, 28.665764738766708 ], [ -82.25243011188924, 28.665694894973605 ], [ -82.252429925066266, 28.665616883538782 ], [ -82.25242281593097, 28.665563520441921 ], [ -82.252410994771296, 28.665487583557685 ], [ -82.252392213342091, 28.663885236758222 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 61st Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252269930347396, 28.665871747752838 ], [ -82.252360608777053, 28.665830519586287 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 622A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252288207659362, 28.666701103963153 ], [ -82.252288786839443, 28.665970254995536 ], [ -82.252283989437458, 28.665910728273985 ], [ -82.252269930347396, 28.665871747752838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 83rd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.223972388456659, 28.634475479363584 ], [ -82.224336865443163, 28.634487184839198 ], [ -82.224719350485813, 28.634496079495488 ], [ -82.224978040700364, 28.634481757772214 ], [ -82.225626078452592, 28.634475769475273 ], [ -82.226023345525434, 28.634472704365159 ], [ -82.226155802066231, 28.63445804506593 ], [ -82.226158531813908, 28.634458039625351 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 632", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.22399881198028, 28.640035485784846 ], [ -82.22400838384948, 28.639576475408937 ], [ -82.224009372213104, 28.638385566353787 ], [ -82.224005381840044, 28.638162276856754 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.220728019831512, 28.640035499777582 ], [ -82.221772666985004, 28.640036033041241 ], [ -82.223143692676871, 28.640039993499865 ], [ -82.223632329038395, 28.640036089706868 ], [ -82.22399881198028, 28.640035485784846 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 70th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.220790028045215, 28.642788379322727 ], [ -82.220769508883947, 28.642659397893659 ], [ -82.220674164805104, 28.642254643989816 ], [ -82.220673582615248, 28.641976767713995 ], [ -82.220699372203029, 28.641399134022759 ], [ -82.220731644331607, 28.640692477694845 ], [ -82.220733229187218, 28.640374899665652 ], [ -82.220725370045159, 28.640180397228974 ], [ -82.220728019831512, 28.640035499777582 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.209482433859336, 28.640018124788391 ], [ -82.210119613564913, 28.64001714135879 ], [ -82.213632057384004, 28.640020527816585 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 631", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203528466629834, 28.630770974964445 ], [ -82.204120271062635, 28.630774532681333 ], [ -82.20435195881322, 28.630776404747511 ], [ -82.204518178157485, 28.630782821523393 ], [ -82.204646640326331, 28.63079818287957 ], [ -82.204780152389034, 28.630820199360951 ], [ -82.204928826046967, 28.630868856895685 ], [ -82.205024561073458, 28.630903745884044 ], [ -82.205118035274438, 28.630953036779037 ], [ -82.205241447283228, 28.631031942230845 ], [ -82.205544406876641, 28.631242393286396 ], [ -82.205664098386819, 28.631327894624668 ], [ -82.205768797590892, 28.631387054088531 ], [ -82.205869731801272, 28.631429742521778 ], [ -82.20597812868462, 28.631469123353508 ], [ -82.206090234938031, 28.63149531716569 ], [ -82.206206069834096, 28.631518209906503 ], [ -82.20645262085246, 28.631534314557538 ], [ -82.209244538979277, 28.631541576847471 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170089273516197, 28.668901733572682 ], [ -82.171095660097706, 28.668910673957534 ], [ -82.171454255440125, 28.668912262869203 ], [ -82.173573464211856, 28.668938141750271 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174140277968192, 28.668941498001018 ], [ -82.174878290982363, 28.668944633797594 ], [ -82.17536413841259, 28.668952170188341 ], [ -82.1767615241736, 28.668970764906387 ], [ -82.17855451925719, 28.668988830283588 ], [ -82.179750667412179, 28.668999880868679 ], [ -82.181088955423945, 28.669013401787211 ], [ -82.182629578276675, 28.669029187127801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.162518163303346, 28.640082552171837 ], [ -82.162591222785665, 28.639976580448515 ], [ -82.16276016296041, 28.63972850537154 ], [ -82.163253759581991, 28.639003892507326 ], [ -82.163910650843988, 28.638042551272374 ], [ -82.164318900579531, 28.637449708581475 ], [ -82.164490163316998, 28.637197503898093 ], [ -82.16468919868106, 28.63692272868051 ], [ -82.164858777674198, 28.636679996467667 ], [ -82.16501277236614, 28.636476286378471 ], [ -82.165204853995462, 28.636226877147319 ], [ -82.16540302885403, 28.635972503708011 ], [ -82.165580557004276, 28.635742291651791 ], [ -82.16577462193942, 28.635497278069643 ], [ -82.165901611594961, 28.63534413422466 ], [ -82.166026461966453, 28.635193403004777 ], [ -82.166243104423742, 28.634935297198052 ], [ -82.166484651160516, 28.634653779273073 ], [ -82.166664948118452, 28.634453129223044 ], [ -82.166849912726548, 28.634246284991427 ], [ -82.167011339030637, 28.634063534666339 ], [ -82.167208625558786, 28.633851545950868 ], [ -82.167420125995363, 28.633625621842903 ], [ -82.167595523558361, 28.633443052152145 ], [ -82.167685799369266, 28.633347204994834 ], [ -82.167832822886709, 28.633194301733937 ], [ -82.16809334223781, 28.632927287833159 ], [ -82.168291975117967, 28.632735569544451 ], [ -82.168521557243835, 28.632509623156693 ], [ -82.168756310529247, 28.632288227669036 ], [ -82.169042666467661, 28.632023458308112 ], [ -82.169241305862812, 28.63183857560551 ], [ -82.169494131253046, 28.63161031936896 ], [ -82.169705690320896, 28.631425421706695 ], [ -82.169899189932323, 28.631258781552919 ], [ -82.170028206810599, 28.631158326787226 ], [ -82.170265564107652, 28.630952881421432 ], [ -82.170500355474942, 28.630758835356726 ], [ -82.170691287630916, 28.630603595589612 ], [ -82.170920915344084, 28.630411835465271 ], [ -82.171207331000829, 28.630190369951425 ], [ -82.171491158363253, 28.629966630492095 ], [ -82.17211814011641, 28.629464363453561 ], [ -82.17287154118462, 28.628859359994358 ], [ -82.173648174571099, 28.628247483891133 ], [ -82.173952640537308, 28.6280123146115 ], [ -82.174642471982636, 28.627461519903601 ], [ -82.174956293229997, 28.627210947907926 ], [ -82.176060560307263, 28.626334223096475 ], [ -82.176555923866914, 28.625939239005284 ], [ -82.177112641325266, 28.625495399304153 ], [ -82.177128682077921, 28.625482610376693 ], [ -82.177384109265617, 28.625283966854951 ], [ -82.177528585558591, 28.625167527839441 ], [ -82.177936227746955, 28.624847874495792 ], [ -82.178356748328582, 28.624505409118342 ], [ -82.179205557888935, 28.623838700432909 ], [ -82.180358770406926, 28.622923125991957 ], [ -82.181553228642983, 28.621966455617066 ], [ -82.182329756002076, 28.621352251175068 ], [ -82.183178505284403, 28.62067867871292 ], [ -82.184029819960216, 28.620000538826051 ], [ -82.184568974599486, 28.619568996299183 ], [ -82.185464132404661, 28.618861156059083 ], [ -82.18651147109486, 28.618027730745137 ], [ -82.186841660432279, 28.617765143632258 ], [ -82.18784771001306, 28.616968237057957 ], [ -82.188848576251146, 28.616171330157819 ], [ -82.189965517325348, 28.615287634024948 ], [ -82.191234617483275, 28.614278347809531 ], [ -82.19186140896872, 28.613773711600565 ], [ -82.193380666947832, 28.61256346183762 ], [ -82.194692081576562, 28.611527795140656 ], [ -82.195513765828011, 28.610866793827071 ], [ -82.195707217595981, 28.610716071775133 ], [ -82.196014154065381, 28.610474012065346 ], [ -82.196566102172298, 28.610028725459454 ], [ -82.197231550042162, 28.609503493798332 ], [ -82.197618418568894, 28.609188368693339 ], [ -82.197884084422213, 28.608982834427092 ], [ -82.198196177622236, 28.608740760449884 ], [ -82.198430874569482, 28.608548946019116 ], [ -82.198686197216318, 28.608338865725852 ], [ -82.198977620770705, 28.608096820094516 ], [ -82.199238062723325, 28.607861657086904 ], [ -82.199467557971019, 28.607653892403771 ], [ -82.199733135519864, 28.607405044165951 ], [ -82.200011575224366, 28.60712882481895 ], [ -82.20018428860746, 28.606946214682495 ], [ -82.200415200092138, 28.606701163462176 ], [ -82.200722497245451, 28.60635451141788 ], [ -82.200988554163729, 28.606036799798581 ], [ -82.201154482734509, 28.605817558949699 ], [ -82.201326447729443, 28.605597966080051 ], [ -82.201542299502634, 28.605307829954384 ], [ -82.201550459098115, 28.605296128978832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 32nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156871920232192, 28.647166829198714 ], [ -82.157017425538726, 28.646928484953495 ], [ -82.157035782293178, 28.646750516201614 ], [ -82.157066696359124, 28.646671088655165 ], [ -82.157162701796921, 28.646536833261962 ], [ -82.157376337846273, 28.646202592886645 ], [ -82.157611650370754, 28.645838212566698 ], [ -82.157664256871854, 28.64573686011299 ], [ -82.157688980761606, 28.645668389410165 ], [ -82.15770128796099, 28.645597196295491 ], [ -82.157689654612014, 28.644042223406082 ], [ -82.157693176152605, 28.642246319061908 ], [ -82.157683784431313, 28.642191577137524 ], [ -82.157671278172813, 28.642128624859573 ], [ -82.157677352829779, 28.642041014618894 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 614", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153514942470835, 28.652060094940641 ], [ -82.153721396067724, 28.651766849941207 ], [ -82.154561709472873, 28.65053403903223 ], [ -82.155400942402508, 28.649301142756602 ], [ -82.156023384616233, 28.648383318548969 ], [ -82.156360952713484, 28.647906581965447 ], [ -82.156871920232192, 28.647166829198714 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 614A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153514942470835, 28.652060094940641 ], [ -82.153511464329512, 28.651802758631927 ], [ -82.153533715871205, 28.648665407866488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 25th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145611663315989, 28.648635755546461 ], [ -82.145600709915826, 28.648520789073416 ], [ -82.14560400924023, 28.647982358885073 ], [ -82.145631996954265, 28.647759471271687 ], [ -82.145641921423376, 28.647629311522628 ], [ -82.145647423906937, 28.647222810173474 ], [ -82.145645061975301, 28.6469767775931 ], [ -82.14562661662238, 28.64678959532122 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148462656038902, 28.668679160898133 ], [ -82.148777094276014, 28.668677671853324 ], [ -82.149733406717715, 28.66867776989557 ], [ -82.150218061947911, 28.66867838219714 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 27th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148462656038902, 28.668679160898133 ], [ -82.148471025281623, 28.667482419657482 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Old 313", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141338881028361, 28.675979707579444 ], [ -82.142637615921004, 28.675990515553181 ], [ -82.144198370881327, 28.675982791522291 ], [ -82.145290210886458, 28.675979603758169 ], [ -82.145444221035504, 28.675981466930683 ], [ -82.145561408582694, 28.675950934999804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 55th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145561408582694, 28.675950934999804 ], [ -82.145644184589997, 28.675969089840599 ], [ -82.146879723790192, 28.675991076587895 ], [ -82.148580687519427, 28.675979093885395 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145554723729802, 28.668669693566162 ], [ -82.147419286556641, 28.668678002164228 ], [ -82.148062459545756, 28.668678451437245 ], [ -82.148462656038902, 28.668679160898133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Old 313", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145549516377471, 28.673292535057048 ], [ -82.145545360762426, 28.67265278118839 ], [ -82.145557978431185, 28.671803391425541 ], [ -82.145556064388245, 28.670416823885777 ], [ -82.145555649011854, 28.67011680626965 ], [ -82.145557634379259, 28.669889763957574 ], [ -82.145554723729802, 28.668669693566162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 60th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.240902100670752, 28.66912001198266 ], [ -82.241082536247291, 28.66910147128657 ], [ -82.241469485919609, 28.669131327253446 ], [ -82.241885958168893, 28.669134334903351 ], [ -82.243802557647868, 28.669134656513293 ], [ -82.245085874569, 28.669098617263263 ], [ -82.247736311385054, 28.669107348905975 ], [ -82.249018903624233, 28.669115269467106 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 42nd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.240340822917375, 28.696379046049323 ], [ -82.240325159017061, 28.696256994513988 ], [ -82.240334986752487, 28.696069333080718 ], [ -82.24033979996824, 28.695931419416368 ], [ -82.240431560527824, 28.695693877674135 ], [ -82.240492757050404, 28.695544558941396 ], [ -82.240515186008608, 28.695261925224468 ], [ -82.24064345666109, 28.695093736397091 ], [ -82.240782163439732, 28.694919010544137 ], [ -82.240965903047083, 28.694732114400125 ], [ -82.241055852965303, 28.694655943767497 ], [ -82.241122372605062, 28.694614362923144 ], [ -82.241177174579803, 28.694590081490585 ], [ -82.241237862528564, 28.694569243685827 ], [ -82.241324015462141, 28.694546633561849 ], [ -82.241392571802251, 28.694539600829042 ], [ -82.241472739965729, 28.694530744571871 ], [ -82.24150315877138, 28.694533783664234 ], [ -82.241660977578675, 28.694535668554707 ], [ -82.242035328476618, 28.694597193015053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 626", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.244323232266737, 28.703238963058745 ], [ -82.244580861126593, 28.703191119136772 ], [ -82.245531956288133, 28.702891919931616 ], [ -82.245696821357441, 28.702801596814886 ], [ -82.24574539642569, 28.702770532115125 ], [ -82.245883252263738, 28.702779813830102 ], [ -82.247018134471517, 28.702797089193364 ], [ -82.247751220089981, 28.70279033522856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.196813981665215, 28.690924536409476 ], [ -82.196967708152485, 28.690938857495713 ], [ -82.197133517638974, 28.690950813030334 ], [ -82.198484656307031, 28.690940905712122 ], [ -82.200639355113751, 28.690951508588885 ], [ -82.202896674265006, 28.690956314257789 ], [ -82.203458689831209, 28.690957514384138 ], [ -82.203886556773355, 28.690954834032997 ], [ -82.204915749942188, 28.690949207889776 ], [ -82.206768303850893, 28.690942323917366 ], [ -82.208110881354614, 28.690936196391206 ], [ -82.208228850392715, 28.690944171850855 ], [ -82.208404663789736, 28.690964295891057 ], [ -82.208578173677239, 28.690988504464329 ], [ -82.208770213406552, 28.691026956466196 ], [ -82.208953244891276, 28.691065336322982 ], [ -82.209143240169666, 28.691124840429687 ], [ -82.209331558061251, 28.691190327477429 ], [ -82.209503841661601, 28.691260355126751 ], [ -82.209668206076103, 28.691337597148618 ], [ -82.209832582923966, 28.691420957631347 ], [ -82.209990037195254, 28.691512486549207 ], [ -82.210149828857382, 28.691616248127552 ], [ -82.210291116196998, 28.691717999789724 ], [ -82.210532069123033, 28.691927680411784 ], [ -82.211278150869305, 28.692599516110256 ], [ -82.211505215058352, 28.692801059512998 ], [ -82.211961697779316, 28.69322249931934 ], [ -82.212179492106245, 28.693413859726174 ], [ -82.212932562022189, 28.69409995088726 ], [ -82.21367173307047, 28.694769742834936 ], [ -82.214687816562915, 28.695689938432103 ], [ -82.21516051725979, 28.696113379913925 ], [ -82.215728295237739, 28.696654952058147 ], [ -82.216903434758606, 28.697858348322757 ], [ -82.21727433447235, 28.698257473605558 ], [ -82.217944163122894, 28.69892327396207 ], [ -82.218599011138977, 28.69961152863856 ], [ -82.219857713782858, 28.700922851810841 ], [ -82.220179889708035, 28.701240471154279 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 317", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170072416078867, 28.671571638810587 ], [ -82.170080906926813, 28.67088502016745 ], [ -82.170088057827101, 28.669581191448174 ], [ -82.170089273516197, 28.668901733572682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 317", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170053422346925, 28.674253920227571 ], [ -82.170055256812518, 28.673856379930136 ], [ -82.170052485724895, 28.673672904374836 ], [ -82.170072416078867, 28.671571638810587 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 45th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.180125836230019, 28.682259622268749 ], [ -82.180156723466311, 28.68208911692119 ], [ -82.180150136292525, 28.681882918124831 ], [ -82.180180815434994, 28.681591437737513 ], [ -82.180168222149803, 28.681519970077311 ], [ -82.180158746633396, 28.681448498286152 ], [ -82.18012119625655, 28.681368813671703 ], [ -82.180068011227519, 28.681261654861576 ], [ -82.179980548908034, 28.681165541681093 ], [ -82.179752585675985, 28.68095138734698 ], [ -82.179605787491582, 28.680797613145042 ], [ -82.179421380327355, 28.680528412762587 ], [ -82.179293159535064, 28.680297628751045 ], [ -82.179261902825388, 28.68025093017097 ], [ -82.179227554449412, 28.680220732948516 ], [ -82.17918700076693, 28.680207038475718 ], [ -82.179112137190543, 28.68018514187446 ], [ -82.179024808484712, 28.680166010131611 ], [ -82.178803359078216, 28.680114061894017 ], [ -82.17875965409884, 28.680081125645781 ], [ -82.178722143614195, 28.680023438464652 ], [ -82.178700216019678, 28.679962979601573 ], [ -82.178672049398799, 28.679899779529912 ], [ -82.178622030913786, 28.67982011175306 ], [ -82.178568828536044, 28.679701956556087 ], [ -82.178521903599759, 28.679608535881332 ], [ -82.178496822268315, 28.679526085930394 ], [ -82.178474806408389, 28.679413387664539 ], [ -82.17846929187553, 28.678758964893568 ], [ -82.178476159818089, 28.678371352883001 ], [ -82.178488416191044, 28.678244861737387 ], [ -82.178500766727652, 28.678173361155572 ], [ -82.178513129175471, 28.678110107851584 ], [ -82.178503687707732, 28.678057880752103 ], [ -82.17846680100439, 28.678029064512327 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 317", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170055119088559, 28.676209289017368 ], [ -82.170051676664727, 28.676163350266545 ], [ -82.170053422346925, 28.674253920227571 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 317B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170055119088559, 28.676209289017368 ], [ -82.171429759162436, 28.676216610170119 ], [ -82.172870142878224, 28.676236783204001 ], [ -82.173671397519342, 28.676249510840655 ], [ -82.174672213628327, 28.676281221703992 ], [ -82.175890535066969, 28.676315846545275 ], [ -82.175964269737506, 28.67631936413931 ], [ -82.176021083919679, 28.676334346935036 ], [ -82.176058551611817, 28.676362590120522 ], [ -82.176091393152788, 28.67640589646636 ], [ -82.176099683306276, 28.676463681789908 ], [ -82.176099767831971, 28.676514254579729 ], [ -82.176095038897714, 28.677876463303928 ], [ -82.176103488790545, 28.677907926539689 ], [ -82.176118234328882, 28.677937530946984 ], [ -82.176137157362589, 28.677954167974494 ], [ -82.176153976707653, 28.677968957946447 ], [ -82.176181283638371, 28.677978178690868 ], [ -82.176214884170477, 28.67798554150243 ], [ -82.176261074933478, 28.677987332350344 ], [ -82.177226805822102, 28.67799903799574 ], [ -82.178331090568278, 28.678006852952066 ], [ -82.178431864290971, 28.678008571503035 ], [ -82.17846680100439, 28.678029064512327 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 607", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12906202458268, 28.655010819690293 ], [ -82.12906188064234, 28.654893202393538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128079998015011, 28.66504125557136 ], [ -82.128235012619797, 28.665038640185159 ], [ -82.128575107804309, 28.665042788251853 ], [ -82.129663302550256, 28.665024515933389 ], [ -82.130294983584164, 28.66502060304715 ], [ -82.131663460515981, 28.665007296271632 ], [ -82.1320773770491, 28.665009082226213 ], [ -82.133039028517572, 28.664992844441326 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124936575377134, 28.664941221112169 ], [ -82.125162730322359, 28.664947776718392 ], [ -82.125485116529617, 28.664973953084164 ], [ -82.125703635014773, 28.665008474495405 ], [ -82.125955466380859, 28.665033337800125 ], [ -82.126255023823703, 28.665036842455425 ], [ -82.126568418626334, 28.665040676491518 ], [ -82.126882006178917, 28.665043137174916 ], [ -82.127236707277305, 28.665039367869792 ], [ -82.127518329155208, 28.665038417211623 ], [ -82.127847311084352, 28.665037765358601 ], [ -82.127933451437642, 28.665040607218831 ], [ -82.128079998015011, 28.66504125557136 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 601B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122176479602714, 28.662576045078072 ], [ -82.122164066458808, 28.661380093869621 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Flannery Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119818134909423, 28.662743705150916 ], [ -82.120839356160801, 28.662740138866415 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Flannery Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118775640694722, 28.662743877754188 ], [ -82.119818134909423, 28.662743705150916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Flannery Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11671417336251, 28.662739044493463 ], [ -82.118775640694722, 28.662743877754188 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dogwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121480859429838, 28.666303319151019 ], [ -82.121262170553635, 28.666298808083507 ], [ -82.121185721222744, 28.666298876929826 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ash Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121480859429838, 28.666303319151019 ], [ -82.121479606174759, 28.666759629856543 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dogwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122112016890583, 28.666305891150206 ], [ -82.121480859429838, 28.666303319151019 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elm Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122112016890583, 28.666305891150206 ], [ -82.12211466513979, 28.66705699671601 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Redwood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123460643794658, 28.665620994909418 ], [ -82.123454346204312, 28.666314090424841 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Redwood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123454346204312, 28.666314090424841 ], [ -82.123454900831831, 28.666787648483901 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magnolia Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124140624418686, 28.666321306921319 ], [ -82.124143202173371, 28.667000281829228 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dogwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124140624418686, 28.666321306921319 ], [ -82.123454346204312, 28.666314090424841 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orange Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124146537270605, 28.665303621010228 ], [ -82.124832806249884, 28.665307699317015 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magnolia Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124146537270605, 28.665303621010228 ], [ -82.124146782885248, 28.665512175137561 ], [ -82.124148847226635, 28.665755224682393 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124148847226635, 28.665755224682393 ], [ -82.124769335913086, 28.665757794014613 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magnolia Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124148847226635, 28.665755224682393 ], [ -82.124140624418686, 28.666321306921319 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Willow Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124779471251642, 28.667467968353893 ], [ -82.124143302865292, 28.667463648400183 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magnolia Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124143202173371, 28.667000281829228 ], [ -82.124143302865292, 28.667463648400183 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Banyan Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122816005975665, 28.667969574309559 ], [ -82.122815403602758, 28.667452598838135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elm Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12211534335205, 28.667450778515061 ], [ -82.12211466513979, 28.66705699671601 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Willow Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122815403602758, 28.667452598838135 ], [ -82.12211534335205, 28.667450778515061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elm Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122115872345859, 28.667906498325223 ], [ -82.12211534335205, 28.667450778515061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evergreen Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12211466513979, 28.66705699671601 ], [ -82.121592622146267, 28.667054326605939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116219289808043, 28.661266082096418 ], [ -82.116761317151798, 28.661265619363821 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Broad Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115276722691988, 28.66126304217811 ], [ -82.115273555958282, 28.660358722665382 ], [ -82.115277868512962, 28.65932431629728 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Seminole Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116712112031891, 28.657619092241397 ], [ -82.117932273605817, 28.657630474613843 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Highland Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116761023944761, 28.658542571884936 ], [ -82.11675628202822, 28.658191215301756 ], [ -82.116736173077641, 28.657724671789648 ], [ -82.116712112031891, 28.657619092241397 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South York Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118761491555162, 28.658561966315204 ], [ -82.118755472563777, 28.657638483488405 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Collins Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116761023944761, 28.658542571884936 ], [ -82.117903834758309, 28.658551190938443 ], [ -82.118761491555162, 28.658561966315204 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Westwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117932273605817, 28.657630474613843 ], [ -82.117930092063133, 28.656727161773667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Park Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994770333256994, 28.651660218078227 ], [ -81.994226413367883, 28.651662984882464 ], [ -81.993736253118215, 28.651649014690218 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Washington Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992682463896941, 28.650020479472939 ], [ -81.992734364831492, 28.650084073579933 ], [ -81.99276031453627, 28.650127317656029 ], [ -81.992763194850966, 28.650175646914356 ], [ -81.992763188391706, 28.650269762327909 ], [ -81.992771810551076, 28.650674197754782 ], [ -81.992768642276857, 28.650812119573988 ], [ -81.992765454484612, 28.651174752717562 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Washington Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992765454484612, 28.651174752717562 ], [ -81.992762263540996, 28.651568069759556 ], [ -81.992793883951975, 28.651623860206303 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palm Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992682463896941, 28.650020479472939 ], [ -81.992518582614281, 28.650140578276531 ], [ -81.99160982811172, 28.650747933086077 ], [ -81.991007214402757, 28.651152327193575 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sharon Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992765454484612, 28.651174752717562 ], [ -81.991203274330744, 28.651180235275401 ], [ -81.991007214402757, 28.651152327193575 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palm Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991007214402757, 28.651152327193575 ], [ -81.990893361502771, 28.651247162938329 ], [ -81.990811125259142, 28.651355287690858 ], [ -81.990757496552163, 28.651449880275731 ], [ -81.990720801365001, 28.65153451766427 ], [ -81.990689748369462, 28.651634089996236 ], [ -81.990675629471312, 28.651741132152157 ], [ -81.990669974005158, 28.651875558079897 ], [ -81.990667136063223, 28.652052303736831 ], [ -81.99066711910217, 28.652243985947372 ], [ -81.990667103682839, 28.652418243153956 ], [ -81.990664245890017, 28.652819034150863 ], [ -81.990667045088415, 28.653080417430132 ], [ -81.990667015790422, 28.653411504995077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Maryland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993780629562281, 28.649894434323766 ], [ -81.993745811105839, 28.650483011757295 ], [ -81.993729974448911, 28.650907012167789 ], [ -81.993736253118215, 28.651649014690218 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Kings Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993780629562281, 28.649894434323766 ], [ -81.993008316402296, 28.649890772170878 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Kings Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99480204433371, 28.649900057743757 ], [ -81.993780629562281, 28.649894434323766 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Magnolia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99480204433371, 28.649900057743757 ], [ -81.994789347476328, 28.650837322259672 ], [ -81.994770333256994, 28.651660218078227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Kings Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995842430492033, 28.649902886770914 ], [ -81.99480204433371, 28.649900057743757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Madison Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995842430492033, 28.649902886770914 ], [ -81.995839252180218, 28.650293412119094 ], [ -81.995823416987378, 28.650893148940298 ], [ -81.99578543848699, 28.651660254664055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Kings Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996920762969495, 28.649911285189866 ], [ -81.995842430492033, 28.649902886770914 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Virginia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996920762969495, 28.649911285189866 ], [ -81.996904927777891, 28.650756498040955 ], [ -81.996879601459412, 28.651671444833507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Virginia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996920762969495, 28.649911285189866 ], [ -81.996904978977739, 28.649015861874759 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996904978977739, 28.649015861874759 ], [ -81.995855113758935, 28.64901861982867 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Madison Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995842430492033, 28.649902886770914 ], [ -81.995846612628526, 28.649529103370011 ], [ -81.995855113758935, 28.64901861982867 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Magnolia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994833708679849, 28.649029741764181 ], [ -81.994836889238172, 28.648647582820168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995855113758935, 28.64901861982867 ], [ -81.994833708679849, 28.649029741764181 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Magnolia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994776723573906, 28.644354009699626 ], [ -81.994764219331941, 28.643729009448855 ], [ -81.994755375887863, 28.642572744164973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Prairie Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995790285032257, 28.644344005977072 ], [ -81.994776723573906, 28.644354009699626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Magnolia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994797338664341, 28.645242182022038 ], [ -81.994776723573906, 28.644354009699626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Pine Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996843241976961, 28.645125090199734 ], [ -81.998512846557333, 28.645083281078012 ], [ -81.998780227006179, 28.645077930764284 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Prairie Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996830617991051, 28.644263140295539 ], [ -81.999611794347999, 28.644250724274215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Jefferson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996862185414301, 28.64612930608282 ], [ -81.998123887548786, 28.646132121253132 ], [ -81.998444241904394, 28.646131250730747 ], [ -81.999074916098976, 28.646125609231792 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Kings Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996920762969495, 28.649911285189866 ], [ -81.997916879255882, 28.649908516233587 ], [ -81.998914808070396, 28.649909893422329 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Orange Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996892359085606, 28.648017227533181 ], [ -81.998173056889129, 28.648006095284344 ], [ -81.999100511005125, 28.648000807162916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Florida Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998914808070396, 28.649909893422329 ], [ -81.999023669244593, 28.648766137045399 ], [ -81.999100511005125, 28.648000807162916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "State Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99687341165513, 28.647160856084763 ], [ -81.997844203737728, 28.64715529793386 ], [ -81.999081310402062, 28.647145106477918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Florida Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999100511005125, 28.648000807162916 ], [ -81.999081310402062, 28.647145106477918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Florida Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999081310402062, 28.647145106477918 ], [ -81.999084516138382, 28.646681955467983 ], [ -81.999074916098976, 28.646125609231792 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Orange Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999100511005125, 28.648000807162916 ], [ -81.999891269948307, 28.647989515437853 ], [ -82.000963749867367, 28.647983870702721 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Hodge Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000963749867367, 28.647983870702721 ], [ -82.000970144295493, 28.647114048629629 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Westwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117930092063133, 28.656727161773667 ], [ -82.117926933936374, 28.65584972318393 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Cherokee Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116708944859809, 28.65672437222846 ], [ -82.117930092063133, 28.656727161773667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Highland Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116708944859809, 28.65672437222846 ], [ -82.11670807467371, 28.655937170457019 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Highland Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116712112031891, 28.657619092241397 ], [ -82.116708944859809, 28.65672437222846 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120782362352415, 28.676546815586612 ], [ -82.12078263066546, 28.676781772480179 ], [ -82.120801007897981, 28.679578468114173 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120809616471661, 28.682117231045769 ], [ -82.120810875366701, 28.683214908602881 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 318", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120801007897981, 28.679578468114173 ], [ -82.121198181216982, 28.679582616521092 ], [ -82.123977506354535, 28.679577117517155 ], [ -82.125114636503014, 28.67957781301137 ], [ -82.126937852375434, 28.679599565583647 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 318", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126937852375434, 28.679599565583647 ], [ -82.127404555304651, 28.679606631269106 ], [ -82.129160819483829, 28.67964247838237 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 48th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120825654183221, 28.685949996374436 ], [ -82.12090917018601, 28.685939274847353 ], [ -82.121126575324098, 28.685971028880157 ], [ -82.121496909884783, 28.68597424824419 ], [ -82.121637753276175, 28.685935077041297 ], [ -82.121851089976516, 28.685931336780058 ], [ -82.122052382958387, 28.685952454425728 ], [ -82.122350283656232, 28.685973486012095 ], [ -82.122571656990303, 28.685955539240535 ], [ -82.122937965994552, 28.68595875828111 ], [ -82.123541804405079, 28.685990158513423 ], [ -82.123908622878474, 28.686029686929533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 311", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120806051776256, 28.694302219686151 ], [ -82.120816818829383, 28.693159239961904 ], [ -82.120814456656277, 28.691100475153981 ], [ -82.12081378877744, 28.690518342470121 ], [ -82.120807462372426, 28.688512824137927 ], [ -82.120825654183221, 28.685949996374436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119211774512763, 28.71412389301479 ], [ -82.119479417291444, 28.71341008094247 ], [ -82.119834254247024, 28.712454895095906 ], [ -82.120072695714981, 28.711808267528511 ], [ -82.120270786927833, 28.711291957531447 ], [ -82.120515871807555, 28.710655158579922 ], [ -82.120643534240301, 28.710336754384983 ], [ -82.120663969453958, 28.71029384419117 ], [ -82.120750802232493, 28.710097374958991 ], [ -82.120942318680875, 28.709641213379033 ], [ -82.121067457803676, 28.70935667079652 ], [ -82.121338216082563, 28.708787569726681 ], [ -82.121614114844178, 28.708236520853859 ], [ -82.121982439018382, 28.707522982437343 ], [ -82.122529878163803, 28.706480126592592 ], [ -82.123427484061821, 28.704783413095139 ], [ -82.123954264898174, 28.703771553951142 ], [ -82.124628689209601, 28.702490999682695 ], [ -82.125068071066082, 28.701650847584769 ], [ -82.12576799907734, 28.700309314329559 ], [ -82.126812769858873, 28.698324099433282 ], [ -82.126999229424271, 28.697960485097145 ], [ -82.12788048488278, 28.696291449703754 ], [ -82.129464094508805, 28.693269564204559 ], [ -82.129985139235643, 28.692280328579532 ], [ -82.130646639788964, 28.691017813974117 ], [ -82.131318336573528, 28.689732712532955 ], [ -82.131749956690683, 28.688912860792993 ], [ -82.132447170367257, 28.68758257976663 ], [ -82.133123938942262, 28.686295203535746 ], [ -82.133591281161515, 28.685403076447621 ], [ -82.134316536114483, 28.6840185800027 ], [ -82.134742994268308, 28.683200982645399 ], [ -82.135074983269291, 28.682579869718914 ], [ -82.135470779127715, 28.681816477127033 ], [ -82.136037669082754, 28.680734620040521 ], [ -82.136548381507382, 28.679767943296355 ], [ -82.137038640546294, 28.678828373047576 ], [ -82.137426756660645, 28.678085298977223 ], [ -82.137850633391096, 28.677288008895903 ], [ -82.138274481051113, 28.676472659087011 ], [ -82.13856045973958, 28.675932850411279 ], [ -82.13882854064245, 28.675411118587295 ], [ -82.139078627307896, 28.674934856792714 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122759949052508, 28.664927718188395 ], [ -82.124775709941659, 28.664943852513385 ], [ -82.124936575377134, 28.664941221112169 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Olive Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122759949052508, 28.664927718188395 ], [ -82.122757219173224, 28.665183955177952 ], [ -82.12275735904214, 28.665304064562868 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orange Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12275735904214, 28.665304064562868 ], [ -82.124146537270605, 28.665303621010228 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Olive Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12275735904214, 28.665304064562868 ], [ -82.122754713032208, 28.66562969806531 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dogwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123454346204312, 28.666314090424841 ], [ -82.122758537087435, 28.66631565601832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dogwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122758537087435, 28.66631565601832 ], [ -82.122394706810837, 28.666307204211247 ], [ -82.122112016890583, 28.666305891150206 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Olive Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122754713032208, 28.66562969806531 ], [ -82.122758537087435, 28.66631565601832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Olive Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122758537087435, 28.66631565601832 ], [ -82.122746039136572, 28.66678214432816 ], [ -82.12274600675876, 28.666783332729249 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 416 South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137221413406593, 28.756211981361176 ], [ -82.137224557491621, 28.754490466267249 ], [ -82.137216632887885, 28.752232262758866 ], [ -82.137174171701332, 28.750250878735372 ], [ -82.137162688812779, 28.749091024594808 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Sumter Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137221413406593, 28.756211981361176 ], [ -82.139375213772666, 28.756209791505455 ], [ -82.141433306304535, 28.756220600673622 ], [ -82.141982136017717, 28.756226777224722 ], [ -82.14232991208155, 28.756209543117016 ], [ -82.143909366413936, 28.756207879975392 ], [ -82.144161448950967, 28.756213238905595 ], [ -82.144212496149763, 28.756210371361846 ], [ -82.144273958275122, 28.756203252771776 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 416 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137221413406593, 28.756211981361176 ], [ -82.137207869451075, 28.758062145031069 ], [ -82.137199777587739, 28.759200924111965 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 416 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137199777587739, 28.759200924111965 ], [ -82.137197490869369, 28.759895434425079 ], [ -82.137186750022863, 28.761449796646136 ], [ -82.137188825142687, 28.763042383854316 ], [ -82.137180387041184, 28.764405542687115 ], [ -82.13718007131628, 28.766124100033867 ], [ -82.137179439418773, 28.76759971925182 ], [ -82.137173931014132, 28.769250799713813 ], [ -82.137178416015573, 28.770735411855856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 416 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137178416015573, 28.770735411855856 ], [ -82.1371818594925, 28.771419230913139 ], [ -82.137174923710063, 28.771974843498519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 10th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137174923710063, 28.771974843498519 ], [ -82.138673561493803, 28.771977821969962 ], [ -82.139411393952926, 28.771981567120818 ], [ -82.140336742640429, 28.771978045155073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 416 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137174923710063, 28.771974843498519 ], [ -82.137178695307711, 28.772910598694651 ], [ -82.137178970599109, 28.773857322193898 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 12th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137178970599109, 28.773857322193898 ], [ -82.137801866422521, 28.773813953237575 ], [ -82.137942292652525, 28.773818307937788 ], [ -82.13800197356575, 28.773820778349815 ], [ -82.138101551587255, 28.773827426520235 ], [ -82.138316031475242, 28.773842953807822 ], [ -82.138612239310078, 28.773880892997934 ], [ -82.138785878090431, 28.773903209576147 ], [ -82.138875256576597, 28.773918864549238 ], [ -82.139008001774314, 28.773907481533762 ], [ -82.139809626472868, 28.773872918288397 ], [ -82.140133818615212, 28.77383659479559 ], [ -82.140192532674959, 28.773832034416074 ], [ -82.140287003621594, 28.773836436777 ], [ -82.140544903089634, 28.773865411593942 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 416 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137178970599109, 28.773857322193898 ], [ -82.137179374844038, 28.77416774083461 ], [ -82.137179566276501, 28.774313953200302 ], [ -82.137179726367677, 28.774437670938887 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 13th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137179726367677, 28.774437670938887 ], [ -82.137299737007368, 28.774448795300785 ], [ -82.140107044458176, 28.774461397203098 ], [ -82.141515253961117, 28.774473995391222 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 20th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137202187860652, 28.77796023552747 ], [ -82.13717684887159, 28.778108722142139 ], [ -82.137146418997006, 28.778268461207521 ], [ -82.137151853559629, 28.77852039030552 ], [ -82.13716287701574, 28.779143468104863 ], [ -82.137172021212976, 28.780283912663513 ], [ -82.137163725169557, 28.781755037598423 ], [ -82.137165038836102, 28.782762774924951 ], [ -82.137157455838803, 28.782823516269076 ], [ -82.137139621473452, 28.782852777283949 ], [ -82.137109033063652, 28.782891049015991 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 416 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137202187860652, 28.77796023552747 ], [ -82.137212459268781, 28.778007462106018 ], [ -82.137243163614244, 28.778056917517237 ], [ -82.137281531523186, 28.778110865914019 ], [ -82.137322449776505, 28.778162560453723 ], [ -82.137378690453787, 28.778216489860686 ], [ -82.138467530707445, 28.779115152491755 ], [ -82.139625434627249, 28.780094712286971 ], [ -82.140374343877937, 28.780703531758316 ], [ -82.141823659007827, 28.781907713641186 ], [ -82.14273876972392, 28.78267380580888 ], [ -82.14431346642516, 28.784033037870238 ], [ -82.145860071672786, 28.7853607879435 ], [ -82.145924007877554, 28.785434950588549 ], [ -82.145980299514861, 28.785520367821377 ], [ -82.14601874016715, 28.785621549545574 ], [ -82.146023940615308, 28.7856890259824 ], [ -82.146031701760663, 28.785760999489696 ], [ -82.146036228427775, 28.787182623166725 ], [ -82.146038330846864, 28.788698725571177 ], [ -82.146027482657487, 28.790082126152914 ], [ -82.146003396272476, 28.791125877760848 ], [ -82.145998213284088, 28.792911914940337 ], [ -82.145990461015558, 28.79468670712 ], [ -82.14598730105844, 28.796090345133312 ], [ -82.14598878036324, 28.797156561093963 ], [ -82.145989648012858, 28.797781896612399 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 416 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137179726367677, 28.774437670938887 ], [ -82.13718419250965, 28.775906535703189 ], [ -82.137191168138017, 28.777341656548021 ], [ -82.137188384339055, 28.777721322591848 ], [ -82.137183627704189, 28.777869601658175 ], [ -82.137202187860652, 28.77796023552747 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149752915516387, 28.800343660332707 ], [ -82.149969350443968, 28.80040515374019 ], [ -82.150042515399051, 28.800429228593615 ], [ -82.150112634903834, 28.800453306775168 ], [ -82.150194948139685, 28.800482739263053 ], [ -82.150286415530104, 28.800520215573368 ], [ -82.150579146342594, 28.800664828098867 ], [ -82.151451347159792, 28.801165765087006 ], [ -82.151597741754358, 28.801256858441615 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 413", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153686772249529, 28.8003580509512 ], [ -82.153534580813243, 28.800470951329295 ], [ -82.153446467363452, 28.800555800317984 ], [ -82.153373323871008, 28.800634858459706 ], [ -82.153326619894855, 28.800730256377982 ], [ -82.153253213565137, 28.80091733101623 ], [ -82.153200367772399, 28.801136962059214 ], [ -82.153164318153401, 28.801491291492717 ], [ -82.153177246102715, 28.801998554737292 ], [ -82.153177366247093, 28.802081759171127 ], [ -82.153159157075166, 28.802132775488296 ], [ -82.153137881789405, 28.802170375229064 ], [ -82.153098307413117, 28.802197259944673 ], [ -82.153052631061911, 28.802218782795073 ], [ -82.152958236673555, 28.802264518049878 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.152958236673555, 28.802264518049878 ], [ -82.153016287745587, 28.802371812876554 ], [ -82.153071309019552, 28.802489847661004 ], [ -82.153108042990127, 28.802605217783093 ], [ -82.153135631364577, 28.802717913845516 ], [ -82.153160169317275, 28.802827931682362 ], [ -82.153169561246642, 28.802999698032377 ], [ -82.153170081095467, 28.803356669558383 ], [ -82.153170336943703, 28.803687108989877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.152641231342727, 28.803683592419247 ], [ -82.152638103058422, 28.803136006691847 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.151597741754358, 28.801256858441615 ], [ -82.151841714887254, 28.801396154814409 ], [ -82.15203383191789, 28.80149793039357 ], [ -82.152171059653853, 28.801570245517507 ], [ -82.152281894854568, 28.801630364737274 ], [ -82.152396762343741, 28.801700483232011 ], [ -82.152543147081175, 28.80180065278244 ], [ -82.152640768992498, 28.80187837705828 ], [ -82.15274756783478, 28.801980250243481 ], [ -82.152834975676001, 28.802076928934675 ], [ -82.152909355582565, 28.802178685098834 ], [ -82.152958236673555, 28.802264518049878 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.152638103058422, 28.803136006691847 ], [ -82.15263976246537, 28.802938968655621 ], [ -82.15262992883207, 28.80286530533553 ], [ -82.152608451092334, 28.802808788139224 ], [ -82.152583082108364, 28.802753990602106 ], [ -82.152549944799659, 28.802706053019392 ], [ -82.152503191168961, 28.802658130729274 ], [ -82.152448667621911, 28.802618786373415 ], [ -82.152382469167335, 28.802576025429868 ], [ -82.152275405852279, 28.802523031212338 ], [ -82.152162505185117, 28.80246833177468 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.152162505185117, 28.80246833177468 ], [ -82.151533838924465, 28.80221374410786 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.152311891333696, 28.802195740142604 ], [ -82.152162505185117, 28.80246833177468 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Pt", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.151391360479948, 28.803231637536573 ], [ -82.15118873330789, 28.803005699814982 ], [ -82.150966724497479, 28.802827759979582 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Outlet Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.152638103058422, 28.803136006691847 ], [ -82.151749139867334, 28.803135291911037 ], [ -82.151679118408637, 28.803138795348122 ], [ -82.151620768436018, 28.803144000998547 ], [ -82.151572151162625, 28.803152621819333 ], [ -82.151525490547925, 28.803169807856012 ], [ -82.151459395739934, 28.803199007244302 ], [ -82.151422460812782, 28.803216183293689 ], [ -82.151391360479948, 28.803231637536573 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Outlet Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.151391360479948, 28.803231637536573 ], [ -82.151338905658989, 28.803277958290391 ], [ -82.151288399628797, 28.803325987628003 ], [ -82.151253440569846, 28.803363720524281 ], [ -82.151220440594415, 28.803411731227495 ], [ -82.151195224469959, 28.803461446734712 ], [ -82.151170040333838, 28.803533435682382 ], [ -82.15116041451239, 28.803603695618193 ], [ -82.151166299831161, 28.803637955123655 ], [ -82.151179953252907, 28.803663641265327 ], [ -82.151207213312617, 28.803682456508074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153170336943703, 28.803687108989877 ], [ -82.153181497995291, 28.804918745214053 ], [ -82.153192236654846, 28.805301067176519 ], [ -82.153224442379013, 28.80571009484936 ], [ -82.153266231803997, 28.806020594077378 ], [ -82.153317674654176, 28.806281821774032 ], [ -82.153378825007536, 28.806528048427317 ], [ -82.153447240528635, 28.806754990825322 ], [ -82.153481450502227, 28.806870603633058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 405", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148493916460765, 28.809080338456344 ], [ -82.148459838176834, 28.809089469198856 ], [ -82.148199165978653, 28.809100565571736 ], [ -82.147872936172533, 28.80909572866037 ], [ -82.147808086887778, 28.809097530836066 ], [ -82.147760932287326, 28.809104505594046 ], [ -82.147733420655115, 28.809106266172552 ], [ -82.147710671959956, 28.809114727512192 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 405", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148534025459853, 28.806867380104595 ], [ -82.148524872225678, 28.807343379217514 ], [ -82.148530492449154, 28.808887739650654 ], [ -82.148531126395255, 28.808987696603577 ], [ -82.148517458287316, 28.809051753753316 ], [ -82.148493916460765, 28.809080338456344 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 412", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148534025459853, 28.806867380104595 ], [ -82.149812960435199, 28.806919512748447 ], [ -82.150322090569631, 28.806928987016331 ], [ -82.150982192671862, 28.806902320071643 ], [ -82.153051081205319, 28.806886082486216 ], [ -82.153355021096331, 28.806879313088963 ], [ -82.153481450502227, 28.806870603633058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 412", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14537821731669, 28.806938367357521 ], [ -82.145791531456155, 28.806906202488712 ], [ -82.146466708749259, 28.806888667368835 ], [ -82.147533760976529, 28.806868471145116 ], [ -82.148534025459853, 28.806867380104595 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 405", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147710671959956, 28.809114727512192 ], [ -82.147668567345022, 28.80915190149155 ], [ -82.14763919404848, 28.809179064940647 ], [ -82.147617621929726, 28.809211974816233 ], [ -82.147603927155728, 28.809255261682104 ], [ -82.14759233230987, 28.809395474860086 ], [ -82.147607385524594, 28.810055765403288 ], [ -82.147599312068209, 28.810556789473804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 405", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14487736216401, 28.8101834323768 ], [ -82.144912883695568, 28.81015431037013 ], [ -82.144968758359397, 28.81014144424519 ], [ -82.145495560053789, 28.810143843680017 ], [ -82.14569471059427, 28.810150788937381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 405D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145149504345881, 28.808318086759385 ], [ -82.145086779150674, 28.808305004492716 ], [ -82.145025562135046, 28.808302439690863 ], [ -82.144961386017656, 28.808319604277205 ], [ -82.144904667854789, 28.808331499513553 ], [ -82.144858410255154, 28.808349958679827 ], [ -82.144828581162159, 28.808372346093382 ], [ -82.144796221503583, 28.808440769242122 ], [ -82.144782091956174, 28.808510585049067 ], [ -82.144782297474237, 28.808659131775606 ], [ -82.144779216483698, 28.80937323771192 ], [ -82.144805979158974, 28.809993349923545 ], [ -82.14487736216401, 28.8101834323768 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 405 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14487736216401, 28.8101834323768 ], [ -82.144854556450682, 28.810223725808385 ], [ -82.144841928933914, 28.810275193379411 ], [ -82.144797305986444, 28.810567794393904 ], [ -82.14478900194672, 28.810623151704377 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 406", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142861802113003, 28.81061781492836 ], [ -82.14478900194672, 28.810623151704377 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 406A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141180061486679, 28.810770790570981 ], [ -82.14238649026494, 28.810712806764283 ], [ -82.142411854557992, 28.810707622562422 ], [ -82.142431744490068, 28.810695225639289 ], [ -82.142453376318556, 28.810658833621527 ], [ -82.142486813238051, 28.810599758727037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 406", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142486813238051, 28.810599758727037 ], [ -82.142526635770594, 28.810616322985901 ], [ -82.142566434327321, 28.810614435968343 ], [ -82.142861802113003, 28.81061781492836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 401C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142846636021375, 28.811789382559592 ], [ -82.143223720756865, 28.8118055903102 ], [ -82.143487679793196, 28.811816381904151 ], [ -82.143743231819002, 28.811806886284149 ], [ -82.143958996970312, 28.811806657582185 ], [ -82.144170569417824, 28.811804587770645 ], [ -82.144524588700406, 28.81180421032083 ], [ -82.144788594603895, 28.81184820784355 ], [ -82.145012786962482, 28.811884867425608 ], [ -82.145048462969328, 28.811930953449565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 401C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141269522422121, 28.811990288958832 ], [ -82.141425066027097, 28.812383104452213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 401C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141269522422121, 28.811990288958832 ], [ -82.141462231627244, 28.811980863049595 ], [ -82.141717784255789, 28.811971372163711 ], [ -82.141927260541991, 28.811967463738974 ], [ -82.142128350441368, 28.81195987243165 ], [ -82.142446721405577, 28.811931864886489 ], [ -82.142844750422043, 28.811944361272104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 401A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142833189202975, 28.813177741051934 ], [ -82.142949070750149, 28.813176686054661 ], [ -82.143219307014164, 28.813178247257625 ], [ -82.144260450509066, 28.813190057412232 ], [ -82.145187390038828, 28.813217203694876 ], [ -82.145327183004554, 28.813217204741687 ], [ -82.145404516775955, 28.813193410167258 ], [ -82.145416414023515, 28.81312500162726 ], [ -82.145401542871468, 28.81303577215651 ], [ -82.145346874633788, 28.812926359194797 ], [ -82.145263225632462, 28.812722213312579 ], [ -82.145206401058388, 28.812530397574434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 400", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145402473158654, 28.815871806197503 ], [ -82.145360200518482, 28.815895223945684 ], [ -82.145331059557506, 28.815909930280174 ], [ -82.145293585055839, 28.815923911956741 ], [ -82.145261940167472, 28.81593568846019 ], [ -82.145220300913635, 28.815950409052814 ], [ -82.145178657593817, 28.815962193530375 ], [ -82.145139517720082, 28.815972127392794 ], [ -82.145093697960391, 28.815979894729761 ], [ -82.145052045492221, 28.815985809671862 ], [ -82.145008725105654, 28.815990259232645 ], [ -82.144958731036866, 28.815987377447492 ], [ -82.144922900602268, 28.815985581331368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 400", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.144922900602268, 28.815985581331368 ], [ -82.144841109886173, 28.815981040731849 ], [ -82.14478873476989, 28.815969946823415 ], [ -82.144747057049571, 28.815956785126115 ], [ -82.144722047391355, 28.815946537234357 ], [ -82.144700369519043, 28.815936287589548 ], [ -82.144678689659756, 28.815923101836685 ], [ -82.144655334787799, 28.815905516412929 ], [ -82.144635316791295, 28.815889393676947 ], [ -82.144616961647898, 28.81587180291698 ], [ -82.144596942670532, 28.815854213025208 ], [ -82.144556882478255, 28.815805825287519 ], [ -82.14450179601566, 28.815735439055761 ], [ -82.144455070324952, 28.815687060189358 ], [ -82.144403340974989, 28.815634282471056 ], [ -82.144344940013553, 28.815578575722601 ], [ -82.144298221529098, 28.815534597343621 ], [ -82.144248168282061, 28.815489155341893 ], [ -82.144111385182029, 28.815386571223829 ], [ -82.143996292033393, 28.81530450767551 ], [ -82.143872183068609, 28.81520959751618 ], [ -82.143608215911897, 28.814998109273212 ], [ -82.143445859013738, 28.814873831193772 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 400", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14600052519873, 28.81500738197375 ], [ -82.145426821824529, 28.815836714653003 ], [ -82.145414745333866, 28.815854258516339 ], [ -82.145402473158654, 28.815871806197503 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153481450502227, 28.806870603633058 ], [ -82.153525377193077, 28.806977638926263 ], [ -82.153549783062743, 28.807039719861599 ], [ -82.153613890563676, 28.807214133770888 ], [ -82.153655863595858, 28.807320252677478 ], [ -82.153687957769307, 28.807398216321012 ], [ -82.153712647547763, 28.807458855012925 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 405 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14478900194672, 28.810623151704377 ], [ -82.144779649334268, 28.810812822226257 ], [ -82.14479302513908, 28.810862037857621 ], [ -82.144822357685001, 28.810901859680232 ], [ -82.144859665232076, 28.810932295301441 ], [ -82.1448996184142, 28.810953350404976 ], [ -82.14495288273217, 28.810974393986687 ], [ -82.145064714216886, 28.811002404834561 ], [ -82.145879181094273, 28.810989809902722 ], [ -82.146030898942485, 28.810989646728284 ], [ -82.146081471559526, 28.810989593201203 ], [ -82.146150698243744, 28.811005928931074 ], [ -82.146187992149464, 28.811026985613495 ], [ -82.14625459313072, 28.811069112066523 ], [ -82.146302562881303, 28.811111257671353 ], [ -82.146337236628924, 28.811162793474143 ], [ -82.146366578421535, 28.811207305140968 ], [ -82.146398605911585, 28.811270565657392 ], [ -82.14641465170557, 28.811324467532792 ], [ -82.146430718125245, 28.811392433649697 ], [ -82.146433470125928, 28.811458070839418 ], [ -82.146436328645592, 28.811598724850178 ], [ -82.146442119967503, 28.811936296158805 ], [ -82.146438090555165, 28.812864636674984 ], [ -82.146432995771008, 28.813028742083095 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 402A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.144924236591464, 28.814235119664406 ], [ -82.144929376825928, 28.81433637558991 ], [ -82.144931304644473, 28.814527161853569 ], [ -82.144929487427305, 28.814717645327359 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 402A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.144929487427305, 28.814717645327359 ], [ -82.144929909581435, 28.815026140041244 ], [ -82.14493038497433, 28.815371022919507 ], [ -82.144926499928076, 28.815574654287914 ], [ -82.144924809000514, 28.815859000975479 ], [ -82.14492280451411, 28.815915871008485 ], [ -82.144922900602268, 28.815985581331368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 400", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.146282178293106, 28.814729051670973 ], [ -82.146217358215083, 28.814769116294581 ], [ -82.146183332750908, 28.81479486599877 ], [ -82.146140256887634, 28.814832590032974 ], [ -82.146090339802271, 28.814885474762821 ], [ -82.14600052519873, 28.81500738197375 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 25th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147721610612919, 28.814973110045006 ], [ -82.147910465499308, 28.814933962534408 ], [ -82.148165670321106, 28.814880199838822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 25th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14600052519873, 28.81500738197375 ], [ -82.146229301233646, 28.815133873651273 ], [ -82.146317519453689, 28.815191587550544 ], [ -82.146355445536159, 28.815206427493237 ], [ -82.146389249342448, 28.815217145623159 ], [ -82.146423877440981, 28.815217970864147 ], [ -82.146523639502178, 28.815203131203862 ], [ -82.147163758613942, 28.815085374031998 ], [ -82.147721610612919, 28.814973110045006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 40th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147721610612919, 28.814973110045006 ], [ -82.147804881354844, 28.815296304188532 ], [ -82.147817247943621, 28.815412554760233 ], [ -82.147817246606891, 28.815661547236807 ], [ -82.147804346120239, 28.816837301269246 ], [ -82.147794304454152, 28.817590032630719 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 42nd Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145402473158654, 28.815871806197503 ], [ -82.145318837938234, 28.81603448878732 ], [ -82.144974497440998, 28.816671577168908 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 106th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956579830390282, 28.911106874359383 ], [ -81.956525693341547, 28.911125001126614 ], [ -81.956461252865651, 28.911127248606306 ], [ -81.956253626740533, 28.91110334688474 ], [ -81.955791771372347, 28.911101003825653 ], [ -81.955698292257907, 28.911106586186069 ], [ -81.955592615253138, 28.911095211179624 ], [ -81.955520452414632, 28.911072508032809 ], [ -81.955358083749303, 28.911029363094755 ], [ -81.955193135139396, 28.910986215294802 ], [ -81.955041074794337, 28.91094533998718 ], [ -81.954530729340618, 28.910902076110659 ], [ -81.954291039840854, 28.910838490990376 ], [ -81.954073952009281, 28.910802489193628 ], [ -81.953688686155331, 28.910783875036316 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 107th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956579830390282, 28.911106874359383 ], [ -81.956597837510159, 28.911195331496398 ], [ -81.956590066425733, 28.911286049569618 ], [ -81.956556497175342, 28.911428922002454 ], [ -81.956538426385492, 28.911494689114878 ], [ -81.956486826215681, 28.911610338787202 ], [ -81.956445549342575, 28.911691973376055 ], [ -81.956414592229322, 28.911755467909853 ], [ -81.956378481774394, 28.911809887258904 ], [ -81.956326910904991, 28.911855230771476 ], [ -81.956272763921987, 28.911898305951333 ], [ -81.956208302768886, 28.911945912689117 ], [ -81.956032982480593, 28.912041110874593 ], [ -81.955940173491257, 28.912077366313873 ], [ -81.955862835554043, 28.912102290316508 ], [ -81.955746838636202, 28.912111322902611 ], [ -81.955574921642665, 28.912112245986016 ], [ -81.955019953645262, 28.912097475459685 ], [ -81.954896217595675, 28.912120113165681 ], [ -81.954662040851062, 28.912092346353752 ], [ -81.954491558303971, 28.912058741232631 ], [ -81.954349786864356, 28.91206322802369 ], [ -81.954241515015923, 28.912092675513929 ], [ -81.954112301233053, 28.912121035707564 ], [ -81.953698945030482, 28.912159017586212 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Olanta Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95649830474521, 28.901180626410376 ], [ -81.95626809087436, 28.901344025562306 ], [ -81.956185249442058, 28.90139350225903 ], [ -81.956127688175982, 28.901426932569979 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Olanta Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954119281483813, 28.902527961344575 ], [ -81.95412156007778, 28.902678193020904 ], [ -81.954124010768183, 28.902875177348317 ], [ -81.954123926665289, 28.903065286191723 ], [ -81.954123884445096, 28.903160721381301 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Olanta Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954123884445096, 28.903160721381301 ], [ -81.954123847885015, 28.903243361979793 ], [ -81.954123432673171, 28.903456433291591 ], [ -81.95412334042463, 28.903664947197935 ], [ -81.954125435895463, 28.903795743279836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Olanta Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954125435895463, 28.903795743279836 ], [ -81.954125405892796, 28.903865879822355 ], [ -81.954125372813422, 28.903936017265394 ], [ -81.954125300041554, 28.904102828740406 ], [ -81.954127395709577, 28.904235520542557 ], [ -81.954133839350661, 28.904277226069247 ], [ -81.954151055698688, 28.904317038644674 ], [ -81.954181197086868, 28.904354960804074 ], [ -81.954230726839029, 28.90439288956934 ], [ -81.954288884534137, 28.904411865772857 ], [ -81.954347380735811, 28.90442362368022 ], [ -81.954555224100901, 28.904421287784722 ], [ -81.954832412483583, 28.904418974020913 ], [ -81.955115069335818, 28.904416663320291 ], [ -81.955482896127265, 28.904412315846209 ], [ -81.955760281346812, 28.904407595613492 ], [ -81.956013441374409, 28.904407678828367 ], [ -81.956258787831771, 28.904410165450475 ], [ -81.956450614300905, 28.904405415881769 ], [ -81.956607862105841, 28.904405466820013 ], [ -81.956703971203169, 28.90440549786284 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Olanta Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956703971203169, 28.90440549786284 ], [ -81.956714518512527, 28.904405500363104 ], [ -81.956855947191144, 28.904398671297482 ], [ -81.957050506344331, 28.904396326378006 ], [ -81.957317147304465, 28.904394005027417 ], [ -81.957554290450602, 28.904391673821298 ], [ -81.957695524230473, 28.904384842910215 ], [ -81.957796909673291, 28.90437318736674 ], [ -81.957856276210393, 28.904363748135076 ], [ -81.957903672180734, 28.904354284369361 ], [ -81.957977882696966, 28.904334108781175 ], [ -81.958133976073057, 28.90428271303772 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963457966358902, 28.903397237502666 ], [ -81.963456050991496, 28.903394136683144 ], [ -81.963380321137848, 28.9032821606326 ], [ -81.963320373694998, 28.90318053009868 ], [ -81.963237593739052, 28.903062248578674 ], [ -81.963130986952919, 28.902926770768026 ], [ -81.963004653317896, 28.902787506799275 ], [ -81.962828544900276, 28.902630400405499 ], [ -81.962619913673208, 28.902482250859091 ], [ -81.962414636517337, 28.902366681222976 ], [ -81.962246370311192, 28.902289625484602 ], [ -81.962049076756045, 28.902221040225701 ], [ -81.961788525256267, 28.902147742011856 ], [ -81.961643407680086, 28.902107134148743 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Lawrence Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104350083271257, 28.664883131927244 ], [ -82.104342867006594, 28.666026711850211 ], [ -82.104330261347158, 28.666480138336428 ], [ -82.104333353273276, 28.667237979119225 ], [ -82.104333463669505, 28.667348478701609 ], [ -82.104358195954134, 28.667571862042927 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Roland Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112667628470632, 28.657546056138688 ], [ -82.112664305656608, 28.656842169811142 ], [ -82.112667405722036, 28.655189909557663 ], [ -82.112671242961625, 28.654483345263419 ], [ -82.112670864458323, 28.654129053016682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 706", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103865230181313, 28.646620389279136 ], [ -82.104169653416349, 28.646598672883115 ], [ -82.104330107923076, 28.646574379576879 ], [ -82.104576340288773, 28.646535417947398 ], [ -82.105124366952225, 28.64656364285371 ], [ -82.105911882450854, 28.646580940461934 ], [ -82.108489432293098, 28.646584471229673 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 540", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104248270223039, 28.690444767183347 ], [ -82.102246704701415, 28.690437666522865 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 489", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119120311660751, 28.756180335634713 ], [ -82.120596145671641, 28.756192766996339 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 489", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120596145671641, 28.756192766996339 ], [ -82.122766165564173, 28.756212943214223 ], [ -82.123995959548921, 28.756213530337391 ], [ -82.124808748660186, 28.756217891909689 ], [ -82.125828080130148, 28.756196538521579 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 482 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120596145671641, 28.756192766996339 ], [ -82.120605069403723, 28.756335128262339 ], [ -82.120612295697697, 28.756647819344668 ], [ -82.120600372738949, 28.758233508654325 ], [ -82.120604966117355, 28.760246872227203 ], [ -82.120606619626997, 28.761693349442588 ], [ -82.120615157501135, 28.763153940571229 ], [ -82.120607653169188, 28.764598405898827 ], [ -82.120611699364815, 28.766133644333994 ], [ -82.120603644567353, 28.767097969184999 ], [ -82.120601957194083, 28.767624512513727 ], [ -82.120597926912666, 28.768104656376039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 482 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120597926912666, 28.768104656376039 ], [ -82.120594137670508, 28.768794611457611 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 482 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120594137670508, 28.768794611457611 ], [ -82.120590481749161, 28.769538466973653 ], [ -82.120595597564403, 28.770101916839476 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 482 South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120596145671641, 28.756192766996339 ], [ -82.120592743395491, 28.754666234882151 ], [ -82.120600101042498, 28.75347494210984 ], [ -82.120607800433419, 28.752580830267735 ], [ -82.120592358699056, 28.751787293830219 ], [ -82.120580831064629, 28.750248955689866 ], [ -82.120582907568121, 28.749878681296135 ], [ -82.120589826908031, 28.749574446646566 ], [ -82.120595936613185, 28.749483626183665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 489", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112193943055146, 28.756160253472729 ], [ -82.115669245141859, 28.756170339913787 ], [ -82.116136220697314, 28.756169941600227 ], [ -82.117851748380502, 28.756169913289163 ], [ -82.119120311660751, 28.756180335634713 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 736", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97827906671354, 28.611855758842683 ], [ -81.978278718994773, 28.613553162877057 ], [ -81.97826709309598, 28.615300350382157 ], [ -81.976478303056098, 28.615290252406012 ], [ -81.976399919450955, 28.615290422663357 ], [ -81.976287912048505, 28.615290663612672 ], [ -81.976212833900391, 28.615297937572436 ], [ -81.976217609685577, 28.61700117079992 ], [ -81.976205436512146, 28.617110491663773 ], [ -81.976067204273647, 28.617111536258154 ], [ -81.976007437870948, 28.617111986640214 ], [ -81.975809570117718, 28.617113483155851 ], [ -81.974465727214735, 28.617102876277606 ], [ -81.974155396960413, 28.617092699655977 ], [ -81.973946094657023, 28.617076647943893 ], [ -81.973773679889945, 28.617056515540739 ], [ -81.973598196226405, 28.617028670913097 ], [ -81.972564709181441, 28.616866095104417 ], [ -81.972441927574678, 28.616860045869849 ], [ -81.972327906424709, 28.61686653815741 ], [ -81.972252107835715, 28.61688610777021 ], [ -81.972120374088817, 28.616962427423978 ], [ -81.9719645894655, 28.617054153888915 ], [ -81.971803539342744, 28.617103035950418 ], [ -81.97171715206828, 28.617112406589563 ], [ -81.971624128728209, 28.61711164880354 ], [ -81.969353642051303, 28.617084482911157 ], [ -81.969209933360844, 28.617097298411931 ], [ -81.969116355399009, 28.617115415736311 ], [ -81.96902319407161, 28.617142415729965 ], [ -81.96891290930381, 28.617186191610752 ], [ -81.968743665239728, 28.617260007018061 ], [ -81.968481788050738, 28.617377704744147 ], [ -81.968219911302128, 28.617495401060577 ], [ -81.967810559888903, 28.617667096403633 ], [ -81.967637953721834, 28.617721705113333 ], [ -81.967258163564622, 28.617836313945531 ], [ -81.966782940569914, 28.617978547632461 ], [ -81.966127592544908, 28.618142941810266 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Market Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993778281963969, 28.648992910560803 ], [ -81.992705558022735, 28.649687266236143 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 469", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992371049383948, 28.649893280132432 ], [ -81.991467917366847, 28.649891190507002 ], [ -81.989984611206225, 28.649876842491206 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Kings Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992371049383948, 28.649893280132432 ], [ -81.991071063883254, 28.650755998693402 ], [ -81.990019065814636, 28.651439651615043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Kings Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992607501714375, 28.649890750954835 ], [ -81.992371049383948, 28.649893280132432 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Kings Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992685358393686, 28.649893299028406 ], [ -81.992607501714375, 28.649890750954835 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Kings Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993008316402296, 28.649890772170878 ], [ -81.992846836463215, 28.649890764304825 ], [ -81.992685358393686, 28.649893299028406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palm Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992685358393686, 28.649893299028406 ], [ -81.992682463896941, 28.650020479472939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 88th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960136884878366, 28.657318549544765 ], [ -81.959970751155254, 28.657310684191735 ], [ -81.9597669604929, 28.657306715392274 ], [ -81.959490065092567, 28.657314449236466 ], [ -81.959173952364296, 28.657347820395305 ], [ -81.959106339703013, 28.657352388237413 ], [ -81.959030929488023, 28.657352366200879 ], [ -81.958958120492994, 28.657347754737774 ], [ -81.958911318630115, 28.657333978944273 ], [ -81.958861920027104, 28.657313321134179 ], [ -81.958802127546448, 28.657269723671316 ], [ -81.958765742794526, 28.657216956609627 ], [ -81.958711181946512, 28.657097669239569 ], [ -81.95863839908057, 28.657024250958237 ], [ -81.958568692495831, 28.656989825285208 ], [ -81.95847345234651, 28.6569624407405 ], [ -81.958349410623953, 28.656948726616722 ], [ -81.958194356657884, 28.656933047389032 ], [ -81.958074748445469, 28.656909563907043 ], [ -81.957992801013205, 28.656880230511302 ], [ -81.95791307152102, 28.656843080830949 ], [ -81.957813417737967, 28.656776618821606 ], [ -81.957647342512388, 28.65662807298974 ], [ -81.957534411862312, 28.656520574710662 ], [ -81.95746577365739, 28.656446306197914 ], [ -81.957403790890325, 28.656344685467051 ], [ -81.957361743085258, 28.656250885245203 ], [ -81.957341844797639, 28.656155140280003 ], [ -81.957330799197877, 28.65606508914512 ], [ -81.957325643876857, 28.655954991793156 ], [ -81.957322030514931, 28.655854238608917 ], [ -81.957328310867268, 28.655785261586988 ], [ -81.957349196702751, 28.655581131109436 ], [ -81.957372694906738, 28.655347184684096 ], [ -81.957377977220574, 28.655145343884726 ], [ -81.957366680022815, 28.654994551057193 ], [ -81.957350752281044, 28.654668005297097 ], [ -81.957340391544264, 28.654609997190708 ], [ -81.957309271715857, 28.654539281227535 ], [ -81.957247313163506, 28.654380999155926 ], [ -81.95720307848444, 28.654220767328344 ], [ -81.957180989545506, 28.654064450544443 ], [ -81.957169986270074, 28.653888599012131 ], [ -81.957165613689128, 28.653745965455567 ], [ -81.95716282576231, 28.65347961318124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 558", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97200978699766, 28.669774019816664 ], [ -81.971300034825873, 28.670256230203478 ], [ -81.970825706933795, 28.67058278971643 ], [ -81.970303128385595, 28.670942238664519 ], [ -81.969274606252654, 28.671635697500328 ], [ -81.968627149193907, 28.672081273281428 ], [ -81.96800301510531, 28.672520998063643 ], [ -81.967316575815261, 28.672975534647538 ], [ -81.966494314078105, 28.673540050863629 ], [ -81.964936395047886, 28.674615285610923 ], [ -81.964354492103624, 28.675007949598658 ], [ -81.964109190436815, 28.67516478736361 ], [ -81.9640581114203, 28.675198808805384 ], [ -81.963904874290549, 28.675300530127853 ], [ -81.96366215851458, 28.675437636465485 ], [ -81.963495802867698, 28.675523662214655 ], [ -81.963291516641689, 28.67564266939657 ], [ -81.963056076357148, 28.675758615125449 ], [ -81.962772168599642, 28.675880654928392 ], [ -81.96249172370608, 28.675999638899643 ], [ -81.961903135482814, 28.67624065435708 ], [ -81.960040410215299, 28.677000287667774 ], [ -81.957980303810828, 28.677833104103929 ], [ -81.956898984859848, 28.678285710517617 ], [ -81.956775383912188, 28.678324241087289 ], [ -81.956581496110744, 28.678385237724275 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 53rd Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013229117540874, 28.677260890090171 ], [ -82.013226744774741, 28.677260878576408 ], [ -82.010808468546699, 28.677238036604724 ], [ -82.009092739684888, 28.677209988967668 ], [ -82.007986660563645, 28.677184449742615 ], [ -82.00721153530553, 28.677181929241733 ], [ -82.007156376131348, 28.677161449779163 ], [ -82.007109923578241, 28.67713072932726 ], [ -82.007077985917277, 28.677084646894588 ], [ -82.007066368844789, 28.677010401743566 ], [ -82.007072158244654, 28.676754381906814 ], [ -82.007086634376904, 28.676162976545772 ], [ -82.007092399429652, 28.675561330061363 ], [ -82.007086590029076, 28.675517808138267 ], [ -82.007066266156343, 28.675476844991376 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 569", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000910005153372, 28.671692135112796 ], [ -82.00090936791976, 28.670872300818907 ], [ -82.000904524711132, 28.669453307403177 ], [ -82.00090116535236, 28.668061718451224 ], [ -82.000905362732382, 28.666690031076424 ], [ -82.000893674344539, 28.664405931632022 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Hodge Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000984293157714, 28.651685438241838 ], [ -82.000962172986291, 28.65347907413809 ], [ -82.000939334702252, 28.654545752420162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Park Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999665608801649, 28.651677067076736 ], [ -82.000092521908527, 28.651677068744128 ], [ -82.000984293157714, 28.651685438241838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Park Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99892562571641, 28.65167984991205 ], [ -81.999665608801649, 28.651677067076736 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Park Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996879601459412, 28.651671444833507 ], [ -81.99892562571641, 28.65167984991205 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Virginia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996879601459412, 28.651671444833507 ], [ -81.996879589877523, 28.652061972885697 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Park Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996879601459412, 28.651671444833507 ], [ -81.99578543848699, 28.651660254664055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Park Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99578543848699, 28.651660254664055 ], [ -81.994770333256994, 28.651660218078227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Park Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993736253118215, 28.651649014690218 ], [ -81.992793883951975, 28.651623860206303 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Magnolia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99480204433371, 28.649900057743757 ], [ -81.994833708679849, 28.649029741764181 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Virginia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996904978977739, 28.649015861874759 ], [ -81.996892359085606, 28.648017227533181 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Market Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996876568466618, 28.647328225057212 ], [ -81.99589942809024, 28.647953039321347 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Virginia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996892359085606, 28.648017227533181 ], [ -81.996876568466618, 28.647328225057212 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Virginia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99687341165513, 28.647160856084763 ], [ -81.9968734146386, 28.647060435108028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Virginia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996876568466618, 28.647328225057212 ], [ -81.99687341165513, 28.647160856084763 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Market Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9968734146386, 28.647060435108028 ], [ -81.995817218138981, 28.647721511667822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Madison Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99589942809024, 28.647953039321347 ], [ -81.995858321223992, 28.647858197062977 ], [ -81.995817218138981, 28.647721511667822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Market Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99589942809024, 28.647953039321347 ], [ -81.995839343090026, 28.647992091363307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Madison Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995889937806126, 28.648025566970556 ], [ -81.99589942809024, 28.647953039321347 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Orange Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996892359085606, 28.648017227533181 ], [ -81.995889937806126, 28.648025566970556 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Market Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995839343090026, 28.647992091363307 ], [ -81.995763447548569, 28.648042299332776 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Orange Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995889937806126, 28.648025566970556 ], [ -81.995763447548569, 28.648042299332776 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Madison Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995855113758935, 28.64901861982867 ], [ -81.995870943967034, 28.648508147315503 ], [ -81.995880446745318, 28.648117619362672 ], [ -81.995889937806126, 28.648025566970556 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Market Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995817218138981, 28.647721511667822 ], [ -81.994840065742693, 28.648368634838302 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Market Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995763447548569, 28.648042299332776 ], [ -81.995121499088555, 28.648455119413889 ], [ -81.994836889238172, 28.648647582820168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Magnolia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994835628226056, 28.648580077219709 ], [ -81.994835633256542, 28.648477424785099 ], [ -81.994840065742693, 28.648368634838302 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Market Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994835628226056, 28.648580077219709 ], [ -81.994251184926043, 28.648962408233732 ], [ -81.994052213168516, 28.649094668119211 ], [ -81.993065998085996, 28.649735615021584 ], [ -81.993008316402296, 28.649890772170878 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Magnolia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994836889238172, 28.648647582820168 ], [ -81.994835628226056, 28.648580077219709 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Market Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994840065742693, 28.648368634838302 ], [ -81.994602891749153, 28.648508656796235 ], [ -81.993778281963969, 28.648992910560803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Magnolia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994840065742693, 28.648368634838302 ], [ -81.994843247855471, 28.64793291860963 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Orange Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994843247855471, 28.64793291860963 ], [ -81.994155151992288, 28.647939583643048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Orange Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993785804019694, 28.647959649713552 ], [ -81.993429106418347, 28.647959632126906 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Orange Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994155151992288, 28.647939583643048 ], [ -81.993785804019694, 28.647959649713552 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Maryland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993778281963969, 28.648992910560803 ], [ -81.993785804019694, 28.647959649713552 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Orange Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993429106418347, 28.647959632126906 ], [ -81.992708122121471, 28.647961826993352 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Washington Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992705558022735, 28.649687266236143 ], [ -81.992705567909155, 28.649529560507467 ], [ -81.992708531726166, 28.648369665714007 ], [ -81.992708122121471, 28.647961826993352 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Washington Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99272086609119, 28.647049081433231 ], [ -81.992724802736447, 28.646492678643305 ], [ -81.992724825080998, 28.64616876792897 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Washington Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992708122121471, 28.647961826993352 ], [ -81.99272086609119, 28.647049081433231 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Highland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993434223015029, 28.647055840001418 ], [ -81.993436923858511, 28.64649075395263 ], [ -81.99344584519757, 28.64616684278824 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jackson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993434223015029, 28.647055840001418 ], [ -81.99272086609119, 28.647049081433231 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Highland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993429106418347, 28.647959632126906 ], [ -81.993434223015029, 28.647055840001418 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jackson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994150141706839, 28.647038021611394 ], [ -81.993434223015029, 28.647055840001418 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vermont Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994155151992288, 28.647939583643048 ], [ -81.994142549236443, 28.647102738614418 ], [ -81.994150141706839, 28.647038021611394 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Magnolia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994843247855471, 28.64793291860963 ], [ -81.994845809451846, 28.647321464268511 ], [ -81.994848352786931, 28.647020199630944 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jackson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994848352786931, 28.647020199630944 ], [ -81.994150141706839, 28.647038021611394 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Jefferson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99414766076876, 28.646161009434767 ], [ -81.99344584519757, 28.64616684278824 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 469", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977458815495439, 28.640045321387518 ], [ -81.97728051198186, 28.639721043566723 ], [ -81.976719956420922, 28.638698792143888 ], [ -81.976489008217456, 28.638268446912555 ], [ -81.975735688081272, 28.636908234457387 ], [ -81.974775131619708, 28.635159996841498 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 469", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971908502116349, 28.629948788759208 ], [ -81.971316642750878, 28.628876609329268 ], [ -81.970556715159262, 28.627495103761078 ], [ -81.970012229075593, 28.626512788051009 ], [ -81.969778069606747, 28.626074252847687 ], [ -81.969640473972902, 28.625815440842931 ], [ -81.969538777565333, 28.625609448951955 ], [ -81.969407174518125, 28.625334795683763 ], [ -81.969305485673644, 28.625102396647279 ], [ -81.969042334827989, 28.624539340544416 ], [ -81.968991776732153, 28.624430927237629 ], [ -81.968330145904361, 28.622966351619066 ], [ -81.967866254231296, 28.621946971170836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Jefferson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992724825080998, 28.64616876792897 ], [ -81.990627126148439, 28.646186101979797 ], [ -81.988615354603638, 28.646210432965031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Jefferson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988615354603638, 28.646210432965031 ], [ -81.98439818854844, 28.646179391275034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Osceola Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988630749520553, 28.649880323194164 ], [ -81.98862977599488, 28.649782631730158 ], [ -81.98862252661273, 28.648358975224038 ], [ -81.988615354603638, 28.646210432965031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 469", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984501165188476, 28.649854802957595 ], [ -81.984317046066536, 28.649853962963956 ], [ -81.983638165329069, 28.649850864741747 ], [ -81.983418469958011, 28.649849861242103 ], [ -81.983267295134283, 28.649849170097458 ], [ -81.983127699071716, 28.649846742352157 ], [ -81.983002125157086, 28.649838620708906 ], [ -81.982910006128478, 28.649829701067247 ], [ -81.982770109921361, 28.649811304278153 ], [ -81.982684747184322, 28.649797153613498 ], [ -81.982581272553773, 28.649776973828573 ], [ -81.982487287805043, 28.649755705189822 ], [ -81.982378855444921, 28.649727593066807 ], [ -81.982305056140248, 28.649706211468771 ], [ -81.982202332595463, 28.649673313972414 ], [ -81.982118127573571, 28.649643534648074 ], [ -81.982049939901216, 28.649617494000776 ], [ -81.981971845379135, 28.649584788230005 ], [ -81.98190140296515, 28.649554510736007 ], [ -81.981819305853094, 28.64951581823766 ], [ -81.981733722490148, 28.649472352757524 ], [ -81.981660831957825, 28.649432676974477 ], [ -81.981586770809727, 28.649389717390086 ], [ -81.98151611308991, 28.649346103140601 ], [ -81.98143295221746, 28.649291259349148 ], [ -81.981376050173836, 28.649251399754295 ], [ -81.981315181162415, 28.6492065171782 ], [ -81.981255973624997, 28.649160487036529 ], [ -81.981181677013069, 28.64909765324694 ], [ -81.981132392621717, 28.649053234216602 ], [ -81.98107332923442, 28.648997170038722 ], [ -81.981016040943288, 28.648939577529969 ], [ -81.980961251831971, 28.648881231902397 ], [ -81.980898446491736, 28.648809970872989 ], [ -81.980852915286818, 28.648755034647841 ], [ -81.98081217794622, 28.648703276221045 ], [ -81.980754838361122, 28.64862571038465 ], [ -81.980710887266611, 28.648562001827401 ], [ -81.980664361054636, 28.648489868673366 ], [ -81.980622690158597, 28.648420481113479 ], [ -81.980575139582299, 28.648334682801721 ], [ -81.980537497871865, 28.64826068576528 ], [ -81.980499270544712, 28.648178677692588 ], [ -81.980464337144824, 28.648096097106624 ], [ -81.980433865197483, 28.648016326136631 ], [ -81.980403780504417, 28.647928083182183 ], [ -81.98037058064385, 28.647814874829191 ], [ -81.980344522707469, 28.647707482171512 ], [ -81.980327846507592, 28.647624081300108 ], [ -81.980312145848018, 28.647526020314249 ], [ -81.980303508185244, 28.647456246800694 ], [ -81.980295398163818, 28.647365553602274 ], [ -81.98028890754712, 28.647224801737369 ], [ -81.980237981733779, 28.645890272260317 ], [ -81.980230879791264, 28.645677476832553 ], [ -81.980212350736565, 28.645505689992138 ], [ -81.980200402213541, 28.645425128528387 ], [ -81.980175797458287, 28.645290873459469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ashley Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00379568377727, 28.646233567014328 ], [ -82.003791540765448, 28.646138601640715 ], [ -82.003480983407471, 28.645546893837018 ], [ -82.003104176491689, 28.644757949202706 ], [ -82.002996519162707, 28.644564368217861 ], [ -82.002934408959348, 28.644465748331314 ], [ -82.002834050046914, 28.64429805873732 ], [ -82.002793628017372, 28.644202768086181 ], [ -82.002727369299976, 28.643779072438758 ], [ -82.002512029315014, 28.642120817057517 ], [ -82.002387800503925, 28.641331868526372 ], [ -82.002325681859134, 28.640689019201218 ], [ -82.00225528747869, 28.640199577978574 ], [ -82.002122777372037, 28.63917321246053 ], [ -82.00208136961767, 28.638906575843798 ], [ -82.00204410536135, 28.638793346403617 ], [ -82.001029740566992, 28.637631838689384 ], [ -82.000802029629369, 28.637376160614998 ], [ -82.000698524974865, 28.637281194042782 ], [ -82.000512216237723, 28.637021861947311 ], [ -82.000052659303094, 28.63643379950382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 577", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972022893540171, 28.672561330239979 ], [ -81.972013955364559, 28.672329918793658 ], [ -81.972012694946315, 28.671859159713321 ], [ -81.97200978699766, 28.669774019816664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 48th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97196785591639, 28.68531478197929 ], [ -81.971691991931024, 28.685330355199607 ], [ -81.971334709209074, 28.685320509884534 ], [ -81.970315471325293, 28.685325172852284 ], [ -81.969445805812029, 28.68530055542108 ], [ -81.968695231122425, 28.685288171439758 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 577", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971973564434222, 28.686212648636833 ], [ -81.971974418395064, 28.68563326292993 ], [ -81.97196785591639, 28.68531478197929 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 577", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971974015506177, 28.682560704674017 ], [ -81.971987375454333, 28.682231455701736 ], [ -81.971989848440927, 28.682043414826698 ], [ -81.971999727813227, 28.681338254631576 ], [ -81.972000768436502, 28.680274807236781 ], [ -81.972020504969564, 28.678953512279371 ], [ -81.972009769123488, 28.677671288914187 ], [ -81.972010090665464, 28.676459895286065 ], [ -81.972013094955798, 28.675568447443084 ], [ -81.972016016986672, 28.674994499613991 ], [ -81.972012048246796, 28.674292329736165 ], [ -81.972022893540171, 28.672561330239979 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 51st Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971974015506177, 28.682560704674017 ], [ -81.971853813315079, 28.682587415616755 ], [ -81.971684885823208, 28.682604568618213 ], [ -81.971359666061659, 28.682622366723834 ], [ -81.970988917853717, 28.682622287155858 ], [ -81.970550321965874, 28.682624329339081 ], [ -81.970383124996488, 28.682617883321402 ], [ -81.970157777911368, 28.682583644112118 ], [ -81.969973625644329, 28.682549412837748 ], [ -81.969559268824341, 28.682525813864448 ], [ -81.969001938071926, 28.682525686456472 ], [ -81.968233795788251, 28.682506275703069 ], [ -81.968110213766522, 28.682499835373932 ], [ -81.968061754272696, 28.682489139360186 ], [ -81.968013297006735, 28.68246775972381 ], [ -81.967972114052515, 28.682429286229485 ], [ -81.967938209693884, 28.682363036180885 ], [ -81.967926133168433, 28.682232685184911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 558", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98118475062499, 28.664457320980588 ], [ -81.980952266664573, 28.664459566430729 ], [ -81.980734917904556, 28.664461967061293 ], [ -81.980558582687038, 28.664465136689753 ], [ -81.980359220175046, 28.66448539742229 ], [ -81.980039087791553, 28.664542832281786 ], [ -81.979845470901864, 28.664593524325404 ], [ -81.979684442300737, 28.664645910215668 ], [ -81.979492738703769, 28.664720270262162 ], [ -81.979262687315938, 28.664830130031373 ], [ -81.979044134489399, 28.664961968452726 ], [ -81.978764229209588, 28.665146209757388 ], [ -81.978447894928735, 28.665367639718276 ], [ -81.975897497687299, 28.667108304733929 ], [ -81.975181095162597, 28.667604024310794 ], [ -81.974876434114279, 28.667811566525089 ], [ -81.974682558198936, 28.667942805137542 ], [ -81.97448868208653, 28.668077095161983 ], [ -81.973252707494282, 28.668916406117564 ], [ -81.97200978699766, 28.669774019816664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 573", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972022893540171, 28.672561330239979 ], [ -81.97337772076331, 28.672007015808095 ], [ -81.97404389253407, 28.671737803581703 ], [ -81.97427668096833, 28.671648387528865 ], [ -81.97443251281716, 28.671588867861715 ], [ -81.974641299746253, 28.671504394996944 ], [ -81.974879267468111, 28.671401319368393 ], [ -81.975290992923135, 28.671229875906537 ], [ -81.976133931337642, 28.670887430832682 ], [ -81.976603654537854, 28.67069420504933 ], [ -81.976827553973422, 28.670603454814668 ], [ -81.97709444423073, 28.67048669910815 ], [ -81.977333168563362, 28.670359369985146 ], [ -81.97743451056165, 28.670289495983035 ], [ -81.977549751430502, 28.670196082363603 ], [ -81.97773189674065, 28.670050713518325 ], [ -81.977945383423005, 28.669897214155409 ], [ -81.978130614462785, 28.6697713618412 ], [ -81.978330296431508, 28.669636261793951 ], [ -81.978540827106627, 28.66946543169642 ], [ -81.978636853878314, 28.669388113490076 ], [ -81.978721216768747, 28.669306974686695 ], [ -81.978840096553526, 28.669178500377381 ], [ -81.97896990014263, 28.669012385943592 ], [ -81.979106620418406, 28.668857313412172 ], [ -81.979298362360595, 28.668632482656196 ], [ -81.979463412199337, 28.668368402342161 ], [ -81.979592649628728, 28.668172898208148 ], [ -81.979680629299153, 28.668039805695535 ], [ -81.979763307877079, 28.667881054470449 ], [ -81.979902729097518, 28.66761032132074 ], [ -81.980016640701692, 28.667367118914228 ], [ -81.980159642479791, 28.667025445455781 ], [ -81.980268753503154, 28.666744218670587 ], [ -81.980441369669208, 28.666315397359227 ], [ -81.980719573422419, 28.665612355621228 ], [ -81.981021939588615, 28.664862836559401 ], [ -81.98118475062499, 28.664457320980588 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 558", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98451248363682, 28.664462875839757 ], [ -81.983049779466356, 28.664457001439253 ], [ -81.98118475062499, 28.664457320980588 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 558", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991719611603045, 28.664447714954882 ], [ -81.990319281307976, 28.664455046530101 ], [ -81.988613201604835, 28.664451011586007 ], [ -81.985758849918852, 28.664457318585477 ], [ -81.98451248363682, 28.664462875839757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 558", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000893674344539, 28.664405931632022 ], [ -81.996586975185863, 28.66445667800134 ], [ -81.994338272567404, 28.664466366127847 ], [ -81.992615562141793, 28.66445398195356 ], [ -81.991719611603045, 28.664447714954882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palm Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990667015790422, 28.653411504995077 ], [ -81.990672609259008, 28.653979083267025 ], [ -81.990669725455646, 28.654673619438135 ], [ -81.990672507321563, 28.655131665663838 ], [ -81.990666630929653, 28.656026435939665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Kings Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988656522139223, 28.652325131484005 ], [ -81.987984924029973, 28.652753963940466 ], [ -81.98749006220423, 28.653067361455161 ], [ -81.98721306041945, 28.653242358297582 ], [ -81.987015765927183, 28.65337361357264 ], [ -81.986887697373959, 28.65344992500463 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Osceola Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988630749520553, 28.649880323194164 ], [ -81.988633445977044, 28.650069973643539 ], [ -81.988656522139223, 28.652325131484005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Kings Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990019065814636, 28.651439651615043 ], [ -81.989372633097645, 28.651857977983244 ], [ -81.988656522139223, 28.652325131484005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 469", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989984611206225, 28.649876842491206 ], [ -81.988630749520553, 28.649880323194164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maple Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989984611206225, 28.649876842491206 ], [ -81.989986897041561, 28.650096610138618 ], [ -81.989996065369851, 28.650713189426288 ], [ -81.989993705960487, 28.65126871756393 ], [ -81.990019065814636, 28.651439651615043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Jefferson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994805390022137, 28.646149879368977 ], [ -81.99414766076876, 28.646161009434767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Magnolia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994848352786931, 28.647020199630944 ], [ -81.994848372421643, 28.646618514795183 ], [ -81.994850419406845, 28.646154345041523 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Jefferson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994850419406845, 28.646154345041523 ], [ -81.994805390022137, 28.646149879368977 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Jefferson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995812348441717, 28.646143222862172 ], [ -81.995329043530916, 28.646149899556171 ], [ -81.994850419406845, 28.646154345041523 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Madison Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995817218138981, 28.647721511667822 ], [ -81.995807751823293, 28.647216614663698 ], [ -81.995809160280643, 28.646807119268821 ], [ -81.995812348441717, 28.646143222862172 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Virginia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9968734146386, 28.647060435108028 ], [ -81.996863949458785, 28.646315643053843 ], [ -81.996862185414301, 28.64612930608282 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Jefferson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996862185414301, 28.64612930608282 ], [ -81.995812348441717, 28.646143222862172 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Virginia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996862185414301, 28.64612930608282 ], [ -81.996843238379356, 28.645245038664637 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Virginia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996843238379356, 28.645245038664637 ], [ -81.996843241976961, 28.645125090199734 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Virginia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996830617991051, 28.644263140295539 ], [ -81.996813763970749, 28.642816236056444 ], [ -81.996809322935576, 28.642539440574176 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Prairie Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996830616059157, 28.644327299120977 ], [ -81.995790285032257, 28.644344005977072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Virginia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996843241976961, 28.645125090199734 ], [ -81.996830616059157, 28.644327299120977 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Pine Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996843238379356, 28.645245038664637 ], [ -81.995802897159678, 28.645239429045443 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Pine Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995802897159678, 28.645239429045443 ], [ -81.994797338664341, 28.645242182022038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Madison Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995812348441717, 28.646143222862172 ], [ -81.995802897159678, 28.645239429045443 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Madison Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995802897159678, 28.645239429045443 ], [ -81.995790285032257, 28.644344005977072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Magnolia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994805390022137, 28.646149879368977 ], [ -81.994795310948746, 28.645353201788101 ], [ -81.994797338664341, 28.645242182022038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "State Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999081310402062, 28.647145106477918 ], [ -81.999856054564219, 28.647147935477765 ], [ -82.000970144295493, 28.647114048629629 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Jefferson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999074916098976, 28.646125609231792 ], [ -81.999856056019127, 28.646159503025 ], [ -82.000966934433194, 28.646207514907385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Hodge Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000970144295493, 28.647114048629629 ], [ -82.00097974705885, 28.646763861035481 ], [ -82.000966934433194, 28.646207514907385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Hodge Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000963767281021, 28.649912725263412 ], [ -82.000963749867367, 28.647983870702721 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Kings Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999583922773425, 28.649909898531309 ], [ -82.000185805653686, 28.649912724509754 ], [ -82.000963767281021, 28.649912725263412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Kings Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998914808070396, 28.649909893422329 ], [ -81.999583922773425, 28.649909898531309 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Florida Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998914808070396, 28.649909893422329 ], [ -81.99892562571641, 28.65167984991205 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Hodge Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000963767281021, 28.649912725263412 ], [ -82.000971630577567, 28.650262803498006 ], [ -82.000984293157714, 28.651685438241838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Kings Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000963767281021, 28.649912725263412 ], [ -82.002835839115747, 28.649916947403774 ], [ -82.004263703192052, 28.64991691998927 ], [ -82.004949464038162, 28.649916901039891 ], [ -82.005628181423646, 28.64992365631003 ], [ -82.006632167336107, 28.649923617275856 ], [ -82.007638715821784, 28.649925829219061 ], [ -82.008030579949335, 28.649928068501751 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Jefferson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00379568377727, 28.646233567014328 ], [ -82.003874353735085, 28.646233565287961 ], [ -82.004164189775622, 28.646233558533503 ], [ -82.004749205210416, 28.646229346245967 ], [ -82.00526142477824, 28.646239920397779 ], [ -82.005629586086272, 28.646239907942348 ], [ -82.005809662663168, 28.646239902388089 ], [ -82.005881693089322, 28.646239899738447 ], [ -82.005981736400003, 28.646243425933697 ], [ -82.006122277245225, 28.646238760886121 ], [ -82.006206793914004, 28.646254572823466 ], [ -82.006304118594372, 28.646295235433183 ], [ -82.006380954499477, 28.646344936607409 ], [ -82.00643986209802, 28.646390120480135 ], [ -82.006485969983444, 28.646512118023427 ], [ -82.006565373997077, 28.646683821138225 ], [ -82.00664478261632, 28.646875853832949 ], [ -82.006639680001982, 28.647194412953628 ], [ -82.006646964728262, 28.647254445958694 ], [ -82.006724208872058, 28.647388707525241 ], [ -82.006754952438342, 28.647540077560592 ], [ -82.00677289391507, 28.647745670412903 ], [ -82.006842053228866, 28.647890261294183 ], [ -82.006900966304826, 28.647987407773183 ], [ -82.007000857812997, 28.648098107264254 ], [ -82.007141726301484, 28.648168139216459 ], [ -82.007241614671671, 28.648226875712332 ], [ -82.007300531113742, 28.648364686679816 ], [ -82.007541317655097, 28.648895604900197 ], [ -82.007794914819229, 28.649458152472 ], [ -82.008030579949335, 28.649928068501751 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Jefferson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000966934433194, 28.646207514907385 ], [ -82.002690167363156, 28.64621532496448 ], [ -82.003436639198725, 28.646225846706823 ], [ -82.003696312449009, 28.646255484166993 ], [ -82.00379568377727, 28.646233567014328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 157", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994335845489815, 28.828530119169248 ], [ -81.993839985682243, 28.829089078035079 ], [ -81.993277307092143, 28.829703748297295 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 155", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99255187303811, 28.829182036148936 ], [ -81.992368115148238, 28.829368935301666 ], [ -81.992333263912784, 28.829410778751463 ], [ -81.992295243934791, 28.829458201883863 ], [ -81.992250887943385, 28.829511203608615 ], [ -81.992228708238784, 28.829572576434462 ], [ -81.992228702432868, 28.829633947851171 ], [ -81.992238198243186, 28.829737166186156 ], [ -81.992260361248825, 28.829904551123292 ], [ -81.992355327886585, 28.830883736325703 ], [ -81.992203230628988, 28.831265916400064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wesleyan Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994072443508117, 28.830317518582547 ], [ -81.993277307092143, 28.829703748297295 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 159", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995160966404725, 28.829097219738276 ], [ -81.994534104404778, 28.829810878810921 ], [ -81.994072443508117, 28.830317518582547 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wesleyan Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99481373327923, 28.830844801171384 ], [ -81.994544458427868, 28.830660670635993 ], [ -81.994072443508117, 28.830317518582547 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 161", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995905296724288, 28.829614719121448 ], [ -81.995320063849292, 28.830274479185018 ], [ -81.99481373327923, 28.830844801171384 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wesleyan Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995551864087446, 28.83135255088315 ], [ -81.99481373327923, 28.830844801171384 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 163", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996644737604967, 28.830127901200456 ], [ -81.995993392281591, 28.830850190571727 ], [ -81.995551864087446, 28.83135255088315 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 165", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997376843090265, 28.830632454776833 ], [ -81.996806303154031, 28.831279285094094 ], [ -81.996283667267477, 28.831863088082198 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wesleyan Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996283667267477, 28.831863088082198 ], [ -81.995551864087446, 28.83135255088315 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997129523369267, 28.832446155010327 ], [ -81.99718655179791, 28.83238757301114 ], [ -81.997604524184283, 28.831913207414889 ], [ -81.998219134527986, 28.83121678445417 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wesleyan Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997129523369267, 28.832446155010327 ], [ -81.996283667267477, 28.831863088082198 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wesleyan Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997984896928983, 28.83303758655077 ], [ -81.997129523369267, 28.832446155010327 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 487", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114285267077037, 28.763095434583445 ], [ -82.11444542754603, 28.7630953009687 ], [ -82.114546583087247, 28.763095215009105 ], [ -82.114611910328009, 28.76309330397623 ], [ -82.114683553764181, 28.763087673663833 ], [ -82.114750974279332, 28.763072761149374 ], [ -82.114803630651153, 28.763046719265361 ], [ -82.1151026835946, 28.762868201844192 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 487A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112677344184576, 28.761134934820895 ], [ -82.112800201152965, 28.761228335539272 ], [ -82.113473868755065, 28.762065055798129 ], [ -82.114067368875425, 28.762807330361319 ], [ -82.114285267077037, 28.763095434583445 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 487", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112677344184576, 28.761134934820895 ], [ -82.112672467523666, 28.761501682176014 ], [ -82.11266001340914, 28.762172506057183 ], [ -82.11265545155868, 28.762834038520971 ], [ -82.112685754661868, 28.763089341530048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 487", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112685754661868, 28.763089341530048 ], [ -82.114285267077037, 28.763095434583445 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 5th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112685754661868, 28.763089341530048 ], [ -82.112681710442729, 28.763249039289974 ], [ -82.112694484019457, 28.763369728686534 ], [ -82.112698868593995, 28.763527563403102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 5th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110840053159066, 28.763438099476204 ], [ -82.111860025503006, 28.763433552534227 ], [ -82.112058124282953, 28.763437102704589 ], [ -82.112205645646881, 28.763440695167947 ], [ -82.112348973911054, 28.763464717535573 ], [ -82.112515483016765, 28.763488719698223 ], [ -82.112698868593995, 28.763527563403102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 5th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112698868593995, 28.763527563403102 ], [ -82.112732934923216, 28.763854353669412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 5th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11106849492765, 28.764240104747977 ], [ -82.112212519163322, 28.763960627730501 ], [ -82.112376834579905, 28.76390107209405 ], [ -82.112465307583818, 28.763865716739907 ], [ -82.112558009289344, 28.763843356581237 ], [ -82.112633877193559, 28.763845149913884 ], [ -82.112732934923216, 28.763854353669412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 486", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112732934923216, 28.763854353669412 ], [ -82.11282356488077, 28.763865421299016 ], [ -82.114433621279773, 28.76386779169459 ], [ -82.115236527829353, 28.763855971844468 ], [ -82.115849762254086, 28.763838739662333 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.1151026835946, 28.762868201844192 ], [ -82.115163359210428, 28.762950319849882 ], [ -82.115446665283571, 28.763306144226696 ], [ -82.115645035812165, 28.763556659705291 ], [ -82.115849762254086, 28.763838739662333 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 484", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118492998955801, 28.768085103345943 ], [ -82.118493485301215, 28.768517765252462 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115849762254086, 28.763838739662333 ], [ -82.115982710914437, 28.764005748704342 ], [ -82.116198004028718, 28.764311958732506 ], [ -82.116653931888422, 28.764968918604794 ], [ -82.117257630660575, 28.765846723764071 ], [ -82.117540485874883, 28.766258716616161 ], [ -82.117817017685098, 28.76666700039052 ], [ -82.118729301948193, 28.768021909568695 ], [ -82.118779293086149, 28.768098521145721 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 485", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118779293086149, 28.768098521145721 ], [ -82.118944188623175, 28.768109602826865 ], [ -82.119295134048443, 28.768103787938465 ], [ -82.120597926912666, 28.768104656376039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118779293086149, 28.768098521145721 ], [ -82.118920635099428, 28.768308423964104 ], [ -82.119102163383332, 28.76854924715283 ], [ -82.11931289827325, 28.768834582704468 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 483A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11931289827325, 28.768834582704468 ], [ -82.119388704844184, 28.768800648768888 ], [ -82.11957924530401, 28.768797211495144 ], [ -82.120594137670508, 28.768794611457611 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 485", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117541874040867, 28.768089734014133 ], [ -82.118492998955801, 28.768085103345943 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 485A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114906307001647, 28.769876950257324 ], [ -82.116029081745609, 28.769871355429483 ], [ -82.116716653566087, 28.769866125167493 ], [ -82.117202906251833, 28.769851305488455 ], [ -82.11720299329491, 28.769851301804245 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 485", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11518775476803, 28.768999316618949 ], [ -82.115838972395721, 28.768998764006103 ], [ -82.116397472299482, 28.769009429346273 ], [ -82.116435409172581, 28.769011254764802 ], [ -82.116467012118321, 28.76900194201335 ], [ -82.116507038064839, 28.768987052060286 ], [ -82.116532299886103, 28.768961034766267 ], [ -82.116551229820061, 28.76892759323508 ], [ -82.116559587623527, 28.768861201024986 ], [ -82.116564236915465, 28.768301798364913 ], [ -82.116565241405965, 28.768257233109324 ], [ -82.116567298636099, 28.768212666049596 ], [ -82.116573571946745, 28.768168093574324 ], [ -82.11659039727401, 28.768136510799291 ], [ -82.116619879065269, 28.768116058955155 ], [ -82.116653578982167, 28.768097461354678 ], [ -82.116696243078124, 28.768085819219785 ], [ -82.117541874040867, 28.768089734014133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 202", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078644859397642, 28.945565134502321 ], [ -82.078572417828127, 28.945564880590091 ], [ -82.077262146676915, 28.945577171839929 ], [ -82.075897321846313, 28.945582438519796 ], [ -82.074910767501265, 28.945594228297786 ], [ -82.073139565800147, 28.945606437498785 ], [ -82.070349191678645, 28.945619477371739 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053643202274472, 28.949674124486538 ], [ -82.053651345566578, 28.950208660410738 ], [ -82.053666639246089, 28.952259349615915 ], [ -82.053662194500362, 28.952852424638525 ], [ -82.053671361123108, 28.953764694111193 ], [ -82.05366185246443, 28.955562350010393 ], [ -82.053670244748275, 28.956681292694533 ], [ -82.053668428993674, 28.958231310278805 ], [ -82.053669087581113, 28.959519933959513 ], [ -82.053674652889057, 28.960205515289648 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 13th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.081642998608245, 28.956195143136853 ], [ -82.081633750877458, 28.956597751407127 ], [ -82.081643869865829, 28.957312987806901 ], [ -82.081621559694597, 28.957479572991645 ], [ -82.08159529697086, 28.958334154696761 ], [ -82.08156424395068, 28.959623788023087 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 140th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074845631385244, 28.959876722131593 ], [ -82.075679396293552, 28.959879009767658 ], [ -82.079752784078238, 28.959958472880466 ], [ -82.080192635009467, 28.959974002156567 ], [ -82.08067510516635, 28.959965819496656 ], [ -82.081530096557813, 28.959961359623133 ], [ -82.082070926056559, 28.959970901966194 ], [ -82.085849157902246, 28.959935508550021 ], [ -82.094723452367816, 28.959907584363293 ], [ -82.096019421783168, 28.95989051302168 ], [ -82.096074536302709, 28.959890129198154 ], [ -82.099866715843632, 28.959874318872497 ], [ -82.101527988596899, 28.959878582671504 ], [ -82.103244179976386, 28.959878313180155 ], [ -82.103272518642569, 28.959878291531709 ], [ -82.104383218813282, 28.959872625536324 ], [ -82.106298364188476, 28.959863913666389 ], [ -82.107506398235159, 28.959861927695204 ], [ -82.10855654610144, 28.959892370565665 ], [ -82.111195999506222, 28.959879224609498 ], [ -82.112998379906102, 28.959880479509355 ], [ -82.116121555680465, 28.959867518161001 ], [ -82.117694261364264, 28.959844156694338 ], [ -82.11803840394515, 28.959813604505044 ], [ -82.118101652346553, 28.959818963859156 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 137th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.085994740800729, 28.956288759276298 ], [ -82.085545903563329, 28.95623970384877 ], [ -82.084735268076955, 28.956250081309836 ], [ -82.08407608316017, 28.956235690375319 ], [ -82.082861503830614, 28.956214237701118 ], [ -82.082182708620806, 28.956231919587317 ], [ -82.081777472847278, 28.956227949527907 ], [ -82.081642998608245, 28.956195143136853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 202", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.082743776077734, 28.952765447957244 ], [ -82.082732591036219, 28.952812327879617 ], [ -82.082707380506903, 28.952851815784694 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 135th Grove", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086247253915488, 28.952960621528494 ], [ -82.085001876118042, 28.952958941666999 ], [ -82.08323479780907, 28.952972375062568 ], [ -82.082757962482248, 28.952972667425293 ], [ -82.082738283388039, 28.952915938921922 ], [ -82.082707380506903, 28.952851815784694 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parks Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03957554763592, 28.849067897054532 ], [ -82.039539534935003, 28.849067443645762 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parks Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040263057202381, 28.849070903914907 ], [ -82.040131777574942, 28.849072892244397 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parks Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040686242853056, 28.849070145688717 ], [ -82.040263057202381, 28.849070903914907 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999088043559496, 28.926312087631793 ], [ -81.998756170903519, 28.926092611963337 ], [ -81.998563679414943, 28.92594882537859 ], [ -81.998440499739104, 28.92584618140171 ], [ -81.998264880620212, 28.925695585877932 ], [ -81.997898082547124, 28.925384612083466 ], [ -81.997473491005096, 28.925022789056051 ], [ -81.997062236146448, 28.924664874627965 ], [ -81.996848589340615, 28.924492638391079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999867316483375, 28.926703781786205 ], [ -81.999792115950896, 28.926665657801614 ], [ -81.999692079029842, 28.92662262971163 ], [ -81.99958092656, 28.926571780400511 ], [ -81.999422965066955, 28.926495711582657 ], [ -81.999238572780556, 28.926397715712429 ], [ -81.999088043559496, 28.926312087631793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00390950204357, 28.927132494632779 ], [ -82.003830666345834, 28.92713249568034 ], [ -82.003183253713885, 28.927127621310341 ], [ -82.002717391154462, 28.927124112502661 ], [ -82.002473713893821, 28.927122013874566 ], [ -82.002225257230677, 28.92711991666993 ], [ -82.001972023184805, 28.927115714904712 ], [ -82.001766216080128, 28.927109612907607 ], [ -82.001597259678903, 28.927101790536359 ], [ -82.001350883856404, 28.927075787187743 ], [ -82.001226654968875, 28.927061075950789 ], [ -82.001097649742192, 28.927040059378132 ], [ -82.000873081977787, 28.927002229577706 ], [ -82.000743594830439, 28.926974669219646 ], [ -82.000603126387787, 28.926939177564911 ], [ -82.000449457245779, 28.926896535965376 ], [ -82.00044869007985, 28.926896323023112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Hodge Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000939334702252, 28.654545752420162 ], [ -82.000902207028631, 28.657063001348682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 484", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118493485301215, 28.768517765252462 ], [ -82.118515148560135, 28.768684497642216 ], [ -82.118503705762905, 28.769754095284842 ], [ -82.11847705364508, 28.770418893734139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 483", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11847705364508, 28.770418893734139 ], [ -82.119809481504447, 28.770406998684802 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 484A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118493485301215, 28.768517765252462 ], [ -82.119042687181505, 28.769274536794899 ], [ -82.119422656891629, 28.769820139013387 ], [ -82.119809481504447, 28.770406998684802 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11931289827325, 28.768834582704468 ], [ -82.119645603310516, 28.769330459538189 ], [ -82.120141573467066, 28.770042338039367 ], [ -82.120369565220415, 28.770374525507155 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 483", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119809481504447, 28.770406998684802 ], [ -82.120369565220415, 28.770374525507155 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 479", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125238860823799, 28.770801256860167 ], [ -82.126007897896272, 28.770800545772339 ], [ -82.12626837784218, 28.770800304233539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 479", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12626837784218, 28.770800304233539 ], [ -82.126925782500365, 28.770801253402258 ], [ -82.127062226257635, 28.770802688822869 ], [ -82.127170319041426, 28.770804147907715 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 27th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062401927170555, 28.914286033543647 ], [ -82.062257165500853, 28.914228494639968 ], [ -82.062118967832149, 28.914161658930091 ], [ -82.062012431355399, 28.914099750512094 ], [ -82.061936594100956, 28.914049759085628 ], [ -82.061857303849933, 28.913990673139917 ], [ -82.06177335596, 28.913914257958986 ], [ -82.061657326369598, 28.913793688980341 ], [ -82.061559523093834, 28.913673064726808 ], [ -82.061445251011563, 28.913528494586927 ], [ -82.061319396273475, 28.913389084389625 ], [ -82.061200443599731, 28.913269377114197 ], [ -82.061064168275507, 28.913143702506801 ], [ -82.060910848282845, 28.913020891163594 ], [ -82.060729867001015, 28.912890600234896 ], [ -82.060604543423509, 28.912808607644148 ], [ -82.060417911865542, 28.912705793732513 ], [ -82.060311058220506, 28.912649750820727 ], [ -82.060199038866884, 28.912598258586488 ], [ -82.06005083631473, 28.912539200246293 ], [ -82.059928482632642, 28.912495292541021 ], [ -82.05979751620751, 28.912449872653784 ], [ -82.059607098437837, 28.912398541600631 ], [ -82.059377065589175, 28.912345455469801 ], [ -82.059180635573554, 28.912313705367051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 27th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059180635573554, 28.912313705367051 ], [ -82.058819949416176, 28.912279805563809 ], [ -82.058438872632905, 28.912276836157993 ], [ -82.058239442522151, 28.912298857425043 ], [ -82.058082754678608, 28.91232712660122 ], [ -82.057958127770192, 28.912371051218443 ], [ -82.057862006486843, 28.912440033002156 ], [ -82.057787252325582, 28.91250587196588 ], [ -82.057716078485413, 28.912606177994306 ], [ -82.057676969031789, 28.912728406120198 ], [ -82.057652086616642, 28.912816158677025 ], [ -82.057655720282384, 28.91294776969681 ], [ -82.057680802114533, 28.913223520680653 ], [ -82.057684457153371, 28.913395869458981 ], [ -82.057670289413082, 28.913536889040088 ], [ -82.057641889237189, 28.913702984950937 ], [ -82.057581464267557, 28.913922365080943 ], [ -82.057506962306647, 28.914136598115828 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 27th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057506962306647, 28.914136598115828 ], [ -82.057449865210643, 28.914248320198322 ], [ -82.057378700120495, 28.914367427168404 ], [ -82.057289730471311, 28.914492812557619 ], [ -82.057229811854739, 28.914583920067539 ], [ -82.057188502189589, 28.914656702213172 ], [ -82.057157523162601, 28.914723417477141 ], [ -82.057119661973218, 28.914805294198715 ], [ -82.057093860439252, 28.914881102417546 ], [ -82.057064637649333, 28.915003909061507 ], [ -82.057054353813129, 28.915103963576847 ], [ -82.057048091275064, 28.915495679998067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 27th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057135901840425, 28.916511437125546 ], [ -82.057126657839433, 28.915890484543802 ], [ -82.057048091275064, 28.915495679998067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 27th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057048091275064, 28.915495679998067 ], [ -82.056987752336525, 28.915878009018385 ], [ -82.056995909099612, 28.916511495861009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 214", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057135901840425, 28.916511437125546 ], [ -82.056995909099612, 28.916511495861009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 27th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14872522161653, 28.908916259689203 ], [ -82.148723687598235, 28.909293216470097 ], [ -82.148730262898596, 28.909551795941063 ], [ -82.148728622862862, 28.909854090666339 ], [ -82.148729264268866, 28.910305708036777 ], [ -82.148736907817778, 28.91277320382645 ], [ -82.148766078272189, 28.91436657727121 ], [ -82.148769764928403, 28.915504720827691 ], [ -82.148768660633664, 28.916183968501702 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 102nd Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120000299023431, 28.905384540546102 ], [ -82.121619932906299, 28.905381390596904 ], [ -82.123292083372021, 28.905368952787509 ], [ -82.123542528736607, 28.905397862252318 ], [ -82.123761900879174, 28.905401301696187 ], [ -82.123925399614521, 28.905406615492605 ], [ -82.124082666925602, 28.905393724673587 ], [ -82.124448930696403, 28.905358788060244 ], [ -82.124804879472023, 28.905352997795745 ], [ -82.125458844133675, 28.905352393156647 ], [ -82.126746113688185, 28.90537850889735 ], [ -82.128132681640523, 28.905375382326689 ], [ -82.129022574653035, 28.905376358525114 ], [ -82.130792003357769, 28.905372838094106 ], [ -82.131777093188532, 28.905373703143397 ], [ -82.132141326543177, 28.90537334882432 ], [ -82.132313093517368, 28.905371358328942 ], [ -82.132466221153834, 28.905358463579024 ], [ -82.132613127096405, 28.90533464524977 ], [ -82.132716573362117, 28.905312692032723 ], [ -82.132820017016158, 28.905287095270303 ], [ -82.132917251777883, 28.905261505430357 ], [ -82.133031021908081, 28.905219509971019 ], [ -82.133502624194492, 28.905026014712785 ], [ -82.133663959842622, 28.9049602982547 ], [ -82.133817042235464, 28.904910979059419 ], [ -82.13397427260351, 28.904870760645615 ], [ -82.134079786077962, 28.904846982601764 ], [ -82.134179099734297, 28.904828673120072 ], [ -82.134274277446309, 28.904814010236283 ], [ -82.134454302834229, 28.904797442161883 ], [ -82.134619852974382, 28.904789994215207 ], [ -82.134816454185213, 28.904787976721714 ], [ -82.134986160255806, 28.904793270910016 ], [ -82.135157948674859, 28.904809488698387 ], [ -82.135342168892009, 28.904836619725884 ], [ -82.135555393636452, 28.904887396769979 ], [ -82.135752071844024, 28.904945470699868 ], [ -82.135969461537059, 28.905016273862039 ], [ -82.1360957508696, 28.905054388860542 ], [ -82.136234454563876, 28.90509067040778 ], [ -82.136346239211235, 28.905114231316475 ], [ -82.13646422222827, 28.90513050074826 ], [ -82.136578054874875, 28.905137671009893 ], [ -82.136693945949702, 28.905135732229681 ], [ -82.136787060418001, 28.905126532151456 ], [ -82.136869826146281, 28.905115522549682 ], [ -82.136983613563885, 28.90508809310154 ], [ -82.137062221643333, 28.905062518230348 ], [ -82.137144961068486, 28.905031476629983 ], [ -82.137250432056334, 28.904974917567191 ], [ -82.137351746661579, 28.904905615014549 ], [ -82.137450974121222, 28.904823568683415 ], [ -82.137816826429145, 28.904480840392722 ], [ -82.137924317804064, 28.904387857593719 ], [ -82.138085605086687, 28.904287536482173 ], [ -82.138224153302275, 28.904205448536064 ], [ -82.138339971170041, 28.904148878046829 ], [ -82.138468205784278, 28.904094114679321 ], [ -82.138608866053815, 28.904044801857587 ], [ -82.138753669510123, 28.903999129010558 ], [ -82.138886069794495, 28.903964392831455 ], [ -82.139030902014042, 28.903940570542908 ], [ -82.1391716053528, 28.903924036576534 ], [ -82.139324732405939, 28.903912952164756 ], [ -82.139531674245802, 28.903907275482396 ], [ -82.139742754929358, 28.903903415038826 ], [ -82.13996419078758, 28.903903186117315 ], [ -82.140138042862461, 28.903915754663114 ], [ -82.140311910635432, 28.903939247959247 ], [ -82.140477506384855, 28.90396639128452 ], [ -82.14064519, 28.904008101596496 ], [ -82.140804607968377, 28.904058924461658 ], [ -82.140970245690198, 28.904117024885032 ], [ -82.141131761243074, 28.904187877030989 ], [ -82.141289138510885, 28.904258733304083 ], [ -82.141438241846075, 28.90433324060875 ], [ -82.141550086914847, 28.9044005016084 ], [ -82.141653654492302, 28.904469593818543 ], [ -82.141755158287722, 28.904544148800735 ], [ -82.141883624033625, 28.904658740037679 ], [ -82.142005881667785, 28.904775158498065 ], [ -82.142103297917828, 28.904886140449225 ], [ -82.14220487575669, 28.905011683701471 ], [ -82.142279525957562, 28.90512086771805 ], [ -82.142360396499924, 28.905239149301131 ], [ -82.142445453423946, 28.90539020680184 ], [ -82.142501503809513, 28.905519441222161 ], [ -82.142559662838138, 28.905675988569179 ], [ -82.142599151398812, 28.905797957974322 ], [ -82.14262829550934, 28.905923578131436 ], [ -82.142651205577494, 28.906029174809856 ], [ -82.142670023643063, 28.906171196029927 ], [ -82.142682782714175, 28.90642248613031 ], [ -82.142687223934672, 28.906644647188173 ], [ -82.142684082532767, 28.907376708422643 ], [ -82.142677711814088, 28.908777091757514 ], [ -82.142677769895727, 28.90881897620876 ], [ -82.142681966663105, 28.908860856293547 ], [ -82.142694418479806, 28.908886338390637 ], [ -82.142715147675375, 28.908911809947515 ], [ -82.142750362887128, 28.908935446283799 ], [ -82.14278764103679, 28.908953617039455 ], [ -82.142831111309235, 28.908960855361105 ], [ -82.143553393185513, 28.908958270694018 ], [ -82.145389104429668, 28.908950845350422 ], [ -82.146817092539521, 28.908934735923292 ], [ -82.148507915955136, 28.908916499421398 ], [ -82.14872522161653, 28.908916259689203 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 245D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137628188302656, 28.941012937799385 ], [ -82.140567594853977, 28.941021505864306 ], [ -82.141655033413244, 28.941017470930134 ], [ -82.144927248708882, 28.941014000873999 ], [ -82.146248656092638, 28.94101257575883 ], [ -82.149250652020072, 28.941006392938704 ], [ -82.150420273080286, 28.941006909016004 ], [ -82.150951021283788, 28.94100740233004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 245 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137630267274716, 28.940088849497453 ], [ -82.13763823987388, 28.940137538897314 ], [ -82.137628188302656, 28.941012937799385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 245 South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133502951298169, 28.94003177187976 ], [ -82.134295392886131, 28.940031913281654 ], [ -82.13574267033232, 28.940032785983671 ], [ -82.13635690929334, 28.940034487293879 ], [ -82.137498381243319, 28.940031010709465 ], [ -82.137551108812488, 28.940033275926822 ], [ -82.137598580895329, 28.940049925377668 ], [ -82.137630267274716, 28.940088849497453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 245 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121659601125955, 28.955051545089265 ], [ -82.121699040237033, 28.955108399793243 ], [ -82.121744096781669, 28.955157829900468 ], [ -82.121806002253678, 28.955187454897224 ], [ -82.121873513617032, 28.955199762589157 ], [ -82.122435990975859, 28.955204200345065 ], [ -82.123844978961031, 28.95520044464633 ], [ -82.124806806170326, 28.955199558540457 ], [ -82.128502233494586, 28.955188672232627 ], [ -82.130060289971098, 28.955194603149121 ], [ -82.132535170322413, 28.955197141744673 ], [ -82.132973895670062, 28.955194237316345 ], [ -82.133142632271657, 28.955191599703397 ], [ -82.133224188028706, 28.955189044298653 ], [ -82.133286038906078, 28.955171670156446 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053721157778853, 28.881877815558788 ], [ -82.053720271231555, 28.882760843333223 ], [ -82.053726974709747, 28.883646836569969 ], [ -82.053726731450709, 28.883853310962561 ], [ -82.053726731626497, 28.883853655641239 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Clarke Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047554825977002, 28.872821030314995 ], [ -82.047593582716203, 28.872821173824377 ], [ -82.052491876319934, 28.872773227202753 ], [ -82.05310248705895, 28.872776660654694 ], [ -82.053713090263344, 28.872767249783863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 232", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053729764395356, 28.872767243219293 ], [ -82.053713090263344, 28.872767249783863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 232", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05774511221874, 28.87276464770131 ], [ -82.057493029459778, 28.872761819948867 ], [ -82.056464701310659, 28.872752858490756 ], [ -82.056192611370363, 28.872747100498792 ], [ -82.055230979766577, 28.872753363664398 ], [ -82.054750914380548, 28.87275766536607 ], [ -82.053729764395356, 28.872767243219293 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 232", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057859731728485, 28.872766434387721 ], [ -82.05774511221874, 28.87276464770131 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 232", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066261485720219, 28.872765937291057 ], [ -82.066132297182733, 28.872758780793102 ], [ -82.064677956513933, 28.872754063798382 ], [ -82.063987442105827, 28.872756195511919 ], [ -82.062921167175446, 28.872754885878365 ], [ -82.061297152762009, 28.872762847417057 ], [ -82.060245238301036, 28.872772341385801 ], [ -82.057859731728485, 28.872766434387721 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 217", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057870229363047, 28.869112381132467 ], [ -82.05786229763504, 28.869847962903368 ], [ -82.057858510566035, 28.870541353898098 ], [ -82.057863094640794, 28.871298944564884 ], [ -82.057865454708363, 28.87180339349662 ], [ -82.05785286665882, 28.872256850635399 ], [ -82.057859731728485, 28.872766434387721 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 77th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060925249448644, 28.869107379446728 ], [ -82.059543602115227, 28.869089647125239 ], [ -82.058862161966445, 28.869091777434601 ], [ -82.05837449224147, 28.869120087498878 ], [ -82.057870229363047, 28.869112381132467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 217", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057868229321585, 28.86547300444672 ], [ -82.05787044921955, 28.865718809712881 ], [ -82.057869124986681, 28.867105588023872 ], [ -82.057870013707458, 28.868721660880915 ], [ -82.057870229363047, 28.869112381132467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057868229321585, 28.86547300444672 ], [ -82.055996937160117, 28.865473785417144 ], [ -82.053981861146681, 28.865478265213515 ], [ -82.053758890663531, 28.865478353204526 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053758890663531, 28.865478353204526 ], [ -82.052166834825471, 28.865484475712488 ], [ -82.05157330221337, 28.865486734021463 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kilgore Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046058706392699, 28.864619016032659 ], [ -82.047419668456968, 28.865113829611591 ], [ -82.047769805642659, 28.865231105476255 ], [ -82.048071999918847, 28.865313546744513 ], [ -82.048332507684279, 28.865370319829484 ], [ -82.04860342606257, 28.86541424893792 ], [ -82.048880595087383, 28.865449003356719 ], [ -82.049164008541041, 28.865474581245213 ], [ -82.049443250268268, 28.865489155560642 ], [ -82.049645383862909, 28.865492751944039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kilgore Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042974184473408, 28.863501056747086 ], [ -82.043534813979065, 28.863708162195582 ], [ -82.045462637724668, 28.864402760094968 ], [ -82.046058706392699, 28.864619016032659 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062035911422782, 28.865458790361117 ], [ -82.060790035037257, 28.86546256121024 ], [ -82.057868229321585, 28.86547300444672 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066247354139307, 28.865445801279218 ], [ -82.065322128916605, 28.865448082542233 ], [ -82.064038483390263, 28.865456030452503 ], [ -82.062035911422782, 28.865458790361117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 221", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066247354139307, 28.865445801279218 ], [ -82.066248180981859, 28.867101686456667 ], [ -82.066255128182988, 28.869996306209888 ], [ -82.066258143528941, 28.870713758359759 ], [ -82.06626118528348, 28.871476330018819 ], [ -82.066261485720219, 28.872765937291057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078603670622115, 28.865973809793964 ], [ -82.078537009196452, 28.865942261421253 ], [ -82.078462653037789, 28.865903951993914 ], [ -82.078370347917385, 28.86585211382684 ], [ -82.078257538994961, 28.865802543153311 ], [ -82.078065260262036, 28.865728200208316 ], [ -82.077908872309038, 28.865669631230123 ], [ -82.077757623740965, 28.865624595469221 ], [ -82.077580742368667, 28.865575060847817 ], [ -82.077357721709873, 28.865521040735747 ], [ -82.077119335919662, 28.865480566208731 ], [ -82.076886079328844, 28.865446855627024 ], [ -82.076657962159899, 28.865431191399711 ], [ -82.076411902518828, 28.86541328111203 ], [ -82.076163294091785, 28.865415676311262 ], [ -82.075776284383679, 28.865413636715424 ], [ -82.074397404381742, 28.865421166013483 ], [ -82.072075347420821, 28.86542692831101 ], [ -82.070770792078235, 28.865429868719293 ], [ -82.069791735498043, 28.865432630009291 ], [ -82.067945683235223, 28.865439460420813 ], [ -82.066247354139307, 28.865445801279218 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 26th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060915335315727, 28.667799305793537 ], [ -82.061117588472314, 28.667224205069381 ], [ -82.061209597095285, 28.667090970701381 ], [ -82.061482032034704, 28.666856947122636 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 26th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061478740965782, 28.667532665308521 ], [ -82.061474883550332, 28.667233792638331 ], [ -82.061482032034704, 28.666856947122636 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 26th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061482032034704, 28.666856947122636 ], [ -82.061460309494407, 28.666277098539986 ], [ -82.061445406790796, 28.665905777898914 ], [ -82.061440830354186, 28.66568420386692 ], [ -82.061436963657954, 28.665369087311781 ], [ -82.061444936196011, 28.66509835935058 ], [ -82.061404170965758, 28.664752080937557 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 22nd Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067118448823493, 28.672497269887696 ], [ -82.067118289854335, 28.672247649619454 ], [ -82.067134594500374, 28.672035570048166 ], [ -82.067209685423933, 28.67162018330427 ], [ -82.067201777391247, 28.671215398980859 ], [ -82.067093957013142, 28.67007529576512 ], [ -82.067078602895691, 28.669248576027627 ], [ -82.067100400050435, 28.668774264007187 ], [ -82.067108285922757, 28.668550583543858 ], [ -82.067169404193109, 28.668429116760983 ], [ -82.067169202140576, 28.668112031631697 ], [ -82.067172924669265, 28.666977728536395 ], [ -82.067183584627244, 28.666675023016495 ], [ -82.067181027700471, 28.665799697837947 ], [ -82.067174792926963, 28.664749378504219 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01320846277612, 28.649944721772549 ], [ -82.011584735632269, 28.649942397535657 ], [ -82.009709917900096, 28.649942533843252 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013864091275238, 28.64994958358281 ], [ -82.01320846277612, 28.649944721772549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03686415015099, 28.650134921548251 ], [ -82.034872149247974, 28.650128052458921 ], [ -82.034431343177914, 28.650125701733746 ], [ -82.034188618022114, 28.650118378751102 ], [ -82.033982155237226, 28.650091359315311 ], [ -82.033806388754996, 28.650081556787804 ], [ -82.033605507736794, 28.650059456758679 ], [ -82.033424158973816, 28.650042272174364 ], [ -82.033248390051284, 28.65002754938963 ], [ -82.033086573049829, 28.650020204164132 ], [ -82.032894066430444, 28.650012866907424 ], [ -82.03267644972486, 28.650000613035438 ], [ -82.032433727511403, 28.649998209148318 ], [ -82.032098936675496, 28.649993365416762 ], [ -82.02982609066197, 28.649999790627742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 41st Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03686415015099, 28.650134921548251 ], [ -82.036866906977792, 28.65004140185345 ], [ -82.036819427593898, 28.649896213325988 ], [ -82.036771953652575, 28.649763329928259 ], [ -82.036757982528528, 28.649704271252105 ], [ -82.036752350859388, 28.649544229080135 ], [ -82.036766128367091, 28.64905947806518 ], [ -82.036791147645687, 28.648801064133096 ], [ -82.03679110886435, 28.648692779340276 ], [ -82.036770996571605, 28.648599159214886 ], [ -82.036721259170363, 28.648397474170892 ], [ -82.03671669958166, 28.648284322466306 ], [ -82.036735126948898, 28.648166133250335 ], [ -82.036760195131322, 28.64804553664294 ], [ -82.036771301968344, 28.647890488936991 ], [ -82.036771202315578, 28.647607470407618 ], [ -82.036768272762345, 28.647211245547009 ], [ -82.036762441660869, 28.646490166922192 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 714", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046470980784051, 28.646445408752342 ], [ -82.046468258127078, 28.646120836683739 ], [ -82.046489793587511, 28.644211761243273 ], [ -82.046499231556126, 28.643870550401346 ], [ -82.046505027934458, 28.642516997733459 ], [ -82.046513981798967, 28.641073209154627 ], [ -82.046516963130969, 28.640585365184464 ], [ -82.046533288170693, 28.63933653985778 ], [ -82.046529155235973, 28.639242017842335 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 708", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052713359204873, 28.64647741255564 ], [ -82.052524890245408, 28.646472768044855 ], [ -82.051640512807111, 28.646458334764624 ], [ -82.050864939345587, 28.646451242120737 ], [ -82.048806403374428, 28.646429372792895 ], [ -82.048489300909566, 28.646433997220662 ], [ -82.04734139512405, 28.646430348013169 ], [ -82.046470980784051, 28.646445408752342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042320644658361, 28.650143705085252 ], [ -82.041676749507701, 28.650140940040128 ], [ -82.039919103357533, 28.650138997498516 ], [ -82.038147988746587, 28.650132218290423 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 714", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046449640803303, 28.650152347588168 ], [ -82.046446809178917, 28.648230406960721 ], [ -82.046466808245611, 28.647185912180262 ], [ -82.046470980784051, 28.646445408752342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 563", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046430936591349, 28.651623322164699 ], [ -82.04643060098536, 28.65086080916868 ], [ -82.046430405867568, 28.650419802698035 ], [ -82.046446459605377, 28.650254776373995 ], [ -82.046449640803303, 28.650152347588168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054794156336911, 28.650165456991978 ], [ -82.052951686735156, 28.650166967494684 ], [ -82.052078014647435, 28.650164562918604 ], [ -82.050565288988707, 28.650162281296236 ], [ -82.048942896728647, 28.650157175781818 ], [ -82.048084931401149, 28.6501517874363 ], [ -82.046449640803303, 28.650152347588168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054810536831653, 28.657501270718626 ], [ -82.054803536298706, 28.656445705365655 ], [ -82.054802525540808, 28.654502434870341 ], [ -82.05480186430394, 28.653227787691449 ], [ -82.0547977609707, 28.651537738963771 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 68th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054810536831653, 28.657501270718626 ], [ -82.054633121016778, 28.657492805177124 ], [ -82.054487747081083, 28.657483737497618 ], [ -82.054316999928005, 28.657478703186957 ], [ -82.054146040582367, 28.657478771446243 ], [ -82.054029918131135, 28.657481662135456 ], [ -82.053871862800364, 28.657481724080824 ], [ -82.053704128941874, 28.657481789617698 ], [ -82.053575104921947, 28.65748753091237 ], [ -82.053417052881301, 28.657496127508008 ], [ -82.053291259243366, 28.657507557400447 ], [ -82.053159014999238, 28.657521834727383 ], [ -82.053058831248293, 28.657515653577011 ], [ -82.052939661516859, 28.657504848872357 ], [ -82.052797716929533, 28.657473605896424 ], [ -82.052688036106488, 28.657453730674447 ], [ -82.052565449891688, 28.657431016131632 ], [ -82.05247512997056, 28.657431050576022 ], [ -82.052371918993913, 28.657451007093002 ], [ -82.052197742257633, 28.657465297615818 ], [ -82.051978403067253, 28.657476760806247 ], [ -82.051804217850488, 28.657473983168554 ], [ -82.051568745563245, 28.657474070616392 ], [ -82.051491324067541, 28.65746271843031 ], [ -82.051407458537497, 28.657465595713337 ], [ -82.051252627694097, 28.657465652496708 ], [ -82.051068762963467, 28.657462875708973 ], [ -82.050894580887146, 28.657468631180382 ], [ -82.050762337732792, 28.657485751227988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054821102546939, 28.664764680979701 ], [ -82.054823377652653, 28.663790430474176 ], [ -82.054814460156578, 28.661573514419608 ], [ -82.054813719568671, 28.660150801886171 ], [ -82.054810199589113, 28.658619943583265 ], [ -82.054810536831653, 28.657501270718626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Emory Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990666630929653, 28.656026435939665 ], [ -81.988677724250948, 28.656028118338192 ], [ -81.987219951395559, 28.656017834433793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 567", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054821102546939, 28.664764680979701 ], [ -82.054652626712738, 28.664753053751827 ], [ -82.053557262917593, 28.664748677614352 ], [ -82.051699285403146, 28.664756070418459 ], [ -82.050224630800969, 28.664759071138857 ], [ -82.048315928123941, 28.664754844625595 ], [ -82.046435045528114, 28.664743220615726 ], [ -82.045580858829666, 28.66474105188512 ], [ -82.043491296534356, 28.664729455727883 ], [ -82.041315482432552, 28.664712944422625 ], [ -82.039331644167476, 28.66468162039326 ], [ -82.038818587686961, 28.664673267862756 ], [ -82.038688924099802, 28.664646275634539 ], [ -82.0385804758304, 28.664610959664351 ], [ -82.038505029537546, 28.664575636244102 ], [ -82.038435668692969, 28.664529723110544 ], [ -82.038374438304785, 28.664475750752434 ], [ -82.038332683833303, 28.664424227327313 ], [ -82.038295148318582, 28.664355306632086 ], [ -82.038264477203541, 28.664282544600578 ], [ -82.038240879766974, 28.664216019344607 ], [ -82.038214911942816, 28.664109990567869 ], [ -82.03819129322045, 28.663987328419573 ], [ -82.038162948820869, 28.663827243274284 ], [ -82.038146000421548, 28.663692979775274 ], [ -82.038136909733254, 28.66352369633978 ], [ -82.038134737506198, 28.663324878512491 ], [ -82.038128339095337, 28.663137419518158 ], [ -82.038095758555059, 28.662209828325125 ], [ -82.038092934704252, 28.661260352633658 ], [ -82.038085467908616, 28.661190347095054 ], [ -82.038065609226408, 28.661148785628097 ], [ -82.038038308737143, 28.661100662622275 ], [ -82.037983729662727, 28.661067862406036 ], [ -82.037909309332264, 28.661041629369443 ], [ -82.03781753353222, 28.661032902700558 ], [ -82.037698474951426, 28.661030746970049 ], [ -82.034447414263454, 28.661007915715494 ], [ -82.033102837246076, 28.660988640110126 ], [ -82.030908193747848, 28.661008746990298 ], [ -82.029980320794806, 28.660979546162185 ], [ -82.02991919620986, 28.660955056403761 ], [ -82.029869180201914, 28.660914391704232 ], [ -82.029833610787662, 28.66087519470166 ], [ -82.029806928246671, 28.660828154506955 ], [ -82.029802467694509, 28.66077327008156 ], [ -82.029797981669915, 28.660628212698317 ], [ -82.029784455967786, 28.659946052704452 ], [ -82.029792867656766, 28.658256325072859 ], [ -82.029801484013973, 28.657291887282607 ], [ -82.029819037582484, 28.65649602613566 ], [ -82.029814268058374, 28.655347326951659 ], [ -82.029813799379156, 28.653688965237528 ], [ -82.029813720200593, 28.65366579238615 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0712506382322, 28.650181990350713 ], [ -82.069803687016957, 28.650182734426501 ], [ -82.06917116781122, 28.650178117257404 ], [ -82.068160811697837, 28.650166278990692 ], [ -82.067128866520619, 28.650155212540167 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075434756374548, 28.65017234539393 ], [ -82.075070920888393, 28.650172545183398 ], [ -82.074639912543091, 28.65017031180491 ], [ -82.074388030717202, 28.650177856015407 ], [ -82.074197717029477, 28.650180427961466 ], [ -82.073926237951468, 28.650180573747374 ], [ -82.073677150607651, 28.650180707858116 ], [ -82.073061425950669, 28.650181038306545 ], [ -82.0712506382322, 28.650181990350713 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 747", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075442608063966, 28.648774559423444 ], [ -82.07544807992069, 28.648504693115857 ], [ -82.075447481365885, 28.647667749189456 ], [ -82.075433802368195, 28.646419108111441 ], [ -82.07543572568359, 28.645532531354615 ], [ -82.075432381434197, 28.644431645341339 ], [ -82.075423954240691, 28.643375883270249 ], [ -82.075413413929937, 28.642938239736019 ], [ -82.075402370925929, 28.641801264077714 ], [ -82.0753914940355, 28.640892135343659 ], [ -82.075377908399389, 28.639773208374748 ], [ -82.07537504521548, 28.639344585554493 ], [ -82.075373943241203, 28.639226591187924 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08797885378371, 28.65134021062881 ], [ -82.087709920272957, 28.651191935651781 ], [ -82.087486058250576, 28.651084923080468 ], [ -82.08730377750031, 28.651006082485505 ], [ -82.08712469031903, 28.650924419813251 ], [ -82.086968001607204, 28.650865301046483 ], [ -82.086824097608314, 28.650806176692935 ], [ -82.086683401726575, 28.650758326635835 ], [ -82.086587469249494, 28.650721729107556 ], [ -82.086414794864694, 28.65066261981314 ], [ -82.086229332833867, 28.65060069855916 ], [ -82.085967143808801, 28.650530366783158 ], [ -82.085749713874918, 28.650468465851983 ], [ -82.085497128085365, 28.650415045931489 ], [ -82.085295699828393, 28.650372872854934 ], [ -82.085078287554254, 28.650330710318162 ], [ -82.084860881235514, 28.650297006821109 ], [ -82.084656269165791, 28.65026893465696 ], [ -82.084493217890497, 28.65024647612838 ], [ -82.084330167914743, 28.650226836297918 ], [ -82.084122363171247, 28.650207225589082 ], [ -82.083869808993555, 28.65019046178567 ], [ -82.083687587386677, 28.650182113020094 ], [ -82.083415862682941, 28.650179459980141 ], [ -82.083185695158846, 28.650176780245783 ], [ -82.082891594091905, 28.650174137945339 ], [ -82.081791915688314, 28.650174800247672 ], [ -82.079541407303367, 28.650164846793899 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 564A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063020264337837, 28.682890517941434 ], [ -82.063019605799468, 28.681789647172135 ], [ -82.063008532605764, 28.679329625293803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090567890908588, 28.873119563465295 ], [ -82.090976417838704, 28.87325118868716 ], [ -82.091458405821925, 28.873390521180671 ], [ -82.091684705319949, 28.873457609806568 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090567890908588, 28.873119563465295 ], [ -82.09090885187743, 28.873266751715025 ], [ -82.091158088571802, 28.87335658460276 ], [ -82.091261547987287, 28.873393757565836 ], [ -82.091329740801186, 28.873424746347691 ], [ -82.09139324156061, 28.873466084034888 ], [ -82.091445644704649, 28.873518074512411 ], [ -82.091476182004399, 28.873561202868245 ], [ -82.091496785608612, 28.873602567597715 ], [ -82.091525043712934, 28.87366048167668 ], [ -82.091566362279721, 28.873745021958364 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091684705319949, 28.873457609806568 ], [ -82.091623035489604, 28.873496446766961 ], [ -82.091592626398651, 28.873538105762439 ], [ -82.091576686544769, 28.873579754991617 ], [ -82.091564963423977, 28.873614935487097 ], [ -82.091560294778944, 28.873652180199691 ], [ -82.091566362279721, 28.873745021958364 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091764906993092, 28.872933111285114 ], [ -82.091783829676075, 28.87296301879163 ], [ -82.091789287002186, 28.873000257571626 ], [ -82.091789382759387, 28.873111031182308 ], [ -82.091786178787814, 28.873170238722803 ], [ -82.091782976029705, 28.873228492529865 ], [ -82.091775723099758, 28.873255046733682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091764906993092, 28.872933111285114 ], [ -82.091739358692607, 28.872975463607219 ], [ -82.091720948963015, 28.873011763881092 ], [ -82.091698198594003, 28.873049977255139 ], [ -82.091664597336091, 28.873084376707578 ], [ -82.091634238684264, 28.873107315644056 ], [ -82.09159845496869, 28.873126439696641 ], [ -82.091559413683001, 28.873144609497704 ], [ -82.091474779374849, 28.873173523934966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.094280235768181, 28.874012392713819 ], [ -82.093835802140774, 28.873818215181252 ], [ -82.093396127472644, 28.873686103070249 ], [ -82.093349574966624, 28.873647278411951 ], [ -82.093321344241232, 28.873622470115034 ], [ -82.093307227363255, 28.873607200258082 ], [ -82.093294192677249, 28.873588111118973 ], [ -82.093271375954231, 28.873549929699585 ], [ -82.093229041560164, 28.873466903798217 ], [ -82.093203999244068, 28.873423923654823 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10739972957343, 28.877164068217908 ], [ -82.106235943040772, 28.876953947819541 ], [ -82.105180305245085, 28.876760284408391 ], [ -82.103351174879251, 28.876428582144392 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119950152923025, 28.879456334305637 ], [ -82.118993215372399, 28.879281313567876 ], [ -82.117859948033669, 28.879077473876471 ], [ -82.116486858816401, 28.878824175635582 ], [ -82.115621629901455, 28.87866560202491 ], [ -82.113265776676954, 28.878237241198807 ], [ -82.111316686064328, 28.877882988753175 ], [ -82.108850358012859, 28.877427743689765 ], [ -82.10739972957343, 28.877164068217908 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.130046576665563, 28.877669754823845 ], [ -82.128165018713219, 28.878755699297336 ], [ -82.127234794090953, 28.879290377227928 ], [ -82.12703510884937, 28.879394013217393 ], [ -82.126863608860972, 28.879479004480572 ], [ -82.126673307681898, 28.879566078470269 ], [ -82.126529983903339, 28.879624143620948 ], [ -82.126332612687079, 28.879696743639286 ], [ -82.12613758588067, 28.879765202340501 ], [ -82.125916703733594, 28.87983575466863 ], [ -82.125716959110235, 28.879891801513054 ], [ -82.12550075303875, 28.879941658202924 ], [ -82.12530568815599, 28.879979080261403 ], [ -82.125167025961531, 28.880004037009723 ], [ -82.125026008075139, 28.880024856944232 ], [ -82.124877932102336, 28.880041545294542 ], [ -82.124682845701074, 28.880060345728296 ], [ -82.124447792931576, 28.880077114530067 ], [ -82.124196277877289, 28.880087690197804 ], [ -82.123940054048958, 28.880092062789402 ], [ -82.123653250249276, 28.880077841161242 ], [ -82.123446372537799, 28.880065615090764 ], [ -82.123204216443327, 28.880038939791572 ], [ -82.122985558716749, 28.88000396593878 ], [ -82.122658745508431, 28.879950468042669 ], [ -82.121577187206469, 28.879752819770275 ], [ -82.119950152923025, 28.879456334305637 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.130147869247452, 28.877841383106396 ], [ -82.131639466882518, 28.876983378318656 ], [ -82.132320656382163, 28.876587534609513 ], [ -82.133317006673877, 28.87601495646328 ], [ -82.134967868186138, 28.875062144661957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134938200297015, 28.87484130939103 ], [ -82.134331018084936, 28.875191054051399 ], [ -82.133426699157326, 28.87571540420052 ], [ -82.131881118575521, 28.876612791842696 ], [ -82.130704283275918, 28.877284286686301 ], [ -82.130046576665563, 28.877669754823845 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 33rd Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156090062618034, 28.858363333823693 ], [ -82.156022755069031, 28.858699580684384 ], [ -82.155990909726768, 28.858884982426453 ], [ -82.155987609113552, 28.859064067660182 ], [ -82.156020068075534, 28.859293378870099 ], [ -82.156016842246032, 28.859522732079853 ], [ -82.155978059655396, 28.859843237848757 ], [ -82.155928346968281, 28.860012949265673 ], [ -82.155902930400714, 28.860200229359371 ], [ -82.155829047193038, 28.860436574576958 ], [ -82.155774980956267, 28.860557281578323 ], [ -82.155703811044887, 28.860698114184551 ], [ -82.155638340896616, 28.860831400577741 ], [ -82.155589979602837, 28.860949586231623 ], [ -82.155567250925444, 28.861025014887208 ], [ -82.155570251840672, 28.861123034656373 ], [ -82.155593274990949, 28.861246165902696 ], [ -82.155644838744294, 28.861361723818622 ], [ -82.155719261856234, 28.861489823571304 ], [ -82.155787980774107, 28.861620440943874 ], [ -82.155859555095049, 28.861753570605277 ], [ -82.155922525815697, 28.861859060942045 ], [ -82.156019838249591, 28.862017293548234 ], [ -82.156085670325041, 28.862127808123979 ], [ -82.156151487576949, 28.862228269252356 ], [ -82.156237380976535, 28.862389028665554 ], [ -82.156288948057963, 28.862504585404054 ], [ -82.15632049699903, 28.862600059274182 ], [ -82.156354917625393, 28.862705583248719 ], [ -82.156397953544356, 28.862846284263643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 503", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013607582098857, 28.796946314536065 ], [ -82.013593948920999, 28.796994373906308 ], [ -82.013583045086293, 28.79705444911497 ], [ -82.013583053116648, 28.797126537583409 ], [ -82.013577611599558, 28.797239476969327 ], [ -82.013561403415537, 28.798498624160775 ], [ -82.013560164901619, 28.79876775251638 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 28th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014627829404475, 28.796907766378524 ], [ -82.013626673184888, 28.796907865178731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 503", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013626673184888, 28.796907865178731 ], [ -82.013607582098857, 28.796946314536065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 503", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013700137583157, 28.795405053453397 ], [ -82.013686617203959, 28.796350376355758 ], [ -82.013664841231872, 28.796727639916945 ], [ -82.013626673184888, 28.796907865178731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 503D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013700137583157, 28.795405053453397 ], [ -82.012816294674536, 28.795399367381258 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 503D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016698598347432, 28.79504909530543 ], [ -82.016698639841024, 28.795316304442522 ], [ -82.016685552341727, 28.79535859828998 ], [ -82.016659370890764, 28.795395126089968 ], [ -82.016606996549712, 28.795414356005235 ], [ -82.016332023783505, 28.795412465977286 ], [ -82.015923929029569, 28.795414434213082 ], [ -82.015346812803244, 28.7954089510797 ], [ -82.014655996190683, 28.795408803543648 ], [ -82.013970745345532, 28.79540502643761 ], [ -82.013700137583157, 28.795405053453397 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 503", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013700054521394, 28.794749527595993 ], [ -82.013700137583157, 28.795405053453397 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 503E", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013700054521394, 28.794749527595993 ], [ -82.013387983156463, 28.794745712277937 ], [ -82.012824946460896, 28.794743841638059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bigham Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020869505437986, 28.796024342559836 ], [ -82.020869537390467, 28.796020105294474 ], [ -82.020870482643929, 28.795892970190682 ], [ -82.020879164882558, 28.795441178182951 ], [ -82.020881149194992, 28.795205864627714 ], [ -82.020879353297914, 28.795094385044187 ], [ -82.020875575375115, 28.795088175888637 ], [ -82.02086871689535, 28.794943395394 ], [ -82.020845663915239, 28.794767686916177 ], [ -82.020788071306697, 28.794363035170392 ], [ -82.020768096590174, 28.794244925357191 ], [ -82.020736006653209, 28.794102547814816 ], [ -82.020711148439062, 28.794012746975035 ], [ -82.02066711253876, 28.793878424315032 ], [ -82.020621318890065, 28.793748741589358 ], [ -82.02057067359469, 28.793605314620674 ], [ -82.020498291937088, 28.793400341318058 ], [ -82.020452041613709, 28.793269359260719 ], [ -82.020400648631608, 28.793123824522464 ], [ -82.020358672232206, 28.79300494814272 ], [ -82.020329352229936, 28.792912646650695 ], [ -82.020311271720743, 28.792840319839613 ], [ -82.020293140985785, 28.792740654747742 ], [ -82.020283984573595, 28.792658937172185 ], [ -82.02028028871446, 28.792593215918611 ], [ -82.020279709519045, 28.792536693298178 ], [ -82.020282722943847, 28.792460532214388 ], [ -82.020288683473311, 28.792396145892297 ], [ -82.020300900140683, 28.792313921738462 ], [ -82.0203197051285, 28.7922263892244 ], [ -82.020347516152114, 28.792130156201935 ], [ -82.020379088221077, 28.79204394823034 ], [ -82.020419858501285, 28.791952569562312 ], [ -82.020470705131999, 28.791857819274224 ], [ -82.020543664802517, 28.791733949890777 ], [ -82.020612274507499, 28.791617474659191 ], [ -82.020683324159265, 28.791496858316112 ], [ -82.020750515371915, 28.791382791493852 ], [ -82.020779861951183, 28.791332660041636 ], [ -82.020801728666683, 28.791296094166945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 148", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991690525964657, 28.824793215025824 ], [ -81.991450724129436, 28.824630560374576 ], [ -81.990989176893095, 28.824312414441323 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 150", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993686214204729, 28.825176860736903 ], [ -81.993187310030862, 28.824786017892816 ], [ -81.992649818777764, 28.824429154719674 ], [ -81.99154176917493, 28.823683863332736 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 148", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993143136015291, 28.825798259356251 ], [ -81.992434745700152, 28.825303022723642 ], [ -81.991690525964657, 28.824793215025824 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 151", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993686214204729, 28.825176860736903 ], [ -81.993143136015291, 28.825798259356251 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 148", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99391769125333, 28.826322141808763 ], [ -81.993143136015291, 28.825798259356251 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 148", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994695009577157, 28.82684455995344 ], [ -81.994256732491422, 28.82655082105412 ], [ -81.994096859775155, 28.826444005874439 ], [ -81.994027948385181, 28.826395454037318 ], [ -81.99391769125333, 28.826322141808763 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Leaf Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03811392839981, 28.846015369600416 ], [ -82.038118995822771, 28.845226206133667 ], [ -82.038038670639565, 28.845064627215475 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038038670639565, 28.845064627215475 ], [ -82.038577916462842, 28.84465929462235 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Century Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038749382446198, 28.845288692237993 ], [ -82.038751443243299, 28.84507008099758 ], [ -82.038749257537859, 28.844947584569997 ], [ -82.038749239595447, 28.844898585756813 ], [ -82.038740659989671, 28.844851475177041 ], [ -82.038704256261141, 28.844806256452248 ], [ -82.038577916462842, 28.84465929462235 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dogwood Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040935396473728, 28.846586995578789 ], [ -82.040892591146175, 28.846600200048311 ], [ -82.040830516160057, 28.846598332711803 ], [ -82.04078984588061, 28.846596460791364 ], [ -82.039997176219714, 28.84645912041227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dogwood Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040935396473728, 28.846586995578789 ], [ -82.040958930376704, 28.846556834405614 ], [ -82.040971761921725, 28.846526677326228 ], [ -82.040978168198194, 28.846487099386628 ], [ -82.040978143805546, 28.846426793797331 ], [ -82.040971595157487, 28.846098880734441 ], [ -82.040971580555151, 28.846061189626035 ], [ -82.040971566247066, 28.846021612698458 ], [ -82.040954424128003, 28.845974503923472 ], [ -82.040922305733758, 28.845950015002373 ], [ -82.040879493541411, 28.845936836954174 ], [ -82.040620494772128, 28.845936912948304 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodside Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039997176219714, 28.84645912041227 ], [ -82.039994693293707, 28.846123668250403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054757848056795, 28.679332658046167 ], [ -82.054822865228388, 28.668445450302766 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 564", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063008532605764, 28.679329625293803 ], [ -82.058648943951852, 28.679331555992583 ], [ -82.054757848056795, 28.679332658046167 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 564", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071242150222346, 28.679322469410298 ], [ -82.070949250693232, 28.679329749755865 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 564", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070949250693232, 28.679329749755865 ], [ -82.066945600433016, 28.679323528238637 ], [ -82.063008532605764, 28.679329625293803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054715066222656, 28.686493019048516 ], [ -82.054757848056795, 28.679332658046167 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 47th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065271425567403, 28.685480138950222 ], [ -82.065171622658397, 28.685437322074133 ], [ -82.065074401026919, 28.685435110587143 ], [ -82.064874849433338, 28.685441974366988 ], [ -82.064713680847547, 28.68545784306361 ], [ -82.064496236246171, 28.685489529719796 ], [ -82.063989680831114, 28.685503303619484 ], [ -82.063611041471873, 28.685510247114657 ], [ -82.06331682003551, 28.685501358945995 ], [ -82.06266955600519, 28.685519705295889 ], [ -82.062395805952903, 28.68551757416121 ], [ -82.062249981523976, 28.685524406935865 ], [ -82.06212719351953, 28.685551535182082 ], [ -82.062004415770957, 28.685594455904543 ], [ -82.06192257557808, 28.68564412463726 ], [ -82.061846209384782, 28.685710546233604 ], [ -82.061682224441427, 28.685881118089696 ], [ -82.061568391840069, 28.685978825719822 ], [ -82.061444388284684, 28.686045915408737 ], [ -82.061326725447941, 28.686084320669625 ], [ -82.061206493702258, 28.686111446035174 ], [ -82.06108113320073, 28.686113758579729 ], [ -82.060896915492592, 28.686093536145727 ], [ -82.060385196352357, 28.686030592619876 ], [ -82.059809508178247, 28.685949628410835 ], [ -82.059354075465478, 28.685888911391235 ], [ -82.058939585388259, 28.68583945622057 ], [ -82.058691404465563, 28.685812490725354 ], [ -82.058494392350511, 28.6857877588306 ], [ -82.058369050921499, 28.685823908964114 ], [ -82.058289775739894, 28.685889367002805 ], [ -82.058200301432819, 28.686015743854718 ], [ -82.058080103564961, 28.68610378006732 ], [ -82.057924088759322, 28.686189576347832 ], [ -82.057688753322736, 28.686259611367188 ], [ -82.057407371363396, 28.686340946153386 ], [ -82.056913655021731, 28.686449441051526 ], [ -82.05668597729202, 28.686492400333865 ], [ -82.05644293231768, 28.686503781263262 ], [ -82.056179419406419, 28.686510657564867 ], [ -82.055798243976952, 28.686567213843084 ], [ -82.05557822309558, 28.6865740713204 ], [ -82.055422157208724, 28.686571877571982 ], [ -82.055220032632519, 28.686553911357002 ], [ -82.055102751791793, 28.686535760187866 ], [ -82.05486182115412, 28.686493141063323 ], [ -82.054715066222656, 28.686493019048516 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054692142626052, 28.690303851850352 ], [ -82.054715066222656, 28.686493019048516 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 546A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06916848279711, 28.690308406948503 ], [ -82.068104136713117, 28.690304428140397 ], [ -82.067275159164041, 28.690277764743488 ], [ -82.06579122057363, 28.690280740412287 ], [ -82.065445814629712, 28.690269625602777 ], [ -82.065069713725393, 28.69027206032662 ], [ -82.064320078046705, 28.690288206366905 ], [ -82.063296682335874, 28.69030673060961 ], [ -82.06293335983618, 28.69028433671906 ], [ -82.06263400351537, 28.690268682864257 ], [ -82.062383278332973, 28.690284586907627 ], [ -82.062109519890399, 28.690289224489739 ], [ -82.061165432241467, 28.69029867251199 ], [ -82.06034166659461, 28.690305008557008 ], [ -82.059796641858767, 28.690326347000951 ], [ -82.059648240821176, 28.690312875667392 ], [ -82.059453779862039, 28.690292655734801 ], [ -82.059146747681311, 28.690272484935633 ], [ -82.058624806770126, 28.690268196080591 ], [ -82.057534878989031, 28.690268657623548 ], [ -82.056025351639263, 28.690264767650259 ], [ -82.055380610526342, 28.690274053021277 ], [ -82.05485357168007, 28.690301336840406 ], [ -82.054692142626052, 28.690303851850352 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054670494057845, 28.69396354899936 ], [ -82.054692142626052, 28.690303851850352 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 546", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058844188604297, 28.693966488068366 ], [ -82.056794642653571, 28.693960928505117 ], [ -82.056625870999056, 28.693958394909167 ], [ -82.056564460452833, 28.693951651816594 ], [ -82.056503044697976, 28.693931372851303 ], [ -82.056444178028769, 28.693897556964401 ], [ -82.056380193462786, 28.693861486424193 ], [ -82.056303413694351, 28.693820910348201 ], [ -82.056229208006044, 28.693809659792088 ], [ -82.056131977438199, 28.693802931148163 ], [ -82.056024516013792, 28.693802974076025 ], [ -82.055937528324009, 28.693812034594448 ], [ -82.055878686869221, 28.693823338543226 ], [ -82.055679173456852, 28.693931708059619 ], [ -82.055625454597077, 28.693954291651416 ], [ -82.055565810540074, 28.693961365667299 ], [ -82.054670494057845, 28.69396354899936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 546", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061223691570262, 28.69396544708907 ], [ -82.060356320970556, 28.693959062686471 ], [ -82.060289785707454, 28.693938786787644 ], [ -82.060248826857347, 28.693900453045931 ], [ -82.060210407582844, 28.693832788855858 ], [ -82.060161761360163, 28.693776409157238 ], [ -82.06011313810734, 28.69375838204996 ], [ -82.059422315047314, 28.693756426823583 ], [ -82.059343011425426, 28.693779021151219 ], [ -82.059296982490451, 28.693826417845553 ], [ -82.059248415215123, 28.693907656589307 ], [ -82.059197264377701, 28.693946031259255 ], [ -82.059140984100921, 28.693961848975064 ], [ -82.058844188604297, 28.693966488068366 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 546", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069171968299784, 28.697639523291393 ], [ -82.069194369965217, 28.697536499391084 ], [ -82.069189794001574, 28.697409715441431 ], [ -82.069189294079422, 28.696648998988721 ], [ -82.069187616374919, 28.694097428050689 ], [ -82.069163317937793, 28.694044348145088 ], [ -82.069102176594498, 28.694000004218108 ], [ -82.069026673883613, 28.693977853974552 ], [ -82.067646253630286, 28.693983324384767 ], [ -82.065295315323624, 28.693979681443121 ], [ -82.063055773985269, 28.693964881262783 ], [ -82.061223691570262, 28.69396544708907 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 546 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058892609463143, 28.69760965288409 ], [ -82.058831922492374, 28.697526476920547 ], [ -82.058831667918909, 28.696710091973436 ], [ -82.058839702436345, 28.695096763324976 ], [ -82.058844188604297, 28.693966488068366 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 37th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070983551574869, 28.702283130199081 ], [ -82.067617665544773, 28.702237286641441 ], [ -82.066561628974441, 28.702249689735229 ], [ -82.065415690787489, 28.702218545028799 ], [ -82.064746187877219, 28.702207334530449 ], [ -82.064368634196057, 28.702215078227027 ], [ -82.063155309082092, 28.702215642070744 ], [ -82.063069919548283, 28.702203794969005 ], [ -82.063002497027881, 28.702176091970433 ], [ -82.062944050742416, 28.702132534518789 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 546 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062900056651955, 28.697644794386601 ], [ -82.058972389581328, 28.697641315677487 ], [ -82.058892609463143, 28.69760965288409 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 546 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069171968299784, 28.697639523291393 ], [ -82.069130882167983, 28.69768253368267 ], [ -82.066699376608753, 28.697658380007848 ], [ -82.062900056651955, 28.697644794386601 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 25th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062944050742416, 28.702132534518789 ], [ -82.06290806062178, 28.702065197611788 ], [ -82.062894536434143, 28.701993886471065 ], [ -82.062937974481017, 28.699485878236921 ], [ -82.062956060151237, 28.699099358264768 ], [ -82.062965206993567, 28.698886723865964 ], [ -82.062949366794683, 28.698251565518241 ], [ -82.062962143647027, 28.697821798374623 ], [ -82.062952365095413, 28.697763408633371 ], [ -82.062934921551616, 28.697710378631538 ], [ -82.062900056651955, 28.697644794386601 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054519703348447, 28.719364364664511 ], [ -82.054533004350404, 28.717175451770899 ], [ -82.054561394521357, 28.712222146842954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054561394521357, 28.712222146842954 ], [ -82.054670494057845, 28.69396354899936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 35th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046234478685903, 28.713904057190298 ], [ -82.046219991533192, 28.714917706385062 ], [ -82.046223547485567, 28.716215696900708 ], [ -82.046227085929758, 28.717468929971012 ], [ -82.046180058633908, 28.719198723566869 ], [ -82.04620697040464, 28.719269802527347 ], [ -82.046251789657731, 28.719314544692761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 25th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054519703348447, 28.719364364664511 ], [ -82.05440843559461, 28.719356321187874 ], [ -82.054166482242792, 28.719295861594745 ], [ -82.054017156373973, 28.719311717358497 ], [ -82.053470594970051, 28.719314563931782 ], [ -82.052989743380706, 28.719320015086545 ], [ -82.051759232708719, 28.719325749464002 ], [ -82.050881137109371, 28.719302381783653 ], [ -82.049348974917109, 28.719310837478915 ], [ -82.047568929581999, 28.719345689674494 ], [ -82.046478791498558, 28.719346061519108 ], [ -82.046332439635577, 28.71933557972023 ], [ -82.046251789657731, 28.719314544692761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054510532030974, 28.720417316196546 ], [ -82.054519703348447, 28.719364364664511 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 24th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054510532030974, 28.720417316196546 ], [ -82.054158101557874, 28.720420088447785 ], [ -82.053662311919453, 28.720428180866129 ], [ -82.052410872773606, 28.720412866344535 ], [ -82.052380903067103, 28.720210148532335 ], [ -82.05237156858324, 28.719457160860756 ], [ -82.052084854344415, 28.719473065814 ], [ -82.051744387577983, 28.719504788309262 ], [ -82.051451688582816, 28.719494367899536 ], [ -82.050872284556789, 28.719523543421353 ], [ -82.050463084624525, 28.719473669054452 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 29th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046234478685903, 28.713904057190298 ], [ -82.046103058772132, 28.713875139192155 ], [ -82.04599255623873, 28.713872543093714 ], [ -82.04551247127354, 28.713868752839261 ], [ -82.045087634876069, 28.713862311653756 ], [ -82.044562009524412, 28.71387037955099 ], [ -82.042189592336669, 28.71388182001817 ], [ -82.04208224417259, 28.713832487341637 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 532 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104247768245173, 28.701450183701954 ], [ -82.102241441262009, 28.701449373452181 ], [ -82.100628157633636, 28.701436229793213 ], [ -82.100118415289671, 28.701431823151939 ], [ -82.097767632411816, 28.701414401906877 ], [ -82.096043172115159, 28.701389329997152 ], [ -82.094248724576232, 28.701368205938071 ], [ -82.094117653412425, 28.70137509626036 ], [ -82.094035691049285, 28.701368352764263 ], [ -82.09397886857198, 28.701350861435944 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 543", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.079333681532589, 28.72314558118779 ], [ -82.079328742939495, 28.722523252785127 ], [ -82.079332089761508, 28.719545262427523 ], [ -82.079365049359623, 28.718751441770628 ], [ -82.079375081766017, 28.717222999036647 ], [ -82.079377735544895, 28.715994922186571 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 543A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.077157235221193, 28.74035534057964 ], [ -82.077155907191283, 28.74020032759929 ], [ -82.077166071280999, 28.739650745587699 ], [ -82.077165227664281, 28.738500362150319 ], [ -82.077182862736592, 28.737331336912117 ], [ -82.077187315619469, 28.736197251474302 ], [ -82.077199727456701, 28.735109734807732 ], [ -82.077202061887945, 28.73469056337828 ], [ -82.077201519734032, 28.733952360609869 ], [ -82.077219163341056, 28.732794979071805 ], [ -82.077228935751251, 28.731712120242175 ], [ -82.077243975231269, 28.730605971973976 ], [ -82.077248385261299, 28.729415995435904 ], [ -82.07725034986305, 28.728493821074135 ], [ -82.077260405702262, 28.727797530053756 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 543A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.077157288307077, 28.740427646421686 ], [ -82.077157235221193, 28.74035534057964 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 20th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070567535974874, 28.737558051515602 ], [ -82.07058841813587, 28.736872533655834 ], [ -82.070584445869301, 28.736785542663863 ], [ -82.07057816842692, 28.736744782518084 ], [ -82.070565159895807, 28.736713384743268 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 541", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066787896197141, 28.742259457129091 ], [ -82.066806882349184, 28.741451787419731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 524", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066787896197141, 28.742259457129091 ], [ -82.065562897228759, 28.742227277178305 ], [ -82.065045077455579, 28.742225264466335 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 522", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066652746497041, 28.74436459644086 ], [ -82.06579479266864, 28.744333507348415 ], [ -82.065632306778241, 28.744333585256712 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 541", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066652746497041, 28.74436459644086 ], [ -82.066730727587085, 28.744344509775114 ], [ -82.066776176481909, 28.744270022538156 ], [ -82.066795623431716, 28.744189820919839 ], [ -82.06679557063454, 28.744106763929803 ], [ -82.066791763125323, 28.743227502613895 ], [ -82.066787896197141, 28.742259457129091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 8th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068644990974491, 28.744598464754048 ], [ -82.068180239512643, 28.744541416517805 ], [ -82.067829248242873, 28.744512950131053 ], [ -82.067447488658615, 28.744543309580276 ], [ -82.067178890045213, 28.744502188248969 ], [ -82.066913804568415, 28.744464501615596 ], [ -82.066652746497041, 28.74436459644086 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 533", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065642521963269, 28.745078232186405 ], [ -82.065639030492918, 28.744694451616411 ], [ -82.065632306778241, 28.744333585256712 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 535", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064800355573013, 28.744305341370758 ], [ -82.064789510412936, 28.743490574164444 ], [ -82.064800991446972, 28.743264491712367 ], [ -82.06480445807037, 28.742787934477686 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 522", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065632306778241, 28.744333585256712 ], [ -82.065554310427657, 28.744327894639312 ], [ -82.065278072561895, 28.744313706617667 ], [ -82.064800355573013, 28.744305341370758 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 535", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064807319454957, 28.745058581826076 ], [ -82.064800355573013, 28.744305341370758 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 520", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065642521963269, 28.745078232186405 ], [ -82.064807319454957, 28.745058581826076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 520", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064807319454957, 28.745058581826076 ], [ -82.06392145093406, 28.745076985548486 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 535", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064807805241443, 28.745846192925473 ], [ -82.064807319454957, 28.745058581826076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 518", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064807805241443, 28.745846192925473 ], [ -82.064603213693644, 28.745842127084941 ], [ -82.063787333853156, 28.745780799279867 ], [ -82.063642461429453, 28.745793301511519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065602627426657, 28.748847336310703 ], [ -82.064819409915515, 28.748850572933701 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064819409915515, 28.748850572933701 ], [ -82.064212667732207, 28.74885100648088 ], [ -82.062459920649786, 28.74885514839918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 535", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064819409915515, 28.748850572933701 ], [ -82.064818947695159, 28.748103057769995 ], [ -82.064818021820614, 28.746602298349188 ], [ -82.064807805241443, 28.745846192925473 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 520", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06392145093406, 28.745076985548486 ], [ -82.06259748145736, 28.745059608530454 ], [ -82.06134893880639, 28.74506477448681 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 522", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064800355573013, 28.744305341370758 ], [ -82.064543617843128, 28.744291141726293 ], [ -82.064220911259667, 28.744301917228228 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 522", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064220911259667, 28.744301917228228 ], [ -82.064108152790126, 28.744291346954103 ], [ -82.063337966779599, 28.744294568873158 ], [ -82.063075532636347, 28.744299115731639 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 526", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063034060446896, 28.741493668915144 ], [ -82.062654343935264, 28.741490059471367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 539", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063075532636347, 28.744299115731639 ], [ -82.063065222212956, 28.743138423653768 ], [ -82.063045679644048, 28.742613154287564 ], [ -82.063034060446896, 28.741493668915144 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 518", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063642461429453, 28.745793301511519 ], [ -82.063150128597599, 28.745790196862743 ], [ -82.061838936250922, 28.745781781041366 ], [ -82.061349991655732, 28.745779047284412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 522", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061407924077827, 28.751138715298257 ], [ -82.061287352008932, 28.751079804550713 ], [ -82.061233742793135, 28.751057258813777 ], [ -82.061162248578569, 28.751023172263491 ], [ -82.061129475204311, 28.750999566894933 ], [ -82.061119034949627, 28.750972013853911 ], [ -82.061113059214421, 28.750937897166676 ], [ -82.061114527505424, 28.750902465192404 ], [ -82.061127901293062, 28.750853905502677 ], [ -82.061184416302666, 28.750733154670574 ], [ -82.061255823737639, 28.750617643240457 ], [ -82.061311031156933, 28.75053611850521 ], [ -82.061325539122663, 28.750478443972234 ], [ -82.061326057589838, 28.750403113718928 ], [ -82.061332243261191, 28.749504495556561 ], [ -82.061330085475532, 28.748963512835935 ], [ -82.061334307578093, 28.747617660154965 ], [ -82.061344599339577, 28.747236846594706 ], [ -82.061348105890616, 28.74638256122077 ], [ -82.061349991655732, 28.745779047284412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 520", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06134893880639, 28.74506477448681 ], [ -82.061229327388588, 28.745054497230129 ], [ -82.05997234517146, 28.74504710924505 ], [ -82.058308707911522, 28.745052813179026 ], [ -82.057154338803102, 28.745038337104862 ], [ -82.055134205787994, 28.745039162726052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061407924077827, 28.751138715298257 ], [ -82.061476555143997, 28.751034509240707 ], [ -82.061735162828072, 28.750525086014584 ], [ -82.061854985382453, 28.750300841188761 ], [ -82.061954215927472, 28.75011158391386 ], [ -82.062306199888766, 28.749235961317801 ], [ -82.062459920649786, 28.74885514839918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06892725376764, 28.748842840879888 ], [ -82.067611055582276, 28.748846359968216 ], [ -82.066360149341108, 28.748846968860221 ], [ -82.06635687497203, 28.748846970445964 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 531", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06892725376764, 28.748842840879888 ], [ -82.068933113403659, 28.747869060734093 ], [ -82.068929348783769, 28.747084315534519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.073909362688326, 28.748833668209823 ], [ -82.073646074592688, 28.748834653838642 ], [ -82.071202169020879, 28.748841675895175 ], [ -82.070490445378482, 28.748842045104375 ], [ -82.06892725376764, 28.748842840879888 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091611445225922, 28.748872479450252 ], [ -82.09144568312297, 28.748852543704249 ], [ -82.091305928943797, 28.74884117956536 ], [ -82.091146676036686, 28.748829831911245 ], [ -82.091003681026748, 28.748829926406174 ], [ -82.09083143787602, 28.748830042017428 ], [ -82.08958023253274, 28.748830868695865 ], [ -82.087451558576419, 28.748826518764989 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 529A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086232857545369, 28.748830157611934 ], [ -82.086244322427603, 28.746959929715558 ], [ -82.086244278452881, 28.742205077437045 ], [ -82.08624909374403, 28.741887343016295 ], [ -82.086254072675331, 28.741766512505933 ], [ -82.086279368255163, 28.741654619305393 ], [ -82.086324981449465, 28.741551664305522 ], [ -82.086356851344121, 28.741517706890797 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 27th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037134497048555, 28.71562003280301 ], [ -82.03701331179964, 28.715639925436857 ], [ -82.036618740921696, 28.715637771718185 ], [ -82.035489558795234, 28.715662837771553 ], [ -82.033775172569449, 28.715653848787166 ], [ -82.032002038102888, 28.715640144162876 ], [ -82.03185409666213, 28.715648502980734 ], [ -82.031722484427945, 28.715627683883447 ], [ -82.031653293041103, 28.715580266120622 ], [ -82.031622519611204, 28.715487667310121 ], [ -82.031614767558537, 28.715270836310562 ], [ -82.031644825835841, 28.713257878620215 ], [ -82.031639115582607, 28.712029039230892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 21st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056993540917261, 28.725192647856861 ], [ -82.056955529353516, 28.725212775552816 ], [ -82.056890889468548, 28.72521950480829 ], [ -82.05682244852693, 28.725229590451061 ], [ -82.056746402871269, 28.725239676493306 ], [ -82.056666553556454, 28.72524641192248 ], [ -82.056396574688264, 28.725249875138744 ], [ -82.055434535761208, 28.725260322985111 ], [ -82.054715847471385, 28.725243852044219 ], [ -82.05447629183557, 28.725254002691212 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054463370854137, 28.7267711046103 ], [ -82.05447629183557, 28.725254002691212 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054491946632041, 28.723175843141419 ], [ -82.054510532030974, 28.720417316196546 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 23rd Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054491946632041, 28.723175843141419 ], [ -82.054336801048919, 28.723167860307935 ], [ -82.054220444974348, 28.72316589585861 ], [ -82.052326809164143, 28.723153221656368 ], [ -82.051665179612996, 28.723153471673303 ], [ -82.050528222931689, 28.723117023813607 ], [ -82.050478784384467, 28.723103634291036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05447629183557, 28.725254002691212 ], [ -82.054491946632041, 28.723175843141419 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 42nd Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033596162235156, 28.741275067074238 ], [ -82.033624822047599, 28.741033031726211 ], [ -82.033640982540163, 28.740926642973758 ], [ -82.033653500117424, 28.740838837550367 ], [ -82.033666242310389, 28.740745962816845 ], [ -82.033678965666496, 28.740591173352858 ], [ -82.033682084951181, 28.740360400645752 ], [ -82.033646894969792, 28.740149336745411 ], [ -82.033627687809954, 28.740002998948622 ], [ -82.033614871872885, 28.739865101738953 ], [ -82.033627550960318, 28.739575226299817 ], [ -82.033646665132991, 28.739434507002294 ], [ -82.033662575901943, 28.739268459347215 ], [ -82.033669793229549, 28.738570494844357 ], [ -82.033709849113976, 28.737943003722688 ], [ -82.033719707952031, 28.737569228092454 ], [ -82.033684645334588, 28.73714269453486 ], [ -82.033686586455232, 28.736874505325865 ], [ -82.033658730024953, 28.736312331711474 ], [ -82.033652178902997, 28.735502882672542 ], [ -82.033614219958295, 28.735335406956196 ], [ -82.033142319873704, 28.734394169624249 ], [ -82.033016441395873, 28.734161344862091 ], [ -82.032664028754439, 28.7336402744229 ], [ -82.032236127254947, 28.733080411566419 ], [ -82.031952948819793, 28.73267575277017 ], [ -82.031795594476051, 28.732337593954838 ], [ -82.031688565925862, 28.732016055134835 ], [ -82.031103312832983, 28.731073676497154 ], [ -82.031018435095035, 28.730375812136504 ], [ -82.030883582860156, 28.729852559527835 ], [ -82.030464176786822, 28.728665369907862 ], [ -82.029994934483511, 28.727614506496515 ], [ -82.029815212948279, 28.727166016299716 ], [ -82.029575600352658, 28.726612003476259 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 43rd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032733576465063, 28.743666123750589 ], [ -82.032737933184364, 28.743427215532758 ], [ -82.032731032250254, 28.743222317615952 ], [ -82.032751472387417, 28.742987281071613 ], [ -82.032727467152057, 28.742758280703391 ], [ -82.032713886481957, 28.742499457890702 ], [ -82.032723897654066, 28.7422701390954 ], [ -82.032723758809155, 28.741824180261382 ], [ -82.032729723320074, 28.741639353254499 ], [ -82.032736105762083, 28.741452002345312 ], [ -82.032778284442031, 28.74125767976323 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982499082247102, 28.787699686604761 ], [ -81.983437230240867, 28.788219580190802 ], [ -81.98462575652978, 28.788885724290353 ], [ -81.985402724099146, 28.789285413580444 ], [ -81.985730316659428, 28.789414948986053 ], [ -81.986284699901773, 28.789677706600429 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982462746782545, 28.788207988753239 ], [ -81.98302557877912, 28.788478529812977 ], [ -81.983995740752064, 28.788874550248266 ], [ -81.985049917494806, 28.789248374373575 ], [ -81.986284699901773, 28.789677706600429 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982574510487524, 28.785674326717679 ], [ -81.982240671198085, 28.785503617380662 ], [ -81.981858507651637, 28.785307466249581 ], [ -81.981497338484203, 28.785144616843485 ], [ -81.981203361847378, 28.785018774399543 ], [ -81.980905187568879, 28.784892931618909 ], [ -81.980749802517451, 28.784822611001463 ], [ -81.980367634038572, 28.784674554410959 ], [ -81.97983007809809, 28.784474673407392 ], [ -81.978943951565284, 28.784171136805906 ], [ -81.978351803434478, 28.783971242238227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987574219773336, 28.789085831680321 ], [ -81.986755255775961, 28.788619550920899 ], [ -81.986121089572961, 28.788242083887731 ], [ -81.985184543684909, 28.787712882797404 ], [ -81.98420600863362, 28.787176269452829 ], [ -81.98256639731747, 28.786242473293097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 500", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008284992953591, 28.759647509252638 ], [ -82.008239263448161, 28.75967053799943 ], [ -82.00818918098463, 28.759680135966022 ], [ -82.004204252652613, 28.759654161711893 ], [ -81.995897193308068, 28.759619711518109 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 526", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066806882349184, 28.741451787419731 ], [ -82.0665176644913, 28.741454791187486 ], [ -82.066101715820238, 28.741466448345545 ], [ -82.065757261391752, 28.741480934817812 ], [ -82.065579065689391, 28.741476440001883 ], [ -82.065432405039587, 28.741454990586465 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09220634217067, 28.748997138024155 ], [ -82.092047192631952, 28.74895456831408 ], [ -82.09189670127283, 28.748922663447555 ], [ -82.091760049278633, 28.748898367415716 ], [ -82.091671831471487, 28.74888166244682 ], [ -82.091611445225922, 28.748872479450252 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 527 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096054237539775, 28.748775006791995 ], [ -82.095964295766962, 28.74876592504528 ], [ -82.095794805221431, 28.748762994294363 ], [ -82.095486953505628, 28.748758639810749 ], [ -82.094077427493872, 28.748758092984907 ], [ -82.092870252979367, 28.748758919755971 ], [ -82.092764757575367, 28.748763564463491 ], [ -82.09268521397378, 28.748775810675735 ], [ -82.092612606811983, 28.748810915169855 ], [ -82.092562487003789, 28.748850578247378 ], [ -82.092527943944475, 28.748902422922576 ], [ -82.092495143216908, 28.748972555572216 ], [ -82.092458918723167, 28.749077746643412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 527 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.097575654562732, 28.750072503333985 ], [ -82.097547893411232, 28.749978025204058 ], [ -82.097473336297114, 28.749772318444233 ], [ -82.097443869668396, 28.74970375130566 ], [ -82.09740263203939, 28.74962589233327 ], [ -82.097346859883501, 28.749533116608717 ], [ -82.097291436328319, 28.749446279693661 ], [ -82.097241227694042, 28.749388398155979 ], [ -82.097194484846185, 28.749338134238315 ], [ -82.097142555434147, 28.749289398921139 ], [ -82.097069856462369, 28.749223911417051 ], [ -82.096978121564149, 28.749146244329467 ], [ -82.096893320635544, 28.749085340102553 ], [ -82.096796413432926, 28.749024443508944 ], [ -82.096683939525434, 28.748960507126636 ], [ -82.09651957196597, 28.748890513087826 ], [ -82.09637598270281, 28.74884336630436 ], [ -82.096204728168559, 28.748803858986008 ], [ -82.096054237539775, 28.748775006791995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 527 South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.097584857836367, 28.752543130054658 ], [ -82.097594805823874, 28.752079783221834 ], [ -82.09759738248907, 28.751125668706738 ], [ -82.097591386013747, 28.750252340133592 ], [ -82.097584400967094, 28.750179186157567 ], [ -82.097575654562732, 28.750072503333985 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 527A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099923196865859, 28.752544486845185 ], [ -82.098418489305374, 28.752536435966054 ], [ -82.097584857836367, 28.752543130054658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 527 South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.097577737497232, 28.754196829074967 ], [ -82.097574056047819, 28.753956017834195 ], [ -82.097578638443736, 28.753300633062356 ], [ -82.097584857836367, 28.752543130054658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 527 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09757885917324, 28.754618227267116 ], [ -82.097585263526398, 28.754853730012389 ], [ -82.097570505323063, 28.755728597754096 ], [ -82.097565631168919, 28.756068483074607 ], [ -82.09756582035034, 28.756274243553023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100150002392667, 28.754322732464551 ], [ -82.100247611425289, 28.754371799999255 ], [ -82.100291853173673, 28.754401561959614 ], [ -82.100319191435091, 28.754433056157065 ], [ -82.100341090780347, 28.754465847370607 ], [ -82.100352385260365, 28.754492195724477 ], [ -82.100359782486066, 28.754521603993918 ], [ -82.100364146950525, 28.754553304574287 ], [ -82.100364192402111, 28.754577411730679 ], [ -82.100354922305655, 28.754629751105178 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100652588221763, 28.754313477310713 ], [ -82.100430147117976, 28.754318016652601 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100652588221763, 28.754313477310713 ], [ -82.100589598240688, 28.754353594765707 ], [ -82.100544123537148, 28.754394690923597 ], [ -82.10049216409692, 28.754453938332457 ], [ -82.100428294061658, 28.754522742806724 ], [ -82.100354922305655, 28.754629751105178 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100922739412169, 28.754305657569102 ], [ -82.100870222649661, 28.754306467909068 ], [ -82.100799243877901, 28.754308907926283 ], [ -82.100719597512395, 28.754311353406369 ], [ -82.100652588221763, 28.754313477310713 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139163171838732, 28.674221944148638 ], [ -82.139078489591625, 28.674383229385388 ], [ -82.138771615340971, 28.674946153007188 ], [ -82.138386071159047, 28.675684714257901 ], [ -82.138213693561511, 28.676009617421155 ], [ -82.137865191900445, 28.676676239972892 ], [ -82.137323875748976, 28.677708416116019 ], [ -82.13711450028633, 28.678110443906409 ], [ -82.136264197681442, 28.679732109311683 ], [ -82.135720292044368, 28.680766539766232 ], [ -82.135414569697744, 28.681350436066353 ], [ -82.13455585106405, 28.682988972013426 ], [ -82.134121722498335, 28.683813349247949 ], [ -82.1335548078453, 28.684904228436544 ], [ -82.132849955707101, 28.686241295964777 ], [ -82.13222936255633, 28.687418000654624 ], [ -82.131713488232549, 28.688409498169957 ], [ -82.131095425388438, 28.689581680535785 ], [ -82.130584626813913, 28.690557366099213 ], [ -82.130352206790988, 28.690997779110514 ], [ -82.129629408508606, 28.692379993125073 ], [ -82.128927018934675, 28.693719293330251 ], [ -82.128367650204453, 28.69478756871462 ], [ -82.127570712460866, 28.696300769657615 ], [ -82.12703430694161, 28.697326127302073 ], [ -82.126679249040805, 28.698001416579991 ], [ -82.126132601353362, 28.699040322990797 ], [ -82.125524648497915, 28.700205698793681 ], [ -82.124811929511964, 28.701558529750077 ], [ -82.124275473147833, 28.702586132533106 ], [ -82.123644471708374, 28.703783122592114 ], [ -82.123171858008419, 28.704686506115127 ], [ -82.122438645970732, 28.706082233535565 ], [ -82.121866368000425, 28.707170808740528 ], [ -82.121641543177475, 28.707599912750887 ], [ -82.121220009131136, 28.708419718607392 ], [ -82.12098244729566, 28.708909784064478 ], [ -82.12075257753196, 28.709411127660264 ], [ -82.12070915086808, 28.709501462882496 ], [ -82.120538055923234, 28.709903428576645 ], [ -82.120453800771926, 28.710115696947039 ], [ -82.120397632027121, 28.71025796230234 ], [ -82.120221425940116, 28.710671219275611 ], [ -82.11998654651812, 28.711276405622911 ], [ -82.119644470888488, 28.712190948157787 ], [ -82.119322815394057, 28.713053551976557 ], [ -82.118942712305028, 28.714066185213671 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100354922305655, 28.754629751105178 ], [ -82.10029326282617, 28.754744963633389 ], [ -82.10009414863319, 28.755041527207307 ], [ -82.099905423558965, 28.755324332467708 ], [ -82.099668207895007, 28.755668288598919 ], [ -82.099481237556702, 28.755977065141398 ], [ -82.099318507051493, 28.756247627811081 ], [ -82.09918694849442, 28.756478439523882 ], [ -82.099081365262094, 28.756675619146893 ], [ -82.098890945359784, 28.757005789457445 ], [ -82.098788807340298, 28.757178519889006 ], [ -82.098306918725314, 28.757812636052265 ], [ -82.098006744283694, 28.758188172300159 ], [ -82.09762886937348, 28.758708556363985 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100124098087875, 28.756160985674818 ], [ -82.100384934396089, 28.755856411926963 ], [ -82.101389135640588, 28.754685890611682 ], [ -82.101720277361864, 28.754309294087065 ], [ -82.101946298333999, 28.754035808194992 ], [ -82.102193462274371, 28.753745435459734 ], [ -82.103357660475268, 28.75238788422573 ], [ -82.104002434863929, 28.751635691865634 ], [ -82.105337495277837, 28.749987360128607 ], [ -82.105779547318846, 28.74937763667587 ], [ -82.106631736761969, 28.747714867004785 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.097804104258756, 28.758826551183535 ], [ -82.098942539808277, 28.75778143984861 ], [ -82.099317699532378, 28.757415506213437 ], [ -82.100003375017621, 28.756774506752265 ], [ -82.100465702481458, 28.756344794294623 ], [ -82.100625554702958, 28.756201787419524 ], [ -82.100822116455149, 28.756013031043107 ], [ -82.101181523804968, 28.755630611289742 ], [ -82.101478599273605, 28.755303724919486 ], [ -82.101771255824843, 28.754982359752169 ], [ -82.102078268905515, 28.754626761038324 ], [ -82.102230672631094, 28.754454483065658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102210123953739, 28.754284960425519 ], [ -82.101896380998937, 28.754284281215355 ], [ -82.101816819411411, 28.754284340651413 ], [ -82.101764933689893, 28.754284379387126 ], [ -82.101643861441488, 28.754282944782275 ], [ -82.101246510389345, 28.754300538721466 ], [ -82.100922739412169, 28.754305657569102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102210123953739, 28.754284960425519 ], [ -82.102478924525002, 28.7539546299172 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102230672631094, 28.754454483065658 ], [ -82.102240611517786, 28.754419143607258 ], [ -82.102252759539567, 28.754371655506912 ], [ -82.102256143727018, 28.754333701538012 ], [ -82.10224886647994, 28.754284931376233 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102622488865549, 28.754321230572515 ], [ -82.102456430896893, 28.754300627450391 ], [ -82.102358178895642, 28.754288507344523 ], [ -82.10224886647994, 28.754284931376233 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102622488865549, 28.754321230572515 ], [ -82.102546319423965, 28.754250567026556 ], [ -82.102531080905678, 28.754232288532279 ], [ -82.102508914053033, 28.754203043077155 ], [ -82.102495052797863, 28.754177447561016 ], [ -82.102482570871928, 28.754146669002928 ], [ -82.102473873345019, 28.754097903529065 ], [ -82.102470372157825, 28.75405218127176 ], [ -82.102473781130669, 28.754001881782763 ], [ -82.102478924525002, 28.7539546299172 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102230672631094, 28.754454483065658 ], [ -82.102286994859639, 28.754422457313296 ], [ -82.102331169708577, 28.754404786584768 ], [ -82.102388595966204, 28.754379387475819 ], [ -82.102431665956118, 28.754361717544171 ], [ -82.102467550354433, 28.754351830065055 ], [ -82.102497977989401, 28.754339613288511 ], [ -82.102550547461021, 28.754329819716009 ], [ -82.102622488865549, 28.754321230572515 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103117939384504, 28.754426937565469 ], [ -82.102863286718289, 28.754363725065591 ], [ -82.102622488865549, 28.754321230572515 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104050931743515, 28.754758952401421 ], [ -82.103855841283107, 28.754677142873355 ], [ -82.103654750390049, 28.754597981411322 ], [ -82.103401677723781, 28.754515733461414 ], [ -82.103271570508795, 28.754471935291274 ], [ -82.103188528135874, 28.754447612168121 ], [ -82.103117939384504, 28.754426937565469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 495", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102737215223712, 28.755620932711288 ], [ -82.102735702807863, 28.75549046703528 ], [ -82.102743311649746, 28.754778382109141 ], [ -82.102746038825032, 28.754735704097222 ], [ -82.102758441052373, 28.754684483782025 ], [ -82.102772258339243, 28.754663745354151 ], [ -82.102799908828374, 28.75464177656302 ], [ -82.10284001224592, 28.754618579343642 ], [ -82.10289118660053, 28.754596594591593 ], [ -82.102942366878565, 28.7545807040608 ], [ -82.102983864120134, 28.754567259786796 ], [ -82.103022584465776, 28.754546502519265 ], [ -82.103058530646052, 28.754515992394911 ], [ -82.103083407218563, 28.754486708758598 ], [ -82.103117939384504, 28.754426937565469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 496", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103037469772531, 28.755620707007555 ], [ -82.102737215223712, 28.755620932711288 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102478924525002, 28.7539546299172 ], [ -82.102610219237079, 28.753799067443854 ], [ -82.102682784204745, 28.753718234728115 ], [ -82.102810617454807, 28.753562676468214 ], [ -82.102948135722656, 28.753403016059696 ], [ -82.103082439014301, 28.753237638154797 ], [ -82.103251150386427, 28.753028973392261 ], [ -82.103533076511908, 28.752659273558933 ], [ -82.103639629323425, 28.752518409545306 ], [ -82.103723985654, 28.752399648340297 ], [ -82.103851628895214, 28.752216511714948 ], [ -82.103919335478267, 28.752123276973698 ], [ -82.103993701181125, 28.752025604036223 ], [ -82.1041779516584, 28.751768102780719 ], [ -82.104516225505904, 28.75133911887853 ], [ -82.105419976507008, 28.750164267860583 ], [ -82.105902800134515, 28.74941173807693 ], [ -82.106426315402615, 28.74838952039406 ], [ -82.106631736761969, 28.747714867004785 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100150002392667, 28.754322732464551 ], [ -82.099923589539927, 28.754328492919381 ], [ -82.099610764450901, 28.754343583833968 ], [ -82.099311533798598, 28.754367124245768 ], [ -82.099053005889061, 28.754378075997103 ], [ -82.098797567180256, 28.754378138566928 ], [ -82.098596257896773, 28.75437072012852 ], [ -82.098395720546918, 28.754354364289863 ], [ -82.098196349008091, 28.754329754726573 ], [ -82.097998525959696, 28.754296549190588 ], [ -82.097802842964754, 28.754254405286289 ], [ -82.09766077658827, 28.754218107628105 ], [ -82.097577737497232, 28.754196829074967 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.097577737497232, 28.754196829074967 ], [ -82.097419448745043, 28.754145699657901 ], [ -82.097261287262413, 28.754086952606677 ], [ -82.097080034881685, 28.754009940869388 ], [ -82.09690285595812, 28.753932928700586 ], [ -82.096741956294622, 28.753848726824405 ], [ -82.096585118175241, 28.753753758143137 ], [ -82.096436421987505, 28.753656990618822 ], [ -82.096275494283077, 28.753542293504395 ], [ -82.096124733712728, 28.753413234976652 ], [ -82.095973951286965, 28.753260855914949 ], [ -82.09587410891281, 28.753158671966627 ], [ -82.095755923543393, 28.753033177732615 ], [ -82.09563160905256, 28.752882573503378 ], [ -82.095515433863241, 28.752728375845482 ], [ -82.09540739735283, 28.752568789169533 ], [ -82.095325855441985, 28.752441477816767 ], [ -82.095252447362697, 28.752306981900034 ], [ -82.095195341992891, 28.752190416237227 ], [ -82.094813896736113, 28.751333175673597 ], [ -82.094713944671156, 28.751105414531551 ], [ -82.094620128514919, 28.750909940275797 ], [ -82.094550791243691, 28.750771853505388 ], [ -82.094457018441958, 28.750623022577365 ], [ -82.09435917547475, 28.750475985494251 ], [ -82.094253198784429, 28.750337924792102 ], [ -82.094155379917325, 28.750219592053309 ], [ -82.094065719114312, 28.750115604071851 ], [ -82.093927167278551, 28.749972184898496 ], [ -82.093774364797184, 28.749828772982074 ], [ -82.093662326766747, 28.749742740441395 ], [ -82.093548252856309, 28.749654913581494 ], [ -82.09341381003496, 28.749554545660054 ], [ -82.093307895434464, 28.749484653875907 ], [ -82.093193835400356, 28.749412972851669 ], [ -82.093071636773047, 28.749344886716909 ], [ -82.092971035833628, 28.749293828817606 ], [ -82.092860304074733, 28.749242082947852 ], [ -82.092744381016587, 28.749188816492605 ], [ -82.092645762202267, 28.74914773036739 ], [ -82.092548880926898, 28.749111216861785 ], [ -82.092458918723167, 28.749077746643412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 489A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119120311660751, 28.756180335634713 ], [ -82.119143541557321, 28.752805214232509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060740423485228, 28.756478219740753 ], [ -82.061041890769658, 28.757467852934205 ], [ -82.061318066539371, 28.758402846878678 ], [ -82.061536712952687, 28.759151652113918 ], [ -82.061746202602009, 28.759949039056501 ], [ -82.062102967933825, 28.761191653076644 ], [ -82.06247355175941, 28.762484861509638 ], [ -82.062770478155912, 28.763506876981882 ], [ -82.06315028019948, 28.76482031870103 ], [ -82.063357456523889, 28.765550908638662 ], [ -82.063571534899054, 28.766293640140645 ], [ -82.06394214961594, 28.767574697387776 ], [ -82.064305871940959, 28.768843615030445 ], [ -82.064688011082325, 28.770161097073657 ], [ -82.064952765141243, 28.77109203926797 ], [ -82.065376358530699, 28.772549161327863 ], [ -82.065671042650948, 28.77357117072501 ], [ -82.065806877740272, 28.774042712050115 ], [ -82.066106165806914, 28.775066740122742 ], [ -82.066396273411144, 28.776087940353449 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066396273411144, 28.776087940353449 ], [ -82.066520597566139, 28.776515765609251 ], [ -82.066880703419244, 28.777774958306601 ], [ -82.067155147028771, 28.778712368908874 ], [ -82.067249092535093, 28.779042647316945 ], [ -82.067471974084185, 28.779813299611963 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 12th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.082953142214265, 28.774383593055731 ], [ -82.082713975092091, 28.774348085052537 ], [ -82.082085784188109, 28.774323755288169 ], [ -82.081318870809639, 28.774340026437333 ], [ -82.080521406290742, 28.774360190304186 ], [ -82.079907414449494, 28.77435225964523 ], [ -82.079189920289352, 28.774356823757788 ], [ -82.078892337725662, 28.774359067711142 ], [ -82.078454781851079, 28.774359318873717 ], [ -82.077792576916664, 28.774369025784772 ], [ -82.07691747114886, 28.774373665700832 ], [ -82.076464617923179, 28.774365630369683 ], [ -82.076071759817481, 28.774366885547721 ], [ -82.075407199657747, 28.774374508559831 ], [ -82.075228414700078, 28.77437357035312 ], [ -82.074874359713959, 28.77436029326681 ], [ -82.074809667107573, 28.77435825608335 ], [ -82.07474968521926, 28.774364506757991 ], [ -82.074689705381871, 28.774378011111377 ], [ -82.074626203114846, 28.774396699354167 ], [ -82.074592104160203, 28.774413298903628 ], [ -82.074567414896251, 28.774429894212386 ], [ -82.074546254774305, 28.774446486689133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 19th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06882934197202, 28.78451472027713 ], [ -82.068403762893226, 28.784527430011103 ], [ -82.068091675996854, 28.784544251521542 ], [ -82.067599908015211, 28.784577822475484 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091836549610093, 28.861751816566681 ], [ -82.091750407478287, 28.859933490670482 ], [ -82.091664598134855, 28.858497981324891 ], [ -82.09155012082627, 28.856502443144926 ], [ -82.09139090969542, 28.853989419136063 ], [ -82.091280501361112, 28.85203286697265 ], [ -82.09113750270437, 28.849629715361321 ], [ -82.090973973087372, 28.846755139559075 ], [ -82.090790176565108, 28.84371043724213 ], [ -82.09063905468949, 28.841197400253602 ], [ -82.090401959378738, 28.83700781814262 ], [ -82.090356985354092, 28.836199673473988 ], [ -82.090197787503911, 28.833633471902349 ], [ -82.090034465575059, 28.830939666775208 ], [ -82.089956723160569, 28.829465154203906 ], [ -82.089895498057714, 28.828476242917304 ], [ -82.089744417642919, 28.825959656629248 ], [ -82.089581016327486, 28.823145329345788 ], [ -82.089495309510582, 28.82175588959042 ], [ -82.089344159656704, 28.819132962413633 ], [ -82.089193139604191, 28.816655363358034 ], [ -82.089062670768087, 28.814432550041253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.092208579921703, 28.868149581104394 ], [ -82.092085881533691, 28.865987454486362 ], [ -82.092044997705514, 28.86528210590777 ], [ -82.092012358303407, 28.864796515429305 ], [ -82.091910203934972, 28.863095173074306 ], [ -82.091836549610093, 28.861751816566681 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020609639673367, 28.874557626078204 ], [ -82.020608662151034, 28.874437821238846 ], [ -82.020610799577952, 28.872724491304677 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 81st Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018536174063769, 28.874669779238026 ], [ -82.017960712971671, 28.874669091039141 ], [ -82.017644926833938, 28.874663339355141 ], [ -82.017332429283968, 28.874657589231109 ], [ -82.017202168780571, 28.874659036344958 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 134B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023862572786015, 28.877430377446576 ], [ -82.020605952456933, 28.877439583839148 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 134C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022597144738597, 28.879151367285306 ], [ -82.020605908101402, 28.879152039738539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020608414241721, 28.880041448836689 ], [ -82.020605908101402, 28.879152039738539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 133", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008136986854311, 28.870858994265291 ], [ -82.008131656711456, 28.872748777526699 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95826278293525, 28.821647283674551 ], [ -81.9595285872593, 28.821938580452628 ], [ -81.96016481800828, 28.822081296477197 ], [ -81.960789970208964, 28.822208387296836 ], [ -81.96123777689661, 28.822296375879034 ], [ -81.96203142050426, 28.822437176687174 ], [ -81.963290627634308, 28.822630816361755 ], [ -81.964106455411979, 28.822750132449961 ], [ -81.965232760362582, 28.822915436469899 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975298840269645, 28.82432032329973 ], [ -81.976093495584607, 28.824421338175231 ], [ -81.976368651176884, 28.824445997403839 ], [ -81.976686805701505, 28.824459304380927 ], [ -81.976918971154134, 28.824466917608387 ], [ -81.9771769362643, 28.824466960845747 ], [ -81.977527341607455, 28.824453769602933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977527341607455, 28.824453769602933 ], [ -81.977738015235218, 28.824444338612523 ], [ -81.97815291639489, 28.824406545051019 ], [ -81.981908778212201, 28.823916068913785 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Big Oak Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987624910973182, 28.821202756342235 ], [ -81.987694776866107, 28.821176733875589 ], [ -81.988339670550431, 28.821167325661456 ], [ -81.990572609199276, 28.821181701133625 ], [ -81.991029407295883, 28.82118409678657 ], [ -81.991295423989371, 28.821181749523845 ], [ -81.991343791013122, 28.82117938592582 ], [ -81.991388669846685, 28.821170705014495 ], [ -81.991432466218939, 28.821155728603916 ], [ -81.991478147337048, 28.8211344352301 ], [ -81.991521142963492, 28.821101307878077 ], [ -81.99154801867131, 28.82105634840276 ], [ -81.991569517313792, 28.821011389482823 ], [ -81.991585646803998, 28.820933300114305 ], [ -81.991596475969331, 28.819977290082431 ], [ -81.991591108013523, 28.81990629961512 ], [ -81.991580364963326, 28.81984950665143 ], [ -81.991556185223871, 28.819797443643271 ], [ -81.991526631004163, 28.819752482368418 ], [ -81.991478268464974, 28.819709883933264 ], [ -81.990537847485811, 28.819354866958278 ], [ -81.990486797761321, 28.819326466723023 ], [ -81.9904464954747, 28.819290968768431 ], [ -81.990411567094029, 28.819255470286656 ], [ -81.990376641464053, 28.819212874226071 ], [ -81.99036052288541, 28.819170278617541 ], [ -81.990344407385209, 28.819106385785805 ], [ -81.990339041001292, 28.819028294983138 ], [ -81.990339080250763, 28.818618914247359 ], [ -81.990341779707123, 28.818493496962251 ], [ -81.990355755602963, 28.818441912009984 ], [ -81.990388222656932, 28.818391856905876 ], [ -81.990429604654139, 28.818349918713778 ], [ -81.99049764243874, 28.818299465510538 ], [ -81.990572882628612, 28.818262082744159 ], [ -81.990736789005311, 28.818228492232763 ], [ -81.990817937938402, 28.818210986728801 ], [ -81.990891026239069, 28.818186382150873 ], [ -81.990940468319593, 28.818154202835878 ], [ -81.990994212832874, 28.818106878519703 ], [ -81.991043658231902, 28.818048196515342 ], [ -81.991095250398104, 28.818008444199322 ], [ -81.991143993490695, 28.817977309637119 ], [ -81.991194137337786, 28.817955444581489 ], [ -81.991254325352415, 28.817940305085603 ], [ -81.99212920037867, 28.817964969429717 ], [ -81.992387149383347, 28.817966877533014 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990403358710751, 28.825799553950244 ], [ -81.992103534233507, 28.826981896366831 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992103534233507, 28.826981896366831 ], [ -81.992864973206068, 28.827508037956932 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992864973206068, 28.827508037956932 ], [ -81.993597037857512, 28.828016924354987 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993597037857512, 28.828016924354987 ], [ -81.994195189733844, 28.828432415572411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994335845489815, 28.828530119169248 ], [ -81.994825530155211, 28.828865421001542 ], [ -81.995160966404725, 28.829097219738276 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995160966404725, 28.829097219738276 ], [ -81.995905296724288, 28.829614719121448 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995905296724288, 28.829614719121448 ], [ -81.996644737604967, 28.830127901200456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996644737604967, 28.830127901200456 ], [ -81.997376843090265, 28.830632454776833 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997376843090265, 28.830632454776833 ], [ -81.998111399402887, 28.831141317416275 ], [ -81.998219134527986, 28.83121678445417 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998219134527986, 28.83121678445417 ], [ -81.998637837917556, 28.83150355598395 ], [ -81.999071232421741, 28.831803264518381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999071232421741, 28.831803264518381 ], [ -81.999800910173917, 28.832309960419046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 173", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011815235091603, 28.837814669584475 ], [ -82.011803137670626, 28.839149320075656 ], [ -82.011800695058028, 28.839209691840129 ], [ -82.011783559704924, 28.839263597072947 ], [ -82.01174683331061, 28.839302410113508 ], [ -82.011705209075629, 28.839336913222031 ], [ -82.011663580579622, 28.839360632845988 ], [ -82.011629300521534, 28.83937357200011 ], [ -82.01159012036419, 28.839380043803409 ], [ -82.011543594230162, 28.839382204961883 ], [ -82.011002418221395, 28.839373622158188 ], [ -82.010953442456028, 28.839371468467384 ], [ -82.010916709713669, 28.839360691387039 ], [ -82.010882426327399, 28.839341288958572 ], [ -82.0108530403012, 28.839321885251106 ], [ -82.010830998553928, 28.839300325375049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 41st View", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035394279997973, 28.847223522298805 ], [ -82.035245010528143, 28.84725646589299 ], [ -82.034932124211778, 28.847262310495168 ], [ -82.034851616582912, 28.847339681053647 ], [ -82.034848613162723, 28.848101009360743 ], [ -82.034807130841244, 28.848118208777564 ], [ -82.034763203722108, 28.848118219878909 ], [ -82.034703001392501, 28.848103910969908 ], [ -82.034601299741226, 28.848051653380143 ], [ -82.034480088108069, 28.848040224512769 ], [ -82.034397923949513, 28.848030935077894 ], [ -82.03431494918766, 28.848028090963432 ], [ -82.034208437221238, 28.848029973510258 ], [ -82.03407068922003, 28.848048874871555 ], [ -82.033951319044689, 28.848097416811239 ], [ -82.033881089884787, 28.848179819114183 ], [ -82.033643851092734, 28.848259853121689 ], [ -82.033593707858444, 28.848326712664996 ], [ -82.033562554659753, 28.848424600556541 ], [ -82.033532517523369, 28.848474075868921 ], [ -82.033501579230148, 28.84853562785019 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023252926526268, 28.841592527381909 ], [ -82.022890010916839, 28.841473865641781 ], [ -82.022160685047766, 28.841228927015749 ], [ -82.021508877693691, 28.841018091426708 ], [ -82.020934583269252, 28.840828955993835 ], [ -82.0203638114603, 28.840636718169968 ], [ -82.019905789427654, 28.840487886345592 ], [ -82.01940901302946, 28.840323551291387 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01940901302946, 28.840323551291387 ], [ -82.018429555011252, 28.839997973248053 ], [ -82.017606810169866, 28.839726399577302 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017606810169866, 28.839726399577302 ], [ -82.017474023905763, 28.839682999834992 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976806624784558, 28.820281340159731 ], [ -81.977408186387677, 28.819341338891146 ], [ -81.977658669808889, 28.818891972780172 ], [ -81.977811408553478, 28.818590999273461 ], [ -81.977952870906833, 28.818286204248782 ], [ -81.978053546539911, 28.818054740347794 ], [ -81.978206303018354, 28.817663620169562 ], [ -81.978359247809578, 28.817258292050234 ], [ -81.978511499830262, 28.816833399732289 ], [ -81.978713528583029, 28.81631186326074 ], [ -81.978911589184122, 28.815801102113394 ], [ -81.979139793622082, 28.815204803595645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976336478265239, 28.824261802462342 ], [ -81.976116670087194, 28.824206109986541 ], [ -81.974793174536458, 28.824021579376449 ], [ -81.974749214385199, 28.824004536417743 ], [ -81.974708774415348, 28.823976652863074 ], [ -81.974670096013227, 28.82393947855077 ], [ -81.974643729287479, 28.823894562936047 ], [ -81.97463297034507, 28.823838034840112 ], [ -81.974632984604924, 28.823779960416761 ], [ -81.974659597420569, 28.823719569375683 ], [ -81.974759873473985, 28.823560078042458 ], [ -81.974970981430701, 28.823231805128319 ], [ -81.975204964900314, 28.822829201144089 ], [ -81.975380699806948, 28.822508912765908 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976336478265239, 28.824261802462342 ], [ -81.975844638289615, 28.82422057944353 ], [ -81.97553140540488, 28.824174547331744 ], [ -81.975003852469584, 28.824101856624566 ], [ -81.974613685110825, 28.824046130765225 ], [ -81.974426173581236, 28.824022140664166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974426173581236, 28.824022140664166 ], [ -81.974564294863697, 28.823765428359327 ], [ -81.974990351674265, 28.823121856034028 ], [ -81.975144286163683, 28.822865388766452 ], [ -81.975380699806948, 28.822508912765908 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97427282908545, 28.823997999853791 ], [ -81.97415400073632, 28.823982936433911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975130854159275, 28.822641660475792 ], [ -81.974961047851139, 28.822910494535421 ], [ -81.974739748091977, 28.82325805329587 ], [ -81.974433835912407, 28.823735468562507 ], [ -81.97427282908545, 28.823997999853791 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974426173581236, 28.824022140664166 ], [ -81.97427282908545, 28.823997999853791 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982098520615509, 28.823712205001623 ], [ -81.981693813841147, 28.823764868616074 ], [ -81.981211967566438, 28.823827852562903 ], [ -81.980674001869517, 28.823899346309574 ], [ -81.980246339831666, 28.823953815909508 ], [ -81.979725787915882, 28.824021902222512 ], [ -81.979249744774094, 28.824084881841596 ], [ -81.978903837365493, 28.824130836601924 ], [ -81.978553094739937, 28.824175513836607 ], [ -81.978178162707437, 28.824224446026655 ], [ -81.977815324624814, 28.824260597966081 ], [ -81.977457328837033, 28.824281839986739 ], [ -81.977094498508549, 28.824290298120381 ], [ -81.976775209188887, 28.824285984321172 ], [ -81.97666620496058, 28.824281219259344 ], [ -81.976517827192097, 28.824273934292432 ], [ -81.976336478265239, 28.824261802462342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990034732832385, 28.825321526820446 ], [ -81.989791981007727, 28.825152861439925 ], [ -81.989358548103368, 28.824854612536672 ], [ -81.989039278968605, 28.824643279381554 ], [ -81.988723880056526, 28.824450690363975 ], [ -81.98843750391984, 28.824300705654153 ], [ -81.988187892873654, 28.824177989575219 ], [ -81.987903448251686, 28.824056973438832 ], [ -81.987560954415812, 28.823920612947965 ], [ -81.987230070233394, 28.823809816923312 ], [ -81.986877900298481, 28.823707538502699 ], [ -81.9865760373889, 28.823637639085003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990639870387028, 28.825742707290981 ], [ -81.990034732832385, 28.825321526820446 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99222595283203, 28.826838459947954 ], [ -81.991848880618107, 28.826581032936176 ], [ -81.991357386742081, 28.826238479951456 ], [ -81.990859157644721, 28.82588928099624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99299070828198, 28.827363055378996 ], [ -81.99222595283203, 28.826838459947954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993716200441028, 28.827871132324315 ], [ -81.99299070828198, 28.827363055378996 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994461205719773, 28.82838580113048 ], [ -81.994176748853235, 28.828191522695356 ], [ -81.993716200441028, 28.827871132324315 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997511747283582, 28.830498954626208 ], [ -81.997065880265097, 28.830190519030541 ], [ -81.996553064174904, 28.829837758790831 ], [ -81.995906730595166, 28.829391268768585 ], [ -81.995492614279982, 28.829101559943741 ], [ -81.99487338086233, 28.828673809514861 ], [ -81.99462331414756, 28.828499074665995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998261521638682, 28.831023519626498 ], [ -81.997906365057048, 28.830773648780958 ], [ -81.997511747283582, 28.830498954626208 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999197340010767, 28.831668878373321 ], [ -81.998861725758204, 28.83143623797282 ], [ -81.998261521638682, 28.831023519626498 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999932097890905, 28.832175231635194 ], [ -81.999614522091036, 28.83195769508346 ], [ -81.999197340010767, 28.831668878373321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 40th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0372455538525, 28.846284309793031 ], [ -82.037176682520013, 28.847093950167142 ], [ -82.037175515174141, 28.847108390079562 ], [ -82.037172005947042, 28.847122485944457 ], [ -82.037166348532978, 28.84713623861159 ], [ -82.037158543714327, 28.847148959621286 ], [ -82.037148786211191, 28.847160651627505 ], [ -82.037137270621699, 28.847170968994199 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 141", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95826278293525, 28.821647283674551 ], [ -81.95825096445121, 28.821906970057778 ], [ -81.958247976854395, 28.824541807572906 ], [ -81.958238040782504, 28.825593250648062 ], [ -81.958239825309178, 28.827065693680439 ], [ -81.958232012424844, 28.828755964205776 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wesleyan Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979299871687147, 28.824882337792349 ], [ -81.978849338144059, 28.824807991186695 ], [ -81.97809265996699, 28.824707534722339 ], [ -81.977985179001763, 28.824682908444 ], [ -81.97792069399496, 28.824660179503375 ], [ -81.977862656357601, 28.824635560356359 ], [ -81.977800322697931, 28.824605261339585 ], [ -81.97774228593147, 28.824567389926482 ], [ -81.977679954396649, 28.824527624728997 ], [ -81.977621917711176, 28.824499218486714 ], [ -81.977527341607455, 28.824453769602933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wesleyan Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981674447300549, 28.825201824901868 ], [ -81.9812030784515, 28.82514150247972 ], [ -81.979299871687147, 28.824882337792349 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 145", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979299871687147, 28.824882337792349 ], [ -81.979279568525499, 28.825020703755232 ], [ -81.979264351358964, 28.825078727996917 ], [ -81.979244067585853, 28.825125590791078 ], [ -81.979213749898079, 28.825160820360182 ], [ -81.979180695785971, 28.825199228332128 ], [ -81.979145211293215, 28.825217076805817 ], [ -81.979107193330947, 28.825232694367308 ], [ -81.979066642354738, 28.825243846897333 ], [ -81.979018491572731, 28.825250533600716 ], [ -81.978957666451748, 28.825250524969565 ], [ -81.978879104306841, 28.82524381658007 ], [ -81.978439408553996, 28.825220871253727 ], [ -81.978338415886853, 28.825220965960238 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 146", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978338415886853, 28.825220965960238 ], [ -81.978325169325871, 28.826147030606727 ], [ -81.978327478322996, 28.826622059619886 ], [ -81.978319689952627, 28.827503601432706 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 145", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978338415886853, 28.825220965960238 ], [ -81.977894408885547, 28.825211520314323 ], [ -81.97729124568788, 28.825209188130973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 76th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97729124568788, 28.825209188130973 ], [ -81.977321468251617, 28.826070651098785 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 145", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97729124568788, 28.825209188130973 ], [ -81.976366226342662, 28.825209029248704 ], [ -81.975382916272721, 28.825215546673324 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 73rd Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981674447300549, 28.825201824901868 ], [ -81.981676957884318, 28.825326803171738 ], [ -81.981692152265808, 28.825389294663104 ], [ -81.981731418979649, 28.825477036947209 ], [ -81.98184623327387, 28.825609561152373 ], [ -81.981949170684445, 28.825710702252096 ], [ -81.982020142177703, 28.825832565021209 ], [ -81.982053077392706, 28.825895058848317 ], [ -81.982080938312151, 28.825988796240683 ], [ -81.982091060640613, 28.82607137330216 ], [ -81.982093580655345, 28.826162875887835 ], [ -81.982083186653597, 28.827624672581631 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 49th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982083186653597, 28.827624672581631 ], [ -81.982039447353529, 28.827641784420969 ], [ -81.981984341447998, 28.827653670349566 ], [ -81.981272197849293, 28.827586621345507 ], [ -81.981006096731321, 28.827557571040511 ], [ -81.980881913557624, 28.827548626834371 ], [ -81.980836296022801, 28.827548621218657 ], [ -81.980762390548094, 28.82755050818135 ], [ -81.980735841534226, 28.827557379958982 ], [ -81.980709098986736, 28.827563563241963 ], [ -81.980682160856261, 28.827569060736774 ], [ -81.980654832524351, 28.827573526830935 ], [ -81.980627504384628, 28.827576960678389 ], [ -81.980599980664167, 28.82757970693271 ], [ -81.980572458097029, 28.827581764720019 ], [ -81.98054474001529, 28.827582791134422 ], [ -81.979698375386278, 28.827537287567218 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wesleyan Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991799894646519, 28.828678554082952 ], [ -81.989779279037606, 28.827264636122852 ], [ -81.988334018780435, 28.826291611877398 ], [ -81.988246907865019, 28.826239297377953 ], [ -81.988147916750151, 28.82618349614717 ], [ -81.988052883917831, 28.826145127807422 ], [ -81.987949930481932, 28.826117220957972 ], [ -81.987819258393984, 28.826082340262868 ], [ -81.98770442482548, 28.826050944716535 ], [ -81.987585631872378, 28.82603001097684 ], [ -81.987458918518001, 28.826009075486173 ], [ -81.98724112899275, 28.825974185114251 ], [ -81.98498008601527, 28.825670570310894 ], [ -81.982829932960598, 28.825370419310264 ], [ -81.981674447300549, 28.825201824901868 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 153", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992864973206068, 28.827508037956932 ], [ -81.992323860022196, 28.828099622687567 ], [ -81.991799894646519, 28.828678554082952 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 155", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993597037857512, 28.828016924354987 ], [ -81.99315066969217, 28.828518120928333 ], [ -81.992694445225908, 28.829017452175336 ], [ -81.99255187303811, 28.829182036148936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wesleyan Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99255187303811, 28.829182036148936 ], [ -81.992026013944965, 28.828824925038827 ], [ -81.991799894646519, 28.828678554082952 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wesleyan Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993277307092143, 28.829703748297295 ], [ -81.99255187303811, 28.829182036148936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wesleyan Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9987103859537, 28.83354252778728 ], [ -81.997984896928983, 28.83303758655077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 171", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000804506655584, 28.831185249930982 ], [ -81.99996741736048, 28.83213100053678 ], [ -81.999932097890905, 28.832175231635194 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 152", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000804506655584, 28.831185249930982 ], [ -82.000799437357614, 28.8311367093544 ], [ -82.000781695817082, 28.831092074875283 ], [ -82.000748748023355, 28.831056366932671 ], [ -82.000126547144035, 28.830630101554977 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 169", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000126547144035, 28.830630101554977 ], [ -81.999660841005891, 28.831146191661066 ], [ -81.999197340010767, 28.831668878373321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 167", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999202754283431, 28.829985120428812 ], [ -81.998887294401101, 28.830333500072424 ], [ -81.998261521638682, 28.831023519626498 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 165", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998432301028174, 28.829496358508599 ], [ -81.997973563462637, 28.829949398328726 ], [ -81.997592321848813, 28.830393128025058 ], [ -81.997511747283582, 28.830498954626208 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 152", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000126547144035, 28.830630101554977 ], [ -81.999838889576353, 28.830413618818056 ], [ -81.999202754283431, 28.829985120428812 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 152", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999202754283431, 28.829985120428812 ], [ -81.99858436379597, 28.829587863458979 ], [ -81.998432301028174, 28.829496358508599 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 167", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000206382945663, 28.82899868837896 ], [ -82.000031510288579, 28.829161605716223 ], [ -81.999661487045046, 28.829482977309965 ], [ -81.999202754283431, 28.829985120428812 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013205000756741, 28.843948472533462 ], [ -82.012709590132118, 28.843605206152862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 54th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013205000756741, 28.843948472533462 ], [ -82.013073215697872, 28.844120328940107 ], [ -82.012905954225516, 28.844394850142567 ], [ -82.012817250588967, 28.844499749448691 ], [ -82.012723477011349, 28.844604650049295 ], [ -82.012667717413251, 28.844653753104062 ], [ -82.012594220827324, 28.844751955797744 ], [ -82.012551137081587, 28.844818912523507 ], [ -82.012523262087129, 28.84487247857961 ], [ -82.012482717252738, 28.844970677416388 ], [ -82.012429495827305, 28.845055488018872 ], [ -82.012368269111107, 28.845146398882484 ], [ -82.012167326463569, 28.84544889624285 ], [ -82.012100118974388, 28.845526495764272 ], [ -82.01204784368251, 28.845572528617204 ], [ -82.011979139212215, 28.845626456198982 ], [ -82.011885724046977, 28.845689611877543 ], [ -82.011474778049049, 28.845904298556821 ], [ -82.011432470799065, 28.845921090238154 ], [ -82.011279657849428, 28.845943455138965 ], [ -82.011250241571446, 28.84594740864129 ], [ -82.010837749500766, 28.845952781016063 ], [ -82.009946911935941, 28.845841708853165 ], [ -82.009873889808048, 28.845784303700508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037098015065979, 28.865533432181532 ], [ -82.03621410381983, 28.865521062970526 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Old Wire Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037098015065979, 28.865533432181532 ], [ -82.037096129784274, 28.866391956034793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037911620946559, 28.865516020086897 ], [ -82.037509376085382, 28.865529882615874 ], [ -82.037098015065979, 28.865533432181532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Timber Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981679980188005, 28.807296144221855 ], [ -81.981626836620151, 28.807576719716 ], [ -81.981416294833167, 28.808683631825613 ], [ -81.981366292312799, 28.808933728422524 ], [ -81.98137154318286, 28.808970780759104 ], [ -81.9813846866343, 28.80899625573381 ], [ -81.981400458700051, 28.809017101312957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Honeysuckle Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981400458700051, 28.809017101312957 ], [ -81.981471445713169, 28.809037952729827 ], [ -81.981537177659732, 28.809044907792511 ], [ -81.981616055640472, 28.809051867333974 ], [ -81.982099838528782, 28.80909593222982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cypress Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982534057360766, 28.806842742061296 ], [ -81.982370902560703, 28.807664819389402 ], [ -81.982099838528782, 28.80909593222982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Honeysuckle Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982099838528782, 28.80909593222982 ], [ -81.982715084976618, 28.809153907108982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pine Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983272855554702, 28.806953993006683 ], [ -81.983117600539629, 28.807734389035137 ], [ -81.983020237393063, 28.808220689179425 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pine Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983020237393063, 28.808220689179425 ], [ -81.982978115264686, 28.808549523076831 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cypress Square", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983020237393063, 28.808220689179425 ], [ -81.983759046743899, 28.808338885245941 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sugar Maple Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984742569373978, 28.807176483671601 ], [ -81.984563640237127, 28.808114350025054 ], [ -81.98433471128665, 28.809295368606854 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lyonia Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986214922733808, 28.807380430540469 ], [ -81.985959694247057, 28.808755973184152 ], [ -81.985836025832654, 28.809425217931725 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bobwhite Crossing", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992387149383347, 28.817966877533014 ], [ -81.992901491329761, 28.816992769333371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Big Oak Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992387149383347, 28.817966877533014 ], [ -81.99285575397775, 28.817982049801778 ], [ -81.99290089605968, 28.817982051327032 ], [ -81.992946037385934, 28.817978267646343 ], [ -81.993008376335339, 28.817968804817877 ], [ -81.993068565120808, 28.817953663610627 ], [ -81.993124673734386, 28.817928954068311 ], [ -81.99316530007313, 28.817906341574776 ], [ -81.993214742478983, 28.817872268378419 ], [ -81.993255585867345, 28.817836302581352 ], [ -81.993298580670881, 28.817787083749778 ], [ -81.993356624618215, 28.817700003825738 ], [ -81.993582809687084, 28.817276220670369 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crane Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990141049309074, 28.811804454514263 ], [ -81.990168085173281, 28.812053002558688 ], [ -81.990175809487596, 28.812141524336219 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woody Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991122966855869, 28.811702382039254 ], [ -81.991119066984226, 28.81208030567478 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quail Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994980298136198, 28.813567147456922 ], [ -81.994964969454799, 28.81334706517006 ], [ -81.994869639835912, 28.812445490604986 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quail Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994994634907101, 28.813831681129166 ], [ -81.9949887003024, 28.813763695404415 ], [ -81.994985240927051, 28.813676098953096 ], [ -81.994980298136198, 28.813567147456922 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quail Hollow", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995032228987014, 28.814084449540303 ], [ -81.99480855785761, 28.814232613835461 ], [ -81.994757093839453, 28.814255274227694 ], [ -81.99471156840778, 28.814269217616335 ], [ -81.994671981576118, 28.814274446714421 ], [ -81.994486447702855, 28.814254687498838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hester Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997650848194596, 28.815090360293159 ], [ -81.997672640527171, 28.814359951139068 ], [ -81.99768452654213, 28.813904972053919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robin Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99768452654213, 28.813904972053919 ], [ -81.99609909376862, 28.813857866730711 ], [ -81.994994634907101, 28.813831681129166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robin Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999778645170366, 28.81429198853856 ], [ -81.999729162168506, 28.814222258737434 ], [ -81.999685618266696, 28.814169962480836 ], [ -81.999628218829997, 28.814110693101981 ], [ -81.999580714103615, 28.814074084368414 ], [ -81.999523314603152, 28.814035734113961 ], [ -81.999448100768035, 28.813999125204941 ], [ -81.999380803383929, 28.813969491159568 ], [ -81.999301630700288, 28.813952059856945 ], [ -81.999228395096125, 28.813938112369257 ], [ -81.999151202712383, 28.813932882036191 ], [ -81.998949310894346, 28.813929393885417 ], [ -81.998569282836115, 28.813922417857917 ], [ -81.99768452654213, 28.813904972053919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Bobwhite Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99971240966164, 28.814926547271597 ], [ -81.999677695156265, 28.814980560368003 ], [ -81.999408501140152, 28.815390214461754 ], [ -81.999287758925433, 28.815569765414612 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Bobwhite Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997377663169772, 28.81633326952624 ], [ -81.99732619934052, 28.816333268464753 ], [ -81.997292551292944, 28.816333266857836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bobcat Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997292551292944, 28.816333266857836 ], [ -81.997290587235895, 28.815780669394456 ], [ -81.997290588166308, 28.815749289745757 ], [ -81.997292569423749, 28.815721398470636 ], [ -81.997298506365766, 28.815695250542301 ], [ -81.997306424810205, 28.815667360293737 ], [ -81.997324239401252, 28.81563423775297 ], [ -81.997351951922454, 28.815604602843965 ], [ -81.997389560169012, 28.815583685351818 ], [ -81.997419252441588, 28.815576711995359 ], [ -81.997454880821294, 28.815571484721069 ], [ -81.99777949263931, 28.815573234041423 ], [ -81.998009098318832, 28.815571493687962 ], [ -81.998098168422615, 28.815569752700409 ], [ -81.998149633051852, 28.815562780412439 ], [ -81.998185260476475, 28.815552321349436 ], [ -81.998228806853604, 28.815526174819947 ], [ -81.99826245743823, 28.815489566752117 ], [ -81.99829214728878, 28.81544598646888 ], [ -81.99840101614889, 28.815135695072875 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Bobwhite Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997292551292944, 28.816333266857836 ], [ -81.997120344023571, 28.816333264022639 ], [ -81.996948139147605, 28.816322801386541 ], [ -81.996748224819768, 28.816303620618079 ], [ -81.996629463318484, 28.816291414740284 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Bobwhite Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996629463318484, 28.816291414740284 ], [ -81.995806052693581, 28.816172852525092 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Bobwhite Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995806052693581, 28.816172852525092 ], [ -81.995735990979966, 28.816160679897553 ], [ -81.995115258428058, 28.816094383541273 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Bobwhite Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990535032913172, 28.815944219306154 ], [ -81.990390534035313, 28.815986046374633 ], [ -81.989008893992207, 28.816420001337882 ], [ -81.988907942042957, 28.816453113178948 ], [ -81.988842621706951, 28.816467053837009 ], [ -81.988793137872065, 28.816470535312192 ], [ -81.988747612817136, 28.816465301688371 ], [ -81.988708026414471, 28.816456582927508 ], [ -81.988628853777556, 28.816428684887949 ], [ -81.98856551853963, 28.816392071843048 ], [ -81.988518018058656, 28.816351974507494 ], [ -81.988484373533112, 28.816311877449525 ], [ -81.98846458534365, 28.816268294152508 ], [ -81.988448755405742, 28.816229941887944 ], [ -81.988440841287797, 28.816189847946205 ], [ -81.988436886233742, 28.816156725596482 ], [ -81.988438871011624, 28.816109660359952 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 70th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987702527861032, 28.816290888531224 ], [ -81.987660912472194, 28.816691824454043 ], [ -81.987666844188595, 28.816745864362279 ], [ -81.987686632950272, 28.816791190134154 ], [ -81.987710380641431, 28.816819083633849 ], [ -81.987744026295033, 28.816848721301717 ], [ -81.987779652024088, 28.816873130254653 ], [ -81.987827155591219, 28.816887078897228 ], [ -81.987876638822399, 28.816890569927487 ], [ -81.987963732634356, 28.816881863298004 ], [ -81.988017176776339, 28.816876637414889 ], [ -81.988064680990988, 28.816885358890843 ], [ -81.988122079697646, 28.816908025533209 ], [ -81.988165623249699, 28.816932434186345 ], [ -81.988205207963645, 28.81695684247547 ], [ -81.988238852791156, 28.816995196335981 ], [ -81.988264580138903, 28.817040523447233 ], [ -81.988282387129857, 28.817091076940855 ], [ -81.988288318585106, 28.817150346608514 ], [ -81.9882922720398, 28.81720613047764 ], [ -81.988278404325172, 28.817307234918918 ], [ -81.988256621656646, 28.817383935682855 ], [ -81.988226924248266, 28.817443202210015 ], [ -81.988193268951989, 28.817502468379928 ], [ -81.988155654322028, 28.817556505302342 ], [ -81.988084384236757, 28.817643659407985 ], [ -81.987866625712144, 28.817870258578481 ], [ -81.987819114778816, 28.817922550338608 ], [ -81.9877617028027, 28.817997503593833 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robin Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987702527861032, 28.816290888531224 ], [ -81.987686696329064, 28.816259508329079 ], [ -81.987680763119272, 28.8162263875798 ], [ -81.987680766953559, 28.816186293421737 ], [ -81.987714482977893, 28.815631953144869 ], [ -81.987720474258751, 28.815192662067364 ], [ -81.987716543272867, 28.814962556297655 ], [ -81.987696770665863, 28.814786489339237 ], [ -81.987690848120579, 28.814657490874399 ], [ -81.987698779616082, 28.814533723475829 ], [ -81.987716656436334, 28.814433033582084 ], [ -81.987738901804747, 28.814255788448389 ], [ -81.987764943653445, 28.814098223950605 ], [ -81.987759757024421, 28.813949252897778 ], [ -81.987761907469391, 28.813872856259938 ], [ -81.987764111415984, 28.813794550336794 ], [ -81.987755243746179, 28.813619794510554 ], [ -81.987738995093522, 28.813490875383739 ], [ -81.987696721078294, 28.813367682627426 ], [ -81.987654448148518, 28.813261679776957 ], [ -81.987638194122511, 28.81317000350548 ], [ -81.987647973484002, 28.812998114217731 ], [ -81.987690288587714, 28.812771795129294 ], [ -81.987693557716469, 28.812628553595133 ], [ -81.98768707707768, 28.812422284749257 ], [ -81.987657819582466, 28.81227617446611 ], [ -81.98763597795805, 28.812168551124891 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robin Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994980298136198, 28.813567147456922 ], [ -81.994758243441339, 28.813567682888014 ], [ -81.994677834138429, 28.813570404639464 ], [ -81.99461288725449, 28.813584019671012 ], [ -81.994448971694283, 28.813622147222112 ], [ -81.993044870970593, 28.813995237657906 ], [ -81.991864114686749, 28.814280335811219 ], [ -81.991594122756936, 28.814345759071614 ], [ -81.991126989983044, 28.814474725729401 ], [ -81.990129380774192, 28.814751827212966 ], [ -81.988811100802153, 28.815119541798285 ], [ -81.988757656047213, 28.81513871320557 ], [ -81.98869233339795, 28.815180545112081 ], [ -81.988642845624994, 28.815215405280799 ], [ -81.988601276235713, 28.815252009371822 ], [ -81.988555745817152, 28.815299072692589 ], [ -81.98852011353577, 28.815335676365052 ], [ -81.988480521208345, 28.815374023852041 ], [ -81.98811033744505, 28.815769703211483 ], [ -81.988064803713669, 28.815841171150762 ], [ -81.988048963935555, 28.815879520630236 ], [ -81.988031537055392, 28.816031566481758 ], [ -81.98802122835869, 28.8160904476219 ], [ -81.98799350936126, 28.816160172965574 ], [ -81.987969749784867, 28.816215954356313 ], [ -81.987949952314935, 28.816252560201704 ], [ -81.987920258772746, 28.816289166051025 ], [ -81.987876707656199, 28.816322281401803 ], [ -81.987831180415085, 28.816336222464589 ], [ -81.987779717004642, 28.81633273213853 ], [ -81.987736172739233, 28.816317040578561 ], [ -81.987702527861032, 28.816290888531224 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Bobwhite Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998129326589222, 28.816327182273348 ], [ -81.997953657418861, 28.816326307915755 ], [ -81.997377663169772, 28.81633326952624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Bobwhite Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999287758925433, 28.815569765414612 ], [ -81.998945817721847, 28.816111467585042 ], [ -81.998896333625765, 28.816168122304465 ], [ -81.998841900107692, 28.816211702481045 ], [ -81.998774736647675, 28.81625250970793 ], [ -81.998720661895277, 28.816279250923223 ], [ -81.998663757373706, 28.816303219286258 ], [ -81.998599427049825, 28.816320650302565 ], [ -81.998554890085686, 28.816325008849436 ], [ -81.998129326589222, 28.816327182273348 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magnolia Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000591157724003, 28.814997994874322 ], [ -82.000781667279369, 28.814692931017735 ], [ -82.000996917730859, 28.814359540604208 ], [ -82.001034028447293, 28.814281096360396 ], [ -82.001053822669789, 28.81419829217867 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bobcat Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998173811877635, 28.818756791997988 ], [ -81.997998140917929, 28.818656554417007 ], [ -81.997869480903262, 28.818578107288673 ], [ -81.997785357487658, 28.818514914371175 ], [ -81.997703708831381, 28.818438646972801 ], [ -81.997614640020672, 28.818338410421511 ], [ -81.997562681148025, 28.818270859802652 ], [ -81.997515672298334, 28.818192413865194 ], [ -81.997473611669179, 28.818094358103089 ], [ -81.997438975916225, 28.818002837907127 ], [ -81.997409288438561, 28.81788952881649 ], [ -81.99739692010489, 28.817813261705453 ], [ -81.997387026384374, 28.817691235788811 ], [ -81.99738702942949, 28.817549601066833 ], [ -81.997383580289608, 28.817032301147986 ], [ -81.997377663169772, 28.81633326952624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Golfview Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99779968728069, 28.819331612524632 ], [ -81.997696264175886, 28.819279749528697 ], [ -81.997597789736915, 28.81923224470329 ], [ -81.997534448606615, 28.819197380045413 ], [ -81.997471108676933, 28.819157719580314 ], [ -81.997405789598886, 28.819108472904308 ], [ -81.997357294967003, 28.819061839633534 ], [ -81.997270696503108, 28.818985572779646 ], [ -81.99718904901269, 28.818904947820403 ], [ -81.997124719640027, 28.818833038610624 ], [ -81.997070287740868, 28.818758950516013 ], [ -81.996998538101039, 28.818671788427444 ], [ -81.996926787036372, 28.818569372748659 ], [ -81.9968698827022, 28.818477851881767 ], [ -81.996820400700798, 28.818377614857205 ], [ -81.996790711185497, 28.818310065389326 ], [ -81.996746179526809, 28.818194575808285 ], [ -81.99669669923891, 28.818052938040516 ], [ -81.996664538859477, 28.81792219699517 ], [ -81.996632379342913, 28.817769664247812 ], [ -81.996607643456329, 28.81759969995386 ], [ -81.996592801446695, 28.817466779353019 ], [ -81.996592806825248, 28.81731860558482 ], [ -81.996605186499266, 28.817120316023871 ], [ -81.996620038598749, 28.816915487478028 ], [ -81.996627471022776, 28.816677974346646 ], [ -81.996629463318484, 28.816291414740284 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Big Oak Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997382011496967, 28.819994025516436 ], [ -81.997579953240361, 28.820060273390535 ], [ -81.997653191826203, 28.820075963219274 ], [ -81.997726430567297, 28.82008642322052 ], [ -81.997789772011103, 28.820091654124802 ], [ -81.99785509320354, 28.820086425457415 ], [ -81.997928332506405, 28.820074224740228 ], [ -81.998007509429925, 28.820053306861837 ], [ -81.998070854600002, 28.820028903072611 ], [ -81.9981322162688, 28.819999269436281 ], [ -81.998187641641238, 28.819962662635877 ], [ -81.998239108040565, 28.819924312494255 ], [ -81.998282655580795, 28.81987898917367 ], [ -81.998326205339538, 28.819823208067504 ], [ -81.998476645104205, 28.819596591268105 ], [ -81.999185292944517, 28.818493141614081 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lazy Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001223557322845, 28.815326590416586 ], [ -82.000591157724003, 28.814997994874322 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Big Oak Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999185292944517, 28.818493141614081 ], [ -81.999835534059585, 28.817477284209378 ], [ -82.000533265524268, 28.816389953863791 ], [ -82.001223557322845, 28.815326590416586 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Big Oak Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993582809687084, 28.817276220670369 ], [ -81.994817769908963, 28.817784421774334 ], [ -81.99488457228928, 28.817819288750904 ], [ -81.994966218971001, 28.817865051658284 ], [ -81.995020652646744, 28.817906455329471 ], [ -81.995089927133748, 28.817967470341859 ], [ -81.995139409256268, 28.818028484586833 ], [ -81.99518146849671, 28.818089498540843 ], [ -81.995216105651238, 28.818154872173096 ], [ -81.995250739944268, 28.81823767481692 ], [ -81.995277950764589, 28.818353164267648 ], [ -81.995406578889231, 28.819076603998795 ], [ -81.995431316894496, 28.819168123454254 ], [ -81.995451108420085, 28.819213884791179 ], [ -81.995483271462703, 28.819264002002051 ], [ -81.995527804816902, 28.819322836844023 ], [ -81.995572340047872, 28.81936423994572 ], [ -81.995634196748128, 28.819405643611457 ], [ -81.995748009140428, 28.819457943437932 ], [ -81.996195849658548, 28.819601773725143 ], [ -81.996233982833914, 28.819613986695238 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Bobwhite Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995115258428058, 28.816094383541273 ], [ -81.994986601044602, 28.816087406542373 ], [ -81.994881695314859, 28.816066484238711 ], [ -81.994784709790665, 28.816036844947327 ], [ -81.994695639271868, 28.816000233753268 ], [ -81.994630323598287, 28.815967109998539 ], [ -81.994539274658919, 28.81591481105216 ], [ -81.994475937865914, 28.815874714249762 ], [ -81.99440072547047, 28.815820669901829 ], [ -81.994084046154882, 28.815526051729019 ], [ -81.994000916287078, 28.815477238396323 ], [ -81.993909868248238, 28.81543888242502 ], [ -81.993812882663107, 28.815407500071469 ], [ -81.993725792332327, 28.815388320062457 ], [ -81.993632764297928, 28.815377856932418 ], [ -81.993541713859358, 28.815379594876635 ], [ -81.993411075987964, 28.81538830475041 ], [ -81.992601021794314, 28.815474551714242 ], [ -81.991700410507136, 28.815574734295669 ], [ -81.991386180969982, 28.815661875672415 ], [ -81.990535032913172, 28.815944219306154 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lazy Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001869939537244, 28.815650036081276 ], [ -82.001223557322845, 28.815326590416586 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045404565127043, 28.838212181677822 ], [ -82.045418969238241, 28.839557452814709 ], [ -82.045421430914331, 28.83992268489212 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045538035373866, 28.837779946944028 ], [ -82.045609517311362, 28.837883404220459 ], [ -82.045657929228383, 28.837930059013516 ], [ -82.045708644973388, 28.837974680123597 ], [ -82.045791630177703, 28.838033496352868 ], [ -82.045858475171855, 28.838069995767576 ], [ -82.045920704421334, 28.838096352964133 ], [ -82.046012894236355, 28.838124731168371 ], [ -82.046159825593463, 28.838179465304648 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045408910160774, 28.837599402114027 ], [ -82.045409072312637, 28.83797680898132 ], [ -82.045404565127043, 28.838212181677822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045062066374328, 28.837527991608752 ], [ -82.045131206467119, 28.837548259939933 ], [ -82.045197472471358, 28.83758121020195 ], [ -82.045245297888954, 28.837601484597528 ], [ -82.04527986725995, 28.837607560144949 ], [ -82.045325955255919, 28.837607545816645 ], [ -82.045362824627603, 28.837607533621153 ], [ -82.045408910160774, 28.837599402114027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045062066374328, 28.837527991608752 ], [ -82.045136986870858, 28.837593404052075 ], [ -82.04518308976381, 28.837625854763772 ], [ -82.045229197026117, 28.837668449190172 ], [ -82.04527761388853, 28.837727275335428 ], [ -82.045316815956625, 28.837790165791599 ], [ -82.045344491435827, 28.837842911805598 ], [ -82.045362954543606, 28.837907834784126 ], [ -82.045374501941481, 28.837968705082549 ], [ -82.04538374934971, 28.838035660394766 ], [ -82.045404565127043, 28.838212181677822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045406769306553, 28.836640159573182 ], [ -82.045367577350518, 28.83659756110719 ], [ -82.045337608870966, 28.836571192080083 ], [ -82.044873596202009, 28.836309342782613 ], [ -82.044761948825951, 28.836242798046555 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045443315854527, 28.835885330744265 ], [ -82.04541108304403, 28.835952301623397 ], [ -82.045381143487219, 28.835992891889525 ], [ -82.045348902052694, 28.83603754329144 ], [ -82.045309745852819, 28.836080165877931 ], [ -82.045265980436341, 28.836125327261801 ], [ -82.045222787180236, 28.836157045874039 ], [ -82.045165195008522, 28.836195110629355 ], [ -82.045104919793701, 28.836222987392983 ], [ -82.045024793330086, 28.83624588269716 ], [ -82.044967187874477, 28.836255413720625 ], [ -82.044902378909455, 28.836258604763344 ], [ -82.04484836660005, 28.836252281929216 ], [ -82.044761948825951, 28.836242798046555 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045503269901857, 28.835307278562443 ], [ -82.045443315854527, 28.835885330744265 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045827870813994, 28.836578511889215 ], [ -82.045759456632226, 28.83657219333265 ], [ -82.045701844555467, 28.836569041846637 ], [ -82.045644237615278, 28.836575403355521 ], [ -82.045602620145104, 28.836585308294463 ], [ -82.045524285511988, 28.836621857907996 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045524285511988, 28.836621857907996 ], [ -82.0455261907275, 28.835694569090457 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045827870813994, 28.836578511889215 ], [ -82.045766640983516, 28.836534146970052 ], [ -82.04571261304983, 28.8364897796212 ], [ -82.045665782213916, 28.836439067537906 ], [ -82.045622551998818, 28.836385184435493 ], [ -82.045597321628392, 28.836324954822235 ], [ -82.045586630049769, 28.836290481231643 ], [ -82.045572513951214, 28.836244434887828 ], [ -82.045564849478765, 28.836169615439811 ], [ -82.0455261907275, 28.835694569090457 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0455261907275, 28.835694569090457 ], [ -82.045503269901857, 28.835307278562443 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sycamore Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041624688895752, 28.841032776458473 ], [ -82.041320497528488, 28.841031246023192 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sycamore Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04224597811762, 28.841034209853639 ], [ -82.041689215227422, 28.841032756873631 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sycamore Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041689215227422, 28.841032756873631 ], [ -82.041624688895752, 28.841032776458473 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sycamore Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042846989361976, 28.841034023473426 ], [ -82.04224597811762, 28.841034209853639 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sycamore Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043145650739348, 28.84103230661027 ], [ -82.042846989361976, 28.841034023473426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clay Drain Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045421430914331, 28.83992268489212 ], [ -82.043847477226663, 28.839908993207469 ], [ -82.043171459325109, 28.839901700467465 ], [ -82.041740385253135, 28.839891996826893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074101824835708, 28.86005396063948 ], [ -82.074082547137863, 28.860031942308108 ], [ -82.07253437556038, 28.858266849692932 ], [ -82.071422664576076, 28.857002596621488 ], [ -82.069874576320885, 28.855229390447736 ], [ -82.06873077460547, 28.853924722113366 ], [ -82.068438574744889, 28.853609308231889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08967618637935, 28.872693681864995 ], [ -82.089302935378726, 28.872577546356474 ], [ -82.088603472218907, 28.872371106003431 ], [ -82.087851111655226, 28.872149177556988 ], [ -82.086848942127233, 28.871847230887123 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091775723099758, 28.873255046733682 ], [ -82.091645239029688, 28.873222547380074 ], [ -82.091474779374849, 28.873173523934966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090978104003185, 28.873036786427125 ], [ -82.09064600856324, 28.872946489719553 ], [ -82.090362003038123, 28.872870773861621 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 7th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090363134774407, 28.872007871073162 ], [ -82.090357747279342, 28.872576848543318 ], [ -82.090362003038123, 28.872870773861621 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090362003038123, 28.872870773861621 ], [ -82.090008274563274, 28.872776221186651 ], [ -82.08967618637935, 28.872693681864995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091474779374849, 28.873173523934966 ], [ -82.09112798695115, 28.873078066332059 ], [ -82.090978104003185, 28.873036786427125 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 8th Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090053553541921, 28.872942099949206 ], [ -82.089987977549342, 28.873094343547251 ], [ -82.089970404382697, 28.873159012272339 ], [ -82.089944069702298, 28.873288341170369 ], [ -82.089912535625302, 28.873431999335285 ], [ -82.089911781424448, 28.873464658615244 ], [ -82.089914549321691, 28.874415888473326 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bigham Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020949775216721, 28.788648984708605 ], [ -82.020964231935977, 28.787792362848027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 32nd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028994722207685, 28.803220463893879 ], [ -82.028779128963791, 28.803213725183284 ], [ -82.027065173326008, 28.803209096094289 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 507", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027065173326008, 28.803209096094289 ], [ -82.027056767316139, 28.803815077587739 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 507", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027056767316139, 28.803815077587739 ], [ -82.02705110063043, 28.804397302436151 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 33rd Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02880255265606, 28.804411418009071 ], [ -82.028356991748367, 28.804413317966116 ], [ -82.027361150501136, 28.804409901193228 ], [ -82.02719278150704, 28.804409934229561 ], [ -82.02705110063043, 28.804397302436151 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 511A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031114881473528, 28.80892377788329 ], [ -82.031112102975769, 28.810102349746284 ], [ -82.031091927720553, 28.811333959514862 ], [ -82.031092230463074, 28.812368435811358 ], [ -82.031088477261491, 28.813574721749966 ], [ -82.031084485320051, 28.813965365209256 ], [ -82.031084521833336, 28.814090151085754 ], [ -82.031078548710397, 28.814730372122 ], [ -82.031093094286007, 28.815316328980352 ], [ -82.031099378148483, 28.815737714435972 ], [ -82.031087174609908, 28.81613920989172 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 513", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035243431515568, 28.810663040088222 ], [ -82.035258001411677, 28.81069600679351 ], [ -82.035260093485093, 28.810736307056057 ], [ -82.035260107711153, 28.810772942663867 ], [ -82.035260137738632, 28.810866364276546 ], [ -82.035260158785874, 28.810932768007326 ], [ -82.035247934008524, 28.811692509300713 ], [ -82.035176881833351, 28.813467561215905 ], [ -82.035190757790645, 28.813748509983981 ], [ -82.035185997775585, 28.813967420650979 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 515", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037343842792978, 28.799752558582991 ], [ -82.037356107508131, 28.800589743693404 ], [ -82.037356138650722, 28.800675253069912 ], [ -82.037356138658993, 28.800675276530004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 510A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035283432965059, 28.803511477078729 ], [ -82.035269322138163, 28.804283432473955 ], [ -82.035269646731109, 28.805259975051101 ], [ -82.035262702067712, 28.805974981754336 ], [ -82.035267811005511, 28.806936756544793 ], [ -82.035267867093339, 28.807105489592054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 510", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035267867093339, 28.807105489592054 ], [ -82.034298028775012, 28.807103625160106 ], [ -82.03324916624436, 28.807097553583141 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 511", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031196575697777, 28.799725506375299 ], [ -82.031194403370449, 28.800641276848964 ], [ -82.031187215176629, 28.801094861641094 ], [ -82.031180145722331, 28.80195689044054 ], [ -82.031177952807298, 28.802799569763479 ], [ -82.031170781427932, 28.803311198306094 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 513", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033248404710989, 28.79973484686688 ], [ -82.033237274207195, 28.800423437197541 ], [ -82.033232266797981, 28.801601246815881 ], [ -82.033234923702537, 28.802457642860645 ], [ -82.033239869838027, 28.802992100697786 ], [ -82.033261510808032, 28.803444491951865 ], [ -82.033287901851054, 28.803804297652764 ], [ -82.033214163631428, 28.804820627526233 ], [ -82.033219098227931, 28.805321417239117 ], [ -82.033245610465144, 28.806070495210452 ], [ -82.033248219236171, 28.806769077394499 ], [ -82.033250657300329, 28.806928993399506 ], [ -82.03324916624436, 28.807097553583141 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 513", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03324916624436, 28.807097553583141 ], [ -82.033257968679834, 28.807389802786513 ], [ -82.033263358071679, 28.8083372577494 ], [ -82.033270685257207, 28.808906832482041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 513", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033270685257207, 28.808906832482041 ], [ -82.03326060435981, 28.80992004864903 ], [ -82.0332517532606, 28.810428220394165 ], [ -82.033251766442191, 28.81047030325464 ], [ -82.033252992167419, 28.81051424097366 ], [ -82.033255597530314, 28.810544006670504 ], [ -82.033266011299816, 28.810582929842553 ], [ -82.033289415928238, 28.810603532078161 ], [ -82.03332841863056, 28.810621841386979 ], [ -82.033429812883469, 28.810628684382106 ], [ -82.035164386600243, 28.810626422832438 ], [ -82.035208064997704, 28.810637402742298 ], [ -82.035243431515568, 28.810663040088222 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 507", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027023072359682, 28.8088977438541 ], [ -82.026997985932269, 28.813445228156478 ], [ -82.026997898636523, 28.813448430472697 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 44th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03027323686895, 28.814793467753024 ], [ -82.030350671870167, 28.816140116855053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 502", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033127595676163, 28.819853746722231 ], [ -82.032712823783726, 28.819870679055718 ], [ -82.03235729670412, 28.819864029739819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 42nd Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035323325917716, 28.81952879311681 ], [ -82.035323583018851, 28.818058351696401 ], [ -82.035057769113223, 28.818024228292931 ], [ -82.034320090077259, 28.818024412837691 ], [ -82.033579422726632, 28.818006183352779 ], [ -82.03327479307157, 28.818000997523772 ], [ -82.033190382372197, 28.818919484107738 ], [ -82.03316389216576, 28.819784722174486 ], [ -82.033154347046008, 28.819823440755442 ], [ -82.033127595676163, 28.819853746722231 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 502", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026941988581541, 28.819837729129318 ], [ -82.026161287424515, 28.819830514602398 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 502", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030126305958859, 28.81986074670322 ], [ -82.02895137792126, 28.819856261961167 ], [ -82.028368390221729, 28.819847965756264 ], [ -82.026941988581541, 28.819837729129318 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 502", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03235729670412, 28.819864029739819 ], [ -82.031252250103591, 28.819847344913235 ], [ -82.030648960434334, 28.819860631046986 ], [ -82.030126305958859, 28.81986074670322 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 46th Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03297362397592, 28.823366155291055 ], [ -82.032122421754707, 28.823390028842226 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 43rd Plz", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032053468780774, 28.822535228947437 ], [ -82.032071403334498, 28.822582568939033 ], [ -82.032095372561628, 28.822832432579027 ], [ -82.032103377488909, 28.82299746392766 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 46th Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032122421754707, 28.823390028842226 ], [ -82.031247313913596, 28.823371817840762 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 507", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026955484957185, 28.817959468075621 ], [ -82.02695545457955, 28.817960885610052 ], [ -82.026954070381194, 28.818025517419763 ], [ -82.026964439822464, 28.818870337088377 ], [ -82.026949634681841, 28.819375338251156 ], [ -82.026941988581541, 28.819837729129318 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Williamsburg Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018707251647669, 28.837723751908396 ], [ -82.019288173767492, 28.838334389864908 ], [ -82.01957769669832, 28.838637226215194 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hancock Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019602820819713, 28.837262695814921 ], [ -82.020228002172956, 28.838321017671909 ], [ -82.01957769669832, 28.838637226215194 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Columbus Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018707251647669, 28.837723751908396 ], [ -82.019175241302932, 28.837479980034821 ], [ -82.019457161629632, 28.83734133054346 ], [ -82.019602820819713, 28.837262695814921 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Williamsburg Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018571384144536, 28.837362138757172 ], [ -82.01857374572721, 28.8374304097172 ], [ -82.018578455620343, 28.837490406208403 ], [ -82.018587862545587, 28.837542125212785 ], [ -82.018609017846231, 28.83759177366829 ], [ -82.018632519728328, 28.837629009670625 ], [ -82.018660722563013, 28.837674520102883 ], [ -82.018707251647669, 28.837723751908396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Springfield Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018571384144536, 28.837362138757172 ], [ -82.017763137818065, 28.837360174292311 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Williamsburg Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018585337921778, 28.836534606525206 ], [ -82.018573693384269, 28.837134567538143 ], [ -82.018571384144536, 28.837362138757172 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Columbus Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019602820819713, 28.837262695814921 ], [ -82.019668598078113, 28.83720682745809 ], [ -82.019710881608674, 28.837165445311616 ], [ -82.019739069893546, 28.837130272111047 ], [ -82.019767255604521, 28.837086821138023 ], [ -82.019790740430196, 28.837024752615292 ], [ -82.019804825154921, 28.836956480250823 ], [ -82.019816563199171, 28.836904758336633 ], [ -82.019818901167383, 28.836846830780139 ], [ -82.01981653993677, 28.836784765907058 ], [ -82.019802432772124, 28.836720633704481 ], [ -82.019776574955131, 28.836656504964569 ], [ -82.019748372552826, 28.83660892576836 ], [ -82.019710769882224, 28.83655927889858 ], [ -82.019666118084999, 28.836509633910214 ], [ -82.019623820376694, 28.836472400716666 ], [ -82.019558026043427, 28.836426895731432 ], [ -82.019487532543423, 28.836393804409731 ], [ -82.019407643768758, 28.836368989413319 ], [ -82.01932306054016, 28.836354519068429 ], [ -82.01924787461752, 28.836348323343529 ], [ -82.019165639726239, 28.836354540680674 ], [ -82.019076361984702, 28.836373173773133 ], [ -82.019010580078174, 28.836395938898161 ], [ -82.018766664293594, 28.836512499324115 ], [ -82.018695765183708, 28.836526316797805 ], [ -82.018585337921778, 28.836534606525206 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Williamsburg Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018580545755611, 28.835988437789823 ], [ -82.018580566217793, 28.836106361245911 ], [ -82.018580587039139, 28.836226353690734 ], [ -82.018585337921778, 28.836534606525206 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cambridge Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018585058923108, 28.834927127775117 ], [ -82.017809724927631, 28.834925159192789 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Williamsburg Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018585058923108, 28.834927127775117 ], [ -82.018580545755611, 28.835988437789823 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Springfield Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017763137818065, 28.837360174292311 ], [ -82.017445948548584, 28.837360213989495 ], [ -82.017119360649119, 28.837362323976567 ], [ -82.017039475310014, 28.837360263770645 ], [ -82.016997181427143, 28.837349925731857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Liberty Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017783970019366, 28.835458918870973 ], [ -82.016724846217983, 28.835455364517582 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cambridge Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017809724927631, 28.834925159192789 ], [ -82.016722739204653, 28.834927995773395 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018192603628052, 28.834393422699048 ], [ -82.016722741485708, 28.834390079663454 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stratford Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018603575758007, 28.833317578063426 ], [ -82.017485232882578, 28.833323928568724 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lexington Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01859192048434, 28.833847199967437 ], [ -82.017024822229416, 28.83384532847062 ], [ -82.016977830729942, 28.833843266049417 ], [ -82.016940237594682, 28.83383292651617 ], [ -82.016904992498084, 28.833812242634927 ], [ -82.016876794020291, 28.833789488909474 ], [ -82.01686034460073, 28.833758457806962 ], [ -82.016850940767611, 28.833725358673405 ], [ -82.01684858731312, 28.833688119811111 ], [ -82.016846224890983, 28.833619848780852 ], [ -82.016841430896733, 28.833003339420078 ], [ -82.01684142505394, 28.832966100273257 ], [ -82.016848468457383, 28.832930928373852 ], [ -82.0168625584013, 28.832893688444173 ], [ -82.01688861809194, 28.832864400923683 ], [ -82.016923634450734, 28.83283368487227 ], [ -82.016961221994279, 28.83281092234629 ], [ -82.017005860032, 28.832804711797483 ], [ -82.017151525638909, 28.832800555260203 ], [ -82.018605833031742, 28.832785891077553 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heritage Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018610459017282, 28.832370054658675 ], [ -82.018605833031742, 28.832785891077553 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heritage Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017763137818065, 28.837360174292311 ], [ -82.017767648017141, 28.837411419360546 ], [ -82.017764713172369, 28.837498134164345 ], [ -82.017754454992627, 28.837581904761084 ], [ -82.017715132893855, 28.837715252681143 ], [ -82.017658715797936, 28.837829795043714 ], [ -82.017576654195565, 28.837944336978637 ], [ -82.017410821912321, 28.838171712837919 ], [ -82.017255366977608, 28.838382306107441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 144", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01592924439106, 28.858185262465298 ], [ -82.013281187139853, 28.858153522188083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meadow Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024321154624417, 28.860438683076783 ], [ -82.024301520149123, 28.860415646184535 ], [ -82.02428188568247, 28.860392609289285 ], [ -82.024251348468596, 28.860373414504043 ], [ -82.024218627492104, 28.860356140196206 ], [ -82.024185910758206, 28.860348466394942 ], [ -82.02344000212436, 28.860352434600021 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wildwood Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022549841282782, 28.860860423945105 ], [ -82.022549803197833, 28.860675622157764 ], [ -82.022549775262689, 28.860543622296021 ], [ -82.022552490004074, 28.860488421599012 ], [ -82.022560661143558, 28.860450020015776 ], [ -82.022582463366703, 28.860406816862305 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meadow Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02344000212436, 28.860352434600021 ], [ -82.022699681055371, 28.860353997637553 ], [ -82.022658787313389, 28.860361202893234 ], [ -82.022612445831669, 28.860382810698631 ], [ -82.022582463366703, 28.860406816862305 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arnold Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022549841282782, 28.860860423945105 ], [ -82.022229639344673, 28.860861433762445 ], [ -82.022196922598042, 28.860853758576877 ], [ -82.022164204086607, 28.860832644467283 ], [ -82.02213148313956, 28.860809609344727 ], [ -82.022103121311844, 28.860771214501842 ], [ -82.022087845173658, 28.860727055461481 ], [ -82.022085650733757, 28.860657936611943 ], [ -82.022085601766122, 28.86042159972072 ], [ -82.022085589934207, 28.860364493798301 ], [ -82.022067071805097, 28.860315001747949 ], [ -82.022030904358104, 28.860263605922562 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wildwood Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022550043947561, 28.861818024675824 ], [ -82.022549841282782, 28.860860423945105 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Broken Oak Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02433851025728, 28.861822522870316 ], [ -82.022550043947561, 28.861818024675824 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodlane Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02433851025728, 28.861822522870316 ], [ -82.024341916643834, 28.860627799655042 ], [ -82.024340814141695, 28.860571158614984 ], [ -82.024340804040463, 28.860526998954604 ], [ -82.024336432979567, 28.860488600368342 ], [ -82.024329885028578, 28.860459800874178 ], [ -82.024321154624417, 28.860438683076783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Broken Oak Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028872384090107, 28.861850450562603 ], [ -82.02433851025728, 28.861822522870316 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Street Clair Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028883485233294, 28.862568049504127 ], [ -82.028872384090107, 28.861850450562603 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044761948825951, 28.836242798046555 ], [ -82.044689920926459, 28.836207948278997 ], [ -82.044246946440836, 28.835963968257232 ], [ -82.043800377062041, 28.835729500938051 ], [ -82.04362031201434, 28.83564078483494 ], [ -82.043461855030614, 28.835567915181077 ], [ -82.04333581303429, 28.835514059347481 ], [ -82.043184567005454, 28.835460208623047 ], [ -82.042759638444267, 28.835304990575793 ], [ -82.042230259982588, 28.835067373089991 ], [ -82.041751024253543, 28.834826548619251 ], [ -82.041102873111157, 28.834469426889843 ], [ -82.04073161674502, 28.834292262983947 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040873288521993, 28.834596912009793 ], [ -82.041441706020535, 28.834985182202477 ], [ -82.042190815317596, 28.835473198739678 ], [ -82.042370899190274, 28.835612642648517 ], [ -82.042680655495857, 28.835875692788306 ], [ -82.042979611913651, 28.83614191539063 ], [ -82.04320292921193, 28.836338411926416 ], [ -82.043494674687111, 28.836576101982399 ], [ -82.043844033350481, 28.836813772090736 ], [ -82.044989314879828, 28.837485531290373 ], [ -82.045062066374328, 28.837527991608752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clay Drain Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041740385253135, 28.839891996826893 ], [ -82.040228650280781, 28.839870130441977 ], [ -82.038783751149836, 28.839864457156462 ], [ -82.037212671019105, 28.839881299801654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 494A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105067006838496, 28.754332484518567 ], [ -82.105071955541064, 28.753466664757909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 494", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104071518107077, 28.754338568231955 ], [ -82.105067006838496, 28.754332484518567 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 494", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105067006838496, 28.754332484518567 ], [ -82.106060030312079, 28.75433403530441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 491 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106073662640156, 28.755518284141061 ], [ -82.106074255586904, 28.754467235002448 ], [ -82.106060030312079, 28.75433403530441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 491 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106060030312079, 28.75433403530441 ], [ -82.106062283767088, 28.753750107611268 ], [ -82.106062058913352, 28.753525383165588 ], [ -82.106051264156392, 28.753472892987709 ], [ -82.106025159001575, 28.753446212849372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10779163120371, 28.756162555963769 ], [ -82.108028741800211, 28.756254902513383 ], [ -82.108145804962234, 28.756307684475782 ], [ -82.108259861612382, 28.756355182055039 ], [ -82.108524013796355, 28.756484520148142 ], [ -82.108731142967869, 28.75659539493029 ], [ -82.108986316585643, 28.756745887757042 ], [ -82.109211480080504, 28.756885830815953 ], [ -82.109414596651476, 28.75702218644938 ], [ -82.109686103676992, 28.757212301752567 ], [ -82.109991883707181, 28.757427923471873 ], [ -82.110284483378109, 28.757636589280452 ], [ -82.110571833190221, 28.757856867900774 ], [ -82.110861812732708, 28.758077141954086 ], [ -82.11114128048861, 28.758315992704947 ], [ -82.111426033998768, 28.758571086539167 ], [ -82.111623784947284, 28.758751976070741 ], [ -82.111792543868503, 28.758916638399331 ], [ -82.111990306373727, 28.75910913385631 ], [ -82.112217082229108, 28.75933641915546 ], [ -82.112430683217937, 28.759556752672665 ], [ -82.112657497752849, 28.759816534971922 ], [ -82.112739262192292, 28.759916276937439 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 487", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112739262192292, 28.759916276937439 ], [ -82.112690191784182, 28.760048632176499 ], [ -82.112677344184576, 28.761134934820895 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112739262192292, 28.759916276937439 ], [ -82.112873785480772, 28.760085608621864 ], [ -82.113483088001871, 28.760839477602129 ], [ -82.114023819967528, 28.761512163913803 ], [ -82.114788789997888, 28.762481762592721 ], [ -82.1151026835946, 28.762868201844192 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 479", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127170319041426, 28.770804147907715 ], [ -82.129615654234343, 28.770809646393278 ], [ -82.131151946816345, 28.770800367623973 ], [ -82.133393486158838, 28.770790380489569 ], [ -82.134492077542717, 28.770765878781877 ], [ -82.135459564850905, 28.770755552351282 ], [ -82.136124032652319, 28.77073771319283 ], [ -82.137178416015573, 28.770735411855856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 481A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127225112476197, 28.768856813592418 ], [ -82.128013626119113, 28.76885412031735 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 14th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127225112476197, 28.768856813592418 ], [ -82.127180375916438, 28.770328344961921 ], [ -82.127195977184968, 28.770408345737206 ], [ -82.127211616169959, 28.770519570132667 ], [ -82.127212648626809, 28.770640176004754 ], [ -82.127170319041426, 28.770804147907715 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 481 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126272693185939, 28.768855748387857 ], [ -82.126274597536977, 28.770075872381714 ], [ -82.12626837784218, 28.770800304233539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 481A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126272693185939, 28.768855748387857 ], [ -82.127225112476197, 28.768856813592418 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 481A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125244973828075, 28.768862552631436 ], [ -82.126272693185939, 28.768855748387857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 481", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125244973828075, 28.768862552631436 ], [ -82.12524330193898, 28.770065897843519 ], [ -82.125238860823799, 28.770801256860167 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 481", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12628217402569, 28.767526713332042 ], [ -82.12558226425044, 28.767525408591531 ], [ -82.125358569572114, 28.767533422611674 ], [ -82.125318714768611, 28.767545168656873 ], [ -82.125294371195992, 28.767562754619849 ], [ -82.125272248322773, 28.767584241944114 ], [ -82.125256776509488, 28.76761157915951 ], [ -82.125243537261937, 28.767654527057001 ], [ -82.125241392810253, 28.767713075674628 ], [ -82.125241506441569, 28.767808701903828 ], [ -82.125244973828075, 28.768862552631436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 481 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12628217402569, 28.767526713332042 ], [ -82.126280180832481, 28.76771016373322 ], [ -82.126272693185939, 28.768855748387857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 481B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12628217402569, 28.767526713332042 ], [ -82.126357474364298, 28.767520788299326 ], [ -82.127128277849167, 28.767535684728681 ], [ -82.127179227825863, 28.767541489514823 ], [ -82.127208028404056, 28.767547317702096 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 481B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127208028404056, 28.767547317702096 ], [ -82.127219141313091, 28.767578533688898 ], [ -82.127224685628292, 28.767617592381431 ], [ -82.127219358043149, 28.767758078619675 ], [ -82.127225112476197, 28.768856813592418 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 8th Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127208028404056, 28.767547317702096 ], [ -82.127471625755803, 28.767566587106863 ], [ -82.128029787986804, 28.767571918049793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 14th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128029787986804, 28.767571918049793 ], [ -82.128013626119113, 28.76885412031735 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 8th Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128029787986804, 28.767571918049793 ], [ -82.128187032947892, 28.767562012341497 ], [ -82.128485497724853, 28.76755771997346 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 7th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126285721227802, 28.766789013277133 ], [ -82.12635658528086, 28.766779189855715 ], [ -82.126398660701312, 28.766773296557531 ], [ -82.126456245985466, 28.766771290436896 ], [ -82.126502756136588, 28.766769297297216 ], [ -82.126566983128882, 28.766765333248181 ], [ -82.127346649299824, 28.766786073520009 ], [ -82.12818825577493, 28.766746250783587 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 34th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174666692395718, 28.808119610790001 ], [ -82.174620768777899, 28.808020748232305 ], [ -82.17459556156011, 28.807870564644709 ], [ -82.174586986430384, 28.807716696270361 ], [ -82.174586736960009, 28.80756648053913 ], [ -82.17458652399911, 28.807438247661199 ], [ -82.17459850485406, 28.807137801017625 ], [ -82.174606642837404, 28.807027876015617 ], [ -82.174623704009846, 28.806917510023016 ], [ -82.174568716814889, 28.806734820339834 ], [ -82.174576933895594, 28.806672526214779 ], [ -82.174601830457064, 28.806635855984759 ], [ -82.174668657061304, 28.80662673061439 ], [ -82.175632523236914, 28.806620329897413 ], [ -82.175725591647321, 28.806606800141243 ], [ -82.17581669205876, 28.806584681105459 ], [ -82.175904461491172, 28.806554314731784 ], [ -82.175945611071612, 28.806537073300962 ], [ -82.176096873286909, 28.806430304573613 ], [ -82.176138387176749, 28.806397591655113 ], [ -82.176185960263666, 28.806371402651859 ], [ -82.176237843068563, 28.806353114044807 ], [ -82.176292664459453, 28.80634307319513 ], [ -82.176325642295893, 28.806341311423331 ], [ -82.176656959678425, 28.806306846088294 ], [ -82.176790836107827, 28.806306671614426 ], [ -82.176832607982448, 28.806311773832665 ], [ -82.176871857685029, 28.806324787146181 ], [ -82.176906629570595, 28.806345712303809 ], [ -82.176934971826171, 28.806373176739854 ], [ -82.176955323972663, 28.806405810085774 ], [ -82.176961007136597, 28.806419553827528 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 315", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174666692395718, 28.808119610790001 ], [ -82.174746110686428, 28.808350328477147 ], [ -82.174740060415203, 28.808490955372989 ], [ -82.174699117554269, 28.808750906763024 ], [ -82.17467211908523, 28.808945864160656 ], [ -82.174698494691967, 28.809433310392759 ], [ -82.174695322658877, 28.809872664719158 ], [ -82.174693259645395, 28.810041118993372 ], [ -82.174672377510248, 28.810158718245813 ], [ -82.174641734345499, 28.810274611171721 ], [ -82.174601522605613, 28.810388110861595 ], [ -82.174592192478315, 28.81041081137338 ], [ -82.174329102645487, 28.810875596815617 ], [ -82.173644187929114, 28.812006477325728 ], [ -82.173414485590101, 28.81236636654744 ], [ -82.173067275499662, 28.81283641097993 ], [ -82.172989256186881, 28.812984335378488 ], [ -82.172962454766349, 28.81306378334796 ], [ -82.172945218955931, 28.813145625561006 ], [ -82.172937938896396, 28.813228484604174 ], [ -82.172937591551459, 28.813254613128265 ], [ -82.172950431295149, 28.813584969845966 ], [ -82.172947419011422, 28.813652697179847 ], [ -82.17293774135193, 28.813701182313242 ], [ -82.172918494903413, 28.813747272296975 ], [ -82.172890266029555, 28.813789936848078 ], [ -82.172850906994469, 28.813830209132728 ], [ -82.172552839343652, 28.814041670692824 ], [ -82.172490439240946, 28.814074752842622 ], [ -82.172423528710738, 28.81409443243076 ], [ -82.172353107000504, 28.814116524704296 ], [ -82.172313888440769, 28.814122075011564 ], [ -82.172018250429275, 28.814150984045373 ], [ -82.170746158313122, 28.814160190307771 ], [ -82.169830088515425, 28.814161340807779 ], [ -82.169773556581461, 28.814171373965941 ], [ -82.169719305035201, 28.814193354389619 ], [ -82.169678630469718, 28.814217310094175 ], [ -82.169624445230468, 28.814279133531976 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153712647547763, 28.807458855012925 ], [ -82.153820819307512, 28.807651468960799 ], [ -82.153940013117108, 28.807863367964025 ], [ -82.154061741939884, 28.808068290941737 ], [ -82.154198465099469, 28.808279422683952 ], [ -82.154334446666411, 28.808466525769937 ], [ -82.154481755298121, 28.808665567780785 ], [ -82.154647159575362, 28.808864590802735 ], [ -82.154828397435253, 28.80906558423127 ], [ -82.155005081694554, 28.809244670976586 ], [ -82.155197617354546, 28.809435693119887 ], [ -82.155399176232024, 28.80961076719025 ], [ -82.155618825125899, 28.809781835614068 ], [ -82.155815815087848, 28.809925040282867 ], [ -82.156010540593329, 28.81006625587078 ], [ -82.156212034989551, 28.81019550961215 ], [ -82.156438416254318, 28.810328719843284 ], [ -82.156655733012869, 28.81045197958813 ], [ -82.156877559618877, 28.810563279998021 ], [ -82.157117480039716, 28.810674559986975 ], [ -82.157334752660788, 28.810765944677517 ], [ -82.157567858002622, 28.810857310626162 ], [ -82.157821313300474, 28.810942676515463 ], [ -82.158079281066861, 28.811022058883211 ], [ -82.15832366288177, 28.811091497849834 ], [ -82.159061300324652, 28.811273906994977 ], [ -82.160369133934424, 28.811593095682113 ], [ -82.161921357597848, 28.811977718574457 ], [ -82.163066289828805, 28.812255239950218 ], [ -82.165267936809457, 28.812796417646453 ], [ -82.167392683812793, 28.813325700482437 ], [ -82.167809073255611, 28.813452679928492 ], [ -82.168130446057191, 28.813567823977621 ], [ -82.168399776868867, 28.81367107814313 ], [ -82.168675920136721, 28.813790259827101 ], [ -82.168936236618961, 28.813913447951919 ], [ -82.169142235809531, 28.814016778610068 ], [ -82.16930070060549, 28.81409825670508 ], [ -82.169445591727367, 28.814177760185434 ], [ -82.169545207206269, 28.814235405817975 ], [ -82.169624445230468, 28.814279133531976 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.169624445230468, 28.814279133531976 ], [ -82.169730854750554, 28.814340754208125 ], [ -82.169948224351373, 28.814481921132213 ], [ -82.170172396919398, 28.814631047428136 ], [ -82.170421502263224, 28.814812014167821 ], [ -82.171501851706211, 28.815679207173133 ], [ -82.172011464327966, 28.816092917580409 ], [ -82.172799674198473, 28.816731376641339 ], [ -82.174342148919251, 28.817984421327857 ], [ -82.174942394791628, 28.818475695937082 ], [ -82.175159841788201, 28.818652710925548 ], [ -82.17537956172221, 28.818835700387961 ], [ -82.175590241183002, 28.819022683971333 ], [ -82.175778285723652, 28.81920172831396 ], [ -82.175979949756538, 28.819406651768958 ], [ -82.176174826825473, 28.819611583734403 ], [ -82.176362949035578, 28.819834453904694 ], [ -82.176532966034941, 28.820051370514303 ], [ -82.176684870983308, 28.820258349964732 ], [ -82.176820923943495, 28.820455390272546 ], [ -82.176902565095077, 28.820578793065046 ], [ -82.177027326375523, 28.820785808434508 ], [ -82.177126006241863, 28.820952019442405 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 309", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178796546731562, 28.818302831724207 ], [ -82.178755575726271, 28.819814386843802 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 309A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178796546731562, 28.818302831724207 ], [ -82.180883262207431, 28.818103219650272 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 309", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178853033077388, 28.81693618048762 ], [ -82.178796546731562, 28.818302831724207 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 309B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178853033077388, 28.81693618048762 ], [ -82.179429864435377, 28.816953346944402 ], [ -82.179918472115801, 28.816966644391659 ], [ -82.180262380183024, 28.816972502692508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 309", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178997948905206, 28.812470378637038 ], [ -82.178990970611267, 28.812927905741624 ], [ -82.178962735389817, 28.813613221847177 ], [ -82.178941267522418, 28.814290563390166 ], [ -82.178853033077388, 28.81693618048762 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 307", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178755575726271, 28.819814386843802 ], [ -82.180329655548363, 28.81936563715605 ], [ -82.180959668522291, 28.819187808484717 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 306B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179643336290184, 28.820806601249654 ], [ -82.179601701780015, 28.820677937215468 ], [ -82.179596773883844, 28.820645763941737 ], [ -82.17959672092222, 28.820613583305384 ], [ -82.179606946876461, 28.820587000481925 ], [ -82.179634377730068, 28.820554537993193 ], [ -82.179664796011593, 28.8205357252174 ], [ -82.181293094180091, 28.82006694697224 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 306A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179643336290184, 28.820806601249654 ], [ -82.17980484841145, 28.821235453801446 ], [ -82.179831722447858, 28.821280469324154 ], [ -82.179875626606616, 28.82131259176235 ], [ -82.179931700011252, 28.821338260084584 ], [ -82.179978000254877, 28.821346779524315 ], [ -82.180026725940778, 28.821348862292631 ], [ -82.180085166593983, 28.821335911465557 ], [ -82.18127582102467, 28.820997507205377 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 307", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177611264606824, 28.820569002872269 ], [ -82.177980485333592, 28.820123669494329 ], [ -82.178009580532262, 28.820094262155944 ], [ -82.178037804985536, 28.820064343445747 ], [ -82.178082977378494, 28.820024441916452 ], [ -82.178136655311377, 28.819996980101454 ], [ -82.178195996263, 28.819974490641709 ], [ -82.178755575726271, 28.819814386843802 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 300", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177611264606824, 28.820569002872269 ], [ -82.178428341113644, 28.821157896363179 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 306", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178428341113644, 28.821157896363179 ], [ -82.178956697926125, 28.821000589374979 ], [ -82.179643336290184, 28.820806601249654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 307", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177126006241863, 28.820952019442405 ], [ -82.177234253112147, 28.820910602894234 ], [ -82.177319435858166, 28.820863295510467 ], [ -82.177382682709279, 28.820809578837206 ], [ -82.177611264606824, 28.820569002872269 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 300", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178428341113644, 28.821157896363179 ], [ -82.178645430608981, 28.821322798956093 ], [ -82.178930800912099, 28.82152837448864 ], [ -82.179223490668022, 28.821740375867307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 300", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179223490668022, 28.821740375867307 ], [ -82.179643021766339, 28.822048747013515 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 45th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179643021766339, 28.822048747013515 ], [ -82.179864625374464, 28.82200125712879 ], [ -82.180113067970083, 28.821979473968234 ], [ -82.18029821495621, 28.821981373453553 ], [ -82.180364815216379, 28.822008081477581 ], [ -82.18049616058525, 28.821996661180762 ], [ -82.180708664175484, 28.821926467412233 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 300", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179643021766339, 28.822048747013515 ], [ -82.180033281626194, 28.822331414770119 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 303", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.180033281626194, 28.822331414770119 ], [ -82.179991283653067, 28.82341271665361 ], [ -82.179991931623647, 28.823790293253044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 300", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.180033281626194, 28.822331414770119 ], [ -82.180655207767799, 28.82275321761071 ], [ -82.181047970273212, 28.823072346584222 ], [ -82.181409084235199, 28.823402243356426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 46th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181409084235199, 28.823402243356426 ], [ -82.181484541659756, 28.823365672975626 ], [ -82.181596534696965, 28.823326907916265 ], [ -82.181691491061187, 28.823296744719347 ], [ -82.181786452749037, 28.823270873711213 ], [ -82.181900922295185, 28.82325355736744 ], [ -82.182103118226991, 28.823253284896374 ], [ -82.182232243558389, 28.823259549252686 ], [ -82.182319965665229, 28.823272303531212 ], [ -82.182346799315653, 28.823293718812266 ], [ -82.182361494499986, 28.823338751100209 ], [ -82.182366467044901, 28.823396668747055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 300", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181409084235199, 28.823402243356426 ], [ -82.181482326509098, 28.823494395997326 ], [ -82.181641000396453, 28.823682971664354 ], [ -82.181748441951754, 28.823828709480658 ], [ -82.181816821261521, 28.823925158911333 ], [ -82.181836354901193, 28.823950877250628 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.188208276628345, 28.857452506995589 ], [ -82.186838996298277, 28.85756049752856 ], [ -82.186223780722955, 28.857611498855572 ], [ -82.185651967597167, 28.857656651401889 ], [ -82.183618851124223, 28.857817599857199 ], [ -82.1834409393757, 28.857831539815461 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 44th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.173993143786902, 28.858753412954115 ], [ -82.17395025806178, 28.861291459086264 ], [ -82.177543937126231, 28.861078110094862 ], [ -82.177700116408332, 28.861042923886803 ], [ -82.177784070089515, 28.861046011389909 ], [ -82.177821673820858, 28.861062030144062 ], [ -82.177847181410883, 28.861134617313169 ], [ -82.177926733136786, 28.861271375369878 ], [ -82.178063676463395, 28.86157285116947 ], [ -82.178124374187334, 28.861815770491361 ], [ -82.178112299508584, 28.862178887938512 ], [ -82.178187640462198, 28.8635697554347 ], [ -82.178178756168009, 28.863944041764068 ], [ -82.178179649337508, 28.864469144431236 ], [ -82.178164006299895, 28.86460044052896 ], [ -82.178119822787508, 28.864740153841034 ], [ -82.177901505250759, 28.865103544209965 ], [ -82.177711482796738, 28.86531327613466 ], [ -82.177201305677599, 28.86571056599599 ], [ -82.176916027944969, 28.865884111167691 ], [ -82.176855761306257, 28.865895362205507 ], [ -82.176693891366725, 28.865867642075163 ], [ -82.176509839615875, 28.865856711789554 ], [ -82.176373411810303, 28.865862475790795 ], [ -82.175983279057519, 28.865949568282062 ], [ -82.175127146232199, 28.866294230109162 ], [ -82.174984293008961, 28.866371924180147 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.175946598793288, 28.837792741541119 ], [ -82.175021448841704, 28.839879324890617 ], [ -82.174487463483089, 28.841087912630005 ], [ -82.174143972925577, 28.841900222903213 ], [ -82.173935218736787, 28.842593548624258 ], [ -82.173883120479132, 28.842821336750834 ], [ -82.173834834227918, 28.843088719294499 ], [ -82.173801491365509, 28.843326382459107 ], [ -82.173786729068325, 28.843465012155246 ], [ -82.173764582991367, 28.843672958048185 ], [ -82.173749901517169, 28.843861092434214 ], [ -82.173742797360717, 28.844098721896291 ], [ -82.173760214291192, 28.846835123078513 ], [ -82.173786175753364, 28.849673005738168 ], [ -82.173807122986361, 28.852050388092351 ], [ -82.173836726050965, 28.854517615904292 ], [ -82.173847843475656, 28.856093802497337 ], [ -82.173859420519918, 28.857947043923229 ], [ -82.173867220757998, 28.858573132767198 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178844932188881, 28.858188568792723 ], [ -82.177701284839941, 28.858274949825443 ], [ -82.177315690309058, 28.858306319542432 ], [ -82.17711631621188, 28.858320083475803 ], [ -82.174690995289183, 28.858506487658293 ], [ -82.173867220757998, 28.858573132767198 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165222212098399, 28.860113276682132 ], [ -82.16500075559604, 28.860212697809921 ], [ -82.164044954076346, 28.860634856271346 ], [ -82.163495717577831, 28.860874293601857 ], [ -82.163164034232082, 28.861019215134114 ], [ -82.162839440142463, 28.86113271103736 ], [ -82.162593316620587, 28.861217834766272 ], [ -82.161897664603927, 28.861404031483691 ], [ -82.160292288361262, 28.861823796701824 ], [ -82.159211337881501, 28.862114114856819 ], [ -82.15798410268394, 28.862436014105995 ], [ -82.156397953544356, 28.862846284263643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.169662146720015, 28.858890447293451 ], [ -82.168961761379535, 28.858943920966684 ], [ -82.16873391185095, 28.85896542361883 ], [ -82.168501683654895, 28.858988860453941 ], [ -82.168265085032758, 28.859020018793114 ], [ -82.168030702331961, 28.859066605106872 ], [ -82.167798517977417, 28.859118975643305 ], [ -82.167577289114917, 28.859169403103159 ], [ -82.167358272927615, 28.859233328584644 ], [ -82.167117359319207, 28.859308857253705 ], [ -82.166889606795067, 28.859392083938285 ], [ -82.166578656860324, 28.85951785141572 ], [ -82.166206412242204, 28.859682271282754 ], [ -82.165952414726078, 28.859796392684551 ], [ -82.165429081447627, 28.860028511031718 ], [ -82.165222212098399, 28.860113276682132 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 38th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165338542097786, 28.860280109843508 ], [ -82.165355180588875, 28.860410295955511 ], [ -82.165360788257885, 28.860492272102277 ], [ -82.165358338391201, 28.860675526846151 ], [ -82.165345028008431, 28.862657566027575 ], [ -82.165350923631848, 28.862922792583724 ], [ -82.165353854501575, 28.86304334979906 ], [ -82.165378874307777, 28.863277209790276 ], [ -82.165412153445502, 28.863537579169723 ], [ -82.165411218004323, 28.864680498982402 ], [ -82.165417268820207, 28.86504458481668 ], [ -82.165422941450217, 28.865167549586047 ], [ -82.165431329089685, 28.865276044466427 ], [ -82.165453433040241, 28.86539657910696 ], [ -82.165475492416405, 28.865488177952887 ], [ -82.165513996316776, 28.865586990423367 ], [ -82.165544259888875, 28.865671346390922 ], [ -82.16569543856653, 28.866003909617199 ], [ -82.166102007713675, 28.866743654138087 ], [ -82.166143199103644, 28.86680870809078 ], [ -82.16618166312665, 28.866880998209666 ], [ -82.16620916477936, 28.866950888127121 ], [ -82.166225722406338, 28.867028027016026 ], [ -82.166239543971116, 28.867107581108126 ], [ -82.166245147868366, 28.867187143486216 ], [ -82.166232517678665, 28.8678598889292 ], [ -82.166227258738004, 28.867997335400219 ], [ -82.166211083094879, 28.868161316552431 ], [ -82.166167767316722, 28.868484474023742 ], [ -82.166118905690254, 28.868764234982265 ], [ -82.166072711961064, 28.869000591154084 ], [ -82.165955518680448, 28.86937688440177 ], [ -82.165405787521607, 28.870790531232661 ], [ -82.16535675346374, 28.870964198850938 ], [ -82.165343228595148, 28.871072720411661 ], [ -82.165337899910284, 28.871166762694134 ], [ -82.165346249956528, 28.871251146300366 ], [ -82.165365554243309, 28.871333102872093 ], [ -82.165398544194161, 28.871407811693732 ], [ -82.1654342683604, 28.871480104417373 ], [ -82.165483698269355, 28.871557203159607 ], [ -82.165821453184677, 28.87207520093942 ], [ -82.166194815282822, 28.872588332213059 ], [ -82.166868844254964, 28.873542344792078 ], [ -82.167091239397607, 28.873860349807703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 19th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135408145614988, 28.882104603264644 ], [ -82.135901340951648, 28.882295238509236 ], [ -82.135981237098562, 28.882326480679854 ], [ -82.136042884698227, 28.882342461619235 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134064740618754, 28.881590614782791 ], [ -82.134319105984176, 28.881704758822135 ], [ -82.134557918487189, 28.881796195251535 ], [ -82.134828296180913, 28.881892824137147 ], [ -82.13502066672531, 28.88196187934826 ], [ -82.135408145614988, 28.882104603264644 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131634742525151, 28.879819240937184 ], [ -82.132000670907445, 28.880186503856407 ], [ -82.132319515709952, 28.880477987995739 ], [ -82.132531180961152, 28.880647806577496 ], [ -82.132748055249621, 28.880810723445666 ], [ -82.132938797371608, 28.880948393131881 ], [ -82.133257548884316, 28.881161758594651 ], [ -82.133503116183704, 28.881303968014091 ], [ -82.133732999132576, 28.881427812649974 ], [ -82.134064740618754, 28.881590614782791 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131634742525151, 28.879819240937184 ], [ -82.131183549422147, 28.880152832682732 ], [ -82.130904468701459, 28.880346103510153 ], [ -82.130625373663136, 28.880527882997558 ], [ -82.130329581676463, 28.880697212717067 ], [ -82.130051479291936, 28.880859291073467 ], [ -82.129749757347014, 28.881019888254919 ], [ -82.129647126222906, 28.881080251064216 ], [ -82.129334092567859, 28.881264359413329 ], [ -82.129227161612064, 28.881344877946752 ], [ -82.129172420736637, 28.881409263157195 ], [ -82.129117681597705, 28.881475946498032 ], [ -82.129073390474076, 28.881547213462294 ], [ -82.129042158509577, 28.881623066083794 ], [ -82.129018760646844, 28.881701206682671 ], [ -82.129008416082968, 28.881781632998571 ], [ -82.129003285283261, 28.88185516168782 ], [ -82.129003378538528, 28.881930983554959 ], [ -82.129016525403955, 28.882006792085029 ], [ -82.129034899960985, 28.882089488291268 ], [ -82.129068936488295, 28.882169872317238 ], [ -82.129113407863784, 28.882245650979787 ], [ -82.129155256068884, 28.882309944965389 ], [ -82.12921538285093, 28.882378816905863 ], [ -82.12927549838183, 28.882438496211993 ], [ -82.129343435057706, 28.882488979013363 ], [ -82.129408749312589, 28.882530272570801 ], [ -82.129487114467338, 28.882569259073886 ], [ -82.129575912437446, 28.882603637436699 ], [ -82.129659479096034, 28.882626534489368 ], [ -82.129753478780074, 28.882642527934514 ], [ -82.129996275221941, 28.882656079514138 ], [ -82.133040160294613, 28.882655422465774 ], [ -82.134144421494497, 28.882656629405261 ], [ -82.134259286239242, 28.88265881281739 ], [ -82.134350660777784, 28.882663318496228 ], [ -82.134452489647387, 28.882677002739079 ], [ -82.134549105087956, 28.882697583839786 ], [ -82.134640512121223, 28.882727363567437 ], [ -82.134729314982692, 28.882761739424531 ], [ -82.134987903312776, 28.882874065248902 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 19th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13665670716307, 28.882458727219646 ], [ -82.136805173144097, 28.882488372085028 ], [ -82.136901819091293, 28.882514042234561 ], [ -82.137018378524502, 28.882564996216246 ], [ -82.137125656900082, 28.882637781578914 ], [ -82.137369088307864, 28.882796491793737 ], [ -82.137666887902157, 28.882997050823537 ], [ -82.137732029538924, 28.883029070294629 ], [ -82.137787616599724, 28.883055752439073 ], [ -82.137876197139505, 28.883090803165789 ], [ -82.137939592216384, 28.883113656062864 ], [ -82.138235713874536, 28.883215724275434 ], [ -82.138411124824941, 28.883273604336413 ], [ -82.138615200066951, 28.883345207650525 ], [ -82.139021599498463, 28.883477716596225 ], [ -82.139204116940135, 28.883531727388444 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 21st Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139204116940135, 28.883531727388444 ], [ -82.139180635648685, 28.883622704074796 ], [ -82.139148631886869, 28.883708299187429 ], [ -82.139103621275183, 28.883802311660219 ], [ -82.139039528407125, 28.883907037751971 ], [ -82.138950272818121, 28.884018666053333 ], [ -82.138859257067111, 28.884113488995489 ], [ -82.138763873168003, 28.884186925574909 ], [ -82.138692762268846, 28.884235890361108 ], [ -82.138594747874947, 28.884289467230204 ], [ -82.138442079363614, 28.884366018296372 ], [ -82.138117653286145, 28.884523723059434 ], [ -82.137409807915347, 28.884867456418629 ], [ -82.137302257537712, 28.884930208470475 ], [ -82.137198194355364, 28.885005944578705 ], [ -82.137127106117319, 28.885074008357002 ], [ -82.13706729528036, 28.885136711858468 ], [ -82.137019631229464, 28.885194821171492 ], [ -82.136965907633567, 28.885266684910675 ], [ -82.136920867429097, 28.885340834389844 ], [ -82.136897599125604, 28.885392611019345 ], [ -82.136543657771668, 28.886273841213768 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 19th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139204116940135, 28.883531727388444 ], [ -82.13967280905257, 28.883635185776608 ], [ -82.140138785122687, 28.883710119190361 ], [ -82.140508659325505, 28.883777044524059 ], [ -82.140676561628197, 28.883808768189262 ], [ -82.140831109609508, 28.883838825459168 ], [ -82.141052454663722, 28.883895676182824 ], [ -82.141207040083074, 28.883952596194977 ], [ -82.141296749188982, 28.883994472074683 ], [ -82.141380740236016, 28.884039713121201 ], [ -82.141439914690025, 28.884071549342142 ], [ -82.141485736765517, 28.884101720316622 ], [ -82.141670950788438, 28.884239190195093 ], [ -82.141806550926418, 28.884363281996048 ], [ -82.14192117082095, 28.884489073026362 ], [ -82.142007182885095, 28.884616574950961 ], [ -82.142070268990707, 28.884717239475936 ], [ -82.142135316946707, 28.884859869583135 ], [ -82.142187239466125, 28.884992024231707 ], [ -82.142225561118536, 28.885119994757002 ], [ -82.142242382496804, 28.885216509403197 ], [ -82.142247252455832, 28.885289954025914 ], [ -82.142242589314904, 28.885369703094398 ], [ -82.142204663198811, 28.885533428765836 ], [ -82.141998400820995, 28.886406637195165 ], [ -82.141943903435873, 28.886660616224102 ], [ -82.141934529532648, 28.886782341478106 ], [ -82.141932307824845, 28.886901959583525 ], [ -82.141937206852404, 28.886998487645752 ], [ -82.141954048166511, 28.887109692585092 ], [ -82.14198998871305, 28.887237666534684 ], [ -82.142045051325752, 28.887399196697636 ], [ -82.14244138446108, 28.888434015702877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 81st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.146901514025657, 28.875343927481939 ], [ -82.146959142829573, 28.875332892987011 ], [ -82.147016768804917, 28.875319118188884 ], [ -82.147158485383187, 28.875276453319252 ], [ -82.147588289390555, 28.875137482594308 ], [ -82.148113078818696, 28.874962752280574 ], [ -82.148463460998514, 28.87484992041475 ], [ -82.148782695031542, 28.874743978442485 ], [ -82.148908826630986, 28.874698585872739 ], [ -82.14914396820366, 28.874621533283158 ], [ -82.149405571634986, 28.874527994956996 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 81st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149405571634986, 28.874527994956996 ], [ -82.149481864414852, 28.874493628797342 ], [ -82.149547249003376, 28.874459272839708 ], [ -82.149657780823802, 28.874400184564362 ], [ -82.149838372322421, 28.874308106422038 ], [ -82.149976946523552, 28.874248986845803 ], [ -82.15014823174478, 28.874187087864083 ], [ -82.150311745729894, 28.874137538035633 ], [ -82.150483070947487, 28.874103064862364 ], [ -82.150701129688557, 28.874063054382951 ], [ -82.15108121743971, 28.874026976409152 ], [ -82.151574926367857, 28.873975436530817 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 28th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149405571634986, 28.874527994956996 ], [ -82.14945870904458, 28.874644499787347 ], [ -82.149549869638406, 28.874793872143716 ], [ -82.149610396796774, 28.87490350946943 ], [ -82.149657255480562, 28.874987452675839 ], [ -82.149700189451792, 28.875050826889282 ], [ -82.149784067825948, 28.875146726975895 ], [ -82.149871828506932, 28.875234051774303 ], [ -82.149961521316513, 28.875311089069957 ], [ -82.150022723541156, 28.875375447197488 ], [ -82.150055179391742, 28.875436117886927 ], [ -82.150090350931492, 28.875518358617562 ], [ -82.150139244912836, 28.875662291426821 ], [ -82.150197835293127, 28.875778788088102 ], [ -82.150262230708705, 28.875867852909654 ], [ -82.150365632579948, 28.875998013783672 ], [ -82.150603611067851, 28.876266869734163 ], [ -82.15074994011762, 28.876453548538962 ], [ -82.150890390500024, 28.876614521830685 ], [ -82.15094894626688, 28.876705306282584 ], [ -82.150980218102319, 28.876782408910064 ], [ -82.150997860715108, 28.876862953662641 ], [ -82.150996050172438, 28.876958948514666 ], [ -82.150990707569846, 28.877305211519033 ], [ -82.150975332451907, 28.877447503088657 ], [ -82.150943880586695, 28.877656382354946 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 304", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.180304033230414, 28.823952924774279 ], [ -82.181171296427053, 28.82395391102726 ], [ -82.181836354901193, 28.823950877250628 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 300", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181836354901193, 28.823950877250628 ], [ -82.181887622996911, 28.824015167111845 ], [ -82.181924284579409, 28.824083768825631 ], [ -82.181960948900752, 28.824154515302382 ], [ -82.181978098123992, 28.824210270023457 ], [ -82.181990409814318, 28.824285339650384 ], [ -82.181997880896091, 28.824379725090321 ], [ -82.182008114614078, 28.824662894150304 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 302", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179574425834673, 28.824672579090336 ], [ -82.179810727241318, 28.824670119161485 ], [ -82.180258980826551, 28.824671669299349 ], [ -82.180938309135783, 28.824679635373791 ], [ -82.181745012814062, 28.824663248195773 ], [ -82.182008114614078, 28.824662894150304 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177126006241863, 28.820952019442405 ], [ -82.177188401539837, 28.821063991535645 ], [ -82.177221498130379, 28.82113414849433 ], [ -82.177273574388011, 28.821241479045486 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 40th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16969242272279, 28.82329861885777 ], [ -82.169671753858196, 28.823353485926408 ], [ -82.16966410750257, 28.823438042376715 ], [ -82.169661334921699, 28.824934774742804 ], [ -82.169671933866752, 28.82667828116384 ], [ -82.169676895181041, 28.828143011928365 ], [ -82.169690026186686, 28.828240111406675 ], [ -82.169709760682863, 28.828408610074646 ], [ -82.169700191067179, 28.82850859557016 ], [ -82.169677744146043, 28.828668578766109 ], [ -82.169671434944817, 28.828779985150454 ], [ -82.169691049544141, 28.828874219806519 ], [ -82.169720424074072, 28.828985579700284 ], [ -82.169717526146869, 28.829199812006692 ], [ -82.169708095941701, 28.829385486438504 ], [ -82.169692351861599, 28.829679710546223 ], [ -82.169682713827129, 28.831744864590199 ], [ -82.169686673283849, 28.832187592153872 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177273574388011, 28.821241479045486 ], [ -82.177367294177515, 28.821424163414829 ], [ -82.177510565251097, 28.821755312135284 ], [ -82.177659111800295, 28.822136726584517 ], [ -82.177752610603122, 28.822407141138903 ], [ -82.177814349330845, 28.822617594925131 ], [ -82.177879434482662, 28.82289632709621 ], [ -82.177921751815717, 28.82308404476716 ], [ -82.177964174311384, 28.823334354253593 ], [ -82.178000116570331, 28.823573292362088 ], [ -82.178026410627751, 28.823837848726566 ], [ -82.178046267740328, 28.824116639265746 ], [ -82.178056426275631, 28.824392597567304 ], [ -82.178057810331012, 28.825209128056148 ], [ -82.178049286490193, 28.825897644408073 ], [ -82.178044468616164, 28.826867816395993 ], [ -82.178034569556871, 28.828651682750358 ], [ -82.178031874131335, 28.828967489059249 ], [ -82.178032057390681, 28.829075600165389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 300", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182008114614078, 28.824662894150304 ], [ -82.182005836251776, 28.8247530013202 ], [ -82.182027795938012, 28.825655882425586 ], [ -82.181962287064295, 28.825924804725712 ], [ -82.181775557893062, 28.826304587941699 ], [ -82.181432665791149, 28.826829913296017 ], [ -82.181353633596459, 28.826913149275189 ], [ -82.181131655025865, 28.827101162437774 ], [ -82.180943093669271, 28.827243542603057 ], [ -82.180882295237495, 28.8273053007728 ], [ -82.180818470992349, 28.827377791347683 ], [ -82.180778974208508, 28.827431477903449 ], [ -82.18071824940003, 28.82753614406467 ], [ -82.180666692491201, 28.827659568603117 ], [ -82.180263329831476, 28.828625503378454 ], [ -82.180169234595823, 28.828805299790879 ], [ -82.180117579844193, 28.828872409645239 ], [ -82.18006590561113, 28.828928792917356 ], [ -82.180005079138979, 28.828974462643359 ], [ -82.179938151831649, 28.829014777150345 ], [ -82.179868163357028, 28.829047048942442 ], [ -82.179746425386895, 28.829090117753697 ], [ -82.179451200092416, 28.829189730929485 ], [ -82.179052388576778, 28.829262663017921 ], [ -82.178782698150883, 28.829254144987285 ], [ -82.178473680877772, 28.829204430306373 ], [ -82.178307492090198, 28.829138150216952 ], [ -82.178137191264611, 28.829086806652221 ], [ -82.178083751431743, 28.829075532232881 ], [ -82.178032057390681, 28.829075600165389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178032057390681, 28.829075600165389 ], [ -82.178027905948241, 28.830438390248744 ], [ -82.178022471606866, 28.831044395364952 ], [ -82.178020133009895, 28.831570733782584 ], [ -82.178017387234959, 28.831858087684292 ], [ -82.178004865188257, 28.832094245086498 ], [ -82.177982628174149, 28.83231903358665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177982628174149, 28.83231903358665 ], [ -82.177957152619499, 28.832538137306877 ], [ -82.17792524312911, 28.832774317436822 ], [ -82.177873990623695, 28.833036130318934 ], [ -82.177822719619755, 28.833286563347166 ], [ -82.177755302545521, 28.833542707458296 ], [ -82.177674961564264, 28.833798868477796 ], [ -82.177594574837855, 28.834029423939871 ], [ -82.177504505675088, 28.834265681958723 ], [ -82.1768092596174, 28.835842753199746 ], [ -82.17605281146146, 28.83754508293028 ], [ -82.175946598793288, 28.837792741541119 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 56th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185015178639617, 28.843370038548741 ], [ -82.185436829558938, 28.843498640697636 ], [ -82.185905633976645, 28.843648786914414 ], [ -82.186429476361241, 28.843855754863256 ], [ -82.187470839027114, 28.844346511701584 ], [ -82.187745746146206, 28.844482693213475 ], [ -82.187933269186814, 28.844542178046396 ], [ -82.188101333693311, 28.844561861164696 ], [ -82.188401920422635, 28.844601274428911 ], [ -82.188792994029939, 28.84464624898586 ], [ -82.189022464495508, 28.844671535228834 ], [ -82.189484577385812, 28.844687959922059 ], [ -82.189791568789033, 28.844696063896993 ], [ -82.189911148964086, 28.844707278747762 ], [ -82.190137405076868, 28.844741100664002 ], [ -82.190376592446867, 28.844777749875607 ], [ -82.190699720676108, 28.844774450168856 ], [ -82.191161746147671, 28.844742504083214 ], [ -82.191526840730603, 28.844716380780614 ], [ -82.191875762357597, 28.844681747252121 ], [ -82.191988843832561, 28.844673052072473 ], [ -82.192069616168283, 28.844667247594362 ], [ -82.192160110274415, 28.844675654048576 ], [ -82.192247387775367, 28.844692598974667 ], [ -82.192347605870765, 28.844718063935865 ], [ -82.192835783600515, 28.844851085096767 ], [ -82.193430712870821, 28.845046546433132 ], [ -82.193822021427678, 28.845216688600249 ], [ -82.194320118350475, 28.845469184591472 ], [ -82.195432638510113, 28.845968312292449 ], [ -82.19570753892819, 28.846093096762463 ], [ -82.195921001233557, 28.846195211768219 ], [ -82.196102140539807, 28.846291679743047 ], [ -82.196270362630301, 28.846393857914638 ], [ -82.196432145834805, 28.846507425034829 ], [ -82.196809696934963, 28.846765992155071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 251 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.197020631518413, 28.843493923042832 ], [ -82.19697396374653, 28.844222062254737 ], [ -82.196923746528398, 28.845013059923414 ], [ -82.196841919438214, 28.846179649192113 ], [ -82.196809696934963, 28.846765992155071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 300A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177982628174149, 28.83231903358665 ], [ -82.178752134428933, 28.832330361287841 ], [ -82.180066612325135, 28.832324816432724 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 249", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.207187268832925, 28.847050157739915 ], [ -82.207162896321051, 28.848955474894304 ], [ -82.207152971649535, 28.849865813296272 ], [ -82.207131179580884, 28.850656114243023 ], [ -82.207134710727061, 28.851304606104783 ], [ -82.207113232239124, 28.85230165842756 ], [ -82.207096753073387, 28.853455583045356 ], [ -82.207093401745865, 28.853817428278415 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 247", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.207754937627939, 28.853908172596313 ], [ -82.207918767889083, 28.854341683288144 ], [ -82.208620895314752, 28.856176599861573 ], [ -82.208638734152601, 28.856212668824671 ], [ -82.208708159378332, 28.85636657335365 ], [ -82.208768217002913, 28.856523588085093 ], [ -82.20881910547422, 28.856683021564219 ], [ -82.208860233715839, 28.856844533644978 ], [ -82.208891604756332, 28.857008122527052 ], [ -82.208913409526488, 28.857172413721361 ], [ -82.209022666369762, 28.857628931777437 ], [ -82.209067352225475, 28.857990101644361 ], [ -82.209119389394303, 28.858364160276579 ], [ -82.209159954966069, 28.858496337555863 ], [ -82.209570368141328, 28.859228370664201 ], [ -82.209876485684333, 28.859543465073322 ], [ -82.209979245778598, 28.859630390043996 ], [ -82.210056700662989, 28.859704452264385 ], [ -82.210136618271193, 28.85980134688462 ], [ -82.210221229309326, 28.8598982323572 ], [ -82.210305852970592, 28.860003377394477 ], [ -82.210376429922576, 28.860118863808406 ], [ -82.210428244036237, 28.86023231491188 ], [ -82.21058880119925, 28.860783212335996 ], [ -82.210681712953942, 28.861213856427831 ], [ -82.210689609943998, 28.861257504534493 ], [ -82.210715987526555, 28.861363002562349 ], [ -82.210751733380178, 28.861466424236195 ], [ -82.210796843405163, 28.861566737325823 ], [ -82.210850929154844, 28.861663940622734 ], [ -82.210913795192909, 28.861756662025435 ], [ -82.211553858595224, 28.862435996144736 ], [ -82.212065875444836, 28.863008197790123 ], [ -82.212122261050624, 28.863061779859557 ], [ -82.212204499079292, 28.863144220145209 ], [ -82.212305539447314, 28.863247271834037 ], [ -82.212399495310223, 28.863325564688779 ], [ -82.212441770381133, 28.863358526007385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 247", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.212441770381133, 28.863358526007385 ], [ -82.212521575836675, 28.863397620818724 ], [ -82.21262957175027, 28.863461442051303 ], [ -82.212744607541055, 28.863527315678386 ], [ -82.213141380487656, 28.863764076537201 ], [ -82.214132172815283, 28.864367328012545 ], [ -82.214317676691195, 28.864490887171829 ], [ -82.214453901907234, 28.86459801036726 ], [ -82.214583098041075, 28.864707209031209 ], [ -82.214679426471122, 28.86479788324117 ], [ -82.21480455464382, 28.864914999489113 ], [ -82.214923315370996, 28.865028944235174 ], [ -82.215045944007983, 28.865142024638359 ], [ -82.215144666086346, 28.865255399211463 ], [ -82.215241097227306, 28.865395612584113 ], [ -82.215320552234019, 28.865537790144923 ], [ -82.215448201394068, 28.865758585658142 ], [ -82.215518846316471, 28.865902967002011 ], [ -82.215558862045683, 28.865977217341321 ], [ -82.215602997693239, 28.866056098005764 ], [ -82.215667037616342, 28.866125667688692 ], [ -82.215725776236866, 28.866181307107279 ], [ -82.216087609365516, 28.866523390379381 ], [ -82.216235691015669, 28.866692419238145 ], [ -82.216313340390514, 28.866820276897627 ], [ -82.216977088925034, 28.868008203867504 ], [ -82.217356014246334, 28.868672272408084 ], [ -82.217417192471331, 28.868771255283427 ], [ -82.217506564017413, 28.868897029799871 ], [ -82.217612355171525, 28.869024840481547 ], [ -82.217718106780836, 28.869132009295146 ], [ -82.217863786125633, 28.869270078721691 ], [ -82.218331378111898, 28.869715194498681 ], [ -82.218744986877823, 28.87013562699893 ], [ -82.218874236424512, 28.870265463155402 ], [ -82.218977659422976, 28.870380892535771 ], [ -82.219071701067477, 28.870494271676435 ], [ -82.219151683804157, 28.870613866899316 ], [ -82.219226988984644, 28.870739662116932 ], [ -82.219290566354346, 28.870863411855549 ], [ -82.219349473748537, 28.87099749050704 ], [ -82.219402004887229, 28.871134775410184 ], [ -82.219444278285323, 28.871272561470999 ], [ -82.219533651347703, 28.871599941884131 ], [ -82.219566670392652, 28.871688649874951 ], [ -82.219639619528891, 28.871808256201064 ], [ -82.219712533184889, 28.871911348713912 ], [ -82.219794818801233, 28.87201029704195 ], [ -82.21988882815576, 28.872107162699713 ], [ -82.219999290241375, 28.872222578898846 ], [ -82.220081576372763, 28.872321526141398 ], [ -82.220140425931334, 28.872426706659244 ], [ -82.220159387473643, 28.872521630739346 ], [ -82.220227806575281, 28.872717618066623 ], [ -82.220282095893793, 28.872884731435196 ], [ -82.220339017248421, 28.873188077287569 ], [ -82.220367619137178, 28.873406838395148 ], [ -82.220410461924146, 28.873706080035262 ], [ -82.220462311289566, 28.873898037491518 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 248", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.212441770381133, 28.863358526007385 ], [ -82.211536438482383, 28.864425083143576 ], [ -82.211038075070022, 28.865015051248964 ], [ -82.21008716520187, 28.866133538227839 ], [ -82.209665178160733, 28.866628349849194 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 248A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203830874663012, 28.866475981366907 ], [ -82.206643603984872, 28.866482008664359 ], [ -82.206861907694531, 28.866478242624908 ], [ -82.207004203783086, 28.866479741091066 ], [ -82.207107501605194, 28.866474435349541 ], [ -82.20723221710729, 28.86645708623108 ], [ -82.207339378095426, 28.866434616300488 ], [ -82.207446530900555, 28.866406998689243 ], [ -82.207538088962323, 28.866379405825061 ], [ -82.208379607848812, 28.866107009407163 ], [ -82.208445860013398, 28.866096612103213 ], [ -82.208568644706943, 28.866089559942942 ], [ -82.20870120464194, 28.866096218339823 ], [ -82.208806496008933, 28.866113214825123 ], [ -82.208913781447691, 28.866152512945671 ], [ -82.209015237702857, 28.866202115204537 ], [ -82.209105014307085, 28.866258599221844 ], [ -82.209665178160733, 28.866628349849194 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 248B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203829452838079, 28.864742993998178 ], [ -82.203826823387928, 28.86539501384156 ], [ -82.203830874663012, 28.866475981366907 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 248B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203830874663012, 28.866475981366907 ], [ -82.203823661846059, 28.867778307430491 ], [ -82.203820832886407, 28.868830115468437 ], [ -82.203828909648891, 28.868974232689826 ], [ -82.20383490666444, 28.869051435052171 ], [ -82.203846753649643, 28.869128630401107 ], [ -82.203884041298622, 28.869258976932251 ], [ -82.20391540639892, 28.869349868596878 ], [ -82.20394480058637, 28.869428752743733 ], [ -82.203985954380158, 28.869541935322417 ], [ -82.204025170677795, 28.869660267513243 ], [ -82.204044908992813, 28.869785493755881 ], [ -82.204057117857403, 28.869904705811763 ], [ -82.204065951853806, 28.870028453391384 ], [ -82.204065022846919, 28.870152557669915 ], [ -82.204065692168257, 28.870449490069291 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 248 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.204065692168257, 28.870449490069291 ], [ -82.204987719672957, 28.870456674747849 ], [ -82.206537407381362, 28.870457748415486 ], [ -82.208079296331817, 28.870458816268375 ], [ -82.209761534644528, 28.870459648861271 ], [ -82.210428187834836, 28.870458613159688 ], [ -82.211494446395605, 28.870458665953485 ], [ -82.211749807140023, 28.870459983407304 ], [ -82.211966170268127, 28.870456212101796 ], [ -82.212192242479006, 28.870433550967562 ], [ -82.212379327405813, 28.870410951593147 ], [ -82.212515721763026, 28.870383284027202 ], [ -82.212650153482215, 28.870348756539535 ], [ -82.212782606553972, 28.87030050538857 ], [ -82.212934517179193, 28.870235064490153 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 248C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.209665178160733, 28.866628349849194 ], [ -82.210269266169036, 28.867030633443065 ], [ -82.211083164662568, 28.867562987898051 ], [ -82.211625764318256, 28.867915601368036 ], [ -82.211772170021135, 28.868021753039159 ], [ -82.211906890339122, 28.868131355197253 ], [ -82.212035775944727, 28.868247830140668 ], [ -82.212143195710098, 28.868352326349314 ], [ -82.212252610490978, 28.868479125929483 ], [ -82.212338597856018, 28.868587088853587 ], [ -82.212432414612593, 28.868712197504241 ], [ -82.212512600092865, 28.868844188574801 ], [ -82.212583045164351, 28.868977914684315 ], [ -82.212631998686362, 28.869087649984969 ], [ -82.21269666785129, 28.869255699467384 ], [ -82.21275354354924, 28.869427193512806 ], [ -82.212794800909734, 28.869586699826215 ], [ -82.212827953144256, 28.869755739014376 ], [ -82.212865633654317, 28.869910881102218 ], [ -82.212934517179193, 28.870235064490153 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 248C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.212934517179193, 28.870235064490153 ], [ -82.213022130463571, 28.870413159916321 ], [ -82.21310756557537, 28.87057804637902 ], [ -82.213184724625847, 28.870721799601064 ], [ -82.213267927852172, 28.870851524256704 ], [ -82.213367541728459, 28.870986329964154 ], [ -82.21348009621579, 28.871113513314576 ], [ -82.213596958196547, 28.871233085206107 ], [ -82.21372677528808, 28.871352637419289 ], [ -82.213850076459167, 28.871453190221722 ], [ -82.213971188822498, 28.871540440202839 ], [ -82.214070673272346, 28.871610614964901 ], [ -82.214196109550372, 28.871699759935947 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.205522353733784, 28.854262645116716 ], [ -82.205733848398211, 28.854228177999882 ], [ -82.206255186263164, 28.854142061091849 ], [ -82.206928964340577, 28.854034561038304 ], [ -82.207754937627939, 28.853908172596313 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 61st Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.205522353733784, 28.854262645116716 ], [ -82.205803982524486, 28.855546397372493 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 251", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.196809696934963, 28.846765992155071 ], [ -82.197651891133219, 28.84726719764236 ], [ -82.197751040389264, 28.84734453338536 ], [ -82.197855732213711, 28.847443654219369 ], [ -82.197941165559584, 28.847537959584059 ], [ -82.197993548421536, 28.847608100906839 ], [ -82.198040486433555, 28.847704883380963 ], [ -82.198070882905625, 28.847782321259604 ], [ -82.198101344449853, 28.847893656662333 ], [ -82.198140258260281, 28.84811151520935 ], [ -82.198201349970219, 28.84842377242321 ], [ -82.198364487819148, 28.848888422085075 ], [ -82.198580204809076, 28.849524906952272 ], [ -82.198729641370349, 28.850013788506477 ], [ -82.198846066638836, 28.85066888595485 ], [ -82.198879615364831, 28.850785960632827 ], [ -82.19892104289913, 28.850877909098703 ], [ -82.198948627965024, 28.850921452354562 ], [ -82.198981713541002, 28.850964987517486 ], [ -82.199025789907509, 28.851003662060524 ], [ -82.199072598688929, 28.851032649085063 ], [ -82.199127649554697, 28.851056781322114 ], [ -82.199179939467385, 28.851076074955266 ], [ -82.199441334597097, 28.851141064352685 ], [ -82.200010878559198, 28.85127097343528 ], [ -82.200206240884256, 28.851321531885386 ], [ -82.20031356855273, 28.851357692449785 ], [ -82.200401645023803, 28.851393880534005 ], [ -82.200533803307508, 28.85147116707595 ], [ -82.200643956110213, 28.851546064340113 ], [ -82.200742111282878, 28.85161372211104 ], [ -82.200950008013024, 28.851764401737594 ], [ -82.201171409731288, 28.851897181890482 ], [ -82.201591612838726, 28.852142908822312 ], [ -82.201682071918725, 28.852210377050898 ], [ -82.201761963436255, 28.852280475838022 ], [ -82.201833487876627, 28.852359098449796 ], [ -82.201897028416354, 28.852437657140527 ], [ -82.201965966761762, 28.85253198535796 ], [ -82.202029389640614, 28.852619056454756 ], [ -82.20216169532975, 28.85277140166373 ], [ -82.20231523219195, 28.852920617402901 ], [ -82.20250344447166, 28.853141346974645 ], [ -82.202580656580039, 28.853247768635772 ], [ -82.202661355144812, 28.853365120900342 ], [ -82.202736082320115, 28.853498118009927 ], [ -82.202790502105273, 28.853633132372341 ], [ -82.202842650861598, 28.853760203561357 ], [ -82.202946960286141, 28.854020304638034 ], [ -82.203126097577027, 28.854465058984189 ], [ -82.203158730239295, 28.854564842210358 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203210001669888, 28.854748570835358 ], [ -82.203392845789352, 28.854703063853776 ], [ -82.203755984310618, 28.854607154404285 ], [ -82.204078263695664, 28.854533658271652 ], [ -82.204413792034131, 28.854456167629561 ], [ -82.204763453697737, 28.85439355353525 ], [ -82.205101818224648, 28.85432350717873 ], [ -82.205522353733784, 28.854262645116716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 26th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.146901514025657, 28.875343927481939 ], [ -82.146911062710174, 28.875487905071314 ], [ -82.146910193873524, 28.875570196571275 ], [ -82.146903331401703, 28.875647530125555 ], [ -82.14689363282848, 28.875692955153273 ], [ -82.146879763103996, 28.875745746561307 ], [ -82.146857524304423, 28.875798547948161 ], [ -82.146538971849012, 28.876354895035302 ], [ -82.146284504559375, 28.876868218179549 ], [ -82.146249751538576, 28.876946807142442 ], [ -82.146208068649926, 28.877054860022053 ], [ -82.146163628799698, 28.877186238479489 ], [ -82.14613447385446, 28.877279551391165 ], [ -82.1460942796285, 28.877456337928905 ], [ -82.146061007980251, 28.87759629417636 ], [ -82.146043041867287, 28.877712914898613 ], [ -82.146034810755566, 28.877809887489846 ], [ -82.146032171081373, 28.87791667286097 ], [ -82.146032278074983, 28.877992768996378 ], [ -82.146036579265669, 28.878078680321671 ], [ -82.146043655514461, 28.878153542713537 ], [ -82.146053508535275, 28.878218584198329 ], [ -82.146066172177271, 28.878299576189207 ], [ -82.146083021846295, 28.878383020619712 ], [ -82.146098444855554, 28.878443145779933 ], [ -82.146127865942745, 28.87854130395106 ], [ -82.146172661246794, 28.878665221474833 ], [ -82.146200640353769, 28.878729015342522 ], [ -82.146235601790622, 28.878800165318971 ], [ -82.146276159940243, 28.878884811231742 ], [ -82.146313906798269, 28.878952275896257 ], [ -82.146354434922102, 28.879016055262774 ], [ -82.146385176941862, 28.879061435604577 ], [ -82.146703707609078, 28.879479627296117 ], [ -82.147006834276596, 28.879849966200425 ], [ -82.147055720186771, 28.879906372611753 ], [ -82.147104616481684, 28.879970143551656 ], [ -82.147145143065131, 28.880031468417673 ], [ -82.147182880563776, 28.880091569177736 ], [ -82.14722760368349, 28.880162709166047 ], [ -82.147248577941028, 28.880203189616783 ], [ -82.147280744550301, 28.880268204007134 ], [ -82.147325536795464, 28.880388439734169 ], [ -82.147366153373653, 28.880513588491745 ], [ -82.147385807718592, 28.880606847579109 ], [ -82.147402698504408, 28.880718520162734 ], [ -82.147409792475457, 28.88080443016781 ], [ -82.147411327173103, 28.880905071730776 ], [ -82.147405872073733, 28.880990995399198 ], [ -82.147400402509248, 28.881069552720501 ], [ -82.147389350836605, 28.881144435645101 ], [ -82.1473727353182, 28.881227915405642 ], [ -82.147339420763103, 28.881338416415076 ], [ -82.147315808503734, 28.881405947543637 ], [ -82.14729079955552, 28.881471025936655 ], [ -82.147251869963881, 28.881554529957963 ], [ -82.147201786077488, 28.881639273223154 ], [ -82.147140393828678, 28.881739679121111 ], [ -82.147082104927279, 28.881816146358972 ], [ -82.147006400764539, 28.881903986101708 ], [ -82.146928072213484, 28.881985384437833 ], [ -82.146791593016445, 28.882109100416852 ], [ -82.146682601178853, 28.882211181850177 ], [ -82.146604290334707, 28.882304854838537 ], [ -82.146559060295743, 28.882370875333333 ], [ -82.146517331854639, 28.88244763117234 ], [ -82.14649476664718, 28.882516694922234 ], [ -82.146484390296806, 28.882576542038702 ], [ -82.146475756653956, 28.88263485155699 ], [ -82.146474091093623, 28.882691618725339 ], [ -82.14647766880006, 28.882756052458223 ], [ -82.146493486871165, 28.8828480895748 ], [ -82.14651449595415, 28.882914038344698 ], [ -82.146603664197698, 28.883104184982962 ], [ -82.146720760624021, 28.883320383105282 ], [ -82.147159305811314, 28.884036390978242 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 26th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147159305811314, 28.884036390978242 ], [ -82.147534971449019, 28.884658876868627 ], [ -82.147837302926803, 28.885195524090722 ], [ -82.148129184778824, 28.885736786440873 ], [ -82.148352945249002, 28.886179932089654 ], [ -82.148636205269227, 28.886784104542272 ], [ -82.148811070676473, 28.887164399388006 ], [ -82.148889766705366, 28.887340748023366 ], [ -82.148980730609907, 28.887561576277264 ], [ -82.149050722613865, 28.887745605718305 ], [ -82.149080540194547, 28.887872913163779 ], [ -82.149098090133464, 28.887955741846877 ], [ -82.149113940848608, 28.888069256816241 ], [ -82.149124535659084, 28.888164366202027 ], [ -82.149135181856863, 28.888296298272053 ], [ -82.149133568767013, 28.888386819392544 ], [ -82.149123278356299, 28.888504965777685 ], [ -82.149111205986699, 28.888598567133275 ], [ -82.149090466900418, 28.888724397257167 ], [ -82.14906100136794, 28.888844096857731 ], [ -82.149021065298101, 28.888956140261651 ], [ -82.148967211041182, 28.889088142444947 ], [ -82.148899916841941, 28.889241219907415 ], [ -82.148829942474507, 28.88940587675102 ], [ -82.148760485412808, 28.889599266631226 ], [ -82.148725776378342, 28.889709768481747 ], [ -82.148701520394056, 28.889815655316362 ], [ -82.148677269740816, 28.88992461175317 ], [ -82.148661693404364, 28.890004409052416 ], [ -82.148649602918667, 28.89008420071502 ], [ -82.148637517795905, 28.890167063788194 ], [ -82.14862891635623, 28.890248385519101 ], [ -82.148623798617152, 28.890328172224457 ], [ -82.148620410632446, 28.890397215185455 ], [ -82.148620741323342, 28.890630416132229 ], [ -82.148631414286996, 28.890780759531047 ], [ -82.148650788858404, 28.890920350621386 ], [ -82.148675402082134, 28.891066076078825 ], [ -82.14870171479302, 28.89118111345261 ], [ -82.148731521036709, 28.891300749594269 ], [ -82.148756049534143, 28.891386639318359 ], [ -82.14878232103375, 28.891472527120118 ], [ -82.148895055589293, 28.891832366225429 ], [ -82.148945104429941, 28.891932614037554 ], [ -82.14900101069685, 28.892016936160537 ], [ -82.149056914736221, 28.89209818684391 ], [ -82.149119970825808, 28.892198617858597 ], [ -82.149191449592223, 28.892309760641908 ], [ -82.149255019239831, 28.892417853324829 ], [ -82.149298280266947, 28.892497202272619 ], [ -82.149333693232606, 28.892575407635103 ], [ -82.149383530955419, 28.89268236497967 ], [ -82.149418955944412, 28.892767475578562 ], [ -82.149453076624511, 28.892856038891509 ], [ -82.149495749512951, 28.892981415461868 ], [ -82.149520723540135, 28.893073440144416 ], [ -82.149548344322625, 28.8931873254392 ], [ -82.149564134487647, 28.893257498522665 ], [ -82.149579944383362, 28.893341479422993 ], [ -82.149593125032027, 28.893415108474471 ], [ -82.149602369172754, 28.893478383514612 ], [ -82.1496116529663, 28.893571578656228 ], [ -82.149617020364332, 28.893667077178009 ], [ -82.14962371042715, 28.893774081220226 ], [ -82.149625144186444, 28.893862680620085 ], [ -82.149625247695383, 28.893935172794311 ], [ -82.149621418562688, 28.894000764945925 ], [ -82.149616299835884, 28.894080166362759 ], [ -82.149607277604986, 28.894168776419306 ], [ -82.149598232166483, 28.894244731794938 ], [ -82.149586569938549, 28.894318386500245 ], [ -82.149574900101896, 28.894387440403737 ], [ -82.149559336391974, 28.894476058587674 ], [ -82.149538529456379, 28.894555478240743 ], [ -82.149520319563521, 28.894623386231608 ], [ -82.14949429665603, 28.894712016866688 ], [ -82.149469560245052, 28.894786837333726 ], [ -82.149440900984345, 28.894861663031119 ], [ -82.149407041129351, 28.89495720486903 ], [ -82.14937672368994, 28.895026161141477 ], [ -82.149342645270721, 28.895103674423481 ], [ -82.149302759152135, 28.895181699391564 ], [ -82.149246690041721, 28.89529107443397 ], [ -82.149177560805427, 28.895410820408312 ], [ -82.149143643824644, 28.895467240482802 ], [ -82.149109723945415, 28.895520208366737 ], [ -82.14906927114167, 28.895577786052932 ], [ -82.149028818707876, 28.895634213298788 ], [ -82.148980527689488, 28.895696401302029 ], [ -82.148930932613069, 28.895760894285083 ], [ -82.148873501578379, 28.895832298437682 ], [ -82.14869072589407, 28.896030414478879 ], [ -82.14864587815299, 28.896071372061314 ], [ -82.14859801796969, 28.896120267728982 ], [ -82.148541862798865, 28.896169808606302 ], [ -82.148487014249085, 28.896218196696225 ], [ -82.148419357805921, 28.896277041087551 ], [ -82.148371026632375, 28.896324369902462 ], [ -82.148339454637181, 28.896355286508232 ], [ -82.148297681199352, 28.896402510657829 ], [ -82.148254599594566, 28.896452037082724 ], [ -82.148214139871783, 28.896503860573645 ], [ -82.148176296908176, 28.896557982943154 ], [ -82.148135858856875, 28.896625916881078 ], [ -82.14809934201196, 28.896692696086433 ], [ -82.148062846256465, 28.896774432618528 ], [ -82.148040696902129, 28.896830838626059 ], [ -82.148026376454524, 28.896874580460437 ], [ -82.148009452367532, 28.896927529462609 ], [ -82.147997753573136, 28.896977020561678 ], [ -82.147986066144028, 28.897034566442795 ], [ -82.147979594694107, 28.897080600539379 ], [ -82.147974453281378, 28.897142742771816 ], [ -82.147971943897772, 28.897218689958887 ], [ -82.147972036524848, 28.897284278648964 ], [ -82.147978679048506, 28.897357912262358 ], [ -82.147987930275889, 28.897428093543713 ], [ -82.147998489836567, 28.897498272490015 ], [ -82.148015610705912, 28.897584552943748 ], [ -82.148034035227823, 28.897669682442615 ], [ -82.148048524698623, 28.897743310167904 ], [ -82.148064324314603, 28.897820385933692 ], [ -82.148084069656505, 28.897913569673719 ], [ -82.14818564116247, 28.898420062334441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 87th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147159305811314, 28.884036390978242 ], [ -82.147291691134328, 28.883967208568667 ], [ -82.147401374693303, 28.883920924903727 ], [ -82.147472871836058, 28.883887229212149 ], [ -82.147544313228323, 28.883865673056846 ], [ -82.147612280859249, 28.883853326795819 ], [ -82.147681996761676, 28.883845577604394 ], [ -82.14777612713786, 28.88384394005379 ], [ -82.147955964929551, 28.883849437078638 ], [ -82.148344354570241, 28.883868573756072 ], [ -82.148532575701282, 28.88387133227415 ], [ -82.148645735917171, 28.88387120894113 ], [ -82.148719818202764, 28.883862828222902 ], [ -82.148795239827251, 28.883849702612729 ], [ -82.148887032793922, 28.883825006834549 ], [ -82.148964841328947, 28.883798382837554 ], [ -82.149025498060126, 28.883775939079566 ], [ -82.149092815018648, 28.883747409178149 ], [ -82.149539723567699, 28.883506226412912 ], [ -82.14978272185283, 28.883361581951839 ], [ -82.149845367853473, 28.883322500863226 ], [ -82.149904471133212, 28.883275807374527 ], [ -82.149978478930464, 28.883216442618721 ], [ -82.150042965188632, 28.883156727459241 ], [ -82.150110313806564, 28.88308705855469 ], [ -82.150154694367245, 28.883034842078459 ], [ -82.150211170901017, 28.882962453929252 ], [ -82.150298554076699, 28.882836678571401 ], [ -82.150399344367443, 28.882665832018432 ], [ -82.150566005908743, 28.882398874252278 ], [ -82.150697709504129, 28.882179380877442 ], [ -82.150850191872408, 28.881943469459269 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.130147869247452, 28.877841383106396 ], [ -82.130671344732633, 28.878541812088098 ], [ -82.131046819741215, 28.879055208428834 ], [ -82.131387881995849, 28.879505678254418 ], [ -82.131634742525151, 28.879819240937184 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137742332894661, 28.873483472099711 ], [ -82.138757820824537, 28.874855310090052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134967868186138, 28.875062144661957 ], [ -82.13542642939872, 28.874791921093909 ], [ -82.137507500850234, 28.873617389088054 ], [ -82.137742332894661, 28.873483472099711 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243E", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135517072269195, 28.878044885835767 ], [ -82.136862885748471, 28.878663352146226 ], [ -82.137115553592125, 28.878767394161358 ], [ -82.137278804258443, 28.87882365040592 ], [ -82.137455655099984, 28.878883311456939 ], [ -82.137613062649478, 28.878929317698226 ], [ -82.137811275140876, 28.878982118048022 ], [ -82.137968662946577, 28.879014443239534 ], [ -82.138106617097833, 28.879038239691031 ], [ -82.138246517248859, 28.879063742967958 ], [ -82.138438860887476, 28.879087483538736 ], [ -82.138621487605661, 28.879106105116996 ], [ -82.138839066651755, 28.879114431478094 ], [ -82.139074112781273, 28.879110770557201 ], [ -82.139219799584438, 28.879107201132932 ], [ -82.139322748651296, 28.879101965676501 ], [ -82.139431524663252, 28.879096724141327 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243E", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139431524663252, 28.879096724141327 ], [ -82.139559714637699, 28.879081202472292 ], [ -82.13970149556431, 28.879062249654876 ], [ -82.139852982894823, 28.87903815709571 ], [ -82.14008482701044, 28.878997467385044 ], [ -82.140314805032389, 28.878939817800472 ], [ -82.140542033573439, 28.878873921863921 ], [ -82.140765739158837, 28.878799433910746 ], [ -82.140898081533763, 28.878751167650162 ], [ -82.141518826513021, 28.878520310504307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 17th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131979403694444, 28.895431746702197 ], [ -82.132364719814618, 28.895895895320702 ], [ -82.132422834398355, 28.895964580845966 ], [ -82.132465314918392, 28.896023461050607 ], [ -82.132498885859135, 28.896098062555982 ], [ -82.132527787185936, 28.896164272754699 ], [ -82.132552636788077, 28.896245317060778 ], [ -82.132566303159805, 28.896332774108878 ], [ -82.132568657034739, 28.896559553209787 ], [ -82.132572113898476, 28.897527839338661 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 17th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.132572113898476, 28.897527839338661 ], [ -82.132572682811812, 28.897977610959167 ], [ -82.1325732134502, 28.898397924418454 ], [ -82.132564520358187, 28.898582554478427 ], [ -82.132524555052527, 28.898747576681352 ], [ -82.132468957961819, 28.898906720371439 ], [ -82.132431099446421, 28.898973536364434 ], [ -82.132368719754652, 28.899063945210724 ], [ -82.132297404814906, 28.89914846986585 ], [ -82.13221046157318, 28.899229082957881 ], [ -82.132112349417142, 28.89930184879929 ], [ -82.132025376635852, 28.899360855416031 ], [ -82.131896012758659, 28.899429724790039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 17th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131896012758659, 28.899429724790039 ], [ -82.132054792896099, 28.899679007013312 ], [ -82.132218038189393, 28.89992828467501 ], [ -82.132314198439758, 28.900075496842874 ], [ -82.132417034695351, 28.900206988920317 ], [ -82.132488548898195, 28.900279589849056 ], [ -82.13258463179794, 28.90036591495485 ], [ -82.132667293813952, 28.900428684274313 ], [ -82.132781217702842, 28.900503207760003 ], [ -82.132928621857701, 28.90057769736277 ], [ -82.133084941580933, 28.900642358348119 ], [ -82.13330823370265, 28.900718737177691 ], [ -82.133567675042229, 28.900808518754928 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 17th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131896012758659, 28.899429724790039 ], [ -82.131523478084574, 28.899589176586755 ], [ -82.131266934791114, 28.899691557458258 ], [ -82.130936759232966, 28.89981365028078 ], [ -82.130648973432784, 28.899921953095035 ], [ -82.130454870922506, 28.899984989766331 ], [ -82.130256283467773, 28.900028391097212 ], [ -82.130059893285463, 28.900046255945941 ], [ -82.129709485014118, 28.900052485117065 ], [ -82.129408163022205, 28.900044917264232 ], [ -82.128952846310185, 28.900045352738733 ], [ -82.128144884200793, 28.900048082595774 ], [ -82.127511005030343, 28.900044752633534 ], [ -82.126566461528327, 28.900044431854841 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 93rd Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12389349561937, 28.892145767144928 ], [ -82.124043902256886, 28.891749753679566 ], [ -82.124193118734141, 28.89148643027902 ], [ -82.124293364373429, 28.891331176523387 ], [ -82.124429306431949, 28.891168032688636 ], [ -82.124598708496592, 28.890989146224776 ], [ -82.124743606717061, 28.890849563643435 ], [ -82.125026749176655, 28.890605756171134 ], [ -82.125365614905633, 28.890304938988653 ], [ -82.125367850270507, 28.890306899416448 ], [ -82.125873887443845, 28.889835052565726 ], [ -82.126295236988966, 28.889463448678857 ], [ -82.126460226006259, 28.889331703607731 ], [ -82.126589564095696, 28.889247125892691 ], [ -82.126725592433459, 28.889160578392676 ], [ -82.126908477917652, 28.889064168947964 ], [ -82.127066845795682, 28.888995277079378 ], [ -82.127229679776207, 28.88892834603304 ], [ -82.127442188409788, 28.88884670119905 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119936274547712, 28.879652900741419 ], [ -82.119934388753919, 28.880060495303574 ], [ -82.119934693849331, 28.880327394209612 ], [ -82.1199348869429, 28.883858257310632 ], [ -82.119938838053528, 28.884864310388245 ], [ -82.119944311127824, 28.887199440997701 ], [ -82.119942608879498, 28.888161112735869 ], [ -82.119950387143774, 28.890062256590504 ], [ -82.119958278182139, 28.890625721015972 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119963684428328, 28.894517229516435 ], [ -82.119977789349619, 28.896310080408576 ], [ -82.119989039739053, 28.898195588394337 ], [ -82.120000359851872, 28.900142433900466 ], [ -82.120005194108785, 28.901718582510629 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120005194108785, 28.901718582510629 ], [ -82.120005287846027, 28.903387544219182 ], [ -82.120007027095525, 28.904906622798826 ], [ -82.120000299023431, 28.905384540546102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 81st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140653623710662, 28.874918486809847 ], [ -82.140822352646893, 28.874718267219674 ], [ -82.140949873659054, 28.874605756798243 ], [ -82.141308150142748, 28.87436016376099 ], [ -82.141742863483145, 28.874045301479946 ], [ -82.14183469342548, 28.873978012009154 ], [ -82.141928079349583, 28.873910719942561 ], [ -82.142030799005994, 28.873833817557944 ], [ -82.142114861982478, 28.873784361865578 ], [ -82.142195823454514, 28.873745880434097 ], [ -82.142261227750993, 28.873723870529698 ], [ -82.142337544451962, 28.873707335103475 ], [ -82.142416984870962, 28.873696280523784 ], [ -82.142513581483783, 28.873698921889439 ], [ -82.142572790370679, 28.873704344641872 ], [ -82.142642919355481, 28.873719354525168 ], [ -82.142697473496753, 28.873738496171857 ], [ -82.142767628654084, 28.873772705085425 ], [ -82.142836228416357, 28.873809657690099 ], [ -82.142901713795965, 28.873847985943179 ], [ -82.143194861904107, 28.874032804602372 ], [ -82.143420950014615, 28.874168325262882 ], [ -82.143615845869974, 28.874279195330409 ], [ -82.143767069101358, 28.874353085644184 ], [ -82.143916721215078, 28.874417377896393 ], [ -82.144081949461523, 28.874477541630959 ], [ -82.144494985034513, 28.87460600484663 ], [ -82.14495009740773, 28.874741279225308 ], [ -82.145127779505572, 28.8747945699632 ], [ -82.145473802855335, 28.874906646746911 ], [ -82.14578553141223, 28.875003674934067 ], [ -82.145980366565098, 28.875066546532985 ], [ -82.146248459049318, 28.875154021125628 ], [ -82.146529017347206, 28.875241481691575 ], [ -82.146809570092913, 28.875327571084551 ], [ -82.146867234491566, 28.875341221682948 ], [ -82.146901514025657, 28.875343927481939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 231", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107413446659351, 28.88095461274871 ], [ -82.107436093786902, 28.882368797364819 ], [ -82.10742341425906, 28.882926634922462 ], [ -82.107412699215345, 28.883245403129223 ], [ -82.107415084534324, 28.883418387310648 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062298238885305, 28.650141741765346 ], [ -82.060970174420916, 28.650146871759585 ], [ -82.060212756609332, 28.650159298800713 ], [ -82.058964746679493, 28.650164522022809 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 26th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062298238885305, 28.650141741765346 ], [ -82.062295762614795, 28.649814727491208 ], [ -82.06230482947214, 28.649691273957497 ], [ -82.062327616209245, 28.649593007404558 ], [ -82.06235953571624, 28.649476095351211 ], [ -82.062390316471763, 28.649369259284317 ], [ -82.06241880789301, 28.649250331147794 ], [ -82.062437021893459, 28.649141487665595 ], [ -82.062450649812931, 28.649004426620756 ], [ -82.062449977445354, 28.648831093670033 ], [ -82.062439614526227, 28.648696563747688 ], [ -82.062422970398885, 28.648561028767261 ], [ -82.062381166788924, 28.648383683755128 ], [ -82.062326231977423, 28.648214407052919 ], [ -82.062255878511436, 28.648052694373824 ], [ -82.062180400044568, 28.647916178992535 ], [ -82.062111788240472, 28.647801830851716 ], [ -82.062038616193803, 28.647702600662271 ], [ -82.061943732785593, 28.647590280111242 ], [ -82.061835709903434, 28.647476954789791 ], [ -82.06169112328017, 28.647352058907554 ], [ -82.061561391314868, 28.647232196661871 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067128866520619, 28.650155212540167 ], [ -82.065327293481445, 28.650156070072814 ], [ -82.06424493649105, 28.650157473201492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 561B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06258113270539, 28.653722797535494 ], [ -82.062580100260547, 28.653293008628641 ], [ -82.062579476144109, 28.652242772073041 ], [ -82.062578880011756, 28.651236202054054 ], [ -82.062578644156844, 28.650838628705547 ], [ -82.062577561557859, 28.650143126218307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062577561557859, 28.650143126218307 ], [ -82.062298238885305, 28.650141741765346 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06424493649105, 28.650157473201492 ], [ -82.063612602105124, 28.65015172102202 ], [ -82.063199610847363, 28.650142841412389 ], [ -82.062577561557859, 28.650143126218307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 24th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06424493649105, 28.650157473201492 ], [ -82.064246161963169, 28.649356310607992 ], [ -82.064242233318808, 28.648535500167728 ], [ -82.064246743967701, 28.647498523024815 ], [ -82.0642444340493, 28.646520503031347 ], [ -82.064218583771094, 28.646278655706347 ], [ -82.064185724796857, 28.645782857298357 ], [ -82.064183825725806, 28.645477508574263 ], [ -82.064193837283298, 28.645033086228899 ], [ -82.064186713489633, 28.644591694689836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 75th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059459347696844, 28.645887018280177 ], [ -82.059452620207196, 28.644924872842253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 77th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061356491900526, 28.644805370810221 ], [ -82.061080180159806, 28.644803603507793 ], [ -82.0609311167551, 28.644828991036302 ], [ -82.060816903917583, 28.644869351689152 ], [ -82.060684429557611, 28.644937936361536 ], [ -82.060588513722251, 28.645010536430377 ], [ -82.060497176433444, 28.645103290799913 ], [ -82.060437814858076, 28.645176126417571 ], [ -82.060392879463365, 28.645255507532994 ], [ -82.060358656734081, 28.645340550599432 ], [ -82.060323729346365, 28.645441971365432 ], [ -82.060273523854733, 28.645542768990918 ], [ -82.060223870449178, 28.645614592343527 ], [ -82.060189624776825, 28.645658065653247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 76th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061378544920842, 28.645893732587549 ], [ -82.061141959305189, 28.645945485966198 ], [ -82.06100945117457, 28.645957636160365 ], [ -82.060904352292198, 28.645957683680457 ], [ -82.060783114435097, 28.645950683794918 ], [ -82.060648439572475, 28.645921517530411 ], [ -82.060525039763775, 28.645881262773692 ], [ -82.060387915275001, 28.645812796082556 ], [ -82.060264635582996, 28.645731725668721 ], [ -82.060189624776825, 28.645658065653247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 205B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041370271503936, 28.887318159567272 ], [ -82.041368334853772, 28.887796953979148 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 230C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043391445671674, 28.887801937536967 ], [ -82.043367214669232, 28.887790722417709 ], [ -82.043191680500357, 28.887790778888171 ], [ -82.042413889891961, 28.887794763295243 ], [ -82.041368334853772, 28.887796953979148 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 230C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045404991018515, 28.887799413834422 ], [ -82.043999228680022, 28.887801743257612 ], [ -82.043391445671674, 28.887801937536967 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 205", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045404991018515, 28.887799413834422 ], [ -82.045412560981077, 28.888700888363402 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 205", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045412560981077, 28.888700888363402 ], [ -82.045417202294715, 28.889607976049234 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 205", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045417202294715, 28.889607976049234 ], [ -82.045434330040024, 28.889897864823585 ], [ -82.045430361095143, 28.890554337883145 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 205", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045430361095143, 28.890554337883145 ], [ -82.045407620228687, 28.892031869956014 ], [ -82.045418562400883, 28.892768291496509 ], [ -82.045432651870101, 28.894640910472795 ], [ -82.04543289062147, 28.895194980658701 ], [ -82.045420040784293, 28.896200264158693 ], [ -82.045412719504483, 28.897703507183166 ], [ -82.045415593690009, 28.898208482173601 ], [ -82.045428899160854, 28.898257572716254 ], [ -82.045450163503162, 28.89828561990694 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 97th Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046908678032182, 28.898303829307469 ], [ -82.04650752337291, 28.898306304455897 ], [ -82.046228577119166, 28.898311074028488 ], [ -82.046096385721413, 28.898331668585062 ], [ -82.045561764432563, 28.898334676774372 ], [ -82.045490025505742, 28.898313660898612 ], [ -82.045450163503162, 28.89828561990694 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 223", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070361630512593, 28.938333945980279 ], [ -82.070391611030331, 28.93865396911653 ], [ -82.070388882790908, 28.939518077189444 ], [ -82.070369920840818, 28.940833157502919 ], [ -82.070364119523006, 28.94204639983796 ], [ -82.070358391235331, 28.943370200659245 ], [ -82.070362279045924, 28.944234304693111 ], [ -82.070348182857558, 28.945476569324228 ], [ -82.070349191678645, 28.945619477371739 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 202", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070349191678645, 28.945619477371739 ], [ -82.069791858898867, 28.945624349992936 ], [ -82.068753835257951, 28.945634052175492 ], [ -82.066725750114173, 28.94564882348752 ], [ -82.062038716431857, 28.945653340780844 ], [ -82.059929806996266, 28.945649244660839 ], [ -82.058480422291353, 28.945649877721344 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 200", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058480422291353, 28.945649877721344 ], [ -82.058480920847771, 28.946545034997122 ], [ -82.058475588432159, 28.948202364960618 ], [ -82.058475943706355, 28.948842090445396 ], [ -82.058476219560063, 28.949337362648613 ], [ -82.058473795514075, 28.949665251896686 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 200", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058473795514075, 28.949665251896686 ], [ -82.058482090687178, 28.950518216843715 ], [ -82.058472310123335, 28.951678442176568 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 200", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058473795514075, 28.949665251896686 ], [ -82.05705563563636, 28.949661269951125 ], [ -82.05472506335208, 28.949666814714746 ], [ -82.053643202274472, 28.949674124486538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053640880713488, 28.927379680855687 ], [ -82.053637329029698, 28.928592184631313 ], [ -82.053635801701375, 28.929683622966703 ], [ -82.05364485819878, 28.931088727747369 ], [ -82.053643406683406, 28.93233058074351 ], [ -82.053643503092403, 28.932519517428723 ], [ -82.053646297850122, 28.933909950085035 ], [ -82.053647921856722, 28.934702460078498 ], [ -82.053647924416964, 28.934703457111855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0536603611651, 28.916518494343517 ], [ -82.053660391953443, 28.916580862834074 ], [ -82.053662704222774, 28.91702660875146 ], [ -82.053650897474867, 28.918404210698199 ], [ -82.053647441465372, 28.919803820570447 ], [ -82.053646801799729, 28.919923002333036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 214", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056675835005137, 28.91651162960488 ], [ -82.056376713312574, 28.916511753906104 ], [ -82.055229853063778, 28.916507487277915 ], [ -82.054957845551414, 28.916510414386586 ], [ -82.054956930792045, 28.91651042377902 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053677494447555, 28.90923794939566 ], [ -82.053675769860902, 28.909946010433352 ], [ -82.053674420662659, 28.911385977353966 ], [ -82.053666723287407, 28.912646178330462 ], [ -82.0536674176563, 28.914005433462687 ], [ -82.05367015660218, 28.915287642251101 ], [ -82.0536603611651, 28.916518494343517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 222", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07022260179582, 28.901754158370139 ], [ -82.069055553368941, 28.901771408424835 ], [ -82.062899615329613, 28.901817712854456 ], [ -82.057670723365675, 28.901854062664363 ], [ -82.053661264291094, 28.901938839530683 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053661264291094, 28.901938839530683 ], [ -82.053659550121822, 28.902665469719029 ], [ -82.053660259917152, 28.904057744639008 ], [ -82.053667251809699, 28.905505046113294 ], [ -82.053665816389454, 28.906776254651106 ], [ -82.053670670471405, 28.908120831662192 ], [ -82.053677494447555, 28.90923794939566 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053701871333288, 28.89463032627814 ], [ -82.053691405203494, 28.895638043923302 ], [ -82.053677513379313, 28.897011980513277 ], [ -82.053674016795739, 28.898330885156295 ], [ -82.053672237151488, 28.898928885913953 ], [ -82.05366636330622, 28.899671801841993 ], [ -82.053662980545468, 28.901216329155961 ], [ -82.053661264291094, 28.901938839530683 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066190647775272, 28.887281031496908 ], [ -82.065935926976181, 28.887288386224135 ], [ -82.059434724369382, 28.887323643023144 ], [ -82.059211017983657, 28.887324872857167 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 30th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053744820298419, 28.869183783361674 ], [ -82.053731492761543, 28.869855873875856 ], [ -82.053717787625004, 28.870551686896405 ], [ -82.053702941630192, 28.871306285271299 ], [ -82.053713090263344, 28.872767249783863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 245 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119852883618151, 28.949109337884522 ], [ -82.119853368178923, 28.949532305674484 ], [ -82.119863765873589, 28.951243959884671 ], [ -82.119863949069128, 28.951404736898837 ], [ -82.119872523857964, 28.951523457967234 ], [ -82.11988385464862, 28.951595179934539 ], [ -82.119900796092139, 28.951654529238994 ], [ -82.119934631851876, 28.95173117758047 ], [ -82.120233384593163, 28.952299817328832 ], [ -82.120481399326621, 28.952762140637873 ], [ -82.121326977751067, 28.954391420031424 ], [ -82.121659601125955, 28.955051545089265 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 245 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119845966581067, 28.938159142379781 ], [ -82.119846508566326, 28.938631581634372 ], [ -82.119832062265417, 28.940751388535777 ], [ -82.119825240732922, 28.942161291801295 ], [ -82.119832962077439, 28.943991678171525 ], [ -82.119840338975223, 28.945522771031513 ], [ -82.119847776697512, 28.947105804723058 ], [ -82.119851622674304, 28.948008630973078 ], [ -82.119852883618151, 28.949109337884522 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 245A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119845966581067, 28.938159142379781 ], [ -82.121848022706729, 28.938142511863454 ], [ -82.123900683828225, 28.938120857936322 ], [ -82.124811726011856, 28.938110125285569 ], [ -82.12588585911864, 28.938099234677605 ], [ -82.125953344999061, 28.938099171809331 ], [ -82.126003947753247, 28.938089231024158 ], [ -82.126046104929273, 28.938071877653307 ], [ -82.126082612220216, 28.938032269114064 ], [ -82.126107856428632, 28.937980300661309 ], [ -82.126107787872556, 28.937923409461646 ], [ -82.126113298671513, 28.937829409939781 ], [ -82.126106902632941, 28.937188779200465 ], [ -82.126106145586164, 28.936560509944552 ], [ -82.126106068094899, 28.93649619919924 ], [ -82.126122885392434, 28.936451659038816 ], [ -82.126165017007352, 28.936414517500502 ], [ -82.126226853941787, 28.936394671619009 ], [ -82.126291519308907, 28.93638719077466 ], [ -82.12639555547338, 28.936384620354961 ], [ -82.128110768165797, 28.936370637005478 ], [ -82.129094916482714, 28.936369701541665 ], [ -82.129249551096748, 28.936354712873584 ], [ -82.129395719598435, 28.936317469900107 ], [ -82.129539101029067, 28.93629754531149 ], [ -82.129733114564687, 28.93629488424401 ], [ -82.129988991884019, 28.936294639301416 ], [ -82.130329225844946, 28.936294311654038 ], [ -82.130706016205437, 28.936296421881767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120000345641699, 28.912132583189816 ], [ -82.120000516815765, 28.91228204546896 ], [ -82.119998056466031, 28.913583761185979 ], [ -82.119997590175018, 28.914901116157768 ], [ -82.119993261236715, 28.916294943737796 ], [ -82.119982281163601, 28.917056168585397 ], [ -82.119967665076601, 28.918091990818382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120000299023431, 28.905384540546102 ], [ -82.12000493884149, 28.907319658246635 ], [ -82.119999047183256, 28.908527244201547 ], [ -82.119998604895656, 28.908887856833275 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119998604895656, 28.908887856833275 ], [ -82.120001300337606, 28.909516987911811 ], [ -82.120002514384595, 28.910577126750503 ], [ -82.120003396105673, 28.911347033532628 ], [ -82.120000345641699, 28.912132583189816 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 218", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116381856354792, 28.912090203419279 ], [ -82.11706469781231, 28.912099797849979 ], [ -82.118627564888754, 28.912118151273479 ], [ -82.120000345641699, 28.912132583189816 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 111th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113710265427315, 28.918080883548829 ], [ -82.115086837755513, 28.918091821472146 ], [ -82.11630593945587, 28.918073246712449 ], [ -82.117451020711044, 28.918088550389363 ], [ -82.118422968955798, 28.918089875966771 ], [ -82.119967665076601, 28.918091990818382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119967665076601, 28.918091990818382 ], [ -82.119960105654854, 28.918390922115289 ], [ -82.119936068886929, 28.919824738964412 ], [ -82.119927683660862, 28.920884994772347 ], [ -82.119909013637354, 28.921832183202422 ], [ -82.119890590529991, 28.922994442835513 ], [ -82.119881087121541, 28.92356308193769 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 245 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11988335146242, 28.93176883343412 ], [ -82.119881858177024, 28.932431747005278 ], [ -82.119871300017408, 28.933995893105177 ], [ -82.11986123372445, 28.935988004368234 ], [ -82.11985470908968, 28.93675921591819 ], [ -82.119845966581067, 28.938159142379781 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 245 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11988335146242, 28.93176883343412 ], [ -82.119887399853425, 28.930802431512028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 245 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119470935062608, 28.931057093118213 ], [ -82.119539356988739, 28.93112175859358 ], [ -82.119618476945305, 28.931206412977321 ], [ -82.119695133657274, 28.931297586750389 ], [ -82.119747084177604, 28.931377920563261 ], [ -82.119801525926135, 28.931477803016364 ], [ -82.119841136081547, 28.93156466497879 ], [ -82.119865945461925, 28.931664573659369 ], [ -82.11988335146242, 28.93176883343412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 246", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119470935062608, 28.931057093118213 ], [ -82.119603623336403, 28.930928130293275 ], [ -82.119691572242616, 28.930855905186775 ], [ -82.119802748450795, 28.930813550588386 ], [ -82.119887399853425, 28.930802431512028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119881087121541, 28.92356308193769 ], [ -82.119879610166805, 28.923998434339456 ], [ -82.119891367423762, 28.925829444652507 ], [ -82.119898084178672, 28.927382716073424 ], [ -82.119906921651065, 28.928631846778934 ], [ -82.119897666653969, 28.929174958428728 ], [ -82.119887992220299, 28.9293509339014 ], [ -82.119868419264293, 28.929511707295504 ], [ -82.11983400444791, 28.929648602032149 ], [ -82.119772441163477, 28.929798552613899 ], [ -82.119708389523097, 28.929933297228022 ], [ -82.119634446827462, 28.930055018749911 ], [ -82.119548145178314, 28.930168061176765 ], [ -82.119464299269197, 28.930268065959186 ], [ -82.119377961131917, 28.930348522016466 ], [ -82.119286673404389, 28.930420291503278 ], [ -82.119170704224089, 28.930502945377171 ], [ -82.119076930170152, 28.93055951148056 ], [ -82.119017699229744, 28.930589977189342 ], [ -82.11896093454385, 28.930618268884857 ], [ -82.118881953696928, 28.930655269162951 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 245 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118881953696928, 28.930655269162951 ], [ -82.118914418495393, 28.930703709061049 ], [ -82.118968689418082, 28.930766193801205 ], [ -82.119129671298595, 28.930872103925363 ], [ -82.119323604181972, 28.930962950789649 ], [ -82.119470935062608, 28.931057093118213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093163791567704, 28.880551146626537 ], [ -82.093099527210214, 28.880292438197294 ], [ -82.09301182380996, 28.879864663808874 ], [ -82.092944529889863, 28.879472740880566 ], [ -82.092883000435535, 28.879014205256841 ], [ -82.092853692756719, 28.878786216789074 ], [ -82.092821361824619, 28.878432698770979 ], [ -82.09275053004815, 28.877326011014638 ], [ -82.092688529229747, 28.876332040495246 ], [ -82.092632315308961, 28.875299635964812 ], [ -82.092533414449193, 28.873628761665927 ], [ -82.092474239392288, 28.872601423279423 ], [ -82.092372069520181, 28.870900083302754 ], [ -82.092323079040654, 28.870141571845675 ], [ -82.092208579921703, 28.868149581104394 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093163791567704, 28.880551146626537 ], [ -82.093134397749154, 28.880228368122122 ], [ -82.093037834424379, 28.879652010873937 ], [ -82.0930143223176, 28.879398398584723 ], [ -82.092998331725155, 28.879098305456971 ], [ -82.092949332498833, 28.878319887734449 ], [ -82.092943227321399, 28.877999656560998 ], [ -82.092939865824775, 28.87748984299213 ], [ -82.092942286527304, 28.876936473192647 ], [ -82.092947627636747, 28.876393347871353 ], [ -82.092977301440726, 28.875846119321796 ], [ -82.093103507896188, 28.874233517898777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093103507896188, 28.874233517898777 ], [ -82.093137977174734, 28.874153872531899 ], [ -82.093159091876288, 28.874108341483524 ], [ -82.093189613497671, 28.8740669401204 ], [ -82.093210747326864, 28.874044165976752 ], [ -82.093257736497733, 28.874019307800474 ], [ -82.093318838401558, 28.874002712199392 ], [ -82.093426944926293, 28.873979879104716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091566362279721, 28.873745021958364 ], [ -82.091619432949344, 28.873954474229464 ], [ -82.091693179867391, 28.874288050141647 ], [ -82.091951274745199, 28.87534313963932 ], [ -82.092091504887776, 28.875939964203901 ], [ -82.092138288602058, 28.876183311768489 ], [ -82.092240650700319, 28.876741734627505 ], [ -82.09229626071793, 28.877092676325741 ], [ -82.092357738936457, 28.877494850207952 ], [ -82.0924046446586, 28.877876540915771 ], [ -82.09247088142358, 28.878626827876676 ], [ -82.092574816312592, 28.879410996541747 ], [ -82.092726788556405, 28.880107726424264 ], [ -82.092828880406515, 28.880353596513459 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091926911335023, 28.868195983453923 ], [ -82.092016508040572, 28.869535651831264 ], [ -82.09204144642527, 28.869963619004206 ], [ -82.092122833980099, 28.87139295327378 ], [ -82.092200417866948, 28.872615788276047 ], [ -82.092248915525118, 28.873539988430853 ], [ -82.092355824295197, 28.875317245983371 ], [ -82.092462197499287, 28.8771258690997 ], [ -82.092488724122532, 28.877499886081328 ], [ -82.092518333022994, 28.878071167221055 ], [ -82.092559563307859, 28.878616821372468 ], [ -82.09261534710194, 28.879162465535064 ], [ -82.092706081031196, 28.87973114313219 ], [ -82.092828880406515, 28.880353596513459 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10870141693627, 28.909099146935262 ], [ -82.108841836764384, 28.909360124191778 ], [ -82.109130712221628, 28.909967055352205 ], [ -82.109311625567358, 28.910346068398937 ], [ -82.109428370363261, 28.910617533428699 ], [ -82.109623897632858, 28.911050331752897 ], [ -82.109842814425747, 28.911570214758299 ], [ -82.110047171656063, 28.912090110097601 ], [ -82.110318722722909, 28.912822585195443 ], [ -82.110648751802188, 28.913783018185388 ], [ -82.11085624390445, 28.914505295163181 ], [ -82.111052079674408, 28.915214775028481 ], [ -82.111171968090744, 28.915693747263408 ], [ -82.111250955687638, 28.916042096210759 ], [ -82.1113650754844, 28.916572309743149 ], [ -82.111476299638426, 28.917115335391919 ], [ -82.11157008846655, 28.917691680763234 ], [ -82.111640417128498, 28.918109207289248 ], [ -82.111696166644919, 28.918508812685356 ], [ -82.111749037867654, 28.918939163376955 ], [ -82.111810749031932, 28.919466859738748 ], [ -82.1118608628571, 28.920040678253471 ], [ -82.111890427358276, 28.920458237279174 ], [ -82.111920062235072, 28.92094240715873 ], [ -82.111929142152945, 28.921262632769849 ], [ -82.111941177179077, 28.921626408740494 ], [ -82.111947835321288, 28.922407773384119 ], [ -82.111943296019064, 28.923609293885196 ], [ -82.111933502721413, 28.925343689509074 ], [ -82.111929445763451, 28.926998660103795 ], [ -82.111922837679643, 28.928989237519122 ], [ -82.111915866034636, 28.930641646216287 ], [ -82.111910781530071, 28.931333357820133 ], [ -82.111906151432407, 28.932450335620324 ], [ -82.111902265961788, 28.934264139321765 ], [ -82.111902568840918, 28.934548506350598 ], [ -82.11190580387418, 28.934850803093433 ], [ -82.111923645663865, 28.935194079763697 ], [ -82.111950236177591, 28.935550155402016 ], [ -82.111985545715527, 28.935888291647515 ], [ -82.112035437407712, 28.93624691224888 ], [ -82.112085332188599, 28.936608093513051 ], [ -82.112167344249144, 28.937043543708768 ], [ -82.112249276318678, 28.937404699193532 ], [ -82.112345819672882, 28.937811954985872 ], [ -82.112433547838179, 28.938144925127268 ], [ -82.112547520211876, 28.93850861352395 ], [ -82.112667335098678, 28.9388876701763 ], [ -82.11278710669788, 28.939225736536756 ], [ -82.112930209283846, 28.939591965457289 ], [ -82.113084954722027, 28.939953057646687 ], [ -82.113236774548895, 28.940298782455713 ], [ -82.113400233793129, 28.94063424908764 ], [ -82.113514077907453, 28.94087496876767 ], [ -82.114232026052974, 28.942242398895839 ], [ -82.115128036414561, 28.943955524982734 ], [ -82.115933596812766, 28.945497078550424 ], [ -82.116669122652155, 28.946897782973679 ], [ -82.117716989411932, 28.948895125805919 ], [ -82.118385434907367, 28.950175470522193 ], [ -82.119614356987498, 28.952521052291917 ], [ -82.120081425835096, 28.95341728897009 ], [ -82.120504709723477, 28.954226458648503 ], [ -82.121386337217587, 28.955916494120721 ], [ -82.122002322836352, 28.957096955907694 ], [ -82.122702970843036, 28.958423364117689 ], [ -82.123245985726015, 28.959452735485353 ], [ -82.123523353297685, 28.959993033135341 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123814712793873, 28.96004656620239 ], [ -82.123741725348125, 28.959908292443316 ], [ -82.122787027828551, 28.958067188725167 ], [ -82.122074696968724, 28.956712612956682 ], [ -82.121578411037262, 28.955767735168973 ], [ -82.12074933403072, 28.954182688550837 ], [ -82.120016626944732, 28.952792253119199 ], [ -82.119844395760268, 28.952461926251477 ], [ -82.119228464018988, 28.951284014237054 ], [ -82.118959908358534, 28.950769318727367 ], [ -82.118081289949956, 28.949089508641944 ], [ -82.117106370472158, 28.947217638485849 ], [ -82.116216145683993, 28.945525015362023 ], [ -82.115717038192301, 28.944564745913091 ], [ -82.115159566426328, 28.943494362590268 ], [ -82.113481383191285, 28.940267833620183 ], [ -82.113317904131478, 28.939911873341433 ], [ -82.113168983566055, 28.939555899755888 ], [ -82.113031704663825, 28.939187103714577 ], [ -82.112897346783384, 28.938828555102262 ], [ -82.112777549741878, 28.938464870979843 ], [ -82.112666477636239, 28.938090932134148 ], [ -82.112575811939934, 28.937734907429359 ], [ -82.112514369360738, 28.937471086076368 ], [ -82.112455856657419, 28.937222634591453 ], [ -82.11238269031422, 28.936889652316804 ], [ -82.112321163528662, 28.936546413892426 ], [ -82.112294743562018, 28.936351733891083 ], [ -82.112256587815324, 28.936075084088735 ], [ -82.112221345979307, 28.93580099345246 ], [ -82.112197803711013, 28.935573007426367 ], [ -82.112177140583242, 28.935314276108368 ], [ -82.112153326857936, 28.934832665019993 ], [ -82.112138150426347, 28.93425882074882 ], [ -82.112142469048138, 28.932852352052812 ], [ -82.112152164682101, 28.931028806522836 ], [ -82.112151761371777, 28.930652211594737 ], [ -82.112155855559564, 28.929038232132612 ], [ -82.112160719236442, 28.928139012050398 ], [ -82.112170113789574, 28.926035710392469 ], [ -82.112177308044707, 28.924595934848607 ], [ -82.11218497954853, 28.92360192139887 ], [ -82.112191218798102, 28.921270614898066 ], [ -82.112195876977012, 28.920181814765648 ], [ -82.112199694593599, 28.918309083913535 ], [ -82.112196371608036, 28.917924805854192 ], [ -82.112172667981454, 28.91754310537663 ], [ -82.112140219168509, 28.917151164761005 ], [ -82.112099043438988, 28.916766918890605 ], [ -82.112046221213291, 28.916382680821489 ], [ -82.111999308846109, 28.916080419399503 ], [ -82.111929038976442, 28.915714131490414 ], [ -82.111864627642646, 28.915383702187025 ], [ -82.111733028657127, 28.914848380188015 ], [ -82.11160732849298, 28.914382222166523 ], [ -82.11149340886206, 28.914039024445003 ], [ -82.111350291553762, 28.913618994049749 ], [ -82.111251005519208, 28.913347518293744 ], [ -82.111090446134753, 28.912953121669211 ], [ -82.110918244302425, 28.912561295980773 ], [ -82.110746076249285, 28.912200211211697 ], [ -82.110503898240552, 28.911713653348066 ], [ -82.110232612825641, 28.911232241939864 ], [ -82.109952576219484, 28.910732904831793 ], [ -82.109655069927911, 28.910231018725185 ], [ -82.109383807309626, 28.909764976962055 ], [ -82.108994692443062, 28.90909395669112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 132nd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119852883618151, 28.949109337884522 ], [ -82.122562169710491, 28.949097716160711 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 11th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122562169710491, 28.949097716160711 ], [ -82.122566780214655, 28.950363202177336 ], [ -82.122570605345942, 28.950957428585774 ], [ -82.122574244729009, 28.951394845318806 ], [ -82.122577611146113, 28.9515984222305 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 132nd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122562169710491, 28.949097716160711 ], [ -82.122874946904005, 28.949097431200862 ], [ -82.123399630580536, 28.949102185440236 ], [ -82.123482354399783, 28.949093576011489 ], [ -82.123534882739179, 28.949078122302453 ], [ -82.123587372060754, 28.949029655630373 ], [ -82.123632352678428, 28.948978994220965 ], [ -82.123664815915447, 28.948923942883251 ], [ -82.123682252992722, 28.948857901868088 ], [ -82.123687784547528, 28.94877481395978 ], [ -82.123687671727936, 28.948678528010099 ], [ -82.123687563360633, 28.9485877424138 ], [ -82.123706259415655, 28.948527201501193 ], [ -82.123736841671146, 28.948468300892017 ], [ -82.123776808103315, 28.948411041967923 ], [ -82.123884254947612, 28.948285494533543 ], [ -82.123971747676251, 28.948214986957261 ], [ -82.124054244121496, 28.94815108686818 ], [ -82.124116754802031, 28.948113613307694 ], [ -82.124184282495889, 28.948087142141716 ], [ -82.124266824740815, 28.948062856015081 ], [ -82.12433688154178, 28.948058390199268 ], [ -82.124806992352305, 28.948058228386852 ], [ -82.124984036784724, 28.948051876837575 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 246 South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119881087121541, 28.92356308193769 ], [ -82.120600138969493, 28.923563311688117 ], [ -82.121968115500437, 28.923564256023759 ], [ -82.122770637786715, 28.923572220870831 ], [ -82.123844764504923, 28.923566897082488 ], [ -82.124185511845226, 28.923557894658476 ], [ -82.12452874009756, 28.923557579073591 ], [ -82.124812718741879, 28.923568179110006 ], [ -82.125706601025186, 28.923573868491989 ], [ -82.125876966790997, 28.923562848227593 ], [ -82.126133728960625, 28.92352785086668 ], [ -82.126375717277881, 28.923527624958027 ], [ -82.126630054236898, 28.923529558872037 ], [ -82.126674492223742, 28.923522999992635 ], [ -82.126718919689694, 28.92350775202587 ], [ -82.126857131148469, 28.923451138903086 ], [ -82.127412731762604, 28.923463651116627 ], [ -82.127876959559771, 28.923467559290142 ], [ -82.128365859734316, 28.923456232491667 ], [ -82.128674536845537, 28.923471146379995 ], [ -82.12895602297354, 28.923462188261823 ], [ -82.129435089566016, 28.92348562869952 ], [ -82.129632648681508, 28.92350064489889 ], [ -82.129827745678739, 28.923520008615085 ], [ -82.129931442247781, 28.923511219935978 ], [ -82.130106755793406, 28.923506706830015 ], [ -82.130279079552309, 28.923500399008763 ], [ -82.130672188373168, 28.923482264378102 ], [ -82.130911720511264, 28.923492895396738 ], [ -82.131158646901611, 28.92349265611217 ], [ -82.131430262585866, 28.923490220560289 ], [ -82.131743826469403, 28.923463847270142 ], [ -82.131941351299361, 28.923450620150351 ], [ -82.132084567228333, 28.923450479424616 ], [ -82.132620398048445, 28.923449954935503 ], [ -82.133057474297445, 28.923462560054933 ], [ -82.134116821342673, 28.923487582462311 ], [ -82.134492185336839, 28.923515449563041 ], [ -82.134741543242185, 28.92348478950926 ], [ -82.135267483477563, 28.923475573457864 ], [ -82.135751452264572, 28.923468571125014 ], [ -82.135958866045996, 28.923466190887279 ], [ -82.136213195502663, 28.923461589447118 ], [ -82.136282346702373, 28.923470209741087 ], [ -82.136336692585544, 28.923487534912123 ], [ -82.136383652535443, 28.92352007294998 ], [ -82.136410884939892, 28.923574355380396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 246", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119887399853425, 28.930802431512028 ], [ -82.121356708115812, 28.930794604575752 ], [ -82.122855647899158, 28.930784560161957 ], [ -82.123673028562607, 28.93078164141842 ], [ -82.124137285222332, 28.930783389615758 ], [ -82.124468196058842, 28.930789602662788 ], [ -82.124562035615284, 28.930789516247138 ], [ -82.124675622619648, 28.930782894302343 ], [ -82.12476450706329, 28.930769777801583 ], [ -82.124838571208429, 28.930754502206835 ], [ -82.124910163441228, 28.93073488522041 ], [ -82.124971871865469, 28.930713104612121 ], [ -82.125045914634271, 28.930678275349145 ], [ -82.125100206886927, 28.930649985186324 ], [ -82.125184108460516, 28.930599941297274 ], [ -82.125566567938293, 28.930347586367322 ], [ -82.125754103276591, 28.930230102357623 ], [ -82.125914499929678, 28.930134366047689 ], [ -82.126178555605435, 28.929990741136738 ], [ -82.126521606470646, 28.929825318222004 ], [ -82.126884511699373, 28.929686063030847 ], [ -82.126989192240941, 28.92964780591084 ], [ -82.127096728598701, 28.929618399316762 ], [ -82.127188077245094, 28.929600934364814 ], [ -82.127279428066032, 28.929587813886155 ], [ -82.127420171517656, 28.929576819525749 ], [ -82.127800466050871, 28.929580805128037 ], [ -82.128689477453676, 28.929599514530551 ], [ -82.129089561911044, 28.929631717594056 ], [ -82.129259964014636, 28.929642417478167 ], [ -82.129380968444892, 28.929644473550095 ], [ -82.129494556568773, 28.929640020262866 ], [ -82.129615546526026, 28.929631215246815 ], [ -82.129790838684698, 28.929602805329687 ], [ -82.12993649815121, 28.929572251850868 ], [ -82.130050057128074, 28.929546072732212 ], [ -82.130171020937624, 28.929515542753766 ], [ -82.130319114391838, 28.929458917492141 ], [ -82.130444978601972, 28.929397969883595 ], [ -82.130560964683255, 28.929337028990584 ], [ -82.13068927731527, 28.929260870654041 ], [ -82.130807706728831, 28.92917820450155 ], [ -82.131313459930013, 28.928799714216478 ], [ -82.132009148180259, 28.928260279789505 ], [ -82.133114278929128, 28.927355470985571 ], [ -82.133647058200083, 28.926883531853193 ], [ -82.133740770036425, 28.926787853027054 ], [ -82.133807351831848, 28.92671609730284 ], [ -82.133878858718859, 28.926635646689611 ], [ -82.133940484275712, 28.926550862192151 ], [ -82.133997168610577, 28.926463908940875 ], [ -82.134039052484724, 28.92639000575933 ], [ -82.134083392065122, 28.926305237429428 ], [ -82.13411536473437, 28.926205275919887 ], [ -82.134130066615839, 28.92611619153012 ], [ -82.134134886266679, 28.926022771502062 ], [ -82.134139710454136, 28.925933698713504 ], [ -82.134146998733158, 28.925840278037743 ], [ -82.134164128441299, 28.925718605837314 ], [ -82.134198562161359, 28.925612122794139 ], [ -82.134242874451232, 28.925505629932239 ], [ -82.134294598122096, 28.925403476036124 ], [ -82.134353718477698, 28.925292623886225 ], [ -82.134405455142328, 28.925199159010138 ], [ -82.134484317200432, 28.9250795980949 ], [ -82.134560724701231, 28.924968727750969 ], [ -82.134654401480574, 28.924846980169281 ], [ -82.134777684463089, 28.924705650327905 ], [ -82.134886184927083, 28.92459040416152 ], [ -82.135021830226506, 28.924462095377386 ], [ -82.135152569584932, 28.924359861303092 ], [ -82.135295646633395, 28.924248924774115 ], [ -82.135488078579527, 28.924116214138699 ], [ -82.135673145448166, 28.924016097823312 ], [ -82.135912526981997, 28.923909409401972 ], [ -82.136319674285573, 28.923691758070856 ], [ -82.136384639324348, 28.923646950559551 ], [ -82.136403549621107, 28.92361662256554 ], [ -82.136410884939892, 28.923574355380396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110580120647825, 28.934507999192714 ], [ -82.110670380165047, 28.934671296188505 ], [ -82.110809237894998, 28.934921115606691 ], [ -82.110941175312007, 28.935180086178338 ], [ -82.111066197679264, 28.935451251349278 ], [ -82.111132185779951, 28.935597500180812 ], [ -82.111371863518897, 28.936164225680013 ], [ -82.111594320040183, 28.936822403156135 ], [ -82.111742460596304, 28.937338509016246 ], [ -82.111868243100474, 28.93785590178684 ], [ -82.111958883548155, 28.938191433241894 ], [ -82.112069962480959, 28.938573058387892 ], [ -82.112192688807426, 28.938952112149739 ], [ -82.112297837739845, 28.939236391951439 ], [ -82.112423444759301, 28.939584700195656 ], [ -82.112543167504512, 28.939879215882577 ], [ -82.11267163962566, 28.940181408070551 ], [ -82.112823432543408, 28.940504077111775 ], [ -82.113529745463921, 28.941894577052683 ], [ -82.114641711071755, 28.944014860552695 ], [ -82.115067838903826, 28.944834295454395 ], [ -82.115426833735782, 28.945515444339023 ], [ -82.116360837666079, 28.947302821542291 ], [ -82.116836604511406, 28.948209311984652 ], [ -82.117303631907703, 28.949108118864341 ], [ -82.118155960622317, 28.95073159462547 ], [ -82.119025831614238, 28.952388355262521 ], [ -82.119203904410597, 28.952736610137851 ], [ -82.119332347495103, 28.95298243649329 ], [ -82.119440377401958, 28.95320778345393 ], [ -82.119519228113049, 28.95338960713854 ], [ -82.119589325105878, 28.953556065314071 ], [ -82.119650699372144, 28.953737902572769 ], [ -82.119703333594941, 28.953914624342932 ], [ -82.119764766058907, 28.954145137283099 ], [ -82.119796996300963, 28.954311629790919 ], [ -82.119829264944684, 28.954508865048783 ], [ -82.119855714412083, 28.95471378844697 ], [ -82.119870503192971, 28.954908476686605 ], [ -82.119882416511516, 28.955139033461009 ], [ -82.119882940211625, 28.955595042660207 ], [ -82.119896732345197, 28.957462624952399 ], [ -82.119898019805788, 28.958584718140205 ], [ -82.119902364504128, 28.959971534442353 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 122nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104470940972064, 28.934525045738074 ], [ -82.105335764776697, 28.934524375206831 ], [ -82.107262213020888, 28.934525300481663 ], [ -82.107398024649285, 28.934515438954627 ], [ -82.108542823736983, 28.934532812924424 ], [ -82.110422142830075, 28.934528391924363 ], [ -82.110580120647825, 28.934507999192714 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109019615358989, 28.93189776384877 ], [ -82.109233420369833, 28.932258472292027 ], [ -82.109436110731835, 28.932594803105996 ], [ -82.109788748349359, 28.933182166860913 ], [ -82.110380174242195, 28.934154598419635 ], [ -82.110580120647825, 28.934507999192714 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108375454521493, 28.930832709912579 ], [ -82.109019615358989, 28.93189776384877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109019615358989, 28.93189776384877 ], [ -82.109036036379592, 28.931697804394918 ], [ -82.109041506491067, 28.931627086416817 ], [ -82.109049755564214, 28.931563681985971 ], [ -82.109069084460643, 28.931492953736257 ], [ -82.109093951972355, 28.931417344125659 ], [ -82.109132678227184, 28.931341722429007 ], [ -82.109168646817238, 28.931278295625653 ], [ -82.109218463421485, 28.931207542747543 ], [ -82.109273833347871, 28.93114410025143 ], [ -82.109337527405074, 28.931090403886067 ], [ -82.109412112685064, 28.93103551397266 ], [ -82.109492634839327, 28.930982989535849 ], [ -82.109578515198208, 28.930941468681063 ], [ -82.109753048588303, 28.930855983856205 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118881953696928, 28.930655269162951 ], [ -82.118743719524048, 28.930703183228836 ], [ -82.118622762852638, 28.930742392923932 ], [ -82.118511669863778, 28.93077073207164 ], [ -82.118400563504878, 28.930788208441435 ], [ -82.118311676799152, 28.930799147123285 ], [ -82.118222785172151, 28.930805743919823 ], [ -82.117689387491993, 28.930808380951188 ], [ -82.11580275125273, 28.93082304398002 ], [ -82.114076617549259, 28.930828855328638 ], [ -82.112673983302585, 28.930838720921717 ], [ -82.112157877104494, 28.93084349435572 ], [ -82.111994894667347, 28.930843629386594 ], [ -82.111775113252634, 28.930843812065291 ], [ -82.110891061046644, 28.930851055978597 ], [ -82.109753048588303, 28.930855983856205 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10803947890102, 28.930259959570428 ], [ -82.108192211603196, 28.930535374271599 ], [ -82.108375454521493, 28.930832709912579 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099214732999258, 28.927229504063298 ], [ -82.099071341023034, 28.927231312602757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 222", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102069680102943, 28.901641266686344 ], [ -82.10200715697421, 28.901624466984732 ], [ -82.101941324044773, 28.901619359901108 ], [ -82.101684571072283, 28.901564967466069 ], [ -82.101372556122669, 28.901517160250801 ], [ -82.100649591064027, 28.901275203259047 ], [ -82.100509196897335, 28.901266155460249 ], [ -82.100402613233882, 28.9012730982395 ], [ -82.100314239777532, 28.901291463166785 ], [ -82.100233658699111, 28.901302963012174 ], [ -82.100147892079733, 28.901328190576947 ], [ -82.10009331692099, 28.901348820408295 ], [ -82.09952836255826, 28.901618403372176 ], [ -82.099203253875331, 28.90174893340259 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 222", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099203253875331, 28.90174893340259 ], [ -82.099155270531355, 28.901839078195223 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 222", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099155270531355, 28.901839078195223 ], [ -82.098754914139846, 28.901846234285408 ], [ -82.097660947744075, 28.901861666738935 ], [ -82.096192612360184, 28.901871868727802 ], [ -82.095287903096434, 28.901881658803593 ], [ -82.095063288008802, 28.901883646362112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 222", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.095063288008802, 28.901883646362112 ], [ -82.093000122045623, 28.90189056785227 ], [ -82.090916164358291, 28.901904792024556 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 222", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090916164358291, 28.901904792024556 ], [ -82.08857222852545, 28.901917323237534 ], [ -82.088306014198011, 28.901917496832851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 222", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.088306014198011, 28.901917496832851 ], [ -82.086793988272419, 28.901914814013566 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 237", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099150338726531, 28.909114412710153 ], [ -82.099149485316076, 28.910489378538248 ], [ -82.099158662609113, 28.911175202214569 ], [ -82.099148504854853, 28.912012997358453 ], [ -82.099154836645127, 28.912593689308736 ], [ -82.099159668670907, 28.913574963516044 ], [ -82.099161060291365, 28.915047436915014 ], [ -82.099164523601999, 28.916146994509411 ], [ -82.099170568534973, 28.917417025995181 ], [ -82.099179272873187, 28.918938505837293 ], [ -82.099185112616354, 28.919989051129551 ], [ -82.099196286275031, 28.921559538492623 ], [ -82.099197724270397, 28.923078890597285 ], [ -82.099205697503777, 28.923826841310849 ], [ -82.099213824222403, 28.924734612416724 ], [ -82.099217601636951, 28.926165741238339 ], [ -82.099214732999258, 28.927229504063298 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 233A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099071341023034, 28.927231312602757 ], [ -82.099066513547683, 28.928272914566826 ], [ -82.099060103058278, 28.929904274351316 ], [ -82.099063657126933, 28.930931761515975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 4th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099063657126933, 28.930931761515975 ], [ -82.099063777489476, 28.931059059620619 ], [ -82.099001925105213, 28.931231870505318 ], [ -82.098984011482941, 28.931416013612509 ], [ -82.098912327540376, 28.932125306973116 ], [ -82.098886902994991, 28.932566328349321 ], [ -82.098858904249127, 28.933018717753331 ], [ -82.098686239113505, 28.933514402719354 ], [ -82.098652993646638, 28.933882686841912 ], [ -82.098591229886537, 28.934153243659537 ], [ -82.098597299084162, 28.935110259334991 ], [ -82.09860333101895, 28.936028630625657 ], [ -82.098616289395267, 28.936069538333111 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 120th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103274553100007, 28.930849957448661 ], [ -82.107041874191438, 28.930870678900725 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103274553100007, 28.930849957448661 ], [ -82.103249342132784, 28.93091840837754 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 210", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099063657126933, 28.930931761515975 ], [ -82.098190258660907, 28.93093239787915 ], [ -82.097540101425054, 28.930939477204824 ], [ -82.096924240148653, 28.930935442366973 ], [ -82.095044010990094, 28.930928085420131 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099071341023034, 28.927231312602757 ], [ -82.097370002094877, 28.927247889478672 ], [ -82.096886926292299, 28.927255574372296 ], [ -82.095790391322026, 28.927263689298034 ], [ -82.0946563316122, 28.927271823333861 ], [ -82.093019867331449, 28.927283959850946 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 233", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093019867331449, 28.927283959850946 ], [ -82.09302903095265, 28.928213792299609 ], [ -82.093043327823708, 28.929288872271908 ], [ -82.093060974084523, 28.930380455417264 ], [ -82.093059551574314, 28.93065775724758 ], [ -82.09305967924989, 28.930801541178599 ], [ -82.093063484346445, 28.930889205362092 ], [ -82.093374113878696, 28.930888992416136 ], [ -82.094316420086614, 28.93088833841264 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 112th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.092549490809432, 28.920025647385707 ], [ -82.090913409503926, 28.920027083554348 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093019867331449, 28.927283959850946 ], [ -82.091171964478264, 28.927300554491211 ], [ -82.090997503011835, 28.927301244769154 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 7th Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090913409503926, 28.920027083554348 ], [ -82.090998295041942, 28.920858287089036 ], [ -82.090985564694023, 28.921202169991012 ], [ -82.090976045594005, 28.922545123351274 ], [ -82.090989596076824, 28.923746385436466 ], [ -82.090992939637701, 28.925195243618703 ], [ -82.090997926985779, 28.926137916290223 ], [ -82.091002520626617, 28.926625756373564 ], [ -82.090997503011835, 28.927301244769154 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090997503011835, 28.927301244769154 ], [ -82.089613280562489, 28.927311337626698 ], [ -82.087997663823941, 28.927327068942667 ], [ -82.086959497130053, 28.927333240567481 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 229", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086937159003583, 28.922078386119711 ], [ -82.08694161533127, 28.922425009589496 ], [ -82.086941869253693, 28.922731287840637 ], [ -82.086946894347406, 28.923763827796098 ], [ -82.086949793990627, 28.924745015790897 ], [ -82.086954855423301, 28.926764704625565 ], [ -82.086959497130053, 28.927333240567481 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 229", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086885758751805, 28.912875398292062 ], [ -82.086885874681855, 28.913016616513712 ], [ -82.086886682760678, 28.913992305221431 ], [ -82.086883759184559, 28.915494354693756 ], [ -82.086877953713937, 28.916035389111073 ], [ -82.086880779872345, 28.91693038022489 ], [ -82.086886074347262, 28.918289373030756 ], [ -82.086918658138188, 28.919877595897489 ], [ -82.0869342084642, 28.921033007628939 ], [ -82.086937159003583, 28.922078386119711 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 107th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091923736625901, 28.912864736984936 ], [ -82.091790328121576, 28.91285749264658 ], [ -82.091617316488637, 28.912850274051461 ], [ -82.091508930188056, 28.912854015108941 ], [ -82.091404243288721, 28.912855962527619 ], [ -82.091069147780715, 28.912881821421713 ], [ -82.090937818783786, 28.91286723737392 ], [ -82.090841913825173, 28.9128416259651 ], [ -82.090433363583273, 28.912832729144945 ], [ -82.089893513396476, 28.912840423921658 ], [ -82.089138961661419, 28.912840921328677 ], [ -82.08816554969097, 28.912843393199434 ], [ -82.087763265836955, 28.912847322968641 ], [ -82.087640288812153, 28.912851070358407 ], [ -82.087586096106534, 28.912851105381804 ], [ -82.087527732759071, 28.91285114307621 ], [ -82.08744435684045, 28.91285119597902 ], [ -82.087327634224266, 28.912854939951281 ], [ -82.087206740457219, 28.912856851236192 ], [ -82.086885758751805, 28.912875398292062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 229", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086870155169166, 28.909134039100074 ], [ -82.086876800615258, 28.909609041434106 ], [ -82.086884065269572, 28.910830484853349 ], [ -82.086882791015427, 28.911808009579858 ], [ -82.086885758751805, 28.912875398292062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 229", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086857823762273, 28.906826869843549 ], [ -82.08685605075766, 28.907204676045456 ], [ -82.086862953097025, 28.907987790904098 ], [ -82.086867413002977, 28.908339917304971 ], [ -82.086870155169166, 28.909134039100074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 229", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086793988272419, 28.901914814013566 ], [ -82.086808540767208, 28.902683882148178 ], [ -82.086826329216365, 28.904030031960094 ], [ -82.086842097253026, 28.905453209153944 ], [ -82.086857823762273, 28.906826869843549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103245375864091, 28.927199875805069 ], [ -82.103251005010875, 28.928109982234194 ], [ -82.103266003431571, 28.928522621036368 ], [ -82.103266887439929, 28.929419444640999 ], [ -82.103274553100007, 28.930849957448661 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 239", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103269345279344, 28.923639514530151 ], [ -82.10328166866978, 28.925540414110571 ], [ -82.103274271570314, 28.927197542987372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 231", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111678641081184, 28.901781642754965 ], [ -82.11425165153679, 28.901783486465504 ], [ -82.115886584745823, 28.90176903462876 ], [ -82.117091401345334, 28.901764560383405 ], [ -82.118655337804796, 28.901737374246093 ], [ -82.119411793251018, 28.901728175267088 ], [ -82.120005194108785, 28.901718582510629 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 226", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108218215642211, 28.899989332456801 ], [ -82.108307881967789, 28.899996121862571 ], [ -82.10850865309186, 28.900007968960498 ], [ -82.108684077021763, 28.900009542695621 ], [ -82.108871194880493, 28.900012821168474 ], [ -82.108995931378061, 28.9000075768671 ], [ -82.110257525297357, 28.899991944969099 ], [ -82.110886492153114, 28.899993150409411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 226", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108218215642211, 28.899989332456801 ], [ -82.108132384811398, 28.899922509219731 ], [ -82.107816386892182, 28.899687779519386 ], [ -82.107603805861785, 28.899564453866802 ], [ -82.107445871267103, 28.899507979034514 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 231", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107445871267103, 28.899507979034514 ], [ -82.107426922214387, 28.900037987904192 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 231", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107426922214387, 28.900037987904192 ], [ -82.107442942851421, 28.900454766847041 ], [ -82.107457758570433, 28.901598787008911 ], [ -82.10745793257135, 28.901768591875161 ], [ -82.107473559859486, 28.901801166821759 ], [ -82.107495026080457, 28.901825162608578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 231", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107495026080457, 28.901825162608578 ], [ -82.107526222380272, 28.901835429444525 ], [ -82.107561376321684, 28.901834392768315 ], [ -82.107974517960713, 28.90182478126172 ], [ -82.108514108939445, 28.901796457382567 ], [ -82.109726340454714, 28.901783791560195 ], [ -82.111137557281921, 28.901782087839504 ], [ -82.111678641081184, 28.901781642754965 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 231", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107479409439236, 28.89447188775037 ], [ -82.107458429438566, 28.895552575286516 ], [ -82.10742697327791, 28.896747365543227 ], [ -82.107427922159118, 28.897672798709699 ], [ -82.107448479851456, 28.898249026338128 ], [ -82.107445871267103, 28.899507979034514 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 5th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110886492153114, 28.899993150409411 ], [ -82.110976927946837, 28.899993420118928 ], [ -82.111235240911697, 28.899966139328296 ], [ -82.111556850118603, 28.899977472949168 ], [ -82.111661787157843, 28.900597489870414 ], [ -82.111666695741562, 28.900814284241669 ], [ -82.111665333869581, 28.901000898345895 ], [ -82.111657954447139, 28.901391967877217 ], [ -82.111678641081184, 28.901781642754965 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103267775354254, 28.894464356602082 ], [ -82.10523693314056, 28.894468518218751 ], [ -82.106273920403794, 28.894469033540549 ], [ -82.107479409439236, 28.89447188775037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 241", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103270908591185, 28.888150391352085 ], [ -82.103247550748975, 28.888264214253166 ], [ -82.103214162414403, 28.890226699001087 ], [ -82.103244512941814, 28.890485858355223 ], [ -82.103257863143, 28.89094556190339 ], [ -82.103261115305429, 28.892065521601591 ], [ -82.103266507276132, 28.893176021596716 ], [ -82.103267775354254, 28.894464356602082 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103267775354254, 28.894464356602082 ], [ -82.102238767700385, 28.894460340986164 ], [ -82.100731333667781, 28.894477262509806 ], [ -82.100451892608973, 28.894479724714827 ], [ -82.100238479914978, 28.894479883592471 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 2nd Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.098504521713167, 28.894490180282645 ], [ -82.098507482305365, 28.89453116681506 ], [ -82.09851578176729, 28.89456571427964 ], [ -82.098528208768215, 28.894596619776767 ], [ -82.098544759558308, 28.89461661259233 ], [ -82.098575778083685, 28.894638413017013 ], [ -82.098604721745858, 28.894652939716337 ], [ -82.098637796369218, 28.894662009915965 ], [ -82.09867293048967, 28.894667439641449 ], [ -82.098714257103723, 28.894663772393958 ], [ -82.098761780995858, 28.894658282489207 ], [ -82.098827898082249, 28.894645503787793 ], [ -82.098879553937124, 28.894640010829367 ], [ -82.098927083978026, 28.894639976154387 ], [ -82.098964287860767, 28.894647223325904 ], [ -82.098999428166891, 28.894658110058788 ], [ -82.099030441648011, 28.894674452382656 ], [ -82.099057324546052, 28.894694438489118 ], [ -82.099082147306234, 28.894721698615992 ], [ -82.099096646303948, 28.894754422479647 ], [ -82.099109081063574, 28.894794422175305 ], [ -82.099117389334253, 28.894838062048969 ], [ -82.099123649159054, 28.894903527295568 ], [ -82.099136138567488, 28.894998083479042 ], [ -82.099144477463241, 28.895076275916818 ], [ -82.099148739363542, 28.895212665928923 ], [ -82.09915089918475, 28.895310866822985 ], [ -82.099159266642104, 28.895418158335794 ], [ -82.099161404135884, 28.895492718141522 ], [ -82.099165604202284, 28.895563639275661 ], [ -82.099165701144912, 28.895667297867252 ], [ -82.099167840368139, 28.895743676700864 ], [ -82.099167922869398, 28.895830967621151 ], [ -82.09917213568022, 28.895916437389058 ], [ -82.099172218187391, 28.896003730111708 ], [ -82.099172310312568, 28.896100113474475 ], [ -82.099174494242874, 28.896223775370682 ], [ -82.099174549249042, 28.89628196991502 ], [ -82.099174712548304, 28.89645473361217 ], [ -82.099174782333037, 28.896527477691595 ], [ -82.099174834596184, 28.896583854105799 ], [ -82.09917489304047, 28.89664568490354 ], [ -82.09917081324528, 28.896702064339781 ], [ -82.09916879845008, 28.896758441362465 ], [ -82.099168840728552, 28.896802087266575 ], [ -82.099164754048147, 28.896851191481655 ], [ -82.099160660488991, 28.896893021378926 ], [ -82.099156561770982, 28.896929395988977 ], [ -82.099156606457541, 28.896976679953692 ], [ -82.099160791114244, 28.897031233407315 ], [ -82.099169095817302, 28.897073054233545 ], [ -82.09919393497978, 28.897114863862839 ], [ -82.099212572276485, 28.897154858994949 ], [ -82.099233279761776, 28.897200308801345 ], [ -82.099258115539371, 28.897238481259333 ], [ -82.099276740507392, 28.897267564907775 ], [ -82.099301559103765, 28.897287550662753 ], [ -82.099334638432055, 28.897303894101043 ], [ -82.099378048632829, 28.897316590991981 ], [ -82.099448333883629, 28.897340182343878 ], [ -82.099533087287227, 28.897365579360493 ], [ -82.099601303809806, 28.897387352217368 ], [ -82.099698457328742, 28.897414559951173 ], [ -82.099746009378109, 28.897436347932089 ], [ -82.099781157621351, 28.897454507866779 ], [ -82.099830780941602, 28.897481749582802 ], [ -82.099865934408427, 28.897505365683628 ], [ -82.099895401599625, 28.897524893145061 ], [ -82.09992385128929, 28.897561244684738 ], [ -82.099944545029999, 28.897590780569136 ], [ -82.099962671128736, 28.897636231260293 ], [ -82.099970473730309, 28.897693056705322 ], [ -82.099962779426647, 28.897749892676945 ], [ -82.099949906595057, 28.897795366226717 ], [ -82.09993704891049, 28.897856752679779 ], [ -82.099908700882835, 28.897927244804755 ], [ -82.099878807106293, 28.898003646305099 ], [ -82.099859736906026, 28.898050034829346 ], [ -82.099833952130297, 28.898100062750025 ], [ -82.099805578016159, 28.898143275715981 ], [ -82.099782357590087, 28.898172844853551 ], [ -82.099753970463794, 28.898202415985011 ], [ -82.099702329425753, 28.898227461150629 ], [ -82.099640346241017, 28.898241145855906 ], [ -82.099524104596668, 28.898243504144197 ], [ -82.099340689449107, 28.898236819130148 ], [ -82.099255443724815, 28.898236881579383 ], [ -82.099219296163824, 28.898255093846323 ], [ -82.099190892787931, 28.89826875466288 ], [ -82.099172834551325, 28.898293772339368 ], [ -82.099167717282072, 28.898346060602741 ], [ -82.099174649570784, 28.898560777922203 ], [ -82.099173113900747, 28.898589291639432 ], [ -82.099180923615648, 28.898652933973892 ], [ -82.099185194162175, 28.898901280945793 ], [ -82.099173407157366, 28.899242273096402 ], [ -82.099197965128269, 28.899600997645894 ], [ -82.099178148087958, 28.899988168886964 ], [ -82.099158368581627, 28.900410860802825 ], [ -82.09918540334256, 28.900713506624758 ], [ -82.099211653563913, 28.900981149293923 ], [ -82.099222540726586, 28.901495874641391 ], [ -82.099203253875331, 28.90174893340259 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.098504521713167, 28.894490180282645 ], [ -82.097138587591232, 28.894494774100096 ], [ -82.095108161827326, 28.894516067636154 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 235", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.095108161827326, 28.894516067636154 ], [ -82.095086265398692, 28.895247067885453 ], [ -82.095074981600348, 28.896375139273189 ], [ -82.095082169743577, 28.897517636986588 ], [ -82.095073150647252, 28.898882148014685 ], [ -82.095066149795869, 28.90020875274984 ], [ -82.095064351587027, 28.900763585535778 ], [ -82.095061161536279, 28.90149565023366 ], [ -82.095063288008802, 28.901883646362112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 5th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.095063288008802, 28.901883646362112 ], [ -82.095061264595586, 28.903872702436939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.095108161827326, 28.894516067636154 ], [ -82.092930584280552, 28.894541718305458 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 6th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.092930584280552, 28.894541718305458 ], [ -82.092996364295161, 28.894711333205322 ], [ -82.093043660772793, 28.894850279011248 ], [ -82.093074572353515, 28.895016308589714 ], [ -82.09306437643346, 28.895083096459423 ], [ -82.092851282247011, 28.895316075077265 ], [ -82.092597223122169, 28.895612253005606 ], [ -82.092550134249848, 28.895706138560161 ], [ -82.092511239869424, 28.895790996431767 ], [ -82.092484669798083, 28.895895699146184 ], [ -82.092470402924917, 28.895998587967821 ], [ -82.092456268452196, 28.896249478795365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.092930584280552, 28.894541718305458 ], [ -82.090926818025565, 28.894561124166923 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 235A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090926818025565, 28.894561124166923 ], [ -82.090919369662714, 28.895432896977965 ], [ -82.090914540902887, 28.896961650765054 ], [ -82.090895069703677, 28.898161923582084 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 235A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090895069703677, 28.898161923582084 ], [ -82.090895201007825, 28.898313535647258 ], [ -82.090889394936681, 28.898714228203989 ], [ -82.090902763651542, 28.899939745729419 ], [ -82.090913244552681, 28.90093480744299 ], [ -82.090916164358291, 28.901904792024556 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 229P", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090895069703677, 28.898161923582084 ], [ -82.090340197331273, 28.898170921186157 ], [ -82.089168113201012, 28.898173900211518 ], [ -82.088735348670596, 28.89817598950907 ], [ -82.088370270350509, 28.898179837031119 ], [ -82.087900586370154, 28.89818194769429 ], [ -82.087424746843595, 28.898178645096777 ], [ -82.087064952369474, 28.898181657367441 ], [ -82.086815849780464, 28.898181292771298 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 97th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086815849780464, 28.898181292771298 ], [ -82.086502204790548, 28.898173079191714 ], [ -82.085905452348896, 28.898138737946478 ], [ -82.085251467179262, 28.898104772902343 ], [ -82.082641348415407, 28.898160358544519 ], [ -82.081759250207824, 28.898163986786521 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 9th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.088306014198011, 28.901917496832851 ], [ -82.08830401583873, 28.902016328540824 ], [ -82.088324917271166, 28.902137105442346 ], [ -82.088347990667231, 28.902371351094885 ], [ -82.08835087045729, 28.903459633066035 ], [ -82.088356341380361, 28.903865731672088 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 229", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086815849780464, 28.898181292771298 ], [ -82.0867888034591, 28.899577851052772 ], [ -82.086788934984057, 28.900833190250133 ], [ -82.086793988272419, 28.901914814013566 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 229", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08688978126969, 28.894580465987776 ], [ -82.086880109696395, 28.895284383793005 ], [ -82.086848603812498, 28.896710841372805 ], [ -82.086815849780464, 28.898181292771298 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 229", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086845762259003, 28.890952641121864 ], [ -82.086861963672831, 28.891943070342752 ], [ -82.086888594826007, 28.893145569841671 ], [ -82.08688978126969, 28.894580465987776 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 229", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086847689690089, 28.887083379267835 ], [ -82.086847821127108, 28.887243563445946 ], [ -82.086849059148435, 28.888739376823555 ], [ -82.086842131003067, 28.889659881286473 ], [ -82.086845762259003, 28.890952641121864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 90th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086847689690089, 28.887083379267835 ], [ -82.085032748440952, 28.887113856662779 ], [ -82.083974033127305, 28.887134822807816 ], [ -82.082897358008012, 28.887133226903636 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 229", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086830100128381, 28.883633767384044 ], [ -82.086827057428977, 28.883832308625017 ], [ -82.086841306199247, 28.885562751973168 ], [ -82.086847689690089, 28.887083379267835 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 87th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.089265350838431, 28.883629931105713 ], [ -82.089139750360815, 28.883639038452777 ], [ -82.088744961066126, 28.883612223655753 ], [ -82.088462984680049, 28.883614664374782 ], [ -82.08808873568222, 28.883628443160848 ], [ -82.086830100128381, 28.883633767384044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 229", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086824229676907, 28.879635905985502 ], [ -82.086824509366849, 28.879974325195061 ], [ -82.086822558052575, 28.880714337898524 ], [ -82.086823449371636, 28.881792767999961 ], [ -82.086830100128381, 28.883633767384044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 229", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086828736150196, 28.872680243693488 ], [ -82.086824173464379, 28.873363855130833 ], [ -82.086816933430967, 28.873907587209235 ], [ -82.086818181510822, 28.875416940761092 ], [ -82.086823924168257, 28.876163718105094 ], [ -82.086821880469444, 28.876793180524931 ], [ -82.086827659705861, 28.877582823278409 ], [ -82.086828023287239, 28.878022768471812 ], [ -82.086828372984797, 28.878444664030198 ], [ -82.086823726245996, 28.879026749921742 ], [ -82.086824229676907, 28.879635905985502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 229", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08683908026795, 28.871958186851835 ], [ -82.086828736150196, 28.872680243693488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 232A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086828736150196, 28.872680243693488 ], [ -82.084726448066121, 28.872707557543031 ], [ -82.083570985820884, 28.87271161537041 ], [ -82.082539315993657, 28.872715067522968 ], [ -82.081091134687611, 28.872721579756774 ], [ -82.078529269762939, 28.872740005006321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 225", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078603670622115, 28.865973809793964 ], [ -82.078611887190391, 28.866679975565319 ], [ -82.078589991708967, 28.868248003188878 ], [ -82.078558319982108, 28.870454523671953 ], [ -82.078539551652568, 28.871061999102636 ], [ -82.078526263207735, 28.872144387720304 ], [ -82.078529269762939, 28.872740005006321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07890601593553, 28.865856314636098 ], [ -82.078780480836116, 28.865924072725413 ], [ -82.078685681467903, 28.865969249043932 ], [ -82.078639552613311, 28.865973789046194 ], [ -82.078603670622115, 28.865973809793964 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086848942127233, 28.871847230887123 ], [ -82.085599899581169, 28.871454912762029 ], [ -82.085156106869974, 28.871294844622607 ], [ -82.084920978602383, 28.871199300947023 ], [ -82.084612361663901, 28.871062422205846 ], [ -82.084380155688379, 28.870948771986011 ], [ -82.084156765831025, 28.870835114999945 ], [ -82.083998036016709, 28.870747281248207 ], [ -82.083789333152026, 28.870628441672523 ], [ -82.083554169598031, 28.870486344080934 ], [ -82.083266080464426, 28.870295138276283 ], [ -82.083072048083508, 28.870147840824462 ], [ -82.082869185418062, 28.869979857797432 ], [ -82.082639844305405, 28.869767925920268 ], [ -82.082386965083785, 28.86950945276195 ], [ -82.082045840602447, 28.869121723568163 ], [ -82.081004142765522, 28.867933915928784 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 232", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070686002908928, 28.872746564740005 ], [ -82.07028871114359, 28.872744513006165 ], [ -82.066428603379251, 28.872764503297713 ], [ -82.066261485720219, 28.872765937291057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06874806967852, 28.887368202666817 ], [ -82.068666020260011, 28.887344779821696 ], [ -82.068545006728044, 28.887319572874663 ], [ -82.068409640286291, 28.887297982237726 ], [ -82.068225054947945, 28.887281830864662 ], [ -82.068056884360033, 28.887274694923509 ], [ -82.067911276659046, 28.887274767709147 ], [ -82.066190647775272, 28.887281031496908 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 19th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.072347788140632, 28.883679478581907 ], [ -82.072193983877909, 28.883679559440353 ], [ -82.070520064695316, 28.883682129740546 ], [ -82.070458548624217, 28.8836911873356 ], [ -82.070414985645655, 28.883713770107377 ], [ -82.070386805695065, 28.883740859110436 ], [ -82.070363765850246, 28.883785993252395 ], [ -82.070358666488801, 28.883828863261183 ], [ -82.070363931103927, 28.887098444808284 ], [ -82.070351659912376, 28.887147184356973 ], [ -82.070329119004555, 28.88717607411553 ], [ -82.070304523817413, 28.887197745633884 ], [ -82.070267625167432, 28.887223033607366 ], [ -82.070234818448824, 28.887230269857074 ], [ -82.068969470699741, 28.887236331361485 ], [ -82.068918200865028, 28.887236358257358 ], [ -82.068873090858233, 28.887250820611779 ], [ -82.06883619137281, 28.887270692592566 ], [ -82.068809543180791, 28.887290560278764 ], [ -82.06874806967852, 28.887368202666817 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070298508821054, 28.89090059464661 ], [ -82.070305640048261, 28.890065820827253 ], [ -82.07031021613345, 28.889240074827729 ], [ -82.070304998320822, 28.889104710979982 ], [ -82.070284383134748, 28.888944536445795 ], [ -82.070253510468262, 28.888779854806522 ], [ -82.070212395923093, 28.888635483790186 ], [ -82.070161041568511, 28.88851142428992 ], [ -82.070089171381071, 28.88837383634317 ], [ -82.070007049914039, 28.888240767837587 ], [ -82.069919812402247, 28.888125749702926 ], [ -82.069794103977657, 28.887981422019472 ], [ -82.069699186044559, 28.887882200626102 ], [ -82.069565811326186, 28.887771717394521 ], [ -82.069443504813862, 28.887683706461118 ], [ -82.069349128343674, 28.887624194739889 ], [ -82.069260908150412, 28.887571897309936 ], [ -82.069154227169875, 28.887514193609647 ], [ -82.069051655543774, 28.88746912263775 ], [ -82.068938834028359, 28.887427667786717 ], [ -82.068860886326604, 28.887402438382129 ], [ -82.068791146128248, 28.887382620382464 ], [ -82.06874806967852, 28.887368202666817 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 17th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074520131253024, 28.886386084865183 ], [ -82.07451041172861, 28.887141895050615 ], [ -82.074500488396623, 28.887608917133161 ], [ -82.074496531794807, 28.88926040758458 ], [ -82.074489340874223, 28.88996657968702 ], [ -82.074479376664755, 28.890374945843948 ], [ -82.074497671583742, 28.890908781905679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 228", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078537948119831, 28.890911874702784 ], [ -82.077738102321462, 28.890912334871807 ], [ -82.075741051852191, 28.890911206444351 ], [ -82.074497671583742, 28.890908781905679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 228", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086845762259003, 28.890952641121864 ], [ -82.086122817396515, 28.890944077938133 ], [ -82.084870076390402, 28.890939649084629 ], [ -82.084413754962128, 28.890939934543859 ], [ -82.082168025633962, 28.890927775251679 ], [ -82.081191284244525, 28.890919338072155 ], [ -82.078537948119831, 28.890911874702784 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 228", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074497671583742, 28.890908781905679 ], [ -82.074310561815366, 28.890914252145741 ], [ -82.072249412378909, 28.890899571625638 ], [ -82.070298508821054, 28.89090059464661 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 222", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074291127956869, 28.901805774594006 ], [ -82.072389927538126, 28.901791331371566 ], [ -82.07022260179582, 28.901754158370139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 223", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07022260179582, 28.901754158370139 ], [ -82.070237012937312, 28.903173816775414 ], [ -82.07024521620545, 28.903940895210315 ], [ -82.070259375016036, 28.905942072010575 ], [ -82.070261341125146, 28.906701586692201 ], [ -82.070269068472399, 28.907530568846486 ], [ -82.070269474372864, 28.908135831117118 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 216A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086870155169166, 28.909134039100074 ], [ -82.08596275712533, 28.909146654902909 ], [ -82.083886910787797, 28.90915878507916 ], [ -82.082799749461657, 28.909157647610634 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 216A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.082799749461657, 28.909157647610634 ], [ -82.081756171530145, 28.90914835263596 ], [ -82.08042798392421, 28.909137866057502 ], [ -82.07854340147712, 28.90913220197459 ], [ -82.076733176403536, 28.909126469502791 ], [ -82.073222460827751, 28.90910900660543 ], [ -82.072425547160591, 28.90909950607805 ], [ -82.070272257269366, 28.909096718785083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 223", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070272257269366, 28.909096718785083 ], [ -82.070287906244829, 28.910263887185774 ], [ -82.070286773432443, 28.911637415618053 ], [ -82.070298259020973, 28.912434560403 ], [ -82.070283947187463, 28.913545194134294 ], [ -82.070276535561561, 28.914729209636693 ], [ -82.070278190918742, 28.915624425156622 ], [ -82.070265407359884, 28.916492599915752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 214", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070265407359884, 28.916492599915752 ], [ -82.066740986398045, 28.91645797751999 ], [ -82.066068553951737, 28.916461058275981 ], [ -82.064089719581929, 28.916470438209675 ], [ -82.061769045095062, 28.916490239155578 ], [ -82.060153826210978, 28.916499314305987 ], [ -82.059114633951822, 28.916503485782297 ], [ -82.058153536830829, 28.916511005792099 ], [ -82.057135901840425, 28.916511437125546 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 223", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070265407359884, 28.916492599915752 ], [ -82.070286214018125, 28.918133323287854 ], [ -82.070297932564728, 28.91911329295619 ], [ -82.070312615992876, 28.919595193112112 ], [ -82.07032601888892, 28.920734301274738 ], [ -82.070326629332541, 28.921644092207526 ], [ -82.070321131953094, 28.922908312983832 ], [ -82.070324863061273, 28.923742751380765 ], [ -82.070322369557189, 28.924970164712672 ], [ -82.070300361658212, 28.925804037820146 ], [ -82.070298617826538, 28.926266091019539 ], [ -82.070297278378007, 28.927327369285976 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 223", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070297278378007, 28.927327369285976 ], [ -82.070308446902999, 28.92868464386369 ], [ -82.070315501604796, 28.930029286380453 ], [ -82.070319950086557, 28.930545481824886 ], [ -82.070320248618629, 28.930989486864668 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 120th Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070320248618629, 28.930989486864668 ], [ -82.066083365242562, 28.930998608290551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 223", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070320248618629, 28.930989486864668 ], [ -82.070327061781143, 28.931973149381438 ], [ -82.070335108340771, 28.93330933894261 ], [ -82.070342634726089, 28.93467095783576 ], [ -82.070342672810796, 28.934726238611681 ], [ -82.070343524151227, 28.935997666569772 ], [ -82.070354355080767, 28.93735055622717 ], [ -82.070361630512593, 28.938333945980279 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 231", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107415084534324, 28.883418387310648 ], [ -82.107416087204896, 28.884397989076145 ], [ -82.107415138265807, 28.885628322128952 ], [ -82.107412100389496, 28.886975275998715 ], [ -82.107414633050396, 28.887292090868023 ], [ -82.10740871135053, 28.887978202435363 ], [ -82.107403228207431, 28.889095807985925 ], [ -82.107440025388442, 28.890522421461007 ], [ -82.107443426129208, 28.891686664742128 ], [ -82.107469048799743, 28.89304980625813 ], [ -82.107481079212917, 28.893947102012895 ], [ -82.107479409439236, 28.89447188775037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 92nd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.092680840712248, 28.890857242481133 ], [ -82.092355331660301, 28.890861050224213 ], [ -82.092054567285246, 28.890855335579317 ], [ -82.091854692853445, 28.890852479945575 ], [ -82.091670998630534, 28.890852478782605 ], [ -82.091492063207397, 28.890864850988503 ], [ -82.09135215095462, 28.890860091812073 ], [ -82.091123723318987, 28.890840103427958 ], [ -82.090977148768488, 28.890845813195128 ], [ -82.090907321970207, 28.890862519140615 ], [ -82.090864837342608, 28.890881980405503 ], [ -82.090822224808946, 28.890921899557011 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 92nd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090822224808946, 28.890921899557011 ], [ -82.087916980850679, 28.89096352332346 ], [ -82.086845762259003, 28.890952641121864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 7th Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090822224808946, 28.890921899557011 ], [ -82.090832973474292, 28.891043662958932 ], [ -82.090833176082938, 28.891277837252353 ], [ -82.090858956012937, 28.892370632379166 ], [ -82.090829915901509, 28.893249897275631 ], [ -82.090799216590923, 28.893854398951802 ], [ -82.090846077812756, 28.894311694659738 ], [ -82.090926818025565, 28.894561124166923 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090926818025565, 28.894561124166923 ], [ -82.090392524140583, 28.894565308812687 ], [ -82.088885361472336, 28.894583790348182 ], [ -82.08688978126969, 28.894580465987776 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 120th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.088673413681335, 28.930932552984732 ], [ -82.086984168077294, 28.930931151648803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 229", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086959497130053, 28.927333240567481 ], [ -82.086961976703861, 28.92781007954747 ], [ -82.086959637896314, 28.928738292147958 ], [ -82.086984168077294, 28.930931151648803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 113th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086937159003583, 28.922078386119711 ], [ -82.086470209973427, 28.922075017041614 ], [ -82.085775623049074, 28.922085040802376 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 10th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08579529800808, 28.92051455755848 ], [ -82.085804468546215, 28.921049821814208 ], [ -82.085790177701966, 28.921372532011077 ], [ -82.085775623049074, 28.922085040802376 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 113th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.085775623049074, 28.922085040802376 ], [ -82.084785866408964, 28.92207746803836 ], [ -82.084685728309722, 28.92207753064222 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 11th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.084740605943551, 28.920823577551619 ], [ -82.084685728309722, 28.92207753064222 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046159825593463, 28.838179465304648 ], [ -82.04715733217374, 28.838454952628904 ], [ -82.048010001438556, 28.838698493932597 ], [ -82.048872064566922, 28.839046177906923 ], [ -82.049351457085649, 28.839234809043418 ], [ -82.049704667635467, 28.839316125224855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040873288521993, 28.834596912009793 ], [ -82.041945871891841, 28.835206957862248 ], [ -82.043022688467403, 28.835821687578026 ], [ -82.04364573767208, 28.836179750878191 ], [ -82.044855829426638, 28.83686734238351 ], [ -82.045493295579121, 28.837231731054803 ], [ -82.046631380502021, 28.837881286393586 ], [ -82.047423718214532, 28.838315362265298 ], [ -82.048136119208294, 28.838668832352585 ], [ -82.04836740659222, 28.838768706569525 ], [ -82.048800550194713, 28.83896105726566 ], [ -82.04916219960343, 28.83910900809957 ], [ -82.049704667635467, 28.839316125224855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049931656327189, 28.839208683482777 ], [ -82.04944385645878, 28.839023761414524 ], [ -82.048943438380221, 28.838827734691712 ], [ -82.048438809457465, 28.838609494610001 ], [ -82.047881020189635, 28.838350077319465 ], [ -82.046850986476485, 28.837805120859606 ], [ -82.045478797315624, 28.837009807194999 ], [ -82.043940970723909, 28.836138440146748 ], [ -82.043008196925825, 28.835602933196284 ], [ -82.042154666735257, 28.835114952421165 ], [ -82.041140649511149, 28.83453589396629 ], [ -82.04073161674502, 28.834292262983947 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049931656327189, 28.839208683482777 ], [ -82.049439616886971, 28.838953424548208 ], [ -82.048506022836207, 28.838483602665033 ], [ -82.048201443530019, 28.838273875211872 ], [ -82.047625153005313, 28.837865091905837 ], [ -82.046710297170705, 28.837205958737592 ], [ -82.046123210002719, 28.836784490680984 ], [ -82.045827870813994, 28.836578511889215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 104th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086857823762273, 28.906826869843549 ], [ -82.084895252651222, 28.906843448893742 ], [ -82.083661929945947, 28.90683350585568 ], [ -82.083382003142773, 28.906837248602237 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049580390877622, 28.887340116461225 ], [ -82.049495619224544, 28.887339772778667 ], [ -82.047506749139515, 28.887333495630159 ], [ -82.047506522562401, 28.887333494806708 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 205", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045407445082546, 28.88733184114102 ], [ -82.045404991018515, 28.887799413834422 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045407445082546, 28.88733184114102 ], [ -82.043140486029188, 28.887321353583925 ], [ -82.042086432270892, 28.887317941105366 ], [ -82.041370271503936, 28.887318159567272 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 13th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.082707380506903, 28.952851815784694 ], [ -82.08268495789487, 28.952876499907568 ], [ -82.082648502927114, 28.952886389617987 ], [ -82.082600820150773, 28.952886417819652 ], [ -82.081711663708916, 28.952884490574 ], [ -82.08167569228543, 28.95351606504012 ], [ -82.081681636496882, 28.953945317961985 ], [ -82.081666128020217, 28.955640153133732 ], [ -82.081642998608245, 28.956195143136853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 202", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.082822433158043, 28.945590183946798 ], [ -82.082838448012566, 28.94564075660649 ], [ -82.082841697910368, 28.945711007928264 ], [ -82.082839504164298, 28.94583745457934 ], [ -82.082808849084074, 28.947604363516781 ], [ -82.082768572988144, 28.950426100958087 ], [ -82.082759607659568, 28.9515048021686 ], [ -82.082743776077734, 28.952765447957244 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 130th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08624564624607, 28.945536762238309 ], [ -82.084939746479478, 28.945520023840015 ], [ -82.082887435025512, 28.945559875004317 ], [ -82.082822433158043, 28.945590183946798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 10th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.085775623049074, 28.922085040802376 ], [ -82.085770630125708, 28.922386741453312 ], [ -82.08577626985182, 28.922627586431602 ], [ -82.08574810629284, 28.922873312550571 ], [ -82.085748344863021, 28.923165091836204 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 222", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086793988272419, 28.901914814013566 ], [ -82.085198768578024, 28.901908503171445 ], [ -82.083074806243431, 28.901895564055746 ], [ -82.08267637930102, 28.901888497901041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 222", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08267637930102, 28.901888497901041 ], [ -82.080605172316524, 28.901874365234512 ], [ -82.078343578556513, 28.901860907157626 ], [ -82.075056258331898, 28.901811541799738 ], [ -82.074291127956869, 28.901805774594006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 12th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.082807822827334, 28.89871316887163 ], [ -82.082805206876529, 28.898862310348608 ], [ -82.082783552604099, 28.899134143433724 ], [ -82.082756393126147, 28.89935787115872 ], [ -82.082676078746914, 28.90062143439852 ], [ -82.082675921866212, 28.900915707066137 ], [ -82.082675889592551, 28.901124723371872 ], [ -82.082676099671573, 28.901391492869006 ], [ -82.08267637930102, 28.901888497901041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 204", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070361630512593, 28.938333945980279 ], [ -82.067952715069239, 28.938334177275305 ], [ -82.066082320119477, 28.938338539012719 ], [ -82.063514735256533, 28.93835351605458 ], [ -82.061979254650822, 28.93834769419388 ], [ -82.059560268924656, 28.938358618244465 ], [ -82.059262699864618, 28.938360048638444 ], [ -82.059262606522736, 28.93836004867919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 204", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051310505810093, 28.938376025417796 ], [ -82.051309843184285, 28.938376023863221 ], [ -82.049712190551773, 28.938371670847996 ], [ -82.047424170915761, 28.938351269251147 ], [ -82.04707435806273, 28.938353045498179 ], [ -82.047073863659264, 28.93835304747375 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 201", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039166723844289, 28.929396934131134 ], [ -82.039162164230447, 28.931018881880366 ], [ -82.039158110714069, 28.931046238802899 ], [ -82.039144959333811, 28.931067465440236 ], [ -82.039116454691595, 28.931082908259128 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070297278378007, 28.927327369285976 ], [ -82.067660727589981, 28.927336630684746 ], [ -82.06392169944553, 28.927342912674273 ], [ -82.05798804354832, 28.927349367478332 ], [ -82.057817688564157, 28.927350501154255 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 221", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066261485720219, 28.872765937291057 ], [ -82.066260321914655, 28.873538760006912 ], [ -82.066252262895375, 28.874146585747788 ], [ -82.066240444053022, 28.87517189001592 ], [ -82.066234524102654, 28.875540094955412 ], [ -82.066219096888048, 28.877090517404255 ], [ -82.066205575765565, 28.878418935578519 ], [ -82.066205992585353, 28.879081336023262 ], [ -82.066140964851655, 28.88002353014026 ], [ -82.066141175905358, 28.880359241793983 ], [ -82.066164481585815, 28.881546859098822 ], [ -82.066165388618444, 28.882988978151399 ], [ -82.066170280838818, 28.884248800577488 ], [ -82.06618345739713, 28.885633155065623 ], [ -82.066196579928985, 28.886932682297264 ], [ -82.066190647775272, 28.887281031496908 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 219", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06206101581688, 28.858200503700971 ], [ -82.062063692683466, 28.859144656674939 ], [ -82.062064643340193, 28.860758156947313 ], [ -82.062070231032948, 28.862053200385994 ], [ -82.062061494557554, 28.863598769086341 ], [ -82.062043661107197, 28.864462726753477 ], [ -82.062035911422782, 28.865458790361117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 219", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061198653678218, 28.852638063883525 ], [ -82.061201895672284, 28.852642030763572 ], [ -82.06146465081666, 28.852963521853223 ], [ -82.061811220441314, 28.85334720276715 ], [ -82.061873002183546, 28.853428698844215 ], [ -82.06192552083553, 28.853504764519769 ], [ -82.061978053949701, 28.853605287123401 ], [ -82.062024417366246, 28.853711247991619 ], [ -82.062049166396292, 28.853806348619603 ], [ -82.062070845487199, 28.853928624431827 ], [ -82.062080178143233, 28.854053623599487 ], [ -82.062083331839702, 28.854165038681408 ], [ -82.062074983358187, 28.85571400528487 ], [ -82.062063542004324, 28.85725006548536 ], [ -82.06206101581688, 28.858200503700971 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 213", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053756060277465, 28.861833134756324 ], [ -82.053761146484987, 28.862269806937149 ], [ -82.053760032239637, 28.863893851069307 ], [ -82.053756421032375, 28.86425546305399 ], [ -82.05375641914064, 28.864255773446967 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 69th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054677442452046, 28.856768174693034 ], [ -82.054634722416822, 28.85675879158908 ], [ -82.054588445439535, 28.856752542692853 ], [ -82.054540387346961, 28.856744728092412 ], [ -82.054486991998729, 28.856740048403893 ], [ -82.054431819580003, 28.856741636805964 ], [ -82.054371311726058, 28.85674792741121 ], [ -82.05432326091595, 28.856754213937023 ], [ -82.054259192427324, 28.856760507712895 ], [ -82.054189777800559, 28.856752700568617 ], [ -82.054127482960226, 28.856748024268679 ], [ -82.05406696683076, 28.856740216240979 ], [ -82.054020698358585, 28.856744486206285 ], [ -82.053714572506792, 28.856743488086778 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walker Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053730441833622, 28.854555225582484 ], [ -82.053714572506792, 28.856743488086778 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walker Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053714572506792, 28.856743488086778 ], [ -82.053714358719546, 28.857466724481878 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walker Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053714358719546, 28.857466724481878 ], [ -82.053713731518158, 28.858199304317775 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 238", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054858379145273, 28.858182357866507 ], [ -82.053713731518158, 28.858199304317775 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 28th Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055902658433141, 28.857469763904444 ], [ -82.055903036205549, 28.858182179518572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 238", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055903036205549, 28.858182179518572 ], [ -82.054858379145273, 28.858182357866507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 238", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05697231594074, 28.858184550757436 ], [ -82.055903036205549, 28.858182179518572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 69th Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056972919198117, 28.856752008742777 ], [ -82.05590505769959, 28.856752450274275 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 227A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078634105727545, 28.934634788737807 ], [ -82.077913426169076, 28.934632956439696 ], [ -82.07634685071271, 28.934636096394311 ], [ -82.074591161023761, 28.934639321396226 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 227", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078587761702025, 28.92735539886019 ], [ -82.078603854575775, 28.928369292659237 ], [ -82.078617988019104, 28.930181270664903 ], [ -82.07862371059133, 28.930997333185722 ], [ -82.078632202642325, 28.932096660872883 ], [ -82.078633282081157, 28.933537707336338 ], [ -82.078634105727545, 28.934634788737807 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086959497130053, 28.927333240567481 ], [ -82.084378334567845, 28.927360909112174 ], [ -82.082180685069346, 28.927371251851095 ], [ -82.08023600880918, 28.927361176183688 ], [ -82.078587761702025, 28.92735539886019 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078587761702025, 28.92735539886019 ], [ -82.076088553658764, 28.927338837136613 ], [ -82.074455638527127, 28.927330752107391 ], [ -82.073193262406662, 28.927329190685185 ], [ -82.070297278378007, 28.927327369285976 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 227", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078634105727545, 28.934634788737807 ], [ -82.078649734928803, 28.93734063756213 ], [ -82.078675610232921, 28.938861229944742 ], [ -82.078661335680849, 28.94027305592018 ], [ -82.078649726265212, 28.941833256560987 ], [ -82.078644859397642, 28.945565134502321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 202", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.082822433158043, 28.945590183946798 ], [ -82.082775247598235, 28.945559635947504 ], [ -82.082726552553751, 28.945545280472995 ], [ -82.08167306122003, 28.945550134548739 ], [ -82.080784100644337, 28.9455481386128 ], [ -82.079414164525744, 28.945555693415404 ], [ -82.078644859397642, 28.945565134502321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 121", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020961607141146, 28.882751102502532 ], [ -82.020739540869386, 28.882903960366413 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 83rd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031469674694421, 28.878477863487205 ], [ -82.03023997918541, 28.878480113400862 ], [ -82.029858504578954, 28.87848809719371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Coburn Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028877886003272, 28.857419649100848 ], [ -82.027682309181188, 28.8574299138938 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Huey Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03246039215513, 28.858148107333356 ], [ -82.030842830490045, 28.858145984901459 ], [ -82.02886323384287, 28.858159880082134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Palmer Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032684040064268, 28.859966092523344 ], [ -82.032666315645002, 28.859900632771364 ], [ -82.032613172895026, 28.859819594108487 ], [ -82.032538776095507, 28.859713620764737 ], [ -82.032485634495288, 28.859635700411356 ], [ -82.032460816882036, 28.859534704155216 ], [ -82.032460771046487, 28.859385070574493 ], [ -82.03246039215513, 28.858148107333356 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Osceola Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034518019738613, 28.863829236879905 ], [ -82.033493605274145, 28.863835874879143 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Warfield Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034518019738613, 28.863829236879905 ], [ -82.034521762780713, 28.864186759225316 ], [ -82.034507430634093, 28.864719854464312 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Old Wire Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037086534840753, 28.867115053411094 ], [ -82.037086604454274, 28.867316514174917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pennsylvania Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038618715666303, 28.867659396999777 ], [ -82.037889992310383, 28.867396467938626 ], [ -82.037809969834186, 28.867368509600244 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Gamble Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04007434398541, 28.860813766570395 ], [ -82.040068848596576, 28.859703713441512 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041460454552535, 28.86161027169836 ], [ -82.04180471096204, 28.860871322107318 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parks Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04094986533778, 28.849070067268748 ], [ -82.040686242853056, 28.849070145688717 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parks Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038883858502203, 28.849072636871096 ], [ -82.038705725054228, 28.849071018825896 ], [ -82.038202178853027, 28.849068163233959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parks Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037511713262688, 28.849066926021386 ], [ -82.037221588439067, 28.849065579258372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ontario Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03751567496883, 28.850872808538906 ], [ -82.037511713262688, 28.849066926021386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039618970910141, 28.851171949186888 ], [ -82.039304931537345, 28.851169809865194 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carol Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040953060815369, 28.851001655308522 ], [ -82.040921843766228, 28.850963850824726 ], [ -82.04089628900752, 28.850896432799136 ], [ -82.040888138399765, 28.850775141068539 ], [ -82.0409271302576, 28.84970923730479 ], [ -82.04094986533778, 28.849070067268748 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ironwood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040938943138684, 28.851171115109526 ], [ -82.040940449888538, 28.851049815091166 ], [ -82.040953060815369, 28.851001655308522 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ironwood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040953060815369, 28.851001655308522 ], [ -82.040987486299088, 28.850964187639317 ], [ -82.04104825764351, 28.850935629561214 ], [ -82.041151573623381, 28.850901707128582 ], [ -82.041548623284854, 28.850760672654818 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Kentucky Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042993219658669, 28.850826226415421 ], [ -82.042182801424403, 28.850828261111808 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Kentucky Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042182801424403, 28.850828261111808 ], [ -82.041670209752098, 28.850821282396794 ], [ -82.041619555827779, 28.850812380296688 ], [ -82.041577000696662, 28.850790987821025 ], [ -82.041548623284854, 28.850760672654818 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Gamble Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039656077702716, 28.861784125348272 ], [ -82.03955061520935, 28.862014654664115 ], [ -82.039349830415105, 28.862443546608134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04113190397608, 28.862298291423393 ], [ -82.041460454552535, 28.86161027169836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wonders Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041600855274908, 28.86249469865124 ], [ -82.04113190397608, 28.862298291423393 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rutland Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041276350675531, 28.863154128833376 ], [ -82.041600855274908, 28.86249469865124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Webster Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040100966250023, 28.86273101226319 ], [ -82.039790644493252, 28.86339007019021 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barwick Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040501168495965, 28.863650736098915 ], [ -82.039790644493252, 28.86339007019021 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Webster Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039790644493252, 28.86339007019021 ], [ -82.039474246117578, 28.864053067650321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Curry Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040188831846521, 28.864313733099578 ], [ -82.039474246117578, 28.864053067650321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Webster Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039474246117578, 28.864053067650321 ], [ -82.039172051497303, 28.864710697867821 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Denham Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039878523525132, 28.864973155609828 ], [ -82.039172051497303, 28.864710697867821 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Curry Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039474246117578, 28.864053067650321 ], [ -82.03871297979407, 28.863794197234327 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mason Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038584513025199, 28.862178958642659 ], [ -82.038286386619788, 28.862859815717602 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Curry Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03871297979407, 28.863794197234327 ], [ -82.037959833699475, 28.863528173111018 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maddox Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038076928881068, 28.866759510330787 ], [ -82.038076915553688, 28.86675950492069 ], [ -82.037305170659195, 28.866457495007488 ], [ -82.037194181464912, 28.866413736361586 ], [ -82.037096129784274, 28.866391956034793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Gamble Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038410341411719, 28.864446204554699 ], [ -82.038062745271162, 28.865186907389276 ], [ -82.037911620946559, 28.865516020086897 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Gamble Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03871297979407, 28.863794197234327 ], [ -82.038410341411719, 28.864446204554699 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Denham Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039172051497303, 28.864710697867821 ], [ -82.038410341411719, 28.864446204554699 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Old Wire Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037156002469004, 28.863417610933379 ], [ -82.037151249831155, 28.864025492207876 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Denham Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038410341411719, 28.864446204554699 ], [ -82.037954925563369, 28.864298118938262 ], [ -82.03762962608873, 28.864183680054548 ], [ -82.037151249831155, 28.864025492207876 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Old Wire Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037151249831155, 28.864025492207876 ], [ -82.037151310007062, 28.864193915230139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lee Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03621410381983, 28.865521062970526 ], [ -82.036221481133566, 28.866372100684611 ], [ -82.036221655141489, 28.866877373184746 ], [ -82.036214149696306, 28.867305172334351 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Warfield Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034526548663095, 28.865472605176723 ], [ -82.034526648073324, 28.866355691043516 ], [ -82.034522754217548, 28.867305606866548 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lee Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036214149696306, 28.867305172334351 ], [ -82.036210542411141, 28.867948554942839 ], [ -82.036210940182855, 28.869110680192509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Missouri Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037094233510004, 28.869092650941777 ], [ -82.036210940182855, 28.869110680192509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Missouri Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036210940182855, 28.869110680192509 ], [ -82.03542263516681, 28.869131097365752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035433506604178, 28.867308744237469 ], [ -82.035426204477901, 28.86835971421651 ], [ -82.03542263516681, 28.869131097365752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Missouri Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03542263516681, 28.869131097365752 ], [ -82.034496568323192, 28.869144806183716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Warfield Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034522754217548, 28.867305606866548 ], [ -82.034515137456367, 28.867413401499107 ], [ -82.034496568323192, 28.869144806183716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046298621368678, 28.801646796388891 ], [ -82.046250734698361, 28.801711809627903 ], [ -82.046141186108741, 28.801884136532227 ], [ -82.04604668064573, 28.802045098201308 ], [ -82.045967223558847, 28.802213626964349 ], [ -82.045881324988812, 28.80239919707742 ], [ -82.045816914642458, 28.802569615572288 ], [ -82.045752515955783, 28.802762749717751 ], [ -82.045701010650447, 28.802952096147635 ], [ -82.045660264289992, 28.803171730471316 ], [ -82.045632399812021, 28.803353495004163 ], [ -82.045617435057466, 28.80354093439114 ], [ -82.045608974827502, 28.803862795234245 ], [ -82.045607060570759, 28.804408061624329 ], [ -82.045607426908603, 28.805258144133671 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045605431932572, 28.805606646187641 ], [ -82.045605431011936, 28.805606887104968 ], [ -82.045602430992858, 28.806131176790149 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043692470577184, 28.799777075373648 ], [ -82.043874417995468, 28.799775988810676 ], [ -82.044207522282818, 28.799774290445271 ], [ -82.044657890720799, 28.799803184896554 ], [ -82.044861832388307, 28.799835476294817 ], [ -82.045038580853969, 28.799874566193935 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 42nd Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031422663081884, 28.916423078664664 ], [ -82.031423378729698, 28.916425974872222 ], [ -82.031525909852547, 28.91684106723427 ], [ -82.031743013508517, 28.917747205055587 ], [ -82.031957517562617, 28.91864133344178 ], [ -82.032162797935882, 28.919486671868551 ], [ -82.032407920195126, 28.920515075382202 ], [ -82.032548871189888, 28.92111811935127 ], [ -82.032781740807138, 28.922081910536679 ], [ -82.032798699764854, 28.92249840613518 ], [ -82.032926209943213, 28.923159605684997 ], [ -82.033053679937467, 28.92369373027995 ], [ -82.033171339560653, 28.924169701443688 ], [ -82.033323316269943, 28.924764127369851 ], [ -82.03358556100747, 28.925675140528838 ], [ -82.033727727017947, 28.92621141173651 ], [ -82.033815890984499, 28.926586113113242 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mission Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034507430634093, 28.864719854464312 ], [ -82.033499324150554, 28.864718506655176 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mission Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033499324150554, 28.864718506655176 ], [ -82.032823020424871, 28.864713882936535 ], [ -82.030717965376667, 28.864720752374005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Osceola Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033493605274145, 28.863835874879143 ], [ -82.033007687803035, 28.863839184656797 ], [ -82.032371281318234, 28.863839335803778 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Osceola Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032371281318234, 28.863839335803778 ], [ -82.031513671880219, 28.863836342385522 ], [ -82.030718678400987, 28.863842054845453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barwick Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032372712235244, 28.862588006473963 ], [ -82.030712865267901, 28.862598854155706 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barwick Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032990979037862, 28.862584666433257 ], [ -82.032372712235244, 28.862588006473963 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barwick Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0345050290301, 28.862568634616434 ], [ -82.032990979037862, 28.862584666433257 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 103", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028771726187799, 28.945564556555819 ], [ -82.028781704611504, 28.946346276336396 ], [ -82.028798576971639, 28.948533945484328 ], [ -82.028831681529567, 28.950549803296457 ], [ -82.028853471304672, 28.95285630183454 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 104", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035029624474461, 28.945590061700813 ], [ -82.031916151293345, 28.945570449727388 ], [ -82.030012037875181, 28.945561428259104 ], [ -82.028771726187799, 28.945564556555819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 104", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028771726187799, 28.945564556555819 ], [ -82.025802777665064, 28.945553694594484 ], [ -82.024695896024539, 28.945541002544037 ], [ -82.023725820604184, 28.945548342136323 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 104B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025020907709674, 28.943139952511832 ], [ -82.024884284734171, 28.943572358806001 ], [ -82.024845243192587, 28.943672586250642 ], [ -82.024812705594144, 28.943735586610785 ], [ -82.024767147574607, 28.943807181845145 ], [ -82.024718331323825, 28.943864460968658 ], [ -82.024653239060143, 28.943936057871316 ], [ -82.024601164832973, 28.943984745903375 ], [ -82.023901410106873, 28.944643462810852 ], [ -82.023852592868934, 28.944709329637693 ], [ -82.023800525208586, 28.94479524234497 ], [ -82.02376148062865, 28.94488401665863 ], [ -82.023735457492151, 28.944972786908405 ], [ -82.02372246351743, 28.945095917821106 ], [ -82.023725820604184, 28.945548342136323 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037277362841394, 28.92740621583884 ], [ -82.037025138437087, 28.927406217653107 ], [ -82.03636565594239, 28.927400827585462 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037277362841394, 28.92740621583884 ], [ -82.037265808053405, 28.927478614618234 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039168703723391, 28.927404578477891 ], [ -82.038944371094317, 28.927392997635192 ], [ -82.038177785370777, 28.927393215011669 ], [ -82.037871623317073, 28.927407692753359 ], [ -82.037441469834263, 28.927404492693245 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037428137242443, 28.927478361811836 ], [ -82.037441469834263, 28.927404492693245 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 119", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03560339525454, 28.909139793864991 ], [ -82.035609288467356, 28.910198251985712 ], [ -82.035605461676155, 28.910554835407645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 103", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028759022777933, 28.944678701852173 ], [ -82.028771726187799, 28.945564556555819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 103G", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028759022777933, 28.944678701852173 ], [ -82.028064450626005, 28.944680516913468 ], [ -82.027915658991233, 28.944677762823048 ], [ -82.027778894990064, 28.944667766134664 ], [ -82.027654792583064, 28.944654424661536 ], [ -82.027548417319565, 28.944634397133278 ], [ -82.027449638570488, 28.944612140239503 ], [ -82.027345795254675, 28.944580972337906 ], [ -82.027221685558303, 28.944538671381068 ], [ -82.027082375379464, 28.944483005844674 ], [ -82.026958263878186, 28.944420655699201 ], [ -82.026841746376618, 28.944353847528696 ], [ -82.026732824926938, 28.94428258225464 ], [ -82.026618837512345, 28.944200179972125 ], [ -82.026535242623538, 28.944126681858947 ], [ -82.026454177279419, 28.944044272161321 ], [ -82.02636044843139, 28.943948500987627 ], [ -82.026271783524081, 28.943850497407457 ], [ -82.026198318822978, 28.943776998042871 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 103G", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026198318822978, 28.943776998042871 ], [ -82.026147342593788, 28.943732662776426 ], [ -82.026045807603126, 28.943651694077253 ], [ -82.025925382938439, 28.943558270910906 ], [ -82.025783713429277, 28.943469002173817 ], [ -82.025651489005114, 28.943394270167598 ], [ -82.025498017203972, 28.943317464898655 ], [ -82.025368159034983, 28.943257266306976 ], [ -82.025254826766016, 28.943211603198048 ], [ -82.025160387833751, 28.943180471571242 ], [ -82.025020907709674, 28.943139952511832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 103G", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025020907709674, 28.943139952511832 ], [ -82.02482820673751, 28.943098116563714 ], [ -82.024649005361795, 28.943061365046379 ], [ -82.024468047827071, 28.943032864169734 ], [ -82.024289214503924, 28.94301657701439 ], [ -82.02410743038827, 28.943006227226608 ], [ -82.023918566189238, 28.943004182227345 ], [ -82.023741507422443, 28.943014595592125 ], [ -82.023545564344076, 28.943031241388471 ], [ -82.023385034714565, 28.943049958866013 ], [ -82.023255194247724, 28.943072824223808 ], [ -82.023127716552139, 28.943097765235503 ], [ -82.0229931596201, 28.943131012916368 ], [ -82.022858600287691, 28.943172566972425 ], [ -82.022752373113107, 28.943209962959855 ], [ -82.022631982891724, 28.943261898034461 ], [ -82.022523398594885, 28.943320059599134 ], [ -82.02242189516906, 28.943378220825501 ], [ -82.02236760561695, 28.94341768692545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 104", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023725820604184, 28.945548342136323 ], [ -82.022428559449665, 28.945538222152525 ], [ -82.021437257130202, 28.945531537002957 ], [ -82.020523757255432, 28.945546499756013 ], [ -82.019757464147261, 28.945548967449543 ], [ -82.018383678404234, 28.945557747701226 ], [ -82.016345784707866, 28.94555514003801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 230B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045412560981077, 28.888700888363402 ], [ -82.044275606461042, 28.88867881860256 ], [ -82.04343064725002, 28.888662554153029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 205A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043391445671674, 28.887801937536967 ], [ -82.043414841377796, 28.887848687297229 ], [ -82.043425476962867, 28.887872997295965 ], [ -82.043431868583795, 28.887916013321735 ], [ -82.043427734043192, 28.88851941241203 ], [ -82.04343064725002, 28.888662554153029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 230", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045417202294715, 28.889607976049234 ], [ -82.044354616617326, 28.889582141300025 ], [ -82.043431022503427, 28.889574142174311 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 205A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04343064725002, 28.888662554153029 ], [ -82.043431022503427, 28.889574142174311 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 69th Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05590505769959, 28.856752450274275 ], [ -82.054856662753082, 28.85675287643291 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 215", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057873063236656, 28.855177459594895 ], [ -82.057873928887346, 28.856754078475294 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 69th Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057873928887346, 28.856754078475294 ], [ -82.05733721667292, 28.856751856181301 ], [ -82.056972919198117, 28.856752008742777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 238", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06206101581688, 28.858200503700971 ], [ -82.061165828521595, 28.858198191381664 ], [ -82.059233462790019, 28.85819904431899 ], [ -82.057877493287066, 28.858181356459273 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 238", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057877493287066, 28.858181356459273 ], [ -82.057390832837029, 28.858184009960066 ], [ -82.05697231594074, 28.858184550757436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 215", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057874322754131, 28.857471390019288 ], [ -82.057874593982575, 28.857963470288396 ], [ -82.057877493287066, 28.858181356459273 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walker Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053756653255661, 28.853393526377467 ], [ -82.053730441833622, 28.854555225582484 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Industrial Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053812589238234, 28.852280491889289 ], [ -82.055483140338438, 28.852284107669675 ], [ -82.055558219448358, 28.852281629193545 ], [ -82.055636073649026, 28.852266908881575 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Industrial Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052110062610311, 28.852282988845456 ], [ -82.053812589238234, 28.852280491889289 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kendall Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052110062610311, 28.852282988845456 ], [ -82.052107684360578, 28.853093330535891 ], [ -82.052107917919457, 28.853568275554483 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 41st Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045566787792495, 28.81693113261171 ], [ -82.045475268807067, 28.816915712716316 ], [ -82.045235858253022, 28.816877274931777 ], [ -82.044975410570814, 28.816847677225045 ], [ -82.044849784604551, 28.816836924892868 ], [ -82.044739477642892, 28.816826167453101 ], [ -82.044644496398732, 28.816828896273144 ], [ -82.044570965224239, 28.816837014778919 ], [ -82.044503565352215, 28.816855926488799 ], [ -82.044298320984979, 28.81694773787649 ], [ -82.044120640861109, 28.817017955051405 ], [ -82.043973583760334, 28.817047682782533 ], [ -82.043835712098797, 28.817061219087531 ], [ -82.043707028262844, 28.817066658612351 ], [ -82.043541568749419, 28.817053217119479 ], [ -82.043434325002451, 28.817039759737217 ], [ -82.043345469209584, 28.817039788703593 ], [ -82.043241301889154, 28.817050614053258 ], [ -82.043100365785591, 28.817066850281883 ], [ -82.04299313194565, 28.817077676402015 ], [ -82.042818390580734, 28.81707551308854 ], [ -82.042631581542821, 28.817064296812283 ], [ -82.042444676487364, 28.817056259143488 ], [ -82.041929935444557, 28.817064513555707 ], [ -82.041810447952756, 28.817078041281398 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045561910275993, 28.818023695585115 ], [ -82.045561909345892, 28.818023914846588 ], [ -82.04556119826583, 28.818183189823376 ], [ -82.045555872322041, 28.820045083156074 ], [ -82.045556432558328, 28.821345709938857 ], [ -82.045553448075026, 28.821529200855192 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 154B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031522667577391, 28.848638122827872 ], [ -82.030959472334885, 28.849777900041786 ], [ -82.030440859300256, 28.850760473413086 ], [ -82.030123162838848, 28.851398447630775 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 154", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030992863604084, 28.851746016067743 ], [ -82.030123162838848, 28.851398447630775 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 177", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032404029880695, 28.849031077373823 ], [ -82.031467198079639, 28.850868720071929 ], [ -82.030992863604084, 28.851746016067743 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 177", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030992863604084, 28.851746016067743 ], [ -82.03091921762686, 28.851912127111632 ], [ -82.030854408332218, 28.852065260086484 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030854408332218, 28.852065260086484 ], [ -82.030194024634625, 28.851803288343813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 154", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030123162838848, 28.851398447630775 ], [ -82.029725172107874, 28.851258391461887 ], [ -82.029226942430753, 28.851063855220534 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 154A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030661708440633, 28.848284049129774 ], [ -82.029654130920974, 28.850207337499672 ], [ -82.029226942430753, 28.851063855220534 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034079974140084, 28.853349868642795 ], [ -82.03243697724173, 28.852696049266804 ], [ -82.032436949566261, 28.852696038445664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040120781501471, 28.85577404826444 ], [ -82.037125283265425, 28.854578490240257 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 150", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99154176917493, 28.823683863332736 ], [ -81.99078640650481, 28.823137516218136 ], [ -81.989429772069883, 28.822187798757192 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 147", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99154176917493, 28.823683863332736 ], [ -81.990989176893095, 28.824312414441323 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dogwood Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040620494772128, 28.845936912948304 ], [ -82.040373062451835, 28.845945655299435 ], [ -82.039994693293707, 28.846123668250403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodside Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039994693293707, 28.846123668250403 ], [ -82.039992559405505, 28.845290975111581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodside Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039992559405505, 28.845290975111581 ], [ -82.039992398277292, 28.844582848234687 ], [ -82.039992339001557, 28.844426052749792 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Autumn Leaf Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040619060471172, 28.844430391118664 ], [ -82.039992339001557, 28.844426052749792 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parkwood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041668690562716, 28.844324540951874 ], [ -82.041309097524987, 28.844323141918846 ], [ -82.04092895597546, 28.844321748056093 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palm Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043877844840836, 28.845057751447374 ], [ -82.043843283191109, 28.845076023368975 ], [ -82.043820241427056, 28.845084146976308 ], [ -82.043787980376564, 28.845092273524713 ], [ -82.04376032728284, 28.845096340925664 ], [ -82.043732673346895, 28.845098378133251 ], [ -82.041796824755522, 28.845088837140718 ], [ -82.041762251512438, 28.84507870214237 ], [ -82.041739202601477, 28.845066535246325 ], [ -82.041716149019877, 28.845050308873919 ], [ -82.041693095895525, 28.845030025730487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Autumn Leaf Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04092895597546, 28.844321748056093 ], [ -82.04092553877723, 28.844344363568119 ], [ -82.040915275084544, 28.844373013036019 ], [ -82.040894739538828, 28.84439864915516 ], [ -82.040874194780159, 28.844413731001723 ], [ -82.040841664097215, 28.844424294957147 ], [ -82.040780019638589, 28.844427327889164 ], [ -82.040619060471172, 28.844430391118664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodside Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039992339001557, 28.844426052749792 ], [ -82.039993843424398, 28.843875758467476 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spanish Moss Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039993843424398, 28.843875758467476 ], [ -82.039373970162842, 28.843860860949668 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Acorn Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039370114191186, 28.84528851663265 ], [ -82.03937210987371, 28.844898409544236 ], [ -82.039373970162842, 28.843860860949668 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038709599419903, 28.843906280553597 ], [ -82.038414062645387, 28.84361164417243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spanish Moss Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039373970162842, 28.843860860949668 ], [ -82.038786644919369, 28.843882135674402 ], [ -82.038709599419903, 28.843906280553597 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038577916462842, 28.84465929462235 ], [ -82.038710578495213, 28.844534876243333 ], [ -82.038761926274958, 28.844474557051754 ], [ -82.038786848194064, 28.844433936325704 ], [ -82.0388125120908, 28.84437663806446 ], [ -82.038833039045088, 28.844317834399014 ], [ -82.0388415798555, 28.844262049625712 ], [ -82.038839842492749, 28.844194204828938 ], [ -82.038829546075121, 28.844132392561594 ], [ -82.038808976028463, 28.844073601408756 ], [ -82.038779844191026, 28.844013303111144 ], [ -82.038747289683215, 28.84395903678524 ], [ -82.038709599419903, 28.843906280553597 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038741257226292, 28.846188857319547 ], [ -82.03811392839981, 28.846015369600416 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038895278514659, 28.846231876335288 ], [ -82.038741257226292, 28.846188857319547 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Century Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038741257226292, 28.846188857319547 ], [ -82.038749382446198, 28.845288692237993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dogwood Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039369753870915, 28.846333412955005 ], [ -82.038895278514659, 28.846231876335288 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Acorn Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039369753870915, 28.846333412955005 ], [ -82.039370114191186, 28.84528851663265 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dogwood Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039997176219714, 28.84645912041227 ], [ -82.039861245774389, 28.846435791130222 ], [ -82.039558130220342, 28.84637406543866 ], [ -82.039369753870915, 28.846333412955005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palm Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041668690562716, 28.844324540951874 ], [ -82.041670254497859, 28.843947627441658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palm Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041670086368541, 28.84352096128336 ], [ -82.041670059634569, 28.843453116902491 ], [ -82.041670038247815, 28.843398842299631 ], [ -82.041661461163628, 28.843361152874301 ], [ -82.041642612811245, 28.843329498481371 ], [ -82.041625481069232, 28.843308396034008 ], [ -82.041591224721813, 28.843284284171105 ], [ -82.041551835795048, 28.843272234978432 ], [ -82.041505602106511, 28.843267725709246 ], [ -82.041447382490432, 28.843266235551379 ], [ -82.041377177376816, 28.843266255833573 ], [ -82.041305258793884, 28.843266277497221 ], [ -82.040572385690325, 28.843263801784467 ], [ -82.040546693062993, 28.84325896669819 ], [ -82.040526707240446, 28.843247941005263 ], [ -82.040372175233131, 28.843135133306916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parks Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040131777574942, 28.849072892244397 ], [ -82.03957554763592, 28.849067897054532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014349709774251, 28.813939162088133 ], [ -82.012505030188791, 28.812192222693785 ], [ -82.010128974405802, 28.809947737649097 ], [ -82.008023008586463, 28.807947317780663 ], [ -82.004761619345942, 28.804853103000283 ], [ -82.004272067583727, 28.804393401281278 ], [ -82.002144729382721, 28.802383378779513 ], [ -82.000727387822636, 28.801038181419955 ], [ -81.999846950002464, 28.800209378731591 ], [ -81.999453778724643, 28.799833456799103 ], [ -81.999161423288086, 28.799558173895704 ], [ -81.998544794160409, 28.798965428084315 ], [ -81.995785160316558, 28.796345762999735 ], [ -81.994970318419206, 28.795583533362066 ], [ -81.99291646478656, 28.793644634376047 ], [ -81.991337275819234, 28.792149736791792 ], [ -81.990896286190804, 28.791739006717837 ], [ -81.990472098094457, 28.791365274851113 ], [ -81.990047910966268, 28.790991544339679 ], [ -81.989590127372637, 28.790614108568636 ], [ -81.989115545660212, 28.790236668955405 ], [ -81.988636766959573, 28.789866628076005 ], [ -81.988241985245722, 28.789563193587632 ], [ -81.987973200090281, 28.789374469668015 ], [ -81.987666613819428, 28.789152440026715 ], [ -81.987574219773336, 28.789085831680321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093203999244068, 28.873423923654823 ], [ -82.093085186779376, 28.872937339298179 ], [ -82.092989650050569, 28.872554991608418 ], [ -82.092674350123261, 28.871197624949076 ], [ -82.09259337367503, 28.870701435321276 ], [ -82.092548816076743, 28.870403718937187 ], [ -82.09247188289099, 28.869925248517699 ], [ -82.092354305027598, 28.869014365099019 ], [ -82.092208579921703, 28.868149581104394 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Old Wire Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037096129784274, 28.866391956034793 ], [ -82.037086534840753, 28.867115053411094 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Legion Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041325031669956, 28.847384429374873 ], [ -82.041346578225784, 28.847170178560873 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012490144961475, 28.84345085799912 ], [ -82.0112607125522, 28.842609588656195 ], [ -82.009980602006337, 28.841728142566986 ], [ -82.008388733797176, 28.84062575798367 ], [ -82.006492728527249, 28.839320279159029 ], [ -82.004510593093897, 28.837990226727474 ], [ -82.003828769243398, 28.837532735511534 ], [ -82.003634266055599, 28.837395338279329 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 245C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137612887396116, 28.94397690629965 ], [ -82.138173888858617, 28.943974168163987 ], [ -82.139384044813994, 28.943967856777999 ], [ -82.14240673735415, 28.943974100407601 ], [ -82.144543895360982, 28.943969357104852 ], [ -82.145469060121783, 28.943968363854104 ], [ -82.14648701330961, 28.943959843207892 ], [ -82.147313910278683, 28.943965285112977 ], [ -82.149704588208209, 28.943961967834102 ], [ -82.150884368274419, 28.943960567356712 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 245 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137628188302656, 28.941012937799385 ], [ -82.137624079113934, 28.943400258480501 ], [ -82.137612887396116, 28.94397690629965 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 245 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137612887396116, 28.94397690629965 ], [ -82.137621791633947, 28.945462357839443 ], [ -82.137611835899804, 28.949055312969261 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 179", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024811828015913, 28.839973188550331 ], [ -82.024787548851421, 28.840015899065236 ], [ -82.024774974978854, 28.840060219910587 ], [ -82.024761168879877, 28.840133493291518 ], [ -82.024754291930563, 28.840297849693151 ], [ -82.024717584973274, 28.841006002769436 ], [ -82.024722014871614, 28.84151698002384 ], [ -82.024746810026784, 28.842087744953087 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 147", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990989176893095, 28.824312414441323 ], [ -81.990735548490392, 28.824644469354567 ], [ -81.990547536045653, 28.824841185689984 ], [ -81.990154125046672, 28.825183398499419 ], [ -81.990034732832385, 28.825321526820446 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 149", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991690525964657, 28.824793215025824 ], [ -81.991213386235302, 28.825333725230784 ], [ -81.991170726806146, 28.825379632791542 ], [ -81.991120957418559, 28.825425540765817 ], [ -81.991061710509541, 28.825467273100116 ], [ -81.990990614325895, 28.8255131786871 ], [ -81.990639870387028, 28.825742707290981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 151", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993143136015291, 28.825798259356251 ], [ -81.992944651822484, 28.826014292379927 ], [ -81.992349983925862, 28.82669450468029 ], [ -81.99222595283203, 28.826838459947954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007946852044967, 28.799636339010465 ], [ -82.007025228940321, 28.799635913666808 ], [ -82.006195217488084, 28.79964740877579 ], [ -82.005389923184666, 28.799640562954398 ], [ -82.005037578772374, 28.799641530031277 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Gulf Atlantic Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041346578225784, 28.847170178560873 ], [ -82.041638502085235, 28.847198876527088 ], [ -82.04190628132217, 28.847223611095096 ], [ -82.042233951985111, 28.84724212244949 ], [ -82.042699033167594, 28.847269896669815 ], [ -82.043252191842129, 28.847288335149297 ], [ -82.043657371476769, 28.8472913079389 ], [ -82.044784898996753, 28.847287816737005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 155", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994695009577157, 28.82684455995344 ], [ -81.994433873556261, 28.827113259458802 ], [ -81.994088095338014, 28.827493832851996 ], [ -81.993832522330834, 28.827742032764959 ], [ -81.993716200441028, 28.827871132324315 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 153", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99391769125333, 28.826322141808763 ], [ -81.993691639183353, 28.826577497264491 ], [ -81.99299070828198, 28.827363055378996 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010796533837194, 28.837473810897219 ], [ -82.011220386901158, 28.83761954361573 ], [ -82.011815235091603, 28.837814669584475 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00429982244458, 28.835157070654539 ], [ -82.004323705088026, 28.835168864986453 ], [ -82.004669966769214, 28.835330969326407 ], [ -82.005114660131966, 28.835526852906874 ], [ -82.00549344687083, 28.835685180607651 ], [ -82.006190158932839, 28.83594813805346 ], [ -82.006864112039509, 28.836177151721483 ], [ -82.008156287351241, 28.836605422021343 ], [ -82.00908192827039, 28.836910260237406 ], [ -82.009627103933227, 28.837089447065054 ], [ -82.009628985414466, 28.837090065923739 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091926911335023, 28.868195983453923 ], [ -82.091901531739694, 28.868738079913882 ], [ -82.091887608655767, 28.869489659493858 ], [ -82.091875834159268, 28.86984058237773 ], [ -82.091869985918066, 28.870293988219522 ], [ -82.09186442940684, 28.870613315483574 ], [ -82.091861145556592, 28.870937453166935 ], [ -82.091841129879555, 28.871598731622136 ], [ -82.091836031625519, 28.87178575862254 ], [ -82.091764906993092, 28.872933111285114 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Commercial Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070475873626421, 28.793875120540491 ], [ -82.070434294678861, 28.793474837559739 ], [ -82.070315296931383, 28.792618490951181 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bridges Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069483550681468, 28.799862297886392 ], [ -82.069482122418094, 28.799230199778901 ], [ -82.069479871202859, 28.798776408689569 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069483550681468, 28.799862297886392 ], [ -82.069177136724903, 28.799865486084926 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069924242951998, 28.799871170081289 ], [ -82.069483550681468, 28.799862297886392 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Red Bud Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069177136724903, 28.799865486084926 ], [ -82.06917769288367, 28.800807668320402 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069177136724903, 28.799865486084926 ], [ -82.068471347818146, 28.79985977725163 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068471347818146, 28.79985977725163 ], [ -82.067439452488273, 28.799859076907101 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067439452488273, 28.799859076907101 ], [ -82.066386208469524, 28.799855709109565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066344343179395, 28.799855730342593 ], [ -82.065351379681175, 28.799855541934878 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066386208469524, 28.799855709109565 ], [ -82.066344343179395, 28.799855730342593 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Commercial Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07052303015972, 28.799877775694195 ], [ -82.07052365074567, 28.799428406325116 ], [ -82.070520465527352, 28.79878549400852 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07052303015972, 28.799877775694195 ], [ -82.069924242951998, 28.799871170081289 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Commercial Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070523640239884, 28.800790589439696 ], [ -82.070527050772299, 28.800742066801156 ], [ -82.07052303015972, 28.799877775694195 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Church Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068471347818146, 28.79985977725163 ], [ -82.068488902445722, 28.800809820944444 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Live Oak Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037526964869201, 28.847583116648508 ], [ -82.037312830895686, 28.8475865134759 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Water Oak Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038887766233856, 28.84810495384626 ], [ -82.03841022312622, 28.848105088211792 ], [ -82.037540411694849, 28.848096986790686 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oakwood Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037540411694849, 28.848096986790686 ], [ -82.037517655769875, 28.848050277040759 ], [ -82.037510056472556, 28.847995221336674 ], [ -82.037526964869201, 28.847583116648508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oakwood Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038890899053001, 28.848656589101413 ], [ -82.038495226258163, 28.848657310523535 ], [ -82.038203398011404, 28.848672406351373 ], [ -82.038174971663807, 28.848664072439796 ], [ -82.038148909935074, 28.84865365354019 ], [ -82.038125218222675, 28.848639060815469 ], [ -82.038099159031148, 28.848632811458678 ], [ -82.038065049658314, 28.848632404047919 ], [ -82.038036623256318, 28.848632411920459 ], [ -82.038006302922639, 28.848632421213221 ], [ -82.03798166703271, 28.848634095485981 ], [ -82.037939973794764, 28.848622427563843 ], [ -82.037902066039194, 28.848604085133928 ], [ -82.037862263600289, 28.84858073902959 ], [ -82.037833825562743, 28.848545293478562 ], [ -82.037817228052774, 28.848499415817244 ], [ -82.037807735864718, 28.848453536198775 ], [ -82.037788285926368, 28.848383887179164 ], [ -82.037771087991572, 28.848352627926431 ], [ -82.037540411694849, 28.848096986790686 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040124728614018, 28.847476384003798 ], [ -82.039628015065645, 28.847502444295667 ], [ -82.039601485780963, 28.847507457038478 ], [ -82.03958340549994, 28.847512981654759 ], [ -82.039570966455329, 28.847522572236215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parks Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039539534935003, 28.849067443645762 ], [ -82.039333846248951, 28.849068996943107 ], [ -82.039238226948513, 28.849069198445839 ], [ -82.039126421166173, 28.849072567976179 ], [ -82.038959658117435, 28.849072614486346 ], [ -82.038883858502203, 28.849072636871096 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Debbie Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039539534935003, 28.849067443645762 ], [ -82.039535999251882, 28.847600638051443 ], [ -82.03953832181837, 28.847573934553587 ], [ -82.039542204191889, 28.847558184595297 ], [ -82.039553862572021, 28.847538326004727 ], [ -82.039570966455329, 28.847522572236215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barwick Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030712865267901, 28.862598854155706 ], [ -82.029967062246371, 28.862589846353291 ], [ -82.029239552228404, 28.862584018389491 ], [ -82.028883485233294, 28.862568049504127 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Street Clair Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028872384090107, 28.861850450562603 ], [ -82.028863062916187, 28.861590536681536 ], [ -82.028866687396516, 28.860950449680384 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Huey Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037138269879364, 28.858196579280623 ], [ -82.036167113504604, 28.858166437931679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Huey Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036167113504604, 28.858166437931679 ], [ -82.035157942239209, 28.858148286423628 ], [ -82.034136575352335, 28.858139338403181 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Warfield Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034342564919569, 28.859130497990662 ], [ -82.034223887701188, 28.858650267192893 ], [ -82.034176773043512, 28.858479961781761 ], [ -82.034141840745463, 28.858251347333535 ], [ -82.034136575352335, 28.858139338403181 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Huey Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034136575352335, 28.858139338403181 ], [ -82.03246039215513, 28.858148107333356 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wolfe Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036173433303304, 28.859128974566467 ], [ -82.035154782468283, 28.85912722492851 ], [ -82.034342564919569, 28.859130497990662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Old Wire Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037094233510004, 28.869092650941777 ], [ -82.037096627599368, 28.869255051238873 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alabama Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037748287239907, 28.869499504002153 ], [ -82.037096627599368, 28.869255051238873 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Old Wire Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037096627599368, 28.869255051238873 ], [ -82.037082862, 28.869962221088532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Old Wire Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037091717475235, 28.868576667112912 ], [ -82.037094233510004, 28.869092650941777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Georgia Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038042324739962, 28.868884764297164 ], [ -82.037258161609813, 28.868630613117372 ], [ -82.037257528055932, 28.868630407564364 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Old Wire Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037086785682533, 28.867830443285509 ], [ -82.037091717475235, 28.868576667112912 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Florida Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038317682981898, 28.868288530839497 ], [ -82.037534871719188, 28.867997201473571 ], [ -82.037534755874091, 28.867997159097044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Old Wire Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037086604454274, 28.867316514174917 ], [ -82.037086785682533, 28.867830443285509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mason Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038286386619788, 28.862859815717602 ], [ -82.037959833699475, 28.863528173111018 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Old Wire Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037155942450028, 28.863249650773341 ], [ -82.037156002469004, 28.863417610933379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Curry Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037959833699475, 28.863528173111018 ], [ -82.037155942450028, 28.863249650773341 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barwick Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037155698091027, 28.862551008970406 ], [ -82.03703798045305, 28.862576055334394 ], [ -82.036983176832322, 28.862577857568517 ], [ -82.036590101471631, 28.862568096169007 ], [ -82.035842194103139, 28.862565799373105 ], [ -82.0345050290301, 28.862568634616434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Old Wire Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037155698091027, 28.862551008970406 ], [ -82.037155942450028, 28.863249650773341 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Old Wire Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037157704352126, 28.862484895744092 ], [ -82.037155698091027, 28.862551008970406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barwick Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038286386619788, 28.862859815717602 ], [ -82.037330748153792, 28.862524839800948 ], [ -82.037284173979529, 28.862508514445871 ], [ -82.037157704352126, 28.862484895744092 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Old Wire Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037151323960231, 28.861659392530299 ], [ -82.037157704352126, 28.862484895744092 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Old Wire Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037151184432886, 28.861259146891879 ], [ -82.037151323960231, 28.861659392530299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hall Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04007434398541, 28.860813766570395 ], [ -82.039706455472583, 28.860812087006806 ], [ -82.038778871163998, 28.860817713821184 ], [ -82.038303924715478, 28.860846078484364 ], [ -82.037881737576129, 28.860837261937093 ], [ -82.03753465242832, 28.860828421753251 ], [ -82.037146456876798, 28.860805658427275 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Gamble Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039656077702716, 28.861784125348272 ], [ -82.039680413916273, 28.861732299916181 ], [ -82.039714897153999, 28.861671539638113 ], [ -82.039787926150026, 28.861557163218112 ], [ -82.039899508731679, 28.86141597261658 ], [ -82.039931967517418, 28.861374508633183 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rutland Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039931967517418, 28.861374508633183 ], [ -82.039797985214264, 28.861322730985282 ], [ -82.039611226618419, 28.861262033843783 ], [ -82.039564539599596, 28.861253112707118 ], [ -82.039511765195229, 28.861249553893956 ], [ -82.039372460191714, 28.861254619779469 ], [ -82.039237759806838, 28.861274648910719 ], [ -82.038543588860293, 28.861274845665569 ], [ -82.037430778298514, 28.861256749333833 ], [ -82.037151184432886, 28.861259146891879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Gamble Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039948198655807, 28.861357065083624 ], [ -82.040001424456875, 28.861266708220281 ], [ -82.04002867930754, 28.861198087292468 ], [ -82.040041488578851, 28.861149696616263 ], [ -82.040048130347046, 28.861108884383722 ], [ -82.040055660933632, 28.861054992096758 ], [ -82.040064241604568, 28.860932146355545 ], [ -82.04007434398541, 28.860813766570395 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rutland Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041460454552535, 28.86161027169836 ], [ -82.041273695877578, 28.861553149987675 ], [ -82.041117395256308, 28.861526394935673 ], [ -82.04077841646658, 28.861499693260075 ], [ -82.040482070219525, 28.861487274250127 ], [ -82.040427263470832, 28.86147656924874 ], [ -82.039948198655807, 28.861357065083624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Gamble Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039948198655807, 28.861357065083624 ], [ -82.039931967517418, 28.861374508633183 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Gamble Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039349830415105, 28.862443546608134 ], [ -82.039033278513429, 28.863129197302801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Gamble Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039033278513429, 28.863129197302801 ], [ -82.03871297979407, 28.863794197234327 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barwick Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039033278513429, 28.863129197302801 ], [ -82.038286386619788, 28.862859815717602 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barwick Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039790644493252, 28.86339007019021 ], [ -82.039033278513429, 28.863129197302801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037156002469004, 28.863417610933379 ], [ -82.036517757344853, 28.863419790671205 ], [ -82.035981076921871, 28.863426649947584 ], [ -82.03594662932835, 28.863431446587278 ], [ -82.035921251649086, 28.863447414972985 ], [ -82.035908566713658, 28.863472955281164 ], [ -82.03590858230308, 28.863512856939927 ], [ -82.035910439458235, 28.863645331741985 ], [ -82.035912286210348, 28.863741096329989 ], [ -82.035907644650308, 28.863773304361036 ], [ -82.035901564804618, 28.863801893628704 ], [ -82.035881486789634, 28.863819311525074 ], [ -82.035857919533967, 28.863827298551744 ], [ -82.035823470182279, 28.863827307538617 ], [ -82.03577088953881, 28.863827321238457 ], [ -82.035654848861753, 28.863827351400204 ], [ -82.034518019738613, 28.863829236879905 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gilliam Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037134321690516, 28.85994563531834 ], [ -82.035790651466499, 28.859944204468412 ], [ -82.034506994219498, 28.859946462677417 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Gamble Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040068848596576, 28.859703713441512 ], [ -82.040072016473161, 28.8591161755201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Young Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040068848596576, 28.859703713441512 ], [ -82.038301299010087, 28.859717546164621 ], [ -82.038301090019843, 28.859137590364206 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Gamble Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040072016473161, 28.8591161755201 ], [ -82.040079348386683, 28.858379114626338 ], [ -82.040071706629575, 28.858298710740144 ], [ -82.040061533881811, 28.85823617591921 ], [ -82.040031056661761, 28.858151310486438 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Huey Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040360805658509, 28.857956899058582 ], [ -82.040031056661761, 28.858151310486438 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040465615464512, 28.856041854681479 ], [ -82.040431093173581, 28.855997194479535 ], [ -82.040400637475784, 28.855965040813892 ], [ -82.040371416535137, 28.855937474995489 ], [ -82.040336028362006, 28.855901151413327 ], [ -82.040280001392745, 28.855857048801099 ], [ -82.040120781501471, 28.85577404826444 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melinda Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040360805658509, 28.857956899058582 ], [ -82.040320190342328, 28.85790107281721 ], [ -82.040289718795194, 28.857834075765702 ], [ -82.040261274984829, 28.857757252019439 ], [ -82.040251105242731, 28.857700077795919 ], [ -82.040244987820003, 28.857628607177656 ], [ -82.040253079525613, 28.857555345826984 ], [ -82.040265232710297, 28.857489229531865 ], [ -82.040281449748775, 28.857439194711208 ], [ -82.040358521319575, 28.857294440660652 ], [ -82.040415316999656, 28.857199722600541 ], [ -82.040441683202047, 28.857147897303197 ], [ -82.040455871408795, 28.857094289030531 ], [ -82.040465997433643, 28.857042468516862 ], [ -82.040524640748444, 28.856474246752132 ], [ -82.040532717783179, 28.856363460345605 ], [ -82.040532690726025, 28.85629556105167 ], [ -82.040528606319427, 28.856231237885712 ], [ -82.040518438634791, 28.85617942335654 ], [ -82.040496089340166, 28.856118678707869 ], [ -82.040465615464512, 28.856041854681479 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Old 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041263384949559, 28.856356094391138 ], [ -82.041115179987045, 28.856250718185308 ], [ -82.040962920760222, 28.856156063303054 ], [ -82.040766000516953, 28.856039979168678 ], [ -82.040688861660257, 28.856006052873681 ], [ -82.040650295004482, 28.855998917156608 ], [ -82.040617822588814, 28.856002499901955 ], [ -82.040544759994603, 28.856016816726459 ], [ -82.040465615464512, 28.856041854681479 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dirt Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041285546628316, 28.857102930358312 ], [ -82.041287074257127, 28.857014923658014 ], [ -82.041275817786442, 28.856693150019716 ], [ -82.041263384949559, 28.856356094391138 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roy Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042718999172152, 28.857247267619844 ], [ -82.043035309887244, 28.856469908469187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Huey Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042965010100986, 28.85828532673046 ], [ -82.042859451739886, 28.858247837478935 ], [ -82.04265646540037, 28.858201442089889 ], [ -82.042477851298742, 28.858197925352513 ], [ -82.042222114426693, 28.858203364970329 ], [ -82.042067861878763, 28.858214133580539 ], [ -82.041828366743857, 28.858228500275573 ], [ -82.04154826866116, 28.858223225773241 ], [ -82.041345301447464, 28.858221498769616 ], [ -82.040995178734917, 28.858215798479762 ], [ -82.040868323200812, 28.858211369040021 ], [ -82.040761759077057, 28.858200232940909 ], [ -82.04067549064348, 28.858180157928938 ], [ -82.040599366990264, 28.858148910236665 ], [ -82.040523236883388, 28.858108729692727 ], [ -82.040477556485399, 28.858075240632104 ], [ -82.040444564450098, 28.858048449227105 ], [ -82.040419183685998, 28.858021652864107 ], [ -82.04038618724438, 28.857985926830704 ], [ -82.040360805658509, 28.857956899058582 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042620278929164, 28.859066269291802 ], [ -82.042835230617484, 28.858580189779584 ], [ -82.042965010100986, 28.85828532673046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04180471096204, 28.860871322107318 ], [ -82.042200162808058, 28.860006831820563 ], [ -82.042620278929164, 28.859066269291802 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hall Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040734477630778, 28.860813671312126 ], [ -82.04007434398541, 28.860813766570395 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hall Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04180471096204, 28.860871322107318 ], [ -82.041647392098568, 28.860833401065118 ], [ -82.041337855263563, 28.860829026562001 ], [ -82.040734477630778, 28.860813671312126 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shopping Center Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040734477630778, 28.860813671312126 ], [ -82.040730540904704, 28.858813955122766 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Switcher Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044368068863676, 28.855365120593643 ], [ -82.043801803484456, 28.855363517174798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042965010100986, 28.85828532673046 ], [ -82.042989342708012, 28.858228140995148 ], [ -82.043094550223358, 28.858026087486277 ], [ -82.043654257440366, 28.856855550566763 ], [ -82.044258567306201, 28.855597442546117 ], [ -82.044368068863676, 28.855365120593643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Switcher Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043801803484456, 28.855363517174798 ], [ -82.04328831524289, 28.855381549611462 ], [ -82.043001627342321, 28.855371363533504 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044368068863676, 28.855365120593643 ], [ -82.044810116504834, 28.854396973663111 ], [ -82.045111751516089, 28.853767023668279 ], [ -82.045223278647285, 28.85353246890061 ], [ -82.045271432029338, 28.853418544252602 ], [ -82.045304378810656, 28.853340359489636 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Johnson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045304378810656, 28.853340359489636 ], [ -82.044609245024347, 28.853336121260039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Johnson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044609245024347, 28.853336121260039 ], [ -82.043812634531207, 28.853338612448727 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045304378810656, 28.853340359489636 ], [ -82.045339855592474, 28.853242074142205 ], [ -82.04536518273234, 28.853143791244573 ], [ -82.045390507839798, 28.853043274235176 ], [ -82.045400622778601, 28.852965098815311 ], [ -82.045405650957093, 28.852857888013556 ], [ -82.045405319709602, 28.852087327098754 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Third Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042998266326634, 28.853345570912428 ], [ -82.042980284278272, 28.852798366647551 ], [ -82.042983596597296, 28.852074843492083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Johnson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043812634531207, 28.853338612448727 ], [ -82.042998266326634, 28.853345570912428 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Third Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043001627342321, 28.855371363533504 ], [ -82.042998597025544, 28.85416080212218 ], [ -82.043000868511399, 28.853504149236777 ], [ -82.042998266326634, 28.853345570912428 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Johnson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042998266326634, 28.853345570912428 ], [ -82.042206730754089, 28.853352517431482 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045405319709602, 28.852087327098754 ], [ -82.045405185293873, 28.851774635217122 ], [ -82.045415004262736, 28.851010769524848 ], [ -82.04541496111537, 28.850908029489819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04541496111537, 28.850908029489819 ], [ -82.045412387030751, 28.85082315593062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Kentucky Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045412387030751, 28.85082315593062 ], [ -82.044615793716517, 28.850823417707101 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Kentucky Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044615793716517, 28.850823417707101 ], [ -82.044001859071017, 28.850821383043083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Kentucky Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044001859071017, 28.850821383043083 ], [ -82.043784192580276, 28.850821006122374 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "New Hampshire Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044001859071017, 28.850821383043083 ], [ -82.044007072272336, 28.849934676278199 ], [ -82.04400704222499, 28.84986499036215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "New Hampshire Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04400704222499, 28.84986499036215 ], [ -82.04400894820651, 28.849566592029326 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bruce Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043720416672173, 28.848742965440021 ], [ -82.043442436703145, 28.848894930748365 ], [ -82.043014315142756, 28.849145220857071 ], [ -82.041890228052168, 28.849794181936112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bruce Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041890228052168, 28.849794181936112 ], [ -82.041784710489523, 28.849842456771416 ], [ -82.041736009340397, 28.849856766820267 ], [ -82.041557412315456, 28.849860395980997 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Legion Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041548623284854, 28.850760672654818 ], [ -82.041534429842031, 28.850732137947432 ], [ -82.041528336214554, 28.850691112884384 ], [ -82.041530342448311, 28.850642950842452 ], [ -82.04155645212667, 28.850061445197792 ], [ -82.041557412315456, 28.849860395980997 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Legion Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041557412315456, 28.849860395980997 ], [ -82.041543163103583, 28.849749617073439 ], [ -82.041530960055653, 28.849687081094409 ], [ -82.041518767816598, 28.849644202731294 ], [ -82.041417211355935, 28.849438748760608 ], [ -82.041370487509411, 28.849322619935091 ], [ -82.041344077619016, 28.849256516894297 ], [ -82.041321731051724, 28.849197558881386 ], [ -82.041305440011399, 28.849127093746716 ], [ -82.041305417132307, 28.849071151729355 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Third Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042983596597296, 28.852074843492083 ], [ -82.042989968384674, 28.851659272356674 ], [ -82.042989790305995, 28.851221502938841 ], [ -82.042993219658669, 28.850826226415421 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Kentucky Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043784192580276, 28.850821006122374 ], [ -82.042993219658669, 28.850826226415421 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045412387030751, 28.85082315593062 ], [ -82.045412299650863, 28.850619905449275 ], [ -82.045416895578612, 28.849507613533735 ], [ -82.045417687811465, 28.848987987456049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Center Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040943232689173, 28.852826347929543 ], [ -82.04031484763307, 28.852827042925551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Live Oak Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03969225399301, 28.852829773430031 ], [ -82.039690895782257, 28.851171482669717 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Center Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04031484763307, 28.852827042925551 ], [ -82.03969225399301, 28.852829773430031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Center Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03969225399301, 28.852829773430031 ], [ -82.039477967486633, 28.852837484070051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040887888336513, 28.85423364032528 ], [ -82.040851114611897, 28.854244358028723 ], [ -82.040810575244919, 28.854249467214952 ], [ -82.040761345789562, 28.854246933744871 ], [ -82.040315388022137, 28.854247065528895 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040315388022137, 28.854247065528895 ], [ -82.039692785936651, 28.85424979605666 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Live Oak Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039692785936651, 28.85424979605666 ], [ -82.03969225399301, 28.852829773430031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039692785936651, 28.85424979605666 ], [ -82.039414786366478, 28.854247326265273 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ed Lynum Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044663156582374, 28.858900590609711 ], [ -82.044767568621353, 28.858914667640938 ], [ -82.045417767055241, 28.859160983643587 ], [ -82.045468186573729, 28.859186656397576 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peters Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045511790457894, 28.861869182548091 ], [ -82.04576913433246, 28.861869096721364 ], [ -82.045856684384262, 28.861873738635634 ], [ -82.045923016220158, 28.861883057938392 ], [ -82.045978734335833, 28.861897052000312 ], [ -82.046034461645434, 28.861927394872414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017606810169866, 28.839726399577302 ], [ -82.017657827586973, 28.83959799309622 ], [ -82.017681967205021, 28.839537161940921 ], [ -82.017716101489412, 28.839440075729694 ], [ -82.017749957728512, 28.839310415358934 ], [ -82.017748402297855, 28.839162871216221 ], [ -82.017711061517971, 28.838955289365639 ], [ -82.017621739880724, 28.838759359196608 ], [ -82.017586442905156, 28.838708214533735 ], [ -82.017564832936813, 28.838671477094472 ], [ -82.01753962146897, 28.838644104243571 ], [ -82.017474792210237, 28.838568469201277 ], [ -82.017367756678055, 28.838475432033636 ], [ -82.017255366977608, 28.838382306107441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Williamsburg Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01957769669832, 28.838637226215194 ], [ -82.019845606666053, 28.838921382726955 ], [ -82.019968938738174, 28.839070262079709 ], [ -82.020015752404348, 28.83913864755343 ], [ -82.020049993260116, 28.839206737953546 ], [ -82.020071144581294, 28.839284284595141 ], [ -82.020081730311773, 28.839371139143442 ], [ -82.020085358940989, 28.839458064166468 ], [ -82.020083489875333, 28.839507715678501 ], [ -82.020072039986005, 28.839561326083295 ], [ -82.020059074833028, 28.839616952457661 ], [ -82.020042166266293, 28.839666607928233 ], [ -82.020018380761798, 28.839712370023893 ], [ -82.019993312540748, 28.83975433268408 ], [ -82.019963245060211, 28.839794058331677 ], [ -82.019923778992421, 28.839837095874937 ], [ -82.019690725664304, 28.839991048877348 ], [ -82.019546004663809, 28.840070511862766 ], [ -82.019499018664845, 28.840108585837676 ], [ -82.019472710603452, 28.840141690625469 ], [ -82.019458307739939, 28.840171546352003 ], [ -82.01940901302946, 28.840323551291387 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Gulf Atlantic Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038880586285174, 28.846747171919667 ], [ -82.039178025692294, 28.846813741617829 ], [ -82.039607956641063, 28.84690526637117 ], [ -82.040075739536078, 28.84699082890371 ], [ -82.040527297469211, 28.847064490485735 ], [ -82.040877447287968, 28.847112248537098 ], [ -82.041346578225784, 28.847170178560873 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Gulf Atlantic Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0372455538525, 28.846284309793031 ], [ -82.037380279623974, 28.846328750580799 ], [ -82.037492600042313, 28.846362903843101 ], [ -82.03800450938968, 28.846517614239126 ], [ -82.038377644466877, 28.846622337694868 ], [ -82.038759824559548, 28.84671890974338 ], [ -82.038880586285174, 28.846747171919667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.088787450743041, 28.814433612254497 ], [ -82.088874578182867, 28.815943101639856 ], [ -82.089070494403842, 28.819168588037801 ], [ -82.089225727185578, 28.821865950539234 ], [ -82.089462630015419, 28.825927939308357 ], [ -82.089613671391362, 28.828409079745516 ], [ -82.089683177136195, 28.829670920885441 ], [ -82.089764810828271, 28.830993013388763 ], [ -82.089911815727945, 28.833442251406108 ], [ -82.090067145982459, 28.836199864825193 ], [ -82.090116135893581, 28.83699737326301 ], [ -82.090357178085881, 28.841112519432976 ], [ -82.09052051680203, 28.843795687259306 ], [ -82.090700307594759, 28.846872294477205 ], [ -82.090847522060187, 28.849509390553106 ], [ -82.090859923657533, 28.849885112493091 ], [ -82.090860220718028, 28.850228939742156 ], [ -82.090852453108809, 28.850558594463454 ], [ -82.090832663425672, 28.850952060915539 ], [ -82.090796731898976, 28.851303000818259 ], [ -82.090764827912096, 28.851657483155645 ], [ -82.090716825779424, 28.852019065614755 ], [ -82.090664775131117, 28.852355839192562 ], [ -82.09058058912332, 28.852777704247139 ], [ -82.09049238476625, 28.853210205548372 ], [ -82.090392094085601, 28.853635626309831 ], [ -82.090327917409027, 28.853919237710478 ], [ -82.090143366184392, 28.854681451155955 ], [ -82.090079209458111, 28.854989875727316 ], [ -82.090015040217892, 28.855284121469229 ], [ -82.089975024995056, 28.8555748060285 ], [ -82.089934987346396, 28.855837132992619 ], [ -82.089907006024291, 28.856074642229856 ], [ -82.089879021543879, 28.856308603599267 ], [ -82.089863085462866, 28.856507113617674 ], [ -82.089843130466377, 28.856712712974556 ], [ -82.089822023057849, 28.85701153091933 ], [ -82.089815520126535, 28.857386208444389 ], [ -82.089807737674263, 28.857701683987901 ], [ -82.089811985669314, 28.857963982460774 ], [ -82.08982440891242, 28.858364515544242 ], [ -82.089840735057166, 28.858623259954545 ], [ -82.089861106510398, 28.858903271662051 ], [ -82.089901686063314, 28.859271884239266 ], [ -82.089950320054754, 28.85964049145095 ], [ -82.090002976396804, 28.86000555171432 ], [ -82.090124287209861, 28.86060805606774 ], [ -82.090245524374339, 28.861121941562921 ], [ -82.090536279438467, 28.862103605661414 ], [ -82.090621142261369, 28.862458010437617 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090621142261369, 28.862458010437617 ], [ -82.090665532961978, 28.862571408339953 ], [ -82.090814874657283, 28.862986026562108 ], [ -82.090976315559089, 28.863421907358461 ], [ -82.091319460874558, 28.864438979421919 ], [ -82.091420432223032, 28.864789828484017 ], [ -82.091503891951561, 28.865143147120161 ], [ -82.091541664191325, 28.865285989448971 ], [ -82.091587971556308, 28.865497868345781 ], [ -82.091662286520361, 28.865853972099789 ], [ -82.091727662298723, 28.86616847218264 ], [ -82.091776727601413, 28.866542137243041 ], [ -82.091822939151626, 28.866910636711527 ], [ -82.09185938508314, 28.867279828498532 ], [ -82.091885875963868, 28.867650059224179 ], [ -82.091914463470289, 28.867965461954707 ], [ -82.091926911335023, 28.868195983453923 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999023597495309, 28.799685247319669 ], [ -81.99975621602934, 28.800378100115836 ], [ -82.001709195367525, 28.802231202081803 ], [ -82.003948110856939, 28.804349023632785 ], [ -82.004664438897223, 28.805024308661732 ], [ -82.006176320149009, 28.806466808573859 ], [ -82.007601844000106, 28.807814182026487 ], [ -82.009966998046892, 28.810055543363273 ], [ -82.012267450451205, 28.812223947628773 ], [ -82.012695871191141, 28.812632897208633 ], [ -82.013624727984535, 28.813520533959753 ], [ -82.014377183106077, 28.814230638070683 ], [ -82.016137756306691, 28.815898100698909 ], [ -82.017597150484647, 28.817274852594899 ], [ -82.020292600906245, 28.819832794686917 ], [ -82.020912289723725, 28.820425312472636 ], [ -82.021933768694964, 28.82138851567877 ], [ -82.024200251367944, 28.823533682284317 ], [ -82.025210920882088, 28.824489121094249 ], [ -82.026504760376227, 28.8257145630031 ], [ -82.026799712915675, 28.82598803582577 ], [ -82.027047473837214, 28.826223428946914 ], [ -82.027330624555049, 28.826465741657064 ], [ -82.027621641472265, 28.826714975608244 ], [ -82.027877264764172, 28.826926129601034 ], [ -82.028125018417455, 28.827116510850697 ], [ -82.028455357810728, 28.827365734986458 ], [ -82.028856481737762, 28.827649566947393 ], [ -82.029210411384454, 28.827881473505133 ], [ -82.02953681653122, 28.828099532763428 ], [ -82.030016584425155, 28.828390270543913 ], [ -82.030488483757281, 28.828656770532671 ], [ -82.031050836317306, 28.828982109735435 ], [ -82.031389041591211, 28.829189775342371 ], [ -82.031782309886026, 28.829449365189866 ], [ -82.032285699076226, 28.82979894783594 ], [ -82.033103732547929, 28.830425446663035 ], [ -82.033650411079904, 28.830861573953136 ], [ -82.033937519006003, 28.831093483339586 ], [ -82.034177427760568, 28.831273467878354 ], [ -82.034480259355234, 28.831491522670696 ], [ -82.034853883219057, 28.831751106550161 ], [ -82.035152777696752, 28.831941462668517 ], [ -82.035451670943246, 28.832124892003826 ], [ -82.035726965647939, 28.832287552062066 ], [ -82.03601012089554, 28.832432898726449 ], [ -82.036159570809374, 28.832522880086909 ], [ -82.036450589972972, 28.832671686810322 ], [ -82.036800596521516, 28.832834326662091 ], [ -82.037111278413391, 28.832983124886855 ], [ -82.037276447640082, 28.833048864780164 ], [ -82.037516337168839, 28.833145746208903 ], [ -82.037903306575785, 28.833304217070083 ], [ -82.038765334273691, 28.833639135279817 ], [ -82.039083090060757, 28.833763691867034 ], [ -82.039482649374406, 28.833927000886618 ], [ -82.03984445948285, 28.834084781304011 ], [ -82.040177958826291, 28.834239798942924 ], [ -82.040461121844004, 28.834378210988383 ], [ -82.040873288521993, 28.834596912009793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010216595590947, 28.837094708819031 ], [ -82.010098099877013, 28.837054306367754 ], [ -82.009644394599462, 28.836905762296844 ], [ -82.009235624603988, 28.836771934110271 ], [ -82.008716246345074, 28.836597698732493 ], [ -82.008124179822886, 28.836404641415847 ], [ -82.0074738692241, 28.836190506514139 ], [ -82.006904639596257, 28.836001648337195 ], [ -82.006418177819441, 28.835838069648283 ], [ -82.00590032289513, 28.835653770716235 ], [ -82.005637811968157, 28.835548080603324 ], [ -82.005218916069808, 28.835375569466944 ], [ -82.004869272120317, 28.835220904365169 ], [ -82.004533143301259, 28.835067724072125 ], [ -82.004369482800485, 28.834985815288743 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004369482800485, 28.834985815288743 ], [ -82.00380008192721, 28.834703358402244 ], [ -82.003428482143136, 28.834496634098215 ], [ -82.003101855942461, 28.834307617574481 ], [ -82.002718667895323, 28.834077571354229 ], [ -82.002389668514397, 28.833862859906606 ], [ -82.002128407578937, 28.833695863714436 ], [ -82.001396877319777, 28.833188049469793 ], [ -82.000787272152508, 28.832768845088886 ], [ -82.000404093789939, 28.832503006684089 ], [ -81.999932097890905, 28.832175231635194 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 36th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043071283455248, 28.925520622367795 ], [ -82.042991997310395, 28.926934580489348 ], [ -82.04295449975973, 28.927408089535376 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 120th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036981252917613, 28.931929821029431 ], [ -82.035634668967205, 28.931970692795836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 121st Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036973105587947, 28.932651428512493 ], [ -82.036841533058137, 28.932673629823494 ], [ -82.036652931747767, 28.93271675428046 ], [ -82.03644119925589, 28.932700826786338 ], [ -82.036215346776203, 28.932698244926414 ], [ -82.036053015723454, 28.932683800623369 ], [ -82.03560601587003, 28.932654944262506 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 204", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041217596806177, 28.938335101384684 ], [ -82.040707614144338, 28.938323132302408 ], [ -82.039899917924814, 28.938318521201328 ], [ -82.038860665092983, 28.938316394970176 ], [ -82.038328634038407, 28.938314121904142 ], [ -82.037904113904844, 28.938319090305374 ], [ -82.037109883007233, 28.938312585561636 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 137th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03262853146488, 28.956451936587218 ], [ -82.031568452541734, 28.95644302290949 ], [ -82.02887789234785, 28.956439035780939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 103", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028875304276028, 28.956507760231506 ], [ -82.028862473128441, 28.957206441189555 ], [ -82.028813385436536, 28.958672534409878 ], [ -82.028771811983276, 28.96013676699657 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 137th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028875304276028, 28.956507760231506 ], [ -82.024695907772752, 28.956496044430629 ], [ -82.020389846564527, 28.956510502262081 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 103", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02887789234785, 28.956439035780939 ], [ -82.028875304276028, 28.956507760231506 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 103", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028853471304672, 28.95285630183454 ], [ -82.028869940586475, 28.953550682987157 ], [ -82.028861924343957, 28.954001677022436 ], [ -82.028880309604503, 28.955756390654937 ], [ -82.02887789234785, 28.956439035780939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 205A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043431022503427, 28.889574142174311 ], [ -82.043419632106648, 28.889634415810395 ], [ -82.043411453544991, 28.890563585019635 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 230A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045430361095143, 28.890554337883145 ], [ -82.044380526223875, 28.890552811587028 ], [ -82.043842335866259, 28.890568468777442 ], [ -82.04360834765555, 28.890568543638629 ], [ -82.043411453544991, 28.890563585019635 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 230A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041402583056907, 28.890539095269919 ], [ -82.039521135879511, 28.890540217387404 ], [ -82.039452513647532, 28.890526029571692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 230", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043431022503427, 28.889574142174311 ], [ -82.041393643984847, 28.889569749200842 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 205B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041393643984847, 28.889569749200842 ], [ -82.041402583056907, 28.890539095269919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 230", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041393643984847, 28.889569749200842 ], [ -82.039377895782138, 28.889582777803856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 230A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043411453544991, 28.890563585019635 ], [ -82.043248809499502, 28.890571170780522 ], [ -82.042435559456621, 28.890563891435953 ], [ -82.041402583056907, 28.890539095269919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 230B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04343064725002, 28.888662554153029 ], [ -82.041367613902338, 28.88868328441287 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 205B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041367613902338, 28.88868328441287 ], [ -82.041393643984847, 28.889569749200842 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 230B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041367613902338, 28.88868328441287 ], [ -82.039476035168889, 28.888663454776587 ], [ -82.039429222102825, 28.888681939250912 ], [ -82.039400167262684, 28.888694735011597 ], [ -82.039387256528642, 28.888711788587475 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Clarke Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04380601208517, 28.872790204865634 ], [ -82.045156480198145, 28.872812030960763 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Front Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047762524956767, 28.86065412859049 ], [ -82.047750026866183, 28.860557655044602 ], [ -82.047435973978594, 28.860077568249359 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 34th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058032096268889, 28.806180815241188 ], [ -82.05756880833863, 28.806202669070647 ], [ -82.057205793723654, 28.806158817389292 ], [ -82.056220452051377, 28.806159225604876 ], [ -82.055981388597019, 28.806166542949995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 33rd Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055978217259479, 28.805337688796353 ], [ -82.055119524920784, 28.805313283124875 ], [ -82.054441363774671, 28.805313554357088 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 33rd Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058016826806238, 28.805382218081053 ], [ -82.058005500685425, 28.805369159226689 ], [ -82.057993003372744, 28.805357475989251 ], [ -82.057978947443814, 28.80534682384982 ], [ -82.05796391599074, 28.805337549950664 ], [ -82.057947713343879, 28.805329648960388 ], [ -82.057930732050508, 28.805323468102085 ], [ -82.057912969872106, 28.805318662693725 ], [ -82.057894818328691, 28.805315575447448 ], [ -82.057873741953358, 28.80531420923991 ], [ -82.056098435083328, 28.805341075594356 ], [ -82.055978217259479, 28.805337688796353 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 27th Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058032096268889, 28.806180815241188 ], [ -82.058032324882404, 28.806238914025265 ], [ -82.058031764968192, 28.806286355952164 ], [ -82.058023283299562, 28.806477847009518 ], [ -82.058024699459395, 28.806922355286012 ], [ -82.058025187256206, 28.807103526405633 ], [ -82.058024276352953, 28.807136785958292 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 519A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06222156649585, 28.807145617996447 ], [ -82.060007648504566, 28.80713978325694 ], [ -82.058713897076146, 28.807141326360828 ], [ -82.058182886426394, 28.807136298133898 ], [ -82.058024276352953, 28.807136785958292 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 28th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055978217259479, 28.805337688796353 ], [ -82.055958324594059, 28.805404910060226 ], [ -82.05594008052968, 28.805563661956615 ], [ -82.055946273286153, 28.805722402962004 ], [ -82.055967719034115, 28.805840780076437 ], [ -82.055980033626042, 28.806018354307611 ], [ -82.055981388597019, 28.806166542949995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 34th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055981388597019, 28.806166542949995 ], [ -82.055799884610607, 28.806174481579408 ], [ -82.055662430109152, 28.806193371456999 ], [ -82.05500873152053, 28.806233994161126 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 519A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058024276352953, 28.807136785958292 ], [ -82.057828770518569, 28.807136867813607 ], [ -82.057538566231614, 28.807134299444979 ], [ -82.056444951637559, 28.807134754799645 ], [ -82.055971455256056, 28.807126878035717 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053924500323575, 28.799824130622799 ], [ -82.052289132916101, 28.799806568191531 ], [ -82.051878668200558, 28.7998051558891 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palmetto Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.073624921711868, 28.799864300776498 ], [ -82.073642944184201, 28.798654486597563 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palmetto Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.073613212709873, 28.798655566459157 ], [ -82.073616051874069, 28.797966507643487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nelson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078858259794146, 28.799871370547006 ], [ -82.07886071464894, 28.798656888166178 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nelson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07886071464894, 28.798656888166178 ], [ -82.07888151902209, 28.797416760292261 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Perkins Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07602872129948, 28.796199533816338 ], [ -82.077245171663591, 28.796185556003344 ], [ -82.077302527321407, 28.796193499956168 ], [ -82.077344794335772, 28.796204112452696 ], [ -82.077399138250428, 28.796217375393478 ], [ -82.077441416996166, 28.796243940720998 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pine Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076071847188416, 28.797401338168431 ], [ -82.076790261106339, 28.797400934878986 ], [ -82.077471251923868, 28.797411187272804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Perkins Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.073123115760865, 28.79652244073311 ], [ -82.073170505820897, 28.796482192998937 ], [ -82.073201905367085, 28.796456048832223 ], [ -82.073381585360792, 28.796339246487758 ], [ -82.073565656648228, 28.796256719453773 ], [ -82.073641100369358, 28.796230091265077 ], [ -82.073725603972576, 28.796208773659686 ], [ -82.073804078536014, 28.796198095710519 ], [ -82.073888595952724, 28.796198049992469 ], [ -82.074006319456217, 28.796197985321761 ], [ -82.07602872129948, 28.796199533816338 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Warnell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.072730322563288, 28.797408476859299 ], [ -82.073076925968934, 28.796645183450362 ], [ -82.073123115760865, 28.79652244073311 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pine Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.072730322563288, 28.797408476859299 ], [ -82.074121871935958, 28.797410387525115 ], [ -82.076035627965922, 28.797404017465531 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Warnell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071554590701155, 28.799873967258524 ], [ -82.072121430239008, 28.798658489439983 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Warnell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.072121430239008, 28.798658489439983 ], [ -82.072299269816327, 28.798280830411716 ], [ -82.072642960329603, 28.797661120054293 ], [ -82.072700213856152, 28.79752016747636 ], [ -82.072730322563288, 28.797408476859299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Raintree Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98730091394188, 28.873502675977786 ], [ -81.987542758576652, 28.873130911329113 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Raintree Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987542758576652, 28.873130911329113 ], [ -81.987619291175477, 28.87301507182562 ], [ -81.987717253424194, 28.872872295105729 ], [ -81.987810692097554, 28.872760022948263 ], [ -81.987949902293039, 28.872610986941314 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Raintree Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987949902293039, 28.872610986941314 ], [ -81.988175655023298, 28.872404235490134 ], [ -81.988898828095913, 28.871713932385688 ], [ -81.989549294373191, 28.871080869847322 ], [ -81.989871021350964, 28.870764517570706 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Birch Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989144131912539, 28.873248516125635 ], [ -81.989467381113499, 28.87292955828951 ], [ -81.989930823198918, 28.872487223171674 ], [ -81.990386915288269, 28.872037339938675 ], [ -81.990772600492321, 28.871668274933217 ], [ -81.991048290483235, 28.871417891247525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Everwood Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988558950099787, 28.872946727106083 ], [ -81.988959950940952, 28.872557192700981 ], [ -81.989345642173973, 28.872177354705311 ], [ -81.989743576277434, 28.871797518334212 ], [ -81.99020578742477, 28.871353024692546 ], [ -81.990463523194634, 28.871107879635964 ], [ -81.990598203706085, 28.870981266367615 ], [ -81.990659422252875, 28.870938164973055 ], [ -81.990775732207453, 28.870897760769129 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blossom Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989788711671778, 28.873518559655906 ], [ -81.99017327012622, 28.873144672652849 ], [ -81.99079954468327, 28.872541937842659 ], [ -81.991186293109976, 28.872175139242252 ], [ -81.991411309142734, 28.871962665315881 ], [ -81.991629591818153, 28.87174646136333 ], [ -81.991706115437282, 28.871684502334965 ], [ -81.991801564594937, 28.871628486101319 ], [ -81.991898832476849, 28.871581043593256 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13631050667297, 28.797064858107873 ], [ -82.136327800013149, 28.797873216360021 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136327800013149, 28.797873216360021 ], [ -82.136331363450154, 28.797968659994233 ], [ -82.136343447468064, 28.798723459566112 ], [ -82.136323453930629, 28.799031083247655 ], [ -82.136318954823508, 28.799493615177557 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 424", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135401727033994, 28.797839312636135 ], [ -82.13549873307322, 28.797830111596916 ], [ -82.135736098160322, 28.797840479446098 ], [ -82.135978625954962, 28.797852356687262 ], [ -82.136327800013149, 28.797873216360021 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 422B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137264475434279, 28.798876017390075 ], [ -82.137241897874574, 28.799492188491378 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 422", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137241897874574, 28.799492188491378 ], [ -82.137649537327221, 28.799487782320181 ], [ -82.138138929649216, 28.799473813928675 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 422", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136318954823508, 28.799493615177557 ], [ -82.137241897874574, 28.799492188491378 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 434B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.130326737143136, 28.795955750600804 ], [ -82.130848265699214, 28.795438074087794 ], [ -82.13136885175004, 28.79490554081729 ], [ -82.131412335298663, 28.794880747497203 ], [ -82.131460121225999, 28.794863513164181 ], [ -82.131511039592581, 28.794854525604158 ], [ -82.131562751276832, 28.794854130858756 ], [ -82.132502419775435, 28.794807050100825 ], [ -82.133496215323731, 28.794805528625702 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 434A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129785954552304, 28.795610722266932 ], [ -82.130367171871626, 28.795042645258214 ], [ -82.130873142717221, 28.794552444432352 ], [ -82.130935416231466, 28.794492886100542 ], [ -82.130982146292297, 28.794467668410316 ], [ -82.131039275609155, 28.79444930725597 ], [ -82.131083427889891, 28.794440109827939 ], [ -82.131141517410143, 28.794434438697436 ], [ -82.131529972404778, 28.794389027104664 ], [ -82.132200631427693, 28.794375656342133 ], [ -82.133235035467891, 28.794353248507228 ], [ -82.13338698976375, 28.794341977529072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 434", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128589209776266, 28.796069149936269 ], [ -82.130529770111494, 28.794182055145136 ], [ -82.130607611826022, 28.794106464192865 ], [ -82.130664684200298, 28.794042333561517 ], [ -82.130708797356675, 28.794003388025335 ], [ -82.130745129862646, 28.79397360480192 ], [ -82.130791854053669, 28.793943811566404 ], [ -82.130843779244671, 28.793918588922033 ], [ -82.130921702048397, 28.793909359925767 ], [ -82.131384102419545, 28.793899761465852 ], [ -82.131919248079257, 28.793896954687469 ], [ -82.132865985393934, 28.793888441033136 ], [ -82.13322569969985, 28.793873260214582 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 435", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127954591185627, 28.795717725335965 ], [ -82.129213052624152, 28.794492246611576 ], [ -82.130323566827826, 28.793395047754117 ], [ -82.130365085019193, 28.793358393977272 ], [ -82.130411807233926, 28.79332631171156 ], [ -82.130463722678925, 28.793294223541363 ], [ -82.130526036431434, 28.793266703686214 ], [ -82.130575380731443, 28.793255214982473 ], [ -82.131266374904399, 28.793240555280221 ], [ -82.13275708680429, 28.793228780903952 ], [ -82.132880062973641, 28.793187654293273 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 436A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12986138280327, 28.789365639000277 ], [ -82.129863099484908, 28.790560639828957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 436", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129863099484908, 28.790560639828957 ], [ -82.129917400079734, 28.790553259361985 ], [ -82.129974544403836, 28.790548626396792 ], [ -82.130042091402061, 28.790553140103487 ], [ -82.131217650173767, 28.790620498197086 ], [ -82.131370584938963, 28.790608634834346 ], [ -82.13150020195684, 28.790561645252577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "High Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046905697211812, 28.86065003899208 ], [ -82.047329129710292, 28.860652085744416 ], [ -82.047762524956767, 28.86065412859049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "High Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047762524956767, 28.86065412859049 ], [ -82.04850477720953, 28.86066044422871 ], [ -82.049157359825443, 28.860660211162102 ], [ -82.049446290373453, 28.860664493060867 ], [ -82.049573320359286, 28.860666640553255 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South High Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050423985839714, 28.858199569113552 ], [ -82.050418980512717, 28.858151331990531 ], [ -82.050411374539053, 28.857870671366143 ], [ -82.050383482513396, 28.856835739888137 ], [ -82.050378457357098, 28.856743648076826 ], [ -82.050351005452754, 28.856631832940739 ], [ -82.050303639361331, 28.856539757614534 ], [ -82.050236340357017, 28.856432342305919 ], [ -82.0501665613168, 28.856344659458244 ], [ -82.050111741517995, 28.856294247981189 ], [ -82.050051944760568, 28.856250416100625 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 238", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053713731518158, 28.858199304317775 ], [ -82.052112257299797, 28.858190572284837 ], [ -82.050979410389942, 28.858190591776879 ], [ -82.05070045121974, 28.858190695545787 ], [ -82.050546027400387, 28.858192946241836 ], [ -82.050423985839714, 28.858199569113552 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 242", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050423985839714, 28.858199569113552 ], [ -82.050411608172283, 28.858359638773695 ], [ -82.050334636191963, 28.858861790188236 ], [ -82.050198044362631, 28.859699441748962 ], [ -82.05013600502167, 28.860179660590088 ], [ -82.050098696012256, 28.860293693864573 ], [ -82.050046443866876, 28.860405538197011 ], [ -82.050001638709858, 28.860464757439519 ], [ -82.049956826246998, 28.860510819278819 ], [ -82.049914502351726, 28.860552496803589 ], [ -82.049833729502936, 28.860602501260722 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kilgore Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042722045045679, 28.863418593820381 ], [ -82.042974184473408, 28.863501056747086 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kilgore Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042236008961041, 28.863250320596883 ], [ -82.042722045045679, 28.863418593820381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mill Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042236008961041, 28.863250320596883 ], [ -82.042159476138181, 28.863246975871125 ], [ -82.042113564283994, 28.863267201586631 ], [ -82.042079138151564, 28.863294158551607 ], [ -82.042052370321088, 28.863337956453929 ], [ -82.042029429421689, 28.863388492480482 ], [ -82.042010315220026, 28.863432288025898 ], [ -82.041983566378718, 28.863526613089626 ], [ -82.04196063815715, 28.863604096387796 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jackson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042974184473408, 28.863501056747086 ], [ -82.042779649655742, 28.863923848538231 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Terry Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04196063815715, 28.863604096387796 ], [ -82.042060137581174, 28.86363101226474 ], [ -82.042293587827672, 28.863705048368939 ], [ -82.042714574580828, 28.863866604171672 ], [ -82.042779649655742, 28.863923848538231 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Terry Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042779649655742, 28.863923848538231 ], [ -82.042821756832794, 28.863964257663273 ], [ -82.043339182810101, 28.86414734004935 ], [ -82.043394301734892, 28.864187745777102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pitt Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043394301734892, 28.864187745777102 ], [ -82.043412683320824, 28.864225465247564 ], [ -82.043415760444205, 28.864260496193641 ], [ -82.043400476231071, 28.864317092592742 ], [ -82.043376012183643, 28.864379080452473 ], [ -82.042908059706008, 28.865411332712501 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pitt Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042908059706008, 28.865411332712501 ], [ -82.042504313200325, 28.866265704955278 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jackson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042779649655742, 28.863923848538231 ], [ -82.042546433499822, 28.864430541881433 ], [ -82.042194694557566, 28.865198664047821 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mill Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04196063815715, 28.863604096387796 ], [ -82.041475185560913, 28.864924016057103 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jackson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042194694557566, 28.865198664047821 ], [ -82.041974459784612, 28.865646067400739 ], [ -82.04142695966118, 28.866848109719879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fourth Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043816061964691, 28.86989516942473 ], [ -82.043819520874621, 28.870851818162549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Third Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042679880357298, 28.868920015751424 ], [ -82.042707445784089, 28.868949648698443 ], [ -82.042725830078382, 28.868990067020729 ], [ -82.042738092824649, 28.869033178819727 ], [ -82.042719860037309, 28.869367337821448 ], [ -82.042720068243653, 28.869882041775629 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jackson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040705090658932, 28.868422081992243 ], [ -82.040689840669174, 28.868567604484099 ], [ -82.040677632767498, 28.868664620081955 ], [ -82.040671578598108, 28.868842478363096 ], [ -82.040671625276332, 28.868963744213168 ], [ -82.040680854386565, 28.869082311255113 ], [ -82.040702337133183, 28.869219739095129 ], [ -82.040736074614671, 28.869378721098908 ], [ -82.040760612084867, 28.869499978753488 ], [ -82.040772907344888, 28.869626630400145 ], [ -82.040779129881173, 28.86988532950593 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pitt Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042082186097673, 28.867106610162665 ], [ -82.041440912438887, 28.868418691620569 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042082186097673, 28.867106610162665 ], [ -82.042244442250279, 28.867114643945545 ], [ -82.042544457233078, 28.867128025164003 ], [ -82.043986346493853, 28.86712217915488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pitt Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042504313200325, 28.866265704955278 ], [ -82.042381967372535, 28.866532525874266 ], [ -82.042082186097673, 28.867106610162665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jackson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04142695966118, 28.866848109719879 ], [ -82.041014008015338, 28.86769439731243 ], [ -82.040747886588619, 28.868254991686342 ], [ -82.040705090658932, 28.868422081992243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mill Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041475185560913, 28.864924016057103 ], [ -82.041346738390118, 28.865247429487539 ], [ -82.04125192550913, 28.865473820643931 ], [ -82.041001103034006, 28.865993989709988 ], [ -82.040634045861495, 28.866772892059611 ], [ -82.039854026540226, 28.868416941756465 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hence Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039934192836895, 28.869928693958496 ], [ -82.039864854841412, 28.870299264507622 ], [ -82.039787307659978, 28.870721754060796 ], [ -82.039753115011067, 28.870955124643757 ], [ -82.039718930746517, 28.871216661477639 ], [ -82.039458979799932, 28.872803999880066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ross Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039266787746129, 28.869880379881742 ], [ -82.039312716516065, 28.869904620611209 ], [ -82.039380072313989, 28.869915379283576 ], [ -82.039496408752797, 28.869923431348415 ], [ -82.039934192836895, 28.869928693958496 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mill Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039854026540226, 28.868416941756465 ], [ -82.039260590947634, 28.869683661657284 ], [ -82.039233058336123, 28.869737566776781 ], [ -82.039220830899069, 28.869791466610526 ], [ -82.03923002748283, 28.869821105519918 ], [ -82.039245345747204, 28.869850744480956 ], [ -82.039266787746129, 28.869880379881742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jackson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040779129881173, 28.86988532950593 ], [ -82.040803989116341, 28.870839275934742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jackson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040803989116341, 28.870839275934742 ], [ -82.040801107238039, 28.871300085302391 ], [ -82.04079552163779, 28.871560352451205 ], [ -82.04080285960255, 28.872803606281099 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041942084669074, 28.868917549432808 ], [ -82.041978811924778, 28.868893284286727 ], [ -82.04206452459313, 28.868879783903264 ], [ -82.042548227899189, 28.868887720003823 ], [ -82.042618645207654, 28.868898477011449 ], [ -82.042679880357298, 28.868920015751424 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Missouri Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034496568323192, 28.869144806183716 ], [ -82.033486306002416, 28.869141687689883 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Missouri Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03301288439954, 28.869149815495877 ], [ -82.032292367065281, 28.86916218473015 ], [ -82.030978646992509, 28.869187044584319 ], [ -82.030225932340883, 28.869192968473946 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Warfield Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034496568323192, 28.869144806183716 ], [ -82.034508200571281, 28.869613022561133 ], [ -82.034500749568963, 28.870236195216297 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lee Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036210940182855, 28.869110680192509 ], [ -82.036211110828731, 28.869609215896922 ], [ -82.036211325295625, 28.870235754898502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jarrell Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036188790051483, 28.871478731191292 ], [ -82.035454034932229, 28.871472185387297 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clyde Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036211325295625, 28.870235754898502 ], [ -82.035430659207705, 28.870235958541503 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lee Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036211325295625, 28.870235754898502 ], [ -82.036223021993337, 28.870872394795494 ], [ -82.03622308184552, 28.871044186847598 ], [ -82.036188790051483, 28.871478731191292 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03542263516681, 28.869131097365752 ], [ -82.035426659979564, 28.869717212283355 ], [ -82.035430659207705, 28.870235958541503 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035430659207705, 28.870235958541503 ], [ -82.035454034932229, 28.871472185387297 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clyde Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035430659207705, 28.870235958541503 ], [ -82.034500749568963, 28.870236195216297 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clyde Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034500749568963, 28.870236195216297 ], [ -82.03429563717323, 28.870243657167784 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stanley Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033486306002416, 28.869141687689883 ], [ -82.033471277821874, 28.870024236299244 ], [ -82.033444561057578, 28.870246561137392 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clyde Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03429563717323, 28.870243657167784 ], [ -82.033952760096611, 28.870251827827875 ], [ -82.033444561057578, 28.870246561137392 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cecil Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03429563717323, 28.870243657167784 ], [ -82.034308282809405, 28.871475170582425 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 136", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033077413540823, 28.870960768263362 ], [ -82.032777390681531, 28.870963535269041 ], [ -82.032400831276561, 28.87095823592524 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 42nd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032400831276561, 28.87095823592524 ], [ -82.032388983551755, 28.872262514156631 ], [ -82.032389056069348, 28.872499655429976 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 136", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032400831276561, 28.87095823592524 ], [ -82.031718124073763, 28.870944919087833 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 78th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031718124073763, 28.870944919087833 ], [ -82.029395276588119, 28.870967473991428 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 134", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028892909056466, 28.872791469968266 ], [ -82.028445923748265, 28.872775393620593 ], [ -82.027518285581337, 28.872767497080023 ], [ -82.026364097897826, 28.872762333641717 ], [ -82.025393598872995, 28.872754431551474 ], [ -82.024694718771272, 28.872761219723767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magnolia Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033481776512417, 28.866918489387668 ], [ -82.031547200549966, 28.866914085753056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crestview Circle West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031547324870417, 28.867331708564357 ], [ -82.031543857744865, 28.86766768999626 ], [ -82.031543964296802, 28.868025651594124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crestview Circle West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031543964296802, 28.868025651594124 ], [ -82.031544017573225, 28.868204631483614 ], [ -82.031544074588922, 28.868396171423395 ], [ -82.031544112911433, 28.868524911986341 ], [ -82.031522731354428, 28.868597138105113 ], [ -82.03147994576446, 28.868666227296544 ], [ -82.031437150803328, 28.868703917239952 ], [ -82.031390791705675, 28.868741607982187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crestview Circle North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031390791705675, 28.868741607982187 ], [ -82.031330154079498, 28.868763601888631 ], [ -82.031240977316756, 28.868773042189822 ], [ -82.029677866728974, 28.868780126126513 ], [ -82.02953292951878, 28.868776719474145 ], [ -82.029492136462508, 28.86876908930936 ], [ -82.029459589213843, 28.868758782042825 ], [ -82.029435978332771, 28.868748319469596 ], [ -82.029391885455482, 28.868725183001807 ], [ -82.029353918394449, 28.868694956724408 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Judy Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031547324870417, 28.867331708564357 ], [ -82.030320234270249, 28.867331983203449 ], [ -82.029264363662421, 28.867338492289505 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crestview Circle West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031547200549966, 28.866914085753056 ], [ -82.031547324870417, 28.867331708564357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magnolia Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031547200549966, 28.866914085753056 ], [ -82.031372409979554, 28.866904706540822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magnolia Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031372409979554, 28.866904706540822 ], [ -82.031269678741538, 28.86690724191493 ], [ -82.031044246140027, 28.86694246016901 ], [ -82.030895858361717, 28.866957565598561 ], [ -82.030718929208959, 28.866957606062851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gray Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030716675424756, 28.865469114916998 ], [ -82.030712395342888, 28.866312624107678 ], [ -82.030718929208959, 28.866957606062851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magnolia Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030718929208959, 28.866957606062851 ], [ -82.029967836554519, 28.866951741333395 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Willis Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029970322227072, 28.865464504225351 ], [ -82.029969106037512, 28.86623891797116 ], [ -82.029967836554519, 28.866951741333395 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Masters Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029245664398047, 28.865458931069938 ], [ -82.029243842055209, 28.866314702018965 ], [ -82.029255558432922, 28.866969980047664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magnolia Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029967836554519, 28.866951741333395 ], [ -82.029255558432922, 28.866969980047664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pleasantdale Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028486363398486, 28.865477668321859 ], [ -82.028484621964296, 28.866432701628199 ], [ -82.028488564893905, 28.86832524448155 ], [ -82.028488611258169, 28.868497945250574 ], [ -82.028481503882091, 28.868598428070868 ], [ -82.02846011682648, 28.868658092750213 ], [ -82.028350048901146, 28.868765625694746 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lee Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036188790051483, 28.871478731191292 ], [ -82.036192750236836, 28.871866105686433 ], [ -82.036182854308464, 28.872112481938068 ], [ -82.036168851042859, 28.872251617932108 ], [ -82.03610223623096, 28.872610287074036 ], [ -82.036084699765269, 28.872690680495918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045571470665593, 28.815296573762893 ], [ -82.045566787792495, 28.81693113261171 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045582916865158, 28.810786229923995 ], [ -82.045578939606017, 28.811544382099434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 37th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045582916865158, 28.810786229923995 ], [ -82.043426581572533, 28.810745230924468 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045602922659455, 28.807272109001175 ], [ -82.045602965169962, 28.807370753209891 ], [ -82.0455990491987, 28.808272953328572 ], [ -82.045594766621576, 28.808940268480178 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 521A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048540386712276, 28.802726071803718 ], [ -82.048187325108188, 28.802377447456934 ], [ -82.047916079389552, 28.802123560693815 ], [ -82.04784288587571, 28.802055351626432 ], [ -82.047769699304212, 28.802002307664392 ], [ -82.047700830315847, 28.801975795532474 ], [ -82.047601837896394, 28.801960666545988 ], [ -82.047309188741607, 28.801960766789151 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 521A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047309188741607, 28.801960766789151 ], [ -82.046790809842889, 28.801948351735678 ], [ -82.046704944765764, 28.801948381864641 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 521B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047309188741607, 28.801960766789151 ], [ -82.047322363719601, 28.802552122713308 ], [ -82.047305180135723, 28.802620362322664 ], [ -82.04725786639689, 28.802681030180189 ], [ -82.04718472634994, 28.80273033506796 ], [ -82.047107268840236, 28.802753107127231 ], [ -82.046742380295257, 28.80275290788261 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 31st Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051223451662224, 28.801676662772241 ], [ -82.051224103593768, 28.801920705277873 ], [ -82.051264491477454, 28.80255449712784 ], [ -82.051199320295424, 28.80306096713117 ], [ -82.05119994440436, 28.804349822717462 ], [ -82.051205310207152, 28.804495527705811 ], [ -82.051217383998932, 28.804816837050346 ], [ -82.051241589587462, 28.805029110198181 ], [ -82.051269231924891, 28.805232284048504 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Stokes Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053904118850028, 28.800759350264215 ], [ -82.053904494813125, 28.801100865076418 ], [ -82.053908136781828, 28.801489037108134 ], [ -82.053925440953847, 28.801667954132146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Stokes Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053924500323575, 28.799824130622799 ], [ -82.053904118850028, 28.800759350264215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Florida Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058066779929334, 28.800765577307772 ], [ -82.057743151824155, 28.80077178043733 ], [ -82.056858323016414, 28.800760020073096 ], [ -82.055994146913662, 28.800742180130342 ], [ -82.055295231810504, 28.800727300717025 ], [ -82.054265813712064, 28.800739843901532 ], [ -82.053904118850028, 28.800759350264215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058097258987843, 28.799840619347783 ], [ -82.05701964070532, 28.799838038803852 ], [ -82.055253446399931, 28.799826633834616 ], [ -82.053924500323575, 28.799824130622799 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060129596595502, 28.801680532484411 ], [ -82.059502977895519, 28.80167171022012 ], [ -82.059076050845349, 28.801662795382679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058077611014056, 28.801675353371326 ], [ -82.056122025299771, 28.801670104503305 ], [ -82.055309497822691, 28.801673468604747 ], [ -82.053925440953847, 28.801667954132146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059076050845349, 28.801662795382679 ], [ -82.058335830036427, 28.801678277135995 ], [ -82.058077611014056, 28.801675353371326 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Graham Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059076050845349, 28.801662795382679 ], [ -82.059082382776069, 28.802886439373875 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spurling Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062230489680744, 28.802889603730989 ], [ -82.059082382776069, 28.802886439373875 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062233225938698, 28.80168869048947 ], [ -82.061210673753678, 28.801683087511979 ], [ -82.060952452601612, 28.801680170148948 ], [ -82.060129596595502, 28.801680532484411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hammock Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062214928208206, 28.79985093974841 ], [ -82.062243501984128, 28.798573146287282 ], [ -82.062238526016671, 28.798078447183027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062214928208206, 28.79985093974841 ], [ -82.060138879561634, 28.799848834578437 ], [ -82.058816813977529, 28.799837278489107 ], [ -82.058097258987843, 28.799840619347783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brooks Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062974221446822, 28.799853875734264 ], [ -82.062968520159359, 28.798147003642566 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062974221446822, 28.799853875734264 ], [ -82.062507572174226, 28.799853838078544 ], [ -82.062214928208206, 28.79985093974841 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063269137359299, 28.799856522329499 ], [ -82.062974221446822, 28.799853875734264 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sherman Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063269137359299, 28.799856522329499 ], [ -82.06326851881964, 28.799974793080299 ], [ -82.063262662387586, 28.801691248967149 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065351379681175, 28.799855541934878 ], [ -82.064695857861111, 28.7998558537574 ], [ -82.063269137359299, 28.799856522329499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bigham Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065351379681175, 28.799855541934878 ], [ -82.065345630372292, 28.801693302700937 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clark Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067857067256227, 28.798193122991911 ], [ -82.067522149182849, 28.798167605511196 ], [ -82.067369205802976, 28.798148244308564 ], [ -82.067200775163826, 28.798128883330971 ], [ -82.066921993248812, 28.798119202989071 ], [ -82.066639337645924, 28.798113393072242 ], [ -82.066534793173943, 28.798121137116706 ], [ -82.066447674180154, 28.79815017528265 ], [ -82.066377977569246, 28.79823148666723 ], [ -82.066336454903279, 28.798329060238622 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mockingbird Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069773698350957, 28.798235157189076 ], [ -82.067857067256227, 28.798193122991911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clark Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069479871202859, 28.798776408689569 ], [ -82.068461321816727, 28.798782131086423 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clark Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068461321816727, 28.798782131086423 ], [ -82.068347771215443, 28.798692787827424 ], [ -82.068217613744068, 28.798595448359372 ], [ -82.067929394405539, 28.798307787988236 ], [ -82.067857067256227, 28.798193122991911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clark Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070520465527352, 28.79878549400852 ], [ -82.069479871202859, 28.798776408689569 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Perch Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070532732502471, 28.797112141113434 ], [ -82.068703888317444, 28.79711307317179 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Commercial Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070520465527352, 28.79878549400852 ], [ -82.070525221654037, 28.797657362236272 ], [ -82.070532732502471, 28.797112141113434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Commercial Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070532732502471, 28.797112141113434 ], [ -82.070535709976312, 28.796866454562569 ], [ -82.070543490728326, 28.796145902341557 ], [ -82.070543329588034, 28.795903294259499 ], [ -82.07054581159305, 28.795495711529078 ], [ -82.070542755540274, 28.795044459740076 ], [ -82.070528705159916, 28.794629605642296 ], [ -82.070511967800286, 28.794309371142145 ], [ -82.070489736927925, 28.794013399019864 ], [ -82.070475873626421, 28.793875120540491 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070523640239884, 28.800790589439696 ], [ -82.070523722318839, 28.800914926963106 ], [ -82.070513463344284, 28.801018040249716 ], [ -82.070434436979909, 28.801257658153208 ], [ -82.070393207228122, 28.801385047833406 ], [ -82.070345069162741, 28.801479083522203 ], [ -82.070317558632624, 28.801527619465585 ], [ -82.070285067990639, 28.801566172090634 ], [ -82.07025309041606, 28.801606067082513 ], [ -82.070213692764895, 28.801640808272406 ], [ -82.070167853216176, 28.801668678955828 ], [ -82.070117127600241, 28.801689331839974 ], [ -82.070063275152137, 28.801701735577712 ], [ -82.069839832728547, 28.80170460027589 ], [ -82.069205607435478, 28.801698013234159 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Red Bud Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06917769288367, 28.800807668320402 ], [ -82.069205421507917, 28.80141294891267 ], [ -82.069205607435478, 28.801698013234159 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069205607435478, 28.801698013234159 ], [ -82.068475708155617, 28.801698381106146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Church Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068488902445722, 28.800809820944444 ], [ -82.068475708155617, 28.801698381106146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066392736154697, 28.801693343899007 ], [ -82.065345630372292, 28.801693302700937 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Hubb Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066392736154697, 28.801693343899007 ], [ -82.066384579940902, 28.80076985948326 ], [ -82.066386208469524, 28.799855709109565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067411841655741, 28.801695877564423 ], [ -82.066392736154697, 28.801693343899007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068475708155617, 28.801698381106146 ], [ -82.067442829622891, 28.801695862270748 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990416184769884, 28.875325611626401 ], [ -81.990419785120579, 28.875378020316784 ], [ -81.990429543510729, 28.875418242955099 ], [ -81.990440951290807, 28.875448081113209 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990440951290807, 28.875448081113209 ], [ -81.990456196550014, 28.875473246522432 ], [ -81.990488594220821, 28.875508479246534 ], [ -81.990519089370252, 28.875531969263541 ], [ -81.990555300771447, 28.875553781398491 ], [ -81.990585796735417, 28.875568881792887 ], [ -81.990625821533015, 28.875580628094255 ], [ -81.990671563758823, 28.875589019123648 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Scotch Pine Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993162079077507, 28.871777098845413 ], [ -81.993251143332188, 28.871735843832187 ], [ -81.993387082648468, 28.87167808619688 ], [ -81.993562866511297, 28.871593513935839 ], [ -81.993762089274853, 28.871482120701256 ], [ -81.993912093117103, 28.871374852935709 ], [ -81.993994128356405, 28.871290273929187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blossom Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992587905767238, 28.871304642780778 ], [ -81.992817594205007, 28.871209758472251 ], [ -81.993187910124504, 28.871048864114826 ], [ -81.99339182034106, 28.870931284568652 ], [ -81.993441039610261, 28.870912720340158 ], [ -81.993492600481147, 28.87090447133733 ], [ -81.993544161558617, 28.87090859920513 ], [ -81.993593377485297, 28.870925106536284 ], [ -81.993642593787072, 28.870951926270479 ], [ -81.993708213340355, 28.87101175572251 ], [ -81.993844139710774, 28.871141731681014 ], [ -81.993994128356405, 28.871290273929187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Scotch Pine Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992587905767238, 28.871304642780778 ], [ -81.992693358069602, 28.871496507137252 ], [ -81.992836306697782, 28.871711065462549 ], [ -81.992885521842425, 28.871756453058882 ], [ -81.992944113634721, 28.871785338019137 ], [ -81.992983955766121, 28.8717977188379 ], [ -81.993026141833226, 28.871801847306656 ], [ -81.993080048136704, 28.87179978748242 ], [ -81.993162079077507, 28.871777098845413 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blossom Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991898832476849, 28.871581043593256 ], [ -81.992231650198164, 28.871451094952015 ], [ -81.992587905767238, 28.871304642780778 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blossom Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989311114215795, 28.874044585250104 ], [ -81.989466412412199, 28.873822826116385 ], [ -81.989633423058194, 28.87366811511221 ], [ -81.989788711671778, 28.873518559655906 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Double Palm Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989788711671778, 28.873518559655906 ], [ -81.98999377795846, 28.873634619511073 ], [ -81.990049440558067, 28.87365009638135 ], [ -81.990116821385612, 28.873662994418638 ], [ -81.990248658694341, 28.873675898077341 ], [ -81.99044494660285, 28.873686226582485 ], [ -81.990553343659343, 28.873691392812102 ], [ -81.990667602510001, 28.873693978781819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Double Palm Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991238865447485, 28.8740189396568 ], [ -81.991317959420385, 28.874104042826453 ], [ -81.991448547239841, 28.874243709715888 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Double Palm Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990667602510001, 28.873693978781819 ], [ -81.990797715436202, 28.873732125502528 ], [ -81.990934197333431, 28.873771359808014 ], [ -81.990975211727417, 28.873794571635457 ], [ -81.991016224190147, 28.873828097671318 ], [ -81.991060166535462, 28.873871939015601 ], [ -81.991238865447485, 28.8740189396568 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chestnut Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992756558807685, 28.872559465790033 ], [ -81.992844457139583, 28.872464057480006 ], [ -81.992964579590677, 28.872360914489796 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chestnut Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991238865447485, 28.8740189396568 ], [ -81.991335552479626, 28.873936425935241 ], [ -81.991408801268449, 28.873866805430843 ], [ -81.991690074806726, 28.873596056810172 ], [ -81.992191090198858, 28.873106126165755 ], [ -81.99258955466874, 28.872739969407242 ], [ -81.992756558807685, 28.872559465790033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bayberry Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990667602510001, 28.873693978781819 ], [ -81.990691046938849, 28.873624354247831 ], [ -81.990723277394594, 28.873577941157205 ], [ -81.990819966548955, 28.873472219673705 ], [ -81.991101242599456, 28.873201470461563 ], [ -81.991652067098968, 28.87267544309287 ], [ -81.992109129226307, 28.872229350092006 ], [ -81.992205814340238, 28.872154572970064 ], [ -81.992261480288562, 28.872121052984067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Astoria Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988616900547001, 28.868840533439968 ], [ -81.98860495024806, 28.867449605624518 ], [ -81.9886100705085, 28.867065606456542 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gumwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989338827186103, 28.868840593290027 ], [ -81.989381396748541, 28.868840596698494 ], [ -81.990062122277436, 28.868840649376743 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gumwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987884819702671, 28.868840468800336 ], [ -81.988616900547001, 28.868840533439968 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gumwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988616900547001, 28.868840533439968 ], [ -81.989338827186103, 28.868840593290027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gumwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990062122277436, 28.868840649376743 ], [ -81.990447788430302, 28.868840677696401 ], [ -81.9907930317096, 28.868838295669104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Daffodil Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9907930317096, 28.868838295669104 ], [ -81.990788252756985, 28.867711733514323 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Daffodil Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990788252756985, 28.867711733514323 ], [ -81.990787868383336, 28.867633351291026 ], [ -81.990787921150456, 28.867069556895359 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blackberry Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99269651114858, 28.866829373596335 ], [ -81.992696564072304, 28.866109846032437 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Raintree Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990415822790851, 28.870359723530218 ], [ -81.990716170500008, 28.870228765676806 ], [ -81.991090137973785, 28.870073747697848 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Day Lily Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990063669179492, 28.869473271429232 ], [ -81.990062122277436, 28.868840649376743 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tallowtree Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990063669179492, 28.869473271429232 ], [ -81.99051002948012, 28.869474157680106 ], [ -81.990641223207277, 28.869473313423232 ], [ -81.990718386256361, 28.869490672843568 ], [ -81.990782217998458, 28.869523446241118 ], [ -81.990825597592604, 28.869568799007752 ], [ -81.990904072494899, 28.869714141995615 ], [ -81.991090137973785, 28.870073747697848 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tallowtree Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991090137973785, 28.870073747697848 ], [ -81.991314612283176, 28.870490586024903 ], [ -81.991685590581369, 28.871174620489167 ], [ -81.991898832476849, 28.871581043593256 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tallowtree Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98933969112862, 28.869473216196329 ], [ -81.989727439461277, 28.86947324674475 ], [ -81.990063669179492, 28.869473271429232 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Day Lily Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990787921150456, 28.867069556895359 ], [ -81.99135456194972, 28.867066276396759 ], [ -81.99170027375456, 28.867066298517098 ], [ -81.991842773244386, 28.867058624262473 ], [ -81.991997235030667, 28.867011192381483 ], [ -81.992161232961621, 28.866920135415331 ], [ -81.99227647719961, 28.866863455880566 ], [ -81.992395102905803, 28.866833627190442 ], [ -81.992584425598736, 28.866827304684087 ], [ -81.99269651114858, 28.866829373596335 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gumwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991404060956583, 28.869096433342456 ], [ -81.991484360517418, 28.86924644734513 ], [ -81.991539199656032, 28.869325765118134 ], [ -81.99158033114449, 28.869375769775001 ], [ -81.991643008162171, 28.869429227090706 ], [ -81.991707645283682, 28.869468886479314 ], [ -81.991795788628082, 28.869515446306426 ], [ -81.991872179797653, 28.869548211845377 ], [ -81.991991663440217, 28.869596497767123 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gumwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991991663440217, 28.869596497767123 ], [ -81.99208137304241, 28.869646505201988 ], [ -81.992152277708556, 28.869686167458365 ], [ -81.992197328915452, 28.869717205744699 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cazaras Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97522336050794, 28.950958631503084 ], [ -81.975127177305353, 28.951070801029349 ], [ -81.975092580516971, 28.95111135712769 ], [ -81.975074128079626, 28.951137718663038 ], [ -81.975051060354929, 28.951172192744931 ], [ -81.975030298304318, 28.95121275140967 ], [ -81.975003771264511, 28.951255945490036 ], [ -81.974988773583874, 28.951287784572759 ], [ -81.97497031763092, 28.951328342756948 ], [ -81.974951861132212, 28.951366872585552 ], [ -81.974931097519729, 28.951413516291556 ], [ -81.974908022753723, 28.951476382772235 ], [ -81.974892936650448, 28.95153397504798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Danforth Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015130484939561, 28.936682878681975 ], [ -82.015126571657831, 28.937321161844572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blythe Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012606205473944, 28.937940813040534 ], [ -82.012561062317801, 28.938400979721418 ], [ -82.012547147338068, 28.938587281172921 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Davenport Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011814272439608, 28.939049470662621 ], [ -82.011810420524156, 28.939131552645357 ], [ -82.011808818677949, 28.939435009487262 ], [ -82.011800061045591, 28.939680758019307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Auburndale Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012522173166218, 28.939844921100271 ], [ -82.013155075294748, 28.939844863153663 ], [ -82.013236555748193, 28.939844855477343 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Auburndale Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013236555748193, 28.939844855477343 ], [ -82.013457563848945, 28.939844834407712 ], [ -82.013712959632016, 28.939848247346379 ], [ -82.013964298721703, 28.939844784728759 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Auburndale Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014562031851909, 28.939949552142966 ], [ -82.014602877725366, 28.939968042185079 ], [ -82.014744411162056, 28.940029749589598 ], [ -82.01485853437282, 28.940067552598652 ], [ -82.014991998951913, 28.940088507611385 ], [ -82.015160497226248, 28.940088324262756 ], [ -82.015360059710417, 28.940083247751996 ], [ -82.015575486373962, 28.940084626886012 ], [ -82.015682001748488, 28.940093133478662 ], [ -82.015731802840321, 28.940112596644926 ], [ -82.015770538667027, 28.940135711726892 ], [ -82.01580512593101, 28.94016977750298 ], [ -82.015835565305039, 28.940212362295174 ], [ -82.015846635639974, 28.940242781860047 ], [ -82.015852174989945, 28.940279285317022 ], [ -82.015850798637061, 28.94032917418334 ], [ -82.015850841353384, 28.940617557096662 ], [ -82.015851762302802, 28.940907165211978 ], [ -82.015854520386426, 28.941120527510407 ], [ -82.015854635945033, 28.941291226064148 ], [ -82.015850723133582, 28.941363709539921 ], [ -82.015841275285808, 28.941408481509875 ], [ -82.015823297990408, 28.94144498763789 ], [ -82.015803759366108, 28.941473868659713 ], [ -82.015780422363235, 28.941496098403118 ], [ -82.015741692698839, 28.941525304612458 ], [ -82.015708494882261, 28.941539911982357 ], [ -82.015665613952422, 28.941548433563796 ], [ -82.015617199496873, 28.941553306878493 ], [ -82.015514834299296, 28.941554534619303 ], [ -82.015391719712781, 28.941554548286355 ], [ -82.015247662988969, 28.941553991178999 ], [ -82.015130273116611, 28.941553359742588 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012105950681175, 28.94819106635849 ], [ -82.012195436407538, 28.948810722386487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012195436407538, 28.948810722386487 ], [ -82.012211798286813, 28.948908215461646 ], [ -82.012249152353533, 28.949162605419705 ], [ -82.012250523102409, 28.949173606048429 ], [ -82.012251890773953, 28.949184605775084 ], [ -82.012252868626135, 28.94919560824264 ], [ -82.012253847504041, 28.94920660800323 ], [ -82.012254435536391, 28.949217608700213 ], [ -82.012254827633072, 28.949228610316595 ], [ -82.012255023793728, 28.94923961014549 ], [ -82.012255024018586, 28.949250610893792 ], [ -82.012254636474822, 28.94926161077365 ], [ -82.012254246879522, 28.949272612458259 ], [ -82.012253465412059, 28.949283613274805 ], [ -82.012252684970164, 28.949294613188933 ], [ -82.012251513682187, 28.949305615844054 ], [ -82.012250148509281, 28.949316615809224 ], [ -82.012248586374298, 28.949327616693843 ], [ -82.012246828302992, 28.949338618497823 ], [ -82.012244875320832, 28.949349618514212 ], [ -82.012242531452912, 28.949360275693589 ], [ -82.012240186597793, 28.94937127754865 ], [ -82.012237450856347, 28.949381932957511 ], [ -82.012232781891868, 28.949405975846204 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011294914118096, 28.95172219240056 ], [ -82.011291461576818, 28.951795975803531 ], [ -82.011290612105185, 28.951942781488746 ], [ -82.011252659257266, 28.95273315257559 ], [ -82.01125264492542, 28.952733444919325 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Richmond Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01509181454918, 28.958047336264542 ], [ -82.01517017501358, 28.958047326828702 ], [ -82.015310573410602, 28.958047311425034 ], [ -82.015434645586026, 28.958050168780993 ], [ -82.015546341671836, 28.958050873640165 ], [ -82.015811022337971, 28.958052087095933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067442829622891, 28.801695862270748 ], [ -82.067411841655741, 28.801695877564423 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Hubb Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066380039491563, 28.803518790090347 ], [ -82.066389955950214, 28.80274869271117 ], [ -82.066392736154697, 28.801693343899007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Taylor Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066380039491563, 28.803518790090347 ], [ -82.065818913444716, 28.803531380783767 ], [ -82.065305908640724, 28.80353162690816 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Taylor Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067430223173062, 28.803518464382492 ], [ -82.066380039491563, 28.803518790090347 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Church Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068475708155617, 28.801698381106146 ], [ -82.068486122708038, 28.801831811442529 ], [ -82.06846271528417, 28.802899299422247 ], [ -82.068470004733513, 28.8035209798044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Warnell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070511686277371, 28.803510842860778 ], [ -82.070485400996347, 28.802316543401414 ], [ -82.070484960174355, 28.802240911929367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Warnell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070517702766452, 28.807143212447741 ], [ -82.070529935492431, 28.805057460626532 ], [ -82.070557288645972, 28.80477238222937 ], [ -82.070536414152031, 28.804447904082505 ], [ -82.070511686277371, 28.803510842860778 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Hubb Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066380039491563, 28.803518790090347 ], [ -82.066363182122245, 28.803716532476209 ], [ -82.066355135064754, 28.804607363420477 ], [ -82.066359991662097, 28.805486816159906 ], [ -82.066369541665168, 28.806984157844241 ], [ -82.066344610416891, 28.807034207575718 ], [ -82.066323976181707, 28.807073642241736 ], [ -82.066293007725477, 28.807103983924453 ], [ -82.066258587437474, 28.807122195711568 ], [ -82.066217279036209, 28.807134346400947 ], [ -82.06615531056508, 28.80714650708401 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062230489680744, 28.802889603730989 ], [ -82.062235006048553, 28.803660854673751 ], [ -82.062235595944273, 28.804661614575625 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sherman Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063262662387586, 28.801691248967149 ], [ -82.063252961797076, 28.802743569236195 ], [ -82.063240010640612, 28.803081167663358 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crate Mill Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06615531056508, 28.80714650708401 ], [ -82.06583166037457, 28.80714969609015 ], [ -82.06555276866726, 28.807146797522822 ], [ -82.06222156649585, 28.807145617996447 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bronson Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062205267341795, 28.808701350096943 ], [ -82.063114265218161, 28.808713064070545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 120", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02460768094285, 28.89849416755245 ], [ -82.023813531286606, 28.898487926583208 ], [ -82.022361218402523, 28.89848497668115 ], [ -82.020546280497058, 28.898482066206903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 118", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024689528956202, 28.899596674649654 ], [ -82.024609751243176, 28.899596688893535 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 117", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02460768094285, 28.89849416755245 ], [ -82.024607890075814, 28.899392460203188 ], [ -82.024609751243176, 28.899596688893535 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 117", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024689528956202, 28.899596674649654 ], [ -82.024687932068289, 28.90053006689357 ], [ -82.024689785712312, 28.900705576285382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 118", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024609751243176, 28.899596688893535 ], [ -82.023233571893059, 28.899588949040496 ], [ -82.021389603479136, 28.899581269045964 ], [ -82.020684289620903, 28.899574993200339 ], [ -82.020548303737371, 28.89957341814435 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 121", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020546280497058, 28.898482066206903 ], [ -82.020546382933986, 28.899013383146848 ], [ -82.020548303737371, 28.89957341814435 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 116", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024689785712312, 28.900705576285382 ], [ -82.023748753079374, 28.900699359356597 ], [ -82.020543078618857, 28.900685513021557 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 121", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020548303737371, 28.89957341814435 ], [ -82.020544786669632, 28.90013664442915 ], [ -82.020543078618857, 28.900685513021557 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 121", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020543078618857, 28.900685513021557 ], [ -82.020541341229716, 28.901071633060749 ], [ -82.020539624126869, 28.901579016595235 ], [ -82.020539649961179, 28.901713041318668 ], [ -82.020541489790006, 28.901842280881478 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 114", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021252254624159, 28.901839062622066 ], [ -82.021007475992903, 28.901840614900301 ], [ -82.020777203373314, 28.901842245767831 ], [ -82.020541489790006, 28.901842280881478 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 114C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021250659611937, 28.902925547547898 ], [ -82.021250749409987, 28.9033754903549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 117A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024686680372312, 28.902944122593247 ], [ -82.02446365552953, 28.902944162303854 ], [ -82.022991333461619, 28.902930055114556 ], [ -82.021250659611937, 28.902925547547898 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 114", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024688691162098, 28.901845890600399 ], [ -82.021973902029941, 28.901837274442901 ], [ -82.021252254624159, 28.901839062622066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 117", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024688691162098, 28.901845890600399 ], [ -82.024686680372312, 28.902944122593247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 117", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024689785712312, 28.900705576285382 ], [ -82.024689887628881, 28.901139563861467 ], [ -82.024688691162098, 28.901845890600399 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 114", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026728523120525, 28.90185348840215 ], [ -82.024688691162098, 28.901845890600399 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 222", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041263011597891, 28.901903439411111 ], [ -82.041256341514924, 28.901903427890215 ], [ -82.040565746489634, 28.901902320834946 ], [ -82.039223636304499, 28.901896356606468 ], [ -82.037488882542377, 28.901889881678908 ], [ -82.037079165755145, 28.901902426041755 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 114A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017063587933379, 28.901086814228272 ], [ -82.017075010453311, 28.901111926511788 ], [ -82.017083576075464, 28.901142063143269 ], [ -82.01708358650167, 28.901207359793439 ], [ -82.017077888286607, 28.901270147848969 ], [ -82.017057997869657, 28.90181513146031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 114B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015325355520844, 28.90000458537553 ], [ -82.015422396892617, 28.900057314100522 ], [ -82.015756332743607, 28.900210476454774 ], [ -82.015810562731588, 28.900243117318173 ], [ -82.015859084567367, 28.900275760611002 ], [ -82.015899046806723, 28.900315938151977 ], [ -82.015933298367642, 28.900346072842655 ], [ -82.015973260760006, 28.90039378455641 ], [ -82.016010371379892, 28.900446521486487 ], [ -82.016047481181857, 28.900486699308562 ], [ -82.016107416150646, 28.900516831005429 ], [ -82.016141665726181, 28.900519339056952 ], [ -82.016201596714481, 28.900509285931864 ], [ -82.016287211398975, 28.900481649400422 ], [ -82.016324311614326, 28.900471599780669 ], [ -82.016378535770642, 28.90046405924307 ], [ -82.016421345707286, 28.900464054220333 ], [ -82.016458451560453, 28.900484141343757 ], [ -82.016489850272166, 28.900524320618143 ], [ -82.016498421345801, 28.900584594069478 ], [ -82.016481329843259, 28.900793045153677 ], [ -82.016475631927577, 28.9008533211884 ], [ -82.016475640814534, 28.900911083647618 ], [ -82.016475647769681, 28.90095628971704 ], [ -82.01648706963006, 28.900991448245591 ], [ -82.016504196900556, 28.901021583002084 ], [ -82.016529885098322, 28.901039160354401 ], [ -82.016563589359407, 28.901054927642701 ], [ -82.016880926254814, 28.901039119270816 ], [ -82.01692373602971, 28.901036602088329 ], [ -82.016969401624038, 28.901041619641905 ], [ -82.017023629399333, 28.901061704524864 ], [ -82.017063587933379, 28.901086814228272 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 114A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017074760537824, 28.89955232286054 ], [ -82.017071990902352, 28.90008474902826 ], [ -82.017063587933379, 28.901086814228272 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 114D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017074760537824, 28.89955232286054 ], [ -82.016640973109006, 28.899637764282829 ], [ -82.016167235121443, 28.899750833716205 ], [ -82.015972199467328, 28.899788039857302 ], [ -82.015439501896239, 28.899921693984552 ], [ -82.015393841854106, 28.899944301595784 ], [ -82.015325355520844, 28.90000458537553 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 114D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017608121024978, 28.897565708030292 ], [ -82.017662620305089, 28.899233297820441 ], [ -82.017645523469554, 28.899394031912685 ], [ -82.017625556046255, 28.899451796909755 ], [ -82.017608436999197, 28.899484447857457 ], [ -82.017582755610491, 28.899507055491011 ], [ -82.017557073797903, 28.899527149314824 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 122", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017608121024978, 28.897565708030292 ], [ -82.017180005375479, 28.897364846430513 ], [ -82.016977361194051, 28.897251856431584 ], [ -82.016888884114806, 28.897211683260291 ], [ -82.016817534704856, 28.897194111468728 ], [ -82.016734770310336, 28.897176541909076 ], [ -82.01666912965257, 28.897176549753819 ], [ -82.016612211572252, 28.897177121369602 ], [ -82.015929974117469, 28.897179146079701 ], [ -82.015830088430818, 28.897179158310074 ], [ -82.015693101725375, 28.897169127525185 ], [ -82.015624606478681, 28.897161600981818 ], [ -82.01539914092686, 28.897101351441023 ], [ -82.015330645694448, 28.897086289646595 ], [ -82.015245027161512, 28.897076253682052 ], [ -82.015147995065888, 28.897076264194059 ], [ -82.015062380755239, 28.897088830710459 ], [ -82.014979619917767, 28.897101396867935 ], [ -82.014874030795511, 28.897126521792043 ], [ -82.014346082962888, 28.89728731048157 ], [ -82.014163447655633, 28.897387786481826 ], [ -82.013387242343242, 28.897812294936184 ], [ -82.013310192196428, 28.897852486123764 ], [ -82.013264533622717, 28.89787509392167 ], [ -82.013230288783276, 28.897895189535703 ], [ -82.013193189081633, 28.897912772504576 ], [ -82.013164651354074, 28.897925331565183 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 121D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027776438906244, 28.893713729292344 ], [ -82.027636381308369, 28.893713756558405 ], [ -82.027531338622651, 28.893713777589035 ], [ -82.025770121921667, 28.893711036652796 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 121D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027775947168081, 28.891840246696582 ], [ -82.029775224905805, 28.891836747457493 ], [ -82.029922286118222, 28.891849040962438 ], [ -82.030027336535198, 28.891882912960131 ], [ -82.030153407419206, 28.891956839670069 ], [ -82.030223452623176, 28.892018450463993 ], [ -82.030286496860697, 28.892089309530284 ], [ -82.030335539509622, 28.892169413009221 ], [ -82.030370578501731, 28.892258766330073 ], [ -82.030384606844862, 28.892338880224621 ], [ -82.030384636758953, 28.892446728488647 ], [ -82.030136300381457, 28.893365035400052 ], [ -82.030083807732495, 28.893463651089522 ], [ -82.029992798740409, 28.89356227516264 ], [ -82.029901781748521, 28.893633166999436 ], [ -82.029800253533949, 28.893679410229421 ], [ -82.029695221410719, 28.893713327825697 ], [ -82.029576176613645, 28.893725678883754 ], [ -82.027776438906244, 28.893713729292344 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 128C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02576546446133, 28.888947214389805 ], [ -82.025765936277836, 28.890891569926357 ], [ -82.025769605567888, 28.891587961603157 ], [ -82.025770121921667, 28.893711036652796 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 128D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02576546446133, 28.888947214389805 ], [ -82.027211488776459, 28.888956180833354 ], [ -82.027337539615246, 28.888977725383526 ], [ -82.027446089135225, 28.889017760529544 ], [ -82.027554645942871, 28.889085530488824 ], [ -82.027631691767809, 28.88915330577829 ], [ -82.027698239026762, 28.889236489908111 ], [ -82.027754290073858, 28.889359734634553 ], [ -82.027771828561882, 28.889482986199528 ], [ -82.027772057124778, 28.890351937193703 ], [ -82.027775842470234, 28.891436584847476 ], [ -82.027775947168081, 28.891840246696582 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 128C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025765171375355, 28.887739308647756 ], [ -82.02576534679794, 28.888466518466632 ], [ -82.02576546446133, 28.888947214389805 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 116", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026725809642741, 28.900716788560757 ], [ -82.026521082600524, 28.900714809675378 ], [ -82.025405984002617, 28.90070544628005 ], [ -82.024689785712312, 28.900705576285382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 123", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026725809642741, 28.900716788560757 ], [ -82.026728523120525, 28.90185348840215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 118", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026725528916671, 28.899602585973049 ], [ -82.02574477851654, 28.899599673226344 ], [ -82.024689528956202, 28.899596674649654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 123", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026725528916671, 28.899602585973049 ], [ -82.026725809642741, 28.900716788560757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 42nd Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029593964859657, 28.909146849261486 ], [ -82.030545397806449, 28.912825447284142 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046358871635789, 28.800583742937331 ], [ -82.046455953580647, 28.800672258494231 ], [ -82.046533047257583, 28.800740788233657 ], [ -82.046847135292495, 28.80102489518714 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04988455344818, 28.79980778774571 ], [ -82.049611583685135, 28.79981924681535 ], [ -82.049360109262793, 28.799832590653509 ], [ -82.049132288114379, 28.799866751814147 ], [ -82.048925963678585, 28.799910371081495 ], [ -82.048745430315307, 28.79994830082487 ], [ -82.048646159391581, 28.799980850844182 ], [ -82.048558460830293, 28.800008951909948 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jameston Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021203277077092, 28.918450641391736 ], [ -82.021197262960655, 28.916729249261884 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morven Park Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021197262960655, 28.916729249261884 ], [ -82.021369199089989, 28.916734588763692 ], [ -82.021559677654793, 28.916734560100718 ], [ -82.021688421794053, 28.916734539062702 ], [ -82.021801536965228, 28.916734522172113 ], [ -82.021911806232481, 28.91673412757547 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northam Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021917610534942, 28.917385261714553 ], [ -82.021911806232481, 28.91673412757547 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Utica Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014290782734449, 28.913489909226612 ], [ -82.015609281512809, 28.913492184777436 ], [ -82.015830950063901, 28.913495254717329 ], [ -82.015904842070725, 28.913510726131722 ], [ -82.015964661768052, 28.913543226363217 ], [ -82.016017446429188, 28.913588109597885 ], [ -82.0160611285784, 28.913644759812691 ], [ -82.016204407041528, 28.91391394447896 ], [ -82.016247601260773, 28.914004172767871 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aiken Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01474731908678, 28.911982403916713 ], [ -82.014749140861738, 28.911329437298377 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Atwell Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011025952182052, 28.931632767966306 ], [ -82.011523948623662, 28.931634143924654 ], [ -82.01153498479087, 28.931633819099265 ], [ -82.011546756535807, 28.931635112929509 ], [ -82.011564413710104, 28.931637700167165 ], [ -82.011580599936849, 28.931638994534858 ], [ -82.011595315631752, 28.931642876802762 ], [ -82.011608558466335, 28.931646758287943 ], [ -82.011623274163384, 28.931650640552757 ], [ -82.011633574633052, 28.931657112766008 ], [ -82.011645348104878, 28.931664877845179 ], [ -82.011658591502822, 28.931673937594748 ], [ -82.011672853908209, 28.931687764983906 ], [ -82.011684968109847, 28.931697388758494 ], [ -82.011695381955562, 28.931708885836773 ], [ -82.011702739042434, 28.931717945167652 ], [ -82.011708626485699, 28.931728301217607 ], [ -82.011715985021993, 28.931741244926293 ], [ -82.011720399885917, 28.931754189781532 ], [ -82.011729231710135, 28.931771016843378 ], [ -82.011735120002484, 28.931789138040209 ], [ -82.011737328863532, 28.931804024816561 ], [ -82.011739169298096, 28.931816968080732 ], [ -82.011742848937772, 28.931831531712991 ], [ -82.011744690751229, 28.931847713312568 ], [ -82.011748913246137, 28.934288395292246 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Danforth Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015126571657831, 28.937321161844572 ], [ -82.01512661347985, 28.937617430939159 ], [ -82.015126660171489, 28.937955457275972 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avalos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998264486797822, 28.959392003341669 ], [ -81.998268262536499, 28.959027617613287 ], [ -81.998266507433996, 28.958863293214065 ], [ -81.998264555772039, 28.958678688007527 ], [ -81.998267297083714, 28.958477579053159 ], [ -81.99827296805401, 28.958346256952897 ], [ -81.998305484575255, 28.958215907897852 ], [ -81.998363223495247, 28.958140560149104 ], [ -81.998443311159505, 28.958068487983642 ], [ -81.998530847467705, 28.958025901840411 ], [ -81.998609071965035, 28.958006245461053 ], [ -81.998651908761687, 28.958001332980064 ], [ -81.998739315092195, 28.957994495482474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109H", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978286859399631, 28.953430807114216 ], [ -81.978272611338966, 28.955219213821362 ], [ -81.978269729189464, 28.955724262052357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109G", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978269729189464, 28.955724262052357 ], [ -81.976419396445039, 28.955721507267441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109G 1", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976444103824733, 28.953422014888559 ], [ -81.976428910743735, 28.954551001199142 ], [ -81.976419396445039, 28.955721507267441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109G", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976419396445039, 28.955721507267441 ], [ -81.975467877529894, 28.955714016455715 ], [ -81.975345818930023, 28.955701795899628 ], [ -81.975226539408666, 28.955677373157336 ], [ -81.975132227330192, 28.955640759587489 ], [ -81.975060109200129, 28.955606587186832 ], [ -81.97497886685106, 28.95555495369663 ], [ -81.974908719408404, 28.955504748764614 ], [ -81.974506211566649, 28.955094202959994 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109F", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971603385099129, 28.957948200659796 ], [ -81.97160299151129, 28.959370911577832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973495651064212, 28.955881205181328 ], [ -81.973295189879067, 28.956021219860343 ], [ -81.97321006565592, 28.956069497071979 ], [ -81.973116703279516, 28.956117773474627 ], [ -81.973012360715799, 28.956161217628903 ], [ -81.972866832930109, 28.956211896942474 ], [ -81.972726798507622, 28.956248090027582 ], [ -81.97260599103555, 28.956267382478426 ], [ -81.972443997452118, 28.956281837271884 ], [ -81.972301227946247, 28.95628663772769 ], [ -81.972177678736571, 28.956276953940179 ], [ -81.972040406846972, 28.956260020866889 ], [ -81.971905880563952, 28.956231016473186 ], [ -81.971798607766871, 28.956194405966425 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109F", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971798607766871, 28.956194405966425 ], [ -81.971660895610896, 28.956543773864588 ], [ -81.971624509061726, 28.956671649711812 ], [ -81.97161669470843, 28.956760711431688 ], [ -81.971611470644916, 28.956872608890073 ], [ -81.971611418364432, 28.957062149615599 ], [ -81.971603385099129, 28.957948200659796 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970566425029304, 28.954905043670117 ], [ -81.969738305556263, 28.954072008433933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109E", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970566425029304, 28.954905043670117 ], [ -81.970453799880033, 28.955018666973881 ], [ -81.970418117819875, 28.955076457178777 ], [ -81.970386193054651, 28.955139715190576 ], [ -81.970363170289218, 28.955202011519951 ], [ -81.970349421129313, 28.955276863484066 ], [ -81.970341165702536, 28.955344473970062 ], [ -81.970341142059056, 28.955426575278704 ], [ -81.970371254432834, 28.955733250996879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969738305556263, 28.954072008433933 ], [ -81.969437820465316, 28.953765146477991 ], [ -81.969374909499621, 28.953707721969803 ], [ -81.969305782818608, 28.953660393553026 ], [ -81.969232070105036, 28.95361776679044 ], [ -81.969156249559461, 28.953584400624276 ], [ -81.969080425342426, 28.953556594336476 ], [ -81.969023555184449, 28.95353990592448 ], [ -81.968954046966743, 28.953530626883065 ], [ -81.968844513703502, 28.953525042397825 ], [ -81.968737084910401, 28.953525019139644 ], [ -81.96863176057191, 28.953530551699743 ], [ -81.967601695608451, 28.953582180788718 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967601695608451, 28.953582180788718 ], [ -81.966872853636829, 28.953615351041922 ], [ -81.966617969751837, 28.953628255441391 ], [ -81.966441023942465, 28.953643033133826 ], [ -81.966358869279929, 28.95365412784 ], [ -81.96628092284179, 28.953674488288122 ], [ -81.966211402412867, 28.953696702321238 ], [ -81.966137664791347, 28.953733737198082 ], [ -81.966063925289262, 28.953776330150948 ], [ -81.96596489844751, 28.953850410225805 ], [ -81.96568464845879, 28.954126385794499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109A 1", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96568464845879, 28.954126385794499 ], [ -81.965522496969484, 28.953991100522174 ], [ -81.965377186599682, 28.95388731390225 ], [ -81.965288728571153, 28.953846532669971 ], [ -81.965191841233704, 28.953816864519517 ], [ -81.965111802874006, 28.953800169330961 ], [ -81.965004379225405, 28.953787173552481 ], [ -81.964918013723221, 28.953787150043386 ], [ -81.964835862968144, 28.9537889808933 ], [ -81.964698941405629, 28.953792650568033 ], [ -81.963485605416381, 28.953851611113379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963485605416381, 28.953851611113379 ], [ -81.963687527297211, 28.954700185622173 ], [ -81.963708568341389, 28.954770593532004 ], [ -81.963740142500001, 28.954831739561008 ], [ -81.963759086813241, 28.954872503006097 ], [ -81.96378856043242, 28.954920682524275 ], [ -81.963820143500413, 28.954959596071323 ], [ -81.964350803407129, 28.95545439902012 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97160299151129, 28.959370911577832 ], [ -81.970701975790462, 28.959359298655055 ], [ -81.969752119850511, 28.95935940566179 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969752119850511, 28.95935940566179 ], [ -81.968685258471965, 28.959351457252694 ], [ -81.968004644037933, 28.959338720951713 ], [ -81.967918855702209, 28.959328640762575 ], [ -81.967838788890205, 28.959305985762199 ], [ -81.96776730364904, 28.959278301607384 ], [ -81.967688159266856, 28.959235894686667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966803846720211, 28.958420427522583 ], [ -81.967493934432113, 28.959097650934666 ], [ -81.967552354471138, 28.959150262368468 ], [ -81.967617421541959, 28.959196686571516 ], [ -81.967688159266856, 28.959235894686667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966201064823807, 28.956526426832106 ], [ -81.96611523664194, 28.956642096927126 ], [ -81.965926419541418, 28.956878466461632 ], [ -81.965877774733116, 28.956974026569011 ], [ -81.965854868403639, 28.957059533581091 ], [ -81.965846258841509, 28.957152589197339 ], [ -81.965849089971812, 28.95724061836016 ], [ -81.965857639801186, 28.95733116186204 ], [ -81.965871918772592, 28.957386497613815 ], [ -81.965894775075995, 28.95744938050931 ], [ -81.965934785032445, 28.957527356784425 ], [ -81.965989093388359, 28.9576053375838 ], [ -81.966803846720211, 28.958420427522583 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966834992718717, 28.955713103847604 ], [ -81.966716886760878, 28.955860371803453 ], [ -81.966201064823807, 28.956526426832106 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962577510408266, 28.957506339201874 ], [ -81.964854261365986, 28.959753247859929 ], [ -81.965100932678993, 28.959997113222091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96110627855137, 28.956056453022708 ], [ -81.962577510408266, 28.957506339201874 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bella Cruz Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956109211029684, 28.952355725404097 ], [ -81.955740838394959, 28.951999305427289 ], [ -81.954764038490424, 28.951020383202444 ], [ -81.954689003712829, 28.950957479832155 ], [ -81.954624678560265, 28.95092602131399 ], [ -81.954567495768856, 28.950910282211193 ], [ -81.954488858058056, 28.950913399118114 ], [ -81.954320858273149, 28.950919630041913 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robles Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970426354057906, 28.935652530693076 ], [ -81.970436053549577, 28.935897986632913 ], [ -81.970483715392533, 28.936635739000788 ], [ -81.970515387169726, 28.93726107184316 ], [ -81.970525904016625, 28.937382771061767 ], [ -81.970504580766885, 28.937466647219868 ], [ -81.970462172133523, 28.937494827332646 ], [ -81.970398462610135, 28.937517845208951 ], [ -81.970308195829773, 28.937494793253329 ], [ -81.970154234725982, 28.937438723839136 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robles Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970652049430072, 28.93528531324533 ], [ -81.970425579509254, 28.93563155939982 ], [ -81.970426354057906, 28.935652530693076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Espana Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970643510149017, 28.931670761096221 ], [ -81.97065345991723, 28.93172576806829 ], [ -81.970664581014773, 28.931780774393658 ], [ -81.970676679688694, 28.931835437157563 ], [ -81.970695651139224, 28.931894687789203 ], [ -81.970725298686048, 28.932001497098319 ], [ -81.970800766725446, 28.932262591651483 ], [ -81.970838502071572, 28.932390762715851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Durango Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964790211516714, 28.930511471040159 ], [ -81.964830258718479, 28.930495575003821 ], [ -81.9648462849499, 28.930488703723462 ], [ -81.964861918468301, 28.930481488563835 ], [ -81.9648775521011, 28.930473930530361 ], [ -81.964892988805516, 28.930466370638857 ], [ -81.964908428700824, 28.930458468776681 ], [ -81.964923476909377, 28.930450220328918 ], [ -81.964938524088964, 28.930441974586063 ], [ -81.964953376507751, 28.930433384113929 ], [ -81.964968034165338, 28.930424449814872 ], [ -81.964982495919429, 28.930415515462986 ], [ -81.964996761886894, 28.930406236381739 ], [ -81.965011030018658, 28.930396616232077 ], [ -81.965024904295532, 28.930386993271146 ], [ -81.965038585861961, 28.930377027386449 ], [ -81.965052070498942, 28.930367062351241 ], [ -81.965065555250206, 28.930356751735768 ], [ -81.965083927863958, 28.930341631356701 ], [ -81.965091353557952, 28.930335788225726 ], [ -81.965098388358712, 28.930330289669165 ], [ -81.96510562111115, 28.930324790261476 ], [ -81.965113047711398, 28.930319293610751 ], [ -81.965120475221369, 28.930314138027359 ], [ -81.965128095554093, 28.930308983396003 ], [ -81.965135717937088, 28.930303829667075 ], [ -81.965143339178582, 28.930299017004842 ], [ -81.965151352220261, 28.930294206248718 ], [ -81.965159169360163, 28.930289396343458 ], [ -81.965167377159545, 28.930284929411375 ], [ -81.965175391108815, 28.930280462428389 ], [ -81.965183596739621, 28.930276339269117 ], [ -81.965192000321508, 28.930272217063031 ], [ -81.96520040390331, 28.930268093051865 ], [ -81.965208807484174, 28.930263969942462 ], [ -81.965217403772328, 28.930260190656906 ], [ -81.965226003021101, 28.930256755145937 ], [ -81.965234601359356, 28.930252975859826 ], [ -81.965243395366315, 28.930249884172643 ], [ -81.965252188462728, 28.930246448710275 ], [ -81.965260982468621, 28.930243357021958 ], [ -81.965269971348675, 28.930240266285853 ], [ -81.965278960113579, 28.930237516616582 ], [ -81.965288143752062, 28.930234769704128 ], [ -81.965297132400195, 28.930232364710271 ], [ -81.965306316947959, 28.930229961571147 ], [ -81.965315500469927, 28.930227557528834 ], [ -81.965324879776702, 28.930225497310939 ], [ -81.965334063182496, 28.930223437041697 ], [ -81.965343444424803, 28.930221719695052 ], [ -81.965352822589239, 28.930220004151572 ], [ -81.965362201779627, 28.930218286803093 ], [ -81.965371580853855, 28.930216915032887 ], [ -81.96538095992814, 28.930215542359729 ], [ -81.965390534787304, 28.930214514413162 ], [ -81.965400109647163, 28.930213483759019 ], [ -81.965409487579691, 28.930212455760241 ], [ -81.965419061298135, 28.93021176978111 ], [ -81.965428635926457, 28.930211429380474 ], [ -81.965438210554993, 28.930211088076881 ], [ -81.965447783132177, 28.930210746772076 ], [ -81.965457358671301, 28.930210749241706 ], [ -81.96546693113315, 28.930210752612147 ], [ -81.965476311797644, 28.930210754127902 ], [ -81.965485885170281, 28.930211101271599 ], [ -81.965495458428734, 28.930211790384355 ], [ -81.965505032827494, 28.930212136624668 ], [ -81.965514605971094, 28.930213170412667 ], [ -81.965523983329049, 28.930213860375265 ], [ -81.965533558524612, 28.930214893260171 ], [ -81.965542936678517, 28.930216272574949 ], [ -81.965552510734184, 28.930217649232574 ], [ -81.965561887863544, 28.930219026741185 ], [ -81.965571265904202, 28.930220748023725 ], [ -81.96558064394516, 28.930222469305615 ], [ -81.965589826996961, 28.930224534311122 ], [ -81.965599205949744, 28.930226599366328 ], [ -81.965608386950933, 28.930228664370031 ], [ -81.965617569889403, 28.93023107314799 ], [ -81.965626752828243, 28.930233481925292 ], [ -81.965635738726874, 28.930236234425792 ], [ -81.966507476174527, 28.930489147444046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Marino Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965885365938561, 28.932317977074771 ], [ -81.966057461084205, 28.932506254795175 ], [ -81.966084024806861, 28.932535482335386 ], [ -81.966111175459687, 28.932564021567963 ], [ -81.966138910877632, 28.932592218973177 ], [ -81.966167234138823, 28.932620071844543 ], [ -81.966196143304359, 28.932647237309247 ], [ -81.966225445433764, 28.932674058190216 ], [ -81.966255331303074, 28.93270053724218 ], [ -81.966285803076616, 28.932726328886432 ], [ -81.96631666678897, 28.932751774141185 ], [ -81.966348117317764, 28.932776879371154 ], [ -81.966386279137055, 28.9328044260829 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Antonia Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967563879833932, 28.931546208551069 ], [ -81.967498384460612, 28.931575965689078 ], [ -81.967481382606607, 28.93158352459567 ], [ -81.967472979008804, 28.931587648748415 ], [ -81.967464771314397, 28.931591770241326 ], [ -81.96745656361847, 28.931595894440608 ], [ -81.967448355813787, 28.931600361511379 ], [ -81.967440343911306, 28.931604829531555 ], [ -81.967432330874573, 28.931609639520708 ], [ -81.967424513740042, 28.931614450459321 ], [ -81.967416696604815, 28.931619261397472 ], [ -81.967409075263532, 28.931624416157099 ], [ -81.967401453921809, 28.931629570014014 ], [ -81.967394026430966, 28.931634724819983 ], [ -81.967386599964797, 28.931639880528085 ], [ -81.9673793692928, 28.93164537915548 ], [ -81.967372137485413, 28.931651222458765 ], [ -81.967365101689794, 28.93165672023056 ], [ -81.967358262713432, 28.931662562726554 ], [ -81.967351420659, 28.93166840612373 ], [ -81.96734457952158, 28.931674590588184 ], [ -81.967338130297691, 28.931680434982763 ], [ -81.967331680856049, 28.93168696512096 ], [ -81.967325427426076, 28.931693150630085 ], [ -81.967319171834916, 28.931699680814969 ], [ -81.967313112254928, 28.93170586817542 ], [ -81.967307053482429, 28.931712742182061 ], [ -81.96730138457383, 28.931719271607058 ], [ -81.967295717606646, 28.931726145708843 ], [ -81.967290049613069, 28.931733019810125 ], [ -81.967284770348641, 28.931739894006167 ], [ -81.967279492109199, 28.931746768202217 ], [ -81.967274214785746, 28.931753986172573 ], [ -81.967269327217224, 28.931761204237969 ], [ -81.967264440673986, 28.931768421401149 ], [ -81.967259749007368, 28.931775640416394 ], [ -81.967255253134866, 28.931783202351301 ], [ -81.967250757262008, 28.931790763383781 ], [ -81.967246650227139, 28.931797982541514 ], [ -81.967242545025144, 28.931805888345806 ], [ -81.967238438905966, 28.931813450375486 ], [ -81.967234724593425, 28.931821012500876 ], [ -81.967229837062149, 28.931831325435624 ], [ -81.967203244864535, 28.931888041681376 ], [ -81.967186625414627, 28.931921727489044 ], [ -81.967169226659891, 28.931954725554881 ], [ -81.96715104325277, 28.931987723425802 ], [ -81.967132471212366, 28.932020378326754 ], [ -81.967113115654229, 28.932052687453695 ], [ -81.967093176584058, 28.932084652659988 ], [ -81.96707245501976, 28.932116275701123 ], [ -81.967051147782144, 28.932147896790209 ], [ -81.967029448942071, 28.932178832035387 ], [ -81.967006970684608, 28.932209422408341 ], [ -81.966983903674802, 28.932240013534521 ], [ -81.966960055305648, 28.932269915110741 ], [ -81.966935817275257, 28.932299472812105 ], [ -81.966910993678411, 28.932328688394605 ], [ -81.966885583379494, 28.93235790382731 ], [ -81.966859586709077, 28.932386087787222 ], [ -81.966838075596357, 28.93241341206377 ], [ -81.966809836873225, 28.932444445807278 ], [ -81.96678865747262, 28.932467206351738 ], [ -81.966755712233649, 28.932500308780124 ], [ -81.966725121885219, 28.932527204900843 ], [ -81.966699236985889, 28.932552031418567 ], [ -81.966670999162474, 28.932576857345651 ], [ -81.966640409438668, 28.932601683583126 ], [ -81.966609820056561, 28.932628579677441 ], [ -81.966574522110378, 28.932657543550977 ], [ -81.966543935732901, 28.932678230039524 ], [ -81.966506286180248, 28.932703052677621 ], [ -81.966440401087326, 28.932754773754247 ], [ -81.966386279137055, 28.9328044260829 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stuckey Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975134574906122, 28.885466699083047 ], [ -81.975224073407773, 28.885454087068553 ], [ -81.975451826716437, 28.885437268621946 ], [ -81.976277702796281, 28.885375599064776 ], [ -81.97635007664995, 28.885355005121017 ], [ -81.976420324960358, 28.885317551269829 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rembert Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975330345306105, 28.886092906874115 ], [ -81.975255911873774, 28.885815643140639 ], [ -81.975134574906122, 28.885466699083047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridgeland Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975883086578037, 28.888971352216686 ], [ -81.975960246526043, 28.888978390505617 ], [ -81.976157137631148, 28.88898545013156 ], [ -81.976367339879673, 28.888969097122764 ], [ -81.976590848491298, 28.888931670178813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridgeland Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976590848491298, 28.888931670178813 ], [ -81.976942138595206, 28.888860791397232 ], [ -81.977343909642869, 28.888784884516649 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Golden Grove Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977505912291107, 28.890727134230662 ], [ -81.977617658098765, 28.890757594779394 ], [ -81.977937992913056, 28.890852118830662 ], [ -81.978232705103423, 28.890935015422496 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinewood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976773059797168, 28.891182977424631 ], [ -81.976820519967134, 28.891191235385065 ], [ -81.977032184909959, 28.89122348129488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridgeville Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973916765127228, 28.891906201654617 ], [ -81.974010430309548, 28.891883739961276 ], [ -81.974170090432636, 28.891846303744398 ], [ -81.974372321043845, 28.891805129142508 ], [ -81.974585190675796, 28.891764595085153 ], [ -81.974887549697243, 28.891728210041144 ], [ -81.975231509026997, 28.891696991373824 ], [ -81.975563549705456, 28.891681239588813 ], [ -81.975824296638393, 28.891686442680264 ], [ -81.976316487678446, 28.891707501038649 ], [ -81.976654375702125, 28.891749158251283 ], [ -81.976773515319778, 28.891762929135531 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Simpsonville Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973916765127228, 28.891906201654617 ], [ -81.973905606627198, 28.891838759766483 ], [ -81.973901896408009, 28.891776939755939 ], [ -81.973912553200833, 28.891728235672002 ], [ -81.97393910612567, 28.891670619053759 ], [ -81.974105217034392, 28.89131071652815 ], [ -81.974159150211648, 28.89120621802763 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Simpsonville Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974159150211648, 28.89120621802763 ], [ -81.974270351909624, 28.89097898069631 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harleyville Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975614914212969, 28.903033984239826 ], [ -81.975141842565918, 28.903094551509255 ], [ -81.974967007600654, 28.903117895670391 ], [ -81.974908017390916, 28.903115477290125 ], [ -81.974869792414495, 28.903108779573472 ], [ -81.974842121776689, 28.90309378719482 ], [ -81.974814451037773, 28.90307504846659 ], [ -81.97479103522366, 28.903058185510712 ], [ -81.97475485378925, 28.90302258391262 ], [ -81.974680373233596, 28.902902678717815 ], [ -81.974499493372761, 28.902604788374418 ], [ -81.97424956565321, 28.902190171269044 ], [ -81.974133332541811, 28.90197708183932 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Honea Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974377502924256, 28.899105910700893 ], [ -81.974349001147175, 28.899031993408297 ], [ -81.974214066017666, 28.898679072865949 ], [ -81.974138303397282, 28.898485592669736 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990597274381159, 28.875115918681203 ], [ -81.990538186434691, 28.875139402312421 ], [ -81.990505782129119, 28.875164564308641 ], [ -81.990465753594833, 28.875204823975459 ], [ -81.99044097146448, 28.87524676391471 ], [ -81.990423811622634, 28.875293736540243 ], [ -81.990416184769884, 28.875325611626401 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990961305123321, 28.875261899543627 ], [ -81.990922073855927, 28.875216136594595 ], [ -81.990893370391447, 28.875183819566168 ], [ -81.990858807987763, 28.875155971231397 ], [ -81.990806932581975, 28.875125999472601 ], [ -81.990757377320548, 28.875104186474129 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99150076109332, 28.875800523164166 ], [ -81.991461705313256, 28.875771412376775 ], [ -81.991108783946714, 28.875538490472312 ], [ -81.991048960835855, 28.875493420048738 ], [ -81.991018469282437, 28.875451477165566 ], [ -81.990974638106451, 28.875372625589954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990810704124684, 28.875572253237298 ], [ -81.990865977075984, 28.875578967481136 ], [ -81.990924565587662, 28.875593608655741 ], [ -81.99101273301315, 28.875630984420486 ], [ -81.99111982272612, 28.87569739297566 ], [ -81.991411065905766, 28.875894609461941 ], [ -81.991421807506768, 28.875902625310069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990671563758823, 28.875589019123648 ], [ -81.990711589660393, 28.875589021934282 ], [ -81.990763052289907, 28.875583993390219 ], [ -81.990810704124684, 28.875572253237298 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982860503674033, 28.881745389058562 ], [ -81.982889602972094, 28.881631984317181 ], [ -81.982926020135906, 28.881566568508394 ], [ -81.982976086775594, 28.881511836777925 ], [ -81.983203654631723, 28.881322282116404 ], [ -81.983450941367636, 28.881130059600306 ], [ -81.98377407972508, 28.880887113055671 ], [ -81.984135144485265, 28.880626812663831 ], [ -81.984515922489223, 28.880373189713346 ], [ -81.985040819991781, 28.880019450787099 ], [ -81.985418561995203, 28.879767159425086 ], [ -81.985817540800625, 28.879497515284296 ], [ -81.986221068227735, 28.879227868616404 ], [ -81.986521435651539, 28.879024964429881 ], [ -81.987090310945518, 28.87864718907424 ], [ -81.987512036183389, 28.878362854400041 ], [ -81.98808849155877, 28.877966385217416 ], [ -81.988379754717457, 28.877744784845252 ], [ -81.988760518776004, 28.877439081537702 ], [ -81.989019925804556, 28.877218812473377 ], [ -81.989297534981688, 28.876970508036635 ], [ -81.989538737390419, 28.876740890443262 ], [ -81.989798144218412, 28.876479231252979 ], [ -81.990046929915877, 28.876222912385991 ], [ -81.990271446586974, 28.875966591271848 ], [ -81.990479275337762, 28.875719615526499 ], [ -81.990544506262026, 28.875651529751394 ], [ -81.990574353937575, 28.875627597404129 ], [ -81.990627724487794, 28.875599082116821 ], [ -81.990671563758823, 28.875589019123648 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Monarch Mill Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982524243892371, 28.873530423915327 ], [ -81.982916009190092, 28.873616685090717 ], [ -81.983264919488207, 28.873716412043631 ], [ -81.983583225896041, 28.873797275307101 ], [ -81.983702594718707, 28.873813454680633 ], [ -81.983791356504341, 28.873813464583272 ], [ -81.983873999513989, 28.873800005017934 ], [ -81.983944400345948, 28.87377576592581 ], [ -81.98400562139463, 28.873738056124278 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Homeland Park Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9813185786481, 28.876548827785175 ], [ -81.981643104557193, 28.876783673433632 ], [ -81.981870004210734, 28.876942531243287 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Columbia Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980749194196008, 28.876137245760948 ], [ -81.980967574562399, 28.875874974148022 ], [ -81.981170540843834, 28.875536038589814 ], [ -81.981386992425413, 28.875122848709559 ], [ -81.981467536817078, 28.874964839681475 ], [ -81.981473729689924, 28.874952689233361 ], [ -81.981553334325184, 28.874922708613042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Westmoreland Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980176548448213, 28.8738717243927 ], [ -81.980595917427806, 28.873972777914673 ], [ -81.980872854208428, 28.874059880986923 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heath Springs Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97901006459638, 28.872546223593783 ], [ -81.979022802763154, 28.872323456970957 ], [ -81.979025570744753, 28.872116361776435 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Homeland Park Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978703302651567, 28.875564058535083 ], [ -81.978910843056781, 28.875577376905813 ], [ -81.979291958330933, 28.875610650185099 ], [ -81.97948071082817, 28.875627235614864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcduffie Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982767553728806, 28.878876733510403 ], [ -81.983289898893901, 28.878398521221303 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eureka Mill Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982061065027139, 28.877673309844841 ], [ -81.982144344641256, 28.877778601602582 ], [ -81.982182065734563, 28.877861640982871 ], [ -81.982251455942276, 28.878108760963613 ], [ -81.982305765600699, 28.878284138678531 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Homeland Park Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977982583668876, 28.875486221189586 ], [ -81.978341058224203, 28.875520822522386 ], [ -81.978703302651567, 28.875564058535083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Homeland Park Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977265636442468, 28.875416352472104 ], [ -81.977356198527218, 28.875426331945526 ], [ -81.977982583668876, 28.875486221189586 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Homeland Park Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976770563130415, 28.875382389646504 ], [ -81.977265636442468, 28.875416352472104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cottageville Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975470539764899, 28.877968803642737 ], [ -81.975607697213889, 28.878050455441624 ], [ -81.97566178998926, 28.878072570778851 ], [ -81.975715885014708, 28.87808958718637 ], [ -81.975837598404354, 28.878116818117839 ], [ -81.9760134093452, 28.878150859290368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Swansea Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9760134093452, 28.878150859290368 ], [ -81.976050140596769, 28.878057336852958 ], [ -81.976092665192297, 28.877975717704057 ], [ -81.97623181284446, 28.877809089102556 ], [ -81.976370957712405, 28.877652662681495 ], [ -81.976428937032495, 28.87757955034439 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Swansea Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976428937032495, 28.87757955034439 ], [ -81.976535233732918, 28.877436721969449 ], [ -81.976616406528251, 28.877314296487878 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burnettown Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977932075245164, 28.877615516985138 ], [ -81.978001632658433, 28.877603625268009 ], [ -81.978156202475034, 28.877579843347238 ], [ -81.978245078993993, 28.877566251110139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burnettown Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976428937032495, 28.87757955034439 ], [ -81.976672367686234, 28.877613602546575 ], [ -81.976898417306643, 28.877628946589898 ], [ -81.977091621541803, 28.877639183924092 ], [ -81.977377565325966, 28.877649434882006 ], [ -81.977555315144443, 28.877647763965875 ], [ -81.977733067822982, 28.877637591326067 ], [ -81.977932075245164, 28.877615516985138 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cottageville Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9760134093452, 28.878150859290368 ], [ -81.976169902434663, 28.878176396210264 ], [ -81.976502209948421, 28.87822237037966 ], [ -81.976857702114202, 28.878256442767636 ], [ -81.977217065514395, 28.878271810157674 ], [ -81.977537790037132, 28.878273564299814 ], [ -81.977788963228718, 28.878261703050146 ], [ -81.977895230329608, 28.878246415798191 ], [ -81.978003429142618, 28.878229427038406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974523377444896, 28.880240099478321 ], [ -81.974511700610222, 28.880116419668934 ], [ -81.974504005055067, 28.879990577796931 ], [ -81.974500171127559, 28.879861335882179 ], [ -81.974502134873219, 28.879738895716695 ], [ -81.974514643161555, 28.879613385218121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Isle Of Palms Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976458941445941, 28.881553741047519 ], [ -81.976476369031758, 28.881385389987944 ], [ -81.976507353799008, 28.881080996784654 ], [ -81.976528651839743, 28.880878635029447 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Govan Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992830922688213, 28.888302579556566 ], [ -81.993436957686939, 28.888467280130104 ], [ -81.993530810435033, 28.888491202966527 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Govan Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993530810435033, 28.888491202966527 ], [ -81.993709457052816, 28.888537572748078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Timmonsville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962925278043301, 28.896435523778557 ], [ -81.963305043581329, 28.896389197682236 ], [ -81.963398178159579, 28.896383056814472 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mullins Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963928748597155, 28.897064977963534 ], [ -81.964090514578984, 28.897058242397648 ], [ -81.964655408940885, 28.897038056438085 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mullins Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964655408940885, 28.897038056438085 ], [ -81.964758118778676, 28.897031305395583 ], [ -81.965112457930189, 28.897029137786259 ], [ -81.965379493651696, 28.897031466351006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mullins Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965379493651696, 28.897031466351006 ], [ -81.966134388596032, 28.897033918490543 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lynchburg Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965379493651696, 28.897031466351006 ], [ -81.965380105814049, 28.895904014500559 ], [ -81.965379100877172, 28.895650117983724 ], [ -81.96537112143011, 28.895317526501206 ], [ -81.965342082621817, 28.895014039551427 ], [ -81.965350767720281, 28.894956846827018 ], [ -81.965378227033398, 28.894903471165744 ], [ -81.965417238670383, 28.894852641158415 ], [ -81.965466358838654, 28.894817065313834 ], [ -81.965525579770045, 28.89479547408359 ], [ -81.965921315738967, 28.894789219437289 ], [ -81.966000742871941, 28.894815931427679 ], [ -81.966036842274576, 28.894840089723669 ], [ -81.966067158228526, 28.894882039895563 ], [ -81.966100354368407, 28.894951953956614 ], [ -81.966113335170533, 28.895004068650664 ], [ -81.966136999473676, 28.895269937209484 ], [ -81.966170748648807, 28.89576857000004 ], [ -81.966170626229058, 28.896145917936973 ], [ -81.966145536818843, 28.896633701902392 ], [ -81.966134388596032, 28.897033918490543 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ulmer Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960684999739769, 28.898741283736111 ], [ -81.960559415363107, 28.898503374667214 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reevesville Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96379867168767, 28.898952896638534 ], [ -81.963937930772715, 28.89898524909562 ], [ -81.964124082370731, 28.898979110152538 ], [ -81.964347647183828, 28.898969359075309 ], [ -81.964613975792389, 28.898961021090873 ], [ -81.964965965459001, 28.898949080451775 ], [ -81.965165979611157, 28.898955320526699 ], [ -81.965304649521087, 28.898993861190164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956029349297253, 28.900695051298037 ], [ -81.955981950818341, 28.900624577955945 ], [ -81.95588709133348, 28.900491262842557 ], [ -81.955788201247316, 28.90033662140187 ], [ -81.955747838156014, 28.900270855779713 ], [ -81.955719588836004, 28.900219310762427 ], [ -81.955688782732551, 28.900164328038461 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95649830474521, 28.901180626410376 ], [ -81.956412168862812, 28.901108566151226 ], [ -81.956261688120435, 28.900963229954204 ], [ -81.956166701589794, 28.900862060298127 ], [ -81.956093500248912, 28.900772944293148 ], [ -81.956060927968039, 28.900732793067981 ], [ -81.956029349297253, 28.900695051298037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fort Lawn Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956029349297253, 28.900695051298037 ], [ -81.955830693012572, 28.90082605850106 ], [ -81.955767485459418, 28.900863769112814 ], [ -81.955695250679028, 28.900903465381596 ], [ -81.955609470551451, 28.900953086027592 ], [ -81.955505633733395, 28.901004685691149 ], [ -81.955393705009982, 28.90105290257419 ], [ -81.955273140505398, 28.901093975694273 ], [ -81.955137713904691, 28.901135635647478 ], [ -81.955036147625663, 28.901159433176037 ], [ -81.954907493650467, 28.901191166270834 ], [ -81.954790129024033, 28.901210986386438 ], [ -81.954654711476422, 28.90122881344054 ], [ -81.954500554825202, 28.901245117243764 ], [ -81.954362060810112, 28.901249540215908 ], [ -81.954273299491874, 28.90124457082549 ], [ -81.954212378080641, 28.901218734390834 ], [ -81.954149205412079, 28.901171048898828 ], [ -81.954117635354322, 28.901117418108782 ], [ -81.954099615908149, 28.901039959529026 ], [ -81.954101919918514, 28.900928748389411 ], [ -81.954103681943408, 28.900698377684002 ], [ -81.954102744284825, 28.900611401175563 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120369565220415, 28.770374525507155 ], [ -82.120561448409035, 28.77064897753765 ], [ -82.12067334290218, 28.770819935380597 ], [ -82.120803890712992, 28.771021338676157 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 477", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120595710680121, 28.771150401706418 ], [ -82.120803890712992, 28.771021338676157 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 479", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120803890712992, 28.771021338676157 ], [ -82.120963220986127, 28.770925343441458 ], [ -82.121018114960606, 28.77089094535247 ], [ -82.121076553032566, 28.770858106894899 ], [ -82.121150933629522, 28.770822133115086 ], [ -82.121227098676485, 28.770795523720761 ], [ -82.121274932224892, 28.770787675179882 ], [ -82.121358202932697, 28.770776670307782 ], [ -82.121514141752158, 28.770781215045705 ], [ -82.121613383016239, 28.770790494201798 ], [ -82.121742742569353, 28.77079506242951 ], [ -82.122472792102272, 28.770800234386179 ], [ -82.123381825449854, 28.770798269826088 ], [ -82.124283757189829, 28.77079588786669 ], [ -82.125238860823799, 28.770801256860167 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120803890712992, 28.771021338676157 ], [ -82.12154180179148, 28.772086856182963 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12154180179148, 28.772086856182963 ], [ -82.121997339764661, 28.772742556692791 ], [ -82.122114561815778, 28.772915850900617 ], [ -82.122263738148249, 28.773126609212699 ], [ -82.122410254098256, 28.773332681325002 ], [ -82.1225781012174, 28.773585601106529 ], [ -82.122735319433644, 28.773847902584659 ], [ -82.122865907762488, 28.774077422519429 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122865907762488, 28.774077422519429 ], [ -82.122921873193889, 28.774175788164996 ], [ -82.123055142867656, 28.77442405193813 ], [ -82.123132437986314, 28.774566919226604 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123132437986314, 28.774566919226604 ], [ -82.12324705054894, 28.774782394281406 ], [ -82.123446980082818, 28.775173533541896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123446980082818, 28.775173533541896 ], [ -82.124142703235179, 28.77650151827752 ], [ -82.124437264576642, 28.777070070707389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124437264576642, 28.777070070707389 ], [ -82.124755794899286, 28.77766320471293 ], [ -82.124947058649767, 28.778027401927897 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124947058649767, 28.778027401927897 ], [ -82.125186980393494, 28.778491144107871 ], [ -82.125478884481225, 28.779051494482932 ], [ -82.125980718324115, 28.780008829697781 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125980718324115, 28.780008829697781 ], [ -82.12646656543734, 28.780934543585364 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12646656543734, 28.780934543585364 ], [ -82.126808463390972, 28.781586231396577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126808463390972, 28.781586231396577 ], [ -82.127160358395244, 28.782253726443294 ], [ -82.127824173824152, 28.783513180711708 ], [ -82.128072129396799, 28.783999754470294 ], [ -82.128667983347398, 28.785130975733583 ], [ -82.128915950672464, 28.785621648791899 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128915950672464, 28.785621648791899 ], [ -82.128987904852735, 28.785734056364859 ], [ -82.129102543741425, 28.785949525077374 ], [ -82.129163876800064, 28.786076002453164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129163876800064, 28.786076002453164 ], [ -82.127890699336987, 28.786822353965821 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129163876800064, 28.786076002453164 ], [ -82.129358506863625, 28.786450734064655 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129358506863625, 28.786450734064655 ], [ -82.129747754946308, 28.787182040072679 ], [ -82.130094357800559, 28.787842500121943 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.130094357800559, 28.787842500121943 ], [ -82.130555634214886, 28.788737174753379 ], [ -82.130806928736391, 28.78921495220624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.130806928736391, 28.78921495220624 ], [ -82.13150020195684, 28.790561645252577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13150020195684, 28.790561645252577 ], [ -82.131696789085296, 28.790892435976346 ], [ -82.132526717232849, 28.792482100324118 ], [ -82.132783389909292, 28.792991501716685 ], [ -82.132880062973641, 28.793187654293273 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.132880062973641, 28.793187654293273 ], [ -82.133050026699863, 28.793492108825465 ], [ -82.133136713171126, 28.793676552675958 ], [ -82.13322569969985, 28.793873260214582 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13322569969985, 28.793873260214582 ], [ -82.133257604319795, 28.793958354677219 ], [ -82.133335200313937, 28.794184547267861 ], [ -82.13338698976375, 28.794341977529072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13338698976375, 28.794341977529072 ], [ -82.133433486097189, 28.794502984308451 ], [ -82.133459813991294, 28.794616641404382 ], [ -82.133496215323731, 28.794805528625702 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133496215323731, 28.794805528625702 ], [ -82.133535788862645, 28.795037799390954 ], [ -82.133552800046473, 28.795178377915811 ], [ -82.133573107758977, 28.795459544825707 ], [ -82.133573623513527, 28.79586594834527 ], [ -82.133578839964258, 28.796291707179527 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133578839964258, 28.796291707179527 ], [ -82.133582421961506, 28.796903370488454 ], [ -82.133585895792862, 28.797429770991183 ], [ -82.13358897965729, 28.797649720393135 ], [ -82.133592027394883, 28.797838776544108 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 424", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133592027394883, 28.797838776544108 ], [ -82.134477216471666, 28.797842846862707 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 400", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153712647547763, 28.807458855012925 ], [ -82.153631506150859, 28.807484946003182 ], [ -82.153370533034078, 28.807578088698868 ], [ -82.152534466126028, 28.807888478458967 ], [ -82.152246829162507, 28.807974267176942 ], [ -82.152109713922613, 28.8080245224881 ], [ -82.152032820973815, 28.808071762360033 ], [ -82.151955947039156, 28.80813079081673 ], [ -82.151889122385256, 28.808198649694024 ], [ -82.151839034352889, 28.80826943584534 ], [ -82.15181235889537, 28.808334302814313 ], [ -82.151792384697842, 28.808405056154939 ], [ -82.151783091973783, 28.808498850602174 ], [ -82.151788102122637, 28.808561678994661 ], [ -82.151853308338843, 28.808885368444159 ], [ -82.151866815353017, 28.808970819901479 ], [ -82.151870303758713, 28.809068070316041 ], [ -82.151853742437794, 28.809185974431053 ], [ -82.151840464179571, 28.809259667212942 ], [ -82.151807117925941, 28.80933927631914 ], [ -82.151753712132603, 28.809430696500318 ], [ -82.151706955560627, 28.809492638057559 ], [ -82.151663536348778, 28.809548681093073 ], [ -82.151613418957552, 28.80960178646724 ], [ -82.151195602665396, 28.809914646871654 ], [ -82.15022627848964, 28.810652503559059 ], [ -82.149725009498994, 28.811112806681791 ], [ -82.149477745490984, 28.811360637246487 ], [ -82.149384205925472, 28.811469782296459 ], [ -82.149317420360262, 28.811567111903841 ], [ -82.149267391745539, 28.81168210465837 ], [ -82.149220694414268, 28.811788252020204 ], [ -82.149184028652655, 28.811888494464423 ], [ -82.149128446724518, 28.812037260313602 ], [ -82.149086137655928, 28.812146750361368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 400", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149086137655928, 28.812146750361368 ], [ -82.148975972046031, 28.81252603619761 ], [ -82.148880651549376, 28.81296597045451 ], [ -82.148856165702313, 28.813046162797797 ], [ -82.1488218190037, 28.813113366413102 ], [ -82.14873098386694, 28.813245631449487 ], [ -82.148676970560729, 28.813321523242781 ], [ -82.148622949002828, 28.813393082144295 ], [ -82.148551727846794, 28.813479825833305 ], [ -82.148330050704672, 28.813766743042592 ], [ -82.148243974878127, 28.813908155542897 ], [ -82.148119625637335, 28.814167844476422 ], [ -82.148085692151568, 28.814209691716407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 400", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148085692151568, 28.814209691716407 ], [ -82.148043003132386, 28.814285748643545 ], [ -82.147999563391465, 28.814330002760823 ], [ -82.147949415906567, 28.814362475537553 ], [ -82.147895910954063, 28.814389058086118 ], [ -82.147842395590686, 28.814406798918633 ], [ -82.147745387489707, 28.814430480965864 ], [ -82.147044242999456, 28.81455967159334 ], [ -82.146454069024429, 28.81467943877427 ], [ -82.146347025184724, 28.814706078486577 ], [ -82.146282178293106, 28.814729051670973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 406", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142429705289032, 28.810037502296503 ], [ -82.142415417969318, 28.810472532479977 ], [ -82.142428042268961, 28.810513107740491 ], [ -82.142440660559245, 28.810549995274314 ], [ -82.142465840701973, 28.810581332159455 ], [ -82.142486813238051, 28.810599758727037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 406", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143710135756351, 28.8073409146796 ], [ -82.14371490803029, 28.807638849041521 ], [ -82.143707350041595, 28.808496152490971 ], [ -82.143008615686455, 28.808517459490865 ], [ -82.14278136107167, 28.808883138858825 ], [ -82.142471360120439, 28.809351304922163 ], [ -82.142456417841629, 28.80941530415739 ], [ -82.142446538982014, 28.809519007742203 ], [ -82.142434144264215, 28.809616098243939 ], [ -82.142429270082985, 28.809715386994405 ], [ -82.142429458317267, 28.80985438099702 ], [ -82.142429705289032, 28.810037502296503 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14598697952934, 28.800263867623556 ], [ -82.148652771448155, 28.800248245818722 ], [ -82.149250028592263, 28.800263693960684 ], [ -82.149417642917427, 28.800279613972339 ], [ -82.149573083469235, 28.800306282860745 ], [ -82.149752915516387, 28.800343660332707 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 416 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145989648012858, 28.797781896612399 ], [ -82.14597842974662, 28.798793731154738 ], [ -82.14598697952934, 28.800263867623556 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143866190142404, 28.800272867262393 ], [ -82.145097369881881, 28.800267066265459 ], [ -82.14598697952934, 28.800263867623556 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 417", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143076058731012, 28.8050106804655 ], [ -82.142979521965927, 28.805059749551852 ], [ -82.142661968273345, 28.805175594455918 ], [ -82.142662486953554, 28.805414520661003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 422", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140849555742477, 28.799468455237982 ], [ -82.141500885015205, 28.799475472063119 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 423", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141500885015205, 28.799475472063119 ], [ -82.141442523794225, 28.799673117828483 ], [ -82.141351597949011, 28.800297399299161 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 423", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141729492831928, 28.796985217105 ], [ -82.141751140699483, 28.797919231887523 ], [ -82.141762002626905, 28.798413181694613 ], [ -82.141744390174566, 28.798583841211681 ], [ -82.141719105569578, 28.79873654736085 ], [ -82.141698887898869, 28.798866795150637 ], [ -82.141676057090052, 28.798947647838283 ], [ -82.141500885015205, 28.799475472063119 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 429A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14082717378804, 28.796995137409798 ], [ -82.140834147830816, 28.798901103661784 ], [ -82.140849555742477, 28.799468455237982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 423", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141748830968979, 28.796203838326921 ], [ -82.141729492831928, 28.796985217105 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 423", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14182869485272, 28.793330133649288 ], [ -82.141788398489396, 28.793401682890028 ], [ -82.14175278773908, 28.793473569203332 ], [ -82.141740132155732, 28.793529717823507 ], [ -82.141732563249008, 28.793588103374177 ], [ -82.141732682198764, 28.793675668824459 ], [ -82.141727776670947, 28.793819370414926 ], [ -82.141755016833699, 28.795119361170123 ], [ -82.141748830968979, 28.796203838326921 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 423", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142327490685716, 28.79247157543832 ], [ -82.142228084118599, 28.7924716795733 ], [ -82.142141443196891, 28.792485241765846 ], [ -82.142095589890531, 28.792505498785918 ], [ -82.142039563903438, 28.792541480160171 ], [ -82.142011564041141, 28.792568454224313 ], [ -82.141981023755235, 28.79260216487868 ], [ -82.141960704587532, 28.792656072980176 ], [ -82.141948041946861, 28.792716707918952 ], [ -82.141935774982073, 28.79306923072668 ], [ -82.141912978854151, 28.793177026459489 ], [ -82.141885046362262, 28.793255642335197 ], [ -82.14182869485272, 28.793330133649288 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 423", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142327490685716, 28.79247157543832 ], [ -82.14232862120096, 28.791423027558654 ], [ -82.142342325828551, 28.790248730287196 ], [ -82.142342003975315, 28.790010730007538 ], [ -82.142344453205908, 28.789936633316035 ], [ -82.142344392477895, 28.789891727192881 ], [ -82.14234943159201, 28.789849061575651 ], [ -82.142362118980301, 28.789806388844411 ], [ -82.142385010094301, 28.78977044026141 ], [ -82.142423213880207, 28.789750192063213 ], [ -82.142481814000391, 28.789734414162098 ], [ -82.142530225561373, 28.789723136824094 ], [ -82.142596484037668, 28.789716331533086 ], [ -82.143128625208206, 28.789714258656971 ], [ -82.143182111796079, 28.789730702835538 ], [ -82.143231511588965, 28.78975471627329 ], [ -82.143294959915181, 28.789796427226332 ], [ -82.14332814011027, 28.78983007095432 ], [ -82.143379208094885, 28.78989737452893 ], [ -82.143399670787147, 28.789951240709303 ], [ -82.143402311986137, 28.790018596295212 ], [ -82.14340244454813, 28.790115143368013 ], [ -82.143413234741445, 28.790552961837587 ], [ -82.143410311034458, 28.792149361053553 ], [ -82.143395130399455, 28.792232451872618 ], [ -82.143367193162376, 28.792304330515904 ], [ -82.143331576846222, 28.792353765075177 ], [ -82.14329085133835, 28.792394222518471 ], [ -82.14325010541684, 28.792421210285905 ], [ -82.143199168664694, 28.792450451929369 ], [ -82.143135478343765, 28.792472971250632 ], [ -82.142995300351984, 28.792479854658765 ], [ -82.142327490685716, 28.79247157543832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 428", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140822255405482, 28.793319615988899 ], [ -82.141428886432664, 28.793318985659059 ], [ -82.141648088048157, 28.793318757223812 ], [ -82.141750044881888, 28.793320895798246 ], [ -82.141793382379007, 28.793325342259639 ], [ -82.14182869485272, 28.793330133649288 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 428", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139935245810122, 28.793318286895406 ], [ -82.140822255405482, 28.793319615988899 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 428", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139010023627151, 28.793330463480018 ], [ -82.139935245810122, 28.793318286895406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426E", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139010023627151, 28.793330463480018 ], [ -82.139020434071512, 28.793494358358103 ], [ -82.139033421788199, 28.793678458729531 ], [ -82.139041709000139, 28.794163431964662 ], [ -82.139026590196437, 28.79622461551994 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 428", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138094977478531, 28.793329152793387 ], [ -82.139010023627151, 28.793330463480018 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 428", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137197780538457, 28.793334550918551 ], [ -82.137337963010168, 28.793329920271074 ], [ -82.137613234756984, 28.793325149985609 ], [ -82.138094977478531, 28.793329152793387 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138094977478531, 28.793329152793387 ], [ -82.138109786274029, 28.794903079548803 ], [ -82.138101340209701, 28.796236786905855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138101340209701, 28.796236786905855 ], [ -82.13852700994444, 28.796234107573316 ], [ -82.139026590196437, 28.79622461551994 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137209211722407, 28.79623769015528 ], [ -82.137637435039835, 28.796237256896362 ], [ -82.138101340209701, 28.796236786905855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137197780538457, 28.793334550918551 ], [ -82.137207540297695, 28.794955634935846 ], [ -82.137209211722407, 28.79623769015528 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 428", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13630567669243, 28.793335449882008 ], [ -82.137197780538457, 28.793334550918551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136309448128927, 28.796247577667007 ], [ -82.137209211722407, 28.79623769015528 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13630567669243, 28.793335449882008 ], [ -82.136306149323389, 28.795668298050661 ], [ -82.136309448128927, 28.796247577667007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136309448128927, 28.796247577667007 ], [ -82.13631050667297, 28.797064858107873 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13538418887785, 28.796252993800692 ], [ -82.136309448128927, 28.796247577667007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 428", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135403371027536, 28.793331861420235 ], [ -82.13630567669243, 28.793335449882008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135403371027536, 28.793331861420235 ], [ -82.135411221825791, 28.795471607990432 ], [ -82.13538418887785, 28.796252993800692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 428", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134560824550832, 28.793344059540456 ], [ -82.134603524636319, 28.793323673754049 ], [ -82.134654484201448, 28.793309253964303 ], [ -82.13521931188906, 28.793306897358729 ], [ -82.135403371027536, 28.793331861420235 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134491039088829, 28.796251635163202 ], [ -82.13538418887785, 28.796252993800692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133578839964258, 28.796291707179527 ], [ -82.134491039088829, 28.796251635163202 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 422", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134560824550832, 28.793344059540456 ], [ -82.134542404521142, 28.793365048376181 ], [ -82.134528176644537, 28.793400987046191 ], [ -82.134522122702165, 28.79345128781425 ], [ -82.134522198455869, 28.79351056320618 ], [ -82.134524349077282, 28.793596779526606 ], [ -82.134507213999953, 28.794548796880235 ], [ -82.134491770490982, 28.795229581648854 ], [ -82.134491039088829, 28.796251635163202 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 422", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134491039088829, 28.796251635163202 ], [ -82.134489556356428, 28.796688118191934 ], [ -82.134508389330961, 28.79706351185024 ], [ -82.134502789701855, 28.797469463840066 ], [ -82.134477216471666, 28.797842846862707 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13538418887785, 28.796252993800692 ], [ -82.135397049259481, 28.796342791490254 ], [ -82.135401727033994, 28.797839312636135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 424", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134477216471666, 28.797842846862707 ], [ -82.135401727033994, 28.797839312636135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135401727033994, 28.797839312636135 ], [ -82.13540083613529, 28.798732036058937 ], [ -82.1354011296485, 28.798960156751562 ], [ -82.135403563088673, 28.799265512089637 ], [ -82.135403858924718, 28.799495428357609 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 422", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134477216471666, 28.797842846862707 ], [ -82.134512659195579, 28.798684326461924 ], [ -82.134525319045579, 28.798838765857493 ], [ -82.134543040425058, 28.798899528777056 ], [ -82.134583501307048, 28.799032818458201 ], [ -82.13462259708912, 28.799120685413062 ], [ -82.134670977300587, 28.799178520606915 ], [ -82.134725228627971, 28.79922706158569 ], [ -82.134771402510097, 28.799262547822948 ], [ -82.134818334218352, 28.799285853016521 ], [ -82.134967932797778, 28.79936126383841 ], [ -82.135186367240195, 28.799446924807906 ], [ -82.135283521298035, 28.799477586900224 ], [ -82.135348792000912, 28.7994900946521 ], [ -82.135403858924718, 28.799495428357609 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 429D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137187022876077, 28.797048977444728 ], [ -82.137188195753623, 28.797427723444191 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426E", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139026590196437, 28.79622461551994 ], [ -82.139026301448212, 28.797009387924973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139026590196437, 28.79622461551994 ], [ -82.139946946005267, 28.796212713531133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426F", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139935245810122, 28.793318286895406 ], [ -82.139924002813018, 28.794447674801294 ], [ -82.139932709192053, 28.795244743822177 ], [ -82.139946946005267, 28.796212713531133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139946946005267, 28.796212713531133 ], [ -82.140844166481685, 28.796208193917053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426G", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140822255405482, 28.793319615988899 ], [ -82.140829641782787, 28.795030512494161 ], [ -82.140844166481685, 28.796208193917053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140844166481685, 28.796208193917053 ], [ -82.141027689218419, 28.796208003462429 ], [ -82.141748830968979, 28.796203838326921 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426E", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139026301448212, 28.797009387924973 ], [ -82.139033911580029, 28.798139204326208 ], [ -82.139035494605537, 28.798951993102591 ], [ -82.139033672818613, 28.799502088750337 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 422", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138138929649216, 28.799473813928675 ], [ -82.138791472006176, 28.799468657805548 ], [ -82.138903646183266, 28.799482015495634 ], [ -82.139033672818613, 28.799502088750337 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 422", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135403858924718, 28.799495428357609 ], [ -82.136318954823508, 28.799493615177557 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141109005886008, 28.800298006228179 ], [ -82.141226694326363, 28.800297528364343 ], [ -82.141351597949011, 28.800297399299161 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 419", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141109005886008, 28.800298006228179 ], [ -82.141136130035093, 28.80056572743338 ], [ -82.141140552891883, 28.801013656115163 ], [ -82.141131345489995, 28.801274680218654 ], [ -82.141137361156211, 28.801483483599778 ], [ -82.141126610595506, 28.802020678973783 ], [ -82.141127309829812, 28.802542705420478 ], [ -82.141120630485673, 28.803263447728963 ], [ -82.141111574197765, 28.803637295362172 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140290760794926, 28.800295484853308 ], [ -82.141109005886008, 28.800298006228179 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 421", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140290760794926, 28.800295484853308 ], [ -82.140375998622474, 28.801134008236811 ], [ -82.140492461667392, 28.80244906260814 ], [ -82.140503354092203, 28.80253417515296 ], [ -82.140509885655348, 28.802612389546184 ], [ -82.140506170535275, 28.802693222214632 ], [ -82.140500158660856, 28.802771729301988 ], [ -82.140466520043461, 28.803065417793352 ], [ -82.140365971521291, 28.803649856008771 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426E", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139033672818613, 28.799502088750337 ], [ -82.139036644291778, 28.800303510454572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139036644291778, 28.800303510454572 ], [ -82.140290760794926, 28.800295484853308 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137333250342451, 28.800305244648325 ], [ -82.137679281732602, 28.800304893380499 ], [ -82.139036644291778, 28.800303510454572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 431 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137333250342451, 28.800305244648325 ], [ -82.137335656358687, 28.800684134486374 ], [ -82.137337909562277, 28.800945144986201 ], [ -82.137338089793175, 28.801083227879175 ], [ -82.137351649420992, 28.801219616236008 ], [ -82.137367106231792, 28.80134421490347 ], [ -82.137397841693499, 28.801455323927648 ], [ -82.137599666186361, 28.802286996161069 ], [ -82.137672680143595, 28.80256477556398 ], [ -82.137703449507484, 28.802702828307744 ], [ -82.137722721065956, 28.802819002689539 ], [ -82.137738207219869, 28.802965492168124 ], [ -82.137749926629667, 28.803155768194909 ], [ -82.137750105214991, 28.803292167333382 ], [ -82.137684733469086, 28.804471005271811 ], [ -82.137653068195007, 28.804819109253959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 430", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135872368872157, 28.800949245759007 ], [ -82.135450233289419, 28.801859746363313 ], [ -82.135431249267228, 28.801962486869325 ], [ -82.135429414747932, 28.802023112138738 ], [ -82.135440955305057, 28.802076987429846 ], [ -82.135461144832163, 28.802123668103569 ], [ -82.13546838423629, 28.802136380733259 ], [ -82.135476204614875, 28.802148405223445 ], [ -82.135486370450607, 28.8021624909541 ], [ -82.135671554678026, 28.802304286212674 ], [ -82.135944910257834, 28.802569411704141 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136168980452979, 28.80030978440757 ], [ -82.137333250342451, 28.800305244648325 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 446A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126499821972445, 28.790335640814575 ], [ -82.127229580744569, 28.790634374413031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 444", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126499821972445, 28.790335640814575 ], [ -82.126383469436107, 28.790545557992374 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 444", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126383469436107, 28.790545557992374 ], [ -82.12585719825141, 28.791423787231544 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 447", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126774583151686, 28.791819315277312 ], [ -82.126566704395159, 28.79225095338683 ], [ -82.126234990041439, 28.792930088215037 ], [ -82.125796839788151, 28.793756618409574 ], [ -82.125554899180599, 28.794168127872211 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 444", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12585719825141, 28.791423787231544 ], [ -82.125645932743339, 28.791800078451946 ], [ -82.125497086743437, 28.792054383363705 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 451", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124878559257326, 28.791412411195289 ], [ -82.125295906264327, 28.791868800322337 ], [ -82.125497086743437, 28.792054383363705 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 450", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126383469436107, 28.790545557992374 ], [ -82.124878559257326, 28.791412411195289 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 443", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124304827268247, 28.790879672223017 ], [ -82.124399031494008, 28.790818392223166 ], [ -82.124827929971644, 28.790560108659836 ], [ -82.126085161574991, 28.789839089141779 ], [ -82.126325379714302, 28.789688890289909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 451", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124304827268247, 28.790879672223017 ], [ -82.124585486843699, 28.791143862764379 ], [ -82.124878559257326, 28.791412411195289 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 451", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123674104522976, 28.790405991943686 ], [ -82.123972357520586, 28.790862491751806 ], [ -82.124004670027702, 28.790914914517231 ], [ -82.124036968643125, 28.790952038605344 ], [ -82.124074202689528, 28.790969488705144 ], [ -82.124116377797208, 28.790969450204678 ], [ -82.124161020320471, 28.79095629705516 ], [ -82.124203176848084, 28.790938774465875 ], [ -82.124245322021679, 28.790912509383283 ], [ -82.124304827268247, 28.790879672223017 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123265190094287, 28.789768566556138 ], [ -82.123730243533259, 28.789510725567396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 451", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123265190094287, 28.789768566556138 ], [ -82.123674104522976, 28.790405991943686 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12306316086962, 28.789864539830983 ], [ -82.123256544771451, 28.789755088452601 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triggerfish Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007173986410322, 28.889539590872463 ], [ -82.007323522797307, 28.889458007431607 ], [ -82.007562151868498, 28.889321827376939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kingfisher Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007210875175488, 28.889996826189371 ], [ -82.007206466633974, 28.889698818242433 ], [ -82.007202102151567, 28.889652143357917 ], [ -82.007200693728905, 28.889624933655437 ], [ -82.007190854059772, 28.889589064987344 ], [ -82.007173986410322, 28.889539590872463 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meadowlark Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006520714670927, 28.89146347241919 ], [ -82.006516019094647, 28.890327419756897 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abbey Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007665311897071, 28.889262957742663 ], [ -82.007602787801531, 28.889172953820587 ], [ -82.007574046712676, 28.889125386026624 ], [ -82.007553096324983, 28.889074735566847 ], [ -82.007540359101455, 28.889022013902025 ], [ -82.007536082185425, 28.888968241523614 ], [ -82.007540351756944, 28.888914473217266 ], [ -82.007548514279719, 28.888876926268811 ], [ -82.007643968141338, 28.888433831305282 ], [ -82.007691695947329, 28.888221831481491 ], [ -82.0076938647708, 28.888213361471895 ], [ -82.007706175085971, 28.888187203130531 ], [ -82.007719902925473, 28.888170263518546 ], [ -82.007724213520618, 28.88816241417835 ], [ -82.007744655024993, 28.888136350145825 ], [ -82.007771586657753, 28.888115347672219 ], [ -82.007782833124878, 28.888109145562641 ], [ -82.00778395877893, 28.888108272978098 ], [ -82.007809283290683, 28.888093947606869 ], [ -82.007828402612333, 28.888088133964708 ], [ -82.007832735120246, 28.888085830159358 ], [ -82.007863221940397, 28.888074713984778 ], [ -82.007893504232101, 28.888070941639064 ], [ -82.008616138236718, 28.887962038119838 ], [ -82.008841826782842, 28.887927646883202 ], [ -82.008887915284603, 28.887925852996201 ], [ -82.008934013606648, 28.887931345170305 ], [ -82.008978255810547, 28.887943993589996 ], [ -82.009019220887694, 28.887963390505714 ], [ -82.009055591358347, 28.887988914317798 ], [ -82.009086200432918, 28.888019744009679 ], [ -82.009110062771356, 28.888054888018882 ], [ -82.009126410369262, 28.888093214912512 ], [ -82.009132636733852, 28.888118615183245 ], [ -82.009176047317055, 28.888250394335657 ], [ -82.009193415213218, 28.888326788313663 ], [ -82.009215124284452, 28.888418460666852 ], [ -82.009225980959357, 28.888483396739378 ], [ -82.009232496754919, 28.888548331283371 ], [ -82.009241185372787, 28.888653373847788 ], [ -82.009246456213361, 28.888750828281651 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Claverton Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010788045152538, 28.888400265423204 ], [ -82.010731168507959, 28.888253364348383 ], [ -82.010705119294258, 28.888171878635372 ], [ -82.010680786023926, 28.888065961195519 ], [ -82.010638451742381, 28.887898373745873 ], [ -82.010608421312483, 28.88777106135975 ], [ -82.01057491776983, 28.887668089682858 ], [ -82.010504485917593, 28.887582428640776 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gasparilla Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010129601501532, 28.888668479027725 ], [ -82.010037600082782, 28.888481432277587 ], [ -82.009989849535287, 28.888372572145009 ], [ -82.009950777446136, 28.888271352976272 ], [ -82.00989433998582, 28.888126204682901 ], [ -82.009857440221595, 28.888021164090532 ], [ -82.009826296837588, 28.887934241289273 ], [ -82.009796659238816, 28.887832092054111 ], [ -82.009728353998497, 28.887594139258031 ], [ -82.009695677618495, 28.887409310585376 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 430", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136168980452979, 28.80030978440757 ], [ -82.135872368872157, 28.800949245759007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 430A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135872368872157, 28.800949245759007 ], [ -82.136294264536915, 28.801096069045393 ], [ -82.136431988801178, 28.801153184981214 ], [ -82.136474091809504, 28.801186821367068 ], [ -82.136495168377664, 28.801222163485388 ], [ -82.136510517119689, 28.80126424709557 ], [ -82.136523961942444, 28.801311384646514 ], [ -82.136525947878624, 28.801370321482288 ], [ -82.136543362160282, 28.801530280673255 ], [ -82.136564650960437, 28.801730649483048 ], [ -82.13658779323427, 28.801883868064277 ], [ -82.13661865498797, 28.802094331282213 ], [ -82.136649493835634, 28.802286271910038 ], [ -82.136681083638734, 28.802473445773089 ], [ -82.136693550004026, 28.802605443733253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135706810014767, 28.800311089755265 ], [ -82.136168980452979, 28.80030978440757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 431B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134954133891583, 28.802263402765636 ], [ -82.134867777564892, 28.802362988876169 ], [ -82.13473804610193, 28.802674778793218 ], [ -82.134681944144347, 28.802806475008179 ], [ -82.134669086167932, 28.802844376615685 ], [ -82.13466051818547, 28.802870907581859 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135416475125268, 28.800311371424417 ], [ -82.135706810014767, 28.800311089755265 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135403858924718, 28.799495428357609 ], [ -82.135416475125268, 28.800311371424417 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 432A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13362585147803, 28.800339545557893 ], [ -82.133618877787939, 28.800380119344695 ], [ -82.13362876842838, 28.800477912729214 ], [ -82.133690097935968, 28.80070506108444 ], [ -82.133779030091262, 28.800958201209109 ], [ -82.133838259132602, 28.801083020655849 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 432A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133838259132602, 28.801083020655849 ], [ -82.133988436500445, 28.80149566642508 ], [ -82.134138516907697, 28.80183373082922 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 29th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.132886471485136, 28.799733705145908 ], [ -82.133478434661257, 28.799745048756655 ], [ -82.133511655069228, 28.799738512261285 ], [ -82.133543007891575, 28.799715717075419 ], [ -82.133559604681182, 28.799702691259682 ], [ -82.133574348317367, 28.799683166124687 ], [ -82.133579861314558, 28.799663648261355 ], [ -82.133581466772497, 28.799473401950682 ], [ -82.133586950859325, 28.799431118846766 ], [ -82.13359428394908, 28.799390461690177 ], [ -82.133612710082261, 28.799364426374702 ], [ -82.133698165551976, 28.799305806765489 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133610303688087, 28.79892377776741 ], [ -82.133621579742581, 28.799018831301971 ], [ -82.133636362167067, 28.799092857572667 ], [ -82.133654911103903, 28.799162758384959 ], [ -82.133667891344743, 28.799208274345641 ], [ -82.133698165551976, 28.799305806765489 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 433", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.132466238507249, 28.799276118633866 ], [ -82.132936778261993, 28.799127691026793 ], [ -82.133610303688087, 28.79892377776741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133592027394883, 28.797838776544108 ], [ -82.133588484453668, 28.798365184776411 ], [ -82.133593292137959, 28.798609971230849 ], [ -82.133593125395109, 28.798703758355359 ], [ -82.133600309727285, 28.798839678812211 ], [ -82.133610303688087, 28.79892377776741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 436", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129842288702292, 28.790570314438877 ], [ -82.129852144232217, 28.790563546714605 ], [ -82.129863099484908, 28.790560639828957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 15th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129485679196222, 28.789255933574516 ], [ -82.129506800017225, 28.790458647855722 ], [ -82.129509466380298, 28.790480418977083 ], [ -82.1295221996088, 28.79050400587931 ], [ -82.129556286905455, 28.790530719685346 ], [ -82.129592672058322, 28.790544415458179 ], [ -82.129665417028093, 28.790551211754504 ], [ -82.129842288702292, 28.790570314438877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127856299454365, 28.7873104203526 ], [ -82.128449467869203, 28.78697882476391 ], [ -82.129358506863625, 28.786450734064655 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 438", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127016524382356, 28.785656121236702 ], [ -82.127361252784212, 28.78607744255903 ], [ -82.127890699336987, 28.786822353965821 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 446", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126569072104203, 28.786697190630104 ], [ -82.126797359718822, 28.78698388584414 ], [ -82.127157915030935, 28.787473652086231 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 446", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127185103276474, 28.78751129002633 ], [ -82.127605278500113, 28.788096717300274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10335284409669, 28.876621554893038 ], [ -82.107430495199566, 28.877364736996686 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156397953544356, 28.862846284263643 ], [ -82.156221007407254, 28.862896757463403 ], [ -82.156058318485393, 28.862934645861763 ], [ -82.155905570168002, 28.862978967750031 ], [ -82.155670648769885, 28.86305423811049 ], [ -82.155450417240743, 28.863129493906705 ], [ -82.155221392376603, 28.86322027627989 ], [ -82.15499825971655, 28.86332139458754 ], [ -82.154801559795814, 28.863417310327602 ], [ -82.15448450774629, 28.86358319214337 ], [ -82.153970798746968, 28.863876023209635 ], [ -82.153150524256986, 28.864353577185568 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156434188828484, 28.863037908112624 ], [ -82.156844554795256, 28.862931858882504 ], [ -82.157541569138445, 28.862756141562613 ], [ -82.161440101078696, 28.86172373853487 ], [ -82.161488078973306, 28.861711461470428 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.193005090000341, 28.857093185614662 ], [ -82.193842033768718, 28.85701632253372 ], [ -82.194218855651044, 28.85698684730713 ], [ -82.194657001030833, 28.856941851706353 ], [ -82.195106084585746, 28.856887193332224 ], [ -82.195544194213497, 28.856822906447888 ], [ -82.195977906277648, 28.856750906241423 ], [ -82.19642036124398, 28.85666731725474 ], [ -82.196742326841942, 28.856597407668712 ], [ -82.197083997087745, 28.856519751251454 ], [ -82.197193503762321, 28.856492585897236 ], [ -82.197370902616626, 28.856447961206481 ], [ -82.197751973048028, 28.856349026251486 ], [ -82.198699179678329, 28.856072287608285 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10224886647994, 28.754284931376233 ], [ -82.102210123953739, 28.754284960425519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arvin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972766842723303, 28.86925704926999 ], [ -81.972766973281082, 28.868762156767367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 125B 1", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018417991126825, 28.891798282267004 ], [ -82.018268017999915, 28.89168099939803 ], [ -82.018179143944295, 28.891602807772909 ], [ -82.01808749647077, 28.891541724957992 ], [ -82.018031954396065, 28.891512408302418 ], [ -82.017959750197278, 28.891480647634637 ], [ -82.017898656120821, 28.891456216690667 ], [ -82.017784798370684, 28.891431793355981 ], [ -82.017641115224265, 28.891424683421068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955127629500097, 28.948233817425827 ], [ -81.955148400455982, 28.948257816332809 ], [ -81.955191216526231, 28.948289132078827 ], [ -81.95523487093071, 28.948312868834989 ], [ -81.955270714156796, 28.94833060994441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955571761309074, 28.947742086971591 ], [ -81.955525377855608, 28.947726683892903 ], [ -81.955478672189429, 28.947716319092375 ], [ -81.955419393657493, 28.947711436032655 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955419393657493, 28.947711436032655 ], [ -81.955357138977902, 28.947714201591229 ], [ -81.955308333733285, 28.947719834580095 ], [ -81.95525310039335, 28.947737889070495 ], [ -81.955243214690981, 28.94774212744678 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955140561140979, 28.947805544140792 ], [ -81.955101497113247, 28.947863229956887 ], [ -81.955074507426119, 28.947910664352676 ], [ -81.955060365988089, 28.94794454791171 ], [ -81.955050072123001, 28.947988601595156 ], [ -81.955046198444279, 28.948033786198707 ], [ -81.955048746521115, 28.948081231393534 ], [ -81.955057407719053, 28.948114096690105 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954150830565098, 28.949047285083022 ], [ -81.95432513107194, 28.948969167277685 ], [ -81.954724609051226, 28.948657770141324 ], [ -81.955023989094869, 28.94841162451926 ], [ -81.955091583709844, 28.948368596107297 ], [ -81.955171443926403, 28.948335635030883 ], [ -81.955270714156796, 28.94833060994441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958399870777811, 28.953394391296154 ], [ -81.959638874604906, 28.954610637213321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cazaras Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974879199384191, 28.951588035101608 ], [ -81.974814603950946, 28.951703703102048 ], [ -81.974797359299458, 28.951794899924195 ], [ -81.974781586831867, 28.951864829094561 ], [ -81.97477094322393, 28.951936691038309 ], [ -81.974762136946381, 28.951995986203929 ], [ -81.974762114392973, 28.95208364206681 ], [ -81.974762058041293, 28.952313093111972 ], [ -81.974761489717864, 28.952530251226751 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Richmond Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014380031735428, 28.958044539695877 ], [ -82.014429006511619, 28.958044534626886 ], [ -82.01454654823155, 28.958044522388366 ], [ -82.014709802272961, 28.958044504317606 ], [ -82.014876320820775, 28.958044487504079 ], [ -82.01509181454918, 28.958047336264542 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016341775084953, 28.941919434681918 ], [ -82.016341780666551, 28.941922396910055 ], [ -82.016347621497431, 28.944847969622639 ], [ -82.016345784707866, 28.94555514003801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016345784707866, 28.94555514003801 ], [ -82.01635516312588, 28.947429022123149 ], [ -82.016337563492996, 28.948989036366619 ], [ -82.016337763913484, 28.950300252828026 ], [ -82.016343102321073, 28.951882677538276 ], [ -82.016340694573913, 28.952808373337767 ], [ -82.016340691575181, 28.952808889449035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 136th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016330880957867, 28.955285115422654 ], [ -82.015018422951158, 28.955269572741706 ], [ -82.01360255452046, 28.955278906264603 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 102", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028771811983276, 28.96013676699657 ], [ -82.021588422723127, 28.960108090295691 ], [ -82.020389430491647, 28.960113061568631 ], [ -82.016762754782135, 28.960120562112255 ], [ -82.016530279212787, 28.960130341112873 ], [ -82.016446949423766, 28.960136293518762 ], [ -82.016421005566585, 28.960125275113842 ], [ -82.016396930517118, 28.960111144481669 ], [ -82.016371397437808, 28.960095953825729 ], [ -82.016350350604995, 28.960079217913705 ], [ -82.016321207263402, 28.960050840693533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Creekside Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977095731859464, 28.90610336894099 ], [ -81.977255722822591, 28.905873415768799 ], [ -81.977297829230253, 28.905824033824718 ], [ -81.977379230404907, 28.905752434011845 ], [ -81.977501676556557, 28.905668184523567 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Pine Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977703685748367, 28.905899728245512 ], [ -81.977827877308627, 28.905857150496189 ], [ -81.977979434041885, 28.905805317757494 ], [ -81.978126779234259, 28.905753484158776 ], [ -81.978301489645673, 28.905686837300909 ], [ -81.978520405698049, 28.905599827040515 ], [ -81.978693014012322, 28.905525771466138 ], [ -81.978888775538792, 28.905438756009097 ], [ -81.978989814645345, 28.905394322911878 ], [ -81.979193996302399, 28.905292488984902 ], [ -81.979368711411482, 28.905205470450689 ], [ -81.979507641534539, 28.905133261041836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Pine Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979507641534539, 28.905133261041836 ], [ -81.979878471714215, 28.904917551696361 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triggerfish Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005784772817577, 28.890118571780967 ], [ -82.005897204370001, 28.890105373081621 ], [ -82.006029625257213, 28.890070185328842 ], [ -82.006194522075234, 28.889995418503432 ], [ -82.006621677712147, 28.889794409117009 ], [ -82.007173986410322, 28.889539590872463 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Swordfish Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005787832793871, 28.890746883986182 ], [ -82.005784772817577, 28.890118571780967 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96568464845879, 28.954126385794499 ], [ -81.965395965719011, 28.954419033839184 ], [ -81.965349602822613, 28.954482013532044 ], [ -81.965321950219931, 28.954532644782265 ], [ -81.965295570366251, 28.95459960603036 ], [ -81.965266259965517, 28.954674293737618 ], [ -81.965248403128726, 28.954750622973371 ], [ -81.965248625067161, 28.954862316806345 ], [ -81.965263558775632, 28.955104017528384 ], [ -81.965263560813483, 28.955104059034316 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966834992718717, 28.955713103847604 ], [ -81.966299803349898, 28.955398331162339 ], [ -81.966015784069839, 28.955241142411701 ], [ -81.965927938635119, 28.95520505909203 ], [ -81.96576688296031, 28.955156079503769 ], [ -81.965646820922316, 28.955130291925645 ], [ -81.965523828272154, 28.955109654668025 ], [ -81.965421329901574, 28.955101901001743 ], [ -81.965342259365357, 28.955099305410595 ], [ -81.965263560813483, 28.955104059034316 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965263560813483, 28.955104059034316 ], [ -81.965180875190256, 28.955110022450139 ], [ -81.965062904535259, 28.95512851846264 ], [ -81.964953359111007, 28.955154427098364 ], [ -81.964850132562987, 28.955182189708797 ], [ -81.964741726719268, 28.955217367712201 ], [ -81.964584681291115, 28.955289574542839 ], [ -81.964447728147235, 28.955382171999297 ], [ -81.964350803407129, 28.95545439902012 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clemente Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959568668802106, 28.949725764624734 ], [ -81.959601553208529, 28.949655443571359 ], [ -81.959634671345256, 28.949556526230946 ], [ -81.959659520418896, 28.94946197077893 ], [ -81.95969428586325, 28.949379056070654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109E", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978286859399631, 28.953430807114216 ], [ -81.977102341550975, 28.953423289754088 ], [ -81.976444103824733, 28.953422014888559 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109E", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976444103824733, 28.953422014888559 ], [ -81.974849818280347, 28.953403959854274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970371254432834, 28.955733250996879 ], [ -81.969701329756631, 28.95576932338766 ], [ -81.968819995411906, 28.955812585121173 ], [ -81.967598205180224, 28.955875077121803 ], [ -81.967436647347128, 28.955880358711926 ], [ -81.9673108249889, 28.955872781264741 ], [ -81.967236801992442, 28.955864767052521 ], [ -81.967139255320035, 28.955842559393275 ], [ -81.967056333971684, 28.955817388530509 ], [ -81.966987710534525, 28.95578970555616 ], [ -81.966928324859396, 28.955763836631558 ], [ -81.966834992718717, 28.955713103847604 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127890699336987, 28.786822353965821 ], [ -82.127524369754838, 28.787067212767475 ], [ -82.127365598843525, 28.787255596395664 ], [ -82.127157915030935, 28.787473652086231 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127185103276474, 28.78751129002633 ], [ -82.127500714193815, 28.787419595644376 ], [ -82.127775821612673, 28.787351686535658 ], [ -82.127856299454365, 28.7873104203526 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 21st Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127856299454365, 28.7873104203526 ], [ -82.127892732271448, 28.787365307060256 ], [ -82.12792395723352, 28.787408757351738 ], [ -82.127970790553377, 28.787470499935402 ], [ -82.128004631536371, 28.787529964671556 ], [ -82.128041067292088, 28.787587141400003 ], [ -82.128080116567034, 28.787655756961879 ], [ -82.128116568375361, 28.787724374057483 ], [ -82.128163385237187, 28.787772385213952 ], [ -82.128220553208465, 28.78778835003023 ], [ -82.128340047982803, 28.787790525518634 ], [ -82.128417977628899, 28.787790451915804 ], [ -82.128477716270908, 28.787783530679889 ], [ -82.128576388985508, 28.787751399915908 ], [ -82.128716593181522, 28.787694057078955 ], [ -82.129090445544321, 28.787522073917955 ], [ -82.129134588451365, 28.787508301516798 ], [ -82.129160569443329, 28.787510565092006 ], [ -82.129183963889815, 28.787524273329094 ], [ -82.129207394086777, 28.787565442467546 ], [ -82.129288066156889, 28.78768436165511 ], [ -82.129321904382095, 28.787739249536536 ], [ -82.129350542750004, 28.787791856803363 ], [ -82.129379167086597, 28.787833020966684 ], [ -82.129410395612524, 28.787878757361725 ], [ -82.129439015395931, 28.787915345896153 ], [ -82.129472823587733, 28.7879473493505 ], [ -82.129504026863032, 28.78797249410426 ], [ -82.129556000096613, 28.787988461498546 ], [ -82.129605112129667, 28.787988248650763 ], [ -82.129645009100685, 28.787988210600581 ], [ -82.129687562350853, 28.787983483400023 ], [ -82.129772657287461, 28.78796465576167 ], [ -82.130094357800559, 28.787842500121943 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 446", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12596691104072, 28.785886088257737 ], [ -82.126569072104203, 28.786697190630104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 415", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.152355996001987, 28.797788071166607 ], [ -82.152421819669868, 28.797845745950845 ], [ -82.152414205388482, 28.797878106791298 ], [ -82.152366616893786, 28.797908562617955 ], [ -82.152326641642233, 28.797931405223942 ], [ -82.152079176288694, 28.798058942563145 ], [ -82.152004936443532, 28.798116048942042 ], [ -82.151934504062552, 28.79817315462757 ], [ -82.151843131587242, 28.798266428396236 ], [ -82.151753663238992, 28.798359702680653 ], [ -82.150619126201278, 28.799593200906404 ], [ -82.150499202445005, 28.79973977413993 ], [ -82.150457322579541, 28.799808302199807 ], [ -82.15040592616991, 28.7998825406763 ], [ -82.150381178193797, 28.799954875516978 ], [ -82.150362993913845, 28.800049805015512 ], [ -82.150357994993414, 28.800105740164931 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 415", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.150223595712816, 28.797761533253723 ], [ -82.151566083953441, 28.797750924935688 ], [ -82.151792785470519, 28.797768171905087 ], [ -82.151859410333955, 28.797775786864307 ], [ -82.15191271110676, 28.797788160141327 ], [ -82.151978383958948, 28.797789112554685 ], [ -82.152040249952719, 28.797789112752508 ], [ -82.152152560175537, 28.797771981091785 ], [ -82.152238221426657, 28.797756754226342 ], [ -82.15232546979604, 28.797754549454531 ], [ -82.152355996001987, 28.797788071166607 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 459", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123132437986314, 28.774566919226604 ], [ -82.123403730919037, 28.774580732329252 ], [ -82.124475643661754, 28.774661769605743 ], [ -82.125120487816517, 28.774714333223006 ], [ -82.126024445318592, 28.774782388452504 ], [ -82.126309086231643, 28.774806924482231 ], [ -82.12645922051, 28.774815052864504 ], [ -82.126643765084594, 28.774828657663239 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 12th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126643765084594, 28.774828657663239 ], [ -82.126690103006695, 28.774349144313266 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 461", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119422134234412, 28.781616774382599 ], [ -82.119490750729668, 28.781638688135317 ], [ -82.11977761894245, 28.78166590402077 ], [ -82.120669291918119, 28.781648635154301 ], [ -82.122496310718518, 28.781636014445994 ], [ -82.123980371160258, 28.781623683037555 ], [ -82.124809697712095, 28.781617431124147 ], [ -82.125549759072769, 28.781613762289094 ], [ -82.12662297392329, 28.781611009410447 ], [ -82.126808463390972, 28.781586231396577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 463A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118799849157426, 28.781365989199561 ], [ -82.118935467477229, 28.781361751635771 ], [ -82.119186141316845, 28.781362355139077 ], [ -82.119302353417908, 28.781356556064857 ], [ -82.11946673561512, 28.781357165224048 ], [ -82.119632284709525, 28.781356266295283 ], [ -82.119776113063196, 28.781369253027805 ], [ -82.119919907335372, 28.781356766457552 ], [ -82.120061134851383, 28.781355888443471 ], [ -82.120214528118041, 28.78134723603489 ], [ -82.120324412788847, 28.781331687677401 ], [ -82.120417893421035, 28.781285254068564 ], [ -82.120512517831997, 28.781217188248007 ], [ -82.120660858659349, 28.781092421234483 ], [ -82.120745849629657, 28.780982750953857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 10th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120287444058448, 28.780574275151189 ], [ -82.120357006628709, 28.780552457962951 ], [ -82.120491671862311, 28.780532561856017 ], [ -82.120644315527926, 28.780530449587289 ], [ -82.121042975492969, 28.780547131062864 ], [ -82.121081208474436, 28.78054090897507 ], [ -82.121116507909647, 28.780526437841676 ], [ -82.121146724187497, 28.780504753629646 ], [ -82.12116971384053, 28.780476886887968 ], [ -82.121184116052888, 28.780444903323492 ], [ -82.121189149698878, 28.78041086451648 ], [ -82.121189601238669, 28.780295009002625 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 463", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120287444058448, 28.780574275151189 ], [ -82.120386289267074, 28.780639450157402 ], [ -82.120498652448347, 28.780748120814931 ], [ -82.120650334719642, 28.780886424536586 ], [ -82.120745849629657, 28.780982750953857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 463B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122863957921169, 28.78013490644468 ], [ -82.122819027228005, 28.780105282603696 ], [ -82.122771860768864, 28.780083570436428 ], [ -82.122610220378832, 28.780069872071735 ], [ -82.1220871875705, 28.780070342570696 ], [ -82.122028817876526, 28.780066440116656 ], [ -82.121965947744414, 28.780052652328678 ], [ -82.121914294780836, 28.78003292175303 ], [ -82.121871607116688, 28.780001316813571 ], [ -82.121833405943661, 28.779965753908503 ], [ -82.12180416116864, 28.779912383053905 ], [ -82.121786102818788, 28.779827358980359 ], [ -82.121779104680257, 28.77959795590283 ], [ -82.121796966597614, 28.779514877530517 ], [ -82.121826075308391, 28.779451565968124 ], [ -82.121861932693989, 28.779400115567285 ], [ -82.121913505237913, 28.779350627136349 ], [ -82.121976315409185, 28.779312994018365 ], [ -82.122066071534277, 28.779283249070197 ], [ -82.122342198209452, 28.77923785647997 ], [ -82.12319496713674, 28.779094352626295 ], [ -82.123291479541876, 28.779082398859725 ], [ -82.123361063385786, 28.779078380025634 ], [ -82.123423922822994, 28.7790842566035 ], [ -82.123475577917674, 28.779105963570128 ], [ -82.123540707875677, 28.779133591884776 ], [ -82.123583402645792, 28.779171128998613 ], [ -82.123637349226513, 28.779232388493941 ], [ -82.123662103732656, 28.77928576303718 ], [ -82.123666658719216, 28.779341133813091 ], [ -82.123637822704836, 28.779635832724981 ], [ -82.123649132562491, 28.779708995470518 ], [ -82.123658192792234, 28.779778206326675 ], [ -82.123685204052109, 28.779841467250719 ], [ -82.123714441769465, 28.779888904095181 ], [ -82.123759387586688, 28.779930394837724 ], [ -82.123822290419795, 28.779971868314547 ], [ -82.123885174974859, 28.779999498501578 ], [ -82.123945803666189, 28.780015264404867 ], [ -82.124013152686445, 28.780021135711429 ], [ -82.124089477087225, 28.780023043959972 ], [ -82.124816773855969, 28.780010512976588 ], [ -82.125980718324115, 28.780008829697781 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 15th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118349641323476, 28.778092020931801 ], [ -82.118735732270224, 28.778087728785362 ], [ -82.118812053974096, 28.778087661252137 ], [ -82.118872659705488, 28.778085632245947 ], [ -82.118915315648778, 28.778091526772602 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 9th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118915315648778, 28.778091526772602 ], [ -82.118964725387769, 28.778113239239755 ], [ -82.119005189802152, 28.778164623046919 ], [ -82.11902321898836, 28.778227892786735 ], [ -82.119079769661738, 28.778611511195066 ], [ -82.119082135335262, 28.778718303248922 ], [ -82.119079986462467, 28.778803344493497 ], [ -82.119089025718594, 28.778856733641938 ], [ -82.119102540515343, 28.778898252556949 ], [ -82.119125029580815, 28.778933831808622 ], [ -82.119138556607069, 28.778985239153396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 15th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118081097368616, 28.778827947774925 ], [ -82.118292153085164, 28.778871273046928 ], [ -82.11854141633836, 28.778956094546604 ], [ -82.118631259980035, 28.77900348148972 ], [ -82.118712096834003, 28.779025165734485 ], [ -82.118790667641775, 28.779029051987113 ], [ -82.118871478980495, 28.779028981399819 ], [ -82.118956772570769, 28.779022974139057 ], [ -82.119035324300285, 28.779009060343853 ], [ -82.119138556607069, 28.778985239153396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 465", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119347461708287, 28.777083996667027 ], [ -82.119805311168847, 28.777062357411278 ], [ -82.120602192684544, 28.777069563882669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 482 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120602192684544, 28.777069563882669 ], [ -82.120600214839882, 28.777302931716601 ], [ -82.120598386382795, 28.777666825275244 ], [ -82.120600875809316, 28.777880409529789 ], [ -82.120610125268598, 28.778117722218646 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 465", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122359818582481, 28.777075906648591 ], [ -82.122633675490221, 28.777077636993912 ], [ -82.123114088490041, 28.777071860422279 ], [ -82.124437264576642, 28.777070070707389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 465", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120602192684544, 28.777069563882669 ], [ -82.121901894869211, 28.777076317791863 ], [ -82.122359818582481, 28.777075906648591 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 467", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122321699750415, 28.775179355787362 ], [ -82.122912403732585, 28.775176361831402 ], [ -82.123446980082818, 28.775173533541896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 467D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122309317156592, 28.776114802954421 ], [ -82.122313710584962, 28.77603173658386 ], [ -82.122318122373756, 28.775964492253824 ], [ -82.122317976716403, 28.775839900104788 ], [ -82.122320132097585, 28.775762768451141 ], [ -82.122319971392102, 28.775624332123186 ], [ -82.122319783137769, 28.775462163179373 ], [ -82.122319705080002, 28.775394921076202 ], [ -82.122319646415647, 28.775343502819148 ], [ -82.122319569631259, 28.77527823948623 ], [ -82.122321699750415, 28.775179355787362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 482 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120589859153952, 28.77608012369485 ], [ -82.120594508244352, 28.776238950123716 ], [ -82.120602192684544, 28.777069563882669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 482D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120589859153952, 28.77608012369485 ], [ -82.120718184661456, 28.77609632370541 ], [ -82.12117349552878, 28.776111864592853 ], [ -82.122073624671103, 28.776115014666967 ], [ -82.122309317156592, 28.776114802954421 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 482D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119088121398192, 28.776070197352251 ], [ -82.11917566318202, 28.776070120699973 ], [ -82.119938861447338, 28.776069450034409 ], [ -82.12048948529204, 28.776068963492545 ], [ -82.120589859153952, 28.77608012369485 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 9th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119088121398192, 28.776070197352251 ], [ -82.11878094532544, 28.776378982945381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 482D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118477370141122, 28.775898672076792 ], [ -82.118481917795293, 28.77595008913617 ], [ -82.118488700455572, 28.775993591865099 ], [ -82.118511188686696, 28.776029170335701 ], [ -82.11854264345682, 28.776054853443725 ], [ -82.118601022101487, 28.776070621921971 ], [ -82.118657142304272, 28.776072552666456 ], [ -82.118719991796866, 28.776070519068607 ], [ -82.119088121398192, 28.776070197352251 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 482 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120624166838979, 28.775185319026541 ], [ -82.120620593100043, 28.775495321792366 ], [ -82.120616388505667, 28.775744512812238 ], [ -82.120589859153952, 28.77608012369485 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 467", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120624166838979, 28.775185319026541 ], [ -82.122321699750415, 28.775179355787362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 467", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117722512571405, 28.774821991464655 ], [ -82.118769244334629, 28.774959519256004 ], [ -82.120624166838979, 28.775185319026541 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 467A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117722512571405, 28.774821991464655 ], [ -82.117808868582415, 28.774263225077739 ], [ -82.117842277930563, 28.774030818877062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 467A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117842277930563, 28.774030818877062 ], [ -82.117842139723237, 28.773907214694972 ], [ -82.117842045743245, 28.773823164282952 ], [ -82.117844812115308, 28.773788552754148 ], [ -82.117830733944999, 28.773744067359051 ], [ -82.1178054407346, 28.773707007785635 ], [ -82.117757700864985, 28.773669967633364 ], [ -82.117693148312739, 28.773655191250523 ], [ -82.117623001489406, 28.773652779561768 ], [ -82.11756407973941, 28.773652830478301 ], [ -82.117174085853179, 28.77366552763095 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 482C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121341209287536, 28.774094490339529 ], [ -82.122865907762488, 28.774077422519429 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 482C 1", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12154180179148, 28.772086856182963 ], [ -82.121440802781549, 28.772143183058876 ], [ -82.121400951283064, 28.772178367343795 ], [ -82.121369080245998, 28.772215888708736 ], [ -82.121358483978455, 28.772253390189242 ], [ -82.121353214360482, 28.772295573534219 ], [ -82.121353289908853, 28.772361182485898 ], [ -82.121341209287536, 28.774094490339529 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 482C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120620859420725, 28.77409154419917 ], [ -82.121341209287536, 28.774094490339529 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 482C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117842277930563, 28.774030818877062 ], [ -82.117918002279055, 28.77400108882448 ], [ -82.117979720998051, 28.773993620116574 ], [ -82.118058287376712, 28.77399602251003 ], [ -82.118742944962548, 28.774030036806465 ], [ -82.120620859420725, 28.77409154419917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 482 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120620859420725, 28.77409154419917 ], [ -82.120624166838979, 28.775185319026541 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 482 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120609226715203, 28.77335807302509 ], [ -82.120613756515382, 28.773444978029492 ], [ -82.120622596371163, 28.773813311645032 ], [ -82.120620859420725, 28.77409154419917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 482B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117643909645025, 28.773278171468373 ], [ -82.119217772273217, 28.773313818205846 ], [ -82.120609226715203, 28.77335807302509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 482 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120580353946622, 28.772731702710157 ], [ -82.120609226715203, 28.77335807302509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 482A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117643909645025, 28.773278171468373 ], [ -82.117634394947132, 28.772898641365469 ], [ -82.117635584124741, 28.772871276777138 ], [ -82.117637964190465, 28.772827257158113 ], [ -82.117637964441514, 28.772776099588842 ], [ -82.117640344086723, 28.772734458468072 ], [ -82.117658189649632, 28.77269995751826 ], [ -82.117686902410114, 28.772674031779726 ], [ -82.117718683777071, 28.772658534125501 ], [ -82.117738966033897, 28.772650951582268 ], [ -82.117769003712226, 28.772644049961546 ], [ -82.117813676828447, 28.772641606628277 ], [ -82.11848981270218, 28.77266070174845 ], [ -82.120580353946622, 28.772731702710157 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 482 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120595710680121, 28.771150401706418 ], [ -82.120593496989201, 28.771915102738028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 482 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120593496989201, 28.771915102738028 ], [ -82.120589429024449, 28.772460877004608 ], [ -82.120580353946622, 28.772731702710157 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 477 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118007789572175, 28.771888427954529 ], [ -82.118046187970691, 28.771895392996861 ], [ -82.11808945903006, 28.77190324257904 ], [ -82.118165018749878, 28.771908964430803 ], [ -82.118296414300374, 28.771908850275 ], [ -82.119220874550095, 28.771908043496222 ], [ -82.120593496989201, 28.771915102738028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 477", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117929657996797, 28.771680109948754 ], [ -82.117933334630933, 28.771610644849755 ], [ -82.117936655262938, 28.771553426260152 ], [ -82.117948201936855, 28.771478324803756 ], [ -82.117963406314402, 28.771416624045553 ], [ -82.117981760495212, 28.771340009820069 ], [ -82.118008024852401, 28.771268030234332 ], [ -82.118031672371131, 28.77121230358313 ], [ -82.118061210844189, 28.7711596523162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 477", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118007789572175, 28.771888427954529 ], [ -82.117981925605463, 28.771838833956007 ], [ -82.117965460687344, 28.771803704916426 ], [ -82.117948990886518, 28.771762372472296 ], [ -82.117929657996797, 28.771680109948754 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 477A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117262170939611, 28.771680356469915 ], [ -82.117457385702821, 28.771678865336366 ], [ -82.117929657996797, 28.771680109948754 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 7th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117262170939611, 28.771680356469915 ], [ -82.117158830453917, 28.771927861691196 ], [ -82.11709589037477, 28.772044346806748 ], [ -82.117062896389257, 28.772082743372483 ], [ -82.117020869242197, 28.772101303113107 ], [ -82.116977335447345, 28.772113248371895 ], [ -82.116935300489786, 28.772123869537019 ], [ -82.116861743438022, 28.772146425593252 ], [ -82.116576341273614, 28.772241821138703 ], [ -82.115602252469145, 28.772607405975982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 477A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116076968590562, 28.771666818142752 ], [ -82.116673513693783, 28.77167556941308 ], [ -82.117262170939611, 28.771680356469915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 11th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116964121756965, 28.772385814392941 ], [ -82.117007663589249, 28.772379161200998 ], [ -82.11705446235311, 28.772369985031805 ], [ -82.117639754799015, 28.772278062447562 ], [ -82.117680277040677, 28.772258181024636 ], [ -82.117702765335096, 28.772225085465916 ], [ -82.117723705438863, 28.772150974771844 ], [ -82.117735662038243, 28.772100686610045 ], [ -82.117749122467927, 28.772051721742127 ], [ -82.117764095138241, 28.772010692314851 ], [ -82.117779076553859, 28.771980248821965 ], [ -82.11780157215108, 28.771953768100875 ], [ -82.117830081955759, 28.771935220724416 ], [ -82.117876613924182, 28.771916656830474 ], [ -82.117936663361888, 28.77190205048451 ], [ -82.118007789572175, 28.771888427954529 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 477", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118061210844189, 28.7711596523162 ], [ -82.118113241147469, 28.771124029839985 ], [ -82.118171188417065, 28.771114693824323 ], [ -82.118202800204713, 28.771114666371236 ], [ -82.118537230332976, 28.771131120622808 ], [ -82.120174015364029, 28.77113171521362 ], [ -82.120595710680121, 28.771150401706418 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 436", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127029438056582, 28.795455429121787 ], [ -82.129289466760241, 28.793254156284405 ], [ -82.129383676022755, 28.793162616552841 ], [ -82.129445633907224, 28.793107919942681 ], [ -82.129484712323574, 28.793071216424224 ], [ -82.129528195938647, 28.793034242513912 ], [ -82.12955931420575, 28.792990734116753 ], [ -82.129574837354014, 28.792938086643563 ], [ -82.129592925095082, 28.792860264064512 ], [ -82.129592015225157, 28.792121115597649 ], [ -82.129590660343752, 28.791020402548515 ], [ -82.129598282331031, 28.790880802393982 ], [ -82.129613791834146, 28.790819000971439 ], [ -82.129637591750281, 28.79076455900605 ], [ -82.129663837345106, 28.79071819399342 ], [ -82.129691191125758, 28.790683413588344 ], [ -82.129721836081757, 28.790649593704046 ], [ -82.129764538381011, 28.790618659620346 ], [ -82.129842288702292, 28.790570314438877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 448", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127196146890427, 28.793249916562285 ], [ -82.126453691612213, 28.794660620153643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 448A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127196146890427, 28.793249916562285 ], [ -82.12779934735758, 28.793508332727487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 448", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127602129777813, 28.792504277096967 ], [ -82.127358279779102, 28.792940514931566 ], [ -82.127196146890427, 28.793249916562285 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 448B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127602129777813, 28.792504277096967 ], [ -82.128564538982829, 28.792832835230122 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 448", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127746197162466, 28.792234886854324 ], [ -82.127693708494789, 28.792324978661 ], [ -82.127602129777813, 28.792504277096967 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 449", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12729937073064, 28.792028993679416 ], [ -82.127607169794828, 28.792159834231903 ], [ -82.127666752606515, 28.79219125177292 ], [ -82.1277064727892, 28.792212193177875 ], [ -82.127746197162466, 28.792234886854324 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 449", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126774583151686, 28.791819315277312 ], [ -82.12729937073064, 28.792028993679416 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 446", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127580293292212, 28.791515000569614 ], [ -82.1274698828298, 28.79170315384275 ], [ -82.12729937073064, 28.792028993679416 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 448", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127580293292212, 28.791515000569614 ], [ -82.12783925784025, 28.791640776654081 ], [ -82.127883329531173, 28.791669693952063 ], [ -82.127915646286738, 28.791722115763221 ], [ -82.127930579162452, 28.791761440649427 ], [ -82.127938081154198, 28.791809515017238 ], [ -82.12793135059357, 28.791885467940567 ], [ -82.127906617045625, 28.791948870424132 ], [ -82.127746197162466, 28.792234886854324 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 446A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127229580744569, 28.790634374413031 ], [ -82.127937002935894, 28.790922198083162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 446", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127937002935894, 28.790922198083162 ], [ -82.127887501759076, 28.791020593840521 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 23rd Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127887501759076, 28.791020593840521 ], [ -82.12817536351713, 28.791077144788009 ], [ -82.128408613865119, 28.791109707365774 ], [ -82.12873861658538, 28.791137808033969 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 446", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127887501759076, 28.791020593840521 ], [ -82.127580293292212, 28.791515000569614 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 446", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128234781475754, 28.788937472248282 ], [ -82.128622442728243, 28.789459443871795 ], [ -82.128649800871926, 28.7895162410124 ], [ -82.128659793882775, 28.789570869189028 ], [ -82.128659860645328, 28.789625505858911 ], [ -82.128652477627497, 28.789675779688373 ], [ -82.128635188454226, 28.789739177080296 ], [ -82.128605484578699, 28.789793842824224 ], [ -82.127937002935894, 28.790922198083162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 445", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128234781475754, 28.788937472248282 ], [ -82.127600957791358, 28.790002413152887 ], [ -82.127348420428305, 28.79043101037562 ], [ -82.127229580744569, 28.790634374413031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 445", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127229580744569, 28.790634374413031 ], [ -82.126549291467583, 28.791725328499155 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 446", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128083198462875, 28.788734362385622 ], [ -82.128234781475754, 28.788937472248282 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 443", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127193114303154, 28.789200711316443 ], [ -82.128083198462875, 28.788734362385622 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 446", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127605278500113, 28.788096717300274 ], [ -82.127924145544682, 28.788507219099618 ], [ -82.128083198462875, 28.788734362385622 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 443", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126325379714302, 28.789688890289909 ], [ -82.127193114303154, 28.789200711316443 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 444", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127193114303154, 28.789200711316443 ], [ -82.127064348287675, 28.789399714637309 ], [ -82.126920765063304, 28.789657739198454 ], [ -82.126499821972445, 28.790335640814575 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121927990456854, 28.790495032871529 ], [ -82.121944955805972, 28.790485393606136 ], [ -82.122339166873644, 28.790243285955551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121167210666229, 28.791021354298373 ], [ -82.121235902192026, 28.790899926818572 ], [ -82.121282985603827, 28.790851804281147 ], [ -82.121337497831064, 28.79079274720862 ], [ -82.121404431277952, 28.790746791406971 ], [ -82.121493702152449, 28.79070955720254 ], [ -82.121746618893312, 28.790586942392792 ], [ -82.121927990456854, 28.790495032871529 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 455", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119892411696213, 28.789766838129292 ], [ -82.119974356898254, 28.789832331394123 ], [ -82.120019055280764, 28.789867260116726 ], [ -82.12007122644836, 28.78993059420041 ], [ -82.120169156897504, 28.790050016999043 ], [ -82.120212854006667, 28.790118424089307 ], [ -82.120275007087969, 28.790232014312512 ], [ -82.12032723852279, 28.790347800487403 ], [ -82.120461642143567, 28.790725775092881 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 453", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119892411696213, 28.789766838129292 ], [ -82.120006413655531, 28.789659647660095 ], [ -82.120088190850197, 28.789578711233037 ], [ -82.120130367454891, 28.789578674880417 ], [ -82.120341324240357, 28.789648423778534 ], [ -82.12041825907518, 28.789670210546941 ], [ -82.120696180405943, 28.789720230988543 ], [ -82.121046098061171, 28.789811712043772 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 455", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120461642143567, 28.790725775092881 ], [ -82.120456765492776, 28.790800086533949 ], [ -82.120429575368391, 28.790887531025948 ], [ -82.120387471719724, 28.790950949346318 ], [ -82.120318081835109, 28.791018760791641 ], [ -82.120268512084252, 28.791062516202636 ], [ -82.120201588938116, 28.791117212119467 ], [ -82.120139609938178, 28.791156606755759 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 455", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120139609938178, 28.791156606755759 ], [ -82.120023139138567, 28.791274727386998 ], [ -82.119899204627515, 28.791375368613668 ], [ -82.119713259233549, 28.791486993127851 ], [ -82.119574406856771, 28.791559238829851 ], [ -82.119395884958507, 28.791655558597576 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 457", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118944678455179, 28.789752370839448 ], [ -82.119289307695794, 28.789968026318402 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 455", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119547049980753, 28.789634600796894 ], [ -82.11962391124689, 28.789683751573673 ], [ -82.119689538537472, 28.7897168880497 ], [ -82.119801215233508, 28.789746292575106 ], [ -82.119892411696213, 28.789766838129292 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 455", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119133183130515, 28.788938808285828 ], [ -82.119077503119428, 28.789013415942051 ], [ -82.11904733021494, 28.789068763067611 ], [ -82.119031136399613, 28.789146635883078 ], [ -82.119030906419056, 28.789216845830396 ], [ -82.119058275164477, 28.789286758216367 ], [ -82.119102984344053, 28.789332615129588 ], [ -82.119261880879165, 28.789437380381305 ], [ -82.119547049980753, 28.789634600796894 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 455", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119133183130515, 28.788938808285828 ], [ -82.119198286635054, 28.788869886833353 ], [ -82.119265702257309, 28.788841141441544 ], [ -82.119328475653631, 28.788818547537023 ], [ -82.119461034816766, 28.788806138963594 ], [ -82.119742439467245, 28.788785401775442 ], [ -82.120126143261444, 28.788731791795048 ], [ -82.120398261576128, 28.78872540368334 ], [ -82.121105350868703, 28.788749361940887 ], [ -82.121505419647534, 28.788769495612268 ], [ -82.121575191113578, 28.788765334947321 ], [ -82.121621705869572, 28.788763245102224 ], [ -82.121679846767719, 28.788759095688331 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 457", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119395884958507, 28.791655558597576 ], [ -82.119435683178352, 28.791745128538135 ], [ -82.119559940112666, 28.791928601715011 ], [ -82.119616044526879, 28.792048926963147 ], [ -82.119672834551622, 28.7921333955513 ], [ -82.119801590455552, 28.792223562880064 ], [ -82.119945558362772, 28.792269535013055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 457", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120113545212263, 28.792342380052407 ], [ -82.120168117788651, 28.7923941948535 ], [ -82.120200847623863, 28.792411455099788 ], [ -82.120251013897473, 28.792424856073232 ], [ -82.120307723291646, 28.792436332023083 ], [ -82.120355703138259, 28.792442050813047 ], [ -82.120401498004313, 28.792445852305772 ], [ -82.120458195414173, 28.792447723104072 ], [ -82.120501802948539, 28.792445763441361 ], [ -82.120554133301056, 28.792441875010571 ], [ -82.120621721374206, 28.79243413188648 ], [ -82.120684946774361, 28.792424470679208 ], [ -82.120767789005853, 28.792407109744051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 457", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119945558362772, 28.792269535013055 ], [ -82.120113545212263, 28.792342380052407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120803724860465, 28.791419755698506 ], [ -82.120836393803003, 28.791383231798406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 440", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120836393803003, 28.791383231798406 ], [ -82.120819371054722, 28.791134148639625 ], [ -82.120816731231642, 28.790996463738942 ], [ -82.120809137285221, 28.790865339429377 ], [ -82.120799141277573, 28.79080196908086 ], [ -82.120789134230193, 28.79072985624893 ], [ -82.120779127196769, 28.790657743415448 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 440", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119945558362772, 28.792269535013055 ], [ -82.120040967244918, 28.791798841534568 ], [ -82.120056178768323, 28.791752728135545 ], [ -82.12007795552843, 28.791727737449737 ], [ -82.120119357798188, 28.79170272852123 ], [ -82.120258830887593, 28.791631533806672 ], [ -82.120572614598387, 28.791496989328042 ], [ -82.120803724860465, 28.791419755698506 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120836393803003, 28.791383231798406 ], [ -82.121126462017514, 28.791049581509824 ], [ -82.121167210666229, 28.791021354298373 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120113545212263, 28.792342380052407 ], [ -82.120385882468881, 28.792138527324315 ], [ -82.120420725049016, 28.792098159562922 ], [ -82.120451193973352, 28.792046269547903 ], [ -82.120803724860465, 28.791419755698506 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 457", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120767789005853, 28.792407109744051 ], [ -82.120833192915384, 28.792395527317151 ], [ -82.120957471702141, 28.792383889784354 ], [ -82.121062133652686, 28.792379956392647 ], [ -82.12119514760154, 28.792379837883438 ], [ -82.121456820492483, 28.792383444597569 ], [ -82.121709758311852, 28.7923774571357 ], [ -82.121827508090647, 28.792377351668122 ], [ -82.121897286685481, 28.792377289119518 ], [ -82.122021618753791, 28.792411753227935 ], [ -82.12212413884248, 28.792440473758475 ], [ -82.122255012264503, 28.792474931774702 ], [ -82.122383717215271, 28.792518995811626 ], [ -82.122532054845109, 28.792570724304436 ], [ -82.122680402599869, 28.792630138507146 ], [ -82.122852761347318, 28.792710658454162 ], [ -82.123110245523421, 28.792862173420129 ], [ -82.123153465105617, 28.792897991196376 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 457", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119841520800406, 28.790905817105241 ], [ -82.119752846860351, 28.790955226381207 ], [ -82.119553995872423, 28.791063145427302 ], [ -82.119452340106022, 28.791120057808055 ], [ -82.119315954008016, 28.791179185989478 ], [ -82.119290190852865, 28.791209796938215 ], [ -82.119274968193693, 28.79124630696904 ], [ -82.119278865698377, 28.791290681011318 ], [ -82.119395884958507, 28.791655558597576 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 457A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119841520800406, 28.790905817105241 ], [ -82.120139609938178, 28.791156606755759 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 457", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119289307695794, 28.789968026318402 ], [ -82.119450764525496, 28.790072319886018 ], [ -82.119646649283041, 28.79022478713825 ], [ -82.119808777464385, 28.790396339757173 ], [ -82.119860962670188, 28.79047278719176 ], [ -82.119928149400025, 28.790649754170499 ], [ -82.119933164333247, 28.790695643996255 ], [ -82.119935718804044, 28.790761209080287 ], [ -82.119910996639135, 28.790837724305955 ], [ -82.119882918431685, 28.790876968015322 ], [ -82.119841520800406, 28.790905817105241 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 440", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120779127196769, 28.790657743415448 ], [ -82.120761310467259, 28.790559248527163 ], [ -82.120758995554951, 28.79044399838785 ], [ -82.120767571949969, 28.790317214255683 ], [ -82.120798451861006, 28.790200952910556 ], [ -82.121046098061171, 28.789811712043772 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 444", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125059345515155, 28.792583790832239 ], [ -82.125037703098855, 28.79272019139087 ], [ -82.124989922285664, 28.792881587428827 ], [ -82.12491164699324, 28.793071824959 ], [ -82.124837713690425, 28.793246690297671 ], [ -82.124794218496632, 28.793342773982378 ], [ -82.124768095915002, 28.793381214739036 ], [ -82.124733227507562, 28.793400455129138 ], [ -82.124696178098219, 28.793417776491921 ], [ -82.124654752032669, 28.793419737313975 ], [ -82.124480239505715, 28.793364191298231 ], [ -82.124190118811427, 28.793278018032115 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 444", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125497086743437, 28.792054383363705 ], [ -82.125303200199028, 28.792272385460326 ], [ -82.125059345515155, 28.792583790832239 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125900819490042, 28.789094219053187 ], [ -82.126325379714302, 28.789688890289909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 442", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125900819490042, 28.789094219053187 ], [ -82.126785506442829, 28.788586965641969 ], [ -82.127605278500113, 28.788096717300274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 442", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123674104522976, 28.790405991943686 ], [ -82.124810236181119, 28.789725099230129 ], [ -82.125513113585995, 28.789294859968575 ], [ -82.125900819490042, 28.789094219053187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 441", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124921912682808, 28.787756025501846 ], [ -82.125764582251236, 28.787211825244629 ], [ -82.126569072104203, 28.786697190630104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125473677431089, 28.788503524377681 ], [ -82.127185103276474, 28.78751129002633 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123730243533259, 28.789510725567396 ], [ -82.124224058867753, 28.789228155929592 ], [ -82.124922186703017, 28.7888236931602 ], [ -82.125473677431089, 28.788503524377681 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124921912682808, 28.787756025501846 ], [ -82.12527571642984, 28.78823399439203 ], [ -82.12542942795136, 28.788442338885048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125473677431089, 28.788503524377681 ], [ -82.12570248246044, 28.788822152774198 ], [ -82.125900819490042, 28.789094219053187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123244227692098, 28.788844764194952 ], [ -82.123568589531288, 28.789284918544201 ], [ -82.123694423090882, 28.789454505380547 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 441", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123244227692098, 28.788844764194952 ], [ -82.123549280235295, 28.788660086486271 ], [ -82.124152813163917, 28.788269600163336 ], [ -82.124756336819587, 28.787873348985837 ], [ -82.124921912682808, 28.787756025501846 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 440", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125347557622533, 28.78630586381 ], [ -82.12596691104072, 28.785886088257737 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 440", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124375387299182, 28.787024678060241 ], [ -82.124810183821296, 28.786688134303354 ], [ -82.125026209184654, 28.786529459242789 ], [ -82.125347557622533, 28.78630586381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124375387299182, 28.787024678060241 ], [ -82.124821464248015, 28.787631261335779 ], [ -82.124921912682808, 28.787756025501846 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 440", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123648313490293, 28.78757999026379 ], [ -82.124241940058184, 28.787113640754605 ], [ -82.124375387299182, 28.787024678060241 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 439A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123646856070948, 28.786338633876383 ], [ -82.123636007572458, 28.786384264613471 ], [ -82.123648313490293, 28.78757999026379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 440", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12596691104072, 28.785886088257737 ], [ -82.126325227116169, 28.785637459498009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 439", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126325227116169, 28.785637459498009 ], [ -82.127016524382356, 28.785656121236702 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 440A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123646856070948, 28.786338633876383 ], [ -82.123693169288018, 28.786319384245669 ], [ -82.123764029800427, 28.786316918712021 ], [ -82.123892130949088, 28.786316802046457 ], [ -82.124837887382398, 28.786311134855978 ], [ -82.125347557622533, 28.78630586381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 439", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123594268283156, 28.785654375789157 ], [ -82.124809858289396, 28.785658067479556 ], [ -82.125551185926682, 28.785645378766223 ], [ -82.126325227116169, 28.785637459498009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 439A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123594268283156, 28.785654375789157 ], [ -82.123589053963272, 28.785856071541232 ], [ -82.123589268095813, 28.786038553041539 ], [ -82.123592086582789, 28.786117786069635 ], [ -82.123594874078904, 28.786170606660423 ], [ -82.123600399384756, 28.786233029868658 ], [ -82.123605902921256, 28.786278643933759 ], [ -82.123619575574239, 28.786317050125071 ], [ -82.123646856070948, 28.786338633876383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 439", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123212695823938, 28.785654722090246 ], [ -82.123594268283156, 28.785654375789157 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 11th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123212695823938, 28.785654722090246 ], [ -82.123200755339596, 28.787097779941146 ], [ -82.123201208583311, 28.787484353211671 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 439", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122523140015744, 28.785657747125125 ], [ -82.122817500453863, 28.785659880819011 ], [ -82.123212695823938, 28.785654722090246 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 10th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122523140015744, 28.785657747125125 ], [ -82.122524364458783, 28.786709417272565 ], [ -82.122522063505755, 28.787074381796092 ], [ -82.122522492648159, 28.787444147745948 ], [ -82.122520005278801, 28.787650643055237 ], [ -82.122517376749386, 28.78773228204847 ], [ -82.122481995610769, 28.787777933887021 ], [ -82.122411167569865, 28.78780921223191 ], [ -82.122163145888848, 28.787814237397196 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 452", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122099382688276, 28.786887478228312 ], [ -82.122143369101835, 28.787211585109031 ], [ -82.122140892127504, 28.787427683712682 ], [ -82.122163145888848, 28.787814237397196 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 452A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119152774052594, 28.787283481803499 ], [ -82.119426068484103, 28.787293235181345 ], [ -82.119532384584247, 28.787309947328492 ], [ -82.119641439897265, 28.787338664943981 ], [ -82.119750498679849, 28.787372183667738 ], [ -82.119843210088916, 28.787408118663635 ], [ -82.119927752110485, 28.787451263050777 ], [ -82.119974130095912, 28.787489639859981 ], [ -82.120012352681087, 28.78754483120694 ], [ -82.120050580442992, 28.787607224788278 ], [ -82.120091547824387, 28.787679221946796 ], [ -82.120132493016726, 28.78773440995101 ], [ -82.120178880444598, 28.78777998892939 ], [ -82.120247054860343, 28.78781114322511 ], [ -82.120328838901287, 28.787825477186136 ], [ -82.120399708750412, 28.787830216558241 ], [ -82.120472519155811, 28.787828318575535 ], [ -82.120557781844695, 28.787820472304954 ], [ -82.120715833918212, 28.787791520381553 ], [ -82.12087932771054, 28.787755357576849 ], [ -82.121132740693184, 28.787697505947754 ], [ -82.121674914693997, 28.78750973811529 ], [ -82.121743006110165, 28.787468859304425 ], [ -82.121892712935363, 28.787295846818079 ], [ -82.121971591536024, 28.787154112279588 ], [ -82.122039588010239, 28.787031596769911 ], [ -82.122099382688276, 28.786887478228312 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 452", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122162402180379, 28.785673633854231 ], [ -82.122076750150924, 28.786171978100501 ], [ -82.122099382688276, 28.786887478228312 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 439", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122313283154185, 28.785665138304498 ], [ -82.122523140015744, 28.785657747125125 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 439", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122162402180379, 28.785673633854231 ], [ -82.122313283154185, 28.785665138304498 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 439", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121484687133517, 28.785634667409049 ], [ -82.122162402180379, 28.785673633854231 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 439C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12151156689383, 28.784128567672081 ], [ -82.12078179791132, 28.784111209409431 ], [ -82.120740921241875, 28.78411664784738 ], [ -82.12070823846912, 28.784136485313152 ], [ -82.12066942780281, 28.784161731252116 ], [ -82.120653095686592, 28.784179754083755 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 439C West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12151156689383, 28.784128567672081 ], [ -82.121491952453297, 28.784844705011182 ], [ -82.121484687133517, 28.785634667409049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 439D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12151156689383, 28.784128567672081 ], [ -82.122098891589587, 28.784111833390316 ], [ -82.122150678031161, 28.784114187033548 ], [ -82.122197018112175, 28.784121349459554 ], [ -82.122237918719023, 28.784135719915003 ], [ -82.122270652066078, 28.784159701007074 ], [ -82.122287053220703, 28.784200505044463 ], [ -82.122300757545858, 28.784267722173563 ], [ -82.122300906328292, 28.784394979593579 ], [ -82.122313283154185, 28.785665138304498 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 439C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120653095686592, 28.784179754083755 ], [ -82.120647023476081, 28.784231982578316 ], [ -82.120645038939017, 28.784284208348463 ], [ -82.12064925793598, 28.784398856869245 ], [ -82.120652319947339, 28.784691785195591 ], [ -82.120653389807316, 28.785625802386672 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orange Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046280514203247, 28.860650251896718 ], [ -82.046261659142118, 28.860253383622069 ], [ -82.046252016111566, 28.859427232172091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023541450827494, 28.927298542453808 ], [ -82.023099481756233, 28.927294413439228 ], [ -82.02174491635914, 28.927290429793064 ], [ -82.020512189550317, 28.927282211610482 ], [ -82.020407650528199, 28.927282275800774 ], [ -82.020317757451025, 28.927282331443259 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048926842055593, 28.927401210512961 ], [ -82.048421459921087, 28.927403289613682 ], [ -82.047970964927728, 28.927404662651668 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042859144011359, 28.927407917426329 ], [ -82.042690112248536, 28.927407613139803 ], [ -82.04068143010079, 28.927405881918578 ], [ -82.040661009847952, 28.927405864545353 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033996690525939, 28.927399306766581 ], [ -82.03344410870676, 28.927391789676999 ], [ -82.033070469837142, 28.927392811638168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 467", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117462682369776, 28.776709727906489 ], [ -82.117021485541443, 28.775213186790044 ], [ -82.117010204400032, 28.775161283702587 ], [ -82.117001726653299, 28.775106904962776 ], [ -82.116996060530397, 28.775057466676731 ], [ -82.117007222611676, 28.775003071049351 ], [ -82.117032409816076, 28.7749437195849 ], [ -82.117066032535249, 28.774901665422988 ], [ -82.117113680345341, 28.774854654506068 ], [ -82.117141702775257, 28.774822492693701 ], [ -82.117172536807217, 28.774795274033718 ], [ -82.117214599776801, 28.774772988567069 ], [ -82.117259489828356, 28.774770477554156 ], [ -82.117318418733504, 28.774775370536609 ], [ -82.117722512571405, 28.774821991464655 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 106", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036360619809756, 28.926596259759791 ], [ -82.03526433622001, 28.926597125310217 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 108", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037253679836269, 28.925183543078408 ], [ -82.037095302444015, 28.925188622775451 ], [ -82.036371889920332, 28.92519341800935 ], [ -82.036165378688381, 28.92518939713279 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000402054391898, 28.952615070599361 ], [ -82.000391633542151, 28.952672098157418 ], [ -82.00039394996773, 28.952721997616592 ], [ -82.000400896179258, 28.952755602586361 ], [ -82.00040738177556, 28.952777709647847 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000543978912802, 28.952434493098291 ], [ -82.00052246635552, 28.952450101856154 ], [ -82.000494679548524, 28.952469449709344 ], [ -82.000473837902561, 28.952490834933254 ], [ -82.000454155487503, 28.952514256627389 ], [ -82.000439102835898, 28.952534622257126 ], [ -82.000426366604103, 28.952553971905356 ], [ -82.000415947819818, 28.952573319749014 ], [ -82.000408999568478, 28.952594704969414 ], [ -82.000402054391898, 28.952615070599361 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001031901274786, 28.9524877786783 ], [ -82.000994851640016, 28.952456211232057 ], [ -82.000967064703133, 28.952435844796756 ], [ -82.000943907566395, 28.952419551286557 ], [ -82.000918436066073, 28.952403257779711 ], [ -82.000887174563118, 28.952391038134039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Mccollum Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116677060488172, 28.664181098323844 ], [ -82.118783211101714, 28.66420654489443 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Mccollum Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116207503571104, 28.664176769916985 ], [ -82.116677060488172, 28.664181098323844 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054782884043931, 28.644689486545953 ], [ -82.054782533435599, 28.644014165591013 ], [ -82.054781985481213, 28.642960651990141 ], [ -82.054778850883878, 28.641846232436794 ], [ -82.054778312234632, 28.640808509387846 ], [ -82.054778040864306, 28.640711334144743 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Latta Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993698478755149, 28.895899599766459 ], [ -81.993843255988622, 28.89621326493867 ], [ -81.993927897547394, 28.896362256594163 ], [ -81.99401254150186, 28.896475961963727 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 92nd Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025731077526004, 28.625675930151857 ], [ -82.026126065471075, 28.625211848259678 ], [ -82.026208779490389, 28.625165289269169 ], [ -82.026262290097179, 28.625144503797941 ], [ -82.026327683746587, 28.625130067636679 ], [ -82.027365824900457, 28.625064955206224 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 92nd Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024514789193745, 28.621322153058991 ], [ -82.024387936464137, 28.621396860874295 ], [ -82.024190591144404, 28.621518151363926 ], [ -82.024043484408026, 28.6216419920137 ], [ -82.024006287251879, 28.621702842215139 ], [ -82.023986283414004, 28.621748467007468 ], [ -82.023979622715117, 28.621792616903015 ], [ -82.023986837360269, 28.621832601036889 ], [ -82.024004656099237, 28.621864724885981 ], [ -82.024034010666213, 28.621920880569476 ], [ -82.024064000076237, 28.621989395479581 ], [ -82.024073558733292, 28.622087965393032 ], [ -82.024061317976361, 28.62217932754233 ], [ -82.024036819715008, 28.622288723232693 ], [ -82.024004142973013, 28.622378886049276 ], [ -82.023976429103641, 28.622423959920472 ], [ -82.023941490037217, 28.62245943502878 ], [ -82.02384613957615, 28.622530376005582 ], [ -82.023735804574287, 28.622603722374308 ], [ -82.023676262466338, 28.62265800450978 ], [ -82.023621392133478, 28.62272755792603 ], [ -82.023576218460562, 28.622787526851493 ], [ -82.023516186761924, 28.622834630888601 ], [ -82.023440228266153, 28.622873041710218 ], [ -82.023344865406315, 28.622891088108783 ], [ -82.02323314751186, 28.622887500851153 ], [ -82.023121429799133, 28.622870691524543 ], [ -82.02301652356357, 28.622861090682868 ], [ -82.022894070535202, 28.62287005192762 ], [ -82.02281626009642, 28.622886367119662 ], [ -82.022737243528866, 28.622905613259565 ], [ -82.022595563361563, 28.622938092297545 ], [ -82.022462055166358, 28.622965763123837 ], [ -82.022279506068443, 28.623011470316403 ], [ -82.022167801198648, 28.623070391728035 ], [ -82.022094250516801, 28.623153347195117 ], [ -82.022058847983118, 28.623245913790221 ], [ -82.022056140663196, 28.623332467490599 ], [ -82.022075229390794, 28.623404589376065 ], [ -82.022107940564425, 28.62346468816056 ], [ -82.022162447544247, 28.623523583401084 ], [ -82.022223763260428, 28.623566849031967 ], [ -82.022298701188603, 28.623596889602677 ], [ -82.022349113648659, 28.623607700664326 ], [ -82.022424047817978, 28.623610092592561 ], [ -82.022565729970921, 28.623587229062565 ], [ -82.022712860027923, 28.623555951998139 ], [ -82.022869530682541, 28.623525874238098 ], [ -82.022983965554658, 28.623501813679802 ], [ -82.023058897590886, 28.623499397594472 ], [ -82.023148816841584, 28.623511403797298 ], [ -82.023226475404087, 28.623523412866916 ], [ -82.023364081257853, 28.623539014990619 ], [ -82.023523487098586, 28.623563031252512 ], [ -82.023602508466624, 28.623577443710143 ], [ -82.023677449647465, 28.623611089265175 ], [ -82.023781001383824, 28.623660357554012 ], [ -82.023937693541043, 28.623734860563726 ], [ -82.02403852270875, 28.623786534754597 ], [ -82.024093028389146, 28.623829799800362 ], [ -82.024146177769353, 28.623903119265478 ], [ -82.024230674556065, 28.624023314333851 ], [ -82.024365594425888, 28.624210817812067 ], [ -82.024480069072894, 28.624347837041956 ], [ -82.024579557224001, 28.62449567784109 ], [ -82.024694049981832, 28.624712034135221 ], [ -82.024744484338427, 28.624813001499859 ], [ -82.024763574993727, 28.624888731443892 ], [ -82.024754058818971, 28.624975283670668 ], [ -82.024733654081714, 28.625105113989978 ], [ -82.024666995149829, 28.625535478213383 ], [ -82.02463706320286, 28.625706179814884 ], [ -82.024589410499814, 28.625848034932282 ], [ -82.024534935869013, 28.625939405364672 ], [ -82.024491359550638, 28.626037984463441 ], [ -82.024487296021562, 28.626137758578739 ], [ -82.024518653798836, 28.626235122682619 ], [ -82.024573168211973, 28.626309642728646 ], [ -82.024649482100713, 28.626382958816247 ], [ -82.024738051513282, 28.626432228080233 ], [ -82.024838876581882, 28.626453848360764 ], [ -82.024913810214201, 28.626453835080945 ], [ -82.02500508775573, 28.626433383582768 ], [ -82.025096359263728, 28.626387687292464 ], [ -82.025165829058622, 28.626325166234292 ], [ -82.025277516677278, 28.626195319456702 ], [ -82.02539056639732, 28.626061866592188 ], [ -82.025500892403855, 28.625936829337991 ], [ -82.02561121698254, 28.625806980721269 ], [ -82.025731077526004, 28.625675930151857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029923948327763, 28.609920063325553 ], [ -82.027026054515062, 28.609909167833678 ], [ -82.025754625249661, 28.609911524214311 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031809209823876, 28.844421375455308 ], [ -82.031392003922235, 28.844282615127188 ], [ -82.030828243553628, 28.844096621709951 ], [ -82.030253915448327, 28.843907527918457 ], [ -82.029788815740815, 28.843752527974107 ], [ -82.02939771201639, 28.843625429860936 ], [ -82.028876240211318, 28.843454928994102 ], [ -82.028312489980905, 28.843265823792489 ], [ -82.027745216255042, 28.843079818158468 ], [ -82.027227274136294, 28.842909311086988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027227274136294, 28.842909311086988 ], [ -82.026751613815534, 28.84275119967343 ], [ -82.02616320694446, 28.842555886855468 ], [ -82.025729829413592, 28.842413276291737 ], [ -82.025282360686973, 28.842264463540822 ], [ -82.024746810026784, 28.842087744953087 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wonders Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04113190397608, 28.862298291423393 ], [ -82.040479857604808, 28.862066200102372 ], [ -82.039656077702716, 28.861784125348272 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bobwhite Crossing", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992901491329761, 28.816992769333371 ], [ -81.992670195804635, 28.816886562042328 ], [ -81.992610816257425, 28.816856053440304 ], [ -81.992546488341077, 28.816823364552306 ], [ -81.992506902143219, 28.816805930588973 ], [ -81.992449995485572, 28.816795032866505 ], [ -81.992388140634105, 28.816792849348467 ], [ -81.992311439753749, 28.816795024003017 ], [ -81.991386066151478, 28.816986720741298 ], [ -81.991242559120622, 28.81701503939081 ], [ -81.991173279701982, 28.817019392966404 ], [ -81.991113899032868, 28.817017209930999 ], [ -81.991056991962992, 28.816999773481733 ], [ -81.991022355350111, 28.816984518495566 ], [ -81.990980294620229, 28.816960546680338 ], [ -81.990943186340758, 28.816927857970299 ], [ -81.990908550123251, 28.816897348498113 ], [ -81.990877378995151, 28.816843743721961 ], [ -81.990535032913172, 28.815944219306154 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Legion Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041305417132307, 28.849071151729355 ], [ -82.041305401417659, 28.849028302158946 ], [ -82.041323190676678, 28.848214764781094 ], [ -82.041327722469902, 28.847891999749091 ], [ -82.041325031669956, 28.847384429374873 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orange Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046252016111566, 28.859427232172091 ], [ -82.046240000553325, 28.859139512302068 ], [ -82.046234987571324, 28.85906715554481 ], [ -82.046242116594613, 28.85828656011822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blythewood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99401254150186, 28.896475961963727 ], [ -81.994293717084403, 28.896314720036933 ], [ -81.994602891298896, 28.896117241422374 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buffalo Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020317757451025, 28.927282331443259 ], [ -82.020316102948215, 28.927001970525993 ], [ -82.020324962336943, 28.926405900353565 ], [ -82.020321238866359, 28.925930531124415 ], [ -82.020328314022251, 28.924788845758261 ], [ -82.020328231976677, 28.924359108575725 ], [ -82.020328198347855, 28.924182965146148 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00389887675307, 28.927260418734814 ], [ -82.004038172257765, 28.927262226996639 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968716942969948, 28.920159512655875 ], [ -81.96884565349238, 28.920160222990791 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968846337076471, 28.920036055451078 ], [ -81.968713624774324, 28.920036024513536 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99999393258976, 28.926747918705178 ], [ -81.999867316483375, 28.926703781786205 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004040898023277, 28.9271345927264 ], [ -82.00390950204357, 28.927132494632779 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wedgewood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00946260266619, 28.928600369371097 ], [ -82.009850471068091, 28.92860323495551 ], [ -82.010567965142926, 28.928611050523454 ], [ -82.010642818155048, 28.928598382115865 ], [ -82.010737825780936, 28.928562914752106 ], [ -82.010821313634423, 28.92851984997418 ], [ -82.011356784899576, 28.928223468110797 ], [ -82.011448911736053, 28.928195600508086 ], [ -82.011561193880766, 28.928182926746867 ], [ -82.012134122298107, 28.928185412265666 ], [ -82.012275001330735, 28.928192690603375 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015789775706565, 28.927375563595813 ], [ -82.015785443087125, 28.928089668462803 ], [ -82.0157890023021, 28.928223611966075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016198126180385, 28.929943313089804 ], [ -82.01620354422684, 28.930014665937815 ], [ -82.016203593758092, 28.930341736985859 ], [ -82.016210733733516, 28.930540562229741 ], [ -82.016232872255827, 28.930626349838636 ], [ -82.016261135116054, 28.930699195113483 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015789775706565, 28.927375563595813 ], [ -82.015941567541418, 28.927375546317595 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020317757451025, 28.927282331443259 ], [ -82.019071665363896, 28.927271082954544 ], [ -82.01714023470096, 28.927253726647503 ], [ -82.015942430414711, 28.927246842826733 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037265808053405, 28.927478614618234 ], [ -82.037428137242443, 28.927478361811836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037441469834263, 28.927404492693245 ], [ -82.037277362841394, 28.92740621583884 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wedgewood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030765795901189, 28.928441157647967 ], [ -82.032853082349959, 28.928449628122419 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leatherman Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030765795901189, 28.928441157647967 ], [ -82.030772551558158, 28.927474771226585 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 105", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034791329932986, 28.931073497118369 ], [ -82.034749215235664, 28.931048814737398 ], [ -82.03471880433662, 28.931042647159973 ], [ -82.034655640936606, 28.931036489685571 ], [ -82.03433282947644, 28.931038628348393 ], [ -82.033806508080502, 28.931057280854823 ], [ -82.033460304507571, 28.931063540374581 ], [ -82.033219363453924, 28.931065657221552 ], [ -82.033132811807903, 28.931065678207485 ], [ -82.033090708318042, 28.931065687493792 ], [ -82.03303924102228, 28.931057468298263 ], [ -82.033001809678296, 28.931045130333722 ], [ -82.0329479981106, 28.931018391172788 ], [ -82.032837987513474, 28.930968850069551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Village Campus Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02678035024465, 28.927437124679994 ], [ -82.026773210956165, 28.927522785450108 ], [ -82.026758933145032, 28.92767697330596 ], [ -82.026760359587996, 28.928078148714992 ], [ -82.026774635915544, 28.928246614324504 ], [ -82.026785763687002, 28.928293795864192 ], [ -82.026816037173376, 28.928353689709454 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016267499024707, 28.931486333727502 ], [ -82.01626851679724, 28.93167722396824 ], [ -82.016272442089473, 28.931886612707807 ], [ -82.016276550789669, 28.932101404359255 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wedgewood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013676990354909, 28.928214261285188 ], [ -82.014172486422538, 28.92821561599056 ], [ -82.0157890023021, 28.928223611966075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015791514067274, 28.927242896223415 ], [ -82.014348798188365, 28.927232290242436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971670433083759, 28.920039989709117 ], [ -81.970025544264615, 28.920038637186241 ], [ -81.968846337076471, 28.920036055451078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wedgewood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012275001330735, 28.928192690603375 ], [ -82.012476728627675, 28.928203111519657 ], [ -82.013277106142169, 28.928213169139152 ], [ -82.013676990354909, 28.928214261285188 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Preston Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012275001330735, 28.928192690603375 ], [ -82.012254817711622, 28.928886728749234 ], [ -82.012252597920835, 28.92901051209633 ], [ -82.012263769239027, 28.929055701669476 ], [ -82.012286107913766, 28.929093031277361 ], [ -82.01237098942488, 28.929193228218868 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Juneberry Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99596676497984, 28.885622182614703 ], [ -81.996092746452021, 28.885240917355286 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Juneberry Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996092746452021, 28.885240917355286 ], [ -81.996287608920596, 28.884679717958626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hydrangea Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995725050560054, 28.88406653190701 ], [ -81.99579253486786, 28.883876495028051 ], [ -81.995905012931416, 28.883448913376917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oakley Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996908228126614, 28.881136813594367 ], [ -81.996818271938849, 28.880867589842598 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Agnew Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998811021570191, 28.879723437291812 ], [ -81.998739052485703, 28.879632376250687 ], [ -81.99865358572724, 28.879572989424517 ], [ -81.998271242664572, 28.879367110004015 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oakley Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996818271938849, 28.880867589842598 ], [ -81.996629364783232, 28.880309348098262 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Circlewood Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99946441842377, 28.88898353771663 ], [ -81.999520649317546, 28.888393741060987 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jacaranda Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000968178090844, 28.890226641592147 ], [ -82.001007552698155, 28.889591304656086 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mangrove Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00867400013297, 28.892436290212508 ], [ -82.009062324551365, 28.892436266411917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Galahad Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00867400013297, 28.892436290212508 ], [ -82.008662780083412, 28.89186098165985 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Galahad Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008662780083412, 28.89186098165985 ], [ -82.008661825888808, 28.891579882748193 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abasco Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010068053705965, 28.892436199567801 ], [ -82.010170450786504, 28.89199610633078 ], [ -82.010171366590313, 28.891855965531168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mangrove Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009062324551365, 28.892436266411917 ], [ -82.010068053705965, 28.892436199567801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abasco Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009258001276763, 28.893841747626055 ], [ -82.009263216254496, 28.893555219269629 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avenida Los Angelos", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966132204745776, 28.920160255581045 ], [ -81.966131917393213, 28.92050496425033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 431B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13466051818547, 28.802870907581859 ], [ -82.134654825593273, 28.80290375276164 ], [ -82.134647703833451, 28.802942911009307 ], [ -82.134643443781812, 28.8029744888285 ], [ -82.134640620106111, 28.803008592590853 ], [ -82.134639234420575, 28.803046482820388 ], [ -82.134640302937271, 28.803109772418363 ], [ -82.134640382836238, 28.803172211216214 ], [ -82.134644391684702, 28.803227709167107 ], [ -82.134646408233237, 28.803264130672652 ], [ -82.134654329304624, 28.803298810281273 ], [ -82.134664221518207, 28.803335223977069 ], [ -82.134685934917314, 28.803376828662003 ], [ -82.134709623911391, 28.803423634096667 ], [ -82.13473922617105, 28.80347390303778 ], [ -82.134786563084049, 28.803534562504506 ], [ -82.134820077778187, 28.803565747319944 ], [ -82.134857535804485, 28.803600398491003 ], [ -82.134914720695818, 28.803662781466826 ], [ -82.134983733563104, 28.803735558087212 ], [ -82.135033031954393, 28.803791010094763 ], [ -82.13508627800249, 28.803851662674223 ], [ -82.135163138876777, 28.803901884499982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 439", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127016524382356, 28.785656121236702 ], [ -82.128657949092542, 28.785626579833799 ], [ -82.128915950672464, 28.785621648791899 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965369282732979, 28.872552327440019 ], [ -81.965390039341656, 28.872562992597924 ], [ -81.965415987016812, 28.872570611112199 ], [ -81.965443664017201, 28.872575188404618 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965499184497389, 28.872094007386963 ], [ -81.965452473424946, 28.872096661674775 ], [ -81.965408354948522, 28.872108069853066 ], [ -81.965364234430908, 28.872128615635724 ], [ -81.965322705579609, 28.872151446703928 ], [ -81.965288962395519, 28.872179988642252 ], [ -81.96526430160587, 28.872205108684383 ], [ -81.96524223364716, 28.872238222892818 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96524223364716, 28.872238222892818 ], [ -81.965228958339608, 28.872272989687399 ], [ -81.965226066920778, 28.872296337824352 ], [ -81.96522201920699, 28.872331869454332 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965626328050632, 28.872125384204253 ], [ -81.965596921810942, 28.872114715962677 ], [ -81.96556578522771, 28.872104049977573 ], [ -81.965534649180825, 28.872097950539384 ], [ -81.965499184497389, 28.872094007386963 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961216009656127, 28.879291977055985 ], [ -81.961139408769242, 28.878963949280092 ], [ -81.961076870618413, 28.878708966852223 ], [ -81.961031545944209, 28.878484310333661 ], [ -81.961014382018604, 28.878323058602312 ], [ -81.96099722798688, 28.878138378600379 ], [ -81.960997303174196, 28.877941297849492 ], [ -81.961006762426607, 28.87776627207726 ], [ -81.96102561757715, 28.87759262864758 ], [ -81.961060136360402, 28.877401070940593 ], [ -81.96111032226392, 28.877190223835505 ], [ -81.961194994306098, 28.876873267840285 ], [ -81.961296880832393, 28.876581122828693 ], [ -81.961331361762703, 28.876488793878359 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961455205583604, 28.880386694823457 ], [ -81.961455174925192, 28.880386434951816 ], [ -81.96143644362499, 28.880230579534462 ], [ -81.961367672602108, 28.879894284587579 ], [ -81.961310560461143, 28.87964777647629 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961297475211254, 28.883372785078656 ], [ -81.96132569648249, 28.883277698792121 ], [ -81.961419827738794, 28.882796742499796 ], [ -81.961488888706555, 28.882364014138048 ], [ -81.961520315693832, 28.882071848965335 ], [ -81.961523498812738, 28.88193403237187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960875808163877, 28.884542736178048 ], [ -81.961026266844527, 28.884194101965679 ], [ -81.961189291225338, 28.883739349764216 ], [ -81.961297475211254, 28.883372785078656 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allenwood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960875808163877, 28.884542736178048 ], [ -81.961182512056595, 28.884649321108771 ], [ -81.961334828760243, 28.88470127625488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Banberry Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960804047737582, 28.892106148883091 ], [ -81.960519352091765, 28.892103249346892 ], [ -81.960383021127285, 28.892103209168738 ], [ -81.960315442911977, 28.892099750536406 ], [ -81.960267785700466, 28.892096986224566 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Troy Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958157343728956, 28.895586024218161 ], [ -81.958415206984029, 28.895499472785392 ], [ -81.958621893963368, 28.895408435999279 ], [ -81.958828589942399, 28.895301584293406 ], [ -81.959004809973649, 28.895205380924466 ], [ -81.959217568137746, 28.895071716833449 ], [ -81.959472923621803, 28.894895437032503 ], [ -81.959722232167621, 28.894692338582704 ], [ -81.959922704320775, 28.894510541917363 ], [ -81.960091688308836, 28.894348231576316 ], [ -81.960183603848535, 28.894241679242615 ], [ -81.960256708400664, 28.894184736027778 ], [ -81.960330082466953, 28.894162760574932 ], [ -81.960417496128699, 28.894164569332695 ], [ -81.960492658531635, 28.894190318754305 ], [ -81.960565723706935, 28.894236279030657 ], [ -81.960632522236637, 28.894287750479844 ], [ -81.960718099026792, 28.894377816946633 ], [ -81.96079323178536, 28.894477068424177 ], [ -81.96083287861471, 28.894546905363917 ], [ -81.960864696993866, 28.894622890082577 ], [ -81.96088652650181, 28.894745969215109 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trenton Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957355008870863, 28.89688181017523 ], [ -81.957372005145388, 28.896806058524202 ], [ -81.957390824583868, 28.896739911522975 ], [ -81.95742842969868, 28.896692146706592 ], [ -81.957470205934669, 28.896659084364256 ], [ -81.957631027565654, 28.896569094777245 ], [ -81.958019118982037, 28.896392480648061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fort Lawn Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954091003727427, 28.899335299338183 ], [ -81.954091007836013, 28.899326017390301 ], [ -81.954091073268756, 28.899178193774056 ], [ -81.954088414475734, 28.899004586931515 ], [ -81.954085361911325, 28.898824134207153 ], [ -81.95408709366508, 28.898736255386083 ], [ -81.954104045094027, 28.898675193583951 ], [ -81.954119983191617, 28.89864255295036 ], [ -81.954147142486292, 28.898614997896157 ], [ -81.954210723963726, 28.898573947847623 ], [ -81.954324143387126, 28.898535260712713 ], [ -81.954496809393731, 28.898484676011396 ], [ -81.954662704499825, 28.898432602715104 ], [ -81.954870920897108, 28.898365646490532 ], [ -81.955046972958627, 28.89831059674238 ], [ -81.955158696106423, 28.898280843802706 ], [ -81.955258561701257, 28.898273428646579 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961053553945703, 28.893065278816163 ], [ -81.961019124874227, 28.893001872328743 ], [ -81.960980702897473, 28.892915188943558 ], [ -81.960911176416417, 28.892717936781615 ], [ -81.960895539551061, 28.892655914446674 ], [ -81.960851045340291, 28.892424595986579 ], [ -81.96085033927983, 28.892420924322145 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moncks Cor", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964421646498181, 28.89235339105047 ], [ -81.96467424547977, 28.89177919438584 ], [ -81.964683237288625, 28.891757883524157 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955436850981442, 28.89701285327563 ], [ -81.955497835434286, 28.89688679522834 ], [ -81.955549079566083, 28.896790766958315 ], [ -81.955604673303398, 28.896698933993143 ], [ -81.955697665987287, 28.896570624366714 ], [ -81.955760325290811, 28.896487731843028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Princeton Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958942336376623, 28.896116714080875 ], [ -81.958992268572445, 28.896028677556021 ], [ -81.959103513916475, 28.895924976843688 ], [ -81.959223648040904, 28.895840852321168 ], [ -81.959399736984722, 28.895740417521875 ], [ -81.959509144211339, 28.895676164447067 ], [ -81.959660948354738, 28.895579952856011 ], [ -81.959861596430244, 28.895446284114502 ], [ -81.960031775725369, 28.895312605097018 ], [ -81.960238492701322, 28.895141465996954 ], [ -81.960427043550013, 28.894970321218501 ], [ -81.960542509853312, 28.894879421468559 ], [ -81.960626050875334, 28.8948316683421 ], [ -81.960749200774544, 28.894783400715085 ], [ -81.96088652650181, 28.894745969215109 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moncks Cor", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964945365992918, 28.891139495950757 ], [ -81.964997557185086, 28.891016436743058 ], [ -81.965139656545844, 28.890704323906583 ], [ -81.965177077067139, 28.890651920813017 ], [ -81.965226208081475, 28.890621153392779 ], [ -81.965276935061965, 28.890606700857788 ], [ -81.965328754348008, 28.890600209580814 ], [ -81.965391080948507, 28.890601829967633 ], [ -81.965533057187301, 28.890626366685773 ], [ -81.965794737495983, 28.890670536309113 ], [ -81.966085355194863, 28.890746164223344 ], [ -81.966353294530307, 28.890843176652858 ], [ -81.966585309584858, 28.890937795724795 ], [ -81.9666662586679, 28.891008660871652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984471631407914, 28.883335656951651 ], [ -81.984595023648239, 28.88341439885146 ], [ -81.984897438613586, 28.883589280478095 ], [ -81.985170211166647, 28.883719795585119 ], [ -81.985457809955989, 28.883842481585919 ], [ -81.985733551756155, 28.883944287354346 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Darlington Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986451088647485, 28.884116600727157 ], [ -81.986492626954259, 28.883915659756905 ], [ -81.986549384904635, 28.883709570872316 ], [ -81.986554464320903, 28.883697538295532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991108350709297, 28.8853975560172 ], [ -81.991117139510024, 28.88540202570438 ], [ -81.99146500031712, 28.885581037154175 ], [ -81.991698729646203, 28.885721089151474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dorchester Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99132986170909, 28.884992257969131 ], [ -81.991355345037761, 28.88492600547017 ], [ -81.991404289824175, 28.884782214341747 ], [ -81.991489660935642, 28.884509604003171 ], [ -81.991521894628534, 28.884399941289491 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Marino Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960034003018791, 28.927494856455631 ], [ -81.960050213560024, 28.927509644492492 ], [ -81.960127882025176, 28.927569563777521 ], [ -81.960186000064596, 28.927639914963137 ], [ -81.96022958946287, 28.927687883990146 ], [ -81.960261320180933, 28.927739427990563 ], [ -81.9602865159478, 28.927779355703578 ], [ -81.960309190550362, 28.927817065725939 ], [ -81.960334385152947, 28.927854776489973 ], [ -81.96035201521903, 28.927899137634242 ], [ -81.960379724249577, 28.927956808804474 ], [ -81.960409950751966, 28.928021134236563 ], [ -81.960430096624549, 28.9280765871246 ], [ -81.960443824403683, 28.928141924563274 ], [ -81.960453679463697, 28.928193656953709 ], [ -81.960462820190699, 28.928235959245942 ], [ -81.960478831933614, 28.928280278388304 ], [ -81.960499420347958, 28.928326612799925 ], [ -81.960529166972663, 28.928374963827832 ], [ -81.96057264900162, 28.928431375482671 ], [ -81.960645882140042, 28.928522039764616 ], [ -81.960786378753596, 28.928648672038893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Juanita Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964904332488032, 28.938212886381994 ], [ -81.964305511808078, 28.938266246785009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rialto Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963492763550832, 28.935167491431283 ], [ -81.963500297124256, 28.935188496186669 ], [ -81.963510343436838, 28.935207291005192 ], [ -81.963531697635105, 28.935230511947882 ], [ -81.96355682570703, 28.93524710114902 ], [ -81.963599542433002, 28.935275853540233 ], [ -81.963649795551049, 28.935309031911466 ], [ -81.963691256860869, 28.935337785737261 ], [ -81.963736482516211, 28.935375383052431 ], [ -81.963777939750912, 28.935412978431021 ], [ -81.963820019551321, 28.93545077246954 ], [ -81.963861903795788, 28.93548763978583 ], [ -81.963924924282708, 28.935540883105904 ], [ -81.963982898242335, 28.935600285903934 ], [ -81.964025425878134, 28.935630821943473 ], [ -81.964074009699289, 28.935651468645194 ], [ -81.964125949143508, 28.935658853406146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 19th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136619385863526, 28.657727507125298 ], [ -82.136618718259385, 28.657652023987076 ], [ -82.136602607633264, 28.65754736944465 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133137005049065, 28.657715992823842 ], [ -82.133734255686051, 28.657718896683434 ], [ -82.134920846228013, 28.657724704331297 ], [ -82.135868138376352, 28.657728996998841 ], [ -82.13639221305246, 28.657728473632279 ], [ -82.136619385863526, 28.657727507125298 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136619385863526, 28.657727507125298 ], [ -82.137246560518321, 28.657734592934474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042390335294016, 28.55920890849082 ], [ -82.042366106677562, 28.55921630432864 ], [ -82.040519940933478, 28.559784135512686 ], [ -82.038892617077153, 28.5602864267853 ], [ -82.038200733875215, 28.560495451101001 ], [ -82.035810895058461, 28.561237915008238 ], [ -82.034169402527624, 28.561740150510008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046326589297223, 28.557859175219662 ], [ -82.046046289304456, 28.557984741233248 ], [ -82.045812531508304, 28.558102269380775 ], [ -82.045687588329628, 28.558152137465083 ], [ -82.045510248532153, 28.558223378553745 ], [ -82.045054796190712, 28.558383686295095 ], [ -82.044603363857135, 28.558523824639444 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 36th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044603363857135, 28.558523824639444 ], [ -82.044533404620324, 28.558319792061511 ], [ -82.044501068640784, 28.558115747343713 ], [ -82.044501010813349, 28.557978128493353 ], [ -82.044517091483314, 28.557873723480942 ], [ -82.044495578141849, 28.557840511369061 ], [ -82.044490184333952, 28.557797804980616 ], [ -82.04449552528186, 28.55771712975594 ], [ -82.044532996522918, 28.557351717340044 ], [ -82.044522167086058, 28.557161901113965 ], [ -82.044495239206057, 28.557033782687284 ], [ -82.044430709711364, 28.556957877163388 ], [ -82.044323173034016, 28.556858256348313 ], [ -82.044274769103438, 28.55678709012685 ], [ -82.04426934472346, 28.556668454758938 ], [ -82.044301563658337, 28.556597261821938 ], [ -82.044323036966674, 28.556535564118242 ], [ -82.044333758713407, 28.556469124408043 ], [ -82.044333713026134, 28.55635997911245 ], [ -82.044312078940038, 28.556037294648146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 738H", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116839226246327, 28.598678535566584 ], [ -82.116856111565141, 28.597913670995098 ], [ -82.11685556476391, 28.596507947320728 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 118th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996947220720955, 28.928703979865102 ], [ -81.996623907275691, 28.928704288429017 ], [ -81.99629028406747, 28.928704542684034 ], [ -81.996269665499995, 28.928706229379536 ], [ -81.996253839694688, 28.928709603503723 ], [ -81.996234658875323, 28.928716353014497 ], [ -81.996214998909124, 28.928727320738798 ], [ -81.996203969811972, 28.928736179148764 ], [ -81.996191021615232, 28.928747990713454 ], [ -81.996182868333094, 28.928758957870791 ], [ -81.996176156061438, 28.928770347344628 ], [ -81.996169442643094, 28.928784690030412 ], [ -81.996165605812052, 28.928807470164525 ], [ -81.996165595911762, 28.92905171968054 ], [ -81.996165938870917, 28.929067322179712 ], [ -81.996165590149644, 28.929168571422014 ], [ -81.996166548241064, 28.929215818334267 ], [ -81.996170177266649, 28.929259491334381 ], [ -81.996176614625071, 28.929300610019929 ], [ -81.996181887574494, 28.929323811794902 ], [ -81.996189079090982, 28.929357559652484 ], [ -81.996197350746399, 28.929388196427691 ], [ -81.99620969607264, 28.929424212806136 ], [ -81.996223241414157, 28.929460333884755 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 118th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996223241414157, 28.929460333884755 ], [ -81.996232711472686, 28.929480318195782 ], [ -81.996250561935739, 28.929530950108131 ], [ -81.996270107151744, 28.929598437842575 ], [ -81.996279217344579, 28.929641465855195 ], [ -81.996458525193233, 28.930531640066032 ], [ -81.996342610461014, 28.930549403003912 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 62nd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998122287474942, 28.929460669495796 ], [ -81.997213269961932, 28.929459821545123 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 64th Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997213269961932, 28.929459821545123 ], [ -81.99721125366365, 28.929589940583622 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 64th Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99721125366365, 28.929589940583622 ], [ -81.997207416185049, 28.929606813418374 ], [ -81.997200385854356, 28.929623561665721 ], [ -81.997182479324891, 28.929646185417223 ], [ -81.997163938174069, 28.929660246371171 ], [ -81.997147954127513, 28.929669246406633 ], [ -81.997126854052908, 28.929680494843886 ], [ -81.997115985000576, 28.929687243764889 ], [ -81.997100000608199, 28.929706928773623 ], [ -81.997090410148431, 28.929726052699518 ], [ -81.997087212545836, 28.929746301933548 ], [ -81.99708657304646, 28.929762613610244 ], [ -81.997097766155875, 28.929822620101643 ], [ -81.99725214215276, 28.930581563777466 ], [ -81.997263651381857, 28.930606313077021 ], [ -81.997272601977386, 28.930618124312154 ], [ -81.997295618334675, 28.930635562560092 ], [ -81.997318635974281, 28.930644561638868 ], [ -81.997335257704435, 28.930649623865708 ], [ -81.997363391598682, 28.93065018658632 ], [ -81.997530905805789, 28.930650189982565 ], [ -81.99755200477702, 28.930647377942027 ], [ -81.997571185820036, 28.93064231734186 ], [ -81.997586529965972, 28.930633317245206 ], [ -81.997598038103845, 28.930625443137529 ], [ -81.997609548426524, 28.93061250715385 ], [ -81.997616582684358, 28.930602381733113 ], [ -81.9976223369152, 28.930592258092325 ], [ -81.997628091353931, 28.93057425922029 ], [ -81.997630010828701, 28.930556823307619 ], [ -81.997629374098622, 28.930433081652545 ], [ -81.997622340795843, 28.930407771241057 ], [ -81.99758589784841, 28.930340274363644 ], [ -81.997445065959482, 28.930074923743419 ], [ -81.997219562738024, 28.929648436560839 ], [ -81.997213170431053, 28.929629312274674 ], [ -81.99721125366365, 28.929589940583622 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 62nd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997213269961932, 28.929459821545123 ], [ -81.99694911878872, 28.929461129214374 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 64th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996947220720955, 28.928703979865102 ], [ -81.99694911878872, 28.929461129214374 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 64th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996791837427224, 28.928063291336883 ], [ -81.99679183393026, 28.928164536093337 ], [ -81.996798864907234, 28.928187596231883 ], [ -81.99694183275092, 28.928526170720559 ], [ -81.996946147163257, 28.928540092338192 ], [ -81.996947220720955, 28.928703979865102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 118th Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996791837427224, 28.928063291336883 ], [ -81.996217699322997, 28.928063839617316 ], [ -81.99619532202702, 28.928062713795313 ], [ -81.996175942832423, 28.928057509683693 ], [ -81.996155043840531, 28.928047526065381 ], [ -81.996137141951692, 28.928032901126457 ], [ -81.996122437252382, 28.928011527112087 ], [ -81.996114765183364, 28.927994090925317 ], [ -81.996112850080138, 28.927974965815 ], [ -81.996113495882327, 28.927808478803019 ], [ -81.996116053365014, 28.927794415704202 ], [ -81.996124365747846, 28.927778667290834 ], [ -81.996135235010073, 28.927763481985966 ], [ -81.996144826077796, 28.927754480974592 ], [ -81.996162090022494, 28.927742671345889 ], [ -81.996195335360696, 28.92773142251378 ], [ -81.996236254054182, 28.927730862489479 ], [ -81.996518206876971, 28.927729744379185 ], [ -81.996546337867159, 28.927731993660565 ], [ -81.996562961230481, 28.927734807464685 ], [ -81.996600042373942, 28.927752245313108 ], [ -81.996651189754246, 28.927779244242235 ], [ -81.99666909074638, 28.927791057560928 ], [ -81.996685072561107, 28.927809056964669 ], [ -81.996778413633137, 28.927952486421329 ], [ -81.996786085926558, 28.927966548888019 ], [ -81.99679056005624, 28.927987358638656 ], [ -81.996792477335021, 28.928006482837116 ], [ -81.996791837427224, 28.928063291336883 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 62nd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999887386201735, 28.926847129522571 ], [ -81.999738755787348, 28.927163256473673 ], [ -81.999564275430942, 28.927487606651361 ], [ -81.999342819633256, 28.927943933246354 ], [ -81.999291370013808, 28.928006567556217 ], [ -81.999177287590356, 28.928084858927292 ], [ -81.999139259186734, 28.928156439534934 ], [ -81.999114652681158, 28.92827499463511 ], [ -81.999125837985432, 28.92838460375447 ], [ -81.999179522874172, 28.928487501017631 ], [ -81.999226498471643, 28.928559082247894 ], [ -81.999266761577772, 28.928700006612921 ], [ -81.999271235248486, 28.928811852457802 ], [ -81.999246628688837, 28.928934882052641 ], [ -81.999197415941978, 28.929044488920258 ], [ -81.999141492523663, 28.929133965510342 ], [ -81.999052016724292, 28.929243572908327 ], [ -81.99889512701067, 28.929342522611922 ], [ -81.998802679402559, 28.929389186602929 ], [ -81.998656080471434, 28.929435199374748 ], [ -81.998543818594214, 28.929455773097217 ], [ -81.998440915017241, 28.929459886276135 ], [ -81.998122287474942, 28.929460669495796 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 63rd Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998828314712171, 28.926308109769742 ], [ -81.998238175957312, 28.927070487268029 ], [ -81.998211856299747, 28.927120350442408 ], [ -81.998176051457847, 28.927225530499467 ], [ -81.998153032742977, 28.927298088245671 ], [ -81.997831429759472, 28.927737366464047 ], [ -81.997520066951523, 28.927736235520431 ], [ -81.997500886470633, 28.927740172757886 ], [ -81.997480426983984, 28.927745515743229 ], [ -81.997334653557985, 28.927819758122791 ], [ -81.997045024077678, 28.927966555158019 ], [ -81.996871843561891, 28.928053831854829 ], [ -81.996858330631511, 28.92805879504931 ], [ -81.996844902881776, 28.928062170204708 ], [ -81.996826361364285, 28.92806385703706 ], [ -81.996791837427224, 28.928063291336883 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 125th Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020846042850835, 28.941485448172056 ], [ -82.021878682961145, 28.941486917747358 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 125th Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01634100947696, 28.941333000966594 ], [ -82.017266556418733, 28.941329816629285 ], [ -82.017459544975736, 28.941355964388308 ], [ -82.01770482699348, 28.941436896060029 ], [ -82.017904040243621, 28.941475493130817 ], [ -82.019691430183286, 28.941490840125518 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 125th Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019691430183286, 28.941490840125518 ], [ -82.020846042850835, 28.941485448172056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 125th Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021878682961145, 28.941486917747358 ], [ -82.022488028248432, 28.94148778328622 ], [ -82.022635635838782, 28.941467780528352 ], [ -82.022771876318103, 28.94138785278183 ], [ -82.022851340432808, 28.94129794594572 ], [ -82.022874033737779, 28.941228026180362 ], [ -82.022896722703763, 28.94113812963835 ], [ -82.022907619982306, 28.939120540228338 ], [ -82.022884883175266, 28.939000687845503 ], [ -82.022794018788503, 28.938880846748813 ], [ -82.022703171610402, 28.93883092251064 ], [ -82.022578261833601, 28.938790992187574 ], [ -82.022464707085305, 28.938751058994935 ], [ -82.02223761871906, 28.938761086024666 ], [ -82.021878066211556, 28.93876064278977 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 125th Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021878066211556, 28.93876064278977 ], [ -82.020845466463186, 28.938759367144687 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 125th Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020845466463186, 28.938759367144687 ], [ -82.019684175382409, 28.938746747501593 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95575029747198, 28.948145736932826 ], [ -81.955760240470781, 28.948113098884509 ], [ -81.955767115859345, 28.948083709880258 ], [ -81.955770549559745, 28.948035156853123 ], [ -81.955765436156, 28.947971895442741 ], [ -81.955756366301969, 28.94793461513898 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955756366301969, 28.94793461513898 ], [ -81.955727031940967, 28.947881117555934 ], [ -81.9557042960312, 28.947846139895134 ], [ -81.955674488415909, 28.947812729880731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955505825487606, 28.948339960155995 ], [ -81.95556750723334, 28.948312980420706 ], [ -81.955622745668563, 28.948283628201651 ], [ -81.955662571449707, 28.948255398727586 ], [ -81.955694692591351, 28.948223780391508 ], [ -81.955726819029934, 28.948179736580535 ], [ -81.95575029747198, 28.948145736932826 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955270714156796, 28.94833060994441 ], [ -81.955305496720428, 28.948341134156035 ], [ -81.955342737778992, 28.948347924589616 ], [ -81.955378676125818, 28.948352115977105 ], [ -81.955421079434032, 28.948353598116796 ], [ -81.955464747097849, 28.94834909395324 ], [ -81.955505825487606, 28.948339960155995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016318555174692, 28.95652404957513 ], [ -82.016318329901893, 28.956533572384128 ], [ -82.016315860245498, 28.957055817058865 ], [ -82.01631095781498, 28.958342378347382 ], [ -82.016306103502188, 28.959924801463576 ], [ -82.01630611034355, 28.959969629076774 ], [ -82.016308665298951, 28.960012216001655 ], [ -82.016314996674865, 28.960040715014827 ], [ -82.016321207263402, 28.960050840693533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valparaiso Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994322459508197, 28.951112018496115 ], [ -81.994232112033842, 28.951332933567549 ], [ -81.994141767151348, 28.951538460879892 ], [ -81.994077038416066, 28.951701069055996 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979430249621885, 28.94808616279299 ], [ -81.979537531220075, 28.94799397942554 ], [ -81.979924557711385, 28.947672564006247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971817738930639, 28.951949712008076 ], [ -81.971451858918996, 28.951949603708403 ], [ -81.971097444036204, 28.951949527570495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "De Hoyos Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972921979532714, 28.943588567040944 ], [ -81.973687027866447, 28.942937014175769 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "De Hoyos Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973687027866447, 28.942937014175769 ], [ -81.974202375286453, 28.942502124449256 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973566619455227, 28.934304729982294 ], [ -81.973906669612262, 28.934124667223621 ], [ -81.973922862985063, 28.934113779688825 ], [ -81.973938103872214, 28.934105404856442 ], [ -81.973954297416583, 28.934097866634836 ], [ -81.973971441388358, 28.934087816608571 ], [ -81.973986683293276, 28.934079442673116 ], [ -81.974001920881648, 28.934071905162064 ], [ -81.974017161121949, 28.934066042308277 ], [ -81.974028591927478, 28.934060179615177 ], [ -81.974044784220894, 28.934053480516226 ], [ -81.974060977326857, 28.93404761874471 ], [ -81.974077168168392, 28.934042595202353 ], [ -81.974091456343743, 28.934037571289391 ], [ -81.974110505373076, 28.934034223857594 ], [ -81.97412860153014, 28.934030877141073 ], [ -81.974308610756253, 28.934003262842815 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976741238009225, 28.935086188198781 ], [ -81.976560269315414, 28.935285618654074 ], [ -81.976274288711977, 28.935600980480462 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Leonardo Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973566619455227, 28.934304729982294 ], [ -81.973592180143896, 28.934343542715066 ], [ -81.97361653097505, 28.934376607588728 ], [ -81.973629052726494, 28.934392528336545 ], [ -81.973642969118828, 28.934409672869261 ], [ -81.973665925343923, 28.9344415130453 ], [ -81.973688188836732, 28.934470902449412 ], [ -81.973704884356067, 28.934494171394384 ], [ -81.973716016468714, 28.934509477398088 ], [ -81.973732713094705, 28.934528459539102 ], [ -81.97375567448006, 28.934552341463903 ], [ -81.973777243197304, 28.93457132455541 ], [ -81.973798116185804, 28.934591531018285 ], [ -81.973821774115592, 28.934611127169838 ], [ -81.973843345686646, 28.934627048766369 ], [ -81.973870481071003, 28.934645421176008 ], [ -81.973899010953176, 28.934665629119095 ], [ -81.973926844549837, 28.934685226067035 ], [ -81.973954677441171, 28.934703598595611 ], [ -81.973975551632705, 28.934715234136725 ], [ -81.974003387520398, 28.934729932513104 ], [ -81.974032614422484, 28.934744019398284 ], [ -81.974068102473538, 28.934761168074036 ], [ -81.974109855835223, 28.934777093540319 ], [ -81.975537438241659, 28.935309886594155 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Leonardo Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975537438241659, 28.935309886594155 ], [ -81.976200358202036, 28.935562705544516 ], [ -81.976274288711977, 28.935600980480462 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Salvador Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975537438241659, 28.935309886594155 ], [ -81.97549817003609, 28.935383073513115 ], [ -81.975474827425103, 28.935424121816624 ], [ -81.975461094886796, 28.935447060127789 ], [ -81.975447882834459, 28.935472377883066 ], [ -81.975435985091124, 28.935491807506164 ], [ -81.975425784178483, 28.935514225838745 ], [ -81.975413885711703, 28.935536642955892 ], [ -81.975397930041751, 28.935556922692346 ], [ -81.975378708025133, 28.935583482695446 ], [ -81.975362232694522, 28.93560642049065 ], [ -81.975343011082131, 28.93562694323774 ], [ -81.975325163178837, 28.935646259868221 ], [ -81.975303412177666, 28.935666658528206 ], [ -81.975285349412317, 28.935683681481628 ], [ -81.975264757556388, 28.935699373982853 ], [ -81.975244161004099, 28.935717505381334 ], [ -81.97522364126975, 28.935736065380585 ], [ -81.975198860944303, 28.935753695223106 ], [ -81.975174149509471, 28.935770595117777 ], [ -81.975149442311746, 28.935782663223065 ], [ -81.975115123012785, 28.935799561320135 ], [ -81.975091785419849, 28.935810424204703 ], [ -81.975068449873476, 28.935821287085584 ], [ -81.975043739281134, 28.935834563342709 ], [ -81.975016285925733, 28.93584783998492 ], [ -81.974992949337675, 28.935858701950146 ], [ -81.974950394679652, 28.935879221175249 ], [ -81.974917449041882, 28.935894911307106 ], [ -81.974887248639874, 28.935913016485937 ], [ -81.974847439480072, 28.935934741659128 ], [ -81.974814491600185, 28.935955263550639 ], [ -81.974770563870166, 28.935978195194501 ], [ -81.974730754067522, 28.936002336676687 ], [ -81.974692313576327, 28.936026475699336 ], [ -81.974653875979371, 28.936055446496812 ], [ -81.974620928155304, 28.936079590149394 ], [ -81.974587978992659, 28.936104938356277 ], [ -81.974561896422344, 28.936124253318379 ], [ -81.974533194832361, 28.936149152977379 ], [ -81.974499775912676, 28.936174242114475 ], [ -81.974466746578514, 28.936200018865708 ], [ -81.974434304878017, 28.936226140397515 ], [ -81.974405391040094, 28.936254623900631 ], [ -81.974373813276557, 28.936283596832514 ], [ -81.974346355078808, 28.936311361473297 ], [ -81.974316152045333, 28.936339126483315 ], [ -81.974290067253961, 28.936366892278524 ], [ -81.97425711580496, 28.936400693094228 ], [ -81.974229656519455, 28.936428458612752 ], [ -81.974196103617913, 28.936463623565984 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Salvador Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974196103617913, 28.936463623565984 ], [ -81.974125306723906, 28.936568497964885 ], [ -81.974107457522962, 28.936591436239251 ], [ -81.974082740011852, 28.936622824066479 ], [ -81.974059398394274, 28.936656627597262 ], [ -81.974040174616292, 28.936688016482176 ], [ -81.9740144203044, 28.936726548459646 ], [ -81.973998833947419, 28.93675699875708 ], [ -81.973977008442176, 28.936794256549469 ], [ -81.97395915580833, 28.936830475669193 ], [ -81.973942676802608, 28.936861865976173 ], [ -81.973926198399369, 28.936890839937615 ], [ -81.973906972593682, 28.936925851512612 ], [ -81.973893191144782, 28.936965587657262 ], [ -81.973887992107365, 28.936988426411393 ], [ -81.973884524237533, 28.937008221163293 ], [ -81.973881057526654, 28.937023445795898 ], [ -81.973879324928063, 28.937040195644119 ], [ -81.97387758720005, 28.937056946393568 ], [ -81.973874122537751, 28.93707217192858 ], [ -81.973874117897608, 28.937090444284319 ], [ -81.973874112231755, 28.937108716639784 ], [ -81.973872378991913, 28.93712394251294 ], [ -81.973870641900731, 28.937142214529963 ], [ -81.973870638033389, 28.937157441643294 ], [ -81.973870635191545, 28.937172669659084 ], [ -81.9738688987388, 28.937192462041516 ], [ -81.97387222123902, 28.937211975701427 ], [ -81.973874575012715, 28.937249386173796 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972650703669387, 28.938580537496918 ], [ -81.972434515362153, 28.937895863195529 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Puerto Bello Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969089975375596, 28.93948577792068 ], [ -81.969136350499298, 28.939485787721456 ], [ -81.969189087214673, 28.93948613913572 ], [ -81.969237912053387, 28.939475074712735 ], [ -81.96930868806389, 28.93944278614206 ], [ -81.969393796393064, 28.939404983286721 ], [ -81.969432320326064, 28.939384505513424 ], [ -81.969453821914954, 28.939371114970793 ], [ -81.969476221119933, 28.93936087634135 ], [ -81.969497721766118, 28.939350636601073 ], [ -81.969514743062817, 28.939343550255792 ], [ -81.969532962181162, 28.939337306021081 ], [ -81.969550577165293, 28.939330949762027 ], [ -81.969564911790741, 28.939324651403723 ], [ -81.969579245157078, 28.939319138039117 ], [ -81.969589996148429, 28.93931520016606 ], [ -81.969598955952222, 28.939312050489935 ], [ -81.969609704890345, 28.939308113517125 ], [ -81.969620454156754, 28.939306540553051 ], [ -81.969630309203595, 28.939304179682775 ], [ -81.969640163224781, 28.939301817006964 ], [ -81.969651807967352, 28.939300243341247 ], [ -81.969663453271451, 28.939300245981777 ], [ -81.969677786032349, 28.9393002492303 ], [ -81.969691221496049, 28.939299465473958 ], [ -81.969701075846061, 28.939299467705588 ], [ -81.969717198866647, 28.939301834462505 ], [ -81.969733322682174, 28.939304989822372 ], [ -81.9697458617443, 28.939307356667456 ], [ -81.969758401832735, 28.93930972351162 ], [ -81.969772733208785, 28.939314453866494 ], [ -81.969786167390055, 28.93932154892909 ], [ -81.969796019331582, 28.939326277367684 ], [ -81.969807663022792, 28.939331796619161 ], [ -81.969814827508017, 28.939336526254561 ], [ -81.969821992224794, 28.939340467284918 ], [ -81.96983005354825, 28.939347561131289 ], [ -81.969838114078073, 28.93935386546999 ], [ -81.969850650048386, 28.939363324333172 ], [ -81.969861397912354, 28.939373571397141 ], [ -81.96986945626881, 28.939383815147792 ], [ -81.969878409077864, 28.939394062708455 ], [ -81.969886469488785, 28.9394043073608 ], [ -81.969923177768152, 28.93946814026404 ], [ -81.970100258946076, 28.939747312620909 ], [ -81.970149016146379, 28.939891953058869 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Puerto Bello Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96771092848013, 28.940018431785013 ], [ -81.967916721048525, 28.939874432798728 ], [ -81.968494891115967, 28.939496596615957 ], [ -81.968547382498684, 28.939480726788052 ], [ -81.969089975375596, 28.93948577792068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aalto Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960435133061324, 28.930622655714117 ], [ -81.960682286872597, 28.930800428184842 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aalto Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959882171613643, 28.930232681039595 ], [ -81.960435133061324, 28.930622655714117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Sumter Lndg", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969877052147311, 28.909326793517842 ], [ -81.969905190064665, 28.909286335398388 ], [ -81.969933411108798, 28.909263177948468 ], [ -81.969955491110866, 28.909245683740462 ], [ -81.969986760325071, 28.909224162828707 ], [ -81.970016668387487, 28.909207426489942 ], [ -81.970047935148173, 28.909194276179562 ], [ -81.970169069641699, 28.909144758945498 ], [ -81.970280420446556, 28.909101495964187 ], [ -81.970368472103075, 28.909046834423791 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Sumter Lndg", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970368472103075, 28.909046834423791 ], [ -81.970270078863081, 28.909051370125496 ], [ -81.970194983335915, 28.909071859054841 ], [ -81.970140604881905, 28.909085515852119 ], [ -81.970088815310618, 28.909096896708313 ], [ -81.970037027415557, 28.909105997438463 ], [ -81.969974883785255, 28.909110540126292 ], [ -81.969917920667669, 28.909108249043435 ], [ -81.96984801390137, 28.909096842718334 ], [ -81.969780634660395, 28.909079201147286 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969768109102731, 28.910618445052851 ], [ -81.969764876292032, 28.910697306934257 ], [ -81.969796514921427, 28.910774668041125 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974374860515439, 28.904377522258574 ], [ -81.974315429641607, 28.904416498279332 ], [ -81.974269968843643, 28.904443154270439 ], [ -81.974224509562518, 28.904463656571199 ], [ -81.974175555431415, 28.904476979496103 ], [ -81.974121940315527, 28.904484148729196 ], [ -81.974068325458006, 28.904486189276824 ], [ -81.974008884753033, 28.904490280498532 ], [ -81.973880677267232, 28.904498459239193 ], [ -81.973764126048835, 28.90450869196949 ], [ -81.973631253401436, 28.904523025037982 ], [ -81.973510037004189, 28.904539409402144 ], [ -81.973385324694604, 28.904556820680043 ], [ -81.973261775874988, 28.904579358032006 ], [ -81.973140558241511, 28.904603948467095 ], [ -81.973018173101849, 28.904630587677293 ], [ -81.972905113437065, 28.904659280490296 ], [ -81.972785057839658, 28.904690025417459 ], [ -81.9726696628599, 28.904723844417131 ], [ -81.972543778772803, 28.904765867570894 ], [ -81.97242954944889, 28.904803790256342 ], [ -81.972314152775496, 28.904846840364819 ], [ -81.97219992134454, 28.904891941540171 ], [ -81.972085689537408, 28.904938068531422 ], [ -81.971978451395117, 28.904986247813184 ], [ -81.971867713333708, 28.905038529024434 ], [ -81.971754642997539, 28.905095937413567 ], [ -81.97164856715348, 28.905152321275022 ], [ -81.971547152260328, 28.905206654216411 ], [ -81.971430583377142, 28.90527329300231 ], [ -81.971334995449553, 28.905335831624011 ], [ -81.971233577355392, 28.905400421653646 ], [ -81.971134490520285, 28.905470138967406 ], [ -81.971033070444818, 28.905540880713662 ], [ -81.970923487394586, 28.905628032513519 ], [ -81.970770770802886, 28.905752092348816 ], [ -81.970670515234232, 28.905825910909755 ], [ -81.970570261426488, 28.905896654363303 ], [ -81.970474671389383, 28.90595919326973 ], [ -81.97044203050622, 28.905979697113295 ], [ -81.970368592507981, 28.906020703874724 ], [ -81.970283496287962, 28.906065810759788 ], [ -81.970176252627255, 28.906119117258843 ], [ -81.970060850899245, 28.906171395033589 ], [ -81.970001403119824, 28.906195995525295 ], [ -81.969930299167302, 28.906224697026683 ], [ -81.969821894056395, 28.906261591080384 ], [ -81.969704166446604, 28.906299510656194 ], [ -81.969588768998463, 28.906332303799811 ], [ -81.969452391236231, 28.906372269843693 ], [ -81.969327671000983, 28.906410187494995 ], [ -81.969274051706719, 28.906423508467775 ], [ -81.969207615709962, 28.90642964598559 ], [ -81.9691458428168, 28.906430657686681 ], [ -81.969094561548573, 28.906426543117494 ], [ -81.969012596354418, 28.906412704587108 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974474833763878, 28.904768795094341 ], [ -81.974533346911826, 28.904900329763301 ], [ -81.97454929808616, 28.904950498781776 ], [ -81.974560680814179, 28.905030767602451 ], [ -81.974569786513428, 28.905096989910426 ], [ -81.974581168777647, 28.905179265439017 ], [ -81.974609654292692, 28.905260040080435 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980260414984244, 28.903129663577548 ], [ -81.980271059554994, 28.903119134422695 ], [ -81.980298931311012, 28.903084120326099 ], [ -81.980319471190626, 28.903045379552481 ], [ -81.980332051434672, 28.903004089512422 ], [ -81.980336294467776, 28.902961502543047 ], [ -81.98033206777572, 28.902918916131114 ], [ -81.980319951281189, 28.902878716941217 ], [ -81.980299851664839, 28.902840994285103 ], [ -81.980271976023758, 28.902805949402424 ], [ -81.980237607742595, 28.90277569656406 ], [ -81.980197792540778, 28.902751155362452 ], [ -81.980153740229596, 28.902733070369024 ], [ -81.98013200830674, 28.902726980231954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979965213791587, 28.903192845502463 ], [ -81.980009148869044, 28.903202974971936 ], [ -81.980057543607202, 28.903206708697958 ], [ -81.980105939794882, 28.903202989420219 ], [ -81.980152866986444, 28.903191931512158 ], [ -81.980196901862669, 28.903173871321673 ], [ -81.980236702071849, 28.903149358152845 ], [ -81.980260414984244, 28.903129663577548 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979786042310963, 28.902914477431107 ], [ -81.979784769661009, 28.902920395415446 ], [ -81.979780537705707, 28.902962874093401 ], [ -81.979784751891117, 28.9030053549514 ], [ -81.979797287384287, 28.903046545878109 ], [ -81.979817758893432, 28.903085196227153 ], [ -81.979845547320124, 28.903120130206425 ], [ -81.979879808978737, 28.903150288385856 ], [ -81.979884371327444, 28.903153586974295 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98013200830674, 28.902726980231954 ], [ -81.980106864703473, 28.902722007531448 ], [ -81.980058591181773, 28.902718282864111 ], [ -81.980010315188849, 28.902721993120245 ], [ -81.979963505092826, 28.902733023025849 ], [ -81.979919582138137, 28.902751038043196 ], [ -81.979879882506239, 28.902775490680952 ], [ -81.979845610145418, 28.902805637630362 ], [ -81.979818214231059, 28.902839947913453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979818214231059, 28.902839947913453 ], [ -81.97981780805533, 28.902840565926695 ], [ -81.979797318293521, 28.902879209184253 ], [ -81.979786042310963, 28.902914477431107 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979884371327444, 28.903153586974295 ], [ -81.979918200182965, 28.903173831523699 ], [ -81.979962222905357, 28.903191902151846 ], [ -81.979965213791587, 28.903192845502463 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980888765898172, 28.904554062980409 ], [ -81.980784297278632, 28.904424179270947 ], [ -81.980662956913505, 28.904250906916307 ], [ -81.98052544546411, 28.904023043933812 ], [ -81.980439171994476, 28.903826041513124 ], [ -81.980390649792781, 28.903688377927622 ], [ -81.98026394967853, 28.903341850447049 ], [ -81.980251909668084, 28.903277099719684 ], [ -81.980242399753052, 28.903199443787717 ], [ -81.980260414984244, 28.903129663577548 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valor Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01523171080342, 28.881023606032993 ], [ -82.015316914217834, 28.881133549425801 ], [ -82.015362220090708, 28.88117918379055 ], [ -82.01542804719395, 28.881226724255928 ], [ -82.015482805843277, 28.881255020721962 ], [ -82.01555106752275, 28.881279142527529 ], [ -82.015606426717838, 28.881291497917552 ], [ -82.015680853454853, 28.881298856016564 ], [ -82.015838048216906, 28.88130954237463 ], [ -82.016120538482596, 28.881324133805947 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bachman Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01523171080342, 28.881023606032993 ], [ -82.015254126102818, 28.881008490053837 ], [ -82.01528486698075, 28.880980105725516 ], [ -82.015308950744753, 28.880947113159333 ], [ -82.015325505147587, 28.880910707100963 ], [ -82.015333930658159, 28.880872201369503 ], [ -82.015334988963943, 28.880852972307444 ], [ -82.015335500726579, 28.880588797324297 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tartan Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015335500726579, 28.880588797324297 ], [ -82.015489422590662, 28.880589029481566 ], [ -82.015575893471208, 28.88058897570988 ], [ -82.015619586842575, 28.880586756610843 ], [ -82.015738894899854, 28.88057283611921 ], [ -82.015929894649872, 28.880549869952834 ], [ -82.01612029870094, 28.880533772805659 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elton Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013044698798254, 28.881377355017097 ], [ -82.012869710135078, 28.88117662789513 ], [ -82.012822038189569, 28.881130694242774 ], [ -82.012796225955668, 28.881109897623585 ], [ -82.012641771392225, 28.88098814408464 ], [ -82.01227756278746, 28.880701042046102 ], [ -82.011814436531935, 28.880335960421085 ], [ -82.011496734674438, 28.880085513788842 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dorst Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012467326648803, 28.88176625284952 ], [ -82.012318813129838, 28.88159686142836 ], [ -82.012269651717162, 28.881551506087799 ], [ -82.011997127454649, 28.881336528957387 ], [ -82.01164611859798, 28.881059829453672 ], [ -82.011400409402583, 28.880866136000417 ], [ -82.011251195784268, 28.880747685571819 ], [ -82.011189763614439, 28.880689073279527 ], [ -82.011152585503822, 28.880645790073661 ], [ -82.011127783366817, 28.880613578036684 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bachman Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011496734674438, 28.880085513788842 ], [ -82.011444048901581, 28.880157673281182 ], [ -82.011388460768671, 28.880258665129599 ], [ -82.01133231642703, 28.880365050054579 ], [ -82.011274654700784, 28.880451494209471 ], [ -82.011208536797298, 28.880533114395945 ], [ -82.011127783366817, 28.880613578036684 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jarvis Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010013727856702, 28.879857222820316 ], [ -82.010057912190234, 28.879745039276091 ], [ -82.010101284691999, 28.879634891365349 ], [ -82.010108772636684, 28.879614789361668 ], [ -82.010120853743402, 28.879577522548715 ], [ -82.010133605860119, 28.87952429938349 ], [ -82.010142363688075, 28.87946825139171 ], [ -82.010145345446503, 28.87943069467617 ], [ -82.010146170283093, 28.879404241837815 ], [ -82.010144817631343, 28.879322175784583 ], [ -82.01013622023585, 28.878976068768051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dorst Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010013727856702, 28.879857222820316 ], [ -82.009881301466322, 28.87982123915582 ], [ -82.009794494234299, 28.879801757171077 ], [ -82.0097062756479, 28.879785186050565 ], [ -82.009624544664092, 28.879772708182522 ], [ -82.009529598470223, 28.879761482630059 ], [ -82.009469834985495, 28.879752824464337 ], [ -82.009442260537156, 28.879744507047231 ], [ -82.009412003836132, 28.879731096306003 ], [ -82.009394734170456, 28.879721228955663 ], [ -82.009373108092376, 28.879705388648251 ], [ -82.00935542373108, 28.879689225058335 ], [ -82.009338188067829, 28.879669232970858 ], [ -82.009324111857836, 28.879648146185506 ], [ -82.009311862166257, 28.879623301194332 ], [ -82.009302472205945, 28.879592971828178 ], [ -82.009299227931677, 28.879573014927065 ], [ -82.009298496913175, 28.879547967980191 ], [ -82.009300474613454, 28.879525877701891 ], [ -82.009350760105491, 28.87927988624832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramsbury Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012027494903037, 28.879683310513752 ], [ -82.011645604325807, 28.879261297844067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bachman Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015335500726579, 28.880588797324297 ], [ -82.01533774922892, 28.879428241443406 ], [ -82.015338788149876, 28.87889302934866 ], [ -82.015339501354347, 28.878524909102183 ], [ -82.015340694834208, 28.877909203472271 ], [ -82.015339630957669, 28.877889218504276 ], [ -82.015331194695037, 28.877850713691821 ], [ -82.01531463039575, 28.877814313029489 ], [ -82.01529053898615, 28.87778132568906 ], [ -82.015259789960112, 28.877752948926787 ], [ -82.015244069923085, 28.877741963300927 ], [ -82.015223496766268, 28.877730205828023 ], [ -82.015182966572368, 28.877713920951301 ], [ -82.01513966950624, 28.87770468063092 ], [ -82.015095166894952, 28.877702819450793 ], [ -82.015058916462436, 28.877706853013986 ], [ -82.01473668815315, 28.877765468149192 ], [ -82.014286225627259, 28.877847406528176 ], [ -82.01390800759016, 28.877916202403039 ], [ -82.013747255044535, 28.877948128038682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bentwood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013939940400334, 28.87856273281287 ], [ -82.014214233859164, 28.878513440687087 ], [ -82.014481785774137, 28.878464773088659 ], [ -82.014601555875927, 28.878442727425981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bentwood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014601555875927, 28.878442727425981 ], [ -82.014973060708186, 28.878374344478505 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shanewood Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014642161489391, 28.879606157374717 ], [ -82.014643975118844, 28.878673707771014 ], [ -82.014643847331712, 28.878570943732282 ], [ -82.014641195049606, 28.878554247815575 ], [ -82.014634349594019, 28.878535210861152 ], [ -82.014601555875927, 28.878442727425981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramblewood Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013130838883683, 28.880532563676361 ], [ -82.012979420730815, 28.88039733165072 ], [ -82.012705966958819, 28.88018056493047 ], [ -82.012638167591078, 28.880126869603533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramblewood Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012638167591078, 28.880126869603533 ], [ -82.012339855416784, 28.879886237560054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bachman Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010322441537809, 28.88253435570422 ], [ -82.01048559206366, 28.882663667109295 ], [ -82.010756424933703, 28.882887168713395 ], [ -82.011020296496937, 28.883117028817569 ], [ -82.011037307887648, 28.883130676615504 ], [ -82.011077303188259, 28.883155318976339 ], [ -82.011121552396347, 28.883173476155136 ], [ -82.011168711419842, 28.883184593337663 ], [ -82.0111712149818, 28.883184972108364 ], [ -82.011174003549016, 28.883185364391217 ], [ -82.01121644163689, 28.883187254994048 ], [ -82.011258443234098, 28.883181587040625 ], [ -82.011298288081335, 28.883168595265875 ], [ -82.011334347194392, 28.883148810354204 ], [ -82.011365143350048, 28.883123041790508 ], [ -82.011371314316534, 28.883116410287034 ], [ -82.011641026910908, 28.882846524653228 ], [ -82.011965440474171, 28.882524597263458 ], [ -82.012081172256387, 28.882409313976432 ], [ -82.012108420659459, 28.882372532954601 ], [ -82.012148909166456, 28.882307081073908 ], [ -82.012181791416083, 28.882238403203107 ], [ -82.012206742514792, 28.88216718783146 ], [ -82.012223512411822, 28.88209413787753 ], [ -82.012229375754274, 28.882051661536771 ], [ -82.012232218478161, 28.882041652063126 ], [ -82.012253096194982, 28.881986289564257 ], [ -82.012281846576045, 28.881933730734048 ], [ -82.012317999152074, 28.881884838208443 ], [ -82.012360955303222, 28.881840417788862 ], [ -82.012410014911737, 28.881801195882687 ], [ -82.012464371236078, 28.881767817699661 ], [ -82.012467326648803, 28.88176625284952 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bachman Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012467326648803, 28.88176625284952 ], [ -82.013044698798254, 28.881377355017097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Montbrook Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011779625625607, 28.875640142354889 ], [ -82.011896199567076, 28.875503901278183 ], [ -82.012024897878092, 28.875336287830379 ], [ -82.012096127988443, 28.875234314423061 ], [ -82.012198279070418, 28.875073815905836 ], [ -82.012313911301476, 28.874870131050468 ], [ -82.012456764941035, 28.87462248173312 ], [ -82.012536938641261, 28.87448881392918 ], [ -82.012694274394235, 28.874236394401546 ], [ -82.012695131219786, 28.874235007486181 ], [ -82.012715436845212, 28.874194248670229 ], [ -82.012727846814002, 28.874151104871348 ], [ -82.012732015813512, 28.874106752724884 ], [ -82.012728884717092, 28.874068340187105 ], [ -82.012721023875471, 28.874039327357092 ], [ -82.012704088443954, 28.87400711757871 ], [ -82.012679681508601, 28.87397886325672 ], [ -82.012648945192751, 28.873955888865439 ], [ -82.012639479795951, 28.87395059860641 ], [ -82.012364892775153, 28.873799838993406 ], [ -82.012201086966229, 28.873711737883198 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996485216113257, 28.87186035042761 ], [ -81.996190178548872, 28.871641614825243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995561685943173, 28.870830770086158 ], [ -81.995556274062963, 28.870819532619784 ], [ -81.995531911849568, 28.870781142401874 ], [ -81.995500529745598, 28.870746927795626 ], [ -81.995463030798462, 28.870717875044804 ], [ -81.995420492321287, 28.870694817910216 ], [ -81.995374139241932, 28.870678421427993 ], [ -81.995344239167693, 28.870671844379661 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99502396652332, 28.870961174079888 ], [ -81.995032069561162, 28.870984996089643 ], [ -81.995052352797927, 28.871024498781903 ], [ -81.995079929662481, 28.871060417798208 ], [ -81.995114006801174, 28.871091716358332 ], [ -81.995153604285221, 28.871117496629594 ], [ -81.995197580211666, 28.871137014165271 ], [ -81.995232260178724, 28.871147103183539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995232260178724, 28.871147103183539 ], [ -81.995254472402536, 28.87115138181133 ], [ -81.995302827243663, 28.871155107364977 ], [ -81.995351184497551, 28.871151385292599 ], [ -81.995364920672614, 28.871148939638033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995364920672614, 28.871148939638033 ], [ -81.995444338843654, 28.87116670788015 ], [ -81.995498340117663, 28.871186276196543 ], [ -81.995531796018469, 28.871199952652034 ], [ -81.99557720177225, 28.871225196127334 ], [ -81.995612276645076, 28.871253670386416 ], [ -81.995780212678866, 28.871387010151821 ], [ -81.995801493629344, 28.871404329643632 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995364920672614, 28.871148939638033 ], [ -81.995398070085173, 28.871140328330004 ], [ -81.995442063222129, 28.871122274792647 ], [ -81.995481826148293, 28.871097767823347 ], [ -81.995493736970843, 28.871088448348182 ], [ -81.995520363846055, 28.871056447286168 ], [ -81.995545065020764, 28.871015028816498 ], [ -81.995561895769768, 28.870970658640967 ], [ -81.995562300742918, 28.87096919421699 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995562300742918, 28.87096919421699 ], [ -81.99557042244119, 28.870924487184059 ], [ -81.995570424599009, 28.870877709991326 ], [ -81.995561901173701, 28.870831536148749 ], [ -81.995561685943173, 28.870830770086158 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996190178548872, 28.871641614825243 ], [ -81.996145728754044, 28.871543544010361 ], [ -81.996010720087611, 28.871424698509443 ], [ -81.995867775453846, 28.871308186876924 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995344239167693, 28.870671844379661 ], [ -81.995306243960655, 28.870667855741221 ], [ -81.995259775207799, 28.870669690248459 ], [ -81.995214424448974, 28.870678799147779 ], [ -81.995209191367877, 28.870680349112511 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Turtle Mound Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995209191367877, 28.870680349112511 ], [ -81.995133914255888, 28.870655105304316 ], [ -81.995066999464711, 28.870635115880518 ], [ -81.995016280092941, 28.870610166179656 ], [ -81.994940544375524, 28.870555089399826 ], [ -81.994835173226932, 28.870473925829167 ], [ -81.994736390376147, 28.870392761537868 ], [ -81.994673827283208, 28.870334787840179 ], [ -81.994621142222641, 28.870288408211277 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995209191367877, 28.870680349112511 ], [ -81.995198765181442, 28.870683483330346 ], [ -81.995155350340681, 28.870701301309882 ], [ -81.995116110293125, 28.870725484277116 ], [ -81.995082238259187, 28.870755296903553 ], [ -81.995054762434833, 28.870789834222141 ], [ -81.995034516262976, 28.870828047792283 ], [ -81.995024012710573, 28.870860209081695 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995024012710573, 28.870860209081695 ], [ -81.995022114854763, 28.870868775474289 ], [ -81.995017939610648, 28.870910778422811 ], [ -81.995022111564921, 28.870952781689038 ], [ -81.99502396652332, 28.870961174079888 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Turtle Mound Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994621142222641, 28.870288408211277 ], [ -81.994663942885978, 28.870421744190399 ], [ -81.994733087711793, 28.870523197434579 ], [ -81.994795652845013, 28.870584070203002 ], [ -81.99488455850404, 28.870642044874611 ], [ -81.994937245035487, 28.870685524396304 ], [ -81.994957064611683, 28.870709791699927 ], [ -81.99499410436519, 28.87077500436784 ], [ -81.995024012710573, 28.870860209081695 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Turtle Mound Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994621142222641, 28.870288408211277 ], [ -81.994601385434109, 28.870262320011772 ], [ -81.994571754792162, 28.870169564735871 ], [ -81.994558588311278, 28.870068114641509 ], [ -81.994561886704233, 28.869981156216777 ], [ -81.994581648788824, 28.86987390928395 ], [ -81.994741152946418, 28.869480711008567 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Village Pkwy", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959900344226099, 28.953155811005065 ], [ -81.959111348270071, 28.953795466967911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 114", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01981679966562, 28.901842114661683 ], [ -82.018106268200796, 28.901841296740102 ], [ -82.017057997869657, 28.90181513146031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 114", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020541489790006, 28.901842280881478 ], [ -82.020258631438708, 28.901842322473751 ], [ -82.01981679966562, 28.901842114661683 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97377519315198, 28.580286787329531 ], [ -81.973517862715966, 28.580344010234327 ], [ -81.97335650349001, 28.580379584704193 ], [ -81.973166331954388, 28.580415152299032 ], [ -81.972979042299656, 28.580445632787924 ], [ -81.97275429687754, 28.580481194617374 ], [ -81.972575651825821, 28.580509134404455 ], [ -81.972408534584602, 28.58052944610488 ], [ -81.97207345125446, 28.580570768930855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97207345125446, 28.580570768930855 ], [ -81.971869725349563, 28.580585285579858 ], [ -81.971705489926862, 28.580600511403318 ], [ -81.971495157239758, 28.580610639792813 ], [ -81.971284821445991, 28.580620767855589 ], [ -81.971034150493082, 28.580630886867709 ], [ -81.970818055288476, 28.580633382729911 ], [ -81.970483830001612, 28.580633309442184 ], [ -81.967634262885227, 28.580660626573241 ], [ -81.965672122252002, 28.580670313354151 ], [ -81.963977940328007, 28.580685126870605 ], [ -81.961523105791287, 28.580702249819186 ], [ -81.959765533778253, 28.580716994364408 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 80th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97207345125446, 28.580570768930855 ], [ -81.972079350195699, 28.578851450582306 ], [ -81.972114172063897, 28.57672687186373 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 67th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.094042541333948, 28.658431572011452 ], [ -82.092916278410655, 28.658420778704304 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981992361707853, 28.905967035159076 ], [ -81.981933038402644, 28.9058839606612 ], [ -81.981833265797192, 28.90574154459938 ], [ -81.98154744132178, 28.905295312559733 ], [ -81.981302052957844, 28.9049796210635 ], [ -81.981126772100993, 28.904792100599337 ], [ -81.980888765898172, 28.904554062980409 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Old Mill Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981954252770407, 28.907549725035629 ], [ -81.982024952471818, 28.907543715346669 ], [ -81.98214354977641, 28.907487543364379 ], [ -81.982293790031719, 28.907412289168757 ], [ -81.982344567993195, 28.907403356830304 ], [ -81.982417524345763, 28.907392591220564 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Old Mill Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982298248889094, 28.907221153251172 ], [ -81.982266293443445, 28.907285638959376 ], [ -81.982228797787343, 28.907331004225355 ], [ -81.98219602414683, 28.907359122683051 ], [ -81.982150407610334, 28.907389218155036 ], [ -81.982059177565944, 28.907443385310785 ], [ -81.981977067998329, 28.907495547827672 ], [ -81.981954252770407, 28.907549725035629 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984999270723563, 28.909278249254061 ], [ -81.98493993365129, 28.909266376439607 ], [ -81.984788888786809, 28.909237879148698 ], [ -81.984648634212022, 28.909199888954209 ], [ -81.984511078422486, 28.909157152840621 ], [ -81.984373524564035, 28.909102550467537 ], [ -81.984230576690564, 28.909043198521868 ], [ -81.98407954114623, 28.908964859306529 ], [ -81.983928507045619, 28.908872280758395 ], [ -81.98376668787742, 28.90875833882432 ], [ -81.983643325513825, 28.908662534898706 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983643325513825, 28.908662534898706 ], [ -81.983467328903643, 28.90849960600973 ], [ -81.983308221031379, 28.90831683656798 ], [ -81.983178779970871, 28.908138818570745 ], [ -81.983076313381289, 28.907967923903673 ], [ -81.982952276849261, 28.90773057124763 ], [ -81.982868689526953, 28.907564424912049 ], [ -81.982822853475042, 28.907455244561852 ], [ -81.982812077479764, 28.907386414974834 ], [ -81.982835562748917, 28.907277956355749 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979568249535333, 28.90145710008342 ], [ -81.979557484256674, 28.90134317689003 ], [ -81.97956184922819, 28.901096346479875 ], [ -81.979564179817345, 28.900226746290471 ], [ -81.97957292181556, 28.899666633759576 ], [ -81.97958595789531, 28.899214746305468 ], [ -81.979590313373208, 28.899009687755417 ], [ -81.979590381084705, 28.898664126119513 ], [ -81.979583945731832, 28.898479951425369 ], [ -81.97957758835642, 28.897898950016479 ], [ -81.979584175419234, 28.897325546091505 ], [ -81.979584200074413, 28.897320155758631 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979446206880979, 28.897317598245699 ], [ -81.979438820856231, 28.897785983421581 ], [ -81.979441205182624, 28.898254804073574 ], [ -81.979433640336183, 28.898908968953378 ], [ -81.979433589205783, 28.899164094037193 ], [ -81.979430960287274, 28.899920748129293 ], [ -81.979425890898483, 28.900483330787086 ], [ -81.979423321790378, 28.900941247108772 ], [ -81.979418321849664, 28.901157121351886 ], [ -81.979425707708032, 28.90139698420813 ], [ -81.979450444276907, 28.901615043868841 ], [ -81.979487577582262, 28.90179821623363 ], [ -81.97956187672753, 28.902003200127314 ], [ -81.979638658842504, 28.902186378498381 ], [ -81.979745165159272, 28.902426256368109 ], [ -81.979824429697288, 28.902591989053139 ], [ -81.97984175971159, 28.902670492557633 ], [ -81.979844222218091, 28.902751173770625 ], [ -81.979818214231059, 28.902839947913453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979370484991321, 28.894582619982646 ], [ -81.97938217799026, 28.894590922944513 ], [ -81.979423192479928, 28.894610867382095 ], [ -81.979467527216045, 28.894624282373783 ], [ -81.979513817574599, 28.894630822126384 ], [ -81.979524755568661, 28.894630822899959 ], [ -81.979560694828436, 28.894630140847802 ], [ -81.979619926090379, 28.89461881610444 ], [ -81.979668742039692, 28.894598228546329 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979290591356843, 28.894499119635974 ], [ -81.979298765476855, 28.894517628875118 ], [ -81.97931218615031, 28.894535888988699 ], [ -81.979326829860952, 28.894549852538518 ], [ -81.979343302328417, 28.894565787894297 ], [ -81.979370484991321, 28.894582619982646 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979668742039692, 28.894598228546329 ], [ -81.979707602612351, 28.89457568958958 ], [ -81.979735449864933, 28.894550337386153 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979735449864933, 28.894550337386153 ], [ -81.979760091556415, 28.894521995372287 ], [ -81.979777181160287, 28.894491926111872 ], [ -81.979793056009555, 28.894455410635796 ], [ -81.979800386998747, 28.894413525182905 ], [ -81.979798972789467, 28.894368237639942 ], [ -81.9797892175432, 28.894323842112463 ], [ -81.979776918590915, 28.894289504135184 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979692427433363, 28.894200602160627 ], [ -81.979649460425904, 28.894177744882743 ], [ -81.979605711509222, 28.894163298710794 ], [ -81.979559617390208, 28.894155727690755 ], [ -81.979491463722056, 28.894159113508376 ], [ -81.979434507258205, 28.894173425158602 ], [ -81.979393584122562, 28.894189566414312 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979776918590915, 28.894289504135184 ], [ -81.979755504356234, 28.894256828617145 ], [ -81.979727197545941, 28.894226633374835 ], [ -81.979692427433363, 28.894200602160627 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979320092000279, 28.89424727879436 ], [ -81.97930606984572, 28.894262947767686 ], [ -81.979283990747774, 28.894299384628273 ], [ -81.979269334293534, 28.894338572846063 ], [ -81.979263601589068, 28.894385339057937 ], [ -81.979266850284574, 28.894418276211216 ], [ -81.979276606921658, 28.894459806974158 ], [ -81.979290591356843, 28.894499119635974 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979393584122562, 28.894189566414312 ], [ -81.979364732817416, 28.894206173303623 ], [ -81.979341540854165, 28.894224426856251 ], [ -81.979320092000279, 28.89424727879436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fawnridge Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003401462216075, 28.887274646621844 ], [ -82.004060131631633, 28.887092194317717 ], [ -82.00424187858539, 28.887035733497004 ], [ -82.004375517456324, 28.887007502260943 ], [ -82.00447173708551, 28.886998090352616 ], [ -82.004585087857535, 28.88697744512994 ], [ -82.004700730354713, 28.886966024866037 ], [ -82.004830648682514, 28.88696745191891 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954150830565098, 28.949047285083022 ], [ -81.954191447521225, 28.949256466559149 ], [ -81.954542239351213, 28.949599439889344 ], [ -81.955073371054297, 28.950121811547962 ], [ -81.956772217661225, 28.951832945468833 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paige Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955084548712506, 28.946498521244575 ], [ -81.955093766730087, 28.946548120652093 ], [ -81.955118061722146, 28.946598907111046 ], [ -81.955139310232141, 28.946649285611755 ], [ -81.955155648346135, 28.946703979936164 ], [ -81.95516380868095, 28.946751474837217 ], [ -81.955168701422195, 28.94679033460676 ], [ -81.955171953619129, 28.946839268826317 ], [ -81.955170297486688, 28.946885320383753 ], [ -81.955165365058861, 28.94693569011956 ], [ -81.955160433430422, 28.946988939070696 ], [ -81.955153104716317, 28.947034469008628 ], [ -81.955144028525197, 28.947088238096704 ], [ -81.955132547757017, 28.947151556243206 ], [ -81.955124346218042, 28.947199047470274 ], [ -81.955117777741776, 28.947253734124001 ], [ -81.955116122826524, 28.947296908267401 ], [ -81.955116105349731, 28.947337205548006 ], [ -81.955119357761475, 28.947383260549522 ], [ -81.955125883186739, 28.947427877489861 ], [ -81.955140585220789, 28.947482571262142 ], [ -81.955160194608141, 28.947540144987205 ], [ -81.955183490669157, 28.947624179668782 ], [ -81.955188823060041, 28.947678359603586 ], [ -81.955180765292681, 28.94772782328976 ], [ -81.955140561140979, 28.947805544140792 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paige Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955419393657493, 28.947711436032655 ], [ -81.9553712058093, 28.947684132867476 ], [ -81.955331949092738, 28.947653897504129 ], [ -81.955295966657118, 28.947619344849471 ], [ -81.955246759645988, 28.947545963928832 ], [ -81.955221217458217, 28.94748692652065 ], [ -81.95519953160192, 28.947384726526877 ], [ -81.955193020258719, 28.947309887306368 ], [ -81.955196319030847, 28.947246563714693 ], [ -81.955201254390815, 28.947184680728199 ], [ -81.955212733875769, 28.94712423998665 ], [ -81.955232419591724, 28.94700767216878 ], [ -81.955247331421859, 28.946911688557428 ], [ -81.955251614109002, 28.946843160865438 ], [ -81.955247330982687, 28.946777487873614 ], [ -81.955240724390649, 28.946721278252333 ], [ -81.955227656321128, 28.94666946334408 ], [ -81.955201506698444, 28.946601812436466 ], [ -81.955167173718181, 28.946539918120145 ], [ -81.955133711708498, 28.946515859020852 ], [ -81.955084548712506, 28.946498521244575 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 90th Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955597209086164, 28.887226818535378 ], [ -81.953483107173938, 28.887223197444328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 90th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953514288017885, 28.887503964470113 ], [ -81.953514288828856, 28.887529619581279 ], [ -81.953519415012266, 28.889058693939869 ], [ -81.953521976875223, 28.890444098326235 ], [ -81.953516843679893, 28.891200939544035 ], [ -81.953521974371014, 28.89140875003752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 90th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953487323370439, 28.881820989707606 ], [ -81.953484111067098, 28.882075830055189 ], [ -81.953484467720443, 28.882195040414953 ], [ -81.953483753511918, 28.88232924033197 ], [ -81.953482680923756, 28.882645470364629 ], [ -81.95347997193781, 28.882877465492435 ], [ -81.953479882197229, 28.883077697813107 ], [ -81.953479744489954, 28.883384951140908 ], [ -81.953492483271233, 28.88547002865857 ], [ -81.953506365185788, 28.887203704076082 ], [ -81.953483107173938, 28.887223197444328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953756765429404, 28.820586176931435 ], [ -81.954367882734132, 28.820747908887306 ], [ -81.955773315966852, 28.821082240820964 ], [ -81.956600180445946, 28.821267989727289 ], [ -81.957216450217828, 28.821410712314314 ], [ -81.957681979844935, 28.821514338212641 ], [ -81.95826278293525, 28.821647283674551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962833911365223, 28.822384132162906 ], [ -81.962705384717509, 28.822365709315182 ], [ -81.962209554505804, 28.822288887215215 ], [ -81.961730661186451, 28.822207807409818 ], [ -81.961246929760222, 28.822120334355816 ], [ -81.960775298186135, 28.8220286032948 ], [ -81.960291573874287, 28.821924084900736 ], [ -81.95967241146856, 28.821789703807887 ], [ -81.958990372312542, 28.821631868644729 ], [ -81.958434812609767, 28.821505878288843 ], [ -81.95843236302882, 28.821505322611603 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953895807734909, 28.769882047078418 ], [ -81.954128523688397, 28.770099351913245 ], [ -81.954532546014164, 28.770483365736307 ], [ -81.955183182723815, 28.771107962117554 ], [ -81.955492770099781, 28.771385565731212 ], [ -81.955797111582953, 28.771663167807237 ], [ -81.956148689090298, 28.771959283852446 ], [ -81.956468786522478, 28.772223015511919 ], [ -81.956825630956601, 28.772491380749589 ], [ -81.95720347060967, 28.772759752609193 ], [ -81.957586564907274, 28.773028124155516 ], [ -81.95795917304639, 28.773268742415436 ], [ -81.95830029887378, 28.773476973905101 ], [ -81.958599443561752, 28.773652818346147 ], [ -81.959496894675368, 28.774157218619102 ], [ -81.961486011835717, 28.775272433569441 ], [ -81.965611331788352, 28.777590685711392 ], [ -81.966747929812925, 28.778224987651733 ], [ -81.968062467742257, 28.77896954554209 ], [ -81.969406161249239, 28.779714486104488 ], [ -81.971810156952372, 28.781060891793256 ], [ -81.972178019562548, 28.781267076071199 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978351803434478, 28.783971242238227 ], [ -81.978183817263911, 28.783915714588446 ], [ -81.97744048760616, 28.783652890124706 ], [ -81.976823150460774, 28.783434484454506 ], [ -81.976471438497171, 28.783295672596832 ], [ -81.97609348406499, 28.78313835499733 ], [ -81.975762773599698, 28.782999545926625 ], [ -81.975327087234007, 28.782782091816799 ], [ -81.974865154119982, 28.782564628683467 ], [ -81.973605372252109, 28.781856760403642 ], [ -81.972476831557344, 28.781227530446962 ], [ -81.968965323600813, 28.779256507144947 ], [ -81.965034058687635, 28.777049409453777 ], [ -81.960446918867277, 28.774476627464402 ], [ -81.958882931722655, 28.773602028999196 ], [ -81.958583782001, 28.773435437529258 ], [ -81.958316129308002, 28.773273478609909 ], [ -81.957959259749686, 28.773051366428753 ], [ -81.957602399394119, 28.772815378390312 ], [ -81.957271783926274, 28.772588647369453 ], [ -81.956925431502071, 28.772334161580055 ], [ -81.956594828639183, 28.772084304339103 ], [ -81.95637967810282, 28.771913108819749 ], [ -81.955764155067214, 28.771384990994065 ], [ -81.954962912301653, 28.770644229013154 ], [ -81.953886385620265, 28.769614521512217 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 36th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96779803210805, 28.711693549387654 ], [ -81.967324973648999, 28.711666695759867 ], [ -81.967176764276346, 28.711647061130599 ], [ -81.967050796801004, 28.711605648694235 ], [ -81.966929770339235, 28.711520691922292 ], [ -81.966864199772047, 28.711447903964586 ], [ -81.966813562991078, 28.711366966224773 ], [ -81.966793089220261, 28.711306175866703 ], [ -81.966760896689792, 28.711172397831309 ], [ -81.966750810493068, 28.710100750215933 ], [ -81.966747523742441, 28.709787155263463 ], [ -81.966715661926983, 28.70968377940417 ], [ -81.966675948173531, 28.709602033099618 ], [ -81.966611364562766, 28.709526160182783 ], [ -81.966527777188546, 28.709458255478438 ], [ -81.966436395069849, 28.709405974391483 ], [ -81.966288208343911, 28.709358019221341 ], [ -81.966157291073785, 28.709336210479353 ], [ -81.966072978931436, 28.709333628442923 ], [ -81.965992899924245, 28.709334434763054 ], [ -81.965869736042904, 28.709349670973101 ], [ -81.965823476888076, 28.709358999230449 ], [ -81.965744746203214, 28.70937748144922 ], [ -81.96559652710485, 28.709429714599345 ], [ -81.965428519782989, 28.709505896606142 ], [ -81.965250641661427, 28.709575530368372 ], [ -81.965121965956342, 28.709608907582727 ], [ -81.965023369772609, 28.709621214113284 ], [ -81.964692344452416, 28.709662503032966 ], [ -81.964460143123674, 28.709686395122752 ], [ -81.964321812943297, 28.709690710456801 ], [ -81.964190895212795, 28.70967325174075 ], [ -81.964059982443089, 28.70963838428575 ], [ -81.963953779018297, 28.709586084932088 ], [ -81.963852021163376, 28.709514758395809 ], [ -81.963721650660517, 28.709392199816097 ], [ -81.963627827216811, 28.70927675050449 ], [ -81.963548821283581, 28.709137353743198 ], [ -81.963504403699631, 28.709006685509927 ], [ -81.96348348149219, 28.708879339690395 ], [ -81.963482267928711, 28.708727916075986 ], [ -81.963496322376486, 28.708604441700768 ], [ -81.963536586968118, 28.70845568036161 ], [ -81.963607485068451, 28.708278738560693 ], [ -81.963657853498574, 28.708153038906016 ], [ -81.963680959733168, 28.708073111498202 ], [ -81.96372468000763, 28.707921873230767 ], [ -81.963756790515603, 28.707798093277599 ], [ -81.963796066088477, 28.707684059484443 ], [ -81.963866463979258, 28.707479664056525 ], [ -81.963915038711662, 28.707338633252835 ], [ -81.963976981084258, 28.707107560860926 ], [ -81.964029463755011, 28.706898786950269 ], [ -81.964070869821143, 28.706718021036096 ], [ -81.964075856835748, 28.706572103237253 ], [ -81.964058606747102, 28.706441443286398 ], [ -81.964024075200257, 28.706317292621851 ], [ -81.963972233304418, 28.706197501876613 ], [ -81.96389523356693, 28.706068899442659 ], [ -81.963826580374118, 28.705973161105852 ], [ -81.963728996088065, 28.705865042212132 ], [ -81.963675252472015, 28.705815475449096 ], [ -81.963571390681565, 28.70572472095904 ], [ -81.963456174432196, 28.705628967112997 ], [ -81.963308068946802, 28.705496210541845 ], [ -81.963211704746996, 28.705419845442925 ], [ -81.963122977707357, 28.705317332885386 ], [ -81.963030140671421, 28.705191343256981 ], [ -81.962951959299161, 28.705075516011714 ], [ -81.96288886709651, 28.704965090609363 ], [ -81.962820078219636, 28.704829247712336 ], [ -81.962751406109916, 28.704687853684035 ], [ -81.96264145768717, 28.704461471367882 ], [ -81.962565525746328, 28.704285339177087 ], [ -81.96247113601973, 28.704123873659729 ], [ -81.962379406456932, 28.704005590659765 ], [ -81.962283495500671, 28.703903869570528 ], [ -81.962178035044317, 28.703810409255993 ], [ -81.962085475018014, 28.703740542072481 ], [ -81.961967413944137, 28.703662053992954 ], [ -81.961846411666031, 28.703555301331107 ], [ -81.961705689749792, 28.703370157647718 ], [ -81.961619064971487, 28.703217103425811 ], [ -81.961580626330843, 28.703105422049067 ], [ -81.961518004413762, 28.702922262084066 ], [ -81.961483581337845, 28.702823474297649 ], [ -81.961385182260287, 28.702688352136157 ], [ -81.961278653222138, 28.702603463823159 ], [ -81.961140361713603, 28.70252502603471 ], [ -81.961016869833088, 28.70247273285911 ], [ -81.96089273043458, 28.702444732784553 ], [ -81.960659107012702, 28.702441866607042 ], [ -81.960320717890667, 28.702435773146476 ], [ -81.959949820708587, 28.702439748189747 ], [ -81.959624434493278, 28.702454693751726 ], [ -81.959443452399398, 28.702491867657713 ], [ -81.9592812493715, 28.702539166619765 ], [ -81.959110083314116, 28.702606616182955 ], [ -81.958850541595652, 28.702733414506636 ], [ -81.958605494932755, 28.702876610297739 ], [ -81.958331506983313, 28.703021849490312 ], [ -81.957965013286369, 28.703185586807123 ], [ -81.957837623695184, 28.703236155008874 ], [ -81.957726456751402, 28.703270968106839 ], [ -81.957610357031029, 28.70329488394027 ], [ -81.957499202107371, 28.703297025332091 ], [ -81.957389319816286, 28.703280223543221 ], [ -81.957289401747829, 28.703268587048104 ], [ -81.95716026448018, 28.703229127805237 ], [ -81.957001333110867, 28.703159004113253 ], [ -81.956842409130175, 28.703071360618466 ], [ -81.956703359091705, 28.702974963515729 ], [ -81.956494794577083, 28.702808469875951 ], [ -81.956271340168485, 28.702611314451872 ], [ -81.956047873806696, 28.702444815275612 ], [ -81.955824408963863, 28.702273936723692 ], [ -81.955521220881209, 28.702044185212007 ], [ -81.955203701731961, 28.70175255373961 ], [ -81.95500510904391, 28.701507229104426 ], [ -81.954859565700346, 28.701296992778534 ], [ -81.954647944100444, 28.701014499906847 ], [ -81.954337867670603, 28.700623623474382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956581496110744, 28.678385237724275 ], [ -81.95622189528801, 28.678680886832986 ], [ -81.95588279228042, 28.678962131447499 ], [ -81.955568068335808, 28.679221892404254 ], [ -81.955355296204146, 28.679395715866185 ], [ -81.95510041159217, 28.679606647799162 ], [ -81.954918667887952, 28.679758989162476 ], [ -81.954668214097282, 28.679969921754353 ], [ -81.954555174993985, 28.680065622889877 ], [ -81.954423166271084, 28.680163631993878 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 702", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95716282576231, 28.65347961318124 ], [ -81.956352796745065, 28.653473679058109 ], [ -81.956235392179153, 28.653487316734591 ], [ -81.956115773085429, 28.653502909850737 ], [ -81.956007221191101, 28.653536089388052 ], [ -81.955927463718496, 28.653571233629595 ], [ -81.955869859831367, 28.653600521712292 ], [ -81.95581003281788, 28.653647395559211 ], [ -81.955754640495769, 28.653686454807133 ], [ -81.955703670998503, 28.653741145742654 ], [ -81.955654916363912, 28.653797791846802 ], [ -81.955602352079069, 28.653864365975966 ], [ -81.955546192024499, 28.65394548183712 ], [ -81.955491202896511, 28.654029692169434 ], [ -81.955440884866832, 28.654125249990159 ], [ -81.954624640301418, 28.655455110784345 ], [ -81.954537147207688, 28.655604248113086 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 716", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974775131619708, 28.635159996841498 ], [ -81.974665561845669, 28.63522029111947 ], [ -81.974612343860315, 28.635239612724241 ], [ -81.97456851970955, 28.63524788877077 ], [ -81.974518435762931, 28.635253402458233 ], [ -81.974455832904084, 28.635250628473663 ], [ -81.974314976250966, 28.635250602431032 ], [ -81.973413483983464, 28.635266996143969 ], [ -81.972352356145649, 28.63528058896604 ], [ -81.971544763216556, 28.635319080621478 ], [ -81.971284955780391, 28.635330073451581 ], [ -81.971115922939575, 28.635346604969072 ], [ -81.970865505833416, 28.635360359269018 ], [ -81.970674563816715, 28.635365839956748 ], [ -81.970474232622038, 28.635371318308692 ], [ -81.97024572803781, 28.635379553978275 ], [ -81.969967141525203, 28.635385015100251 ], [ -81.969466316001004, 28.635387663196063 ], [ -81.969037482791393, 28.635384803765181 ], [ -81.968630564196189, 28.635373661933361 ], [ -81.968107831382, 28.635356970004505 ], [ -81.967588229476249, 28.635340276815107 ], [ -81.967034193301274, 28.635334618700469 ], [ -81.965325133452112, 28.635298288771516 ], [ -81.963644248383602, 28.635261943108947 ], [ -81.963105864379344, 28.635250749957144 ], [ -81.962842932363301, 28.63524515430996 ], [ -81.962755280267146, 28.635267223792095 ], [ -81.962702056234136, 28.635300346489313 ], [ -81.962661339327639, 28.635366611901752 ], [ -81.962595542512943, 28.635548856833399 ], [ -81.962532865364423, 28.635755953884249 ], [ -81.962470205627952, 28.63591334472439 ], [ -81.962398167257106, 28.636037594553315 ], [ -81.962277279518347, 28.636203797469349 ], [ -81.962160179375786, 28.636299875258935 ], [ -81.961972311319286, 28.636457229650809 ], [ -81.961796972760297, 28.636589735154576 ], [ -81.961630991325208, 28.636727895343444 ], [ -81.961499511465945, 28.636840951348471 ], [ -81.961338820331747, 28.637003877347166 ], [ -81.96124447767221, 28.637108706333958 ], [ -81.961111219270023, 28.637238501611748 ], [ -81.960995362503823, 28.637343406310197 ], [ -81.960904559085236, 28.637415180748249 ], [ -81.960773061214724, 28.637492466467712 ], [ -81.960591468112142, 28.637600113679763 ], [ -81.960294028110965, 28.637776765241941 ], [ -81.960027891186613, 28.637956186607813 ], [ -81.959886987953439, 28.638069368165304 ], [ -81.959724142229305, 28.638259866112016 ], [ -81.959652094841118, 28.638392398799077 ], [ -81.959608220698712, 28.638524939909168 ], [ -81.959583135809353, 28.638638155874602 ], [ -81.959567451882947, 28.63872651977487 ], [ -81.959545503104323, 28.638820404995471 ], [ -81.959511032944093, 28.638914288247161 ], [ -81.959457785881042, 28.639002643525341 ], [ -81.959373212064946, 28.639095611997455 ], [ -81.959288686876903, 28.639165522100576 ], [ -81.959175970919674, 28.639234526673942 ], [ -81.959060127120381, 28.639298006993897 ], [ -81.958903590286596, 28.639355951581173 ], [ -81.957973754049249, 28.639709143242406 ], [ -81.957817206086617, 28.639791940547561 ], [ -81.957648124159519, 28.639907872063784 ], [ -81.957519732893545, 28.64002933852445 ], [ -81.957403865046928, 28.640145287424861 ], [ -81.957316127815545, 28.640248738756515 ], [ -81.956887144641541, 28.640683624188881 ], [ -81.955629169666395, 28.64198330715265 ], [ -81.955393334795986, 28.642213033687618 ], [ -81.955239896835735, 28.642331728495755 ], [ -81.955130309477596, 28.64238968520829 ], [ -81.955001950971536, 28.642422780685955 ], [ -81.954944490912183, 28.642421097556102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 728", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967866254231296, 28.621946971170836 ], [ -81.967641546741817, 28.621959216057132 ], [ -81.967373730012454, 28.621965509994826 ], [ -81.967091874553148, 28.62196754543033 ], [ -81.966853473823747, 28.621962726018676 ], [ -81.966655007052665, 28.621953700383681 ], [ -81.966469885022676, 28.621941163179311 ], [ -81.966257000157299, 28.621921797058459 ], [ -81.965498025306616, 28.621836810391148 ], [ -81.964614019530799, 28.621741456601026 ], [ -81.963937359112592, 28.621669586632759 ], [ -81.963825845300917, 28.621662996637827 ], [ -81.963724244063116, 28.621656409228436 ], [ -81.963607768970931, 28.621662937733458 ], [ -81.963466508172303, 28.621680391245551 ], [ -81.963369856154785, 28.621695672216735 ], [ -81.963253382780834, 28.621700013146295 ], [ -81.963144344578268, 28.621699983277512 ], [ -81.963010528538518, 28.621691199220443 ], [ -81.95972293055263, 28.620879277247006 ], [ -81.95627947321104, 28.620037282505603 ], [ -81.954643982016776, 28.619632175194095 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959765533778253, 28.580716994364408 ], [ -81.957751528415358, 28.580734179487777 ], [ -81.956512583782768, 28.580743956511434 ], [ -81.955495497132759, 28.580753798539593 ], [ -81.955259235400575, 28.580751175524178 ], [ -81.955028736137237, 28.580748555829235 ], [ -81.954829929889087, 28.58074594639141 ], [ -81.9546570572641, 28.580743343603654 ], [ -81.954524523147569, 28.580730582103836 ], [ -81.954400632016089, 28.580725454538506 ], [ -81.954297320572536, 28.580711733602527 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triggerfish Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010129601501532, 28.888668479027725 ], [ -82.010220548621419, 28.888630082397547 ], [ -82.010788045152538, 28.888400265423204 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Delwood Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003309656948815, 28.89041839994109 ], [ -82.003211277204286, 28.89043877310894 ], [ -82.003136045588576, 28.890448960607085 ], [ -82.003025032879421, 28.890445015075453 ], [ -82.002797856797969, 28.89044768434486 ], [ -82.002555533275853, 28.890442356362243 ], [ -82.002358646289096, 28.890429029372513 ], [ -82.002095118729059, 28.890386380788559 ], [ -82.001883086288274, 28.890343730311084 ], [ -82.001777069444728, 28.890309078421279 ], [ -82.001722546448903, 28.890269092536194 ], [ -82.001695285066774, 28.890215777631049 ], [ -82.001680139039195, 28.890146467544973 ], [ -82.001677108479171, 28.890071826570466 ], [ -82.001689223669757, 28.889962530821855 ], [ -82.001725569166553, 28.889802586943038 ], [ -82.001767975020542, 28.889655969075033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Royal Elm Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009196697177458, 28.884819108193284 ], [ -82.009070891079404, 28.884391929819117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Royal Elm Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008787295221993, 28.883811346288141 ], [ -82.008550018970794, 28.883536338139919 ], [ -82.008324319184752, 28.88327151407659 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fringe Tree Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008914670933308, 28.882561873243464 ], [ -82.008324319184752, 28.88327151407659 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fringe Tree Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009992998582774, 28.885361235221396 ], [ -82.010128992492653, 28.885407062586093 ], [ -82.010565303328477, 28.885593156837537 ], [ -82.010755432406143, 28.885660122277589 ], [ -82.010914471017344, 28.885697192086248 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shining Willow Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0108391103049, 28.885029815445289 ], [ -82.01083114952263, 28.884844702683843 ], [ -82.010787468070475, 28.884634959796916 ], [ -82.010746906779275, 28.884500613833293 ], [ -82.010698477342274, 28.884368301327211 ], [ -82.010642310022362, 28.884238378669526 ], [ -82.010578555583734, 28.884111199541525 ], [ -82.010507387340724, 28.883987101380484 ], [ -82.010428997058369, 28.883866422523774 ], [ -82.010343595975968, 28.883749488674454 ], [ -82.01025141378156, 28.883636611096865 ], [ -82.010238411835942, 28.883621641043597 ], [ -82.010236288308775, 28.88361800311668 ], [ -82.010231563638314, 28.883612063604815 ], [ -82.010225734906669, 28.883606936242447 ], [ -82.010222406903736, 28.883604691554105 ], [ -82.010222058253603, 28.883603809128392 ], [ -82.010219287678041, 28.883598578685653 ], [ -82.010215523733308, 28.883593849993005 ], [ -82.010210883305547, 28.883589767410218 ], [ -82.010210801283904, 28.883589705157256 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Royal Elm Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009070891079404, 28.884391929819117 ], [ -82.009032754202948, 28.884252219901043 ], [ -82.008995644689193, 28.88415001766089 ], [ -82.008929085279661, 28.884009963888836 ], [ -82.008853848554878, 28.88389282996253 ], [ -82.008787295221993, 28.883811346288141 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dalecroft Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016724620975253, 28.887023432883325 ], [ -82.016732947520794, 28.886856915915466 ], [ -82.016774553597898, 28.886576759211309 ], [ -82.016776695754388, 28.886402960502064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dalecroft Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016776695754388, 28.886402960502064 ], [ -82.01678093734003, 28.885763153873096 ], [ -82.016783100889569, 28.885732594490463 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harding Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016776695754388, 28.886402960502064 ], [ -82.016850476456682, 28.886385761906578 ], [ -82.016894961765971, 28.886377800956836 ], [ -82.01695572153794, 28.886370152923799 ], [ -82.017062778189327, 28.886367594515267 ], [ -82.017956844397887, 28.886370027864867 ], [ -82.017990464249038, 28.88636795546287 ], [ -82.018033139746748, 28.886358836719058 ], [ -82.018073083890485, 28.886342777818506 ], [ -82.018108851204602, 28.886320353716769 ], [ -82.018139151065981, 28.88629237755779 ], [ -82.018162887682024, 28.886259861869213 ], [ -82.018179202117665, 28.886223977952685 ], [ -82.018187507147402, 28.886186026102653 ], [ -82.018188285715325, 28.886176464320538 ], [ -82.018188240931181, 28.885919268015062 ], [ -82.018187167645578, 28.885901896158664 ], [ -82.018178677152619, 28.885867965342953 ], [ -82.018162095014532, 28.885836435699876 ], [ -82.018138199628808, 28.885808779680161 ], [ -82.018127459922852, 28.885799590239987 ], [ -82.018063799224876, 28.885758853298032 ], [ -82.018026542621499, 28.885745809040706 ], [ -82.017979886332697, 28.885735946594224 ], [ -82.017538175892, 28.885735326033867 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alameda Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954223178576839, 28.927031749879291 ], [ -81.954241169025082, 28.927310528246437 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amaya Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954220601460733, 28.926636550892592 ], [ -81.954222213913752, 28.926882184187587 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amaya Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954220670676136, 28.925948413573337 ], [ -81.954220601460733, 28.926636550892592 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amaya Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954220972761007, 28.925264774206113 ], [ -81.954220670676136, 28.925948413573337 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Balboa Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954220670676136, 28.925948413573337 ], [ -81.954242161886512, 28.925947376950624 ], [ -81.95427303234537, 28.925946356154348 ], [ -81.954303903374338, 28.925946366674815 ], [ -81.954334771897891, 28.92594740760871 ], [ -81.954365446126033, 28.925949480695316 ], [ -81.95439611800073, 28.925952243127803 ], [ -81.954426596457537, 28.925956377878872 ], [ -81.954456877846638, 28.925960858135262 ], [ -81.954499661734715, 28.92596946611641 ], [ -81.954529553366498, 28.925976351743724 ], [ -81.954559052764949, 28.925984267652872 ], [ -81.954588159929273, 28.925993217453236 ], [ -81.954607304444139, 28.925999410972906 ], [ -81.95463582641419, 28.9260097338585 ], [ -81.954663760260416, 28.926021087862846 ], [ -81.954708689522633, 28.926039667768855 ], [ -81.954829022707045, 28.926089899430121 ], [ -81.954949354105551, 28.926139787208481 ], [ -81.955002209863395, 28.926166845841088 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lajolla Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955710136444324, 28.92845004176257 ], [ -81.955745954848226, 28.927924494664634 ], [ -81.955741096928321, 28.927860895691182 ], [ -81.955740125669834, 28.927846455941491 ], [ -81.955736030035894, 28.927832703611795 ], [ -81.955728611055036, 28.927819637733815 ], [ -81.955718258906856, 28.927808633533633 ], [ -81.955705758348557, 28.927799347495345 ], [ -81.955603590824623, 28.927756341906168 ], [ -81.955483452270684, 28.927706111011773 ], [ -81.955363116762769, 28.927656223718824 ], [ -81.95524297741413, 28.927605992609084 ], [ -81.955122643161786, 28.927556106003447 ], [ -81.955002506095695, 28.927505873777097 ], [ -81.954882171197809, 28.927455643181361 ], [ -81.954761836266343, 28.92740575444768 ], [ -81.95470948337757, 28.927383733408973 ], [ -81.954681353116314, 28.927372724026409 ], [ -81.954641306401683, 28.927358615736036 ], [ -81.954612393872083, 28.927349324044542 ], [ -81.954582895110022, 28.927341408148518 ], [ -81.954553200156411, 28.927334177923907 ], [ -81.954523307983493, 28.927327636979385 ], [ -81.954493416236673, 28.927322469321673 ], [ -81.954463134451103, 28.927317989976139 ], [ -81.954432462626727, 28.927314198040243 ], [ -81.954401786096369, 28.927311782095938 ], [ -81.954371113367898, 28.927310051890281 ], [ -81.954340242239113, 28.927309353835827 ], [ -81.954309372858745, 28.927309343323827 ], [ -81.954278696715775, 28.927310707066198 ], [ -81.954241169025082, 28.927310528246437 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Benavides Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995763290516635, 28.95466343088026 ], [ -81.995972404120906, 28.954694720045822 ], [ -81.99611897958259, 28.95471363207928 ], [ -81.996278060801515, 28.954732544316744 ], [ -81.996465286585789, 28.954751456244832 ], [ -81.996495718738416, 28.95475438141035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Athens Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007336154366882, 28.958028625303214 ], [ -82.007300870604283, 28.958090392541486 ], [ -82.007270644534586, 28.958337395389652 ], [ -82.007262638501913, 28.958436059531287 ], [ -82.007254478040892, 28.958511168465325 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Athens Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007254478040892, 28.958511168465325 ], [ -82.007245323549711, 28.958619226414601 ], [ -82.007241419419685, 28.958674917825988 ], [ -82.007231727269911, 28.958751059956384 ], [ -82.007225553536244, 28.958834729723783 ], [ -82.007218144919094, 28.958923832246594 ], [ -82.007214445262207, 28.958984682945076 ], [ -82.007207035489444, 28.959056399218078 ], [ -82.007198913499877, 28.959124981868541 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street James Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005312428303611, 28.950361552844342 ], [ -82.005382225697119, 28.950584056506489 ], [ -82.005396611872598, 28.950746452348294 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Liendo Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998870873738738, 28.942210006434834 ], [ -81.999193603288333, 28.942206892667365 ], [ -81.999414701002223, 28.942206894107553 ], [ -81.99946471158043, 28.942216156425363 ], [ -81.999496295031989, 28.942236993252685 ], [ -81.99952261508345, 28.942276353229261 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Liendo Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998532942286801, 28.942206887102287 ], [ -81.998870873738738, 28.942210006434834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barboza Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998498018749743, 28.942205934750564 ], [ -81.99819619143959, 28.94220770635199 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000878732334428, 28.940696061108238 ], [ -82.000876788184272, 28.942194112038841 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000884499945357, 28.93998372998723 ], [ -82.000878732334428, 28.940696061108238 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000881066352761, 28.939228533541929 ], [ -82.000884499945357, 28.93998372998723 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000886738173435, 28.938451850660961 ], [ -82.000881066352761, 28.939228533541929 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000894151935526, 28.937746652834438 ], [ -82.000886738173435, 28.938451850660961 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Livery Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994540969528387, 28.928712421934392 ], [ -81.993938345852783, 28.928711131248452 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966376743458682, 28.87980981701104 ], [ -81.966404839023966, 28.879797395746671 ], [ -81.966443698430894, 28.879773461093045 ], [ -81.966477244156195, 28.879743951582967 ], [ -81.966504459972612, 28.879709763854407 ], [ -81.966521133722381, 28.879679687985369 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966209582931214, 28.879823693014256 ], [ -81.966221535653972, 28.879825794777993 ], [ -81.966268783235009, 28.879829445648632 ], [ -81.966316032163121, 28.879825819440128 ], [ -81.96636184818918, 28.879815024971364 ], [ -81.966376743458682, 28.87980981701104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966071109068835, 28.879760775759483 ], [ -81.966085113259425, 28.879771875806394 ], [ -81.966123836107514, 28.879795755980542 ], [ -81.966166682185701, 28.879813352652324 ], [ -81.966209582931214, 28.879823693014256 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966203744820774, 28.879355401475323 ], [ -81.966166829910179, 28.879364672344103 ], [ -81.966123971476122, 28.879382248291758 ], [ -81.966085233134265, 28.879406109798811 ], [ -81.966051792003725, 28.879435526302213 ], [ -81.966024662259102, 28.879469608393187 ], [ -81.966004666422833, 28.879507317734614 ], [ -81.965992416896739, 28.879547513073252 ], [ -81.965988282125068, 28.879588967374232 ], [ -81.965992389649827, 28.879630425568976 ], [ -81.966004612775393, 28.879670625304598 ], [ -81.966024583877527, 28.879708347476249 ], [ -81.96605169131783, 28.879742443295701 ], [ -81.966071109068835, 28.879760775759483 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966454458968272, 28.879414843072666 ], [ -81.966443817423354, 28.879406553672272 ], [ -81.966404974726373, 28.879382599569979 ], [ -81.966361994506286, 28.879364947898868 ], [ -81.966316186737075, 28.879354132244341 ], [ -81.966270266948555, 28.87935048533328 ], [ -81.966259606380206, 28.879350298583017 ], [ -81.966212504266323, 28.879353913079218 ], [ -81.966203744820774, 28.879355401475323 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dividing Creek Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015071908459134, 28.874413658232864 ], [ -82.015084249565831, 28.874427090388721 ], [ -82.015117534656326, 28.874455096088429 ], [ -82.015155967057353, 28.87447742033029 ], [ -82.01519831243381, 28.874493345010666 ], [ -82.015243205262621, 28.874502359570645 ], [ -82.015289205216618, 28.874504172720545 ], [ -82.015294569572518, 28.874503911372326 ], [ -82.015311311376522, 28.87450202374006 ], [ -82.015322420151193, 28.874499734292314 ], [ -82.015635552517409, 28.874433930116471 ], [ -82.015815460552929, 28.874396116155218 ], [ -82.016015332851822, 28.874354329548861 ], [ -82.016224896785815, 28.874315427089282 ], [ -82.016363317740115, 28.874293765690133 ], [ -82.016449305964585, 28.874281973372817 ], [ -82.016645467675332, 28.874258327957975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dividing Creek Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014957106596825, 28.873772398753552 ], [ -82.014991323956309, 28.874011156966205 ], [ -82.015038070828155, 28.874334137432903 ], [ -82.015040691918784, 28.874348016367762 ], [ -82.015053421572986, 28.874383713697718 ], [ -82.015071908459134, 28.874413658232864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dividing Creek Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014925005991458, 28.873148061183862 ], [ -82.014927222199702, 28.873317498019002 ], [ -82.014929363226685, 28.873462227109375 ], [ -82.014938342122377, 28.873610173984684 ], [ -82.014957106596825, 28.873772398753552 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kate Hill Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013839227973818, 28.87453509726372 ], [ -82.013869652698801, 28.874515242728599 ], [ -82.013895867497681, 28.874496984773316 ], [ -82.013921608416211, 28.874476629006619 ], [ -82.013937446576151, 28.874462615592691 ], [ -82.013952756786011, 28.87444848492968 ], [ -82.013974304720222, 28.874426046150539 ], [ -82.013989766095989, 28.874407761268287 ], [ -82.014001699491942, 28.874392901873573 ], [ -82.014067588441705, 28.874300026760931 ], [ -82.0141341167256, 28.874205515676845 ], [ -82.014191294556696, 28.874131657395765 ], [ -82.014233795188332, 28.874083497239926 ], [ -82.014291543919583, 28.874025487799386 ], [ -82.01435666320782, 28.873968439438659 ], [ -82.01442557733256, 28.873918866233787 ], [ -82.014492460094971, 28.873880285952453 ], [ -82.014605738671079, 28.873832265465001 ], [ -82.014704299569559, 28.873805336834689 ], [ -82.014806347297039, 28.873789553005658 ], [ -82.014957106596825, 28.873772398753552 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dividing Creek Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01749968262952, 28.873801455857421 ], [ -82.017574188607739, 28.873729962518098 ], [ -82.01765397905136, 28.873659532284954 ], [ -82.017724976156146, 28.873601921226264 ], [ -82.017843686795032, 28.873515805732307 ], [ -82.017968407085135, 28.873433989734348 ], [ -82.018113942650189, 28.873339150700911 ], [ -82.018267460587282, 28.873239549918708 ], [ -82.018272529155396, 28.873236433605783 ], [ -82.018330746228827, 28.873205445427352 ], [ -82.018392782849787, 28.873180859459143 ], [ -82.018457732904622, 28.873163034932038 ], [ -82.018524652336382, 28.873152230025571 ], [ -82.018592562220078, 28.873148606379278 ], [ -82.018597240757941, 28.873148623802447 ], [ -82.019523754688649, 28.873148748996197 ], [ -82.019788874226165, 28.873149683392565 ], [ -82.019818175948274, 28.873151831220163 ], [ -82.019856907858667, 28.873161292663731 ], [ -82.019892424350687, 28.873177861089147 ], [ -82.019916081555309, 28.873194609856636 ], [ -82.019925702625955, 28.873203034181127 ], [ -82.019956280287531, 28.873236356344741 ], [ -82.019980020312175, 28.873273749768174 ], [ -82.019996240803806, 28.873314135399124 ], [ -82.020003037804102, 28.873344730595573 ], [ -82.020001975623657, 28.873639177279728 ], [ -82.019988542372303, 28.873757794070684 ], [ -82.019969987301579, 28.87383603807465 ], [ -82.019936111668471, 28.873961680404783 ], [ -82.019924213599708, 28.874040202258858 ], [ -82.019924213408672, 28.874127053367143 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dividing Creek Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016645467675332, 28.874258327957975 ], [ -82.016794340096723, 28.874240972466783 ], [ -82.016906244708039, 28.874227611256423 ], [ -82.016991248599581, 28.874208626460334 ], [ -82.017068585181022, 28.874179974375441 ], [ -82.017134589205696, 28.874145055338403 ], [ -82.017193568074063, 28.874103316628073 ], [ -82.017269828387128, 28.874031561576345 ], [ -82.01734232738535, 28.87395914916836 ], [ -82.01749968262952, 28.873801455857421 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tamarind Grove Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015652701540645, 28.873147306326427 ], [ -82.016733418874296, 28.873149861542284 ], [ -82.016747192090278, 28.873150089985245 ], [ -82.016798795225554, 28.873155597783107 ], [ -82.016842411636276, 28.873166280323286 ], [ -82.016867979374766, 28.873171571057973 ], [ -82.01691890763523, 28.873187662899003 ], [ -82.016966446973683, 28.873210411416338 ], [ -82.016970002331277, 28.873212463723995 ], [ -82.016982814843246, 28.873217910274384 ], [ -82.017027870647169, 28.873242205617199 ], [ -82.017068051028915, 28.873272404401515 ], [ -82.017082272264901, 28.873285714336646 ], [ -82.017102155526018, 28.87330160596888 ], [ -82.017119769752568, 28.873320775940233 ], [ -82.017127144307779, 28.873327234622163 ], [ -82.017150338351811, 28.873354083403314 ], [ -82.017153069873771, 28.873358221930218 ], [ -82.017170427048569, 28.873378819368686 ], [ -82.017177204853155, 28.873390728027687 ], [ -82.017177447843395, 28.873390990567916 ], [ -82.017194301288981, 28.873415379539786 ], [ -82.017197185918718, 28.873421790044503 ], [ -82.017206117389534, 28.873433259016242 ], [ -82.01721150297719, 28.87344428900186 ], [ -82.017211767497173, 28.873444566878522 ], [ -82.017217444612498, 28.873451699783839 ], [ -82.017221627257612, 28.873459593513626 ], [ -82.017222250772747, 28.873461181489237 ], [ -82.017305965165363, 28.873592754834444 ], [ -82.01734004294299, 28.873645808707334 ], [ -82.017361627078017, 28.873675114619399 ], [ -82.017396315662779, 28.87371426933553 ], [ -82.017437846709427, 28.873752720296778 ], [ -82.01749968262952, 28.873801455857421 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hook Hollow Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013320584412725, 28.874145202621634 ], [ -82.013448356198339, 28.874207874397189 ], [ -82.013564294839099, 28.874282895193357 ], [ -82.013674424759699, 28.874369112217966 ], [ -82.01376381042607, 28.874452601706921 ], [ -82.01378056492355, 28.874469656296732 ], [ -82.013800940763133, 28.87449181395311 ], [ -82.013839227973818, 28.87453509726372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carriage Hill Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012948552660049, 28.874721075630831 ], [ -82.013062795052136, 28.874771518291894 ], [ -82.013127554660272, 28.874807346344809 ], [ -82.013203383848193, 28.874863006842496 ], [ -82.013272777340489, 28.874934358936908 ], [ -82.013408587432423, 28.875099821165641 ], [ -82.013599333142949, 28.875332223396537 ], [ -82.01367943042635, 28.875435551837217 ], [ -82.013827056191658, 28.875655972615426 ], [ -82.013865844746348, 28.875720216340849 ], [ -82.013914016663534, 28.875771541773062 ], [ -82.013977054838392, 28.875806289524675 ], [ -82.014033839152162, 28.875820237998518 ], [ -82.014108074253556, 28.875819514175447 ], [ -82.014184342296318, 28.875796413915907 ], [ -82.014428017481507, 28.875695308815885 ], [ -82.014545446227999, 28.875643706726645 ], [ -82.01466019121645, 28.875585465674511 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013747255044535, 28.877948128038682 ], [ -82.013598623479297, 28.877694076753158 ], [ -82.013522081818081, 28.877574735712095 ], [ -82.013488428698068, 28.877526639012441 ], [ -82.013441743154743, 28.877463074477742 ], [ -82.013397466411135, 28.877405112993387 ], [ -82.013360552274506, 28.877347377277086 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harding Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017538175892, 28.885735326033867 ], [ -82.016783100889569, 28.885732594490463 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dalecroft Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018664233116453, 28.884204104451793 ], [ -82.018672953011389, 28.884213048696228 ], [ -82.018716132254809, 28.884264079756601 ], [ -82.018752287551166, 28.884319176613385 ], [ -82.018780932815886, 28.884377597646225 ], [ -82.018801678320941, 28.88443854798528 ], [ -82.018814243002979, 28.884501207480536 ], [ -82.018818456513785, 28.884564726189794 ], [ -82.01881515810021, 28.884621106907655 ], [ -82.01881809981036, 28.884891035236226 ], [ -82.018818111456099, 28.884893126768073 ], [ -82.018813832221227, 28.884933838258682 ], [ -82.018801125503572, 28.884973166756314 ], [ -82.01878042472255, 28.885009769576516 ], [ -82.018752434998589, 28.885042401445684 ], [ -82.01871810753029, 28.885069951499251 ], [ -82.018678613971289, 28.885091481182613 ], [ -82.018635295175045, 28.885106255839183 ], [ -82.018630067835801, 28.885107513442769 ], [ -82.017560736951367, 28.885105041713089 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dalecroft Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01756512414174, 28.884020294973944 ], [ -82.018198768150611, 28.884017668453815 ], [ -82.018232839864467, 28.884018586158653 ], [ -82.018304646263999, 28.884025963897074 ], [ -82.018374994038609, 28.884040627869851 ], [ -82.018442930755427, 28.884062380601186 ], [ -82.018507539844634, 28.8840909271638 ], [ -82.018567946751233, 28.884125883298644 ], [ -82.018623333287238, 28.884166774510167 ], [ -82.018664233116453, 28.884204104451793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quiet Oak Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015828749705747, 28.887033420764173 ], [ -82.015842073054159, 28.886793634666706 ], [ -82.015840844889837, 28.886467774325677 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harding Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015840844889837, 28.886467774325677 ], [ -82.016340884382515, 28.886460626647985 ], [ -82.016468543202862, 28.886459040791401 ], [ -82.016536189301192, 28.886456784286494 ], [ -82.016599843357554, 28.886449136974367 ], [ -82.016724256267935, 28.886421110240672 ], [ -82.016776695754388, 28.886402960502064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chancey Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019254004552636, 28.888732120811401 ], [ -82.018992201353711, 28.887838816191458 ], [ -82.018974647272543, 28.887729550897411 ], [ -82.018972744612427, 28.887632469036802 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Breckenridge Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015560441943464, 28.889963237456712 ], [ -82.015962738179255, 28.889960124415428 ], [ -82.016662706098131, 28.889961981013048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Breckenridge Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016662706098131, 28.889961981013048 ], [ -82.016947766466288, 28.889962735373256 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buttonwood Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014189688558147, 28.889364328201605 ], [ -82.014373231687571, 28.889464491092415 ], [ -82.014528737388588, 28.889571515013611 ], [ -82.014672784944651, 28.889684676493232 ], [ -82.014739666673009, 28.889752575717097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harding Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014189688558147, 28.889364328201605 ], [ -82.015025664948396, 28.888759412314858 ], [ -82.015129547847735, 28.888683893058978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Apalachee Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017316952802418, 28.890567162663483 ], [ -82.017317102182631, 28.889963405624595 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Apalachee Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017317102182631, 28.889963405624595 ], [ -82.017317241637286, 28.88939967998779 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Apalachee Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017317241637286, 28.88939967998779 ], [ -82.017317309586772, 28.889122669271945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrington Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017317102182631, 28.889963405624595 ], [ -82.018567326067455, 28.889964256339209 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrington Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018567326067455, 28.889964256339209 ], [ -82.01891114709629, 28.889964488905097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Queensbury Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018567326067455, 28.889964256339209 ], [ -82.018599563421361, 28.889894160458446 ], [ -82.018605829624704, 28.889869565625183 ], [ -82.018607826338354, 28.889843200146409 ], [ -82.018611029993934, 28.889411979605011 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Queensbury Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018611029993934, 28.889411979605011 ], [ -82.018613213768816, 28.889117648958379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Highmeadow Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017317241637286, 28.88939967998779 ], [ -82.017377863222706, 28.889389092989749 ], [ -82.017417293614344, 28.889383585852066 ], [ -82.018441297266904, 28.88938368347031 ], [ -82.018494438368123, 28.889384335109465 ], [ -82.018611029993934, 28.889411979605011 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harding Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015129547847735, 28.888683893058978 ], [ -82.015155573409643, 28.888659634613632 ], [ -82.015172249983848, 28.888637165532764 ], [ -82.015191534243627, 28.888596420072471 ], [ -82.015203101522772, 28.88854888292698 ], [ -82.015204455318568, 28.8881684936566 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Granville Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01750285674639, 28.887030431523712 ], [ -82.017501763781482, 28.886722904146456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Red Cedar Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01750285674639, 28.887030431523712 ], [ -82.017523037587836, 28.887012795333231 ], [ -82.017555878677769, 28.886993193240855 ], [ -82.017592739757092, 28.886980261342636 ], [ -82.017631896493214, 28.88697460710133 ], [ -82.017662734544942, 28.886975417982498 ], [ -82.018029958186688, 28.886977271287652 ], [ -82.018112030097626, 28.886978046563925 ], [ -82.018130007565844, 28.886978313114916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Red Cedar Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018130007565844, 28.886978313114916 ], [ -82.018252453403747, 28.886981044655389 ], [ -82.018498707375443, 28.88697911196612 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buttonwood Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019297416949442, 28.890571428551503 ], [ -82.01979124660248, 28.890571359174253 ], [ -82.019899270383291, 28.890553235496316 ], [ -82.019945560517712, 28.890517012341835 ], [ -82.019981560033315, 28.890480789748509 ], [ -82.020012416122228, 28.890435514206622 ], [ -82.020022695305542, 28.890385713880821 ], [ -82.020022467558704, 28.889172449484892 ], [ -82.020022413349039, 28.888878187709505 ], [ -82.020012106109945, 28.888783120124074 ], [ -82.019976063598918, 28.888597514004864 ], [ -82.01995031970803, 28.888466232094853 ], [ -82.019929701771474, 28.888239880365646 ], [ -82.019868755576283, 28.887636517166619 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buttonwood Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017316952802418, 28.890567162663483 ], [ -82.018494943488506, 28.890567010590011 ], [ -82.019297416949442, 28.890571428551503 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chancey Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019297416949442, 28.890571428551503 ], [ -82.019301010221994, 28.889106908202674 ], [ -82.019288739987346, 28.888908190891332 ], [ -82.019254004552636, 28.888732120811401 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triggerfish Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010788045152538, 28.888400265423204 ], [ -82.011229783913237, 28.888219481615103 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fringe Tree Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008324319184752, 28.88327151407659 ], [ -82.008075995788658, 28.883568195651996 ], [ -82.007858887026956, 28.883789059230725 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fringe Tree Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007858887026956, 28.883789059230725 ], [ -82.007768102566601, 28.883876931965755 ], [ -82.007711579802589, 28.883930052516941 ], [ -82.007636238481894, 28.883999428077409 ], [ -82.007497833214259, 28.884120750498226 ], [ -82.007414277746278, 28.884191061135674 ], [ -82.00730812251642, 28.884276174191019 ], [ -82.00726345250726, 28.884310403387243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fringe Tree Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008238188135508, 28.885386773538425 ], [ -82.008595495654447, 28.885432628564168 ], [ -82.008737273344636, 28.885440258982815 ], [ -82.008853010980317, 28.885440252867379 ], [ -82.008928238239221, 28.88544024825266 ], [ -82.009061333170493, 28.885432601105428 ], [ -82.009182855234116, 28.885422406464404 ], [ -82.009330415417992, 28.885396932274379 ], [ -82.009449043375014, 28.885376553309491 ], [ -82.009590817339998, 28.885353624604186 ], [ -82.009697871201908, 28.885340885069802 ], [ -82.009796245231442, 28.88533578492131 ], [ -82.009874367057733, 28.885340873070433 ], [ -82.009992998582774, 28.885361235221396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Knotty Pine Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008238188135508, 28.885386773538425 ], [ -82.008306123978571, 28.884979368150798 ], [ -82.008343721453699, 28.884775646279103 ], [ -82.008353682865561, 28.884728023160893 ], [ -82.008362072677713, 28.88465417655603 ], [ -82.008362067026709, 28.884579959586354 ], [ -82.008353665986817, 28.884506113040963 ], [ -82.008336951647806, 28.884433369582123 ], [ -82.008312091189524, 28.884362450135743 ], [ -82.008279331754991, 28.884294064794322 ], [ -82.008238998397601, 28.884228888455024 ], [ -82.008191489980248, 28.884167570745568 ], [ -82.008137282249479, 28.884110720685175 ], [ -82.008126669645421, 28.884100836567221 ], [ -82.007858887026956, 28.883789059230725 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 125C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016116620590225, 28.893799776695371 ], [ -82.015879144211311, 28.893931416867463 ], [ -82.015816879266183, 28.893955264473554 ], [ -82.015764184812738, 28.893974683389878 ], [ -82.015685754450828, 28.893995185220955 ], [ -82.015620804469592, 28.894007056812875 ], [ -82.015564430324559, 28.894013532571794 ], [ -82.015477419900151, 28.894017857000161 ], [ -82.015136726072967, 28.894017894170897 ], [ -82.013852043264521, 28.89401425136316 ], [ -82.012250700623682, 28.894018234040512 ], [ -82.011871606837289, 28.894014431494522 ], [ -82.011780101063948, 28.894006769565941 ], [ -82.0117038458081, 28.893991437674298 ], [ -82.011592923107315, 28.893956581901236 ], [ -82.011426153457052, 28.893863284064146 ], [ -82.011255465188114, 28.893748033374344 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harding Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015204455318568, 28.8881684936566 ], [ -82.015203009632572, 28.887907165930255 ], [ -82.01520296498596, 28.887584608828014 ], [ -82.015195236496666, 28.887503121996851 ], [ -82.015168216912343, 28.88739786974827 ], [ -82.015110329370827, 28.88726885331479 ], [ -82.015075592125314, 28.887150021346585 ], [ -82.015048564591709, 28.886993838708882 ], [ -82.015043681856611, 28.886923784608577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harding Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015043681856611, 28.886923784608577 ], [ -82.015056246283535, 28.886742583242036 ], [ -82.015083184192392, 28.886611385832953 ], [ -82.015101941028576, 28.88657708917361 ], [ -82.015119257993348, 28.886554224816404 ], [ -82.015149559752203, 28.886526278202407 ], [ -82.015176978124117, 28.886509763140722 ], [ -82.015204396487377, 28.886493248073442 ], [ -82.015227269310756, 28.886486222989912 ], [ -82.015254906366451, 28.886479270471639 ], [ -82.01528521355371, 28.8864754576637 ], [ -82.015631031353109, 28.886467498293452 ], [ -82.015840844889837, 28.886467774325677 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allure Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013079991650997, 28.883407684880247 ], [ -82.012810982272427, 28.883243258761109 ], [ -82.012574168580997, 28.883102602179701 ], [ -82.012558265160635, 28.883097195194932 ], [ -82.012513932676939, 28.883087733069857 ], [ -82.012468365716302, 28.883085827811314 ], [ -82.012423211761316, 28.883091546044184 ], [ -82.012380104936057, 28.883104681901724 ], [ -82.012340599370603, 28.883124760640399 ], [ -82.012310736994252, 28.883146913824682 ], [ -82.012127239352964, 28.88332668334407 ], [ -82.01211815439342, 28.883338679310906 ], [ -82.012098154740841, 28.883374039491052 ], [ -82.012085876119016, 28.88341203192671 ], [ -82.012081739746478, 28.88345136178193 ], [ -82.012085884909638, 28.883490692737531 ], [ -82.012098171015893, 28.88352868398524 ], [ -82.012106544659588, 28.883545518407324 ], [ -82.012313790952007, 28.883964929861399 ], [ -82.012441100294041, 28.884230644624573 ], [ -82.012449234613527, 28.884242592181874 ], [ -82.012492642997273, 28.884297678357683 ], [ -82.012542671674538, 28.884348227164121 ], [ -82.012598716730793, 28.884393625082829 ], [ -82.012603919059231, 28.884397357439944 ], [ -82.012674964132174, 28.884444243691473 ], [ -82.012858129002822, 28.884552016070618 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allure Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012476335235888, 28.885089158379007 ], [ -82.012858129002822, 28.884552016070618 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Soledad Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960652448022955, 28.938166124754147 ], [ -81.960605205794735, 28.938203600278857 ], [ -81.960462717802244, 28.93830531539799 ], [ -81.960292669792494, 28.938426272638424 ], [ -81.960137283046336, 28.938537267286815 ], [ -81.96005361487056, 28.93862662268792 ], [ -81.960011625106432, 28.938701056615638 ], [ -81.959987506982316, 28.938780270805019 ], [ -81.959966123130812, 28.939104085894119 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Soledad Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959966123130812, 28.939104085894119 ], [ -81.959920047968481, 28.939802093685394 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Martinez Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959068543210833, 28.937542953012517 ], [ -81.959550609018379, 28.937441787106355 ], [ -81.960185841168638, 28.937310023162198 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramirez Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954370716021302, 28.934598290376972 ], [ -81.954369957741321, 28.934719992465077 ], [ -81.954370148465728, 28.934734087267785 ], [ -81.954370532022153, 28.934748182136062 ], [ -81.954371307396883, 28.93476227713764 ], [ -81.95437247253868, 28.934776372271774 ], [ -81.954373640909338, 28.934790123632915 ], [ -81.954375196844424, 28.934804218899952 ], [ -81.954377924937774, 28.934823471177058 ], [ -81.954380067727399, 28.93483722286955 ], [ -81.954382601310414, 28.934850974694918 ], [ -81.954385525535173, 28.934865071329479 ], [ -81.954388449912528, 28.934878823287605 ], [ -81.954391960993377, 28.934892574542886 ], [ -81.954395473251864, 28.93490598292669 ], [ -81.954399375127636, 28.934919734314633 ], [ -81.954403471887389, 28.934933487573286 ], [ -81.954407960619264, 28.934946895386386 ], [ -81.954412644235646, 28.93496030416787 ], [ -81.954417718645729, 28.934973714886599 ], [ -81.954422794235313, 28.934986779124522 ], [ -81.954428259442594, 28.935000187268731 ], [ -81.954434115594765, 28.935013254478342 ], [ -81.954440166826018, 28.935025881434424 ], [ -81.954453342173778, 28.935041822229678 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grey Dove Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006520714670927, 28.89146347241919 ], [ -82.007183812480349, 28.891562293202739 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ladyfish Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00615845206697, 28.887104162014761 ], [ -82.006205481939418, 28.886964086900925 ], [ -82.006191774061818, 28.885584536192262 ], [ -82.006191761466809, 28.885338616765008 ], [ -82.006150861538686, 28.885170672257871 ], [ -82.006079048314646, 28.8850363451166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amberjack Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005491458366862, 28.887014985417391 ], [ -82.005503471768677, 28.886106393289143 ], [ -82.005503459328892, 28.885830484101596 ], [ -82.005476176751174, 28.885398624889998 ], [ -82.00546169074822, 28.885319900549682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Merryweather Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979878471714215, 28.904917551696361 ], [ -81.979726616340898, 28.904727692374291 ], [ -81.979657178056172, 28.904633225612159 ], [ -81.979587741370722, 28.90453135184535 ], [ -81.979520408581507, 28.904431329880207 ], [ -81.979436245100757, 28.904299819585944 ], [ -81.979427157454282, 28.904287072318926 ], [ -81.97938757703173, 28.90424038851469 ], [ -81.979341538710983, 28.904198541824812 ], [ -81.979299461264873, 28.904168301998013 ], [ -81.979280840523145, 28.904155354738162 ], [ -81.979224873505629, 28.904122709010494 ], [ -81.979164770825506, 28.904096361560523 ], [ -81.979101443974884, 28.904076714950481 ], [ -81.979035855734892, 28.904064064378463 ], [ -81.978968996591504, 28.904058601284365 ], [ -81.978924838638605, 28.904058971489281 ], [ -81.97886379946523, 28.904064517302256 ], [ -81.978762767213013, 28.90408672580142 ], [ -81.978676467631445, 28.90412005018635 ], [ -81.978594371877705, 28.904164486994873 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Merryweather Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978594371877705, 28.904164486994873 ], [ -81.978331249905153, 28.904294089553005 ], [ -81.978146013151161, 28.904379255322496 ], [ -81.977977618475265, 28.904449606066322 ], [ -81.977794489743928, 28.904523657185297 ], [ -81.977611359509439, 28.904594005021352 ], [ -81.977398763352312, 28.904671756402738 ], [ -81.977228264183054, 28.904725437692104 ], [ -81.976981990399622, 28.904801330256269 ], [ -81.976720983599591, 28.904875367387046 ], [ -81.97660521516022, 28.904901276536055 ], [ -81.9765673238728, 28.904925346832851 ], [ -81.976504168927121, 28.904979045966307 ], [ -81.976462065557712, 28.905010523362733 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bachman Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013747255044535, 28.877948128038682 ], [ -82.013673207049379, 28.877973035142507 ], [ -82.013603338517385, 28.878005993043331 ], [ -82.013538769851323, 28.878046471086865 ], [ -82.013436336451548, 28.878128261883926 ], [ -82.013335141010558, 28.878207982605375 ], [ -82.0132714137481, 28.878256692140546 ], [ -82.013254429858662, 28.878270881525609 ], [ -82.013226893105511, 28.878301707633689 ], [ -82.013206483645234, 28.878336563653932 ], [ -82.013193936358675, 28.878374190809993 ], [ -82.013189706252049, 28.878413227488164 ], [ -82.013192528281891, 28.878445121790353 ], [ -82.013203513748394, 28.878520400709856 ], [ -82.013211028209653, 28.878630237208224 ], [ -82.013210807928303, 28.878932560658743 ], [ -82.013209748226103, 28.878951790612692 ], [ -82.013201321062553, 28.878990296223648 ], [ -82.013184767249044, 28.879026702934514 ], [ -82.013160685306659, 28.87905969242389 ], [ -82.013129942365936, 28.879088076276041 ], [ -82.013093653667852, 28.879110825759412 ], [ -82.013059395786073, 28.879125123185414 ], [ -82.012950188725767, 28.879163719238196 ], [ -82.012871945411206, 28.879194188972583 ], [ -82.012718657832366, 28.879261097646438 ], [ -82.012609518651956, 28.87931265046948 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bachman Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012609518651956, 28.87931265046948 ], [ -82.012497703013992, 28.879375944189427 ], [ -82.012394517921123, 28.879438227387958 ], [ -82.012239729759997, 28.879540356993488 ], [ -82.012027494903037, 28.879683310513752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barret Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012609518651956, 28.87931265046948 ], [ -82.012547294000811, 28.879217711283754 ], [ -82.012523279311139, 28.87916970373308 ], [ -82.012497046802409, 28.879091360085859 ], [ -82.012489560217261, 28.879047978076144 ], [ -82.012486141215462, 28.879002616960456 ], [ -82.01248583457658, 28.878957236622444 ], [ -82.012486018538382, 28.878863629113283 ], [ -82.012484788969587, 28.878815698950611 ], [ -82.012478669749015, 28.878770490559475 ], [ -82.012463738793542, 28.878711397418801 ], [ -82.012449805854843, 28.878674697514722 ], [ -82.01241261769195, 28.878604674027436 ], [ -82.012263565857182, 28.878402934081457 ], [ -82.012127774642764, 28.878217668866121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lowell Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012127774642764, 28.878217668866121 ], [ -82.012260957639043, 28.87813862031463 ], [ -82.012449623680567, 28.878018849505377 ], [ -82.012589820435267, 28.877924196505909 ], [ -82.012836318001419, 28.877743974807274 ], [ -82.01300634893029, 28.87760895780097 ], [ -82.013092165881346, 28.877537168171031 ], [ -82.01321024617809, 28.877434617811684 ], [ -82.013258445730742, 28.877398394004864 ], [ -82.013296476411227, 28.877374670725093 ], [ -82.013319713727213, 28.877362462200125 ], [ -82.013360552274506, 28.877347377277086 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lowell Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011508053908159, 28.878535309770111 ], [ -82.011611751826194, 28.878488317607804 ], [ -82.011840514480667, 28.878375271044781 ], [ -82.012046249037553, 28.878264365401208 ], [ -82.012127774642764, 28.878217668866121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lowell Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011033731644204, 28.878852113780038 ], [ -82.01106956239957, 28.878798640606323 ], [ -82.011114804219531, 28.878747343043468 ], [ -82.011172525296033, 28.878697541408979 ], [ -82.011226117517779, 28.878662485490395 ], [ -82.011300977260831, 28.878625666576312 ], [ -82.011508053908159, 28.878535309770111 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dorst Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011127783366817, 28.880613578036684 ], [ -82.011058699846089, 28.880528264468158 ], [ -82.010983500503812, 28.880445033844829 ], [ -82.01087335304922, 28.880338101472397 ], [ -82.010764938865151, 28.880246728166778 ], [ -82.010679716762638, 28.880182652181745 ], [ -82.010630252334423, 28.880148617432503 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dorst Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010630252334423, 28.880148617432503 ], [ -82.010494811877166, 28.880064657413723 ], [ -82.010413548101909, 28.880020545294961 ], [ -82.010335766375306, 28.879982003686699 ], [ -82.010246044476489, 28.879941667304887 ], [ -82.010118944427859, 28.87989238447032 ], [ -82.010013727856702, 28.879857222820316 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Biscayne Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011033731644204, 28.878852113780038 ], [ -82.010956869398782, 28.878816596967155 ], [ -82.010865206536707, 28.878765126733366 ], [ -82.01082007508623, 28.878721640105063 ], [ -82.010784243519808, 28.878664709366547 ], [ -82.010761247147386, 28.878590029377271 ], [ -82.010666697042467, 28.878155240632662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Biscayne Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010666697042467, 28.878155240632662 ], [ -82.010564485478014, 28.877685211148847 ], [ -82.010540571414381, 28.877572988197191 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Biscayne Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010540571414381, 28.877572988197191 ], [ -82.010514957451534, 28.877447346328523 ], [ -82.010474128170031, 28.877233346735576 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Montego Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009097923834204, 28.878723380646786 ], [ -82.008911486675686, 28.878228184583783 ], [ -82.008871310202323, 28.878139426701168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Montego Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008871310202323, 28.878139426701168 ], [ -82.008742034167369, 28.877853827996166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Newburn Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011508053908159, 28.878535309770111 ], [ -82.011445848650084, 28.878386890629777 ], [ -82.01138243751835, 28.878185088666864 ], [ -82.011319490740561, 28.877902043365829 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grenadier Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011319490740561, 28.877902043365829 ], [ -82.01146988238564, 28.877826971574162 ], [ -82.011676932416634, 28.877714948428643 ], [ -82.011977243464571, 28.877533078077416 ], [ -82.012170109605805, 28.877402909168616 ], [ -82.012447578943579, 28.877194824233694 ], [ -82.012475913095486, 28.877172059376004 ], [ -82.012520326530961, 28.877123283338292 ], [ -82.012546594749949, 28.877063032510268 ], [ -82.012550290944702, 28.876997494378422 ], [ -82.012520173464949, 28.876757790572256 ], [ -82.012480431574517, 28.87644149838939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grenadier Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012480431574517, 28.87644149838939 ], [ -82.012469615771323, 28.87635541069449 ], [ -82.012449122480689, 28.876257671515912 ], [ -82.012422040398008, 28.876183616535339 ], [ -82.012385624959748, 28.8761127285401 ], [ -82.012340345791969, 28.876045916100299 ], [ -82.01231455828065, 28.876014307081771 ], [ -82.012286780147605, 28.87598403273504 ], [ -82.01222561598064, 28.875927871499073 ], [ -82.012176038898971, 28.875890506905296 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Newburn Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011319490740561, 28.877902043365829 ], [ -82.011226607631386, 28.877474931625741 ], [ -82.011205300273815, 28.877376949617361 ], [ -82.011201501875789, 28.877344588853763 ], [ -82.011202403158705, 28.877316630955505 ], [ -82.011209989788838, 28.877282979007344 ], [ -82.011221373004702, 28.877254294835502 ], [ -82.011239359126606, 28.877225766241782 ], [ -82.011261300513709, 28.877200168010937 ], [ -82.011278644210037, 28.87718490059526 ], [ -82.011307620678707, 28.877165306621301 ], [ -82.011362845420507, 28.877133221793205 ], [ -82.011549586975079, 28.877017882683319 ], [ -82.011730371327687, 28.876895411105984 ], [ -82.011904845843276, 28.876766042615085 ], [ -82.012072673271774, 28.876630033517163 ], [ -82.012126458679859, 28.876583807618253 ], [ -82.012159134780489, 28.876557475655048 ], [ -82.012188630547783, 28.876536970120959 ], [ -82.012219617040984, 28.876518242889777 ], [ -82.012251954853284, 28.876501380593503 ], [ -82.012285501501154, 28.876486455427653 ], [ -82.012320104249909, 28.876473537784083 ], [ -82.012355609338215, 28.87646268181355 ], [ -82.012391859929181, 28.876453938960189 ], [ -82.012428692008598, 28.876447345329858 ], [ -82.012480431574517, 28.87644149838939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tamarind Grove Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012948552660049, 28.874721075630831 ], [ -82.01321608346268, 28.874298336731623 ], [ -82.013320584412725, 28.874145202621634 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carriage Hill Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01466019121645, 28.875585465674511 ], [ -82.014855576256281, 28.875484527227258 ], [ -82.015120136948227, 28.875347851721827 ], [ -82.015379482517147, 28.875213487964096 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hook Hollow Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013839227973818, 28.87453509726372 ], [ -82.013878218966184, 28.874582455291364 ], [ -82.013949458905486, 28.874669247958273 ], [ -82.014205078426983, 28.87498067287715 ], [ -82.014343904380993, 28.875149808030994 ], [ -82.014429268370023, 28.875253804098431 ], [ -82.014487394318465, 28.875328627869976 ], [ -82.01466019121645, 28.875585465674511 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rambling Rose Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016645467675332, 28.874258327957975 ], [ -82.016596556027878, 28.873942263555612 ], [ -82.016582549490167, 28.873885666490754 ], [ -82.016556376775796, 28.873794057918257 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tamarind Grove Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014925005991458, 28.873148061183862 ], [ -82.015535085182918, 28.873147292297453 ], [ -82.015652701540645, 28.873147306326427 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tamarind Grove Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012176038898971, 28.875890506905296 ], [ -82.012204479312246, 28.87585815152174 ], [ -82.012295612619141, 28.875749760037067 ], [ -82.012433028953268, 28.875570824266426 ], [ -82.012594909089117, 28.875320240679581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tamarind Grove Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012594909089117, 28.875320240679581 ], [ -82.012675168312981, 28.875196000053162 ], [ -82.012948552660049, 28.874721075630831 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Montbrook Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011236587493528, 28.876140521716742 ], [ -82.011411472172071, 28.875998912285173 ], [ -82.011509729213259, 28.875912093003951 ], [ -82.011616955309506, 28.875810163869996 ], [ -82.011694672541537, 28.875731482181802 ], [ -82.011779625625607, 28.875640142354889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ansley Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010546782410131, 28.87501224159486 ], [ -82.010618866986619, 28.875008313972021 ], [ -82.010695911308247, 28.875006942163395 ], [ -82.011310377576962, 28.875006061216933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ansley Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009900127276339, 28.875213491942034 ], [ -82.009926152716474, 28.875177601980376 ], [ -82.009934331273911, 28.87516842319782 ], [ -82.009941222553024, 28.875162177888381 ], [ -82.009971505362131, 28.875138525550362 ], [ -82.009989147717093, 28.875128753296643 ], [ -82.010032436674464, 28.875110982151405 ], [ -82.010069290732531, 28.875101684963411 ], [ -82.010300767860102, 28.875048984951981 ], [ -82.010410627335929, 28.875028266492073 ], [ -82.010485328447743, 28.875018156175514 ], [ -82.010546782410131, 28.87501224159486 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ansley Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011310377576962, 28.875006061216933 ], [ -82.01132020941678, 28.875005833960756 ], [ -82.011360255934392, 28.875000431406153 ], [ -82.011398244310897, 28.87498804337935 ], [ -82.011432623596875, 28.874969178904678 ], [ -82.011461984339192, 28.874944608664148 ], [ -82.011485125211195, 28.874915337922396 ], [ -82.011493807294201, 28.874899818526202 ], [ -82.011715773305028, 28.874496593139003 ], [ -82.011984721195233, 28.874046845219798 ], [ -82.012201086966229, 28.873711737883198 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ansley Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012201086966229, 28.873711737883198 ], [ -82.012262916854993, 28.873620533248616 ], [ -82.012391961684315, 28.873433846508334 ], [ -82.012400059526783, 28.873421140480954 ], [ -82.012416600429333, 28.873384763614343 ], [ -82.012425020258846, 28.873346288699633 ], [ -82.012425014729715, 28.873307105310751 ], [ -82.012416587089575, 28.87326863096462 ], [ -82.012400037860374, 28.873232257886357 ], [ -82.012375967905669, 28.873199296163939 ], [ -82.012345245622726, 28.873170942171228 ], [ -82.012308981307314, 28.87314821721418 ], [ -82.012268489222393, 28.873131943172734 ], [ -82.012225228139258, 28.873122709121397 ], [ -82.012190406450443, 28.873120618765483 ], [ -82.011116789563715, 28.873120382488544 ], [ -82.009880191076647, 28.873123494659175 ], [ -82.00946211798373, 28.873225627203158 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971798607766871, 28.956194405966425 ], [ -81.971548994884657, 28.956098131810968 ], [ -81.971279964352362, 28.955974923229832 ], [ -81.970997212202633, 28.955832393072132 ], [ -81.970903874947169, 28.955788907606703 ], [ -81.970827005649483, 28.955767159166079 ], [ -81.970739154374343, 28.955747821006199 ], [ -81.970623844681853, 28.95573572216027 ], [ -81.970555205258449, 28.955735707063262 ], [ -81.97045362050774, 28.955733269221401 ], [ -81.970371254432834, 28.955733250996879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Margarita Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979237776285231, 28.951964483194701 ], [ -81.979121673295779, 28.951964465072784 ], [ -81.978981875756006, 28.951964443119579 ], [ -81.978799428641025, 28.95196441515272 ], [ -81.978721237753419, 28.951964401802329 ], [ -81.978657263667017, 28.951958139601999 ], [ -81.978605139985547, 28.95193937530847 ], [ -81.97856249711387, 28.951912276241806 ], [ -81.978524594354795, 28.951872673960864 ], [ -81.978500907105754, 28.951833073960294 ], [ -81.978484332802296, 28.951780971138628 ], [ -81.978479602474749, 28.951737205599787 ], [ -81.978477245846378, 28.951674685399581 ], [ -81.978477263639675, 28.951585070651703 ], [ -81.978479657611985, 28.951474619653553 ], [ -81.978474935616035, 28.951391258827634 ], [ -81.978470214215804, 28.951309981393216 ], [ -81.978460752016787, 28.951234955174915 ], [ -81.97845129246025, 28.951147424990499 ], [ -81.978434723254182, 28.95106197795041 ], [ -81.978420524112195, 28.950984867568199 ], [ -81.978403953496283, 28.950916091273008 ], [ -81.978375008470749, 28.950835113077165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Margarita Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980288314702747, 28.951964687728779 ], [ -81.980171333574972, 28.951964626170316 ], [ -81.979915435095634, 28.951964587870737 ], [ -81.97968322911575, 28.951964551793743 ], [ -81.979413114112248, 28.95196451037242 ], [ -81.979237776285231, 28.951964483194701 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santo Domingo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978375008470749, 28.950835113077165 ], [ -81.978569840547181, 28.950782742084449 ], [ -81.978688320033797, 28.950738997180995 ], [ -81.978775997414445, 28.950693162981398 ], [ -81.978870784346697, 28.950645245555354 ], [ -81.978948984095425, 28.950597325445862 ], [ -81.979001938383234, 28.950559720835972 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santo Domingo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979001938383234, 28.950559720835972 ], [ -81.979107762208741, 28.950461889267775 ], [ -81.979190706068167, 28.950384793235894 ], [ -81.979249953641343, 28.950332704108163 ], [ -81.979354227984629, 28.95023477104478 ], [ -81.979451390916608, 28.950136836803718 ], [ -81.979560404535448, 28.950032653226188 ], [ -81.979652827830705, 28.949949307275073 ], [ -81.979740513398966, 28.949861791046789 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Margarita Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978375008470749, 28.950835113077165 ], [ -81.97834712392023, 28.950741026544613 ], [ -81.978323452123362, 28.950634737186757 ], [ -81.978299784344912, 28.950509692776688 ], [ -81.978285594063422, 28.950386734197842 ], [ -81.978264301555058, 28.950240849918224 ], [ -81.978257230096602, 28.950067876622839 ], [ -81.978261433938513, 28.949899041267948 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Almanza Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97750463976783, 28.949586704657403 ], [ -81.977506174304395, 28.949662157311728 ], [ -81.97750523595019, 28.949730970481262 ], [ -81.977502213397131, 28.950088272325686 ], [ -81.977508074760948, 28.95020219674058 ], [ -81.977496286944074, 28.950261745143308 ], [ -81.977473093665026, 28.95031190687811 ], [ -81.977428929552502, 28.950353973307156 ], [ -81.97737372514338, 28.950396036046001 ], [ -81.977303805998574, 28.950418679833568 ], [ -81.977134166107859, 28.950461047794473 ], [ -81.976961579236814, 28.950506005513766 ], [ -81.976795985852448, 28.950544812398327 ], [ -81.976735163824927, 28.950553718266406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Almanza Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976735163824927, 28.950553718266406 ], [ -81.976507378358633, 28.950584931080602 ], [ -81.976260795427748, 28.950587380505862 ], [ -81.976099246378723, 28.95056990135889 ], [ -81.975926363698036, 28.950534970545803 ], [ -81.975832838053279, 28.95051002422262 ], [ -81.975739316423187, 28.950472614472179 ], [ -81.975658890020071, 28.950443424219294 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cazaras Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975658890020071, 28.950443424219294 ], [ -81.975620268166523, 28.950509986493394 ], [ -81.975583365677394, 28.950563281764875 ], [ -81.975540035725501, 28.950622665419228 ], [ -81.975512529400874, 28.950657046736382 ], [ -81.975475674550566, 28.950699417933894 ], [ -81.975429324304486, 28.950750415995174 ], [ -81.975387807829918, 28.950792997446797 ], [ -81.97535093491139, 28.950829026393968 ], [ -81.975299905872703, 28.950878874025896 ], [ -81.97522336050794, 28.950958631503084 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cazaras Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975761448244143, 28.949472889423362 ], [ -81.97578124276545, 28.949582582894486 ], [ -81.975804685519421, 28.949699831013493 ], [ -81.975810330875831, 28.949799546168617 ], [ -81.975810314287216, 28.949874332666393 ], [ -81.975807461367566, 28.949944133484529 ], [ -81.975798946625744, 28.950001468107686 ], [ -81.975788491181845, 28.950053515847383 ], [ -81.975779085182623, 28.950101182244726 ], [ -81.975769341828666, 28.950152520007219 ], [ -81.975752941641403, 28.950221479231082 ], [ -81.975728212608189, 28.950285708927375 ], [ -81.975694424844207, 28.950364618167907 ], [ -81.975658890020071, 28.950443424219294 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Margarita Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978261433938513, 28.949899041267948 ], [ -81.978262012559568, 28.949855307251944 ], [ -81.978259658455286, 28.949786533242605 ], [ -81.978262042167572, 28.949715677513552 ], [ -81.978276279584023, 28.949615648089591 ], [ -81.978283407696253, 28.949526035373939 ], [ -81.978285788594746, 28.949463515920797 ], [ -81.978281061830828, 28.949413499278748 ], [ -81.978264488762008, 28.949353060132111 ], [ -81.978242838760508, 28.949307331131067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Margarita Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978242838760508, 28.949307331131067 ], [ -81.978212384027088, 28.949246767001462 ], [ -81.978179229003743, 28.949177989757164 ], [ -81.978141334798011, 28.949098791152348 ], [ -81.978101073450674, 28.949017507851963 ], [ -81.978052673092066, 28.948926856502272 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Estevez Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977239600229595, 28.947822067038313 ], [ -81.977260901471638, 28.947818032908497 ], [ -81.97729047367568, 28.947810757342729 ], [ -81.977328323301876, 28.947803481371775 ], [ -81.977359904879989, 28.947797197751527 ], [ -81.977399832281449, 28.94778774939212 ], [ -81.977438333153074, 28.94777644927531 ], [ -81.977476184239222, 28.947767092576164 ], [ -81.977517584918587, 28.947756695218466 ], [ -81.977562533591936, 28.947743178316468 ], [ -81.977605119196227, 28.947727580316208 ], [ -81.977652433862218, 28.947711982191919 ], [ -81.977702116354294, 28.947695345005339 ], [ -81.977758895393876, 28.94767454670701 ], [ -81.977857078155992, 28.947628787017141 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cazaras Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975404652299346, 28.947652791933812 ], [ -81.975457564613379, 28.947901626899821 ], [ -81.975558728633786, 28.94841638621255 ], [ -81.975761448244143, 28.949472889423362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Margarita Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980240543081905, 28.949403385142734 ], [ -81.980321089556753, 28.949472167978342 ], [ -81.980470336434138, 28.949593062818469 ], [ -81.980624322132996, 28.949724376950101 ], [ -81.980721455051096, 28.949793163757292 ], [ -81.980818586827368, 28.94985778190285 ], [ -81.980925067798992, 28.949925261582749 ], [ -81.981044461195282, 28.949993346648366 ], [ -81.98116921983987, 28.95006206667717 ], [ -81.9813042607922, 28.950147529164475 ], [ -81.981394286141324, 28.950212146796694 ], [ -81.981458250356511, 28.950262172482269 ], [ -81.981531690248744, 28.950324702515264 ], [ -81.981628822449707, 28.950403909235749 ], [ -81.981761489000391, 28.950514379768315 ], [ -81.981893081725588, 28.950630821392735 ], [ -81.981991288510628, 28.950710307704991 ], [ -81.982043407790741, 28.950754078621987 ], [ -81.982083787703999, 28.950794826163364 ], [ -81.982164153486679, 28.950859893121546 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Margarita Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982164153486679, 28.950859893121546 ], [ -81.982178947387084, 28.950871845060067 ], [ -81.982329209952781, 28.950992529522402 ], [ -81.982417720841184, 28.951066730409629 ], [ -81.98249116325735, 28.951127176519854 ], [ -81.982543280503364, 28.95117928351814 ], [ -81.982581182401404, 28.951231390441759 ], [ -81.982595389545608, 28.951291826927839 ], [ -81.982593008422526, 28.951358515933908 ], [ -81.982569304356474, 28.951421032657809 ], [ -81.982521906266697, 28.951468958911903 ], [ -81.982469769963927, 28.951521052212797 ], [ -81.982393936630828, 28.951587730621814 ], [ -81.982280184278991, 28.951700253020178 ], [ -81.982175911942107, 28.951794020643124 ], [ -81.982064531382235, 28.951898205993864 ], [ -81.981919972846796, 28.952031562366262 ], [ -81.98181333037293, 28.952129496166361 ], [ -81.981775411979513, 28.95215866840309 ], [ -81.981732759251059, 28.952181585291378 ], [ -81.981685367156672, 28.952192000258162 ], [ -81.981633238317855, 28.952198244161458 ], [ -81.981588219253894, 28.952196153653208 ], [ -81.981550311001158, 28.952185727838394 ], [ -81.981507662571786, 28.952173218865013 ], [ -81.981446061253067, 28.952154454356368 ], [ -81.981384458284438, 28.952133605524573 ], [ -81.981311008561164, 28.952112755003562 ], [ -81.981228082881799, 28.952091904010221 ], [ -81.981138047298842, 28.952068965860352 ], [ -81.981007656133826, 28.952045282928296 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Margarita Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981007656133826, 28.952045282928296 ], [ -81.980851353422793, 28.952016824829293 ], [ -81.980673651493859, 28.951991791255438 ], [ -81.980488837745781, 28.951975092682765 ], [ -81.980288314702747, 28.951964687728779 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chaparral Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976763345768475, 28.945049901502077 ], [ -81.976785588179908, 28.945063882791036 ], [ -81.976806409002663, 28.945077114926217 ], [ -81.976830699099082, 28.945090347660095 ], [ -81.976856148360099, 28.94510358059048 ], [ -81.976882753479714, 28.945117830600331 ], [ -81.976903573986164, 28.945128012067759 ], [ -81.976930181399041, 28.945141243379801 ], [ -81.97696719753975, 28.945159566316971 ], [ -81.977001897654404, 28.945176871960875 ], [ -81.977034289149415, 28.945192141625814 ], [ -81.977067834230056, 28.945209445249418 ], [ -81.977109476573077, 28.945228787630473 ], [ -81.977152275933605, 28.945253215519717 ], [ -81.977196231622656, 28.945276628513181 ], [ -81.977255224313993, 28.945315306339907 ], [ -81.97732809783912, 28.945365181246924 ], [ -81.977459960978592, 28.945454749831818 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chaparral Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976288446017193, 28.944609868981448 ], [ -81.976314835227114, 28.944647607558618 ], [ -81.976335653093216, 28.944673050498512 ], [ -81.976361098441771, 28.944702564498055 ], [ -81.976384229743488, 28.944726990955427 ], [ -81.976403891241048, 28.944749380320417 ], [ -81.976425866719239, 28.944772789682023 ], [ -81.976443213701629, 28.944792127979909 ], [ -81.976460564234714, 28.94480942980076 ], [ -81.976480226463167, 28.944828767599489 ], [ -81.976499888699109, 28.944848104493005 ], [ -81.976523021556773, 28.944870495353289 ], [ -81.976543841377364, 28.944887799577611 ], [ -81.97656234746114, 28.944903064210447 ], [ -81.976583167527096, 28.944919349739834 ], [ -81.976601674878935, 28.944933601092387 ], [ -81.976624807910227, 28.944950903002411 ], [ -81.976646785101167, 28.94496718691979 ], [ -81.97667223235797, 28.944984491030812 ], [ -81.976694209562979, 28.945000776744976 ], [ -81.976712715919007, 28.945015026277343 ], [ -81.976735850473631, 28.945030293497666 ], [ -81.976763345768475, 28.945049901502077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Augustine Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970267069847878, 28.947962291842678 ], [ -81.970086718812922, 28.94810193193274 ], [ -81.969868050877523, 28.94825719085873 ], [ -81.969580795923221, 28.948426250651956 ], [ -81.969348396949968, 28.948539410049062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Augustine Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968248122398293, 28.949032558545095 ], [ -81.968122666836237, 28.949059592977221 ], [ -81.967957152051454, 28.94907668075961 ], [ -81.96776973773909, 28.949076635751531 ], [ -81.967526349570818, 28.949053027080193 ], [ -81.967338949519728, 28.949001602239854 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Augustine Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969348396949968, 28.948539410049062 ], [ -81.969076893617384, 28.948683033132998 ], [ -81.968745825529382, 28.948845657577703 ], [ -81.968482920672059, 28.948967622836793 ], [ -81.968344172022427, 28.949012547704626 ], [ -81.968248122398293, 28.949032558545095 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barcelona Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955317589092132, 28.943230790359721 ], [ -81.955320235397295, 28.943252689894653 ], [ -81.955329675913887, 28.943323505000723 ], [ -81.955340303923933, 28.943388070317038 ], [ -81.95534856404737, 28.943446387366148 ], [ -81.955355641573604, 28.943506787415064 ], [ -81.955356792994337, 28.943581762935803 ], [ -81.955360321369085, 28.94363487398051 ], [ -81.955360299812355, 28.943684855592757 ], [ -81.955361462913729, 28.943732759618285 ], [ -81.955357881535349, 28.943802527329822 ], [ -81.955351915877216, 28.943908740567032 ], [ -81.955342398589025, 28.944018077259692 ], [ -81.955326466299766, 28.944164660269809 ], [ -81.955268245099219, 28.94470147626425 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Madero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972169712897895, 28.942693497418656 ], [ -81.972321782971179, 28.942906404322947 ], [ -81.972421335665672, 28.943046140488587 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Madero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972421335665672, 28.943046140488587 ], [ -81.972464590631631, 28.943112385846206 ], [ -81.972489716717575, 28.943144971021507 ], [ -81.972510872627055, 28.943175228361621 ], [ -81.972532034298695, 28.943203158685304 ], [ -81.972554513090216, 28.943231089275901 ], [ -81.972580960445129, 28.943263673802516 ], [ -81.972607409151621, 28.943295096170434 ], [ -81.972633856848731, 28.943326516728209 ], [ -81.972668240553801, 28.943363759596483 ], [ -81.972707914677031, 28.943403328745294 ], [ -81.972752878610237, 28.943447553890778 ], [ -81.972804455837135, 28.943491780366305 ], [ -81.972858681491942, 28.943540661387576 ], [ -81.972921979532714, 28.943588567040944 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Madero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975517529376347, 28.943692438900008 ], [ -81.975594266806652, 28.943640091964884 ], [ -81.975633958425135, 28.943611010179975 ], [ -81.975678941116954, 28.943577275318308 ], [ -81.975715987930172, 28.943549355181002 ], [ -81.976092729020166, 28.943229028740006 ], [ -81.976499445280155, 28.942881737861168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Madero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97652687773558, 28.940624757626846 ], [ -81.97642289189929, 28.940488188006388 ], [ -81.976304569834767, 28.940331625445783 ], [ -81.976285843166508, 28.940306904691376 ], [ -81.976267115814736, 28.940285180451284 ], [ -81.976250940885492, 28.940266453179465 ], [ -81.976235617499356, 28.940251469673381 ], [ -81.976214334315955, 28.940232740585994 ], [ -81.976199862475127, 28.940221503550553 ], [ -81.97618283600093, 28.940208017542389 ], [ -81.976170916751713, 28.940199027670023 ], [ -81.976156443720612, 28.940188539533381 ], [ -81.976141118793493, 28.940180297954203 ], [ -81.976121535454524, 28.940169807998746 ], [ -81.976102806399268, 28.940160067999269 ], [ -81.976081520314239, 28.940149577733372 ], [ -81.976061089014976, 28.940142084134497 ], [ -81.97603809845964, 28.940134590073498 ], [ -81.976015962361345, 28.940127097064249 ], [ -81.975998932625757, 28.940123347682814 ], [ -81.975977647033446, 28.94011960024099 ], [ -81.975963171255017, 28.940116600217966 ], [ -81.975948697353147, 28.940114350902004 ], [ -81.975927277081283, 28.940111923483563 ], [ -81.975907806413232, 28.94011101948497 ], [ -81.975887311016606, 28.940110114396315 ], [ -81.975870914325057, 28.940110111436169 ], [ -81.975849393987957, 28.940110107547998 ], [ -81.975822748767229, 28.940111005022757 ], [ -81.975796103722843, 28.940115506253136 ], [ -81.975760640667502, 28.940122629748693 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972434515362153, 28.937895863195529 ], [ -81.972286788364244, 28.937438103456088 ], [ -81.972238795003889, 28.937265102991702 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Angelita Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961330631019322, 28.93442163943622 ], [ -81.961065964948162, 28.934848898395579 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959911562919146, 28.929314065179838 ], [ -81.959889364764123, 28.929337971161026 ], [ -81.959844919367896, 28.929385331047627 ], [ -81.959803168313243, 28.929432692629476 ], [ -81.959758723402501, 28.929481237200321 ], [ -81.959719660708615, 28.929533335708715 ], [ -81.959669826327357, 28.929591354531333 ], [ -81.959634804311776, 28.929636348657141 ], [ -81.959589009879224, 28.929694368665292 ], [ -81.959551293702944, 28.929746468431237 ], [ -81.959517619392471, 28.929793829651629 ], [ -81.959486636928318, 28.929842378194625 ], [ -81.959450266867094, 28.929895663953307 ], [ -81.959415241499684, 28.929951316828333 ], [ -81.959390993570835, 28.929991578905973 ], [ -81.959355967674668, 28.930048415575442 ], [ -81.959323632320149, 28.930112360428389 ], [ -81.959292646969615, 28.93017038301943 ], [ -81.959268394560567, 28.930216565931051 ], [ -81.959240099541944, 28.93027695875271 ], [ -81.959213149596224, 28.930336167263977 ], [ -81.95919293727691, 28.930384719011585 ], [ -81.959171375352796, 28.930438007392599 ], [ -81.95914711926801, 28.930498402324961 ], [ -81.95912690454773, 28.930552874919247 ], [ -81.959106687375339, 28.930610903453086 ], [ -81.959085121614251, 28.930673665912558 ], [ -81.959067598722882, 28.930729324933349 ], [ -81.959048537415555, 28.930795103619623 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alameda Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954241169025082, 28.927310528246437 ], [ -81.954242839019273, 28.927544439819751 ], [ -81.954242647981687, 28.927960684744335 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966521133722381, 28.879679687985369 ], [ -81.966524517215959, 28.879671935351325 ], [ -81.966536805548586, 28.879631616359294 ], [ -81.966540952449066, 28.879590031210821 ], [ -81.966536833473612, 28.87954844400036 ], [ -81.966524569191733, 28.879508119784212 ], [ -81.966507375757971, 28.8794747195018 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966507375757971, 28.8794747195018 ], [ -81.966504537500157, 28.87947028307795 ], [ -81.966477343904032, 28.879436079952676 ], [ -81.966454458968272, 28.879414843072666 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007411539420985, 28.927155663225474 ], [ -82.007409979443807, 28.927155647063746 ], [ -82.006818681481676, 28.92714985342386 ], [ -82.00629187809794, 28.927146255145871 ], [ -82.005933815733115, 28.927142649957091 ], [ -82.00500368003884, 28.927135442183335 ], [ -82.004433387387792, 28.927136464137071 ], [ -82.004040898023277, 28.9271345927264 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98924071989353, 28.874508256601406 ], [ -81.989551761484094, 28.874714787793128 ], [ -81.989725736776748, 28.874823858156475 ], [ -81.98989419058195, 28.874918230268747 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 100", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953688686155331, 28.910783875036316 ], [ -81.953686118929681, 28.91140474226312 ], [ -81.953698945030482, 28.912159017586212 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 105th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957100786419275, 28.910428910377796 ], [ -81.957033764606507, 28.910440230810199 ], [ -81.956940971439778, 28.910440200159009 ], [ -81.956848943716736, 28.910426783204542 ], [ -81.956732209879405, 28.910387968472989 ], [ -81.956626548753363, 28.910342574057569 ], [ -81.956477075147802, 28.910274486106498 ], [ -81.955972292704899, 28.910228140028188 ], [ -81.955505319289216, 28.910296848434431 ], [ -81.955363545444996, 28.910314944746208 ], [ -81.955193437169825, 28.910289939527029 ], [ -81.955036189306512, 28.910321638777049 ], [ -81.954917618253603, 28.910326134843707 ], [ -81.9546907951067, 28.910319256028771 ], [ -81.954404691959851, 28.910303282297782 ], [ -81.95421651586804, 28.910332701702771 ], [ -81.953673293286997, 28.910296418868914 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 100", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953673293286997, 28.910296418868914 ], [ -81.953688686155331, 28.910783875036316 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 100", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953621996937429, 28.904729149437941 ], [ -81.953619431344222, 28.904772762940436 ], [ -81.953627125322768, 28.905693800876385 ], [ -81.953647641957573, 28.908703204222171 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 100", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953647641957573, 28.908703204222171 ], [ -81.953652772522432, 28.909283021561862 ], [ -81.953663032435955, 28.910080911496237 ], [ -81.953673293286997, 28.910296418868914 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969465081872102, 28.918521271183398 ], [ -81.96947639849968, 28.918518612890935 ], [ -81.969518993347791, 28.918501433844639 ], [ -81.969557878467683, 28.918478409767062 ], [ -81.969577523433955, 28.91846212777951 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969577523433955, 28.91846212777951 ], [ -81.969591880432134, 28.918450228847135 ], [ -81.969620217676663, 28.91841723197928 ], [ -81.969641913481851, 28.918380796752359 ], [ -81.969656383092314, 28.918341608782384 ], [ -81.969663428180866, 28.918301044931233 ], [ -81.96966265884835, 28.918259792661662 ], [ -81.969646988334389, 28.918201401501403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969646988334389, 28.918201401501403 ], [ -81.969638259999201, 28.9181803742086 ], [ -81.969615414327507, 28.918144616428339 ], [ -81.969585923090477, 28.91811263865976 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Merryweather Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981226113025215, 28.907441188234856 ], [ -81.981180175374732, 28.907347651354431 ], [ -81.981104432068548, 28.907184660358372 ], [ -81.981084795397905, 28.907132800701731 ], [ -81.981059556835334, 28.907036488531009 ], [ -81.981042733783823, 28.906952525499143 ], [ -81.981031521101201, 28.906878441621213 ], [ -81.981031525328007, 28.906861155394175 ], [ -81.981030300054726, 28.9068439303487 ], [ -81.981018019548785, 28.906738662892739 ], [ -81.980997605203072, 28.906634375977124 ], [ -81.980969151289443, 28.906531559559539 ], [ -81.980932788995915, 28.906430690969469 ], [ -81.980924965466272, 28.906411706400394 ], [ -81.980871665077672, 28.906295635255756 ], [ -81.9808604386985, 28.906268442890543 ], [ -81.98080814698919, 28.906154935292221 ], [ -81.980748304672034, 28.906044350029763 ], [ -81.980697732037569, 28.90596223810056 ], [ -81.980574286936928, 28.905767136098163 ], [ -81.980476091104421, 28.905631303329866 ], [ -81.980391921479182, 28.905515227466491 ], [ -81.980271276578463, 28.905369515591392 ], [ -81.980145018905858, 28.905223800064288 ], [ -81.980032786932412, 28.905100311926372 ], [ -81.979923363338855, 28.904979293705619 ], [ -81.979878471714215, 28.904917551696361 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Merryweather Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981409158067478, 28.907814532443954 ], [ -81.981226113025215, 28.907441188234856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Golden Grove Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978146218241065, 28.892092112869719 ], [ -81.978008829574989, 28.892047098059326 ], [ -81.9778430183257, 28.891986909836547 ], [ -81.977694785469694, 28.891937382310473 ], [ -81.977566855227877, 28.891893280850873 ], [ -81.97751364923694, 28.8918464389326 ], [ -81.977481729152331, 28.891799602382203 ], [ -81.977465781437388, 28.89172232310381 ], [ -81.977469458070885, 28.891624161587394 ], [ -81.977469504217481, 28.891418240454747 ], [ -81.977472476893169, 28.891219881084421 ], [ -81.977472519644209, 28.891029428071811 ], [ -81.977475668804701, 28.890914607286724 ], [ -81.97748993191243, 28.890799723404402 ], [ -81.977505912291107, 28.890727134230662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982519028779677, 28.88151671783347 ], [ -81.982471402409018, 28.881532147264046 ], [ -81.982414052926828, 28.881561164961344 ], [ -81.982383972150345, 28.881584538727868 ], [ -81.98235447833315, 28.881616506084889 ], [ -81.982331621836934, 28.881652599635924 ], [ -81.982315990332737, 28.88169144435458 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982315990332737, 28.88169144435458 ], [ -81.982307977675646, 28.88173200896491 ], [ -81.982307774736356, 28.881773262162881 ], [ -81.98231377589336, 28.881804457325114 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982860503674033, 28.881745389058562 ], [ -81.982858328958002, 28.881716610775023 ], [ -81.982847398999567, 28.881676731253751 ], [ -81.982828851604609, 28.881638913413397 ], [ -81.982803467794994, 28.881604188682047 ], [ -81.982791589924616, 28.881592717094946 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982656576953559, 28.881518337351011 ], [ -81.982649198073972, 28.881516162748156 ], [ -81.982602914284783, 28.881509966938669 ], [ -81.982556042925623, 28.881510649281164 ], [ -81.982519028779677, 28.88151671783347 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982639352395623, 28.881992635314138 ], [ -81.98268427387913, 28.881980953635026 ], [ -81.982726462229877, 28.881963081799277 ], [ -81.9827643530096, 28.881939023216706 ], [ -81.98277785571814, 28.881926821331181 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982856557001725, 28.88179877231827 ], [ -81.982861447827531, 28.88175786440042 ], [ -81.982860503674033, 28.881745389058562 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982382257588455, 28.881920773939619 ], [ -81.982382548685052, 28.881921097904272 ], [ -81.98238801636758, 28.88192487926851 ], [ -81.982417500695021, 28.881948603756644 ], [ -81.982457143945624, 28.881970266009425 ], [ -81.982500498356046, 28.881986086334713 ], [ -81.982546195475081, 28.881995030512702 ], [ -81.98254792084623, 28.881995120066009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98254792084623, 28.881995120066009 ], [ -81.982592871739698, 28.881997442140108 ], [ -81.982639352395623, 28.881992635314138 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 114C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021252254624159, 28.901839062622066 ], [ -82.021250614713594, 28.90270057568198 ], [ -82.021250659611937, 28.902925547547898 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Regatta Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01625311277715, 28.906082602424078 ], [ -82.01624039308831, 28.906079963779032 ], [ -82.016220544860715, 28.906078436689498 ], [ -82.016200696070797, 28.906079967485283 ], [ -82.016181453757085, 28.906084507371993 ], [ -82.016163396233168, 28.906091918231386 ], [ -82.016147077190169, 28.906101977132337 ], [ -82.016132990832659, 28.906114375432463 ], [ -82.016121566754308, 28.906128736824648 ], [ -82.016113147380054, 28.906144626362341 ], [ -82.016107994120077, 28.906161560384231 ], [ -82.016106259686197, 28.906179026367774 ], [ -82.016106654702497, 28.906187375286244 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Regatta Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016106654702497, 28.906187375286244 ], [ -82.01610800039812, 28.906196491950787 ], [ -82.016113157728597, 28.90621342478395 ], [ -82.016121580865246, 28.906229311476721 ], [ -82.016133011331078, 28.906243671133474 ], [ -82.016147100418024, 28.906256066179189 ], [ -82.016163422520165, 28.90626612040397 ], [ -82.016181481287433, 28.906273527985451 ], [ -82.016195705443423, 28.906277182449163 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edgewater Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016106654702497, 28.906187375286244 ], [ -82.015994488567173, 28.906196820790555 ], [ -82.015858283470592, 28.906206056889769 ], [ -82.015665201400594, 28.906215296525051 ], [ -82.015589766734237, 28.906217549868128 ], [ -82.015524504602965, 28.906215313108031 ], [ -82.015453017690405, 28.906202579667905 ], [ -82.015397985025857, 28.906192294120306 ], [ -82.015347111221075, 28.906180249515423 ], [ -82.01529111175951, 28.906163830207696 ], [ -82.01518656767341, 28.90613816308165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Old Mill Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981409158067478, 28.907814532443954 ], [ -81.981876710481146, 28.907583827710354 ], [ -81.981954252770407, 28.907549725035629 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Afton Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015277465421121, 28.917379040095753 ], [ -82.015622306801006, 28.917379001967575 ], [ -82.016016720442778, 28.917380502909801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morven Park Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013138108280287, 28.916869839170886 ], [ -82.013204087951138, 28.916815518341728 ], [ -82.01334031668388, 28.916759321273442 ], [ -82.013414814036935, 28.916736838875366 ], [ -82.013489317573175, 28.91673121404455 ], [ -82.013593618849669, 28.91673494852267 ], [ -82.01366812301525, 28.916742433963769 ], [ -82.013763911988917, 28.916742423704623 ], [ -82.013883115944992, 28.916744284231029 ], [ -82.014010870541753, 28.916744805692261 ], [ -82.014134340434367, 28.916744793304574 ], [ -82.014304305488594, 28.916744776066871 ], [ -82.01449829232125, 28.916744221971143 ], [ -82.014696257228621, 28.916744202240469 ], [ -82.014870804577782, 28.916746056974659 ], [ -82.01505173991572, 28.91674790899085 ], [ -82.015232673702641, 28.91674601713525 ], [ -82.015322076747267, 28.916746007365699 ], [ -82.015415722188095, 28.916744658962962 ], [ -82.015495040238378, 28.916744650190612 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amberjack Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00546169074822, 28.885319900549682 ], [ -82.005270849854156, 28.884917919516152 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hames Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007175762826137, 28.882082095267002 ], [ -82.007238508878075, 28.881968284925151 ], [ -82.007261369639593, 28.8819249670169 ], [ -82.007313633217677, 28.881813898344866 ], [ -82.007358181014908, 28.881700251258611 ], [ -82.007394854178798, 28.881584447148409 ], [ -82.007423513337301, 28.881466904695504 ], [ -82.00744405807778, 28.881348054307701 ], [ -82.007456409517886, 28.881228329097386 ], [ -82.00746052773313, 28.881108163978066 ], [ -82.007456393303357, 28.880988001079146 ], [ -82.007444025764627, 28.88086827621056 ], [ -82.007436669986816, 28.880819945699727 ], [ -82.007430269735849, 28.880772530976063 ], [ -82.007427212109619, 28.880733542677991 ], [ -82.007379227418497, 28.880371186167483 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Percival Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006501512768466, 28.881895858823473 ], [ -82.006531801887135, 28.881793411094176 ], [ -82.006575554868775, 28.881521506030158 ], [ -82.006627955139493, 28.881217986617528 ], [ -82.006637935753119, 28.880952030078674 ], [ -82.006624713847913, 28.880792551566589 ], [ -82.006583309179106, 28.880478823124044 ], [ -82.006568168117326, 28.880437812376787 ], [ -82.006528231626092, 28.88038369136877 ], [ -82.00647124642984, 28.880343080348521 ], [ -82.006402793755896, 28.880319956401646 ], [ -82.006305343565302, 28.880319960537506 ], [ -82.006206046639065, 28.880349472651002 ], [ -82.006042396065155, 28.880401503325011 ], [ -82.005952830607228, 28.880425602855556 ], [ -82.005850271796575, 28.880443051062215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Percival Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005850271796575, 28.880443051062215 ], [ -82.005556352106964, 28.880458419292264 ], [ -82.00529191594525, 28.880469693927612 ], [ -82.005221093048746, 28.880486397960762 ], [ -82.00517866543791, 28.880507961701174 ], [ -82.005126820682108, 28.880553595541691 ], [ -82.005093537086168, 28.880611096722717 ], [ -82.005083351875825, 28.880653276954742 ], [ -82.00509748296345, 28.880976434010702 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jordan Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005630801239548, 28.88231303872552 ], [ -82.005668132701942, 28.882340756936927 ], [ -82.005674803826224, 28.882345572270037 ], [ -82.005697486789018, 28.88236007681655 ], [ -82.005721558790697, 28.882372732491152 ], [ -82.005746819914151, 28.88238343914524 ], [ -82.005773069217383, 28.882392109262572 ], [ -82.00579313851928, 28.882397201084313 ], [ -82.006575902872129, 28.882571107264333 ], [ -82.006584852879513, 28.882573120805812 ], [ -82.006644484825529, 28.882587847325095 ], [ -82.006703391082837, 28.88260469064965 ], [ -82.006761473234803, 28.882623621008939 ], [ -82.006818636965235, 28.882644607730089 ], [ -82.006874785906959, 28.882667614726639 ], [ -82.006929831894112, 28.882692605911924 ], [ -82.006983678558626, 28.882719539785928 ], [ -82.007036243884599, 28.882748372141226 ], [ -82.007087435603808, 28.882779056063992 ], [ -82.007137172724399, 28.882811540128575 ], [ -82.007139819881502, 28.882813347310282 ], [ -82.007366681198476, 28.882968583417298 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beecher Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00605272968383, 28.883112938731095 ], [ -82.006398474269531, 28.883189752620154 ], [ -82.006424203908963, 28.883195870923423 ], [ -82.00646712434532, 28.88320790937912 ], [ -82.00650920938098, 28.883222045708052 ], [ -82.006550328815976, 28.883238237508532 ], [ -82.006590350399051, 28.883256431551541 ], [ -82.006629151105358, 28.88327657370542 ], [ -82.006666606883925, 28.883298599011042 ], [ -82.006702600859484, 28.883322437997649 ], [ -82.00671366011548, 28.883330342560086 ], [ -82.006725255550705, 28.88333825521811 ], [ -82.006745828855927, 28.88335001307582 ], [ -82.006767687641712, 28.883359814682684 ], [ -82.006790589954349, 28.883367549968384 ], [ -82.006814285640019, 28.883373137736754 ], [ -82.006838514293747, 28.883376513936003 ], [ -82.006863011411369, 28.883377642486032 ], [ -82.006887509414597, 28.88337651166923 ], [ -82.006911737650881, 28.883373133228101 ], [ -82.006935432645818, 28.883367544169488 ], [ -82.006958331951708, 28.883359804960193 ], [ -82.006980190551161, 28.883350002233072 ], [ -82.007000763428167, 28.883338242471797 ], [ -82.007019826072522, 28.883324654716596 ], [ -82.007034508109854, 28.883311946910748 ], [ -82.007068997670785, 28.883279059994827 ], [ -82.007149257118172, 28.88320021395219 ], [ -82.007227627943877, 28.883119911639234 ], [ -82.007304078370154, 28.883038186445933 ], [ -82.007366681198476, 28.882968583417298 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beecher Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005266490810499, 28.882938259086043 ], [ -82.00605272968383, 28.883112938731095 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beecher Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007366681198476, 28.882968583417298 ], [ -82.007451081689553, 28.882870611806247 ], [ -82.007521570004386, 28.882784835455865 ], [ -82.007590008763145, 28.882697782417182 ], [ -82.007656367215503, 28.882609491493852 ], [ -82.007720618712113, 28.882519999684629 ], [ -82.007777778327423, 28.882437132916781 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beecher Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007777778327423, 28.882437132916781 ], [ -82.007889521033903, 28.882257598744765 ], [ -82.007917974219197, 28.882217767820897 ], [ -82.007977610620671, 28.88212440526118 ], [ -82.008029867407473, 28.882027677495014 ], [ -82.008039231036349, 28.882008350586396 ], [ -82.008086112918591, 28.881914826262378 ], [ -82.008142665728684, 28.881786321861885 ], [ -82.00819143301031, 28.881655369026195 ], [ -82.008232279493257, 28.881522333203289 ], [ -82.008265093489157, 28.881387587057088 ], [ -82.008289778689061, 28.881251502346998 ], [ -82.008306274667561, 28.881114462558934 ], [ -82.008314527150844, 28.880976845763229 ], [ -82.008314516722336, 28.88083903814751 ], [ -82.008306243443712, 28.880701423189876 ], [ -82.008289727879728, 28.880564383463486 ], [ -82.008249158760648, 28.88037119035101 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Countrywind Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004339697538526, 28.878395946050951 ], [ -82.004899671048619, 28.878930399026167 ], [ -82.004932805268041, 28.878960579972002 ], [ -82.004969637244457, 28.878991048625014 ], [ -82.005008135043553, 28.879019878633567 ], [ -82.005048206397873, 28.879046996912802 ], [ -82.005089749813507, 28.879072336694421 ], [ -82.005132667897115, 28.879095838428356 ], [ -82.005176853003462, 28.879117442565022 ], [ -82.00522219851257, 28.879137097675663 ], [ -82.00526859472879, 28.879154755038535 ], [ -82.005315922729935, 28.879170368639372 ], [ -82.005341816435418, 28.879177938050304 ], [ -82.005358920286596, 28.879181634182736 ], [ -82.00537734546829, 28.879183337984053 ], [ -82.005395862805898, 28.879182767978936 ], [ -82.005414107343753, 28.879179935007933 ], [ -82.005431728480588, 28.879174895026345 ], [ -82.005448377667719, 28.879167747300055 ], [ -82.005463737113132, 28.879158628088351 ], [ -82.005477506454781, 28.87914771605827 ], [ -82.005489415062101, 28.879135222358638 ], [ -82.005498901189469, 28.879121937426625 ], [ -82.005500475699961, 28.879119356786539 ], [ -82.005527001353414, 28.879073408811752 ], [ -82.00555127160014, 28.879026506278372 ], [ -82.005573243390316, 28.878978734907836 ], [ -82.005592875724759, 28.878930180421438 ], [ -82.005610132730354, 28.878880931247082 ], [ -82.005624982634984, 28.878831078519308 ], [ -82.005637398792445, 28.87878071156781 ], [ -82.005647358657498, 28.878729926038034 ], [ -82.00565484481055, 28.878678810356771 ], [ -82.005659840857533, 28.878627459266742 ], [ -82.005661684521868, 28.878595572750676 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odessa Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003446401902394, 28.878494672242645 ], [ -82.00468678481711, 28.879678533819174 ], [ -82.004709261244116, 28.879698789816697 ], [ -82.004737138301451, 28.879720981985745 ], [ -82.004766638128174, 28.879741483185665 ], [ -82.004797628474549, 28.879760205896257 ], [ -82.004829969914411, 28.879777066206724 ], [ -82.0048635189208, 28.879791983815799 ], [ -82.004898124791197, 28.87980489917544 ], [ -82.004933632722015, 28.879815749128635 ], [ -82.004969886885078, 28.879824489466941 ], [ -82.005006723250787, 28.879831077786879 ], [ -82.005043975739724, 28.879835487926695 ], [ -82.005081480322886, 28.879837696431583 ], [ -82.005119068871053, 28.879837694283957 ], [ -82.005126636596444, 28.879837426048329 ], [ -82.005558379138122, 28.879819580583444 ], [ -82.005588313733767, 28.87981763683096 ], [ -82.005625566826922, 28.87981322590802 ], [ -82.005662401541699, 28.879806634127085 ], [ -82.005698653851766, 28.87979789217286 ], [ -82.005734161781618, 28.879787037948638 ], [ -82.005768767457283, 28.87977412289224 ], [ -82.005802314030248, 28.879759199343795 ], [ -82.005834652854546, 28.879742337689422 ], [ -82.005865642460805, 28.879723612826485 ], [ -82.005895141380563, 28.879703109577807 ], [ -82.005923016347083, 28.879680916375129 ], [ -82.005949145371545, 28.879657134282066 ], [ -82.005973413641726, 28.879631868873464 ], [ -82.005995707371454, 28.87960523384487 ], [ -82.006015931228006, 28.87957734740257 ], [ -82.006022937609018, 28.879566631386755 ], [ -82.006325610100006, 28.879090055615695 ], [ -82.006336666367588, 28.879071758271806 ], [ -82.006352487901751, 28.879041746140064 ], [ -82.006365994582779, 28.879010873308832 ], [ -82.006377130036739, 28.878979274224122 ], [ -82.006385839940663, 28.878947092354835 ], [ -82.006392090474776, 28.878914470266583 ], [ -82.006395850895018, 28.878881551426975 ], [ -82.006397105835077, 28.878848486521317 ], [ -82.0063958471044, 28.878815420820615 ], [ -82.006392082915227, 28.878782504106539 ], [ -82.006385828655496, 28.878749882551151 ], [ -82.006378429578206, 28.87872200264048 ], [ -82.006306842200004, 28.878483627432402 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Star Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005661684521868, 28.878595572750676 ], [ -82.005692748459879, 28.878593249966293 ], [ -82.005713236925843, 28.878590193099686 ], [ -82.006306842200004, 28.878483627432402 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trailwinds Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004737945645232, 28.877855156066531 ], [ -82.004960202629434, 28.877553348037964 ], [ -82.004985533395143, 28.877520698325551 ], [ -82.005014905175514, 28.87748662374214 ], [ -82.005039027467078, 28.877458398948033 ], [ -82.005064132785506, 28.877428677198072 ], [ -82.00507480917733, 28.877419442687685 ], [ -82.005087066286819, 28.87740927514394 ], [ -82.005128163285278, 28.877370080485985 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Star Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004737945645232, 28.877855156066531 ], [ -82.005421092233505, 28.878507164938657 ], [ -82.005434868764112, 28.878519510646349 ], [ -82.005455983495821, 28.878535745914064 ], [ -82.005478665601728, 28.878550250507072 ], [ -82.005502735674725, 28.878562907131762 ], [ -82.005527997905602, 28.878573612932115 ], [ -82.005554248284582, 28.878582283098538 ], [ -82.005581275626284, 28.878588847258641 ], [ -82.005626048197584, 28.878593459078662 ], [ -82.005661684521868, 28.878595572750676 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trailwinds Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004339697538526, 28.878395946050951 ], [ -82.004737945645232, 28.877855156066531 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Countrywind Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003847694670156, 28.877926361003823 ], [ -82.004339697538526, 28.878395946050951 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Countrywind Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003387722311672, 28.877592329924216 ], [ -82.003418842769392, 28.877603334664546 ], [ -82.00345886672801, 28.877619864909637 ], [ -82.003497766179606, 28.877638358575965 ], [ -82.003535415032019, 28.877658761529048 ], [ -82.003571691292805, 28.877681004295308 ], [ -82.00360648014528, 28.877705019205742 ], [ -82.003639668822359, 28.877730728665977 ], [ -82.003671152757505, 28.877758048765447 ], [ -82.003681459822488, 28.877767697751381 ], [ -82.003847694670156, 28.877926361003823 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 132", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020608414241721, 28.880041448836689 ], [ -82.017868583257965, 28.880045935194012 ], [ -82.015740701712971, 28.880030905492426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crestview Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008867326483042, 28.881013841772837 ], [ -82.009364760342095, 28.881022436464999 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bachman Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009191778333715, 28.881649960357077 ], [ -82.010322441537809, 28.88253435570422 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crestview Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011171105466119, 28.882360607112915 ], [ -82.011202629199275, 28.882393297727692 ], [ -82.011239777431868, 28.882428960072801 ], [ -82.011276927431126, 28.882461651129052 ], [ -82.011424099884621, 28.882575914077904 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Danwood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009364760342095, 28.881022436464999 ], [ -82.009337106114828, 28.880528227832436 ], [ -82.009335351036043, 28.880420329816705 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Danwood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009335351036043, 28.880420329816705 ], [ -82.009313311615827, 28.880090976701769 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wade Meadow Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009335351036043, 28.880420329816705 ], [ -82.009395383881213, 28.880409758170963 ], [ -82.009487625014984, 28.880406656346224 ], [ -82.009693658132861, 28.880444565488716 ], [ -82.009865835629853, 28.880497954720767 ], [ -82.010029255945838, 28.880569561812024 ], [ -82.010181437112635, 28.880658299696076 ], [ -82.010320077542559, 28.880762825950988 ], [ -82.010403932596418, 28.880840507159327 ], [ -82.010480263574834, 28.880923981640173 ], [ -82.0105551987984, 28.881022215125306 ], [ -82.01061509157401, 28.881097215418279 ], [ -82.010701648694635, 28.881177393807057 ], [ -82.011564605958412, 28.881855712885923 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buttonwood Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010556719950529, 28.88331067053981 ], [ -82.010716419198843, 28.883451202919808 ], [ -82.010886180248264, 28.883623221945278 ], [ -82.011009644052891, 28.883777133337677 ], [ -82.011091956026235, 28.883894832154411 ], [ -82.011179414797155, 28.884053273922092 ], [ -82.011246298722028, 28.884189082126767 ], [ -82.01131832855711, 28.884356579602716 ], [ -82.011369785172619, 28.884537659210267 ], [ -82.011395519223512, 28.884687052941803 ], [ -82.011410971159393, 28.88488171683149 ], [ -82.011410991658622, 28.885076381047359 ], [ -82.011385305929196, 28.885397808863541 ], [ -82.011330922762667, 28.885872433389196 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buttonwood Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0099993094789, 28.882856068822253 ], [ -82.010402627361714, 28.883175072245816 ], [ -82.010556719950529, 28.88331067053981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Albion Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0099993094789, 28.882856068822253 ], [ -82.010322441537809, 28.88253435570422 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buttonwood Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008612519686835, 28.881912127107459 ], [ -82.008919518386762, 28.882100753635193 ], [ -82.009296106407277, 28.882345962829927 ], [ -82.009679397940928, 28.882615336846776 ], [ -82.0099993094789, 28.882856068822253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008612519686835, 28.881912127107459 ], [ -82.008663925700418, 28.881799826323313 ], [ -82.008754255791587, 28.881587258536495 ], [ -82.008780750780232, 28.881514094724167 ], [ -82.00880851042011, 28.881423458663114 ], [ -82.008823500958314, 28.881364892971899 ], [ -82.008843938855847, 28.881263215882875 ], [ -82.008856398105195, 28.881178169595781 ], [ -82.008863069262077, 28.88110647772282 ], [ -82.008867326483042, 28.881013841772837 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Littlestone Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009900127276339, 28.875213491942034 ], [ -82.009845796040182, 28.87518953412166 ], [ -82.009775103598813, 28.87514974468975 ], [ -82.009738264758795, 28.875111812585875 ], [ -82.00970815318388, 28.875055775323229 ], [ -82.009565247589393, 28.874569152436905 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nackman Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009221856621593, 28.873901945520764 ], [ -82.00957089086485, 28.873903179773048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nackman Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00957089086485, 28.873903179773048 ], [ -82.009688197220939, 28.87390042083576 ], [ -82.00989403509449, 28.873858924417956 ], [ -82.01004226073978, 28.873825122037783 ], [ -82.01022160002087, 28.8737897021668 ], [ -82.01044262413788, 28.87376747250169 ], [ -82.011143702010187, 28.87376531736852 ], [ -82.011144234037673, 28.873765316424805 ], [ -82.011171263098589, 28.873767395026821 ], [ -82.01119747147763, 28.873773574652443 ], [ -82.011222062654127, 28.873783664076456 ], [ -82.011244289299981, 28.873797361989492 ], [ -82.011263477880959, 28.873814247070477 ], [ -82.011279040960943, 28.873833810468405 ], [ -82.011290510005054, 28.873855453092709 ], [ -82.011297531280931, 28.873878501854673 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Littlestone Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009565247589393, 28.874569152436905 ], [ -82.00954280941987, 28.874480421501204 ], [ -82.009532830605593, 28.874405275707261 ], [ -82.009531070708888, 28.874020145167133 ], [ -82.009533317661734, 28.873995805409763 ], [ -82.009540148348151, 28.873977159780868 ], [ -82.00954834560001, 28.873959717732859 ], [ -82.00957089086485, 28.873903179773048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Haddington Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009237459811871, 28.875602008533534 ], [ -82.009101961473903, 28.875304879035607 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Haddington Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009986163403411, 28.876826830310087 ], [ -82.009927630111207, 28.876710520396504 ], [ -82.009855846046221, 28.876593272967519 ], [ -82.009726645587023, 28.876416673238058 ], [ -82.009522537951881, 28.876150219865462 ], [ -82.009418621315803, 28.875986725001169 ], [ -82.009237459811871, 28.875602008533534 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Due West Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012689768757696, 28.914579831974301 ], [ -82.012750332179991, 28.914582920484829 ], [ -82.013102372429643, 28.914623796514462 ], [ -82.013419083266783, 28.914663883685279 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Due West Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01199437736561, 28.91454578415048 ], [ -82.012051724361626, 28.914545166612037 ], [ -82.012415484349205, 28.914565417830975 ], [ -82.012689768757696, 28.914579831974301 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Willington Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012612568079007, 28.916027677132387 ], [ -82.012409789505611, 28.916007901438668 ], [ -82.011968078327641, 28.916007939571827 ], [ -82.011592406602347, 28.916011141534753 ], [ -82.011524933576297, 28.915999275524761 ], [ -82.011457458824907, 28.915961287085725 ], [ -82.011408873631495, 28.915909051630226 ], [ -82.011384577595308, 28.915835440599565 ], [ -82.011368374972889, 28.915752333142464 ], [ -82.011349472509934, 28.915652601981108 ], [ -82.011319771049401, 28.915519629256725 ], [ -82.011290072918712, 28.91540802652262 ], [ -82.011272960276457, 28.915339479486239 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "York Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009810172375595, 28.910098252116953 ], [ -82.009810147447155, 28.90981016923044 ], [ -82.00981813758699, 28.909614558664558 ], [ -82.009832120942349, 28.909526792108746 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "York Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009832120942349, 28.909526792108746 ], [ -82.009837270960034, 28.909494923501786 ], [ -82.00984526826764, 28.909356726129793 ], [ -82.009847993411199, 28.909249123327399 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Haretison Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006656632487577, 28.912821771918761 ], [ -82.006615625506114, 28.912495927128287 ], [ -82.006584623659649, 28.912158075893426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Haretison Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006584623659649, 28.912158075893426 ], [ -82.006573726799985, 28.912051772209875 ], [ -82.006513335196757, 28.911557080383592 ], [ -82.006511379278848, 28.911516171203957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrabella Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004149988318261, 28.912533144785261 ], [ -82.00430587030462, 28.912219272787809 ], [ -82.004395162280915, 28.912017317165549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrabella Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004395162280915, 28.912017317165549 ], [ -82.004448854292917, 28.911808457225696 ], [ -82.004483815252314, 28.911663382116775 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999573318383952, 28.91804096561215 ], [ -81.999592908229076, 28.918039448937083 ], [ -81.999638232993789, 28.918029479648123 ], [ -81.999681408264564, 28.918013321482917 ], [ -81.999730566610182, 28.917981573440958 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999791877713591, 28.917920862593288 ], [ -81.99980410016579, 28.917903313858247 ], [ -81.999821877035529, 28.917865154874686 ], [ -81.999832426947734, 28.917825277897578 ], [ -81.999834771498712, 28.917792962145761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Clarke Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034648612379186, 28.872703546327145 ], [ -82.034331454453564, 28.872719513682913 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jarrell Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035454034932229, 28.871472185387297 ], [ -82.034640372180206, 28.871474307673857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jarrell Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034640372180206, 28.871474307673857 ], [ -82.034308282809405, 28.871475170582425 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ida Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034640372180206, 28.871474307673857 ], [ -82.034648612379186, 28.872703546327145 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.150894416124032, 28.865654404205404 ], [ -82.150308869247269, 28.865991282150457 ], [ -82.149077253154118, 28.866697918206199 ], [ -82.147650534445333, 28.867521907772588 ], [ -82.146623039082883, 28.86811010192039 ], [ -82.146550378928254, 28.868151996752271 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143155414602134, 28.87011314655669 ], [ -82.142577562470493, 28.870447214513501 ], [ -82.141488356044022, 28.871069053238447 ], [ -82.14057530517816, 28.87160018534626 ], [ -82.139864812084355, 28.872006962059153 ], [ -82.139124958878256, 28.87243445311082 ], [ -82.137680251674567, 28.873266092783705 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 51st Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020019260516861, 28.93309991334953 ], [ -82.020018567114647, 28.933694306170558 ], [ -82.020011569324282, 28.933729651856254 ], [ -82.019995126873013, 28.933775386119617 ], [ -82.019970938901722, 28.933818377622647 ], [ -82.019951585852311, 28.933844059712158 ], [ -82.019766012266174, 28.933985377525563 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 122nd Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019766012266174, 28.933985377525563 ], [ -82.019699970677536, 28.933922589972511 ], [ -82.019667842844711, 28.933894337394168 ], [ -82.019625008259084, 28.933873934483138 ], [ -82.019584518737418, 28.933866414184415 ], [ -82.019493883533443, 28.933866427886951 ], [ -82.018978710631785, 28.933866498582532 ], [ -82.018934364904268, 28.933872460698186 ], [ -82.018884399170503, 28.933894447410292 ], [ -82.018850497883591, 28.933922709179637 ], [ -82.018821948639555, 28.933950971115422 ], [ -82.018791619933324, 28.9340090622335 ], [ -82.018784492096714, 28.934065580207616 ], [ -82.018784522981889, 28.934205936589112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 121st Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020019260516861, 28.93309991334953 ], [ -82.019059665475368, 28.933098571804209 ], [ -82.017913438812045, 28.933095491784751 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 121st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020018309541697, 28.932324376975725 ], [ -82.018957290551896, 28.932329237266789 ], [ -82.017900400924887, 28.932322420190506 ], [ -82.017736637271639, 28.932334107889293 ], [ -82.017607925222578, 28.932346881821065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016276550789669, 28.932101404359255 ], [ -82.01630905616345, 28.932442640236385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 121st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017607925222578, 28.932346881821065 ], [ -82.01752762331671, 28.932373970745065 ], [ -82.017448660775003, 28.932393998095836 ], [ -82.0173911090845, 28.932406957754232 ], [ -82.017314819286185, 28.932419917921006 ], [ -82.017137210120936, 28.932440011489945 ], [ -82.016922559414184, 28.932452626611656 ], [ -82.016622042204219, 28.932440074055972 ], [ -82.01630905616345, 28.932442640236385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Banderos Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959005010476218, 28.952274956404079 ], [ -81.959853618885603, 28.951588128917169 ], [ -81.960136870658246, 28.951368719246432 ], [ -81.960468468021645, 28.951095938235589 ], [ -81.961024278518067, 28.950665902683049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98890817452066, 28.88451177271472 ], [ -81.989294596853156, 28.88461530468259 ], [ -81.989780864001432, 28.884782361658811 ], [ -81.990252304552683, 28.884975511238288 ], [ -81.990718346735619, 28.885194014348489 ], [ -81.991108350709297, 28.8853975560172 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985733551756155, 28.883944287354346 ], [ -81.986070025604491, 28.884035608766471 ], [ -81.986451088647485, 28.884116600727157 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Darlington Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986838101951932, 28.88315002854452 ], [ -81.986954645063605, 28.882951932533096 ], [ -81.987081781073172, 28.882737522931595 ], [ -81.987253940715433, 28.882483495661535 ], [ -81.98751613799169, 28.882201508901627 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Darlington Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986554464320903, 28.883697538295532 ], [ -81.986620906437864, 28.883527576690394 ], [ -81.986755994392851, 28.883280537388906 ], [ -81.986838101951932, 28.88315002854452 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bonita Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982088099133918, 28.881277615798236 ], [ -81.982122998614273, 28.881351832069651 ], [ -81.982200208743961, 28.881441334452319 ], [ -81.982249583186487, 28.881496041248724 ], [ -81.982260925678162, 28.881514377522709 ], [ -81.982294733373379, 28.881571785529299 ], [ -81.982300713332222, 28.881595049459783 ], [ -81.982315990332737, 28.88169144435458 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bonita Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982519028779677, 28.88151671783347 ], [ -81.982475383656293, 28.88150544417244 ], [ -81.98245181388971, 28.881498575465486 ], [ -81.982431481717839, 28.881491282196261 ], [ -81.982410467951425, 28.881483131647734 ], [ -81.982361824758769, 28.881461948216081 ], [ -81.982327866214462, 28.8814410202571 ], [ -81.982293109664056, 28.881416651707937 ], [ -81.982229740527089, 28.881367809830635 ], [ -81.982167897962213, 28.881312953384754 ], [ -81.982088099133918, 28.881277615798236 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mackintosh Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002906344413631, 28.873938285116253 ], [ -82.00301870323058, 28.873255663279945 ], [ -82.00303486850818, 28.873154681790727 ], [ -82.003050874528469, 28.873040415698359 ], [ -82.003063642144056, 28.872922195769775 ], [ -82.003075303596916, 28.872761534244297 ], [ -82.003094204214932, 28.872442188204602 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999730566610182, 28.917981573440958 ], [ -81.999749005853445, 28.917969663183516 ], [ -81.999779677819305, 28.917938380649144 ], [ -81.999791877713591, 28.917920862593288 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99925922711374, 28.91782046147846 ], [ -81.999267432025988, 28.91785759014212 ], [ -81.999283841224639, 28.917896092155072 ], [ -81.999288608867772, 28.91790342244505 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999283632252585, 28.91768204571175 ], [ -81.999276225697159, 28.917695327470899 ], [ -81.999262940486872, 28.917734861514003 ], [ -81.999256882201777, 28.917775769802759 ], [ -81.99925844466722, 28.917817022820298 ], [ -81.99925922711374, 28.91782046147846 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999288608867772, 28.91790342244505 ], [ -81.999307089772415, 28.917931845814124 ], [ -81.999336394174236, 28.917963817981111 ], [ -81.999371363709429, 28.917991319295208 ], [ -81.999411023100947, 28.918013321128246 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999411023100947, 28.918013321128246 ], [ -81.999454003255067, 28.918029479693828 ], [ -81.999499523734499, 28.918039448502956 ], [ -81.999546215440901, 28.918042886478567 ], [ -81.999573323511612, 28.918040965612171 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999834771498712, 28.917792962145761 ], [ -81.999835359179187, 28.917784023995694 ], [ -81.999830864478938, 28.917743113849941 ], [ -81.999818947979506, 28.917703236814315 ], [ -81.999799802483651, 28.917665422408028 ], [ -81.999793689318935, 28.917657271944378 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999793689318935, 28.917657271944378 ], [ -81.999774014595431, 28.917631044827676 ], [ -81.99974216886892, 28.917600791621531 ], [ -81.999705441588233, 28.917575351241904 ], [ -81.999690117086601, 28.917568067848411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999690117086601, 28.917568067848411 ], [ -81.999664219370786, 28.917555755913771 ], [ -81.999620067176224, 28.917542004737182 ], [ -81.999574156154665, 28.917534441489593 ], [ -81.999564331545244, 28.917534406256049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999413499932416, 28.917562595948983 ], [ -81.999394421846816, 28.917571224504186 ], [ -81.999356715807522, 28.917595288535971 ], [ -81.999323894313619, 28.91762485389134 ], [ -81.999296738835952, 28.917658543673987 ], [ -81.999283632252585, 28.91768204571175 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999564331545244, 28.917534406256049 ], [ -81.999527268771686, 28.917534097498194 ], [ -81.999480967939633, 28.917539941444755 ], [ -81.999436228929611, 28.917552316207971 ], [ -81.999413499932416, 28.917562595948983 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998748482834941, 28.913641977318498 ], [ -81.998753688315375, 28.913637736576071 ], [ -81.998783968594694, 28.913606452439353 ], [ -81.998807997504045, 28.913571043831574 ], [ -81.998822293380925, 28.913539025955515 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998832613836967, 28.913410157248638 ], [ -81.998820113676203, 28.913370621161803 ], [ -81.998800578617164, 28.913333150360824 ], [ -81.998774400382743, 28.913299116338699 ], [ -81.998766630346708, 28.9132917246381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998822293380925, 28.913539025955515 ], [ -81.99882518947426, 28.913532541173726 ], [ -81.998835153777662, 28.91349231866327 ], [ -81.998837693511945, 28.913451410332637 ], [ -81.998832613836967, 28.913410157248638 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998766630346708, 28.9132917246381 ], [ -81.998742363472473, 28.91326886377745 ], [ -81.998705048293644, 28.913243767780486 ], [ -81.99866383001671, 28.913224515909445 ], [ -81.998655308228692, 28.913221939754909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998655308228692, 28.913221939754909 ], [ -81.99861948493357, 28.913211108169726 ], [ -81.998573378985867, 28.913203887447434 ], [ -81.998526494567528, 28.913203887785595 ], [ -81.998480390434054, 28.913210076072478 ], [ -81.998469424801385, 28.913213206906235 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998469424801385, 28.913213206906235 ], [ -81.998435849020709, 28.913222793387323 ], [ -81.998394237306059, 28.913241701388213 ], [ -81.998364182851006, 28.913261330467247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998590885595974, 28.913710613316958 ], [ -81.998634713389364, 28.913701675667028 ], [ -81.998678278756017, 28.913686207172105 ], [ -81.998718131915751, 28.913664550668258 ], [ -81.998748482834941, 28.913641977318498 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998268915136308, 28.913390501140181 ], [ -81.998265104186501, 28.913401211355577 ], [ -81.998258266394274, 28.913441778546314 ], [ -81.998259045949368, 28.913483031590758 ], [ -81.998267446990837, 28.913523596290013 ], [ -81.99828307370737, 28.913562443115879 ], [ -81.998305538489959, 28.913598538930117 ], [ -81.998334451669308, 28.913631198880392 ], [ -81.998368832901818, 28.913659045141529 ], [ -81.998407903842491, 28.913681734826241 ], [ -81.998450491334282, 28.913698579462675 ], [ -81.998495814975669, 28.913709237969467 ], [ -81.99854230985882, 28.913713363842849 ], [ -81.998589195572805, 28.9137109579747 ], [ -81.998590885595974, 28.913710613316958 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998364182851006, 28.913261330467247 ], [ -81.998300464712855, 28.913324893738348 ], [ -81.998279171674127, 28.913361676494137 ], [ -81.998268915136308, 28.913390501140181 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002871118638907, 28.922211911543108 ], [ -82.002877018716418, 28.922209152219754 ], [ -82.002896922885839, 28.922199812207271 ], [ -82.002914172887756, 28.922191639809597 ], [ -82.00293756082111, 28.92217766643931 ], [ -82.002960614236784, 28.922156616362486 ], [ -82.002977864935119, 28.922135602478264 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003018414878611, 28.922000727418201 ], [ -82.003014266449952, 28.921960596971079 ], [ -82.002999088807854, 28.921912623966488 ], [ -82.002979017441149, 28.921876689483469 ], [ -82.002955300191999, 28.921841411933997 ], [ -82.002923452449963, 28.921815727736487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002977864935119, 28.922135602478264 ], [ -82.002988134573059, 28.92211623721338 ], [ -82.003001748294366, 28.92208423522958 ], [ -82.00301219600037, 28.92204997846418 ], [ -82.003018414878611, 28.922000727418201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002923452449963, 28.921815727736487 ], [ -82.002894259017083, 28.921794715574666 ], [ -82.002859758368615, 28.921778373782523 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002759619860939, 28.921752463321013 ], [ -82.002741662044102, 28.921750356752845 ], [ -82.002709816053567, 28.921753859078677 ], [ -82.002688584759497, 28.92175852880014 ], [ -82.002662046152025, 28.921764367075092 ], [ -82.002639489864237, 28.921771371952087 ], [ -82.002612951300208, 28.921779544457568 ], [ -82.002597084863041, 28.921788802258344 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002859758368615, 28.921778373782523 ], [ -82.002822604656572, 28.921765532033152 ], [ -82.002781469735552, 28.92175502548195 ], [ -82.002759619860939, 28.921752463321013 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002597084863041, 28.921788802258344 ], [ -82.002572647868206, 28.9218055564628 ], [ -82.002547767811066, 28.92182197230829 ], [ -82.002520814074487, 28.921840215329244 ], [ -82.002498006867739, 28.921865753349341 ], [ -82.002479349265826, 28.921898586370567 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002479349265826, 28.921898586370567 ], [ -82.002468983598533, 28.921940541485263 ], [ -82.002462765201955, 28.921975198768834 ], [ -82.002458617508594, 28.922013504005914 ], [ -82.002464838377136, 28.922051810900236 ], [ -82.002477279329582, 28.922088293262366 ], [ -82.002495942386332, 28.922121125745509 ], [ -82.002520821472004, 28.922153959939667 ], [ -82.002549847854425, 28.92217949719879 ], [ -82.002586421433833, 28.922203319072683 ], [ -82.002620341702738, 28.922219625753044 ], [ -82.002653515285843, 28.922232394533431 ], [ -82.002691248545474, 28.922243010354642 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002691248545474, 28.922243010354642 ], [ -82.00273105637045, 28.922245344857973 ], [ -82.002773768574272, 28.922245160993192 ], [ -82.002813327946669, 28.922236003833085 ], [ -82.002871118638907, 28.922211911543108 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002759619860939, 28.921752463321013 ], [ -82.00270824138515, 28.921735083222817 ], [ -82.002669985066092, 28.921715283842982 ], [ -82.00265198089599, 28.92170340539592 ], [ -82.002619348749462, 28.921679648442627 ], [ -82.002602470543323, 28.921661828351176 ], [ -82.002550710786025, 28.921602430069196 ], [ -82.002497822821269, 28.921536103050443 ], [ -82.002476443196556, 28.92150640608271 ], [ -82.002453938534202, 28.921476707322757 ], [ -82.002354917295975, 28.92134306327555 ], [ -82.002213137689168, 28.921169821513324 ], [ -82.002013690143954, 28.920938296406057 ], [ -82.001850532725314, 28.920761342433067 ], [ -82.001663464716401, 28.920568300512308 ], [ -82.001442641814762, 28.920340611273531 ], [ -82.001192282581385, 28.920079509770407 ], [ -82.000960208282535, 28.919840680923894 ], [ -82.000698600104258, 28.91956844236983 ], [ -82.000466528070916, 28.919329614455467 ], [ -82.000189452138159, 28.919040048977738 ], [ -82.000057242335231, 28.918901453090868 ], [ -81.999947536253018, 28.918760383222651 ], [ -81.99985330276732, 28.918606937566434 ], [ -81.999745005619545, 28.918397808363423 ], [ -81.999705625562214, 28.918285199803979 ], [ -81.999685934637185, 28.918214665398274 ], [ -81.999681716127697, 28.918132992193485 ], [ -81.999692967821872, 28.918058746750049 ], [ -81.999730566610182, 28.917981573440958 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Calabria Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007528523217417, 28.876412591520388 ], [ -82.007978571885971, 28.876247795665993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pomeroy Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008220493505505, 28.875166676188226 ], [ -82.008154146372178, 28.874922650424004 ], [ -82.008129104409804, 28.874832500079116 ], [ -82.008105249414484, 28.874726332892727 ], [ -82.008082766469116, 28.874569840609595 ], [ -82.008073830698734, 28.874403592781423 ], [ -82.008070043376719, 28.873780533273187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hopespring Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007561741006256, 28.875343069302637 ], [ -82.007463138216224, 28.875147461495825 ], [ -82.007433151097203, 28.875079650475737 ], [ -82.007406520891124, 28.875006272074216 ], [ -82.007380697817339, 28.87490713108857 ], [ -82.007365614883284, 28.87480794354396 ], [ -82.007356983574013, 28.874655744505795 ], [ -82.00735028335329, 28.874515345678866 ], [ -82.007342040804375, 28.874366133234833 ], [ -82.007314310293452, 28.874252484199939 ], [ -82.007285034357125, 28.874191228329661 ], [ -82.007247575383516, 28.87413518184567 ], [ -82.007157774071302, 28.874038922266678 ], [ -82.006981349625292, 28.873860567120143 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hopespring Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008220493505505, 28.875166676188226 ], [ -82.007849169141878, 28.875252976501425 ], [ -82.007683366003278, 28.875299095618082 ], [ -82.007561741006256, 28.875343069302637 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hopespring Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008798263065458, 28.873779196401355 ], [ -82.008799487411693, 28.874435025856666 ], [ -82.008808791226031, 28.874548998721604 ], [ -82.008830536329341, 28.87466957387797 ], [ -82.008853866520525, 28.874754759730305 ], [ -82.008874901671845, 28.874829113577604 ], [ -82.008875951695671, 28.874832932057132 ], [ -82.008880094744228, 28.874865277539524 ], [ -82.008875955912075, 28.874897624429927 ], [ -82.008863745208416, 28.874928350375082 ], [ -82.008854419927218, 28.874943130656028 ], [ -82.008835537270556, 28.874967596830889 ], [ -82.008792932081107, 28.875012935594853 ], [ -82.008791893718893, 28.87501390563266 ], [ -82.008768230401586, 28.875031777158881 ], [ -82.008736454070501, 28.875046460431701 ], [ -82.008708122507613, 28.875053196011923 ], [ -82.008575362421468, 28.875084200680902 ], [ -82.008220493505505, 28.875166676188226 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tamarind Grove Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008223429031744, 28.877902679931285 ], [ -82.009293380814142, 28.877515838318377 ], [ -82.010094189811269, 28.877226297164786 ], [ -82.010396310097647, 28.877114832310919 ], [ -82.010478499080378, 28.877081628840202 ], [ -82.010655142575146, 28.877004432011788 ], [ -82.010827958347861, 28.876920792804036 ], [ -82.01087434729088, 28.87689690174517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tamarind Grove Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01087434729088, 28.87689690174517 ], [ -82.010996640901425, 28.876830857427887 ], [ -82.011160899095074, 28.87673478201965 ], [ -82.011320439742875, 28.876632737153564 ], [ -82.011474986065494, 28.876524900621906 ], [ -82.011565314199842, 28.876457413766051 ], [ -82.011676082096059, 28.876369702782299 ], [ -82.011817258649899, 28.876249287954952 ], [ -82.011952538821276, 28.876123744787588 ], [ -82.012081686857414, 28.875993289870195 ], [ -82.012176038898971, 28.875890506905296 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hopespring Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006763965094848, 28.873147527130051 ], [ -82.007621554672454, 28.873147333005981 ], [ -82.008574787723688, 28.873147624102604 ], [ -82.008585359549897, 28.873147860786137 ], [ -82.008627440157483, 28.873153532882966 ], [ -82.008667362498727, 28.873166544424421 ], [ -82.008703491511412, 28.873186364053815 ], [ -82.008734348947399, 28.873212178888213 ], [ -82.008734821555365, 28.87321266520096 ], [ -82.008747623069482, 28.873226969537718 ], [ -82.008772137031059, 28.873263079114473 ], [ -82.008788933318655, 28.873302464511234 ], [ -82.008797471596779, 28.873343853516872 ], [ -82.008797572138278, 28.873344874917308 ], [ -82.008798263065458, 28.873779196401355 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00815078618281, 28.87774686186054 ], [ -82.008150774904465, 28.877746837499011 ], [ -82.007744171706747, 28.876874685352295 ], [ -82.007528523217417, 28.876412591520388 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008862221098624, 28.880848809325133 ], [ -82.008862160522725, 28.8808476868657 ], [ -82.008859563995543, 28.880799837971825 ], [ -82.008850644434332, 28.880640412653314 ], [ -82.008839915947291, 28.880448662484955 ], [ -82.008827166039538, 28.880220792395736 ], [ -82.008810087881827, 28.879915555604068 ], [ -82.008800961156638, 28.879778757293717 ], [ -82.008787630175064, 28.879640668040523 ], [ -82.008768574241202, 28.879496234142774 ], [ -82.008748290773795, 28.879371544480367 ], [ -82.008735168348352, 28.879301892084172 ], [ -82.00871843746549, 28.879220235679373 ], [ -82.008689830999089, 28.879096927925765 ], [ -82.008674977978529, 28.879037573594744 ], [ -82.008655771313371, 28.878967270087987 ], [ -82.008626643014722, 28.878867824621562 ], [ -82.008600985340991, 28.878787007866265 ], [ -82.008568768733895, 28.878692234685964 ], [ -82.008523228144114, 28.878568699599793 ], [ -82.00851030767322, 28.878535482111328 ], [ -82.008469283783128, 28.878435479675787 ], [ -82.008399173220468, 28.878278198973913 ], [ -82.008339608725805, 28.878150569978043 ], [ -82.008306294340798, 28.878079185356871 ], [ -82.008257842354425, 28.877975363827701 ], [ -82.008223429031744, 28.877902679931285 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Loadstar Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000077744516091, 28.874357657007955 ], [ -81.999885980555391, 28.874960270039427 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fairwinds Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000077744516091, 28.874357657007955 ], [ -82.000580994363489, 28.874441852942315 ], [ -82.000982128678885, 28.874502820217611 ], [ -82.00158387050503, 28.874595117505244 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hialeah Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017101416793167, 28.922715608101615 ], [ -82.017212421964132, 28.922730296418855 ], [ -82.017309253293746, 28.922730284401261 ], [ -82.017458420401425, 28.922707240967224 ], [ -82.017544781220792, 28.922686507968777 ], [ -82.01763637338037, 28.922658867176633 ], [ -82.017753429966078, 28.922614693011415 ], [ -82.017826885780011, 28.922587869178702 ], [ -82.017885885450355, 28.922569984408117 ], [ -82.017959342991688, 28.922553819323635 ], [ -82.018055073028179, 28.922537648598521 ], [ -82.018154907314965, 28.922526977664269 ], [ -82.018275255815098, 28.922519744411165 ], [ -82.01847902815507, 28.922507341543085 ], [ -82.018500324136184, 28.922506306479399 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964129097980219, 28.904424628617239 ], [ -81.964062566259386, 28.904331291496867 ], [ -81.963983637306256, 28.904209163183388 ], [ -81.963912516780923, 28.904087573790843 ], [ -81.963857264410834, 28.904004364290259 ], [ -81.963786197672704, 28.903899835500614 ], [ -81.96374285666073, 28.903833819756926 ], [ -81.963703220950677, 28.903778117370507 ], [ -81.963701073947476, 28.903774679032281 ], [ -81.963687602809799, 28.903752673739994 ], [ -81.963663199917065, 28.903713132923482 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964554249322148, 28.904936003762263 ], [ -81.964501244467982, 28.904877417045487 ], [ -81.964399746048883, 28.904765210093501 ], [ -81.964242992880372, 28.904575555803948 ], [ -81.964129097980219, 28.904424628617239 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966180691749599, 28.90620514905234 ], [ -81.966154745993833, 28.906194221989324 ], [ -81.966031786522947, 28.906144552758978 ], [ -81.965889656951049, 28.906073040217404 ], [ -81.965768960983027, 28.906007489070404 ], [ -81.965644886230749, 28.905927044517725 ], [ -81.9655287057045, 28.905848588740724 ], [ -81.965440729891625, 28.905778081263051 ], [ -81.96534937026577, 28.905701616782348 ], [ -81.96518808908904, 28.905547698868709 ], [ -81.965020041306971, 28.905388816353273 ], [ -81.964952369440354, 28.905324271723799 ], [ -81.964897107598759, 28.905270648118403 ], [ -81.964789963177992, 28.905168367073291 ], [ -81.964697482725413, 28.90507998880609 ], [ -81.964606129688434, 28.904987639757241 ], [ -81.964554249322148, 28.904936003762263 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966825545012881, 28.906546564768306 ], [ -81.966763878682613, 28.906506095857889 ], [ -81.966668001168586, 28.906446507741631 ], [ -81.966541664389396, 28.90637797649855 ], [ -81.966379229199319, 28.906295538890969 ], [ -81.966257398710184, 28.906238921552454 ], [ -81.966180691749599, 28.90620514905234 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valverda Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010510429240753, 28.92345904861849 ], [ -82.010510423254104, 28.923407826186569 ], [ -82.010510416095528, 28.923333914622937 ], [ -82.010510409063514, 28.923250720238684 ], [ -82.010510405667475, 28.923215656119371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valverda Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010510405667475, 28.923215656119371 ], [ -82.010510402737495, 28.92318540394372 ], [ -82.010510395046182, 28.923105991079701 ], [ -82.010510386156398, 28.923014203226668 ], [ -82.010510375908112, 28.922918977625088 ], [ -82.010510367178156, 28.922818249821525 ], [ -82.010510358455065, 28.922728181740617 ], [ -82.010510347341167, 28.92262401708912 ], [ -82.010510338977852, 28.922527073510381 ], [ -82.010504276080482, 28.922466913375427 ], [ -82.010488248169708, 28.922401596451746 ], [ -82.010462061929559, 28.922336281175951 ], [ -82.010439979916612, 28.922279903737092 ], [ -82.010407929534139, 28.922182961600523 ], [ -82.010373729736372, 28.922087394710768 ], [ -82.010352032144368, 28.921963635564126 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Red Bank Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013177061123258, 28.924707761877531 ], [ -82.013177052807009, 28.924631443909259 ], [ -82.013175471573277, 28.92448258873571 ], [ -82.0131688195424, 28.924415552401115 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Red Bank Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0131688195424, 28.924415552401115 ], [ -82.013163342964503, 28.924357798773233 ], [ -82.013129724959825, 28.924257419720274 ], [ -82.0130869276407, 28.924171478243753 ], [ -82.013061129281894, 28.9241164776003 ], [ -82.013053505783233, 28.924072130474485 ], [ -82.013050547593892, 28.923849021889225 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yeamans Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009331973656899, 28.924016390355128 ], [ -82.010107690654152, 28.923723192434139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Welcome Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006931677105612, 28.922403530862006 ], [ -82.00720796223834, 28.922456958672313 ], [ -82.007594888252427, 28.922525831990249 ], [ -82.007712348443803, 28.922548113406553 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Welcome Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007712348443803, 28.922548113406553 ], [ -82.008435532340542, 28.9226311518964 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fieldcrest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009285581088292, 28.927319839062591 ], [ -82.009285593800925, 28.927469164426387 ], [ -82.00928559631015, 28.927498637902588 ], [ -82.009295039713948, 28.927527876168249 ], [ -82.009330496730229, 28.927587778145135 ], [ -82.009346573193056, 28.927644332061128 ], [ -82.009354819183997, 28.927703226139347 ], [ -82.009351068383879, 28.927833973481366 ], [ -82.00934543752328, 28.927987890983356 ], [ -82.00934921192551, 28.928120293539113 ], [ -82.009354859227969, 28.928169941964004 ], [ -82.009364268030012, 28.92820138814044 ], [ -82.009396255845232, 28.928264276918068 ], [ -82.009420716145655, 28.92831061628576 ], [ -82.009445175607141, 28.92834702498784 ], [ -82.009463993753741, 28.928403294478731 ], [ -82.009464163230035, 28.92844155629475 ], [ -82.00946260266619, 28.928600369371097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avery Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002663530318642, 28.921298770480579 ], [ -82.002660989987277, 28.921298770520394 ], [ -82.002984522999498, 28.921183601385568 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anniston Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003353929430958, 28.919784083865476 ], [ -82.003430904204052, 28.91977892561928 ], [ -82.003908383036517, 28.919745224630585 ], [ -82.003980278286548, 28.919742816396344 ], [ -82.004140090129084, 28.919742812236283 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anniston Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001970527770382, 28.919883456475652 ], [ -82.001985962345557, 28.91988276966487 ], [ -82.0022374000675, 28.919860420483776 ], [ -82.003353929430958, 28.919784083865476 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Weston Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006942285879489, 28.920229837522104 ], [ -82.006942294819112, 28.920372504102584 ], [ -82.006938001611033, 28.920450885882975 ], [ -82.006916908961202, 28.920566395242176 ], [ -82.006895617837358, 28.920640996297603 ], [ -82.006849126135549, 28.920741724517537 ], [ -82.006815135941451, 28.920808762202228 ], [ -82.006768641570943, 28.920868237408495 ], [ -82.006717653048511, 28.920909492736321 ], [ -82.006620164497562, 28.920935624956325 ], [ -82.006531270644544, 28.920935628030236 ], [ -82.006387088192312, 28.920928071307674 ], [ -82.006234502488653, 28.92090573246627 ], [ -82.006056517740177, 28.920883394492346 ], [ -82.005882833006083, 28.920875837530001 ], [ -82.00571325196168, 28.920875844135821 ], [ -82.005492874567423, 28.920872071779961 ], [ -82.005310788654612, 28.920868297715838 ], [ -82.005175006094049, 28.920868301543024 ], [ -82.004957684807877, 28.920862092006413 ], [ -82.004756451654117, 28.920858119312488 ], [ -82.004581860577119, 28.920853537375592 ], [ -82.004430864851841, 28.920854150859025 ], [ -82.004301984053782, 28.920846196256129 ], [ -82.004238676324547, 28.920826306882553 ], [ -82.004182150234669, 28.920794479916733 ], [ -82.004150493044222, 28.920762653167124 ], [ -82.004125620779462, 28.920724855735465 ], [ -82.004109791088268, 28.920663190518731 ], [ -82.004107525876961, 28.920525930557005 ], [ -82.004102797735371, 28.92037260978255 ], [ -82.004094388740853, 28.920186284002547 ], [ -82.004094388594865, 28.920182157801289 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Weston Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004094388594865, 28.920182157801289 ], [ -82.004098680505223, 28.920007175351973 ], [ -82.004111374785182, 28.919861759125094 ], [ -82.004132471060629, 28.919764814034878 ], [ -82.004140090129084, 28.919742812236283 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mayhurst Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011032976449158, 28.918992094525912 ], [ -82.011107588650333, 28.918989104806386 ], [ -82.011188983647713, 28.918984621209578 ], [ -82.011492518213529, 28.918954758861538 ], [ -82.011716352905651, 28.918929377848098 ], [ -82.012008016184225, 28.918887578842334 ], [ -82.012213196496646, 28.918848770612911 ], [ -82.01226915325195, 28.918830862392078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ambler Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010886212576651, 28.918387988603115 ], [ -82.011036248869374, 28.918367005836782 ], [ -82.011120645812312, 28.918349121140338 ], [ -82.011252710178539, 28.918325391146194 ], [ -82.01140489759716, 28.918301658500905 ], [ -82.011529929687342, 28.918277584123949 ], [ -82.011685630859503, 28.918248005798326 ], [ -82.011772237201441, 28.918235616399063 ], [ -82.011816326090667, 28.918235612720402 ], [ -82.011853633055907, 28.918244562182355 ], [ -82.011894332630604, 28.918263952723581 ], [ -82.011935899831343, 28.918292676534175 ], [ -82.012010343703153, 28.918366927421086 ], [ -82.012060951100395, 28.918441521372159 ], [ -82.012125235094729, 28.918533647554153 ], [ -82.012182881221591, 28.918628867349465 ], [ -82.012230170838407, 28.918736121944335 ], [ -82.01226915325195, 28.918830862392078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ambler Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01226915325195, 28.918830862392078 ], [ -82.012284302250634, 28.91886400242133 ], [ -82.012321432996302, 28.918961975038936 ], [ -82.01234859760541, 28.919033477848405 ], [ -82.012389245110825, 28.919140732059521 ], [ -82.012416214249825, 28.919214984167532 ], [ -82.012426382943787, 28.919298522380799 ], [ -82.012423067682207, 28.919345963610972 ], [ -82.012385760951531, 28.919414378100601 ], [ -82.012348644934761, 28.919447039972329 ], [ -82.012270892545857, 28.919480050052307 ], [ -82.012213257965286, 28.919491742498536 ], [ -82.012142342884573, 28.919506873812498 ], [ -82.012037431778779, 28.919521666924052 ], [ -82.011888563458356, 28.919545399101107 ], [ -82.01173637506389, 28.919566382092402 ], [ -82.011601183757392, 28.919584269544469 ], [ -82.011465794145252, 28.919599062902776 ], [ -82.011341666109843, 28.9196142134351 ], [ -82.011214485820005, 28.91962764973162 ], [ -82.011100873237666, 28.919638103659114 ], [ -82.010995735638787, 28.919647062631267 ], [ -82.010844814432289, 28.919636631069949 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Danbury Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013872071926457, 28.919071837713695 ], [ -82.01384647230158, 28.919016494285216 ], [ -82.013803866972665, 28.918904083180944 ], [ -82.013757745791921, 28.918780671608001 ], [ -82.013707715109931, 28.918647291827675 ], [ -82.01365045384243, 28.918492599584624 ], [ -82.01357462907572, 28.9183104053078 ], [ -82.013498807032008, 28.918147805253472 ], [ -82.01343959721639, 28.918037460067083 ], [ -82.01338234211002, 28.917942927413218 ], [ -82.01330828605235, 28.91783395687354 ], [ -82.013151967467749, 28.917610861613177 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Concord Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013241258663143, 28.919271977416869 ], [ -82.013192014826899, 28.919187411613386 ], [ -82.013147651759681, 28.919070189423831 ], [ -82.013090391507447, 28.918918933798214 ], [ -82.013014566411115, 28.918728487715615 ], [ -82.012938740401154, 28.918536669191596 ], [ -82.012883243243138, 28.918416352146615 ], [ -82.012831459885007, 28.918323537637235 ], [ -82.012775966427569, 28.9182324414157 ], [ -82.01270581542019, 28.918126909748626 ], [ -82.012589211162222, 28.91793602946019 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eaglemont Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009818553250597, 28.914212563281936 ], [ -82.009822452861201, 28.914129024740287 ], [ -82.009832400508429, 28.913962293085564 ], [ -82.009834154978236, 28.913926540343816 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kaylee Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005017519039882, 28.916010066836851 ], [ -82.005757546701574, 28.916011417227388 ], [ -82.007621678178609, 28.91601270300345 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ellison Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005017490738041, 28.91536995752756 ], [ -82.005193119751468, 28.915375452007222 ], [ -82.005801080797895, 28.915375429735953 ], [ -82.006572360294783, 28.915373679559146 ], [ -82.006765961116471, 28.915373669879909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Linley Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005011211697976, 28.914746348670668 ], [ -82.00584343940659, 28.914744598845065 ], [ -82.006428929951923, 28.914742854846299 ], [ -82.006560211216254, 28.914750070149491 ], [ -82.006632886614398, 28.914767599428743 ], [ -82.006683485550113, 28.914794411603253 ], [ -82.006723731646531, 28.914831536585396 ], [ -82.006752061156362, 28.914881382686936 ], [ -82.006762224727083, 28.914945324401227 ], [ -82.006765961116471, 28.915373669879909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kaylee Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00429424330207, 28.9147463695308 ], [ -82.004293267932709, 28.914770778498678 ], [ -82.004295623632927, 28.915048892556861 ], [ -82.004296792253498, 28.915476419801813 ], [ -82.004296804166245, 28.915795696682732 ], [ -82.004298501066827, 28.915841946572627 ], [ -82.004312069102568, 28.915882228340209 ], [ -82.004330722508996, 28.915918035473489 ], [ -82.004374813035838, 28.915959809678171 ], [ -82.004429075285515, 28.915991138587252 ], [ -82.004493512210558, 28.916009040097222 ], [ -82.004619568627277, 28.916009393668109 ], [ -82.005017519039882, 28.916010066836851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jasper Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006656632487577, 28.912821771918761 ], [ -82.006913688991986, 28.912778154731708 ], [ -82.00710728391968, 28.912761300483783 ], [ -82.007297077910721, 28.91276897149093 ], [ -82.007425269533286, 28.912783805109857 ], [ -82.007610811808917, 28.912819413722588 ], [ -82.008204549166393, 28.91294701492988 ], [ -82.008665458472322, 28.913045861743441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jasper Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005907029346176, 28.912887518030114 ], [ -82.005928909079103, 28.912887175190409 ], [ -82.006192636980359, 28.912864818140623 ], [ -82.006548178334356, 28.912840243194275 ], [ -82.006656632487577, 28.912821771918761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jasper Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004149988318261, 28.912533144785261 ], [ -82.004169330300115, 28.912543457528795 ], [ -82.004429938134948, 28.912652427080936 ], [ -82.00473801582099, 28.912753144960423 ], [ -82.005026949640026, 28.912814670580673 ], [ -82.005331901210099, 28.912862100227823 ], [ -82.005639978778945, 28.912889935679793 ], [ -82.005907029346176, 28.912887518030114 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jasper Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003807330727327, 28.912342357258783 ], [ -82.003940760610902, 28.912420734756797 ], [ -82.004149988318261, 28.912533144785261 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burroughs Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004395162280915, 28.912017317165549 ], [ -82.004463352635284, 28.912024060787513 ], [ -82.004615159844718, 28.912068579279282 ], [ -82.004814194629674, 28.912139811342005 ], [ -82.0049693752145, 28.912190265541671 ], [ -82.005168410414299, 28.912237750415528 ], [ -82.005366842825623, 28.912263929067418 ], [ -82.00554774034147, 28.912283518597992 ], [ -82.005870075588263, 28.912292444456767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crawford Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003919420948478, 28.911038068133095 ], [ -82.004204248747754, 28.911157352614552 ], [ -82.00458597197138, 28.911307914489001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cambridge Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00458597197138, 28.911307914489001 ], [ -82.004718800462911, 28.911045608953618 ], [ -82.004896555806695, 28.910684981178484 ], [ -82.004963035941074, 28.910528893266711 ], [ -82.005012300638683, 28.910377154059717 ], [ -82.005034194859846, 28.910275994939653 ], [ -82.00504265588431, 28.910159686682608 ], [ -82.005048492927344, 28.909632676941598 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barrymoore Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003919420948478, 28.911038068133095 ], [ -82.003978803104289, 28.910931152499341 ], [ -82.004032363355634, 28.910817946168557 ], [ -82.004081630468633, 28.910721602967168 ], [ -82.004121595954757, 28.910637561917998 ], [ -82.004166133720091, 28.910548180034336 ], [ -82.004213795165057, 28.910464297554757 ], [ -82.00425501203425, 28.910394510927993 ], [ -82.004283725619231, 28.91033022323505 ], [ -82.004302671359852, 28.9102576851961 ], [ -82.004309116428715, 28.910204400729356 ], [ -82.004315366138485, 28.910137364347943 ], [ -82.004315362806636, 28.910075827644004 ], [ -82.004318486093027, 28.910014291754919 ], [ -82.004321803902755, 28.909944506151611 ], [ -82.004321800567169, 28.909882970348221 ], [ -82.004331370672816, 28.909815932968183 ], [ -82.004340746669016, 28.909768490792697 ], [ -82.004378838014546, 28.909709705023133 ], [ -82.004410678210192, 28.909679107202873 ], [ -82.004506007050182, 28.909642664256662 ], [ -82.004588443934239, 28.909634411214689 ], [ -82.004706043932813, 28.909634407659262 ], [ -82.004833020792177, 28.90963715390868 ], [ -82.004972892492063, 28.909634398308476 ], [ -82.005048492927344, 28.909632676941598 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barrymoore Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005048492927344, 28.909632676941598 ], [ -82.005096742504222, 28.909631644906447 ], [ -82.005188752189596, 28.909628891582631 ], [ -82.005290530594024, 28.909631638261526 ], [ -82.005398363279483, 28.909634384646804 ], [ -82.005534912492394, 28.90963162948427 ], [ -82.005693731464092, 28.909628874241122 ], [ -82.005772261620635, 28.90962749522982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lewiston Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006500400754717, 28.91086952933054 ], [ -82.00659371865946, 28.91087897134457 ], [ -82.006734861440464, 28.910875202380108 ], [ -82.007081300143824, 28.910852606087676 ], [ -82.007423461735911, 28.910833772605166 ], [ -82.007739962502384, 28.910822465685545 ], [ -82.008415736377913, 28.910818665449561 ], [ -82.009091588462695, 28.910818756134482 ], [ -82.009322136620895, 28.910807683699087 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Colleton Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011907481718978, 28.910378269810895 ], [ -82.011907451191348, 28.910101185955035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Colleton Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011907451191348, 28.910101185955035 ], [ -82.011907387296986, 28.909521235955477 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pickens Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011902240936621, 28.910688700308519 ], [ -82.011907515920939, 28.910688698962442 ], [ -82.012200542125811, 28.910688674887261 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Loadstar Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999885980555391, 28.874960270039427 ], [ -81.999769796762052, 28.875332749232822 ], [ -81.999734169002465, 28.875449477283389 ], [ -81.999732005942334, 28.875458052758724 ], [ -81.999730280552185, 28.875475409442497 ], [ -81.999732005720162, 28.875492766137143 ], [ -81.999737128144943, 28.875509594995421 ], [ -81.999745495088177, 28.875525386215632 ], [ -81.999756847198228, 28.87553965706465 ], [ -81.999765204968952, 28.875547520654635 ], [ -81.999773478688667, 28.875554096658348 ], [ -81.999806346038838, 28.875573712802073 ], [ -81.999843236017213, 28.875586651007101 ], [ -81.99988242436541, 28.875592304919465 ], [ -81.999888422355482, 28.875592505242693 ], [ -82.000497101685283, 28.87568501723576 ], [ -82.001113367661787, 28.875779099561932 ], [ -82.001184371759138, 28.875793887128701 ], [ -82.001253647553227, 28.875812516669278 ], [ -82.001354227613035, 28.875842450958661 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Loadstar Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001354227613035, 28.875842450958661 ], [ -82.001649888665114, 28.875976605189312 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fairwinds Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999378607092652, 28.874162512619005 ], [ -81.999560394136111, 28.874231196818165 ], [ -81.999774135178214, 28.874289074890427 ], [ -82.000077744516091, 28.874357657007955 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Intrepid Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996745541779077, 28.874327008385311 ], [ -81.996991196290651, 28.874131170506779 ], [ -81.997272129752659, 28.873907208161594 ], [ -81.997465432260498, 28.873748816542172 ], [ -81.997649780304528, 28.873575444446647 ], [ -81.997822732449634, 28.873412893213679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999542083371509, 28.873764417549964 ], [ -81.999107700395044, 28.873604593611155 ], [ -81.998799329008264, 28.873465730087897 ], [ -81.998613278800079, 28.873370562222455 ], [ -81.99840540189696, 28.873253632080644 ], [ -81.998191820108389, 28.873120223681063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sassparilla Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998191820108389, 28.873120223681063 ], [ -81.998484482696256, 28.872777136031431 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sassparilla Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998484482696256, 28.872777136031431 ], [ -81.998669158833465, 28.872580484010083 ], [ -81.998782583088129, 28.872462440546556 ], [ -81.998786556399693, 28.872458814231962 ], [ -81.998843083713723, 28.872413013903355 ], [ -81.998904988522526, 28.872372963976616 ], [ -81.998971524557533, 28.872339152583749 ], [ -81.999041881999574, 28.872311987552173 ], [ -81.999115206954926, 28.872291800916834 ], [ -81.999190609655642, 28.872278837190677 ], [ -81.99926717573463, 28.872273254267213 ], [ -81.999291624130933, 28.872273037873516 ], [ -81.999979156153273, 28.872240630712351 ], [ -81.999990877030413, 28.872239883620438 ], [ -82.000035895767368, 28.872241772324116 ], [ -82.00007969460583, 28.872251123983212 ], [ -82.00012069289636, 28.872267605614137 ], [ -82.000157404271434, 28.872290616280267 ], [ -82.000188506374329, 28.872319328568807 ], [ -82.000212873661283, 28.8723527012225 ], [ -82.00022962455553, 28.872389532374772 ], [ -82.000238154250695, 28.872428486618436 ], [ -82.000238154188636, 28.872468159068603 ], [ -82.000236148068481, 28.872481855116853 ], [ -82.000217626334802, 28.872725998344308 ], [ -82.000186882458692, 28.87290467584544 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sassparilla Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000186882458692, 28.87290467584544 ], [ -82.000163617767953, 28.872995646829178 ], [ -82.000130751968939, 28.87309853087417 ], [ -82.000047059438543, 28.873309293102263 ], [ -81.999956567149027, 28.873475599840607 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oakcrest Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997910093467254, 28.872385004936589 ], [ -81.998148576284251, 28.872551211071848 ], [ -81.998484482696256, 28.872777136031431 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oakcrest Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997357254240086, 28.871978453022091 ], [ -81.997910093467254, 28.872385004936589 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edgemoor Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997910093467254, 28.872385004936589 ], [ -81.998062181582966, 28.87222537467434 ], [ -81.998267546305954, 28.872006650471565 ], [ -81.998341528357955, 28.871930279669623 ], [ -81.998382810327485, 28.871893477991055 ], [ -81.998451687879268, 28.871840511894941 ], [ -81.998525681460194, 28.871793190632111 ], [ -81.998604198569623, 28.871751901275402 ], [ -81.998686601607915, 28.871716971346025 ], [ -81.998772231452634, 28.871688684153309 ], [ -81.998860396182437, 28.871667267967183 ], [ -81.998950387477819, 28.871652894213977 ], [ -81.999041480620434, 28.871645679281173 ], [ -81.999055015832198, 28.871645222827066 ], [ -81.999513117742794, 28.871623536231223 ], [ -81.999515781936623, 28.871623332323427 ], [ -81.999559391098074, 28.87161615831279 ], [ -81.999600758449219, 28.871602051885404 ], [ -81.999638476540113, 28.871581494867684 ], [ -81.999671260932232, 28.87155518744509 ], [ -81.999697997353138, 28.871524025604192 ], [ -81.999717771424216, 28.871489070453848 ], [ -81.999729912739141, 28.871451511230187 ], [ -81.999731417610036, 28.871443589917327 ], [ -81.999870040639436, 28.871001632356279 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edgemoor Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999870040639436, 28.871001632356279 ], [ -81.999953150925492, 28.870743566621858 ], [ -82.000032861399845, 28.870529663271114 ], [ -82.000113852739148, 28.870316335709749 ], [ -82.000210910701327, 28.870060687423475 ], [ -82.000246125929351, 28.869964243058874 ], [ -82.000263283525982, 28.869908545740849 ], [ -82.000283731586407, 28.869826418165015 ], [ -82.000293217569762, 28.86977566544217 ], [ -82.000352618046946, 28.869414522343618 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barksdale Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997357254240086, 28.871978453022091 ], [ -81.997779796137948, 28.871527795117792 ], [ -81.998005377276485, 28.871284736535245 ], [ -81.998032602009104, 28.871255911093698 ], [ -81.998088321340887, 28.871205587815727 ], [ -81.998149628210342, 28.871160572846058 ], [ -81.99821586450912, 28.871121345290586 ], [ -81.99823095792793, 28.871113569459713 ], [ -81.998296462056302, 28.871084509004078 ], [ -81.998371176399942, 28.871059264478077 ], [ -81.998448480948269, 28.871041033544635 ], [ -81.998527525922469, 28.871030013793447 ], [ -81.998553763847738, 28.871027988437479 ], [ -81.998958243345925, 28.871010875948279 ], [ -81.99911381227291, 28.871004030564848 ], [ -81.999165261978007, 28.871000504752381 ], [ -81.999227510952807, 28.870989607179467 ], [ -81.999273269519577, 28.870976644099297 ], [ -81.999432728637942, 28.870959528360238 ], [ -81.999494958048984, 28.870952681101883 ], [ -81.99960774416688, 28.870956106749528 ], [ -81.999720532297758, 28.870966376271202 ], [ -81.999870040639436, 28.871001632356279 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998191820108389, 28.873120223681063 ], [ -81.997753937424349, 28.872824321743856 ], [ -81.997044535769561, 28.872307637828282 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997044535769561, 28.872307637828282 ], [ -81.996485216113257, 28.87186035042761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barksdale Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997044535769561, 28.872307637828282 ], [ -81.997357254240086, 28.871978453022091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007528523217417, 28.876412591520388 ], [ -82.007339031233258, 28.876006543417837 ], [ -82.007021029929447, 28.875328579728126 ], [ -82.006876515779524, 28.875090635822527 ], [ -82.006830142908484, 28.875027596798585 ], [ -82.006749211332135, 28.874928327375052 ], [ -82.006661739959299, 28.874833451503662 ], [ -82.006568037374876, 28.874743303912577 ], [ -82.006468432660895, 28.874658199478251 ], [ -82.006363275396765, 28.874578439542017 ], [ -82.006252932583607, 28.874504303789564 ], [ -82.00613779582001, 28.8744360502509 ], [ -82.006018267976032, 28.874373919812655 ], [ -82.005894768318711, 28.874318132608806 ], [ -82.005767730461812, 28.874268881704886 ], [ -82.005637602366491, 28.874226341218879 ], [ -82.005504839165624, 28.874190661810093 ], [ -82.005476977505651, 28.874184122922856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005476977505651, 28.874184122922856 ], [ -82.005369908289737, 28.87416196797226 ], [ -82.005233281266442, 28.874140358936231 ], [ -82.005095441921995, 28.874125912279037 ], [ -82.00495687100495, 28.874118678510602 ], [ -82.004818057462856, 28.87411868287807 ], [ -82.004679488191712, 28.874125925366162 ], [ -82.004541649061565, 28.874140380697167 ], [ -82.004431338160657, 28.87415725960399 ], [ -82.004350392263817, 28.874170742252417 ], [ -82.004216942102275, 28.874201556777923 ], [ -82.004055048382611, 28.874236222920782 ], [ -82.00389753278462, 28.874270888763679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ashville Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00389753278462, 28.874270888763679 ], [ -82.00378164130295, 28.873854179317856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ashville Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004470960926085, 28.872402081333149 ], [ -82.004791172090009, 28.87233666304639 ], [ -82.004947927201201, 28.872308011831379 ], [ -82.005085819635596, 28.872302944543595 ], [ -82.005668888392933, 28.872349426073395 ], [ -82.005784529465146, 28.87236798659735 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Montclair Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004405926963898, 28.870733108870521 ], [ -82.004440971835024, 28.870699368074696 ], [ -82.004483396553681, 28.870649202438724 ], [ -82.004518920301024, 28.870595041589407 ], [ -82.004547057229587, 28.870537614607038 ], [ -82.004567431179609, 28.870477701999118 ], [ -82.004579767476869, 28.870416111338308 ], [ -82.004583896007105, 28.870353678164339 ], [ -82.004579762489911, 28.870291243425925 ], [ -82.004578777120102, 28.87028422714614 ], [ -82.004449524802482, 28.869421836608517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sawgrass Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003863905615162, 28.870628890631512 ], [ -82.003863455253338, 28.870308361025124 ], [ -82.003857409033813, 28.870266079247788 ], [ -82.003832607530157, 28.870172117602916 ], [ -82.003789958784864, 28.870018690083359 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chesapeake Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003660828736798, 28.869439838496213 ], [ -82.003986900062131, 28.86944191515369 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sawgrass Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003789958784864, 28.870018690083359 ], [ -82.003693703545466, 28.869672411811482 ], [ -82.003680241102046, 28.869596966036752 ], [ -82.003660828736798, 28.869439838496213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chesapeake Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002077565554288, 28.869429267843426 ], [ -82.002225693806679, 28.869433429426671 ], [ -82.00323107166993, 28.869437100780168 ], [ -82.003660828736798, 28.869439838496213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chesapeake Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001736116407884, 28.869429903526857 ], [ -82.001800407058383, 28.869428693910006 ], [ -82.002043513090086, 28.869428690724234 ], [ -82.002077565554288, 28.869429267843426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Love Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003744018544381, 28.871817936506286 ], [ -82.003747584996518, 28.871663661583373 ], [ -82.003759237135654, 28.871601227370022 ], [ -82.003776032420376, 28.871549195685983 ], [ -82.003805757357696, 28.871476306966155 ], [ -82.003842380412721, 28.871384654686992 ], [ -82.003871084262485, 28.871280327034647 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Love Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003871084262485, 28.871280327034647 ], [ -82.003892043056354, 28.871190246924364 ], [ -82.003895553606768, 28.871088132313893 ], [ -82.003895549369574, 28.870961263104586 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yalaha Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00213372054364, 28.87408576638299 ], [ -82.002149441746852, 28.874036435522306 ], [ -82.002172656966906, 28.87395756228592 ], [ -82.002209677005951, 28.873807766998521 ], [ -82.002213208198171, 28.873791405504356 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zellwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003094204214932, 28.872442188204602 ], [ -82.003415933043399, 28.872467895810765 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zellwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002396323745458, 28.872426364542001 ], [ -82.002508126031444, 28.872427052406358 ], [ -82.002716282507308, 28.872427493308898 ], [ -82.002930192833006, 28.872429084228845 ], [ -82.003094204214932, 28.872442188204602 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zellwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002128182202981, 28.872426962367157 ], [ -82.002211076978682, 28.872426439901485 ], [ -82.002396323745458, 28.872426364542001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yalaha Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002213208198171, 28.873791405504356 ], [ -82.002228561844674, 28.87371408701414 ], [ -82.002241755797655, 28.873648994747512 ], [ -82.002269923530065, 28.873478431241388 ], [ -82.00230489181763, 28.873260014921694 ], [ -82.002341315377237, 28.873029960667498 ], [ -82.002358747463902, 28.872884873779604 ], [ -82.002371644880355, 28.872705640199165 ], [ -82.002383416764133, 28.872529543031746 ], [ -82.002385590474333, 28.872502964773179 ], [ -82.002396323745458, 28.872426364542001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ashville Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00378164130295, 28.873854179317856 ], [ -82.003742912593495, 28.8737149269522 ], [ -82.003699102968412, 28.873555826736808 ], [ -82.003693687076108, 28.87344881015856 ], [ -82.003700715540731, 28.873396205755792 ], [ -82.003720303780327, 28.873288151861768 ], [ -82.003742921100752, 28.873146871500126 ], [ -82.003764421114965, 28.872945153118469 ], [ -82.00377606653187, 28.872765555810044 ], [ -82.003784723212618, 28.872632050896577 ], [ -82.003788532559327, 28.872603831289616 ], [ -82.003801111159376, 28.872563706495193 ], [ -82.003821627100947, 28.87252620360464 ], [ -82.003848858529722, 28.872493098375219 ], [ -82.003859348961683, 28.872483188134627 ], [ -82.003892393952029, 28.872459316021892 ], [ -82.003930096110295, 28.872441574935021 ], [ -82.003971005989413, 28.872430652460597 ], [ -82.004013549075168, 28.872426962791991 ], [ -82.00403815328535, 28.872428186600644 ], [ -82.004334343252765, 28.872426758605609 ], [ -82.004470960926085, 28.872402081333149 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yellow Pine Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000810473862003, 28.873616972335618 ], [ -82.00129812684213, 28.873694034726892 ], [ -82.001502820277395, 28.873723765356832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yellow Pine Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001502820277395, 28.873723765356832 ], [ -82.001817387470055, 28.873769452890556 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Black Oak Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000636171497305, 28.872465689190641 ], [ -82.000969828573417, 28.872458258347276 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gladiolas Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000810473862003, 28.873616972335618 ], [ -82.000854352332667, 28.873401993251672 ], [ -82.000913926118827, 28.873029915995311 ], [ -82.000936945919221, 28.872885542096189 ], [ -82.000951040319805, 28.872766633901378 ], [ -82.000969828573417, 28.872458258347276 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00389753278462, 28.874270888763679 ], [ -82.003821889750341, 28.874288768789214 ], [ -82.003674644365276, 28.874317816393791 ], [ -82.00352580669265, 28.874339681543542 ], [ -82.003375826782232, 28.874354297453714 ], [ -82.003225157760852, 28.874361616289768 ], [ -82.003074261982718, 28.874361619092696 ], [ -82.003066188233234, 28.874361412610625 ], [ -82.002752093647942, 28.874329457426679 ], [ -82.002187165010028, 28.874243602862364 ], [ -82.001070067952099, 28.874073824729905 ], [ -82.000707173665589, 28.874017641706491 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000707173665589, 28.874017641706491 ], [ -82.000310370382465, 28.873956208028183 ], [ -81.999542083371509, 28.873764417549964 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gladiolas Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000707173665589, 28.874017641706491 ], [ -82.000810473862003, 28.873616972335618 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 123rd Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.168373222290683, 28.575948175530268 ], [ -82.168611225215557, 28.575968620040165 ], [ -82.168951482475833, 28.575968198922236 ], [ -82.169320620038107, 28.575962072572633 ], [ -82.169798925445761, 28.575975648261739 ], [ -82.170103913892817, 28.576000768396881 ], [ -82.170200267916684, 28.576034652090726 ], [ -82.170296640243592, 28.576079869129497 ], [ -82.170367368419832, 28.57614778771983 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 38th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.168291459166056, 28.577829592502511 ], [ -82.168317851301239, 28.577525988113212 ], [ -82.168391226479443, 28.576903976174464 ], [ -82.168387227537679, 28.576408101773644 ], [ -82.168409461027537, 28.576260728814237 ], [ -82.168389946717355, 28.576099238802271 ], [ -82.168373222290683, 28.575948175530268 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 38th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.168373222290683, 28.575948175530268 ], [ -82.168370387795861, 28.575912245897484 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 19th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136602607633264, 28.65754736944465 ], [ -82.136620678753175, 28.65740443704119 ], [ -82.136629626922925, 28.657265538184607 ], [ -82.136643183976574, 28.657160854803355 ], [ -82.136690890231208, 28.656993737202054 ], [ -82.136736410632977, 28.656901098584814 ], [ -82.136809354359073, 28.65683862631829 ], [ -82.136909649270521, 28.656749958868588 ], [ -82.136975734943633, 28.656677427867734 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 19th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136602607633264, 28.65754736944465 ], [ -82.136577466394556, 28.657517201654937 ], [ -82.136488309952526, 28.657396518122695 ], [ -82.136401409961209, 28.657255702111737 ], [ -82.13634876841077, 28.657134981938928 ], [ -82.136328122200027, 28.657052474255977 ], [ -82.136325702000576, 28.656945793774174 ], [ -82.136332358861253, 28.656798845695548 ], [ -82.136354912033809, 28.65659350794466 ], [ -82.136370811415958, 28.656535119172819 ], [ -82.136391305532356, 28.65650087856686 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 496", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102737215223712, 28.755620932711288 ], [ -82.102039261272026, 28.755608681894497 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 496", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102039261272026, 28.755608681894497 ], [ -82.101562445894118, 28.755588891001143 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 1st Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102039261272026, 28.755608681894497 ], [ -82.10202087370763, 28.755137830895205 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anderson Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071657036204186, 28.793870975255466 ], [ -82.07197558408491, 28.793870806849473 ], [ -82.072355579114927, 28.793871039161626 ], [ -82.072902223392262, 28.793870748427423 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anderson Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070475873626421, 28.793875120540491 ], [ -82.070734760480306, 28.79387256041322 ], [ -82.07113961750504, 28.793872351063115 ], [ -82.071307617521882, 28.793869837143159 ], [ -82.071657036204186, 28.793870975255466 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gator Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071657036204186, 28.793870975255466 ], [ -82.071924186992462, 28.795097498992998 ], [ -82.071950777881213, 28.795219584918556 ], [ -82.071976638096345, 28.795345610714875 ], [ -82.072012329378211, 28.795440788498766 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenway Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993382124664777, 28.811742688438525 ], [ -81.993459184000415, 28.811298890628077 ], [ -81.993470682789422, 28.811207793878594 ], [ -81.993466855196885, 28.811147061843101 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rosedale Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989244697573952, 28.875092892980312 ], [ -81.989334057321472, 28.875168063781121 ], [ -81.98939561252854, 28.87524672962919 ], [ -81.989477027221824, 28.875337631341392 ], [ -81.989598113235559, 28.875428237454528 ], [ -81.989772913150134, 28.875535181083897 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Taylor Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068470004733513, 28.8035209798044 ], [ -82.067430223173062, 28.803518464382492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Martin Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067442829622891, 28.801695862270748 ], [ -82.067439464141842, 28.801817167921538 ], [ -82.067435338682643, 28.802474154319288 ], [ -82.067436817575285, 28.803063571044689 ], [ -82.067430223173062, 28.803518464382492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068370529460623, 28.736475117612713 ], [ -82.0697887700655, 28.734119428698165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pawleys Island Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010615226200116, 28.906929107957772 ], [ -82.010749121317602, 28.90693980909673 ], [ -82.010870845504684, 28.906959078352774 ], [ -82.010980398784866, 28.906986918465655 ], [ -82.011094821730126, 28.90702332542898 ], [ -82.011189771075095, 28.907061876787779 ], [ -82.011274979144133, 28.907102570006263 ], [ -82.011357755861468, 28.907151832489248 ], [ -82.011445404006125, 28.907216089818419 ], [ -82.011530615380209, 28.907276062274747 ], [ -82.011596352103538, 28.907338179228312 ], [ -82.011669397182459, 28.907419574045981 ], [ -82.011725398337447, 28.907507397302606 ], [ -82.011757053707228, 28.907575943156978 ], [ -82.011788801978881, 28.907649728639491 ], [ -82.011809125943998, 28.907723638681421 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beachwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010627319369661, 28.906125807297819 ], [ -82.010787992445017, 28.906127936373807 ], [ -82.010941362982024, 28.906145061112852 ], [ -82.011143423620425, 28.906172893952021 ], [ -82.011311404736688, 28.906222149764272 ], [ -82.011489126927927, 28.906294968093441 ], [ -82.011661979642028, 28.90636778658757 ], [ -82.011810487499986, 28.906444891001637 ], [ -82.011954132001534, 28.906549844189357 ], [ -82.012114818727753, 28.906667647194936 ], [ -82.012287675369507, 28.906774739573528 ], [ -82.012375322136748, 28.906806863663249 ], [ -82.012497044202632, 28.906815421172446 ], [ -82.012660154013275, 28.906819691657773 ], [ -82.01280622075501, 28.906819678480112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barnacle Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010615226200116, 28.906929107957772 ], [ -82.010645725927063, 28.906546984252845 ], [ -82.010648638305938, 28.906360656768364 ], [ -82.010639498834394, 28.906194354881837 ], [ -82.010627319369661, 28.906125807297819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Miona Shores Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009651176866811, 28.906875624032836 ], [ -82.009675513825329, 28.906800645933362 ], [ -82.009704718153316, 28.906676402023308 ], [ -82.009724180580889, 28.906537161669398 ], [ -82.009729037550173, 28.906417200804366 ], [ -82.009716854785367, 28.90628224760535 ], [ -82.009687628255762, 28.90613229845783 ], [ -82.009631620496918, 28.905965217361928 ], [ -82.009536661847648, 28.905778857622384 ], [ -82.009403663917851, 28.905558494489973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Judson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991150142193035, 28.878813874436741 ], [ -81.99099705499043, 28.878573563062396 ], [ -81.990612001382829, 28.877910388575003 ], [ -81.990483711989228, 28.877733677102807 ], [ -81.990430760955164, 28.877661787787222 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Judson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990430760955164, 28.877661787787222 ], [ -81.990312127587586, 28.877531643751574 ], [ -81.990070910476689, 28.87730633280669 ], [ -81.989953749862948, 28.877188407535073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Horst Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97816206584541, 28.918005881692128 ], [ -81.978243934056664, 28.917529135028072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Miona Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994925381265816, 28.908356849317386 ], [ -81.995009883485949, 28.90832610226461 ], [ -81.995108558142761, 28.908298479447488 ], [ -81.99521844591105, 28.908292563553577 ], [ -81.995359727763713, 28.908304408626083 ], [ -81.995492039450383, 28.908330065617008 ], [ -81.995637805954345, 28.908357695354557 ], [ -81.995781167788152, 28.908387178176056 ], [ -81.995977099439671, 28.908432563688471 ], [ -81.996191721715974, 28.90848597721391 ], [ -81.996328519773655, 28.908521500143394 ], [ -81.996467026380785, 28.908555305907722 ], [ -81.996611582260115, 28.908586937151306 ], [ -81.996727698051416, 28.908602414577889 ], [ -81.996822947207733, 28.908614099931615 ], [ -81.996922802678327, 28.90862609932875 ], [ -81.997008892817618, 28.908630869118326 ], [ -81.997098598775906, 28.908632845420893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Miona Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997098598775906, 28.908632845420893 ], [ -81.997208484611775, 28.908630874555147 ], [ -81.997338665970958, 28.908632332759961 ], [ -81.997560581728891, 28.908632337239951 ], [ -81.997722040148702, 28.908636803937718 ], [ -81.997875090284651, 28.908668783168451 ], [ -81.997979938292133, 28.908703900545021 ], [ -81.998050511773897, 28.908741321774126 ], [ -81.998132432605416, 28.908792699882682 ], [ -81.998200145896462, 28.90884583270363 ], [ -81.998256795574505, 28.908904620034658 ], [ -81.998327535565537, 28.908986084988353 ], [ -81.998414995607618, 28.909068964023529 ], [ -81.998493485501612, 28.909132109634633 ], [ -81.99860561413314, 28.909211042197988 ], [ -81.998711017246066, 28.909274188893065 ], [ -81.998823145555846, 28.909327468042978 ], [ -81.99896336422016, 28.909381101956576 ], [ -81.999035643007417, 28.90940379176638 ], [ -81.999090015478899, 28.909416268285508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Miona Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999090015478899, 28.909416268285508 ], [ -81.999172992983532, 28.909430082202732 ], [ -81.999278395138745, 28.90944389531667 ], [ -81.999383799411092, 28.909453763501897 ], [ -81.999502656688122, 28.909457710793337 ], [ -81.999634971038546, 28.909457710480822 ], [ -81.999726918385903, 28.909457710814131 ], [ -81.999827836406268, 28.909457711107702 ], [ -81.99992875339224, 28.909459684651061 ], [ -82.000025186022313, 28.909455738218057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hartford Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001680286807101, 28.910175226163368 ], [ -82.001702555759991, 28.910100626707962 ], [ -82.001737131825138, 28.909995430225276 ], [ -82.001771903935406, 28.909909486960395 ], [ -82.001803353661757, 28.909834544530472 ], [ -82.00184750135476, 28.90974584915006 ], [ -82.001897900018633, 28.909648903081731 ], [ -82.001948297726457, 28.909562958710634 ], [ -82.002001823189701, 28.909490765305502 ], [ -82.002061598572098, 28.909410321198234 ], [ -82.002117539956373, 28.909345226998504 ], [ -82.002180332232868, 28.909276161680758 ], [ -82.002229667804457, 28.909226829753258 ], [ -82.002292460078564, 28.909165656781699 ], [ -82.002345240949481, 28.909110888422596 ], [ -82.002417712237943, 28.909047288985338 ], [ -82.00248756260163, 28.908993978448631 ], [ -82.0025974489417, 28.908918992280618 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hartford Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000113108753553, 28.911869633919501 ], [ -82.000190479890989, 28.911838556326003 ], [ -82.000272201047508, 28.911805760723169 ], [ -82.000338230340134, 28.911783416356947 ], [ -82.000426529823272, 28.911752819570662 ], [ -82.000508721535269, 28.911724188830128 ], [ -82.000589456006281, 28.911696563199044 ], [ -82.000659586032555, 28.911675471063521 ], [ -82.000716433091071, 28.911658626923344 ], [ -82.000798286258203, 28.91163387408119 ], [ -82.000880139372327, 28.911606027210954 ], [ -82.000937283717874, 28.911584003788835 ], [ -82.001006140900571, 28.911547927922825 ], [ -82.001066114392273, 28.911514582406898 ], [ -82.001138590295085, 28.911467484894761 ], [ -82.001201356993192, 28.911422687345667 ], [ -82.001258544044546, 28.911376807940908 ], [ -82.001315732006304, 28.911323529671375 ], [ -82.001361144486921, 28.911274689848653 ], [ -82.001396843713422, 28.911228903445277 ], [ -82.001437867045695, 28.911173555350281 ], [ -82.001475764708673, 28.911118207263399 ], [ -82.001512521888017, 28.91105121502261 ], [ -82.001549524990011, 28.910971297355793 ], [ -82.001584844019632, 28.910873620668344 ], [ -82.001606709043827, 28.910789261085441 ], [ -82.001620163041125, 28.910693063418176 ], [ -82.001625209540251, 28.910622025482802 ], [ -82.00163361803402, 28.910509548596171 ], [ -82.00164258760293, 28.910411057317251 ], [ -82.001652116369186, 28.910340834117111 ], [ -82.001658410023822, 28.910289360688417 ], [ -82.001668935572454, 28.910223916046629 ], [ -82.001680286807101, 28.910175226163368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Creekside Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978225866399072, 28.906638479831827 ], [ -81.978206235382956, 28.90658167967084 ], [ -81.978172570441174, 28.906519938937873 ], [ -81.978116462230545, 28.906428561247168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Creekside Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978116462230545, 28.906428561247168 ], [ -81.978023881142391, 28.906287788444985 ], [ -81.97789762655681, 28.90613713345731 ], [ -81.977703685748367, 28.905899728245512 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Creekside Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977703685748367, 28.905899728245512 ], [ -81.977501676556557, 28.905668184523567 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Creekside Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977501676556557, 28.905668184523567 ], [ -81.97729546486616, 28.90541441797517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Creekside Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97729546486616, 28.90541441797517 ], [ -81.977252832025044, 28.905378295337609 ], [ -81.977203437754525, 28.905346257140732 ], [ -81.977149629808466, 28.905320298759865 ], [ -81.977092369915709, 28.905300881428989 ], [ -81.977063966476706, 28.905293994731259 ], [ -81.9768303544585, 28.905218018839857 ], [ -81.976817968357906, 28.905214102523338 ], [ -81.976735618234372, 28.905183572494487 ], [ -81.976656881169546, 28.90514639130248 ], [ -81.976582448227276, 28.905102886608788 ], [ -81.976512971490251, 28.905053438402604 ], [ -81.976462065557712, 28.905010523362733 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Creekside Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976462065557712, 28.905010523362733 ], [ -81.976435546029336, 28.904985249827838 ], [ -81.976385009285352, 28.904929041261674 ], [ -81.976341307931463, 28.904868556088648 ], [ -81.976304905297354, 28.904804438638429 ], [ -81.976276187795861, 28.904737366611467 ], [ -81.976264289107206, 28.904701194064931 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Van Patten Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979297217663145, 28.904864679344776 ], [ -81.979271967921036, 28.904829485793133 ], [ -81.979213050463414, 28.904746132240145 ], [ -81.979158338427922, 28.904692414405574 ], [ -81.97908257905479, 28.904633136902021 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Van Patten Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97908257905479, 28.904633136902021 ], [ -81.978975253467667, 28.904549777461924 ], [ -81.978836361554599, 28.904438631171534 ], [ -81.978771123974298, 28.904390466961971 ], [ -81.978716410174684, 28.904342304396678 ], [ -81.978693265011032, 28.904316372260574 ], [ -81.978674327217846, 28.904284884437772 ], [ -81.978646973057877, 28.904247838913957 ], [ -81.978594371877705, 28.904164486994873 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Old Camp Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977684423976356, 28.908644026688808 ], [ -81.977740841769176, 28.908403599872376 ], [ -81.977781454447737, 28.908233022694802 ], [ -81.977842384595363, 28.907931536262538 ], [ -81.977869491659433, 28.907671699684059 ], [ -81.977874230150235, 28.907481508677634 ], [ -81.977857777035851, 28.907215162005357 ], [ -81.977849323155141, 28.907116306632229 ], [ -81.977831311753562, 28.907015143398702 ], [ -81.977786259263112, 28.906864386268953 ], [ -81.977693877694563, 28.90667395259733 ], [ -81.97762307481446, 28.906562025117378 ], [ -81.977522234416654, 28.906440289984754 ], [ -81.977448236345893, 28.906362496714674 ], [ -81.977333295326133, 28.906261317020427 ], [ -81.97722285803313, 28.906183941522897 ], [ -81.977095731859464, 28.90610336894099 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Old Camp Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977095731859464, 28.90610336894099 ], [ -81.976938860930986, 28.906039095641226 ], [ -81.97671796831699, 28.905955748173838 ], [ -81.976562441902217, 28.90590613250356 ], [ -81.976438469145563, 28.905868423529309 ], [ -81.97630611778834, 28.905839595180829 ], [ -81.976098103067173, 28.905796956161357 ], [ -81.975944823532629, 28.905775109309712 ], [ -81.975588670589588, 28.905743309161807 ], [ -81.975176151838497, 28.905749183015654 ], [ -81.974928187075491, 28.905763020446951 ], [ -81.974632078640184, 28.905773633415414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Old Mill Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97394309585053, 28.908494886125837 ], [ -81.974193387880703, 28.908419350033263 ], [ -81.9743872502155, 28.908361192673102 ], [ -81.974697719060003, 28.908263247749602 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974291843356724, 28.909320762707665 ], [ -81.975013260585939, 28.909109851015913 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Russell Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979898504797731, 28.912069630823947 ], [ -81.979996771467441, 28.912053488137744 ], [ -81.980152668969509, 28.912027040697446 ], [ -81.980244486949815, 28.912012958621446 ], [ -81.980344512143546, 28.911997159716787 ], [ -81.980446490146846, 28.911979642147156 ], [ -81.980544365548738, 28.91196556075348 ], [ -81.980637296900312, 28.91195249365639 ], [ -81.980747192201491, 28.911936723854701 ], [ -81.980812231286095, 28.91192489236844 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Russell Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980812231286095, 28.91192489236844 ], [ -81.980872784913913, 28.911913062915065 ], [ -81.980946795218699, 28.911899260226559 ], [ -81.981015964724804, 28.911888280097759 ], [ -81.981101922886893, 28.911874198407965 ], [ -81.981179872045459, 28.911860114632034 ], [ -81.981263875602508, 28.911846030758589 ], [ -81.981349834010061, 28.911830228229224 ], [ -81.981435792079736, 28.911816145423874 ], [ -81.981525657503965, 28.911800346032461 ], [ -81.981637558993341, 28.91178096027549 ], [ -81.981729511902287, 28.911761239650286 ], [ -81.981845465087019, 28.91173541457794 ], [ -81.981951545888549, 28.911709966133269 ], [ -81.982039013937126, 28.911686297138267 ], [ -81.982119362682511, 28.911664978519738 ], [ -81.982197312018954, 28.911642300672998 ], [ -81.982279170791244, 28.911617558843684 ], [ -81.982351064627579, 28.911594879200997 ], [ -81.982437024495567, 28.911568418941293 ], [ -81.982519076968075, 28.911543676991347 ], [ -81.98258901819834, 28.911520997867715 ], [ -81.982652901339151, 28.911501755673523 ], [ -81.982706820369827, 28.9114859490087 ], [ -81.982780862993522, 28.911471862896239 ], [ -81.982824818804346, 28.911466368158194 ], [ -81.982886745116886, 28.911466376118621 ], [ -81.982997506088225, 28.911481447826691 ], [ -81.983100102202584, 28.911515500042139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Commodore Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98015924059321, 28.907861145747823 ], [ -81.980133991564614, 28.907811752006964 ], [ -81.98006386045671, 28.907666044791043 ], [ -81.980004953893996, 28.907515402743652 ], [ -81.979965686545498, 28.907401802949483 ], [ -81.97992923018333, 28.907261040783158 ], [ -81.979912404075449, 28.907191893347541 ], [ -81.97990119766402, 28.907105464137082 ], [ -81.979889986258371, 28.907028908771988 ], [ -81.979884382256941, 28.90698198932888 ], [ -81.979884391945291, 28.906932601140674 ], [ -81.979878786982496, 28.906890619974131 ], [ -81.979867573247674, 28.906831351734365 ], [ -81.979856355159896, 28.906794307997952 ], [ -81.979831111010313, 28.90673256985254 ], [ -81.979800253651959, 28.90666589077086 ], [ -81.979766588716359, 28.906599211256246 ], [ -81.979696454973691, 28.90646832136397 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Black Water Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979872617140018, 28.907950308556863 ], [ -81.980017858412793, 28.907907732874722 ], [ -81.98015924059321, 28.907861145747823 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Black Water Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98015924059321, 28.907861145747823 ], [ -81.980356755833824, 28.907794808218142 ], [ -81.980546204120259, 28.907726308219392 ], [ -81.980809324732675, 28.907624484063188 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Black Water Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980809324732675, 28.907624484063188 ], [ -81.981226113025215, 28.907441188234856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duffy Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971337220263351, 28.892658447200208 ], [ -81.971337245253224, 28.892572158453291 ], [ -81.971337327647689, 28.892275479520084 ], [ -81.971337410709481, 28.891976393237375 ], [ -81.971339396044954, 28.891860541038742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duffy Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971339396044954, 28.891860541038742 ], [ -81.971340411825594, 28.891717528495253 ], [ -81.971343586227079, 28.891539798608363 ], [ -81.971343609923892, 28.891450758733665 ], [ -81.971343637961169, 28.891353470933019 ], [ -81.971343676045635, 28.891216303270145 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duffy Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971337220263351, 28.892658447200208 ], [ -81.971190147628974, 28.892658414754877 ], [ -81.971083507356369, 28.892658122897682 ], [ -81.97098487180773, 28.89264221387706 ], [ -81.9708563635063, 28.892604369693853 ], [ -81.97070617454763, 28.892566521552411 ], [ -81.970616496017612, 28.892532756800666 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duffy Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970616496017612, 28.892532756800666 ], [ -81.970531986918672, 28.892520994809097 ], [ -81.970396808417675, 28.892504573833641 ], [ -81.970237628932381, 28.892488380187821 ], [ -81.970016921972388, 28.892482831472698 ], [ -81.969821018211988, 28.892482786599665 ], [ -81.969735794451381, 28.892485587972008 ], [ -81.969680188955451, 28.892503190104694 ], [ -81.96964237456308, 28.892526668413595 ], [ -81.969595656940342, 28.892569717383587 ], [ -81.969575633059549, 28.89260102806271 ], [ -81.969560046873283, 28.892655826614877 ], [ -81.969551124921267, 28.892745859687732 ], [ -81.969539955561984, 28.892912223213742 ], [ -81.969541938151508, 28.893048925712144 ], [ -81.969541917471048, 28.893119056065757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duffy Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969541917471048, 28.893119056065757 ], [ -81.969541889694256, 28.89321325075522 ], [ -81.969551209136867, 28.893399235826656 ], [ -81.969560356524951, 28.893515089597518 ], [ -81.969566447124095, 28.893583562004729 ], [ -81.969584219657904, 28.893646198280383 ], [ -81.969619791919428, 28.893693180980215 ], [ -81.969684276770607, 28.893736254232287 ], [ -81.969750993003501, 28.893753884906577 ], [ -81.969897210121019, 28.893760622819453 ], [ -81.970053466890988, 28.893760658729843 ], [ -81.970211367250329, 28.893767688550312 ], [ -81.970327009703567, 28.893793157257331 ], [ -81.970405612077812, 28.893822616682641 ], [ -81.970500527240688, 28.893854952576785 ], [ -81.970589390551808, 28.893882130432381 ], [ -81.970659895152536, 28.893901053581224 ], [ -81.97074563576227, 28.893919980922735 ], [ -81.970831379263984, 28.893925155356605 ], [ -81.970963023641417, 28.893933434579434 ], [ -81.971048964443838, 28.89393345317654 ], [ -81.971125530655229, 28.893930720391324 ], [ -81.971177487311735, 28.893925230256411 ], [ -81.97123570167517, 28.893892928703817 ], [ -81.971272214676603, 28.893859910559925 ], [ -81.971301137484915, 28.893822729373539 ], [ -81.971318552338346, 28.893774342762967 ], [ -81.97132776377795, 28.893655741932285 ], [ -81.971330750498467, 28.893456352348316 ], [ -81.971330794906009, 28.893296495496536 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duffy Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971330794906009, 28.893296495496536 ], [ -81.971330832150315, 28.89316242366408 ], [ -81.971337173359444, 28.892831023789117 ], [ -81.971337220263351, 28.892658447200208 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Banderos Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961024278518067, 28.950665902683049 ], [ -81.961159667613657, 28.950561149802741 ], [ -81.961691463013779, 28.950165211134365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santa Barbara Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961024278518067, 28.950665902683049 ], [ -81.96200845055975, 28.951655398033797 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994322197762784, 28.909384875669954 ], [ -81.994317959019284, 28.909358978635176 ], [ -81.994300575147918, 28.909312911061701 ], [ -81.994278112668326, 28.909276814557398 ], [ -81.99424920193951, 28.909244497491699 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Miona Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99424920193951, 28.909244497491699 ], [ -81.994244319282217, 28.909182981314771 ], [ -81.994250368680881, 28.909126249601307 ], [ -81.994260795235533, 28.909077777714074 ], [ -81.994306789862733, 28.909005696949151 ], [ -81.994334537521311, 28.908970095283134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990179269269248, 28.908998704886915 ], [ -81.989905267021172, 28.909019638350998 ], [ -81.989681722302308, 28.90903697683158 ], [ -81.989322294287973, 28.909062016909751 ], [ -81.988912461107518, 28.909087052728061 ], [ -81.988634123548991, 28.909110170413555 ], [ -81.988384280959892, 28.909125575373096 ], [ -81.98810594386272, 28.909142906433065 ], [ -81.987871440380459, 28.909162168235106 ], [ -81.987615020074145, 28.909179501181971 ], [ -81.987354216662553, 28.909198760531876 ], [ -81.987172312097343, 28.909204529539139 ], [ -81.986806309784896, 28.909237276012238 ], [ -81.986457840944155, 28.909258453111306 ], [ -81.986179503938942, 28.909277708400349 ], [ -81.98594061679097, 28.909291183558032 ], [ -81.985633788907492, 28.909314290225275 ], [ -81.985443117727598, 28.909318126838009 ], [ -81.985316005489096, 28.909312327347635 ], [ -81.98520204366946, 28.90930652919916 ], [ -81.985129854189864, 28.909297200421829 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993781010107966, 28.909344144825383 ], [ -81.993770816111336, 28.909392159219493 ], [ -81.993770813413633, 28.909434707074336 ], [ -81.993774841088467, 28.909471937879143 ], [ -81.99378088218262, 28.909502076718166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99424920193951, 28.909244497491699 ], [ -81.994210065053281, 28.909218437403371 ], [ -81.994177827954374, 28.909200706722405 ], [ -81.994147606585912, 28.90918829516977 ], [ -81.994105294020514, 28.909177656081887 ], [ -81.994067013108676, 28.909174109224768 ], [ -81.994038832644904, 28.90917467549054 ], [ -81.994006567877335, 28.909174107375208 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994006567877335, 28.909174107375208 ], [ -81.99396425504797, 28.909184742622422 ], [ -81.993917912990995, 28.909198921895438 ], [ -81.99388768886169, 28.909214875822695 ], [ -81.993859480761515, 28.909230831642201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994083102937083, 28.909658104322823 ], [ -81.994128256112774, 28.90965324206795 ], [ -81.994171430826924, 28.909637086550365 ], [ -81.994191506828471, 28.909626122719722 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palmer Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993754435333528, 28.909991979857594 ], [ -81.99381891377115, 28.909949434159255 ], [ -81.993885411742824, 28.909850155648407 ], [ -81.993905904603253, 28.909815403701167 ], [ -81.99394184571571, 28.909768080750506 ], [ -81.993984500182776, 28.909725290340194 ], [ -81.994033133730454, 28.90968776329176 ], [ -81.994083102937083, 28.909658104322823 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993825206297132, 28.909569448880589 ], [ -81.993882719290369, 28.909613422354631 ], [ -81.99391558306813, 28.909630376255862 ], [ -81.993959785446478, 28.90964533749635 ], [ -81.993996051173525, 28.909654313417395 ], [ -81.994039117914042, 28.90966029942339 ], [ -81.994083102937083, 28.909658104322823 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palmer Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993825206297132, 28.909569448880589 ], [ -81.993836734127868, 28.90962382820593 ], [ -81.993840948127215, 28.909682812514447 ], [ -81.993836726722449, 28.909741797328294 ], [ -81.993824138663655, 28.909799849674016 ], [ -81.99380337780633, 28.909856057335343 ], [ -81.993774776443288, 28.909909532463342 ], [ -81.993762498470687, 28.909928157110645 ], [ -81.993754435333528, 28.909991979857594 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99378088218262, 28.909502076718166 ], [ -81.99379205519692, 28.909523664723274 ], [ -81.993809054640408, 28.909548597820692 ], [ -81.993825206297132, 28.909569448880589 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994191506828471, 28.909626122719722 ], [ -81.994211087514671, 28.909615429553515 ], [ -81.994246252009432, 28.909587929066724 ], [ -81.994275752133078, 28.909555960144072 ], [ -81.994298805425075, 28.90952020850148 ], [ -81.99430364933292, 28.909508461696987 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969585923090477, 28.91811263865976 ], [ -81.969550962380922, 28.918085128715909 ], [ -81.96951130720096, 28.918063118094036 ], [ -81.969467941860884, 28.918047293662124 ], [ -81.969439615148147, 28.918041443928271 ], [ -81.969422424044197, 28.918038003156489 ], [ -81.969375733031455, 28.91803558516014 ], [ -81.969329039053719, 28.918039699774042 ], [ -81.969283906971839, 28.918050689327519 ], [ -81.969241506095685, 28.918067868345272 ], [ -81.969240743959773, 28.918068407743576 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969136115844279, 28.918406542758792 ], [ -81.969145867221528, 28.918421936379666 ], [ -81.969174966551208, 28.918454257927884 ], [ -81.969209734380499, 28.918482111698477 ], [ -81.969249190700694, 28.9185041214599 ], [ -81.969269704328283, 28.918512033895254 ], [ -81.969292363292681, 28.918520289692079 ], [ -81.969337880179467, 28.918529925820504 ], [ -81.969384572234176, 28.91853302957556 ], [ -81.969431070449033, 28.918529260477747 ], [ -81.969465081872102, 28.918521271183398 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969240743959773, 28.918068407743576 ], [ -81.96917407306735, 28.918125457257442 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969110254898425, 28.918334113966313 ], [ -81.969123983908759, 28.918378370265089 ], [ -81.969136115844279, 28.918406542758792 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969122961569781, 28.918199711707274 ], [ -81.969122806591272, 28.918200119509585 ], [ -81.969112693966139, 28.918226786356488 ], [ -81.969109429798962, 28.918250345468508 ], [ -81.969106871090077, 28.918274279196122 ], [ -81.969106862134254, 28.918304196640097 ], [ -81.969110254898425, 28.918334113966313 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Colony Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962977943345408, 28.866887041786857 ], [ -81.962746803259137, 28.866888089492178 ], [ -81.962572500042938, 28.866890265196286 ], [ -81.962375459666973, 28.866894656679051 ], [ -81.96225681829344, 28.866907289014957 ], [ -81.962195310981599, 28.866932449584969 ], [ -81.962168285220145, 28.866953884310309 ], [ -81.962148077860633, 28.86698131495357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Colony Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962148077860633, 28.86698131495357 ], [ -81.962177604932776, 28.866993024343753 ], [ -81.96222140448333, 28.866999548597207 ], [ -81.962307141751083, 28.866999548330032 ], [ -81.96245373441981, 28.866996967307593 ], [ -81.962975376345355, 28.867002671255126 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Colony Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953664909978841, 28.864901497392896 ], [ -81.953747767578406, 28.864962967394522 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Colony Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957071368729018, 28.866238987290451 ], [ -81.957189232724232, 28.866251859265162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953479134101229, 28.863570925129071 ], [ -81.953492034294158, 28.863652204602346 ], [ -81.953815762156694, 28.863881794635532 ], [ -81.954146304859734, 28.864120261269512 ], [ -81.954291435747436, 28.864228013286588 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954291435747436, 28.864228013286588 ], [ -81.954385101851955, 28.864289661625403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954385101851955, 28.864289661625403 ], [ -81.954637358248164, 28.864453893192472 ], [ -81.954868147770597, 28.864586898273558 ], [ -81.955086796595339, 28.864698507988784 ], [ -81.955415210397788, 28.864854081561756 ], [ -81.955576601636878, 28.864920599600556 ], [ -81.955749710017344, 28.864984828551737 ], [ -81.955873360989699, 28.865028414387329 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955873360989699, 28.865028414387329 ], [ -81.956099840604821, 28.865099535958826 ], [ -81.956319813518149, 28.865163779481215 ], [ -81.956595502660548, 28.865228194047305 ], [ -81.956828935518374, 28.865275633878198 ], [ -81.957018764596796, 28.865304699289752 ], [ -81.957183866922264, 28.865326932434229 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065432405039587, 28.741454990586465 ], [ -82.065473860260326, 28.741364912614028 ], [ -82.065551613144095, 28.741221811194961 ], [ -82.065649173777786, 28.741040029372972 ], [ -82.065775654966529, 28.740826350907625 ], [ -82.06589130237596, 28.740641372311359 ], [ -82.066050303352284, 28.740367099556781 ], [ -82.066187624086254, 28.740137473211732 ], [ -82.066296035852531, 28.739955686556982 ], [ -82.06649361669777, 28.739620533770552 ], [ -82.066623229405153, 28.73940055112352 ], [ -82.066765131185335, 28.739166194661056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066765131185335, 28.739166194661056 ], [ -82.066975224927177, 28.738815173993348 ], [ -82.067351249301879, 28.738184440521895 ], [ -82.06748731839069, 28.737951586693363 ], [ -82.067739898682916, 28.737535080257995 ], [ -82.067934517519021, 28.737208932812162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 526 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066765131185335, 28.739166194661056 ], [ -82.066566875338538, 28.739064924081276 ], [ -82.066469763426738, 28.739037818497653 ], [ -82.066374975335748, 28.739031438090834 ], [ -82.066265345518019, 28.739028417828912 ], [ -82.06589625786421, 28.739028594882249 ], [ -82.064404309362772, 28.739020140861435 ], [ -82.064374095433394, 28.739020155051055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 522", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063075532636347, 28.744299115731639 ], [ -82.062409139464791, 28.744287672361537 ], [ -82.061563179680419, 28.744288054654838 ], [ -82.061344058707817, 28.744243227961121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 8th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06134401515132, 28.744321196799536 ], [ -82.060648598199691, 28.744321994126778 ], [ -82.060474029831269, 28.744311070956762 ], [ -82.059060557267301, 28.744304123241719 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 452", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122163145888848, 28.787814237397196 ], [ -82.122160832530298, 28.788169597668631 ], [ -82.122143739248514, 28.788357379504131 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 440", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121679846767719, 28.788759095688331 ], [ -82.121730942690718, 28.788695531748836 ], [ -82.121768098482946, 28.788646325219684 ], [ -82.121814558672909, 28.788597109442279 ], [ -82.121870330362341, 28.788554032749985 ], [ -82.121926109445809, 28.788519151721619 ], [ -82.122009883061878, 28.788488111956351 ], [ -82.122115352054138, 28.78846541166784 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 452", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122143739248514, 28.788357379504131 ], [ -82.122132409806539, 28.788422696268185 ], [ -82.122115352054138, 28.78846541166784 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 452", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122115352054138, 28.78846541166784 ], [ -82.122084993075319, 28.789145976529927 ], [ -82.122085183098008, 28.789309891117284 ], [ -82.122102529758592, 28.789426116682424 ], [ -82.122112590799105, 28.789544125437637 ], [ -82.122125098687462, 28.789633720018308 ], [ -82.12216504195284, 28.789847865730618 ], [ -82.122252145599873, 28.79008163670072 ], [ -82.122339166873644, 28.790243285955551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 440", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122115352054138, 28.78846541166784 ], [ -82.122323460663452, 28.788440106960202 ], [ -82.122380479732556, 28.788435032483079 ], [ -82.122468847170282, 28.788417371379989 ], [ -82.122515623040215, 28.78841536671192 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 10th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122515623040215, 28.78841536671192 ], [ -82.122447740913799, 28.788590707246833 ], [ -82.122431110009899, 28.788720326606796 ], [ -82.12243714852687, 28.78888018004638 ], [ -82.12306316086962, 28.789864539830983 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 440", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122818581947257, 28.788278044924287 ], [ -82.122856809053289, 28.788249539758297 ], [ -82.123648313490293, 28.78757999026379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122818581947257, 28.788278044924287 ], [ -82.123244227692098, 28.788844764194952 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 440", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122515623040215, 28.78841536671192 ], [ -82.12257895056284, 28.788396234772424 ], [ -82.122639296983422, 28.78837670125678 ], [ -82.122718079914293, 28.788336749816157 ], [ -82.122818581947257, 28.788278044924287 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 405", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14569471059427, 28.810150788937381 ], [ -82.145747582486123, 28.810179367801325 ], [ -82.145830967909561, 28.810231180763402 ], [ -82.145908258802464, 28.810283000225841 ], [ -82.14596724838033, 28.810325890242225 ], [ -82.146016079719885, 28.81037057953607 ], [ -82.146079125016101, 28.810408098213319 ], [ -82.14618487339223, 28.810465253805511 ], [ -82.146253999519644, 28.810492026584999 ], [ -82.146314983545864, 28.810508067940642 ], [ -82.146520240451949, 28.810522164301066 ], [ -82.147066896133182, 28.810544839882347 ], [ -82.147394080041323, 28.810560591095474 ], [ -82.147599312068209, 28.810556789473804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 405D West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145149504345881, 28.808318086759385 ], [ -82.145253313984199, 28.808359743533448 ], [ -82.145332695515137, 28.808456303849841 ], [ -82.145469101949644, 28.808644078666887 ], [ -82.14558722555239, 28.808837244390613 ], [ -82.145687012286714, 28.808994634236395 ], [ -82.145723690407451, 28.809067971430629 ], [ -82.145738046553717, 28.809162812924527 ], [ -82.145748388270746, 28.809293451470531 ], [ -82.145750886106129, 28.80962991843672 ], [ -82.145745041452884, 28.809812477800936 ], [ -82.145726964400055, 28.809964622676745 ], [ -82.14569471059427, 28.810150788937381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Belt Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10845569497782, 28.6685297945176 ], [ -82.108436827964098, 28.66852974453807 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Florida Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110536758278343, 28.664890558427665 ], [ -82.110529504894046, 28.665849833511594 ], [ -82.110523744616216, 28.666713992358304 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104252437615713, 28.680490555560343 ], [ -82.104252313824944, 28.680365460998779 ], [ -82.104257143881483, 28.679449864696441 ], [ -82.104262169112573, 28.678731552917718 ], [ -82.104266196551492, 28.677908683281355 ], [ -82.104263238471233, 28.677699782301431 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104244159299938, 28.686838589066575 ], [ -82.104245749156618, 28.685064143688162 ], [ -82.104249527561947, 28.683123021271445 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 542 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104249527561947, 28.683123021271445 ], [ -82.10405342857301, 28.683135378510531 ], [ -82.101995422085608, 28.683136930570562 ], [ -82.100112876621949, 28.683136264612422 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110104861514245, 28.688817379053578 ], [ -82.110284621646045, 28.687205826982499 ], [ -82.11041623519715, 28.686036781701414 ], [ -82.110492966412693, 28.685314369069445 ], [ -82.110545914839165, 28.684819823020284 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120825344383348, 28.666755775121839 ], [ -82.120820345345649, 28.667059913442024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120829714461237, 28.666305489237907 ], [ -82.120825344383348, 28.666755775121839 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dogwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121185721222744, 28.666298876929826 ], [ -82.120829714461237, 28.666305489237907 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120833813272654, 28.665620366966603 ], [ -82.120829714461237, 28.666305489237907 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palm Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121195490487125, 28.665620737277685 ], [ -82.122754713032208, 28.66562969806531 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palm Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120833813272654, 28.665620366966603 ], [ -82.121195490487125, 28.665620737277685 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120835433976026, 28.664902928869232 ], [ -82.120833813272654, 28.665620366966603 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120835433976026, 28.664902928869232 ], [ -82.122459365455597, 28.66492384669176 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Dade Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119785170132403, 28.666754496246273 ], [ -82.120825344383348, 28.666755775121839 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119787510129157, 28.66490816176 ], [ -82.120835433976026, 28.664902928869232 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Adams Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119787510129157, 28.66490816176 ], [ -82.119785170132403, 28.666754496246273 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957183866922264, 28.865326932434229 ], [ -81.957307963164837, 28.865344542483182 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98062441048674, 28.865420670138359 ], [ -81.980741351552354, 28.86541900062031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962971288945297, 28.865426329738508 ], [ -81.963196224248748, 28.865428641927622 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Schmid Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989692615797296, 28.866567876794921 ], [ -81.989692750362892, 28.865933357052299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Killingsworth Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987756054464683, 28.865424548952419 ], [ -81.987748616049018, 28.866433026891727 ], [ -81.987747252678574, 28.866450635220687 ], [ -81.987749488629532, 28.866473164142196 ], [ -81.987756134357326, 28.866495010425336 ], [ -81.987766992113393, 28.866515508151295 ], [ -81.98778172473861, 28.86653403560096 ], [ -81.987799891537577, 28.866550027890643 ], [ -81.987820933925093, 28.866563001333194 ], [ -81.987844218476496, 28.866572562465084 ], [ -81.987869033851737, 28.866578416167091 ], [ -81.987894627693905, 28.866580390030009 ], [ -81.98790537624329, 28.866580046326941 ], [ -81.989692615797296, 28.866567876794921 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Schmid Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989636142810042, 28.865418463874001 ], [ -81.989634837997627, 28.865687345765895 ], [ -81.989645043426933, 28.865864351474382 ], [ -81.989692750362892, 28.865933357052299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Schmid Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989692750362892, 28.865933357052299 ], [ -81.989737064106961, 28.865855357233833 ], [ -81.989743894576492, 28.865717355827655 ], [ -81.989743500673427, 28.865417979547942 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Killingsworth Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989692615797296, 28.866567876794921 ], [ -81.990902581230102, 28.8665694639751 ], [ -81.991134559516823, 28.866491175983668 ], [ -81.991276083014654, 28.866488603886246 ], [ -81.991523106156421, 28.866496322891347 ], [ -81.991569422842034, 28.86646544541021 ], [ -81.991590008376718, 28.866419128768793 ], [ -81.991582288787384, 28.866298191623333 ], [ -81.991605449201117, 28.865860758090928 ], [ -81.99157199907728, 28.865817014088307 ], [ -81.991525681325228, 28.865791283747388 ], [ -81.991168013263632, 28.865796428780371 ], [ -81.991067660659638, 28.865801575111306 ], [ -81.991067234274041, 28.865421660107003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jebber Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980958130591603, 28.869593935383921 ], [ -81.98108457604782, 28.869595261669168 ], [ -81.981371682257972, 28.869593993636673 ], [ -81.981407386173657, 28.869588760736757 ], [ -81.981444580136937, 28.86957436153666 ], [ -81.981490700654973, 28.869546869339263 ], [ -81.981538310873262, 28.869506282206206 ], [ -81.981571046913643, 28.869451290443688 ], [ -81.981579985238866, 28.86938974828427 ], [ -81.98157258614529, 28.869168451095334 ], [ -81.981559236625614, 28.868947150371213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jebber Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980247074889846, 28.869491695153915 ], [ -81.98067102894791, 28.86955461062551 ], [ -81.980958130591603, 28.869593935383921 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ardson Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980884991969049, 28.870244904141529 ], [ -81.980908827134343, 28.870056346961352 ], [ -81.980929802442489, 28.869933079112869 ], [ -81.980958130591603, 28.869593935383921 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jebber Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981559236625614, 28.868947150371213 ], [ -81.981553326305132, 28.86872978019581 ], [ -81.981544440833304, 28.868515029891196 ], [ -81.981537015228838, 28.868441699580696 ], [ -81.981516197030828, 28.868398484497494 ], [ -81.981492399736453, 28.868368365028491 ], [ -81.981462654083188, 28.868338242926001 ], [ -81.981431418412797, 28.868317288011411 ], [ -81.981393687092279, 28.868301512309085 ], [ -81.981355556852364, 28.868292397343502 ], [ -81.981309443842918, 28.868287153035048 ], [ -81.981211263557867, 28.868275355194477 ], [ -81.980854248406303, 28.868249114302458 ], [ -81.980625163588044, 28.868229439072227 ], [ -81.980463019031177, 28.868218939745809 ], [ -81.980335090132513, 28.868200589806062 ], [ -81.98022055147247, 28.868171765081605 ], [ -81.980168696998177, 28.868152005985067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beckett Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979872061468669, 28.868714444013801 ], [ -81.979941173426099, 28.868605915433658 ], [ -81.98002847492252, 28.868454614041624 ], [ -81.980115780674751, 28.868280033165085 ], [ -81.980168696998177, 28.868152005985067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beckett Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979564492600431, 28.869379597862746 ], [ -81.979608151649913, 28.869267865105396 ], [ -81.979645860137168, 28.869156129622297 ], [ -81.979673649043463, 28.869049633197118 ], [ -81.97971135840686, 28.868937899496721 ], [ -81.979743104507307, 28.868885525605418 ], [ -81.979808576329134, 28.868789508783859 ], [ -81.979872061468669, 28.868714444013801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kinsley Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979872061468669, 28.868714444013801 ], [ -81.979936309232016, 28.868754427502203 ], [ -81.980037456888951, 28.868800274223531 ], [ -81.980076132009231, 28.868812065873762 ], [ -81.980183235796147, 28.868829103732697 ], [ -81.980478725168396, 28.868874803724857 ], [ -81.980761890472934, 28.868920849586072 ], [ -81.981008826558991, 28.868954930585424 ], [ -81.981095105938394, 28.86895887143886 ], [ -81.98119179857828, 28.868958885073994 ], [ -81.981406015787243, 28.86895498640666 ], [ -81.981559236625614, 28.868947150371213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jebber Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979564492600431, 28.869379597862746 ], [ -81.980135507293426, 28.869474655781872 ], [ -81.980247074889846, 28.869491695153915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beckett Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979395743203355, 28.870160005512151 ], [ -81.979477162669923, 28.869671155631959 ], [ -81.979500985566673, 28.869566402794273 ], [ -81.979530756833555, 28.869466889632847 ], [ -81.979564492600431, 28.869379597862746 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beckett Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979302053576632, 28.870828393653845 ], [ -81.979361984599734, 28.870359036628038 ], [ -81.979395743203355, 28.870160005512151 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gerber Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980018756890956, 28.870833158495198 ], [ -81.980194949761227, 28.869792860887983 ], [ -81.980247074889846, 28.869491695153915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ardson Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98076221376752, 28.870947042482918 ], [ -81.980813516683995, 28.870624343904005 ], [ -81.980884991969049, 28.870244904141529 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ardson Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980879982493377, 28.87166918591652 ], [ -81.980867212231175, 28.871634955231283 ], [ -81.980778031627111, 28.871221157168264 ], [ -81.980764508696709, 28.871052090725719 ], [ -81.98076221376752, 28.870947042482918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chapman Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967534166700517, 28.87135584683589 ], [ -81.967599315065868, 28.871423376489783 ], [ -81.967690965333986, 28.87152582800503 ], [ -81.96787075849565, 28.871674857612735 ], [ -81.968406607725484, 28.872128151088837 ], [ -81.969037649067928, 28.872662165462444 ], [ -81.969172057148597, 28.872765788885459 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chapman Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970417954723146, 28.871925693630455 ], [ -81.970243380977479, 28.872016444709764 ], [ -81.970034415649693, 28.872130464584849 ], [ -81.969925963880669, 28.872202606480027 ], [ -81.969804284894522, 28.872279399386937 ], [ -81.969613823835559, 28.872423686903986 ], [ -81.9693598771224, 28.872609861693331 ], [ -81.969172057148597, 28.872765788885459 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chapman Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972200308626043, 28.872545299214643 ], [ -81.971890945494152, 28.872298477475493 ], [ -81.971529822597432, 28.872060713082256 ], [ -81.971155854361413, 28.871814114114635 ], [ -81.971087102161675, 28.871783836072179 ], [ -81.971018343379797, 28.871769854483638 ], [ -81.970925780184771, 28.871762849719602 ], [ -81.970857017867061, 28.871765162733805 ], [ -81.970751223258802, 28.871793075895607 ], [ -81.970521110808193, 28.871876831387819 ], [ -81.970417954723146, 28.871925693630455 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chapman Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970179087372983, 28.87485880797129 ], [ -81.970509689164302, 28.874833273746503 ], [ -81.97184003154608, 28.874733459246681 ], [ -81.972858282378297, 28.874659176115987 ], [ -81.972937630407586, 28.874642898384643 ], [ -81.973003761572627, 28.87460333673814 ], [ -81.973040800577522, 28.874549800666298 ], [ -81.973069910875978, 28.874482298056225 ], [ -81.973128170953217, 28.874191319918211 ], [ -81.973170548752975, 28.873951555058316 ], [ -81.973220859271279, 28.873721100816926 ], [ -81.973247344738127, 28.873567464736841 ], [ -81.973247361455805, 28.873506939187124 ], [ -81.973231507976834, 28.873448738408598 ], [ -81.97319713817312, 28.87340217362916 ], [ -81.973001475506862, 28.873232196493209 ], [ -81.972697400011171, 28.872973737085822 ], [ -81.972400004882928, 28.872729199084809 ], [ -81.972200308626043, 28.872545299214643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chapman Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969172057148597, 28.872765788885459 ], [ -81.969341274550899, 28.872907831156883 ], [ -81.969454967393673, 28.87301726760484 ], [ -81.969544848448109, 28.873147650016264 ], [ -81.969587138139303, 28.873233793416727 ], [ -81.969618843051549, 28.873343212006869 ], [ -81.969621458391629, 28.87344331314188 ], [ -81.969610850943837, 28.873543410377494 ], [ -81.969589665100074, 28.873634194352881 ], [ -81.969568481615298, 28.873720322443258 ], [ -81.969433464890017, 28.874178888776221 ], [ -81.969343446066333, 28.874507104195022 ], [ -81.969340782302396, 28.874567629128421 ], [ -81.969340762614337, 28.874637468230905 ], [ -81.969346027346006, 28.874721273474371 ], [ -81.969361879902124, 28.874772490876836 ], [ -81.969393603299935, 28.874823710997621 ], [ -81.969441197927864, 28.874863295929941 ], [ -81.969502017965354, 28.87489124505553 ], [ -81.969589293892994, 28.874895921657142 ], [ -81.969848485421736, 28.874884339580365 ], [ -81.970179087372983, 28.87485880797129 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99702673094383, 28.865469497667053 ], [ -81.997020265912127, 28.867984328568376 ], [ -81.997017729184407, 28.868198182534474 ], [ -81.997012665068453, 28.868336297091137 ], [ -81.996994944033531, 28.868492232742064 ], [ -81.99695697870655, 28.868661533727433 ], [ -81.99691901209566, 28.868804101255702 ], [ -81.996868392797978, 28.868955581414234 ], [ -81.99681777434489, 28.869078101224851 ], [ -81.996769687418606, 28.869178344112996 ], [ -81.996719069604012, 28.869276360033584 ], [ -81.996633926674264, 28.869429228755948 ], [ -81.99656215505361, 28.869536990738897 ], [ -81.996440673967427, 28.869695151270271 ], [ -81.996316663259265, 28.869837717110887 ], [ -81.99617240405604, 28.869980284042242 ], [ -81.995834149555208, 28.870301723621733 ], [ -81.995553334230436, 28.870574129552303 ], [ -81.995508446582605, 28.870611366059588 ], [ -81.995466101572447, 28.870638287511749 ], [ -81.995436228220953, 28.870651958165102 ], [ -81.995409939846652, 28.87065932003517 ], [ -81.995380066784278, 28.870666682675484 ], [ -81.995344239167693, 28.870671844379661 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street George Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987511746106961, 28.874106787505937 ], [ -81.987797758591753, 28.873764204328474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street George Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987320084709324, 28.874263216020001 ], [ -81.98741740371625, 28.874195053588501 ], [ -81.987511746106961, 28.874106787505937 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street George Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986978468911005, 28.874560345561008 ], [ -81.987014222172618, 28.874500917093108 ], [ -81.987042030380181, 28.874460715006524 ], [ -81.987075796065952, 28.874424009914417 ], [ -81.987133394023587, 28.874375070091489 ], [ -81.987218796059679, 28.874317395017343 ], [ -81.987320084709324, 28.874263216020001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street George Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986080710328494, 28.875430762803948 ], [ -81.986352812696424, 28.875221030903425 ], [ -81.986499788701877, 28.875100432404608 ], [ -81.986636834985447, 28.874972842610678 ], [ -81.986752035278101, 28.874848745121575 ], [ -81.986869224678713, 28.874703672804468 ], [ -81.986978468911005, 28.874560345561008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street George Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985623876566777, 28.875902677999033 ], [ -81.98569737145813, 28.875789065288778 ], [ -81.985776823326702, 28.875696428994463 ], [ -81.985931749223809, 28.875547865110644 ], [ -81.986080710328494, 28.875430762803948 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street George Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985288169282171, 28.87646550114901 ], [ -81.985526540901063, 28.876068728085947 ], [ -81.985623876566777, 28.875902677999033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street George Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984936571082244, 28.877026573861176 ], [ -81.985127270052246, 28.876717195845028 ], [ -81.985288169282171, 28.87646550114901 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street George Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984561141045873, 28.877571908508397 ], [ -81.984779646469292, 28.877252049474173 ], [ -81.984936571082244, 28.877026573861176 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Murrells Inlet Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98477207809654, 28.874736660817597 ], [ -81.984662831186967, 28.874876489845263 ], [ -81.984565499774746, 28.874997090290851 ], [ -81.984412554545187, 28.875191101819127 ], [ -81.984170223741657, 28.875495226795117 ], [ -81.983911999074948, 28.875818578370989 ], [ -81.983707403365003, 28.876084250904764 ], [ -81.983564386605906, 28.876264278768655 ], [ -81.983522667684355, 28.876335941689206 ], [ -81.983492866202326, 28.876418094430999 ], [ -81.983478953674549, 28.876484516590679 ], [ -81.983472976679948, 28.876601631970882 ], [ -81.983486859015542, 28.876722248031925 ], [ -81.983516632019573, 28.87682363528592 ], [ -81.983558324066124, 28.876907546407317 ], [ -81.983619875484436, 28.877001946508393 ], [ -81.983705256324683, 28.877096349490749 ], [ -81.983786669817235, 28.877166279697757 ], [ -81.983899859006812, 28.87724670205106 ], [ -81.984027873235519, 28.877311932218099 ], [ -81.984169644012113, 28.877376923883023 ], [ -81.984292080214118, 28.877439161102572 ], [ -81.984419984296409, 28.877503807093202 ], [ -81.984561141045873, 28.877571908508397 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Murrells Inlet Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98721858097592, 28.877776708298498 ], [ -81.987298025707801, 28.877726023669066 ], [ -81.987397334891426, 28.877656112817142 ], [ -81.987492671086784, 28.877589697036292 ], [ -81.987570130059524, 28.87753726339691 ], [ -81.987631703158314, 28.87748657689869 ], [ -81.987657525625139, 28.877442879902645 ], [ -81.987673419413937, 28.877392189140721 ], [ -81.987677397815673, 28.877334505334673 ], [ -81.987657546260891, 28.877273322899462 ], [ -81.987615846343374, 28.877217382609707 ], [ -81.987538403520048, 28.877140463147118 ], [ -81.987447058338333, 28.877060045908113 ], [ -81.987355712643549, 28.87698487278648 ], [ -81.987254438936702, 28.876899210291636 ], [ -81.987159121928542, 28.876825786218838 ], [ -81.987047918869649, 28.876741869466152 ], [ -81.986936714289413, 28.876663197703397 ], [ -81.986815582152502, 28.876579281587567 ], [ -81.98666664638553, 28.876481377799863 ], [ -81.986521682679339, 28.87639571127119 ], [ -81.986382674833436, 28.876320530848908 ], [ -81.986233739208572, 28.87623486540744 ], [ -81.986078376883199, 28.876152255227158 ], [ -81.985917862000363, 28.876065950297161 ], [ -81.9857668546518, 28.875977858729541 ], [ -81.985623876566777, 28.875902677999033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Murrells Inlet Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986640609067422, 28.878166456882624 ], [ -81.986702178767061, 28.878124511413432 ], [ -81.986811417723686, 28.878051104665985 ], [ -81.986904766667138, 28.877986437769771 ], [ -81.986974283754492, 28.877939249679105 ], [ -81.987051745295702, 28.877886815438519 ], [ -81.987125231831357, 28.87783787899378 ], [ -81.98721858097592, 28.877776708298498 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Murrells Inlet Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984561141045873, 28.877571908508397 ], [ -81.984598869246298, 28.877592890489581 ], [ -81.98473191963204, 28.877666321589782 ], [ -81.984930501429361, 28.877774720572354 ], [ -81.985125334428218, 28.877884868406451 ], [ -81.985268315128295, 28.877965292019955 ], [ -81.985401363404677, 28.878045716198514 ], [ -81.985540369825841, 28.878134877881511 ], [ -81.985685334441044, 28.878232782464 ], [ -81.985776680756871, 28.878302712524572 ], [ -81.98585412586975, 28.878367398673628 ], [ -81.985909727306407, 28.87841634722627 ], [ -81.985963344283292, 28.878456558556749 ], [ -81.986022920373202, 28.878482783908055 ], [ -81.986068597053446, 28.878489780628289 ], [ -81.98612619152243, 28.878486290216241 ], [ -81.986185774552141, 28.878461824171996 ], [ -81.986255290781486, 28.878418132875861 ], [ -81.986328778617732, 28.878372690582964 ], [ -81.986434045502378, 28.878308024336079 ], [ -81.986545271475464, 28.878227627875223 ], [ -81.986640609067422, 28.878166456882624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rosedale Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987511746106961, 28.874106787505937 ], [ -81.987556768477887, 28.874134836187274 ], [ -81.987812935616375, 28.87427295278021 ], [ -81.988220026257281, 28.874482750416533 ], [ -81.988535766817222, 28.874654081939312 ], [ -81.988748248911733, 28.874776461328754 ], [ -81.989033983822196, 28.874949652389652 ], [ -81.989244697573952, 28.875092892980312 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rosedale Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989772913150134, 28.875535181083897 ], [ -81.989874189033983, 28.875596370362057 ], [ -81.990036114570813, 28.875686791508926 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gantt Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988340883907483, 28.876938716156339 ], [ -81.988382583878973, 28.876987663382405 ], [ -81.988541616474294, 28.877149103549314 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gantt Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987842458665426, 28.876487683753719 ], [ -81.987963590040167, 28.876601316271895 ], [ -81.988064861984654, 28.876695717034629 ], [ -81.988340883907483, 28.876938716156339 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gantt Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987558487647419, 28.8763076121203 ], [ -81.987650412018311, 28.876366583426343 ], [ -81.987842458665426, 28.876487683753719 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sothell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987270549697968, 28.876108311443467 ], [ -81.987324164772886, 28.876150270005439 ], [ -81.987502885431013, 28.876276144534334 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Travis Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987270549697968, 28.876108311443467 ], [ -81.987671755091725, 28.87576049632262 ], [ -81.987993514825774, 28.875449379406056 ], [ -81.988208023250522, 28.875230897946636 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Travis Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988208023250522, 28.875230897946636 ], [ -81.988285482749063, 28.875155741195101 ], [ -81.988422528504771, 28.875005423294212 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sothell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986764178753958, 28.875730692779232 ], [ -81.986780060552519, 28.875781386603482 ], [ -81.986807857500096, 28.875823342808008 ], [ -81.986864639124363, 28.875863217549558 ], [ -81.987058066495322, 28.875978937807837 ], [ -81.987270549697968, 28.876108311443467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crestwood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986978468911005, 28.874560345561008 ], [ -81.987644055423985, 28.874900472350909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crestwood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987644055423985, 28.874900472350909 ], [ -81.987951856379155, 28.875057821512982 ], [ -81.98815639435179, 28.875176704686691 ], [ -81.988208023250522, 28.875230897946636 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inverness Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986700398648736, 28.882522990294014 ], [ -81.986791280691435, 28.882389276462163 ], [ -81.986864280364856, 28.882293579275334 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inverness Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986426047272289, 28.883016156947455 ], [ -81.986554389389227, 28.882768133633075 ], [ -81.986666131790372, 28.882576737865573 ], [ -81.986700398648736, 28.882522990294014 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fairfax Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990430760955164, 28.877661787787222 ], [ -81.990748397166826, 28.877362981410169 ], [ -81.991426862922069, 28.876638122002039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edgefield Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991559136109643, 28.878200258204977 ], [ -81.991315250617276, 28.877807304320857 ], [ -81.99125033563476, 28.877687550123579 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edgefield Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99125033563476, 28.877687550123579 ], [ -81.991180981436841, 28.877573476491449 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gibbes Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99125033563476, 28.877687550123579 ], [ -81.991370810898047, 28.877634538760187 ], [ -81.991451126985638, 28.877607233092089 ], [ -81.991845488211098, 28.877502750651221 ], [ -81.992063048741414, 28.877438821349934 ], [ -81.992185890160314, 28.877375229905315 ], [ -81.992325334558529, 28.877272103140701 ], [ -81.992429626104581, 28.877176883800075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gibbes Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992429626104581, 28.877176883800075 ], [ -81.992592004868939, 28.877025709575907 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983576522630713, 28.882621523539058 ], [ -81.983872200738702, 28.882877009236712 ], [ -81.984100991184405, 28.883067810266247 ], [ -81.98427739672897, 28.883199985831983 ], [ -81.984471631407914, 28.883335656951651 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thurmond Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980808244026079, 28.884839940298196 ], [ -81.981041553154824, 28.884455241427069 ], [ -81.981182012904583, 28.884254494761862 ], [ -81.981473471520928, 28.883883599469325 ], [ -81.98166373532024, 28.883658109057073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcduffie Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983289898893901, 28.878398521221303 ], [ -81.983431807309174, 28.878265683963704 ], [ -81.983797197577047, 28.877925234321804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Knox Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976392476182511, 28.872507284520744 ], [ -81.976507494551925, 28.872377169234657 ], [ -81.976607909000435, 28.872261509796733 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jace Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97601819494119, 28.872963494442214 ], [ -81.976085674072664, 28.872998397649049 ], [ -81.976302900490921, 28.873100105918162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Knox Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97601819494119, 28.872963494442214 ], [ -81.976281104809701, 28.872637399449626 ], [ -81.976392476182511, 28.872507284520744 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dunkirk Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959996706799856, 28.874942358608166 ], [ -81.960070585811707, 28.874825402521886 ], [ -81.960188793912053, 28.874635669012054 ], [ -81.96046065874161, 28.874225023124005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135517072269195, 28.878044885835767 ], [ -82.135603999690261, 28.877889085490914 ], [ -82.135734780808491, 28.87767352248617 ], [ -82.135930578270745, 28.877396013542324 ], [ -82.136164407995665, 28.877083645452277 ], [ -82.136349982684024, 28.87686923130072 ], [ -82.136461341684935, 28.876736954887448 ], [ -82.136617336052112, 28.876556315246511 ], [ -82.136814525903773, 28.876351568593005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135077584441717, 28.878899552882501 ], [ -82.135164431711971, 28.878695615273394 ], [ -82.135269741383951, 28.878487592502758 ], [ -82.135394428268881, 28.878255227905381 ], [ -82.135517072269195, 28.878044885835767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134695200826727, 28.87987778557396 ], [ -82.134751420191193, 28.879721883712367 ], [ -82.134907147999442, 28.879329059992077 ], [ -82.134983276442014, 28.879131886893784 ], [ -82.135077584441717, 28.878899552882501 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134064740618754, 28.881590614782791 ], [ -82.134096683330128, 28.88153309050081 ], [ -82.134153830349902, 28.881423789914063 ], [ -82.134257669399688, 28.881222868741673 ], [ -82.134319865905965, 28.881091820386771 ], [ -82.134403136088281, 28.880898709941025 ], [ -82.134433385693271, 28.88079707568297 ], [ -82.134454093693293, 28.880700797009858 ], [ -82.134485133047662, 28.880539573251856 ], [ -82.134511860271346, 28.880398981215215 ], [ -82.1345368910209, 28.880288947199322 ], [ -82.134667503744993, 28.879937400924341 ], [ -82.134695200826727, 28.87987778557396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134944396106121, 28.883183799030295 ], [ -82.134952407303061, 28.883078910605693 ], [ -82.134962711848019, 28.882994743879635 ], [ -82.134987903312776, 28.882874065248902 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134987903312776, 28.882874065248902 ], [ -82.135068657946263, 28.882740722481977 ], [ -82.135298995726274, 28.882325635610215 ], [ -82.135408145614988, 28.882104603264644 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 12th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127202299548188, 28.881391877142931 ], [ -82.127194159335673, 28.881722173032109 ], [ -82.127185409352307, 28.88186752261624 ], [ -82.12716105058972, 28.882022708372073 ], [ -82.127136505807314, 28.882147123204792 ], [ -82.127107831120597, 28.882301657025003 ], [ -82.127052331962659, 28.882541328021045 ], [ -82.127018994223818, 28.88265331108121 ], [ -82.126972291575314, 28.882786912199656 ], [ -82.12690896126324, 28.882947633025879 ], [ -82.126816518686795, 28.883148449449692 ], [ -82.126740851817047, 28.883319394856663 ], [ -82.126662118256448, 28.883538659363492 ], [ -82.126600797821752, 28.883763407052157 ], [ -82.126548464440447, 28.88403947626087 ], [ -82.126507714594823, 28.884297725957289 ], [ -82.126494266525626, 28.884496240544557 ], [ -82.126495090581926, 28.884932134671391 ], [ -82.126486688922142, 28.885368168219685 ], [ -82.126500536441995, 28.885747221583639 ], [ -82.126512569277494, 28.885855889450063 ], [ -82.126526983011345, 28.885964816755692 ], [ -82.126555677606632, 28.886071636479805 ], [ -82.126592568370882, 28.886189052342196 ], [ -82.12664881284401, 28.886318761049708 ], [ -82.126705601683369, 28.886419479286886 ], [ -82.126836365036425, 28.886642526770917 ], [ -82.127082350197469, 28.887056718026805 ], [ -82.127254707560965, 28.887361511225734 ], [ -82.127326162610998, 28.887518046886367 ], [ -82.127388861921546, 28.887692790991988 ], [ -82.127417134332589, 28.887818072813872 ], [ -82.127431551834491, 28.887929096020866 ], [ -82.127433934709074, 28.888054138723835 ], [ -82.127432180669317, 28.88844656412423 ], [ -82.127442188409788, 28.88884670119905 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 92nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12094107695701, 28.890748266888671 ], [ -82.121158953637845, 28.890821336020149 ], [ -82.121297751871438, 28.890917601532813 ], [ -82.121431399386481, 28.891064317173647 ], [ -82.121574625036828, 28.891248781624405 ], [ -82.121679675196987, 28.891399717458583 ], [ -82.1217633571828, 28.891491745172154 ], [ -82.121837163269319, 28.891550606041381 ], [ -82.122008105203093, 28.891667781502932 ], [ -82.122169155044574, 28.891739555742234 ], [ -82.122357064741848, 28.89179765917493 ], [ -82.123148623019574, 28.891985730270001 ], [ -82.12389349561937, 28.892145767144928 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 14th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128410238596189, 28.892354322477772 ], [ -82.128411182065307, 28.893492098428595 ], [ -82.128408863621232, 28.893563879261105 ], [ -82.128399002578277, 28.89364276381281 ], [ -82.128386723869255, 28.893718295915267 ], [ -82.128358667856887, 28.893811392652619 ], [ -82.128323153757222, 28.893903632051934 ], [ -82.128265858761722, 28.894004745416751 ], [ -82.128224475426407, 28.89407496437666 ], [ -82.127778618949876, 28.894670513032288 ], [ -82.127290593781296, 28.895338876392056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 93rd Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127290593781296, 28.895338876392056 ], [ -82.127037188113647, 28.895224714903694 ], [ -82.126907138340243, 28.895179472996148 ], [ -82.126768135305838, 28.895144099646643 ], [ -82.126620175520685, 28.895119126283888 ], [ -82.126548452885999, 28.895114719756098 ], [ -82.126447590612145, 28.895110869155062 ], [ -82.124902675737559, 28.895111462276351 ], [ -82.124637085021661, 28.895111707025649 ], [ -82.124462915750343, 28.895101367213378 ], [ -82.124358073213415, 28.895084467883091 ], [ -82.124268778695566, 28.895066872967654 ], [ -82.124179472574639, 28.895039456500744 ], [ -82.12410355236517, 28.895008100909227 ], [ -82.124039722794947, 28.894976015068174 ], [ -82.123974008759504, 28.894925729786635 ], [ -82.12391913094207, 28.89487257517624 ], [ -82.123864451897632, 28.894801900459537 ], [ -82.123826478731544, 28.894733384978782 ], [ -82.123806305908673, 28.894658769022644 ], [ -82.123801121256392, 28.894581755490545 ], [ -82.123799881103636, 28.893531458394005 ], [ -82.123799647886003, 28.892800759340197 ], [ -82.123804004276366, 28.892710406522891 ], [ -82.123826044340021, 28.892474697284008 ], [ -82.12389349561937, 28.892145767144928 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 93rd Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.132572113898476, 28.897527839338661 ], [ -82.132290943296169, 28.897565432534794 ], [ -82.131976304252987, 28.897610913176504 ], [ -82.131643175459118, 28.897633835613117 ], [ -82.130712965049156, 28.897663627783334 ], [ -82.129871668136431, 28.897646338456227 ], [ -82.1294543029274, 28.897644773965343 ], [ -82.12917750736699, 28.897613612319958 ], [ -82.128978201837938, 28.897559353293559 ], [ -82.128835887502888, 28.897500022068563 ], [ -82.128701887264853, 28.897429441977234 ], [ -82.128540151056569, 28.897323814922835 ], [ -82.128433826145965, 28.897239182078444 ], [ -82.128339971044269, 28.897144995540085 ], [ -82.128239400124301, 28.897033137501882 ], [ -82.128174557658056, 28.896936959958612 ], [ -82.128116418909443, 28.896846667132554 ], [ -82.128062687286075, 28.896711197531541 ], [ -82.12802484592244, 28.896558654057973 ], [ -82.127980799350752, 28.896337187285145 ], [ -82.127943751505128, 28.896181007675693 ], [ -82.127903404929825, 28.896039632444541 ], [ -82.127872053998345, 28.895953243688471 ], [ -82.127818369681535, 28.89585509111431 ], [ -82.127746820038979, 28.895749097273963 ], [ -82.127684226654182, 28.895666665645695 ], [ -82.12759036852357, 28.895566586560047 ], [ -82.127409411842208, 28.895421415914985 ], [ -82.127290593781296, 28.895338876392056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harbour Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019674143223753, 28.903710278045811 ], [ -82.019777340559884, 28.903707750483598 ], [ -82.019897524844353, 28.903701123973939 ], [ -82.020001560165781, 28.903705405765379 ], [ -82.020070670640251, 28.903726548367334 ], [ -82.020121755663126, 28.903758267582905 ], [ -82.020154814208624, 28.903800566139441 ], [ -82.020182993834382, 28.903853109190116 ], [ -82.020190533035844, 28.904001829410618 ], [ -82.020168032887526, 28.904186908496836 ], [ -82.020149282857972, 28.904335631628935 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peninsula Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980809324732675, 28.907624484063188 ], [ -81.980737438715721, 28.907471060488238 ], [ -81.980686947494704, 28.907345113139105 ], [ -81.980647675645272, 28.907246330176601 ], [ -81.980625238835813, 28.907172244641245 ], [ -81.980611222715524, 28.907088281964569 ], [ -81.980597209513434, 28.906994441828356 ], [ -81.980588801223035, 28.906922827911632 ], [ -81.980580401725831, 28.906826518997253 ], [ -81.980566388029231, 28.906730209264115 ], [ -81.980543949893899, 28.906658591494917 ], [ -81.980521512814164, 28.906586976428279 ], [ -81.980493463613257, 28.906515357830695 ], [ -81.980465412954061, 28.906446211523374 ], [ -81.980398081001908, 28.906320260680761 ], [ -81.980308309287111, 28.906154794856647 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peninsula Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980308309287111, 28.906154794856647 ], [ -81.980226951315188, 28.906016496610167 ], [ -81.980128753648998, 28.905880664495882 ], [ -81.980027750150754, 28.905742361395248 ], [ -81.979937969854703, 28.905626284411461 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peninsula Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979937969854703, 28.905626284411461 ], [ -81.979817322003527, 28.905492918279869 ], [ -81.979668617784995, 28.905324974406181 ], [ -81.979592862043134, 28.905238533503649 ], [ -81.979507641534539, 28.905133261041836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Atlas Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979429822318536, 28.90658928147073 ], [ -81.979696454973691, 28.90646832136397 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Atlas Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979696454973691, 28.90646832136397 ], [ -81.980007994520463, 28.906315264587462 ], [ -81.980308309287111, 28.906154794856647 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Old Dominion Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978116462230545, 28.906428561247168 ], [ -81.978225919279453, 28.906389068386002 ], [ -81.978442028597115, 28.906310081041376 ], [ -81.978596391758643, 28.906250839294344 ], [ -81.978750756795847, 28.90619159917469 ], [ -81.978938800554232, 28.906112606565159 ], [ -81.979115618247519, 28.906036082430621 ], [ -81.979281210411685, 28.905959556322891 ], [ -81.979399090249856, 28.905905247171194 ], [ -81.979525389599502, 28.905841061747214 ], [ -81.979657301932349, 28.90577687705888 ], [ -81.979803249371727, 28.905700347313452 ], [ -81.979937969854703, 28.905626284411461 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kline Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971960229438693, 28.900895823047509 ], [ -81.972115635026057, 28.900890234172007 ], [ -81.972339344313724, 28.900874235885862 ], [ -81.972464766726262, 28.900869701514733 ], [ -81.972652109843352, 28.900851006375998 ], [ -81.972935254881847, 28.900802357809862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spartanburg Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97355631468939, 28.902980799840559 ], [ -81.973245391377844, 28.90252365703363 ], [ -81.973002390390221, 28.902174686643001 ], [ -81.972886963435499, 28.901974433306101 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chappells Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972896498452172, 28.90326526369341 ], [ -81.972972225873093, 28.90323371930447 ], [ -81.97355631468939, 28.902980799840559 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chappells Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971322347259346, 28.904010640443602 ], [ -81.971602895923127, 28.903857717321522 ], [ -81.971927203643645, 28.903697242432173 ], [ -81.972187231239928, 28.90357525630473 ], [ -81.972545326694728, 28.903423724199701 ], [ -81.972896498452172, 28.90326526369341 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chappells Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969026131619273, 28.905323354083894 ], [ -81.969153502444314, 28.905295537641827 ], [ -81.969294001450066, 28.905257761813335 ], [ -81.969440432203214, 28.905210143116889 ], [ -81.969548750818092, 28.905164281401252 ], [ -81.969655065684549, 28.905118417339679 ], [ -81.969767402737858, 28.905054908305019 ], [ -81.969919867589326, 28.904943756915532 ], [ -81.970064310342238, 28.904825541269879 ], [ -81.970230816453451, 28.904703800580712 ], [ -81.970437442640488, 28.904559126704942 ], [ -81.970633266838632, 28.904428179513303 ], [ -81.97073290753525, 28.904362882135533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chappells Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968707507120811, 28.905393754054419 ], [ -81.968893290859242, 28.905352199560184 ], [ -81.969026131619273, 28.905323354083894 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118789662644033, 28.664907577040669 ], [ -82.119787510129157, 28.66490816176 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North York Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118773871823606, 28.666753656162822 ], [ -82.118767985258103, 28.667573789533598 ], [ -82.118771544260142, 28.668267169364494 ], [ -82.118780989300674, 28.668578403549869 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North York Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118789662644033, 28.664907577040669 ], [ -82.118773871823606, 28.666753656162822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Dade Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117729560168343, 28.666742240928045 ], [ -82.118773871823606, 28.666753656162822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Dade Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118773871823606, 28.666753656162822 ], [ -82.119785170132403, 28.666754496246273 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117730831680134, 28.664910934782625 ], [ -82.118789662644033, 28.664907577040669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11668941043564, 28.664904432124771 ], [ -82.117730831680134, 28.664910934782625 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Highland Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116677060488172, 28.664181098323844 ], [ -82.11668941043564, 28.664904432124771 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116179980843029, 28.664897632847254 ], [ -82.11668941043564, 28.664904432124771 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Etheredge Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114838768145844, 28.664896428466815 ], [ -82.114838651765211, 28.666728848988352 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113331661154305, 28.664901432199393 ], [ -82.114838768145844, 28.664896428466815 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114838768145844, 28.664896428466815 ], [ -82.116179980843029, 28.664897632847254 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Etheredge Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114850331557633, 28.664175929331215 ], [ -82.114838768145844, 28.664896428466815 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Mccollum Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114850331557633, 28.664175929331215 ], [ -82.116207503571104, 28.664176769916985 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Etheredge Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114835590319686, 28.667619688450785 ], [ -82.114828157247842, 28.668566963344684 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Etheredge Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114838651765211, 28.666728848988352 ], [ -82.114835590319686, 28.667619688450785 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Dade Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116699016440265, 28.666730934897473 ], [ -82.117729560168343, 28.666742240928045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Dade Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114838651765211, 28.666728848988352 ], [ -82.116699016440265, 28.666730934897473 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Anderson Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114852142863214, 28.663448617590515 ], [ -82.115746762799773, 28.663471196917143 ], [ -82.116017916228884, 28.663549576993933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Etheredge Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114852142863214, 28.663448617590515 ], [ -82.114850109538722, 28.663948661607865 ], [ -82.114850331557633, 28.664175929331215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Anderson Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113326567088123, 28.663449893897027 ], [ -82.114852142863214, 28.663448617590515 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Mccollum Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113324765969196, 28.664172681329035 ], [ -82.114850331557633, 28.664175929331215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Wall Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113326567088123, 28.663449893897027 ], [ -82.113321938260171, 28.663938573369531 ], [ -82.113324765969196, 28.664172681329035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Wall Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113324765969196, 28.664172681329035 ], [ -82.113331661154305, 28.664901432199393 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Wall Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113326781233752, 28.662750687477285 ], [ -82.113326567088123, 28.663449893897027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Flannery Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114872970449667, 28.662748515864813 ], [ -82.115464836179086, 28.66275028120139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Flannery Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113326781233752, 28.662750687477285 ], [ -82.114872970449667, 28.662748515864813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North York Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118783211101714, 28.66420654489443 ], [ -82.118789662644033, 28.664907577040669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North York Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118775640694722, 28.662743877754188 ], [ -82.118780171291675, 28.663438105426849 ], [ -82.118783211101714, 28.66420654489443 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112107033899292, 28.66489569960974 ], [ -82.111654905139332, 28.664895462963774 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Market Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112107033899292, 28.66489569960974 ], [ -82.112079565827571, 28.665109464989758 ], [ -82.112000063294815, 28.665850797609504 ], [ -82.111892603536063, 28.666729510624222 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 601A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120836979656033, 28.662554503077533 ], [ -82.122176479602714, 28.662576045078072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120837407226944, 28.663814738022694 ], [ -82.120835433976026, 28.664902928869232 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120836979656033, 28.662554503077533 ], [ -82.120839356160801, 28.662740138866415 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Adams Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119825421006666, 28.66128278969418 ], [ -82.119818134909423, 28.662743705150916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120838510310051, 28.66187006035403 ], [ -82.120836979656033, 28.662554503077533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119825421006666, 28.66128278969418 ], [ -82.120839811458282, 28.661288857327175 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120839811458282, 28.661288857327175 ], [ -82.120843049464995, 28.660358895262959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Hunt Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118790923765005, 28.660362104288929 ], [ -82.120843049464995, 28.660358895262959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Hunt Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120843049464995, 28.660358895262959 ], [ -82.121203773403678, 28.660389362858488 ], [ -82.122509236163253, 28.660396407002718 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116761317151798, 28.661265619363821 ], [ -82.118087006990592, 28.661270238065875 ], [ -82.118786493251946, 28.661272118589654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North York Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118786493251946, 28.661272118589654 ], [ -82.118775640694722, 28.662743877754188 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118786493251946, 28.661272118589654 ], [ -82.119825421006666, 28.66128278969418 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Highland Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116761317151798, 28.661265619363821 ], [ -82.116765690694365, 28.660347497679677 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Hunt Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116765690694365, 28.660347497679677 ], [ -82.118790923765005, 28.660362104288929 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Highland Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116765690694365, 28.660347497679677 ], [ -82.116760076211165, 28.659374570358022 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South York Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11877703472652, 28.659389928715651 ], [ -82.118776570058074, 28.658977427311012 ], [ -82.118761491555162, 28.658561966315204 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South York Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118790923765005, 28.660362104288929 ], [ -82.11877703472652, 28.659389928715651 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Parkhill Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116760076211165, 28.659374570358022 ], [ -82.11877703472652, 28.659389928715651 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Parkhill Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11877703472652, 28.659389928715651 ], [ -82.119526021649449, 28.659408481679446 ], [ -82.120385060486385, 28.659423739171373 ], [ -82.120719103924287, 28.65942907364769 ], [ -82.120840722079649, 28.659414483519924 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Highland Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116758504382815, 28.659328863091279 ], [ -82.116761023944761, 28.658542571884936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Parkhill Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116210421581343, 28.659329331854543 ], [ -82.116348449945335, 28.659329213335742 ], [ -82.116470394573909, 28.659329109307482 ], [ -82.116639241060341, 28.659328965087035 ], [ -82.116758504382815, 28.659328863091279 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Hopkins Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116219289808043, 28.661266082096418 ], [ -82.116210421581343, 28.659329331854543 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Parkhill Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115277868512962, 28.65932431629728 ], [ -82.115686454541503, 28.659322683811141 ], [ -82.116210421581343, 28.659329331854543 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Parkhill Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120840722079649, 28.659414483519924 ], [ -82.120973076848571, 28.65939022428185 ], [ -82.121303150171158, 28.659386897534073 ], [ -82.122917633602384, 28.65942137148663 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120852177742535, 28.658596891455495 ], [ -82.120847049983865, 28.657835069185587 ], [ -82.120849312648943, 28.657651907863652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Parkhill Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123928336797519, 28.659430115517342 ], [ -82.124177629110264, 28.659438898582469 ], [ -82.124958127188094, 28.659441218484325 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 66th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120852177742535, 28.658596891455495 ], [ -82.12174974068779, 28.658605233999932 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Battlefield Pkwy", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12495260341565, 28.657682251433993 ], [ -82.124950848688059, 28.655914734468748 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 607", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129071602460314, 28.655888293385598 ], [ -82.129073458447138, 28.65554001871428 ], [ -82.12906220450823, 28.65515784040603 ], [ -82.12906202458268, 28.655010819690293 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 607", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129066980012681, 28.657704817434457 ], [ -82.129058929979408, 28.656835452704232 ], [ -82.129071602460314, 28.655888293385598 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 604", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127007851092287, 28.655901523716221 ], [ -82.129071602460314, 28.655888293385598 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Rosewood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.101194205501429, 28.661267334022966 ], [ -82.101216971502097, 28.661296681798316 ], [ -82.101229828155056, 28.661327845189664 ], [ -82.101263883409388, 28.662355341396321 ], [ -82.101265978636377, 28.662462962053162 ], [ -82.101266046756436, 28.662533882702 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Flannery Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.101266046756436, 28.662533882702 ], [ -82.10024375889823, 28.662536878078434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Rosewood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.101266046756436, 28.662533882702 ], [ -82.10126582692935, 28.662584074258344 ], [ -82.1012626098927, 28.662857192204942 ], [ -82.101270222004047, 28.663538441000433 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 609A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137358531164452, 28.643201007653559 ], [ -82.137358284602684, 28.64301239813944 ], [ -82.13735932236537, 28.642132861798849 ], [ -82.137349611966556, 28.641376508600565 ], [ -82.137329733672573, 28.641189844393942 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 766", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100253775847136, 28.621024648995345 ], [ -82.100156786339156, 28.621046812946389 ], [ -82.099940163972477, 28.621082538954035 ], [ -82.099494979301056, 28.62107889965602 ], [ -82.098641364745248, 28.621065103250125 ], [ -82.096440959037608, 28.621060297671551 ], [ -82.096203203418142, 28.621063309285852 ], [ -82.096091107168164, 28.621083853134571 ], [ -82.096009964361286, 28.621131668213611 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 93rd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096009964361286, 28.621131668213611 ], [ -82.095948061531161, 28.621080543617683 ], [ -82.094965260102811, 28.621082229283058 ], [ -82.092092444065145, 28.621032361138646 ], [ -82.087931095824601, 28.621018484228369 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 766", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096128821010154, 28.62932148185067 ], [ -82.096154622581793, 28.62715238833395 ], [ -82.096169329701667, 28.626320037737333 ], [ -82.096168486725233, 28.625395595388397 ], [ -82.096158054785519, 28.624472922825099 ], [ -82.096055204635306, 28.624116463084366 ], [ -82.096043439024925, 28.623932265237453 ], [ -82.096027775744233, 28.623713958111079 ], [ -82.095992678829461, 28.623383092452137 ], [ -82.096007939838273, 28.623157941916809 ], [ -82.096030739737571, 28.622721286896301 ], [ -82.096018544242611, 28.622062928300082 ], [ -82.095967946295005, 28.621691139732128 ], [ -82.095955986880426, 28.621292033682806 ], [ -82.095967506127451, 28.62120674554432 ], [ -82.096009964361286, 28.621131668213611 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 14th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.080304916682664, 28.599045634447616 ], [ -82.080308857433565, 28.598801116374062 ], [ -82.08030933342404, 28.597687489556662 ], [ -82.08031159569714, 28.596316962810278 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 569", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000932488489482, 28.675443253900568 ], [ -82.000927453571705, 28.674629282516275 ], [ -82.000916935846234, 28.673955377391643 ], [ -82.000909390740105, 28.673550492704681 ], [ -82.000910005153372, 28.671692135112796 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 54th Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007066266156343, 28.675476844991376 ], [ -82.007016911820187, 28.675433324147722 ], [ -82.006938528911562, 28.675415405559878 ], [ -82.005964677045554, 28.675416644894689 ], [ -82.005363731965403, 28.675406850596506 ], [ -82.004970267580319, 28.675415480352026 ], [ -82.002877598754395, 28.675428501261852 ], [ -82.001871571484472, 28.675446178289732 ], [ -82.00157654768114, 28.675460299841784 ], [ -82.001188090157399, 28.675468268900513 ], [ -82.000932488489482, 28.675443253900568 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 55th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000932488489482, 28.675443253900568 ], [ -82.00084580461963, 28.675423526222453 ], [ -82.000694808826452, 28.675433390405324 ], [ -82.000432972303273, 28.675438214580613 ], [ -81.999841562643141, 28.675429695896995 ], [ -81.997579012080962, 28.675397812593914 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Virginia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996830616059157, 28.644327299120977 ], [ -81.996830617991051, 28.644263140295539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 70th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133174117841932, 28.654526534214884 ], [ -82.133225924032175, 28.654516254744536 ], [ -82.133325556358017, 28.654502422927003 ], [ -82.134059974880344, 28.654512345792224 ], [ -82.134860365969189, 28.654519527619708 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200200140817486, 28.602468356126675 ], [ -82.20023671861648, 28.602513389545315 ], [ -82.200270854872173, 28.602554134115554 ], [ -82.200305003354671, 28.602601315948078 ], [ -82.200331854613935, 28.602648512115103 ], [ -82.200361182067724, 28.602719320659421 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200361182067724, 28.602719320659421 ], [ -82.200378468541558, 28.602854556798381 ], [ -82.200456848610983, 28.60377490783074 ], [ -82.200511211613559, 28.604378675888086 ], [ -82.200526793384043, 28.604576581032884 ], [ -82.200527073474319, 28.604724187958109 ], [ -82.200523622020242, 28.604908701531023 ], [ -82.200504896287114, 28.605056337335377 ], [ -82.200482305279508, 28.605170431663844 ], [ -82.200455917979838, 28.605287884666673 ], [ -82.200414349725335, 28.605418778688005 ], [ -82.200353847467227, 28.605586603509391 ], [ -82.200289502202608, 28.605734306379471 ], [ -82.200217536525557, 28.605871954829368 ], [ -82.200072193955762, 28.606090749218062 ], [ -82.199963989556665, 28.606244583681086 ], [ -82.199684940018727, 28.606594628708379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 622", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.257087571406373, 28.668095046643963 ], [ -82.25836396357677, 28.667894693163273 ], [ -82.259299446551694, 28.667796410933434 ], [ -82.259391326853205, 28.667782561444813 ], [ -82.259492897763522, 28.667753352777538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 622", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.254095892912559, 28.66729512317389 ], [ -82.254078187582721, 28.667674951288504 ], [ -82.254094596890951, 28.667787053727608 ], [ -82.254114854986398, 28.667852024788285 ], [ -82.254130379157601, 28.667898684772158 ], [ -82.254158624110403, 28.667940590796768 ], [ -82.254213724773336, 28.668004905212761 ], [ -82.254383554560832, 28.668129285350002 ], [ -82.254480872145749, 28.668194110218391 ], [ -82.254568090190602, 28.668238269976062 ], [ -82.254864621900296, 28.66833402324913 ], [ -82.254954297615413, 28.668343480864422 ], [ -82.25512525157059, 28.668355191351413 ], [ -82.255296379314075, 28.668357961019613 ], [ -82.255467680619034, 28.668352136363275 ], [ -82.255638180446851, 28.668337718326015 ], [ -82.257087571406373, 28.668095046643963 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 622F", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.257231012916037, 28.666247415589041 ], [ -82.257120802628478, 28.666105345382245 ], [ -82.256948500655469, 28.665850646346698 ], [ -82.256729595587785, 28.665639799570098 ], [ -82.256526907532333, 28.665476322771809 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 622F", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.257440349737976, 28.667134815333522 ], [ -82.257416686832414, 28.666976783256679 ], [ -82.257398297935651, 28.666850176452165 ], [ -82.25734784235793, 28.666504141053291 ], [ -82.257312151522768, 28.666401824517354 ], [ -82.257231012916037, 28.666247415589041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054822865228388, 28.668445450302766 ], [ -82.054821102546939, 28.664764680979701 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 60th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058887757671329, 28.668500560752534 ], [ -82.058114827979693, 28.668500889707357 ], [ -82.056905030897298, 28.668518330720179 ], [ -82.05607929727239, 28.668527138292458 ], [ -82.055599216369231, 28.66853156872617 ], [ -82.055133537421654, 28.668531756136112 ], [ -82.054953031027523, 28.66853187075888 ], [ -82.054822865228388, 28.668445450302766 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Benitez Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963447457914668, 28.925794875951958 ], [ -81.963468444032998, 28.925794880772312 ], [ -81.963495154992927, 28.92579237064691 ], [ -81.963519960678596, 28.92578314601689 ], [ -81.963547629757116, 28.925765529008604 ], [ -81.963961898216283, 28.925455550065291 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Garcia Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964656382782053, 28.923499509319004 ], [ -81.964686912942526, 28.923480494266062 ], [ -81.964722529522106, 28.923465957737129 ], [ -81.964756873858022, 28.923455896251326 ], [ -81.96478867228879, 28.923446952934519 ], [ -81.96482174514334, 28.923439127889289 ], [ -81.964861173844326, 28.923433544903368 ], [ -81.964908233089943, 28.92343355723624 ], [ -81.964940028730283, 28.923435803253273 ], [ -81.96497182426009, 28.923441404900885 ], [ -81.965008706345841, 28.923448129423104 ], [ -81.9650379545823, 28.923455969888042 ], [ -81.9650748342996, 28.923472764012747 ], [ -81.96511298371118, 28.923489558457902 ], [ -81.965165124045413, 28.923513071415794 ], [ -81.965217261222634, 28.923539939088393 ], [ -81.965280840858156, 28.923570167148959 ], [ -81.965352057468593, 28.92359927921007 ], [ -81.965435990349022, 28.92363175015258 ], [ -81.96551992300256, 28.923661984251353 ], [ -81.965620389952733, 28.923693340486075 ], [ -81.965725570463604, 28.923725087643472 ], [ -81.965834573281853, 28.923763480199504 ], [ -81.966029486505533, 28.923828864099544 ], [ -81.966173594026046, 28.923869159196578 ], [ -81.966210474804512, 28.923883713511692 ], [ -81.966237176778293, 28.923903862192272 ], [ -81.966251159251101, 28.923927364203912 ], [ -81.966257512026147, 28.923948625696703 ], [ -81.966261312989047, 28.923992266187877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Francisco Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965606162443848, 28.924409472715439 ], [ -81.966129009003993, 28.924082869310883 ], [ -81.966212969600136, 28.92403253699716 ], [ -81.966242228990623, 28.924010164732305 ], [ -81.966261312989047, 28.923992266187877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrera Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965610764249917, 28.927428928127963 ], [ -81.966273070543977, 28.927798406873141 ], [ -81.966291630237933, 28.927808381005164 ], [ -81.966310578651061, 28.927818354330089 ], [ -81.966329527291407, 28.927827641908042 ], [ -81.966348673882806, 28.927836928630736 ], [ -81.966368013408854, 28.927845871624648 ], [ -81.966387549971927, 28.927854470890757 ], [ -81.966407280494963, 28.927862726428174 ], [ -81.966427206917345, 28.927870982011793 ], [ -81.966447133565978, 28.927878550945874 ], [ -81.96646745201086, 28.927886117268159 ], [ -81.966487767604022, 28.927892998744618 ], [ -81.966508086277386, 28.927899878414166 ], [ -81.966528794805527, 28.927906416208195 ], [ -81.966549503447922, 28.927912609322295 ], [ -81.966570211289749, 28.927918114884015 ], [ -81.966591311952001, 28.927923620540565 ], [ -81.966612216720449, 28.927929125242674 ], [ -81.966633511454091, 28.927933944294288 ], [ -81.966654611430315, 28.927938418617302 ], [ -81.966676103311968, 28.927942549260031 ], [ -81.966697398384241, 28.927946336075902 ], [ -81.966718890380037, 28.92795012293735 ], [ -81.966740380547904, 28.92795322134366 ], [ -81.966762067749102, 28.927955977825533 ], [ -81.966783753926421, 28.927958732499075 ], [ -81.966805442376611, 28.927960801425343 ], [ -81.966827127751046, 28.927962869445068 ], [ -81.966849010269129, 28.927964249961125 ], [ -81.966870697917329, 28.927965629523111 ], [ -81.966892580656449, 28.927966324287762 ], [ -81.966914464422388, 28.927967016342251 ], [ -81.966936347273062, 28.927967364618475 ], [ -81.966958229317697, 28.927967027146565 ], [ -81.966980112388157, 28.927966688769065 ], [ -81.967001800697261, 28.927966007467845 ], [ -81.967023684097057, 28.927964636857613 ], [ -81.967045568521613, 28.927963267146371 ], [ -81.967067255107324, 28.927961554510727 ], [ -81.967088942937707, 28.927959152518362 ], [ -81.967110631792451, 28.927956751425068 ], [ -81.967132320755653, 28.927954006553797 ], [ -81.967153812905082, 28.92795091785629 ], [ -81.967175307213836, 28.927947485381402 ], [ -81.967196800604768, 28.927943709128357 ], [ -81.96721809923288, 28.927939588147453 ], [ -81.967239396942205, 28.927935125193059 ], [ -81.967260695784674, 28.92793031755879 ], [ -81.967281603966853, 28.927925166953518 ], [ -81.96730270599258, 28.927920014587716 ], [ -81.967323417466602, 28.927914175476687 ], [ -81.967344328020289, 28.927907992636488 ], [ -81.967364843702299, 28.927901808794505 ], [ -81.967385361649818, 28.92789493920559 ], [ -81.967405683698971, 28.927888067761256 ], [ -81.967426005961869, 28.927880510569533 ], [ -81.967445938480921, 28.927872952377683 ], [ -81.967465869053882, 28.927865051310242 ], [ -81.967485605887489, 28.927856805515997 ], [ -81.967505340775219, 28.927848215041585 ], [ -81.967524687969345, 28.927839626274846 ], [ -81.967543838455285, 28.92783034810407 ], [ -81.967562988937843, 28.92782106993058 ], [ -81.967581748866323, 28.927811104110816 ], [ -81.967600508790966, 28.927801139190692 ], [ -81.967618878053088, 28.92779083130133 ], [ -81.967637247419674, 28.92778017873265 ], [ -81.967655226015793, 28.927769526969371 ], [ -81.967673008928145, 28.927758185802848 ], [ -81.967690597991663, 28.927746845489505 ], [ -81.967707989211391, 28.927735162253914 ], [ -81.96772518760875, 28.927723477164999 ], [ -81.967742191346304, 28.927711106282569 ], [ -81.967758801237053, 28.927698734400842 ], [ -81.967775217387171, 28.927686016891357 ], [ -81.967791242873659, 28.92767295821826 ], [ -81.967807269382064, 28.927659898641178 ], [ -81.967822904202038, 28.927646495193567 ], [ -81.967838147333595, 28.927632747875521 ], [ -81.967853197749363, 28.927618656734953 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hildalgo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965975550908595, 28.926906840421914 ], [ -81.965361118781132, 28.926575097527341 ], [ -81.965033878795907, 28.926392993369671 ], [ -81.964910156602798, 28.926325311423902 ], [ -81.964840587989528, 28.926279556732684 ], [ -81.964779509884721, 28.926208625683394 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hildalgo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967336234378124, 28.926048470021929 ], [ -81.967352749945917, 28.926106658572426 ], [ -81.967393116941054, 28.926302377193171 ], [ -81.967454825915098, 28.926590215420479 ], [ -81.967460539892059, 28.926618750998728 ], [ -81.967459903066924, 28.926641253188979 ], [ -81.967453848009882, 28.926666583660889 ], [ -81.967444301810843, 28.926688401550145 ], [ -81.967429033689172, 28.92670686150835 ], [ -81.967410903312711, 28.926724479828998 ], [ -81.967383233570047, 28.926745454167662 ], [ -81.966645696209369, 28.927209361821504 ], [ -81.966616121017779, 28.927219424971337 ], [ -81.966581939317479, 28.927221234572471 ], [ -81.966547439131801, 28.927215211259764 ], [ -81.966518349354487, 28.92720219650208 ], [ -81.965975550908595, 28.926906840421914 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hildalgo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967258615630129, 28.924632136659476 ], [ -81.96727773149118, 28.925361351384758 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hildalgo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96727773149118, 28.925361351384758 ], [ -81.967301950747171, 28.925864952799746 ], [ -81.967336234378124, 28.926048470021929 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026820953506771, 28.927306194651692 ], [ -82.023541450827494, 28.927298542453808 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028829105263412, 28.927314704180858 ], [ -82.02702304937003, 28.927307051031544 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Willow Grove Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008490401302609, 28.920373110209407 ], [ -82.008616415743319, 28.920372415173542 ], [ -82.009410590928738, 28.920372364378412 ], [ -82.010154949089156, 28.920377814663407 ], [ -82.010345767715876, 28.920378830442917 ], [ -82.010405119707542, 28.920387778697307 ], [ -82.010459385512135, 28.920402693282533 ], [ -82.010522835334967, 28.920440010279563 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Callaway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011032976449158, 28.918992094525912 ], [ -82.011027898439508, 28.919087579537042 ], [ -82.01101264411335, 28.919154717891168 ], [ -82.010988911752634, 28.919233792476714 ], [ -82.010948223905118, 28.919342709112684 ], [ -82.010905841314298, 28.919447148670432 ], [ -82.010873631352283, 28.919544129052671 ], [ -82.010851594890426, 28.919611267903786 ], [ -82.010844814432289, 28.919636631069949 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Callaway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010886212576651, 28.918387988603115 ], [ -82.010891878252892, 28.918404144689699 ], [ -82.010934576933565, 28.918529597613411 ], [ -82.010965109185975, 28.918629555270517 ], [ -82.010993697274827, 28.918721441125683 ], [ -82.011019104052053, 28.918822166116612 ], [ -82.011032967940537, 28.918908545486346 ], [ -82.011036115871988, 28.918964143845262 ], [ -82.011032976449158, 28.918992094525912 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Callaway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010494658730323, 28.917975142506663 ], [ -82.01054450697697, 28.918007444645763 ], [ -82.010634386940623, 28.918070099739939 ], [ -82.010705613084369, 28.918128280789404 ], [ -82.010747479525378, 28.918169012707867 ], [ -82.010778536003258, 28.918201379340413 ], [ -82.010805671038511, 28.918235693419966 ], [ -82.010841286880776, 28.918286416913379 ], [ -82.010861640820082, 28.918328190784109 ], [ -82.010886212576651, 28.918387988603115 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Callaway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00685931112433, 28.917975362568242 ], [ -82.00692328168806, 28.917971111547473 ], [ -82.007054417755967, 28.917969114819325 ], [ -82.007190075402931, 28.917967120447798 ], [ -82.007370953383656, 28.917971089644869 ], [ -82.007502090468407, 28.917969092480771 ], [ -82.007583484245373, 28.917971077823427 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Castleberry Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002605590464597, 28.915160668344743 ], [ -82.002602834849327, 28.91510840102454 ], [ -82.002602832815612, 28.914963328798379 ], [ -82.002602828999116, 28.914830975349119 ], [ -82.002602826802573, 28.914726810561536 ], [ -82.00260575429887, 28.914614740702778 ], [ -82.002605753364463, 28.914521920493851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hernandez Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955320081187949, 28.931186659352033 ], [ -81.955319761757167, 28.931601327705852 ], [ -81.95532228476101, 28.932443221720835 ], [ -81.955312075253332, 28.932523783293945 ], [ -81.955284917047024, 28.932578977520908 ], [ -81.955252674540588, 28.932622231786961 ], [ -81.955103371784247, 28.932753472949006 ], [ -81.955027021436152, 28.932828045462774 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hernandez Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955027021436152, 28.932828045462774 ], [ -81.955035486884711, 28.932862362560066 ], [ -81.955037160314447, 28.932913089213393 ], [ -81.95503714088052, 28.932957847523209 ], [ -81.955046739994529, 28.93428866725159 ], [ -81.955045031831929, 28.934315521663297 ], [ -81.955033149014696, 28.934339387873816 ], [ -81.955011088942896, 28.934366236360816 ], [ -81.954978856902912, 28.934388604245139 ], [ -81.954561032927117, 28.934555759494572 ], [ -81.954464883361794, 28.934582384260622 ], [ -81.954370716021302, 28.934598290376972 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramirez Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955027021436152, 28.932828045462774 ], [ -81.955003290214663, 28.932799690116564 ], [ -81.954977857337951, 28.932783269746068 ], [ -81.954940554517904, 28.932763861494987 ], [ -81.954872723677866, 28.932745937163446 ], [ -81.954806585059288, 28.932735470831869 ], [ -81.954716702938953, 28.932724995550004 ], [ -81.954652255600351, 28.932726467069649 ], [ -81.954589587472512, 28.932735745812735 ], [ -81.954530137291286, 28.932748804427 ], [ -81.954494514942255, 28.932763710880913 ], [ -81.954461850148746, 28.932779762439072 ], [ -81.954428353086072, 28.932808446731254 ], [ -81.954399507630953, 28.932836786115679 ], [ -81.954379144564243, 28.932865124770444 ], [ -81.954362170134957, 28.932900925648035 ], [ -81.954348583238939, 28.932939712466538 ], [ -81.954343474509344, 28.932990435916338 ], [ -81.954348336334348, 28.933502175647863 ], [ -81.954356022835157, 28.934246937410457 ], [ -81.954370716021302, 28.934598290376972 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alcona Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959652059881947, 28.932650251054127 ], [ -81.960128397369942, 28.932515370631759 ], [ -81.96018437152334, 28.932497484844838 ], [ -81.960228475256869, 28.932472135341339 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alameda Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954243842218887, 28.92864245118383 ], [ -81.954242965116848, 28.928703224063227 ], [ -81.954237273838089, 28.928758913574072 ], [ -81.954232954710619, 28.928805666320496 ], [ -81.954230014535881, 28.928830417073552 ], [ -81.954226486665647, 28.928855167625922 ], [ -81.954221944267076, 28.928905819111737 ], [ -81.954215278599307, 28.928954555202267 ], [ -81.954206637588115, 28.929003163394128 ], [ -81.954198990385564, 28.929035611821543 ], [ -81.95418772151676, 28.92907525300917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lajolla Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954243842218887, 28.92864245118383 ], [ -81.954276276467525, 28.928641623110401 ], [ -81.954328742815747, 28.928642480120608 ], [ -81.954361175214814, 28.928645848600244 ], [ -81.954402194292513, 28.928649218186962 ], [ -81.954433672848438, 28.928652587227141 ], [ -81.954465150300592, 28.928658471858085 ], [ -81.954494720061277, 28.92866435673675 ], [ -81.954531921550412, 28.928672761599433 ], [ -81.954568165753102, 28.928682005261965 ], [ -81.954603456772546, 28.928692087726461 ], [ -81.954655916459544, 28.928710568233232 ], [ -81.954697881861989, 28.928726528674453 ], [ -81.954769416197877, 28.928755085190861 ], [ -81.954884822927795, 28.928803799268213 ], [ -81.955006907073525, 28.928851675450048 ], [ -81.955127083566879, 28.928902069188034 ], [ -81.955247257824553, 28.92895078454908 ], [ -81.955375066680062, 28.929002857075989 ], [ -81.95549217159143, 28.929055923867541 ], [ -81.955537484366857, 28.92907329003069 ], [ -81.955557624266177, 28.929077357033805 ], [ -81.955589586790552, 28.929079041379349 ], [ -81.955618843698716, 28.929073456835923 ], [ -81.955646831199189, 28.929062275832834 ], [ -81.95566846434221, 28.929035428882649 ], [ -81.955682466192769, 28.929009695546096 ], [ -81.955688840652385, 28.928978369068236 ], [ -81.955710136444324, 28.92845004176257 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Loma Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954242647981687, 28.927960684744335 ], [ -81.954286084384847, 28.92796133296676 ], [ -81.954316954680621, 28.927962030131198 ], [ -81.954347824522316, 28.927963758611718 ], [ -81.954378499190312, 28.927966177274545 ], [ -81.954408977358966, 28.927969969156738 ], [ -81.954439454353377, 28.927974103903782 ], [ -81.954469736900307, 28.927979614577982 ], [ -81.954499628381669, 28.92798581175926 ], [ -81.95454299870886, 28.927996828149535 ], [ -81.954572301454476, 28.928005432438507 ], [ -81.95460121518758, 28.928014724138293 ], [ -81.954629736681156, 28.928025047022501 ], [ -81.954657868137701, 28.928036057317644 ], [ -81.954780350828244, 28.92808732015758 ], [ -81.954900685527704, 28.928137207968124 ], [ -81.955020825321341, 28.928187440282219 ], [ -81.955141160102244, 28.928237671651797 ], [ -81.95526149514744, 28.928287559139239 ], [ -81.955381831184411, 28.928337792098223 ], [ -81.955463333893078, 28.928370511143839 ], [ -81.955504028956483, 28.928385444100904 ], [ -81.955541333907419, 28.92839888352583 ], [ -81.955579724239414, 28.92840936196751 ], [ -81.955617639726796, 28.928419796028617 ], [ -81.955656410574093, 28.928432699041178 ], [ -81.95567383263743, 28.928438626563199 ], [ -81.955692443642377, 28.92844403385152 ], [ -81.955710136444324, 28.92845004176257 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Balboa Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955002209863395, 28.926166845841088 ], [ -81.955085105832026, 28.926203763972019 ], [ -81.955205437335053, 28.926253996197779 ], [ -81.955325769102558, 28.926303883639044 ], [ -81.955445908020678, 28.926354114682958 ], [ -81.955566569634442, 28.926400697812561 ], [ -81.955750963029288, 28.92647460984411 ], [ -81.955773850177039, 28.926488044450096 ], [ -81.95579928060441, 28.926509313618386 ], [ -81.955813263534537, 28.926529459262177 ], [ -81.955818339088736, 28.926554078257453 ], [ -81.955818327225472, 28.926584290709858 ], [ -81.955817042971802, 28.926611145302065 ], [ -81.955813187148436, 28.926708492671839 ], [ -81.955785060324288, 28.927047529873342 ], [ -81.955774875458175, 28.927067667549675 ], [ -81.955762149493438, 28.927084446946427 ], [ -81.955749424958015, 28.927097871608673 ], [ -81.955732886453845, 28.927105697171204 ], [ -81.955717622184807, 28.927110168418722 ], [ -81.955699814290867, 28.927112401132117 ], [ -81.9556781915431, 28.927113511931825 ], [ -81.955659114266098, 28.927110148185246 ], [ -81.95559506026008, 28.92708503055265 ], [ -81.955474727464775, 28.927035143356434 ], [ -81.955354393907015, 28.926984912277693 ], [ -81.955234255334275, 28.926934680253947 ], [ -81.955113921859066, 28.926884792734306 ], [ -81.954993587622596, 28.926834561332107 ], [ -81.954873449246307, 28.926784673662524 ], [ -81.954753116266986, 28.926734441143047 ], [ -81.954692364189384, 28.926709325998537 ], [ -81.954664234261813, 28.926697972837101 ], [ -81.954635713127232, 28.926687649056372 ], [ -81.954599375303886, 28.926675948428265 ], [ -81.954570072778282, 28.926667687016156 ], [ -81.954540378016148, 28.926660458592838 ], [ -81.954510488088317, 28.926653916743508 ], [ -81.954473954181935, 28.926647372632615 ], [ -81.954443475673315, 28.926642893215654 ], [ -81.95441280389646, 28.926639445049624 ], [ -81.954382130793263, 28.926636684425166 ], [ -81.954351454008886, 28.926635298890485 ], [ -81.9543205851312, 28.926634599930122 ], [ -81.954289714924144, 28.926634590315853 ], [ -81.954259040004203, 28.926635954956815 ], [ -81.954220601460733, 28.926636550892592 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Marino Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958003974053838, 28.923830710667932 ], [ -81.95812174604805, 28.924069417340373 ], [ -81.958142078252777, 28.924113187735323 ], [ -81.958164673304722, 28.92415099014714 ], [ -81.958182750970835, 28.924182825167435 ], [ -81.958198566759208, 28.924210678551692 ], [ -81.95822342512615, 28.924246493901368 ], [ -81.958258732153439, 28.924297976351518 ], [ -81.958287546724804, 28.924335284415072 ], [ -81.958311274940797, 28.924371098494078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Estrada Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961072750272336, 28.920554265092672 ], [ -81.961074090778013, 28.920613983051034 ], [ -81.961075256659626, 28.920630828356458 ], [ -81.961076812255442, 28.920647674677301 ], [ -81.961078565785598, 28.920664521055528 ], [ -81.961080708005738, 28.920681365741942 ], [ -81.961083241991744, 28.9206982114443 ], [ -81.961086166847863, 28.920714713485175 ], [ -81.96108928540734, 28.920731559357012 ], [ -81.961092795862754, 28.92074806156764 ], [ -81.961097087920436, 28.92076697042874 ], [ -81.961101378962496, 28.920783129090729 ], [ -81.961105866785175, 28.920799631584448 ], [ -81.961110744324088, 28.920816134191053 ], [ -81.961115816851176, 28.920832293079147 ], [ -81.961121477028954, 28.920848452137434 ], [ -81.961131820678744, 28.920876300897341 ], [ -81.961138067485152, 28.920892460124904 ], [ -81.961144898995371, 28.9209082757468 ], [ -81.961151927545458, 28.920923747650551 ], [ -81.961159149800665, 28.92093956338487 ], [ -81.961166763953571, 28.920955035457471 ], [ -81.961179258762201, 28.920978759538581 ], [ -81.961187653506798, 28.920993887158826 ], [ -81.961196440019776, 28.921009016696516 ], [ -81.961205420367889, 28.921024145387356 ], [ -81.961216747212035, 28.921042024052657 ], [ -81.961238615073157, 28.921075721211057 ], [ -81.961407873442312, 28.92132957780882 ], [ -81.961461258177636, 28.921415753416877 ], [ -81.961517188277668, 28.921499692039248 ], [ -81.961531169145317, 28.921526550186684 ], [ -81.961545148578352, 28.921554528081497 ], [ -81.961560396818271, 28.921590340072733 ], [ -81.961568016882424, 28.921620553835421 ], [ -81.961573089372123, 28.921661956240289 ], [ -81.961575621988118, 28.921691050599076 ], [ -81.961579422993452, 28.921729095195349 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kingston Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997786434286937, 28.915229748714051 ], [ -81.997726267813434, 28.915059922690553 ], [ -81.997636601788543, 28.914890095181761 ], [ -81.997573112522545, 28.91478008590569 ], [ -81.997518805129403, 28.914693108816149 ], [ -81.997485850023878, 28.914636992498519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winthrop Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995563841253087, 28.914774531755789 ], [ -81.995645048471786, 28.914764611947692 ], [ -81.995792997193561, 28.914742087381114 ], [ -81.995889731553817, 28.914732077699554 ], [ -81.995958015075843, 28.914727073006041 ], [ -81.996026297146798, 28.914732081971561 ], [ -81.996145794016115, 28.914737091540566 ], [ -81.996330724967237, 28.914752116578956 ], [ -81.996554117853506, 28.914759779657125 ], [ -81.996756425163767, 28.914772467626907 ], [ -81.996903662165124, 28.914774349862075 ], [ -81.997027780450239, 28.914767155191797 ], [ -81.997204178771796, 28.914734615139917 ], [ -81.997302692660043, 28.914710524135646 ], [ -81.997385914337301, 28.91468048660564 ], [ -81.997485850023878, 28.914636992498519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kingston Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997831857103833, 28.915902729558539 ], [ -81.997827445034218, 28.915831356887267 ], [ -81.997820417981501, 28.915590714150845 ], [ -81.997811045661322, 28.9153896055101 ], [ -81.997787410513027, 28.91523215515765 ], [ -81.997786434286937, 28.915229748714051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kingston Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997825651420285, 28.917204397398439 ], [ -81.997825073060923, 28.916953096893138 ], [ -81.997827425381629, 28.916629604557887 ], [ -81.997828639245185, 28.916560782785517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kingston Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997828639245185, 28.916560782785517 ], [ -81.997832121323157, 28.916376584344906 ], [ -81.997832124580881, 28.916202290352427 ], [ -81.99783212962771, 28.916038654287288 ], [ -81.997831857103833, 28.915902729558539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winthrop Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994841921129691, 28.914901648715045 ], [ -81.995254584967327, 28.914826429975363 ], [ -81.995456002185904, 28.914794122308109 ], [ -81.995563841253087, 28.914774531755789 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winifred Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993852133351936, 28.912195192251335 ], [ -81.993884098739642, 28.912094557802011 ], [ -81.993933547204364, 28.911948282337249 ], [ -81.993983565896343, 28.911798743267131 ], [ -81.994013657538915, 28.911697330914489 ], [ -81.994028703245149, 28.911631326731246 ], [ -81.99404728534455, 28.91155586031195 ], [ -81.99408474825033, 28.911466628389501 ], [ -81.994105688782284, 28.911426653942168 ], [ -81.994151374303257, 28.911363837131301 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Miona Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994470952446747, 28.908745688801659 ], [ -81.994574801204237, 28.908659567913443 ], [ -81.994635353997609, 28.908600372450383 ], [ -81.994693664668546, 28.908549069268748 ], [ -81.994740761723577, 28.908503685587064 ], [ -81.994784338313664, 28.908459671436209 ], [ -81.994828226011919, 28.908426731186456 ], [ -81.994877024798242, 28.908388760803994 ], [ -81.994925381265816, 28.908356849317386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blease Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985219651288006, 28.911477999853414 ], [ -81.985289589639805, 28.911456693525722 ], [ -81.985392936431538, 28.911431265526659 ], [ -81.98552284966955, 28.911401715035364 ], [ -81.985652762543268, 28.911374227070773 ], [ -81.985765875300984, 28.911359456873804 ], [ -81.985859646300625, 28.911346747180449 ], [ -81.985934076987405, 28.911340567111054 ], [ -81.986025501228966, 28.91133851499292 ], [ -81.986094638829229, 28.911336772680531 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hartford Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997098598775906, 28.908632845420893 ], [ -81.997096430772842, 28.908736835210775 ], [ -81.997096430396795, 28.908781182252465 ], [ -81.997096427854515, 28.908861625722651 ], [ -81.997096425583848, 28.908933474804201 ], [ -81.997099548281767, 28.908991916711518 ], [ -81.997115173789325, 28.909066516350919 ], [ -81.997156193995778, 28.909161056439203 ], [ -81.997203466883633, 28.90920815563349 ], [ -81.997288637656993, 28.909282754959033 ], [ -81.997382989017325, 28.909371795697485 ], [ -81.997493357836404, 28.909471493727786 ], [ -81.997581457647101, 28.90954918870743 ], [ -81.997641431023382, 28.909601787494118 ], [ -81.99770433089887, 28.909662636918593 ], [ -81.997748479763757, 28.909706983852693 ], [ -81.997814701144137, 28.909770928165869 ], [ -81.997899674692789, 28.909854124189113 ], [ -81.997969023723826, 28.909925974410982 ], [ -81.998054194162563, 28.910020170250352 ], [ -81.998162928442014, 28.910131735619672 ], [ -81.998230592894387, 28.910208905626479 ], [ -81.998296618747318, 28.910286601615276 ], [ -81.998402885197308, 28.910402078212957 ], [ -81.998465676926713, 28.910482984449541 ], [ -81.998501557690247, 28.910552048570221 ], [ -81.998548652503118, 28.91064874026927 ], [ -81.998592763465183, 28.910735576118004 ], [ -81.998643357099354, 28.910846617964435 ], [ -81.998696881726303, 28.91095181293333 ], [ -81.99873770931211, 28.911043257631174 ], [ -81.998784982774637, 28.911154297579483 ], [ -81.998841828958632, 28.91127599554353 ], [ -81.998914190390792, 28.911418323759161 ], [ -81.998990439358593, 28.911578159246893 ], [ -81.999042019312157, 28.911688663169205 ], [ -81.999098863174368, 28.911797111678169 ], [ -81.999129139827531, 28.911842991940887 ], [ -81.999174552527862, 28.91189183094281 ], [ -81.999221648164323, 28.911933269296654 ], [ -81.999295436988902, 28.911980711697456 ], [ -81.999352843031502, 28.912007268478558 ], [ -81.999423269687796, 28.912026097129704 ], [ -81.999479335598309, 28.912039910701552 ], [ -81.99954213078577, 28.912045831885255 ], [ -81.999586983194547, 28.912047804509271 ], [ -81.999638564859595, 28.91204188565105 ], [ -81.999701962112837, 28.912032995548948 ], [ -81.999774243163429, 28.912010649480536 ], [ -81.999834217408065, 28.911988648923089 ], [ -81.999916069256841, 28.911952553592265 ], [ -81.99998527687633, 28.911922913231287 ], [ -82.000062648130566, 28.911890355001567 ], [ -82.000113108753553, 28.911869633919501 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rainey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004356522953245, 28.908974470081539 ], [ -82.004105515122973, 28.908974280191153 ], [ -82.003994736199743, 28.908976783315541 ], [ -82.003858394239558, 28.908989283532218 ], [ -82.00375897985937, 28.909009279936427 ], [ -82.003645362204054, 28.909036776491497 ], [ -82.003523223168713, 28.909069270965301 ], [ -82.00342096756583, 28.909104264274905 ], [ -82.003323963210477, 28.909139082353981 ], [ -82.003230658754163, 28.909179248209647 ], [ -82.003134084260452, 28.909226737112014 ], [ -82.003046032254403, 28.909276725153944 ], [ -82.002975019884957, 28.909319215642899 ], [ -82.002898327726285, 28.909371702749976 ], [ -82.002824478041134, 28.90942419066797 ], [ -82.002747786066664, 28.909491673878502 ], [ -82.002654556043922, 28.909584562398273 ], [ -82.002588961372851, 28.909655600398636 ], [ -82.002535139820964, 28.909725160231861 ], [ -82.002477953886242, 28.909805078469073 ], [ -82.002420769089852, 28.909895357766445 ], [ -82.002363584417068, 28.90999747608733 ], [ -82.002319855743735, 28.910102553745421 ], [ -82.002281172133266, 28.910201711348567 ], [ -82.002252580103701, 28.910306788789175 ], [ -82.002230716909082, 28.910401505055006 ], [ -82.002220627412839, 28.910519902877649 ], [ -82.002218945814889, 28.91058798035602 ], [ -82.002239129932889, 28.910642737846793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rainey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004110397540344, 28.909183869417799 ], [ -82.004111110226518, 28.90918384864624 ], [ -82.004235774927935, 28.909180249659723 ], [ -82.00464054133468, 28.909186486466012 ], [ -82.005045559610124, 28.909182830156428 ], [ -82.0056418056392, 28.909180203215293 ], [ -82.005822885368246, 28.909177072528152 ], [ -82.00609272809811, 28.909158316509313 ], [ -82.006508144149407, 28.909117684625365 ], [ -82.00661466099028, 28.909108306822507 ], [ -82.006808074774142, 28.909090419883825 ], [ -82.00687030203062, 28.909073929302419 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winifred Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997086041117612, 28.917722440688518 ], [ -81.997031259336367, 28.917714406274094 ], [ -81.996972826606054, 28.917707978741227 ], [ -81.996843179336835, 28.917682270066855 ], [ -81.996733618082388, 28.917661380948903 ], [ -81.996647396114952, 28.917636842564271 ], [ -81.99656221722725, 28.917610370530387 ], [ -81.996453597093335, 28.917574269388588 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sherwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997086041117612, 28.917722440688518 ], [ -81.997088941980707, 28.916989866891392 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shalimar Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996176631161475, 28.918843821752311 ], [ -81.996192545607144, 28.918690503082892 ], [ -81.996220684275116, 28.918542335978835 ], [ -81.996289870789298, 28.918222072305891 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shalimar Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996322694532125, 28.919370790655258 ], [ -81.996280698419341, 28.919287246715047 ], [ -81.996249658900467, 28.91921495020674 ], [ -81.996216793436062, 28.919129798617924 ], [ -81.996191231406698, 28.919033402816385 ], [ -81.996180278785076, 28.918951465842863 ], [ -81.996176631161475, 28.918843821752311 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shalimar Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996828497217436, 28.919859210036982 ], [ -81.996717110799452, 28.919764418274379 ], [ -81.996640416846674, 28.919703366002842 ], [ -81.996552768843188, 28.919619820946252 ], [ -81.996446859929804, 28.919510568900332 ], [ -81.996357388407276, 28.919410957372119 ], [ -81.996322694532125, 28.919370790655258 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shalimar Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99757452465029, 28.920355097935186 ], [ -81.997522393883003, 28.920297827264637 ], [ -81.997454829401747, 28.920244808785743 ], [ -81.997328951269623, 28.920170829610207 ], [ -81.99717226586526, 28.920086256673262 ], [ -81.99702936019294, 28.919998989618236 ], [ -81.996885103436725, 28.919900983245199 ], [ -81.996828497217436, 28.919859210036982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Miona Shores Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009352214664759, 28.907686440712197 ], [ -82.009368437633526, 28.907597898056995 ], [ -82.009387905534268, 28.907515068537453 ], [ -82.009429685087909, 28.907376897808973 ], [ -82.009495402626783, 28.907220517108495 ], [ -82.009546515285905, 28.907104838205736 ], [ -82.009595194410338, 28.906999869722569 ], [ -82.009651176866811, 28.906875624032836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pawleys Island Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009651176866811, 28.906875624032836 ], [ -82.009746124011698, 28.90689703816194 ], [ -82.009824026362637, 28.906916312241396 ], [ -82.009933577559678, 28.906924872901651 ], [ -82.010045562346448, 28.906924865079425 ], [ -82.010140506594112, 28.90692485837458 ], [ -82.01025249240621, 28.906924850380257 ], [ -82.01034743562839, 28.90692484352963 ], [ -82.010461852933162, 28.906926977240484 ], [ -82.01054949635332, 28.906929112838309 ], [ -82.010615226200116, 28.906929107957772 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dunkirk Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96046065874161, 28.874225023124005 ], [ -81.960655677763413, 28.873967724822272 ], [ -81.960871373061224, 28.873702635459406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dunkirk Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960871373061224, 28.873702635459406 ], [ -81.960927507719589, 28.873642861637457 ], [ -81.960998416785813, 28.873564896252631 ], [ -81.961146146154903, 28.873398568042695 ], [ -81.961367736934463, 28.873156874466599 ], [ -81.961601122718605, 28.872892376388865 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963070068346809, 28.874066604647243 ], [ -81.963375413953244, 28.873814452370034 ], [ -81.963572997877861, 28.873665531488701 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Havana Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957921136200142, 28.871864111341139 ], [ -81.958205338136068, 28.871530808259848 ], [ -81.958359902679845, 28.871358310723753 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Havana Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958359902679845, 28.871358310723753 ], [ -81.958637444025783, 28.871055711806786 ], [ -81.958806962807827, 28.870865672168875 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Havana Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958806962807827, 28.870865672168875 ], [ -81.958863468707065, 28.870807200415427 ], [ -81.958913325642541, 28.870754574428407 ], [ -81.958959863022656, 28.870697561314099 ], [ -81.95898978306775, 28.870647854469883 ], [ -81.95901139807188, 28.870595219818473 ], [ -81.959024712853576, 28.870535271271031 ], [ -81.959028066879668, 28.870454850040705 ], [ -81.959031617254681, 28.869877263577351 ], [ -81.959031735064244, 28.869578965864221 ], [ -81.959031759766418, 28.869519014154669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alcove Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975237079929684, 28.870329324656907 ], [ -81.975426009263188, 28.870150625851217 ], [ -81.975511027816424, 28.870075820647905 ], [ -81.975570066601335, 28.870019718103777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sandhill Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985632499711514, 28.868154851806857 ], [ -81.985627786249182, 28.868084187412389 ], [ -81.985630172431868, 28.867917923837844 ], [ -81.985642519156912, 28.86770671850158 ], [ -81.985642536835869, 28.867581238777223 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grassy Point Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987124675608939, 28.868163317197926 ], [ -81.987121908249719, 28.867595140999331 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grassy Point Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987121107230436, 28.868374958416236 ], [ -81.987124675608939, 28.868163317197926 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bunker Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985632499711514, 28.868154851806857 ], [ -81.985946913646472, 28.868136527043095 ], [ -81.986198758405166, 28.868133781471784 ], [ -81.986545043212985, 28.868144901668895 ], [ -81.986947991098489, 28.868161568486176 ], [ -81.987124675608939, 28.868163317197926 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grassy Point Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987121908249719, 28.867595140999331 ], [ -81.987121909034045, 28.867588953904825 ], [ -81.987124784632726, 28.867311209843464 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gresham Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98712007151903, 28.86723015366276 ], [ -81.987120107618281, 28.866945423678406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fillmore Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98712170107666, 28.866019277788986 ], [ -81.987454600663668, 28.866019308653023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gresham Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987120107618281, 28.866945423678406 ], [ -81.987119093401745, 28.866706474657807 ], [ -81.98712170107666, 28.866019277788986 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chateau Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984987809769549, 28.867001056874766 ], [ -81.985256965793837, 28.866997969424837 ], [ -81.985481559117432, 28.866988900639186 ], [ -81.985637387906607, 28.866978527482782 ], [ -81.985833352604246, 28.86696399969853 ], [ -81.986168618290421, 28.866953643965797 ], [ -81.986567630457102, 28.866947448945847 ], [ -81.986777761686668, 28.866943312142812 ], [ -81.986888729194035, 28.866943324008897 ], [ -81.987120107618281, 28.866945423678406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alandari Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98495585793097, 28.868289690521564 ], [ -81.984959405123817, 28.868077580160016 ], [ -81.984973944370665, 28.867458437451802 ], [ -81.984987809769549, 28.867001056874766 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chateau Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984283133738572, 28.868360970760001 ], [ -81.984259530130743, 28.868319403377154 ], [ -81.984250617127728, 28.868267403488115 ], [ -81.984253106718398, 28.868069591821644 ], [ -81.984273507463371, 28.867455605643499 ], [ -81.984283028184521, 28.86713502646883 ], [ -81.984288347066212, 28.867082030300118 ], [ -81.984311374643084, 28.867041506047027 ], [ -81.984343251804347, 28.867018128398776 ], [ -81.984392834508384, 28.867000988633325 ], [ -81.984598241926278, 28.867001012489546 ], [ -81.984860315509735, 28.867001043375002 ], [ -81.984987809769549, 28.867001056874766 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chateau Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984233491624508, 28.868745454381902 ], [ -81.984242980021847, 28.868456569573414 ], [ -81.984247709105603, 28.86840669080507 ], [ -81.984283133738572, 28.868360970760001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alandari Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985040948627116, 28.868903499112822 ], [ -81.985017347648906, 28.868841147310771 ], [ -81.984970150063361, 28.868687345315053 ], [ -81.984953638017913, 28.86857927188402 ], [ -81.984948935629006, 28.868450415225237 ], [ -81.98495585793097, 28.868289690521564 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sandhill Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985685535532568, 28.868776792617449 ], [ -81.985648263840204, 28.868504973358863 ], [ -81.985624221908807, 28.86825305219633 ], [ -81.985632499711514, 28.868154851806857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "English Ivy Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985759239852442, 28.870751198557517 ], [ -81.985058269207272, 28.870889589296596 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Foxwood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97161563909718, 28.889331723812663 ], [ -81.971624716346028, 28.889157825371473 ], [ -81.971631780474567, 28.889101437600296 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Foxwood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97158004490332, 28.889951049839205 ], [ -81.971573021589165, 28.88972867010958 ], [ -81.97160354181095, 28.889444531359519 ], [ -81.97161563909718, 28.889331723812663 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dipper Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964097006452775, 28.882993409320004 ], [ -81.964071229416518, 28.882862094131141 ], [ -81.964008214621856, 28.882559057410859 ], [ -81.963970984974537, 28.882367136957495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960520830278639, 28.885239707536257 ], [ -81.960670514910646, 28.884964399017164 ], [ -81.96078961089782, 28.884731521113352 ], [ -81.960875808163877, 28.884542736178048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abner Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960084164898618, 28.885047926973328 ], [ -81.960520830278639, 28.885239707536257 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Church Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068461321816727, 28.798782131086423 ], [ -82.068284944650102, 28.798774945824707 ], [ -82.067699519065499, 28.798777146449314 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064327796665907, 28.801689855041456 ], [ -82.064085517611659, 28.801687833967378 ], [ -82.063262662387586, 28.801691248967149 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065345630372292, 28.801693302700937 ], [ -82.064774105706491, 28.801693573845025 ], [ -82.064327796665907, 28.801689855041456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Condrey Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064327796665907, 28.801689855041456 ], [ -82.064323837054104, 28.801807016589027 ], [ -82.064305175459864, 28.802047256673866 ], [ -82.064302576816971, 28.802193998940208 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buffalo Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020301231109158, 28.928253648231745 ], [ -82.020303150810179, 28.92740777066113 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tatonka Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023561412503895, 28.927487596031952 ], [ -82.023532652287699, 28.927508175981313 ], [ -82.023492293328474, 28.927584859001037 ], [ -82.023493636071009, 28.928234639320124 ], [ -82.023521886168197, 28.928308630809756 ], [ -82.023566172705387, 28.928357423865965 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fourth Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043819520874621, 28.870851818162549 ], [ -82.043813130515673, 28.871795257507397 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fourth Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043813130515673, 28.871795257507397 ], [ -82.04380601208517, 28.872790204865634 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mill Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043813130515673, 28.871795257507397 ], [ -82.044906907070953, 28.871794902869691 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fourth Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043986346493853, 28.86712217915488 ], [ -82.044020185001258, 28.867515607475685 ], [ -82.044023279378621, 28.867593755823258 ], [ -82.044008003994605, 28.867671909175243 ], [ -82.043992745234362, 28.8677850953245 ], [ -82.043992795760076, 28.867906361182467 ], [ -82.044002077854245, 28.868140802601744 ], [ -82.043987555575129, 28.868275043738194 ], [ -82.043914395963498, 28.868363936823119 ], [ -82.043851310917191, 28.868397282694826 ], [ -82.043818519195881, 28.868450617477606 ], [ -82.043831207643336, 28.868619467619361 ], [ -82.043840068181481, 28.86872562338894 ], [ -82.043827841930778, 28.868771439913782 ], [ -82.043827864209064, 28.868822641066544 ], [ -82.043827892267046, 28.868892704852271 ], [ -82.043821797584897, 28.868960077224614 ], [ -82.043818771536252, 28.869046311248397 ], [ -82.043816061964691, 28.86989516942473 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 41st Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.172496560106552, 28.577236349267352 ], [ -82.172487378001833, 28.576577633876717 ], [ -82.172486633230591, 28.576120166471991 ], [ -82.172509113109328, 28.575884195928175 ], [ -82.172494762461099, 28.575625881212328 ], [ -82.172497216168992, 28.575305124699014 ], [ -82.172496871599961, 28.575094396289792 ], [ -82.172511783698212, 28.574858253912442 ], [ -82.172526458095788, 28.574575420045296 ], [ -82.172531794496209, 28.574393979018961 ], [ -82.17253587913909, 28.574272984879936 ], [ -82.172529826797103, 28.574175194704544 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 41st Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.172513153472977, 28.581626742162296 ], [ -82.172522039764786, 28.581511933953212 ], [ -82.172555108631116, 28.581389085040367 ], [ -82.172554811472438, 28.581207544847647 ], [ -82.172525012240143, 28.580848652183317 ], [ -82.172511458809353, 28.580588226071065 ], [ -82.172514322538319, 28.580489443858649 ], [ -82.172499081942675, 28.580417379467523 ], [ -82.172492798267427, 28.580273223676674 ], [ -82.172499474692316, 28.579877123609272 ], [ -82.172510727170447, 28.579612389869713 ], [ -82.172545723337961, 28.579344097009887 ], [ -82.172539377687514, 28.579162563514089 ], [ -82.172527728609836, 28.579066201682522 ], [ -82.172520351347302, 28.578993595847997 ], [ -82.172566296250608, 28.578869365351306 ], [ -82.17257537574919, 28.578735301745418 ], [ -82.172554782306989, 28.578460384711615 ], [ -82.172520499352174, 28.578342793204666 ], [ -82.172499773117522, 28.578243965910961 ], [ -82.172585118013714, 28.578058194454076 ], [ -82.172594268834544, 28.577967903417854 ], [ -82.1725506432918, 28.577822963781294 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 18th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135310034418808, 28.668639613788585 ], [ -82.135337097377487, 28.668261093793493 ], [ -82.135343046409162, 28.667606741864141 ], [ -82.135347309323052, 28.665542867141077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120840722079649, 28.659414483519924 ], [ -82.120852177742535, 28.658596891455495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120842089212317, 28.659969142205014 ], [ -82.120840722079649, 28.659414483519924 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 1st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048880087735668, 28.608828231675719 ], [ -82.048682456671898, 28.608880867412886 ], [ -82.048563338183314, 28.608916749464044 ], [ -82.048441516284271, 28.608959800556327 ], [ -82.048352103081243, 28.608989324023216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Clarke Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035390267717347, 28.872694560688185 ], [ -82.034648612379186, 28.872703546327145 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035454034932229, 28.871472185387297 ], [ -82.035394070921768, 28.872498799824712 ], [ -82.035392160609149, 28.872573700426091 ], [ -82.035390241525491, 28.872616258005525 ], [ -82.03538832130161, 28.872655411198654 ], [ -82.035390267717347, 28.872694560688185 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031372772384117, 28.865469540038326 ], [ -82.030716675424756, 28.865469114916998 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Milray Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031372772384117, 28.865469540038326 ], [ -82.031375738709215, 28.866307198859175 ], [ -82.031372409979554, 28.866904706540822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Live Oak Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038883320743281, 28.847536906882308 ], [ -82.037526964869201, 28.847583116648508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 66th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.101598457508572, 28.659379995227066 ], [ -82.100207486959135, 28.659458326427686 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 1st Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.101588900591508, 28.660971667582515 ], [ -82.101593344458195, 28.659921447126973 ], [ -82.101598457508572, 28.659379995227066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 66th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102240090564109, 28.65938545566927 ], [ -82.101832202160381, 28.659385469793133 ], [ -82.101598457508572, 28.659379995227066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 559", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102270851451863, 28.65938545520072 ], [ -82.102267479599334, 28.659198747711709 ], [ -82.102261338724873, 28.65856503149249 ], [ -82.102266507764099, 28.65816083976156 ], [ -82.102258291898636, 28.657544593283472 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96797536391081, 28.906837554980942 ], [ -81.968041256212857, 28.906836505098308 ], [ -81.968090136273418, 28.906823419890941 ], [ -81.968138372340093, 28.906807051952335 ], [ -81.968425235241767, 28.906758723295056 ], [ -81.968492560159149, 28.90675719170201 ], [ -81.968583479413297, 28.906761496259765 ], [ -81.968691830358722, 28.906781265707956 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gaffney Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969276967458825, 28.905922269879049 ], [ -81.969359408991068, 28.90590200509584 ], [ -81.969511398536554, 28.9058573498437 ], [ -81.96967354815483, 28.905801006544458 ], [ -81.969852501554399, 28.90573263648994 ], [ -81.970004695090807, 28.905658414217328 ], [ -81.970139699231922, 28.905581093960485 ], [ -81.970254652864682, 28.905508590998288 ], [ -81.97034893755945, 28.905448607263331 ], [ -81.970461283640773, 28.905353327732954 ], [ -81.970587671481894, 28.905250993414231 ], [ -81.970730104695619, 28.905145130886915 ], [ -81.970882568159126, 28.905035741499233 ], [ -81.97111347815077, 28.904889975577877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 700", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12347539363175, 28.639406822992356 ], [ -82.123626346187507, 28.639390472233657 ], [ -82.123745150762559, 28.63939521008896 ], [ -82.12404479764632, 28.639453270435848 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.255943140394422, 28.644109429748621 ], [ -82.255962100988924, 28.644028086488014 ], [ -82.255991287540013, 28.643946563230781 ], [ -82.256116961878504, 28.64372166418519 ], [ -82.25615383415898, 28.643639836669923 ], [ -82.256229198190042, 28.643406047479438 ], [ -82.256277466948291, 28.643164707497501 ], [ -82.256318114364063, 28.642776025692399 ], [ -82.25630795254709, 28.6424787977931 ], [ -82.256323412034433, 28.64218130561126 ], [ -82.256379306297404, 28.641844018723447 ], [ -82.256478926504769, 28.641650883909403 ], [ -82.256689388283476, 28.641307103413116 ], [ -82.256970129297429, 28.640901054310739 ], [ -82.257010779329761, 28.640848652532579 ], [ -82.257036552801381, 28.640776656925762 ], [ -82.25704746464092, 28.640691608477496 ], [ -82.257054702692812, 28.640619648131018 ], [ -82.257043351670944, 28.640524831880462 ], [ -82.257028356719388, 28.640456183885444 ], [ -82.256880970183687, 28.64012545255493 ], [ -82.256656463336171, 28.639778488431144 ], [ -82.256479581733871, 28.639513162283862 ], [ -82.256259611055455, 28.639039204469487 ], [ -82.256230131335201, 28.638728522260763 ], [ -82.256268682797042, 28.638429177851606 ], [ -82.256284872608745, 28.638067013018723 ], [ -82.256291340589769, 28.63767783542129 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.255936974210556, 28.64491959478411 ], [ -82.255886664886731, 28.644542537896754 ], [ -82.255885773543866, 28.644447052107747 ], [ -82.255897820623289, 28.644351301787754 ], [ -82.255915387129221, 28.644238325416627 ], [ -82.255943140394422, 28.644109429748621 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Florida Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110523744616216, 28.666713992358304 ], [ -82.110517480872474, 28.667659105174433 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Dade Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111892603536063, 28.666729510624222 ], [ -82.110523744616216, 28.666713992358304 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029245664398047, 28.865458931069938 ], [ -82.028810218798796, 28.865456157864205 ], [ -82.028681776229746, 28.865454656115016 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99723667922575, 28.865302171945306 ], [ -81.997028377394955, 28.865302167278216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bishopville Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959591265321038, 28.893454015581291 ], [ -81.959458286539089, 28.893367000091477 ], [ -81.959346783061989, 28.8933054304172 ], [ -81.959181186913028, 28.893221154977926 ], [ -81.958980630748272, 28.89312861802436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957138140828121, 28.895593116804775 ], [ -81.957444485809702, 28.895444694883569 ], [ -81.95772305769033, 28.895310177877285 ], [ -81.95793912655698, 28.89520642627679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955760325290811, 28.896487731843028 ], [ -81.955929292609227, 28.896319796426067 ], [ -81.956020945061539, 28.896233580199425 ], [ -81.95614669114353, 28.896128625270268 ], [ -81.956357680140556, 28.895982449345837 ], [ -81.956518645376221, 28.895894558970305 ], [ -81.956798993488263, 28.895757481930865 ], [ -81.95684216774319, 28.895737555903928 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bishopville Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958980630748272, 28.89312861802436 ], [ -81.958795888443731, 28.89305567997037 ], [ -81.958623838418774, 28.892985496688148 ], [ -81.958451986583626, 28.892912562134846 ], [ -81.958308648974764, 28.892848232432595 ], [ -81.958270857830598, 28.892832790458847 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bishopville Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959977304518148, 28.893734172632218 ], [ -81.959820491631973, 28.893611045769678 ], [ -81.959743817049912, 28.893554775228104 ], [ -81.95959517063001, 28.893456767869171 ], [ -81.959591265321038, 28.893454015581291 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959977304518148, 28.893734172632218 ], [ -81.960044089202484, 28.893660447574565 ], [ -81.96010358773772, 28.893603435420175 ], [ -81.960191501458084, 28.893524714217953 ], [ -81.960300781872164, 28.893441595154822 ], [ -81.96042981269207, 28.893349642898432 ], [ -81.96054326374194, 28.893285087880045 ], [ -81.960678970504929, 28.893221120369908 ], [ -81.96083584161309, 28.89315341796598 ], [ -81.961053553945703, 28.893065278816163 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Timmonsville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958157343728956, 28.895586024218161 ], [ -81.958205088799275, 28.895646772873267 ], [ -81.958256828649297, 28.895707321540744 ], [ -81.958312732514543, 28.895764994048328 ], [ -81.958370237279851, 28.895814228724369 ], [ -81.958427174491845, 28.895852191674976 ], [ -81.958573123280033, 28.895938036460628 ], [ -81.958796788853448, 28.896049194619238 ], [ -81.958942336376623, 28.896116714080875 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clemente Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959495805578555, 28.949378099331664 ], [ -81.959530485236215, 28.949517215310046 ], [ -81.959545330997358, 28.949617600710127 ], [ -81.959568668802106, 28.949725764624734 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clemente Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958436013252694, 28.95169086827762 ], [ -81.959092897171701, 28.951178154446179 ], [ -81.959262865679946, 28.951021040496041 ], [ -81.959363439426028, 28.950908088734241 ], [ -81.959447270175616, 28.950765659358943 ], [ -81.959508764435782, 28.95061339721773 ], [ -81.959537269851012, 28.950459019135241 ], [ -81.959553686118369, 28.950030319818104 ], [ -81.959559180691187, 28.9498254957307 ], [ -81.959568668802106, 28.949725764624734 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.211435988600599, 28.585952149685848 ], [ -82.211404138489129, 28.586016347466991 ], [ -82.211372300643561, 28.5860856786406 ], [ -82.211299926186626, 28.586237181239333 ], [ -82.211239115565775, 28.58635530721039 ], [ -82.21119854912169, 28.586422084716393 ], [ -82.211148481426278, 28.586497599871599 ], [ -82.210503635437107, 28.5873666700484 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210774797691599, 28.585303990386478 ], [ -82.211038770202805, 28.58548583656242 ], [ -82.211271910210286, 28.585647710699824 ], [ -82.211351671305266, 28.585704370396204 ], [ -82.211396183742607, 28.585750267488311 ], [ -82.211422324190309, 28.58580160171751 ], [ -82.211437762811812, 28.585862417212095 ], [ -82.211435988600599, 28.585952149685848 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.211219723334452, 28.584796528191408 ], [ -82.21116907578218, 28.584764532993621 ], [ -82.21111376100005, 28.584723564006044 ], [ -82.21103515251778, 28.584664669077739 ], [ -82.210965294872693, 28.584618590943432 ], [ -82.210886691667824, 28.584562262178647 ], [ -82.210796451942443, 28.584500819760123 ], [ -82.210732406159522, 28.584454731607455 ], [ -82.210668411540638, 28.584434302327892 ], [ -82.210604468042732, 28.584439533726687 ], [ -82.21053765293054, 28.584462729739172 ], [ -82.210470905192025, 28.584519283375201 ], [ -82.210421597470074, 28.584575810038103 ], [ -82.210369383355143, 28.584632342073835 ], [ -82.210325881077594, 28.584683729021609 ], [ -82.210264971280424, 28.584753102129618 ], [ -82.210244017516146, 28.584813784452557 ], [ -82.210244126037935, 28.584867862511132 ], [ -82.210259535300551, 28.584913806706854 ], [ -82.210285640041548, 28.584947564510113 ], [ -82.210324001602061, 28.584982656895292 ], [ -82.210391489765684, 28.585029871455859 ], [ -82.210448253583635, 28.585075751746782 ], [ -82.210511135924847, 28.585117563825946 ], [ -82.210608866362321, 28.58518878073809 ], [ -82.210684561486531, 28.585245115058001 ], [ -82.210731140937398, 28.585278399857376 ], [ -82.210774797691599, 28.585303990386478 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210774797691599, 28.585303990386478 ], [ -82.210905622774703, 28.585308921302389 ], [ -82.210989907201835, 28.585298526638493 ], [ -82.211065443860093, 28.585275315085681 ], [ -82.211140933362941, 28.585229011745678 ], [ -82.211193161706902, 28.585180178173044 ], [ -82.211222154544529, 28.585141644747001 ], [ -82.211251127880033, 28.585092846309099 ], [ -82.211265550980755, 28.585036373461175 ], [ -82.211265421818865, 28.584972224406062 ], [ -82.211261249691006, 28.584912256754777 ], [ -82.211241184118308, 28.584833872600125 ], [ -82.211219723334452, 28.584796528191408 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.211366962553754, 28.584765611158147 ], [ -82.211372917993515, 28.584839075067745 ], [ -82.211383781876165, 28.584910713140967 ], [ -82.21140078517152, 28.584987749416218 ], [ -82.211433150297935, 28.585087744478962 ], [ -82.211471677186509, 28.585205306673689 ], [ -82.211506665402709, 28.585333808020327 ], [ -82.211566877509256, 28.585533750951733 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 50th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187075932466072, 28.575200905775986 ], [ -82.187076277099777, 28.575097506676727 ], [ -82.187083435040265, 28.574880447169512 ], [ -82.187086153033903, 28.574764241456933 ], [ -82.187079576234197, 28.574458963328567 ], [ -82.187078091070859, 28.574390204988823 ], [ -82.187084819459386, 28.57412100503069 ], [ -82.187097393624299, 28.573853516904887 ], [ -82.187127073191036, 28.573349818651987 ], [ -82.187128535943984, 28.573295497362267 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 50th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187091986273259, 28.576247957503966 ], [ -82.187084777770266, 28.576189611055867 ], [ -82.187080430812841, 28.576044193578131 ], [ -82.187072471381697, 28.575836896547507 ], [ -82.187064091915971, 28.57561344182453 ], [ -82.187069416364437, 28.575431225229696 ], [ -82.187075932466072, 28.575200905775986 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 618", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203457740028625, 28.637192199390569 ], [ -82.204575960216729, 28.63720829712241 ], [ -82.204802453218662, 28.637215017204664 ], [ -82.206384107695641, 28.637223003503493 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 618", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.206384107695641, 28.637223003503493 ], [ -82.206434688114655, 28.637228369661635 ], [ -82.206508838657655, 28.637249348319287 ], [ -82.206599765405414, 28.637291392634999 ], [ -82.206645211261687, 28.637303977065656 ], [ -82.206685372925463, 28.637302229606128 ], [ -82.206719770530782, 28.637288679331654 ], [ -82.206748405878443, 28.637261639780515 ], [ -82.20676363865168, 28.637227871126239 ], [ -82.206763542787584, 28.637178941276002 ], [ -82.206750097026372, 28.637148590025593 ], [ -82.206709870351432, 28.637116593897893 ], [ -82.206679245158469, 28.637103141491032 ], [ -82.206642919732701, 28.6371099452201 ], [ -82.206608517851052, 28.637121809018357 ], [ -82.206522527966754, 28.637159058892081 ], [ -82.206384107695641, 28.637223003503493 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 3rd Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108108540279218, 28.677711364714192 ], [ -82.108219631148458, 28.677705678613517 ], [ -82.108548156422373, 28.677706817246168 ], [ -82.109000485600362, 28.677719053290122 ], [ -82.109363396748122, 28.677733562096968 ], [ -82.109417111356336, 28.677721049726809 ], [ -82.109473619333997, 28.6776761170388 ], [ -82.10949900269361, 28.677611258758319 ], [ -82.109494381716218, 28.676225678489651 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 54th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008023733350868, 28.769803447167881 ], [ -82.008047245658034, 28.769822141915121 ], [ -82.008129864806108, 28.76987837887582 ], [ -82.0081300296915, 28.769878481731009 ], [ -82.008202689227545, 28.76991472655747 ], [ -82.008202909413725, 28.769914829409576 ], [ -82.008254265748064, 28.769934657717499 ], [ -82.008254617019261, 28.769934785827214 ], [ -82.008313441865624, 28.76995233986602 ], [ -82.008383397286863, 28.769966682817678 ], [ -82.008383676866302, 28.769966732429516 ], [ -82.008466845647987, 28.769975189693461 ], [ -82.008466977755944, 28.769975199611505 ], [ -82.00846723685062, 28.769975208620071 ], [ -82.008551419814111, 28.769974618248149 ], [ -82.008551728062642, 28.769974597477333 ], [ -82.008621003885608, 28.769967207151556 ], [ -82.008621175930216, 28.769967181876815 ], [ -82.008701360604277, 28.769950493414179 ], [ -82.008701565417184, 28.769950437458661 ], [ -82.00876682370162, 28.769929924001506 ], [ -82.008766998815005, 28.769929856317535 ], [ -82.008832135675121, 28.769902405827327 ], [ -82.008832280065548, 28.769902334535804 ], [ -82.008889446166933, 28.769871609981966 ], [ -82.008889534233802, 28.769871554033106 ], [ -82.008949172707901, 28.769831483113393 ], [ -82.008949379560235, 28.76983132429331 ], [ -82.009001033982187, 28.769788325811735 ], [ -82.009055995744859, 28.769740347225156 ], [ -82.009387352474874, 28.769451090074849 ], [ -82.010146543145026, 28.768788345387406 ], [ -82.010877618042244, 28.768150133364415 ], [ -82.010886576841685, 28.768142311419432 ], [ -82.010887372473917, 28.768141616576592 ], [ -82.010887868080061, 28.768141183427829 ], [ -82.011374609715304, 28.767715852109621 ], [ -82.011375000868284, 28.767715471301543 ], [ -82.011375118623576, 28.767715354893539 ], [ -82.011430115739799, 28.767654111272364 ], [ -82.011430286734836, 28.767653885679806 ], [ -82.011480063767124, 28.767579443357647 ], [ -82.011480315639943, 28.76757899939804 ], [ -82.01148037809601, 28.767578887505859 ], [ -82.01151850135669, 28.767496025664819 ], [ -82.011518552544644, 28.767495882192428 ], [ -82.011541107165968, 28.767415218712355 ], [ -82.011541190068968, 28.767414784691493 ], [ -82.011551156550453, 28.76732120553941 ], [ -82.011551158567755, 28.767320914993253 ], [ -82.011547259293749, 28.767246976762401 ], [ -82.011547220348845, 28.767246688024134 ], [ -82.011533469911114, 28.767175422330606 ], [ -82.011533428933049, 28.7671752743539 ], [ -82.011507607526354, 28.767100164838105 ], [ -82.011507473341752, 28.767099853549393 ], [ -82.011481699401841, 28.767047231562263 ], [ -82.011481528352149, 28.767046928397285 ], [ -82.011452074517408, 28.766999467945087 ], [ -82.011451927031445, 28.766999262228442 ], [ -82.01141918747301, 28.766956089835446 ], [ -82.011419017458309, 28.766955887729761 ], [ -82.011367401282442, 28.766900962316779 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 54th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008023733350868, 28.769803447167881 ], [ -82.007606597231529, 28.770182517343322 ], [ -82.007517257226183, 28.770310615514518 ], [ -82.007455056497164, 28.770439450396328 ], [ -82.007421312580462, 28.77054516291318 ], [ -82.007404950949692, 28.77062639112696 ], [ -82.007395537147815, 28.770729025554161 ], [ -82.007399881642698, 28.770871730278241 ], [ -82.007398883993176, 28.771207352281976 ], [ -82.00739763389808, 28.771627596202393 ], [ -82.00739701684266, 28.771834757201876 ], [ -82.007396644231818, 28.771960276617484 ], [ -82.007396286540029, 28.772263766156861 ], [ -82.00739631373888, 28.772672332175176 ], [ -82.007396329139809, 28.772888288888666 ], [ -82.007395842453676, 28.772961734730256 ], [ -82.007384302930532, 28.773042023368436 ], [ -82.00736446789125, 28.773104645057558 ], [ -82.007329218329531, 28.773175222301283 ], [ -82.007287645008176, 28.773233542776243 ], [ -82.007234931052167, 28.773288476470796 ], [ -82.007121126342639, 28.773360798818629 ], [ -82.006921886565522, 28.773487415484556 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975130854159275, 28.822641660475792 ], [ -81.975005628614809, 28.822778828841404 ], [ -81.974924224253527, 28.822894577239886 ], [ -81.974855344768372, 28.822988278201137 ], [ -81.974789595661221, 28.823076467506215 ], [ -81.97475515360388, 28.823126073607895 ], [ -81.974695665719437, 28.823214264042811 ], [ -81.974636174003791, 28.823313478864439 ], [ -81.974580351751584, 28.823402578564028 ], [ -81.9745050868341, 28.823510469649552 ], [ -81.974257776536433, 28.823894721363789 ], [ -81.97415400073632, 28.823982936433911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Industrial Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055636073649026, 28.852266908881575 ], [ -82.055700014847417, 28.852232607875393 ], [ -82.055750050840317, 28.852203208420967 ], [ -82.055797299263887, 28.852156676225682 ], [ -82.055835513467485, 28.852114427338449 ], [ -82.05585565417482, 28.85208075772751 ], [ -82.055872313143297, 28.852029339402467 ], [ -82.055877144337074, 28.851961401109254 ], [ -82.055876828729325, 28.851367720887914 ], [ -82.055876524909706, 28.850792401608647 ], [ -82.055877551491434, 28.847406725569879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gaither Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956642361689006, 28.870324528632921 ], [ -81.956639662593901, 28.869716234848418 ], [ -81.956633937560227, 28.869282108875218 ], [ -81.95664286013988, 28.869131338727232 ], [ -81.956690693422914, 28.868937438407745 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Foxbridge Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95550993394265, 28.871719892604524 ], [ -81.955457450156416, 28.871606375462424 ], [ -81.955364419208649, 28.871383548906426 ], [ -81.955300027415205, 28.871198565364956 ], [ -81.955264250766803, 28.871101869011238 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Havana Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957166288782162, 28.873694059889289 ], [ -81.957178252135606, 28.873631008104248 ], [ -81.957206993838142, 28.873425036958018 ], [ -81.957247683802947, 28.873189642812211 ], [ -81.957297915210731, 28.872981577008741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Havana Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956145848904441, 28.87560430333156 ], [ -81.956198429611476, 28.875497127895198 ], [ -81.956279669681876, 28.875377348486158 ], [ -81.956415847079299, 28.875217651870805 ], [ -81.956549641544115, 28.87505585378322 ], [ -81.956673885614222, 28.874879339537699 ], [ -81.956788585436016, 28.874688109161465 ], [ -81.95690568033136, 28.874480065046843 ], [ -81.956984564432602, 28.87428041443999 ], [ -81.957075396351939, 28.874059750270781 ], [ -81.957135176977133, 28.873860095260735 ], [ -81.957166288782162, 28.873694059889289 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jonesbury Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954469723459283, 28.877121625201578 ], [ -81.954437839183925, 28.877045597257393 ], [ -81.954385356669562, 28.876925776305043 ], [ -81.954337646576647, 28.876812259531857 ], [ -81.954297100315529, 28.876700846638805 ], [ -81.954261332907365, 28.876581031318242 ], [ -81.954237497037354, 28.876482235567515 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980370107092583, 28.866258850576234 ], [ -81.980445019728577, 28.866225017945325 ], [ -81.980497379352883, 28.866165502426483 ], [ -81.980549740967419, 28.86610598869164 ], [ -81.980595559954921, 28.866029193068378 ], [ -81.980630469979019, 28.86597159596802 ], [ -81.980669744350195, 28.865898639574333 ], [ -81.980704659949879, 28.865821842335443 ], [ -81.980728664287639, 28.865760404332182 ], [ -81.980735241630626, 28.865576079982681 ], [ -81.980741351552354, 28.86541900062031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98062441048674, 28.865420670138359 ], [ -81.98062835437419, 28.865618304989635 ], [ -81.980617427318109, 28.865739267136423 ], [ -81.980582506104199, 28.865856385595087 ], [ -81.980521408599387, 28.865979259637541 ], [ -81.980447223446987, 28.86609637323615 ], [ -81.980380620753081, 28.866184191911444 ], [ -81.980370107092583, 28.866258850576234 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978029068054582, 28.871967507812851 ], [ -81.978068168561435, 28.871882880026966 ], [ -81.978083552268231, 28.87183364298004 ], [ -81.978083559449601, 28.871833615912116 ], [ -81.978089778783641, 28.871813710325615 ], [ -81.978123630196038, 28.87161602582416 ], [ -81.97815753249219, 28.871178140168169 ], [ -81.978167250021727, 28.870903927385022 ], [ -81.978175269037493, 28.870754915165637 ], [ -81.978195720586427, 28.870642395002765 ], [ -81.978224078270301, 28.870526013362181 ], [ -81.978252354452536, 28.870431187719053 ], [ -81.978304543828131, 28.870305355596614 ], [ -81.978371586676928, 28.87017788997699 ], [ -81.978455169861064, 28.870055318369719 ], [ -81.97852355381545, 28.869963947715053 ], [ -81.978724791772208, 28.869741877048721 ], [ -81.978853891795239, 28.869606113523549 ], [ -81.978941439887251, 28.869493735548623 ], [ -81.979019956234907, 28.869380079340306 ], [ -81.979071174198864, 28.869295786078801 ], [ -81.979112116744062, 28.869207117729793 ], [ -81.979156749069091, 28.869074752300996 ], [ -81.979190870775923, 28.868960503469111 ], [ -81.979237827505813, 28.86881399476691 ], [ -81.97928342184079, 28.868718162793293 ], [ -81.979348343083316, 28.868614143580327 ], [ -81.979427065210203, 28.868511626084938 ], [ -81.979524034072071, 28.868368275795724 ], [ -81.979607982836697, 28.868217965789178 ], [ -81.979682690024504, 28.868044380311837 ], [ -81.979721007767836, 28.867928092759254 ], [ -81.979762165082704, 28.867753161318401 ], [ -81.979807788857329, 28.867507997945037 ], [ -81.979899849386342, 28.86701899492618 ], [ -81.979941882479793, 28.866870158154896 ], [ -81.979995758280197, 28.866739336725558 ], [ -81.980078892065222, 28.866589768862113 ], [ -81.980175400234941, 28.866461466611771 ], [ -81.980370107092583, 28.866258850576234 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119936274547712, 28.879652900741419 ], [ -82.12166206384471, 28.879969987432503 ], [ -82.122348614267324, 28.880091440341563 ], [ -82.122682490548698, 28.880153207576424 ], [ -82.123023411008418, 28.880208760671032 ], [ -82.123272630676055, 28.880245776528874 ], [ -82.123644080544082, 28.880276473511753 ], [ -82.12395909042867, 28.880286529603897 ], [ -82.124250575209345, 28.880282126443962 ], [ -82.124605512633408, 28.880263178798259 ], [ -82.124906369517475, 28.880233935234848 ], [ -82.125070893235304, 28.880211024754114 ], [ -82.125226011624989, 28.88018605289346 ], [ -82.125423430092468, 28.880150698644641 ], [ -82.125580885592555, 28.880115379354699 ], [ -82.125895789847718, 28.880038533315435 ], [ -82.126093183961629, 28.879982487492157 ], [ -82.126325809782202, 28.879903648941035 ], [ -82.126586627053086, 28.879810300847105 ], [ -82.1267957327548, 28.879721138604854 ], [ -82.127030672041911, 28.879613330169057 ], [ -82.127213915486209, 28.879520054487433 ], [ -82.127629712179058, 28.879292073787784 ], [ -82.128143271979397, 28.87899131556221 ], [ -82.130147869247452, 28.877841383106396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dunkirk Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961331361762703, 28.876488793878359 ], [ -81.960868714863281, 28.876315370002985 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dunkirk Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960868714863281, 28.876315370002985 ], [ -81.960804634543649, 28.876292319147122 ], [ -81.96053030564903, 28.876166417262869 ], [ -81.960371376250322, 28.876071832645714 ], [ -81.960216360327735, 28.875963153235837 ], [ -81.95999638487514, 28.875779411642785 ], [ -81.959822186683795, 28.875644183036297 ], [ -81.959769046013591, 28.875586976505858 ], [ -81.959745440208877, 28.875534978779182 ], [ -81.959742506009547, 28.875485586779877 ], [ -81.959748429928069, 28.87544399603377 ], [ -81.959766170337033, 28.875392011600045 ], [ -81.959866663420328, 28.875186677688738 ], [ -81.959996706799856, 28.874942358608166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rainey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999145892296795, 28.913016298178732 ], [ -81.999214765676854, 28.912971412097143 ], [ -81.999337447734646, 28.912892455573907 ], [ -81.999564770743049, 28.912759090012923 ], [ -81.999734653484325, 28.912658452024353 ], [ -81.999894445058743, 28.912572615086834 ], [ -82.000037416227329, 28.912503057308719 ], [ -82.000168612347252, 28.912442379161419 ], [ -82.000375500039951, 28.912350621380114 ], [ -82.000580704586085, 28.912275144336139 ], [ -82.000764514325297, 28.9122127169402 ], [ -82.000979339410662, 28.912147866533726 ], [ -82.001088668440744, 28.91211086835089 ], [ -82.001152585237463, 28.912084228658497 ], [ -82.00124341144793, 28.91204574975847 ], [ -82.001346013017653, 28.911993951014029 ], [ -82.001445248829384, 28.911937710202508 ], [ -82.001540895259467, 28.911871270674663 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997728622325411, 28.912735373106287 ], [ -81.997761080803755, 28.912865685286665 ], [ -81.997831717708337, 28.912978882446087 ], [ -81.99791266406146, 28.91313320284446 ], [ -81.997986653970798, 28.913276564676885 ], [ -81.998084206676452, 28.913473401483397 ], [ -81.998171670483543, 28.913594759090952 ], [ -81.998279316103194, 28.913723516664533 ], [ -81.998398740135769, 28.91383599505788 ], [ -81.998534981649499, 28.913944034246374 ], [ -81.998693090309658, 28.91404319312764 ], [ -81.998789589734116, 28.914112543815193 ], [ -81.998897519317353, 28.914195639235054 ], [ -81.999021084387522, 28.914316988494264 ], [ -81.9991489174447, 28.914475345389594 ], [ -81.999206105760422, 28.914556743844539 ], [ -81.99926665857393, 28.914663300146369 ], [ -81.999344030360007, 28.914817215393718 ], [ -81.9994154204485, 28.914985538440135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9994154204485, 28.914985538440135 ], [ -81.999465558424518, 28.915231854090639 ], [ -81.999484359397627, 28.915316410251616 ], [ -81.999521963784886, 28.915571916602236 ], [ -81.999549121028394, 28.915875217556962 ], [ -81.999567922711762, 28.916150944260337 ], [ -81.999574459243846, 28.916297175947125 ], [ -81.999572097612557, 28.91640829019483 ], [ -81.999572775488772, 28.916536928864787 ], [ -81.999561648940187, 28.916744675456563 ], [ -81.99954284381441, 28.917002023067752 ], [ -81.999498965485969, 28.917367820303344 ], [ -81.99948643077748, 28.917443183677388 ], [ -81.999475984378236, 28.917479947706312 ], [ -81.999436288620444, 28.917529578329603 ], [ -81.999413499932416, 28.917562595948983 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998590885595974, 28.913710613316958 ], [ -81.998655811536352, 28.913725825892811 ], [ -81.998736035504152, 28.913762589971711 ], [ -81.998792860678805, 28.913805236743503 ], [ -81.998906259622046, 28.913911382301745 ], [ -81.999052934135207, 28.914100756842881 ], [ -81.999204419295793, 28.914334820229776 ], [ -81.999298430251486, 28.914518638660009 ], [ -81.999373638838449, 28.914707971749884 ], [ -81.999409153710189, 28.914862379358766 ], [ -81.999420424319482, 28.914941240191041 ], [ -81.9994154204485, 28.914985538440135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008561919531402, 28.926077490993038 ], [ -82.008561957601529, 28.926157751980568 ], [ -82.008552310776196, 28.926986484754366 ], [ -82.008555562553681, 28.927177292061788 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Salem Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007583484245373, 28.917971077823427 ], [ -82.007564615579199, 28.916867277614664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pelican Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988126209458983, 28.895374807784137 ], [ -81.988059060962271, 28.895240345575953 ], [ -81.98798794358494, 28.894933572593605 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pelican Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988577785051774, 28.895958008160832 ], [ -81.988432188444833, 28.895786677733302 ], [ -81.988297492062983, 28.895645502057544 ], [ -81.988195498382368, 28.895505697941932 ], [ -81.988126209458983, 28.895374807784137 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 122nd Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185482314170827, 28.578312649422177 ], [ -82.185589578776685, 28.578356174109469 ], [ -82.185831486185151, 28.57838253131122 ], [ -82.186100818430447, 28.578374885547369 ], [ -82.186414141635467, 28.578376883790217 ], [ -82.186596940013345, 28.578376462216148 ], [ -82.186600446233143, 28.578376458318424 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 25th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062137808933173, 28.836155654931716 ], [ -82.062137853464463, 28.8362312203786 ], [ -82.062109274011675, 28.836278811107558 ], [ -82.062039366748266, 28.836306827935488 ], [ -82.059935244768837, 28.836318963655909 ], [ -82.059836712944048, 28.836316207910208 ], [ -82.059741361531508, 28.836321847566413 ], [ -82.059661908485779, 28.836335876173511 ], [ -82.059592000060334, 28.836366692495002 ], [ -82.059525273480702, 28.836403105303511 ], [ -82.059490331068673, 28.836439501530521 ], [ -82.059442684755254, 28.836495497767949 ], [ -82.059395045167932, 28.836559889045599 ], [ -82.059369658315532, 28.836632665694506 ], [ -82.059350627327561, 28.836702641523381 ], [ -82.059334787174166, 28.836797804752063 ], [ -82.059312595179108, 28.836895768788864 ], [ -82.059084474736153, 28.838200063205718 ], [ -82.059014793534914, 28.838639491251662 ], [ -82.058973627191563, 28.838916579322113 ], [ -82.058946292118165, 28.839036463411873 ], [ -82.058877518441562, 28.839179792844693 ], [ -82.058808535667694, 28.839260892074847 ], [ -82.058345568618677, 28.839378436468653 ], [ -82.057919947790893, 28.839428221902029 ], [ -82.057494313583817, 28.83945044595762 ], [ -82.057206346301172, 28.839395453082915 ], [ -82.056303725201161, 28.839748174103217 ], [ -82.055867025219683, 28.839803858710628 ], [ -82.055610473324975, 28.839974819543382 ], [ -82.055397769611858, 28.840206389875359 ], [ -82.055282544414396, 28.840494313701885 ], [ -82.055180136032504, 28.840779366520831 ], [ -82.055159396540262, 28.840836147992306 ], [ -82.055158733432009, 28.840837961895186 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alfredo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976136474940091, 28.942649504422555 ], [ -81.976387652907889, 28.942433694328479 ], [ -81.976601865604849, 28.942251186349527 ], [ -81.976676757196344, 28.942180300844239 ], [ -81.976728659828495, 28.942119455622887 ], [ -81.976759274445001, 28.942067966167681 ], [ -81.976780572459077, 28.942014134536667 ], [ -81.976795219009091, 28.941970836924153 ], [ -81.976811197126963, 28.941908811538951 ], [ -81.976813879125743, 28.94181518643035 ], [ -81.976804578540552, 28.941764862106428 ], [ -81.976783305268484, 28.941700489698857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 625", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182651405550843, 28.665279244179207 ], [ -82.182661151667389, 28.664231497810778 ], [ -82.182673068759229, 28.662768226370968 ], [ -82.18267766067892, 28.662082477750616 ], [ -82.182679436587279, 28.66144007004344 ], [ -82.18268599632907, 28.660221528512036 ], [ -82.182704812839788, 28.659405749795805 ], [ -82.182720211064193, 28.658284067736002 ], [ -82.182717109068008, 28.658161710207395 ], [ -82.182702542387318, 28.658095448031048 ], [ -82.182682228783946, 28.658047040800842 ], [ -82.182647482071445, 28.658008848393155 ], [ -82.18262142629537, 28.657983391565129 ], [ -82.182586808747374, 28.657966005852796 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 625", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178506904013773, 28.65779821634607 ], [ -82.178488206131618, 28.657777288704246 ], [ -82.178462108267198, 28.657726338426343 ], [ -82.178301825387848, 28.656941385522565 ], [ -82.178231924506122, 28.656622822775489 ], [ -82.178161923969725, 28.656245628324893 ], [ -82.178132705226957, 28.656057023060253 ], [ -82.178126434538967, 28.655766420530078 ], [ -82.178117325671593, 28.655506410787087 ], [ -82.17811785409117, 28.655177876988038 ], [ -82.178147781462698, 28.654716108615965 ], [ -82.178181329310348, 28.654260071598756 ], [ -82.178309208574831, 28.652975727040577 ], [ -82.178404949269606, 28.651914482874307 ], [ -82.178454403711044, 28.651251618049645 ], [ -82.178485766839088, 28.650572844362031 ], [ -82.17850276618546, 28.649945072189723 ], [ -82.178517866164569, 28.64940031624916 ], [ -82.17852290288873, 28.64880432451044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southland Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11056614776092, 28.654027241836502 ], [ -82.110537993127281, 28.654005994807758 ], [ -82.110499794930746, 28.653986530794143 ], [ -82.110463613257494, 28.653974152072706 ], [ -82.110417385972411, 28.653963555455864 ], [ -82.110334989197725, 28.653951214068737 ], [ -82.109700034704346, 28.653955270085657 ], [ -82.109006798281541, 28.653950508743346 ], [ -82.108494876548363, 28.653953290505598 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jarrell Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034308282809405, 28.871475170582425 ], [ -82.033781707376392, 28.871469911567804 ], [ -82.033377594710984, 28.871470010275321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037523675323285, 28.845811574824694 ], [ -82.037514521784502, 28.84580352063476 ], [ -82.037497388289182, 28.845773372957215 ], [ -82.037493094546875, 28.845739451942325 ], [ -82.037493079194192, 28.845696106980824 ], [ -82.037497264787007, 28.845424729244897 ], [ -82.03750581080476, 28.845381380141223 ], [ -82.037529344401563, 28.845351221364126 ], [ -82.037567864590685, 28.845328596350928 ], [ -82.03761280732482, 28.845305968667148 ], [ -82.037816115847008, 28.845211685083438 ], [ -82.038038670639565, 28.845064627215475 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03811392839981, 28.846015369600416 ], [ -82.037632271913779, 28.845871332819438 ], [ -82.037585175047511, 28.845854385063973 ], [ -82.037542356583955, 28.845828012442034 ], [ -82.037523675323285, 28.845811574824694 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103999462667502, 28.707184222393391 ], [ -82.104018390683549, 28.707129224644596 ], [ -82.104048118485977, 28.707028798202096 ], [ -82.104094049118316, 28.706861423839293 ], [ -82.10414267318906, 28.706677311933529 ], [ -82.10419122339998, 28.706416702539904 ], [ -82.104212726380908, 28.706225441408368 ], [ -82.104226103251406, 28.706043747538054 ], [ -82.104239477710081, 28.705859664300014 ], [ -82.104247552974059, 28.705799893364976 ], [ -82.104247313803612, 28.705558446016841 ], [ -82.10424702862143, 28.705271578227364 ], [ -82.104249617639127, 28.705147266174276 ], [ -82.104249361894801, 28.704889085147929 ], [ -82.104246086190173, 28.704320132099419 ], [ -82.104247676982624, 28.703187001074507 ], [ -82.104247768245173, 28.701450183701954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104247768245173, 28.701450183701954 ], [ -82.104250235055744, 28.70110749651441 ], [ -82.104248894426817, 28.6997538372291 ], [ -82.104252032107226, 28.698404176981668 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 641 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.25161830693844, 28.635049842620933 ], [ -82.251592888262337, 28.635029245469102 ], [ -82.25153475373402, 28.634982550576371 ], [ -82.251470903199902, 28.634916171064546 ], [ -82.251420939204408, 28.634855567685911 ], [ -82.251380460410999, 28.634792853227118 ], [ -82.251356582099604, 28.634728015362299 ], [ -82.251346943467695, 28.634665243514803 ], [ -82.251342030478924, 28.63459409102499 ], [ -82.251339303819975, 28.634445493497374 ], [ -82.251351713178167, 28.633679437029791 ], [ -82.251355993121237, 28.633484781264329 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 641", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.25161830693844, 28.635049842620933 ], [ -82.251663252044452, 28.635077248500032 ], [ -82.25215491796898, 28.635245587902713 ], [ -82.252738958790687, 28.63543286596958 ], [ -82.2528196728626, 28.63545573889969 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000880169081981, 28.942852041829145 ], [ -82.000884932428463, 28.942992298807209 ], [ -82.000895681433718, 28.943175873965387 ], [ -82.000913073513814, 28.943370795436071 ], [ -82.00091346436146, 28.943375607365052 ], [ -82.000913855207457, 28.943380076422578 ], [ -82.000914246055203, 28.943384890156146 ], [ -82.000914636902962, 28.94338970208511 ], [ -82.000915027750779, 28.94339451491637 ], [ -82.000915417571122, 28.943398983071567 ], [ -82.000916005369746, 28.943403796804525 ], [ -82.000930529060241, 28.943526880391403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002015442210435, 28.945086766040607 ], [ -82.002097890702601, 28.945319664065863 ], [ -82.002140963484635, 28.945460678411976 ], [ -82.0021601073867, 28.945540657428868 ], [ -82.002167287930604, 28.945595379605372 ], [ -82.002169679809796, 28.94569850895612 ], [ -82.002160111151483, 28.945763755683199 ], [ -82.002140919575837, 28.945841463192167 ], [ -82.002070180816119, 28.946033978158511 ], [ -82.002050639890527, 28.94608279423651 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139632936574642, 28.880893994455334 ], [ -82.139694213389092, 28.880886582928355 ], [ -82.139816574133064, 28.880869358071742 ], [ -82.139946696485168, 28.880845289269271 ], [ -82.14011565685972, 28.880810917412372 ], [ -82.140329282224897, 28.880766242631946 ], [ -82.140548722751205, 28.880711301441977 ], [ -82.140754555044751, 28.88064953732848 ], [ -82.1409564879269, 28.88057751692595 ], [ -82.141155484741574, 28.880500377836743 ], [ -82.141351637542385, 28.880411135285861 ], [ -82.141542893872312, 28.880314332699058 ], [ -82.141729260885867, 28.880209974600955 ], [ -82.142373602877612, 28.879856220154903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142373602877612, 28.879856220154903 ], [ -82.142680246601529, 28.880274468147814 ], [ -82.143049009220803, 28.880777257392058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243F", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136814525903773, 28.876351568593005 ], [ -82.137229370617646, 28.876674515703368 ], [ -82.137482134856029, 28.876855496017335 ], [ -82.137583232159713, 28.876920366091195 ], [ -82.137709590590362, 28.876992047121998 ], [ -82.137853424007062, 28.877058581577966 ], [ -82.138001135906592, 28.877118273403052 ], [ -82.138150775034674, 28.877167703057864 ], [ -82.138284859574398, 28.877205183044403 ], [ -82.138451969053975, 28.877244336285635 ], [ -82.13859574556966, 28.877266415539808 ], [ -82.13874339383031, 28.877278233339688 ], [ -82.13889492182463, 28.877286628187797 ], [ -82.139060034627278, 28.877284748875056 ], [ -82.13918434750704, 28.877277781732957 ], [ -82.139302828972546, 28.877267399860269 ], [ -82.139432955031722, 28.877250169175149 ], [ -82.139551420517378, 28.877227819910612 ], [ -82.139675704720332, 28.877198626017115 ], [ -82.139782505460531, 28.877171159012111 ], [ -82.139864057387996, 28.877145427860302 ], [ -82.139980550373465, 28.877100853928216 ], [ -82.140112566199576, 28.877044295742351 ], [ -82.140199922954793, 28.877001459817251 ], [ -82.140295040974053, 28.876951778173638 ], [ -82.140386265772733, 28.876896970929995 ], [ -82.140471675096009, 28.876850718939554 ], [ -82.140541553590069, 28.876811320636222 ], [ -82.140646385625331, 28.876763338518558 ], [ -82.14081142971925, 28.876710162345049 ], [ -82.141075512231964, 28.876636368155314 ], [ -82.141217299796978, 28.876624252267209 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141518826513021, 28.878520310504307 ], [ -82.141540756972574, 28.878570835252198 ], [ -82.141610469692012, 28.878724702622666 ], [ -82.141681143038241, 28.878867080882035 ], [ -82.141772719561402, 28.87902322253165 ], [ -82.141887808401691, 28.879193124793158 ], [ -82.142373602877612, 28.879856220154903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141217299796978, 28.876624252267209 ], [ -82.141215870552017, 28.877005533680983 ], [ -82.141216184666035, 28.877238061176115 ], [ -82.141231993003274, 28.877438087942114 ], [ -82.141249733296505, 28.877627855352401 ], [ -82.141281938282049, 28.877798531262826 ], [ -82.141321314012927, 28.87796219603414 ], [ -82.141363930689337, 28.878108625305348 ], [ -82.141395703495022, 28.878198772371778 ], [ -82.141440269873485, 28.878338879877059 ], [ -82.141518826513021, 28.878520310504307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140653623710662, 28.874918486809847 ], [ -82.140764462815255, 28.875005570731798 ], [ -82.140844207979455, 28.875082426861059 ], [ -82.140925916523813, 28.875174669609791 ], [ -82.141009603304653, 28.875292556294095 ], [ -82.141058273039746, 28.875372866165531 ], [ -82.141106973774086, 28.875475400513906 ], [ -82.141151772284587, 28.875565971718217 ], [ -82.141181050564299, 28.875670237039234 ], [ -82.141204511590814, 28.875783056799079 ], [ -82.141216331652771, 28.875904439780776 ], [ -82.141218414679088, 28.876008733446138 ], [ -82.141217299796978, 28.876624252267209 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138851067790483, 28.874814151783117 ], [ -82.138928048439539, 28.874777785066936 ], [ -82.139011538470001, 28.874741411625298 ], [ -82.139127565715256, 28.874698320477016 ], [ -82.139225170201115, 28.87466957216991 ], [ -82.139322783996889, 28.874649417280494 ], [ -82.139421488176893, 28.874632126900277 ], [ -82.139536470727577, 28.874617684476394 ], [ -82.139660784958735, 28.874614137519721 ], [ -82.139796847814196, 28.874617415944478 ], [ -82.139918979000043, 28.874630340670723 ], [ -82.140058872892595, 28.874657552870481 ], [ -82.140172318865751, 28.87468769319468 ], [ -82.140289542021904, 28.874726725277764 ], [ -82.140417641080973, 28.87478675331095 ], [ -82.140488379568552, 28.874819491150809 ], [ -82.140558366680224, 28.874862163144492 ], [ -82.140606964814481, 28.874889468599349 ], [ -82.140653623710662, 28.874918486809847 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136814525903773, 28.876351568593005 ], [ -82.136915294326485, 28.876252344690272 ], [ -82.137068083145266, 28.876108950157011 ], [ -82.137292396854761, 28.875907231430208 ], [ -82.137522145435184, 28.875712191943087 ], [ -82.137763836789816, 28.875525733411209 ], [ -82.137987105815938, 28.875355527382538 ], [ -82.138228824461351, 28.875191032654993 ], [ -82.138483556761415, 28.875020793684126 ], [ -82.138757820824537, 28.874855310090052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975013260585939, 28.909109851015913 ], [ -81.975272292293624, 28.909033929276688 ], [ -81.975536058926053, 28.908954636017249 ], [ -81.975788082522897, 28.908880660965401 ], [ -81.975968906052898, 28.908827769293879 ], [ -81.976099661928558, 28.908788122294922 ], [ -81.976232666245949, 28.908776244687047 ], [ -81.976295784237593, 28.908782206542753 ], [ -81.976417503046122, 28.908825864988913 ], [ -81.976503153981483, 28.908873486200985 ], [ -81.97659331286826, 28.90892110634281 ], [ -81.976678966536028, 28.908952857828762 ], [ -81.976784910375983, 28.908986596034751 ], [ -81.976960727780579, 28.909046132081599 ], [ -81.977183886628453, 28.909113610792321 ], [ -81.977319133645523, 28.909149336825283 ], [ -81.977393519013859, 28.90916720228774 ], [ -81.977447620950286, 28.909171177925916 ], [ -81.977492707678863, 28.909163251619184 ], [ -81.977531036479931, 28.909137472199607 ], [ -81.977560350914601, 28.909095822544579 ], [ -81.97758516853844, 28.90899863389329 ], [ -81.977649287442688, 28.90872713147607 ], [ -81.977684423976356, 28.908644026688808 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Sumter Lndg", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974291843356724, 28.909320762707665 ], [ -81.974053582157083, 28.908699309638056 ], [ -81.974011133433535, 28.908599137316635 ], [ -81.97399415188427, 28.908563255045607 ], [ -81.97394309585053, 28.908494886125837 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Sumter Lndg", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97394309585053, 28.908494886125837 ], [ -81.973917720584836, 28.908469057417729 ], [ -81.973885445281724, 28.908446627216968 ], [ -81.973793077337959, 28.908410482057082 ], [ -81.973701972677702, 28.908374833345754 ], [ -81.973629713575804, 28.908351584055456 ], [ -81.973525290042375, 28.908317988936517 ], [ -81.973430152158997, 28.908295546177538 ], [ -81.973328219348161, 28.908274596202816 ], [ -81.973200798433339, 28.90825663216803 ], [ -81.973112451744299, 28.908247643805712 ], [ -81.973007117204673, 28.908240148873276 ], [ -81.972874595219594, 28.908240121183525 ], [ -81.972772654834884, 28.908244585811818 ], [ -81.972694498781507, 28.908252043626902 ], [ -81.972544982078247, 28.908271447642147 ], [ -81.972458328826349, 28.908287874222964 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972183142335524, 28.90941562643977 ], [ -81.972200432338568, 28.909499922685363 ], [ -81.972205028602502, 28.909579137259136 ], [ -81.972196922542651, 28.90967358449133 ], [ -81.972187675017636, 28.909730454394726 ], [ -81.972164563814815, 28.909830989916472 ], [ -81.972143750172478, 28.909971134071551 ], [ -81.97213217925605, 28.910079797175104 ], [ -81.972126387097731, 28.910156979412236 ], [ -81.972125212511742, 28.910238224753638 ], [ -81.972135574086636, 28.910335721973329 ], [ -81.972154016000943, 28.910423064609905 ], [ -81.972186310192484, 28.910509395036652 ], [ -81.972225531593224, 28.910587600799854 ], [ -81.972284373703545, 28.910671905634342 ], [ -81.972336297265485, 28.910728787287393 ], [ -81.972418227915995, 28.910797863341237 ], [ -81.972487466329071, 28.910840531901204 ], [ -81.972563634482881, 28.91087710772819 ], [ -81.972649037623356, 28.910907593988448 ], [ -81.972732136246776, 28.910923858613483 ], [ -81.972834856524614, 28.91093505084481 ], [ -81.972914495927881, 28.910937098055207 ], [ -81.972982594257687, 28.910933049674217 ], [ -81.97305069489893, 28.910927985272227 ], [ -81.97310956096004, 28.910919872824334 ], [ -81.973179969451024, 28.910908715605267 ], [ -81.973254997982906, 28.910888418998464 ], [ -81.973335798633002, 28.910861016102007 ], [ -81.973394669856646, 28.910836653151446 ], [ -81.973480090483307, 28.910796046863929 ], [ -81.973526267139221, 28.910768634280625 ], [ -81.973587448706951, 28.910728024932311 ], [ -81.973641706540221, 28.910686397303088 ], [ -81.973694811459566, 28.910641722366154 ], [ -81.97374214630959, 28.910591969047417 ], [ -81.973784863972469, 28.910536121591605 ], [ -81.97388186313627, 28.910356384827026 ], [ -81.973908431677188, 28.910268035221037 ], [ -81.973922298278026, 28.910206089776977 ], [ -81.973925786969815, 28.910108594488584 ], [ -81.973921185008095, 28.910046643638939 ], [ -81.973907352646947, 28.909973520544003 ], [ -81.973887754428077, 28.909883130855714 ], [ -81.973875071362514, 28.909835396832545 ], [ -81.973871622561248, 28.909779541224825 ], [ -81.973876248958163, 28.909740949952841 ], [ -81.973886650225282, 28.909688142302358 ], [ -81.973910902577472, 28.909626197977925 ], [ -81.973933998177074, 28.90958050200075 ], [ -81.973983645861566, 28.9095144995594 ], [ -81.974044832662713, 28.909453576566946 ], [ -81.974113285144981, 28.909403242513612 ], [ -81.974183629691979, 28.909360412298284 ], [ -81.974291843356724, 28.909320762707665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971515437740365, 28.908620813444962 ], [ -81.971590581244783, 28.908755343067373 ], [ -81.971636729186145, 28.908823395129041 ], [ -81.971667881663265, 28.908863008989051 ], [ -81.971737113581696, 28.908931066800012 ], [ -81.971830581089051, 28.909010301024729 ], [ -81.971909047472721, 28.909074296739234 ], [ -81.97197712873718, 28.909136260966619 ], [ -81.97205854686662, 28.909210456784727 ], [ -81.97212556103517, 28.909298146124637 ], [ -81.972183142335524, 28.90941562643977 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Old Camp Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974632078640184, 28.905773633415414 ], [ -81.974099269006217, 28.905795603379755 ], [ -81.973852927502534, 28.905812403195309 ], [ -81.973653480692349, 28.90584394271956 ], [ -81.973505767596009, 28.90586985734528 ], [ -81.973334266965892, 28.905906834662421 ], [ -81.973130626114397, 28.90596490375291 ], [ -81.972978248532058, 28.906012567663648 ], [ -81.972800391811006, 28.906081061195138 ], [ -81.972594992407736, 28.906175138032395 ], [ -81.972398591307709, 28.906274681630141 ], [ -81.972166629906752, 28.906417040622483 ], [ -81.972042624250463, 28.906504291380024 ], [ -81.971905090746858, 28.906607406999107 ], [ -81.971754566420103, 28.906734594854321 ], [ -81.971605209094761, 28.906875119653986 ], [ -81.971503737250799, 28.906992125256671 ], [ -81.971433825565157, 28.907099222163481 ], [ -81.971388720085926, 28.907172603652239 ], [ -81.97133458744311, 28.907283669474584 ], [ -81.971282699515882, 28.907438372690596 ], [ -81.971260122656403, 28.907559364203337 ], [ -81.971244310077552, 28.907678373009478 ], [ -81.971242454279164, 28.907780489280306 ], [ -81.971253252192582, 28.907942183389913 ], [ -81.97129378126553, 28.908116744323422 ], [ -81.971357889439673, 28.908284144235868 ], [ -81.971515437740365, 28.908620813444962 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cottage Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971679071379981, 28.909572327478607 ], [ -81.971659758492308, 28.909477097597581 ], [ -81.971652343545372, 28.909446844691953 ], [ -81.97163750562801, 28.909415557082749 ], [ -81.971613877927496, 28.909379111879364 ], [ -81.971569353839399, 28.909323066133933 ], [ -81.971514475143792, 28.909269424599128 ], [ -81.971459594696398, 28.909222316579275 ], [ -81.97141662668497, 28.909191023848468 ], [ -81.971351390766912, 28.909156976138036 ], [ -81.971318769934143, 28.909146655891579 ], [ -81.971275600267191, 28.909140114002515 ], [ -81.971237115477749, 28.909138730640027 ], [ -81.97118065745299, 28.909145251137371 ], [ -81.971139240575724, 28.909159680786569 ], [ -81.971078481810196, 28.909184419510563 ], [ -81.971029441527165, 28.909206754314546 ], [ -81.970976104676936, 28.909228744393992 ], [ -81.970919641313813, 28.909257609282243 ], [ -81.970863371396092, 28.90929128704493 ], [ -81.970826246591031, 28.90932153210381 ], [ -81.970786188878137, 28.909359339572205 ], [ -81.970747499091388, 28.909397146424954 ], [ -81.970713498286557, 28.909436329393557 ], [ -81.97068379347489, 28.909474137289759 ], [ -81.970654088200149, 28.909517102712851 ], [ -81.970630440123401, 28.9095497561947 ], [ -81.97060503684429, 28.909581034185308 ], [ -81.970579827994413, 28.909613687315385 ], [ -81.970551686957947, 28.909647714897556 ], [ -81.97052198260478, 28.909690681192828 ], [ -81.970495400743459, 28.909733646364536 ], [ -81.970478984091287, 28.909766301411601 ], [ -81.970459632988451, 28.909808238647788 ], [ -81.970441843011145, 28.909848800221482 ], [ -81.970424054717057, 28.909894173746434 ], [ -81.970415251495666, 28.909932331774812 ], [ -81.970404691301695, 28.909975301367535 ], [ -81.970395887711177, 28.910018271347454 ], [ -81.970389819705701, 28.910058835503545 ], [ -81.97038687950797, 28.910095275045943 ], [ -81.970383931928993, 28.910150277555619 ], [ -81.970382552594188, 28.910197031606689 ], [ -81.970380974790515, 28.910249286019848 ], [ -81.970380956829388, 28.910311853136896 ], [ -81.970379380739686, 28.910361700219486 ], [ -81.970378002074625, 28.910395389000016 ], [ -81.970377984171833, 28.910454174586548 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974388148484735, 28.879600908425822 ], [ -81.974371601675983, 28.879772801862934 ], [ -81.974370704339989, 28.879922530540384 ], [ -81.974382142550809, 28.880126996096521 ], [ -81.974391132345175, 28.880242113462675 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Forest Acres Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975875948855403, 28.903804582806806 ], [ -81.975861695960873, 28.90373839212808 ], [ -81.975834047307004, 28.903624115539266 ], [ -81.975806397096065, 28.903521078875677 ], [ -81.975774491120887, 28.903406801501088 ], [ -81.975738323805984, 28.90330938279342 ], [ -81.975695765263993, 28.903225076019304 ], [ -81.975652639062318, 28.903139336277238 ], [ -81.975614914212969, 28.903033984239826 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Forest Acres Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975614914212969, 28.903033984239826 ], [ -81.97561067618598, 28.902947810339693 ], [ -81.975606448959937, 28.902820423949798 ], [ -81.975608609772038, 28.902689293280275 ], [ -81.975610763782086, 28.902582514745966 ], [ -81.975608657584743, 28.902483230828597 ], [ -81.975602290886187, 28.902397055630825 ], [ -81.975595921806189, 28.902329615761698 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Forest Acres Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975342763346148, 28.901598979850831 ], [ -81.975321487492721, 28.901544649419719 ], [ -81.975289574302295, 28.901456598113967 ], [ -81.975255535563619, 28.901368546406513 ], [ -81.975219367631283, 28.901278622024996 ], [ -81.975176816778486, 28.901171834287638 ], [ -81.975134264986906, 28.901065047437339 ], [ -81.975106606961518, 28.900995729499947 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Forest Acres Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975106606961518, 28.900995729499947 ], [ -81.975085333284937, 28.90093765358456 ], [ -81.97504278452341, 28.900823374012194 ], [ -81.975002362129615, 28.900714714339422 ], [ -81.974970349944542, 28.900626890308395 ], [ -81.974938539122761, 28.900546104238149 ], [ -81.974904493101377, 28.900486152725556 ], [ -81.974862959343099, 28.900449482720109 ], [ -81.974833273473379, 28.900430569466725 ], [ -81.974760808935358, 28.900409240813037 ], [ -81.974701627054444, 28.900404417679642 ], [ -81.974596726494283, 28.900423305486171 ], [ -81.974456861447734, 28.900456624228884 ], [ -81.97426874436411, 28.900499216411177 ], [ -81.974048395464848, 28.900551084034987 ], [ -81.973841331725623, 28.900596078376505 ], [ -81.973663762712818, 28.900636265342225 ], [ -81.973502604790397, 28.900671641557778 ], [ -81.973413723072198, 28.900690532513771 ], [ -81.973331239304173, 28.900710645496012 ], [ -81.973252564981649, 28.900725909332085 ], [ -81.973187905682352, 28.900739991210923 ], [ -81.973131451276586, 28.900754418481274 ], [ -81.972935254881847, 28.900802357809862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Goose Crk", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974133332541811, 28.90197708183932 ], [ -81.9741994889214, 28.901949072817114 ], [ -81.974406003506218, 28.901883546022606 ], [ -81.974635935800336, 28.901812404736159 ], [ -81.974938252322772, 28.90172441627552 ], [ -81.975342763346148, 28.901598979850831 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Goose Crk", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973647926664242, 28.90222107160368 ], [ -81.973805975169284, 28.902136190898624 ], [ -81.974029078427719, 28.902020037239886 ], [ -81.974133332541811, 28.90197708183932 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mayo Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973402050538297, 28.898484409882922 ], [ -81.973565297165436, 28.898527680390171 ], [ -81.973787033583804, 28.898547788413179 ], [ -81.973880532371709, 28.898550031756407 ], [ -81.974138303397282, 28.898485592669736 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duncan Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971513572508385, 28.899460773861922 ], [ -81.971732634985514, 28.899456030867889 ], [ -81.971900624760451, 28.899442658954058 ], [ -81.972020232140906, 28.899436527607374 ], [ -81.972105386878965, 28.899425304527966 ], [ -81.972154351673055, 28.899414075679857 ], [ -81.972199062731264, 28.899393478261935 ], [ -81.972228872772931, 28.899367258221361 ], [ -81.972252296872171, 28.899337290505354 ], [ -81.97227120555732, 28.899294911628537 ], [ -81.972397345942952, 28.8987270188798 ], [ -81.972635945996686, 28.897582078064509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harbour Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019863088187407, 28.905122241417274 ], [ -82.019713754820984, 28.905122262706509 ], [ -82.019548495223745, 28.905118980955102 ], [ -82.019319390182815, 28.905119013013834 ], [ -82.019094040188591, 28.905119044167005 ], [ -82.018935168179908, 28.905117412893222 ], [ -82.018816107089975, 28.905112472736217 ], [ -82.018688405943053, 28.905095965270601 ], [ -82.018541927679593, 28.905086069522362 ], [ -82.018369158652618, 28.905086093345346 ], [ -82.018241463149153, 28.905096024596247 ], [ -82.018027382155736, 28.905112577176194 ], [ -82.017865507272319, 28.90512019899975 ], [ -82.017408797783958, 28.905122900549227 ], [ -82.017222508253212, 28.905120279953714 ], [ -82.017105325133429, 28.905117650642801 ], [ -82.016997156573254, 28.905109730859909 ], [ -82.01688926886051, 28.905081492102976 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harbour Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01688926886051, 28.905081492102976 ], [ -82.016819871913185, 28.905059518696092 ], [ -82.016723718725061, 28.905022515271174 ], [ -82.016630192957336, 28.904993773809146 ], [ -82.016540426273721, 28.90497759002335 ], [ -82.016435261939392, 28.904967028405977 ], [ -82.016339112165568, 28.904964394146944 ], [ -82.01620749467655, 28.904969153759847 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clearwater Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01280622075501, 28.906819678480112 ], [ -82.012807049185312, 28.906896425167968 ], [ -82.012807059388436, 28.90699096434366 ], [ -82.012806256117585, 28.907117434113172 ], [ -82.012807089526532, 28.907236077199162 ], [ -82.012807105287479, 28.907368774550221 ], [ -82.01280629224415, 28.907421617703612 ], [ -82.012789260262352, 28.907494450933989 ], [ -82.012760051276118, 28.907541580599684 ], [ -82.012725973016202, 28.907575859268551 ], [ -82.012669983023201, 28.907607996037388 ], [ -82.012560435402875, 28.907629427280987 ], [ -82.012402197848203, 28.907648720662728 ], [ -82.012246392078197, 28.907663728635146 ], [ -82.012107631027078, 28.907678735871997 ], [ -82.012024857137177, 28.907689453207325 ], [ -82.011883660613648, 28.907704460420415 ], [ -82.011809125943998, 28.907723638681421 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anchor Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008662413419685, 28.906818447901323 ], [ -82.008635259138643, 28.906636502017321 ], [ -82.008579138900032, 28.90633754691935 ], [ -82.008568179147645, 28.906271274671909 ], [ -82.008559946926567, 28.906072458267293 ], [ -82.0085585599262, 28.905841109088712 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clearwater Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0085585599262, 28.905841109088712 ], [ -82.008592793896142, 28.905833876039406 ], [ -82.008677691867305, 28.905817000694398 ], [ -82.008764645592493, 28.90579791814956 ], [ -82.008861411973882, 28.905772206663112 ], [ -82.00898921669571, 28.905735246928611 ], [ -82.009062247557353, 28.905707929783802 ], [ -82.009195527244032, 28.905651691004529 ], [ -82.009310550735478, 28.905600271549844 ], [ -82.009403663917851, 28.905558494489973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clearwater Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007649305722879, 28.905908635523307 ], [ -82.007772548670403, 28.905896579710944 ], [ -82.007888942833517, 28.9058845250598 ], [ -82.007994384761261, 28.905876083713281 ], [ -82.008125843443125, 28.905866437164025 ], [ -82.008280580435155, 28.905861607430765 ], [ -82.008440795840386, 28.90585196073242 ], [ -82.0085585599262, 28.905841109088712 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clearwater Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0077767078308, 28.907698316320936 ], [ -82.007613598019375, 28.907696182882621 ], [ -82.007508914963921, 28.907687619184951 ], [ -82.007360410315655, 28.907668349146597 ], [ -82.00719730121638, 28.907644792844916 ], [ -82.00705214313848, 28.90761668429294 ], [ -82.006935286016798, 28.907587770304286 ], [ -82.006865902795482, 28.90756528197776 ], [ -82.00682208016886, 28.907536364462086 ], [ -82.006785561033567, 28.907496202157663 ], [ -82.006763647981273, 28.907452825187644 ], [ -82.006752388904843, 28.907404939844938 ], [ -82.006752382696448, 28.907302839407361 ], [ -82.006749020982141, 28.907128290902762 ], [ -82.006750840385052, 28.907031895608188 ], [ -82.006750833792424, 28.906906579936997 ], [ -82.006751054978636, 28.906783474883426 ], [ -82.006749676222199, 28.906638879866048 ], [ -82.006748297982625, 28.906485851966895 ], [ -82.006749396167834, 28.906383926510617 ], [ -82.00674938856271, 28.906258791287058 ], [ -82.006749385242372, 28.906187285959518 ], [ -82.006755242418961, 28.906136405997611 ], [ -82.006772922827579, 28.906088216145502 ], [ -82.006807152512977, 28.906041222876741 ], [ -82.006850972838748, 28.906009891245677 ], [ -82.006900268216114, 28.905984584891158 ], [ -82.006976952118123, 28.905970122845879 ], [ -82.007090607643036, 28.905959270875613 ], [ -82.007242605458401, 28.905947215057925 ], [ -82.007409668178255, 28.905927927288101 ], [ -82.007558928991344, 28.905914665781825 ], [ -82.007649305722879, 28.905908635523307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeview Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0077767078308, 28.907698316320936 ], [ -82.007759658594281, 28.907591210849795 ], [ -82.007730433004298, 28.907419839845229 ], [ -82.007680847295859, 28.90718522242036 ], [ -82.007657588372396, 28.906991332421367 ], [ -82.007654645954759, 28.906807413545938 ], [ -82.00765345143958, 28.906454478792231 ], [ -82.007649305722879, 28.905908635523307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeview Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007747549523785, 28.908498941268935 ], [ -82.00775340494117, 28.908369871755685 ], [ -82.007776624749951, 28.908017499719087 ], [ -82.007779147053625, 28.907766863768263 ], [ -82.0077767078308, 28.907698316320936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Remington Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025350024800034, 28.92132297523457 ], [ -82.025823237338599, 28.921416051112043 ], [ -82.026780798450815, 28.921601850121373 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thistledown Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024095203847807, 28.921528090210142 ], [ -82.024034110575244, 28.921505132936218 ], [ -82.023970337152605, 28.921485106757615 ], [ -82.023908839492705, 28.92146508015399 ], [ -82.02383455664561, 28.921438410324104 ], [ -82.02375444803792, 28.921409203298658 ], [ -82.023642355107384, 28.921370952587989 ], [ -82.023580857403743, 28.921340905837901 ], [ -82.023539857622296, 28.921314865364906 ], [ -82.023505687836106, 28.921282810815239 ], [ -82.023485181538973, 28.921240737543378 ], [ -82.023473783152269, 28.921188640917151 ], [ -82.023475002602126, 28.921114635299116 ], [ -82.023477724867064, 28.921056193127253 ], [ -82.023483177521086, 28.920976091777735 ], [ -82.023494295266005, 28.920890834645149 ], [ -82.023505413032225, 28.920810389455056 ], [ -82.023510862380263, 28.920715507591432 ], [ -82.023513580884995, 28.920640218647396 ], [ -82.023508096540226, 28.920576965022942 ], [ -82.023494214463, 28.920520932099006 ], [ -82.023478178674182, 28.920469305451324 ], [ -82.023457672688323, 28.920423223268507 ], [ -82.023428051838863, 28.920369128437379 ], [ -82.023315774225566, 28.920217409237221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maywood Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020184864841127, 28.922677105155792 ], [ -82.020196157857796, 28.922619416129457 ], [ -82.020228979061756, 28.922465843297633 ], [ -82.020235811698996, 28.922440060098253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maywood Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020235811698996, 28.922440060098253 ], [ -82.02024381680998, 28.92241014782126 ], [ -82.020294771975259, 28.922207314180753 ], [ -82.02032736887567, 28.922056736068971 ], [ -82.020347661925612, 28.921917159644678 ], [ -82.020350581675061, 28.921863186582133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maywood Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020350581675061, 28.921863186582133 ], [ -82.020356208813695, 28.921567167729734 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tatonka Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023541450827494, 28.927298542453808 ], [ -82.023546618757464, 28.927094148265258 ], [ -82.023558220710981, 28.926965118978512 ], [ -82.023588984444046, 28.926882745897462 ], [ -82.023651784618238, 28.926764297161277 ], [ -82.023770146880636, 28.926619611805332 ], [ -82.023899659351329, 28.92644764531768 ], [ -82.023951892142051, 28.926334468574304 ], [ -82.023984013609322, 28.926171786371441 ], [ -82.023992012641614, 28.925991424275271 ], [ -82.024005084444141, 28.925439728865957 ], [ -82.024007358923768, 28.924209429694816 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Village Campus Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024227333940047, 28.924209391187251 ], [ -82.024525150687225, 28.924209339382834 ], [ -82.025179740419574, 28.924212866494372 ], [ -82.025728435724744, 28.92421807139559 ], [ -82.026268086715703, 28.924220620333237 ], [ -82.026391694961575, 28.924225901259113 ], [ -82.026467069653378, 28.924244454206452 ], [ -82.026537548001485, 28.924274610674125 ], [ -82.026603130551578, 28.924314382010358 ], [ -82.026668712651855, 28.924352167362102 ], [ -82.026716204799342, 28.924387963930382 ], [ -82.026750128836952, 28.924421775365971 ], [ -82.026781799515717, 28.924483435678237 ], [ -82.026799914167299, 28.924586874904342 ], [ -82.02679320229565, 28.92486537329766 ], [ -82.026786497409219, 28.925175699243777 ], [ -82.026772983996111, 28.925382586465542 ], [ -82.026743628715437, 28.925539743149173 ], [ -82.02673689302091, 28.925728724792375 ], [ -82.026739246359824, 28.926092758959683 ], [ -82.026734828301542, 28.926508516690483 ], [ -82.026743910892009, 28.926657709426852 ], [ -82.026786941982522, 28.926934207581926 ], [ -82.026807329659889, 28.927077432125014 ], [ -82.026820929334093, 28.927210708379256 ], [ -82.026820953506771, 28.927306194651692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Village Campus Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020328198347855, 28.924182965146148 ], [ -82.020911345825624, 28.924186700335088 ], [ -82.021824601254025, 28.924191934087833 ], [ -82.023052459859713, 28.92419442239331 ], [ -82.02337316684654, 28.924194368406621 ], [ -82.024007358923768, 28.924209429694816 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rose Croft Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021549911591194, 28.924084930674329 ], [ -82.021549626324699, 28.92401332093236 ], [ -82.021542566192565, 28.923806014205642 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rose Croft Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021542566192565, 28.923806014205642 ], [ -82.02154073115689, 28.923733880468561 ], [ -82.021542509373958, 28.923525492307004 ], [ -82.021544011310652, 28.923299986730736 ], [ -82.021540252177374, 28.923070345843634 ], [ -82.021536917419311, 28.922900333998619 ], [ -82.021542362299627, 28.922799345503542 ], [ -82.021560561675997, 28.922695149160301 ], [ -82.021591516711823, 28.922603776052533 ], [ -82.021627938032324, 28.92251239937405 ], [ -82.021668005829227, 28.922429039010915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canterbury Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0208647051833, 28.923796360770254 ], [ -82.020871981088078, 28.923604675986706 ], [ -82.020869943946352, 28.923179424340162 ], [ -82.020871837347698, 28.922871746624491 ], [ -82.020884701053461, 28.922708794579531 ], [ -82.020912412218394, 28.922557185752297 ], [ -82.020949510428593, 28.922436859894614 ], [ -82.020992081493176, 28.922329249249 ], [ -82.021040123502971, 28.92222989195831 ], [ -82.021082700175967, 28.922156661458789 ], [ -82.021170530719502, 28.922070049291563 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hastings Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020556106267307, 28.92380566724151 ], [ -82.0208647051833, 28.923796360770254 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hastings Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0208647051833, 28.923796360770254 ], [ -82.021542566192565, 28.923806014205642 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenhill Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016403203350293, 28.922745633001767 ], [ -82.016454019782486, 28.922744799603787 ], [ -82.016650371598814, 28.922745120945105 ], [ -82.017088791227152, 28.922756411470392 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenhill Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014606761550681, 28.922740879829384 ], [ -82.014652088215286, 28.922741218864424 ], [ -82.015404862451689, 28.922742513017038 ], [ -82.016110748124646, 28.922743807486057 ], [ -82.016403203350293, 28.922745633001767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenhill Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014296702365257, 28.922739881420355 ], [ -82.014606761550681, 28.922740879829384 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Calvert Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016101305131201, 28.923606685766874 ], [ -82.016114189580676, 28.923538273117821 ], [ -82.016128635560648, 28.923460234595144 ], [ -82.01615284977953, 28.923379100063904 ], [ -82.01616261471743, 28.923354004282203 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Calvert Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01616261471743, 28.923354004282203 ], [ -82.016194839278143, 28.923269774840893 ], [ -82.016225502165383, 28.923201360110919 ], [ -82.016261050347467, 28.923136038775596 ], [ -82.016301482112013, 28.923069341760318 ], [ -82.016332149755115, 28.923019491739851 ], [ -82.016364376572781, 28.922958295159145 ], [ -82.016390352712605, 28.922905693673435 ], [ -82.016401948095279, 28.922853053272878 ], [ -82.016403203350293, 28.922745633001767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Calhoun Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014606884038187, 28.923640883792324 ], [ -82.014606841929492, 28.92333148567575 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Calhoun Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014606841929492, 28.92333148567575 ], [ -82.014606827004499, 28.923221821548626 ], [ -82.014606761550681, 28.922740879829384 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015942430414711, 28.927246842826733 ], [ -82.015940276599409, 28.92717795914708 ], [ -82.015946648014278, 28.927069331994264 ], [ -82.015967916878594, 28.926941975092411 ], [ -82.015993446032184, 28.926827728948993 ], [ -82.016040263662561, 28.926711605380326 ], [ -82.016121136661511, 28.926559894036348 ], [ -82.016148793429309, 28.926443773543838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016148793429309, 28.926443773543838 ], [ -82.016021075727281, 28.926522447688797 ], [ -82.015941822217826, 28.926578747373881 ], [ -82.015897378116634, 28.926662305899661 ], [ -82.015863038365069, 28.926745865064966 ], [ -82.015830720899459, 28.92684897853465 ], [ -82.015800429309479, 28.926975204059172 ], [ -82.015789587583939, 28.927108315495271 ], [ -82.015791514067274, 28.927242896223415 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016148793429309, 28.926443773543838 ], [ -82.016191421267081, 28.926383191192951 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016567664919123, 28.925078183214069 ], [ -82.016567605359555, 28.925077702297642 ], [ -82.016565546404166, 28.92506080074287 ], [ -82.016557128701109, 28.924951138549691 ], [ -82.016529360207954, 28.924617503627839 ], [ -82.016530732138619, 28.924409681328672 ], [ -82.016536116987695, 28.924253417523968 ], [ -82.016542890537323, 28.924004701630121 ], [ -82.016553072363919, 28.923770967039481 ], [ -82.016563370356835, 28.923665143672299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016637006372065, 28.923398886371942 ], [ -82.016651867092605, 28.923365596198341 ], [ -82.016678082833067, 28.92331079393238 ], [ -82.016728794689826, 28.923249429029312 ], [ -82.016786222268664, 28.923170009260851 ], [ -82.016876469115061, 28.923062053996368 ], [ -82.016966198251708, 28.922956598994791 ], [ -82.016967390783506, 28.922955197584013 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017101416793167, 28.922715608101615 ], [ -82.017130385752409, 28.922621990442078 ], [ -82.017165273156252, 28.922470124335693 ], [ -82.017186612580915, 28.922369307281002 ], [ -82.01719109502254, 28.922303302881097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017088791227152, 28.922756411470392 ], [ -82.017101416793167, 28.922715608101615 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013557949048717, 28.917409914071783 ], [ -82.013419130854416, 28.917208799167572 ], [ -82.013312679767253, 28.917057107960638 ], [ -82.013223262089468, 28.916948488903461 ], [ -82.013187072082232, 28.916912910232302 ], [ -82.013138108280287, 28.916869839170886 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000404065973086, 28.917847464961866 ], [ -82.000422494816419, 28.9178466177251 ], [ -82.000582956991067, 28.91782897067214 ], [ -82.000669875047322, 28.917819167174365 ], [ -82.000743421143241, 28.917805440453325 ], [ -82.000854853411766, 28.917772105803845 ], [ -82.000997488301849, 28.917709358797314 ], [ -82.001160177196752, 28.917632885813241 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Westover Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012615080316564, 28.92239798493074 ], [ -82.012783492415778, 28.922396250861535 ], [ -82.012958156229075, 28.922392797132009 ], [ -82.013130667277039, 28.922380404331218 ], [ -82.013281102245983, 28.922364234583156 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Westover Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013281102245983, 28.922364234583156 ], [ -82.013331314941638, 28.922359072302708 ], [ -82.013640390444039, 28.922327415333232 ], [ -82.013941064717926, 28.922299539110274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wakefield Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013872071926457, 28.919071837713695 ], [ -82.014197346014967, 28.918968329809651 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wakefield Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013241258663143, 28.919271977416869 ], [ -82.013277203698422, 28.919260285679108 ], [ -82.013872071926457, 28.919071837713695 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wakefield Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012894494358008, 28.919384081158363 ], [ -82.012960916639173, 28.919363103884308 ], [ -82.013241258663143, 28.919271977416869 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clifton Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01229530014912, 28.918053563278939 ], [ -82.012399598779567, 28.918014224847187 ], [ -82.012498710892544, 28.917972229531209 ], [ -82.012589211162222, 28.91793602946019 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clifton Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012589211162222, 28.91793602946019 ], [ -82.012639171015223, 28.917908961505216 ], [ -82.012737239613642, 28.917855323774599 ], [ -82.012849956462091, 28.917789997188876 ], [ -82.012971853645325, 28.917715385933192 ], [ -82.013081056115468, 28.917653496324732 ], [ -82.013151967467749, 28.917610861613177 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clifton Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013151967467749, 28.917610861613177 ], [ -82.013191818724948, 28.917586791826515 ], [ -82.013317622873032, 28.917505306194496 ], [ -82.013473534900967, 28.917420228224692 ], [ -82.013557949048717, 28.917409914071783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Smithfield Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016016720442778, 28.917380502909801 ], [ -82.016043765514979, 28.917283438858611 ], [ -82.016056527895742, 28.917219758711756 ], [ -82.016071418791853, 28.917159824653424 ], [ -82.016081572691476, 28.917106236088678 ], [ -82.016099072747764, 28.917034340881752 ], [ -82.016113005103833, 28.916970096656922 ], [ -82.016121594999831, 28.91692987308592 ], [ -82.016130183221833, 28.916871774115808 ], [ -82.01613817458626, 28.91675248506461 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hartford Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015030678036879, 28.918352956071708 ], [ -82.015105146296946, 28.918103858281281 ], [ -82.015156211387207, 28.917940911543607 ], [ -82.015192381159423, 28.917819172479835 ], [ -82.015226416750764, 28.917654356195492 ], [ -82.015264706278231, 28.917468938199139 ], [ -82.015277465421121, 28.917379040095753 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Durham Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001042109935511, 28.915320871379716 ], [ -82.001145045100785, 28.915278049760701 ], [ -82.00121513323954, 28.915246220910941 ], [ -82.001312353235448, 28.91521837100662 ], [ -82.001461572636856, 28.915196487586023 ], [ -82.0016492280009, 28.915174605500468 ], [ -82.001778100360553, 28.915166646140069 ], [ -82.001992885673587, 28.915162665804569 ], [ -82.002605590464597, 28.915160668344743 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ardmore Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000725425678695, 28.914697905458492 ], [ -82.000825476710162, 28.914670695629216 ], [ -82.000927345864866, 28.914635483247284 ], [ -82.001034674791342, 28.914611473690762 ], [ -82.001256021947967, 28.914576250665217 ], [ -82.001485817119033, 28.914549048640197 ], [ -82.001705735655264, 28.914528806627438 ], [ -82.001968102918894, 28.914525022622549 ], [ -82.002605753364463, 28.914521920493851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Saluda Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014753659263604, 28.912629045411201 ], [ -82.015047082306353, 28.912626608665093 ], [ -82.016447970712562, 28.912621637938855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cherokee Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01474731908678, 28.911982403916713 ], [ -82.016457250436474, 28.911982212176877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Richardson Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014749140861738, 28.911329437298377 ], [ -82.015195173126656, 28.911329869632709 ], [ -82.015614789222099, 28.911329823420719 ], [ -82.015810532950951, 28.911329801416471 ], [ -82.016219750561788, 28.911328307210869 ], [ -82.016447898210572, 28.911308931647035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Richardson Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014024427407563, 28.911332741856722 ], [ -82.01461458493084, 28.911329931416738 ], [ -82.014749140861738, 28.911329437298377 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Richardson Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013314515138688, 28.911332810891551 ], [ -82.013955074881608, 28.911332748765759 ], [ -82.014024427407563, 28.911332741856722 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Richardson Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012591904879571, 28.911318781628054 ], [ -82.012708727402867, 28.911327366437018 ], [ -82.01320394590266, 28.911332821306992 ], [ -82.013314515138688, 28.911332810891551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Livingston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016457250436474, 28.911982212176877 ], [ -82.016457445573039, 28.911990807437764 ], [ -82.016454362325575, 28.912259984729737 ], [ -82.016451268684818, 28.912468312892749 ], [ -82.01644796403464, 28.912584853989781 ], [ -82.016447970712562, 28.912621637938855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Livingston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012591904879571, 28.911318781628054 ], [ -82.012591902311343, 28.911296780910007 ], [ -82.012591887164461, 28.911158239455222 ], [ -82.012591869284421, 28.911013852914834 ], [ -82.012591852492463, 28.910861216665278 ], [ -82.012594569141413, 28.910722330280095 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kingstree Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013287213420696, 28.910139221859655 ], [ -82.015712685499906, 28.910153409656591 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kingstree Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015712685499906, 28.910153409656591 ], [ -82.016005906368704, 28.910155439033517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chester Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015644822569755, 28.910974355488857 ], [ -82.015665298674023, 28.910733021112197 ], [ -82.015666078469735, 28.910722021116484 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chester Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015666078469735, 28.910722021116484 ], [ -82.015712685499906, 28.910153409656591 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Livingston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012592031355851, 28.912393426792796 ], [ -82.012592019976111, 28.912304731872339 ], [ -82.012592005408166, 28.912179941449356 ], [ -82.012591985043315, 28.911996708323841 ], [ -82.012591959056124, 28.911782880094808 ], [ -82.012591941558924, 28.91163299316289 ], [ -82.012591924084177, 28.911474512747123 ], [ -82.012591904879571, 28.911318781628054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clearwater Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009352214664759, 28.907686440712197 ], [ -82.009258080657474, 28.907672167042783 ], [ -82.009131486091704, 28.907652180217045 ], [ -82.009008138651822, 28.907626483327476 ], [ -82.008901020011209, 28.907603640193866 ], [ -82.008813377131574, 28.90758936400751 ], [ -82.008748458327219, 28.907580799738632 ], [ -82.008651077853969, 28.907577950738506 ], [ -82.008560191675983, 28.907577955251877 ], [ -82.008453076485722, 28.907597954674763 ], [ -82.00838166640888, 28.907612240402717 ], [ -82.008297274972321, 28.907635094156671 ], [ -82.008207605404351, 28.907655449693618 ], [ -82.008098055476395, 28.907672593198956 ], [ -82.008000677972959, 28.907683307974263 ], [ -82.007883823353524, 28.907694025541424 ], [ -82.0077767078308, 28.907698316320936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 115", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004388405877236, 28.906549985363252 ], [ -82.004419493021246, 28.907787067666355 ], [ -82.004395774315483, 28.908259409609133 ], [ -82.004364751144365, 28.908704437358551 ], [ -82.004356522953245, 28.908974470081539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 115A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005869158345263, 28.906564394701196 ], [ -82.005060482831212, 28.90690412574034 ], [ -82.005045231747928, 28.908981606921394 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rainey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998832613836967, 28.913410157248638 ], [ -81.998854943180774, 28.913323180517278 ], [ -81.998874933753854, 28.913278231866723 ], [ -81.998930462926737, 28.913217651243183 ], [ -81.999028191197866, 28.913139479771345 ], [ -81.999110373806843, 28.913071080889026 ], [ -81.999145892296795, 28.913016298178732 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rainey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999145892296795, 28.913016298178732 ], [ -81.999077057244733, 28.913026130874332 ], [ -81.998987545692827, 28.913078309975074 ], [ -81.998884485147784, 28.913139282677321 ], [ -81.99883295582049, 28.913172114069493 ], [ -81.998765433979059, 28.913201817913261 ], [ -81.998721011513965, 28.913217451548736 ], [ -81.998655308228692, 28.913221939754909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brantley Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000113108753553, 28.911869633919501 ], [ -82.000064331365024, 28.911757157844896 ], [ -81.999938147798943, 28.911492581286637 ], [ -81.999679308528755, 28.910952851419545 ], [ -81.999405234951055, 28.910372898298611 ], [ -81.999267320249629, 28.910104408823873 ], [ -81.999194455328862, 28.909998181701095 ], [ -81.999129209486313, 28.909910519373508 ], [ -81.999074312523589, 28.909834603210587 ], [ -81.99905637274756, 28.909787244158434 ], [ -81.999042916490566, 28.909724098538476 ], [ -81.999046776409926, 28.909637216312955 ], [ -81.999090015478899, 28.909416268285508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Miona Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994259946300687, 28.908900809086322 ], [ -81.99421008069217, 28.9089542797708 ], [ -81.994177840268932, 28.909011009419217 ], [ -81.99415365740937, 28.909057104034222 ], [ -81.994117389912006, 28.909097876349179 ], [ -81.994075074168791, 28.909140424102855 ], [ -81.994006567877335, 28.909174107375208 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palmer Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992805439091484, 28.909910378938527 ], [ -81.993196309106267, 28.910117825364466 ], [ -81.993209508428549, 28.910123742413507 ], [ -81.9932648101816, 28.910143405425337 ], [ -81.993322686334068, 28.910156105513593 ], [ -81.993382006833812, 28.910161595388491 ], [ -81.993441617006923, 28.910159766714692 ], [ -81.993500359093062, 28.910150655526433 ], [ -81.993557088654171, 28.910134441325859 ], [ -81.993610700212869, 28.910111436256702 ], [ -81.993660152889632, 28.910082089616544 ], [ -81.993704482710001, 28.910046973420432 ], [ -81.993742824140455, 28.910006770671433 ], [ -81.993754435333528, 28.909991979857594 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winifred Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999283632252585, 28.91768204571175 ], [ -81.999204536372929, 28.917724061517237 ], [ -81.999158178898554, 28.917741315796874 ], [ -81.999118955188237, 28.917746022777969 ], [ -81.999019376619131, 28.917753779007491 ], [ -81.998873119825404, 28.917756841875875 ], [ -81.998791214377533, 28.917758478729482 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winifred Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99879332018449, 28.917866959180738 ], [ -81.998914905754404, 28.917867138123203 ], [ -81.999019375201556, 28.917861012463241 ], [ -81.999117170394683, 28.917858966855899 ], [ -81.999186705802501, 28.917865241954154 ], [ -81.999238408039176, 28.91788249784522 ], [ -81.999288608867772, 28.91790342244505 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sherwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998692234065615, 28.920438652171367 ], [ -81.998682075019403, 28.920428338811579 ], [ -81.998612328766157, 28.920359582134108 ], [ -81.998529689332969, 28.920286701768532 ], [ -81.998460139156336, 28.920217945915518 ], [ -81.998364214273494, 28.920122030551905 ], [ -81.998294664315281, 28.920053274611814 ], [ -81.998207530486539, 28.919972829129232 ], [ -81.998197763260009, 28.919964235514971 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sherwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999195891216914, 28.920916504796001 ], [ -81.99913474154792, 28.920853593531625 ], [ -81.999030415055373, 28.920758023263389 ], [ -81.998952071104497, 28.920685141392937 ], [ -81.998851848231126, 28.920589227246314 ], [ -81.998747327404189, 28.920493657655566 ], [ -81.998692234065615, 28.920438652171367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sherwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999692912392348, 28.92139538680545 ], [ -81.999641798253364, 28.921349669066384 ], [ -81.99957675810785, 28.921282579457184 ], [ -81.999483085321401, 28.921198403789749 ], [ -81.99937426424043, 28.921091144520965 ], [ -81.999274039564838, 28.920995229791799 ], [ -81.999213084640871, 28.920934038341787 ], [ -81.999195891216914, 28.920916504796001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sherwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000123510144149, 28.921907958126422 ], [ -82.000105536017372, 28.921880112305519 ], [ -82.000018595525077, 28.921757727240362 ], [ -81.999927162990403, 28.921650468389682 ], [ -81.99981833897607, 28.921535303567065 ], [ -81.999713816446118, 28.921420481541908 ], [ -81.999692912392348, 28.92139538680545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sherwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000489833259039, 28.922468312666975 ], [ -82.000484361785738, 28.922458343194744 ], [ -82.000384330924106, 28.922286111020963 ], [ -82.000314583543485, 28.922175071647128 ], [ -82.000249330360219, 28.922079159240408 ], [ -82.000175282986703, 28.921987370269861 ], [ -82.000123510144149, 28.921907958126422 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kingston Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999986366568521, 28.919771048347911 ], [ -81.999883603368602, 28.919666195901236 ], [ -81.999796470734537, 28.919578189294871 ], [ -81.999692143937949, 28.919474712697003 ], [ -81.999561443518957, 28.919336857499509 ], [ -81.999523152859993, 28.919296292774892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kingston Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000461699306484, 28.920260929675845 ], [ -82.000392928497817, 28.920191143300077 ], [ -82.000288406932341, 28.92008388445192 ], [ -82.0001752883812, 28.919964938953097 ], [ -82.000018602677869, 28.919804050841392 ], [ -81.999986366568521, 28.919771048347911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kingston Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000936448866753, 28.920758372367423 ], [ -82.000871779661637, 28.920688930005497 ], [ -82.000771750087296, 28.920581671531288 ], [ -82.000662927560441, 28.920470631464053 ], [ -82.000532226990998, 28.92033277866545 ], [ -82.000461699306484, 28.920260929675845 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kingston Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001380724531941, 28.921300160491185 ], [ -82.001342040638761, 28.921244469194246 ], [ -82.001228724589268, 28.921102490786367 ], [ -82.001115604733172, 28.920960855151463 ], [ -82.000989392824764, 28.920815439741894 ], [ -82.000936448866753, 28.920758372367423 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buxton Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995487032147295, 28.919633456067611 ], [ -81.995879336177595, 28.919517273209056 ], [ -81.996322694532125, 28.919370790655258 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Scarboro Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99757452465029, 28.920355097935186 ], [ -81.997590545124211, 28.920348223647174 ], [ -81.997691750048602, 28.920288751585293 ], [ -81.997827350649629, 28.92020625705511 ], [ -81.998041004386536, 28.920072912925882 ], [ -81.998197763260009, 28.919964235514971 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Scarboro Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998197763260009, 28.919964235514971 ], [ -81.998387962262413, 28.919847994415885 ], [ -81.998541353064994, 28.919766059721724 ], [ -81.998714831317898, 28.919674484935094 ], [ -81.998831154649196, 28.919617717258312 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Scarboro Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998831154649196, 28.919617717258312 ], [ -81.998838186917922, 28.919614623353503 ], [ -81.99900587617644, 28.919542720000678 ], [ -81.999147175520463, 28.919485003950172 ], [ -81.999280063115592, 28.919428764754791 ], [ -81.999401178248959, 28.919374008736291 ], [ -81.999523152859993, 28.919296292774892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Davidson Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999195891216914, 28.920916504796001 ], [ -81.999336950542371, 28.920832967542854 ], [ -81.999478985846707, 28.920764558046361 ], [ -81.999651498732106, 28.920689959670142 ], [ -81.999820689551655, 28.920618798812519 ], [ -81.999994960793032, 28.920544199999139 ], [ -82.000132110189512, 28.920475787474142 ], [ -82.000260663176036, 28.920396720484955 ], [ -82.000461699306484, 28.920260929675845 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walden Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000123510144149, 28.921907958126422 ], [ -82.000331775518191, 28.921815139416271 ], [ -82.000572082480261, 28.921731287401734 ], [ -82.000802708629678, 28.921631823447253 ], [ -82.00105594588355, 28.92149655319291 ], [ -82.001291092463518, 28.921359292997991 ], [ -82.001380724531941, 28.921300160491185 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002390851323142, 28.925601486411448 ], [ -82.002444679144261, 28.925586357772875 ], [ -82.002502353990138, 28.925570148106647 ], [ -82.002570584211369, 28.925545257270578 ], [ -82.002635486329439, 28.925521832682097 ], [ -82.002697059194801, 28.925494013935698 ], [ -82.002750310205315, 28.925464731774113 ], [ -82.002820202436453, 28.925423736610828 ], [ -82.002890096279842, 28.925366638139977 ], [ -82.003029881907167, 28.925261222230098 ], [ -82.003151866553239, 28.925183825508558 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003087642122352, 28.925105640106732 ], [ -82.003067240308809, 28.925127171071018 ], [ -82.002987134338952, 28.925208491047144 ], [ -82.002845162042206, 28.925309539839656 ], [ -82.002765220198881, 28.925360695934422 ], [ -82.002707041298336, 28.925394457177308 ], [ -82.002648796593235, 28.925422274974306 ], [ -82.002605528571337, 28.925438380719573 ], [ -82.002537299543832, 28.925467663046668 ], [ -82.002467404715034, 28.925488160612257 ], [ -82.002394183892278, 28.925513050562657 ], [ -82.002378824438438, 28.925516696949742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harley Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979954676528934, 28.915525274223175 ], [ -81.9803059511745, 28.915443507107444 ], [ -81.980632997925241, 28.915365175117721 ], [ -81.980876038527072, 28.915308143480985 ], [ -81.981049132704968, 28.915274134427783 ], [ -81.981188623017431, 28.915261434479731 ], [ -81.981347451088126, 28.915261456772292 ], [ -81.981573854361557, 28.915283273284665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ternberry Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976884430423794, 28.918104952832905 ], [ -81.977067009173965, 28.91805439431495 ], [ -81.977245312281894, 28.91805012714908 ], [ -81.977344556285502, 28.918042745175871 ], [ -81.977453894972953, 28.918033883261774 ], [ -81.977569961874096, 28.918026503056982 ], [ -81.97771630668224, 28.918014687602593 ], [ -81.977840785325185, 28.918005828800261 ], [ -81.977980399224876, 28.917999933715276 ], [ -81.978076281494353, 28.917996988143511 ], [ -81.97816206584541, 28.918005881692128 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ternberry Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97816206584541, 28.918005881692128 ], [ -81.978199071123925, 28.918011808605463 ], [ -81.978288216358919, 28.918029581220814 ], [ -81.978402592594264, 28.918063639800589 ], [ -81.978540515876588, 28.918109541101266 ], [ -81.978686848088799, 28.918158401330583 ], [ -81.978855048135074, 28.91821170777234 ], [ -81.978989608342431, 28.918256127411226 ], [ -81.979105663684436, 28.918296104722803 ], [ -81.979208263589896, 28.918333118502829 ], [ -81.979312549427931, 28.91836569497109 ], [ -81.979403378498986, 28.918386428445821 ], [ -81.979500937961745, 28.918398282489598 ], [ -81.979601864899394, 28.918396819079579 ], [ -81.979697746609091, 28.918387953288093 ], [ -81.979783534630201, 28.918380566569262 ], [ -81.979846472022885, 28.918375848049024 ], [ -81.979894555353468, 28.918371703831074 ], [ -81.979938292492136, 28.918367269305797 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ternberry Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979938292492136, 28.918367269305797 ], [ -81.980035854431648, 28.91836136576568 ], [ -81.98012077071489, 28.91835388666734 ], [ -81.980225935977757, 28.918348072546408 ], [ -81.980355457676197, 28.918337733303016 ], [ -81.980488260193766, 28.918321282257459 ], [ -81.980600210788694, 28.918302496517619 ], [ -81.980716845058723, 28.918266994512194 ], [ -81.980824789865835, 28.918214965594991 ], [ -81.980914232242242, 28.918160466164977 ], [ -81.981019937828933, 28.918087716430421 ], [ -81.981082464197343, 28.918036173492251 ], [ -81.981145274662126, 28.917973038759747 ], [ -81.981194626142312, 28.917919766008428 ], [ -81.981250428780285, 28.917846516394707 ], [ -81.981304272329112, 28.917757726226952 ], [ -81.981376624894452, 28.91763933877802 ], [ -81.98141532370957, 28.917575705187438 ], [ -81.981462436580742, 28.917497275088284 ], [ -81.981494407486025, 28.917441041176399 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ternberry Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982615312298137, 28.913722057382287 ], [ -81.982632802432505, 28.913672010136032 ], [ -81.982662432302433, 28.913579986891296 ], [ -81.982687679137271, 28.913494152829074 ], [ -81.982709557234401, 28.913420157366701 ], [ -81.982729754243536, 28.913341722379652 ], [ -81.982751635053035, 28.913257367633967 ], [ -81.982775201151952, 28.913158213621003 ], [ -81.982801309992027, 28.913025046930787 ], [ -81.982815197336492, 28.912932571365975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ternberry Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982815197336492, 28.912932571365975 ], [ -81.982826147270004, 28.912860723742043 ], [ -81.982842550863978, 28.912745313902018 ], [ -81.982856024150024, 28.912638758827708 ], [ -81.982869496449069, 28.91254404279417 ], [ -81.982884746377053, 28.912428033669837 ], [ -81.982901494025711, 28.912308734055156 ], [ -81.982921703081558, 28.912162219784395 ], [ -81.982938636531486, 28.912041277100446 ], [ -81.982960428301695, 28.911922472575721 ], [ -81.982988467573279, 28.911807758956918 ], [ -81.983017650593951, 28.911715284402341 ], [ -81.983063128025819, 28.911593941097248 ], [ -81.983100102202584, 28.911515500042139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ternberry Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983100102202584, 28.911515500042139 ], [ -81.983132070056385, 28.91144890641165 ], [ -81.983156734259921, 28.911402124499897 ], [ -81.983189275722268, 28.911345317246287 ], [ -81.983239748783916, 28.911268364837348 ], [ -81.983306215273089, 28.911177313305558 ], [ -81.983359193686738, 28.911117425415274 ], [ -81.983409661159214, 28.911067112373111 ], [ -81.983474634596575, 28.911018510964386 ], [ -81.983549282083004, 28.910970932118879 ], [ -81.983626659650895, 28.91093394293161 ], [ -81.983719174181857, 28.910902874621552 ], [ -81.983801594357388, 28.910882165202633 ], [ -81.983894107622518, 28.910858496514717 ], [ -81.983979890701676, 28.910834827856654 ], [ -81.984072837798522, 28.910810254995663 ], [ -81.984171647289728, 28.910780091228499 ], [ -81.984249020616687, 28.910754941631449 ], [ -81.984321352369946, 28.910725351190099 ], [ -81.984400411474326, 28.910686881084157 ], [ -81.984504704905589, 28.910623255103413 ], [ -81.984602474255965, 28.910552483894548 ], [ -81.984679845558119, 28.910484425283386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Scott Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980607826912617, 28.913619909595973 ], [ -81.980606389746271, 28.913513938186355 ], [ -81.980608764349967, 28.913353737458895 ], [ -81.980615820463953, 28.91323066784275 ], [ -81.980632449509784, 28.913107597808398 ], [ -81.980648307725929, 28.913025959345845 ], [ -81.980668034360463, 28.912953592545549 ], [ -81.980722566066703, 28.912799244426921 ], [ -81.980749287126116, 28.912712222606139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Scott Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980749287126116, 28.912712222606139 ], [ -81.980774760048988, 28.912620145027077 ], [ -81.98079417954132, 28.912516874474587 ], [ -81.980807813419545, 28.912418009004217 ], [ -81.980822110092134, 28.912224122686155 ], [ -81.980812231286095, 28.91192489236844 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinckney Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97965673673778, 28.913635493328922 ], [ -81.979656751603827, 28.913555393699671 ], [ -81.979661469075509, 28.913409633712813 ], [ -81.979668527743272, 28.913284498789984 ], [ -81.979678122370117, 28.913170023990375 ], [ -81.979701787148031, 28.913032517481724 ], [ -81.979737371503433, 28.912882635060232 ], [ -81.979787021799496, 28.912730351035282 ], [ -81.979843904670957, 28.912567754821321 ], [ -81.979879481283135, 28.91244503059945 ], [ -81.979899386185551, 28.912323361500729 ], [ -81.979910616460913, 28.912238511142739 ], [ -81.979908391000663, 28.912155634790548 ], [ -81.979898504797731, 28.912069630823947 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Russell Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980607826912617, 28.913619909595973 ], [ -81.980526076440128, 28.913625653451 ], [ -81.980404172486658, 28.913632511120252 ], [ -81.980273660847573, 28.91363762056039 ], [ -81.980170495277903, 28.913641551928261 ], [ -81.980031447368034, 28.913641531208402 ], [ -81.979899128118603, 28.913639538936149 ], [ -81.979776489813815, 28.913636199968135 ], [ -81.97965673673778, 28.913635493328922 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Russell Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97965673673778, 28.913635493328922 ], [ -81.979548703500498, 28.913632383756124 ], [ -81.979416838515547, 28.913630644625158 ], [ -81.979322873100244, 28.913627192360646 ], [ -81.979256840453047, 28.91362718122102 ], [ -81.97919492200667, 28.913627590258002 ], [ -81.979109698647974, 28.913625602732093 ], [ -81.979026719697401, 28.91362558973092 ], [ -81.978961681564854, 28.913621633759266 ], [ -81.978903249640112, 28.913607874437954 ], [ -81.97885179541683, 28.913588070804533 ], [ -81.978800218943363, 28.913554517024618 ], [ -81.978759862414435, 28.913501231768453 ], [ -81.978745238690223, 28.913447650130795 ], [ -81.978743302927711, 28.913361704205649 ], [ -81.978749374121222, 28.913286074615399 ], [ -81.978755254874812, 28.913189131829835 ], [ -81.978765438068706, 28.913069843431817 ], [ -81.97878343155142, 28.912969463911342 ], [ -81.9788033770227, 28.912881459704309 ], [ -81.978829379880395, 28.912774205939584 ], [ -81.97885538324789, 28.912674172351512 ], [ -81.978885293061424, 28.912572074917954 ], [ -81.978921455543244, 28.912468259586259 ], [ -81.978969343164906, 28.912345195574552 ], [ -81.979007257392084, 28.912269570969631 ], [ -81.979044947102793, 28.912228512429298 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Folsum Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969541917471048, 28.893119056065757 ], [ -81.969698172257523, 28.893119091484635 ], [ -81.970041347345926, 28.893119168637501 ], [ -81.970336092463143, 28.893141398299608 ], [ -81.970529575350795, 28.893178628378479 ], [ -81.970674126477874, 28.89322562841042 ], [ -81.97077864374215, 28.893262844947806 ], [ -81.970872047194732, 28.893284395062324 ], [ -81.971009298312964, 28.893291956325768 ], [ -81.971330794906009, 28.893296495496536 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rockville Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973641802659259, 28.893346724807326 ], [ -81.973947894133502, 28.893222774411672 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Watts Mill Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976778721913931, 28.892057203491717 ], [ -81.976773515319778, 28.891762929135531 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Watts Mill Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976773515319778, 28.891762929135531 ], [ -81.976772960216337, 28.891624043391836 ], [ -81.976773059797168, 28.891182977424631 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Guerard Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977333092484997, 28.889383734110435 ], [ -81.977341131374246, 28.889128497225556 ], [ -81.977351815805406, 28.888936484073522 ], [ -81.977343909642869, 28.888784884516649 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Guerard Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977343909642869, 28.888784884516649 ], [ -81.977191705199118, 28.88816399916583 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Natalie Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962992521910763, 28.899019712934962 ], [ -81.963144622099421, 28.89864675790443 ], [ -81.963229704444458, 28.898427456699007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Natalie Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963229704444458, 28.898427456699007 ], [ -81.96325048531169, 28.898366305460108 ], [ -81.963272163383948, 28.898319452295659 ], [ -81.963297886416669, 28.898289957763406 ], [ -81.963348005686072, 28.898242429325293 ], [ -81.963420222018229, 28.89820670987206 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paxville Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960705457316422, 28.899341717411058 ], [ -81.960846904933291, 28.899320250663813 ], [ -81.960976807166176, 28.899303788169682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paxville Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960976807166176, 28.899303788169682 ], [ -81.961099088538631, 28.899288353766138 ], [ -81.96196426479419, 28.899130121156116 ], [ -81.962802084824645, 28.898995595940598 ], [ -81.962992521910763, 28.899019712934962 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Richburg Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960684999739769, 28.898741283736111 ], [ -81.961144454201104, 28.898638284802399 ], [ -81.962414949334928, 28.898432724071451 ], [ -81.962667136029495, 28.898385010538071 ], [ -81.962829457197913, 28.898377148770098 ], [ -81.963045680475872, 28.898393021308053 ], [ -81.963229704444458, 28.898427456699007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alexa Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958693811886263, 28.897766767307182 ], [ -81.958888440369748, 28.897558498817645 ], [ -81.958892543082939, 28.89755506141212 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bradley Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957355008870863, 28.89688181017523 ], [ -81.957500654049724, 28.896916762723851 ], [ -81.957705245543579, 28.896964489509102 ], [ -81.957791641445112, 28.896993623078526 ], [ -81.957873062731224, 28.897032237294344 ], [ -81.958317225436133, 28.897264049441283 ], [ -81.958693934467647, 28.897456680487824 ], [ -81.958892543082939, 28.89755506141212 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bradley Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956913603671495, 28.896803632042538 ], [ -81.957266140934266, 28.896868029965841 ], [ -81.957355008870863, 28.89688181017523 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Simpson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958617499367591, 28.894366159519933 ], [ -81.958680160802089, 28.894320240043857 ], [ -81.95886555788492, 28.894182602456127 ], [ -81.959088495375696, 28.893991874819118 ], [ -81.95932120902647, 28.893770552786552 ], [ -81.959540898187242, 28.893518153018217 ], [ -81.959591265321038, 28.893454015581291 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Emmalee Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953997377320619, 28.892869169759841 ], [ -81.954228829526016, 28.892867186202302 ], [ -81.954835099780425, 28.892864642205716 ], [ -81.955620477700307, 28.892855965030666 ], [ -81.955627901980492, 28.892855623708453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Emmalee Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955627901980492, 28.892855623708453 ], [ -81.956056042155467, 28.892848201456726 ], [ -81.956201750941588, 28.892844467534932 ], [ -81.95627411173642, 28.892825382217488 ], [ -81.956325801524258, 28.892799214302322 ], [ -81.956369664934115, 28.892768909485923 ], [ -81.956465226526092, 28.892684870525724 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rowesville Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953997642862916, 28.892270309828127 ], [ -81.95562561253017, 28.892270857744904 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tamarindo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990469189114606, 28.950266537993741 ], [ -81.990745741566883, 28.950383318814342 ], [ -81.991025981859309, 28.950496855574976 ], [ -81.991353749448379, 28.950625611134807 ], [ -81.991618612845215, 28.950733793250087 ], [ -81.991786891474916, 28.950799047708802 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carvello Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998196019118311, 28.942790327138319 ], [ -81.998205228323158, 28.942997832191757 ], [ -81.99821838313548, 28.94328434751294 ], [ -81.998221671019905, 28.943371168930259 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carvello Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99819619143959, 28.94220770635199 ], [ -81.998196025423127, 28.942540279079576 ], [ -81.998198654739937, 28.942674564739526 ], [ -81.998196019118311, 28.942790327138319 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Bernardo Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998870873738738, 28.942210006434834 ], [ -81.998862546251971, 28.942365617687159 ], [ -81.998864584123496, 28.94252871085417 ], [ -81.998875107067335, 28.942915360820233 ], [ -81.998893526257945, 28.943325160978652 ], [ -81.998906684879756, 28.943480283368793 ], [ -81.998919844394351, 28.943575210160386 ], [ -81.998933002418937, 28.943704863510295 ], [ -81.998948793715243, 28.943832204302961 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Bernardo Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998948793715243, 28.943832204302961 ], [ -81.998990904641772, 28.944126243096619 ], [ -81.99901985654077, 28.944290626733334 ], [ -81.999067231256006, 28.944582349342006 ], [ -81.999130398538313, 28.944867128900281 ], [ -81.999193298575662, 28.94513932593814 ], [ -81.999206730942745, 28.945186634164035 ], [ -81.999240946251049, 28.945223679853886 ], [ -81.999298855737919, 28.945251462751916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Salamanca Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99604028276454, 28.943369093845448 ], [ -81.996500907272022, 28.943369108131215 ], [ -81.996985221379788, 28.943366804315996 ], [ -81.997377411527509, 28.943366813057441 ], [ -81.997577591683878, 28.943371036202215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Salamanca Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997577591683878, 28.943371036202215 ], [ -81.997879493169947, 28.943368269858777 ], [ -81.998221671019905, 28.943371168930259 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Panchos Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999033004736305, 28.945265350644231 ], [ -81.999154085699516, 28.945265352525727 ], [ -81.999298855737919, 28.945251462751916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Panchos Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999298855737919, 28.945251462751916 ], [ -81.999422567854353, 28.9452537787908 ], [ -81.999496269946533, 28.945251463902501 ], [ -81.999704213022369, 28.945251464801306 ], [ -81.999780619123797, 28.945250160335117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Panchos Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999780619123797, 28.945250160335117 ], [ -82.000012178281139, 28.945244519723076 ], [ -82.00017537337088, 28.945214421528078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dovalina Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995591416550212, 28.946026167409403 ], [ -81.995592685266601, 28.946253604821788 ], [ -81.995592675005497, 28.946476448609811 ], [ -81.995595957571339, 28.946655882291108 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991855343459619, 28.94734672106873 ], [ -81.992016219984137, 28.947406478045735 ], [ -81.992167419050389, 28.947492108400493 ], [ -81.992271225127794, 28.947577342407111 ], [ -81.992354952218392, 28.947657082910524 ], [ -81.992460232970984, 28.947793110520376 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991161772015133, 28.947302651699278 ], [ -81.991283327493747, 28.947299514399397 ], [ -81.991437057712972, 28.947299524476907 ], [ -81.991562186623412, 28.947302677942449 ], [ -81.991737366581901, 28.947318412402723 ], [ -81.991855343459619, 28.94734672106873 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990436027825993, 28.947230275114684 ], [ -81.990543280139534, 28.947249150683085 ], [ -81.990664833814947, 28.947264882687861 ], [ -81.990818561962925, 28.947286904903535 ], [ -81.99095084055844, 28.947293203022681 ], [ -81.991161772015133, 28.947302651699278 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989399257846443, 28.947060388148426 ], [ -81.989681688805504, 28.947107579640811 ], [ -81.989899767233538, 28.947142186775341 ], [ -81.990182197922294, 28.947186232726693 ], [ -81.99033235024703, 28.947214545115028 ], [ -81.990436027825993, 28.947230275114684 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985720458745973, 28.947053752330955 ], [ -81.985999322250706, 28.947019193516621 ], [ -81.986128028826784, 28.947006628155158 ], [ -81.986335389111204, 28.946987781805316 ], [ -81.986478394965445, 28.946972073088784 ], [ -81.98663570422984, 28.946953221170372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984805214406606, 28.94714170201112 ], [ -81.984994697237724, 28.947129144664238 ], [ -81.985298588200237, 28.94709458831986 ], [ -81.985516674239918, 28.947072599025027 ], [ -81.985720458745973, 28.947053752330955 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983879685669407, 28.94714530150355 ], [ -81.983950616271215, 28.94714531097927 ], [ -81.984151968087758, 28.947145335113095 ], [ -81.984360181641449, 28.947145359752568 ], [ -81.984590705927658, 28.947144821821237 ], [ -81.98469438643437, 28.947141689302576 ], [ -81.984805214406606, 28.94714170201112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982943885168254, 28.946996257864868 ], [ -81.983138362243139, 28.947054645636797 ], [ -81.983250475284564, 28.94708082266899 ], [ -81.983399192889806, 28.94711304322281 ], [ -81.983566219064826, 28.947135202602897 ], [ -81.983712656194839, 28.94714326905412 ], [ -81.983879685669407, 28.94714530150355 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982021836768794, 28.946734505986811 ], [ -81.982127084075572, 28.946756658803235 ], [ -81.982230042797383, 28.946784845766256 ], [ -81.98236732174685, 28.946823104078291 ], [ -81.982554933385458, 28.946875454544482 ], [ -81.982753985528831, 28.946937869502101 ], [ -81.982943885168254, 28.946996257864868 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981138628027836, 28.946802810187766 ], [ -81.981283927146848, 28.946764528340363 ], [ -81.981419787370044, 28.946733101543185 ], [ -81.981594971634337, 28.946711115321097 ], [ -81.981710662705524, 28.946710313771909 ], [ -81.98179074537488, 28.946710324739257 ], [ -81.981866682003627, 28.94671429616017 ], [ -81.982021836768794, 28.946734505986811 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979924557711385, 28.947672564006247 ], [ -81.979979681715278, 28.947619880205728 ], [ -81.980043640239501, 28.947561197458217 ], [ -81.980093695399844, 28.947519630901866 ], [ -81.980252201472723, 28.94738514969734 ], [ -81.980518778537245, 28.947160639834372 ], [ -81.980562041060182, 28.947125930435533 ], [ -81.980564648075969, 28.947123838398728 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978052673092066, 28.948926856502272 ], [ -81.978269504657604, 28.948842375148892 ], [ -81.978500299317474, 28.948734809639266 ], [ -81.978706072254724, 28.948617457987808 ], [ -81.97899805216943, 28.948429197618601 ], [ -81.979195488804692, 28.948277606408759 ], [ -81.979430249621885, 28.94808616279299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976281752219634, 28.949354870956906 ], [ -81.976509414256327, 28.94930917399525 ], [ -81.976882006089269, 28.949228537085574 ], [ -81.977146154615951, 28.949169889340773 ], [ -81.97732411024559, 28.949130791773484 ], [ -81.977618846943926, 28.949062366539334 ], [ -81.977824609354528, 28.949001263348631 ], [ -81.978052673092066, 28.948926856502272 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001685291520999, 28.933717107467857 ], [ -82.001515666733624, 28.93388003524991 ], [ -82.001485573201563, 28.933904442535621 ], [ -82.001458199759639, 28.933925827108951 ], [ -82.001441252401804, 28.933940737642779 ], [ -82.001420914086253, 28.933954153997234 ], [ -82.00139549447178, 28.933966081595486 ], [ -82.00137346267168, 28.93397353559126 ], [ -82.001356515212009, 28.933979498961566 ], [ -82.001337873319898, 28.933986954735168 ], [ -82.001324314744053, 28.933992917178617 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002015442210435, 28.945086766040607 ], [ -82.002405078840198, 28.944993052553251 ], [ -82.002564879366304, 28.944956609291467 ], [ -82.002692126266552, 28.944931445036385 ], [ -82.002828253434359, 28.944905413404332 ], [ -82.002969312578458, 28.944879380642071 ], [ -82.003096560447247, 28.944859421333334 ], [ -82.003253402526042, 28.94483772709588 ], [ -82.003367825825094, 28.944820371809858 ], [ -82.003830458401282, 28.944767432661063 ], [ -82.004139207294685, 28.944737924205544 ], [ -82.004447191971906, 28.944713003224553 ], [ -82.004760246302496, 28.944695461233774 ], [ -82.00489875221561, 28.94468670995423 ], [ -82.004994436570726, 28.944686707698718 ], [ -82.005076309546993, 28.944685836936777 ], [ -82.005167058709333, 28.944684097811912 ], [ -82.005252879072572, 28.944685830823566 ], [ -82.005333766336577, 28.944686695951628 ], [ -82.005424516813719, 28.944691029987727 ], [ -82.005518227963734, 28.944699704784284 ], [ -82.005614898556018, 28.944708375794026 ], [ -82.005720445527132, 28.944719652212967 ], [ -82.005801333225577, 28.944728325504009 ], [ -82.005890110533812, 28.944740468650039 ], [ -82.00596310782214, 28.944749143061578 ], [ -82.005992700376666, 28.944755215192643 ], [ -82.006078521567872, 28.944770829456079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006078521567872, 28.944770829456079 ], [ -82.006238169325002, 28.944801397851567 ], [ -82.006322941462415, 28.944821657008134 ], [ -82.006404950036341, 28.944840294811804 ], [ -82.006491565646499, 28.944861363137946 ], [ -82.006575417787602, 28.944882432435204 ], [ -82.006661111419135, 28.944905932373242 ], [ -82.006778135619768, 28.944938346356981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006778135619768, 28.944938346356981 ], [ -82.006827036561305, 28.944955363119284 ], [ -82.006908134011113, 28.944983893398902 ], [ -82.006988452987542, 28.945013454987876 ], [ -82.007068380263291, 28.945044733611383 ], [ -82.007147720873093, 28.945076701567995 ], [ -82.007226278957148, 28.945110386580229 ], [ -82.007304253455999, 28.945144759123078 ], [ -82.007381445411127, 28.945180508559567 ], [ -82.007457755199255, 28.945215823091864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007457755199255, 28.945215823091864 ], [ -82.007534841423578, 28.945248966623208 ], [ -82.007627344203158, 28.945292657099642 ], [ -82.007712995503638, 28.945333334220827 ], [ -82.00778665645646, 28.945377025594951 ], [ -82.00785346579697, 28.945416195010555 ], [ -82.007923700568853, 28.945458379666817 ], [ -82.007990509206635, 28.945500564476713 ], [ -82.008067596918465, 28.945548775090085 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stafford Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980303555896938, 28.887239731982042 ], [ -81.980300059375011, 28.887140722905919 ], [ -81.980300103708174, 28.886915205462532 ], [ -81.980307191279309, 28.886615432397271 ], [ -81.980331855145209, 28.886321849884975 ], [ -81.980380927809094, 28.886053023761214 ], [ -81.980444261369328, 28.885771822833597 ], [ -81.980570112077771, 28.885384403971731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Montrose Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980965993465219, 28.887198113699206 ], [ -81.980964484430174, 28.887125733623037 ], [ -81.980956709038182, 28.886998838346262 ], [ -81.980963790341448, 28.886739287112409 ], [ -81.980995490869574, 28.886405484521411 ], [ -81.981041246766367, 28.886111904866834 ], [ -81.981118447688559, 28.885809046758311 ], [ -81.981182934030684, 28.885619979588835 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Montrose Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981182934030684, 28.885619979588835 ], [ -81.981234326236887, 28.885469067952016 ], [ -81.981282775705779, 28.885364238197624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Johnson Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981307768053412, 28.885304698851769 ], [ -81.981375733954323, 28.885157291301571 ], [ -81.981414328443336, 28.885076876387497 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Johnson Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981414328443336, 28.885076876387497 ], [ -81.98146713973334, 28.884983953932082 ], [ -81.981561188469783, 28.884826249227118 ], [ -81.981782324414269, 28.884517223387061 ], [ -81.982185713334147, 28.884018457734058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mathews Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980808244026079, 28.884839940298196 ], [ -81.981414328443336, 28.885076876387497 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mathews Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980541289707901, 28.884743504363911 ], [ -81.980808244026079, 28.884839940298196 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Everett Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980282840923081, 28.885277103580297 ], [ -81.980570112077771, 28.885384403971731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Everett Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980570112077771, 28.885384403971731 ], [ -81.980605848648722, 28.8853978164525 ], [ -81.981182934030684, 28.885619979588835 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cedar Ridge Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982477425302321, 28.886705804121558 ], [ -81.982449132958251, 28.886550757148154 ], [ -81.982446439178915, 28.886487931389279 ], [ -81.982445632844446, 28.88641915159435 ], [ -81.982459862951188, 28.886329796802709 ], [ -81.982520820016887, 28.886101052566705 ], [ -81.982571611055633, 28.885954513803675 ], [ -81.982628492986493, 28.885800827782528 ], [ -81.98268943123206, 28.885679310192046 ], [ -81.982770683212763, 28.885520266691266 ], [ -81.982849897870437, 28.885391604253652 ], [ -81.983018473836879, 28.885161085179476 ], [ -81.983278292218429, 28.884848134096014 ], [ -81.9833306996331, 28.884788010403064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cedar Ridge Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9833306996331, 28.884788010403064 ], [ -81.983398606937257, 28.884691415802141 ], [ -81.983455476998842, 28.884605640193097 ], [ -81.983534009387526, 28.884496040166788 ], [ -81.983667999415687, 28.884359674712922 ], [ -81.983752206507447, 28.88425926518703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mount Vernon Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98166373532024, 28.883658109057073 ], [ -81.981767428849025, 28.88371828418347 ], [ -81.981930098677552, 28.883816970217911 ], [ -81.982095498459458, 28.883935939249703 ], [ -81.982185713334147, 28.884018457734058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mount Vernon Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982185713334147, 28.884018457734058 ], [ -81.982256175229125, 28.884086026915199 ], [ -81.982373175282603, 28.884184183902892 ], [ -81.982530374490949, 28.884291119126523 ], [ -81.982669807690939, 28.884376737702915 ], [ -81.982740748119994, 28.884412540275278 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mount Vernon Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982740748119994, 28.884412540275278 ], [ -81.982821966102151, 28.884443525844574 ], [ -81.982943786147374, 28.88451979312666 ], [ -81.9833306996331, 28.884788010403064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mount Vernon Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9833306996331, 28.884788010403064 ], [ -81.983439805862403, 28.884863624183673 ], [ -81.983724133177276, 28.885070612740385 ], [ -81.984061191424658, 28.885311641796253 ], [ -81.984164496959181, 28.885387629649049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mount Vernon Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984164496959181, 28.885387629649049 ], [ -81.984317595979334, 28.885500406487918 ], [ -81.984465034490029, 28.88562383956911 ], [ -81.984628278929051, 28.885817060974027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holly Hill Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984164496959181, 28.885387629649049 ], [ -81.984264896802472, 28.885293102035213 ], [ -81.984394788548883, 28.885200642263253 ], [ -81.984577410962956, 28.885101654910116 ], [ -81.984751050096904, 28.885016418251823 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burton Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971288632626624, 28.905132374180091 ], [ -81.97111347815077, 28.904889975577877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burton Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97111347815077, 28.904889975577877 ], [ -81.97073290753525, 28.904362882135533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Easley Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969477904630168, 28.906154364340843 ], [ -81.969443730739457, 28.90612204164438 ], [ -81.969366007272995, 28.906044673481897 ], [ -81.96931211212619, 28.905979343782498 ], [ -81.969276967458825, 28.905922269879049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Easley Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969276967458825, 28.905922269879049 ], [ -81.969268181861906, 28.905907829288402 ], [ -81.969207467810293, 28.905777180614656 ], [ -81.969026131619273, 28.905323354083894 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iva Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967338875407307, 28.904372068185381 ], [ -81.967442995167474, 28.904364872424477 ], [ -81.967671278161703, 28.90435065783667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iva Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966625899687344, 28.904327200810059 ], [ -81.966736846161325, 28.904346823602427 ], [ -81.966891547363545, 28.904367489347898 ], [ -81.967076533565191, 28.904376473082845 ], [ -81.967271481356036, 28.904376520828922 ], [ -81.967338875407307, 28.904372068185381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iva Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966242462718171, 28.904275538441404 ], [ -81.966316492906699, 28.904287589213201 ], [ -81.966454397674894, 28.904302405247762 ], [ -81.96658546625261, 28.904319970544975 ], [ -81.966625899687344, 28.904327200810059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Irmo Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958206318684148, 28.903628405056967 ], [ -81.958477676841838, 28.903630446391382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019582888907266, 28.921450767572921 ], [ -82.019502006095948, 28.921454903374599 ], [ -82.019427570907268, 28.921458352479156 ], [ -82.01931425535544, 28.92146180606326 ], [ -82.019161866221879, 28.921468702705432 ], [ -82.019036829416919, 28.921472156773223 ], [ -82.018872522524063, 28.921475616975847 ], [ -82.018832276405888, 28.921477342221642 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018832276405888, 28.921477342221642 ], [ -82.018721034047758, 28.921483976520754 ], [ -82.018639045917212, 28.921483987558457 ], [ -82.018571631966651, 28.921488804931951 ], [ -82.01848549746029, 28.921506609707563 ], [ -82.018407352170414, 28.921530684325933 ], [ -82.018364374515556, 28.921547878756197 ], [ -82.018309282255217, 28.921573798168243 ], [ -82.018260094477967, 28.921607465699093 ], [ -82.018219815205981, 28.921637623014263 ], [ -82.018171194165035, 28.921675283999949 ], [ -82.018127474126246, 28.921724020011087 ], [ -82.01809249969304, 28.921770189641421 ], [ -82.018051697666721, 28.921833032644198 ], [ -82.018028385767892, 28.921877918578492 ], [ -82.01799303948269, 28.921933298867128 ], [ -82.017948235181237, 28.921981801264366 ], [ -82.017907090415122, 28.922026130056178 ], [ -82.017825045073351, 28.922091458709531 ], [ -82.017764602493969, 28.922126733587621 ], [ -82.017700475084609, 28.922162649537896 ], [ -82.017626143567384, 28.922201130174571 ], [ -82.017527167457956, 28.922240083073326 ], [ -82.017458353123246, 28.922264146940083 ], [ -82.017395858580073, 28.922283232014756 ], [ -82.017337556793947, 28.922297343985157 ], [ -82.01719109502254, 28.922303302881097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grant Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021917610534942, 28.917385261714553 ], [ -82.022090574753676, 28.917382739322885 ], [ -82.022228734952307, 28.917382127061504 ], [ -82.022371290815741, 28.917382694150284 ], [ -82.022527251044352, 28.917386546870617 ], [ -82.022641539906544, 28.917390309703816 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evelynton Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019052446364057, 28.918111749160367 ], [ -82.019170639434179, 28.918111732876952 ], [ -82.019410743143553, 28.918111699478565 ], [ -82.019576216975324, 28.918108583139887 ], [ -82.019647523970676, 28.9180886332027 ], [ -82.019709249715703, 28.918042902372829 ], [ -82.019737223947516, 28.91799680999301 ], [ -82.019754753224277, 28.917945951362057 ], [ -82.019767588536553, 28.917634832302411 ], [ -82.019757261739827, 28.916734828175272 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brighton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020535544780358, 28.918539537990334 ], [ -82.020484946855987, 28.918551233833831 ], [ -82.020403874005765, 28.918573934949901 ], [ -82.020335694724068, 28.918593883924864 ], [ -82.020251302719117, 28.918619679410632 ], [ -82.020150692251903, 28.918648228305646 ], [ -82.020059854043524, 28.918670929732738 ], [ -82.019978780562255, 28.918696723664723 ], [ -82.019894387874174, 28.918725270930604 ], [ -82.019832655470722, 28.918742468525767 ], [ -82.01976779508793, 28.918748321064971 ], [ -82.019722469179271, 28.918748326620964 ], [ -82.019654285405622, 28.918745242333358 ], [ -82.01957965510546, 28.918731158125183 ], [ -82.019488802710711, 28.918705387810448 ], [ -82.01943038415132, 28.9186796128926 ], [ -82.019342655651684, 28.91862565340104 ], [ -82.019287553211086, 28.918574094839986 ], [ -82.019218416816315, 28.918508310792269 ], [ -82.019177150141985, 28.918457226679429 ], [ -82.019112274496493, 28.918377136077542 ], [ -82.019073385060949, 28.918314229716888 ], [ -82.019053910137202, 28.918251373012431 ], [ -82.01905050696395, 28.91819150521118 ], [ -82.019052446364057, 28.918111749160367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brighton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021203277077092, 28.918450641391736 ], [ -82.02110403301684, 28.918453151419438 ], [ -82.021013298347796, 28.918458154931113 ], [ -82.020864528529032, 28.918479672852396 ], [ -82.020777008082263, 28.918491028788715 ], [ -82.020702380708499, 28.918502384544734 ], [ -82.020608217479662, 28.918522682219333 ], [ -82.020535544780358, 28.918539537990334 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evelynton Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019757261739827, 28.916734828175272 ], [ -82.019756668263597, 28.916692199257312 ], [ -82.019770129305215, 28.916587345961169 ], [ -82.019814844663017, 28.916469080971996 ], [ -82.019857634641966, 28.916392812736664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evelynton Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019990601091394, 28.916095716055992 ], [ -82.020071051705727, 28.915893562899754 ], [ -82.020175323317517, 28.915624715667374 ], [ -82.02023296035577, 28.915474523578183 ], [ -82.020283975633845, 28.915357260849351 ], [ -82.020439876071279, 28.915097782491681 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tatum Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013411323251617, 28.915338478599921 ], [ -82.013849517927838, 28.915344281164369 ], [ -82.014834520961003, 28.91534693059333 ], [ -82.015540941593642, 28.915344102783106 ], [ -82.015841407365627, 28.915363320439052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Due West Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013419083266783, 28.914663883685279 ], [ -82.013492705100475, 28.914671889035613 ], [ -82.0137243236138, 28.91470019060765 ], [ -82.014005000182209, 28.914712036216248 ], [ -82.014253290479388, 28.914716759998601 ], [ -82.014552858066139, 28.914714354372851 ], [ -82.015211476032448, 28.914713654554589 ], [ -82.015778603662795, 28.914719434959743 ], [ -82.015914381443807, 28.914734201884034 ], [ -82.016084794784746, 28.914797889930014 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pickens Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011245665347573, 28.910688753934643 ], [ -82.011902240936621, 28.910688700308519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pickens Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010944435433316, 28.910688777466707 ], [ -82.011245665347573, 28.910688753934643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Bay Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014004916963799, 28.914073277623615 ], [ -82.014191814689582, 28.914072619116407 ], [ -82.014286758255722, 28.9140726103799 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Bay Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014286758255722, 28.9140726103799 ], [ -82.014870291545222, 28.914072548766573 ], [ -82.015672038234712, 28.914072461229367 ], [ -82.016092058114992, 28.914072413465217 ], [ -82.016171548834421, 28.91404765968511 ], [ -82.016247601260773, 28.914004172767871 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Swainwood Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014286758255722, 28.9140726103799 ], [ -82.014290782734449, 28.913489909226612 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Swainwood Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014290782734449, 28.913489909226612 ], [ -82.01428278552099, 28.913270646425488 ], [ -82.014293549567299, 28.913035561729764 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evelynton Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020439876071279, 28.915097782491681 ], [ -82.02048523441438, 28.915045384828627 ], [ -82.020510746866563, 28.915012949798381 ], [ -82.020543258755097, 28.914971831825131 ], [ -82.020571379340964, 28.914925074238802 ], [ -82.020596377743814, 28.914886223937838 ], [ -82.020615623766517, 28.914845784641553 ], [ -82.02064637089461, 28.914789960369141 ], [ -82.020672312901553, 28.914731016664305 ], [ -82.020700649523619, 28.914646190210764 ], [ -82.020718220491105, 28.914567182469554 ], [ -82.02072758594457, 28.91451217614836 ], [ -82.020733825571781, 28.914446170392957 ], [ -82.020736937371183, 28.914374664703271 ], [ -82.020727539903348, 28.914275657071769 ], [ -82.020725193694673, 28.914260531317652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blake Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023545443097788, 28.91454782120989 ], [ -82.023550857789985, 28.914298239566705 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blake Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023550857789985, 28.914298239566705 ], [ -82.02356284200458, 28.913721381973424 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 27th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148725322761734, 28.901699485638492 ], [ -82.148719206248515, 28.903221879977291 ], [ -82.148719213682043, 28.904685995230786 ], [ -82.148717639289231, 28.905033816290199 ], [ -82.148720105714972, 28.90531425222002 ], [ -82.148720462537923, 28.905565556262474 ], [ -82.148723143076552, 28.905995319002859 ], [ -82.148720718876206, 28.907202669472202 ], [ -82.148722606615479, 28.908532024130377 ], [ -82.148722896254313, 28.908735981133734 ], [ -82.148723030727268, 28.908830673166658 ], [ -82.14872522161653, 28.908916259689203 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 20th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136440773698737, 28.918105669976516 ], [ -82.136434097207896, 28.918731984771732 ], [ -82.136406923602848, 28.92224057653447 ], [ -82.136408083698399, 28.923130153144189 ], [ -82.136429190780504, 28.923465050305282 ], [ -82.136410884939892, 28.923574355380396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 245 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133373973423687, 28.949146136826535 ], [ -82.13336276823398, 28.949180776856124 ], [ -82.133362843933014, 28.949240140208033 ], [ -82.133362998489005, 28.949361342789306 ], [ -82.133367303347114, 28.950531302836929 ], [ -82.133371361270292, 28.951508332758888 ], [ -82.133369483158987, 28.952240489868622 ], [ -82.133380166305699, 28.954001611029888 ], [ -82.133381455788481, 28.955013271214948 ], [ -82.133373105029094, 28.955080062356846 ], [ -82.133342232191595, 28.955129564426496 ], [ -82.133286038906078, 28.955171670156446 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11995827769168, 28.890764224616952 ], [ -82.119960838117052, 28.892088348604176 ], [ -82.119963684428328, 28.894517229516435 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107479409439236, 28.89447188775037 ], [ -82.109237918132976, 28.894477375011483 ], [ -82.111087636584983, 28.894488348882962 ], [ -82.113020416390569, 28.89449566491464 ], [ -82.115167950009692, 28.894504554640417 ], [ -82.118342653482912, 28.894516082383177 ], [ -82.119963684428328, 28.894517229516435 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 87th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107415084534324, 28.883418387310648 ], [ -82.107821471347719, 28.883460825552529 ], [ -82.107967229308471, 28.883464596647286 ], [ -82.10847074534648, 28.883468081787679 ], [ -82.109504280793175, 28.88347891392516 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 85th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107413446659351, 28.88095461274871 ], [ -82.107610615659993, 28.880971555871859 ], [ -82.108049307105603, 28.88102758533142 ], [ -82.108241685974647, 28.88103980781079 ], [ -82.10830358157358, 28.88102772621701 ], [ -82.108371070626276, 28.880948260016751 ], [ -82.108537746729027, 28.880842929400849 ], [ -82.108632306094961, 28.880819918116302 ], [ -82.108740067430176, 28.88081361307739 ], [ -82.108978566747524, 28.880813420665181 ], [ -82.10909870392419, 28.880817988023139 ], [ -82.109220593346947, 28.88080700634206 ], [ -82.109330009671893, 28.880795196374468 ], [ -82.109440904059895, 28.880764509924671 ], [ -82.109548471663061, 28.880725921027398 ], [ -82.109670947748924, 28.880668253496449 ], [ -82.109749613819687, 28.880627873292777 ], [ -82.109792786508422, 28.880609068702775 ], [ -82.109855959049341, 28.880587211655847 ], [ -82.109907579406737, 28.880571657483866 ], [ -82.109967645942845, 28.880571608771643 ], [ -82.110024178126366, 28.88057000823941 ], [ -82.110057759396469, 28.88058552940284 ], [ -82.110089595939499, 28.880619712427801 ], [ -82.110114358475656, 28.880647680739536 ], [ -82.110167384277403, 28.880674071418806 ], [ -82.110209803151818, 28.880691140023266 ], [ -82.110384750278186, 28.8807360909903 ], [ -82.1104942964011, 28.880748442646158 ], [ -82.110643719371723, 28.880757690243769 ], [ -82.110702755676087, 28.880742051214462 ], [ -82.110759261684194, 28.880715573100414 ], [ -82.110840448293942, 28.88063931387854 ], [ -82.110898693874859, 28.880589508943402 ], [ -82.110937535324936, 28.880566153625928 ], [ -82.110988748266749, 28.880547453056018 ], [ -82.111052336394948, 28.880534960976025 ], [ -82.111101801048733, 28.880533366684023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 231", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107430495199566, 28.877364736996686 ], [ -82.107428883075499, 28.879200199129873 ], [ -82.107413446659351, 28.88095461274871 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 9th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.089473772286141, 28.881540615520322 ], [ -82.089404617301611, 28.881606090456 ], [ -82.08935344800507, 28.881723441169459 ], [ -82.089333046906631, 28.88184754247316 ], [ -82.089359112371312, 28.882355155541479 ], [ -82.089349599333119, 28.883226028040628 ], [ -82.089375424353037, 28.883449368981431 ], [ -82.089367790931746, 28.883517056399814 ], [ -82.089319141578486, 28.88358251687098 ], [ -82.089265350838431, 28.883629931105713 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 84th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.088949592947884, 28.879648126008004 ], [ -82.088944514177115, 28.879646754230354 ], [ -82.086824229676907, 28.879635905985502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 210", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103249342132784, 28.93091840837754 ], [ -82.103109273493615, 28.930919230686637 ], [ -82.10257179859704, 28.930919640017208 ], [ -82.101917256111946, 28.930918342554211 ], [ -82.101326846850952, 28.93091878586398 ], [ -82.101061097358354, 28.930923464441598 ], [ -82.099601130899757, 28.930926820439275 ], [ -82.099063657126933, 28.930931761515975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 27th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064908920398253, 28.914483611537491 ], [ -82.06444131968631, 28.914558550545966 ], [ -82.064284620560557, 28.914571158567288 ], [ -82.064185353927229, 28.91457929818792 ], [ -82.064013053841009, 28.914571799279255 ], [ -82.063847638802727, 28.91455217005667 ], [ -82.063694278306656, 28.914521922175016 ], [ -82.063549528435004, 28.914485607564785 ], [ -82.063390595658177, 28.914436831488402 ], [ -82.063265921311455, 28.914402420073838 ], [ -82.063187653909878, 28.914391787739451 ], [ -82.063120457273072, 28.914388787251887 ], [ -82.063015360565501, 28.914394899454066 ], [ -82.062915427942784, 28.914391914039374 ], [ -82.062794814799659, 28.914379842060796 ], [ -82.062665581043177, 28.914358678804771 ], [ -82.062567361497727, 28.914337500248244 ], [ -82.062463968849883, 28.91431026056781 ], [ -82.062401927170555, 28.914286033543647 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 108th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062401927170555, 28.914286033543647 ], [ -82.062279695579406, 28.9144498130368 ], [ -82.062064464371801, 28.914680336247709 ], [ -82.061941284870912, 28.914826071743615 ], [ -82.061813085896787, 28.914973029311593 ], [ -82.06168146754807, 28.915127019899728 ], [ -82.061616794931396, 28.91518989865984 ], [ -82.06156685592407, 28.915233883856217 ], [ -82.061489237549281, 28.915286922563887 ], [ -82.061418734509161, 28.915324907714897 ], [ -82.061344664344546, 28.915355261014902 ], [ -82.061263699180898, 28.915379553050705 ], [ -82.061168948487719, 28.915399302768044 ], [ -82.061072470209325, 28.915414505623257 ], [ -82.060975985159189, 28.915414548937839 ], [ -82.060845031141511, 28.91539944814113 ], [ -82.060707176109375, 28.915367674966866 ], [ -82.060581367010698, 28.915313156619963 ], [ -82.06045727089446, 28.915235898631344 ], [ -82.060174880752712, 28.915036818609646 ], [ -82.0599076499159, 28.914836384180518 ], [ -82.059640255722712, 28.914648070730081 ], [ -82.059472975572319, 28.914538878647676 ], [ -82.059344720340945, 28.914469994747758 ], [ -82.059161125096324, 28.914384503689949 ], [ -82.058993968852874, 28.914330003634088 ], [ -82.058817511588714, 28.914288471584388 ], [ -82.0586358585645, 28.914260347859845 ], [ -82.058440853475005, 28.914239283779757 ], [ -82.058062417016146, 28.914194787619941 ], [ -82.057841589010792, 28.914169812313474 ], [ -82.057684869722834, 28.914147944950702 ], [ -82.057506962306647, 28.914136598115828 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 26th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05857256086226, 28.910501455120706 ], [ -82.058801328867247, 28.910825802445824 ], [ -82.058908279817331, 28.911020042284981 ], [ -82.058965291709114, 28.91112620345357 ], [ -82.059005314795044, 28.911212292259361 ], [ -82.059074333579204, 28.911397815076242 ], [ -82.059110239538413, 28.911520288938419 ], [ -82.059150309961709, 28.911697333675242 ], [ -82.059173823921043, 28.911842854849052 ], [ -82.059186609162751, 28.91197881724467 ], [ -82.059190263397397, 28.912141764079141 ], [ -82.059180635573554, 28.912313705367051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 104th Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063493477137953, 28.911702870094945 ], [ -82.06367683488098, 28.911906069884783 ], [ -82.063750165390744, 28.91196491756396 ], [ -82.063842617513657, 28.912027962726775 ], [ -82.063958972412081, 28.912092398746481 ], [ -82.064089661058716, 28.912144209291281 ], [ -82.064224094946297, 28.912184381925101 ], [ -82.064314361382998, 28.912205789525295 ], [ -82.064409971169482, 28.912219763219746 ], [ -82.064507018601688, 28.912223550140638 ], [ -82.06459958651304, 28.912225280983286 ], [ -82.064685624766227, 28.91221963228233 ], [ -82.064781217329298, 28.912205567765579 ], [ -82.064864061448716, 28.91218870583252 ], [ -82.064956643777023, 28.912165691848809 ], [ -82.065031335387545, 28.912142359733807 ], [ -82.065107797389615, 28.912111480824976 ], [ -82.065169921846405, 28.912083412184767 ], [ -82.065252749262498, 28.912039910624049 ], [ -82.065340351274997, 28.911986593341432 ], [ -82.065480577830868, 28.911887700024732 ], [ -82.065652518074373, 28.911777549530761 ], [ -82.065822892903384, 28.911662200543219 ], [ -82.065930059621166, 28.911604504476951 ], [ -82.066092135172497, 28.911540405999521 ], [ -82.066221173021333, 28.911502488224411 ], [ -82.066346880030707, 28.911475912013241 ], [ -82.066686335323709, 28.911441685028269 ], [ -82.066933484267238, 28.911417981969166 ], [ -82.06715959108945, 28.911396881158637 ], [ -82.067218537147056, 28.911385636460285 ], [ -82.067271109128299, 28.911371590555639 ], [ -82.067344388388165, 28.911346318822591 ], [ -82.067417658238696, 28.91131123367898 ], [ -82.067486149480374, 28.911274747798679 ], [ -82.067555729345983, 28.911218540752362 ], [ -82.067602398177712, 28.911175149561728 ], [ -82.067662905378327, 28.911110630508468 ], [ -82.067704294246013, 28.911051726925329 ], [ -82.067737716223675, 28.910992828204371 ], [ -82.067766353164401, 28.910924116681482 ], [ -82.067787025706792, 28.91086241996976 ], [ -82.067801319658628, 28.910790913062229 ], [ -82.067802558616989, 28.910702240163324 ], [ -82.067745176683644, 28.910209123161582 ], [ -82.067708344005837, 28.909917533721302 ], [ -82.067703486661628, 28.909796965861624 ], [ -82.067733649066142, 28.909623108050486 ], [ -82.067749518897102, 28.909529168354041 ], [ -82.067754251633744, 28.9094548618678 ], [ -82.067757383460787, 28.909370743703242 ], [ -82.067750950499132, 28.909279617658523 ], [ -82.067739745531782, 28.909195504836774 ], [ -82.067718974428828, 28.909108594248323 ], [ -82.067690236129849, 28.909016078949286 ], [ -82.067653529144337, 28.908923566708872 ], [ -82.067612053700117, 28.908845077618665 ], [ -82.06754825638879, 28.908744167616163 ], [ -82.067449833481788, 28.908616752666124 ], [ -82.067333002082975, 28.90849893096156 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 104th Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067333002082975, 28.90849893096156 ], [ -82.067268082968525, 28.908451772998717 ], [ -82.067159253325443, 28.908377045383155 ], [ -82.067071590069503, 28.908326617813657 ], [ -82.066955246390677, 28.908276205224997 ], [ -82.06683571691903, 28.908224391030739 ], [ -82.06663660175731, 28.908150762154108 ], [ -82.066451630694672, 28.908068960279032 ], [ -82.066192784880769, 28.907943985864382 ], [ -82.066022994653935, 28.907854981085457 ], [ -82.065888949312807, 28.907779061919712 ], [ -82.065734049317854, 28.90768742928244 ], [ -82.065567226311927, 28.907580082401061 ], [ -82.065409343544772, 28.907477972450884 ], [ -82.065222750780521, 28.907348945236901 ], [ -82.065042937271059, 28.907247571723591 ], [ -82.064843373795711, 28.907158581492364 ], [ -82.064676100395573, 28.907099657282554 ], [ -82.064521523473303, 28.907054866734331 ], [ -82.06436089347585, 28.907019941882997 ], [ -82.064128612599006, 28.906991229590993 ], [ -82.06394696522888, 28.906980834080677 ], [ -82.063738527446944, 28.90698879368562 ], [ -82.063622402177018, 28.906999327360722 ], [ -82.063488413013616, 28.907015112527688 ], [ -82.063356820284568, 28.907034385627274 ], [ -82.063258051137524, 28.907058264894975 ], [ -82.063135389225323, 28.907091968570615 ], [ -82.062561926364324, 28.907292715040555 ], [ -82.062044217015682, 28.907479413749066 ], [ -82.061819612283301, 28.907560830153585 ], [ -82.061714028678992, 28.907608089902784 ], [ -82.061647584026247, 28.907643625429522 ], [ -82.061589005272026, 28.907678891183306 ], [ -82.061489907666939, 28.907746038955889 ], [ -82.061430987617058, 28.90779934171178 ], [ -82.061373662461762, 28.907856847523409 ], [ -82.061315195145738, 28.907925311319726 ], [ -82.061257441515409, 28.908009714746751 ], [ -82.061217647820428, 28.908075624706605 ], [ -82.061181043980795, 28.908149945333431 ], [ -82.061147636122371, 28.908239686571719 ], [ -82.061127816653908, 28.908305322244669 ], [ -82.061074341737879, 28.908520201211832 ], [ -82.060969576018707, 28.908908503860555 ], [ -82.060926654622591, 28.909079563387966 ], [ -82.060909180685968, 28.909169295611392 ], [ -82.060902853605214, 28.909250613433347 ], [ -82.060914088641582, 28.909390805471656 ], [ -82.060934957378421, 28.909505450972627 ], [ -82.060950834317296, 28.909561830186153 ], [ -82.060985937549091, 28.909650136666773 ], [ -82.061029009852646, 28.909737038293624 ], [ -82.061059308929757, 28.909784693929826 ], [ -82.061103958188113, 28.909846358485762 ], [ -82.061154982336859, 28.909910827204236 ], [ -82.061202814742842, 28.90996548215584 ], [ -82.061258609468112, 28.910015927897966 ], [ -82.061339907335054, 28.910080380194678 ], [ -82.061447514788412, 28.910147165622789 ], [ -82.061829221994827, 28.910356347050822 ], [ -82.062373914851932, 28.910647197164685 ], [ -82.062689895900462, 28.910815798413704 ], [ -82.062774377017703, 28.910874641494257 ], [ -82.062849302570001, 28.910936293277146 ], [ -82.062952939140956, 28.911052608185521 ], [ -82.063062116304792, 28.911178775323393 ], [ -82.063493477137953, 28.911702870094945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 223", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070272532872423, 28.908256356526639 ], [ -82.070272257269366, 28.909096718785083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 104th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070269474372864, 28.908135831117118 ], [ -82.069572676816364, 28.908138809192028 ], [ -82.069266008817451, 28.908201851492908 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 104th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069266008817451, 28.908201851492908 ], [ -82.069581688526412, 28.908256712202554 ], [ -82.070272532872423, 28.908256356526639 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 104th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069266008817451, 28.908201851492908 ], [ -82.069173698854314, 28.908201899435465 ], [ -82.068378021970574, 28.908208201498301 ], [ -82.067994507869685, 28.908212974951372 ], [ -82.067872949854234, 28.908215464718484 ], [ -82.067798070460597, 28.908225316388837 ], [ -82.067740719780105, 28.90823655964336 ], [ -82.06767859547098, 28.908261825138897 ], [ -82.067618068644208, 28.908288493784468 ], [ -82.067544801633517, 28.90832778645537 ], [ -82.067467555442207, 28.908388787615731 ], [ -82.067333002082975, 28.90849893096156 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 105", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035135434170755, 28.932318937093854 ], [ -82.0351354773059, 28.932319107616362 ], [ -82.035289924591424, 28.932929449996568 ], [ -82.035450117131347, 28.933581321441125 ], [ -82.035651779315828, 28.934411784586086 ], [ -82.035693744592436, 28.934575310795694 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 105", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032888201010266, 28.927490201445533 ], [ -82.032853082349959, 28.928449628122419 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034276510410933, 28.927497122406479 ], [ -82.03470743950011, 28.927497014642086 ], [ -82.035072229598057, 28.927499073548944 ], [ -82.035574122952454, 28.927498944791253 ], [ -82.035968918614046, 28.927500274328693 ], [ -82.036114269438954, 28.927484607353648 ], [ -82.036277385125203, 28.927468933703022 ], [ -82.03628121380639, 28.927468965169343 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 108", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035243709920167, 28.925171452045472 ], [ -82.03526433622001, 28.926597125310217 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ellenton Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956690693422914, 28.868937438407745 ], [ -81.956801950058889, 28.868964495499348 ], [ -81.957130198353752, 28.868988519805001 ], [ -81.957198116422802, 28.868998939603006 ], [ -81.957257172699443, 28.869019754687592 ], [ -81.957313265115218, 28.869066563252559 ], [ -81.957348679966159, 28.869121166542065 ], [ -81.957366362821261, 28.869209556345488 ], [ -81.957363290003158, 28.869500704184379 ], [ -81.957357211567128, 28.869921829597782 ], [ -81.957357057741461, 28.870296163438912 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ellenton Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955998383570432, 28.868588308180012 ], [ -81.956308728913484, 28.868743946668229 ], [ -81.956502095336432, 28.868849100654469 ], [ -81.956621539255892, 28.86890977765065 ], [ -81.956690693422914, 28.868937438407745 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ellenton Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955177030211374, 28.868487148352692 ], [ -81.955437314464106, 28.868449400465089 ], [ -81.955542379885358, 28.86844313088092 ], [ -81.955666540856726, 28.868451578667198 ], [ -81.955771591939509, 28.868478937736228 ], [ -81.955871859945958, 28.868518905740409 ], [ -81.955998383570432, 28.868588308180012 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Irdell Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95591585233808, 28.87035288796605 ], [ -81.955909729033593, 28.869934274267052 ], [ -81.955909964947679, 28.869381256480992 ], [ -81.955919456506948, 28.868897252530761 ], [ -81.955919480472033, 28.868838401626981 ], [ -81.955938619100451, 28.8687543340133 ], [ -81.955998383570432, 28.868588308180012 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odyssey Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955178615659051, 28.870349381296382 ], [ -81.955489031561157, 28.870347383037249 ], [ -81.95591585233808, 28.87035288796605 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landale Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959724807092499, 28.872936486160079 ], [ -81.960304828022544, 28.872285961561552 ], [ -81.960673776236732, 28.871878105706688 ], [ -81.960783462244365, 28.871756769953258 ], [ -81.960836648146227, 28.871685136325166 ], [ -81.960874875963796, 28.871632506226689 ], [ -81.960911449250702, 28.871560865921428 ], [ -81.96093306552838, 28.871508231870941 ], [ -81.960941391049673, 28.871457056583871 ], [ -81.960934764178134, 28.871407338677002 ], [ -81.960909863595774, 28.871362001544561 ], [ -81.960876655705476, 28.8713195872526 ], [ -81.960828493817516, 28.871283015512578 ], [ -81.960772021706774, 28.871262528483733 ], [ -81.960378921090481, 28.87114962071205 ], [ -81.960315236517047, 28.871132256037878 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landale Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960315236517047, 28.871132256037878 ], [ -81.959912840173985, 28.871025379661805 ], [ -81.95979533218042, 28.870991724731034 ], [ -81.959727225253928, 28.87098585559707 ], [ -81.959675726752579, 28.870990228041972 ], [ -81.95962255931056, 28.871010682610368 ], [ -81.959561075722206, 28.871061841822286 ], [ -81.959504569957375, 28.871123239131816 ], [ -81.959265251098486, 28.871389295539188 ], [ -81.958861398668986, 28.871839543299092 ], [ -81.958568891531499, 28.872165533829413 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Joiner Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974996835375109, 28.869533633720696 ], [ -81.975211256653836, 28.869709983587647 ], [ -81.975570066601335, 28.870019718103777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barker Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979302053576632, 28.870828393653845 ], [ -81.979603545763055, 28.870828439050715 ], [ -81.979870654860974, 28.870828480408811 ], [ -81.980018756890956, 28.870833158495198 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barker Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980018756890956, 28.870833158495198 ], [ -81.980219744259387, 28.87086112186152 ], [ -81.98076221376752, 28.870947042482918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fillmore Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986775521049992, 28.866020542298536 ], [ -81.98712170107666, 28.866019277788986 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ellis Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984283133738572, 28.868360970760001 ], [ -81.984320905178322, 28.868392150682869 ], [ -81.984366507566648, 28.86839963341837 ], [ -81.984519235761354, 28.868375547086597 ], [ -81.98495585793097, 28.868289690521564 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fairway Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985642536835869, 28.867581238777223 ], [ -81.985738828425596, 28.867566700366975 ], [ -81.985972180413256, 28.867546287040668 ], [ -81.986255501067077, 28.86754908842196 ], [ -81.986649004638551, 28.867560213211529 ], [ -81.986976398405361, 28.867576872354689 ], [ -81.987121908249719, 28.867595140999331 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fairway Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985411820327329, 28.86760719106169 ], [ -81.985566076850873, 28.867587811024517 ], [ -81.985642536835869, 28.867581238777223 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "English Ivy Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985040948627116, 28.868903499112822 ], [ -81.985336092570208, 28.868837025811612 ], [ -81.985520257576894, 28.868805872253386 ], [ -81.985685535532568, 28.868776792617449 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iris Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991591600191228, 28.867711786929505 ], [ -81.990788252756985, 28.867711733514323 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Formosa Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991598874432441, 28.868230102040499 ], [ -81.991591600191228, 28.867711786929505 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bottlebrush Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990650266725723, 28.870657975783292 ], [ -81.990696167454857, 28.870746885635537 ], [ -81.990775732207453, 28.870897760769129 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bottlebrush Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990775732207453, 28.870897760769129 ], [ -81.990909143987253, 28.871156434985444 ], [ -81.991048290483235, 28.871417891247525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bottlebrush Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991048290483235, 28.871417891247525 ], [ -81.991142953045937, 28.871587476419712 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hollyberry Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989144131912539, 28.873248516125635 ], [ -81.989063332417459, 28.873211868793781 ], [ -81.988818400812022, 28.873087389294877 ], [ -81.988558950099787, 28.872946727106083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hollyberry Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988558950099787, 28.872946727106083 ], [ -81.988487944565364, 28.872912235871325 ], [ -81.988328643242681, 28.872835306095435 ], [ -81.988156485399074, 28.872740995733707 ], [ -81.987949902293039, 28.872610986941314 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hollyberry Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987542758576652, 28.873130911329113 ], [ -81.987737694165403, 28.873234087888644 ], [ -81.988260432838146, 28.873503311764257 ], [ -81.988837653797972, 28.873796604403999 ], [ -81.989311114215795, 28.874044585250104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dogwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992261480288562, 28.872121052984067 ], [ -81.992316353787459, 28.872180750737268 ], [ -81.99248291555871, 28.872340962381745 ], [ -81.992756558807685, 28.872559465790033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dogwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992100367092476, 28.871901849727813 ], [ -81.992158952274963, 28.87198695210564 ], [ -81.992261480288562, 28.872121052984067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridgeway Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988340883907483, 28.876938716156339 ], [ -81.98839450928007, 28.876907255765076 ], [ -81.988539497800559, 28.876793647741049 ], [ -81.988877146446981, 28.876484278793505 ], [ -81.989113500752907, 28.876255308489331 ], [ -81.989326021427829, 28.876040320632882 ], [ -81.989459095442001, 28.875900491545313 ], [ -81.989772913150134, 28.875535181083897 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camden Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987842458665426, 28.876487683753719 ], [ -81.987953685959639, 28.876388058046651 ], [ -81.988293319471978, 28.876080438482344 ], [ -81.988549536063132, 28.875832242837589 ], [ -81.988787878045059, 28.875587541611342 ], [ -81.989244697573952, 28.875092892980312 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Branchville Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986764178753958, 28.875730692779232 ], [ -81.987248805664265, 28.87530072982107 ], [ -81.98745735271271, 28.875103223000842 ], [ -81.987600359228423, 28.874947665924029 ], [ -81.987644055423985, 28.874900472350909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Branchville Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98646029945769, 28.875952659292693 ], [ -81.986764178753958, 28.875730692779232 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walterboro Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985288169282171, 28.87646550114901 ], [ -81.985399374917876, 28.876526693070282 ], [ -81.985566181970825, 28.876622851531025 ], [ -81.985876189254228, 28.876792441752286 ], [ -81.986058885017897, 28.876893847267283 ], [ -81.986235622808337, 28.876996997872777 ], [ -81.986497748660014, 28.87717007722085 ], [ -81.986660582352087, 28.877288958395461 ], [ -81.986803559105638, 28.877402592323495 ], [ -81.987002135297487, 28.877575666174813 ], [ -81.98721858097592, 28.877776708298498 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Suffield Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984936571082244, 28.877026573861176 ], [ -81.984961983039781, 28.877041488173663 ], [ -81.985201583441182, 28.877173181607048 ], [ -81.98556361990633, 28.877377082920756 ], [ -81.985756934715738, 28.87748638964074 ], [ -81.985917785259304, 28.877584295678581 ], [ -81.986102463779517, 28.877710170862546 ], [ -81.986259340512817, 28.877830800552633 ], [ -81.986406290332809, 28.877949680384397 ], [ -81.986557206517759, 28.878086040751327 ], [ -81.986640609067422, 28.878166456882624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Backwater Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986080710328494, 28.875430762803948 ], [ -81.985973484301027, 28.875322375123346 ], [ -81.985900012733396, 28.875264683180937 ], [ -81.985820582283878, 28.875213983408006 ], [ -81.985759021180243, 28.875189504601 ], [ -81.985683559257424, 28.875166772033722 ], [ -81.985602164036564, 28.875150925155605 ], [ -81.985494899682024, 28.875130043276481 ], [ -81.985361846710603, 28.875093321272043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Backwater Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985361846710603, 28.875093321272043 ], [ -81.985252627272274, 28.87504611250781 ], [ -81.985117538725547, 28.874966460292001 ], [ -81.984976611057888, 28.874860793903174 ], [ -81.98477207809654, 28.874736660817597 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Backwater Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984320796523832, 28.874287691415653 ], [ -81.984118843347701, 28.873921268645436 ], [ -81.98400562139463, 28.873738056124278 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Backwater Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984009271943322, 28.872584373276339 ], [ -81.984149353225604, 28.872166354912899 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Silverstreet Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982346615932912, 28.874144656571396 ], [ -81.98260005800752, 28.874214217640919 ], [ -81.983024193571467, 28.874332531589396 ], [ -81.983355182755147, 28.874435706425352 ], [ -81.983604533215953, 28.874535463353542 ], [ -81.983906025060165, 28.874709596591043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Little Mountain Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983906025060165, 28.874709596591043 ], [ -81.983769101590326, 28.874884219750673 ], [ -81.983610302248081, 28.875093561581874 ], [ -81.983544873529198, 28.875148213209396 ], [ -81.9834827669129, 28.87517261372339 ], [ -81.983413830864578, 28.875178448488892 ], [ -81.983324196483579, 28.875166406025652 ], [ -81.982875988536264, 28.8749987574678 ], [ -81.982367922859254, 28.874828962878318 ], [ -81.982269986097194, 28.874777762301242 ], [ -81.982233266622501, 28.874723875531167 ], [ -81.982210184133379, 28.874647158705578 ], [ -81.982214924543626, 28.874586474082268 ], [ -81.982260861831747, 28.874432915525666 ], [ -81.982346615932912, 28.874144656571396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Little Mountain Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982346615932912, 28.874144656571396 ], [ -81.982417312931958, 28.873909437425421 ], [ -81.982524243892371, 28.873530423915327 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Little Mountain Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982524243892371, 28.873530423915327 ], [ -81.982558791204582, 28.873353911870314 ], [ -81.982613091683703, 28.873034720361023 ], [ -81.982628416392004, 28.872910792885474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heath Springs Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97880845740211, 28.878090646661914 ], [ -81.978768556233234, 28.877869311071073 ], [ -81.978717520398476, 28.877517990764872 ], [ -81.978657711293323, 28.877065320644817 ], [ -81.978638913723657, 28.876723213399131 ], [ -81.978638977917029, 28.876414322890017 ], [ -81.978642794564195, 28.876201755534048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dundee Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970930313419018, 28.874453915864013 ], [ -81.970989581289558, 28.874128895000318 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dundee Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970989581289558, 28.874128895000318 ], [ -81.971017719674464, 28.873993009822179 ], [ -81.971158094151036, 28.873264404633701 ], [ -81.971226959254324, 28.872896609308466 ], [ -81.971269296580019, 28.872819795438932 ], [ -81.971346012545467, 28.872749974533896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Adriana Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971739367641746, 28.874122072227102 ], [ -81.971733436416514, 28.874046993997176 ], [ -81.971741391837526, 28.873973667356282 ], [ -81.971824820784491, 28.873535455532743 ], [ -81.971907621739078, 28.87301786974092 ], [ -81.971919739163582, 28.87298108810878 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iverson Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972393892669004, 28.874310768175128 ], [ -81.972415739189245, 28.874209508170789 ], [ -81.972437590143286, 28.874083805690528 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iverson Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972437590143286, 28.874083805690528 ], [ -81.972493215142947, 28.873766057757923 ], [ -81.972558378364099, 28.873452196152716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Braemar Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970989581289558, 28.874128895000318 ], [ -81.971055032171179, 28.87415160566205 ], [ -81.97113404088573, 28.87416064391557 ], [ -81.971288852228312, 28.874147737237674 ], [ -81.971739367641746, 28.874122072227102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Braemar Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971739367641746, 28.874122072227102 ], [ -81.971822678562376, 28.874116850995758 ], [ -81.972223364289732, 28.874087253380207 ], [ -81.972437590143286, 28.874083805690528 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orwell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972558378364099, 28.873452196152716 ], [ -81.972716056141522, 28.873584953437799 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orwell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971919739163582, 28.87298108810878 ], [ -81.972039432730696, 28.873033366373658 ], [ -81.972215151600835, 28.873159913855616 ], [ -81.972558378364099, 28.873452196152716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orwell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971346012545467, 28.872749974533896 ], [ -81.97144914107794, 28.87280586621204 ], [ -81.971652620423654, 28.872891649795214 ], [ -81.971919739163582, 28.87298108810878 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Adriana Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971919739163582, 28.87298108810878 ], [ -81.971996589658943, 28.872822277265616 ], [ -81.972057451959103, 28.87270356768952 ], [ -81.972200308626043, 28.872545299214643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baisley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974088556351148, 28.878935728971438 ], [ -81.974386487503821, 28.878949857663226 ], [ -81.974625583279419, 28.879021244563784 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Turbeville Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968520360875559, 28.883626443362449 ], [ -81.96870272536853, 28.883779810478412 ], [ -81.969051642074106, 28.884076570787027 ], [ -81.969376148684688, 28.884362323752637 ], [ -81.969684453811951, 28.884626415233843 ], [ -81.969952335234183, 28.884880183645368 ], [ -81.970321347415194, 28.885269078176666 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powderville Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975968338572358, 28.881507992917388 ], [ -81.976187339951352, 28.881533188212661 ], [ -81.976458941445941, 28.881553741047519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rock Hill Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974979874690064, 28.881556360211054 ], [ -81.975306792954598, 28.881554542297209 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pendleton Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977050258041416, 28.885793481960764 ], [ -81.976948099178557, 28.885750378631286 ], [ -81.976841048700564, 28.885686135271236 ], [ -81.976733148874771, 28.885615461881326 ], [ -81.976637384666475, 28.885540513616593 ], [ -81.976552260317931, 28.885465566245045 ], [ -81.976488420388407, 28.885396242089833 ], [ -81.976420324960358, 28.885317551269829 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pendleton Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976420324960358, 28.885317551269829 ], [ -81.976348002103123, 28.885120840499653 ], [ -81.976289928514831, 28.884908269757247 ], [ -81.976260796935293, 28.884851067730509 ], [ -81.976218237677486, 28.884800480788243 ], [ -81.976167159463017, 28.884774245421671 ], [ -81.976113951786445, 28.884757375540804 ], [ -81.976060741359035, 28.884748001053406 ], [ -81.97578900618619, 28.884772732082002 ], [ -81.975333944496526, 28.884801525362889 ], [ -81.97507736067061, 28.884813386421861 ], [ -81.97498370738721, 28.884809622604877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pendleton Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97498370738721, 28.884809622604877 ], [ -81.974785765903263, 28.884770245155615 ], [ -81.974677219350554, 28.884745871569066 ], [ -81.974564659904559, 28.88473503435586 ], [ -81.974470757321797, 28.884736465584616 ], [ -81.974420947118702, 28.884745876103768 ], [ -81.974370713614249, 28.88475892640599 ], [ -81.974293172232834, 28.884797892755572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walhalla Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976901556080037, 28.886138910403517 ], [ -81.977050258041416, 28.885793481960764 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shellbark Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971061843471119, 28.887707995856054 ], [ -81.971113008496928, 28.887728634389564 ], [ -81.971118671255468, 28.887731042045896 ], [ -81.971428589159174, 28.887861398887356 ], [ -81.971691642899444, 28.887969400549387 ], [ -81.971743004489809, 28.887980756918232 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shellbark Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971743004489809, 28.887980756918232 ], [ -81.971901977410894, 28.888015854652821 ], [ -81.972249236109448, 28.88802211680834 ], [ -81.973006649395629, 28.888006800712727 ], [ -81.973883205307601, 28.887982222581165 ], [ -81.974763166652878, 28.887961899150767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Poppy Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97091305444043, 28.888271758958837 ], [ -81.970913061413498, 28.888247007953499 ], [ -81.970913071582899, 28.88821091142135 ], [ -81.970913090081737, 28.888145249207721 ], [ -81.970916630108277, 28.888062054252604 ], [ -81.970927197552598, 28.887984706826614 ], [ -81.970962185953482, 28.887882957460882 ], [ -81.971061843471119, 28.887707995856054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tanglewood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97161563909718, 28.889331723812663 ], [ -81.972489798626711, 28.889312854082281 ], [ -81.973273828360462, 28.889290844181705 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tanglewood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973273828360462, 28.889290844181705 ], [ -81.97366111904131, 28.889282608007569 ], [ -81.974382172960034, 28.889268892152881 ], [ -81.974499670197702, 28.889286288374809 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Longwood Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97302052647315, 28.890152944126832 ], [ -81.973091433012215, 28.889920188361192 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Longwood Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973091433012215, 28.889920188361192 ], [ -81.973273828360462, 28.889290844181705 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drakeswood Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97158004490332, 28.889951049839205 ], [ -81.971643808050672, 28.889951064250894 ], [ -81.972331016473291, 28.889934581245118 ], [ -81.973091433012215, 28.889920188361192 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drakeswood Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971225812664613, 28.889961366934578 ], [ -81.97158004490332, 28.889951049839205 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Astor Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969782234337018, 28.891891642310263 ], [ -81.969807035649978, 28.891773276054415 ], [ -81.969816054522084, 28.891662801364355 ], [ -81.969819986601962, 28.891511474790875 ], [ -81.969831821023007, 28.891417953144412 ], [ -81.969853107171517, 28.891307807839329 ], [ -81.969940812663907, 28.890919316932361 ], [ -81.969964252988802, 28.890779943873472 ], [ -81.96997843655015, 28.890734222987312 ], [ -81.970016239186037, 28.890678118300464 ], [ -81.970070565511065, 28.890634485278216 ], [ -81.970134334059196, 28.890613716821861 ], [ -81.970216687817313, 28.890606542010683 ], [ -81.970594839384376, 28.890601347961436 ], [ -81.970724909898195, 28.890598697509382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lucky Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970627984448655, 28.891238694982462 ], [ -81.970971594056053, 28.891228494462254 ], [ -81.971343676045635, 28.891216303270145 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridgeville Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971339396044954, 28.891860541038742 ], [ -81.971606980398192, 28.891852347378585 ], [ -81.972060993012235, 28.891835294614285 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridgeville Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972060993012235, 28.891835294614285 ], [ -81.972271942004298, 28.891829901182067 ], [ -81.972595144425611, 28.891822511084115 ], [ -81.972762192928897, 28.891824675486777 ], [ -81.97285418879278, 28.891838543566578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bugle Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970616496017612, 28.892532756800666 ], [ -81.97061944058693, 28.891956513456751 ], [ -81.970621275197985, 28.891367872216069 ], [ -81.970627984448655, 28.891238694982462 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bugle Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970627984448655, 28.891238694982462 ], [ -81.970643023471979, 28.891140347559059 ], [ -81.970683119698435, 28.89091723013097 ], [ -81.970716523534108, 28.890760168621398 ], [ -81.970724909898195, 28.890598697509382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eagle Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979995857890245, 28.887239522974173 ], [ -81.980050631111098, 28.887239694475522 ], [ -81.980135004988128, 28.887239707040184 ], [ -81.980303555896938, 28.887239731982042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eagle Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980303555896938, 28.887239731982042 ], [ -81.980310586967931, 28.88723973301791 ], [ -81.980498435422419, 28.887242277976302 ], [ -81.98064159533125, 28.887242298788255 ], [ -81.98076800030465, 28.887239636302454 ], [ -81.980876134734714, 28.887224907323514 ], [ -81.980965993465219, 28.887198113699206 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eagle Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980965993465219, 28.887198113699206 ], [ -81.98105280769542, 28.887168637945251 ], [ -81.981230513651326, 28.887091352992357 ], [ -81.981448297469328, 28.886998906601033 ], [ -81.981616862897965, 28.886921580165605 ], [ -81.981785410055252, 28.886859119824123 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eagle Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981785410055252, 28.886859119824123 ], [ -81.981943437719949, 28.886816429967524 ], [ -81.982150664725026, 28.886770047076038 ], [ -81.982357894029619, 28.886727102534277 ], [ -81.982477425302321, 28.886705804121558 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eagle Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982477425302321, 28.886705804121558 ], [ -81.982515901292928, 28.886699277409033 ], [ -81.982677424490149, 28.886674546544157 ], [ -81.982822581471027, 28.886658204778843 ], [ -81.982984015945803, 28.886642141036877 ], [ -81.983171342044869, 28.886635463394686 ], [ -81.98334108398096, 28.886631315154787 ], [ -81.98341349334116, 28.886628791414207 ], [ -81.98348659729362, 28.886616737618994 ], [ -81.983565795034465, 28.886599323062924 ], [ -81.983640422536396, 28.886573865692434 ], [ -81.983695254485312, 28.886544384308337 ], [ -81.983751608696252, 28.886509542517654 ], [ -81.983867862000935, 28.886408956390508 ], [ -81.983966310789299, 28.886316147661447 ], [ -81.984027304154154, 28.88626027097051 ], [ -81.984092800539273, 28.886195942033378 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gadsden Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988538668849998, 28.891102688122913 ], [ -81.988543485568258, 28.89110286629148 ], [ -81.988811130656259, 28.891109242200059 ], [ -81.989064454055054, 28.891121982126776 ], [ -81.989288673746316, 28.891147441665776 ], [ -81.989549215812644, 28.891223779898276 ], [ -81.989831436911032, 28.891338623149114 ], [ -81.990287279162686, 28.89158067590709 ], [ -81.990555045856297, 28.891714426082473 ], [ -81.990736090819496, 28.891848168782122 ], [ -81.990848971653364, 28.891978466973466 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blenheim Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989351160798279, 28.893054022252361 ], [ -81.989836188420668, 28.892685571785837 ], [ -81.990060230094016, 28.892514702156657 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sunset Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988538668849998, 28.891102688122913 ], [ -81.988543375594773, 28.890924267668794 ], [ -81.988507286348479, 28.890542328040382 ], [ -81.988514522272283, 28.890446757913889 ], [ -81.988572344026025, 28.890376631602916 ], [ -81.988659265399207, 28.890319573063181 ], [ -81.988840127967094, 28.890306523973578 ], [ -81.989078994155875, 28.890319607336814 ], [ -81.989361221392627, 28.890338538861105 ], [ -81.989694028504005, 28.890414884399526 ], [ -81.989940117479861, 28.890485033686623 ], [ -81.990446737295812, 28.890733622431199 ], [ -81.990945939058676, 28.89098839492673 ], [ -81.991430883188315, 28.891249353518759 ], [ -81.991611737388709, 28.891338748785802 ], [ -81.991614862402812, 28.891339092760475 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anderson Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987977335653696, 28.887783124612621 ], [ -81.988164468975654, 28.887545933755554 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anderson Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988164468975654, 28.887545933755554 ], [ -81.988550844899109, 28.88705608594093 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avignon Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989840160077975, 28.888116742531121 ], [ -81.990049588189493, 28.887543682855352 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lime Grove Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98826961736421, 28.886928176517355 ], [ -81.988550844899109, 28.88705608594093 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lime Grove Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988550844899109, 28.88705608594093 ], [ -81.988833438621555, 28.887185027122534 ], [ -81.989105102211923, 28.887292651761467 ], [ -81.989281851678257, 28.887334605989516 ], [ -81.989981623740164, 28.88752614513238 ], [ -81.990049588189493, 28.887543682855352 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lime Grove Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990049588189493, 28.887543682855352 ], [ -81.990375549892065, 28.887627588407312 ], [ -81.990720573169611, 28.887702886557648 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mount Pleasant Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991853125802507, 28.889212844879712 ], [ -81.992007052329271, 28.888947457910202 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mount Pleasant Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992007052329271, 28.888947457910202 ], [ -81.992025415093678, 28.888915831580022 ], [ -81.992073476055495, 28.888746008868225 ], [ -81.992108060231487, 28.888533899010852 ], [ -81.992142461220979, 28.888224845942467 ], [ -81.992166687973366, 28.888092149628644 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mount Pleasant Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992166687973366, 28.888092149628644 ], [ -81.99219756117904, 28.887921982054227 ], [ -81.992300949488239, 28.88747521120014 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bamberg Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992634756765199, 28.889287834085284 ], [ -81.992722257306198, 28.889091847534267 ], [ -81.992758910192322, 28.888993079220498 ], [ -81.992781821252947, 28.888912449994539 ], [ -81.992800149401504, 28.888831824122612 ], [ -81.992809316756109, 28.888753210780379 ], [ -81.992824066799983, 28.888558348936595 ], [ -81.992830922688213, 28.888302579556566 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clinton Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993221062477971, 28.889594515098917 ], [ -81.99323707805631, 28.889594516825174 ], [ -81.993326736575639, 28.889449103043205 ], [ -81.993384170094032, 28.889317643463862 ], [ -81.993448313652507, 28.889126152330945 ], [ -81.993480384672239, 28.889017304895365 ], [ -81.993501006760596, 28.888906440243133 ], [ -81.993517049306618, 28.888775419769111 ], [ -81.993530810435033, 28.888491202966527 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barnwell Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989505805512991, 28.884202813807079 ], [ -81.989526360727723, 28.88421440639183 ], [ -81.98972004302982, 28.884302524931027 ], [ -81.990093838505473, 28.884431125874762 ], [ -81.990361002850321, 28.884537717259313 ], [ -81.99075608330125, 28.88472235261445 ], [ -81.991158586538674, 28.884920051720883 ], [ -81.99132986170909, 28.884992257969131 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hancock Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990161672638735, 28.883779673048675 ], [ -81.990161672066975, 28.883785518156252 ], [ -81.990371611339341, 28.883889009476182 ], [ -81.990699316036768, 28.884017261615963 ], [ -81.991012567480013, 28.8841647643778 ], [ -81.991329529228622, 28.884321547721996 ], [ -81.991521894628534, 28.884399941289491 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Watson Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993883285172132, 28.884648967228223 ], [ -81.99386923416823, 28.884476045966164 ], [ -81.993887987562232, 28.884389415097893 ], [ -81.993919826675679, 28.884302785734729 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Watson Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993919826675679, 28.884302785734729 ], [ -81.993995616496989, 28.884096522260002 ], [ -81.994164391126915, 28.883560578254659 ], [ -81.99423471540895, 28.883288311035681 ], [ -81.994318909862344, 28.882933879903632 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pixie Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958963484627489, 28.882435841583479 ], [ -81.959531557336248, 28.882438540467117 ], [ -81.959996342470546, 28.882451304772385 ], [ -81.960240425414653, 28.882468120389618 ], [ -81.960973353434397, 28.882545686158036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harston Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960973353434397, 28.882545686158036 ], [ -81.960971786264636, 28.88255565522897 ], [ -81.960925025740863, 28.882777377643414 ], [ -81.960889794174264, 28.882983290565381 ], [ -81.960839323098028, 28.883205011854436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harston Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960839323098028, 28.883205011854436 ], [ -81.960836976755658, 28.883214981597789 ], [ -81.960784177493025, 28.883389947640829 ], [ -81.960743304617139, 28.883539478571578 ], [ -81.960678780176494, 28.883735070444875 ], [ -81.960641639290728, 28.883826504165778 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harston Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960641639290728, 28.883826504165778 ], [ -81.960620331863254, 28.883879439529888 ], [ -81.960573408693278, 28.884013154894312 ], [ -81.960503025527899, 28.884203586493108 ], [ -81.960415262643522, 28.884394356701954 ], [ -81.96039845333614, 28.884434574517858 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harston Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96039845333614, 28.884434574517858 ], [ -81.960350754894336, 28.884548695196301 ], [ -81.960257127509706, 28.884749432180381 ], [ -81.960169180750171, 28.884904105609362 ], [ -81.960084164898618, 28.885047926973328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harston Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960084164898618, 28.885047926973328 ], [ -81.960005208642201, 28.885197643013129 ], [ -81.959929181301206, 28.885336507904903 ], [ -81.959835569280003, 28.885496336059781 ], [ -81.959759344703102, 28.885640356537102 ], [ -81.959731279143554, 28.885690867041721 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flemings Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993995690420476, 28.882888486966642 ], [ -81.99399100425957, 28.882888486752226 ], [ -81.994318909862344, 28.882933879903632 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flemings Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994318909862344, 28.882933879903632 ], [ -81.994553267444047, 28.882966548655332 ], [ -81.995013392087472, 28.883028446839784 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flemings Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995013392087472, 28.883028446839784 ], [ -81.995199901541113, 28.883053204861856 ], [ -81.995467069818886, 28.883090343228709 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Williamsburg Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990282852570331, 28.888881337448428 ], [ -81.990473144956738, 28.888412405782248 ], [ -81.990585399966136, 28.88815440093019 ], [ -81.9906610029023, 28.887930660972206 ], [ -81.990688876975568, 28.887844843308244 ], [ -81.990720573169611, 28.887702886557648 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Williamsburg Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991148487203631, 28.886485270812777 ], [ -81.991381323352243, 28.886134633091071 ], [ -81.991698729646203, 28.885721089151474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southfield Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992631419583191, 28.878997542230739 ], [ -81.992589050058811, 28.878885468544986 ], [ -81.992416644818576, 28.87838629357508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abercrombie Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989953749862948, 28.877188407535073 ], [ -81.989931287674082, 28.877212814910553 ], [ -81.98949047675751, 28.877620499493595 ], [ -81.98945629754769, 28.877649374962694 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abercrombie Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990233913072188, 28.879973715517725 ], [ -81.990756936746266, 28.879698387649771 ], [ -81.990844823252587, 28.879660921156802 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abercrombie Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990844823252587, 28.879660921156802 ], [ -81.991437951419783, 28.879408628517595 ], [ -81.991502987927731, 28.879380099217908 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bluffton Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991150142193035, 28.878813874436741 ], [ -81.991681037107213, 28.87859852488371 ], [ -81.991772364661841, 28.878562956439012 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bluffton Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991772364661841, 28.878562956439012 ], [ -81.992033336947173, 28.878492511660973 ], [ -81.992416644818576, 28.87838629357508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bluffton Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992416644818576, 28.87838629357508 ], [ -81.992514291039569, 28.878363266084698 ], [ -81.992699603865262, 28.878312608599298 ], [ -81.992818255469501, 28.878272449138425 ], [ -81.992993491516046, 28.878211409714286 ], [ -81.993339613103743, 28.878061816966706 ], [ -81.993590397005789, 28.877931887997875 ], [ -81.993685319535189, 28.877864415733743 ], [ -81.993765754203821, 28.877803318382295 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allendale Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991559136109643, 28.878200258204977 ], [ -81.991566361352113, 28.878200257763414 ], [ -81.991973747578371, 28.878077554699598 ], [ -81.992420192970215, 28.877954508872698 ], [ -81.99270473744437, 28.877871330851864 ], [ -81.992883236842999, 28.87779742852916 ], [ -81.993016430414869, 28.87771458446959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bladewood Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993257209531492, 28.877930146150309 ], [ -81.993251547654239, 28.877930145860326 ], [ -81.993016430414869, 28.87771458446959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bladewood Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993016430414869, 28.87771458446959 ], [ -81.992429626104581, 28.877176883800075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Endsley Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996818271938849, 28.880867589842598 ], [ -81.99718488220644, 28.880806231990768 ], [ -81.997412046333551, 28.880768625268068 ], [ -81.997585231067873, 28.880723098542568 ], [ -81.997762913830343, 28.880647878729459 ], [ -81.997933850152975, 28.880552862070115 ], [ -81.998100287564554, 28.880418254830349 ], [ -81.998286967456153, 28.880236138769881 ], [ -81.998500637629917, 28.880034225376768 ], [ -81.998811021570191, 28.879723437291812 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Endsley Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998811021570191, 28.879723437291812 ], [ -81.999058426188355, 28.879481932129952 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hallandale Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996629364783232, 28.880309348098262 ], [ -81.996881266698125, 28.880261845564526 ], [ -81.997088188904243, 28.880222259240465 ], [ -81.99720064552308, 28.880194547556549 ], [ -81.997358085057812, 28.880143081821959 ], [ -81.997515526336088, 28.880059944207904 ], [ -81.9976369797525, 28.879984722536381 ], [ -81.997785426038419, 28.879850115336087 ], [ -81.998019337732316, 28.87962444814848 ], [ -81.998271242664572, 28.879367110004015 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reedy Creek Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995360575339959, 28.883988978357191 ], [ -81.995725050560054, 28.88406653190701 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Star Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006306842200004, 28.878483627432402 ], [ -82.006910339842648, 28.878375283863313 ], [ -82.006974251830115, 28.878362988814732 ], [ -82.007048640536453, 28.878346585057255 ], [ -82.00712237913973, 28.878328048248228 ], [ -82.007195387675651, 28.878307397340947 ], [ -82.007267591306089, 28.878284654897811 ], [ -82.00733891006729, 28.878259842579336 ], [ -82.007409268097064, 28.878232991971277 ], [ -82.007478590558364, 28.878204131050239 ], [ -82.007541014833507, 28.878176001311552 ], [ -82.007643440968209, 28.878129277539156 ], [ -82.007751321796775, 28.87808249655599 ], [ -82.007860285221554, 28.878037700492662 ], [ -82.007970285117395, 28.87799490829736 ], [ -82.008223429031744, 28.877902679931285 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nautilus Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003847694670156, 28.877926361003823 ], [ -82.004559441177477, 28.87696107203918 ], [ -82.004607612847764, 28.876927155799024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodbreeze Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004607612847764, 28.876927155799024 ], [ -82.004708939981427, 28.877001303067125 ], [ -82.005056676897169, 28.877265995984505 ], [ -82.005104618798086, 28.877320636917872 ], [ -82.005128163285278, 28.877370080485985 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gammon Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001354227613035, 28.875842450958661 ], [ -82.001419174583276, 28.87577662132777 ], [ -82.001438854513793, 28.875741974607163 ], [ -82.001453451641822, 28.875683203055868 ], [ -82.001508718591069, 28.875456141927629 ], [ -82.001555401865147, 28.875216251891864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gammon Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001555401865147, 28.875216251891864 ], [ -82.001583335383955, 28.8750475879147 ], [ -82.001591625258399, 28.874937985177368 ], [ -82.001585277057146, 28.874694715450275 ], [ -82.00158387050503, 28.874595117505244 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gammon Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00158387050503, 28.874595117505244 ], [ -82.001580460321165, 28.874353761528678 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tranquility Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999885980555391, 28.874960270039427 ], [ -82.001043913835574, 28.875140167726467 ], [ -82.001555401865147, 28.875216251891864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Adelphi Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998828953026361, 28.875607210105656 ], [ -81.998943348184454, 28.875482641119394 ], [ -81.999001922199881, 28.875358547982575 ], [ -81.999154497676102, 28.874869415552105 ], [ -81.999378607092652, 28.874162512619005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Adelphi Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999378607092652, 28.874162512619005 ], [ -81.999542083371509, 28.873764417549964 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yankee Clipper Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998281683240819, 28.875249057216571 ], [ -81.998301204641223, 28.875195024007272 ], [ -81.99850263163512, 28.874549296559909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yankee Clipper Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99850263163512, 28.874549296559909 ], [ -81.998632182019321, 28.874137547652779 ], [ -81.998643448400514, 28.874111185204928 ], [ -81.998662803892671, 28.874085282117935 ], [ -81.998672426729684, 28.874076098588407 ], [ -81.998711396662756, 28.874046989827672 ], [ -81.998756799047825, 28.874022500911828 ], [ -81.998789871249372, 28.874009574864047 ], [ -81.998805831208941, 28.874004954333266 ], [ -81.998844097504445, 28.873999433521611 ], [ -81.998882814735936, 28.874001282711038 ], [ -81.998920179749874, 28.874010413458986 ], [ -81.998924731201058, 28.874012074639754 ], [ -81.999134817698319, 28.874091710916453 ], [ -81.999378607092652, 28.874162512619005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Capstan Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997710098502495, 28.874367835073055 ], [ -81.99850263163512, 28.874549296559909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yankee Clipper Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998828953026361, 28.875607210105656 ], [ -81.998937834171898, 28.875694350085162 ], [ -81.999045995768981, 28.875788628083754 ], [ -81.999135906308922, 28.875876485976008 ], [ -81.999199734938742, 28.875945147141994 ], [ -81.999207213115113, 28.875955365768988 ], [ -81.999258063814011, 28.876016971712513 ], [ -81.999315430328693, 28.876073967814545 ], [ -81.999359722623836, 28.876111262043725 ], [ -81.999365660121768, 28.876115335973733 ], [ -81.99941951079731, 28.876147007090797 ], [ -81.99947759534156, 28.876172220429915 ], [ -81.999538922451421, 28.876190544680654 ], [ -81.999602442387413, 28.876201664930822 ], [ -81.999620451828804, 28.876203456976146 ], [ -81.999751740919464, 28.876223411850756 ], [ -81.999883347849831, 28.876243414420113 ], [ -81.999907044703278, 28.876248247197367 ], [ -81.999949310701425, 28.876262657939396 ], [ -81.999987846240415, 28.876283659079522 ], [ -81.999998125182515, 28.87629088111969 ], [ -82.000012156042985, 28.876302223123822 ], [ -82.000040023995638, 28.876332112917087 ], [ -82.000059998479188, 28.876364673485401 ], [ -82.00006287496484, 28.876370910211222 ], [ -82.000075105635531, 28.876408749212001 ], [ -82.000079230626795, 28.876447923585239 ], [ -82.000075399606999, 28.876485684919555 ], [ -82.000027703667129, 28.876718934356919 ], [ -82.000015696215883, 28.876746054800297 ], [ -82.000007836469365, 28.876764778437412 ], [ -82.00000641460052, 28.876768085368433 ], [ -81.999990396806027, 28.876793730556102 ], [ -81.999967635664149, 28.876815066364593 ], [ -81.999959277720066, 28.876820674160953 ], [ -81.999946991451608, 28.87682817588307 ], [ -81.999897161576342, 28.876856901489806 ], [ -81.999892722731403, 28.876859249271554 ], [ -81.999869273749383, 28.876868873178992 ], [ -81.999844284005093, 28.876874766059061 ], [ -81.999818509026355, 28.876876751963884 ], [ -81.999794201036579, 28.876874986997411 ], [ -81.999389754096171, 28.876815889918301 ], [ -81.999276113039642, 28.876796104442057 ], [ -81.999182027546055, 28.876770796020892 ], [ -81.999074311097388, 28.87672956810669 ], [ -81.9989552837323, 28.876665362878999 ], [ -81.998892797381444, 28.876622061724387 ], [ -81.998822113341276, 28.876562860089074 ], [ -81.998739726934232, 28.876475178024702 ], [ -81.998677959991397, 28.876396113123555 ], [ -81.998605036742305, 28.876312121494657 ], [ -81.998525116011777, 28.87623206468113 ], [ -81.99840590675818, 28.876130759899542 ], [ -81.998055746827603, 28.87585191279425 ], [ -81.99804129081943, 28.875838452021522 ], [ -81.998012982780807, 28.875804155963742 ], [ -81.997992086497831, 28.875765961170579 ], [ -81.997979274417375, 28.875725097494385 ], [ -81.997976632015735, 28.875709243998941 ], [ -81.997975362351113, 28.875689245348511 ], [ -81.997979535438134, 28.875653147906903 ], [ -81.997991875640267, 28.875618525860855 ], [ -81.998011882657778, 28.875586801228661 ], [ -81.998016312334073, 28.875581414553814 ], [ -81.998059610531186, 28.875530775317067 ], [ -81.998193995966801, 28.875376794923159 ], [ -81.998229635143815, 28.875334820328678 ], [ -81.998260450141487, 28.875289845501133 ], [ -81.998281683240819, 28.875249057216571 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yankee Clipper Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998281683240819, 28.875249057216571 ], [ -81.99835107420887, 28.875267620329815 ], [ -81.998402252914261, 28.87528703674954 ], [ -81.998460463746312, 28.875317921502372 ], [ -81.99850038550332, 28.875345696672255 ], [ -81.998620569967386, 28.875441269065739 ], [ -81.998828953026361, 28.875607210105656 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yankee Clipper Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997248258284372, 28.873016431890136 ], [ -81.997051330031724, 28.873205892121497 ], [ -81.996971957247624, 28.873280455663103 ], [ -81.99669674384613, 28.873505059088021 ], [ -81.996447639641445, 28.873703852297044 ], [ -81.996434241101682, 28.873715250717012 ], [ -81.99640737505409, 28.873745318305584 ], [ -81.996387461099729, 28.87377931741576 ], [ -81.996375214813696, 28.873816019134509 ], [ -81.996371083200046, 28.873854097091527 ], [ -81.996375212910507, 28.873892176182508 ], [ -81.996387455366445, 28.873928880391038 ], [ -81.996407367780691, 28.873962878806282 ], [ -81.996424458603556, 28.873983327262135 ], [ -81.996570129882471, 28.874136356322406 ], [ -81.996745541779077, 28.874327008385311 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinnacle Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997822732449634, 28.873412893213679 ], [ -81.997950270562015, 28.87353718484777 ], [ -81.998036707363411, 28.87362005641798 ], [ -81.998151658629624, 28.873701146311145 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinnacle Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997248258284372, 28.873016431890136 ], [ -81.997500604595359, 28.873194529097464 ], [ -81.997822732449634, 28.873412893213679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinnacle Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996693794632279, 28.872607444649308 ], [ -81.997169298819927, 28.872960703946632 ], [ -81.997248258284372, 28.873016431890136 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinnacle Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996153032281541, 28.872179849125185 ], [ -81.996693794632279, 28.872607444649308 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lorelei Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995454105290463, 28.871806699060294 ], [ -81.995351458371829, 28.871891717637574 ], [ -81.995177096171375, 28.871997871755319 ], [ -81.995136214261876, 28.872026355038354 ], [ -81.995080490402486, 28.872068755772482 ], [ -81.994890709613372, 28.872246308158829 ], [ -81.994872075416168, 28.872267956381531 ], [ -81.9948596888879, 28.872294276971203 ], [ -81.994858596962359, 28.872298142393607 ], [ -81.994852860159369, 28.872325012746099 ], [ -81.994848674098478, 28.872375311451879 ], [ -81.994852854829347, 28.872425611388884 ], [ -81.994853443051596, 28.872429013093598 ], [ -81.994856210189766, 28.872440507637851 ], [ -81.994868831749827, 28.872467329986595 ], [ -81.994884161016657, 28.872485948702902 ], [ -81.995207691961014, 28.872803724034057 ], [ -81.995302469817588, 28.872895838153905 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lorelei Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995302469817588, 28.872895838153905 ], [ -81.995625389442495, 28.873209672988573 ], [ -81.99564113131332, 28.873222331019068 ], [ -81.995687654059765, 28.873252986498905 ], [ -81.995714835991706, 28.873267085876876 ], [ -81.995747024606516, 28.873279198542651 ], [ -81.99578694371138, 28.873286668201832 ], [ -81.995827756010172, 28.873286668616181 ], [ -81.99586767474517, 28.87327920333723 ], [ -81.99590495825008, 28.873264591726031 ], [ -81.995917950671327, 28.873257375518161 ], [ -81.995954971107665, 28.87323342054032 ], [ -81.995994049113875, 28.873204404599864 ], [ -81.996210159181445, 28.873032121808976 ], [ -81.996459102477544, 28.872829255117214 ], [ -81.996693794632279, 28.872607444649308 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neptune Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995302469817588, 28.872895838153905 ], [ -81.995702907177673, 28.872575658109714 ], [ -81.995896287325706, 28.87242149600025 ], [ -81.995952818080113, 28.872372245575558 ], [ -81.996153032281541, 28.872179849125185 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neptune Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996153032281541, 28.872179849125185 ], [ -81.996485216113257, 28.87186035042761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Imperial Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005155937100184, 28.886970125708668 ], [ -82.005491458366862, 28.887014985417391 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Imperial Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005491458366862, 28.887014985417391 ], [ -82.00615845206697, 28.887104162014761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Imperial Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00615845206697, 28.887104162014761 ], [ -82.006535192949329, 28.887154237232131 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marlin Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00546169074822, 28.885319900549682 ], [ -82.006079048314646, 28.8850363451166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marlin Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006079048314646, 28.8850363451166 ], [ -82.00638937456003, 28.884888754545543 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eldridge Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003401462216075, 28.887274646621844 ], [ -82.003190128668933, 28.886657625027901 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ashwood Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001007552698155, 28.889591304656086 ], [ -82.001379110784328, 28.889591303061934 ], [ -82.001572968575104, 28.88961262769579 ], [ -82.001767975020542, 28.889655969075033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ashwood Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001767975020542, 28.889655969075033 ], [ -82.002155689834382, 28.889746601283051 ], [ -82.002398011512625, 28.889794580828514 ], [ -82.002561578399082, 28.889805241951539 ], [ -82.002719085803463, 28.889805239583946 ], [ -82.003224933094288, 28.889807897032973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Irmo Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957412800307338, 28.903717337826578 ], [ -81.957605171765735, 28.903685571970986 ], [ -81.957898591695923, 28.903634098001461 ], [ -81.957994505021375, 28.90362965987973 ], [ -81.958206318684148, 28.903628405056967 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Irmo Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957093349688506, 28.903769978111097 ], [ -81.957412800307338, 28.903717337826578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggett Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957083555207845, 28.901949678880555 ], [ -81.95739800793389, 28.902043629861332 ], [ -81.957438633826214, 28.902052924698335 ], [ -81.957447617370093, 28.902054990201918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jefferson Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954125435895463, 28.903795743279836 ], [ -81.955118525975422, 28.903786601289664 ], [ -81.956699158930419, 28.903765039537589 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leesville Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954123884445096, 28.903160721381301 ], [ -81.955467778480113, 28.903149801423197 ], [ -81.956699977103966, 28.903136935434095 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pageland Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956703971203169, 28.90440549786284 ], [ -81.956699158930419, 28.903765039537589 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pageland Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956699158930419, 28.903765039537589 ], [ -81.956698800550186, 28.903685282560904 ], [ -81.956699977103966, 28.903136935434095 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pageland Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956699977103966, 28.903136935434095 ], [ -81.956698089316191, 28.902503810009787 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pageland Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956698089316191, 28.902503810009787 ], [ -81.95670027802835, 28.902416612583757 ], [ -81.956702603633488, 28.902009063108427 ], [ -81.956691856560624, 28.901950296540907 ], [ -81.956674643595008, 28.901901006531912 ], [ -81.956642354028929, 28.901847920191518 ], [ -81.956610059503149, 28.901804310684035 ], [ -81.956534692243167, 28.901737941178858 ], [ -81.95643778053298, 28.901677250023461 ], [ -81.956175158630117, 28.90149317499786 ], [ -81.956127688175982, 28.901426932569979 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Starr Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953998116760786, 28.895606321208486 ], [ -81.954649519905402, 28.895608605484398 ], [ -81.955310884652704, 28.895607108390546 ], [ -81.95550444842803, 28.895614048209346 ], [ -81.955638625184875, 28.895636781838448 ], [ -81.955755217920952, 28.895678418126874 ], [ -81.955895228777237, 28.895759250680019 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Katherine Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953998369827872, 28.895035651157734 ], [ -81.954498201484469, 28.895033415956433 ], [ -81.955360943655208, 28.89502614161653 ], [ -81.956025040394749, 28.895024299047819 ], [ -81.956280519274458, 28.895032289347967 ], [ -81.956324265760529, 28.895045710857637 ], [ -81.956368010823496, 28.895064977449028 ], [ -81.956410475986885, 28.895102089290841 ], [ -81.956507598691843, 28.895224533966779 ], [ -81.956593094035185, 28.89535554124274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Katherine Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956593094035185, 28.89535554124274 ], [ -81.95684216774319, 28.895737555903928 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hardeeville Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955660174563889, 28.895947908120256 ], [ -81.955741263772893, 28.895876772329043 ], [ -81.955895228777237, 28.895759250680019 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hardeeville Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955895228777237, 28.895759250680019 ], [ -81.955921021989951, 28.895739320138947 ], [ -81.956163871469826, 28.895590200838676 ], [ -81.956593094035185, 28.89535554124274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Denmark Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965145457974685, 28.899573769911985 ], [ -81.965441775589568, 28.899568689970742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Denmark Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963675559629266, 28.899666199312023 ], [ -81.963956993197229, 28.899626602961369 ], [ -81.964248095669305, 28.899604817275797 ], [ -81.964552801086313, 28.899587042569642 ], [ -81.964827652363354, 28.899580562446602 ], [ -81.965096819929371, 28.899574445714602 ], [ -81.965145457974685, 28.899573769911985 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Denmark Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963344264041311, 28.899707706059711 ], [ -81.963675559629266, 28.899666199312023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Janeann Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963675559629266, 28.899666199312023 ], [ -81.963641093629974, 28.8993616045063 ], [ -81.9636547132434, 28.899251177623697 ], [ -81.963682566175493, 28.899180444923665 ], [ -81.963765384258949, 28.899000979287901 ], [ -81.96379867168767, 28.898952896638534 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Janeann Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96379867168767, 28.898952896638534 ], [ -81.963958785849897, 28.898554158745309 ], [ -81.964020000077824, 28.898338970517912 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mallory Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962549657408317, 28.897760547951336 ], [ -81.963027554898304, 28.897734342411709 ], [ -81.96338383671501, 28.897725501067406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mallory Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96338383671501, 28.897725501067406 ], [ -81.964090148944777, 28.897698189052353 ], [ -81.964538624932175, 28.897686277128212 ], [ -81.964911118229679, 28.897673998270413 ], [ -81.965180281795298, 28.897668226042846 ], [ -81.96569763353537, 28.897668914299786 ], [ -81.965904718283966, 28.897680725881408 ], [ -81.96604742429183, 28.897688863838908 ], [ -81.966227950892176, 28.897728627743319 ], [ -81.966354317798221, 28.897766392766982 ], [ -81.966426519404763, 28.897816059883169 ], [ -81.966462609354934, 28.897869689853326 ], [ -81.966478387195323, 28.897933243637183 ], [ -81.966473850079424, 28.898002751124267 ], [ -81.96632478830702, 28.898354226077672 ], [ -81.966295430037789, 28.898415783475684 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mallory Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96171196506657, 28.897894515850826 ], [ -81.962296228339923, 28.897788797424823 ], [ -81.962549657408317, 28.897760547951336 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mallory Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95976016895824, 28.898606250282675 ], [ -81.960212501868739, 28.898225137630082 ], [ -81.960294558076001, 28.898177032398621 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gayle Mill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966295430037789, 28.898415783475684 ], [ -81.966029156509038, 28.8983422357359 ], [ -81.965821544160065, 28.898306437489573 ], [ -81.965487542900561, 28.898304365073564 ], [ -81.96480249705148, 28.898306518551905 ], [ -81.964352063849134, 28.898322214171131 ], [ -81.964153802489591, 28.898330068172267 ], [ -81.964020000077824, 28.898338970517912 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gayle Mill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964020000077824, 28.898338970517912 ], [ -81.963919597952312, 28.898345819064403 ], [ -81.963721337541614, 28.898353672429305 ], [ -81.96363136861676, 28.898353701298717 ], [ -81.963586171129506, 28.89834572895203 ], [ -81.96354563401708, 28.898331439055919 ], [ -81.963515856144127, 28.89831634090779 ], [ -81.963488784820555, 28.898296476643345 ], [ -81.963460817084041, 28.898268670994224 ], [ -81.963440067039613, 28.898240072381228 ], [ -81.963420222018229, 28.89820670987206 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gayle Mill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963420222018229, 28.89820670987206 ], [ -81.963407604962683, 28.898155078675781 ], [ -81.96338383671501, 28.897725501067406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Natalie Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962909985488082, 28.899219198382958 ], [ -81.962992521910763, 28.899019712934962 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Varnville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953997904738941, 28.891679700472856 ], [ -81.955625474587421, 28.891680248244665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbett Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955964378603213, 28.889311735317271 ], [ -81.956035914869233, 28.889188343927906 ], [ -81.956151628862671, 28.888973519695135 ], [ -81.956205384812719, 28.888864561011719 ], [ -81.956275761090566, 28.88871160433326 ], [ -81.956293165811189, 28.88866279193963 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 100B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958601749132256, 28.905636315459319 ], [ -81.958605150001503, 28.905734922356057 ], [ -81.958608367304052, 28.907252716760681 ], [ -81.958604354467781, 28.908333755876129 ], [ -81.958604433528762, 28.908425871480546 ], [ -81.958599122392968, 28.908524266315037 ], [ -81.958583629548414, 28.908594568573783 ], [ -81.958544941763407, 28.908658061241773 ], [ -81.958507026845851, 28.908699195199283 ], [ -81.958446963414104, 28.908737411474867 ], [ -81.958387673790511, 28.908750999747095 ], [ -81.958351584663788, 28.908760062053993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 100B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958351584663788, 28.908760062053993 ], [ -81.958016504459991, 28.908759957611696 ], [ -81.957031886370146, 28.90875284076003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 100B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957031886370146, 28.90875284076003 ], [ -81.95599313545695, 28.908759309227328 ], [ -81.954583228642903, 28.908740695153195 ], [ -81.953647641957573, 28.908703204222171 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 105th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959799808269153, 28.909676772720694 ], [ -81.95939150616077, 28.909593923476514 ], [ -81.95896735010848, 28.909436114281323 ], [ -81.958761174504474, 28.909361206370534 ], [ -81.958626671844087, 28.909307630733501 ], [ -81.958554021306497, 28.909257129265246 ], [ -81.958511961519889, 28.9092234614638 ], [ -81.958485201169026, 28.909193165759447 ], [ -81.958462268466292, 28.909156137387328 ], [ -81.958443159683895, 28.90911911290263 ], [ -81.95842405259171, 28.909075356372568 ], [ -81.958401133776761, 28.909001312133341 ], [ -81.958351584663788, 28.908760062053993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 107th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957100786419275, 28.910428910377796 ], [ -81.957185811029618, 28.910517389760042 ], [ -81.957201263876073, 28.910546879065123 ], [ -81.957206403897203, 28.910583169304434 ], [ -81.957195304032098, 28.910620959395157 ], [ -81.957165124154116, 28.91067160654687 ], [ -81.957139334997706, 28.910705618533743 ], [ -81.957082605285152, 28.910762300770113 ], [ -81.957009164595377, 28.910818741226333 ], [ -81.956711340586523, 28.910982177848506 ], [ -81.956579830390282, 28.911106874359383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Murphys Estate Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964421646498181, 28.89235339105047 ], [ -81.964618753295511, 28.892417574158554 ], [ -81.964949776457445, 28.892535575434021 ], [ -81.965091555884527, 28.89259783591724 ], [ -81.965176502037693, 28.892649768217936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Murphys Estate Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963710590317504, 28.89223512920357 ], [ -81.963838516918003, 28.892250634585398 ], [ -81.964161750940647, 28.89229953666425 ], [ -81.964329781448285, 28.892333765989946 ], [ -81.964421646498181, 28.89235339105047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Statesburg Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962706015926969, 28.891309749833724 ], [ -81.963946720327712, 28.891697524925533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mount Carmel Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962701424108403, 28.891470891232167 ], [ -81.962704238767941, 28.891387589866444 ], [ -81.962706015926969, 28.891309749833724 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mount Carmel Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962706015926969, 28.891309749833724 ], [ -81.962656786793929, 28.890793726936227 ], [ -81.962700971818251, 28.890677198136423 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cheraw Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962700971818251, 28.890677198136423 ], [ -81.962751357206812, 28.890689930957588 ], [ -81.963032982048318, 28.890745757466849 ], [ -81.963239990416085, 28.890814858355867 ], [ -81.963791686897579, 28.891002366509728 ], [ -81.964198877235177, 28.891123829754793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cheraw Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962317995476724, 28.890578771082001 ], [ -81.962309987101278, 28.890578768832672 ], [ -81.962700971818251, 28.890677198136423 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pace Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958638719431605, 28.88555985913484 ], [ -81.958724378370604, 28.88559905888977 ], [ -81.95876781490891, 28.885606771570934 ], [ -81.958866258191861, 28.885618165347697 ], [ -81.958982459734045, 28.885618200903107 ], [ -81.959490831745939, 28.88563113907523 ], [ -81.959561838650927, 28.885643943380682 ], [ -81.959637684452801, 28.885662430892147 ], [ -81.959731279143554, 28.885690867041721 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abner Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958870776133381, 28.884975221417807 ], [ -81.959379341658206, 28.884986032442388 ], [ -81.959986745550964, 28.885014335081372 ], [ -81.960084164898618, 28.885047926973328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oboe Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958882157900035, 28.884347486007549 ], [ -81.959396972198064, 28.884352800255037 ], [ -81.960034820918949, 28.884373617369267 ], [ -81.96039845333614, 28.884434574517858 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Medford Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958970352568983, 28.883070035113754 ], [ -81.959526368355839, 28.883080518098531 ], [ -81.959961666766858, 28.88309015888807 ], [ -81.960277257327078, 28.883112978906464 ], [ -81.96044939241267, 28.883138280632974 ], [ -81.960839323098028, 28.883205011854436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harston Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958488084661127, 28.886249257062754 ], [ -81.958488164015492, 28.886048507801547 ], [ -81.958492538912623, 28.885868593085583 ], [ -81.958507633095195, 28.8857947363107 ], [ -81.958533479822549, 28.885728459474869 ], [ -81.958583009724137, 28.885637568859561 ], [ -81.958638719431605, 28.88555985913484 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harston Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958638719431605, 28.88555985913484 ], [ -81.958674249431326, 28.885505894440751 ], [ -81.958740457107112, 28.885407906887259 ], [ -81.958803438864507, 28.885308498088182 ], [ -81.958822819115738, 28.885278676674194 ], [ -81.958840586537633, 28.885238909602467 ], [ -81.958859983315122, 28.885162216363664 ], [ -81.958870185483377, 28.884985877410664 ], [ -81.958870776133381, 28.884975221417807 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harston Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958870776133381, 28.884975221417807 ], [ -81.958881985352278, 28.884779958809919 ], [ -81.958876214084242, 28.884558564870265 ], [ -81.958882157900035, 28.884347486007549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harston Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958970352568983, 28.883070035113754 ], [ -81.958970378961624, 28.883003343335016 ], [ -81.958964585284861, 28.88283832962469 ], [ -81.958963395675738, 28.88266058133566 ], [ -81.958963484627489, 28.882435841583479 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harston Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958963484627489, 28.882435841583479 ], [ -81.958958930157408, 28.882323349390397 ], [ -81.958953154773113, 28.882112266871282 ], [ -81.958953205809635, 28.881983350587461 ], [ -81.958976123162103, 28.881912454754239 ], [ -81.959011842890646, 28.88186510928108 ], [ -81.959066535642037, 28.881817789434727 ], [ -81.959144009013016, 28.881798874630459 ], [ -81.959298565883444, 28.881798160033476 ], [ -81.95946242086319, 28.881798208707185 ], [ -81.9595995179873, 28.881802375356045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harston Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9595995179873, 28.881802375356045 ], [ -81.959637991675649, 28.881803418259093 ], [ -81.959789539424435, 28.881808539181794 ], [ -81.959955228766987, 28.881810482638663 ], [ -81.960106115965317, 28.881813871492067 ], [ -81.960247864521307, 28.881825721057375 ], [ -81.960318204668965, 28.881827686327927 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kerwood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9595995179873, 28.881802375356045 ], [ -81.959591200578728, 28.881597480966807 ], [ -81.959591276823986, 28.881401872876665 ], [ -81.959586865748577, 28.881190791667542 ], [ -81.959585719386993, 28.881128224838829 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Darwin Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960318204668965, 28.881827686327927 ], [ -81.960325627543426, 28.881312022378797 ], [ -81.960314577502544, 28.881099564119587 ], [ -81.960300982516941, 28.880899136388102 ], [ -81.960280751173485, 28.880694583168136 ], [ -81.960208847669804, 28.88027790519595 ], [ -81.96015272601592, 28.879957485771346 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lawthorn Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954350338772784, 28.875103467016555 ], [ -81.954612972124792, 28.875191834547003 ], [ -81.955029228462166, 28.87533171408246 ], [ -81.955319706093334, 28.875408559935934 ], [ -81.955606232915784, 28.875469608155765 ], [ -81.956145848904441, 28.87560430333156 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barnsdale Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962732528577988, 28.873760536096185 ], [ -81.963070068346809, 28.874066604647243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hanlon Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959146847408547, 28.872551743009438 ], [ -81.959442679120997, 28.872215515623793 ], [ -81.959889739414962, 28.871721412711423 ], [ -81.960155646903615, 28.871429043830982 ], [ -81.960218802171767, 28.871351562870036 ], [ -81.960237085351338, 28.871325249016078 ], [ -81.960257033540387, 28.871290158953389 ], [ -81.960280315105138, 28.87122875240874 ], [ -81.960315236517047, 28.871132256037878 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rhapsody Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96030664944368, 28.873317330918322 ], [ -81.96038747392727, 28.873372432232756 ], [ -81.960578469974365, 28.873498242339579 ], [ -81.960871373061224, 28.873702635459406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rhapsody Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959724807092499, 28.872936486160079 ], [ -81.959779613571811, 28.872971597643726 ], [ -81.959920784546398, 28.873062298699306 ], [ -81.960085206440283, 28.873170553596324 ], [ -81.960211427068487, 28.873255401175701 ], [ -81.96030664944368, 28.873317330918322 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rhapsody Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959146847408547, 28.872551743009438 ], [ -81.959193349342826, 28.872583926039233 ], [ -81.95934448340553, 28.872681942087294 ], [ -81.959500599594023, 28.872782883829938 ], [ -81.959633464861795, 28.872870658320775 ], [ -81.959724807092499, 28.872936486160079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rhapsody Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958568891531499, 28.872165533829413 ], [ -81.958615393258214, 28.872194792697215 ], [ -81.958758224153357, 28.872289882485472 ], [ -81.958902710695853, 28.872387896990713 ], [ -81.959045539039707, 28.872482987373871 ], [ -81.959146847408547, 28.872551743009438 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rhapsody Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957921136200142, 28.871864111341139 ], [ -81.958118783852882, 28.871953369344997 ], [ -81.958323079096459, 28.872041167390972 ], [ -81.958484186102424, 28.872120177792336 ], [ -81.958568891531499, 28.872165533829413 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boxwood Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00112228793553, 28.889265885978428 ], [ -82.001117111463373, 28.888971043045135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boxwood Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001117111463373, 28.888971043045135 ], [ -82.001113699321579, 28.888353256763939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fiddlewood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99946441842377, 28.88898353771663 ], [ -81.999551312568542, 28.889007028632175 ], [ -81.999640099494854, 28.889013526471835 ], [ -82.00057706901994, 28.888981540432397 ], [ -82.001117111463373, 28.888971043045135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Needlewood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999171367780093, 28.888405734132089 ], [ -81.999520649317546, 28.888393741060987 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Needlewood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999520649317546, 28.888393741060987 ], [ -82.001113699321579, 28.888353256763939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Circlewood Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999432610065384, 28.88930142706571 ], [ -81.99946441842377, 28.88898353771663 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jacaranda Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000926786642395, 28.891133884859261 ], [ -82.000937891927833, 28.890845096396511 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jacaranda Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000937891927833, 28.890845096396511 ], [ -82.000968178090844, 28.890226641592147 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966616609959772, 28.952460073182291 ], [ -81.966572711485099, 28.952311914911498 ], [ -81.966561738673249, 28.952166503309861 ], [ -81.966604669957789, 28.951752882625755 ], [ -81.966635936622808, 28.951422320393984 ], [ -81.966673052340738, 28.95105750136813 ], [ -81.96668475848557, 28.95099070488995 ], [ -81.966708140960435, 28.95094617808039 ], [ -81.966739311592917, 28.950908505208677 ], [ -81.966778270459159, 28.950874257559413 ], [ -81.966834752816382, 28.950850293154463 ], [ -81.967037286844445, 28.950826363876054 ], [ -81.967195027990357, 28.950810986974687 ], [ -81.967377517446579, 28.950793985481809 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971788029292824, 28.944221034074147 ], [ -81.971996527967832, 28.94421107417342 ], [ -81.972205026477525, 28.944197780879001 ], [ -81.972500715311085, 28.944181169443908 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972500715311085, 28.944181169443908 ], [ -81.97282673240521, 28.944157895580471 ], [ -81.972951829082419, 28.94415792094679 ], [ -81.973033326734495, 28.944176277419064 ], [ -81.973111028875394, 28.94421463691625 ], [ -81.973173564563808, 28.944261332318543 ], [ -81.973226621992964, 28.944319696052133 ], [ -81.973260722324312, 28.944379721606968 ], [ -81.973277755502721, 28.94448309350938 ], [ -81.973273916788131, 28.944661483292911 ], [ -81.973275768885969, 28.944833207166404 ], [ -81.973294686423742, 28.944976590716401 ], [ -81.97331739435883, 28.945119976821953 ], [ -81.973349574428397, 28.945280035573695 ], [ -81.973400710919037, 28.94543842974776 ], [ -81.973446166935773, 28.94557181662509 ], [ -81.973477948463952, 28.945635755800023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973477948463952, 28.945635755800023 ], [ -81.973537100073642, 28.945761895436306 ], [ -81.97360719469053, 28.945901955072831 ], [ -81.973679192450973, 28.946013672222112 ], [ -81.973768246249335, 28.94613873037218 ], [ -81.973842694149454, 28.946245794787149 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973842694149454, 28.946245794787149 ], [ -81.973883829700085, 28.946288802497364 ], [ -81.973946360640298, 28.946360504571327 ], [ -81.97404300481449, 28.946462223503314 ], [ -81.97414344022674, 28.946557273349878 ], [ -81.974260932271775, 28.946663998465599 ], [ -81.974389776185006, 28.946779359692485 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974389776185006, 28.946779359692485 ], [ -81.974430118976699, 28.946823311781227 ], [ -81.974463696270419, 28.946864102735788 ], [ -81.974508650235265, 28.946924437708315 ], [ -81.974551139227316, 28.946980521494893 ], [ -81.974620292187737, 28.947075185152492 ], [ -81.974685602119862, 28.947171538039509 ], [ -81.974756671083384, 28.947293244601362 ], [ -81.974810449529798, 28.947399736113059 ], [ -81.974848857301311, 28.947501154726844 ], [ -81.974898787428145, 28.947622857227167 ], [ -81.974931426906878, 28.947737794682954 ], [ -81.974958297992117, 28.947866255511652 ], [ -81.974989004507634, 28.948025136942764 ], [ -81.975008192042083, 28.948141762750602 ], [ -81.975036980608962, 28.94828712385409 ], [ -81.975071532407284, 28.948440937797912 ], [ -81.975098398930641, 28.948589678511013 ], [ -81.975121420072412, 28.948745179377074 ], [ -81.975136748110828, 28.948927721411479 ], [ -81.975130926027106, 28.949171105593873 ], [ -81.975130886956705, 28.949328293948525 ], [ -81.975144313926947, 28.949431397790647 ], [ -81.975159669282675, 28.94950576758529 ], [ -81.975189558385424, 28.949577911415201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fuentez Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963961898216283, 28.925455550065291 ], [ -81.964144817424099, 28.925634552308502 ], [ -81.964255607191888, 28.925735368316204 ], [ -81.964327834137208, 28.925830017608408 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Calzada Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963685646158382, 28.924359730413606 ], [ -81.963714899831203, 28.924364213724246 ], [ -81.963740329220158, 28.924379887167074 ], [ -81.9637606743226, 28.924396678979189 ], [ -81.963789918902421, 28.924421303314986 ], [ -81.963819163738378, 28.924448165337687 ], [ -81.963873835531032, 28.924500772194843 ], [ -81.964012423193395, 28.924632846919064 ], [ -81.964416909806047, 28.925013822041794 ], [ -81.964435977872441, 28.925040681225539 ], [ -81.964445348881455, 28.92506739888023 ], [ -81.964447881993266, 28.925097612920013 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cambio Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963685646158382, 28.924359730413606 ], [ -81.963657666128626, 28.924358604884233 ], [ -81.963639858479056, 28.924361955691378 ], [ -81.963616963694733, 28.924368664361928 ], [ -81.963586431974633, 28.924382083131199 ], [ -81.963559714218334, 28.92440781204818 ], [ -81.963536809315556, 28.924440256881578 ], [ -81.963502449527383, 28.924492837830776 ], [ -81.963471908341177, 28.924538707634348 ], [ -81.963447726888845, 28.924584577360847 ], [ -81.963420999310301, 28.924634924480955 ], [ -81.963312812853701, 28.924850853951082 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cambio Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963312812853701, 28.924850853951082 ], [ -81.963072732194107, 28.925335717745892 ], [ -81.963060323151041, 28.925359213711069 ], [ -81.963050773929979, 28.925384386928641 ], [ -81.963049812913894, 28.925404528606855 ], [ -81.963051711551643, 28.925429705882465 ], [ -81.963056474469639, 28.925449848236259 ], [ -81.963066960299273, 28.925469991264819 ], [ -81.96307728828468, 28.92548412225397 ], [ -81.963097474004513, 28.92550524694277 ], [ -81.963115592919479, 28.925521198199466 ], [ -81.963373063087957, 28.925765481409645 ], [ -81.963401673527969, 28.925783113764037 ], [ -81.963423611520639, 28.925791512906201 ], [ -81.963447457914668, 28.925794875951958 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Benitez Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963961898216283, 28.925455550065291 ], [ -81.964392234246887, 28.925181935711073 ], [ -81.964413518077961, 28.925165859751459 ], [ -81.964431330591609, 28.925145722536914 ], [ -81.964440240823635, 28.925125583859977 ], [ -81.964447881993266, 28.925097612920013 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Francisco Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966261312989047, 28.923992266187877 ], [ -81.966354178767176, 28.92393857948759 ], [ -81.966605058952325, 28.923783506043296 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Francisco Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965004465574523, 28.924704723087682 ], [ -81.965027352879488, 28.924717037278533 ], [ -81.965056605305875, 28.924722640046163 ], [ -81.965090945594838, 28.924722648997921 ], [ -81.965125289282881, 28.924712587420174 ], [ -81.965150731480549, 28.924700285825431 ], [ -81.965606162443848, 28.924409472715439 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duarte Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964247953334137, 28.923961531595534 ], [ -81.964255578216779, 28.923980556730616 ], [ -81.964264475867594, 28.923999582204623 ], [ -81.964294679285643, 28.924033410104361 ], [ -81.964347971360638, 28.924083947440543 ], [ -81.965004465574523, 28.924704723087682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Garcia Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964247953334137, 28.923961531595534 ], [ -81.964241602766947, 28.92393803231549 ], [ -81.96424288277079, 28.923911178531291 ], [ -81.964249251779307, 28.923884324300179 ], [ -81.964270883440093, 28.923855237347905 ], [ -81.96430141673271, 28.923830627248403 ], [ -81.964347219472899, 28.923786999908593 ], [ -81.964380297874698, 28.923754559443129 ], [ -81.964423556945931, 28.923714288843147 ], [ -81.964462996545734, 28.923677372854101 ], [ -81.964496077312759, 28.923643812611186 ], [ -81.964521523676595, 28.923615844572652 ], [ -81.964566055521772, 28.923572216820332 ], [ -81.964599133787345, 28.923539777202226 ], [ -81.964623305559741, 28.923522998177408 ], [ -81.964642386546259, 28.923508457303161 ], [ -81.964656382782053, 28.923499509319004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Guido Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964656382782053, 28.923499509319004 ], [ -81.965047989700892, 28.923872226813554 ], [ -81.965606162443848, 28.924409472715439 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Guido Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965606162443848, 28.924409472715439 ], [ -81.965842716387101, 28.924635410325131 ], [ -81.965973249572556, 28.924779932656854 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moreno Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965975550908595, 28.926906840421914 ], [ -81.967336234378124, 28.926048470021929 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moreno Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965610764249917, 28.927428928127963 ], [ -81.965975550908595, 28.926906840421914 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sonora Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965391980263448, 28.92582652421051 ], [ -81.965424160162584, 28.925871850310457 ], [ -81.965443469226486, 28.925893884836732 ], [ -81.965464210688666, 28.925914032127274 ], [ -81.965482091769147, 28.925927883362057 ], [ -81.965503550176834, 28.925944881819973 ], [ -81.965527869453311, 28.925960625015318 ], [ -81.965812998312416, 28.926126618488016 ], [ -81.965861636996792, 28.926155164180933 ], [ -81.965905514369624, 28.926169442451101 ], [ -81.965944624452931, 28.926171970706047 ], [ -81.965979919676087, 28.926166943963363 ], [ -81.966010448652568, 28.926159398597811 ], [ -81.966892756729322, 28.925600362392974 ], [ -81.96727773149118, 28.925361351384758 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morelos Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964383964248, 28.926460124395295 ], [ -81.964668861254339, 28.926277007688366 ], [ -81.964779509884721, 28.926208625683394 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morelos Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964779509884721, 28.926208625683394 ], [ -81.965279047462687, 28.92589767437395 ], [ -81.965391980263448, 28.92582652421051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morelos Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965391980263448, 28.92582652421051 ], [ -81.966344996586486, 28.925216494924776 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morelos Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967258615630129, 28.924632136659476 ], [ -81.967554084406402, 28.924446914024401 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pennecamp Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003224933094288, 28.889807897032973 ], [ -82.003222848374818, 28.889490369417214 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mossy Oak Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008662780083412, 28.89186098165985 ], [ -82.010171366590313, 28.891855965531168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mossy Oak Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010171366590313, 28.891855965531168 ], [ -82.010520577147233, 28.891851842956726 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Indigo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00861355716242, 28.893553313177108 ], [ -82.008618202971391, 28.893412352906882 ], [ -82.008639613352287, 28.893310731008878 ], [ -82.00869919778863, 28.893136986888816 ], [ -82.008777410039016, 28.892982910846705 ], [ -82.008851897486579, 28.892845225262828 ], [ -82.008941287109764, 28.892730484202996 ], [ -82.00900088031706, 28.892648529108989 ], [ -82.00904557132715, 28.892546904781689 ], [ -82.009062324551365, 28.892436266411917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dearborn Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009748736583987, 28.892831900896681 ], [ -82.010246927895864, 28.8932524390002 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jetta Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00861355716242, 28.893553313177108 ], [ -82.009263216254496, 28.893555219269629 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abasco Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009263216254496, 28.893555219269629 ], [ -82.009277351896785, 28.893469473706833 ], [ -82.009299347133151, 28.893404474215941 ], [ -82.009336181841974, 28.893320521853504 ], [ -82.0093994947037, 28.89318939280918 ], [ -82.009500056094467, 28.893045149057414 ], [ -82.009608070581649, 28.892930409036175 ], [ -82.009748736583987, 28.892831900896681 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abasco Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009748736583987, 28.892831900896681 ], [ -82.009830446570462, 28.89277104512281 ], [ -82.009928392918297, 28.892687803919493 ], [ -82.009999157690416, 28.892592734486147 ], [ -82.010039427314268, 28.892520254427765 ], [ -82.010068053705965, 28.892436199567801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parrot Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006516019094647, 28.890327419756897 ], [ -82.007210875175488, 28.889996826189371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hagood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995095054467683, 28.889429973864882 ], [ -81.995157360069967, 28.889150387540692 ], [ -81.995177093845584, 28.889013335130645 ], [ -81.995192673312701, 28.888854353950158 ], [ -81.995203332387419, 28.888678092623788 ], [ -81.995198931067236, 28.888305227543434 ], [ -81.995190854560661, 28.888235650839921 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kyrle Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995095054467683, 28.889429973864882 ], [ -81.99554957894135, 28.889518984089751 ], [ -81.995601690390771, 28.889527756224403 ], [ -81.995653289750152, 28.889524831800145 ], [ -81.995705510683791, 28.889515882716136 ], [ -81.995749115871305, 28.889494868669711 ], [ -81.995788568082389, 28.889465630907402 ], [ -81.995821792269183, 28.889426344011923 ], [ -81.995842558766498, 28.889381574331203 ], [ -81.995856057278871, 28.889334975451749 ], [ -81.995902527226733, 28.889092367256055 ], [ -81.995926676650598, 28.888815091044069 ], [ -81.995930835584304, 28.888635093929597 ], [ -81.995930844766747, 28.88844413282462 ], [ -81.995927731781165, 28.888403929818342 ], [ -81.995919428204928, 28.888358246074134 ], [ -81.995908011476345, 28.888324439214745 ], [ -81.995878942412517, 28.888282408225958 ], [ -81.995846761312265, 28.888250428760713 ], [ -81.995814578725941, 28.888229413143314 ], [ -81.99576889776489, 28.888208397078859 ], [ -81.995729521385556, 28.888203010859034 ], [ -81.995231089440551, 28.888233244979791 ], [ -81.995190854560661, 28.888235650839921 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sunset Pointe Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990547894545216, 28.894926378947446 ], [ -81.990457539424824, 28.894748753852994 ], [ -81.99032501469182, 28.894528713017372 ], [ -81.990128548803071, 28.894230984693024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hickory Grove Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992168631044152, 28.894136488878946 ], [ -81.992344868437328, 28.893977437282977 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hickory Grove Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992344868437328, 28.893977437282977 ], [ -81.992455582021108, 28.893864114792105 ], [ -81.992743429947353, 28.893545864494723 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bayou Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993779503094103, 28.895099788924291 ], [ -81.993832630884967, 28.895064726257647 ], [ -81.994010188354565, 28.89493203686467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bayou Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994010188354565, 28.89493203686467 ], [ -81.994032847744762, 28.894915192862879 ], [ -81.994304555794372, 28.894678342230034 ], [ -81.994481526458927, 28.89449305441741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bayou Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994481526458927, 28.89449305441741 ], [ -81.994658302714029, 28.89430776635907 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orr Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992344868437328, 28.893977437282977 ], [ -81.992406616528299, 28.894054320413122 ], [ -81.992471503399941, 28.894101048830926 ], [ -81.99276779293946, 28.894236513265017 ], [ -81.993184987309988, 28.894417361826015 ], [ -81.993533431198969, 28.894564860332743 ], [ -81.993722887630412, 28.894661470644607 ], [ -81.993849059771378, 28.894765296136264 ], [ -81.994010188354565, 28.89493203686467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Osprey Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992743429947353, 28.893545864494723 ], [ -81.992781710253283, 28.893577150239498 ], [ -81.992943624663084, 28.8936593215447 ], [ -81.993261792148743, 28.893799255163248 ], [ -81.99364597518796, 28.893961192918603 ], [ -81.993945199267174, 28.894096312034879 ], [ -81.994134458100348, 28.894214579669658 ], [ -81.994293634585034, 28.89433800237326 ], [ -81.994481526458927, 28.89449305441741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bethune Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98439684131894, 28.896274533631775 ], [ -81.984525126373157, 28.896325285790375 ], [ -81.984712625510781, 28.896407813695443 ], [ -81.98487668765722, 28.896485868689528 ], [ -81.985045434651994, 28.896578707284412 ], [ -81.985054028143509, 28.896584208666383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bethune Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985972414963612, 28.895412717599072 ], [ -81.985945468085163, 28.895349803716336 ], [ -81.985884548469386, 28.89520541037183 ], [ -81.985858774920814, 28.895133214636896 ], [ -81.985844980569951, 28.895021075360287 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chapin Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985054028143509, 28.896584208666383 ], [ -81.985113420216294, 28.896500333939894 ], [ -81.985196930117382, 28.896379815873271 ], [ -81.985245144452023, 28.896284809978653 ], [ -81.985283719537918, 28.896176229708466 ], [ -81.985304942025579, 28.896074433708115 ], [ -81.985317419426096, 28.895937594129276 ], [ -81.985304988488693, 28.895745285638213 ], [ -81.985269435037623, 28.895493429123999 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gaston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98439684131894, 28.896274533631775 ], [ -81.984435412372591, 28.896191402964057 ], [ -81.984524126604526, 28.896014963191902 ], [ -81.984558005850303, 28.895896254267054 ], [ -81.98456505163972, 28.895809624393436 ], [ -81.984576784777019, 28.895718867942112 ], [ -81.984591655876642, 28.895679038545993 ], [ -81.984618986444374, 28.895640490949305 ], [ -81.984651433476387, 28.895607785424016 ], [ -81.984689310136943, 28.895584809109444 ], [ -81.984923706517208, 28.895533269400346 ], [ -81.985269435037623, 28.895493429123999 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gaston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985269435037623, 28.895493429123999 ], [ -81.98535498684241, 28.895483812821244 ], [ -81.985769275731272, 28.895452640856938 ], [ -81.985889023469085, 28.895430782754918 ], [ -81.985972414963612, 28.895412717599072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 52nd Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016425143231089, 28.907747793940395 ], [ -82.01642121063793, 28.908442763118767 ], [ -82.016423324618472, 28.909061301487824 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bowline Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016013521952942, 28.907579625441297 ], [ -82.015964979885567, 28.907633876240563 ], [ -82.015910728788427, 28.907678609331722 ], [ -82.015809160461146, 28.907747329031707 ], [ -82.015751892751553, 28.907773466040624 ], [ -82.01569886867442, 28.907788402325622 ], [ -82.015647964092295, 28.907795872740181 ], [ -82.01544857951373, 28.907795894898157 ], [ -82.015272527685639, 28.907795914217772 ], [ -82.015238589354851, 28.907792186011694 ], [ -82.015202528872265, 28.907784724318919 ], [ -82.015151621093622, 28.907769799513328 ], [ -82.015104953739126, 28.907749273668347 ], [ -82.015054041824271, 28.907711951988357 ], [ -82.014968692682856, 28.907644397969982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dory Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016240516997001, 28.904753417635447 ], [ -82.016144414563456, 28.904743781397048 ], [ -82.016047696746085, 28.904746779140879 ], [ -82.015969137101251, 28.904758685840378 ], [ -82.015903702340893, 28.904782476977097 ], [ -82.015842388253461, 28.904803540870027 ], [ -82.015766037125175, 28.904842370878434 ], [ -82.015711668740863, 28.904875131323312 ], [ -82.015659489132148, 28.904911941918044 ], [ -82.015616366579181, 28.904946493029581 ], [ -82.015565159823183, 28.904989060141645 ], [ -82.01552533402851, 28.905031625069963 ], [ -82.015479818268929, 28.905081701345967 ], [ -82.015428616918271, 28.905155561911585 ], [ -82.015387699717991, 28.905232116492005 ], [ -82.015362257898559, 28.905308267839644 ], [ -82.015350389327182, 28.905369485561828 ], [ -82.015345304995776, 28.905417267319276 ], [ -82.015343613278972, 28.905454595580185 ], [ -82.015345318666704, 28.905512826107959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dory Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015345318666704, 28.905512826107959 ], [ -82.015333455867022, 28.905621824122697 ], [ -82.015311414256487, 28.905748742888932 ], [ -82.015294456758753, 28.905826386593723 ], [ -82.015272408855523, 28.905902537547359 ], [ -82.015253750453041, 28.905960772096257 ], [ -82.015235905870313, 28.906009384446651 ], [ -82.015214738502436, 28.906062308335628 ], [ -82.01518656767341, 28.90613816308165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dory Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01518656767341, 28.90613816308165 ], [ -82.015163852693362, 28.906204159624028 ], [ -82.015148588709764, 28.906257912976265 ], [ -82.015062103459158, 28.906635680204886 ], [ -82.015024787933626, 28.906808925428873 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Compass Pointe", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015024787933626, 28.906808925428873 ], [ -82.014984063754909, 28.906798482080987 ], [ -82.014883296053753, 28.906789800981358 ], [ -82.014772650379996, 28.906788073955756 ], [ -82.014715352384044, 28.906793296165052 ], [ -82.014644159972207, 28.906806795678595 ], [ -82.014514074098926, 28.906841753394168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Compass Pointe", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014514074098926, 28.906841753394168 ], [ -82.014446977093769, 28.906862244287023 ], [ -82.01437440417007, 28.906897195032684 ], [ -82.014290879032629, 28.906942992476175 ], [ -82.014195029618904, 28.906999634028828 ], [ -82.01411287113423, 28.907036996541862 ], [ -82.014025234993682, 28.907068334005682 ], [ -82.013940336938546, 28.907093646497302 ], [ -82.013892409512536, 28.907102085923825 ], [ -82.013841913068646, 28.907100132015866 ], [ -82.013790560512177, 28.907091100547614 ], [ -82.013743314213286, 28.907069414831685 ], [ -82.01370736449654, 28.907043211997227 ], [ -82.013679629718382, 28.907010680538622 ], [ -82.013656003041206, 28.906971823566451 ], [ -82.013641619348135, 28.906931156586509 ], [ -82.013635452979472, 28.906895009321616 ], [ -82.013634419548637, 28.906848015936813 ], [ -82.013635442211253, 28.906801927357343 ], [ -82.013640145509243, 28.906750795477077 ], [ -82.013656996915287, 28.906707035094804 ], [ -82.013679587096377, 28.906675402842463 ], [ -82.01371289698406, 28.906643296737411 ], [ -82.013759688099398, 28.906611231713793 ], [ -82.01386238412563, 28.906562419935508 ], [ -82.013978434400599, 28.90652355007575 ], [ -82.014089349788478, 28.906496427649355 ], [ -82.014175620694928, 28.90648918885628 ], [ -82.014247512385978, 28.906491892987482 ], [ -82.01428962140956, 28.906500022023444 ], [ -82.014333785566393, 28.906517188253655 ], [ -82.014381647967653, 28.906546166074172 ], [ -82.014425774203332, 28.906601405645887 ], [ -82.014451233668311, 28.906656647125985 ], [ -82.014472976071673, 28.90672005839042 ], [ -82.014494893909529, 28.906783917172373 ], [ -82.014514074098926, 28.906841753394168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Regatta Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01620749467655, 28.904969153759847 ], [ -82.016207510362392, 28.905072817897988 ], [ -82.016218640619783, 28.905184302768074 ], [ -82.016239771779425, 28.905282584948697 ], [ -82.016266461466131, 28.905385853479494 ], [ -82.016276474907457, 28.905462035151817 ], [ -82.016280707381853, 28.905526678005288 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Regatta Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016240516997001, 28.904753417635447 ], [ -82.0162252533149, 28.904824414039329 ], [ -82.01620749467655, 28.904969153759847 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Regatta Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016280707381853, 28.905526678005288 ], [ -82.016287618501792, 28.905653713559545 ], [ -82.016292078251681, 28.905749552439531 ], [ -82.016289646172353, 28.905831799000779 ], [ -82.016283214370745, 28.905923630237602 ], [ -82.0162676671752, 28.906005779973867 ], [ -82.01625311277715, 28.906082602424078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Regatta Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016195705443423, 28.906277182449163 ], [ -82.016183319266588, 28.906323856153062 ], [ -82.016162966026997, 28.906394034738863 ], [ -82.016144310309315, 28.906453762709056 ], [ -82.016122262121186, 28.906517969172672 ], [ -82.016084944711309, 28.906612039845299 ], [ -82.016050019889335, 28.906681001083012 ], [ -82.016022178615358, 28.90673597588037 ], [ -82.015993339302113, 28.906782264363098 ], [ -82.015961104557036, 28.906827062630828 ], [ -82.015915299240845, 28.906885298555324 ], [ -82.015845738553168, 28.906955483583033 ], [ -82.015680225652517, 28.907090226150888 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Regatta Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016195705443423, 28.906277182449163 ], [ -82.016202676443513, 28.906278461099603 ], [ -82.016222515479811, 28.906279986388125 ], [ -82.016242354053205, 28.906278455590286 ], [ -82.016261588197167, 28.906273919305107 ], [ -82.01627963754261, 28.906266511140544 ], [ -82.016295949421703, 28.906256459442975 ], [ -82.016310028601765, 28.906244065638365 ], [ -82.016321449591373, 28.906229709644645 ], [ -82.016329862789206, 28.90621382641098 ], [ -82.016335014991625, 28.906196900501605 ], [ -82.016336748363358, 28.906179442636027 ], [ -82.016336195841419, 28.906173894469884 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Regatta Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016336195841419, 28.906173894469884 ], [ -82.016335009665696, 28.906161986078775 ], [ -82.016329852302889, 28.906145060472397 ], [ -82.016321434269443, 28.906129180107992 ], [ -82.01631000891831, 28.906114826782492 ], [ -82.016295924959152, 28.906102438069045 ], [ -82.016279611073742, 28.906092387468313 ], [ -82.016261560534872, 28.906084984410263 ], [ -82.01625311277715, 28.906082602424078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Regatta Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015680225652517, 28.907090226150888 ], [ -82.015598024749536, 28.907157082083767 ], [ -82.015475865545341, 28.907264600837795 ], [ -82.015340129981809, 28.907369132557466 ], [ -82.015199304081747, 28.90746769328425 ], [ -82.015104287186631, 28.907537880685116 ], [ -82.014968692682856, 28.907644397969982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Regatta Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014968692682856, 28.907644397969982 ], [ -82.01490577578447, 28.907700652121928 ], [ -82.014819247658437, 28.907790247746359 ], [ -82.014739507359479, 28.907884322509741 ], [ -82.014722055020158, 28.907910999877146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Regatta Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014722055020158, 28.907910999877146 ], [ -82.014707272349966, 28.907933598575941 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Regatta Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014707272349966, 28.907933598575941 ], [ -82.014659768343904, 28.907988850345255 ], [ -82.014622440553154, 28.908020209092328 ], [ -82.014561358855431, 28.908069487225074 ], [ -82.014513853482924, 28.908123243834684 ], [ -82.014474832341818, 28.908175508956152 ], [ -82.014449385525864, 28.908224783356104 ], [ -82.014432425180956, 28.908288989004721 ], [ -82.014423949711642, 28.908356180384455 ], [ -82.014415474031182, 28.908421879362447 ], [ -82.014412090035634, 28.908498028229324 ], [ -82.014400216343319, 28.908527891895595 ], [ -82.014384949254605, 28.908556261703492 ], [ -82.01436967910837, 28.908577166800416 ], [ -82.014356108059161, 28.908613002945195 ], [ -82.014361204772712, 28.908653316185468 ], [ -82.014379874092654, 28.908684670023042 ], [ -82.014393452744301, 28.908705573065273 ], [ -82.014432484354288, 28.908729458291216 ], [ -82.014478300764054, 28.908741398188116 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Regatta Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014478300764054, 28.908741398188116 ], [ -82.014534296833048, 28.908723475471071 ], [ -82.014568229858995, 28.908693608602018 ], [ -82.014586892984553, 28.908663745118023 ], [ -82.014595372838031, 28.908629401880852 ], [ -82.014588579749855, 28.90858759552312 ], [ -82.014569908333883, 28.908556242616616 ], [ -82.014547845791398, 28.908524889156819 ], [ -82.01454444692726, 28.90849054895822 ], [ -82.014542743149349, 28.90844127555529 ], [ -82.01454273506279, 28.908381550660831 ], [ -82.014552908370618, 28.908320332309348 ], [ -82.014576654612938, 28.908245673723066 ], [ -82.014624152485652, 28.908136671202005 ], [ -82.014671651488769, 28.908029161965434 ], [ -82.014707272349966, 28.907933598575941 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Regatta Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014478300764054, 28.908741398188116 ], [ -82.014477839165295, 28.909044629823335 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Regatta Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016369246732268, 28.90419227684184 ], [ -82.016348098872967, 28.904326522359373 ], [ -82.016321443000095, 28.904443879295091 ], [ -82.016298338953362, 28.904526814032263 ], [ -82.016280567355466, 28.904598793339982 ], [ -82.016240516997001, 28.904753417635447 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Regatta Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016013837683104, 28.903606636141195 ], [ -82.016086601819296, 28.903655284230492 ], [ -82.016155957978086, 28.903713169502588 ], [ -82.016221762640029, 28.903780445369865 ], [ -82.016282903321496, 28.903877744823721 ], [ -82.016320703196968, 28.903969668375943 ], [ -82.016347391194714, 28.904063550301821 ], [ -82.016365851178762, 28.904135622829759 ], [ -82.016369246732268, 28.90419227684184 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mainsail Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019536772575321, 28.903035632695236 ], [ -82.019532742027536, 28.903171400301034 ], [ -82.019554842585862, 28.903268295919332 ], [ -82.01959076866963, 28.903382640936076 ], [ -82.019622036837092, 28.90349896985116 ], [ -82.019665031715022, 28.903649931818755 ], [ -82.019674143223753, 28.903710278045811 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mainsail Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019674143223753, 28.903710278045811 ], [ -82.019665068331335, 28.903842937938602 ], [ -82.019646153443645, 28.903924109567924 ], [ -82.019612518052142, 28.904017182783495 ], [ -82.019568965058795, 28.904094126098599 ], [ -82.019512497541697, 28.904179120616888 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mainsail Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019512497541697, 28.904179120616888 ], [ -82.019470737581074, 28.9042266009013 ], [ -82.019400739948722, 28.904284512980446 ], [ -82.019338553590742, 28.904330260052873 ], [ -82.019242414464728, 28.904389498454986 ], [ -82.01914867638132, 28.904429698866551 ], [ -82.019071762055802, 28.904452977008383 ], [ -82.018973212352094, 28.904474141269542 ], [ -82.018815922018973, 28.904487250483704 ], [ -82.018697689256712, 28.904482903820377 ], [ -82.018550457713914, 28.9044644164962 ], [ -82.018439282440752, 28.904445921530215 ], [ -82.018319092898096, 28.904427430366212 ], [ -82.018190939644199, 28.904400083176029 ], [ -82.018088779256274, 28.904384232280435 ], [ -82.017958527327792, 28.904382531165385 ], [ -82.017850361673013, 28.904387833441703 ], [ -82.017739191723336, 28.904406354683527 ], [ -82.01763102864895, 28.90442751918717 ], [ -82.017516556981334, 28.904459524608452 ], [ -82.017402687334709, 28.904498935019188 ], [ -82.017273495983773, 28.904557115938761 ], [ -82.017177356508981, 28.904610007906349 ], [ -82.017096387176977, 28.90467186769347 ], [ -82.017045910390777, 28.904734801955335 ], [ -82.017002813476523, 28.904811193978983 ], [ -82.016955060457292, 28.904922017351897 ], [ -82.01688926886051, 28.905081492102976 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bella Cruz Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957007407102196, 28.951760062709742 ], [ -81.957536641066866, 28.951322019836756 ], [ -81.957639212929521, 28.951272588655307 ], [ -81.957738384788897, 28.95126128537914 ], [ -81.957877397836654, 28.95126829935899 ], [ -81.957984457701571, 28.951307090024674 ], [ -81.958082463784677, 28.951360017590925 ], [ -81.958436013252694, 28.95169086827762 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bella Cruz Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958436013252694, 28.95169086827762 ], [ -81.959005010476218, 28.952274956404079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bella Cruz Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959005010476218, 28.952274956404079 ], [ -81.959900344226099, 28.953155811005065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989670084086598, 28.952443343604735 ], [ -81.989840874966191, 28.95259599217346 ], [ -81.989960271056518, 28.952705322098488 ], [ -81.990078105390069, 28.952810525617267 ], [ -81.990239906521637, 28.952953891118582 ], [ -81.990401905829458, 28.953100007525116 ], [ -81.990552373673268, 28.953234777489651 ], [ -81.99061570037145, 28.953290443496137 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99061570037145, 28.953290443496137 ], [ -81.990694872066399, 28.953366718036403 ], [ -81.990804201458587, 28.953469524724571 ], [ -81.990909760809203, 28.953562383294248 ], [ -81.991026634303779, 28.953638661132089 ], [ -81.991139737979523, 28.953701673118818 ], [ -81.991297255793327, 28.953786093923487 ], [ -81.991390340287779, 28.953840561475097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991390340287779, 28.953840561475097 ], [ -81.991546588710236, 28.953934141068142 ], [ -81.991726110548385, 28.95403064717377 ], [ -81.991885684712912, 28.954121303154139 ], [ -81.992118397214995, 28.95424997600097 ], [ -81.99238768130401, 28.954393270401521 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Navidad Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987533936007637, 28.953043532218381 ], [ -81.987939408510186, 28.953414571422641 ], [ -81.987984646163156, 28.95345602231103 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Campos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988467843943482, 28.953049395052346 ], [ -81.988641880652523, 28.953223142801754 ], [ -81.988805144075357, 28.953369329806467 ], [ -81.989003393485291, 28.953546292187465 ], [ -81.989198727716442, 28.953725819249897 ], [ -81.989483858618286, 28.953975875424717 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Campos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990380059919033, 28.955630088101703 ], [ -81.990433342499301, 28.955683532902771 ], [ -81.990473232976925, 28.955725643031272 ], [ -81.990518445097081, 28.955765413887974 ], [ -81.990568975929634, 28.955812202231368 ], [ -81.990621802843563, 28.955858454757458 ], [ -81.990662315769598, 28.955894090930897 ], [ -81.9907072703148, 28.955936192324177 ], [ -81.99075248218297, 28.955980640580673 ], [ -81.990800353681863, 28.956020412429943 ], [ -81.990845566054432, 28.956060182272822 ], [ -81.990890778288005, 28.956090595336637 ], [ -81.990938653214343, 28.956116330186344 ], [ -81.990994505476834, 28.956132708800492 ], [ -81.991058337723231, 28.956144409551179 ], [ -81.991132811787907, 28.956144414582351 ], [ -81.991215263348124, 28.956144419202055 ], [ -81.991369528781988, 28.956144429397952 ], [ -81.991547730805962, 28.956144440955757 ], [ -81.991701997265892, 28.956144450770562 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Campos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991701997265892, 28.956144450770562 ], [ -81.991827004701818, 28.956144459496421 ], [ -81.991967970206616, 28.956144467277095 ], [ -81.992122237506948, 28.956146818056801 ], [ -81.992241925589568, 28.95614682517602 ], [ -81.992361613672301, 28.956146831286503 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Campos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992361613672301, 28.956146831286503 ], [ -81.992481302780902, 28.956146838192847 ], [ -81.992579713438161, 28.956146844693922 ], [ -81.992691421973447, 28.956146850962025 ], [ -81.992805792751795, 28.95614685638116 ], [ -81.993021231300943, 28.956146868024682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Campos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993021231300943, 28.956146868024682 ], [ -81.993143579574934, 28.956146875385798 ], [ -81.99328986546567, 28.956146882060008 ], [ -81.993531902848716, 28.956146895148713 ], [ -81.993681577488758, 28.956144413946731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Nino Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992364359537007, 28.955047381854545 ], [ -81.992361675412795, 28.955358504509089 ], [ -81.992361613672301, 28.956146831286503 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Picasso Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991702087668372, 28.955047342634199 ], [ -81.991702063690781, 28.955335070823821 ], [ -81.991702054969636, 28.955452033088243 ], [ -81.991702044781391, 28.955561978228417 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Picasso Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991702044781391, 28.955561978228417 ], [ -81.991702034839264, 28.955681280131063 ], [ -81.991702025871817, 28.95578888562536 ], [ -81.991702015344643, 28.955915206450317 ], [ -81.991701997265892, 28.956144450770562 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moncayo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991702087668372, 28.955047342634199 ], [ -81.991763260134917, 28.955047346476867 ], [ -81.991893587609141, 28.955047354570883 ], [ -81.992045192284678, 28.955047363827511 ], [ -81.992268607001677, 28.955047377157374 ], [ -81.992364359537007, 28.955047381854545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moncayo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992364359537007, 28.955047381854545 ], [ -81.992654267047115, 28.955047398392399 ], [ -81.992928218708229, 28.955047414348346 ], [ -81.993015989562849, 28.955049759598126 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moncayo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993015989562849, 28.955049759598126 ], [ -81.993226107894785, 28.955045091344289 ], [ -81.99351601642492, 28.955045106927905 ], [ -81.993675599535166, 28.955045113840544 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moncayo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993675599535166, 28.955045113840544 ], [ -81.993771349868339, 28.955047457178861 ], [ -81.993944231746028, 28.955047465308471 ], [ -81.994098494533787, 28.955047471472742 ], [ -81.994279354849112, 28.955047480434757 ], [ -81.99434319055689, 28.955047483221446 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Summerchase Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99996394177559, 28.953847799041849 ], [ -81.999956058438059, 28.953218962896933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Summerchase Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999967031643379, 28.954615823557024 ], [ -81.999964886166566, 28.953956468372752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Summerchase Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999969077891819, 28.955212971076222 ], [ -81.999964882956647, 28.954725400575978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belle Grove Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999255644646141, 28.95320753867135 ], [ -81.999261318319185, 28.954568277001819 ], [ -81.999266567534832, 28.955256815880549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meadow Lawn Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998224132215043, 28.955312613270099 ], [ -81.998554991980185, 28.955284713412819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meadow Lawn Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998554991980185, 28.955284713412819 ], [ -81.998867722530292, 28.955276744189437 ], [ -81.999076209912857, 28.955268774322516 ], [ -81.999266567534832, 28.955256815880549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meadow Lawn Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999969077891819, 28.955212971076222 ], [ -82.00028110894948, 28.955161931906769 ], [ -82.000803021244408, 28.955073454758573 ], [ -82.001167309637268, 28.95501338152507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Hill Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999967031643379, 28.954615823557024 ], [ -82.000196876371319, 28.954621491470082 ], [ -82.000428868256975, 28.954619603269769 ], [ -82.000557752518986, 28.954617713862621 ], [ -82.000641529170025, 28.954610156195066 ], [ -82.000690933194477, 28.954604489735988 ], [ -82.000718858080504, 28.9546101551805 ], [ -82.000742487570534, 28.954623380028128 ], [ -82.000753228772538, 28.954646052795216 ], [ -82.000753227829847, 28.954670613177658 ], [ -82.000742487781508, 28.954687615985055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fair Oak Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99996394177559, 28.953847799041849 ], [ -82.000319316560962, 28.953850670065595 ], [ -82.000549159548527, 28.953850669252297 ], [ -82.000607157091224, 28.953850670115028 ], [ -82.000636616511557, 28.953861836849864 ], [ -82.000650491686542, 28.953878734053951 ], [ -82.000655827383554, 28.953900325892274 ], [ -82.000653694609682, 28.953920039168139 ], [ -82.00063723016909, 28.953939465531928 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ashland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999956058438059, 28.953218962896933 ], [ -81.999997245665156, 28.953206888489245 ], [ -82.00003568651114, 28.953196021416467 ], [ -82.000070007388331, 28.953191191558311 ], [ -82.000145516358671, 28.953191191771477 ], [ -82.000300650135273, 28.953191192076506 ], [ -82.00052992230475, 28.953191192199828 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Larranaga Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998739315092195, 28.957994495482474 ], [ -81.998789735230559, 28.957811324553514 ], [ -81.998819536742772, 28.957654076224497 ], [ -81.998815812514692, 28.957526310822015 ], [ -81.99878974032255, 28.957414925385429 ], [ -81.998750629434568, 28.957321558563475 ], [ -81.998711519059285, 28.957264227444679 ], [ -81.998651921962121, 28.957213447620219 ], [ -81.998588598544899, 28.957175772605929 ], [ -81.998502926482871, 28.957138098186171 ], [ -81.998422841342943, 28.957116803081959 ], [ -81.998271982917288, 28.957100420821146 ], [ -81.997988890830072, 28.957110244254636 ], [ -81.997711383682784, 28.957124981976897 ], [ -81.997510241163226, 28.957133166422008 ], [ -81.99725880814789, 28.957133162089015 ], [ -81.997003651248278, 28.957126603855293 ], [ -81.996782021911841, 28.957108581474881 ], [ -81.996621849411696, 28.957092197128116 ], [ -81.996497067874557, 28.957084003665216 ], [ -81.996398943129179, 28.957122806690222 ], [ -81.996310818193351, 28.957182278722065 ], [ -81.996266116211075, 28.957246161465946 ], [ -81.996245621853873, 28.957439444322961 ], [ -81.996238163530577, 28.957667129218041 ], [ -81.996240015029699, 28.957906278892303 ], [ -81.996240005346806, 28.958174913579096 ], [ -81.996232544101019, 28.958448461914699 ], [ -81.996232535662344, 28.9586597658964 ], [ -81.996262329046218, 28.958836670891074 ], [ -81.996305161218686, 28.958934955106955 ], [ -81.996372206386681, 28.959041426484493 ], [ -81.996456015300907, 28.959128243683946 ], [ -81.996499620247221, 28.959173320646702 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Larranaga Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996499620247221, 28.959173320646702 ], [ -81.996570701619177, 28.959229560580464 ], [ -81.996581059235865, 28.959237812311219 ], [ -81.996657475855471, 28.959286972965003 ], [ -81.996783533723928, 28.959340261017388 ], [ -81.996930939842898, 28.959385424337754 ], [ -81.997271777852376, 28.959391984592681 ], [ -81.997837976055877, 28.959391996571338 ], [ -81.998264486797822, 28.959392003341669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Larranaga Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998264486797822, 28.959392003341669 ], [ -81.998313426404096, 28.959391715298889 ], [ -81.998716038795862, 28.959391719400639 ], [ -81.999040474227925, 28.959391378783526 ], [ -81.999331879331962, 28.959395505324089 ], [ -81.999554488758747, 28.959395506554788 ], [ -81.999708081887007, 28.959393912840724 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Larranaga Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999708081887007, 28.959393912840724 ], [ -81.99982339292221, 28.959392016585785 ], [ -81.999944455396388, 28.959390377395469 ], [ -82.000097180370105, 28.959387101576585 ], [ -82.000370965390005, 28.959387102067364 ], [ -82.000551626644153, 28.95938218730619 ], [ -82.000683864398468, 28.959364170216382 ], [ -82.000817962014963, 28.959315028458395 ], [ -82.000978135605351, 28.959221662474672 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caribe Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993393359991103, 28.951478655554652 ], [ -81.993598630521134, 28.951529795948666 ], [ -81.993739629965376, 28.9515755029723 ], [ -81.993889293154069, 28.951635006301004 ], [ -81.994077038416066, 28.951701069055996 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caribe Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993818504117883, 28.94940629398614 ], [ -81.993687776424338, 28.949406287739837 ], [ -81.993553710643098, 28.949406036680891 ], [ -81.993235513648159, 28.949406019727146 ], [ -81.99309310464362, 28.949406013201919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caribe Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99309310464362, 28.949406013201919 ], [ -81.992570192845974, 28.949405984636215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975761448244143, 28.949472889423362 ], [ -81.975858766274513, 28.94945089833239 ], [ -81.976020038500991, 28.949411798572989 ], [ -81.976281752219634, 28.949354870956906 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975189558385424, 28.949577911415201 ], [ -81.975281722394911, 28.949557500600939 ], [ -81.975761448244143, 28.949472889423362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97379127708659, 28.950283593460281 ], [ -81.973907728373277, 28.950217536872927 ], [ -81.974047108580237, 28.950130307839068 ], [ -81.974229012268069, 28.950022310684677 ], [ -81.974410916095849, 28.949912239814708 ], [ -81.974566227921486, 28.94982515224169 ], [ -81.974740397037166, 28.949740676581786 ], [ -81.974917564925761, 28.949666765297174 ], [ -81.975189558385424, 28.949577911415201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973161175640769, 28.950648722628454 ], [ -81.973243650761859, 28.950604544891167 ], [ -81.973474072206145, 28.9504677455717 ], [ -81.97366072907036, 28.950362844997457 ], [ -81.97379127708659, 28.950283593460281 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972542482817772, 28.950870427314687 ], [ -81.972696330760442, 28.950844766959143 ], [ -81.972811258837908, 28.950814026732434 ], [ -81.972939773319823, 28.950767740859419 ], [ -81.973060526402833, 28.950704390953575 ], [ -81.973161175640769, 28.950648722628454 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971816759598624, 28.950880505582091 ], [ -81.97198942629322, 28.950880588787076 ], [ -81.972217270504729, 28.950882349782219 ], [ -81.972326322110078, 28.95088408404883 ], [ -81.972439270287936, 28.950880682281088 ], [ -81.972542482817772, 28.950870427314687 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971103719351461, 28.950859939030245 ], [ -81.971488958372817, 28.9508684933461 ], [ -81.971816759598624, 28.950880505582091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970307057561726, 28.950845972084046 ], [ -81.970822961299817, 28.950854648383157 ], [ -81.971103719351461, 28.950859939030245 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969573119136911, 28.950831992146433 ], [ -81.970098544215887, 28.950839071819356 ], [ -81.970307057561726, 28.950845972084046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968835358495582, 28.9508148213223 ], [ -81.969325443116858, 28.950826908009549 ], [ -81.969573119136911, 28.950831992146433 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968105767103893, 28.95080401768168 ], [ -81.96852313293212, 28.950807880883197 ], [ -81.968835358495582, 28.9508148213223 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967377517446579, 28.950793985481809 ], [ -81.967537771770594, 28.950785378689293 ], [ -81.967876612642428, 28.950790599014773 ], [ -81.968105767103893, 28.95080401768168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cazaras Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973866559195216, 28.943999310137954 ], [ -81.973848747615932, 28.944086919315133 ], [ -81.973831134444197, 28.944148533463657 ], [ -81.973817079375465, 28.944207530754078 ], [ -81.973807708817446, 28.944255552565238 ], [ -81.973799898531567, 28.944295343963805 ], [ -81.97379052588353, 28.944347480229091 ], [ -81.973784276147668, 28.944390015805396 ], [ -81.973778024705453, 28.944431177188473 ], [ -81.97377177568346, 28.94446685082514 ], [ -81.97377020527378, 28.944510758803546 ], [ -81.973768635586751, 28.944547805745511 ], [ -81.973767066598398, 28.94458210881427 ], [ -81.973767052974338, 28.944631504843603 ], [ -81.973765481486581, 28.944683643537601 ], [ -81.973765472037229, 28.944720690784759 ], [ -81.973765460838095, 28.944764598165172 ], [ -81.973768569099079, 28.944808508864369 ], [ -81.973773236207776, 28.944857905810544 ], [ -81.97377946356589, 28.944907302159947 ], [ -81.97378413240952, 28.944953954330092 ], [ -81.973793475771799, 28.945012957100296 ], [ -81.973804381443699, 28.94507195927325 ], [ -81.973815286472956, 28.945125475503495 ], [ -81.973827752810365, 28.945174873070791 ], [ -81.973837104878982, 28.945211922148061 ], [ -81.973846455949584, 28.945244854061521 ], [ -81.973860482935237, 28.945288765086946 ], [ -81.97387295243044, 28.945329931031086 ], [ -81.973888538665065, 28.945373840553248 ], [ -81.973902570503952, 28.945410891441309 ], [ -81.973922836478053, 28.945458919035229 ], [ -81.973938427220517, 28.945497342610768 ], [ -81.97395713538927, 28.945539881247409 ], [ -81.973975844267613, 28.945579676008634 ], [ -81.974003910545591, 28.945631820465657 ], [ -81.974028859443308, 28.945675733594985 ], [ -81.974055366221265, 28.945721018507026 ], [ -81.974080314481995, 28.945763559238681 ], [ -81.974105264825383, 28.945801983705781 ], [ -81.974139571237217, 28.945854131146362 ], [ -81.974161402493209, 28.94588294828689 ], [ -81.97418167315638, 28.945913139314321 ], [ -81.974208185554204, 28.945944703028417 ], [ -81.974239374636184, 28.945984500158659 ], [ -81.974269004510532, 28.94602018072132 ], [ -81.97429015159527, 28.946044992430647 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cazaras Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97429015159527, 28.946044992430647 ], [ -81.974350096704356, 28.946116243578111 ], [ -81.974389086525207, 28.946158786944498 ], [ -81.974429634931624, 28.94619995821019 ], [ -81.974456149182132, 28.946224659937698 ], [ -81.974487339454868, 28.946252109132022 ], [ -81.974526328344851, 28.946286419938097 ], [ -81.974568440191163, 28.946323474297209 ], [ -81.974615227756061, 28.946368763855393 ], [ -81.97464797906828, 28.946397584793523 ], [ -81.974685409173901, 28.946434638227192 ], [ -81.974719720119367, 28.946466203315445 ], [ -81.974755590680275, 28.946500512561848 ], [ -81.974785220861378, 28.946532076748746 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cazaras Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974785220861378, 28.946532076748746 ], [ -81.974855401191036, 28.946611672196426 ], [ -81.97488659002812, 28.946650097688011 ], [ -81.974927138864729, 28.946699501320289 ], [ -81.974959886666596, 28.946739298571941 ], [ -81.974992635209745, 28.946784583560031 ], [ -81.975022264234227, 28.946825753501823 ], [ -81.975047214152283, 28.946864176886297 ], [ -81.975072164088687, 28.946902600265922 ], [ -81.975097116066578, 28.946936908283973 ], [ -81.975122064348184, 28.9469780773304 ], [ -81.975143896140125, 28.947011011468888 ], [ -81.975159489191299, 28.947038456699591 ], [ -81.975175082250672, 28.947065901928372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cazaras Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975175082250672, 28.947065901928372 ], [ -81.975202653819736, 28.947123266698284 ], [ -81.975217450052142, 28.947158329831176 ], [ -81.975244768594948, 28.947214429530419 ], [ -81.975266396007427, 28.947261512461655 ], [ -81.975288019701182, 28.947315608007102 ], [ -81.975303954960168, 28.947353675072531 ], [ -81.975322163284687, 28.947396752084643 ], [ -81.975338099658785, 28.94743882442291 ], [ -81.975350616048445, 28.947471882224438 ], [ -81.975359721809596, 28.947503938753059 ], [ -81.975368825699789, 28.947530985751783 ], [ -81.975381341521611, 28.947575062347685 ], [ -81.975404652299346, 28.947652791933812 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cazaras Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974903867774145, 28.952527377180864 ], [ -81.974908701710063, 28.951972810469641 ], [ -81.974899961073447, 28.951751091305443 ], [ -81.974899974694154, 28.951699529826907 ], [ -81.974879199384191, 28.951588035101608 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cazaras Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974892936650448, 28.95153397504798 ], [ -81.974879199384191, 28.951588035101608 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Patino Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978807134169145, 28.949071807221085 ], [ -81.979008493752048, 28.949257315192035 ], [ -81.97924776125474, 28.949457417023257 ], [ -81.979445883502976, 28.94961865035658 ], [ -81.979740513398966, 28.949861791046789 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Almanza Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97742407540666, 28.949220328758219 ], [ -81.977493794320466, 28.94940050937922 ], [ -81.977505175430807, 28.94944558892394 ], [ -81.977509258797411, 28.949485431235296 ], [ -81.97750463976783, 28.949586704657403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Montez Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97750463976783, 28.949586704657403 ], [ -81.977429623138221, 28.949542207175575 ], [ -81.977377815104404, 28.949535986123063 ], [ -81.977321293748702, 28.949546333045191 ], [ -81.977231801850806, 28.94956495917334 ], [ -81.977128178403916, 28.949585654485031 ], [ -81.977036330626831, 28.949606352645024 ], [ -81.976953902618476, 28.949624979802937 ], [ -81.976876184810365, 28.949645679389402 ], [ -81.97681494955323, 28.949678809969086 ], [ -81.9767843280287, 28.949705731759508 ], [ -81.97676312404981, 28.94974508245479 ], [ -81.976741920054323, 28.949784435853356 ], [ -81.976737198727946, 28.949840359110802 ], [ -81.976734809187249, 28.949995708170665 ], [ -81.976733820043137, 28.950127928109918 ], [ -81.976733785405315, 28.950280727695429 ], [ -81.976735163824927, 28.950553718266406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canales Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976962010541115, 28.951203140011074 ], [ -81.976985139186979, 28.951278467349734 ], [ -81.976987350925441, 28.951740578447211 ], [ -81.97698730150428, 28.951956364296311 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santo Domingo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97522336050794, 28.950958631503084 ], [ -81.975295707186106, 28.951006185775277 ], [ -81.975422879872255, 28.951084794371788 ], [ -81.975552477043564, 28.951154033889274 ], [ -81.975732992667787, 28.951225316309021 ], [ -81.97588574001233, 28.951272165719796 ], [ -81.976001461603715, 28.951298650793209 ], [ -81.976119498946957, 28.951314957423463 ], [ -81.976232907457202, 28.951323119939833 ], [ -81.976339374893968, 28.95132721179337 ], [ -81.97649213673995, 28.951317060016404 ], [ -81.976665730393208, 28.951290626237196 ], [ -81.976788407229037, 28.951264181587042 ], [ -81.976962010541115, 28.951203140011074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santo Domingo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976962010541115, 28.951203140011074 ], [ -81.977077749494924, 28.951148196805661 ], [ -81.977249039001919, 28.951083082416208 ], [ -81.977461990472889, 28.951013903706393 ], [ -81.977672621278259, 28.950963046215968 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santo Domingo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977672621278259, 28.950963046215968 ], [ -81.97779298445397, 28.950930494449928 ], [ -81.978019815627988, 28.950887782297006 ], [ -81.978375008470749, 28.950835113077165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carolina Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981115945638109, 28.945944420611575 ], [ -81.981124916560191, 28.94671023120258 ], [ -81.981138628027836, 28.946802810187766 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fortaleza Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990436027825993, 28.947230275114684 ], [ -81.990329330979876, 28.947685240335254 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fortaleza Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990329330979876, 28.947685240335254 ], [ -81.990176992286862, 28.948376239098163 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Estevez Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976281752219634, 28.949354870956906 ], [ -81.976184278416326, 28.948961212293788 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Estevez Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976592579640027, 28.94796357000666 ], [ -81.977239600229595, 28.947822067038313 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Estevez Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977857078155992, 28.947628787017141 ], [ -81.977892567436243, 28.947611106159091 ], [ -81.97792450586438, 28.94759550629357 ], [ -81.977955262976081, 28.947577825538467 ], [ -81.977989568863435, 28.947558063772334 ], [ -81.978021367896389, 28.947541772704511 ], [ -81.978043984217152, 28.947527900970137 ], [ -81.978071192950779, 28.947510221409164 ], [ -81.978099583429113, 28.947492538427394 ], [ -81.978129157702057, 28.947474857438152 ], [ -81.978167013187743, 28.947448853245042 ], [ -81.978203686097345, 28.947421809406872 ], [ -81.978236810874904, 28.947393725538902 ], [ -81.97825928909225, 28.947372923235378 ], [ -81.97828413160984, 28.947353158949305 ], [ -81.978311340992732, 28.947327153884711 ], [ -81.9783432835208, 28.947301150484925 ], [ -81.978372856744031, 28.947278267723984 ], [ -81.978395333374863, 28.947264746899169 ], [ -81.978414260356899, 28.947257466655117 ], [ -81.978434368429944, 28.947253308532037 ], [ -81.978454476871235, 28.947252271436447 ], [ -81.978476949620202, 28.947252275964985 ], [ -81.978493509666748, 28.947256439106393 ], [ -81.978515979646588, 28.94726476547357 ], [ -81.978537267879332, 28.94727309164692 ], [ -81.978562408965516, 28.947291944582549 ], [ -81.979118515481048, 28.94779339168992 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Estevez Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979118515481048, 28.94779339168992 ], [ -81.979430249621885, 28.94808616279299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Escobar Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976184278416326, 28.948961212293788 ], [ -81.976833680298753, 28.948820876586726 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Emilio Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977857078155992, 28.947628787017141 ], [ -81.978345427852105, 28.948343600182902 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cipriano Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975404652299346, 28.947652791933812 ], [ -81.975497139381943, 28.947625343141887 ], [ -81.975603914589556, 28.947583104710848 ], [ -81.97570357251719, 28.947540864900407 ], [ -81.975805008780895, 28.947500188108869 ], [ -81.975911784027645, 28.94746108038813 ], [ -81.976000763081828, 28.94742666401477 ], [ -81.976127111675254, 28.947384426877985 ], [ -81.976264136962413, 28.947342192422457 ], [ -81.976438533064993, 28.94729057336308 ], [ -81.97654530402113, 28.947259289819701 ], [ -81.976623602703157, 28.947238956848299 ], [ -81.976709019867968, 28.94722175512641 ], [ -81.976799775077296, 28.947201424224399 ], [ -81.97689408848332, 28.947182660256992 ], [ -81.976965268790465, 28.947171716014779 ], [ -81.977015093800787, 28.947163898113914 ], [ -81.977064917777597, 28.94715608109669 ], [ -81.97710584647794, 28.947149827111641 ], [ -81.977152112535478, 28.947143574027578 ], [ -81.977196600834262, 28.94713732242856 ], [ -81.97724464600654, 28.947129504138669 ], [ -81.977290912739349, 28.947120121855832 ], [ -81.977338958588007, 28.947109173478914 ], [ -81.977397682912965, 28.947095097741901 ], [ -81.977443950649359, 28.947081018972959 ], [ -81.977486659449013, 28.947068505065825 ], [ -81.977540047061382, 28.947046601879421 ], [ -81.977582757887191, 28.947029393312985 ], [ -81.97763258551177, 28.947004358536091 ], [ -81.977671738067656, 28.946985584769443 ], [ -81.977716442801139, 28.946960056452532 ], [ -81.977762499332414, 28.946935513649553 ], [ -81.977806989508579, 28.946905785093858 ], [ -81.977970722150332, 28.946780601951939 ], [ -81.978182510656893, 28.946603774721599 ], [ -81.978377069370097, 28.946429223554116 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Claudio Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975175082250672, 28.947065901928372 ], [ -81.975264012200483, 28.947022010152786 ], [ -81.975307695323778, 28.947002809323916 ], [ -81.975357616786454, 28.94698223543983 ], [ -81.975407542003879, 28.946963035729638 ], [ -81.975473067119253, 28.946934233959766 ], [ -81.975560433572824, 28.94689857512142 ], [ -81.975669640299188, 28.946856059171775 ], [ -81.975764806637486, 28.946821774910219 ], [ -81.975838540493086, 28.946796010665814 ], [ -81.975940387430228, 28.946763682756341 ], [ -81.976026672035488, 28.94673384050078 ], [ -81.976117200565255, 28.946707730831545 ], [ -81.976216216230171, 28.946679134089422 ], [ -81.976309572561476, 28.946654269055742 ], [ -81.976408586979744, 28.946630648316216 ], [ -81.976518916702148, 28.946604542774811 ], [ -81.97662500273519, 28.946582166478454 ], [ -81.976705626219953, 28.946567253034321 ], [ -81.976756547760644, 28.946558552977201 ], [ -81.976811711051027, 28.946549852735142 ], [ -81.97685980206154, 28.94654239821373 ], [ -81.976912137154471, 28.946533698342641 ], [ -81.976954571791126, 28.94652624010234 ], [ -81.977009737935205, 28.946513809701123 ], [ -81.977050756458837, 28.946503863565425 ], [ -81.977090362979212, 28.946491429553671 ], [ -81.977149771480427, 28.946471534252154 ], [ -81.977197865668316, 28.946454126418452 ], [ -81.97725444807925, 28.946429254443093 ], [ -81.977316687917025, 28.946399405455672 ], [ -81.977394719998202, 28.946356335110583 ], [ -81.977477242470229, 28.9463065000859 ], [ -81.977555330526044, 28.946250778608622 ], [ -81.977677557765716, 28.946150274656492 ], [ -81.977941960446344, 28.945940025721594 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chaparral Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978377069370097, 28.946429223554116 ], [ -81.978396753147251, 28.946441925610802 ], [ -81.978432894779928, 28.946466095759927 ], [ -81.978463255498937, 28.946482634276247 ], [ -81.978500846682834, 28.946501716611788 ], [ -81.978548557800892, 28.946524616360119 ], [ -81.97858759389851, 28.946541156242478 ], [ -81.978641087821913, 28.946567872681879 ], [ -81.978696027151088, 28.946594589330687 ], [ -81.978743737562795, 28.946621305707946 ], [ -81.978781325742986, 28.946645475091092 ], [ -81.978818914965856, 28.946669647170694 ], [ -81.978847827323904, 28.946691272496629 ], [ -81.97887818686354, 28.946714169375895 ], [ -81.978914331758403, 28.946743426522087 ], [ -81.978949025640844, 28.946775227895142 ], [ -81.978992395918851, 28.946812115947491 ], [ -81.979029983428617, 28.946845189987766 ], [ -81.979069016085177, 28.946879533769987 ], [ -81.979108050052119, 28.946912608015044 ], [ -81.979924557711385, 28.947672564006247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chaparral Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977941960446344, 28.945940025721594 ], [ -81.978125523292576, 28.946156836301235 ], [ -81.978165275749603, 28.946204536205354 ], [ -81.978197799649323, 28.946245876459262 ], [ -81.978214063323151, 28.946268134167692 ], [ -81.978239360349164, 28.946295164671653 ], [ -81.978266466590512, 28.946323785305356 ], [ -81.978295555866808, 28.946356697560645 ], [ -81.97832970941603, 28.946390565257662 ], [ -81.978377069370097, 28.946429223554116 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chaparral Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977459960978592, 28.945454749831818 ], [ -81.97748656426009, 28.945478159799247 ], [ -81.977528205719452, 28.945511746548483 ], [ -81.977559434980705, 28.945537191048146 ], [ -81.977597604791583, 28.945567725637403 ], [ -81.977627679607565, 28.945595206402437 ], [ -81.977653124602753, 28.945619632124242 ], [ -81.97767741454868, 28.945644057648014 ], [ -81.977707650572086, 28.945671021408021 ], [ -81.977735932839863, 28.945700884804729 ], [ -81.977776941436431, 28.945744434488709 ], [ -81.977809465150642, 28.945780518080614 ], [ -81.977841987861126, 28.945816603468892 ], [ -81.977881582442649, 28.945862641409356 ], [ -81.977941960446344, 28.945940025721594 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chaparral Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97582196065423, 28.943995948157898 ], [ -81.975862899519811, 28.944041885890091 ], [ -81.975916390294856, 28.944104222343423 ], [ -81.975969881564495, 28.944169102339348 ], [ -81.976014696750738, 28.944225077829898 ], [ -81.976056621156076, 28.9442772369895 ], [ -81.976089871194958, 28.944321762086105 ], [ -81.976123120236181, 28.944366288076328 ], [ -81.976152033121835, 28.944406996584284 ], [ -81.976186728142594, 28.944457881275646 ], [ -81.976208411702132, 28.944492227315866 ], [ -81.976230094838243, 28.944524032495124 ], [ -81.97625611432548, 28.944563468231689 ], [ -81.976288446017193, 28.944609868981448 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chaparral Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975517529376347, 28.943692438900008 ], [ -81.975583875796104, 28.943755638631242 ], [ -81.975665017787207, 28.943834039250852 ], [ -81.975722846863064, 28.943894469125318 ], [ -81.97577182117395, 28.943942654153403 ], [ -81.97582196065423, 28.943995948157898 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chaparral Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974202375286453, 28.942502124449256 ], [ -81.975517529376347, 28.943692438900008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chaparral Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973448318420267, 28.942128452622132 ], [ -81.973503277866499, 28.942142488774191 ], [ -81.973540040491628, 28.942150932498365 ], [ -81.973575200862413, 28.942159374993484 ], [ -81.973615158428061, 28.942169225101647 ], [ -81.973667901209225, 28.942183295036063 ], [ -81.973719045846622, 28.942197364635636 ], [ -81.973759001697175, 28.942210027149105 ], [ -81.973803753368344, 28.9422255012344 ], [ -81.973845308020785, 28.942243785323079 ], [ -81.973888108347055, 28.942264663735607 ], [ -81.97393055909113, 28.942288838143874 ], [ -81.973982997669253, 28.942321801917867 ], [ -81.974025447349234, 28.942350368659795 ], [ -81.974080381541484, 28.942392118510668 ], [ -81.974202375286453, 28.942502124449256 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cordero Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972857375623008, 28.947655436123835 ], [ -81.973024914199726, 28.947345643496575 ], [ -81.973066630761124, 28.947285632302364 ], [ -81.973095072563851, 28.947247291493568 ], [ -81.97314247329362, 28.947190616292559 ], [ -81.973198727280447, 28.947147970794088 ], [ -81.973265377499288, 28.947099140330433 ], [ -81.973335728163178, 28.947056822418013 ], [ -81.973402195640958, 28.94702394799361 ], [ -81.973478021509436, 28.946995618437217 ], [ -81.973574697082327, 28.946975631950806 ], [ -81.973656204557642, 28.946960643814673 ], [ -81.973802215757189, 28.946949457015101 ], [ -81.973944325654102, 28.946922353755273 ], [ -81.974090284713839, 28.946885703029874 ], [ -81.974209708568424, 28.94684571395835 ], [ -81.974389776185006, 28.946779359692485 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cordero Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972539440947074, 28.948222496367666 ], [ -81.972660807845145, 28.948012454001162 ], [ -81.972770797343784, 28.947815745988255 ], [ -81.972857375623008, 28.947655436123835 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cordero Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970267069847878, 28.947962291842678 ], [ -81.970427940784262, 28.947980300271094 ], [ -81.970664857136654, 28.948043706913921 ], [ -81.970839223587191, 28.948107098613534 ], [ -81.971028747092362, 28.948195503115528 ], [ -81.971229639600907, 28.948297245679505 ], [ -81.971354725100696, 28.948358959564086 ], [ -81.971458961907189, 28.948412332603326 ], [ -81.971580255161172, 28.948474045467989 ], [ -81.971712921671923, 28.948540761134314 ], [ -81.971968778383555, 28.948670857920561 ], [ -81.972035112593161, 28.94869587884677 ], [ -81.972093870522386, 28.94870756317874 ], [ -81.97214504952116, 28.9487042389779 ], [ -81.972194333666494, 28.948697580392878 ], [ -81.972245517728851, 28.948679252835642 ], [ -81.972289121466758, 28.948650917264356 ], [ -81.972332728765821, 28.948609246698897 ], [ -81.972370656971805, 28.94854089957029 ], [ -81.972438927260299, 28.948419207937306 ], [ -81.972539440947074, 28.948222496367666 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cordero Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968420155250683, 28.947280644039367 ], [ -81.968536982383753, 28.947280670657836 ], [ -81.96870735331963, 28.94729141360531 ], [ -81.968880154050041, 28.947317144885258 ], [ -81.968984804507514, 28.947344999498672 ], [ -81.969087019834873, 28.947379276889237 ], [ -81.969191664265111, 28.947424257756538 ], [ -81.969308475373012, 28.947482087273865 ], [ -81.969435017907003, 28.947552763048314 ], [ -81.969571294461787, 28.947627722295927 ], [ -81.969722177135566, 28.947709108132422 ], [ -81.969853584884476, 28.947786206228727 ], [ -81.970016631248527, 28.947878298370888 ], [ -81.970129227922072, 28.947926398611912 ], [ -81.970267069847878, 28.947962291842678 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cordero Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967731354997426, 28.947282619956464 ], [ -81.968179195128286, 28.947287008573227 ], [ -81.968420155250683, 28.947280644039367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cristo Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97429015159527, 28.946044992430647 ], [ -81.974459713368717, 28.945962484998713 ], [ -81.974526241785654, 28.945931971325145 ], [ -81.974588431062827, 28.945905271687685 ], [ -81.974706846821945, 28.945846316682751 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cristo Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974706846821945, 28.945846316682751 ], [ -81.974760537132909, 28.945823896736073 ], [ -81.974816940090022, 28.945799740365381 ], [ -81.974871899705889, 28.945775582797225 ], [ -81.97499916869576, 28.945725999509978 ], [ -81.975258045179061, 28.945628105609597 ], [ -81.97535431414309, 28.945590211761623 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cristo Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97535431414309, 28.945590211761623 ], [ -81.975404114713427, 28.945574708719334 ], [ -81.975463408040099, 28.945559457337481 ], [ -81.975560305074254, 28.945532762716724 ], [ -81.975683229636473, 28.945498442074967 ], [ -81.975824956913286, 28.945456492228931 ], [ -81.975920407371419, 28.945429797988872 ], [ -81.976024532732566, 28.945404376569048 ], [ -81.976065024430511, 28.945395480004006 ], [ -81.976102627154106, 28.945387854240707 ], [ -81.976140226063919, 28.945378958940015 ], [ -81.976179274137934, 28.945371331608854 ], [ -81.976225550626651, 28.945361165598509 ], [ -81.97627182681282, 28.945352270000644 ], [ -81.976318104603735, 28.945340829921015 ], [ -81.976354260755414, 28.94532938803394 ], [ -81.976390415873126, 28.945317947039221 ], [ -81.976433802322973, 28.945300146145581 ], [ -81.976472851068209, 28.945284890744588 ], [ -81.97651045428961, 28.945265817476461 ], [ -81.976549504309503, 28.945240385091033 ], [ -81.976587109977345, 28.945214950636384 ], [ -81.976627606187364, 28.945185701782318 ], [ -81.976668648471801, 28.945145801442752 ], [ -81.976717464287248, 28.94510129082644 ], [ -81.976763345768475, 28.945049901502077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cardona Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97535431414309, 28.945590211761623 ], [ -81.975275455716655, 28.945391520410798 ], [ -81.9752462575142, 28.945326142076379 ], [ -81.975223439666777, 28.94527857708346 ], [ -81.975211430773115, 28.945247924866713 ], [ -81.97520182305206, 28.945226785969094 ], [ -81.975195821044636, 28.945209874982652 ], [ -81.975193419358888, 28.945194021249474 ], [ -81.975188621123593, 28.945166541928646 ], [ -81.975189827954381, 28.94514329006299 ], [ -81.975192238052571, 28.945120039322976 ], [ -81.975197050066726, 28.945094674956263 ], [ -81.975201861313423, 28.945072481246687 ], [ -81.975212680676179, 28.945041834166375 ], [ -81.97522830721374, 28.945018585876564 ], [ -81.975245134704707, 28.944996395294766 ], [ -81.975265565070444, 28.94497737423076 ], [ -81.975288399655227, 28.944959411998006 ], [ -81.975323249190538, 28.944938280421081 ], [ -81.975355694508764, 28.944924547194184 ], [ -81.97540376097102, 28.944905531203755 ], [ -81.975523924037077, 28.94487279191506 ], [ -81.975623659243823, 28.944844273328989 ], [ -81.975742617907997, 28.944815759965362 ], [ -81.975833940719241, 28.944794638498152 ], [ -81.9758771991728, 28.944784076856202 ], [ -81.975919254353229, 28.944773515885739 ], [ -81.975961312850046, 28.944761897415262 ], [ -81.976003369532563, 28.944749223248468 ], [ -81.976050233312066, 28.944731263395607 ], [ -81.976104310416872, 28.944704851233546 ], [ -81.976147571505919, 28.94468266436154 ], [ -81.976190831550568, 28.94466047837766 ], [ -81.976288446017193, 28.944609868981448 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Castano Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974706846821945, 28.945846316682751 ], [ -81.974640528351699, 28.94575391563906 ], [ -81.974611614740411, 28.945717023513478 ], [ -81.974582703433583, 28.945675042450027 ], [ -81.974561019534448, 28.945643238815478 ], [ -81.974542227169863, 28.945616522855506 ], [ -81.974521990080589, 28.945587263956 ], [ -81.974503197577349, 28.945552915494627 ], [ -81.974477178111755, 28.945510935861574 ], [ -81.974454050495837, 28.945472773475089 ], [ -81.974436704107333, 28.945439697513358 ], [ -81.974417916394572, 28.945402806378819 ], [ -81.974403460510743, 28.945374819897893 ], [ -81.974389008270364, 28.945340474055367 ], [ -81.97437455635658, 28.945304855978172 ], [ -81.974358659018236, 28.94526542272731 ], [ -81.974348544303595, 28.945233619471303 ], [ -81.974336983526882, 28.945200547312833 ], [ -81.974326868507191, 28.945170017190215 ], [ -81.974318199877416, 28.945139487344633 ], [ -81.974308084796348, 28.945105143227934 ], [ -81.974299417203241, 28.945074613381077 ], [ -81.974292193628202, 28.945045356044396 ], [ -81.974283525655053, 28.945012282632252 ], [ -81.974277749106847, 28.944980482009026 ], [ -81.974271972243869, 28.94494995361848 ], [ -81.974269086872908, 28.944924513814435 ], [ -81.974264756007145, 28.944891441235438 ], [ -81.974260426806651, 28.94485582509251 ], [ -81.9742575446259, 28.944817663859389 ], [ -81.974253216386344, 28.944778231918885 ], [ -81.974251778288718, 28.944745159896009 ], [ -81.974250340510352, 28.944710816542166 ], [ -81.974250349428885, 28.944675202135979 ], [ -81.974250356755334, 28.944645945285981 ], [ -81.974252070775634, 28.944617630758611 ], [ -81.974253927235139, 28.94459809286289 ], [ -81.974258557453268, 28.944578557305924 ], [ -81.974262265076575, 28.944564718649332 ], [ -81.974267820772951, 28.944548438743475 ], [ -81.974275228041023, 28.944536229437666 ], [ -81.974284485847548, 28.944524019585206 ], [ -81.974295596243024, 28.944511810990722 ], [ -81.974308554513783, 28.944502044355509 ], [ -81.974325216522189, 28.944489836825579 ], [ -81.974342803390101, 28.944479257207792 ], [ -81.974364093789859, 28.944467050561485 ], [ -81.974383530783015, 28.944458099932195 ], [ -81.974403893662739, 28.944450777214058 ], [ -81.974425180175729, 28.944445896274637 ], [ -81.974461277553615, 28.944439391328547 ], [ -81.974498296109431, 28.944436955890222 ], [ -81.974553828253974, 28.944434523065887 ], [ -81.974625092202942, 28.944427209996611 ], [ -81.974680624315639, 28.944420708680511 ], [ -81.974720421719425, 28.944414203463587 ], [ -81.97476947508477, 28.944406887016708 ], [ -81.974807422339154, 28.944398752785691 ], [ -81.974852774187667, 28.944388993103242 ], [ -81.974896274067191, 28.944380859891961 ], [ -81.974944402929964, 28.944370285929622 ], [ -81.974988829682857, 28.944359712159446 ], [ -81.97502770236926, 28.944350764171116 ], [ -81.975078607404669, 28.944338562942789 ], [ -81.975114704467799, 28.944328800543236 ], [ -81.975157280410883, 28.944314969996924 ], [ -81.975202632736313, 28.944298696542745 ], [ -81.975243358949498, 28.94428567949419 ], [ -81.975285934027923, 28.944271035038572 ], [ -81.975334064120091, 28.944250690907307 ], [ -81.975367386302494, 28.94423685678111 ], [ -81.975402557543177, 28.944220583186507 ], [ -81.975437731266823, 28.944206750285964 ], [ -81.97547382897416, 28.944189660267707 ], [ -81.975520109677632, 28.944168504568626 ], [ -81.975586752460075, 28.944138396414552 ], [ -81.975656173764875, 28.94410096211357 ], [ -81.975725594314682, 28.944057829795373 ], [ -81.97582196065423, 28.943995948157898 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "La Quinta Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971908889487167, 28.945856595438698 ], [ -81.972056730796993, 28.945866628330755 ], [ -81.97223679415211, 28.945883338405736 ], [ -81.972509740791764, 28.945876725955443 ], [ -81.972667064251652, 28.945861753079939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "La Quinta Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972667064251652, 28.945861753079939 ], [ -81.972739093218522, 28.945851764967411 ], [ -81.972957082169003, 28.945805127313349 ], [ -81.973205405362961, 28.945730152565449 ], [ -81.973477948463952, 28.945635755800023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gaitanos Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971267949952818, 28.946865120639103 ], [ -81.971488613697545, 28.946971247712121 ], [ -81.971735980912655, 28.947092996950605 ], [ -81.9720540805165, 28.947255669581647 ], [ -81.972192810658129, 28.94732546648034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gaitanos Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972192810658129, 28.94732546648034 ], [ -81.972360263776409, 28.947408024887523 ], [ -81.972575642857379, 28.947517274620495 ], [ -81.972857375623008, 28.947655436123835 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alfredo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975633657425632, 28.942194159753836 ], [ -81.975686869060169, 28.942235129957108 ], [ -81.975862451501456, 28.94240368853724 ], [ -81.9760234054569, 28.942547665789775 ], [ -81.976136474940091, 28.942649504422555 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rios Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975633657425632, 28.942194159753836 ], [ -81.975681567638674, 28.942145016051409 ], [ -81.975750762901413, 28.942094704117352 ], [ -81.975823949982143, 28.94205492624268 ], [ -81.975934390848835, 28.942011643317958 ], [ -81.976148613622087, 28.941935612086972 ], [ -81.976783305268484, 28.941700489698857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alfredo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976136474940091, 28.942649504422555 ], [ -81.976200326065694, 28.942696329497206 ], [ -81.976269505862717, 28.942726768939476 ], [ -81.976354646745889, 28.942766575172218 ], [ -81.976422489038725, 28.942819252219223 ], [ -81.976499445280155, 28.942881737861168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Madero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972921979532714, 28.943588567040944 ], [ -81.972981679456069, 28.943631445261964 ], [ -81.973014743778876, 28.943654722982433 ], [ -81.973042518311203, 28.943673346502457 ], [ -81.97307294011334, 28.943693132703462 ], [ -81.973112617441728, 28.943717575689586 ], [ -81.973129811055031, 28.94372805206287 ], [ -81.973156264294332, 28.943743183419191 ], [ -81.973180072633454, 28.943755988128011 ], [ -81.973203878624417, 28.943769954083411 ], [ -81.973242237029936, 28.943789742738733 ], [ -81.973277947461753, 28.943807202937528 ], [ -81.973309691773679, 28.94382233712566 ], [ -81.973338790156333, 28.943835141960022 ], [ -81.973373180303767, 28.943849110898025 ], [ -81.973407569133514, 28.943864244687393 ], [ -81.973451218947588, 28.943882869474969 ], [ -81.973496191322894, 28.943900331454753 ], [ -81.973531903331732, 28.943911974502495 ], [ -81.973572909163835, 28.943924781643247 ], [ -81.973600686555017, 28.94393293303407 ], [ -81.973632431417727, 28.943942248257631 ], [ -81.973682695482594, 28.943957385107005 ], [ -81.973730314637237, 28.943970192599302 ], [ -81.973783225868829, 28.943983002015045 ], [ -81.973866559195216, 28.943999310137954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Madero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973866559195216, 28.943999310137954 ], [ -81.973911533320944, 28.94400629906292 ], [ -81.973952539978967, 28.944012125046253 ], [ -81.974000160224605, 28.944016789247897 ], [ -81.974054396548112, 28.944022615968365 ], [ -81.974104663642521, 28.944026118493287 ], [ -81.974156253281137, 28.944028454590139 ], [ -81.974222392191351, 28.94403312229263 ], [ -81.974279275511932, 28.94403313325159 ], [ -81.974355999728218, 28.944033147994961 ], [ -81.974397007424301, 28.94403082794085 ], [ -81.974500191947584, 28.944022701766219 ], [ -81.97461263349949, 28.944013416020091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Madero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975760640667502, 28.940122629748693 ], [ -81.975003544759943, 28.940293338668415 ], [ -81.97441543436311, 28.940421030054797 ], [ -81.973935129325127, 28.940522347843899 ], [ -81.973926019560096, 28.940522346969697 ], [ -81.973919440229963, 28.940522789614704 ], [ -81.973909825904329, 28.940522343810223 ], [ -81.973902235401567, 28.940521896595552 ], [ -81.973894139086838, 28.940521894112443 ], [ -81.973886549835782, 28.940520557235676 ], [ -81.973878452834285, 28.940519220259262 ], [ -81.973872380906712, 28.940516994919015 ], [ -81.973865802028953, 28.940515657336249 ], [ -81.973858718704349, 28.940513429090768 ], [ -81.973850115205053, 28.940511202352148 ], [ -81.97384303108133, 28.940508085346487 ], [ -81.973834430087393, 28.940504077479833 ], [ -81.973827345851419, 28.940501405304072 ], [ -81.97381722604996, 28.94049606174444 ], [ -81.973810143293974, 28.940491609342835 ], [ -81.973802554726348, 28.940487601672437 ], [ -81.973795975732529, 28.940482703635762 ], [ -81.973790411100879, 28.940478251530656 ], [ -81.973783832221812, 28.940472907760384 ], [ -81.973777812415548, 28.940467431462274 ], [ -81.973772956357209, 28.940463870961469 ], [ -81.973768099274139, 28.940460307753433 ], [ -81.973763646339918, 28.940456745526824 ], [ -81.973759193405769, 28.940453184202351 ], [ -81.973755552872873, 28.940449621232634 ], [ -81.973750694855781, 28.940445703422387 ], [ -81.973745837864811, 28.940441785612173 ], [ -81.973741791132099, 28.94043822436689 ], [ -81.973736528967848, 28.940434304672156 ], [ -81.973729914255898, 28.940428713663724 ], [ -81.973443700580717, 28.940160457561312 ], [ -81.973389040330048, 28.940108111858201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Madero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973389040330048, 28.940108111858201 ], [ -81.973314833210182, 28.940044473636984 ], [ -81.972579528816937, 28.93938075283771 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sansores Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976759131276239, 28.940933156161925 ], [ -81.977191530190481, 28.940698613626793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sansores Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977191530190481, 28.940698613626793 ], [ -81.977740011877074, 28.940394829037562 ], [ -81.978518681510977, 28.939971189872161 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Salido Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978518681510977, 28.939971189872161 ], [ -81.978662875927895, 28.940172604043699 ], [ -81.97868972328726, 28.94020589665238 ], [ -81.978714831710533, 28.940240617309133 ], [ -81.978734557067796, 28.94028480487065 ], [ -81.978745312478978, 28.940322681261552 ], [ -81.978752481850819, 28.940360554373669 ], [ -81.978756060376554, 28.940396851509046 ], [ -81.978756052527913, 28.940434724380328 ], [ -81.978756036176151, 28.940513628149784 ], [ -81.978754233665015, 28.940559391292322 ], [ -81.97875601459198, 28.94061777989694 ], [ -81.978756002491679, 28.940676168215646 ], [ -81.978754079943755, 28.941301079276112 ], [ -81.978744990836759, 28.941873913272406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Salido Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978748448447774, 28.942503559411342 ], [ -81.978752534928162, 28.942974736726871 ], [ -81.978750335624014, 28.942989702715305 ], [ -81.978745392849717, 28.943002252827704 ], [ -81.978739353110853, 28.94301673547734 ], [ -81.978732764251447, 28.943027838950872 ], [ -81.978724528082481, 28.943038458532275 ], [ -81.978715745069238, 28.943049558948278 ], [ -81.978705865490781, 28.943060660993307 ], [ -81.97869433777619, 28.943070315496097 ], [ -81.978686102402946, 28.943077073260028 ], [ -81.978673477196338, 28.943086243956543 ], [ -81.978657010325321, 28.943095895862175 ], [ -81.978645482179914, 28.943102653999272 ], [ -81.978633406566402, 28.943107962062488 ], [ -81.978622977335405, 28.943113271290585 ], [ -81.978611999409594, 28.943118096800774 ], [ -81.978600472788443, 28.943122441299778 ], [ -81.978588947394329, 28.943125817637327 ], [ -81.97857851773891, 28.943128229598258 ], [ -81.978569187001028, 28.943129193554164 ], [ -81.978558757546736, 28.94313064005981 ], [ -81.978547232756085, 28.943131121837101 ], [ -81.978534610274778, 28.943132086163768 ], [ -81.978523632227223, 28.943132567124671 ], [ -81.978508813743503, 28.943132563837182 ], [ -81.978392457973726, 28.943132545954061 ], [ -81.978093887988251, 28.943132497290289 ], [ -81.978078518554909, 28.943132977494209 ], [ -81.978063700071175, 28.943132974157699 ], [ -81.978048332688985, 28.943133455260813 ], [ -81.978034610251981, 28.943135865735787 ], [ -81.978022055170015, 28.943138216850215 ], [ -81.97800627423112, 28.94314424878851 ], [ -81.977993924669889, 28.94314967765645 ], [ -81.977979516734891, 28.943158125256954 ], [ -81.97796373296103, 28.94316777809258 ], [ -81.9779479522618, 28.943177430024566 ], [ -81.977937659003146, 28.943184670129501 ], [ -81.977928740554745, 28.943190704094878 ], [ -81.977920506304415, 28.943196736368208 ], [ -81.977913644683611, 28.943202166136263 ], [ -81.97790747046804, 28.943206993285813 ], [ -81.977901980711039, 28.943210612377722 ], [ -81.977896490823369, 28.943214836005858 ], [ -81.977888256569088, 28.943220869179505 ], [ -81.977878649552693, 28.943228108491255 ], [ -81.977869730201434, 28.94323353972063 ], [ -81.977861496579081, 28.943241383795272 ], [ -81.977851203308518, 28.94324862208892 ], [ -81.977841597442804, 28.943255259568581 ], [ -81.977830618813883, 28.943263102283371 ], [ -81.977818952515364, 28.943272754883214 ], [ -81.977805915764165, 28.943282409058821 ], [ -81.977795623249776, 28.94329085642125 ], [ -81.977783957839776, 28.943301113554632 ], [ -81.977772293191904, 28.943312577053167 ], [ -81.977759942159452, 28.943324644070518 ], [ -81.977479979457897, 28.943553309523562 ], [ -81.977466256520202, 28.943562359915937 ], [ -81.97745390559021, 28.943568996904293 ], [ -81.97743881196493, 28.943574424355226 ], [ -81.97742509008313, 28.943578646572686 ], [ -81.977411367440183, 28.943581661520337 ], [ -81.977397645955008, 28.943584073734918 ], [ -81.977381865710839, 28.943586484697082 ], [ -81.977366085599286, 28.943588291120982 ], [ -81.97735236580391, 28.943587686062816 ], [ -81.977337271584915, 28.943586476233531 ], [ -81.977324923536628, 28.943584664137092 ], [ -81.977313946968835, 28.943582851370245 ], [ -81.977303656921066, 28.943579832353176 ], [ -81.977291996553262, 28.943576210370441 ], [ -81.977283076068574, 28.943572587950559 ], [ -81.977272786290072, 28.943568361662876 ], [ -81.977260439047384, 28.943562928658082 ], [ -81.977246718676369, 28.943555684515733 ], [ -81.977234371838065, 28.94354844150844 ], [ -81.97722133772352, 28.943541196578185 ], [ -81.977210361341918, 28.943533954704741 ], [ -81.977195270169716, 28.943523692152418 ], [ -81.977176750729441, 28.943509205378042 ], [ -81.977143826165474, 28.943480836159946 ], [ -81.977117074893499, 28.943456693430747 ], [ -81.977076606690744, 28.943419273804558 ], [ -81.977018304810699, 28.943360726609363 ], [ -81.976836518243871, 28.943186646448115 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Salido Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976836518243871, 28.943186646448115 ], [ -81.976629598366657, 28.943008810808713 ], [ -81.976499445280155, 28.942881737861168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charo Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977743799466069, 28.941872571710451 ], [ -81.978744990836759, 28.941873913272406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Suarez Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977603643032509, 28.942413192545551 ], [ -81.977770708285718, 28.942479729409531 ], [ -81.977817352474162, 28.942489204931523 ], [ -81.977876552197756, 28.942498683420784 ], [ -81.978748448447774, 28.942503559411342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Saldivar Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977191530190481, 28.940698613626793 ], [ -81.977595009928137, 28.941267735909761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Saldivar Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977595009928137, 28.941267735909761 ], [ -81.977613861946935, 28.941307821655816 ], [ -81.977622825495558, 28.941329507075572 ], [ -81.977630749503831, 28.941353219774001 ], [ -81.977641935532858, 28.941376579319076 ], [ -81.977652921338134, 28.941405585382249 ], [ -81.977665125618017, 28.941439963903605 ], [ -81.97767732999705, 28.941478638242938 ], [ -81.977690715453846, 28.941524866779211 ], [ -81.97770406243643, 28.941573545936471 ], [ -81.977715501932323, 28.941615510808123 ], [ -81.97772503525961, 28.941654118828883 ], [ -81.977732658178098, 28.941699439593425 ], [ -81.977738371712604, 28.941751473102059 ], [ -81.977744085252368, 28.941803508414647 ], [ -81.977743799466069, 28.941872571710451 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Saldivar Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977743799466069, 28.941872571710451 ], [ -81.977733163343331, 28.942009124826765 ], [ -81.977725520649997, 28.942054778695717 ], [ -81.977716351889214, 28.942099089696672 ], [ -81.977707184579543, 28.942136686731875 ], [ -81.977696489592191, 28.942175626123607 ], [ -81.977682741012046, 28.942218595548404 ], [ -81.97766593927598, 28.942268275718906 ], [ -81.977647609260927, 28.9423125860833 ], [ -81.977632334872922, 28.942352865510124 ], [ -81.977620115528907, 28.942382406351562 ], [ -81.977603643032509, 28.942413192545551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Saldivar Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977603643032509, 28.942413192545551 ], [ -81.977526449967101, 28.942536002451632 ], [ -81.977473152648983, 28.942610334320012 ], [ -81.977430883975913, 28.942658810109194 ], [ -81.977384940562104, 28.942708901269761 ], [ -81.97734818511239, 28.942749297929318 ], [ -81.977307758409395, 28.942784846835167 ], [ -81.977256304430924, 28.942830088090087 ], [ -81.977223227135255, 28.942857555478351 ], [ -81.977193824891543, 28.942881793276111 ], [ -81.977151560962426, 28.942912491091821 ], [ -81.976836518243871, 28.943186646448115 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zaragoza Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975760640667502, 28.940122629748693 ], [ -81.975744873688328, 28.940062213816176 ], [ -81.975739248175657, 28.940041658545397 ], [ -81.975734142962125, 28.940024431930144 ], [ -81.975730059960995, 28.940009177914273 ], [ -81.975726109992053, 28.939995265633062 ], [ -81.975722162280547, 28.939980486247922 ], [ -81.975720533197048, 28.939968253556714 ], [ -81.975719201555137, 28.939951795478247 ], [ -81.975719205047866, 28.939937015006283 ], [ -81.975719208745929, 28.93992136562553 ], [ -81.975720200858675, 28.939907456046559 ], [ -81.975721346150351, 28.939896440151209 ], [ -81.975724160272549, 28.939881374162717 ], [ -81.975727502565206, 28.939866694451748 ], [ -81.975732073960557, 28.939850946648221 ], [ -81.975738007734577, 28.939838775784018 ], [ -81.97574390879457, 28.939826133014016 ], [ -81.975750862667297, 28.939811826605244 ], [ -81.975758260918226, 28.9398008948551 ], [ -81.975765694627142, 28.939787487217078 ], [ -81.975774591174371, 28.939773577266248 ], [ -81.975782502997419, 28.939759668940916 ], [ -81.975790412562574, 28.939746627718922 ], [ -81.975798321304012, 28.939732720294355 ], [ -81.975809197950866, 28.9397170728821 ], [ -81.975819771533011, 28.939699042456414 ], [ -81.975828974197839, 28.939678822817324 ], [ -81.975837874209688, 28.939658828696235 ], [ -81.975845784577572, 28.93964231093328 ], [ -81.975854684174678, 28.939624054628585 ], [ -81.97586259638021, 28.939604058522612 ], [ -81.975870507760803, 28.939583194409373 ], [ -81.975876442722779, 28.939561461932261 ], [ -81.975882378917902, 28.939543205090427 ], [ -81.97588930105421, 28.939519732266177 ], [ -81.975895236422616, 28.939500607416971 ], [ -81.975900181323894, 28.939479741864158 ], [ -81.975907107140713, 28.939453661410543 ], [ -81.97591106731241, 28.93942844933067 ], [ -81.9759167246239, 28.939396495617686 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Gabriel Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96771092848013, 28.940018431785013 ], [ -81.967757022448808, 28.940065459610715 ], [ -81.967789170864222, 28.940097524939784 ], [ -81.967823460638186, 28.940127704982189 ], [ -81.967916510726667, 28.94015820679482 ], [ -81.96825961830443, 28.940242856062682 ], [ -81.968590868359271, 28.940335320046941 ], [ -81.968745208624142, 28.940376841832659 ], [ -81.968820239702495, 28.940376859334005 ], [ -81.968869548544106, 28.940371213432094 ], [ -81.968974607246039, 28.940331637066265 ], [ -81.969399123508339, 28.940163903693339 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Gabriel Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969399123508339, 28.940163903693339 ], [ -81.969542773754029, 28.940103591971834 ], [ -81.969735736818734, 28.940026320920225 ], [ -81.969930841847031, 28.939950934061343 ], [ -81.970065912297187, 28.939907592896461 ], [ -81.970149016146379, 28.939891953058869 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Gabriel Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970149016146379, 28.939891953058869 ], [ -81.970262543022912, 28.939868315688145 ], [ -81.970407602457399, 28.939812674527793 ], [ -81.970611704160959, 28.939720465403123 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970611704160959, 28.939720465403123 ], [ -81.970626051403272, 28.939741836672496 ], [ -81.97064371052619, 28.939764179534979 ], [ -81.970659016156304, 28.939784415925562 ], [ -81.970672986199006, 28.939804878497281 ], [ -81.970687860396794, 28.939827322702453 ], [ -81.970701105261767, 28.939847722854008 ], [ -81.970717661812884, 28.939866181090853 ], [ -81.970740842999959, 28.939894351258808 ], [ -81.970748568263289, 28.939904066139192 ], [ -81.970758503000056, 28.939913780599774 ], [ -81.970767334303133, 28.939922526657444 ], [ -81.970776164307338, 28.939932240875333 ], [ -81.970793827197795, 28.939948756706048 ], [ -81.970814800200301, 28.939965272354289 ], [ -81.970825839410153, 28.939975959723302 ], [ -81.970840192832938, 28.939986645106973 ], [ -81.97085564764275, 28.939998304303856 ], [ -81.970863374774396, 28.940005104769508 ], [ -81.970871102456016, 28.940009963498927 ], [ -81.970876621690238, 28.940014821747162 ], [ -81.970896493131292, 28.940027450964084 ], [ -81.970910844790495, 28.940037167276401 ], [ -81.97092630091565, 28.940047854695123 ], [ -81.970943963441528, 28.940058542591331 ], [ -81.970966044373597, 28.940071174082377 ], [ -81.970995853072594, 28.940084778113391 ], [ -81.97102234886475, 28.940097410552248 ], [ -81.971048845961903, 28.940109072118275 ], [ -81.971070926709999, 28.940118789183611 ], [ -81.971100737551694, 28.940128508817757 ], [ -81.971127236780447, 28.940136284190153 ], [ -81.971152629767076, 28.940142117582912 ], [ -81.971170294988582, 28.940146978437717 ], [ -81.971182441438344, 28.940148922790787 ], [ -81.971191272918674, 28.940149897365536 ], [ -81.97120231387693, 28.940150868806203 ], [ -81.971214460598546, 28.940151844093087 ], [ -81.971226607049445, 28.940153789344446 ], [ -81.971242065664853, 28.940155734404513 ], [ -81.971256418787277, 28.940156709259643 ], [ -81.971269668197763, 28.940157682071622 ], [ -81.971284022075309, 28.940159629596465 ], [ -81.971299479937642, 28.940160602879569 ], [ -81.971313834357673, 28.940160605958638 ], [ -81.971324876613735, 28.940160608326181 ], [ -81.97133702258229, 28.940160611831601 ], [ -81.971346959074381, 28.940160613058133 ], [ -81.971363522971117, 28.940160617507431 ], [ -81.971376772652903, 28.940160619440999 ], [ -81.971390023360215, 28.940160622275748 ], [ -81.971398856139302, 28.940160624164641 ], [ -81.971418730148741, 28.940160628412592 ], [ -81.971439711486596, 28.940158691158192 ], [ -81.971459587816454, 28.940157723630364 ], [ -81.971480568396288, 28.940154814599204 ], [ -81.97150596463176, 28.940148992097107 ], [ -81.97152694547745, 28.940145110386265 ], [ -81.97154903030156, 28.940140260745892 ], [ -81.971583262430102, 28.940130554831999 ], [ -81.97161197393946, 28.940120846835523 ], [ -81.971638478018335, 28.940111141071768 ], [ -81.971664980041282, 28.94010143349773 ], [ -81.971687066452404, 28.940090754115925 ], [ -81.97171136130855, 28.940080075197567 ], [ -81.971732343465462, 28.94007133821292 ], [ -81.971756637552716, 28.940059689320531 ], [ -81.971774306781853, 28.940049979859463 ], [ -81.971790457991418, 28.940039905549295 ], [ -81.97183049194355, 28.94001441877792 ], [ -81.972151431590319, 28.939750056200818 ], [ -81.972579528816937, 28.93938075283771 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972579528816937, 28.93938075283771 ], [ -81.972604978575305, 28.939354029406495 ], [ -81.972611339333739, 28.939345948864407 ], [ -81.972619823188552, 28.939334762159422 ], [ -81.97262901103467, 28.939322332237204 ], [ -81.972633961221447, 28.939314874890275 ], [ -81.97264456492573, 28.939301200091318 ], [ -81.972652339817174, 28.939290634919569 ], [ -81.972658704636061, 28.939278824293684 ], [ -81.972665772950307, 28.939267636393971 ], [ -81.972672136043926, 28.939254586015451 ], [ -81.972677086389879, 28.939246505181934 ], [ -81.972684156550571, 28.93923220887962 ], [ -81.972691369964252, 28.939215363626321 ], [ -81.972697026412064, 28.93920193774802 ], [ -81.97270155195848, 28.939190503000923 ], [ -81.972706077636673, 28.939178567480628 ], [ -81.972712299134372, 28.939165639783095 ], [ -81.972718523209551, 28.939150721625758 ], [ -81.972724178229427, 28.939138787237486 ], [ -81.97273040216912, 28.939124368047931 ], [ -81.972734362287838, 28.939109948396524 ], [ -81.972737192270785, 28.939098509693164 ], [ -81.972738889566827, 28.939088067793453 ], [ -81.972740591229282, 28.939076629762265 ], [ -81.972741723339595, 28.939066186844975 ], [ -81.972741725737507, 28.939053257878058 ], [ -81.972741730055731, 28.939040824270766 ], [ -81.972741732162618, 28.93903286784472 ], [ -81.972741733902282, 28.939022424696937 ], [ -81.972741737561762, 28.939012478713416 ], [ -81.972741739828024, 28.939000046910238 ], [ -81.972741742988362, 28.938988112271073 ], [ -81.972741746779491, 28.938977669123652 ], [ -81.97274174994007, 28.938965733582169 ], [ -81.972741752837109, 28.938954793270653 ], [ -81.972741756260987, 28.938941863401418 ], [ -81.9727417598165, 28.938928436368336 ], [ -81.972741762581876, 28.938917993220606 ], [ -81.97274120095301, 28.938904566072253 ], [ -81.972740639455694, 28.938890642662312 ], [ -81.972739511381818, 28.938874230610569 ], [ -81.97273725588532, 28.938858316395113 ], [ -81.9727361278877, 28.938849365410675 ], [ -81.972733375556984, 28.93883874304694 ], [ -81.972694102427198, 28.938720865686882 ], [ -81.972675268361002, 28.938664524418556 ], [ -81.972650703669387, 28.938580537496918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972141787876652, 28.935816790707403 ], [ -81.972159352399061, 28.935762868751304 ], [ -81.972170385599981, 28.935722543007532 ], [ -81.972182297931383, 28.935693222728055 ], [ -81.972203742359753, 28.935636674993454 ], [ -81.97221923050806, 28.935598976749105 ], [ -81.972234219659356, 28.935563098326639 ], [ -81.972244247369474, 28.935535098608451 ], [ -81.972259732590103, 28.935500543049102 ], [ -81.972274029285757, 28.935464938775507 ], [ -81.972288322511204, 28.935434570513014 ], [ -81.972303043553921, 28.935403811644061 ], [ -81.972322865606984, 28.935368599202157 ], [ -81.97235711664807, 28.935312914878349 ], [ -81.972400281238976, 28.935245039682307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972400281238976, 28.935245039682307 ], [ -81.972409808673575, 28.935227238479452 ], [ -81.972419337595397, 28.935211531501221 ], [ -81.972428864647398, 28.935198966310598 ], [ -81.972441965914513, 28.935180118278307 ], [ -81.972461021030995, 28.935154986990938 ], [ -81.972483648019931, 28.935124620421814 ], [ -81.972508655937801, 28.935093207676779 ], [ -81.972528903449998, 28.935065985106302 ], [ -81.972550341049725, 28.935037711604053 ], [ -81.972574157525486, 28.935008393729266 ], [ -81.972599761015942, 28.934978133318669 ], [ -81.972630247483494, 28.934945465678815 ], [ -81.972657873515857, 28.934919498787103 ], [ -81.972683594357846, 28.93489520886569 ], [ -81.972711221611519, 28.934868403731627 ], [ -81.972741706099484, 28.934839086284427 ], [ -81.972770285175386, 28.934812282234287 ], [ -81.972796005522326, 28.934789666949136 ], [ -81.972826747634102, 28.934763404703368 ], [ -81.972857431437816, 28.934740378968431 ], [ -81.972944133503688, 28.934679985222267 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oviedo Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969822863268931, 28.935334746889961 ], [ -81.96977280826664, 28.935444743307691 ], [ -81.96975677092577, 28.935491493864649 ], [ -81.969762015717663, 28.935598752568342 ], [ -81.969777938089223, 28.935944250024114 ], [ -81.969809605617385, 28.936565459608367 ], [ -81.969841288323494, 28.937139569384524 ], [ -81.969867825945812, 28.93726574042558 ], [ -81.969899660834713, 28.937316969917394 ], [ -81.969968623926817, 28.937368552415169 ], [ -81.970154234725982, 28.937438723839136 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marquez Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968397742328804, 28.935362223998759 ], [ -81.968492684469695, 28.935330253731987 ], [ -81.968608940590812, 28.935308940883871 ], [ -81.968743107292838, 28.935295309740496 ], [ -81.969045587544443, 28.935281285294266 ], [ -81.969385388477193, 28.935262455872564 ], [ -81.969544639047172, 28.935258023141625 ], [ -81.969666562762654, 28.935272146471686 ], [ -81.969772847977367, 28.935309297220947 ], [ -81.969822863268931, 28.935334746889961 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marquez Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969822863268931, 28.935334746889961 ], [ -81.969884208076166, 28.935365357506502 ], [ -81.970032881266036, 28.935454084600149 ], [ -81.970197374920772, 28.935561723530636 ], [ -81.970330033374026, 28.935617787285047 ], [ -81.970426354057906, 28.935652530693076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Del Norte Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973035779250267, 28.937247324837923 ], [ -81.973874575012715, 28.937249386173796 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974308610756253, 28.934003262842815 ], [ -81.974346547391491, 28.933965115703806 ], [ -81.974361791699309, 28.933951023886156 ], [ -81.974382837873748, 28.933930629749408 ], [ -81.974400255297411, 28.933913702432175 ], [ -81.97441858908455, 28.933899192534877 ], [ -81.974437838185437, 28.933883073116714 ], [ -81.974463505845989, 28.933863728316854 ], [ -81.974487337731802, 28.933847607962189 ], [ -81.974509337521837, 28.93383229570982 ], [ -81.974536834394613, 28.933815368491491 ], [ -81.974567083619547, 28.933800862647242 ], [ -81.974595496248739, 28.933788774596383 ], [ -81.97462390969784, 28.933777494093214 ], [ -81.974648659168764, 28.933767016833688 ], [ -81.974675238899906, 28.933758959870126 ], [ -81.974709151302463, 28.933750902484135 ], [ -81.974741229563136, 28.933743654101196 ], [ -81.97477422522077, 28.933738824032982 ], [ -81.974815466416018, 28.933733992803418 ], [ -81.974842961714046, 28.933731579831271 ], [ -81.974871373388709, 28.933731585175003 ], [ -81.974896118016972, 28.933732395573116 ], [ -81.974919946702016, 28.933733207599456 ], [ -81.974948357591487, 28.933736437727333 ], [ -81.974969434782977, 28.933739665573871 ], [ -81.974992346742951, 28.933743701313958 ], [ -81.975015256261528, 28.933749349449965 ], [ -81.975037249839204, 28.933754997411018 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Espana Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970453565680856, 28.92933846021614 ], [ -81.970399603227563, 28.929359809225758 ], [ -81.970380714200303, 28.929376418103448 ], [ -81.970356425125487, 28.929400147597342 ], [ -81.970337533009143, 28.92942387918529 ], [ -81.970326735656471, 28.929442862884233 ], [ -81.970313238105646, 28.92947134083408 ], [ -81.97030783327304, 28.929502194516246 ], [ -81.970307820285953, 28.929547289414444 ], [ -81.970315895249584, 28.929618494012782 ], [ -81.970371299795744, 28.929972306082274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Espana Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970838502071572, 28.932390762715851 ], [ -81.970930141287411, 28.932718314703134 ], [ -81.970992130212281, 28.932941430418964 ], [ -81.971029862034129, 28.933083842331399 ], [ -81.971064912754272, 28.933171667537561 ], [ -81.971108061226928, 28.933245252665277 ], [ -81.971145813557357, 28.933311716608735 ], [ -81.97128876511745, 28.933461273803243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cimarron Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97128876511745, 28.933461273803243 ], [ -81.971245578376397, 28.933527719421637 ], [ -81.971232281403445, 28.933556839020607 ], [ -81.971220944966191, 28.933573337744445 ], [ -81.971215667438145, 28.933581931866573 ], [ -81.971210390005737, 28.933590180409666 ], [ -81.971205305306071, 28.933598773670536 ], [ -81.971200419589621, 28.933607366974023 ], [ -81.971195727727974, 28.933615960319067 ], [ -81.97119123065076, 28.933624897480065 ], [ -81.971186930601377, 28.933633491811413 ], [ -81.971182824311541, 28.933642427251684 ], [ -81.971178719045966, 28.933651365398905 ], [ -81.971175004472215, 28.933660646502069 ], [ -81.971170310714228, 28.933672335618112 ], [ -81.971165030997611, 28.933685052321103 ], [ -81.971161120514054, 28.933694334283892 ], [ -81.971157210126023, 28.933703272472389 ], [ -81.971152909045429, 28.933711864997754 ], [ -81.971148606841922, 28.933720802199211 ], [ -81.97114391599635, 28.933729396444807 ], [ -81.971139224028803, 28.933738331757269 ], [ -81.971134337274677, 28.933746925057971 ], [ -81.971129254708316, 28.933755176346605 ], [ -81.971123976138315, 28.93376376866005 ], [ -81.971118502781934, 28.933772018059329 ], [ -81.971113029424458, 28.933780268360678 ], [ -81.971107361185005, 28.93378851681512 ], [ -81.971101301129721, 28.933796766086978 ], [ -81.971095242195588, 28.933804671584614 ], [ -81.971089183260574, 28.933812577081962 ], [ -81.971082732509885, 28.933820482494333 ], [ -81.971076281854948, 28.933828043229955 ], [ -81.971069441435162, 28.933835605685552 ], [ -81.971062599989196, 28.933843166335979 ], [ -81.971055758541738, 28.933850728790659 ], [ -81.971048526400921, 28.933857946483933 ], [ -81.971041294259109, 28.93386516417684 ], [ -81.971033868356841, 28.933872038053199 ], [ -81.971026441427654, 28.933878912831208 ], [ -81.971018623708432, 28.933885786621865 ], [ -81.971010807013869, 28.933892660412305 ], [ -81.971002988363907, 28.933899189525352 ], [ -81.97099477994901, 28.933905719455772 ], [ -81.970986571629879, 28.933911905611499 ], [ -81.970978362187012, 28.933918436442948 ], [ -81.970969764199509, 28.933924276934352 ], [ -81.970961164062032, 28.933930463905781 ], [ -81.970952567097754, 28.933936306200902 ], [ -81.970943772270473, 28.933941804678309 ], [ -81.970694011585323, 28.934100573880819 ], [ -81.970625807271375, 28.934142500277567 ], [ -81.970579296405518, 28.934169991993343 ], [ -81.970532391844472, 28.9341967951556 ], [ -81.970484708024415, 28.934222568611599 ], [ -81.970436633488788, 28.934247998190095 ], [ -81.970387973553571, 28.934272393592398 ], [ -81.970338923001577, 28.934296104951279 ], [ -81.970289480809669, 28.934319125950033 ], [ -81.970239452095143, 28.934341459251783 ], [ -81.970189033791897, 28.934363107606618 ], [ -81.969707416073319, 28.934555069958364 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cadena Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970453565680856, 28.92933846021614 ], [ -81.970496736594797, 28.929326602754983 ], [ -81.970558787678172, 28.929328990357444 ], [ -81.97081777617521, 28.929362274997903 ], [ -81.971044387181166, 28.929402672148715 ], [ -81.971357324543391, 28.929471568366839 ], [ -81.971459836932439, 28.929502445151716 ], [ -81.971513790140435, 28.929521442740658 ], [ -81.971559647532857, 28.929538068258392 ], [ -81.971608203518315, 28.929561811636361 ], [ -81.971635180007723, 28.92957368524425 ], [ -81.97167294281526, 28.929602174186797 ], [ -81.971694517778786, 28.929630659695164 ], [ -81.971710697171787, 28.929661517095219 ], [ -81.971724175476467, 28.929701869675192 ], [ -81.97172956166672, 28.929737470863124 ], [ -81.97173224741266, 28.929780193294675 ], [ -81.971729543806546, 28.92980629882485 ], [ -81.97171873875152, 28.929846646271596 ], [ -81.971697145203152, 28.929889362666827 ], [ -81.971605380474983, 28.930017507008792 ], [ -81.971452314278849, 28.930211465149235 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rosario Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970371299795744, 28.929972306082274 ], [ -81.970434499150343, 28.929974057878308 ], [ -81.97048198445745, 28.929972169931094 ], [ -81.970551050032995, 28.929972185146003 ], [ -81.970600689098589, 28.929977892247592 ], [ -81.970663279660613, 28.929981703741934 ], [ -81.970721551625644, 28.929991210450627 ], [ -81.970797089437312, 28.930004516857768 ], [ -81.970879101696028, 28.930019724864739 ], [ -81.970961113978916, 28.930034931919444 ], [ -81.971045282132152, 28.930057734909692 ], [ -81.971116504032281, 28.930074840670041 ], [ -81.971204987153399, 28.930101441348825 ], [ -81.971265414569004, 28.930120442233399 ], [ -81.971310735634447, 28.930137540522008 ], [ -81.971353895127237, 28.930156537663439 ], [ -81.971412070237136, 28.930186705704504 ], [ -81.971452314278849, 28.930211465149235 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Medina Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963976532690538, 28.936497487559407 ], [ -81.96408713905943, 28.936441507355582 ], [ -81.964150820776453, 28.936409097769907 ], [ -81.964306686637656, 28.936303015174794 ], [ -81.964881548123969, 28.935880145486383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Medina Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964881548123969, 28.935880145486383 ], [ -81.965164779914716, 28.935693028603929 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trevino Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963724967503936, 28.934768852333228 ], [ -81.963760155780619, 28.934761491917254 ], [ -81.963803719915319, 28.934762977141734 ], [ -81.963845603417155, 28.934774781438218 ], [ -81.963899209653192, 28.934807220742275 ], [ -81.963962862153792, 28.934858825653546 ], [ -81.964004738009479, 28.934892738814799 ], [ -81.964056666303932, 28.934934022795424 ], [ -81.964098542734547, 28.93496940756927 ], [ -81.964135391703053, 28.935006266235078 ], [ -81.964168891256023, 28.935041650548246 ], [ -81.964202388780294, 28.935077034852352 ], [ -81.964259335043764, 28.935141903359199 ], [ -81.964473981666544, 28.935394861798745 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 126th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019663747107572, 28.940115030754033 ], [ -82.020243737666945, 28.940110948027105 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 126th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016341148071675, 28.941011595029547 ], [ -82.016773221330382, 28.941024322706429 ], [ -82.018658149473822, 28.941011818725514 ], [ -82.018775504505172, 28.94095194381012 ], [ -82.018864120606565, 28.940880093866699 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 135th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028853471304672, 28.95285630183454 ], [ -82.028444873762012, 28.952854058525869 ], [ -82.027321682577579, 28.952832277580455 ], [ -82.026572887781853, 28.952846742371772 ], [ -82.024288366263519, 28.952841459713678 ], [ -82.022812286477247, 28.952862682840294 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015920011059791, 28.92821113636699 ], [ -82.015934137336359, 28.927971283051935 ], [ -82.015941567541418, 28.927375546317595 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016341148071675, 28.941011595029547 ], [ -82.01634100947696, 28.941333000966594 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Juan Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957114696789162, 28.943974939919748 ], [ -81.957112529972648, 28.944342011855504 ], [ -81.957114867989276, 28.944361263023513 ], [ -81.957117595951559, 28.94438017144487 ], [ -81.957120714743425, 28.944399079991157 ], [ -81.957124224222213, 28.94441833333822 ], [ -81.957127927720791, 28.944437242071285 ], [ -81.957132220170848, 28.944455807218965 ], [ -81.957136904334618, 28.94447471626534 ], [ -81.957141779441287, 28.944493280696683 ], [ -81.957147048455667, 28.944511846156008 ], [ -81.957152904228053, 28.944530412704982 ], [ -81.957158953879144, 28.944548977511026 ], [ -81.95716851757885, 28.944575795810785 ], [ -81.957175350062073, 28.944594017092559 ], [ -81.957182767252277, 28.944612240365309 ], [ -81.957196628097662, 28.944643871061317 ], [ -81.957479532258347, 28.945260348949969 ], [ -81.957487734535277, 28.945275479393519 ], [ -81.957496130692945, 28.94529060719114 ], [ -81.957504722922778, 28.945305392179112 ], [ -81.957513707012495, 28.945320178193036 ], [ -81.957523079885618, 28.945334963427243 ], [ -81.957572135400696, 28.945418927386946 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pamona Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955317589092132, 28.943230790359721 ], [ -81.955364534623797, 28.943227342998433 ], [ -81.955420312703566, 28.943225025522416 ], [ -81.955477699225199, 28.943229832161339 ], [ -81.955521497123968, 28.943237137228742 ], [ -81.955572397699825, 28.9432465253239 ], [ -81.955633953071512, 28.943263207454645 ], [ -81.955678929847053, 28.943281966569227 ], [ -81.955740479778058, 28.943309061111425 ], [ -81.955802027381225, 28.943339279363208 ], [ -81.955855285774732, 28.943371579154171 ], [ -81.955899076631255, 28.943402833660961 ], [ -81.955933397472208, 28.943426795414929 ], [ -81.955959228807799, 28.943446177940768 ], [ -81.955980913966428, 28.943460625361709 ], [ -81.956002403061007, 28.943475412879248 ], [ -81.956027213227046, 28.943493641023935 ], [ -81.956047920391342, 28.943509118531811 ], [ -81.956068235419181, 28.943525282552958 ], [ -81.956088356578945, 28.9435414474098 ], [ -81.956108086774478, 28.943557954104627 ], [ -81.956127424978831, 28.943574805344191 ], [ -81.956146567118083, 28.943592000290423 ], [ -81.95617645487404, 28.943620199504135 ], [ -81.956194620187603, 28.943638080769048 ], [ -81.956212591486576, 28.943656308448645 ], [ -81.956229975015106, 28.943674534129261 ], [ -81.956247163358555, 28.943693448193457 ], [ -81.956263763931304, 28.943712360259045 ], [ -81.956281539193867, 28.943733336249814 ], [ -81.956297554787866, 28.943752936569911 ], [ -81.956303804812819, 28.943760501627569 ], [ -81.956310445519733, 28.943768410585903 ], [ -81.956317086372778, 28.943775975770293 ], [ -81.956323922126643, 28.943783541920187 ], [ -81.956330954979165, 28.943790762555693 ], [ -81.95633798578109, 28.943797983190162 ], [ -81.956345214560869, 28.94380520569333 ], [ -81.956352636190744, 28.943812427356601 ], [ -81.956360254918508, 28.943819305309979 ], [ -81.956367872621485, 28.943826183262601 ], [ -81.95639369470787, 28.943843597800029 ], [ -81.956413529760695, 28.943857381363305 ], [ -81.956437542674223, 28.943871626450942 ], [ -81.956499141219552, 28.943901499722617 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pamona Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956499141219552, 28.943901499722617 ], [ -81.956525505390132, 28.943910577223281 ], [ -81.956559178539138, 28.943921611454439 ], [ -81.956610080049543, 28.943937128433262 ], [ -81.956656807482148, 28.943945640444895 ], [ -81.956711104982389, 28.943954843334968 ], [ -81.956775325300129, 28.943960835435931 ], [ -81.956841191132739, 28.943966501406056 ], [ -81.957114696789162, 28.943974939919748 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hickory Head Hammock", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956447012056984, 28.939995546417499 ], [ -81.956437901208332, 28.940561169585127 ], [ -81.956446819545278, 28.940686998204711 ], [ -81.956460928854085, 28.940745577872502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hickory Head Hammock", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956460928854085, 28.940745577872502 ], [ -81.956494325254369, 28.94079027840602 ], [ -81.956535344232478, 28.940829826600542 ], [ -81.956600689756016, 28.940882709534112 ], [ -81.956677822885339, 28.940917250816419 ], [ -81.956785832946679, 28.940941040358915 ], [ -81.957227704033699, 28.94101028693321 ], [ -81.95766466449254, 28.941081687889348 ], [ -81.957865951225017, 28.941142215801023 ], [ -81.957956777878493, 28.941161679722324 ], [ -81.95803288421358, 28.94115738519843 ], [ -81.958094267707395, 28.941137969005656 ], [ -81.958150745059044, 28.941105594320018 ], [ -81.958197408430323, 28.941066738985612 ], [ -81.958236700783402, 28.941030039623886 ], [ -81.958258822028711, 28.940967421037211 ], [ -81.958241799399232, 28.940563590700307 ], [ -81.958242793660347, 28.939983431630477 ], [ -81.958259292384895, 28.939799135191748 ], [ -81.958276548372993, 28.939624221932672 ], [ -81.958279043053281, 28.939524884696315 ], [ -81.958271426888501, 28.939367158695745 ], [ -81.958254606928051, 28.939241983676908 ], [ -81.958230481243064, 28.939122901370808 ], [ -81.958202385556049, 28.939073429776382 ], [ -81.958167676637871, 28.939019589912899 ], [ -81.958127999909308, 28.938978842573984 ], [ -81.958078400018934, 28.938941002017003 ], [ -81.958012257544837, 28.938911885049567 ], [ -81.957943065433753, 28.938905825207694 ], [ -81.956751981635293, 28.9389973186553 ], [ -81.956656050873178, 28.939014744347368 ], [ -81.956579959045371, 28.939046726785605 ], [ -81.956512129191836, 28.939099077530823 ], [ -81.956465791547117, 28.939168893702089 ], [ -81.956437638513165, 28.939257627841297 ], [ -81.956440150453446, 28.939399250857686 ], [ -81.956440054337165, 28.939627619527812 ], [ -81.956447012056984, 28.939995546417499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969012596354418, 28.906412704587108 ], [ -81.96900440656718, 28.906408368954835 ], [ -81.968961799298569, 28.906390874358063 ], [ -81.968924520768454, 28.906381535051992 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968924520768454, 28.906381535051992 ], [ -81.968916387520693, 28.906380157160694 ], [ -81.968869550323475, 28.90637653980076 ], [ -81.968822710952026, 28.906380134492974 ], [ -81.968777290667248, 28.906390832390404 ], [ -81.968734674907438, 28.906408306283559 ], [ -81.96869615278419, 28.906432028631802 ], [ -81.968662898624643, 28.906461274265542 ], [ -81.968654318071643, 28.906470747290914 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969632036378329, 28.909512294817858 ], [ -81.969655150647043, 28.909510520725018 ], [ -81.969657320610423, 28.909510175636562 ], [ -81.969701910508206, 28.909499507036355 ], [ -81.969745784725006, 28.90948151701609 ], [ -81.969785440039544, 28.909457098060901 ], [ -81.969814857431004, 28.909431904420362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969378966952974, 28.909130454282693 ], [ -81.969366554917187, 28.909147659165434 ], [ -81.969346088783922, 28.909186255683952 ], [ -81.969333548623652, 28.909227391275081 ], [ -81.969329316283279, 28.909269819955203 ], [ -81.969333522389036, 28.909312249664659 ], [ -81.969346039152228, 28.909353391892282 ], [ -81.969366483433475, 28.909391996865789 ], [ -81.969394235188105, 28.909426892355246 ], [ -81.969428454888174, 28.909457016160182 ], [ -81.969465845286265, 28.909480296750935 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969814857431004, 28.909431904420362 ], [ -81.969819677476266, 28.909426987983892 ], [ -81.969847450803428, 28.909392105092671 ], [ -81.969867918842738, 28.909353509401761 ], [ -81.969877052147311, 28.909326793517842 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969877052147311, 28.909326793517842 ], [ -81.969880458808021, 28.909312373761455 ], [ -81.969884689900866, 28.909269945966127 ], [ -81.969880484598605, 28.909227516273621 ], [ -81.969867967640127, 28.909186374094698 ], [ -81.969847522188346, 28.909147769195744 ], [ -81.969819769330655, 28.909112874700224 ], [ -81.96978555168144, 28.909082750091322 ], [ -81.969780634660395, 28.909079201147286 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 123rd Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021180785714435, 28.936241012334307 ], [ -82.021137500301478, 28.936244876276799 ], [ -82.021078007696275, 28.936254562477231 ], [ -82.021011598070288, 28.936255944990837 ], [ -82.020943804753344, 28.936257327681609 ], [ -82.020877396421142, 28.936260094247764 ], [ -82.020668323108026, 28.936245180102674 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 123rd Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021247022087394, 28.936594338650259 ], [ -82.021231198855006, 28.936453106823897 ], [ -82.021180785714435, 28.936241012334307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 48th Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022511297914932, 28.937733389559096 ], [ -82.022511345022977, 28.937432988893313 ], [ -82.022511346242922, 28.937230647707576 ], [ -82.022514804517783, 28.937054247800635 ], [ -82.022492322884759, 28.936919353130683 ], [ -82.022428336251636, 28.936836342600383 ], [ -82.022333217766644, 28.936780998709434 ], [ -82.02223291171515, 28.936761975622442 ], [ -82.022104934719778, 28.936761975450331 ], [ -82.021985604541271, 28.936761974680383 ], [ -82.021859358249145, 28.93675851550644 ], [ -82.02176078015394, 28.936767162439672 ], [ -82.021643180313802, 28.936817315097937 ], [ -82.021544602753607, 28.936879572565076 ], [ -82.02149243349325, 28.936914730462306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 48th Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02149243349325, 28.936914730462306 ], [ -82.021385496039571, 28.936986795244088 ], [ -82.021259247975905, 28.937068078946172 ], [ -82.021153752821959, 28.937137254175749 ], [ -82.02106036448852, 28.937197783500569 ], [ -82.020984269422087, 28.937256584044299 ], [ -82.020935845929046, 28.937329219733162 ], [ -82.020916821386521, 28.937400123962131 ], [ -82.020916820949793, 28.937491783477302 ], [ -82.020917462918518, 28.937730997700367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 48th Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021247022087394, 28.936594338650259 ], [ -82.021249565313511, 28.936601828200359 ], [ -82.021368548260043, 28.936742949343721 ], [ -82.02149243349325, 28.936914730462306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 122nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023227382791035, 28.935270916070682 ], [ -82.02291350321029, 28.935268572147663 ], [ -82.022502438591317, 28.935268569508885 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 122nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023946849808638, 28.935273494278061 ], [ -82.023572679783356, 28.935273493896567 ], [ -82.023227382791035, 28.935270916070682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 122nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024290886670784, 28.935273497138404 ], [ -82.023946849808638, 28.935273494278061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 52nd Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01829327818146, 28.936648026133362 ], [ -82.018214138798299, 28.936575559796758 ], [ -82.01808647263563, 28.936459500006439 ], [ -82.01794189772481, 28.936324481475765 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 52nd Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018609348070441, 28.936359116427614 ], [ -82.01829327818146, 28.936648026133362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 122nd Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018609348070441, 28.936359116427614 ], [ -82.018950241621042, 28.936076439230913 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 50th View", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020090514086405, 28.935254029471171 ], [ -82.020083505876073, 28.936528491914835 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 48th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022502438591317, 28.935268569508885 ], [ -82.022500283055962, 28.936123131608795 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 48th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022500283055962, 28.936123131608795 ], [ -82.022500281446554, 28.936314058809881 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 122nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022502438591317, 28.935268569508885 ], [ -82.022249404343981, 28.935268569077259 ], [ -82.020980549341729, 28.935266258592655 ], [ -82.020930742196072, 28.935271792703411 ], [ -82.02086709954844, 28.935299462161165 ], [ -82.020672345193987, 28.935433585885502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 122nd Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020083505876073, 28.936528491914835 ], [ -82.019766976623472, 28.936528278582227 ], [ -82.019611328816737, 28.936526549392372 ], [ -82.019529613905917, 28.936514767071611 ], [ -82.01945568187719, 28.936490230584095 ], [ -82.019389531366869, 28.936462234472646 ], [ -82.01931905755589, 28.936417594315635 ], [ -82.019192812124402, 28.936296535764409 ], [ -82.019063105412926, 28.93618239365232 ], [ -82.018950241621042, 28.936076439230913 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 122nd Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018950241621042, 28.936076439230913 ], [ -82.018893622074543, 28.936023286513354 ], [ -82.01879850492935, 28.935931626387482 ], [ -82.018677446867827, 28.935817485428412 ], [ -82.018580599305551, 28.935729285676164 ], [ -82.018495857795045, 28.935649732725764 ], [ -82.018450893241578, 28.935575367131882 ], [ -82.01843532843094, 28.935494084236019 ], [ -82.018452623176472, 28.935412802378714 ], [ -82.018504504563978, 28.935336707703371 ], [ -82.018585788972842, 28.935279637546255 ], [ -82.0186826360287, 28.935250238602308 ], [ -82.018834824985476, 28.935250238740224 ], [ -82.018992202265679, 28.935251969496825 ], [ -82.019191085413084, 28.935251970036258 ], [ -82.019379590793093, 28.935253699629101 ], [ -82.019566369600327, 28.935253700406673 ], [ -82.019730664956725, 28.935253702330254 ], [ -82.020090514086405, 28.935254029471171 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 123rd Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021247022087394, 28.936594338650259 ], [ -82.02094349340598, 28.936780609477672 ], [ -82.020813890753686, 28.93685991634776 ], [ -82.020637864377591, 28.936916012212471 ], [ -82.020498593809975, 28.936946960880661 ], [ -82.020370925699055, 28.936948893532705 ], [ -82.020185229070918, 28.936948893719041 ], [ -82.019997599619884, 28.936946959410832 ], [ -82.019860260636065, 28.936946958459433 ], [ -82.019709381769999, 28.936945022976015 ], [ -82.019566240597214, 28.936941154417738 ], [ -82.019446312116116, 28.936923745330475 ], [ -82.019318644879945, 28.936890861072285 ], [ -82.019194848057467, 28.936842501815413 ], [ -82.01905751006754, 28.936761259305431 ], [ -82.018931778285662, 28.936662608012639 ], [ -82.018784769617881, 28.936519466471882 ], [ -82.018609348070441, 28.936359116427614 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134695200826727, 28.87987778557396 ], [ -82.1350708915773, 28.879995164058649 ], [ -82.135856488348523, 28.880278179080268 ], [ -82.136304468447065, 28.880455655854711 ], [ -82.136576921452004, 28.880552432560567 ], [ -82.13692958276313, 28.880662360736348 ], [ -82.137186966133314, 28.880732683416245 ], [ -82.137400883458298, 28.880782462874404 ], [ -82.13758303532866, 28.8808175704166 ], [ -82.137783564593533, 28.880851185559358 ], [ -82.13796236328605, 28.880874531832628 ], [ -82.138067635739034, 28.880887659441889 ], [ -82.138226378496583, 28.880906613574378 ], [ -82.138380103440952, 28.88092116131099 ], [ -82.138550531714131, 28.880932750288181 ], [ -82.138645269169274, 28.8809385353957 ], [ -82.138865805537023, 28.880940661682722 ], [ -82.139111727494665, 28.880934528958559 ], [ -82.139360307960942, 28.880917801870986 ], [ -82.139528698235068, 28.880904689485757 ], [ -82.139632936574642, 28.880893994455334 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abernethy Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991921995010117, 28.885343979046716 ], [ -81.992034157047001, 28.885406506297297 ], [ -81.992142212325774, 28.885467316130804 ], [ -81.992255582765765, 28.885537483953176 ], [ -81.992345925991145, 28.885579583370223 ], [ -81.992425640277332, 28.885615448119001 ], [ -81.992540785225927, 28.885651313926129 ], [ -81.992662563456548, 28.885673017487051 ], [ -81.992906301736113, 28.885713595574714 ], [ -81.993251207815106, 28.885757961794411 ], [ -81.993557614299974, 28.885797922021446 ], [ -81.993789269460265, 28.885813679227592 ], [ -81.993934889477174, 28.885822264209189 ], [ -81.99397860371279, 28.885825984604047 ], [ -81.994019528320749, 28.885829705759903 ], [ -81.994113467661421, 28.885842726602259 ], [ -81.994209265169445, 28.885848307087063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trevino Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964473981666544, 28.935394861798745 ], [ -81.964512185882583, 28.93543768127423 ], [ -81.964546954019752, 28.935474476113207 ], [ -81.964605749743001, 28.935534308353407 ], [ -81.964642471251125, 28.935570070556562 ], [ -81.964692086543323, 28.935616149371409 ], [ -81.964787608109788, 28.935702805585159 ], [ -81.9648397026737, 28.93575190136594 ], [ -81.964868172657489, 28.935793178868906 ], [ -81.964878213157576, 28.935832978087873 ], [ -81.964881548123969, 28.935880145486383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tampico Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963492763550832, 28.935167491431283 ], [ -81.963492771752655, 28.935144276305362 ], [ -81.963494037469729, 28.935121061522025 ], [ -81.963495244098198, 28.935117030400217 ], [ -81.96349543868493, 28.935114968710902 ], [ -81.963496811402706, 28.935105342507779 ], [ -81.96349935444988, 28.935095717525797 ], [ -81.963499939830911, 28.935093654138377 ], [ -81.963506001842163, 28.93507887440569 ], [ -81.963506980972099, 28.935077155801881 ], [ -81.963509913354585, 28.935071656214983 ], [ -81.963512064447059, 28.935068218157529 ], [ -81.963513237434753, 28.935066500508778 ], [ -81.963514410422746, 28.935064781957713 ], [ -81.963654989744086, 28.934833686669702 ], [ -81.96367803944554, 28.934804214967247 ], [ -81.963698153037271, 28.934782108795609 ], [ -81.963724967503936, 28.934768852333228 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zadora Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963891303081724, 28.935853352048444 ], [ -81.964050523480353, 28.935732530767542 ], [ -81.964125949143508, 28.935658853406146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zadora Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964125949143508, 28.935658853406146 ], [ -81.964159467308306, 28.935638226008624 ], [ -81.964256672772009, 28.935573399588314 ], [ -81.964473981666544, 28.935394861798745 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camino Del Rey Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962467515133355, 28.932810365603817 ], [ -81.96252064933762, 28.932850760863587 ], [ -81.962571369636905, 28.932886903816119 ], [ -81.96263416945375, 28.932923050118532 ], [ -81.962718707942003, 28.932969828764314 ], [ -81.962798416033721, 28.933012354403949 ], [ -81.962858801780456, 28.93304212522008 ], [ -81.962921600764119, 28.933078272289801 ], [ -81.962986814785395, 28.933118670706634 ], [ -81.963100328307505, 28.933211148403487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dominguez Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95418772151676, 28.92907525300917 ], [ -81.954164304925854, 28.929172735271901 ], [ -81.954159200880071, 28.929210776989382 ], [ -81.954158074036641, 28.929244765152422 ], [ -81.954156150078063, 28.929279172609963 ], [ -81.954158043211038, 28.929314420506291 ], [ -81.954161846369033, 28.929342115944362 ], [ -81.954167556776667, 28.929373169473383 ], [ -81.954176128838583, 28.929401704772367 ], [ -81.95419348713115, 28.929443006033271 ], [ -81.954201294945335, 28.929462603838246 ], [ -81.954209883282331, 28.929482201909202 ], [ -81.954225500520295, 28.929513146932482 ], [ -81.954239981867332, 28.929545233871607 ], [ -81.954251416641313, 28.929571253641324 ], [ -81.954267617563843, 28.929609024719273 ], [ -81.954281909760311, 28.929646794242192 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dominguez Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954281909760311, 28.929646794242192 ], [ -81.954284767539903, 28.929657704863764 ], [ -81.954291434079948, 28.929683723004306 ], [ -81.95429809560973, 28.929716455118882 ], [ -81.954305713422329, 28.929748348424585 ], [ -81.954309515524287, 28.929778562161367 ], [ -81.954328128342951, 28.931217754831014 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Pedro Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957103638153569, 28.927360626891158 ], [ -81.957187550094474, 28.927467150709582 ], [ -81.957212921750696, 28.92749292474948 ], [ -81.957248052538858, 28.927525571971962 ], [ -81.957308557884971, 28.92757712042517 ], [ -81.957363209760317, 28.927621797816514 ], [ -81.957398341733608, 28.927649291991827 ], [ -81.957462754632232, 28.927693972443151 ], [ -81.957548639736672, 28.927752399813947 ], [ -81.957679420758936, 28.927836608150134 ], [ -81.957843387623143, 28.927938001984479 ], [ -81.958001494280694, 28.928044547692274 ], [ -81.95817326887196, 28.928156250485003 ], [ -81.958401649701727, 28.928304042585516 ], [ -81.958893746194519, 28.928621454852287 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alameda Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954242647981687, 28.927960684744335 ], [ -81.954243842218887, 28.92864245118383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carmel Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955087278014688, 28.925257779233302 ], [ -81.955076709883443, 28.925315127399408 ], [ -81.955073185315584, 28.925333002496814 ], [ -81.955070051652953, 28.92535053395045 ], [ -81.955067309623118, 28.92536840930973 ], [ -81.955064761432624, 28.925386284733879 ], [ -81.955062800915599, 28.925404161257088 ], [ -81.955061033213411, 28.925422036040235 ], [ -81.955059463453082, 28.925439911791937 ], [ -81.955058478290766, 28.925457786837143 ], [ -81.955057883735947, 28.925476007592341 ], [ -81.955057481325738, 28.925505228295687 ], [ -81.955057837665933, 28.925579828397883 ], [ -81.955058178309031, 28.925695336764008 ], [ -81.955058715870678, 28.92581084519415 ], [ -81.955059056664311, 28.925926009781826 ], [ -81.955059243924183, 28.925943543248632 ], [ -81.955058845110855, 28.925962106038053 ], [ -81.955057860539597, 28.925978606886176 ], [ -81.955056095325446, 28.925995450344924 ], [ -81.955053742431815, 28.926012295411301 ], [ -81.955050807136502, 28.92602879650785 ], [ -81.955047283136736, 28.926045296504672 ], [ -81.955041607653058, 28.926065920172409 ], [ -81.955036519583985, 28.926082421449188 ], [ -81.955030847211233, 28.926098232273869 ], [ -81.955024391265184, 28.926114042835511 ], [ -81.955017351740082, 28.926129855005705 ], [ -81.955002209863395, 28.926166845841088 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Marino Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958311274940797, 28.924371098494078 ], [ -81.958328223630275, 28.924394974895463 ], [ -81.958355343109517, 28.924429299427903 ], [ -81.958379072743909, 28.924459145711698 ], [ -81.958399412527157, 28.924484514651034 ], [ -81.958428229769538, 28.924512871009593 ], [ -81.958457047454544, 28.924542718856696 ], [ -81.958507903298013, 28.924590476868115 ], [ -81.958577405687222, 28.924656143970882 ], [ -81.958633347274599, 28.924709871288268 ], [ -81.958675730236564, 28.924748675848885 ], [ -81.958707936919325, 28.924783000071852 ], [ -81.958740141408555, 28.924820307275482 ], [ -81.958770653077039, 28.924859109054456 ], [ -81.958796076633718, 28.924890447278482 ], [ -81.958814720682284, 28.924917308029382 ], [ -81.958830677710509, 28.924938866966198 ], [ -81.958843174993035, 28.924958809730065 ], [ -81.9588554742013, 28.924979097108835 ], [ -81.95886972733382, 28.925004196125695 ], [ -81.958881051201416, 28.925024481398236 ], [ -81.958891789178139, 28.925045455843918 ], [ -81.958902331405085, 28.925066085551801 ], [ -81.958912286715929, 28.925087402628122 ], [ -81.958921852436106, 28.925108376711997 ], [ -81.958931027267525, 28.925129693547717 ], [ -81.958939810184475, 28.925151353135014 ], [ -81.958948203510005, 28.925172669730092 ], [ -81.95895600889277, 28.925194673693795 ], [ -81.958963424683532, 28.925216334665439 ], [ -81.958970449584172, 28.925238339291589 ], [ -81.95899931232583, 28.925315860719259 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Marino Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953929010689009, 28.922591209229072 ], [ -81.954541207611186, 28.922586813664495 ], [ -81.954610564536679, 28.922587180022532 ], [ -81.954666441778187, 28.922588574918834 ], [ -81.95473814213598, 28.922591348426074 ], [ -81.954793822595192, 28.9225948058514 ], [ -81.954849696593996, 28.922598949965963 ], [ -81.954953437132531, 28.922608954310334 ], [ -81.954987169738104, 28.922613317406885 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santa Clara Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955616357392799, 28.923913843529267 ], [ -81.955853030551253, 28.924133997864239 ], [ -81.956123626447194, 28.924378321843875 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santa Clara Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956123626447194, 28.924378321843875 ], [ -81.956623454276595, 28.924830178112529 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santa Clara Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956623454276595, 28.924830178112529 ], [ -81.957116654799421, 28.925287079626365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Jose Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957116654799421, 28.925287079626365 ], [ -81.957831827756479, 28.924687272668326 ], [ -81.957915281912605, 28.924617167960808 ], [ -81.957936195665255, 28.924600330468586 ], [ -81.957955348919938, 28.92458486571498 ], [ -81.957974891618321, 28.924570089532207 ], [ -81.957994826091124, 28.92455531346927 ], [ -81.958014955283588, 28.924540880336668 ], [ -81.958049156270235, 28.924517515268306 ], [ -81.958070067563753, 28.924504114598221 ], [ -81.958091172551391, 28.92449105775999 ], [ -81.958112474449209, 28.924478000979953 ], [ -81.958311274940797, 28.924371098494078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sonoma Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956623454276595, 28.924830178112529 ], [ -81.957458668291665, 28.92412520509637 ], [ -81.957566940514056, 28.924045483681471 ], [ -81.957582379933953, 28.924032768903906 ], [ -81.957595473850418, 28.924022459805432 ], [ -81.957608958516616, 28.924012150829199 ], [ -81.957630456365663, 28.923996343989177 ], [ -81.95764433252198, 28.923986721780071 ], [ -81.957658403397687, 28.923977445210223 ], [ -81.95767267016052, 28.923968166896138 ], [ -81.957687131782976, 28.923958891348892 ], [ -81.957701789011566, 28.923950301606514 ], [ -81.957716640075745, 28.923941711021332 ], [ -81.957731687911533, 28.923933464271169 ], [ -81.95774673471864, 28.923925219323582 ], [ -81.957761978297839, 28.923917317308653 ], [ -81.957784644346361, 28.923906323656883 ], [ -81.95780047442048, 28.923898765596839 ], [ -81.957816302160623, 28.923891895985815 ], [ -81.957832130925013, 28.923885024568651 ], [ -81.95784834927322, 28.923878497949012 ], [ -81.957864568505087, 28.923872315102361 ], [ -81.957880786709055, 28.923866133155737 ], [ -81.957897201686336, 28.923860293238985 ], [ -81.95791381035913, 28.923854798057967 ], [ -81.957930419030546, 28.923849301972602 ], [ -81.958003974053838, 28.923830710667932 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sonoma Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958003974053838, 28.923830710667932 ], [ -81.958713694040654, 28.923650617189129 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lozano Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959127568849397, 28.920594329280036 ], [ -81.960402824256946, 28.920564024846307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lozano Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960402824256946, 28.920564024846307 ], [ -81.960857822653225, 28.920558054418361 ], [ -81.961072750272336, 28.920554265092672 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lozano Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961072750272336, 28.920554265092672 ], [ -81.96174322436076, 28.920543032322104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lozano Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96174322436076, 28.920543032322104 ], [ -81.962060970813553, 28.920536233592919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Montoya Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961579422993452, 28.921729095195349 ], [ -81.962119960127126, 28.92171806055897 ], [ -81.962150484085441, 28.921715830584809 ], [ -81.962175925498244, 28.921710244433076 ], [ -81.962200090887421, 28.921702417515657 ], [ -81.962222991115837, 28.921687876252665 ], [ -81.962239529502696, 28.921676693344132 ], [ -81.962254797192003, 28.921659912231199 ], [ -81.962264523020991, 28.921647809766021 ], [ -81.962271757954113, 28.921635092135425 ], [ -81.962279186821661, 28.921619280585912 ], [ -81.962283879605707, 28.921605875591933 ], [ -81.962288380834963, 28.921589030991388 ], [ -81.962288780249636, 28.921568061743852 ], [ -81.962287612008808, 28.921554309521234 ], [ -81.962285272564188, 28.921540557871349 ], [ -81.962281954724219, 28.921526805946122 ], [ -81.962277467607763, 28.921513396564194 ], [ -81.962268097300225, 28.921492768341558 ], [ -81.962261067417742, 28.921480390469938 ], [ -81.962253062093055, 28.921468355195763 ], [ -81.962244079149485, 28.921457007195318 ], [ -81.961845941433694, 28.920846695078769 ], [ -81.961792830944674, 28.920764860640826 ], [ -81.961781507226817, 28.92074388624599 ], [ -81.961772526165603, 28.920724976069504 ], [ -81.961767256515515, 28.920711912025361 ], [ -81.961760230311953, 28.920692658630646 ], [ -81.961756134037685, 28.92067925024357 ], [ -81.961751255622858, 28.920659310813623 ], [ -81.961745990802015, 28.920630430420527 ], [ -81.961744628810777, 28.920616679940661 ], [ -81.961743460652016, 28.920602927711482 ], [ -81.961743078439028, 28.920582644886906 ], [ -81.96174322436076, 28.920543032322104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 112th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955692610324746, 28.9201353223031 ], [ -81.954615690009547, 28.920106224154967 ], [ -81.954212536593275, 28.92007660283328 ], [ -81.953967084763732, 28.920053228770048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Marino Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960786378753596, 28.928648672038893 ], [ -81.960924035621872, 28.928759223536314 ], [ -81.961010978157319, 28.928825131733241 ], [ -81.961129314857274, 28.928920802160889 ], [ -81.961250064214397, 28.929027098607179 ], [ -81.961375644614023, 28.929133397238356 ], [ -81.961474658089472, 28.929222684367613 ], [ -81.961624385650623, 28.92935980578385 ], [ -81.961705891019676, 28.929431555232366 ], [ -81.961769286915867, 28.929485767874848 ], [ -81.96182905911877, 28.929532007679029 ], [ -81.961852607310618, 28.929547954326782 ], [ -81.961887022274311, 28.929575060938436 ], [ -81.961925061469586, 28.929600575118002 ], [ -81.96197215909369, 28.929629278763223 ], [ -81.96207178584325, 28.929696251867675 ], [ -81.963978807128314, 28.930859183827227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Marino Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963978807128314, 28.930859183827227 ], [ -81.964018494121689, 28.930885838355024 ], [ -81.964046717302253, 28.930906540965466 ], [ -81.964096103021433, 28.930947941569563 ], [ -81.964133730349104, 28.930981064062465 ], [ -81.964171354522463, 28.931020394331977 ], [ -81.964216036949153, 28.931063865302406 ], [ -81.964272473979435, 28.931123893795252 ], [ -81.964369832759346, 28.931226680270445 ], [ -81.964387608044504, 28.931243185261067 ], [ -81.964405578211853, 28.931259691203365 ], [ -81.964423939282483, 28.931275854375063 ], [ -81.964442692282319, 28.931291673873925 ], [ -81.964461639139486, 28.931307492519291 ], [ -81.964480782141422, 28.931322623665341 ], [ -81.964500509780336, 28.931337754061285 ], [ -81.964520240737457, 28.931352198711188 ], [ -81.96454055633194, 28.931366641708344 ], [ -81.964560872049958, 28.931380740928127 ], [ -81.964581577644992, 28.931394498278213 ], [ -81.964602677220569, 28.93140791105257 ], [ -81.964626899376526, 28.931423043519672 ], [ -81.965422074705884, 28.931899829671412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Marino Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965422074705884, 28.931899829671412 ], [ -81.96545717656187, 28.931923746830442 ], [ -81.965483742389509, 28.93194266126379 ], [ -81.965509723362558, 28.931962263089794 ], [ -81.965535508441704, 28.931981863958033 ], [ -81.965560902518746, 28.93200215317156 ], [ -81.96558570991904, 28.932022443131824 ], [ -81.965610323247944, 28.932043418781586 ], [ -81.965634348759522, 28.932064739854798 ], [ -81.965657984410313, 28.932086402793395 ], [ -81.965681229173143, 28.932108412108761 ], [ -81.965704082023819, 28.932130763289372 ], [ -81.965726545013354, 28.932153457238247 ], [ -81.965748421211117, 28.932176495709818 ], [ -81.965769710617309, 28.932199877802038 ], [ -81.965885365938561, 28.932317977074771 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Marino Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969878606412976, 28.934797555085439 ], [ -81.969878828928785, 28.934797766272375 ], [ -81.969889182637132, 28.934807394278117 ], [ -81.96989992713992, 28.934817023273201 ], [ -81.969910670720083, 28.934826305786217 ], [ -81.969921609184965, 28.934835591049037 ], [ -81.969932743661346, 28.934844532580868 ], [ -81.969944075075176, 28.934853472351392 ], [ -81.969949544973559, 28.934857598869346 ], [ -81.970652049430072, 28.93528531324533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Marino Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970652049430072, 28.93528531324533 ], [ -81.970710551105199, 28.935309002265139 ], [ -81.97083223528459, 28.935358439381968 ], [ -81.971029301239454, 28.935439730184346 ], [ -81.971306794279357, 28.935551041058325 ], [ -81.971514040199764, 28.935628342484922 ], [ -81.971605366275767, 28.935662354030018 ], [ -81.971682645116047, 28.935693273084937 ], [ -81.971759923644967, 28.935718012282255 ], [ -81.971832109047568, 28.935744590140672 ], [ -81.971917994902682, 28.935767491281382 ], [ -81.972012838868025, 28.935792233117379 ], [ -81.972141787876652, 28.935816790707403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fuentez Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963312812853701, 28.924850853951082 ], [ -81.963961898216283, 28.925455550065291 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ortez Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965973249572556, 28.924779932656854 ], [ -81.966344996586486, 28.925216494924776 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Del Rosario Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967224841825939, 28.930856447051635 ], [ -81.966933267625222, 28.9311141366383 ], [ -81.966861537408604, 28.931178749381051 ], [ -81.966841992488071, 28.931197308356055 ], [ -81.966822838229433, 28.931216211199274 ], [ -81.966804074743237, 28.931235114136555 ], [ -81.966785506931885, 28.931254703766051 ], [ -81.966767523743783, 28.931274295342568 ], [ -81.966749933269426, 28.931294229886152 ], [ -81.96673273254234, 28.931314164524164 ], [ -81.966715922366504, 28.931334787707904 ], [ -81.966699307061674, 28.931355409133339 ], [ -81.96668327832144, 28.931376376281477 ], [ -81.966667835232798, 28.931397340866518 ], [ -81.966652587817549, 28.931418996656209 ], [ -81.966637927079631, 28.931440650785675 ], [ -81.96662346121289, 28.931462304962007 ], [ -81.966609579749758, 28.931484646831056 ], [ -81.966596092249006, 28.93150664592482 ], [ -81.966583189152814, 28.931529330907004 ], [ -81.96657067683158, 28.931552015985417 ], [ -81.966558555173336, 28.931575047641299 ], [ -81.966538221321642, 28.931615950800595 ], [ -81.966516127311706, 28.931660292161663 ], [ -81.966504005740958, 28.931682978233404 ], [ -81.966491298505787, 28.93170566505972 ], [ -81.966478200484175, 28.931728350884647 ], [ -81.966464709847841, 28.931750348159056 ], [ -81.966450831389437, 28.931772690011442 ], [ -81.966436364412232, 28.931794344166278 ], [ -81.966421702550818, 28.931815999172908 ], [ -81.966406454110455, 28.931837308451872 ], [ -81.966390622054917, 28.931858619387153 ], [ -81.966374818218171, 28.931881446182679 ], [ -81.966358340205417, 28.931908344862812 ], [ -81.96633951371345, 28.931931103222581 ], [ -81.966318332964818, 28.931958001617847 ], [ -81.966292447784014, 28.931986968689678 ], [ -81.966261853736796, 28.932022141455285 ], [ -81.96622184673501, 28.932067659355194 ], [ -81.966170077938386, 28.932117313097976 ], [ -81.966087721038193, 28.932177306593744 ], [ -81.966005366775917, 28.932235231077559 ], [ -81.965885365938561, 28.932317977074771 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Juanita Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966507476174527, 28.930489147444046 ], [ -81.96644390697638, 28.930652620142773 ], [ -81.966368602261483, 28.930739517512031 ], [ -81.966293299773113, 28.930816068223681 ], [ -81.966253295276758, 28.930855376549154 ], [ -81.96622505680044, 28.930886413786627 ], [ -81.966192110178994, 28.930921585046811 ], [ -81.966128573168746, 28.930993999807143 ], [ -81.966093271911078, 28.931037449904075 ], [ -81.966055617411456, 28.931085037319004 ], [ -81.966022669997471, 28.931128487993327 ], [ -81.965973246263758, 28.93119676833366 ], [ -81.965912054983633, 28.931283669926948 ], [ -81.965893227140313, 28.931310567052165 ], [ -81.965874398261022, 28.931337465978963 ], [ -81.965850861891568, 28.931372641354919 ], [ -81.965822621101736, 28.931409885390352 ], [ -81.965799084699114, 28.931445058952256 ], [ -81.965759076684265, 28.931496785408388 ], [ -81.965422074705884, 28.931899829671412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Durango Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966507476174527, 28.930489147444046 ], [ -81.966693298877772, 28.930540930471608 ], [ -81.966763863168552, 28.930563711999525 ], [ -81.966817964545157, 28.930580280721383 ], [ -81.966862654469821, 28.930596847995364 ], [ -81.966914397644175, 28.930623763612367 ], [ -81.966970845919775, 28.930652750234348 ], [ -81.9670178851662, 28.930683803477663 ], [ -81.967067273573136, 28.930716927146491 ], [ -81.967107256316609, 28.930747978622797 ], [ -81.9671354783883, 28.93077074954849 ], [ -81.967177807677302, 28.930812149096681 ], [ -81.967224841825939, 28.930856447051635 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Durango Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967224841825939, 28.930856447051635 ], [ -81.967236557771855, 28.930873278619501 ], [ -81.967269175604784, 28.930913163515871 ], [ -81.967309016422959, 28.930968521816887 ], [ -81.967344168313417, 28.931025941608233 ], [ -81.967352369988248, 28.931040725903941 ], [ -81.967360180886971, 28.931055509201581 ], [ -81.967367601008576, 28.931070294208102 ], [ -81.967381659483664, 28.931100549773422 ], [ -81.967388297836692, 28.931116021234622 ], [ -81.967399818341235, 28.931144558210459 ], [ -81.967405478213507, 28.931160029432483 ], [ -81.967410944128147, 28.931175843479064 ], [ -81.967416019264917, 28.931191658332573 ], [ -81.967420899634661, 28.931207130266476 ], [ -81.967425389009804, 28.931223288751358 ], [ -81.967429485664084, 28.931239103366227 ], [ -81.967433388468393, 28.931254917933789 ], [ -81.967436902762316, 28.931270045760407 ], [ -81.967440806003253, 28.931284483425955 ], [ -81.967444904012936, 28.93129926761992 ], [ -81.967449392804028, 28.931314050104124 ], [ -81.967454272483636, 28.931328491615758 ], [ -81.967459152165475, 28.931342930420257 ], [ -81.967464424679548, 28.931357370222312 ], [ -81.967470086949561, 28.931371809216532 ], [ -81.967475943180361, 28.931385906287893 ], [ -81.96748218916737, 28.93140000255131 ], [ -81.967488635161587, 28.931414098862962 ], [ -81.967495273983104, 28.931428196123381 ], [ -81.967502303695412, 28.931441947899412 ], [ -81.967509528286541, 28.931455700624657 ], [ -81.967517143767736, 28.931469110572291 ], [ -81.967524955045675, 28.931482864341262 ], [ -81.967532962337401, 28.931496272578389 ], [ -81.967541360519448, 28.931509338037788 ], [ -81.967549954606625, 28.931522403544079 ], [ -81.967563879833932, 28.931546208551069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Durango Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967563879833932, 28.931546208551069 ], [ -81.967572669344761, 28.931557554329423 ], [ -81.967582629849204, 28.931569933518169 ], [ -81.96759259035629, 28.931582311803869 ], [ -81.967602942780019, 28.931594346409316 ], [ -81.967613685069125, 28.931606037333978 ], [ -81.967624429304422, 28.931618071130231 ], [ -81.967635561461336, 28.931629418373067 ], [ -81.967646889415917, 28.931641110338862 ], [ -81.967658220665797, 28.931652113853616 ], [ -81.967670137469, 28.931663461283065 ], [ -81.967682049361983, 28.931674120259384 ], [ -81.967694163206943, 28.931685123959941 ], [ -81.967706469070009, 28.931695441059428 ], [ -81.967719165716915, 28.931705757349697 ], [ -81.967731862366335, 28.931716073638771 ], [ -81.967744951958252, 28.931726046246983 ], [ -81.967758037557388, 28.931735675078663 ], [ -81.967771519068606, 28.931745304004348 ], [ -81.967784997612583, 28.931754589153687 ], [ -81.967798672169749, 28.931763530574514 ], [ -81.967812736484944, 28.931772472087616 ], [ -81.967826801935715, 28.931781068922966 ], [ -81.9678410632918, 28.931789667608452 ], [ -81.967855519635748, 28.931797920760385 ], [ -81.967869977114148, 28.931805831941332 ], [ -81.967884823325221, 28.931813742311643 ], [ -81.967899671696827, 28.931821308906571 ], [ -81.967914714948535, 28.931828875546525 ], [ -81.967929950217339, 28.931835753779939 ], [ -81.967945385494232, 28.931842632961818 ], [ -81.967960819747475, 28.931849512141664 ], [ -81.967976450119536, 28.931855704720348 ], [ -81.96801493825005, 28.931866534238431 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008067596918465, 28.945548775090085 ], [ -82.008096207877827, 28.94556538739824 ], [ -82.008127669910706, 28.945586698680195 ], [ -82.008133728629957, 28.945590824522249 ], [ -82.008156593982889, 28.945606293035659 ], [ -82.008165191704038, 28.945612136697545 ], [ -82.008266619716267, 28.945684667112694 ], [ -82.008333064006507, 28.945734166660031 ], [ -82.008398728850878, 28.945785041314195 ], [ -82.008463416216514, 28.945836603540762 ], [ -82.008526930200517, 28.945889198028748 ], [ -82.00858946775837, 28.94594282296336 ], [ -82.008629992997299, 28.9459766005616 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008629992997299, 28.9459766005616 ], [ -82.008675079187029, 28.946012523522928 ], [ -82.008715336627162, 28.946044834885463 ], [ -82.00875637673137, 28.946076460445209 ], [ -82.008801521298935, 28.946110147478286 ], [ -82.008843927725124, 28.946140396930137 ], [ -82.008886728031925, 28.946169959699084 ], [ -82.008930307952326, 28.94619917772955 ], [ -82.008974280698595, 28.946227363498068 ], [ -82.00901883712794, 28.94625520634386 ], [ -82.00906398231227, 28.946282017816621 ], [ -82.00910971117905, 28.946308485463188 ], [ -82.009155832869254, 28.946333922650474 ], [ -82.00920253824107, 28.94635901510825 ], [ -82.009239932683442, 28.946376312344942 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009239932683442, 28.946376312344942 ], [ -82.009281902722819, 28.946398918363453 ], [ -82.009329977410644, 28.946421603370201 ], [ -82.009378442895809, 28.946443602591362 ], [ -82.009427495108028, 28.946464912404398 ], [ -82.009476742155528, 28.946485191768129 ], [ -82.009526575928504, 28.946504783527342 ], [ -82.00957679946967, 28.946523687694626 ], [ -82.009627217873145, 28.94654190338051 ], [ -82.009678225051658, 28.94655943326477 ], [ -82.009729426034241, 28.94657593089347 ], [ -82.00978082290203, 28.946591740039739 ], [ -82.009832805433589, 28.946606520511992 ], [ -82.00988478794838, 28.946620954483691 ], [ -82.009937355098998, 28.946634358878285 ], [ -82.009989924219639, 28.946646729224653 ], [ -82.010042885183282, 28.946658757553742 ], [ -82.010096039942766, 28.946669755429841 ], [ -82.010149194616943, 28.946679721062015 ], [ -82.010202740073055, 28.946688999097969 ], [ -82.010250076873731, 28.946693854523552 ], [ -82.010303223235468, 28.946702420639426 ], [ -82.010354598747213, 28.946707869442616 ], [ -82.01042989055054, 28.946717214368377 ], [ -82.010467979610468, 28.946721886331488 ], [ -82.010561873461526, 28.946729670642629 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010561873461526, 28.946729670642629 ], [ -82.010838112154275, 28.946743232822865 ], [ -82.01113473448271, 28.946772198572457 ], [ -82.011324105327716, 28.946788734231198 ], [ -82.011448063901994, 28.946805381430572 ], [ -82.01152381621965, 28.946822032472653 ], [ -82.011594405077318, 28.946843227843658 ], [ -82.011637448343293, 28.946861394658676 ], [ -82.011677047949419, 28.946879564452754 ], [ -82.011706317732148, 28.946899249142685 ], [ -82.011747639678362, 28.946926502152703 ], [ -82.011773465645007, 28.946944672166229 ], [ -82.011792405820145, 28.946958298806809 ], [ -82.011803713338011, 28.946966801063624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melville Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001603763471635, 28.941536468774665 ], [ -82.001602202967902, 28.941687385500128 ], [ -82.001601811306614, 28.94170319909944 ], [ -82.00160122467004, 28.941712138126025 ], [ -82.00160063905912, 28.941721075348013 ], [ -82.001599661600522, 28.941729668799301 ], [ -82.001598685171544, 28.941738607829013 ], [ -82.001597512820538, 28.941747545957966 ], [ -82.001596144543527, 28.94175614031467 ], [ -82.00159458137415, 28.941765078446746 ], [ -82.001592823304435, 28.941773672806509 ], [ -82.001591063186851, 28.941782611842392 ], [ -82.00158891429848, 28.941791205302938 ], [ -82.001586766435537, 28.941799799665734 ], [ -82.001584226728369, 28.941808394933908 ], [ -82.001581684969196, 28.941816988397449 ], [ -82.001578950364973, 28.94182558366704 ], [ -82.001576018812528, 28.941834177133551 ], [ -82.001572893385244, 28.941842429534564 ], [ -82.001569765909807, 28.941851023002457 ], [ -82.001566249663199, 28.941859273601782 ], [ -82.001562732390283, 28.941867524201012 ], [ -82.001558823272646, 28.941875773900925 ], [ -82.001554914154411, 28.941884025405287 ], [ -82.001551006061305, 28.941892276007213 ], [ -82.001546707145366, 28.941900182838232 ], [ -82.001542213332357, 28.941908088768301 ], [ -82.001537718492955, 28.941915997405093 ], [ -82.001533028756441, 28.941923903336313 ], [ -82.001528145148612, 28.941931811073449 ], [ -82.001523062536791, 28.94193937323347 ], [ -82.001517983001563, 28.941946937197855 ], [ -82.001512706517573, 28.941954498456642 ], [ -82.001507235136387, 28.94196206242351 ], [ -82.001501568857933, 28.941969625489314 ], [ -82.001495901549262, 28.941976844781074 ], [ -82.001489843421012, 28.941984064075413 ], [ -82.001483785288372, 28.941990939595673 ], [ -82.001477729210009, 28.941998158889437 ], [ -82.001471280256879, 28.942005034411942 ], [ -82.001464832328665, 28.942011909031816 ], [ -82.001458187448023, 28.942018441683516 ], [ -82.001451544621531, 28.942025317206422 ], [ -82.001444704842569, 28.942031848054224 ], [ -82.001437670162758, 28.94203803693382 ], [ -82.00143063548208, 28.942044224008441 ], [ -82.00142340590395, 28.942050412888612 ], [ -82.001415980402555, 28.942056600867414 ], [ -82.00140855592602, 28.942062787943492 ], [ -82.001400933471345, 28.942068633051232 ], [ -82.00139311714166, 28.942074133483739 ], [ -82.001385301840145, 28.942079976787269 ], [ -82.001377484479761, 28.942085133445033 ], [ -82.00136947325089, 28.942090634779696 ], [ -82.0013612660955, 28.942095790536722 ], [ -82.001353058939316, 28.942100948097806 ], [ -82.001344656885578, 28.942106104757318 ], [ -82.001336254827919, 28.942110917642495 ], [ -82.001327655821171, 28.942115730528347 ], [ -82.001319058862165, 28.94212019963982 ], [ -82.001310263928332, 28.942124668751934 ], [ -82.001301471045309, 28.942129138765722 ], [ -82.001292676106985, 28.942133262298288 ], [ -82.001283688322786, 28.942137388538253 ], [ -82.001274504612383, 28.942141170102623 ], [ -82.001265514772371, 28.942144952567578 ], [ -82.001256135138064, 28.942148733229498 ], [ -82.001246952448625, 28.942152170115897 ], [ -82.001237571784486, 28.942155607905018 ], [ -82.001228191116979, 28.942158702821978 ], [ -82.001218616577845, 28.94216179683702 ], [ -82.001209237958093, 28.942164547076519 ], [ -82.001199662389482, 28.942167298218699 ], [ -82.001189892949228, 28.94217004755658 ], [ -82.001180316351267, 28.942172454923565 ], [ -82.001170546907488, 28.94217486048624 ], [ -82.001160775409232, 28.942176924078996 ], [ -82.001150810039491, 28.942178985867379 ], [ -82.001141039566207, 28.9421810485564 ], [ -82.001131073167514, 28.94218276747181 ], [ -82.00112110779186, 28.942184142612671 ], [ -82.001111141390183, 28.942185517752812 ], [ -82.001101176014018, 28.942186891989888 ], [ -82.001091209609541, 28.942187924257031 ], [ -82.001081243204865, 28.942188955621134 ], [ -82.001071083952439, 28.942189643211503 ], [ -82.001061116519423, 28.942190329898018 ], [ -82.001050955215206, 28.94219101838917 ], [ -82.001040793908729, 28.942191363105753 ], [ -82.000876788184272, 28.942194112038841 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003811140218062, 28.924958312086968 ], [ -82.00383393870591, 28.925093450166397 ], [ -82.003868783030484, 28.925383845960145 ], [ -82.003888078267323, 28.925612939251451 ], [ -82.003898652073886, 28.925820168322467 ], [ -82.00389618903624, 28.925926455196912 ], [ -82.003903637157194, 28.926052193510728 ], [ -82.003903647638467, 28.926364478906088 ], [ -82.003904320577533, 28.92694894711537 ], [ -82.00390950204357, 28.927132494632779 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003789754283986, 28.924830570987371 ], [ -82.003798962926879, 28.924886150378242 ], [ -82.003811140218062, 28.924958312086968 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002691248545474, 28.922243010354642 ], [ -82.002747422881413, 28.922261010256861 ], [ -82.002831056858298, 28.922313904170178 ], [ -82.002916099228329, 28.922417221920714 ], [ -82.003057837664628, 28.922673733102609 ], [ -82.003240073314288, 28.923054938823636 ], [ -82.003318029764728, 28.923227042982276 ], [ -82.00340428581228, 28.923444473751722 ], [ -82.00348711044758, 28.923657026721624 ], [ -82.003584309000388, 28.923966980344517 ], [ -82.003600160292862, 28.924024500444773 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999411023100947, 28.918013321128246 ], [ -81.99943360837743, 28.918029357773452 ], [ -81.999452989859407, 28.918047547277677 ], [ -81.999490464608357, 28.918102120181803 ], [ -81.999524061803058, 28.918160103737929 ], [ -81.999605470353742, 28.918403405696758 ], [ -81.999654623742586, 28.918520203684714 ], [ -81.99976182662617, 28.918721745541021 ], [ -81.999843235840103, 28.9188343009506 ], [ -81.999945322193525, 28.918974143598962 ], [ -82.000221197509362, 28.919267935785538 ], [ -82.000680470867223, 28.919736211786851 ], [ -82.000898985394471, 28.919966679574831 ], [ -82.001094114917407, 28.920167914495703 ], [ -82.001329304902441, 28.920410078870017 ], [ -82.001662707055061, 28.920756838946822 ], [ -82.001828116230584, 28.920929649782117 ], [ -82.001990940623514, 28.921110419591987 ], [ -82.002087862542083, 28.921224110557169 ], [ -82.002193828444149, 28.921355992534743 ], [ -82.002324444747259, 28.921518664961834 ], [ -82.002424114322338, 28.921654797551614 ], [ -82.002451406699677, 28.921700637424703 ], [ -82.002465469004221, 28.92173556330609 ], [ -82.002479529556879, 28.921785043223139 ], [ -82.002486972259987, 28.921842524796045 ], [ -82.002479349265826, 28.921898586370567 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997728622325411, 28.912735373106287 ], [ -81.997817887236138, 28.912842480104086 ], [ -81.998079217426906, 28.913114071415677 ], [ -81.998181163399252, 28.913212599319998 ], [ -81.998223484106219, 28.913275293362705 ], [ -81.998251911530843, 28.91333626651334 ], [ -81.998268915136308, 28.913390501140181 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quail Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995964480245647, 28.81431632846898 ], [ -81.99595656420459, 28.81428146474753 ], [ -81.99593479252205, 28.814246599692691 ], [ -81.995903124393479, 28.814225679534612 ], [ -81.995855621905918, 28.814213476090671 ], [ -81.995772490485052, 28.81420475710901 ], [ -81.995388503528602, 28.814162906716476 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quail Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995388503528602, 28.814162906716476 ], [ -81.995188592920485, 28.814136750577166 ], [ -81.995133171853468, 28.814128033116642 ], [ -81.995093585801357, 28.814119315323413 ], [ -81.99505400122446, 28.814101881198091 ], [ -81.995032228987014, 28.814084449540303 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quail Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995032228987014, 28.814084449540303 ], [ -81.995010457612779, 28.814030407527824 ], [ -81.995004522397636, 28.81399379965794 ], [ -81.994998586879916, 28.81394324838136 ], [ -81.994994634907101, 28.813831681129166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Quail Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995115258428058, 28.816094383541273 ], [ -81.995196442829752, 28.815479029799455 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Quail Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995196442829752, 28.815479029799455 ], [ -81.995249901471809, 28.815156536966249 ], [ -81.995366721355083, 28.814351173956641 ], [ -81.995388503528602, 28.814162906716476 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Forest Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98763597795805, 28.812168551124891 ], [ -81.987705563204329, 28.812151533651118 ], [ -81.987809940730685, 28.812141328160155 ], [ -81.988849856729487, 28.811991612036536 ], [ -81.989723538915925, 28.811858899078281 ], [ -81.990141049309074, 28.811804454514263 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Forest Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990141049309074, 28.811804454514263 ], [ -81.990415524617859, 28.811753403757319 ], [ -81.990597219213697, 28.811722774237818 ], [ -81.990798239922185, 28.811702359068907 ], [ -81.990968335275312, 28.811702371628108 ], [ -81.991122966855869, 28.811702382039254 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Forest Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991122966855869, 28.811702382039254 ], [ -81.991507996824424, 28.811701725046124 ], [ -81.992000499046625, 28.811709246605652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Forest Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992000499046625, 28.811709246605652 ], [ -81.992417227926296, 28.811709952317209 ], [ -81.992865658929432, 28.811709977208249 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Forest Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992865658929432, 28.811709977208249 ], [ -81.993088327249325, 28.811712713091069 ], [ -81.993242958474383, 28.811718169227081 ], [ -81.993382124664777, 28.811742688438525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Forest Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993382124664777, 28.811742688438525 ], [ -81.993527474391414, 28.811789000422564 ], [ -81.993660453567131, 28.81184893113803 ], [ -81.993768692071725, 28.811911582829605 ], [ -81.993842911477088, 28.811968785601724 ], [ -81.993926407501718, 28.812047778665107 ], [ -81.994019180052803, 28.812151286980683 ], [ -81.994093398454581, 28.812230279518133 ], [ -81.994191845091635, 28.812298204435482 ], [ -81.994282043319686, 28.812352857735107 ], [ -81.994408839481565, 28.812399167058409 ], [ -81.994504708190263, 28.812423685973958 ], [ -81.994609857363542, 28.812440032069933 ], [ -81.994869639835912, 28.812445490604986 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Forest Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994869639835912, 28.812445490604986 ], [ -81.995209829879514, 28.812445503444703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fox Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992000499046625, 28.811709246605652 ], [ -81.99198887062424, 28.812097384862749 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gator Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992865658929432, 28.811709977208249 ], [ -81.99286011437016, 28.81212320372066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hartford Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018580545755611, 28.835988437789823 ], [ -82.017781706133064, 28.835988541161608 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hartford Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017781706133064, 28.835988541161608 ], [ -82.017236617674243, 28.835988608080136 ], [ -82.017105044209018, 28.835988624120773 ], [ -82.017051006350655, 28.835990697857959 ], [ -82.017020463821638, 28.836001047408168 ], [ -82.016994622344114, 28.836021739534818 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lansing Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016994622344114, 28.836021739534818 ], [ -82.016971132245629, 28.836046567550635 ], [ -82.016961739333752, 28.836077600839083 ], [ -82.016950175743503, 28.837248558074712 ], [ -82.016950183586872, 28.837298210238778 ], [ -82.016964285899675, 28.837329241595619 ], [ -82.016997181427143, 28.837349925731857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 60th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012490144961475, 28.84345085799912 ], [ -82.012424250290664, 28.843524509094394 ], [ -82.012371026241397, 28.843571381311694 ], [ -82.012335685316003, 28.843584955954981 ], [ -82.012297522289273, 28.843591473892332 ], [ -82.012251895884162, 28.843591477804846 ], [ -82.0119173091649, 28.843573651183185 ], [ -82.011374873794765, 28.843558073536755 ], [ -82.010928760458256, 28.843567034596109 ], [ -82.010475961956487, 28.84358372833378 ], [ -82.010041608808336, 28.843611734200607 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 56th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010041608808336, 28.843611734200607 ], [ -82.009995985667686, 28.843636286403811 ], [ -82.009965572672215, 28.843683154295892 ], [ -82.00995290418615, 28.84373002186809 ], [ -82.009940234858789, 28.843790281472149 ], [ -82.009879536763322, 28.845287787629051 ], [ -82.009846616021477, 28.845635942942977 ], [ -82.009846621657303, 28.84569843306533 ], [ -82.009854229696842, 28.845740834627406 ], [ -82.009873889808048, 28.845784303700508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sumter Line Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953682337052186, 28.828923644667121 ], [ -81.953691820648544, 28.829113985369215 ], [ -81.953729619636164, 28.82931896493217 ], [ -81.953783676759485, 28.829485815809395 ], [ -81.953826913708582, 28.829638362263729 ], [ -81.953870169872616, 28.829743243371194 ], [ -81.953907979932737, 28.829929154389447 ], [ -81.953945799654079, 28.830091232728453 ], [ -81.953956562067034, 28.83023423602242 ], [ -81.95394568779561, 28.830343864550098 ], [ -81.953929388531307, 28.83047732568755 ], [ -81.953891428149518, 28.830634611160256 ], [ -81.953858890607407, 28.830768064911783 ], [ -81.953837174548539, 28.830911057056571 ], [ -81.953815456313933, 28.831058815185354 ], [ -81.953793712607748, 28.831263772411489 ], [ -81.953750251467582, 28.831611721742966 ], [ -81.953733754496128, 28.832193244537216 ], [ -81.953711781283928, 28.832912998054983 ], [ -81.953738625214896, 28.833413502091151 ], [ -81.953689447963129, 28.83444307690938 ], [ -81.953694669523827, 28.83487207454251 ], [ -81.953716215798565, 28.835115179857151 ], [ -81.953743216167666, 28.835262954636839 ], [ -81.95379188498957, 28.835377370424546 ], [ -81.953829686412277, 28.835582347967943 ], [ -81.95383504184089, 28.835715815518714 ], [ -81.95381335537833, 28.835792075611575 ], [ -81.953715804239764, 28.836039905930996 ], [ -81.95367783631491, 28.836201959001031 ], [ -81.953639811847722, 28.836497476831337 ], [ -81.953623404864231, 28.836874033801884 ], [ -81.953608805562595, 28.836935561613714 ], [ -81.953592901577949, 28.83702501628618 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rabbit Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001480297481322, 28.819637648567813 ], [ -82.000400895946655, 28.819117408825917 ], [ -82.000286461161053, 28.81905203882604 ], [ -82.000116353752077, 28.818964875884966 ], [ -82.000017385079715, 28.818907676144445 ], [ -81.999841094277841, 28.818823238521912 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rabbit Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999841094277841, 28.818823238521912 ], [ -81.999185292944517, 28.818493141614081 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rabbit Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999185292944517, 28.818493141614081 ], [ -81.998637991582015, 28.818226723286756 ], [ -81.998535062910051, 28.818179355337264 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rabbit Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998535062910051, 28.818179355337264 ], [ -81.998455888742129, 28.818133595523431 ], [ -81.998369785660003, 28.818081734151498 ], [ -81.998328218742628, 28.818055584654498 ], [ -81.998288631400712, 28.818024206284708 ], [ -81.99825102363846, 28.81798759814146 ], [ -81.998217374979845, 28.817942273728232 ], [ -81.998187685354537, 28.817891721378732 ], [ -81.998167890789674, 28.817848139512705 ], [ -81.998150078947162, 28.817795844063792 ], [ -81.998142163468287, 28.817736573901328 ], [ -81.998129326589222, 28.816327182273348 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seminole Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995979382567668, 28.820233544729007 ], [ -81.99671418209681, 28.820479251687654 ], [ -81.997505952865268, 28.820732582082627 ], [ -81.997638946788754, 28.820748925439489 ], [ -81.997790498402438, 28.820751652233131 ], [ -81.997945142416981, 28.820746207589906 ], [ -81.998053394481246, 28.820727142597885 ], [ -81.998168020501126, 28.820705913873397 ], [ -81.998301737857901, 28.820670774403137 ], [ -81.998461657668571, 28.820590959967621 ], [ -81.998538980925233, 28.820539208929244 ], [ -81.998637953926561, 28.820465668209746 ], [ -81.998746206779771, 28.820370337633779 ], [ -81.998820436725666, 28.820304966936416 ], [ -81.998916318340278, 28.820217808320301 ], [ -81.998984360704554, 28.820146990230764 ], [ -81.999841094277841, 28.818823238521912 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seminole Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999841094277841, 28.818823238521912 ], [ -81.999949344662738, 28.818654365081507 ], [ -82.000821512146231, 28.817292478143553 ], [ -82.001740047867386, 28.815859767401861 ], [ -82.001869939537244, 28.815650036081276 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magnolia Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997382011496967, 28.819994025516436 ], [ -81.99779968728069, 28.819331612524632 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magnolia Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99779968728069, 28.819331612524632 ], [ -81.998173811877635, 28.818756791997988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magnolia Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998173811877635, 28.818756791997988 ], [ -81.998535062910051, 28.818179355337264 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magnolia Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998535062910051, 28.818179355337264 ], [ -81.99910909949854, 28.817303394635342 ], [ -81.999834056592945, 28.816165948578579 ], [ -82.000187868077546, 28.815621193422526 ], [ -82.00041502325054, 28.815270172880769 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lazy Hollow", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001053822669789, 28.81419829217867 ], [ -82.001694627382463, 28.814213542855413 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lazy Hollow", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999778645170366, 28.81429198853856 ], [ -81.99998449582246, 28.814201340996838 ], [ -82.000077525315064, 28.814173450112836 ], [ -82.001053822669789, 28.81419829217867 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Bobwhite Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995196442829752, 28.815479029799455 ], [ -81.995047994850609, 28.815419754220279 ], [ -81.994970802004701, 28.815386631983944 ], [ -81.99493517501682, 28.815363968186936 ], [ -81.994836213678084, 28.815259371217252 ], [ -81.994755064849841, 28.815177437314457 ], [ -81.994703604048041, 28.815132110393694 ], [ -81.994634330344383, 28.815076324047432 ], [ -81.994559118536174, 28.815020539224623 ], [ -81.994485885708343, 28.814973468957085 ], [ -81.994396817918556, 28.814924654713334 ], [ -81.994305770720317, 28.814877584491231 ], [ -81.994214725036301, 28.814840972888643 ], [ -81.994095966554482, 28.814793899501527 ], [ -81.993993042920181, 28.814769490966835 ], [ -81.993872303713317, 28.814746823889781 ], [ -81.993725834353583, 28.814727641110874 ], [ -81.993613012809391, 28.81472066265065 ], [ -81.99346258349253, 28.814720655297972 ], [ -81.991825659203002, 28.814894886329405 ], [ -81.991645537182819, 28.814914051022978 ], [ -81.991609908445113, 28.814922765096682 ], [ -81.991560922365167, 28.814937951488563 ], [ -81.990789218635328, 28.815177189388191 ], [ -81.9893652643282, 28.815619892117244 ], [ -81.988876345974731, 28.815773255810846 ], [ -81.988648711745512, 28.815849937522593 ], [ -81.988607489071327, 28.81587145771929 ], [ -81.98856359357778, 28.815909201214296 ], [ -81.988522022072502, 28.815952777428851 ], [ -81.988492327790226, 28.815989381601106 ], [ -81.988466592112161, 28.816027730274786 ], [ -81.988448771420082, 28.81607131032186 ], [ -81.988438871011624, 28.816109660359952 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 21st Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141104168136394, 28.804097408278448 ], [ -82.14107802983925, 28.804106373710891 ], [ -82.14106398759543, 28.804113607672921 ], [ -82.141048773621861, 28.804119467732498 ], [ -82.141032971939239, 28.804123265723394 ], [ -82.141016581524013, 28.804125001646476 ], [ -82.141000188343583, 28.804124674892986 ], [ -82.140969744363844, 28.804123675168309 ], [ -82.140952766139719, 28.804124037477983 ], [ -82.140935984958375, 28.804125429115089 ], [ -82.140919204699998, 28.804127510112938 ], [ -82.140902619998684, 28.804130276660285 ], [ -82.140886232343746, 28.804134076144475 ], [ -82.140870040807997, 28.804138216495865 ], [ -82.140854239935152, 28.804143391387949 ], [ -82.140838635643732, 28.804149252731147 ], [ -82.140823422571472, 28.80415579942127 ], [ -82.140808600721826, 28.804163034165416 ], [ -82.140794170093315, 28.804170956061377 ], [ -82.140780324865091, 28.804179221128358 ], [ -82.14076706698151, 28.804188516923688 ], [ -82.140754198834273, 28.804198156093232 ], [ -82.140742115744004, 28.804208825786471 ], [ -82.140730615543887, 28.804219493972113 ], [ -82.140719702229376, 28.804230850009922 ], [ -82.140709570438744, 28.804242892796051 ], [ -82.1407000240484, 28.804255278754297 ], [ -82.140691259747925, 28.804268008583289 ], [ -82.140683472173478, 28.804281079374576 ], [ -82.140676267952188, 28.804294494242846 ], [ -82.140669847870271, 28.80430825298011 ], [ -82.140664400418672, 28.804322353586635 ], [ -82.140659737105807, 28.804336797160083 ], [ -82.140655853373445, 28.80435123902339 ], [ -82.140652945350439, 28.804366026362228 ], [ -82.140651013594706, 28.804380809982693 ], [ -82.140649667807679, 28.804395593898366 ], [ -82.140592652558979, 28.805541472866928 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 420", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140365971521291, 28.803649856008771 ], [ -82.140421437241756, 28.803666638442177 ], [ -82.140522772925436, 28.803673269332766 ], [ -82.140861125299622, 28.803640923753061 ], [ -82.141058041491519, 28.803637350990957 ], [ -82.141111574197765, 28.803637295362172 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 31st Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13466051818547, 28.802870907581859 ], [ -82.134303721348658, 28.803056918182062 ], [ -82.134133216615169, 28.80315559897673 ], [ -82.134081627872021, 28.803180909155564 ], [ -82.134007494596659, 28.803203549974068 ], [ -82.133833030703656, 28.803203722008121 ], [ -82.133816834221079, 28.803204080844985 ], [ -82.13380121830383, 28.803201001310796 ], [ -82.133786379927898, 28.803195515453112 ], [ -82.133773292869137, 28.803187278533365 ], [ -82.1337573689962, 28.803093443255541 ], [ -82.133743800037237, 28.803012323700784 ], [ -82.133745436139236, 28.802918127345791 ], [ -82.133794682486766, 28.802819068472424 ], [ -82.134042190451851, 28.802612611615697 ], [ -82.13417256317814, 28.802526601106212 ], [ -82.134258546129331, 28.802488627275636 ], [ -82.134394696082481, 28.802435447671314 ], [ -82.134761575210888, 28.802287316580589 ], [ -82.134954133891583, 28.802263402765636 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 422A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138102643498001, 28.799015814242495 ], [ -82.138138929649216, 28.799473813928675 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 429", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13631050667297, 28.797064858107873 ], [ -82.137187022876077, 28.797048977444728 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 429", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137187022876077, 28.797048977444728 ], [ -82.137613207679919, 28.797046750712418 ], [ -82.138118565449219, 28.797028139213488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 429", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138118565449219, 28.797028139213488 ], [ -82.139026301448212, 28.797009387924973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Williams Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006668667569627, 28.932548905978919 ], [ -82.007025740960771, 28.932644183267115 ], [ -82.007110468762363, 28.932668547423233 ], [ -82.00715531621556, 28.932678480389622 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Williams Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00715531621556, 28.932678480389622 ], [ -82.007270809738387, 28.932693290333411 ], [ -82.007383145336277, 28.932709754244911 ], [ -82.007503508967474, 28.932726218549192 ], [ -82.007590435056144, 28.932736801542855 ], [ -82.007708121231147, 28.932746206251281 ], [ -82.007801735234764, 28.932748555313132 ], [ -82.007936805443748, 28.932754430909327 ], [ -82.008050934135795, 28.932757366963532 ], [ -82.00808759112418, 28.93276005194371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Williams Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00808759112418, 28.93276005194371 ], [ -82.008246435236117, 28.932760938909897 ], [ -82.008450081001584, 28.932760926179139 ], [ -82.008603867406379, 28.932760778089158 ], [ -82.008797969215323, 28.93276076630659 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Williams Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008797969215323, 28.93276076630659 ], [ -82.009589860087075, 28.932760329154458 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Williams Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006144473633597, 28.93233454635191 ], [ -82.006211068609474, 28.932369063548716 ], [ -82.006300015327298, 28.932406182876282 ], [ -82.006398884708233, 28.932446743064471 ], [ -82.006497559448007, 28.932490054284802 ], [ -82.006668667569627, 28.932548905978919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mansfield Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007644442565208, 28.930702539955767 ], [ -82.009383740028554, 28.930718968693476 ], [ -82.009587587212408, 28.930722045497827 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wedgewood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0157890023021, 28.928223611966075 ], [ -82.015920011059791, 28.92821113636699 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leslie Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01396347639303, 28.932817523816773 ], [ -82.013960579308574, 28.933081541795055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Idlewood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015126660171489, 28.937955457275972 ], [ -82.014740129689571, 28.937955498668188 ], [ -82.014405589430837, 28.937955533596952 ], [ -82.014064267035167, 28.937955568376964 ], [ -82.013702607096491, 28.93795274220891 ], [ -82.013383125950469, 28.937955524214797 ], [ -82.013051920342775, 28.937955556362954 ], [ -82.012735563313498, 28.937947676841464 ], [ -82.012606205473944, 28.937940813040534 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "New Hope Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013692434202937, 28.936683227380005 ], [ -82.013975952891286, 28.936681024811683 ], [ -82.01441082564466, 28.936678980256961 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "New Hope Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01441082564466, 28.936678980256961 ], [ -82.015130484939561, 28.936682878681975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 51st Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020018309541697, 28.932324376975725 ], [ -82.020019260516861, 28.93309991334953 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 51st Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019766012266174, 28.933985377525563 ], [ -82.019679952895359, 28.934042644880453 ], [ -82.019630955972062, 28.934067237556974 ], [ -82.019536206881753, 28.934108271974068 ], [ -82.01943805118087, 28.93414255493505 ], [ -82.019337109390378, 28.93416986799059 ], [ -82.019234019479541, 28.934190040512199 ], [ -82.019129432761218, 28.9342029442792 ], [ -82.019024012866666, 28.934208497990426 ], [ -82.018966547286226, 28.934208416547232 ], [ -82.018784522981889, 28.934205936589112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 51st Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018784522981889, 28.934205936589112 ], [ -82.01813922405637, 28.934202312329447 ], [ -82.018134502791824, 28.934202356257206 ], [ -82.018090754226421, 28.934198572336449 ], [ -82.018048684493763, 28.934187351473522 ], [ -82.018009912220862, 28.934169126560985 ], [ -82.017975927865038, 28.934144597588826 ], [ -82.017948034218946, 28.934114709094111 ], [ -82.017927305375025, 28.934080606855424 ], [ -82.017914538512414, 28.934043602709064 ], [ -82.017910223117724, 28.934005118609797 ], [ -82.01791019245357, 28.933816286459006 ], [ -82.017914855230742, 28.933186847107315 ], [ -82.017913438812045, 28.933095491784751 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 51st Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017913438812045, 28.933095491784751 ], [ -82.017881428215702, 28.932972842520662 ], [ -82.017854515095152, 28.932903970242585 ], [ -82.01782595091548, 28.932842747822935 ], [ -82.017795538583016, 28.932788217951778 ], [ -82.017743053931099, 28.932716888369548 ], [ -82.017704882740929, 28.932658145753336 ], [ -82.017661937328072, 28.932570029535938 ], [ -82.017638076467094, 28.932498696264389 ], [ -82.017607925222578, 28.932346881821065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 48th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021878066211556, 28.93876064278977 ], [ -82.021878682961145, 28.941486917747358 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 48th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020845466463186, 28.938759367144687 ], [ -82.020846042850835, 28.941485448172056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 49th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019684175382409, 28.938746747501593 ], [ -82.019663747107572, 28.940115030754033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 49th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019663747107572, 28.940115030754033 ], [ -82.019671912156653, 28.941025857781177 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hickory Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956301218750937, 28.94080420204487 ], [ -81.956264721530829, 28.940737707359123 ], [ -81.956240339908589, 28.940694771890499 ], [ -81.956203761164161, 28.940639311306974 ], [ -81.956163108504271, 28.94059994810042 ], [ -81.956112283777173, 28.940576677564252 ], [ -81.956043156226229, 28.940558769654526 ], [ -81.955959788155099, 28.940555164698853 ], [ -81.955908955113387, 28.940551570396146 ], [ -81.955872353717851, 28.940549770007493 ], [ -81.955829647817907, 28.940560487821429 ], [ -81.955786938591388, 28.940576571559742 ], [ -81.955744226553563, 28.940601598816034 ], [ -81.955715747432706, 28.940630207452152 ], [ -81.955687253486829, 28.940691012613332 ], [ -81.955652653176955, 28.940766124316941 ], [ -81.955642459512092, 28.940825147174372 ], [ -81.955648536217382, 28.940882386166496 ], [ -81.955674950715064, 28.940932476697309 ], [ -81.955750150368431, 28.941016568214575 ], [ -81.955802989198702, 28.941084554502698 ], [ -81.955855832937573, 28.941143598141561 ], [ -81.955906655598255, 28.941172232003879 ], [ -81.955969684330583, 28.941190139783991 ], [ -81.956048980205153, 28.941211630462103 ], [ -81.956103876673126, 28.941222380326554 ], [ -81.956164878952151, 28.941222400288243 ], [ -81.956209620207289, 28.941211683034155 ], [ -81.956260464650626, 28.94118665738409 ], [ -81.956315385558256, 28.941141958536445 ], [ -81.956376413696191, 28.941082953987685 ], [ -81.956394726413563, 28.941054341906977 ], [ -81.956402878532998, 28.941009628703267 ], [ -81.956394761835142, 28.940970273439532 ], [ -81.956368346499602, 28.9409237615452 ], [ -81.956325671444787, 28.940861144727734 ], [ -81.956301218750937, 28.94080420204487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hickory Head Hammock", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954136824034293, 28.941454391698343 ], [ -81.954175103833364, 28.941440058323799 ], [ -81.954288219161597, 28.941442823667956 ], [ -81.95436983359798, 28.941428311915004 ], [ -81.954434976810731, 28.941400840290616 ], [ -81.955091016462106, 28.940736860949148 ], [ -81.955264177376421, 28.940546611625393 ], [ -81.955460387866367, 28.940350626634611 ], [ -81.95561266632383, 28.940188715460845 ], [ -81.955750197764957, 28.940063509054973 ], [ -81.955805913266573, 28.940025999242032 ], [ -81.955870522785858, 28.940013139383339 ], [ -81.956447012056984, 28.939995546417499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gatsby Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963902160640686, 28.873980246964521 ], [ -81.963572997877861, 28.873665531488701 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Notch Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962656933068587, 28.877381877021673 ], [ -81.962681314415235, 28.87729810326017 ], [ -81.962716770826617, 28.877192898386181 ], [ -81.962807617115232, 28.876951320497469 ], [ -81.96283641815613, 28.87688313338997 ], [ -81.962876295866934, 28.876797413099403 ], [ -81.962960957254339, 28.876654985551646 ], [ -81.963007468621939, 28.876588751360586 ], [ -81.963082767499486, 28.876491352341297 ], [ -81.963146987843231, 28.876425123872238 ], [ -81.96323556494977, 28.876333573523194 ], [ -81.963310851700427, 28.876269296075346 ], [ -81.9634171331369, 28.87619333680993 ], [ -81.963580976357946, 28.876099856849013 ], [ -81.963707175296506, 28.876039490025377 ], [ -81.963791298530353, 28.876023924574799 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Unity Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96220121492145, 28.876565363745829 ], [ -81.962263239008976, 28.876448476232554 ], [ -81.962331905088206, 28.876333538622816 ], [ -81.962418281909294, 28.876210812752262 ], [ -81.962520646487405, 28.876087873834063 ], [ -81.962613655593373, 28.875984634900089 ], [ -81.9627354463545, 28.875871659932386 ], [ -81.962826231654049, 28.875799593868656 ], [ -81.962950230293345, 28.875706104530643 ], [ -81.963087506427172, 28.875614566799552 ], [ -81.963171640825891, 28.875569777071309 ], [ -81.963264629818568, 28.875523039838786 ], [ -81.963636573330916, 28.875369215579752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maverick Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963963255901731, 28.876637939623656 ], [ -81.963937208570314, 28.876575367000989 ], [ -81.96388855144653, 28.876446757823832 ], [ -81.963831088718564, 28.876185655819288 ], [ -81.963791298530353, 28.876023924574799 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maverick Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963791298530353, 28.876023924574799 ], [ -81.963729416953498, 28.875739439962079 ], [ -81.963687431611561, 28.875527051934533 ], [ -81.963636573330916, 28.875369215579752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maverick Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963636573330916, 28.875369215579752 ], [ -81.963603401187171, 28.875279580003973 ], [ -81.963552525667197, 28.875174352341084 ], [ -81.96345857986698, 28.875025776262341 ], [ -81.963337615839833, 28.874893251914411 ], [ -81.963249099969971, 28.874810094987293 ], [ -81.963201898268395, 28.874750331595983 ], [ -81.963184209837991, 28.874695770840173 ], [ -81.963181277721816, 28.874636018673222 ], [ -81.963196055549957, 28.874578869091156 ], [ -81.963232967626183, 28.874527354133726 ], [ -81.963599056869725, 28.874226098455182 ], [ -81.963902160640686, 28.873980246964521 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maverick Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963902160640686, 28.873980246964521 ], [ -81.964063553956436, 28.873848665100855 ], [ -81.964339091430176, 28.873647833731468 ], [ -81.964516219215028, 28.8735335742922 ], [ -81.964673654753653, 28.873457410964015 ], [ -81.964964904351007, 28.873339716080068 ], [ -81.96508859134245, 28.873295823323172 ], [ -81.965170057547994, 28.873266913062576 ], [ -81.965197276375051, 28.873262719003424 ], [ -81.965336474463285, 28.87326628844669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980400937380125, 28.894571412401685 ], [ -81.980403340593199, 28.894571984812206 ], [ -81.980586690236379, 28.894626524919921 ], [ -81.980703140078859, 28.89466797178541 ], [ -81.980807201606638, 28.894707236814714 ], [ -81.980936039443137, 28.894759589550169 ], [ -81.981064874991247, 28.89482502370354 ], [ -81.981233352591431, 28.894905730220191 ], [ -81.981426610755179, 28.894977714735354 ], [ -81.981580229294707, 28.895016986048631 ], [ -81.981790837005477, 28.895067167457274 ], [ -81.981922161917751, 28.895080267744458 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990974638106451, 28.875372625589954 ], [ -81.990974639799802, 28.875342427333319 ], [ -81.990968925307527, 28.875302164406008 ], [ -81.990961305123321, 28.875261899543627 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990757377320548, 28.875104186474129 ], [ -81.990709729295617, 28.875099151002523 ], [ -81.99066970460639, 28.875099148191509 ], [ -81.990635395503261, 28.875104177913133 ], [ -81.990597274381159, 28.875115918681203 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990810704124684, 28.875572253237298 ], [ -81.990873605336716, 28.875530315862704 ], [ -81.990906009515044, 28.875506831159566 ], [ -81.990938415194805, 28.875466570842672 ], [ -81.990963198354223, 28.875422954335509 ], [ -81.990974638106451, 28.875372625589954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beaulieu Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964097006452775, 28.882993409320004 ], [ -81.964208912518117, 28.882958086152602 ], [ -81.96443845391363, 28.882915221107393 ], [ -81.964656513771246, 28.882884974938868 ], [ -81.964815170772184, 28.882860616609239 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beaulieu Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964697736601821, 28.881316336703581 ], [ -81.964631927025621, 28.881302224521697 ], [ -81.964472965409286, 28.881273992824756 ], [ -81.96427943833217, 28.881235782214311 ], [ -81.964097434458552, 28.881200323722055 ], [ -81.963975773362463, 28.881174507851451 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dipper Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964314848098667, 28.883596978798884 ], [ -81.964274713853584, 28.883501012902776 ], [ -81.964200186387728, 28.883304030618408 ], [ -81.96417152738691, 28.883208067748846 ], [ -81.964140001991098, 28.883112104105845 ], [ -81.964097006452775, 28.882993409320004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dipper Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965994735434109, 28.884957912788106 ], [ -81.965932176664666, 28.88497101185888 ], [ -81.96580248734179, 28.884998136313072 ], [ -81.965680414614212, 28.885018045085779 ], [ -81.965524159671943, 28.885054789121501 ], [ -81.965402086586849, 28.88507847828275 ], [ -81.965337663957811, 28.885078952503822 ], [ -81.965274548600192, 28.88506378474316 ], [ -81.965211436303107, 28.885033467320618 ], [ -81.965085243859207, 28.884886974848346 ], [ -81.964938984977763, 28.884689975225367 ], [ -81.964784546992234, 28.884467423735753 ], [ -81.964666454692903, 28.884279691511882 ], [ -81.964559688227141, 28.88409505525998 ], [ -81.964449218022139, 28.883886695539097 ], [ -81.964361591867629, 28.883698971102181 ], [ -81.964314848098667, 28.883596978798884 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dipper Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964314848098667, 28.883596978798884 ], [ -81.964481270464361, 28.883556620620126 ], [ -81.964613255325332, 28.883533929236705 ], [ -81.964794017773826, 28.883506200352784 ], [ -81.96503790318792, 28.883470911067896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridley Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965994735434109, 28.884957912788106 ], [ -81.965946002244962, 28.884829117712496 ], [ -81.965914457904958, 28.88478113164981 ], [ -81.965768184053729, 28.88462200971081 ], [ -81.965639126982566, 28.884462892020789 ], [ -81.965524412482836, 28.884311353610197 ], [ -81.965378157136797, 28.884106779630283 ], [ -81.965260588446242, 28.883914836109916 ], [ -81.965171699235455, 28.883753204616198 ], [ -81.96503790318792, 28.883470911067896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lacy Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962576479126014, 28.886022419895358 ], [ -81.962726481405468, 28.886006304144651 ], [ -81.96291026932164, 28.885986073152736 ], [ -81.963131366558898, 28.885955879937921 ], [ -81.963406961403635, 28.885902670907523 ], [ -81.963673967740107, 28.885834674788661 ], [ -81.963898006684531, 28.885766667487431 ], [ -81.964159160431393, 28.885680793347987 ], [ -81.964397462539765, 28.885592162425759 ], [ -81.964687924952173, 28.885462636302048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robin Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962806839904303, 28.886299224106004 ], [ -81.962686193878298, 28.886155148217561 ], [ -81.962576479126014, 28.886022419895358 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bonita Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966521133722381, 28.879679687985369 ], [ -81.9665753183927, 28.879655177839393 ], [ -81.966608650302547, 28.879639944460109 ], [ -81.966639646099054, 28.879630325515045 ], [ -81.966690692510795, 28.879622313128507 ], [ -81.966750853612893, 28.879620724663237 ], [ -81.966828846274595, 28.87962264963296 ], [ -81.966917146392746, 28.879632699619851 ], [ -81.966976961380425, 28.879642742539446 ], [ -81.967039633519477, 28.879630221373798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bonita Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967039633519477, 28.879630221373798 ], [ -81.967005462746513, 28.879595113437123 ], [ -81.96691716380839, 28.879575034424914 ], [ -81.966820323262453, 28.879554954144691 ], [ -81.966737719013182, 28.879544905506737 ], [ -81.966672203620647, 28.87953987425308 ], [ -81.966615237426495, 28.879527325312996 ], [ -81.966555426806295, 28.879507254052697 ], [ -81.966507375757971, 28.8794747195018 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bonita Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974523377444896, 28.880240099478321 ], [ -81.974670104090833, 28.880233788636144 ], [ -81.974843998385609, 28.880228718892806 ], [ -81.975072724602725, 28.880228626312249 ], [ -81.97538777904883, 28.880246197355259 ], [ -81.975626558704576, 28.880265214626942 ], [ -81.97582719808905, 28.880284223693501 ], [ -81.975969798324826, 28.880309061754215 ], [ -81.97639925519519, 28.880405463356464 ], [ -81.976841978272887, 28.880507705581365 ], [ -81.977210081494647, 28.880593877209019 ], [ -81.977394138109162, 28.880624557803642 ], [ -81.977556640065472, 28.880643557848614 ], [ -81.977724117795574, 28.880655261612688 ], [ -81.977848391763914, 28.880652570824619 ], [ -81.977963289478765, 28.880649998384339 ], [ -81.978085615271638, 28.880639267549167 ], [ -81.978254756832598, 28.880617402598727 ], [ -81.978389079300683, 28.880591153848926 ], [ -81.978564373790789, 28.880544744191678 ], [ -81.978669922967683, 28.880511909160312 ], [ -81.978824380388374, 28.880466621010612 ], [ -81.978940224159103, 28.880433788298518 ], [ -81.979043455111309, 28.880411431038247 ], [ -81.979210520362301, 28.880378321883153 ], [ -81.979307054283382, 28.880363609484128 ], [ -81.979452495908589, 28.8803489072452 ], [ -81.97963654980019, 28.880337606095178 ], [ -81.979783276501564, 28.880335362676526 ], [ -81.980003363089224, 28.880344458485929 ], [ -81.980162958527799, 28.880359208723007 ], [ -81.980340570430755, 28.880384156528073 ], [ -81.980560649490059, 28.880428369007646 ], [ -81.980707369440807, 28.880468038299409 ], [ -81.980839930662228, 28.880508837791233 ], [ -81.980989222725086, 28.880560969735001 ], [ -81.981124354225571, 28.880618762359223 ], [ -81.981227312520716, 28.880661823867154 ], [ -81.981380459829793, 28.880741144071074 ], [ -81.98150271950432, 28.88081139440386 ], [ -81.981653290402662, 28.880911103249257 ], [ -81.981819349450191, 28.881036664072059 ], [ -81.981973728186603, 28.881167163213867 ], [ -81.982088099133918, 28.881277615798236 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chesterfield Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985035375626254, 28.882147938165296 ], [ -81.985119600366744, 28.882256612657258 ], [ -81.985155921607287, 28.88229271417725 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chesterfield Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985155921607287, 28.88229271417725 ], [ -81.985286903735798, 28.882434639957978 ], [ -81.985392813958157, 28.882527878288869 ], [ -81.985501374458082, 28.882614125792315 ], [ -81.985620528040187, 28.882688720225655 ], [ -81.985750343925929, 28.882762378202127 ], [ -81.985987814065496, 28.882876538190043 ], [ -81.986272938328625, 28.882971793146837 ], [ -81.986426047272289, 28.883016156947455 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chesterfield Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986426047272289, 28.883016156947455 ], [ -81.986838101951932, 28.88315002854452 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Collier Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013681231354369, 28.927359901001278 ], [ -82.013676990354909, 28.928214261285188 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955505825487606, 28.948339960155995 ], [ -81.955638452596475, 28.94835455719269 ], [ -81.95569706456287, 28.948378952910687 ], [ -81.955754919332563, 28.948422908247466 ], [ -81.955800429868532, 28.948462966999447 ], [ -81.955848616888801, 28.948507740192948 ], [ -81.955888772603885, 28.948545442167426 ], [ -81.955921689937611, 28.948578556299637 ], [ -81.955966407661833, 28.948616135234573 ], [ -81.956003886999369, 28.948649126328789 ], [ -81.956044043801157, 28.94868211558369 ], [ -81.95608687911961, 28.948717463394054 ], [ -81.956128374720222, 28.948752811654355 ], [ -81.956183261691905, 28.948790518361246 ], [ -81.956234130427887, 28.948823512865189 ], [ -81.956301063018998, 28.948870646095617 ], [ -81.956367997689568, 28.948915424310215 ], [ -81.956442965783481, 28.948960204200162 ], [ -81.956517935957763, 28.94900262816358 ], [ -81.956578107409769, 28.949035224034578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956636222434526, 28.948917697622647 ], [ -81.956527485023301, 28.948862221944314 ], [ -81.956252980288539, 28.948687548075057 ], [ -81.956034719233259, 28.948509982211398 ], [ -81.955846222239842, 28.9483498851564 ], [ -81.955783103998968, 28.948274516616745 ], [ -81.955764379040431, 28.948225043159095 ], [ -81.95575029747198, 28.948145736932826 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959495805578555, 28.949378099331664 ], [ -81.95969428586325, 28.949379056070654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974903867774145, 28.952527377180864 ], [ -81.974761489717864, 28.952530251226751 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981642942748664, 28.952839551352923 ], [ -81.98157944235254, 28.952819435914169 ], [ -81.98142727187394, 28.952761220566067 ], [ -81.981291642260175, 28.952711735239156 ], [ -81.981165934976104, 28.952673891646949 ], [ -81.981060072748861, 28.952650598412713 ], [ -81.980934363994791, 28.952621483376507 ], [ -81.980798729946059, 28.952592365891043 ], [ -81.980616780693197, 28.952563242444377 ], [ -81.980461294336763, 28.952548671189057 ], [ -81.980246259408617, 28.952537000836109 ], [ -81.979968364723746, 28.952536959375493 ], [ -81.979409266461772, 28.952533964330176 ], [ -81.97876746203697, 28.952530953824567 ], [ -81.977920544854896, 28.952527906479403 ], [ -81.976646861274503, 28.952527689726804 ], [ -81.975588211063581, 28.952530410285643 ], [ -81.974903867774145, 28.952527377180864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eldon Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015129547847735, 28.888683893058978 ], [ -82.015173954220884, 28.888718922790133 ], [ -82.015222157637993, 28.88874315697279 ], [ -82.015278076909809, 28.888766075647148 ], [ -82.015347807330798, 28.888774657040241 ], [ -82.015985658485391, 28.888774585804182 ], [ -82.01708132510808, 28.888774455489063 ], [ -82.018737685744213, 28.888774242937714 ], [ -82.019041179787934, 28.888774201785104 ], [ -82.019066899387397, 28.888769672327673 ], [ -82.019254004552636, 28.888732120811401 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Georgetown Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987532273444785, 28.881041950965447 ], [ -81.987599398631858, 28.881010406456209 ], [ -81.987722618388204, 28.880944143827065 ], [ -81.987888285253916, 28.880844146994622 ], [ -81.988045738373245, 28.880733306259824 ], [ -81.988138910003116, 28.880655944037187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985844967411083, 28.8809982480828 ], [ -81.98588390450648, 28.88104323736199 ], [ -81.985952039481845, 28.881126787765179 ], [ -81.98602504518351, 28.881210338643815 ], [ -81.986110216794614, 28.881308885198333 ], [ -81.986195390462925, 28.881401007310686 ], [ -81.986341404568307, 28.881531693671651 ], [ -81.986480524477102, 28.881633145504981 ], [ -81.986563518976141, 28.88168815820428 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986563518976141, 28.88168815820428 ], [ -81.986584219687273, 28.881701911366239 ], [ -81.98671646513057, 28.881795892106819 ], [ -81.986880635315643, 28.881879813399109 ], [ -81.987007734990158, 28.88194042443051 ], [ -81.987137484915564, 28.88200103379307 ], [ -81.987235458336727, 28.882045326376012 ], [ -81.987346671245717, 28.882096612080957 ], [ -81.987449940253398, 28.882154888879061 ], [ -81.98751613799169, 28.882201508901627 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Georgiana Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985716682680078, 28.881878523412961 ], [ -81.985841071607908, 28.881994389490302 ], [ -81.986026779947991, 28.882135013828858 ], [ -81.986128451916372, 28.882201735208444 ], [ -81.986232712100033, 28.882264674330521 ], [ -81.986426341198865, 28.882365641881009 ], [ -81.986652739989808, 28.882481033923796 ], [ -81.986700398648736, 28.882522990294014 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glen Hollow Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996396599856382, 28.924965596393044 ], [ -81.996436982959281, 28.924942367013141 ], [ -81.996472708461624, 28.9249000079203 ], [ -81.996505328045799, 28.924867214872993 ], [ -81.996551921880183, 28.924823490880826 ], [ -81.99660007464405, 28.924778399935498 ], [ -81.996660648749895, 28.924725110135416 ], [ -81.996793617808891, 28.924620447225834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glen Hollow Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996725887957538, 28.924563873364747 ], [ -81.996673077889596, 28.924614429441299 ], [ -81.996600077246399, 28.924678649330001 ], [ -81.996555109279115, 28.924716933442106 ], [ -81.996513095741491, 28.924763366252702 ], [ -81.996480478140782, 28.924798894161 ], [ -81.996450966920577, 28.924838518570041 ], [ -81.996419901729595, 28.924882242961065 ], [ -81.996395049790237, 28.92492186929179 ], [ -81.996393496970555, 28.924923236226288 ], [ -81.996396599856382, 28.924965596393044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cottage Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971618957307413, 28.910797532074444 ], [ -81.971641632356821, 28.910745628602914 ], [ -81.971650429462457, 28.910720877736875 ], [ -81.971662355491546, 28.910684095394387 ], [ -81.971674288095898, 28.910630812736315 ], [ -81.971686223841914, 28.910554840902424 ], [ -81.971689171031258, 28.91049880523622 ], [ -81.971686254602574, 28.910446551663487 ], [ -81.97168021207996, 28.910399796933028 ], [ -81.971664012569661, 28.910344790345768 ], [ -81.971644685955553, 28.910295281695607 ], [ -81.971634346491598, 28.910249557378201 ], [ -81.971626938592266, 28.910193519516714 ], [ -81.971624020784333, 28.910146421668717 ], [ -81.971631470670573, 28.910049823261446 ], [ -81.971649267054786, 28.909976945742166 ], [ -81.971667063764841, 28.909910256177238 ], [ -81.971678993943968, 28.909858004838267 ], [ -81.971689365926068, 28.90979268970252 ], [ -81.971693874617245, 28.909726341097354 ], [ -81.97169389292462, 28.909659649571346 ], [ -81.971679071379981, 28.909572327478607 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fish Camp Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970922984965583, 28.91056120907221 ], [ -81.970977130704682, 28.910443993413455 ], [ -81.971003914227239, 28.910369399956956 ], [ -81.97101585408619, 28.910291365528398 ], [ -81.971026233648757, 28.910193390885038 ], [ -81.971033635636942, 28.910112313825579 ], [ -81.971044062000573, 28.910011881329513 ], [ -81.971054430306978, 28.909964786340307 ], [ -81.97106928754441, 28.909923191824127 ], [ -81.971088635856461, 28.909886756711497 ], [ -81.971131627436336, 28.909834512123592 ], [ -81.971208813217345, 28.90975889634479 ], [ -81.971314125307913, 28.909693601616322 ], [ -81.971463972269433, 28.909641381573785 ], [ -81.971679071379981, 28.909572327478607 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gypsy Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007618530287317, 28.884669410136393 ], [ -82.00726345250726, 28.884310403387243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jenkins Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963758161878445, 28.8880200896876 ], [ -81.963857191824857, 28.88743397652723 ], [ -81.963881265285835, 28.887293379306787 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mariposa Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970164321113472, 28.918406250657487 ], [ -81.970344339232554, 28.918407537623565 ], [ -81.97052718812084, 28.918415060743442 ], [ -81.970603728331469, 28.918422560315616 ], [ -81.970656170643196, 28.918436291238393 ], [ -81.970703117995299, 28.918457657073841 ], [ -81.970765731514106, 28.918493637202097 ], [ -81.970835753521584, 28.918555274814064 ], [ -81.970883805602071, 28.918587084006592 ], [ -81.970945811876078, 28.91861671626263 ], [ -81.971227505748217, 28.918710311863776 ], [ -81.971486169387887, 28.91879298689053 ], [ -81.971558806598139, 28.918819503693417 ], [ -81.971603093815276, 28.918849131880059 ], [ -81.971643822869325, 28.918892006814989 ], [ -81.971659978411381, 28.918925192188947 ], [ -81.97167216169828, 28.918970739986225 ], [ -81.971676015985551, 28.919380260668063 ], [ -81.971670433083759, 28.920039989709117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mariposa Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969577523433955, 28.91846212777951 ], [ -81.969647945980569, 28.918442653252953 ], [ -81.969714981523452, 28.91843233894005 ], [ -81.969784435992793, 28.918433601603898 ], [ -81.969913425232008, 28.918434876719559 ], [ -81.97004808300737, 28.918434906908296 ], [ -81.970164321113472, 28.918406250657487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mariposa Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970164321113472, 28.918406250657487 ], [ -81.970049517686036, 28.918375047073411 ], [ -81.96996730485364, 28.918372535613877 ], [ -81.969886515379457, 28.918356304103256 ], [ -81.969809981107773, 28.918328851641675 ], [ -81.969743371178296, 28.918293915927258 ], [ -81.96968952048023, 28.918253996075432 ], [ -81.969646988334389, 28.918201401501403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Modesto Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956330555860703, 28.921305823988551 ], [ -81.956329154145578, 28.921942537714404 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001308554209203, 28.954988800502317 ], [ -82.000943492360904, 28.953259365007035 ], [ -82.000923070695393, 28.9531680260577 ], [ -82.000918440645862, 28.953118127521098 ], [ -82.000920753843928, 28.953085540336041 ], [ -82.000930018392978, 28.953050918459677 ], [ -82.000941594242633, 28.953016292965565 ], [ -82.000965908317113, 28.952961303597299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955057407719053, 28.948114096690105 ], [ -81.955042226571734, 28.948205819547812 ], [ -81.95500760652665, 28.948255804855624 ], [ -81.954968047717216, 28.94829247246383 ], [ -81.954877025454266, 28.948362847727786 ], [ -81.954242276120283, 28.948887411187503 ], [ -81.954150830565098, 28.949047285083022 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963572997877861, 28.873665531488701 ], [ -81.964041133382352, 28.873294988245171 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965443664017201, 28.872575188404618 ], [ -81.96549037339949, 28.872578245695458 ], [ -81.965524972835553, 28.87257673059916 ], [ -81.96556015227992, 28.872569633096461 ], [ -81.965601676678247, 28.872557462661092 ], [ -81.965640896279453, 28.872537169996786 ], [ -81.965680696373823, 28.87250976912928 ], [ -81.965708384971606, 28.872479320786404 ], [ -81.965733193348143, 28.872441766068896 ], [ -81.965751100410444, 28.872396074424749 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96522201920699, 28.872331869454332 ], [ -81.965227768123654, 28.872383136171713 ], [ -81.965243320848401, 28.87243491342424 ], [ -81.965270409446092, 28.872476035661567 ], [ -81.965293467555952, 28.87250446776897 ], [ -81.965323443681655, 28.872530868772216 ], [ -81.965369282732979, 28.872552327440019 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967534166700517, 28.87135584683589 ], [ -81.967163919827868, 28.871455920466296 ], [ -81.966847105631473, 28.871572249544965 ], [ -81.966468759665986, 28.871756241537028 ], [ -81.966331931731304, 28.871827566790653 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974403545544448, 28.869652396523584 ], [ -81.974481054381499, 28.869703588132531 ], [ -81.974571476634523, 28.8697689988349 ], [ -81.974668358222203, 28.869845783325108 ], [ -81.97479800850067, 28.86995514705232 ], [ -81.974934924030492, 28.870067402089198 ], [ -81.975081280320907, 28.870198363483055 ], [ -81.975237079929684, 28.870329324656907 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984467296978295, 28.872252952000999 ], [ -81.984467973509467, 28.872253136149496 ], [ -81.984608427578905, 28.87229139111119 ], [ -81.985016561453648, 28.872421118323743 ], [ -81.985293997952155, 28.87252316083908 ], [ -81.985557207408306, 28.872620178122876 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985557207408306, 28.872620178122876 ], [ -81.985838776670704, 28.872754913096916 ], [ -81.98604689308597, 28.872854616932862 ], [ -81.986337943940811, 28.873010495511409 ], [ -81.98730091394188, 28.873502675977786 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98730091394188, 28.873502675977786 ], [ -81.987358223296269, 28.873535545097347 ], [ -81.987797758591753, 28.873764204328474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987797758591753, 28.873764204328474 ], [ -81.988356252205293, 28.874055772097531 ], [ -81.98924071989353, 28.874508256601406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paddock Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988677233815238, 28.930083968755969 ], [ -81.988725278646058, 28.930056405029987 ], [ -81.988765061483235, 28.930031620557834 ], [ -81.98880310047214, 28.929999529141043 ], [ -81.988846284605188, 28.929963095400236 ], [ -81.988891039210003, 28.929933937884549 ], [ -81.988927505378996, 28.929914984618939 ], [ -81.988969254183175, 28.929900590178008 ], [ -81.989023639787817, 28.929888748461948 ], [ -81.989084967384144, 28.929882919288129 ], [ -81.9893983435894, 28.929846143732188 ], [ -81.989710162496095, 28.929820718197824 ], [ -81.990114007757526, 28.929808451606061 ], [ -81.990190116798203, 28.929804358146107 ], [ -81.99026001175973, 28.929807095461801 ], [ -81.990402908750724, 28.929830335498124 ], [ -81.990560442575827, 28.929835417740104 ], [ -81.991128274441166, 28.929823553119089 ], [ -81.991247961994617, 28.929813091779362 ], [ -81.991324205632338, 28.929805806269442 ], [ -81.991405421126558, 28.929804352573605 ], [ -81.991729411335399, 28.929797812702677 ], [ -81.992105268518785, 28.92979492134593 ], [ -81.993158368131674, 28.929788148179785 ], [ -81.993495887225166, 28.929786935522017 ], [ -81.99393825086608, 28.929782584222867 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Panama Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954453342173778, 28.935041822229678 ], [ -81.955252367418197, 28.934714278747688 ], [ -81.955530396210719, 28.934602017566316 ], [ -81.955645194356009, 28.934569267119912 ], [ -81.955768852463052, 28.934555638211116 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Panama Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955768852463052, 28.934555638211116 ], [ -81.956189699712951, 28.934542612810933 ], [ -81.956481934356063, 28.934524659390156 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Plumosa Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018271539042445, 28.884461621701334 ], [ -82.018385752201112, 28.884378558919643 ], [ -82.018444588487128, 28.884347410040633 ], [ -82.018494195418896, 28.884319723586287 ], [ -82.018527652852285, 28.88430126438476 ], [ -82.018584182365046, 28.884264348243271 ], [ -82.018664233116453, 28.884204104451793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ponce Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987984646163156, 28.95345602231103 ], [ -81.98826809424304, 28.953218858620424 ], [ -81.988467843943482, 28.953049395052346 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ponce Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988467843943482, 28.953049395052346 ], [ -81.988662441624726, 28.952883712247946 ], [ -81.988944753609502, 28.95265048281097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Prospect Hill Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978038148754649, 28.878508323441483 ], [ -81.978014998481726, 28.878346767893902 ], [ -81.978003429142618, 28.878229427038406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Prospect Hill Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978003429142618, 28.878229427038406 ], [ -81.977932075245164, 28.877615516985138 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Queen Palm Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009070891079404, 28.884391929819117 ], [ -82.009145636758447, 28.884379617727639 ], [ -82.009203503047246, 28.88436263726194 ], [ -82.009239455530022, 28.884345312592469 ], [ -82.009268750331699, 28.884328121881069 ], [ -82.009299941976238, 28.884301514626909 ], [ -82.009666407574144, 28.884012886824038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Queen Palm Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009666407574144, 28.884012886824038 ], [ -82.010210801283904, 28.883589705157256 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Queen Palm Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010210801283904, 28.883589705157256 ], [ -82.010556719950529, 28.88331067053981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rio Grande Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954012943013495, 28.92901088753711 ], [ -81.954036385510349, 28.929047114594976 ], [ -81.954092847881356, 28.929057446261456 ], [ -81.95418772151676, 28.92907525300917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984006396438261, 28.807067556416122 ], [ -81.9838011473054, 28.808130470859918 ], [ -81.983759046743899, 28.808338885245941 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983759046743899, 28.808338885245941 ], [ -81.983672201737477, 28.808834451123481 ], [ -81.983674819091931, 28.808906239327143 ], [ -81.983690582466352, 28.808978031838759 ], [ -81.98370897862776, 28.809031295706703 ], [ -81.983735265004952, 28.809079929869103 ], [ -81.983777327264022, 28.809128565938341 ], [ -81.983822018067301, 28.809172571650588 ], [ -81.983861450424357, 28.809202681121167 ], [ -81.983916663138601, 28.809230477146091 ], [ -81.98397713318343, 28.809253641311848 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98433471128665, 28.809295368606854 ], [ -81.985099831284742, 28.809355666306711 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985099831284742, 28.809355666306711 ], [ -81.985583615035623, 28.809406666513706 ], [ -81.985836025832654, 28.809425217931725 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985836025832654, 28.809425217931725 ], [ -81.986588000232743, 28.809487822938987 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robin Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98763597795805, 28.812168551124891 ], [ -81.98764005135277, 28.809960472884867 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981789999161904, 28.806731485455053 ], [ -81.982534057360766, 28.806842742061296 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Michigan Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038201230775755, 28.850791076507516 ], [ -82.038202178853027, 28.849068163233959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ironwood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040943232689173, 28.852826347929543 ], [ -82.040938943138684, 28.851171115109526 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ironwood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040887888336513, 28.85423364032528 ], [ -82.040924074787583, 28.854201760135172 ], [ -82.040938529421069, 28.854144394513927 ], [ -82.040943232689173, 28.852826347929543 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magnolia Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040315388022137, 28.854247065528895 ], [ -82.04031484763307, 28.852827042925551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magnolia Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04031484763307, 28.852827042925551 ], [ -82.040316944625715, 28.851171299287142 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040938943138684, 28.851171115109526 ], [ -82.040316944625715, 28.851171299287142 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040316944625715, 28.851171299287142 ], [ -82.040017090072041, 28.85117317000585 ], [ -82.039690895782257, 28.851171482669717 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039690895782257, 28.851171482669717 ], [ -82.039618970910141, 28.851171949186888 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fifth Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040120781501471, 28.85577404826444 ], [ -82.040241562830545, 28.855553419311338 ], [ -82.040282813616841, 28.855501502142605 ], [ -82.040347662631376, 28.855491102974632 ], [ -82.040415471245282, 28.85550924820641 ], [ -82.040556986915618, 28.855550730487725 ], [ -82.04127636274697, 28.855771110343156 ], [ -82.041317632390673, 28.855765908761672 ], [ -82.041358894892198, 28.855750322548694 ], [ -82.041406049731094, 28.85571657025444 ], [ -82.041447308145479, 28.855685416558103 ], [ -82.041470874335914, 28.855641290357273 ], [ -82.041494433380876, 28.855576402130122 ], [ -82.041494128762622, 28.854800428517681 ], [ -82.041505903077166, 28.854761495928734 ], [ -82.041514733817664, 28.854727756089915 ], [ -82.04154124945741, 28.854688819033644 ], [ -82.041591356518168, 28.854668042719631 ], [ -82.041662100190052, 28.85465764022932 ], [ -82.041968665181642, 28.854621213635507 ], [ -82.042015830663956, 28.854616008230998 ], [ -82.042062994092433, 28.854610804615255 ], [ -82.042110154413635, 28.854597814096 ], [ -82.042151410116716, 28.854564062446677 ], [ -82.04217792442067, 28.854517339279592 ], [ -82.0421808461751, 28.85445245907577 ], [ -82.042196840650107, 28.854002472160968 ], [ -82.042206730754089, 28.853352517431482 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fourth Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042206730754089, 28.853352517431482 ], [ -82.042181350546628, 28.853327956388455 ], [ -82.042176258703975, 28.853278820246302 ], [ -82.042181157118378, 28.85284328346966 ], [ -82.04218329972241, 28.852076877745692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fourth Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04218329972241, 28.852076877745692 ], [ -82.042185083880796, 28.851470405596043 ], [ -82.042182801424403, 28.850828261111808 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Second Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043801803484456, 28.855363517174798 ], [ -82.043802910994117, 28.854363796879596 ], [ -82.043805092142847, 28.853503894512624 ], [ -82.043812634531207, 28.853338612448727 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Second Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043812634531207, 28.853338612448727 ], [ -82.043814824753539, 28.85250327790223 ], [ -82.04382239120909, 28.85207992941417 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Second Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04382239120909, 28.85207992941417 ], [ -82.043800647341953, 28.851353469964522 ], [ -82.043790339300656, 28.850965735681431 ], [ -82.043784192580276, 28.850821006122374 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "First Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044609245024347, 28.853336121260039 ], [ -82.044613788252008, 28.85207865258517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982534057360766, 28.806842742061296 ], [ -81.983272855554702, 28.806953993006683 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983272855554702, 28.806953993006683 ], [ -81.984006396438261, 28.807067556416122 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984006396438261, 28.807067556416122 ], [ -81.984742569373978, 28.807176483671601 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984742569373978, 28.807176483671601 ], [ -81.985476115087494, 28.807285405724205 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985476115087494, 28.807285405724205 ], [ -81.986214922733808, 28.807380430540469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986214922733808, 28.807380430540469 ], [ -81.986646021200613, 28.808144678841131 ], [ -81.986751168394989, 28.808323004077394 ], [ -81.986774826078218, 28.808364691400328 ], [ -81.986782708755484, 28.808408689783729 ], [ -81.986780073844429, 28.808448059171617 ], [ -81.986588000232743, 28.809487822938987 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winterberry Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985476115087494, 28.807285405724205 ], [ -81.985239302504056, 28.808531265227398 ], [ -81.985099831284742, 28.809355666306711 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Timber Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981789999161904, 28.806731485455053 ], [ -81.98186632597961, 28.806289182669563 ], [ -81.982034727251474, 28.805545842207948 ], [ -81.982063664332586, 28.805453214763492 ], [ -81.982100491134617, 28.805351326135614 ], [ -81.982176767777219, 28.805173020552406 ], [ -81.98221885220795, 28.80508039481731 ], [ -81.982279343065315, 28.80496693080773 ], [ -81.982339832825105, 28.804865045233896 ], [ -81.982439764084177, 28.804733058269697 ], [ -81.982552843553009, 28.804589495378242 ], [ -81.98266855124443, 28.804452878725478 ], [ -81.982797404315889, 28.804320897030486 ], [ -81.982918365017113, 28.804200493572235 ], [ -81.983055103231337, 28.804082405527506 ], [ -81.983189205715547, 28.803980527947296 ], [ -81.983349603170396, 28.803876338170781 ], [ -81.983496851307976, 28.803788358421244 ], [ -81.983654613762042, 28.803707323986238 ], [ -81.987138451581018, 28.802153819939633 ], [ -81.987188407547876, 28.802130665993019 ], [ -81.987235734, 28.802114460482883 ], [ -81.987275173114753, 28.802101727204981 ], [ -81.987324468475691, 28.802101732791943 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Timber Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987324468475691, 28.802101732791943 ], [ -81.987363904915981, 28.802110419476943 ], [ -81.987403338188642, 28.80213647656203 ], [ -81.987432910511288, 28.802171215658596 ], [ -81.987449336923419, 28.802220427504057 ], [ -81.987452616699642, 28.802289901337648 ], [ -81.987449269499635, 28.802758845272066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Timber Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987449269499635, 28.802758845272066 ], [ -81.98744920738234, 28.803262527593567 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sandalwood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983951614929211, 28.804307145587497 ], [ -81.985723941845393, 28.803526338524591 ], [ -81.986565172415325, 28.803146651565729 ], [ -81.987449269499635, 28.802758845272066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sandalwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980642609844281, 28.812675263241339 ], [ -81.980598103546981, 28.812700532335757 ], [ -81.980532023812685, 28.812743898637553 ], [ -81.980466609528165, 28.812805696504892 ], [ -81.980413331304717, 28.812873924175097 ], [ -81.980377000863868, 28.812940022145067 ], [ -81.980352774983828, 28.813016783582245 ], [ -81.98033096774158, 28.813099942751805 ], [ -81.98031884600536, 28.813189502526328 ], [ -81.980323667670405, 28.813300386387272 ], [ -81.980340596232736, 28.813404874639662 ], [ -81.980362371573165, 28.813483776775783 ], [ -81.980403511167538, 28.813590401624129 ], [ -81.980442231724069, 28.81368209918103 ], [ -81.980478536887432, 28.813750340809896 ], [ -81.980517263626595, 28.813810052335974 ], [ -81.98056809898209, 28.813865501286426 ], [ -81.980618933949302, 28.813912421577687 ], [ -81.980667350248311, 28.813952944118707 ], [ -81.98072545177493, 28.813991334972993 ], [ -81.98079566027485, 28.814023330155354 ], [ -81.980863449692819, 28.814051060636011 ], [ -81.980945765597582, 28.814074528828733 ], [ -81.981018398076685, 28.814085201738745 ], [ -81.981163669669925, 28.814087354394555 ], [ -81.981311363902662, 28.814074580308326 ], [ -81.981461481860862, 28.814057542978347 ], [ -81.981589805018587, 28.814046898065957 ], [ -81.981691497022965, 28.814040514617414 ], [ -81.981768975381556, 28.814040526083996 ], [ -81.981885191039254, 28.814051203548459 ], [ -81.981969928865098, 28.814070406222157 ], [ -81.98206677376902, 28.81409387658811 ], [ -81.982168458099594, 28.814125874363572 ], [ -81.982248353041228, 28.814151474501784 ], [ -81.982333092482691, 28.81416214650352 ], [ -81.982410569247804, 28.81416002453954 ], [ -81.982485630321577, 28.814145107451527 ], [ -81.982567955356814, 28.814117397405887 ], [ -81.982635753358707, 28.814085422009949 ], [ -81.98269629203304, 28.814038516011369 ], [ -81.982747143096148, 28.813995876666702 ], [ -81.982795575632778, 28.813944704743054 ], [ -81.982834327576413, 28.8138743421218 ], [ -81.98285612876569, 28.813810372897439 ], [ -81.982868248721957, 28.813725078124115 ], [ -81.982861002616303, 28.813631254036252 ], [ -81.982844065492301, 28.813556618146041 ], [ -81.982817443555135, 28.81349477487338 ], [ -81.982783557530155, 28.813428666341206 ], [ -81.982747248520241, 28.813368956675035 ], [ -81.982660109176848, 28.813249531823519 ], [ -81.982623647082178, 28.813199206133923 ], [ -81.982587492125887, 28.813132240962538 ], [ -81.982571437185044, 28.81304669260177 ], [ -81.982563300787291, 28.813014958177618 ], [ -81.982560891101684, 28.812948852776451 ], [ -81.982570588047139, 28.812882751657376 ], [ -81.982585124760547, 28.812816648459297 ], [ -81.982606925519974, 28.812754813229972 ], [ -81.982635987487214, 28.812707904060169 ], [ -81.982672314681238, 28.812646070701568 ], [ -81.982730434470483, 28.812582107983808 ], [ -81.98310819213043, 28.812230313601798 ], [ -81.983488362306176, 28.811921166163252 ], [ -81.983580374030169, 28.811861470666127 ], [ -81.983645750744287, 28.811833756068474 ], [ -81.983708703127249, 28.811814573395669 ], [ -81.983788604121884, 28.811799657068022 ], [ -81.983880608187079, 28.811786872506886 ], [ -81.984660214248549, 28.811791228448062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987756054464683, 28.865424548952419 ], [ -81.989636142810042, 28.865418463874001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989636142810042, 28.865418463874001 ], [ -81.989743500673427, 28.865417979547942 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989743500673427, 28.865417979547942 ], [ -81.990280191176254, 28.8654196711331 ], [ -81.991067234274041, 28.865421660107003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shawn Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04400704222499, 28.84986499036215 ], [ -82.043698555509309, 28.849863302510219 ], [ -82.043452983777954, 28.849865168052386 ], [ -82.043406306364446, 28.849870543436921 ], [ -82.043365722372513, 28.849884851502932 ], [ -82.04323993100445, 28.84997959087082 ], [ -82.043195288174289, 28.849995685827572 ], [ -82.04210340259732, 28.849985305191503 ], [ -82.042052652365825, 28.849954944660919 ], [ -82.041890228052168, 28.849794181936112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pamela Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040686242853056, 28.849070145688717 ], [ -82.040689668485427, 28.847444131707388 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jennifer Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040131777574942, 28.849072892244397 ], [ -82.040124728614018, 28.847476384003798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parks Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041305417132307, 28.849071151729355 ], [ -82.04094986533778, 28.849070067268748 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parks Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038202178853027, 28.849068163233959 ], [ -82.037860188453507, 28.849068256997352 ], [ -82.037511713262688, 28.849066926021386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Village Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038882475688297, 28.84897148883578 ], [ -82.038890899053001, 28.848656589101413 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Village Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038890899053001, 28.848656589101413 ], [ -82.038887766233856, 28.84810495384626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Village Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038887766233856, 28.84810495384626 ], [ -82.038883320743281, 28.847536906882308 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Village Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038883320743281, 28.847536906882308 ], [ -82.038883357990642, 28.847317560907122 ], [ -82.038880586285174, 28.846747171919667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Janet Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040252611916429, 28.850826722466802 ], [ -82.040263057202381, 28.849070903914907 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mary Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03961378653706, 28.850853107661415 ], [ -82.039568177310855, 28.850795149519509 ], [ -82.03957554763592, 28.849067897054532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Huron Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03888818574201, 28.850788097394226 ], [ -82.038883858502203, 28.849072636871096 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994191506828471, 28.909626122719722 ], [ -81.994243738018397, 28.909615530246562 ], [ -81.994317274472337, 28.90961553346148 ], [ -81.994377438814482, 28.909618477552836 ], [ -81.994444288712842, 28.90962877292197 ], [ -81.994496097929868, 28.909644952411643 ], [ -81.994562945846184, 28.90967289396016 ], [ -81.994703329494726, 28.909734662015225 ], [ -81.994917247499515, 28.909842022309263 ], [ -81.995127819648573, 28.909953790763772 ], [ -81.99527321735161, 28.91003908762908 ], [ -81.995425298614876, 28.91013761947552 ], [ -81.99562250283806, 28.91027438844873 ], [ -81.995804664923639, 28.910414096329998 ], [ -81.995998525972581, 28.910578802482707 ], [ -81.996133895602625, 28.910703802807994 ], [ -81.996316057338433, 28.910889097676215 ], [ -81.99648485039188, 28.91108174384922 ], [ -81.996688738391569, 28.911343506713308 ], [ -81.996879256374484, 28.911631738734201 ], [ -81.997084817309357, 28.911946439716779 ], [ -81.997264038258393, 28.912181982149836 ], [ -81.997489230005783, 28.912467602767933 ], [ -81.99761501085969, 28.912615768768589 ], [ -81.997728622325411, 28.912735373106287 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983643325513825, 28.908662534898706 ], [ -81.983480831043266, 28.908416539428586 ], [ -81.983359477075638, 28.908264628795916 ], [ -81.983275882990739, 28.908126963760434 ], [ -81.983208474276296, 28.907991673752949 ], [ -81.983165332630733, 28.907894359986248 ], [ -81.98310332060565, 28.907749577525227 ], [ -81.983068280400786, 28.907607170600912 ], [ -81.983049415192554, 28.90750986077364 ], [ -81.983027857464762, 28.90738644260502 ], [ -81.98300899825395, 28.907253532598574 ], [ -81.98297665111221, 28.907141980066967 ], [ -81.982936206121877, 28.907049413549458 ], [ -81.982876886455685, 28.906942604527917 ], [ -81.982806775129717, 28.906842914122866 ], [ -81.982696208687543, 28.906719485290214 ], [ -81.982434628035932, 28.906422780879769 ], [ -81.982127203587012, 28.906083348702438 ], [ -81.981992361707853, 28.905967035159076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982417524345763, 28.907392591220564 ], [ -81.982484982372256, 28.90741137691596 ], [ -81.982514096193128, 28.907419145911973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982514096193128, 28.907419145911973 ], [ -81.982531782322226, 28.907422418156983 ], [ -81.982580050925733, 28.907426140131584 ], [ -81.982628321820812, 28.9074224316646 ], [ -81.982675127582397, 28.907411402645817 ], [ -81.982719044842156, 28.907393388547227 ], [ -81.982758738385357, 28.907368939600865 ], [ -81.982793007300629, 28.907338795539932 ], [ -81.982820804465717, 28.907303873870756 ], [ -81.982835562748917, 28.907277956355749 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982835562748917, 28.907277956355749 ], [ -81.982841288850395, 28.907265235591677 ], [ -81.982853836800871, 28.907224054515623 ], [ -81.982858067680624, 28.907181581181 ], [ -81.982853851053221, 28.90713910676044 ], [ -81.98284131694156, 28.907097924263038 ], [ -81.982820844555064, 28.907059278906754 ], [ -81.982793059214799, 28.907024350974627 ], [ -81.982758802624701, 28.906994198064385 ], [ -81.982719116467308, 28.906969737040988 ], [ -81.982675205493166, 28.906951714256689 ], [ -81.982634477135861, 28.906941677210821 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982634477135861, 28.906941677210821 ], [ -81.982628405738623, 28.906940673064849 ], [ -81.982580137357431, 28.906936951107479 ], [ -81.982531866684553, 28.906940660459924 ], [ -81.982485062144164, 28.906951688527663 ], [ -81.98244114502981, 28.906969701648944 ], [ -81.982401449512821, 28.906994152307544 ], [ -81.982367183674199, 28.907024295368537 ], [ -81.982339384381177, 28.907059216945228 ], [ -81.98231889882608, 28.907097855148915 ], [ -81.982317653420566, 28.907100933625031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982317653420566, 28.907100933625031 ], [ -81.98230635273103, 28.907139036176055 ], [ -81.982302121629132, 28.907181508591151 ], [ -81.982298248889094, 28.907221153251172 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982298248889094, 28.907221153251172 ], [ -81.982312121668855, 28.907264346295822 ], [ -81.982331563546055, 28.907301841161658 ], [ -81.982351931736076, 28.907331467205456 ], [ -81.982381556287351, 28.907362481300769 ], [ -81.982397758345726, 28.907379146177707 ], [ -81.982417524345763, 28.907392591220564 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982634477135861, 28.906941677210821 ], [ -81.982555921400134, 28.906897469693167 ], [ -81.982469625884633, 28.906804896127539 ], [ -81.982386037005526, 28.906662483521355 ], [ -81.982245820750961, 28.906422756794107 ], [ -81.982175712244683, 28.906306451134501 ], [ -81.982116391701624, 28.906211508793156 ], [ -81.982024711989766, 28.906064347875216 ], [ -81.981992361707853, 28.905967035159076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979965213791587, 28.903192845502463 ], [ -81.980055481987009, 28.903257140566744 ], [ -81.980098527966774, 28.903315421941791 ], [ -81.980138159276862, 28.903395671961185 ], [ -81.980165896086106, 28.903486388670729 ], [ -81.980204085046779, 28.903671468404152 ], [ -81.980265994529361, 28.903884081658564 ], [ -81.980327917319386, 28.904034004082071 ], [ -81.980408423116813, 28.904192106732005 ], [ -81.980485835551264, 28.904333853816297 ], [ -81.980597322418717, 28.904470155022722 ], [ -81.980674743025219, 28.904571017949618 ], [ -81.980776941216959, 28.904690962597297 ], [ -81.98091010452751, 28.904873603288721 ], [ -81.981074228789566, 28.905132567338882 ], [ -81.981284804452628, 28.905456954327803 ], [ -81.981390094064039, 28.90562051151738 ], [ -81.981712153983779, 28.906130260709698 ], [ -81.981987776082107, 28.906520072069018 ], [ -81.982210754965266, 28.906819929343047 ], [ -81.982261953821734, 28.906913097539295 ], [ -81.982322173716767, 28.907022680615423 ], [ -81.982317653420566, 28.907100933625031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980888765898172, 28.904554062980409 ], [ -81.980721105322758, 28.904191747099492 ], [ -81.980605262870171, 28.903913602225934 ], [ -81.980568425237351, 28.903714271003334 ], [ -81.980542133367607, 28.903463950603953 ], [ -81.980526369752866, 28.903259988219375 ], [ -81.980505333924839, 28.90306529437137 ], [ -81.980463223169536, 28.902898411692394 ], [ -81.980405300266057, 28.902773245359491 ], [ -81.9803210463851, 28.902606354635925 ], [ -81.980215718683084, 28.90246263988827 ], [ -81.980057721052788, 28.902267925595019 ], [ -81.979920790276765, 28.902105664551723 ], [ -81.979768066708871, 28.901887773352527 ], [ -81.979678547188826, 28.901720882311132 ], [ -81.97961537048738, 28.901535453888528 ], [ -81.979568249535333, 28.90145710008342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98013200830674, 28.902726980231954 ], [ -81.980072210302055, 28.902692332981417 ], [ -81.979997884749338, 28.902620363553684 ], [ -81.979943385225567, 28.902537494586632 ], [ -81.979799604550294, 28.902235440156808 ], [ -81.979673229196536, 28.901971197235284 ], [ -81.979604786825405, 28.901776496893138 ], [ -81.979567946207823, 28.901600343587333 ], [ -81.979568249535333, 28.90145710008342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980676709035848, 28.883660155357557 ], [ -81.98048449088428, 28.883913827467978 ], [ -81.980295670537259, 28.884198603920911 ], [ -81.980221488771861, 28.884320228576669 ], [ -81.980052888997761, 28.884616875627906 ], [ -81.979924743602098, 28.884895727037044 ], [ -81.979799962011711, 28.885207212342014 ], [ -81.979732501016571, 28.885423772422918 ], [ -81.979661670279029, 28.885643298715994 ], [ -81.979621183245328, 28.885824261641002 ], [ -81.979573941054966, 28.886076425887108 ], [ -81.979536815619667, 28.886307823396354 ], [ -81.979519914130066, 28.886542192556188 ], [ -81.979509756857922, 28.886764692972086 ], [ -81.979506321185355, 28.88709399794925 ], [ -81.979502919731047, 28.887236400339358 ], [ -81.979502805907799, 28.887806491059422 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968814200376912, 28.894360079722126 ], [ -81.968811989153863, 28.894362276307486 ], [ -81.968783641374316, 28.894396594092655 ], [ -81.968762710490353, 28.894434816046669 ], [ -81.968759702045787, 28.894442240369958 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968759702045787, 28.894442240369958 ], [ -81.96874987255697, 28.894475713398307 ], [ -81.968745538104415, 28.89451796798572 ], [ -81.968749846994115, 28.89456022639272 ], [ -81.968762661231324, 28.894601127918406 ], [ -81.968783568023014, 28.894639358715878 ], [ -81.968809579685143, 28.894671325128826 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968809579685143, 28.894671325128826 ], [ -81.968811896169456, 28.894673691497651 ], [ -81.968846735533901, 28.894703018925863 ], [ -81.968886963685662, 28.894726401441019 ], [ -81.968913657379034, 28.894737435541451 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968913657379034, 28.894737435541451 ], [ -81.968931288957506, 28.894743086220998 ], [ -81.968978289398748, 28.894752537869032 ], [ -81.969026450708839, 28.894754451957347 ], [ -81.969074227753325, 28.894748768576459 ], [ -81.969082673775986, 28.894746947879629 ], [ -81.969089449406368, 28.894745669079185 ], [ -81.969134643796579, 28.894732759465313 ], [ -81.969176490546616, 28.894712954594464 ], [ -81.969196536108385, 28.894700091507133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969196536108385, 28.894700091507133 ], [ -81.969213646304908, 28.894686892087037 ], [ -81.969244917359163, 28.894655409909326 ], [ -81.969265905106496, 28.894625498074877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969265905106496, 28.894625498074877 ], [ -81.969269299631463, 28.894619520215389 ], [ -81.969286006371618, 28.894580375967667 ], [ -81.969294503027655, 28.894539233949981 ], [ -81.969294515457463, 28.894497420481631 ], [ -81.969286043272731, 28.894456275477609 ], [ -81.969269360871152, 28.894417124477606 ], [ -81.969245000021246, 28.894381222699504 ], [ -81.969231819984088, 28.894366529332473 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969231819984088, 28.894366529332473 ], [ -81.969213747819097, 28.894349726165988 ], [ -81.96917660671383, 28.894323647483205 ], [ -81.969134771960398, 28.894303823353418 ], [ -81.969109611355464, 28.894295650841975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969109611355464, 28.894295650841975 ], [ -81.969108378031805, 28.894295253545849 ], [ -81.969062811551922, 28.894284496645977 ], [ -81.96901581674372, 28.894280868470837 ], [ -81.968968817715037, 28.894284474917679 ], [ -81.968923243763925, 28.89429520984655 ], [ -81.968880483244135, 28.89431274514407 ], [ -81.968841832295567, 28.894336549659609 ], [ -81.968814200376912, 28.894360079722126 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968654318071643, 28.906470747290914 ], [ -81.968635919664138, 28.906495158269976 ], [ -81.968616037584837, 28.906532647709941 ], [ -81.968605062684702, 28.906579120709338 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968605062684702, 28.906579120709338 ], [ -81.968603698932455, 28.90659240131545 ], [ -81.96860233723099, 28.906605681019702 ], [ -81.968606615884468, 28.906647638883427 ], [ -81.96861934139153, 28.906688252496608 ], [ -81.968640101936799, 28.906726214330554 ], [ -81.968668232395927, 28.906760301612174 ], [ -81.968691830358722, 28.906781265707956 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968691830358722, 28.906781265707956 ], [ -81.968702829701655, 28.906789423247641 ], [ -81.968742779497944, 28.906812641484386 ], [ -81.968783225895137, 28.906828163222432 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968783225895137, 28.906828163222432 ], [ -81.968786797145796, 28.9068292089156 ], [ -81.96883347180983, 28.906838593755634 ], [ -81.968881299268261, 28.906840495187097 ], [ -81.96892874548891, 28.906834850594475 ], [ -81.968942637134973, 28.906830882801589 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969071030771318, 28.906759811415036 ], [ -81.969085398696194, 28.906743913532164 ], [ -81.969109965425773, 28.906707755091571 ], [ -81.969126453455203, 28.906669408516606 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969115969273133, 28.906522731228385 ], [ -81.969109814888625, 28.906508292137513 ], [ -81.969085697275773, 28.906472751368209 ], [ -81.969054754172703, 28.906441570727146 ], [ -81.969017980968061, 28.906415751990856 ], [ -81.969012596354418, 28.906412704587108 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969780634660395, 28.909079201147286 ], [ -81.969745908779345, 28.909058312333521 ], [ -81.9697020442824, 28.909040302480822 ], [ -81.969683076071789, 28.909034893425481 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969683076071789, 28.909034893425481 ], [ -81.969655292133652, 28.909029269428391 ], [ -81.969607074525214, 28.909025547346111 ], [ -81.969558854731289, 28.909029247547551 ], [ -81.969513304155342, 28.909039975434307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Trce", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007437602809475, 28.931341352026958 ], [ -82.007459278624296, 28.931286701622682 ], [ -82.007502066142479, 28.931178463734938 ], [ -82.007527468849759, 28.93110434430946 ], [ -82.007560894293221, 28.93100081506104 ], [ -82.007592983638204, 28.930903168835542 ], [ -82.007623734320745, 28.930789050376045 ], [ -82.007644442565208, 28.930702539955767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Trce", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007644442565208, 28.930702539955767 ], [ -82.007672530974361, 28.930580201715802 ], [ -82.007699264328863, 28.93039785009892 ], [ -82.007719619136523, 28.930275379617846 ], [ -82.007727910769347, 28.930205620044426 ], [ -82.00774103466199, 28.930112557541019 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Trce", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00774103466199, 28.930112557541019 ], [ -82.007742699339374, 28.930011088064337 ], [ -82.007742688785655, 28.929861087836326 ], [ -82.007742680922291, 28.929749325063714 ], [ -82.00774434714468, 28.929669913988388 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Trce", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007766213489845, 28.929052325216812 ], [ -82.007774390814433, 28.929021389589046 ], [ -82.007826203841489, 28.92892874093388 ], [ -82.007941944432318, 28.928799415872483 ], [ -82.008032303379423, 28.928714366846595 ], [ -82.008133165960217, 28.928618227057051 ], [ -82.008196206586391, 28.928559064502135 ], [ -82.008303937023669, 28.928455778916426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983576522630713, 28.882621523539058 ], [ -81.983540736232143, 28.88256454421154 ], [ -81.983395813013246, 28.882414441055897 ], [ -81.983142281135372, 28.882187690707873 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983068515363868, 28.882271189372759 ], [ -81.983148990408196, 28.882340491792434 ], [ -81.983278570410022, 28.88245157236701 ], [ -81.983418386574058, 28.882547644303358 ], [ -81.983576522630713, 28.882621523539058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valley Oak Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008787295221993, 28.883811346288141 ], [ -82.009467939240565, 28.883214509610585 ], [ -82.009514985896686, 28.883173256010529 ], [ -82.009541835571724, 28.883136423202671 ], [ -82.009584665746161, 28.883050763100194 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spanish Moss Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040814054375772, 28.843874009334872 ], [ -82.039993843424398, 28.843875758467476 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bobwhite Crossing", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993582809687084, 28.817276220670369 ], [ -81.993261005523607, 28.817132281674418 ], [ -81.992901491329761, 28.816992769333371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Martin Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067439452488273, 28.799859076907101 ], [ -82.067436177635756, 28.800370661036723 ], [ -82.06742530273543, 28.801207622274301 ], [ -82.067432346547974, 28.801456293029677 ], [ -82.067411841655741, 28.801695877564423 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mulberry Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069924242951998, 28.799871170081289 ], [ -82.069959008492276, 28.800793913430237 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Florida Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070523640239884, 28.800790589439696 ], [ -82.069959008492276, 28.800793913430237 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Florida Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069959008492276, 28.800793913430237 ], [ -82.06917769288367, 28.800807668320402 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Florida Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06917769288367, 28.800807668320402 ], [ -82.068488902445722, 28.800809820944444 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063262662387586, 28.801691248967149 ], [ -82.062233225938698, 28.80168869048947 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 34th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047315360397349, 28.806138179369491 ], [ -82.04649332771784, 28.806138460202057 ], [ -82.045602430992858, 28.806131176790149 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07052303015972, 28.799877775694195 ], [ -82.071218487407052, 28.799874382992009 ], [ -82.071554590701155, 28.799873967258524 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071554590701155, 28.799873967258524 ], [ -82.072775939314042, 28.79986808015374 ], [ -82.073624921711868, 28.799864300776498 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.073624921711868, 28.799864300776498 ], [ -82.074621065014028, 28.799863228331642 ], [ -82.075318969336124, 28.799862844034685 ], [ -82.076055507539863, 28.799856055262335 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076055507539863, 28.799856055262335 ], [ -82.076260781520006, 28.799868702976489 ], [ -82.076789639471485, 28.79986627870667 ], [ -82.077436833532715, 28.799868040546166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.077436833532715, 28.799868040546166 ], [ -82.077852199769083, 28.799874184377963 ], [ -82.078858259794146, 28.799871370547006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078858259794146, 28.799871370547006 ], [ -82.080594851123394, 28.79987035446905 ], [ -82.081126934059199, 28.799873729406002 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Florida Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060135962534829, 28.800770749074786 ], [ -82.058066779929334, 28.800765577307772 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mizell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058097258987843, 28.799840619347783 ], [ -82.058066779929334, 28.800765577307772 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mizell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058066779929334, 28.800765577307772 ], [ -82.058077611014056, 28.801675353371326 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mizell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058077611014056, 28.801675353371326 ], [ -82.058081435443754, 28.802372853659165 ], [ -82.058081750576932, 28.802946015091614 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062233225938698, 28.80168869048947 ], [ -82.062230489680744, 28.802889603730989 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 28th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055981388597019, 28.806166542949995 ], [ -82.055999401415932, 28.806276889085051 ], [ -82.055983406838067, 28.806621043232344 ], [ -82.055937761133876, 28.80695469395031 ], [ -82.055971455256056, 28.807126878035717 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 27th Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058016826806238, 28.805382218081053 ], [ -82.058030364733199, 28.805512849795583 ], [ -82.058030508464611, 28.805774466611393 ], [ -82.058032096268889, 28.806180815241188 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 519A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055971455256056, 28.807126878035717 ], [ -82.054963377070067, 28.807127286392273 ], [ -82.054413516418762, 28.807127505959379 ], [ -82.054144695233816, 28.807130303178635 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Church Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068471347818146, 28.79985977725163 ], [ -82.068467033036995, 28.799302218699179 ], [ -82.068461321817878, 28.798782132891052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Hubb Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066344343179395, 28.799855730342593 ], [ -82.066339883303527, 28.799401388063636 ], [ -82.066336454903279, 28.798329060238622 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067471974084185, 28.779813299611963 ], [ -82.067635914205468, 28.780381573554092 ], [ -82.067928874551839, 28.781397004218199 ], [ -82.068454923343722, 28.783206820907939 ], [ -82.068663455734807, 28.783931579921667 ], [ -82.06882934197202, 28.78451472027713 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069038199953141, 28.785229777624359 ], [ -82.069078764599794, 28.785365705955005 ], [ -82.069205173661842, 28.785834303471315 ], [ -82.069264424806278, 28.786049511229997 ], [ -82.06933552640902, 28.786306371836247 ], [ -82.069406680054357, 28.786646548342986 ], [ -82.06948178769639, 28.787000610282668 ], [ -82.06955298093051, 28.787396333037655 ], [ -82.069600500939643, 28.787746936806201 ], [ -82.06981030648376, 28.789177116435386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069978097766153, 28.79032505825694 ], [ -82.07003864956863, 28.790752972386631 ], [ -82.070229549259153, 28.792062959758965 ], [ -82.070315296931383, 28.792618490951181 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orange Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.072121430239008, 28.798658489439983 ], [ -82.072850573401752, 28.798664881386802 ], [ -82.073613212709873, 28.798655566459157 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orange Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.073642944184201, 28.798654486597563 ], [ -82.074250424700949, 28.798640862846579 ], [ -82.074620200851086, 28.798640128822463 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orange Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.073613212709873, 28.798655566459157 ], [ -82.073642944184201, 28.798654486597563 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orange Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074620200851086, 28.798640128822463 ], [ -82.075385710817088, 28.798637580477184 ], [ -82.075943546487991, 28.798641526478125 ], [ -82.076040150291078, 28.798654235873478 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orange Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076040150291078, 28.798654235873478 ], [ -82.077349001710232, 28.798644990483144 ], [ -82.077450431958184, 28.798655569385076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orange Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.077450431958184, 28.798655569385076 ], [ -82.07886071464894, 28.798656888166178 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lime Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.077436833532715, 28.799868040546166 ], [ -82.077450431958184, 28.798655569385076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lime Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.077450431958184, 28.798655569385076 ], [ -82.077471251923868, 28.797411187272804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lime Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.077471251923868, 28.797411187272804 ], [ -82.077484713317048, 28.797174623356916 ], [ -82.077495803427908, 28.796361040706795 ], [ -82.077493435802936, 28.796308952509531 ], [ -82.077473310925626, 28.796274621960976 ], [ -82.077441416996166, 28.796243940720998 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076055507539863, 28.799856055262335 ], [ -82.076054961516078, 28.799098796357018 ], [ -82.076040150291078, 28.798654235873478 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076040150291078, 28.798654235873478 ], [ -82.076025484330088, 28.798409623851661 ], [ -82.076015733633227, 28.79828200005845 ], [ -82.076035627965922, 28.797404017465531 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076071847188416, 28.797401338168431 ], [ -82.076050361303615, 28.796906792335914 ], [ -82.07602872129948, 28.796199533816338 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pine Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076035627965922, 28.797404017465531 ], [ -82.076071847188416, 28.797401338168431 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pine Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.077471251923868, 28.797411187272804 ], [ -82.07888151902209, 28.797416760292261 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Warnell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.073123115760865, 28.79652244073311 ], [ -82.074959930103844, 28.792647370477422 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Industrial Park Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07648972922334, 28.78936084105781 ], [ -82.07637041327871, 28.789302608548045 ], [ -82.076249311655019, 28.789249352280493 ], [ -82.076148402770386, 28.78921608169167 ], [ -82.076055061857986, 28.789185029206962 ], [ -82.075971822310663, 28.789169523295197 ], [ -82.075865883996144, 28.789158473836704 ], [ -82.075661593763058, 28.789158587205257 ], [ -82.074844430770341, 28.789159037590402 ], [ -82.072541270794602, 28.789161807099788 ], [ -82.07002310260772, 28.78916659306655 ], [ -82.06981030648376, 28.789177116435386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Warnell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070484960174355, 28.802240911929367 ], [ -82.070502667290498, 28.802166302428798 ], [ -82.070528379392897, 28.802093751473485 ], [ -82.070559169924991, 28.802031167521946 ], [ -82.071011259081601, 28.801055968086313 ], [ -82.071554590701155, 28.799873967258524 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Taylor Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070511686277371, 28.803510842860778 ], [ -82.069465025710656, 28.803517443759134 ], [ -82.068652120490015, 28.80352033346475 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magnolia Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062198844717187, 28.809486796887491 ], [ -82.063238688244923, 28.809492385978849 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 47th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030126305958859, 28.81986074670322 ], [ -82.030126979932319, 28.820127448453306 ], [ -82.030155847731208, 28.820821815196048 ], [ -82.030134537148527, 28.82150356858681 ], [ -82.030101214517302, 28.821955970179687 ], [ -82.030089417328568, 28.822484118607751 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 47th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030089417328568, 28.822484118607751 ], [ -82.030088347211233, 28.822927570332546 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 45th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032053468780774, 28.822535228947437 ], [ -82.031605443629104, 28.82245116564393 ], [ -82.030730362738126, 28.822498706133196 ], [ -82.030089417328568, 28.822484118607751 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 504", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032293091160767, 28.816150196203946 ], [ -82.03178657888985, 28.816141898635024 ], [ -82.031087174609908, 28.81613920989172 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 504", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031087174609908, 28.81613920989172 ], [ -82.03054419834443, 28.816142178479517 ], [ -82.030350671870167, 28.816140116855053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 504", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030350671870167, 28.816140116855053 ], [ -82.029225356768265, 28.816124577446864 ], [ -82.028004478498602, 28.816125355424408 ], [ -82.026974729314787, 28.816104517462154 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 507", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02705110063043, 28.804397302436151 ], [ -82.027023072359682, 28.8088977438541 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 508", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033270685257207, 28.808906832482041 ], [ -82.032850832548348, 28.808921243537053 ], [ -82.03223599910929, 28.808939133059795 ], [ -82.031803747979083, 28.808946545424767 ], [ -82.031114881473528, 28.80892377788329 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 508", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031114881473528, 28.80892377788329 ], [ -82.030430032874051, 28.808896214672746 ], [ -82.028567633969146, 28.808912886798879 ], [ -82.027023072359682, 28.8088977438541 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 37th Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037348715115044, 28.810651837921736 ], [ -82.036112785217796, 28.810618851122225 ], [ -82.035299579225907, 28.810641042747893 ], [ -82.035243431515568, 28.810663040088222 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 32nd Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028892220680689, 28.803812776135484 ], [ -82.028073482948471, 28.803823794383231 ], [ -82.027570431810261, 28.803820279551303 ], [ -82.027056767316139, 28.803815077587739 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 510", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037312907539558, 28.807115497891957 ], [ -82.037279379478846, 28.807107070353183 ], [ -82.03698245222391, 28.807136677527275 ], [ -82.035947951007913, 28.807109532450333 ], [ -82.035696512691871, 28.807113816018571 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 510", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035696512691871, 28.807113816018571 ], [ -82.035267867093339, 28.807105489592054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 503E", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016698598347432, 28.79504909530543 ], [ -82.016698562654923, 28.794812644201457 ], [ -82.016687643954157, 28.794783811172898 ], [ -82.01666363523438, 28.79476074546103 ], [ -82.016229355771358, 28.794760795761132 ], [ -82.015042176804045, 28.794749392772985 ], [ -82.013700054521394, 28.794749527595993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heritage Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01859192048434, 28.833847199967437 ], [ -82.018577840410387, 28.833944435411755 ], [ -82.018554355504847, 28.83400029767947 ], [ -82.01851912291211, 28.834054091598563 ], [ -82.018486238568315, 28.834105816207508 ], [ -82.018451005504446, 28.83415133594681 ], [ -82.018420467606092, 28.834190647184236 ], [ -82.018385233105292, 28.834234097914603 ], [ -82.018342949562978, 28.834277549556127 ], [ -82.018298315253318, 28.834314792711435 ], [ -82.018251333289086, 28.834352037059073 ], [ -82.018192603628052, 28.834393422699048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heritage Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018192603628052, 28.834393422699048 ], [ -82.018103334072848, 28.834463774520842 ], [ -82.018051653687152, 28.834513431547265 ], [ -82.017999973947838, 28.834567228340919 ], [ -82.017952994552019, 28.834627230586133 ], [ -82.01792011113271, 28.834687231018862 ], [ -82.017891926692812, 28.834745160951641 ], [ -82.017866091904438, 28.834803091481948 ], [ -82.017840256054399, 28.83485481503304 ], [ -82.017809724927631, 28.834925159192789 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heritage Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017809724927631, 28.834925159192789 ], [ -82.01779563539705, 28.834970676077361 ], [ -82.017786244885414, 28.835014122472497 ], [ -82.017781553404262, 28.835061706255189 ], [ -82.01777923425584, 28.835245831427159 ], [ -82.017783970019366, 28.835458918870973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heritage Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017783970019366, 28.835458918870973 ], [ -82.017781706133064, 28.835988541161608 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heritage Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017781706133064, 28.835988541161608 ], [ -82.017779380783466, 28.836129220206942 ], [ -82.017772416027469, 28.836631946159262 ], [ -82.017763137818065, 28.837360174292311 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017094004747364, 28.838451595909135 ], [ -82.017320887464422, 28.838596235076 ], [ -82.017421853615218, 28.838696671948767 ], [ -82.017473925929025, 28.8387674586996 ], [ -82.0175064719799, 28.838828483093945 ], [ -82.017540644043493, 28.838900084120354 ], [ -82.017571563472316, 28.838977380003392 ], [ -82.017591903713424, 28.839038402290214 ], [ -82.017600853217559, 28.839077457530255 ], [ -82.01761305862108, 28.839149058575963 ], [ -82.017620381311019, 28.839203573243836 ], [ -82.017621194221235, 28.839261340641194 ], [ -82.017605734101423, 28.839351655387315 ], [ -82.017529715973865, 28.839539156152867 ], [ -82.017474023905763, 28.839682999834992 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grove Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999287758925433, 28.815569765414612 ], [ -81.998668228457419, 28.815250750948792 ], [ -81.998484149199228, 28.815163588337189 ], [ -81.99840101614889, 28.815135695072875 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grove Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99840101614889, 28.815135695072875 ], [ -81.998319864343955, 28.815120004630977 ], [ -81.998240691742069, 28.815114774653537 ], [ -81.998034840114016, 28.815102567857597 ], [ -81.997650848194596, 28.815090360293159 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grove Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997650848194596, 28.815090360293159 ], [ -81.997490523571258, 28.815085127455212 ], [ -81.996657219440891, 28.815050244179385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grove Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996657219440891, 28.815050244179385 ], [ -81.995909027772313, 28.815013615186974 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grove Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99678391345924, 28.814558659587117 ], [ -81.996696817873669, 28.814692885113935 ], [ -81.996686919583496, 28.814731234863881 ], [ -81.996657219440891, 28.815050244179385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Quail Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995806052693581, 28.816172852525092 ], [ -81.995909027772313, 28.815013615186974 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Quail Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995909027772313, 28.815013615186974 ], [ -81.995964477813473, 28.814373854377923 ], [ -81.995964480245647, 28.81431632846898 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "First Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044613788252008, 28.85207865258517 ], [ -82.044613513776525, 28.851428701740705 ], [ -82.044615793716517, 28.850823417707101 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045417687811465, 28.848987987456049 ], [ -82.045476774883667, 28.848385402096326 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045376507601603, 28.848364384565166 ], [ -82.045417687811465, 28.848987987456049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045354759302541, 28.847285590068363 ], [ -82.045357276839482, 28.847754682472214 ], [ -82.045376507601603, 28.848364384565166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045476774883667, 28.848385402096326 ], [ -82.045493746722059, 28.847279427254065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045553115677635, 28.841262991963806 ], [ -82.045553340280819, 28.841211101159868 ], [ -82.045552841712492, 28.840054529601051 ], [ -82.045553761054919, 28.839919309657986 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045402090755431, 28.844519552019342 ], [ -82.045362453854793, 28.846135210259 ], [ -82.045361537237127, 28.846540015513487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045414611689111, 28.841266639938492 ], [ -82.045413031889268, 28.841827984997625 ], [ -82.045410987554405, 28.842660500205927 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045557091620779, 28.839220581378026 ], [ -82.045575491224611, 28.839137381698404 ], [ -82.045575293613439, 28.838676783145822 ], [ -82.045589077626403, 28.838579383589135 ], [ -82.045607483223165, 28.838510388908372 ], [ -82.045632807051319, 28.838453567646674 ], [ -82.045662743704781, 28.838404859286488 ], [ -82.045706502805189, 28.838348030062591 ], [ -82.045752572678609, 28.838305404163645 ], [ -82.045807862076003, 28.838264805357614 ], [ -82.045874676251088, 28.838232317115256 ], [ -82.0459368836935, 28.838205919149058 ], [ -82.046006009526621, 28.838189663465375 ], [ -82.04607744443004, 28.838183551603418 ], [ -82.046159825593463, 28.838179465304648 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045557091620779, 28.839220581378026 ], [ -82.045540868144414, 28.839005503964401 ], [ -82.045542836906975, 28.83822836920524 ], [ -82.045540424844049, 28.837976766307413 ], [ -82.045538035373866, 28.837779946944028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045538035373866, 28.837779946944028 ], [ -82.045526922129994, 28.837394933649399 ], [ -82.045522178538832, 28.837078398790947 ], [ -82.045524285511988, 28.836621857907996 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045406769306553, 28.836640159573182 ], [ -82.04540170347947, 28.836915606653925 ], [ -82.045401783668183, 28.837102281272859 ], [ -82.045404178966649, 28.837313303867916 ], [ -82.045404229523882, 28.837430989916687 ], [ -82.045408910160774, 28.837599402114027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045443315854527, 28.835885330744265 ], [ -82.045431635203201, 28.836188682085897 ], [ -82.045420940448935, 28.836432808369899 ], [ -82.045406769306553, 28.836640159573182 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bushnell Plz", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112313151663074, 28.663790595395266 ], [ -82.11226377023641, 28.663795679162135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037002799593139, 28.931103418275519 ], [ -82.036981252917613, 28.931929821029431 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036980300073296, 28.931982499030177 ], [ -82.036974129209881, 28.932323677996379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Westwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117730831680134, 28.664910934782625 ], [ -82.117729560168343, 28.666742240928045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 12th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.082730393689658, 28.907044153476704 ], [ -82.082726522835586, 28.907338354139934 ], [ -82.082751209820529, 28.907430388667343 ], [ -82.082778243798302, 28.907897841156309 ], [ -82.082794769162788, 28.908044027457287 ], [ -82.082827790520255, 28.908300303693689 ], [ -82.082893608087772, 28.908525874578675 ], [ -82.082879341079021, 28.908641397983885 ], [ -82.082865131439647, 28.908830920477634 ], [ -82.082857039430138, 28.90897351350381 ], [ -82.082824266646227, 28.909031288603533 ], [ -82.082803801409966, 28.909094472666844 ], [ -82.082799749461657, 28.909157647610634 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 13th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07055446934605, 28.776080596328736 ], [ -82.070281079238327, 28.776070616769115 ], [ -82.069295521376375, 28.776077191422949 ], [ -82.069171463285556, 28.776076849989732 ], [ -82.069051976490883, 28.776041286997458 ], [ -82.068954559468807, 28.776025144115408 ], [ -82.068212054218236, 28.776020658368495 ], [ -82.067758550139246, 28.776009144650022 ], [ -82.06659151589885, 28.776038053953993 ], [ -82.066501927468622, 28.776052265668007 ], [ -82.066396273411144, 28.776087940353449 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 16th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067471974084185, 28.779813299611963 ], [ -82.067582235310496, 28.779790575438732 ], [ -82.069001213706713, 28.779782188153135 ], [ -82.07045307805295, 28.779751883394056 ], [ -82.071226828177444, 28.779715859059039 ], [ -82.071864592706518, 28.77971228681275 ], [ -82.072390236683034, 28.779702293281883 ], [ -82.073231995002828, 28.77967593753792 ], [ -82.0742060502198, 28.779659513222633 ], [ -82.07458060561359, 28.779658330253501 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 17th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074546254774305, 28.774446486689133 ], [ -82.074529803885369, 28.77446929354122 ], [ -82.074518060768298, 28.774496243959291 ], [ -82.074509848992804, 28.774526302728898 ], [ -82.074503929931652, 28.774576243650394 ], [ -82.074526551533268, 28.775380996550858 ], [ -82.074540470222914, 28.775894037687056 ], [ -82.074540106019541, 28.776357395226235 ], [ -82.074551557173947, 28.776958130842068 ], [ -82.074555340544492, 28.777467440000855 ], [ -82.074567075535924, 28.778500210526971 ], [ -82.074586989954469, 28.779421457654834 ], [ -82.07458060561359, 28.779658330253501 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 17th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07458060561359, 28.779658330253501 ], [ -82.074597040521425, 28.780896017821078 ], [ -82.074606344655464, 28.781480587446175 ], [ -82.074637468399189, 28.78224602195888 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 69th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055902658433141, 28.857469763904444 ], [ -82.054858007140183, 28.857469330467346 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 69th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054858007140183, 28.857469330467346 ], [ -82.053714358719546, 28.857466724481878 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 7th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091236254042428, 28.872560744195912 ], [ -82.091212857764447, 28.872687487183448 ], [ -82.091139515294529, 28.872819433885756 ], [ -82.090978104003185, 28.873036786427125 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 8th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.089693190065617, 28.871961762828455 ], [ -82.089675876333558, 28.872331606717513 ], [ -82.08967618637935, 28.872693681864995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 135th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.265306845606872, 28.959681418436876 ], [ -82.265298946667329, 28.959726124095958 ], [ -82.265279155908246, 28.959782884256047 ], [ -82.265249976106503, 28.959836569908155 ], [ -82.265212185366892, 28.959886148202195 ], [ -82.265166758053326, 28.959929896556069 ], [ -82.264302632479001, 28.960441065555493 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 39th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141233414500164, 28.81311044020153 ], [ -82.141931680615457, 28.813162543670384 ], [ -82.141993323447196, 28.813153674475629 ], [ -82.142109924839005, 28.813121265167215 ], [ -82.142416412130103, 28.813034355772718 ], [ -82.142828002299026, 28.813038326492251 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 3rd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054716223596216, 28.612579196122429 ], [ -82.05438085618438, 28.612574436453428 ], [ -82.054020548076181, 28.612574578227932 ], [ -82.053657465768723, 28.612574720125451 ], [ -82.053496523568469, 28.612572879676708 ], [ -82.053340944056671, 28.612573845946919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 3rd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053340944056671, 28.612573845946919 ], [ -82.051963486337385, 28.612574213407118 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 3rd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051963486337385, 28.612574213407118 ], [ -82.050599488083463, 28.612580095989692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 9th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121167210666229, 28.791021354298373 ], [ -82.121219830719255, 28.791090918882585 ], [ -82.121542829176065, 28.791332659191902 ], [ -82.121501477174135, 28.791399925537817 ], [ -82.121405632282332, 28.791486449839837 ], [ -82.121329380555139, 28.791544143996948 ], [ -82.121274935133229, 28.791603738778782 ], [ -82.121205236644954, 28.791672952236997 ], [ -82.121135547928475, 28.791749849729868 ], [ -82.121041998982122, 28.79193625483499 ], [ -82.120916956350186, 28.792123398003458 ], [ -82.120863423531105, 28.792235174246038 ], [ -82.120821345381998, 28.79229605988083 ], [ -82.120767789005853, 28.792407109744051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orange Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046058706392699, 28.864619016032659 ], [ -82.046054357822726, 28.864204450717715 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orange Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046054357822726, 28.864204450717715 ], [ -82.046056377867004, 28.863510847765664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orange Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046056377867004, 28.863510847765664 ], [ -82.046064214693843, 28.863232922188157 ], [ -82.04606146315551, 28.863004043958231 ], [ -82.046061131961849, 28.862247346303818 ], [ -82.046061085093442, 28.86213757930398 ], [ -82.046058391650817, 28.862051167513204 ], [ -82.046050399013197, 28.861974099052421 ], [ -82.046034461645434, 28.861927394872414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041276350675531, 28.863154128833376 ], [ -82.040821614482937, 28.862980944265892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040821614482937, 28.862980944265892 ], [ -82.040160228694532, 28.862750998986908 ], [ -82.040100966250023, 28.86273101226319 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Adeline Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960928558272258, 28.874807424816471 ], [ -81.961020171412898, 28.874876437869716 ], [ -81.96121666084828, 28.875017649137522 ], [ -81.961450520372836, 28.875181159522342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Adeline Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961450520372836, 28.875181159522342 ], [ -81.961492707609835, 28.875218317608365 ], [ -81.961725106831523, 28.875388423825463 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Saffron Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962233550280558, 28.874226198538057 ], [ -81.962332460083559, 28.874124339243931 ], [ -81.962732528577988, 28.873760536096185 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Saffron Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961450520372836, 28.875181159522342 ], [ -81.961525300593834, 28.875120686119576 ], [ -81.961548218976489, 28.875096282702728 ], [ -81.961697812981342, 28.874880878239885 ], [ -81.961878746220393, 28.874637361352086 ], [ -81.96199270238742, 28.874493403353977 ], [ -81.962233550280558, 28.874226198538057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lystra Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961706640269028, 28.873837606285409 ], [ -81.962233550280558, 28.874226198538057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mandalay Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959399327381263, 28.874618482876667 ], [ -81.959447587785064, 28.874542083281462 ], [ -81.95950711283983, 28.87443738364594 ], [ -81.959545723404318, 28.874372302290624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grovewood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959888358526015, 28.873862973277227 ], [ -81.960127015459278, 28.874003962337756 ], [ -81.96046065874161, 28.874225023124005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mandalay Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959545723404318, 28.874372302290624 ], [ -81.959674411492458, 28.874185549071878 ], [ -81.959888358526015, 28.873862973277227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beaumont Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958178231786107, 28.872751606255552 ], [ -81.958197545158583, 28.872699254358157 ], [ -81.9582522511093, 28.872590309316973 ], [ -81.958316598846352, 28.872484196865436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grovewood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958178231786107, 28.872751606255552 ], [ -81.958306825337303, 28.872801173624239 ], [ -81.958379152208195, 28.872846479915605 ], [ -81.958690957001423, 28.873058839244525 ], [ -81.959295286175944, 28.873449589019611 ], [ -81.959705133630791, 28.873732729715311 ], [ -81.959888358526015, 28.873862973277227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flossmoor Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957964164794504, 28.873362858395797 ], [ -81.958050957768648, 28.873416658248157 ], [ -81.95817471539624, 28.873497358174159 ], [ -81.958537958160292, 28.873728129989232 ], [ -81.958981562529203, 28.874024019288182 ], [ -81.959436419901991, 28.874322741039002 ], [ -81.959545723404318, 28.874372302290624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beaumont Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957964164794504, 28.873362858395797 ], [ -81.957975453190855, 28.873279371881011 ], [ -81.958004441585331, 28.873156268090803 ], [ -81.958096178676442, 28.872910070120039 ], [ -81.958178231786107, 28.872751606255552 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Seminole Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112667628470632, 28.657546056138688 ], [ -82.111641178190268, 28.657529082921361 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Seminole Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111641178190268, 28.657529082921361 ], [ -82.111266191223635, 28.657525108411047 ], [ -82.110603438361437, 28.657525646983437 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 476B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.207712490636567, 28.601690272683634 ], [ -82.207541539011089, 28.601709371477174 ], [ -82.207350325984578, 28.601732386381869 ], [ -82.206921652144942, 28.601786713195956 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.2066468581001, 28.601816736230148 ], [ -82.206492483004638, 28.601819066542571 ], [ -82.206379976316157, 28.601824604212347 ], [ -82.206272484381429, 28.601832582239364 ], [ -82.206174032198888, 28.601842281693632 ], [ -82.206088542726818, 28.601840501749987 ], [ -82.206019624263106, 28.601828839528618 ], [ -82.20596029208744, 28.60181182092489 ], [ -82.205905517792118, 28.601793116149963 ], [ -82.205859862601557, 28.601771715815172 ], [ -82.205823327646513, 28.601750301680529 ], [ -82.205786783275002, 28.601723518631044 ], [ -82.20573331090668, 28.601683944318804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.20573331090668, 28.601683944318804 ], [ -82.205744879692858, 28.601789929155011 ], [ -82.205739331526246, 28.601829663928953 ], [ -82.205725975396334, 28.60186177219596 ], [ -82.205702660993921, 28.601891985252003 ], [ -82.205669187974905, 28.601935572780615 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 673", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.19298587478329, 28.600531694194416 ], [ -82.193769571013291, 28.60071737049055 ], [ -82.194733403503932, 28.600962904122916 ], [ -82.195709425317816, 28.60121914850405 ], [ -82.197140603319227, 28.601592811575721 ], [ -82.197583557700469, 28.601690931686452 ], [ -82.198025629580556, 28.601792913642743 ], [ -82.198178057634451, 28.601830127296562 ], [ -82.198318371025479, 28.601869650361646 ], [ -82.198873594517508, 28.602041500721384 ], [ -82.199234763721407, 28.602138762999861 ], [ -82.199498936407323, 28.602213246105332 ], [ -82.199620200846169, 28.602249739496205 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Clarke Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04080285960255, 28.872803606281099 ], [ -82.041017693137093, 28.872795494485651 ], [ -82.042250780728693, 28.872797231874042 ], [ -82.04380601208517, 28.872790204865634 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Clarke Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039458979799932, 28.872803999880066 ], [ -82.039752095350323, 28.872803412591711 ], [ -82.040229196521636, 28.872805788069552 ], [ -82.04080285960255, 28.872803606281099 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 121", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020544437751511, 28.898332087236472 ], [ -82.020546280497058, 28.898482066206903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 128D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027775947168081, 28.891840246696582 ], [ -82.027776438906244, 28.893713729292344 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 125B 2", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018978586837022, 28.891361493829365 ], [ -82.018650419389161, 28.891585516087972 ], [ -82.018417991126825, 28.891798282267004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 203", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041217596806177, 28.938335101384684 ], [ -82.041214324477707, 28.937018387420562 ], [ -82.041204447716638, 28.935662346018088 ], [ -82.04120307944774, 28.935596848031444 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 223", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070269474372864, 28.908135831117118 ], [ -82.070272532872423, 28.908256356526639 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 222A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045934708106145, 28.901061822689883 ], [ -82.045907342882373, 28.901077890098612 ], [ -82.045847647080109, 28.901104181479599 ], [ -82.045797471901295, 28.901114177743306 ], [ -82.045726577932058, 28.901119066704922 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 34th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046908678032182, 28.898303829307469 ], [ -82.046980857479966, 28.898348679394314 ], [ -82.04703685977627, 28.898411052243095 ], [ -82.047085412895527, 28.898502982426958 ], [ -82.047152714363691, 28.89879850074994 ], [ -82.047145302283965, 28.898913437189918 ], [ -82.047104315606788, 28.899054655641493 ], [ -82.047033472955917, 28.899182748711159 ], [ -82.046940275070995, 28.899392944153195 ], [ -82.046791169782963, 28.899754215186029 ], [ -82.046645743877079, 28.900000549114949 ], [ -82.046586077908003, 28.900092518208865 ], [ -82.046477914899981, 28.900220622802824 ], [ -82.046354822129175, 28.900338881989526 ], [ -82.046306343404311, 28.900414426228924 ], [ -82.046239235915834, 28.900555652348142 ], [ -82.046194504554236, 28.900670600445405 ], [ -82.046164694206666, 28.900769125260698 ], [ -82.046108775923784, 28.900900496230943 ], [ -82.046019261113045, 28.901005608998055 ], [ -82.045934708106145, 28.901061822689883 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 97th Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050034816373028, 28.898291777211533 ], [ -82.0495196415457, 28.898302440045985 ], [ -82.049273104685739, 28.898305520460521 ], [ -82.048902454734815, 28.898320617578641 ], [ -82.048591317757243, 28.898296077073677 ], [ -82.047989396816121, 28.898282039243149 ], [ -82.047805775889231, 28.898298562535192 ], [ -82.047493135924924, 28.89828960000909 ], [ -82.047169027612597, 28.8982990638541 ], [ -82.046908678032182, 28.898303829307469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Industrial Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050051944760568, 28.856250416100625 ], [ -82.05000958935436, 28.856219733408867 ], [ -82.049964740295579, 28.856184668221402 ], [ -82.049860082239448, 28.856079458062375 ], [ -82.049810239713466, 28.856015889050123 ], [ -82.049767865877641, 28.855950123798973 ], [ -82.049730469075826, 28.855869007627071 ], [ -82.049690567310492, 28.855757195964969 ], [ -82.049675572317483, 28.855651953942917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Industrial Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049675572317483, 28.855651953942917 ], [ -82.049670572611618, 28.85561248626551 ], [ -82.049670539586359, 28.855542321295861 ], [ -82.049675478390682, 28.85545241841853 ], [ -82.049666976203497, 28.854856919625117 ], [ -82.049655751551086, 28.854643932956868 ], [ -82.049625070908391, 28.854448091712143 ], [ -82.049586052215361, 28.854262044383223 ], [ -82.049524689481913, 28.853870360923981 ], [ -82.049524216184523, 28.852861716366483 ], [ -82.049524116243674, 28.852648725594289 ], [ -82.049529639282653, 28.852565485991946 ], [ -82.049540727976108, 28.85249203708484 ], [ -82.049554604206591, 28.852435723736129 ], [ -82.0495908675626, 28.852375967196195 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Industrial Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0495908675626, 28.852375967196195 ], [ -82.049704081429468, 28.852319891174229 ], [ -82.049793686806396, 28.852298539826972 ], [ -82.049882664972699, 28.85228381878369 ], [ -82.049982768702506, 28.852276437473538 ], [ -82.050088437984087, 28.852276398810677 ], [ -82.052110062610311, 28.852282988845456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lemon Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046982570134617, 28.864122429703446 ], [ -82.047017042876675, 28.86408038045596 ], [ -82.047035596242551, 28.864040670031102 ], [ -82.047046189387046, 28.863998627181331 ], [ -82.047046160236903, 28.86393323367199 ], [ -82.047045766734612, 28.86305275458983 ], [ -82.047053311422204, 28.862120892799311 ], [ -82.047055921382821, 28.862022802497155 ], [ -82.04704737349725, 28.861971032169173 ], [ -82.047036213869333, 28.861939763072375 ], [ -82.047018730069098, 28.861913047367008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 105th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119998604895656, 28.908887856833275 ], [ -82.120273457971535, 28.908889703489148 ], [ -82.120508665180623, 28.90889589334952 ], [ -82.120692959736758, 28.908910663922832 ], [ -82.120959664534027, 28.908895491035306 ], [ -82.121219123346705, 28.908905926737205 ], [ -82.121405846268402, 28.908920694159665 ], [ -82.121641036698577, 28.908914082999637 ], [ -82.122024106260369, 28.908881733747258 ], [ -82.123365002362618, 28.908897587705443 ], [ -82.12420637784976, 28.908892550238946 ], [ -82.124572509913136, 28.908890080669359 ], [ -82.124698596877764, 28.908892097567126 ], [ -82.124795582341491, 28.908887741208201 ], [ -82.12484407761329, 28.908887697379306 ], [ -82.124873182197831, 28.908894070504626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 107th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124962363606286, 28.912512468519221 ], [ -82.125001179893133, 28.912529500469308 ], [ -82.125056955670786, 28.912533714977915 ], [ -82.125115159259764, 28.912540061145197 ], [ -82.125178207250187, 28.912542136756556 ], [ -82.125493432405079, 28.912541843848114 ], [ -82.126174776661472, 28.912517742390047 ], [ -82.126523964651085, 28.912530218953066 ], [ -82.127028329656099, 28.912531878467483 ], [ -82.127220794489915, 28.912533251374533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 15th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128337726432164, 28.912528510578486 ], [ -82.128376561009887, 28.912558342388611 ], [ -82.128400858155246, 28.912598855813545 ], [ -82.128408283006053, 28.912720460921168 ], [ -82.128406893402854, 28.913565341874218 ], [ -82.128407232376702, 28.913842701424436 ], [ -82.128397726798241, 28.91400059120161 ], [ -82.128368780070232, 28.914124364728266 ], [ -82.12837220047588, 28.914358968824814 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 13th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124873182197831, 28.908894070504626 ], [ -82.124914452819681, 28.908936702852802 ], [ -82.124936326171465, 28.908979354000149 ], [ -82.124917061625254, 28.909092449210753 ], [ -82.124907542023692, 28.909241804074863 ], [ -82.124939424495565, 28.909544738250055 ], [ -82.124913576666458, 28.910236027441464 ], [ -82.124916846390548, 28.910944359294579 ], [ -82.124929170401472, 28.911112898395331 ], [ -82.124949050031205, 28.911516117385492 ], [ -82.124918597600143, 28.912412231516242 ], [ -82.124921065570305, 28.912450631799906 ], [ -82.124938082051884, 28.912484754405718 ], [ -82.124962363606286, 28.912512468519221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 245 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133373973423687, 28.949146136826535 ], [ -82.133399232436929, 28.949106535664789 ], [ -82.133427316900921, 28.949076825311227 ], [ -82.133475117719584, 28.949071831736717 ], [ -82.136368573597977, 28.949064181116203 ], [ -82.137611835899804, 28.949055312969261 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 134th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.082743776077734, 28.952765447957244 ], [ -82.081576933450407, 28.952763689267016 ], [ -82.078505571904728, 28.952767971812822 ], [ -82.078410205426124, 28.952768027068114 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 226", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107426922214387, 28.900037987904192 ], [ -82.108218215642211, 28.899989332456801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 18th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.132626254125086, 28.865441557695366 ], [ -82.132591116290612, 28.865534696880029 ], [ -82.132643113016925, 28.865762235992548 ], [ -82.133018758900874, 28.867286717744623 ], [ -82.13331881066236, 28.868505062450314 ], [ -82.134121955159671, 28.871624314938316 ], [ -82.134344101953502, 28.872559279766154 ], [ -82.134452829997073, 28.873028835093976 ], [ -82.134682070609969, 28.873992757723205 ], [ -82.134816782888166, 28.87455952941712 ], [ -82.134847454640266, 28.874648464701803 ], [ -82.134938200297015, 28.87484130939103 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 22nd Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141072965210398, 28.865977093104874 ], [ -82.140660016944821, 28.866928160836796 ], [ -82.140571569426257, 28.867162655807377 ], [ -82.14055719379698, 28.867475209456614 ], [ -82.140661134248674, 28.867761594483291 ], [ -82.140868301037813, 28.867800446081397 ], [ -82.141001445506276, 28.867800308450864 ], [ -82.141341793121924, 28.867865065509413 ], [ -82.141489890131155, 28.867982113351079 ], [ -82.141771308280866, 28.868229245094216 ], [ -82.142082598919629, 28.868684703103487 ], [ -82.142156584058583, 28.8686976492687 ], [ -82.142363982970267, 28.868905789622353 ], [ -82.143155414602134, 28.87011314655669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 68th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178844932188881, 28.858188568792723 ], [ -82.178838213500399, 28.858103702822138 ], [ -82.178838147727859, 28.858065123268535 ], [ -82.178842474474862, 28.858032325263473 ], [ -82.178851196000565, 28.858007237018764 ], [ -82.178872948108733, 28.857987234963716 ], [ -82.178975643676651, 28.857944742550025 ], [ -82.179057334448245, 28.857912735502087 ], [ -82.179772122461515, 28.8576673613338 ], [ -82.181062744164748, 28.857158320218584 ], [ -82.181374109699334, 28.857049399982508 ], [ -82.181694467374456, 28.856932208206651 ], [ -82.182024221135777, 28.856806285915376 ], [ -82.182357698085511, 28.856688263756059 ], [ -82.182694706204913, 28.856578489345907 ], [ -82.183035239833004, 28.85647661618297 ], [ -82.183378519240037, 28.85638333014268 ], [ -82.183538556133357, 28.856344954062703 ], [ -82.183799312497115, 28.856289595122753 ], [ -82.184062230880258, 28.856242828049439 ], [ -82.1843269208469, 28.856204652459439 ], [ -82.18459299196418, 28.85617506887462 ], [ -82.184860252216623, 28.856154421325186 ], [ -82.185104286729498, 28.856128084429237 ], [ -82.185391857021656, 28.856118648903532 ], [ -82.185563042956275, 28.856121428004009 ], [ -82.185738695084225, 28.8561326408723 ], [ -82.185949118372989, 28.856174788922342 ], [ -82.186109147340744, 28.856217005945567 ], [ -82.186264801063061, 28.856265017053239 ], [ -82.18638976828916, 28.856305354675662 ], [ -82.186593697232112, 28.856391877647649 ], [ -82.186784232241664, 28.856482150705624 ], [ -82.186976708382815, 28.856569891663511 ], [ -82.187164319271773, 28.856665546827873 ], [ -82.187346865895449, 28.85676842713692 ], [ -82.187523958190397, 28.85687819027736 ], [ -82.187695012167481, 28.856995523730223 ], [ -82.187881192315359, 28.857117319492385 ], [ -82.188183982867329, 28.857346447476438 ], [ -82.188208276628345, 28.857452506995589 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.199708283385888, 28.855573725337752 ], [ -82.199555254409091, 28.855617225378399 ], [ -82.19930862861051, 28.855694748990853 ], [ -82.198783318553637, 28.855845017367457 ], [ -82.198279647619273, 28.85599766294089 ], [ -82.197543547136149, 28.856206586902356 ], [ -82.197208750089672, 28.856292804504836 ], [ -82.196923746487101, 28.856359880531677 ], [ -82.196560173550338, 28.856443353903078 ], [ -82.196207528649808, 28.856511379326054 ], [ -82.195914020455263, 28.856567746235598 ], [ -82.195633134152587, 28.856615975370129 ], [ -82.19522182857034, 28.856678696282515 ], [ -82.19496796698192, 28.85671146023466 ], [ -82.194647883470395, 28.856750894935843 ], [ -82.194286412872145, 28.856788065784393 ], [ -82.193313594178903, 28.856869529901914 ], [ -82.192993831263991, 28.85689887883046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178054348462211, 28.858442306452723 ], [ -82.178729146035835, 28.858391264606059 ], [ -82.179311919918646, 28.858346126868444 ], [ -82.179866215428561, 28.858302954479321 ], [ -82.180409549467385, 28.858257863502178 ], [ -82.180939748359435, 28.858220506170237 ], [ -82.181434888667582, 28.858183193753867 ], [ -82.181847036626564, 28.858151144983406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.207093401745865, 28.853817428278415 ], [ -82.206815962917801, 28.853856503512695 ], [ -82.206316844022211, 28.85394170174558 ], [ -82.205854363199521, 28.854009455993349 ], [ -82.205366512353564, 28.854087183285547 ], [ -82.204971730201592, 28.854154833551164 ], [ -82.204670012943623, 28.854212407612064 ], [ -82.204317539940703, 28.854279991964056 ], [ -82.203965096476125, 28.854362475022555 ], [ -82.203541316103099, 28.854460461323441 ], [ -82.203158730239295, 28.854564842210358 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165338542097786, 28.860280109843508 ], [ -82.165538904491498, 28.860196196524544 ], [ -82.165825754701316, 28.86006853364859 ], [ -82.166289965275183, 28.859863492240038 ], [ -82.166732279833042, 28.859668120888728 ], [ -82.167027904849149, 28.859550090241676 ], [ -82.167275377775596, 28.859466838961389 ], [ -82.167492195953031, 28.859397127175122 ], [ -82.167737507631287, 28.859333167096541 ], [ -82.167971876644387, 28.859276936620617 ], [ -82.168236927450153, 28.859224524949376 ], [ -82.168449419600435, 28.859191468438034 ], [ -82.168703546260886, 28.859158358816714 ], [ -82.169203075201196, 28.85911915579084 ], [ -82.169661471985933, 28.859083552116989 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107430495199566, 28.877364736996686 ], [ -82.109430242587408, 28.877732435599068 ], [ -82.112963812743857, 28.878383388703707 ], [ -82.115317833785141, 28.878808712893989 ], [ -82.116284157056924, 28.878987068575373 ], [ -82.119936274547712, 28.879652900741419 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103351174879251, 28.876428582144392 ], [ -82.103221863673852, 28.876401783949685 ], [ -82.102972652001796, 28.876358524011987 ], [ -82.101479734106945, 28.876086542693049 ], [ -82.101018924698863, 28.875995849947206 ], [ -82.100595727630278, 28.875909267490957 ], [ -82.100245405857493, 28.875826766018346 ], [ -82.099916234114175, 28.875738042036311 ], [ -82.099319006719824, 28.875560546926611 ], [ -82.098879320719959, 28.87543258983542 ], [ -82.098220966064133, 28.875238582575793 ], [ -82.097068853371269, 28.874902165107631 ], [ -82.096175362453536, 28.874617280001708 ], [ -82.095373573942581, 28.874359221214512 ], [ -82.094280235768181, 28.874012392713819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093426944926293, 28.873979879104716 ], [ -82.094461447774378, 28.874252271481396 ], [ -82.09496694785598, 28.874388471100517 ], [ -82.095761657465729, 28.874617572552257 ], [ -82.098670172415012, 28.875492743263923 ], [ -82.099787030801181, 28.875822965989254 ], [ -82.100821585159409, 28.876113929198606 ], [ -82.101446995587736, 28.876260362831449 ], [ -82.102015962850672, 28.876377867667877 ], [ -82.10335284409669, 28.876621554893038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.094280235768181, 28.874012392713819 ], [ -82.093106977910665, 28.873655267070692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093106977910665, 28.873655267070692 ], [ -82.092529874102809, 28.873488330884776 ], [ -82.092180133701419, 28.873382533129575 ], [ -82.091775723099758, 28.873255046733682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093090725728715, 28.873882867341553 ], [ -82.09318712528291, 28.873911767759047 ], [ -82.09334700180446, 28.873955105494801 ], [ -82.093426944926293, 28.873979879104716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091684705319949, 28.873457609806568 ], [ -82.092190217947163, 28.873616581309459 ], [ -82.093090725728715, 28.873882867341553 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090053553541921, 28.872942099949206 ], [ -82.090232834232239, 28.873000817265112 ], [ -82.090567890908588, 28.873119563465295 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08683908026795, 28.871958186851835 ], [ -82.088154243365821, 28.872351741723151 ], [ -82.089322469117803, 28.872700122830985 ], [ -82.090053553541921, 28.872942099949206 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093106977910665, 28.873655267070692 ], [ -82.093146655499709, 28.873598716120629 ], [ -82.093171559142078, 28.873544267735205 ], [ -82.093183454365345, 28.873500331958635 ], [ -82.093193186404889, 28.873463083714757 ], [ -82.093203999244068, 28.873423923654823 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093103507896188, 28.874233517898777 ], [ -82.093091292667665, 28.874161713968334 ], [ -82.093086217929766, 28.874102184549965 ], [ -82.093088514513099, 28.874040112806437 ], [ -82.09308844850834, 28.873965627926772 ], [ -82.093090725728715, 28.873882867341553 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.080803908632788, 28.868025875001361 ], [ -82.080804430839962, 28.868026472917041 ], [ -82.081251144469633, 28.86853082251184 ], [ -82.081848478267375, 28.86922147652793 ], [ -82.082137947174516, 28.869540542519111 ], [ -82.082450381569487, 28.869871716357988 ], [ -82.082638741098862, 28.870045366271739 ], [ -82.082923559668203, 28.870283612402385 ], [ -82.08327726296956, 28.870550102868812 ], [ -82.08355744270284, 28.870723695166948 ], [ -82.083966209375149, 28.870949739456005 ], [ -82.084377704939101, 28.871141837123957 ], [ -82.084712031247392, 28.871280640320204 ], [ -82.084969194015798, 28.871374230631485 ], [ -82.085487192628165, 28.871554942474333 ], [ -82.086431308040602, 28.871835599538116 ], [ -82.08683908026795, 28.871958186851835 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068275315910483, 28.853732753163328 ], [ -82.069015780443223, 28.854567100557393 ], [ -82.069700232388172, 28.85535475203859 ], [ -82.070600590954641, 28.856376666047844 ], [ -82.071372344734314, 28.857257208855408 ], [ -82.071647980199188, 28.857580344984026 ], [ -82.07211654594127, 28.858105431261656 ], [ -82.072934265307694, 28.859038471666477 ], [ -82.073940875152786, 28.860190774172249 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Gulf Atlantic Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044784898996753, 28.847287816737005 ], [ -82.045111548223176, 28.847336659648263 ], [ -82.045162516500312, 28.847352959245541 ], [ -82.04520422750258, 28.847381498944415 ], [ -82.045252888406978, 28.84741819407796 ], [ -82.045276068967766, 28.847450820098892 ], [ -82.045286106544268, 28.847482507551732 ], [ -82.045294221012668, 28.847556040954601 ], [ -82.045303970893343, 28.84769351388152 ], [ -82.045348217665335, 28.848238054048377 ], [ -82.045376507601603, 28.848364384565166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Gulf Atlantic Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044784898996753, 28.847287816737005 ], [ -82.045354759302541, 28.847285590068363 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Gulf Atlantic Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038881830211423, 28.846615481864383 ], [ -82.038380562755933, 28.84648265996287 ], [ -82.037980277721729, 28.846373474898112 ], [ -82.037248030262916, 28.846145688794945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243E 1", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139431524663252, 28.879096724141327 ], [ -82.13953778359668, 28.880119057898199 ], [ -82.139632936574642, 28.880893994455334 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 44th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16969242272279, 28.82329861885777 ], [ -82.169728684593522, 28.82325744098166 ], [ -82.169772756185537, 28.823232249377465 ], [ -82.16982981870953, 28.823218466469154 ], [ -82.170128109738613, 28.823149541593704 ], [ -82.17064689218067, 28.823039205275425 ], [ -82.171227966253312, 28.822940213276336 ], [ -82.173331878712446, 28.822656474741159 ], [ -82.174675684446768, 28.822478796493744 ], [ -82.175664098609559, 28.822358696305738 ], [ -82.175835346616125, 28.822353904069409 ], [ -82.17595469615469, 28.822346893464555 ], [ -82.176045508169665, 28.822344489999374 ], [ -82.176131123979971, 28.822337523954083 ], [ -82.176206373172548, 28.822337426142763 ], [ -82.176247882018686, 28.822332801996112 ], [ -82.176310140421478, 28.82232358067149 ], [ -82.176346463530578, 28.822321248778682 ], [ -82.176373333031989, 28.822316674319026 ], [ -82.176395746734542, 28.822309758758418 ], [ -82.176424271417204, 28.822300580379551 ], [ -82.176450204903077, 28.82229140717283 ], [ -82.176491686846077, 28.822270786023317 ], [ -82.176538326594056, 28.822231880153058 ], [ -82.176600490929033, 28.822165530286451 ], [ -82.17666779760647, 28.822071755349324 ], [ -82.17675060744719, 28.821939113227799 ], [ -82.176869616891395, 28.821731014586739 ], [ -82.176923902534739, 28.821609833658318 ], [ -82.176962712887928, 28.821543515910303 ], [ -82.177022268702956, 28.821470316245502 ], [ -82.177115497999537, 28.821362794890273 ], [ -82.177160004715631, 28.821324357179638 ], [ -82.177273574388011, 28.821241479045486 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 305", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179223490668022, 28.821740375867307 ], [ -82.179135645671138, 28.823083470659796 ], [ -82.17909761248437, 28.823637015334803 ], [ -82.179081557373337, 28.824222709799031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meadows Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113425276008783, 28.677895172515264 ], [ -82.114004404894189, 28.677898529240672 ], [ -82.11405012505432, 28.67789849193052 ], [ -82.114087132696866, 28.677894620667068 ], [ -82.114124136177907, 28.677886909977797 ], [ -82.114158944608164, 28.677861920570582 ], [ -82.114178503291143, 28.677829264177046 ], [ -82.114223792550135, 28.677431786360394 ], [ -82.11422158191165, 28.677401068343901 ], [ -82.114208481463933, 28.677366520024261 ], [ -82.114180150057393, 28.677339663289963 ], [ -82.11414093407933, 28.677314735817202 ], [ -82.114084315033764, 28.677303263110776 ], [ -82.113779513987282, 28.677303516740587 ], [ -82.113664135924353, 28.677313213715752 ], [ -82.11356083407513, 28.677385190273579 ], [ -82.113507506380557, 28.677430464004029 ], [ -82.113490135240582, 28.677472719287678 ], [ -82.113470591906434, 28.677518814892547 ], [ -82.113425276008783, 28.677895172515264 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meadows Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113425276008783, 28.677895172515264 ], [ -82.1134015917727, 28.678140951122838 ], [ -82.113311080461145, 28.679005026404042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jumper Drive South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114251117255279, 28.674917546033626 ], [ -82.114266005147329, 28.674973106362856 ], [ -82.114249938693433, 28.675112050906101 ], [ -82.114245402262114, 28.67520195219225 ], [ -82.114254766518556, 28.675291840934634 ], [ -82.114288708004551, 28.67540132306965 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jumper Drive South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114195542260944, 28.674942109811795 ], [ -82.114198871452558, 28.675022197073265 ], [ -82.114198942308974, 28.675087577251979 ], [ -82.114192067086833, 28.675155006122445 ], [ -82.114187518340003, 28.675232645633223 ], [ -82.1141968682429, 28.675310277119809 ], [ -82.114203865093387, 28.675353176224956 ], [ -82.114216431126849, 28.675404652742404 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jumper Drive South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114216431126849, 28.675404652742404 ], [ -82.114179433000828, 28.675468428017513 ], [ -82.114147994713036, 28.675532199532864 ], [ -82.114125826744612, 28.675599232433242 ], [ -82.114111109785668, 28.675700581982557 ], [ -82.114103852420669, 28.675846058322165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jumper Drive South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11408354541966, 28.675919627047644 ], [ -82.114098405048068, 28.675949035138395 ], [ -82.114120675781194, 28.675976802906344 ], [ -82.114155915010983, 28.675999655648884 ], [ -82.114196701764698, 28.676011063078658 ], [ -82.114235622137116, 28.676011029593962 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jumper Drive South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113718473853794, 28.675959158873958 ], [ -82.11408354541966, 28.675919627047644 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jumper Drive South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114288708004551, 28.67540132306965 ], [ -82.114655684879253, 28.675410004189303 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jumper Drive South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114235622137116, 28.676011029593962 ], [ -82.114420991898868, 28.676041931602683 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 40th Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170323117678535, 28.688969583906957 ], [ -82.170282709631607, 28.688934054766346 ], [ -82.170262468641738, 28.688894052799135 ], [ -82.170254825366726, 28.688845139908686 ], [ -82.170257246089932, 28.68878286988501 ], [ -82.170236114665485, 28.688191376544527 ], [ -82.170197097289659, 28.68745535966189 ], [ -82.170172288177426, 28.686147815903645 ], [ -82.170119564400466, 28.684731346027178 ], [ -82.170083427168962, 28.683502024381863 ], [ -82.170078374672201, 28.683461003584899 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 625", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178506904013773, 28.65779821634607 ], [ -82.178520055979519, 28.657812936894796 ], [ -82.178557680182465, 28.657843478420897 ], [ -82.178603968915837, 28.6578714585748 ], [ -82.178653128077741, 28.657886690399529 ], [ -82.178731178119449, 28.657896784286851 ], [ -82.178864127346145, 28.657899159627775 ], [ -82.180257187523196, 28.657912616300258 ], [ -82.181242727149879, 28.657918955594312 ], [ -82.182476841069786, 28.65793769919301 ], [ -82.182534656406631, 28.657945269830222 ], [ -82.182580928576883, 28.657963052286572 ], [ -82.182586808747374, 28.657966005852796 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 73rd Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.174067730834423, 28.649180751747185 ], [ -82.174170335403673, 28.64907395654286 ], [ -82.17428202764583, 28.648979149765228 ], [ -82.174358993905869, 28.648908384941159 ], [ -82.174432963682307, 28.648852291349534 ], [ -82.174505459634332, 28.648826653375384 ], [ -82.17455988121074, 28.648824129261946 ], [ -82.174588579371715, 28.648812093227658 ], [ -82.174665726151588, 28.648785064121174 ], [ -82.17476536252903, 28.648777200550345 ], [ -82.174954288164642, 28.648772957856721 ], [ -82.176152883814495, 28.648776745090345 ], [ -82.176972113106089, 28.648786350003956 ], [ -82.177576718378276, 28.648798895584868 ], [ -82.17852290288873, 28.64880432451044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 401", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142861802113003, 28.81061781492836 ], [ -82.142860200780135, 28.81098127425507 ], [ -82.142846636021375, 28.811789382559592 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 401", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142846636021375, 28.811789382559592 ], [ -82.142844750422043, 28.811944361272104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 401", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142844750422043, 28.811944361272104 ], [ -82.142847660015335, 28.812543971289596 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 401", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142847660015335, 28.812543971289596 ], [ -82.142828002299026, 28.813038326492251 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 401", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142828002299026, 28.813038326492251 ], [ -82.142828064092782, 28.813083821665913 ], [ -82.142833189202975, 28.813177741051934 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 401", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142833189202975, 28.813177741051934 ], [ -82.142828331199439, 28.813280475658182 ], [ -82.142804336833279, 28.814017229379552 ], [ -82.142802729741419, 28.814061258248977 ], [ -82.142807775211509, 28.814095007350119 ], [ -82.142823242849005, 28.814134615893344 ], [ -82.142832370600729, 28.81414466971891 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 401", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142832370600729, 28.81414466971891 ], [ -82.142851195569605, 28.814165405676817 ], [ -82.142899988721823, 28.814203511072968 ], [ -82.142933348124444, 28.814226958485886 ], [ -82.142971705127323, 28.814250398820718 ], [ -82.143009633245683, 28.814263565926922 ], [ -82.14318628791365, 28.81427952463174 ], [ -82.143461248264558, 28.814288038946838 ], [ -82.143667877749536, 28.814289289303378 ], [ -82.14397448377224, 28.814284561093917 ], [ -82.144216089492517, 28.814274030873015 ], [ -82.144924236591464, 28.814235119664406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 401", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.144924236591464, 28.814235119664406 ], [ -82.145747361382021, 28.814218239249442 ], [ -82.146608183694255, 28.814212891494105 ], [ -82.147037350073887, 28.81421684751011 ], [ -82.147469030694083, 28.81422522073326 ], [ -82.147840468712062, 28.814224817425561 ], [ -82.147981001359483, 28.814218033172981 ], [ -82.148085692151568, 28.814209691716407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 401B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142847660015335, 28.812543971289596 ], [ -82.143641582405763, 28.812535753337997 ], [ -82.144726677020671, 28.812521686653369 ], [ -82.144890087532133, 28.812532580886007 ], [ -82.144980166066176, 28.812534329899169 ], [ -82.145206401058388, 28.812530397574434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 401A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145206401058388, 28.812530397574434 ], [ -82.14519167626932, 28.812486135303828 ], [ -82.145111651126555, 28.812179956125377 ], [ -82.145048462969328, 28.811930953449565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 401C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141221207718999, 28.811890710949765 ], [ -82.141269522422121, 28.811990288958832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 402", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.144929487427305, 28.814717645327359 ], [ -82.145182503019285, 28.814715948307288 ], [ -82.145432276943197, 28.814715680834809 ], [ -82.145560402627027, 28.814711258394933 ], [ -82.146179727205066, 28.814718047464911 ], [ -82.146282178293106, 28.814729051670973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 405B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147051126664451, 28.80783574843251 ], [ -82.147041781200812, 28.808642929769892 ], [ -82.147031653136182, 28.808889705677604 ], [ -82.147023858810641, 28.808933531990995 ], [ -82.147021304761822, 28.808979658023073 ], [ -82.147031833696602, 28.809018852790047 ], [ -82.14704938011235, 28.809053564506005 ], [ -82.147080835065054, 28.809078282525221 ], [ -82.147117940103797, 28.80909577504795 ], [ -82.147710671959956, 28.809114727512192 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 405C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147599312068209, 28.810556789473804 ], [ -82.14764471253234, 28.811032948197532 ], [ -82.147668269182148, 28.811344194265335 ], [ -82.147655345385957, 28.811547842865856 ], [ -82.147645537619866, 28.81162058131671 ], [ -82.147612667332652, 28.81173407049863 ], [ -82.14758311422365, 28.811859194925592 ], [ -82.147570075889988, 28.811981389639225 ], [ -82.147586754045733, 28.812097733954314 ], [ -82.147583244070574, 28.812183099652021 ], [ -82.147623557421156, 28.812432238783323 ], [ -82.147643607112727, 28.812598034875045 ], [ -82.147636002253819, 28.812671739093005 ], [ -82.147605344865781, 28.81279201571094 ], [ -82.147434260595404, 28.813273167533616 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 412", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142429705289032, 28.810037502296503 ], [ -82.141032747736944, 28.810069288448005 ], [ -82.141022208962781, 28.810069299397515 ], [ -82.140750928966625, 28.810066486953705 ], [ -82.140733754668233, 28.810066504761078 ], [ -82.140716188663774, 28.810065490732196 ], [ -82.140698425607653, 28.810063447372041 ], [ -82.14068105400402, 28.810060714240681 ], [ -82.140663678410718, 28.810057295357254 ], [ -82.14064669324847, 28.81005318850848 ], [ -82.140629903405255, 28.810048048312773 ], [ -82.140613501946063, 28.810042221056356 ], [ -82.14059729524422, 28.810035706037652 ], [ -82.14057094759346, 28.810037108442739 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 412", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14057094759346, 28.810037108442739 ], [ -82.140547086125963, 28.810031446807397 ], [ -82.140518700460774, 28.810021865714614 ], [ -82.14047720558824, 28.810000764884364 ], [ -82.140153835344449, 28.809724303581177 ], [ -82.140077309937396, 28.809618662764443 ], [ -82.13984986205908, 28.809261369492148 ], [ -82.139830015514463, 28.809107614101634 ], [ -82.139810198162209, 28.808975005164655 ], [ -82.139792591066225, 28.808863535924925 ], [ -82.139833440352646, 28.808400245295317 ], [ -82.139850819443481, 28.808338717051086 ], [ -82.139876924844472, 28.808277180715265 ], [ -82.139907412814395, 28.80822717225707 ], [ -82.139951002007237, 28.808182916936996 ], [ -82.140007673479104, 28.808130959543622 ], [ -82.140062194032751, 28.808100148131373 ], [ -82.140116526536104, 28.80807046748323 ], [ -82.140177792073686, 28.8080481307585 ], [ -82.140245418907142, 28.808026916221682 ], [ -82.140542167522824, 28.807984320849709 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 412", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140542167522824, 28.807984320849709 ], [ -82.140812742688937, 28.80795136426665 ], [ -82.14096985132683, 28.807933900350545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 412", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14096985132683, 28.807933900350545 ], [ -82.141537116140597, 28.807816056942386 ], [ -82.142571269582135, 28.807592000847823 ], [ -82.143289054325919, 28.807429780618556 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 412", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143289054325919, 28.807429780618556 ], [ -82.143446140214834, 28.807395015699779 ], [ -82.143710135756351, 28.8073409146796 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 412", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143710135756351, 28.8073409146796 ], [ -82.143760316485256, 28.807331251058461 ], [ -82.143884677962134, 28.807306130768346 ], [ -82.144453908785806, 28.807191000712816 ], [ -82.14490726355551, 28.807051631505761 ], [ -82.145085350047012, 28.806995733665104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 412", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145085350047012, 28.806995733665104 ], [ -82.145169821343814, 28.80697314339173 ], [ -82.145254293967156, 28.80695228188646 ], [ -82.14537821731669, 28.806938367357521 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 412A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14096985132683, 28.807933900350545 ], [ -82.140985326376907, 28.808081893483795 ], [ -82.140985442318623, 28.808168391321857 ], [ -82.141000936487529, 28.808329838743308 ], [ -82.140964419505593, 28.808766214778284 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 412B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13830606182718, 28.807795925362083 ], [ -82.138444800004379, 28.80781960579295 ], [ -82.138526654174029, 28.807829134585909 ], [ -82.139093387886632, 28.807720911560097 ], [ -82.139250483751979, 28.807693839173197 ], [ -82.139348684166421, 28.807687972661963 ], [ -82.139449082963807, 28.807693635319737 ], [ -82.139621571158386, 28.807753046462583 ], [ -82.139713270791248, 28.807783707294593 ], [ -82.139791857530568, 28.807799003529546 ], [ -82.139918445572178, 28.807804639769429 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 412B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139918445572178, 28.807804639769429 ], [ -82.140102062579913, 28.807823071328553 ], [ -82.140299899577414, 28.807864915470304 ], [ -82.140456849990514, 28.807933831173219 ], [ -82.140542167522824, 28.807984320849709 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 412C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139918445572178, 28.807804639769429 ], [ -82.139907513325525, 28.80768811703577 ], [ -82.139903984110305, 28.807598019788152 ], [ -82.139909363379303, 28.807539386770344 ], [ -82.139922407273161, 28.80750285240288 ], [ -82.139952915457485, 28.807468221045049 ], [ -82.13998562616537, 28.807448966349977 ], [ -82.140016160409118, 28.807435478738832 ], [ -82.140055423467444, 28.80742006110161 ], [ -82.140411046959855, 28.807340883441807 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 23rd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143289054325919, 28.807429780618556 ], [ -82.143288013000046, 28.808320523054913 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 34th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143720400604792, 28.806828747409561 ], [ -82.144525043449931, 28.806824975894536 ], [ -82.144817848090383, 28.806821200752097 ], [ -82.144902349279505, 28.806821111471312 ], [ -82.144998656124258, 28.806831394190507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 34th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.144998656124258, 28.806831394190507 ], [ -82.145136267486862, 28.806867595694005 ], [ -82.14537821731669, 28.806938367357521 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 34th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.144998656124258, 28.806831394190507 ], [ -82.145032121521282, 28.806872898896657 ], [ -82.145071527979837, 28.806947283667313 ], [ -82.145085350047012, 28.806995733665104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 419", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141111574197765, 28.803637295362172 ], [ -82.141104168136394, 28.804097408278448 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 419", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141104168136394, 28.804097408278448 ], [ -82.141093849109268, 28.804552583148986 ], [ -82.141057762443452, 28.804854853399281 ], [ -82.14105048890859, 28.805134397929809 ], [ -82.141046779666539, 28.805218599795293 ], [ -82.140978175897644, 28.805385384268234 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 429", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139026301448212, 28.797009387924973 ], [ -82.139922465815843, 28.797011253013835 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 429", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139922465815843, 28.797011253013835 ], [ -82.140398597166012, 28.797005604918848 ], [ -82.14082717378804, 28.796995137409798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 429", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.14082717378804, 28.796995137409798 ], [ -82.141729492831928, 28.796985217105 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 429C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138118565449219, 28.797028139213488 ], [ -82.138119711322062, 28.797454770790587 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilderness Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.150578915915588, 28.803688295503001 ], [ -82.151207213312617, 28.803682456508074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilderness Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.151207213312617, 28.803682456508074 ], [ -82.151919171264268, 28.803687145645359 ], [ -82.152641231342727, 28.803683592419247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilderness Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.152641231342727, 28.803683592419247 ], [ -82.153170336943703, 28.803687108989877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 414", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.150357994993414, 28.800105740164931 ], [ -82.150406704889335, 28.800085438390376 ], [ -82.150469477079454, 28.80005629462574 ], [ -82.150509831524801, 28.800040601144001 ], [ -82.150586428245774, 28.80000257771357 ], [ -82.150659995415566, 28.799942093721839 ], [ -82.150734600047684, 28.79988365226728 ], [ -82.151003004754173, 28.799657130680043 ], [ -82.151063919478545, 28.799609541903106 ], [ -82.15115719410926, 28.799561954061161 ], [ -82.15125427696934, 28.799527690817744 ], [ -82.151353262714821, 28.799495330156844 ], [ -82.151448441525559, 28.799470584646354 ], [ -82.151555041447025, 28.799461068118426 ], [ -82.151665449306734, 28.799455357701937 ], [ -82.151746350496936, 28.799456309448736 ], [ -82.151862944398545, 28.799475346798108 ], [ -82.151967640385621, 28.799508659261448 ], [ -82.152079475221072, 28.799534833600429 ], [ -82.15216275643813, 28.799565767055302 ], [ -82.152255554489315, 28.799625254173471 ], [ -82.152357871785668, 28.799682361079032 ], [ -82.152426875936285, 28.799722811706278 ], [ -82.152567263863475, 28.799815610729159 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 414", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149752915516387, 28.800343660332707 ], [ -82.149853391401734, 28.800287185825681 ], [ -82.149950853058868, 28.80025486938051 ], [ -82.150023953861236, 28.800233318168804 ], [ -82.150167644117985, 28.800199910104077 ], [ -82.150253952413934, 28.80016849365073 ], [ -82.150357994993414, 28.800105740164931 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 415", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145989648012858, 28.797781896612399 ], [ -82.147404374003614, 28.797778118548607 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 415", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147404374003614, 28.797778118548607 ], [ -82.148808880751872, 28.797772086505582 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 415", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148808880751872, 28.797772086505582 ], [ -82.150223595712816, 28.797761533253723 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 27th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153288148332138, 28.796091271540266 ], [ -82.153271965884286, 28.797187486277867 ], [ -82.153140226360136, 28.797411349875667 ], [ -82.152980396200022, 28.797530098927286 ], [ -82.152807866770587, 28.797648861183603 ], [ -82.152724130940058, 28.797700409596843 ], [ -82.152614957222056, 28.797725141062113 ], [ -82.152355996001987, 28.797788071166607 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 415C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147398653994856, 28.797176341321475 ], [ -82.147404374003614, 28.797778118548607 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 415B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148808895589383, 28.797170587312031 ], [ -82.148808880751872, 28.797772086505582 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 415A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.150225288648656, 28.797158688697227 ], [ -82.150223595712816, 28.797761533253723 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 2nd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137199777587739, 28.759200924111965 ], [ -82.13822724820082, 28.759199881967579 ], [ -82.138313412134821, 28.759205418496929 ], [ -82.138402755316221, 28.759205328510877 ], [ -82.138501689525782, 28.759216475149302 ], [ -82.138581494853582, 28.75924169836836 ], [ -82.138686840154605, 28.759275333945425 ], [ -82.139491503212099, 28.7596934656139 ], [ -82.139558546204512, 28.759718702243877 ], [ -82.139657507750186, 28.75975234180498 ], [ -82.13975964927603, 28.75977473067411 ], [ -82.139861780312287, 28.759791497154524 ], [ -82.140018150521044, 28.759802583597082 ], [ -82.142768748423663, 28.759816594159791 ], [ -82.145069409073173, 28.759816970597484 ], [ -82.145149167096534, 28.759805638125012 ], [ -82.145219383894698, 28.759816810494225 ], [ -82.145279985642162, 28.75979987608299 ], [ -82.145356554941088, 28.759788545993171 ], [ -82.14542676479752, 28.759796906650426 ], [ -82.14547786825753, 28.759830593122821 ], [ -82.145522612334744, 28.759883968565507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 12th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125233767342593, 28.773387617506639 ], [ -82.124683720049461, 28.773384792366976 ], [ -82.124604738544477, 28.7734459080351 ], [ -82.124604738509504, 28.7735662603794 ], [ -82.124722216289967, 28.773813625647335 ], [ -82.124816235839305, 28.773976118195769 ], [ -82.124875799998293, 28.774094552582913 ], [ -82.124925916937386, 28.774157885038711 ], [ -82.125001034740535, 28.774204661418405 ], [ -82.125094883932888, 28.774223863887304 ], [ -82.1253826551076, 28.774251155565143 ], [ -82.126283473472284, 28.774313700645738 ], [ -82.126690103006695, 28.774349144313266 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 12th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126690103006695, 28.774349144313266 ], [ -82.126946581478606, 28.774362682579312 ], [ -82.127362592426621, 28.774398116366307 ], [ -82.127844287378252, 28.774436242805251 ], [ -82.127919344129097, 28.774430659095447 ], [ -82.127988125694671, 28.774411306539378 ], [ -82.128056883512812, 28.774369908659228 ], [ -82.12810058295841, 28.774298222046209 ], [ -82.128122340649398, 28.774187978600128 ], [ -82.128143936124332, 28.773942712273644 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 439", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120653389807316, 28.785625802386672 ], [ -82.120707907966008, 28.785632958064063 ], [ -82.121130374167478, 28.785639785574894 ], [ -82.121484687133517, 28.785634667409049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998828314712171, 28.926308109769742 ], [ -81.998950725480611, 28.926381342151171 ], [ -81.99905599943196, 28.926445958258736 ], [ -81.999158823380668, 28.926504112926363 ], [ -81.999271442110214, 28.926564420458302 ], [ -81.999381611804026, 28.926622575906251 ], [ -81.999486885371113, 28.926672114316137 ], [ -81.999604401856629, 28.926728116741103 ], [ -81.99970967462427, 28.926775500294351 ], [ -81.999887386201735, 28.926847129522571 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996793617808891, 28.924620447225834 ], [ -81.99704115357693, 28.92483269574425 ], [ -81.997476922645987, 28.925207474628799 ], [ -81.997746219061128, 28.925437939618153 ], [ -81.998120788754917, 28.925758868970643 ], [ -81.998470877732117, 28.926051798725602 ], [ -81.998561461058415, 28.926120723497647 ], [ -81.998649595399925, 28.926185337914195 ], [ -81.99874262820623, 28.926249955031576 ], [ -81.998828314712171, 28.926308109769742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996725887957538, 28.924563873364747 ], [ -81.996793617808891, 28.924620447225834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990454689942368, 28.920228302861982 ], [ -81.990460841126065, 28.920229606221721 ], [ -81.990575898099209, 28.920257615434277 ], [ -81.990700749235444, 28.920285624335445 ], [ -81.990813357926442, 28.920317938930989 ], [ -81.991043472957926, 28.920378263315381 ], [ -81.991288274286461, 28.920462280773709 ], [ -81.991621203958218, 28.920591532820449 ], [ -81.991741156744496, 28.920643232039623 ], [ -81.991963925657672, 28.9207444771361 ], [ -81.992179349052819, 28.920856490333307 ], [ -81.992387429684513, 28.920970655638843 ], [ -81.992590612877791, 28.921095591958387 ], [ -81.992791347424841, 28.921235602498616 ], [ -81.992994530242498, 28.921379921332047 ], [ -81.993278497224765, 28.921610397966205 ], [ -81.993562463165574, 28.92186025712061 ], [ -81.993912525015361, 28.922157506447991 ], [ -81.993965450243877, 28.922203604501117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976709144697296, 28.920098681802131 ], [ -81.976739336112544, 28.920098686156933 ], [ -81.976979248558763, 28.920096574812131 ], [ -81.977348910068216, 28.920096637972261 ], [ -81.977721018093973, 28.920098854306932 ], [ -81.978220427572992, 28.920096782862899 ], [ -81.978602328100536, 28.920096845479261 ], [ -81.978969541607, 28.920096903798555 ], [ -81.979341650105184, 28.920096960971506 ], [ -81.979716207637821, 28.920097018390599 ], [ -81.980093212572442, 28.920094921351488 ], [ -81.980592623016705, 28.920092842012529 ], [ -81.980967179512049, 28.920092895049741 ], [ -81.981349081690638, 28.920095102755905 ], [ -81.981841147064131, 28.920093017759854 ], [ -81.982225495969075, 28.920090914848458 ], [ -81.982597605845399, 28.92008880924331 ], [ -81.983101910493161, 28.920091028800126 ], [ -81.983297757632883, 28.920088899703089 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983308685572723, 28.919965970408509 ], [ -81.981471362424557, 28.919963073230562 ], [ -81.980430118106469, 28.919969626861196 ], [ -81.979588788705541, 28.919965454090182 ], [ -81.977929466862349, 28.919970498444194 ], [ -81.976706765788478, 28.919970290031547 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wisteria Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042738313399127, 28.842854249887786 ], [ -82.042785010326597, 28.842770522079068 ], [ -82.042818172310433, 28.842713697126058 ], [ -82.042856857189165, 28.842637393259494 ], [ -82.042888170874676, 28.842569205222681 ], [ -82.042910273810449, 28.842514007854042 ], [ -82.042930067732343, 28.842455970744435 ], [ -82.042948479879939, 28.842397121086318 ], [ -82.042963664803608, 28.842335432878691 ], [ -82.04297838261418, 28.84225913647866 ], [ -82.042987573595781, 28.842190143269899 ], [ -82.042994463737045, 28.842133327402774 ], [ -82.043001355322232, 28.842082599394168 ], [ -82.043005940070003, 28.842021726577421 ], [ -82.04300822336161, 28.841968968921208 ], [ -82.043011422984094, 28.841904037964326 ], [ -82.04300955723204, 28.841852093683723 ], [ -82.043010457948427, 28.841796495999713 ], [ -82.043003514817556, 28.841725481263641 ], [ -82.042991954155198, 28.841632149429142 ], [ -82.042980402785744, 28.841559105042972 ], [ -82.042961930612634, 28.841469831235582 ], [ -82.042936539310418, 28.84136838657647 ], [ -82.042918076469647, 28.841299402918775 ], [ -82.042904226016432, 28.84124259443864 ], [ -82.042888071665942, 28.841187814159163 ], [ -82.0428742255598, 28.841139121918747 ], [ -82.042846989361976, 28.841034023473426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wolfe Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037136418674507, 28.859130636829896 ], [ -82.036173433303304, 28.859128974566467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kelmscott Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001910677028775, 28.869946291016841 ], [ -82.002000959176328, 28.869989981467292 ], [ -82.002016340413206, 28.86999946181168 ], [ -82.002033358642024, 28.87000644726945 ], [ -82.002051496200906, 28.870010725804093 ], [ -82.002069630640833, 28.87001216478842 ], [ -82.003062387339057, 28.870016788550071 ], [ -82.003789958784864, 28.870018690083359 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenholloway Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001910677028775, 28.869946291016841 ], [ -82.001943632025501, 28.869891445112273 ], [ -82.001959864462393, 28.869860099847443 ], [ -82.001962275288321, 28.869851891572445 ], [ -82.001972001852806, 28.869834684556874 ], [ -82.002004866365539, 28.869766055054495 ], [ -82.002029803995171, 28.869694885641152 ], [ -82.002046568752647, 28.869621883729366 ], [ -82.002054991530784, 28.869547777482502 ], [ -82.002055742627093, 28.869530529949404 ], [ -82.002059897577212, 28.86948999122874 ], [ -82.002072658800643, 28.869441984956307 ], [ -82.002077565554288, 28.869429267843426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Great Birch Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001502820277395, 28.873723765356832 ], [ -82.001536901424217, 28.873593917470807 ], [ -82.001591604020049, 28.87325124420132 ], [ -82.001655851732792, 28.872807197108848 ], [ -82.00167109368698, 28.872542390983163 ], [ -82.001672887051598, 28.872497807286589 ], [ -82.001677169316238, 28.872452132686689 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Black Oak Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000969828573417, 28.872458258347276 ], [ -82.001324150356396, 28.872450369108826 ], [ -82.001571619949459, 28.87244258708634 ], [ -82.001581774487875, 28.872443730234142 ], [ -82.001640059004089, 28.872447136913877 ], [ -82.001677169316238, 28.872452132686689 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paisley Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002906344413631, 28.873938285116253 ], [ -82.003003985679428, 28.873946373489002 ], [ -82.003204387362075, 28.873952846563306 ], [ -82.003346285022104, 28.873945819370629 ], [ -82.003496126556911, 28.873916661988062 ], [ -82.00378164130295, 28.873854179317856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paisley Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002213208198171, 28.873791405504356 ], [ -82.002219550602803, 28.87379721896621 ], [ -82.002253738180357, 28.873821914585342 ], [ -82.002292740564116, 28.873840265145081 ], [ -82.002335063137423, 28.873851564157135 ], [ -82.002340687890182, 28.873852483532929 ], [ -82.002817458445904, 28.873924939717188 ], [ -82.002906344413631, 28.873938285116253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peaceful Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002035497601582, 28.8712311738363 ], [ -82.003582993248116, 28.87123670725958 ], [ -82.003720842469136, 28.87123670419205 ], [ -82.003761112777056, 28.871242156788242 ], [ -82.003792090813349, 28.871248972968854 ], [ -82.003871084262485, 28.871280327034647 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peaceful Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001711106994222, 28.87122957067573 ], [ -82.002035497601582, 28.8712311738363 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968325388408047, 28.902150626718889 ], [ -81.968363440792231, 28.902075526559518 ], [ -81.968514318486598, 28.901840201984413 ], [ -81.968705038719122, 28.901577342969819 ], [ -81.96881605974329, 28.901409610754921 ], [ -81.968890074979115, 28.901291948344362 ], [ -81.968966938467602, 28.901164270131339 ], [ -81.969086511808896, 28.900936449266243 ], [ -81.969206088083936, 28.90069360320647 ], [ -81.969308599748686, 28.900433228674238 ], [ -81.969399725839537, 28.900177856506286 ], [ -81.969468081362422, 28.89995002265929 ], [ -81.969525060279935, 28.899704658121916 ], [ -81.969576355130229, 28.899439263928677 ], [ -81.969607727523737, 28.89918638368572 ], [ -81.969627720132692, 28.898930996064561 ], [ -81.969633488433772, 28.898670596545319 ], [ -81.969622197668755, 28.898362621228745 ], [ -81.96960808743647, 28.897967011247605 ], [ -81.969585402290164, 28.897704103161001 ], [ -81.969557066499775, 28.897305985123559 ], [ -81.969520179977266, 28.896955437043278 ], [ -81.969488956278525, 28.896710053223082 ], [ -81.969443535096872, 28.896357001071337 ], [ -81.969341297671534, 28.895718498855484 ], [ -81.969258915786554, 28.895282811847988 ], [ -81.969187890889415, 28.894929752758951 ], [ -81.96917959644361, 28.894873679243766 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969021980026312, 28.894899159038971 ], [ -81.969067814497478, 28.895056746334021 ], [ -81.969127822633311, 28.895332382027178 ], [ -81.969147824958867, 28.895426933194479 ], [ -81.969209631007232, 28.895777885096262 ], [ -81.969260530913971, 28.896074351801953 ], [ -81.969300516046786, 28.896327549813826 ], [ -81.969329583019928, 28.896551900597636 ], [ -81.969356835060424, 28.896766636050213 ], [ -81.969385905200781, 28.896984576873294 ], [ -81.969411317490042, 28.897263413031709 ], [ -81.969436734901294, 28.897515003344957 ], [ -81.969447622017711, 28.897646407675733 ], [ -81.969458491703847, 28.897840308856299 ], [ -81.969471177070844, 28.898045426925989 ], [ -81.969482043449261, 28.898247336900337 ], [ -81.969489263420826, 28.898457262063637 ], [ -81.969496475610669, 28.898704041627422 ], [ -81.969487294361556, 28.898965240701457 ], [ -81.969476330326643, 28.899093435057988 ], [ -81.96946719297884, 28.899202399126899 ], [ -81.969456235529904, 28.899308158714554 ], [ -81.969430695652079, 28.899465195336145 ], [ -81.969406985202468, 28.899590180900507 ], [ -81.969381449932811, 28.899731192676587 ], [ -81.969335869763981, 28.899913861710921 ], [ -81.969288475064289, 28.900074095547293 ], [ -81.969246551468188, 28.900207091115703 ], [ -81.969173648569509, 28.900418599402936 ], [ -81.969117157304794, 28.900551589767449 ], [ -81.969022398232468, 28.900766297888357 ], [ -81.968969556949133, 28.900875252688156 ], [ -81.968907605316161, 28.900993821150688 ], [ -81.968783710517386, 28.901211725486402 ], [ -81.968645245157774, 28.901431229677325 ], [ -81.968421160495438, 28.901743657559916 ], [ -81.968277232986239, 28.901961555779707 ], [ -81.968215281856999, 28.902070509911077 ], [ -81.968211217781715, 28.902078759566425 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Summerton Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978896569215422, 28.893030060582866 ], [ -81.979011104675862, 28.893060318292552 ], [ -81.979191086171951, 28.893103546743681 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valley Falls Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978901337473161, 28.893725579385958 ], [ -81.978904625474783, 28.893646379629715 ], [ -81.978907956198981, 28.893364141644632 ], [ -81.978912172283998, 28.893099192756949 ], [ -81.978896569215422, 28.893030060582866 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Summerton Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976831717430997, 28.892432121064214 ], [ -81.97692334675844, 28.892439337252949 ], [ -81.977163985606239, 28.892495586419631 ], [ -81.977373297122185, 28.892556054430258 ], [ -81.977614551389948, 28.892641768405309 ], [ -81.977849414796921, 28.892730371858661 ], [ -81.978088746912078, 28.892813735075517 ], [ -81.978302632461194, 28.892878767125371 ], [ -81.978580920798947, 28.89294960644354 ], [ -81.978841656105459, 28.893017370980939 ], [ -81.978896569215422, 28.893030060582866 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridgeland Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975204645600542, 28.888788580095824 ], [ -81.975369597176964, 28.888844810331733 ], [ -81.975600164824229, 28.888919512506995 ], [ -81.975792904336004, 28.88896234631882 ], [ -81.975883086578037, 28.888971352216686 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winnsboro Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977191705199118, 28.88816399916583 ], [ -81.977406450280313, 28.888120870438513 ], [ -81.977722246059358, 28.888079164017078 ], [ -81.978003680832003, 28.888050409149265 ], [ -81.978296198335485, 28.888036232159067 ], [ -81.97868845572421, 28.888036294330888 ], [ -81.978981818601426, 28.888038716514334 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shellbark Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97007373191839, 28.886319890564888 ], [ -81.970113870754432, 28.886836657106088 ], [ -81.970147577627273, 28.887357030464081 ], [ -81.970162288314867, 28.887415353943968 ], [ -81.970179456912163, 28.887450999543592 ], [ -81.970205218489625, 28.887478003913156 ], [ -81.970232209561232, 28.887500690139792 ], [ -81.970260430125236, 28.887519055515892 ], [ -81.970288648555055, 28.887534182528501 ], [ -81.970330069602966, 28.887547212804755 ], [ -81.970369713079165, 28.887552457625215 ], [ -81.970534551347313, 28.887558681040588 ], [ -81.970650212428765, 28.887563291008174 ], [ -81.970692358689476, 28.887567998510598 ], [ -81.97072478881671, 28.887576115476659 ], [ -81.970846638283362, 28.887620629069119 ], [ -81.971061843471119, 28.887707995856054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075315295207517, 28.614274490818612 ], [ -82.075208394633606, 28.614237498501467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 747", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075339964004783, 28.615903698178585 ], [ -82.075332507014735, 28.615216439564712 ], [ -82.075315295207517, 28.614274490818612 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075208394633606, 28.614237498501467 ], [ -82.074845061456713, 28.614109393536669 ], [ -82.074710616067208, 28.614060628586355 ], [ -82.074537426050213, 28.614005256876553 ], [ -82.07440791681779, 28.613965113509582 ], [ -82.074260302248689, 28.613928145232123 ], [ -82.074124140321175, 28.613892292213517 ], [ -82.073985433862319, 28.613858686355172 ], [ -82.073848005534302, 28.613830691320214 ], [ -82.073736027570519, 28.613809420240877 ], [ -82.073564244634923, 28.613779199261707 ], [ -82.073428094353815, 28.613762430934297 ], [ -82.073267772369732, 28.613742308751547 ], [ -82.07315834352616, 28.613735297320119 ], [ -82.073028670142449, 28.613724203563972 ], [ -82.072901328659384, 28.613716680809478 ], [ -82.072750353438934, 28.613710397653207 ], [ -82.072609962336699, 28.613707853439266 ], [ -82.072462554146583, 28.613704967190127 ], [ -82.072155782913569, 28.613705128874095 ], [ -82.07156157846245, 28.613702790804663 ], [ -82.071261314091899, 28.613701825462126 ], [ -82.070952142893702, 28.613701984766671 ], [ -82.070620070274572, 28.613702156055368 ], [ -82.070178577360409, 28.613700137502896 ], [ -82.06943279369375, 28.613700952628143 ], [ -82.067639604134371, 28.613701847828516 ], [ -82.067004169105914, 28.613698354191815 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 22nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067004169105914, 28.613698354191815 ], [ -82.067002857560411, 28.613637728393648 ], [ -82.067005388488042, 28.613615272420972 ], [ -82.067016826370008, 28.6135950580267 ], [ -82.067035899129493, 28.613577085829597 ], [ -82.067058784752703, 28.613549006459017 ], [ -82.067080394915621, 28.613522052023548 ], [ -82.06709055998769, 28.613500713928548 ], [ -82.067095430243526, 28.613468156013575 ], [ -82.067091544456957, 28.612231391239511 ], [ -82.067071462537811, 28.612142811969065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067004169105914, 28.613698354191815 ], [ -82.066266229230209, 28.613698711338809 ], [ -82.065336172435551, 28.613699157784762 ], [ -82.06514756473284, 28.613702163722959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.089727888174053, 28.616035376825309 ], [ -82.089530091060752, 28.615997282333709 ], [ -82.089275785204833, 28.615947589652105 ], [ -82.088669482097302, 28.615829734818089 ], [ -82.088515651570404, 28.615803442739715 ], [ -82.088272085629342, 28.615758360305232 ], [ -82.088105440249663, 28.615732076925767 ], [ -82.087934525725572, 28.615709566961538 ], [ -82.087797797547893, 28.615698343886667 ], [ -82.087665343809817, 28.615687118839158 ], [ -82.087549985808351, 28.615683424486942 ], [ -82.087421806575676, 28.615675965541282 ], [ -82.087302930300453, 28.615675261774808 ], [ -82.087194782525131, 28.61567645410658 ], [ -82.087067549199489, 28.615677657588122 ], [ -82.086955587997764, 28.615681097175575 ], [ -82.086835994006336, 28.615686787435479 ], [ -82.086692225961414, 28.615693615408787 ], [ -82.086550257646536, 28.615706679064886 ], [ -82.086366560299112, 28.615725644936521 ], [ -82.086058976516114, 28.615763539258268 ], [ -82.085524972152385, 28.615824194336859 ], [ -82.08471818628648, 28.615917697272828 ], [ -82.084310636198808, 28.615963431209288 ], [ -82.084168149802906, 28.615980359216209 ], [ -82.083942381753857, 28.616002622242483 ], [ -82.083788588447391, 28.616020813739205 ], [ -82.08362795191124, 28.616029959673895 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 449", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12585719825141, 28.791423787231544 ], [ -82.126549291467583, 28.791725328499155 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 455B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120461642143567, 28.790725775092881 ], [ -82.120568317196657, 28.790719124349017 ], [ -82.120667536678496, 28.79070373854826 ], [ -82.120779127196769, 28.790657743415448 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 457B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119289307695794, 28.789968026318402 ], [ -82.119547049980753, 28.789634600796894 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 491", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104050931743515, 28.754758952401421 ], [ -82.104071518107077, 28.754338568231955 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 485", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118492998955801, 28.768085103345943 ], [ -82.118707019575226, 28.768084916848924 ], [ -82.118779293086149, 28.768098521145721 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 14th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.072893403723697, 28.735976106899827 ], [ -82.071229377328436, 28.735945100056664 ], [ -82.071175120613475, 28.735951504993494 ], [ -82.071123859970029, 28.735967832110948 ], [ -82.07108513450892, 28.735999799901304 ], [ -82.071067662279475, 28.736039468814091 ], [ -82.071065210217, 28.736108875940062 ], [ -82.071065172110323, 28.736213021282662 ], [ -82.071063296323899, 28.736417058439976 ], [ -82.071046705386181, 28.736470228362279 ], [ -82.071019955829101, 28.736519107587522 ], [ -82.0709842655031, 28.73655398737608 ], [ -82.070934287447088, 28.736582655741266 ], [ -82.070712519663701, 28.73658622182958 ], [ -82.070610376797575, 28.736590528090751 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 13th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070565159895807, 28.736713384743268 ], [ -82.070509390275845, 28.736696345111984 ], [ -82.070449382962281, 28.736684876780487 ], [ -82.070178515069401, 28.736691138121849 ], [ -82.069477001707526, 28.736658846999706 ], [ -82.069163248511359, 28.73666055327195 ], [ -82.068867147513856, 28.736648973149638 ], [ -82.068504516773913, 28.736652087524181 ], [ -82.068304042099598, 28.736589675529032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Market Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112226563327638, 28.664163251675514 ], [ -82.112142987459734, 28.664896705048577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 10th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087948507098901, 28.653862044110504 ], [ -82.087907685536962, 28.652829285015283 ], [ -82.087906536888781, 28.651451062956593 ], [ -82.08797885378371, 28.65134021062881 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 577", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97196785591639, 28.68531478197929 ], [ -81.971974015506177, 28.682560704674017 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 25th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061681902637361, 28.657913902831243 ], [ -82.061656969651608, 28.654836857321662 ], [ -82.061645390755672, 28.654108862350853 ], [ -82.061645264101145, 28.654102190543249 ], [ -82.061649452876253, 28.654063270958325 ], [ -82.061661918204408, 28.654025756203392 ], [ -82.061682206675528, 28.653990999982199 ], [ -82.061709584534697, 28.653960258671084 ], [ -82.061743064251658, 28.653934642581625 ], [ -82.061781434165312, 28.653915078952227 ], [ -82.061823308586227, 28.653902274028329 ], [ -82.061823717717772, 28.653902186317715 ], [ -82.061852233632791, 28.653902109416229 ], [ -82.06206609312747, 28.653905626813007 ], [ -82.062279640807077, 28.653916367204726 ], [ -82.062351636595437, 28.653921623128888 ], [ -82.062377413449667, 28.653927436900272 ], [ -82.062407717898594, 28.653929761085273 ], [ -82.06243801855787, 28.653927409365522 ], [ -82.062467393780665, 28.653920452542359 ], [ -82.062494955759973, 28.653909099459586 ], [ -82.062519861783372, 28.653893699705566 ], [ -82.062541359227367, 28.653874716522228 ], [ -82.062558792721134, 28.653852731313322 ], [ -82.062571634814717, 28.653828409341568 ], [ -82.062579491086794, 28.653802487995591 ], [ -82.062582044643847, 28.653780509561916 ], [ -82.06258113270539, 28.653722797535494 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 75th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061355720661055, 28.644216089668884 ], [ -82.061356491900526, 28.644805370810221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 75th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061356491900526, 28.644805370810221 ], [ -82.061356396754505, 28.645377017932965 ], [ -82.061356569193805, 28.645675312113376 ], [ -82.061365641887477, 28.645806819028099 ], [ -82.061378544920842, 28.645893732587549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 75th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061378544920842, 28.645893732587549 ], [ -82.061393280610588, 28.645941341373938 ], [ -82.061461896889838, 28.646070304143446 ], [ -82.061552213524294, 28.646186532414596 ], [ -82.061635654536033, 28.646267744951277 ], [ -82.061712956245032, 28.64634707070158 ], [ -82.061768691487813, 28.646424516612345 ], [ -82.061803006402641, 28.646498193153114 ], [ -82.061827753521527, 28.64657401523327 ], [ -82.061837354673884, 28.646630445708006 ], [ -82.061839547542576, 28.646717362227765 ], [ -82.061823341206448, 28.646840062840027 ], [ -82.061790406073229, 28.646927123291345 ], [ -82.061747615179655, 28.647012170540183 ], [ -82.061681835255186, 28.64709811058113 ], [ -82.061561391314868, 28.647232196661871 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 75th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061561391314868, 28.647232196661871 ], [ -82.061412393739701, 28.64737636997717 ], [ -82.06130278405216, 28.647481225225967 ], [ -82.061193172831238, 28.647582048748987 ], [ -82.061068142106734, 28.64768439134998 ], [ -82.060980776531423, 28.647735825387951 ], [ -82.060868852407935, 28.64778777465477 ], [ -82.060782046119172, 28.647816030017417 ], [ -82.060676959294383, 28.647840262662744 ], [ -82.060564442148731, 28.647853916809609 ], [ -82.060480477948317, 28.647856473106202 ], [ -82.060379374083041, 28.647855509651031 ], [ -82.060288546061045, 28.647843457320825 ], [ -82.060178861766289, 28.647820326187279 ], [ -82.060072599962567, 28.647786110078755 ], [ -82.059990328815289, 28.647752890425018 ], [ -82.059887481545431, 28.64769700308663 ], [ -82.059798339982521, 28.647633553548076 ], [ -82.059734903918368, 28.647579163964068 ], [ -82.059666894472883, 28.647510162104204 ], [ -82.059604587343557, 28.647429569038071 ], [ -82.059551418611065, 28.647344940347306 ], [ -82.059513671266316, 28.647258795351345 ], [ -82.059482777358497, 28.647172646476168 ], [ -82.059465592628285, 28.6470834670336 ], [ -82.059456342752384, 28.646889478744558 ], [ -82.059459347696844, 28.645887018280177 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 77th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060189624776825, 28.645658065653247 ], [ -82.060127535541739, 28.645709111810518 ], [ -82.06007615234077, 28.64574692501381 ], [ -82.05997551080705, 28.645801765123608 ], [ -82.059919834131719, 28.645826352796483 ], [ -82.059870577796403, 28.645841491094242 ], [ -82.059761356559633, 28.645871771389466 ], [ -82.059660691192335, 28.645883152967169 ], [ -82.059566446241419, 28.645886971917001 ], [ -82.059459347696844, 28.645887018280177 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137329733672573, 28.641189844393942 ], [ -82.137325073238856, 28.640960822749797 ], [ -82.137324700045767, 28.640674059021801 ], [ -82.137341856954009, 28.640446941873176 ], [ -82.137356627709082, 28.640062009483845 ], [ -82.137356189312854, 28.639725207649608 ], [ -82.137353803710781, 28.63956931799121 ], [ -82.137342808734289, 28.639501968787922 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 68th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125806354399472, 28.65685468796163 ], [ -82.126999574298424, 28.65684702300058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 609C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131332043321706, 28.643181218383596 ], [ -82.13217146033341, 28.643180407469046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 74th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158656769620791, 28.648729032741329 ], [ -82.160748125858447, 28.648720736272519 ], [ -82.161530288458778, 28.648708144637261 ], [ -82.161851472915998, 28.648707763344422 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 647 South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.252305171952187, 28.631328569443625 ], [ -82.25245645372172, 28.631383460995973 ], [ -82.252902969995503, 28.631606576269945 ], [ -82.253031301891653, 28.631702613235923 ], [ -82.253197734965809, 28.631859276878792 ], [ -82.253326212083891, 28.632016009669709 ], [ -82.25360483077462, 28.632459200624101 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 622A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249015903890452, 28.665875724462047 ], [ -82.24975145352839, 28.665880534847119 ], [ -82.250358954709256, 28.665875306110294 ], [ -82.251345836353181, 28.665861155511884 ], [ -82.252174448581428, 28.665851399051419 ], [ -82.252225655565212, 28.665851303390127 ], [ -82.252269930347396, 28.665871747752838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 73rd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185662125093899, 28.64877001854051 ], [ -82.185728103274741, 28.648755372980396 ], [ -82.185925489808909, 28.64871629411795 ], [ -82.186207530263871, 28.648683913601808 ], [ -82.18667097851521, 28.648686833050608 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 85th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.217695558716613, 28.632609944234218 ], [ -82.218496566244255, 28.632673226817914 ], [ -82.218711655905182, 28.632667632348092 ], [ -82.218894653784588, 28.632654156746334 ], [ -82.219081367179001, 28.632630788031918 ], [ -82.219238243828372, 28.632630534430326 ], [ -82.219410124420889, 28.632659918002201 ], [ -82.219492326257267, 28.632672964915841 ], [ -82.219578228906528, 28.632669531880023 ], [ -82.219649143296522, 28.632643053895979 ], [ -82.219727548350633, 28.632626449757929 ], [ -82.219839556216499, 28.632603200628772 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 85th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.219839556216499, 28.632603200628772 ], [ -82.220034087902377, 28.63262089946895 ], [ -82.220497809513461, 28.632630118611619 ], [ -82.220950102251962, 28.63266926441948 ], [ -82.222487899796121, 28.632656788373779 ], [ -82.22379135625556, 28.632653685871329 ], [ -82.22397979446778, 28.632665284774241 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 85th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.22397979446778, 28.632665284774241 ], [ -82.224218228885121, 28.632657223067813 ], [ -82.224935890312949, 28.632649813153172 ], [ -82.225744339729303, 28.632651422851279 ], [ -82.225893185863001, 28.632656482403856 ], [ -82.225955492318221, 28.632650591355322 ], [ -82.225998079913154, 28.63262737031512 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 87th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.217788946099674, 28.628991392130743 ], [ -82.217919687453787, 28.62899777256105 ], [ -82.219910489705654, 28.629001160241245 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 22nd Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06379519996959, 28.776039582645982 ], [ -82.064377602367117, 28.777378642421784 ], [ -82.064642756032171, 28.777967991279336 ], [ -82.064924485531336, 28.778596906292734 ], [ -82.065255957196754, 28.779369519332587 ], [ -82.065525846153577, 28.779956781457237 ], [ -82.065899927916789, 28.780800194941087 ], [ -82.066529706333469, 28.782193379290316 ], [ -82.067007995462419, 28.783288771970099 ], [ -82.06722580733836, 28.783748995639709 ], [ -82.067306313462339, 28.783934337238914 ], [ -82.067386817933439, 28.7841134311671 ], [ -82.067436547400661, 28.784234215587592 ], [ -82.067486268281201, 28.784344588197602 ], [ -82.06754546296645, 28.784479950187624 ], [ -82.067599908015211, 28.784577822475484 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 28th Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055909786262021, 28.855178277868653 ], [ -82.055907464457249, 28.856047376319015 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 28th Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055907464457249, 28.856047376319015 ], [ -82.05590505769959, 28.856752450274275 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 28th Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05590505769959, 28.856752450274275 ], [ -82.055902658433141, 28.857469763904444 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 29th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054859075050629, 28.856042906574693 ], [ -82.054856662753082, 28.85675287643291 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 29th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054856662753082, 28.85675287643291 ], [ -82.054858007140183, 28.857469330467346 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 29th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054858007140183, 28.857469330467346 ], [ -82.054858379145273, 28.858182357866507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 44th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031536041957935, 28.881202220843875 ], [ -82.031562510802345, 28.881270595664535 ], [ -82.031598439222066, 28.881353540469398 ], [ -82.03163885694596, 28.88143648332851 ], [ -82.031683768121326, 28.881533251098986 ], [ -82.031728685180425, 28.881659645005502 ], [ -82.031751147657658, 28.881730743852927 ], [ -82.031764636650848, 28.881811716844968 ], [ -82.031778131752958, 28.881916394184135 ], [ -82.03177815783063, 28.882003296596384 ], [ -82.031780471142753, 28.882230429591623 ], [ -82.031776430351442, 28.883721610904377 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 52nd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015948901140334, 28.85696582357475 ], [ -82.01592924439106, 28.858185262465298 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 54th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011367401282442, 28.766900962316779 ], [ -82.011324319752504, 28.766866766951086 ], [ -82.011270352397872, 28.766831261344109 ], [ -82.011213296033759, 28.766800911790142 ], [ -82.011167770632923, 28.766781187015539 ], [ -82.011110905883001, 28.766761464890696 ], [ -82.011051028819168, 28.766746039801607 ], [ -82.010977560853235, 28.766734001196657 ], [ -82.01089665897041, 28.766729035463118 ], [ -82.01083186311557, 28.766731176043255 ], [ -82.010737653361289, 28.766744147449227 ], [ -82.010646795397221, 28.766768443525123 ], [ -82.010572487666522, 28.76679800517476 ], [ -82.010509514486458, 28.766831092228738 ], [ -82.010427196075838, 28.766888376248946 ], [ -82.01021041261761, 28.76707633588622 ], [ -82.009837926014569, 28.76739969552581 ], [ -82.009518344517616, 28.767677125534412 ], [ -82.009123492701548, 28.768019891641192 ], [ -82.008678726447286, 28.768405976992931 ], [ -82.008264517441759, 28.768765530183064 ], [ -82.008073044953392, 28.768931737328725 ], [ -82.008016982293498, 28.768979877996571 ], [ -82.007960935844693, 28.769040548207535 ], [ -82.007920956771969, 28.769096357679 ], [ -82.007884341565799, 28.769163882641127 ], [ -82.007860679426429, 28.769224804672017 ], [ -82.007844826929414, 28.769286219861712 ], [ -82.007835460013737, 28.76936347848968 ], [ -82.007837658183391, 28.769442791996095 ], [ -82.007853662469316, 28.769528563568631 ], [ -82.007880035876681, 28.769603483341687 ], [ -82.007909992485011, 28.769662582607229 ], [ -82.007947623447279, 28.769719343561082 ], [ -82.007982389221667, 28.76976413993896 ], [ -82.008023733350868, 28.769803447167881 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trailwinds Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008209077880522, 28.866390828030134 ], [ -82.008208334704364, 28.866692665734504 ], [ -82.008207108025715, 28.867191128902352 ], [ -82.008202675807908, 28.868992606536981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 69th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057874322754131, 28.857471390019288 ], [ -82.056976088282738, 28.857466872098765 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 69th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056976088282738, 28.857466872098765 ], [ -82.055902658433141, 28.857469763904444 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 73rd Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.225998079913154, 28.63262737031512 ], [ -82.22602425126145, 28.632595496980777 ], [ -82.226043824514491, 28.632546270979489 ], [ -82.22605022326448, 28.632471024586984 ], [ -82.226042259713324, 28.632380070755996 ], [ -82.226016836325101, 28.632196177487891 ], [ -82.226046340817348, 28.63137873320369 ], [ -82.226089229392329, 28.630775246269014 ], [ -82.226086576882508, 28.629536744519722 ], [ -82.2260932639402, 28.628492628823526 ], [ -82.226102481644091, 28.627774449413021 ], [ -82.226085179009118, 28.627351997561135 ], [ -82.226077809221806, 28.627155594864696 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 88th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.223954727481285, 28.627146701697946 ], [ -82.224235994372378, 28.627177251706623 ], [ -82.224492641263822, 28.627201639102076 ], [ -82.224756219215138, 28.627179493758334 ], [ -82.225118236539871, 28.627166490845834 ], [ -82.2254908175764, 28.627162772537091 ], [ -82.225828244116997, 28.627156009330371 ], [ -82.226077809221806, 28.627155594864696 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 634", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.199292818685009, 28.675122657322941 ], [ -82.199280639881536, 28.6747963737728 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656G", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189694589755831, 28.584886775655711 ], [ -82.189645276550124, 28.584788055886232 ], [ -82.189612360736334, 28.584698950295717 ], [ -82.189579384517074, 28.584576113428781 ], [ -82.189579237676057, 28.584494190898578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 656G", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189579237676057, 28.584494190898578 ], [ -82.189583559764472, 28.583860491670503 ], [ -82.189581648466543, 28.58279357389544 ], [ -82.189584683318444, 28.581745685790477 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 669", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.20395342982404, 28.603492197121845 ], [ -82.204615779772737, 28.603182569217658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 669", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.204615779772737, 28.603182569217658 ], [ -82.20580674297068, 28.60260376465521 ], [ -82.206010286446542, 28.602498790039846 ], [ -82.206189555695289, 28.602420689249655 ], [ -82.206326286472688, 28.602361440287385 ], [ -82.206447832168635, 28.602312947534941 ], [ -82.206545082051093, 28.602280594673338 ], [ -82.206654484451789, 28.60224285618628 ], [ -82.206791250468399, 28.6022023916004 ], [ -82.206900664232037, 28.602170021816182 ], [ -82.207070882558085, 28.60212950521483 ], [ -82.207292770481473, 28.602075491969345 ], [ -82.207420423260203, 28.602040408638363 ], [ -82.207502483568291, 28.602016128897841 ], [ -82.207566301481236, 28.601994562277397 ], [ -82.207624016757165, 28.601962268899378 ], [ -82.207663470605837, 28.601921953578334 ], [ -82.207699857291416, 28.601868221529674 ], [ -82.207714973455083, 28.601822574394127 ], [ -82.207714857416903, 28.601763531804984 ], [ -82.207712490636567, 28.601690272683634 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 127th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158842827237535, 28.570247591895033 ], [ -82.159441900745492, 28.570250300344092 ], [ -82.160270351694038, 28.570264298615054 ], [ -82.160512478618884, 28.570278436126202 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 127th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.160512478618884, 28.570278436126202 ], [ -82.160660363096653, 28.570276671215264 ], [ -82.161098781071473, 28.570263322858167 ], [ -82.161411285797172, 28.570280061016277 ], [ -82.161619599604975, 28.570277674921435 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181775893209576, 28.59240891905246 ], [ -82.181787057839813, 28.592417515202246 ], [ -82.181817742619018, 28.592431005776007 ], [ -82.181847034953833, 28.592444497298512 ], [ -82.181884686021064, 28.592456748670035 ], [ -82.18192651846627, 28.592467763655709 ], [ -82.181965552437958, 28.592473861898515 ], [ -82.182014336419854, 28.592476256532546 ], [ -82.182150923472705, 28.592477305731098 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189834183804308, 28.592514984537168 ], [ -82.189886448765691, 28.592514911707831 ], [ -82.189934107373375, 28.592515631218742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 47th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023876558300884, 28.61925376316016 ], [ -82.023828514067645, 28.619129401826527 ], [ -82.02376727945753, 28.618974454288395 ], [ -82.023727322808682, 28.618770197480064 ], [ -82.023729848145692, 28.618166799706209 ], [ -82.023729117749951, 28.6175919235889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 47th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024244528486022, 28.620586955696993 ], [ -82.024211295816983, 28.620492776127577 ], [ -82.02419866688129, 28.620441784387616 ], [ -82.024193305745257, 28.620261001577262 ], [ -82.024187939894603, 28.620068477519677 ], [ -82.02417194989097, 28.619960480144595 ], [ -82.024094742565524, 28.619772665091414 ], [ -82.023993577508691, 28.619535552045335 ], [ -82.023876558300884, 28.61925376316016 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 47th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024514789193745, 28.621322153058991 ], [ -82.024459600746141, 28.621169572567343 ], [ -82.024374398053425, 28.620941845916523 ], [ -82.024244528486022, 28.620586955696993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 47th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027365824900457, 28.625064955206224 ], [ -82.02733157501315, 28.624660287236889 ], [ -82.02729425187762, 28.624392640017259 ], [ -82.027304843649105, 28.624190723347724 ], [ -82.027416532536321, 28.623923047886418 ], [ -82.027498974005582, 28.623735203505294 ], [ -82.027568115638985, 28.623575536327902 ], [ -82.027631943931127, 28.623441696912632 ], [ -82.027673974891556, 28.623396985818815 ], [ -82.0277352729819, 28.623360910789742 ], [ -82.027803387490906, 28.623345870610866 ], [ -82.027888538142079, 28.6233488593471 ], [ -82.028100243531739, 28.623357081484066 ], [ -82.028289174028686, 28.623375824664759 ], [ -82.028361986998178, 28.623411872795234 ], [ -82.028411598510928, 28.623457976760982 ], [ -82.028507417919258, 28.623556565771519 ], [ -82.028559582958337, 28.623598158367813 ], [ -82.028621856295558, 28.62362932505188 ], [ -82.02870605131146, 28.62363719692949 ], [ -82.028808122939836, 28.623631634653847 ], [ -82.028983739526737, 28.623615164021377 ], [ -82.029063667657368, 28.623592043920112 ], [ -82.029124752800868, 28.623556437524496 ], [ -82.029186261410999, 28.623513882098937 ], [ -82.029231157730536, 28.623441370659386 ], [ -82.029257746698789, 28.623366610802986 ], [ -82.029265705701519, 28.623284058636187 ], [ -82.029225732883148, 28.623065716264595 ], [ -82.029145792348217, 28.622664252472045 ], [ -82.029052538264438, 28.622213485753804 ], [ -82.028993921734113, 28.621929407222762 ], [ -82.02896987168586, 28.621871862813538 ], [ -82.028932688208585, 28.621812028276267 ], [ -82.02879960194953, 28.621661793712686 ], [ -82.028709104300091, 28.621553812238794 ], [ -82.028653198372155, 28.621448170598075 ], [ -82.028623894566564, 28.621323740387886 ], [ -82.028599144876367, 28.621275699489996 ], [ -82.028539186791619, 28.621220414582751 ], [ -82.028424290546994, 28.621180563619294 ], [ -82.028171506267682, 28.621173570232244 ], [ -82.027902760064521, 28.621175972913509 ], [ -82.027655297856796, 28.621173673276328 ], [ -82.027569175171664, 28.621189354889527 ], [ -82.027500980963623, 28.621223008429151 ], [ -82.027443859365562, 28.621278333956308 ], [ -82.027415863478353, 28.62134511256351 ], [ -82.027419375061299, 28.621415378851566 ], [ -82.027442515317134, 28.62150945673439 ], [ -82.027441213510272, 28.621576455690878 ], [ -82.027416706098847, 28.621636564420584 ], [ -82.027219090741056, 28.621856982249867 ], [ -82.027064801939318, 28.622016666682619 ], [ -82.026939772533908, 28.622143473086979 ], [ -82.026844024481463, 28.622314884515887 ], [ -82.026727008767793, 28.622566126280621 ], [ -82.026631267089783, 28.622765711285886 ], [ -82.026599587486686, 28.622831607020359 ], [ -82.026562112761383, 28.622878421175898 ], [ -82.026375891458258, 28.623052195466009 ], [ -82.02622159220239, 28.623186053063424 ], [ -82.026000779424592, 28.623364529072628 ], [ -82.025838499326994, 28.623514821108905 ], [ -82.025692176372814, 28.623622848971372 ], [ -82.02564066548068, 28.623646806480835 ], [ -82.025567122961249, 28.623665134685879 ], [ -82.025512607121257, 28.623670872662657 ], [ -82.025439397732242, 28.623662810927602 ], [ -82.025370911613749, 28.623644451706955 ], [ -82.025302783304838, 28.623608402028339 ], [ -82.025143981746453, 28.623439817679078 ], [ -82.024920401431473, 28.623172202101735 ], [ -82.024774009815488, 28.622993793141745 ], [ -82.024730418520519, 28.622930522484076 ], [ -82.024708608104163, 28.622872824437064 ], [ -82.024697695699643, 28.622817530105962 ], [ -82.024696784377639, 28.622742586479948 ], [ -82.024752582435312, 28.622397443611057 ], [ -82.024781799522302, 28.622179088584875 ], [ -82.024787444651949, 28.622101064110755 ], [ -82.024779106488879, 28.622033522775762 ], [ -82.02469922857766, 28.621819883643145 ], [ -82.024514789193745, 28.621322153058991 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 47th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025731077526004, 28.625675930151857 ], [ -82.025947742022581, 28.625836972137442 ], [ -82.02617939942661, 28.626017243421931 ], [ -82.026397429932146, 28.626187900649626 ], [ -82.026569129601825, 28.626323704461058 ], [ -82.026740829822984, 28.626455902306397 ], [ -82.026866199346571, 28.626555652608292 ], [ -82.02694932235778, 28.626618145245093 ], [ -82.027024265947887, 28.626656598399041 ], [ -82.027107381710238, 28.626678218604546 ], [ -82.027193213943875, 28.62668060758828 ], [ -82.027276319113255, 28.626664962907508 ], [ -82.027349883195797, 28.626636099876329 ], [ -82.027475203077728, 28.626545917244783 ], [ -82.027742183430433, 28.626333093971692 ], [ -82.027885209569433, 28.626220068346743 ], [ -82.027979195808172, 28.626143114361518 ], [ -82.028030948930933, 28.62606977723723 ], [ -82.028063624650699, 28.625984422063222 ], [ -82.028067693802683, 28.625914699330284 ], [ -82.028052686539979, 28.625840171861945 ], [ -82.028009067391878, 28.625760841562329 ], [ -82.027921848816391, 28.62566829889208 ], [ -82.027682000415368, 28.625432735968808 ], [ -82.027510293647353, 28.62526567743307 ], [ -82.027435340478533, 28.625191161664336 ], [ -82.027384914452128, 28.625125056267812 ], [ -82.027365824900457, 28.625064955206224 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 94th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024244528486022, 28.620586955696993 ], [ -82.024776130936218, 28.620439044367654 ], [ -82.024866558593288, 28.620414172533888 ], [ -82.024945131986271, 28.620411543612594 ], [ -82.025041504275194, 28.620438997276736 ], [ -82.025145290441543, 28.620478222368114 ], [ -82.025224166974141, 28.620507249106971 ], [ -82.025302449522613, 28.620523979725917 ], [ -82.025390215082908, 28.620515591059842 ], [ -82.025458998035219, 28.620492554496494 ], [ -82.02550405845777, 28.620454872731308 ], [ -82.025536663440946, 28.620414053077759 ], [ -82.025612229391342, 28.620234823829776 ], [ -82.025658159190286, 28.620118391067216 ], [ -82.025681868804767, 28.620067631026298 ], [ -82.025724850537756, 28.620028117816698 ], [ -82.025786219488623, 28.619994356334747 ], [ -82.025864491499661, 28.619973411246274 ], [ -82.025987235658633, 28.619940423370892 ], [ -82.026098417918547, 28.619911623491383 ], [ -82.026199222165644, 28.619881517971191 ], [ -82.026276303301302, 28.619834410431842 ], [ -82.026342999485351, 28.619766373228654 ], [ -82.026384489739371, 28.619681337053002 ], [ -82.026396311873938, 28.619532206953497 ], [ -82.026397699895, 28.619152845935769 ], [ -82.026393221756763, 28.619033804707296 ], [ -82.026362069583669, 28.618951399883308 ], [ -82.026323508692059, 28.618889923507176 ], [ -82.02624936920877, 28.618833688262406 ], [ -82.026164855848194, 28.618791842721748 ], [ -82.026096657011848, 28.6187774649235 ], [ -82.025889104642218, 28.618773579137471 ], [ -82.025643006463142, 28.61876839259747 ], [ -82.025557015663381, 28.61874747762127 ], [ -82.025482879059282, 28.618709554039253 ], [ -82.025422084580853, 28.618654624307958 ], [ -82.025368698232896, 28.618587918577305 ], [ -82.02534050065033, 28.618455800370885 ], [ -82.025337439706291, 28.618058127118832 ], [ -82.025329979996471, 28.617867139204822 ], [ -82.025292893572342, 28.617762494317844 ], [ -82.025217263821602, 28.61767355435941 ], [ -82.025120891169891, 28.617621245855169 ], [ -82.025000803330215, 28.617599029131348 ], [ -82.024619800972303, 28.617595171283561 ], [ -82.024059416938499, 28.617590036602337 ], [ -82.023729117749951, 28.6175919235889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 6th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048477599223389, 28.609470637405103 ], [ -82.048448791537183, 28.609256454335206 ], [ -82.048412209345443, 28.609159735316481 ], [ -82.048352103081243, 28.608989324023216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 3rd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050594766052214, 28.60998566610084 ], [ -82.050590409874161, 28.6100749705693 ], [ -82.050593141685411, 28.610127535433467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060345905557497, 28.755093242021665 ], [ -82.060244787102008, 28.754810620185534 ], [ -82.060030216118605, 28.754217622746882 ], [ -82.059887187582476, 28.753854916590882 ], [ -82.059723155141583, 28.753484814084818 ], [ -82.059497881135087, 28.752992876306614 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 772", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033691492722099, 28.561884534330005 ], [ -82.033540785191789, 28.56149518798874 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 48th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02480588166064, 28.568160512808046 ], [ -82.024798667664669, 28.568065277722539 ], [ -82.024838183202746, 28.567900192756223 ], [ -82.024931617469207, 28.567643035400046 ], [ -82.024967538591497, 28.567481126381683 ], [ -82.024999865558812, 28.567322391543023 ], [ -82.024988184525242, 28.567195728517419 ], [ -82.024988050754345, 28.566628876158035 ], [ -82.024985699160553, 28.566413513480619 ], [ -82.024978747417094, 28.566208309332389 ], [ -82.024953313502124, 28.565710541454024 ], [ -82.024939367546708, 28.565127438351354 ], [ -82.02494618225434, 28.564751567226757 ], [ -82.024907023280576, 28.564593098586023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017814000307098, 28.566781089132768 ], [ -82.016977446284784, 28.567040299154321 ], [ -82.014408884243238, 28.567825545196204 ], [ -82.012433039924048, 28.568436256976096 ], [ -82.010608418328403, 28.568996103566416 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 10th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06297787678605, 28.620967102817943 ], [ -82.064002139625117, 28.620966630448727 ], [ -82.06515955787701, 28.62096909744384 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 738A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137003871075009, 28.611948414777689 ], [ -82.137058943767329, 28.611950158728558 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 98th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123285212653997, 28.61219083277744 ], [ -82.123416666698887, 28.612187197591606 ], [ -82.12396634060147, 28.612137485973015 ], [ -82.124428426003121, 28.612130035469043 ], [ -82.124866606085703, 28.612119090644491 ], [ -82.12528484696935, 28.61209058422358 ], [ -82.126204951383244, 28.612008886127118 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 13th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126204951383244, 28.612008886127118 ], [ -82.1262775869682, 28.611954771507829 ], [ -82.126367079783421, 28.611840442548445 ], [ -82.126386861319276, 28.611726178992647 ], [ -82.126336531443755, 28.611278029775754 ], [ -82.126306471970068, 28.611124264588156 ], [ -82.126266073936605, 28.610654136843415 ], [ -82.126339812717418, 28.610157767189275 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 98th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.098585994655053, 28.61196623967275 ], [ -82.096020724791373, 28.611968064545135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 97th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096022290870593, 28.613691151338376 ], [ -82.095679459338257, 28.61371203077826 ], [ -82.095050491456718, 28.613720073252715 ], [ -82.094244894446277, 28.613728233691731 ], [ -82.093870024064131, 28.613648658672453 ], [ -82.093559836893377, 28.613637466454104 ], [ -82.092973956672324, 28.613653072942416 ], [ -82.092650661903519, 28.613639076760261 ], [ -82.092353581779108, 28.613634485254526 ], [ -82.092189879410498, 28.613638397195487 ], [ -82.092064976176871, 28.613672695310221 ], [ -82.091957317371651, 28.613722187054933 ], [ -82.09189272703108, 28.613756444468912 ], [ -82.091806580763816, 28.61377170761989 ], [ -82.091716093624669, 28.613752761403504 ], [ -82.091504990058638, 28.613741498043151 ], [ -82.091190490470453, 28.613726501729094 ], [ -82.090104888719239, 28.613718200040488 ], [ -82.089922563527267, 28.613716572111038 ], [ -82.089740248736945, 28.613727183270004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 101st Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09561484896021, 28.607534114917424 ], [ -82.095526985301689, 28.607670316961539 ], [ -82.095385326288863, 28.607897319310045 ], [ -82.095273215224623, 28.608103868327682 ], [ -82.09522159987128, 28.608191340174553 ], [ -82.095152757467474, 28.608282624641813 ], [ -82.095040721150454, 28.608244686898693 ], [ -82.094795075756679, 28.608134612930478 ], [ -82.094588238885706, 28.608066328869352 ], [ -82.094342656490824, 28.608024681240678 ], [ -82.094118610106023, 28.607979217695895 ], [ -82.093799677751775, 28.607804564855631 ], [ -82.093622979118095, 28.607717251747776 ], [ -82.093510899190235, 28.60762989155937 ], [ -82.093381594877982, 28.607550148862707 ], [ -82.093140254959366, 28.607432464916371 ], [ -82.092941990369667, 28.607310950630193 ], [ -82.092717898377103, 28.607212264729316 ], [ -82.092377491453135, 28.607106050282983 ], [ -82.09216634805361, 28.60703396385685 ], [ -82.092037090813918, 28.607007441709243 ], [ -82.091946637935294, 28.607018905388365 ], [ -82.091890667288908, 28.607053157038724 ], [ -82.091869161323487, 28.607091187098561 ], [ -82.09190898528685, 28.608303849585525 ], [ -82.09190529903961, 28.609018540183357 ], [ -82.091914689634038, 28.609908091912104 ], [ -82.091901839878986, 28.609995534631533 ], [ -82.091863131132456, 28.610063988710202 ], [ -82.091785612843069, 28.610094453205139 ], [ -82.091686549061535, 28.610113527409613 ], [ -82.091548689807723, 28.610106016574015 ], [ -82.091251444855743, 28.610106215078346 ], [ -82.090971429360437, 28.610102599919962 ], [ -82.090794816181571, 28.61011412187317 ], [ -82.090221935256068, 28.610123925630461 ], [ -82.0900107838617, 28.610122242815759 ], [ -82.089911722964843, 28.610145117282659 ], [ -82.089816200816998, 28.610214675551418 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 116th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149768647776213, 28.586921024528223 ], [ -82.149922544656576, 28.586987217386149 ], [ -82.149994190474061, 28.586999783162639 ], [ -82.150108812526938, 28.587009773257808 ], [ -82.1502921980032, 28.587019687521245 ], [ -82.15049276280044, 28.587021994787641 ], [ -82.150644631639921, 28.587031942434965 ], [ -82.150805091432872, 28.587039351149457 ], [ -82.151085885405905, 28.587044098997158 ], [ -82.151395339854545, 28.587053872090586 ], [ -82.151701913297487, 28.587053531518634 ], [ -82.151879552384742, 28.587053332960281 ], [ -82.152031382428021, 28.587035463484462 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crestview Circle East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029255558432922, 28.866969980047664 ], [ -82.029264363662421, 28.867338492289505 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crestview Circle East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029264363662421, 28.867338492289505 ], [ -82.029264433119693, 28.867586551619667 ], [ -82.029268073742983, 28.867856592990464 ], [ -82.029268119660102, 28.868023012837824 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crestview Circle East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029268119660102, 28.868023012837824 ], [ -82.029264601014603, 28.868198854382396 ], [ -82.029264637397802, 28.868330734067808 ], [ -82.029264672048939, 28.868456334625126 ], [ -82.029268267103021, 28.868553673395958 ], [ -82.029280328173485, 28.868595716345556 ], [ -82.029296825155427, 28.868632168585233 ], [ -82.029320702288715, 28.868664081572629 ], [ -82.029353918394449, 28.868694956724408 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridge Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031543964296802, 28.868025651594124 ], [ -82.029268119660102, 28.868023012837824 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cypress Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124487020636593, 28.667004614519602 ], [ -82.12448944420872, 28.666696128287366 ], [ -82.124490428321522, 28.666349544167414 ], [ -82.124487506477195, 28.666235247465565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cypress Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124143202173371, 28.667000281829228 ], [ -82.124487020636593, 28.667004614519602 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cypress Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042738313399127, 28.842854249887786 ], [ -82.042282107821876, 28.842633512138441 ], [ -82.042265972449869, 28.842623372482535 ], [ -82.04224522025217, 28.842594971570492 ], [ -82.042235989031454, 28.842564537822483 ], [ -82.042233670703112, 28.842528014988766 ], [ -82.042245178908288, 28.842491488800519 ], [ -82.042279714833768, 28.842410315725068 ], [ -82.042314707478013, 28.842318185795452 ], [ -82.04233495553791, 28.842241885953989 ], [ -82.042349678619246, 28.842180197053487 ], [ -82.042358871260262, 28.842116887511942 ], [ -82.042366229771943, 28.842074680770416 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cypress Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042366229771943, 28.842074680770416 ], [ -82.042377263388602, 28.842004876760498 ], [ -82.042384610449147, 28.841936697136795 ], [ -82.042390116509409, 28.841875013783266 ], [ -82.042386411099145, 28.84182956215475 ], [ -82.042382702439653, 28.841775996086938 ], [ -82.042373466259519, 28.841730547970421 ], [ -82.042364227486374, 28.841678607760343 ], [ -82.042354989095941, 28.84162504159324 ], [ -82.042342064736829, 28.841579594612003 ], [ -82.042330986302034, 28.841537392655287 ], [ -82.042316216802675, 28.841485454146607 ], [ -82.042303292852338, 28.841438382106897 ], [ -82.042288522731582, 28.841384820345521 ], [ -82.042277442392461, 28.841337749538994 ], [ -82.042270049232741, 28.841290677595318 ], [ -82.042264503555984, 28.841253343673742 ], [ -82.042258957234509, 28.84121438650288 ], [ -82.042251565013245, 28.84117218520645 ], [ -82.042247865902127, 28.841139721364367 ], [ -82.04224416409528, 28.841105634273784 ], [ -82.042244152422441, 28.841076414891788 ], [ -82.04224597811762, 28.841034209853639 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holly Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041759662910337, 28.842024545096102 ], [ -82.041763326386999, 28.841964483773058 ], [ -82.041763301386368, 28.841901177074167 ], [ -82.041759589196701, 28.841837870594389 ], [ -82.041752193029424, 28.841782681479398 ], [ -82.041741108404452, 28.84172424879219 ], [ -82.041728186348905, 28.84167880175152 ], [ -82.041718955968562, 28.841644716329771 ], [ -82.041707875728278, 28.841602514322325 ], [ -82.041696796522089, 28.841560313215641 ], [ -82.041685718094769, 28.841514865609533 ], [ -82.041670945974204, 28.84145805547848 ], [ -82.041658025006498, 28.841412607526514 ], [ -82.041646943284064, 28.841363914321423 ], [ -82.041634013259994, 28.841300611532095 ], [ -82.041630308198847, 28.841255160780342 ], [ -82.041626604804975, 28.841211334179061 ], [ -82.041626585637871, 28.841162636712795 ], [ -82.041626569026434, 28.841120432241741 ], [ -82.041624707170016, 28.841076604178667 ], [ -82.041624688895752, 28.841032776458473 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holly Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041713423615448, 28.842191511069387 ], [ -82.041722418889833, 28.842162051647144 ], [ -82.041728841802922, 28.842134860501865 ], [ -82.041737834385515, 28.842098604006626 ], [ -82.041748114546309, 28.84206348041549 ], [ -82.041759662910337, 28.842024545096102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sunset Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042366229771943, 28.842074680770416 ], [ -82.041759662910337, 28.842024545096102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holly Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041689215227422, 28.841032756873631 ], [ -82.041698335847144, 28.840786020234571 ], [ -82.041706664267977, 28.839972759898885 ], [ -82.041740385253135, 28.839891996826893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Autumn Leaf Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04092895597546, 28.844321748056093 ], [ -82.040928821927821, 28.843978003821771 ], [ -82.040921959851929, 28.843946344853855 ], [ -82.040906538277326, 28.843919211696392 ], [ -82.040879131715613, 28.843895097613373 ], [ -82.040844878701179, 28.843877015672927 ], [ -82.040814054375772, 28.843874009334872 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sunnyside Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041271840372872, 28.845389064155846 ], [ -82.040619429291027, 28.845390765645217 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sunnyside Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040617679623267, 28.845291260783487 ], [ -82.039992559405505, 28.845290975111581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sunnyside Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039992559405505, 28.845290975111581 ], [ -82.039370114191186, 28.84528851663265 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sunnyside Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039370114191186, 28.84528851663265 ], [ -82.038749382446198, 28.845288692237993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palmetto Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040620494772128, 28.845936912948304 ], [ -82.040619429291027, 28.845390765645217 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palmetto Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040619429291027, 28.845390765645217 ], [ -82.040617679623267, 28.845291260783487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palmetto Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040617679623267, 28.845291260783487 ], [ -82.040617407507014, 28.844582664750618 ], [ -82.040619060471172, 28.844430391118664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Village Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038881830211423, 28.846615481864383 ], [ -82.038895278514659, 28.846231876335288 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Martin Luther King Jr Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042722045045679, 28.863418593820381 ], [ -82.042909374800871, 28.862994105302395 ], [ -82.04302024546125, 28.862754906889275 ], [ -82.043096705461025, 28.862583091499975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Martin Luther King Jr Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043096705461025, 28.862583091499975 ], [ -82.043161412773813, 28.862381415328102 ], [ -82.043287792931238, 28.862003650454351 ], [ -82.043394617881958, 28.861741418976674 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Martin Luther King Jr Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043394617881958, 28.861741418976674 ], [ -82.043508586921476, 28.861470465274316 ], [ -82.043824021162806, 28.860804750664137 ], [ -82.044142099131747, 28.860127357694701 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Martin Luther King Jr Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044142099131747, 28.860127357694701 ], [ -82.044205709892964, 28.859983471158486 ], [ -82.044608074467703, 28.859136025060561 ], [ -82.044650477830757, 28.859031381887689 ], [ -82.044667437273063, 28.858986535462737 ], [ -82.044673788728943, 28.858947296706365 ], [ -82.044663156582374, 28.858900590609711 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Martin Luther King Jr Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044663156582374, 28.858900590609711 ], [ -82.044650408318077, 28.858866964096922 ], [ -82.044629172494311, 28.858840812328054 ], [ -82.044605819996377, 28.858824004602134 ], [ -82.0445235642851, 28.85878993330893 ], [ -82.043793239280575, 28.85857274062348 ], [ -82.043604453142848, 28.858510263068414 ], [ -82.043133503335511, 28.858354959627416 ], [ -82.042965010100986, 28.85828532673046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031557091504283, 28.927484695773959 ], [ -82.031889499388654, 28.927486931368541 ], [ -82.032261633271702, 28.927486843304504 ], [ -82.032888201010266, 28.927490201445533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023561056511284, 28.927422444973498 ], [ -82.023971837224337, 28.927423925155676 ], [ -82.024772415140163, 28.927425937226378 ], [ -82.025536270995715, 28.927430106942325 ], [ -82.026092023390802, 28.927432154592012 ], [ -82.02666326936675, 28.927435886941129 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020303150810179, 28.92740777066113 ], [ -82.020705866937689, 28.927409377484874 ], [ -82.021168587954051, 28.927413614941749 ], [ -82.021736582082625, 28.927415680497635 ], [ -82.022294783537433, 28.927417744337749 ], [ -82.023401392788799, 28.927421870347757 ], [ -82.023561056511284, 28.927422444973498 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015941567541418, 28.927375546317595 ], [ -82.016742145297727, 28.927379759012847 ], [ -82.017378690756601, 28.927386143145789 ], [ -82.018154787943189, 28.927390351403126 ], [ -82.019043502562425, 28.927396693535428 ], [ -82.019824496011495, 28.927405199954546 ], [ -82.020303150810179, 28.92740777066113 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013681231354369, 28.927359901001278 ], [ -82.014448133566859, 28.927364938173778 ], [ -82.015207091227126, 28.927369165191799 ], [ -82.015789775706565, 28.927375563595813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014348798188365, 28.927232290242436 ], [ -82.012285687968088, 28.927224784938662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008556220647833, 28.92730396526753 ], [ -82.009216220016867, 28.927320145819166 ], [ -82.009285581088292, 28.927319839062591 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004038172257765, 28.927262226996639 ], [ -82.004231582825241, 28.927262221832191 ], [ -82.004957551143789, 28.927267677804224 ], [ -82.005367573142721, 28.927270801007349 ], [ -82.005955150657272, 28.927275086214472 ], [ -82.006588213672899, 28.927278399561089 ], [ -82.007168520450676, 28.92728018314812 ], [ -82.007398143104695, 28.927284026253105 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000421841353116, 28.927024655589801 ], [ -82.000481271150093, 28.927041165831849 ], [ -82.000629622646159, 28.927080019560997 ], [ -82.00077221227312, 28.927113656063895 ], [ -82.00089462276847, 28.927137348271732 ], [ -82.001002347364945, 28.927156732860752 ], [ -82.001124757933184, 28.927176117300476 ], [ -82.001244722412153, 28.927193346960031 ], [ -82.001369582222949, 28.927208423605578 ], [ -82.001496892267639, 28.927221346338566 ], [ -82.001624201267717, 28.927229959588008 ], [ -82.001749061121458, 28.927240728322918 ], [ -82.001871472709652, 28.927242880946988 ], [ -82.002253401613331, 28.927247184185909 ], [ -82.002747947388087, 28.927251485443758 ], [ -82.003246269586796, 28.927256788161746 ], [ -82.003463803847211, 28.92725496097631 ], [ -82.003699986152071, 28.927256778276568 ], [ -82.00389887675307, 28.927260418734814 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972924973332908, 28.920036485013163 ], [ -81.971670433083759, 28.920039989709117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966132204745776, 28.920160255581045 ], [ -81.966445119637228, 28.920158963728166 ], [ -81.966944528899106, 28.920159086980124 ], [ -81.967321534625768, 28.92015917947781 ], [ -81.968166123090427, 28.920157229986412 ], [ -81.968716942969948, 28.920159512655875 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.161837279413604, 28.654232656574742 ], [ -82.16187500604353, 28.654192613098754 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099154876257174, 28.617512570730515 ], [ -82.098840166359864, 28.617532923440471 ], [ -82.098639471867642, 28.617537093687595 ], [ -82.098438779403011, 28.617541262733823 ], [ -82.09817430044771, 28.617540499984404 ], [ -82.097968676349197, 28.617534090140282 ], [ -82.097688727461218, 28.617521173086555 ], [ -82.097379038413678, 28.617497349302312 ], [ -82.097163494408392, 28.617475642524472 ], [ -82.096930600103605, 28.617447390400081 ], [ -82.096373111058483, 28.617345043973117 ], [ -82.095888750761944, 28.61725328349122 ], [ -82.095230866160961, 28.617120688606029 ], [ -82.094933532255553, 28.617057502309386 ], [ -82.094509839974251, 28.616976915370959 ], [ -82.093967213349757, 28.616867990564224 ], [ -82.093313095066748, 28.616741651422426 ], [ -82.092824980585235, 28.616645801256951 ], [ -82.092277402024536, 28.616534687569391 ], [ -82.091489495141488, 28.616388755159161 ], [ -82.090741222481995, 28.61623623639295 ], [ -82.090310101751754, 28.616151267595328 ], [ -82.089727888174053, 28.616035376825309 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104327214739072, 28.616705503217013 ], [ -82.104443075539294, 28.6166875339778 ], [ -82.106372479771451, 28.616378387927178 ], [ -82.106685186199229, 28.616327272984094 ], [ -82.106939220302692, 28.616290520664982 ], [ -82.107080042655099, 28.616268479035579 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104327214739072, 28.616705503217013 ], [ -82.102282410027129, 28.617036424960652 ], [ -82.100669842673199, 28.617299893127299 ], [ -82.100266699260771, 28.61736354802084 ], [ -82.100092739416013, 28.617392918491849 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Center Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111641178190268, 28.657529082921361 ], [ -82.111638470880465, 28.656706317151901 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Clarke Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036084699765269, 28.872690680495918 ], [ -82.035506953320166, 28.872696195313797 ], [ -82.03546182326231, 28.872697949321537 ], [ -82.035390267717347, 28.872694560688185 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walden Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033077413540823, 28.870960768263362 ], [ -82.033056045598769, 28.871160186761138 ], [ -82.033056069810456, 28.871241032153698 ], [ -82.033059151904496, 28.871305705745776 ], [ -82.033062227929221, 28.871354210981156 ], [ -82.033089606697516, 28.871406602000967 ], [ -82.033130265763759, 28.871437262373377 ], [ -82.033184471139435, 28.871457695476149 ], [ -82.033269644028636, 28.871467897981287 ], [ -82.033377594710984, 28.871470010275321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stanley Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033481776512417, 28.866918489387668 ], [ -82.033481903211793, 28.86731597097307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stanley Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033481903211793, 28.86731597097307 ], [ -82.033486306002416, 28.869141687689883 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stanley Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033493605274145, 28.863835874879143 ], [ -82.033497417510233, 28.864423231959705 ], [ -82.033499324150554, 28.864718506655176 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Knight Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037086604454274, 28.867316514174917 ], [ -82.036654214555227, 28.867298319873747 ], [ -82.036214149696306, 28.867305172334351 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Knight Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036214149696306, 28.867305172334351 ], [ -82.035433506604178, 28.867308744237469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Knight Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035433506604178, 28.867308744237469 ], [ -82.035276609912628, 28.867298679722843 ], [ -82.034710261238757, 28.867302192245706 ], [ -82.034522754217548, 28.867305606866548 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Knight Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034522754217548, 28.867305606866548 ], [ -82.033481903211793, 28.86731597097307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Gulf Atlantic Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045354759302541, 28.847285590068363 ], [ -82.045493746722059, 28.847279427254065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Kings Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008030579949335, 28.649928068501751 ], [ -82.008230351969772, 28.649928057785061 ], [ -82.009709917900096, 28.649942533843252 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984459195537852, 28.655238483148004 ], [ -81.984458631808366, 28.655238954101094 ], [ -81.984029121546868, 28.655591850723521 ], [ -81.98355031193428, 28.655996787475281 ], [ -81.983058490818308, 28.6564050838635 ], [ -81.982240993693509, 28.657084922938008 ], [ -81.981306069129218, 28.657862434610411 ], [ -81.980249275797178, 28.658739568416213 ], [ -81.977849827822183, 28.660734090838048 ], [ -81.976691058304979, 28.66169715045082 ], [ -81.97532842482012, 28.662828194416772 ], [ -81.974393398408907, 28.663601749782458 ], [ -81.9740898424471, 28.663857647534073 ], [ -81.973770776996744, 28.664119404930481 ], [ -81.972419160324378, 28.665240650959465 ], [ -81.971938332533057, 28.665643047190052 ], [ -81.969722486855588, 28.667483107151806 ], [ -81.969150787262492, 28.667955812454331 ], [ -81.967291618413199, 28.669496970516512 ], [ -81.966363119597744, 28.670272425814407 ], [ -81.964882814648902, 28.671497120622011 ], [ -81.963539871869742, 28.672614372115277 ], [ -81.961587459270461, 28.674233581158404 ], [ -81.960563582942441, 28.675083215575611 ], [ -81.959586228956582, 28.675893777915082 ], [ -81.958145657910507, 28.677089101423174 ], [ -81.95740763424763, 28.677694565944961 ], [ -81.956988749445685, 28.678044174962949 ], [ -81.956782351466899, 28.678220445344397 ], [ -81.956581496110744, 28.678385237724275 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Kings Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986887697373959, 28.65344992500463 ], [ -81.986738860500211, 28.653550655945057 ], [ -81.986617713383481, 28.653639179114997 ], [ -81.986465414281597, 28.653739910305912 ], [ -81.98631726998164, 28.65383416930198 ], [ -81.986135619051808, 28.653953337214602 ], [ -81.985969472294443, 28.654068596701919 ], [ -81.985867569392155, 28.654138924735001 ], [ -81.98576123611727, 28.654215115590276 ], [ -81.985629845697119, 28.654301951209661 ], [ -81.985500478884362, 28.654400822267998 ], [ -81.985386637287107, 28.654486004679896 ], [ -81.985252093963879, 28.654590960278 ], [ -81.985160675369144, 28.654662452949662 ], [ -81.985076153956527, 28.65473090275669 ], [ -81.984941568930552, 28.654844169447358 ], [ -81.9848225908882, 28.654937774097352 ], [ -81.984705297151578, 28.655033603993715 ], [ -81.984459195537852, 28.655238483148004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fifth Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044908834348433, 28.868414839612562 ], [ -82.044906097952818, 28.86989306196098 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fifth Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044906097952818, 28.86989306196098 ], [ -82.044906907070953, 28.871794902869691 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gray Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045511790457894, 28.861869182548091 ], [ -82.045514240716386, 28.861404419634578 ], [ -82.045519244992178, 28.860701436857788 ], [ -82.045508596182671, 28.860617361941586 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gray Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045508596182671, 28.860617361941586 ], [ -82.045524464659294, 28.860502917492507 ], [ -82.045526672611359, 28.859469231293541 ], [ -82.045526629311382, 28.859368804894807 ], [ -82.045526597692827, 28.859295471065185 ], [ -82.045521270334802, 28.859246427210465 ], [ -82.045502685035359, 28.859211401443929 ], [ -82.045468186573729, 28.859186656397576 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hazel Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036167113504604, 28.858166437931679 ], [ -82.036173433303304, 28.859128974566467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "High Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044142099131747, 28.860127357694701 ], [ -82.044956685170135, 28.860412021204819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "High Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044956685170135, 28.860412021204819 ], [ -82.045508596182671, 28.860617361941586 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "High Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045508596182671, 28.860617361941586 ], [ -82.045698293528304, 28.860640032273103 ], [ -82.046086236676416, 28.860654702662778 ], [ -82.046280514203247, 28.860650251896718 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "High Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046280514203247, 28.860650251896718 ], [ -82.046905697211812, 28.86065003899208 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Industrial Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055910382829836, 28.8534485161282 ], [ -82.055892179828618, 28.852706572178587 ], [ -82.05581698657933, 28.852575303194953 ], [ -82.055797481917423, 28.852501865383871 ], [ -82.055777997733671, 28.852465152257064 ], [ -82.055752947591245, 28.852421094836359 ], [ -82.055730679563737, 28.852381933984251 ], [ -82.055697286848641, 28.852337879957044 ], [ -82.055636073649026, 28.852266908881575 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neptune Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019536772575321, 28.903035632695236 ], [ -82.019201379362755, 28.903018824518036 ], [ -82.018992933196458, 28.903006625208498 ], [ -82.018893790088072, 28.902992876860925 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neptune Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019816658387569, 28.902218510331188 ], [ -82.019892291548885, 28.90221893803276 ], [ -82.019997455415549, 28.902245364782242 ], [ -82.020095117323379, 28.902308141631753 ], [ -82.02015146653855, 28.902380842480113 ], [ -82.02018152729768, 28.902460155563897 ], [ -82.020189057005595, 28.902559302635993 ], [ -82.020181576731559, 28.902721243742576 ], [ -82.020170327709224, 28.902810478184012 ], [ -82.020129028452601, 28.902893106747115 ], [ -82.02007270386909, 28.902952603441197 ], [ -82.019997594898101, 28.90298896788731 ], [ -82.019914970584594, 28.903002199340452 ], [ -82.01971967535583, 28.903025362148291 ], [ -82.019536772575321, 28.903035632695236 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neptune Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018185147100866, 28.902936119267789 ], [ -82.01804835206228, 28.902959490355574 ], [ -82.017789209847194, 28.902995878200294 ], [ -82.017535702714511, 28.903030611827095 ], [ -82.017427539299547, 28.903041201231172 ], [ -82.017370449080545, 28.90303063161269 ], [ -82.017283542874679, 28.90300251776771 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046905697211812, 28.86065003899208 ], [ -82.046895319509773, 28.859715963351839 ], [ -82.046895277624557, 28.859621678941402 ], [ -82.046897746851982, 28.859573438229599 ], [ -82.04689522112777, 28.859494502855622 ], [ -82.046877767012404, 28.85945284766758 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lawrence Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042504313200325, 28.866265704955278 ], [ -82.042672689609844, 28.866276432408309 ], [ -82.044298252599404, 28.866283999821945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moss Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042908059706008, 28.865411332712501 ], [ -82.043122372299749, 28.865467855133154 ], [ -82.043263204809762, 28.86550014834804 ], [ -82.043392833500874, 28.865521412507515 ], [ -82.044440249829492, 28.865529327149904 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moss Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042194694557566, 28.865198664047821 ], [ -82.042908059706008, 28.865411332712501 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moss Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041475185560913, 28.864924016057103 ], [ -82.042121206188895, 28.865155571012941 ], [ -82.042194694557566, 28.865198664047821 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04142695966118, 28.866848109719879 ], [ -82.041653523706557, 28.866915410565884 ], [ -82.041870911165987, 28.866998881297732 ], [ -82.042082186097673, 28.867106610162665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038042324739962, 28.868884764297164 ], [ -82.037878972671237, 28.869232224894759 ], [ -82.037748287239907, 28.869499504002153 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038317682981898, 28.868288530839497 ], [ -82.038042324739962, 28.868884764297164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038618715666303, 28.867659396999777 ], [ -82.038317682981898, 28.868288530839497 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038897279732922, 28.867060012324512 ], [ -82.038618715666303, 28.867659396999777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040188831846521, 28.864313733099578 ], [ -82.039878523525132, 28.864973155609828 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040501168495965, 28.863650736098915 ], [ -82.040188831846521, 28.864313733099578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040821614482937, 28.862980944265892 ], [ -82.040706004715588, 28.863211119248472 ], [ -82.040501168495965, 28.863650736098915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04113190397608, 28.862298291423393 ], [ -82.040821614482937, 28.862980944265892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Palmer Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032684040064268, 28.859966092523344 ], [ -82.032701771366362, 28.860047139571684 ], [ -82.032712429731859, 28.860162479456662 ], [ -82.032719561354568, 28.860321461911067 ], [ -82.032719729819618, 28.860866997509625 ], [ -82.032726836467958, 28.860944930510676 ], [ -82.032733945954249, 28.861035332446409 ], [ -82.03276230618556, 28.861131962439572 ], [ -82.032797749009802, 28.861231708197685 ], [ -82.032850894437715, 28.861325217509066 ], [ -82.032889869041725, 28.861393790508277 ], [ -82.032907597784032, 28.861468600788491 ], [ -82.032932411112441, 28.861549646996508 ], [ -82.032939534443059, 28.861680574077514 ], [ -82.032939580053721, 28.861823971784673 ], [ -82.032990979037862, 28.862584666433257 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Street Clair Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028866687396516, 28.860950449680384 ], [ -82.028877447140601, 28.860417647777446 ], [ -82.02885566595765, 28.859393929735791 ], [ -82.02886323384287, 28.858159880082134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Street Clair Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02886323384287, 28.858159880082134 ], [ -82.028877886003272, 28.857419649100848 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Street Clair Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028877886003272, 28.857419649100848 ], [ -82.028886487971775, 28.85652948426744 ], [ -82.028886449833863, 28.856389339240948 ], [ -82.028889382702744, 28.856334838531886 ], [ -82.028892310693394, 28.856269957711969 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Phillips Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030178427807854, 28.854537790906974 ], [ -82.03018889478399, 28.854489351996257 ], [ -82.030188880014876, 28.854437448723008 ], [ -82.030191316776495, 28.85264933527149 ], [ -82.030194024634625, 28.851803288343813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037120997931396, 28.887308788111117 ], [ -82.037117304497414, 28.88695987862647 ], [ -82.03711899157517, 28.886409825070789 ], [ -82.037118991550471, 28.886409754691385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03709502042085, 28.889574889309497 ], [ -82.037114266895756, 28.888481254992431 ], [ -82.03711403057163, 28.887805438583925 ], [ -82.037120997931396, 28.887308788111117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037077209422037, 28.890576422612522 ], [ -82.03709502042085, 28.889574889309497 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037082220716059, 28.900995181381212 ], [ -82.037082224481736, 28.900994224943897 ], [ -82.03708577426967, 28.899939886418601 ], [ -82.037085618899297, 28.899874096264757 ], [ -82.037085616573265, 28.899873312167948 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040100966250023, 28.86273101226319 ], [ -82.039725387131256, 28.862580664275445 ], [ -82.039349830415105, 28.862443546608134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039349830415105, 28.862443546608134 ], [ -82.038584513025199, 28.862178958642659 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038584513025199, 28.862178958642659 ], [ -82.037151323960231, 28.861659392530299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spring Lake Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045402090755431, 28.844519552019342 ], [ -82.044255568087962, 28.844517389770942 ], [ -82.044218696143915, 28.844521967337737 ], [ -82.044183555532655, 28.84452755852816 ], [ -82.044149569598758, 28.844542279770167 ], [ -82.044112706745551, 28.84456866964593 ], [ -82.044080453671711, 28.844593028743581 ], [ -82.044045897464017, 28.84462144714502 ], [ -82.044004428493764, 28.844653924523591 ], [ -82.043972176213131, 28.844680313782941 ], [ -82.043923799687491, 28.84472699745001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spring Lake Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043923799687491, 28.84472699745001 ], [ -82.04381087243307, 28.844722976817966 ], [ -82.043709472976957, 28.844723009183557 ], [ -82.043587329182159, 28.844723047167001 ], [ -82.043400658833193, 28.844723106381753 ], [ -82.043340739214756, 28.844719065860549 ], [ -82.043290036802446, 28.844715026012395 ], [ -82.043237028750184, 28.844708953977147 ], [ -82.043174801019603, 28.84469679967372 ], [ -82.043098743173019, 28.844676532545662 ], [ -82.043022681028205, 28.844648150037294 ], [ -82.042951224846632, 28.844615707471743 ], [ -82.042891293781778, 28.844583261264145 ], [ -82.042824444836654, 28.844544729332412 ], [ -82.04277142499194, 28.844504164671701 ], [ -82.042718402113465, 28.84446359908846 ], [ -82.042674597681753, 28.844421003134876 ], [ -82.042635403920215, 28.844378404831314 ], [ -82.042603125005741, 28.844341890421564 ], [ -82.042580067779809, 28.844311461901555 ], [ -82.042538565213334, 28.844258719660569 ], [ -82.042492447983065, 28.844195831503757 ], [ -82.042148879228066, 28.843721135990997 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Perry Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040343848107213, 28.86841949363648 ], [ -82.040249179015163, 28.8690312375589 ], [ -82.040255637363572, 28.869912430657777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pine Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023444478536604, 28.860870833687549 ], [ -82.02344000212436, 28.860352434600021 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pine Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045405319709602, 28.852087327098754 ], [ -82.044613788252008, 28.85207865258517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pine Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044613788252008, 28.85207865258517 ], [ -82.04382239120909, 28.85207992941417 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pine Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04382239120909, 28.85207992941417 ], [ -82.042983596597296, 28.852074843492083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pine Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042983596597296, 28.852074843492083 ], [ -82.04218329972241, 28.852076877745692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rice Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046252016111566, 28.859427232172091 ], [ -82.046360947358096, 28.859423643842636 ], [ -82.046439621275937, 28.859423616262756 ], [ -82.046516279096764, 28.859423590224679 ], [ -82.046693799180687, 28.859423530662102 ], [ -82.046820887781863, 28.859422696812945 ], [ -82.046877767012404, 28.85945284766758 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ross Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039934192836895, 28.869928693958496 ], [ -82.040255637363572, 28.869912430657777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ross Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040255637363572, 28.869912430657777 ], [ -82.040779129881173, 28.86988532950593 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ross Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040779129881173, 28.86988532950593 ], [ -82.041905730510734, 28.869882293410363 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ross Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041905730510734, 28.869882293410363 ], [ -82.042720068243653, 28.869882041775629 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ross Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042720068243653, 28.869882041775629 ], [ -82.043816061964691, 28.86989516942473 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ross Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043816061964691, 28.86989516942473 ], [ -82.044906097952818, 28.86989306196098 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rutland Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041600855274908, 28.86249469865124 ], [ -82.041892921671945, 28.861942487456052 ], [ -82.041917263509319, 28.861904955012566 ], [ -82.041929428198458, 28.861869215559043 ], [ -82.041931444904051, 28.861837052331992 ], [ -82.041919253990969, 28.861806680915127 ], [ -82.041896918264996, 28.861785247208921 ], [ -82.041850228304753, 28.861767391354061 ], [ -82.041460454552535, 28.86161027169836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100705380118441, 28.754103091204385 ], [ -82.100638069434595, 28.754171277527373 ], [ -82.100602330274285, 28.754207968629366 ], [ -82.100558498803537, 28.754252029494854 ], [ -82.1005379257237, 28.754271143096421 ], [ -82.100516268181551, 28.754286916216103 ], [ -82.100493522311922, 28.754297438652152 ], [ -82.100430147117976, 28.754318016652601 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.1010700813097, 28.753615966541165 ], [ -82.10104639238341, 28.7536198415009 ], [ -82.100999397876393, 28.753655830926711 ], [ -82.100890484012083, 28.75380923138437 ], [ -82.100829093968557, 28.753889180534177 ], [ -82.100781742248301, 28.753972698770529 ], [ -82.100731772619795, 28.754046936793042 ], [ -82.100705380118441, 28.754103091204385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100705380118441, 28.754103091204385 ], [ -82.100664538500382, 28.754188899180619 ], [ -82.100653320112841, 28.754242385055932 ], [ -82.100652588221763, 28.754313477310713 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100922739412169, 28.754305657569102 ], [ -82.100887002918128, 28.754288310811997 ], [ -82.100858262895287, 28.754264457680001 ], [ -82.100844318400746, 28.754248851601329 ], [ -82.100831027824199, 28.754227490062824 ], [ -82.100814748510516, 28.754204105934335 ], [ -82.100794222470043, 28.754178066718406 ], [ -82.100775476428481, 28.754156730862213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100652588221763, 28.754313477310713 ], [ -82.100708726719162, 28.754274118320943 ], [ -82.100729294872636, 28.754253093590719 ], [ -82.100745196699791, 28.754223217872863 ], [ -82.100757102852413, 28.754199481760288 ], [ -82.100775476428481, 28.754156730862213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100775476428481, 28.754156730862213 ], [ -82.100774565390765, 28.75411089385511 ], [ -82.100781470268998, 28.754080330899775 ], [ -82.100805695260888, 28.75402759966029 ], [ -82.100862825869456, 28.753935880246548 ], [ -82.1010700813097, 28.753615966541165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108686145132438, 28.701502719826379 ], [ -82.108877848230378, 28.699726055922369 ], [ -82.109058884937539, 28.698144552734011 ], [ -82.109239863110957, 28.696511801227018 ], [ -82.109259085587581, 28.696365363137819 ], [ -82.109286501659213, 28.69611398395433 ], [ -82.109387967143121, 28.69520852478388 ], [ -82.109525053365587, 28.693961386161408 ], [ -82.109692318192359, 28.692460424756014 ], [ -82.109887028772548, 28.690744687193423 ], [ -82.109919908238737, 28.690427411562776 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 532 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104247768245173, 28.701450183701954 ], [ -82.104414895752413, 28.701439019554254 ], [ -82.105373879396211, 28.701438628899304 ], [ -82.106463743874926, 28.701455408972368 ], [ -82.107880119805003, 28.701472809462668 ], [ -82.108203163077135, 28.701481891826685 ], [ -82.108617196622745, 28.701491063423475 ], [ -82.108686145132438, 28.701502719826379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103310498177919, 28.748813178604252 ], [ -82.103420066537311, 28.748114187666424 ], [ -82.103529772958737, 28.747151558708214 ], [ -82.103592759465698, 28.746607934877446 ], [ -82.10374310478457, 28.745300349320392 ], [ -82.103828414024107, 28.744538193730776 ], [ -82.103923857792765, 28.743664064684662 ], [ -82.104062028915934, 28.742484705746776 ], [ -82.104161527600027, 28.74157265035495 ], [ -82.104210292281621, 28.741157254938461 ], [ -82.104358566556485, 28.739842444347946 ], [ -82.104504792957954, 28.738533053365103 ], [ -82.104659181468293, 28.737192955060724 ], [ -82.104795224271413, 28.735952195491731 ], [ -82.104951654925159, 28.734612095686344 ], [ -82.105093744396626, 28.733279227791151 ], [ -82.105209549800605, 28.732298532493029 ], [ -82.105369983493176, 28.730875355927139 ], [ -82.105477631766405, 28.729936202156129 ], [ -82.105644090985876, 28.728401054273515 ], [ -82.10579844972456, 28.727059146274314 ], [ -82.105853312923841, 28.726609432860002 ], [ -82.105908133030141, 28.726116378057469 ], [ -82.10605840001692, 28.724788920524478 ], [ -82.106204588574897, 28.723483135085811 ], [ -82.1063589394345, 28.722148451321221 ], [ -82.106505058522657, 28.720781265468066 ], [ -82.106710168407417, 28.71900318968261 ], [ -82.106890319383169, 28.717368700883888 ], [ -82.107090831835819, 28.715616813657647 ], [ -82.107263376815013, 28.714065852480193 ], [ -82.107453702429609, 28.712379435691343 ], [ -82.107644058983354, 28.710729134736059 ], [ -82.107737926539642, 28.709878025548928 ], [ -82.1079866476082, 28.707722023135769 ], [ -82.108065227341982, 28.706947676519505 ], [ -82.108174406037961, 28.706051405575113 ], [ -82.108263168142813, 28.705222874831776 ], [ -82.108351969401809, 28.704432717191285 ], [ -82.108433147882508, 28.703701257375247 ], [ -82.108686145132438, 28.701502719826379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Justice Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10951985639737, 28.657618859991995 ], [ -82.109494388049598, 28.65728100958346 ], [ -82.109487553994668, 28.656746517498739 ], [ -82.109524774164086, 28.656306150409918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Old Wire Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037151184432886, 28.861259146891879 ], [ -82.037146456876798, 28.860805658427275 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Old Wire Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037146456876798, 28.860805658427275 ], [ -82.037134321690516, 28.85994563531834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Old Wire Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037134321690516, 28.85994563531834 ], [ -82.037136418674507, 28.859130636829896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Old Wire Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037136418674507, 28.859130636829896 ], [ -82.037138269879364, 28.858196579280623 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Old Wire Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037138269879364, 28.858196579280623 ], [ -82.037123086600843, 28.856722151506187 ], [ -82.037119723644921, 28.855541321978414 ], [ -82.037125283265425, 28.854578490240257 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Warfield Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034506994219498, 28.859946462677417 ], [ -82.034502619366464, 28.859888923852278 ], [ -82.034489509702667, 28.859777684792213 ], [ -82.034467687256694, 28.859664529614452 ], [ -82.034439319585985, 28.85953603239069 ], [ -82.034413138267055, 28.859417123396156 ], [ -82.034342564919569, 28.859130497990662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05973022763304, 28.753171358473214 ], [ -82.059793423804749, 28.753181627294332 ], [ -82.059906974203429, 28.753191420242608 ], [ -82.059950034160806, 28.753193052675346 ], [ -82.060014716313162, 28.753189288800989 ], [ -82.060078287395129, 28.753178117353915 ], [ -82.060139661120118, 28.753159729200917 ], [ -82.060197784038863, 28.753134437911438 ], [ -82.060251664208607, 28.753102677037806 ], [ -82.060300380404456, 28.753064991989842 ], [ -82.060343095421118, 28.753022022884519 ], [ -82.060379081674611, 28.752974510850532 ], [ -82.060385220709605, 28.752964847032558 ], [ -82.060548825307222, 28.752620306097395 ], [ -82.060670525237256, 28.752445587968442 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05973022763304, 28.753171358473214 ], [ -82.059714403189147, 28.753160970661188 ], [ -82.059636955822583, 28.75311389614205 ], [ -82.059592533119016, 28.753081450051084 ], [ -82.059589662959183, 28.753079441836032 ], [ -82.059552045228159, 28.753045106029628 ], [ -82.059497881135087, 28.752992876306614 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Second Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041942084669074, 28.868917549432808 ], [ -82.041911486457565, 28.868957980151347 ], [ -82.04190537770809, 28.868993013918754 ], [ -82.041899279643829, 28.869054995851446 ], [ -82.041896246576314, 28.869122367201317 ], [ -82.041899427156537, 28.869426877098874 ], [ -82.041905730510734, 28.869882293410363 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Second Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041905730510734, 28.869882293410363 ], [ -82.041896929642505, 28.870847030619259 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sloop Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01981679966562, 28.901842114661683 ], [ -82.019816658387569, 28.902218510331188 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stewart Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032372712235244, 28.862588006473963 ], [ -82.03237102287747, 28.862993411879479 ], [ -82.032371281318234, 28.863839335803778 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gray Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030712865267901, 28.862598854155706 ], [ -82.030712960507316, 28.862927653579224 ], [ -82.030718678400987, 28.863842054845453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gray Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030718678400987, 28.863842054845453 ], [ -82.030717965376667, 28.864720752374005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gray Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030717965376667, 28.864720752374005 ], [ -82.030715983751207, 28.864910853696905 ], [ -82.030716675424756, 28.865469114916998 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968605062684702, 28.906579120709338 ], [ -81.968533490157483, 28.906615659625 ], [ -81.968466814449314, 28.90663726752387 ], [ -81.968414725129406, 28.906649725917049 ], [ -81.968356319315674, 28.906668398729984 ], [ -81.968266057570972, 28.906687063976889 ], [ -81.968147481158368, 28.906704164166776 ], [ -81.96802536239899, 28.906722822578089 ], [ -81.96797019593545, 28.906727831594246 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974782619273995, 28.904375129219389 ], [ -81.974757045824774, 28.904353672252714 ], [ -81.974717144163336, 28.904329076185597 ], [ -81.974708861944961, 28.90432503051905 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974708861944961, 28.90432503051905 ], [ -81.974674338891447, 28.90431154274934 ], [ -81.974627917465853, 28.904300587271855 ], [ -81.974580036133986, 28.904296892296657 ], [ -81.974532152982377, 28.904300569082331 ], [ -81.974485724101498, 28.904311506923804 ], [ -81.974442157443974, 28.904329374045528 ], [ -81.974416631497675, 28.904344046857226 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974416631497675, 28.904344046857226 ], [ -81.974403376890351, 28.904353245962337 ], [ -81.974374860515439, 28.904377522258574 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974374860515439, 28.904377522258574 ], [ -81.974368888078587, 28.904383580048886 ], [ -81.97434091039392, 28.904418721918635 ], [ -81.97432029211501, 28.904457605221534 ], [ -81.97430766314163, 28.90449904807096 ], [ -81.974303327507002, 28.904541028476714 ], [ -81.974304669462526, 28.904554564112757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974357103472627, 28.904686860137115 ], [ -81.974368807272313, 28.904700022401009 ], [ -81.974403278030408, 28.904730367878987 ], [ -81.97444321462946, 28.904754985699483 ], [ -81.974474833763878, 28.904768795094341 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974474833763878, 28.904768795094341 ], [ -81.974487404194036, 28.904773128523448 ], [ -81.97453450049413, 28.904784242079351 ], [ -81.974578984863143, 28.904787963494368 ], [ -81.974625822331191, 28.904784240476975 ], [ -81.974672883095138, 28.904773154730805 ], [ -81.974714196786664, 28.904756469120937 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974714196786664, 28.904756469120937 ], [ -81.974717039567153, 28.904755045831195 ], [ -81.974756953447709, 28.904730464832848 ], [ -81.974791409441821, 28.90470015771125 ], [ -81.974819361407654, 28.904665047324958 ], [ -81.974821035504618, 28.904662460750476 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974854466200185, 28.904518185010154 ], [ -81.974852601478389, 28.90449938166309 ], [ -81.974840002186852, 28.904457970113526 ], [ -81.974819423606647, 28.904419113272805 ], [ -81.974791486850975, 28.90438399236297 ], [ -81.974782619273995, 28.904375129219389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97585015884097, 28.904469537839507 ], [ -81.976038399276646, 28.904435933100064 ], [ -81.97630674472633, 28.904382215640624 ], [ -81.976655079214481, 28.904289555797412 ], [ -81.977041467873761, 28.904173719737525 ], [ -81.977340044094916, 28.904073322284081 ], [ -81.977685459190738, 28.903934298276756 ], [ -81.977916713040543, 28.903836463448851 ], [ -81.978139187689891, 28.903725750084529 ], [ -81.978265059614102, 28.903666531099226 ], [ -81.978440699903146, 28.903573837536491 ], [ -81.978558667776696, 28.903514359845225 ], [ -81.978668731046326, 28.903473168576397 ], [ -81.978877144105013, 28.903411387905638 ], [ -81.979043695488102, 28.903383340005572 ], [ -81.979160777672263, 28.903365328582716 ], [ -81.979236883517871, 28.903349886760438 ], [ -81.979312987835584, 28.90332156728924 ], [ -81.979406660707184, 28.903285523198214 ], [ -81.979503259483053, 28.903236601884878 ], [ -81.979594005739926, 28.903185103545667 ], [ -81.979646609861504, 28.903167310119272 ], [ -81.979649030975537, 28.903166491200892 ], [ -81.979670112406822, 28.903159359934836 ], [ -81.97976085139959, 28.903143920041547 ], [ -81.979884371327444, 28.903153586974295 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979786042310963, 28.902914477431107 ], [ -81.979717857561695, 28.902978818135992 ], [ -81.979640577792395, 28.903015894466812 ], [ -81.979602588582637, 28.903028849290841 ], [ -81.979600175673653, 28.903029672721157 ], [ -81.979525832835179, 28.903055024965653 ], [ -81.97938328105451, 28.903100077376802 ], [ -81.979228141176321, 28.903146412553998 ], [ -81.978967627029718, 28.903221064992341 ], [ -81.978806632247142, 28.903275127851423 ], [ -81.978584165122214, 28.903362662276923 ], [ -81.978354958589364, 28.903475178987907 ], [ -81.978165270758893, 28.903576112644103 ], [ -81.977977923702838, 28.903666742167619 ], [ -81.977817215569132, 28.903741149816835 ], [ -81.977597671429862, 28.903836410375469 ], [ -81.977383983166206, 28.903921368218501 ], [ -81.977149804426745, 28.904008901893199 ], [ -81.976924116634223, 28.904082781239435 ], [ -81.97669228211285, 28.904152797298089 ], [ -81.976579878702992, 28.904183684995651 ], [ -81.976461914998637, 28.904212253616141 ], [ -81.976216032736232, 28.904274023884351 ], [ -81.975891120076071, 28.904340931608392 ], [ -81.975829519419221, 28.904351961017117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stone Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039854026540226, 28.868416941756465 ], [ -82.040343848107213, 28.86841949363648 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stone Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040343848107213, 28.86841949363648 ], [ -82.040705090658932, 28.868422081992243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stone Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040705090658932, 28.868422081992243 ], [ -82.040894903121, 28.868435498658947 ], [ -82.041029606926671, 28.868446237296318 ], [ -82.041124511132153, 28.868451598297238 ], [ -82.041299155478555, 28.868445205282033 ], [ -82.041415137508082, 28.868421105856431 ], [ -82.041440912438887, 28.868418691620569 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stone Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041440912438887, 28.868418691620569 ], [ -82.041721458910644, 28.868397522355195 ], [ -82.042012473225952, 28.868415422610457 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 65th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.212066020594065, 28.606974028701149 ], [ -82.212095697456689, 28.606832335183181 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 65th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.212095697456689, 28.606832335183181 ], [ -82.212116970390468, 28.606768088927701 ], [ -82.212140386146345, 28.606705727923959 ], [ -82.212176562701387, 28.606603685642515 ], [ -82.212221281541105, 28.606492186159969 ], [ -82.212268147954049, 28.606384464111354 ], [ -82.212317196077805, 28.606297510476239 ], [ -82.212374799575713, 28.606208653980449 ], [ -82.212434522310261, 28.606108463487242 ], [ -82.212498545808657, 28.606019600529006 ], [ -82.212562577814666, 28.60593451200879 ], [ -82.212641582544109, 28.605845621981629 ], [ -82.212699235970675, 28.605781319704061 ], [ -82.212750488161191, 28.60572646947584 ], [ -82.212799607847273, 28.605675399750584 ], [ -82.212880729414167, 28.605575175607306 ], [ -82.212940465515544, 28.605482540145335 ], [ -82.212974565542297, 28.605412607898245 ], [ -82.213023575586718, 28.6053067672079 ], [ -82.213053353518873, 28.605216066256538 ], [ -82.213078856141493, 28.605127262388297 ], [ -82.213089384998682, 28.605042257335917 ], [ -82.213097769989673, 28.604955367944708 ], [ -82.213093261399493, 28.604842056599146 ], [ -82.213080200285503, 28.60473253763147 ], [ -82.213062908626995, 28.60464757701612 ], [ -82.213056316148212, 28.60456259875275 ], [ -82.213056156225989, 28.604483276207166 ], [ -82.213062340246722, 28.604366171831849 ], [ -82.213075013907158, 28.60428305291228 ], [ -82.213111188746268, 28.604181011256095 ], [ -82.213155936064183, 28.604084620149074 ], [ -82.213196460409563, 28.604016567273387 ], [ -82.213292537619637, 28.603904987874358 ], [ -82.213356613469955, 28.603842562935412 ], [ -82.21342336092458, 28.603788730360247 ], [ -82.213508339482999, 28.603734674258611 ], [ -82.213578873321609, 28.603691125038811 ], [ -82.21361062668187, 28.603649453941784 ], [ -82.213622573913256, 28.603613900190211 ], [ -82.213627842775452, 28.603566399121551 ], [ -82.213606246920207, 28.60347011284113 ], [ -82.213561090130241, 28.603362531942306 ], [ -82.213524508458008, 28.603264381457681 ], [ -82.213487956625471, 28.603179450180043 ], [ -82.213457870644447, 28.603117172801522 ], [ -82.213440617098044, 28.603051098108658 ], [ -82.213425499762678, 28.602983131468878 ], [ -82.213416798634853, 28.602913264369494 ], [ -82.213412350829074, 28.602830173140749 ], [ -82.213405770657673, 28.602750861541747 ], [ -82.213407735225857, 28.602663980361978 ], [ -82.213426830175138, 28.602582740823411 ], [ -82.213454521439601, 28.602518483360214 ], [ -82.213486489864735, 28.602452331491257 ], [ -82.213524886604475, 28.602391836222345 ], [ -82.213569686231068, 28.60232188701853 ], [ -82.213601672587728, 28.602265178070965 ], [ -82.213612288551062, 28.602223611409993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 60th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203506032682455, 28.592807767197975 ], [ -82.203505392196135, 28.592475538070058 ], [ -82.203519182112402, 28.592117729467908 ], [ -82.203515335473924, 28.591999536705394 ], [ -82.203561409287573, 28.591491537551281 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 55th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.19505160580519, 28.650642403328511 ], [ -82.195081380666267, 28.650398848899659 ], [ -82.195089036884696, 28.650180208909852 ], [ -82.195090683821064, 28.649981131089362 ], [ -82.195085174195327, 28.649181277388003 ], [ -82.195084608770657, 28.648875552320735 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 55th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.195084608770657, 28.648875552320735 ], [ -82.19507211765233, 28.647876920819957 ], [ -82.195085037933637, 28.647296751460132 ], [ -82.19508477705476, 28.647155683708036 ], [ -82.195064585648055, 28.647046383206312 ], [ -82.195027590772213, 28.646498027616179 ], [ -82.194994479616383, 28.645887948580651 ], [ -82.195011799467181, 28.645524667638085 ], [ -82.195029449666478, 28.645341252016841 ], [ -82.19505314354403, 28.645182516483018 ], [ -82.19504720318038, 28.644131554109848 ], [ -82.195031919662199, 28.643433280448139 ], [ -82.195009375146768, 28.643131777056638 ], [ -82.194985058817977, 28.642983383344991 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sycamore Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121195490487125, 28.665620737277685 ], [ -82.121185721222744, 28.666298876929826 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956948134403461, 28.951700970625492 ], [ -81.954324412384523, 28.94910069688634 ], [ -81.954150830565098, 28.949047285083022 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958186177512587, 28.952905585803158 ], [ -81.957007407102196, 28.951760062709742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103274271570314, 28.927197542987372 ], [ -82.103747117381644, 28.927195420096293 ], [ -82.10455515732616, 28.927189684096255 ], [ -82.105068660899562, 28.927187581091509 ], [ -82.105198493949743, 28.927190890001484 ], [ -82.105312827439761, 28.927195914377744 ], [ -82.105450428307634, 28.927216264928695 ], [ -82.105578350795184, 28.92724514504911 ], [ -82.105710157459669, 28.927284251312155 ], [ -82.105841971112469, 28.927330176972312 ], [ -82.105958292194316, 28.927384637695152 ], [ -82.10608237716562, 28.927451025960899 ], [ -82.106216167652363, 28.927534453519083 ], [ -82.106332522737375, 28.927623007938667 ], [ -82.106448895343064, 28.927728610168938 ], [ -82.106555587019002, 28.927841040353048 ], [ -82.106771026632202, 28.928181818235206 ], [ -82.106969008576712, 28.928503859000351 ], [ -82.107747968888731, 28.929796901662574 ], [ -82.10803947890102, 28.930259959570428 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103245375864091, 28.927199875805069 ], [ -82.103274271570314, 28.927197542987372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103245375864091, 28.927199875805069 ], [ -82.100995525358584, 28.927221367687391 ], [ -82.099214732999258, 28.927229504063298 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hamlin Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953597472688799, 28.871115199141691 ], [ -81.953798470812131, 28.871019042333216 ], [ -81.95383866982479, 28.870999243386727 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Almeria Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953379751835527, 28.869017450077319 ], [ -81.953812200001963, 28.869066222726687 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dartford Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95383866982479, 28.870999243386727 ], [ -81.953793689615779, 28.870922814612697 ], [ -81.953776020277033, 28.870893091193818 ], [ -81.953769599029343, 28.87087044840375 ], [ -81.953768004940869, 28.870840730513805 ], [ -81.953766481651385, 28.870649692641283 ], [ -81.953773134069237, 28.870152998881863 ], [ -81.953778226828192, 28.86954451102056 ], [ -81.953781008683166, 28.869187886657524 ], [ -81.95378483526531, 28.869144043266939 ], [ -81.953812200001963, 28.869066222726687 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Almeria Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953812200001963, 28.869066222726687 ], [ -81.95387007085111, 28.869070487040371 ], [ -81.954482541661861, 28.86913720467409 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Almeria Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954482541661861, 28.86913720467409 ], [ -81.954797617059342, 28.86917269034554 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bainbridge Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95447219990659, 28.870722103418085 ], [ -81.954478775156673, 28.870393804574061 ], [ -81.954485413849852, 28.86991833652564 ], [ -81.95448724693091, 28.869403243985634 ], [ -81.954490532632278, 28.869243340770304 ], [ -81.954482541661861, 28.86913720467409 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arbor Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989236361232614, 28.899996597232331 ], [ -81.989229276021206, 28.899833033289681 ], [ -81.989227483428579, 28.899710700331401 ], [ -81.989236524935905, 28.899586779301384 ], [ -81.989269435733078, 28.899404616789734 ], [ -81.989276275363139, 28.899380553023761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arbor Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989276275363139, 28.899380553023761 ], [ -81.989349745328184, 28.899126508483558 ], [ -81.989520515883584, 28.898622889324685 ], [ -81.989617597293901, 28.898330115274653 ], [ -81.989668174329452, 28.89809180843616 ], [ -81.989698887152969, 28.89787415366137 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vandam Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988967710027239, 28.89782325481972 ], [ -81.989119363465335, 28.897828033283382 ], [ -81.989515518340497, 28.897854203889707 ], [ -81.989698887152969, 28.89787415366137 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pelican Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989276275363139, 28.899380553023761 ], [ -81.989128224511063, 28.899359580566326 ], [ -81.988963933592203, 28.899343679322875 ], [ -81.988857881192857, 28.8993337641209 ], [ -81.988806864297501, 28.899327778488118 ], [ -81.988763535064564, 28.899316653088402 ], [ -81.988707572349128, 28.89928805177259 ], [ -81.9886624391428, 28.899253095563015 ], [ -81.988637168094385, 28.899218141039182 ], [ -81.988617311465717, 28.899178421030278 ], [ -81.988613710228364, 28.899116459835206 ], [ -81.988626353423129, 28.899065621771879 ], [ -81.988666085547024, 28.898940114444699 ], [ -81.988817739563402, 28.898472600939808 ], [ -81.98893157062858, 28.89811558146592 ], [ -81.988946022307289, 28.898036143333137 ], [ -81.98895686323263, 28.897951941659159 ], [ -81.988967710027239, 28.89782325481972 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pelican Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988967710027239, 28.89782325481972 ], [ -81.98898856024816, 28.897523104849942 ], [ -81.988987221850849, 28.89716899822329 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vandam Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989698887152969, 28.89787415366137 ], [ -81.989783740619828, 28.897880514218439 ], [ -81.989859565491656, 28.897891640879386 ], [ -81.990143004150951, 28.897958390006856 ], [ -81.990238688439717, 28.897985405617391 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sunset Pointe Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990700986222407, 28.896714444535764 ], [ -81.990740720830217, 28.896536509338034 ], [ -81.990773237298242, 28.896333151329983 ], [ -81.990785764212987, 28.896137899080024 ], [ -81.990785785215422, 28.895920517054531 ], [ -81.990761705208882, 28.89567927563661 ], [ -81.990737619039436, 28.89552816762961 ], [ -81.990695463668374, 28.895345245062845 ], [ -81.9906442680401, 28.895175577525116 ], [ -81.990593069627053, 28.895048327075447 ], [ -81.990547894545216, 28.894926378947446 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975189558385424, 28.949577911415201 ], [ -81.975209596860935, 28.949647751662283 ], [ -81.97523008062511, 28.949789749209742 ], [ -81.975232416590018, 28.949895703125215 ], [ -81.97522294994134, 28.949968414401383 ], [ -81.975199306637933, 28.950063975402276 ], [ -81.975166218715998, 28.950149148355628 ], [ -81.975126048685169, 28.950219775931881 ], [ -81.975083517586185, 28.950288324173613 ], [ -81.975007910858096, 28.950373489148042 ], [ -81.974934670608462, 28.950442033397227 ], [ -81.974863793319457, 28.95050850097363 ], [ -81.97476692690779, 28.950608203149645 ], [ -81.974655876284984, 28.950751531099922 ], [ -81.974562981958798, 28.950874576177785 ], [ -81.974511305957407, 28.950975161983347 ], [ -81.974459630259929, 28.951074123641643 ], [ -81.97441980513787, 28.951169375517956 ], [ -81.974384606175846, 28.95126218034947 ], [ -81.974353283702925, 28.951388654043036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974353283702925, 28.951388654043036 ], [ -81.974324857294562, 28.951510547346359 ], [ -81.974319618552812, 28.951611762760688 ], [ -81.974310794793951, 28.951727777781038 ], [ -81.974296125165111, 28.951792226584992 ], [ -81.974278523083242, 28.951846364330855 ], [ -81.974240405128214, 28.951890184019792 ], [ -81.974196431248586, 28.95191853457424 ], [ -81.974146594762502, 28.95194172738093 ], [ -81.974090900699593, 28.951952030693818 ], [ -81.974032274213315, 28.951952018411074 ], [ -81.973390339424981, 28.951951892129408 ], [ -81.972789441539405, 28.951951771145758 ], [ -81.972537121336188, 28.951951748417542 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Doria Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973161175640769, 28.950648722628454 ], [ -81.973194894429724, 28.950704417968037 ], [ -81.973226019952321, 28.950779548153296 ], [ -81.973250422439307, 28.950931999816248 ], [ -81.973262197535519, 28.951069119002053 ], [ -81.973266905973674, 28.95112936779578 ], [ -81.973282540390969, 28.951183646501701 ], [ -81.973309395966766, 28.95122909581125 ], [ -81.973351902676114, 28.951268577769653 ], [ -81.973406518584611, 28.951292740301778 ], [ -81.973453756302945, 28.951305732774347 ], [ -81.973524616221198, 28.951308345431922 ], [ -81.973610240031647, 28.951308361464747 ], [ -81.973749009796478, 28.951308389697921 ], [ -81.973973403372483, 28.951308432687487 ], [ -81.974097412340384, 28.95131105267782 ], [ -81.974144115896024, 28.951315018274055 ], [ -81.974187112586165, 28.951324737054986 ], [ -81.974228366083238, 28.951335477782941 ], [ -81.974276590860114, 28.9513523527201 ], [ -81.974304481710391, 28.951362067652251 ], [ -81.974353283702925, 28.951388654043036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Doria Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974353283702925, 28.951388654043036 ], [ -81.974400927765046, 28.951410127807005 ], [ -81.974452640421688, 28.951427514948787 ], [ -81.97448575681652, 28.951438254041602 ], [ -81.974536309233898, 28.951451550839444 ], [ -81.974892936650448, 28.95153397504798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cordero Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974785220861378, 28.946532076748746 ], [ -81.974875449013993, 28.946488966856723 ], [ -81.974934243214733, 28.946461708806488 ], [ -81.974981683479783, 28.946439330911272 ], [ -81.975047267876036, 28.946410550110119 ], [ -81.975141349681934, 28.946372200353093 ], [ -81.975238538152524, 28.94633151506974 ], [ -81.975342668485411, 28.946289814113307 ], [ -81.975437542128503, 28.946255232269337 ], [ -81.975535886524838, 28.94621861722586 ], [ -81.975645799746758, 28.94618302290845 ], [ -81.975747613851084, 28.946148443012632 ], [ -81.975856369331026, 28.946114882080693 ], [ -81.975982476852579, 28.946079289511349 ], [ -81.97608660481977, 28.946049798706106 ], [ -81.976196515318222, 28.946024378191598 ], [ -81.97628907035849, 28.946002008768591 ], [ -81.976346917491554, 28.945990826082589 ], [ -81.976400139223983, 28.945979640749911 ], [ -81.976445258844876, 28.945969472656103 ], [ -81.97648806660284, 28.94596235659694 ], [ -81.976533185974873, 28.945953207162226 ], [ -81.976572521345716, 28.945946091368292 ], [ -81.976614169917724, 28.945938975065619 ], [ -81.976650036212604, 28.945930841757423 ], [ -81.976698629880261, 28.945917621729155 ], [ -81.976742593252013, 28.94590338218832 ], [ -81.976803911646613, 28.945883041637462 ], [ -81.976842093516012, 28.945868801961993 ], [ -81.976880273323374, 28.945854562275269 ], [ -81.976916141400011, 28.945838285703037 ], [ -81.976945066090693, 28.945825062184021 ], [ -81.976971677570319, 28.945811839162161 ], [ -81.976994817699634, 28.945798615536976 ], [ -81.977020272850353, 28.945786407385739 ], [ -81.977045831971722, 28.945772546246946 ], [ -81.977068867535365, 28.945758941823371 ], [ -81.977092009121037, 28.945743681706553 ], [ -81.977118621015194, 28.945728423082738 ], [ -81.977146389442638, 28.945711129078767 ], [ -81.977170687546817, 28.945693833573433 ], [ -81.977196142755915, 28.945676539163603 ], [ -81.977229699553817, 28.945651105644092 ], [ -81.977253996829816, 28.945632793239305 ], [ -81.977284082262543, 28.945607358212339 ], [ -81.977313009542485, 28.94558192388407 ], [ -81.977343092894344, 28.945556489745638 ], [ -81.977398635565876, 28.945508672220338 ], [ -81.977459960978592, 28.945454749831818 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cordero Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974389776185006, 28.946779359692485 ], [ -81.974450588583892, 28.946747492428017 ], [ -81.97468828227602, 28.946581301951689 ], [ -81.974724948027102, 28.946560761881045 ], [ -81.974785220861378, 28.946532076748746 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Idlewood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012606205473944, 28.937940813040534 ], [ -82.012525878200037, 28.937939067072847 ], [ -82.012375027094436, 28.937931173643335 ], [ -82.011890658750886, 28.93788827526993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Davenport Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012058653201663, 28.93722975333602 ], [ -82.012016266653887, 28.937353859375619 ], [ -82.011963196293152, 28.937554325638867 ], [ -82.011922122692397, 28.937708643038384 ], [ -82.011898803459999, 28.93782682205223 ], [ -82.011890658750886, 28.93788827526993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rio Grande Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95418772151676, 28.92907525300917 ], [ -81.954223102858606, 28.929083083475483 ], [ -81.95427897635831, 28.929096165057953 ], [ -81.954334459822405, 28.929109935837793 ], [ -81.954389747974147, 28.92912473785147 ], [ -81.954444645068534, 28.92914022545375 ], [ -81.954499149053959, 28.929156401351328 ], [ -81.95455346080773, 28.92917360848481 ], [ -81.954607575202772, 28.929191847754996 ], [ -81.954661100594819, 28.929210772548458 ], [ -81.954714238010027, 28.929230386542926 ], [ -81.954766983197644, 28.929251030804927 ], [ -81.954819337334229, 28.929272362463241 ], [ -81.957058878145943, 28.930183272933135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rio Grande Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957058878145943, 28.930183272933135 ], [ -81.957187638446158, 28.93023709990279 ], [ -81.957433944567796, 28.930345537615384 ], [ -81.957581729600406, 28.930403376434679 ], [ -81.957754149225522, 28.930468447530352 ], [ -81.957869096696569, 28.930507011688579 ], [ -81.957951203383189, 28.930533526133196 ], [ -81.958064650503459, 28.930561848607724 ], [ -81.958169731382185, 28.930590130480148 ], [ -81.958350704041578, 28.930633844356798 ], [ -81.958543354015035, 28.930677562503892 ], [ -81.959048537415555, 28.930795103619623 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Pedro Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957296277124115, 28.929744884874953 ], [ -81.956804002577414, 28.929538545586944 ], [ -81.95664731468321, 28.9294729243456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140721122364056, 28.668768108142878 ], [ -82.140826872730969, 28.668818385101865 ], [ -82.140908610007912, 28.668836534921347 ], [ -82.141595311969624, 28.66888427734489 ], [ -82.141649459052019, 28.668889951772897 ], [ -82.141688458418045, 28.668904234839331 ], [ -82.141716630325448, 28.668918530059159 ], [ -82.14174481765204, 28.66894428487236 ], [ -82.141768680630946, 28.668974820221994 ], [ -82.141786047452655, 28.669007270759522 ], [ -82.141797797171193, 28.669048639472809 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Kentucky Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04541496111537, 28.850908029489819 ], [ -82.046274970684934, 28.850892106433975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Palm Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11666131427458, 28.670334427047813 ], [ -82.117907309329965, 28.670348494265589 ], [ -82.118794563712115, 28.670345680702688 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Parker Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11629596450824, 28.669489599279299 ], [ -82.116565054244035, 28.66949154155138 ], [ -82.117090914575755, 28.669489048357338 ], [ -82.11845769649436, 28.6694899121619 ], [ -82.118795929972052, 28.66950187621023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040803989116341, 28.870839275934742 ], [ -82.041896929642505, 28.870847030619259 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041896929642505, 28.870847030619259 ], [ -82.043819520874621, 28.870851818162549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mill Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041928468659862, 28.871798811818671 ], [ -82.043813130515673, 28.871795257507397 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "York Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043096705461025, 28.862583091499975 ], [ -82.043864675176749, 28.862873979462123 ], [ -82.04492075050463, 28.863247315094792 ], [ -82.045297545555286, 28.863387320407828 ], [ -82.045647796356832, 28.86349463675753 ], [ -82.045854741820833, 28.863508579428753 ], [ -82.046056377867004, 28.863510847765664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peel Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046054357822726, 28.864204450717715 ], [ -82.046795755936287, 28.864213590272353 ], [ -82.046838712428354, 28.864207731351392 ], [ -82.04687913714757, 28.864201873284525 ], [ -82.046921574366081, 28.8641785026159 ], [ -82.04695605235969, 28.864150464345631 ], [ -82.046982570134617, 28.864122429703446 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peters Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046034461645434, 28.861927394872414 ], [ -82.046095175084034, 28.861916783194765 ], [ -82.04631301568142, 28.861894604099632 ], [ -82.04659736936938, 28.861888407072943 ], [ -82.046817089820919, 28.861892096465549 ], [ -82.046894029269936, 28.861892069209816 ], [ -82.0469656603385, 28.861894381601036 ], [ -82.047018730069098, 28.861913047367008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peters Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043394617881958, 28.861741418976674 ], [ -82.043564425929858, 28.861776396098033 ], [ -82.04432055858436, 28.861818192666362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peters Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04432055858436, 28.861818192666362 ], [ -82.044410764177996, 28.861827504080683 ], [ -82.044535468385533, 28.861855490921567 ], [ -82.045511790457894, 28.861869182548091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lime Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04432055858436, 28.861818192666362 ], [ -82.044623728210155, 28.861097372006949 ], [ -82.044956685170135, 28.860412021204819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winkles Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060135962534829, 28.800770749074786 ], [ -82.060129596595502, 28.801680532484411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wisteria Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041670254497859, 28.843947627441658 ], [ -82.041764092893459, 28.843907928128925 ], [ -82.04193920848293, 28.843828740677871 ], [ -82.042017548144145, 28.843788135498464 ], [ -82.042088972129164, 28.843749561681303 ], [ -82.042148879228066, 28.843721135990997 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wisteria Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042148879228066, 28.843721135990997 ], [ -82.042222605096583, 28.843670386581195 ], [ -82.042268676294285, 28.843621674940461 ], [ -82.042303226972692, 28.843579053792961 ], [ -82.042335474673806, 28.843538462633262 ], [ -82.042384221254324, 28.843463508361371 ], [ -82.042432203362679, 28.84338625252504 ], [ -82.0426648024077, 28.842988481776214 ], [ -82.042738313399127, 28.842854249887786 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Faith Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001860680351257, 28.871768842487924 ], [ -82.001876997726797, 28.871704931324654 ], [ -82.001890378298683, 28.871646078495878 ], [ -82.001948137819141, 28.871460386720248 ], [ -82.00199987833264, 28.871304143436632 ], [ -82.002035497601582, 28.8712311738363 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harston Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960318204668965, 28.881827686327927 ], [ -81.96045873971751, 28.88184689809172 ], [ -81.960632617154147, 28.881870750101964 ], [ -81.96084236152916, 28.881892489240506 ], [ -81.961038729528042, 28.881905677572405 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harston Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961038729528042, 28.881905677572405 ], [ -81.961059914470567, 28.881906971303852 ], [ -81.961523498812738, 28.88193403237187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kerwood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96015272601592, 28.879957485771346 ], [ -81.960253105135862, 28.879959922868544 ], [ -81.960522219207732, 28.879965158929899 ], [ -81.960732936930043, 28.879975534038795 ], [ -81.960785144981585, 28.879985075800324 ], [ -81.960833675110166, 28.880012652575232 ], [ -81.960873327454024, 28.880042612430685 ], [ -81.960899413964583, 28.880085715760114 ], [ -81.96091430433296, 28.880135100355275 ], [ -81.960960902601514, 28.880341035374141 ], [ -81.961001814724256, 28.880608850361931 ], [ -81.961036843896295, 28.880938544357079 ], [ -81.96105242312872, 28.881261346320652 ], [ -81.961053082058314, 28.881537548192657 ], [ -81.961038729528042, 28.881905677572405 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harston Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961038729528042, 28.881905677572405 ], [ -81.961025458403697, 28.882102249990059 ], [ -81.961007033047338, 28.882308489964068 ], [ -81.960973353434397, 28.882545686158036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southfield Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993301298198688, 28.880874360295159 ], [ -81.993202934089595, 28.880556605202543 ], [ -81.993123665679207, 28.880248919806732 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cedar Ridge Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984193664141188, 28.883687652641285 ], [ -81.984471631407914, 28.883335656951651 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cedar Ridge Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983752206507447, 28.88425926518703 ], [ -81.983822709094966, 28.884174397888945 ], [ -81.983978269992846, 28.883957585556633 ], [ -81.9841030983102, 28.883789930360471 ], [ -81.984193664141188, 28.883687652641285 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961331361762703, 28.876488793878359 ], [ -81.961467705670913, 28.876162204234522 ], [ -81.961547621407291, 28.875999602528921 ], [ -81.961694909348537, 28.87571987321914 ], [ -81.961842185327725, 28.875467709065337 ], [ -81.961959684821039, 28.875283065508437 ], [ -81.96233721965713, 28.874781515354755 ], [ -81.962456266874568, 28.87464097360996 ], [ -81.962603504682662, 28.874485282738281 ], [ -81.962800858221385, 28.874296525389358 ], [ -81.963070068346809, 28.874066604647243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lystra Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961415122200208, 28.873622030439467 ], [ -81.961706640269028, 28.873837606285409 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fosgate Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960928558272258, 28.874807424816471 ], [ -81.96096354793292, 28.874749063253986 ], [ -81.96100939459437, 28.874676905926062 ], [ -81.961228959001787, 28.874371310985811 ], [ -81.961505208738544, 28.874026461932875 ], [ -81.961629683048685, 28.873897192215793 ], [ -81.961706640269028, 28.873837606285409 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fosgate Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960786198200537, 28.875014339875285 ], [ -81.960823599929228, 28.874959163280252 ], [ -81.960887542897993, 28.874860479076606 ], [ -81.960928558272258, 28.874807424816471 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beaumont Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957922275195259, 28.873585014698541 ], [ -81.957940017633987, 28.873443511261716 ], [ -81.957964164794504, 28.873362858395797 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Foxbridge Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955920165881977, 28.872242805742605 ], [ -81.955741413315863, 28.872054162114299 ], [ -81.955657881035236, 28.871953245404136 ], [ -81.955583904258262, 28.871843926851394 ], [ -81.95550993394265, 28.871719892604524 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kilmer Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955920165881977, 28.872242805742605 ], [ -81.955571430178381, 28.872576356031473 ], [ -81.955557085008934, 28.872600349827142 ], [ -81.955543541436029, 28.872629176618872 ], [ -81.955536560431554, 28.872662959222332 ], [ -81.955534934202717, 28.872704645061052 ], [ -81.955541346220883, 28.872749988787579 ], [ -81.955554594347959, 28.872783955838386 ], [ -81.95557347351108, 28.872810316535311 ], [ -81.955627044060932, 28.872855617195334 ], [ -81.955775450729135, 28.872957832043447 ], [ -81.956313990868978, 28.873260805640285 ], [ -81.956781902541607, 28.873534195843103 ], [ -81.956972889786542, 28.873639350127892 ], [ -81.957166288782162, 28.873694059889289 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Foxbridge Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955264250766803, 28.871101869011238 ], [ -81.955226105028331, 28.870965236839403 ], [ -81.955198818178019, 28.870797347093628 ], [ -81.9551880255014, 28.870673068428445 ], [ -81.955178615659051, 28.870349381296382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bainbridge Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954590902715893, 28.871319311007834 ], [ -81.954555563675669, 28.87125703475807 ], [ -81.954508977989477, 28.871174944634564 ], [ -81.954489703994241, 28.871133899574396 ], [ -81.954480075377191, 28.871094274394828 ], [ -81.954475309466815, 28.870964085833112 ], [ -81.954472189762996, 28.870747574519946 ], [ -81.95447219990659, 28.870722103418085 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hamlin Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95383866982479, 28.870999243386727 ], [ -81.954375728155114, 28.870754618558557 ], [ -81.95447219990659, 28.870722103418085 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991698729646203, 28.885721089151474 ], [ -81.991717478042162, 28.885731403627947 ], [ -81.991940229858542, 28.885872669914797 ], [ -81.992041200616839, 28.885928803669213 ], [ -81.99220771579499, 28.886002092168585 ], [ -81.992317546209165, 28.886039517026845 ], [ -81.992416449746088, 28.886064909886823 ], [ -81.992569096375234, 28.886094099887952 ], [ -81.993021890605121, 28.886160513232518 ], [ -81.993883376461952, 28.886294629013463 ], [ -81.994385308092205, 28.88638575317616 ], [ -81.994529833353624, 28.886406042115279 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Acorn Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993274145718743, 28.872059693239159 ], [ -81.993162079077507, 28.871777098845413 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Addison Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00836331733818, 28.94201533490072 ], [ -82.008401805366788, 28.942189944461436 ], [ -82.008408628249114, 28.942302883216879 ], [ -82.008399366975965, 28.942362150897658 ], [ -82.008385893466311, 28.942402897448819 ], [ -82.008367063679728, 28.942434585286275 ], [ -82.008357293269924, 28.942449368127782 ], [ -82.008347133036366, 28.942463807217468 ], [ -82.008336778928339, 28.942478246317645 ], [ -82.008326226816536, 28.942492341654752 ], [ -82.008315284906928, 28.942506437013606 ], [ -82.008303952173563, 28.942520532394191 ], [ -82.008292620436961, 28.942534284902266 ], [ -82.008280895798819, 28.942547691853715 ], [ -82.00826878136256, 28.942561099728913 ], [ -82.008256470973905, 28.942574163840504 ], [ -82.008243965684528, 28.942587227962168 ], [ -82.00779396756765, 28.943050316295871 ], [ -82.007743751056978, 28.943102917287117 ], [ -82.007694704961622, 28.943156204841937 ], [ -82.007646638486889, 28.943210180776344 ], [ -82.007599548579577, 28.943265187060636 ], [ -82.007553629065995, 28.943320537040535 ], [ -82.007508884097504, 28.943376918264441 ], [ -82.007465309525031, 28.943433643186282 ], [ -82.007422714600096, 28.943491399364401 ], [ -82.007381290073411, 28.943549499242565 ], [ -82.00734104007249, 28.943608286595314 ], [ -82.007302156420877, 28.943667762316323 ], [ -82.007264250346296, 28.943727924621637 ], [ -82.007227516727198, 28.943788431533275 ], [ -82.007192150487427, 28.943849624109287 ], [ -82.007157958758029, 28.943911160391156 ], [ -82.00712493745992, 28.943973386860545 ], [ -82.00709308862379, 28.94403595523303 ], [ -82.007062609225571, 28.944099211980426 ], [ -82.007033300241432, 28.944162811534984 ], [ -82.007005359673059, 28.94422709675932 ], [ -82.006978592578477, 28.944291384627718 ], [ -82.006953191852233, 28.94435635906985 ], [ -82.00692896565117, 28.944421677224192 ], [ -82.00690610682696, 28.944487339984548 ], [ -82.006884615381836, 28.944553345546982 ], [ -82.006864491296909, 28.944619351040767 ], [ -82.006845539715727, 28.944686044022991 ], [ -82.006778135619768, 28.944938346356981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alfonso Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960034003018791, 28.927494856455631 ], [ -81.960327178442839, 28.927214456040705 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bethune Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981270503457267, 28.8953614680687 ], [ -81.981314705933187, 28.895580252152023 ], [ -81.981328743629859, 28.895720515691675 ], [ -81.981345124496343, 28.89586490396578 ], [ -81.981368534816795, 28.896021670059071 ], [ -81.981402720099013, 28.896207980737927 ], [ -81.981418133687711, 28.896270758570662 ], [ -81.981458609528502, 28.896326752785672 ], [ -81.981502948004277, 28.896358994487649 ], [ -81.981576879896693, 28.896388852776163 ], [ -81.981637898781969, 28.89639634034117 ], [ -81.981703452773218, 28.896386169595687 ], [ -81.981858165095375, 28.896300197046568 ], [ -81.982041006143021, 28.896201214238424 ], [ -81.982140276437192, 28.896157473243896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Terrebonne Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009733464976492, 28.91220880157454 ], [ -82.009774982076067, 28.911975616229981 ], [ -82.009804849279746, 28.911727409314384 ], [ -82.009821047323129, 28.911553112310987 ], [ -82.009826499722621, 28.911359566425912 ], [ -82.009821953520543, 28.910753831864696 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Williams Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004855042960372, 28.931547040395671 ], [ -82.005030408629594, 28.93163839831594 ], [ -82.00521854760423, 28.931759041344204 ], [ -82.005297034111848, 28.931805854153691 ], [ -82.005392193864751, 28.931871166968097 ], [ -82.005435639711195, 28.931901672880883 ], [ -82.005550918903111, 28.93198110395576 ], [ -82.005660278625612, 28.932050951883831 ], [ -82.005751919424398, 28.932110078442182 ], [ -82.005843755348565, 28.932171953319479 ], [ -82.005945949529547, 28.932231077522761 ], [ -82.006055371577332, 28.932286766315315 ], [ -82.006144473633597, 28.93233454635191 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mansfield Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006380178639091, 28.929587042065855 ], [ -82.006496245295637, 28.929851958924907 ], [ -82.006553075869576, 28.929977682185239 ], [ -82.006584078757854, 28.930020294384619 ], [ -82.006620893950299, 28.930061200074014 ], [ -82.006690647957399, 28.930117445972662 ], [ -82.006950853611329, 28.930333127436793 ], [ -82.007233187401994, 28.930572519600677 ], [ -82.007277752588365, 28.930608312317425 ], [ -82.007338095607253, 28.930645314200056 ], [ -82.007499807652295, 28.930696386648467 ], [ -82.007644442565208, 28.930702539955767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kearns Cor", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007169471895992, 28.929662754057613 ], [ -82.007374363396181, 28.92967003976278 ], [ -82.007652575010781, 28.929669234931694 ], [ -82.00774434714468, 28.929669913988388 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Riverton Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00774103466199, 28.930112557541019 ], [ -82.008270488956541, 28.930101970404447 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Riverton Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008270488956541, 28.930101970404447 ], [ -82.008378445198659, 28.930101668204941 ], [ -82.008392512073129, 28.930102011158986 ], [ -82.009458352598983, 28.930115008154175 ], [ -82.009463042916408, 28.930115006940891 ], [ -82.009467731182681, 28.93011500753218 ], [ -82.009472225570363, 28.930114664361781 ], [ -82.009476915857903, 28.930114319373669 ], [ -82.00948160406422, 28.930113631513414 ], [ -82.009486097396234, 28.930112944568247 ], [ -82.009490591723747, 28.930111912043916 ], [ -82.009495086051245, 28.930110880421697 ], [ -82.009499579352919, 28.930109847897146 ], [ -82.009503877750348, 28.930108473415622 ], [ -82.009508372047563, 28.930107098018592 ], [ -82.009512669419038, 28.930105722634568 ], [ -82.009516772911709, 28.930104003488953 ], [ -82.009521070252902, 28.930102284330275 ], [ -82.009525173715232, 28.930100221410036 ], [ -82.009529080251795, 28.930098158502801 ], [ -82.00953298883951, 28.930096095595342 ], [ -82.009536896371401, 28.930093689815759 ], [ -82.009540609028576, 28.930091281342175 ], [ -82.009544320660169, 28.930088875575482 ], [ -82.009547837387018, 28.930086124242763 ], [ -82.009551159239578, 28.93008337472758 ], [ -82.009554480066129, 28.930080623407793 ], [ -82.009557801888093, 28.930077529215783 ], [ -82.009560928865852, 28.930074779713401 ], [ -82.009563857831765, 28.930071341773196 ], [ -82.009566592979013, 28.930068246718022 ], [ -82.009569329121646, 28.930064808790622 ], [ -82.009571867343098, 28.93006171465084 ], [ -82.009574407555263, 28.930057932962107 ], [ -82.00957675292328, 28.930054495060791 ], [ -82.009578901365686, 28.930051058074962 ], [ -82.009580855928974, 28.930047275523155 ], [ -82.009582808440911, 28.930043493873743 ], [ -82.009584567104184, 28.930039712237349 ], [ -82.009586128841804, 28.930035930614153 ], [ -82.009587496730802, 28.930032149003981 ], [ -82.009588668689531, 28.930028022730291 ], [ -82.009589840678601, 28.930024242035554 ], [ -82.009590816737401, 28.930020116677309 ], [ -82.009591597921997, 28.930015991332155 ], [ -82.009592185288255, 28.930012208872132 ], [ -82.009592769547453, 28.930008085344816 ], [ -82.009592965083755, 28.930003959136783 ], [ -82.009593158568833, 28.92999983383115 ], [ -82.009598599885337, 28.929653308877452 ], [ -82.009598600547463, 28.929649184486877 ], [ -82.009598405310328, 28.929645058304899 ], [ -82.009598208052267, 28.929641276799767 ], [ -82.009597622042705, 28.929637151546373 ], [ -82.009597033981876, 28.929633026293143 ], [ -82.009596058225483, 28.929628900163713 ], [ -82.009595080448307, 28.929625119613373 ], [ -82.009594104692127, 28.929620994386191 ], [ -82.009592735116755, 28.929617211155328 ], [ -82.009591367593018, 28.929613430631171 ], [ -82.00958960824093, 28.929609305456648 ], [ -82.00958785100083, 28.929605867830791 ], [ -82.009586090653656, 28.929602086430705 ], [ -82.009583941585504, 28.929598305056714 ], [ -82.00958179152201, 28.929594866554858 ], [ -82.009579446555335, 28.929591086998556 ], [ -82.009576907771091, 28.929587648522734 ], [ -82.009574365910254, 28.929584211851669 ], [ -82.009571629206206, 28.929581116261154 ], [ -82.009568699680528, 28.929578023390384 ], [ -82.009565768073443, 28.929574585843003 ], [ -82.009562641653631, 28.929571835857427 ], [ -82.009559515203861, 28.929568742999678 ], [ -82.009555998011933, 28.929565991235538 ], [ -82.00955267671948, 28.92956324306736 ], [ -82.009549159527921, 28.929560491303054 ], [ -82.009545446468081, 28.929558086935351 ], [ -82.009541734433796, 28.929555679860577 ], [ -82.009537826530845, 28.929553616573209 ], [ -82.009533918598123, 28.929551211315914 ], [ -82.009529814796664, 28.929549148943714 ], [ -82.009525714102381, 28.929547430345565 ], [ -82.009521609305622, 28.929545711747583 ], [ -82.009517309635712, 28.929543993162468 ], [ -82.009513011021639, 28.929542618351547 ], [ -82.00950871240768, 28.929541243540491 ], [ -82.009504218920569, 28.929539868742275 ], [ -82.009499723412247, 28.929538837718454 ], [ -82.009495230981045, 28.929537807596567 ], [ -82.009490736498478, 28.92953677567008 ], [ -82.009486243071663, 28.929536088420093 ], [ -82.009481552750344, 28.929535745859727 ], [ -82.009476864480177, 28.929535401494466 ], [ -82.009472370057694, 28.92953505711618 ], [ -82.009467680762114, 28.929534714555267 ], [ -82.00840165231449, 28.929521717633701 ], [ -82.008396962023625, 28.929521717907662 ], [ -82.008392467631666, 28.929521718170033 ], [ -82.008387778392773, 28.929522062218055 ], [ -82.008383089180086, 28.929522749137977 ], [ -82.008378594814417, 28.929523094076593 ], [ -82.008374102526219, 28.92952378188707 ], [ -82.008369412314039, 28.929524813483283 ], [ -82.008364918000623, 28.929525845067985 ], [ -82.008360621637323, 28.929526876641031 ], [ -82.008356126324301, 28.929528251999869 ], [ -82.008351826910058, 28.929529627347211 ], [ -82.008347529547009, 28.92953100269429 ], [ -82.008343231184355, 28.929532721815722 ], [ -82.008339129772182, 28.929534783797706 ], [ -82.008335025256827, 28.929536502907631 ], [ -82.008330922818843, 28.929538566694013 ], [ -82.008327015253897, 28.929540629566699 ], [ -82.008323303613849, 28.929543037104651 ], [ -82.008319590947849, 28.929545442837963 ], [ -82.008315879307418, 28.929547849473419 ], [ -82.00831236154049, 28.929550599871973 ], [ -82.008308843773392, 28.929553350270442 ], [ -82.008305523956338, 28.929556100657393 ], [ -82.008302396987119, 28.929559194807542 ], [ -82.008299272069038, 28.929562288957513 ], [ -82.008296340998484, 28.929565383998522 ], [ -82.008293410953286, 28.929568477234817 ], [ -82.00829067478162, 28.929571915136574 ], [ -82.008288136560111, 28.929575353929184 ], [ -82.008285791160418, 28.92957879180835 ], [ -82.008283445760583, 28.929582229687473 ], [ -82.008281298336769, 28.92958601042729 ], [ -82.008279147809958, 28.929589448295115 ], [ -82.008277391158202, 28.929593229012394 ], [ -82.008275633480807, 28.929597011534273 ], [ -82.008274069650938, 28.929600793142711 ], [ -82.008272702771649, 28.929604919416498 ], [ -82.008271333814804, 28.929608699209087 ], [ -82.008270358733398, 28.929612825460335 ], [ -82.008269380548953, 28.929616607035065 ], [ -82.008268601366439, 28.929620733275037 ], [ -82.008267820132573, 28.92962485951513 ], [ -82.008267427593807, 28.929628640153879 ], [ -82.008267039183565, 28.929632765469123 ], [ -82.008267038468873, 28.929636890762058 ], [ -82.008266193943086, 28.929903519891312 ], [ -82.008267457060114, 28.930019511644904 ], [ -82.008270488956541, 28.930101970404447 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Forsythe Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014629522740591, 28.939224341032009 ], [ -82.014628613058491, 28.939315702870953 ], [ -82.014630807813418, 28.939651570613933 ], [ -82.014628366117563, 28.939821489896108 ], [ -82.014624700090906, 28.93984407920011 ], [ -82.014615531352717, 28.939869898389187 ], [ -82.014562031851909, 28.939949552142966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Forsythe Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012547147338068, 28.938587281172921 ], [ -82.012808654110998, 28.938587966750852 ], [ -82.013274691866229, 28.938587923388742 ], [ -82.013941798820184, 28.938587857608191 ], [ -82.014424577970914, 28.938590291706763 ], [ -82.014475405859244, 28.938601850242367 ], [ -82.01452683777724, 28.938619940400269 ], [ -82.014558497304691, 28.938643529375817 ], [ -82.014580513523924, 28.938664504504452 ], [ -82.014602530850368, 28.938693547037502 ], [ -82.014620879780779, 28.938727431659352 ], [ -82.014633726807403, 28.938777453476462 ], [ -82.014633854545195, 28.938939323149224 ], [ -82.014629522740591, 28.939224341032009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Napier Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014621890693093, 28.940808045666941 ], [ -82.014740731825924, 28.940783579200474 ], [ -82.014829862459266, 28.940771345477895 ], [ -82.014962381848818, 28.940760516427908 ], [ -82.015004975212179, 28.940766021252532 ], [ -82.015055086736382, 28.940781443261123 ], [ -82.015081219086042, 28.940804068150133 ], [ -82.015101444086227, 28.940826616979425 ], [ -82.015118985386906, 28.940854164802445 ], [ -82.015129012132817, 28.940882813334955 ], [ -82.01513277338357, 28.940910361749278 ], [ -82.015134031624441, 28.940936808735056 ], [ -82.015135731503051, 28.941032567145676 ], [ -82.015130273116611, 28.941553359742588 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Westmont Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005838025963996, 28.942307232261896 ], [ -82.005966675359105, 28.942343122142226 ], [ -82.006105263032779, 28.942369072725096 ], [ -82.006432427208978, 28.942412504150774 ], [ -82.006645818393864, 28.942466811748169 ], [ -82.006875040583267, 28.942553774961077 ], [ -82.007156245520051, 28.942689207323333 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Darien Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005902697384158, 28.943132510464153 ], [ -82.006101707258523, 28.943111653952315 ], [ -82.006242283178238, 28.943105452891064 ], [ -82.006345646663192, 28.943115099376357 ], [ -82.006443263786693, 28.94314334681118 ], [ -82.006727217849402, 28.943245320194972 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Weaton Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007156245520051, 28.942689207323333 ], [ -82.007086326780652, 28.942774553267693 ], [ -82.006976039553635, 28.942911265067881 ], [ -82.006840687555638, 28.943089140575402 ], [ -82.006727217849402, 28.943245320194972 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Niles Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008788601712268, 28.943157692127013 ], [ -82.008575870100699, 28.94333187560709 ], [ -82.008472875219226, 28.943411665212739 ], [ -82.008328377402535, 28.943538783336351 ], [ -82.008249889462064, 28.943608313172209 ], [ -82.008183148588245, 28.943675833787761 ], [ -82.008122292908411, 28.943747843847518 ], [ -82.00803965789045, 28.943851971321788 ], [ -82.007956234838019, 28.9439693958813 ], [ -82.007896170687744, 28.944069207247704 ], [ -82.007829434288709, 28.944192500224705 ], [ -82.007742713793036, 28.944367745570943 ], [ -82.007625896225235, 28.944677416972166 ], [ -82.007527533281504, 28.945064165675365 ], [ -82.007457755199255, 28.945215823091864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vance Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9667878022465, 28.90807784081931 ], [ -81.966723544418542, 28.908044822432583 ], [ -81.966619196850615, 28.907990225507294 ], [ -81.966532671099529, 28.907930606250627 ], [ -81.966442392639436, 28.907851122812229 ], [ -81.966348352789126, 28.907753426386947 ], [ -81.966250154376723, 28.907638704290225 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vance Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966250154376723, 28.907638704290225 ], [ -81.966190374383118, 28.907579562542491 ], [ -81.966039915214708, 28.907420601864896 ], [ -81.96589943629823, 28.907266993280025 ], [ -81.965848086116594, 28.907203687611926 ], [ -81.965831168481245, 28.907157330447927 ], [ -81.965829302136626, 28.907110977119228 ], [ -81.965840611346323, 28.907049728403706 ], [ -81.965872614194581, 28.906990139771384 ], [ -81.9659573209793, 28.906852756659994 ], [ -81.966040875663708, 28.906719477754354 ], [ -81.966068002603734, 28.906662370961396 ], [ -81.966096556462702, 28.906590987460959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vance Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968764688616844, 28.909352274101625 ], [ -81.968655585317563, 28.909403678688037 ], [ -81.968529219963273, 28.909449927914256 ], [ -81.968432142644474, 28.909468874983158 ], [ -81.968364412045403, 28.909470100569248 ], [ -81.968307972428562, 28.909458913176053 ], [ -81.968255768450092, 28.909442758711634 ], [ -81.968197922040829, 28.909417913760834 ], [ -81.968157010118972, 28.90938934812586 ], [ -81.96811892179953, 28.909355816001288 ], [ -81.968086483225463, 28.909307385569253 ], [ -81.96804558559046, 28.909232880316633 ], [ -81.967959554999851, 28.909085111223142 ], [ -81.967870736524873, 28.908927232058922 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buxton Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994698495354143, 28.91987109030779 ], [ -81.995011888044644, 28.919789169653548 ], [ -81.99546163394605, 28.919641018230596 ], [ -81.995487032147295, 28.919633456067611 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flanders Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995487032147295, 28.919633456067611 ], [ -81.995315637320459, 28.91921486020706 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sherwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000827480881838, 28.923035309826425 ], [ -82.000745578315545, 28.922917970883375 ], [ -82.000667232610866, 28.922783897902328 ], [ -82.000575797571656, 28.92262301134323 ], [ -82.000489833259039, 28.922468312666975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alistar Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000489833259039, 28.922468312666975 ], [ -82.000611160187958, 28.922407464522998 ], [ -82.000743401222678, 28.922360496275324 ], [ -82.00092651788718, 28.922296468052007 ], [ -82.001100240984798, 28.922220045678465 ], [ -82.001281092426026, 28.922122128543123 ], [ -82.001476267678711, 28.922018994892163 ], [ -82.001735720980122, 28.921882169570242 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Treadwell Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999692912392348, 28.92139538680545 ], [ -81.999813066594058, 28.921337633001489 ], [ -81.999962915064913, 28.921269222118191 ], [ -82.00013953241438, 28.921195654849658 ], [ -82.000358152516796, 28.921103179897337 ], [ -82.000514115359749, 28.921026917046227 ], [ -82.000629147733051, 28.920964953635483 ], [ -82.000936448866753, 28.920758372367423 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Treadwell Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998113924507564, 28.92242302681403 ], [ -81.99821447556711, 28.922325523488727 ], [ -81.998347019224383, 28.922236400148936 ], [ -81.998716825392492, 28.922004550637052 ], [ -81.999127111735476, 28.92174637863684 ], [ -81.99945064549722, 28.921541205819508 ], [ -81.999692912392348, 28.92139538680545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Davidson Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997439658617239, 28.921862213391165 ], [ -81.997641499601229, 28.921766297838385 ], [ -81.997832771075309, 28.921694796129241 ], [ -81.997991805087651, 28.921638418820692 ], [ -81.998140679802219, 28.921572761054104 ], [ -81.998291314600536, 28.921487849949642 ], [ -81.998456991592434, 28.921382313278034 ], [ -81.998650020532324, 28.921257181544899 ], [ -81.998883491609377, 28.921109703656043 ], [ -81.9991017219524, 28.920974258262227 ], [ -81.999195891216914, 28.920916504796001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caryle Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998692234065615, 28.920438652171367 ], [ -81.998773254219685, 28.920389421942485 ], [ -81.998869630129505, 28.920332772230729 ], [ -81.999027081452539, 28.920251257498656 ], [ -81.999174995765046, 28.920177387668659 ], [ -81.999294564229814, 28.920124790034016 ], [ -81.999395951331081, 28.920087387763324 ], [ -81.999525099292725, 28.920037816280409 ], [ -81.999630014198956, 28.919993125099197 ], [ -81.999793407552716, 28.919905731029097 ], [ -81.999899831933064, 28.919839638071107 ], [ -81.999986366568521, 28.919771048347911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Scarboro Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99600763349801, 28.920989894441355 ], [ -81.996259476230207, 28.920826254318563 ], [ -81.996359836199957, 28.920768942432851 ], [ -81.996451983134037, 28.920717050339249 ], [ -81.996521825319007, 28.920683746688542 ], [ -81.996655641584269, 28.920637279281639 ], [ -81.996865165184474, 28.920579967117892 ], [ -81.997028880447886, 28.920532697928973 ], [ -81.997208308206211, 28.920485343169304 ], [ -81.997348480080888, 28.920447913514984 ], [ -81.997498721430915, 28.920388441716469 ], [ -81.99757452465029, 28.920355097935186 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997828639245185, 28.916560782785517 ], [ -81.998400520418954, 28.916460660926024 ], [ -81.998781775990338, 28.916393077044923 ], [ -81.998912328440369, 28.916364975388866 ], [ -81.998965867032837, 28.916350697932206 ], [ -81.999033680996135, 28.91632690495214 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Provence Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997831857103833, 28.915902729558539 ], [ -81.997977404231108, 28.915877935082435 ], [ -81.998310287838507, 28.915789228057747 ], [ -81.998559953260099, 28.915707562569413 ], [ -81.998755202300231, 28.915634342458429 ], [ -81.998837116781445, 28.915603183369232 ], [ -81.998889608134775, 28.915575711641239 ], [ -81.998959088401165, 28.915528122431837 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Saybrook Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997786434286937, 28.915229748714051 ], [ -81.998481662563222, 28.914913157613775 ], [ -81.998562579867823, 28.914876308789879 ], [ -81.998607240034247, 28.91485597153855 ], [ -81.998764688801046, 28.914816967871943 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winthrop Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997485850023878, 28.914636992498519 ], [ -81.997571559760715, 28.914596002820058 ], [ -81.997689746729193, 28.9145315729108 ], [ -81.997823555899288, 28.914432435406862 ], [ -81.997929357922089, 28.914351681610672 ], [ -81.998105755118772, 28.914232259079728 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cabana Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969927018458293, 28.926329591594655 ], [ -81.970053324068346, 28.926352396553852 ], [ -81.970141034577026, 28.926357659385864 ], [ -81.970225058045671, 28.9263627327609 ], [ -81.970504105046203, 28.926364798539549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrera Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970504105046203, 28.926364798539549 ], [ -81.970513076519154, 28.926854786632344 ], [ -81.970510786900988, 28.926902883885845 ], [ -81.97050508369928, 28.926926930605767 ], [ -81.97049938500497, 28.926945968684709 ], [ -81.970492544787348, 28.9269650056094 ], [ -81.97048684604556, 28.926977028341142 ], [ -81.970480008570576, 28.926990053271652 ], [ -81.970465196441239, 28.927008085986273 ], [ -81.97045266337156, 28.927022111206313 ], [ -81.970432158554388, 28.927038140467008 ], [ -81.970411653281445, 28.927052162117239 ], [ -81.970394564490178, 28.927062179230933 ], [ -81.970369503372439, 28.927076201671554 ], [ -81.970344441798233, 28.927088221913966 ], [ -81.970327354725256, 28.927092225220868 ], [ -81.970302298080085, 28.927094223661985 ], [ -81.970240790937751, 28.927095211549432 ], [ -81.969974270910967, 28.927097156030143 ], [ -81.969934405812751, 28.927097147082407 ], [ -81.969870623091253, 28.927097133644118 ], [ -81.969772670285437, 28.927098113109885 ], [ -81.969738499762556, 28.927097102939719 ], [ -81.969691805023885, 28.927090077932057 ], [ -81.969617776183185, 28.927073026717569 ], [ -81.969580192992026, 28.927062999095199 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrera Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970518416386994, 28.924790712796874 ], [ -81.97051420210984, 28.925576379459404 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrera Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97051420210984, 28.925576379459404 ], [ -81.970504105046203, 28.926364798539549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Luis Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969697217219178, 28.925554224313323 ], [ -81.969830539083546, 28.925562994961563 ], [ -81.969958597528631, 28.925571766101356 ], [ -81.970091918912203, 28.925575275205304 ], [ -81.97051420210984, 28.925576379459404 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santana Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969627050086658, 28.924780610833867 ], [ -81.969907305040181, 28.924786447009467 ], [ -81.970518416386994, 28.924790712796874 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrera Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970520727039272, 28.92400521525483 ], [ -81.970518615927219, 28.924308046899657 ], [ -81.970518416386994, 28.924790712796874 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Garza Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970002458099387, 28.924001735463012 ], [ -81.970520727039272, 28.92400521525483 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Pedro Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957957860462386, 28.930022139990896 ], [ -81.957585269974729, 28.929868214748705 ], [ -81.957296277124115, 28.929744884874953 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lisbon Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957296277124115, 28.929744884874953 ], [ -81.957058878145943, 28.930183272933135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 90th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0413679176107, 28.887828421820654 ], [ -82.040226017900096, 28.887831893254294 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 205B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0413679176107, 28.887828421820654 ], [ -82.041367613902338, 28.88868328441287 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 205B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041368334853772, 28.887796953979148 ], [ -82.0413679176107, 28.887828421820654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chairs Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042620278929164, 28.859066269291802 ], [ -82.042390175289952, 28.859054177612521 ], [ -82.04214476464648, 28.859048917982346 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 575", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249496411365755, 28.676350126194581 ], [ -82.249333440783062, 28.675112242604271 ], [ -82.249267739984646, 28.67455357834724 ], [ -82.249081213550824, 28.673196410693258 ], [ -82.249051595010783, 28.672975773486211 ], [ -82.249036621529015, 28.672796167176433 ], [ -82.249030832821859, 28.672691911920207 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepper Tree Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04177947089191, 28.89827714452489 ], [ -82.040923789897278, 28.898272860282813 ], [ -82.040069677058028, 28.89826137702136 ], [ -82.039069768086634, 28.898269407978319 ], [ -82.038455586961931, 28.898282033680104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 136th Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956436293862538, 28.957497603495888 ], [ -81.956524115411639, 28.957599476332526 ], [ -81.956559243092855, 28.958337177477336 ], [ -81.956576805121813, 28.958793850705806 ], [ -81.956411699271527, 28.959131085187384 ], [ -81.956348466111933, 28.959756374756992 ], [ -81.955712636104693, 28.959770425893776 ], [ -81.954957366580473, 28.959780963717446 ], [ -81.954504204823536, 28.959770424350236 ], [ -81.954511233259993, 28.959029210102635 ], [ -81.95453231168743, 28.958330150164635 ], [ -81.954736059863933, 28.957915631734366 ], [ -81.954736061598169, 28.957339521550296 ], [ -81.95571028873637, 28.957336180185273 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 124th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022857228292793, 28.937733909163395 ], [ -82.022511297914932, 28.937733389559096 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 124th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022511297914932, 28.937733389559096 ], [ -82.020917462918518, 28.937730997700367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 124th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020917462918518, 28.937730997700367 ], [ -82.020546724263056, 28.937730439810473 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 123rd Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022500283055962, 28.936123131608795 ], [ -82.022267849215552, 28.936123130557821 ], [ -82.022159932881067, 28.936123129901315 ], [ -82.022036798775332, 28.936121745667787 ], [ -82.021916430566918, 28.936123129119917 ], [ -82.021812665404909, 28.936128664000947 ], [ -82.02170198246283, 28.936142497385827 ], [ -82.021607902438731, 28.936154948472666 ], [ -82.02150552045218, 28.936178469228075 ], [ -82.0213989879108, 28.936204756080336 ], [ -82.021307676003275, 28.936221357080264 ], [ -82.021214978326512, 28.93623795913361 ], [ -82.021180785714435, 28.936241012334307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bernard Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006584623659649, 28.912158075893426 ], [ -82.007051328880351, 28.912124879474842 ], [ -82.007380542323133, 28.912113269611101 ], [ -82.00760910626343, 28.912118758264704 ], [ -82.007792620003315, 28.912139217165219 ], [ -82.007941363631801, 28.91216935847158 ], [ -82.008217987490369, 28.912225738438586 ], [ -82.008565625512588, 28.912287953307846 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barrymoore Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003457138841938, 28.912105092575253 ], [ -82.003525452304459, 28.911942267906468 ], [ -82.003556995386901, 28.91182210013384 ], [ -82.003575428321938, 28.911755536335168 ], [ -82.00360082264163, 28.911671654580779 ], [ -82.0036375672194, 28.911599728907131 ], [ -82.003690674166322, 28.91149498899042 ], [ -82.003746936000013, 28.91137841083313 ], [ -82.003800849810162, 28.911274933165164 ], [ -82.003842261559114, 28.911188300771773 ], [ -82.003919420948478, 28.911038068133095 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bristol Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005658563593059, 28.910994559936253 ], [ -82.005715119436715, 28.910739205765708 ], [ -82.005751110159167, 28.910559257367844 ], [ -82.005778437773415, 28.910301707180473 ], [ -82.005772261620635, 28.90962749522982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southfield Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993382576655549, 28.881492282216787 ], [ -81.993383540097597, 28.881312153090001 ], [ -81.993373734403633, 28.881203205090031 ], [ -81.993361662907532, 28.881127470696651 ], [ -81.993345817846276, 28.881050407020322 ], [ -81.993301298198688, 28.880874360295159 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southfield Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993328208611047, 28.882109455534255 ], [ -81.993331334098372, 28.882098796804961 ], [ -81.993371739037528, 28.881819434563855 ], [ -81.993380612924085, 28.881545769653638 ], [ -81.993382576655549, 28.881492282216787 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anthem Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993382576655549, 28.881492282216787 ], [ -81.994047781779074, 28.881516382916054 ], [ -81.994677030220629, 28.881536896737192 ], [ -81.994839076541808, 28.88153448416049 ], [ -81.994902844972529, 28.881531629073393 ], [ -81.99497327731973, 28.881524015474131 ], [ -81.995039902380597, 28.881511641150283 ], [ -81.995125563787184, 28.881483088335919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sanderling Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993328208611047, 28.882109455534255 ], [ -81.993890567042186, 28.882196256297135 ], [ -81.994134869322906, 28.882226984488632 ], [ -81.994453625649783, 28.882263859180654 ], [ -81.994943180440899, 28.882323097965781 ], [ -81.995127275654184, 28.882382071269006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Huntington Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991916812552134, 28.881308701278414 ], [ -81.991993085126197, 28.881304582402826 ], [ -81.992049368232173, 28.881294336557175 ], [ -81.992119490666056, 28.881278278887244 ], [ -81.992187688192445, 28.881257147424961 ], [ -81.992300227469883, 28.881212482885438 ], [ -81.992573260990312, 28.881101802360583 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Huntington Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992573260990312, 28.881101802360583 ], [ -81.992580290829721, 28.881099052540662 ], [ -81.992642998389215, 28.881077101248653 ], [ -81.992783241163607, 28.881024693391485 ], [ -81.993024472579151, 28.880945842505298 ], [ -81.993184679767964, 28.880900512036533 ], [ -81.993301298198688, 28.880874360295159 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Huntington Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993301298198688, 28.880874360295159 ], [ -81.993368473533948, 28.880862404589955 ], [ -81.993692282965412, 28.880813924506789 ], [ -81.993927252531094, 28.880800576999125 ], [ -81.99427304595298, 28.880793827987741 ], [ -81.99470080428749, 28.880781447461597 ], [ -81.994858048594054, 28.880778260491983 ], [ -81.994913362563935, 28.880783459011521 ], [ -81.99506564751195, 28.880812011873001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kensington Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99172655677171, 28.880740878302966 ], [ -81.991932724565274, 28.880646947001079 ], [ -81.992193705790555, 28.880527349953692 ], [ -81.992399105045152, 28.880444833811076 ], [ -81.992589719625812, 28.880381245010653 ], [ -81.992871632306489, 28.880304955596117 ], [ -81.993123665679207, 28.880248919806732 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kensington Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993123665679207, 28.880248919806732 ], [ -81.993578576965774, 28.880183255215268 ], [ -81.993956019023727, 28.880132420288181 ], [ -81.994564982594923, 28.880038230389491 ], [ -81.994851039593684, 28.879964068238788 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Westchester Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991291557868195, 28.882810290702871 ], [ -81.991505446802833, 28.882607139712665 ], [ -81.991665020753672, 28.882448779719986 ], [ -81.991729412958577, 28.88236151587277 ], [ -81.991774488652538, 28.882284450409145 ], [ -81.991819567531721, 28.88216771885396 ], [ -81.991863362290289, 28.882019255965446 ], [ -81.991893173427826, 28.881895888817191 ], [ -81.991909733721528, 28.881826589464925 ], [ -81.991925192902002, 28.8817325218651 ], [ -81.991934076202639, 28.88161727594105 ], [ -81.991927368869284, 28.881434667738205 ], [ -81.991916812552134, 28.881308701278414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Westchester Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992358961603628, 28.884112568802788 ], [ -81.992120741756736, 28.88400828848113 ], [ -81.991288577430595, 28.883601673756758 ], [ -81.990957984406478, 28.883438141058875 ], [ -81.990932234888547, 28.883410939425058 ], [ -81.990909059046146, 28.883367870994057 ], [ -81.990896186051842, 28.883329336429252 ], [ -81.990893615081589, 28.883270401538429 ], [ -81.990901345392814, 28.883221667871819 ], [ -81.990923239094428, 28.883180870013902 ], [ -81.990948997564317, 28.883142338095091 ], [ -81.991113838699732, 28.882982548078196 ], [ -81.991264512754285, 28.882839758084383 ], [ -81.991291557868195, 28.882810290702871 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Westchester Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991916812552134, 28.881308701278414 ], [ -81.991910096423311, 28.881235149751635 ], [ -81.991894857856636, 28.881125613912477 ], [ -81.991880375319511, 28.881061013640402 ], [ -81.991865893866247, 28.881021061540306 ], [ -81.991804348407754, 28.880884599050969 ], [ -81.99172655677171, 28.880740878302966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southfield Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993123665679207, 28.880248919806732 ], [ -81.993122689982215, 28.880245138209158 ], [ -81.99308088444171, 28.880086972446374 ], [ -81.992943253531024, 28.879687866234615 ], [ -81.99290901456834, 28.879610108536966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southfield Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99290901456834, 28.879610108536966 ], [ -81.992894437809866, 28.879581291840594 ], [ -81.992892484123402, 28.879577510188263 ], [ -81.992834492710941, 28.879450997111729 ], [ -81.992763002793936, 28.879301551265733 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Westchester Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99172655677171, 28.880740878302966 ], [ -81.991646845875081, 28.880601382864786 ], [ -81.991518915955098, 28.880369492206874 ], [ -81.991483584690869, 28.880295339683055 ], [ -81.991478787052813, 28.880245461036051 ], [ -81.991485513758363, 28.880190511292412 ], [ -81.991508570718565, 28.880143169903167 ], [ -81.991543151863894, 28.88010428381433 ], [ -81.991579497092644, 28.880079960076994 ], [ -81.991623839727794, 28.880054410608267 ], [ -81.99170356478588, 28.880018062796793 ], [ -81.991945622117711, 28.879912403787756 ], [ -81.992175737365841, 28.879826020411226 ], [ -81.99237398069171, 28.879756279565189 ], [ -81.99267626700464, 28.879665346465725 ], [ -81.99284044673206, 28.879622855258816 ], [ -81.99290901456834, 28.879610108536966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Westchester Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99290901456834, 28.879610108536966 ], [ -81.992984343268304, 28.879598213010848 ], [ -81.99360049838036, 28.879469042894083 ], [ -81.994266491505385, 28.87933305164546 ], [ -81.994321557549029, 28.879321803239151 ], [ -81.994520480662842, 28.879298960009155 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abercrombie Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991502987927731, 28.879380099217908 ], [ -81.991941560890595, 28.879196022797331 ], [ -81.992145015607008, 28.879132568033722 ], [ -81.992631419583191, 28.878997542230739 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abercrombie Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992631419583191, 28.878997542230739 ], [ -81.993041242917243, 28.878882149249097 ], [ -81.993189324727282, 28.878833423658968 ], [ -81.993618685809778, 28.878708540417318 ], [ -81.993706725867, 28.878677607432564 ], [ -81.99379595619844, 28.878660951570414 ], [ -81.99395538028719, 28.87865143430162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peak Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990233913072188, 28.879973715517725 ], [ -81.989399966288403, 28.878758609142501 ], [ -81.989338100640879, 28.878658672445368 ], [ -81.989297649657161, 28.878576580466927 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abercrombie Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991739425429898, 28.876928294304435 ], [ -81.991426862922069, 28.876638122002039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Florence Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984501980304799, 28.882714915051526 ], [ -81.984678471600901, 28.882876238052528 ], [ -81.984847113748756, 28.883036026917313 ], [ -81.985022037860034, 28.883153482099559 ], [ -81.985370013429772, 28.883336789862621 ], [ -81.985698296536043, 28.883466085563061 ], [ -81.986047905186211, 28.883576357674013 ], [ -81.986554464320903, 28.883697538295532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kershaw Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987532273444785, 28.881041950965447 ], [ -81.987488000111057, 28.880992851676595 ], [ -81.987359637838765, 28.880878279722648 ], [ -81.987076166777513, 28.880645993741521 ], [ -81.986857446421723, 28.880463283311141 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kershaw Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986857446421723, 28.880463283311141 ], [ -81.986570360854941, 28.880222867060009 ], [ -81.986394500000117, 28.880065772919444 ], [ -81.986338820710884, 28.880015804066925 ], [ -81.986291707370199, 28.879968690955401 ], [ -81.986210330669863, 28.879878747434343 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marlboro Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988138910003116, 28.880655944037187 ], [ -81.98724983804459, 28.879789197392178 ], [ -81.986886850904227, 28.879426485533859 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Darlington Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988605176798401, 28.880172426887349 ], [ -81.988394634673824, 28.879926126311776 ], [ -81.987871907824896, 28.87928734111911 ], [ -81.987784946333932, 28.879162773097832 ], [ -81.98772188944443, 28.879065214926239 ], [ -81.987701664780943, 28.879017624754457 ], [ -81.987660023265263, 28.878930775243777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Georgetown Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988138910003116, 28.880655944037187 ], [ -81.988321142445812, 28.880469975936069 ], [ -81.988555440713668, 28.880209533383233 ], [ -81.988605176798401, 28.880172426887349 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Franco Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970643510149017, 28.931670761096221 ], [ -81.970942191939201, 28.931627310414278 ], [ -81.971039273805118, 28.931605419232163 ], [ -81.971125887117338, 28.931559734915435 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Antonia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972944133503688, 28.934679985222267 ], [ -81.973120722512988, 28.934868054460491 ], [ -81.973208671445619, 28.934962657818264 ], [ -81.973253345399897, 28.935004433062371 ], [ -81.97331198284293, 28.935056037063887 ], [ -81.973348280752361, 28.935086753889696 ], [ -81.973391559391999, 28.935122386891845 ], [ -81.973446010445315, 28.935160478144017 ], [ -81.973489290731507, 28.935189967392891 ], [ -81.973536761054518, 28.935219457457038 ], [ -81.973697324530391, 28.935310390774518 ], [ -81.973948612703211, 28.935448013680187 ], [ -81.974209172064661, 28.935609564039698 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arbor Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988137628228969, 28.900764748087113 ], [ -81.988379846026703, 28.90077347758281 ], [ -81.988664070690774, 28.90079576276667 ], [ -81.988752539760569, 28.900784648553444 ], [ -81.988835591288549, 28.900768768785618 ], [ -81.988922256058046, 28.900735411736704 ], [ -81.988992671774767, 28.900692522300865 ], [ -81.989055867991539, 28.900648042381896 ], [ -81.989111842667015, 28.900592441907612 ], [ -81.989149762113854, 28.900541604975562 ], [ -81.989189039943497, 28.900473412421338 ], [ -81.989212967348024, 28.900411332586099 ], [ -81.989229221736267, 28.900350962882364 ], [ -81.989231036733756, 28.900263583487277 ], [ -81.989236361232614, 28.899996597232331 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Egret Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988323113345459, 28.899992271124255 ], [ -81.98864170780854, 28.900007546705172 ], [ -81.989236361232614, 28.899996597232331 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Straton Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988987221850849, 28.89716899822329 ], [ -81.989862551828111, 28.897173687771168 ], [ -81.990078493478308, 28.897161140491981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Straton Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987377449159865, 28.896648625259875 ], [ -81.987332968229666, 28.896822022246219 ], [ -81.987315637754165, 28.896939540593266 ], [ -81.987308743192131, 28.897006957948861 ], [ -81.987313041109829, 28.897050135193712 ], [ -81.987324227233756, 28.897084981261454 ], [ -81.987342417253345, 28.897121132719857 ], [ -81.987365537521427, 28.897145586331487 ], [ -81.98739766439121, 28.897169559867205 ], [ -81.987425788219454, 28.897186495983274 ], [ -81.987459356894718, 28.897200891731707 ], [ -81.987488623093043, 28.897208471096889 ], [ -81.98752315394772, 28.897211285004083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tidewater Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987505796385477, 28.897591375205998 ], [ -81.98752315394772, 28.897211285004083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pelican Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988876705470418, 28.896524542334991 ], [ -81.988762903511315, 28.896246641627524 ], [ -81.988577785051774, 28.895958008160832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pelican Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988987221850849, 28.89716899822329 ], [ -81.988985800294941, 28.897003904369207 ], [ -81.98896643561136, 28.896846811515328 ], [ -81.988935847269644, 28.89672203267558 ], [ -81.988884863914706, 28.896553266822238 ], [ -81.988876705470418, 28.896524542334991 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenimore Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988876705470418, 28.896524542334991 ], [ -81.988962425912234, 28.896505811434292 ], [ -81.989100104875988, 28.896467109648079 ], [ -81.989246997951696, 28.896432112407581 ], [ -81.989341867249877, 28.896413269218737 ], [ -81.989442854446764, 28.89639622112383 ], [ -81.989576483984138, 28.896388152500798 ], [ -81.989751933764992, 28.896387269288262 ], [ -81.989981223758747, 28.896403500234165 ], [ -81.990094672234903, 28.896411531106377 ], [ -81.990314342223087, 28.896475485194998 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baylor Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988577785051774, 28.895958008160832 ], [ -81.988703940442178, 28.895895658315652 ], [ -81.98887993178019, 28.895848389961852 ], [ -81.989149305481604, 28.895787386118215 ], [ -81.989436711156131, 28.895726458063116 ], [ -81.989589337930028, 28.895699059166905 ], [ -81.989685899661907, 28.895686731372173 ], [ -81.990106918037171, 28.895657830315006 ], [ -81.990325754793631, 28.895637878580175 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southport Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988126209458983, 28.895374807784137 ], [ -81.988202525041132, 28.895346032122315 ], [ -81.988327437698644, 28.895306322115662 ], [ -81.988524450106382, 28.895269336869745 ], [ -81.988705890278453, 28.895228921273166 ], [ -81.989112465422735, 28.895115466680643 ], [ -81.989448870490151, 28.895010725121892 ], [ -81.98983012241672, 28.894922256437837 ], [ -81.990033463088849, 28.89486183674261 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blythewood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993400948832175, 28.896790661052574 ], [ -81.993456913932818, 28.896767091274928 ], [ -81.993685462885566, 28.896657251098464 ], [ -81.993837120133264, 28.896577821657178 ], [ -81.99401254150186, 28.896475961963727 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nelson Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993400948832175, 28.896790661052574 ], [ -81.993976391449408, 28.897679784842889 ], [ -81.994130701912852, 28.897918211827985 ], [ -81.994198683324782, 28.898034626814891 ], [ -81.994212959501098, 28.898150268839988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Latta Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99401254150186, 28.896475961963727 ], [ -81.994901877629999, 28.897561123977233 ], [ -81.994981889600822, 28.897645016564255 ], [ -81.995086587132462, 28.897741384324952 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blythewood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994602891298896, 28.896117241422374 ], [ -81.994785953350728, 28.895987464780802 ], [ -81.995144915190238, 28.895708895413254 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landrum Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995144915190238, 28.895708895413254 ], [ -81.996282526746171, 28.896953753650532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blythewood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995144915190238, 28.895708895413254 ], [ -81.99519200726219, 28.895664142192352 ], [ -81.995408622401371, 28.895468559406556 ], [ -81.995472665567078, 28.895407233241681 ], [ -81.995534824150312, 28.89536745389875 ], [ -81.995617280984604, 28.895347382342017 ], [ -81.995699317098342, 28.895357012623617 ], [ -81.995757081541711, 28.895375748974793 ], [ -81.995830571605509, 28.89543402187515 ], [ -81.996207227650672, 28.895848165565965 ], [ -81.996596205271118, 28.89628111062569 ], [ -81.996651727449631, 28.896343785815727 ], [ -81.996681863254338, 28.89638854065846 ], [ -81.99669464571015, 28.896425499179845 ], [ -81.996702578296933, 28.896464788215152 ], [ -81.996700693364474, 28.896504569653274 ], [ -81.996689172349846, 28.896545820688949 ], [ -81.996672438840633, 28.896579157518829 ], [ -81.996597092741055, 28.896660376943046 ], [ -81.996416263950337, 28.896842702411142 ], [ -81.996282526746171, 28.896953753650532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blythewood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996282526746171, 28.896953753650532 ], [ -81.996139371644873, 28.897063149656898 ], [ -81.995902033556021, 28.897235528480596 ], [ -81.995856826797834, 28.897253759808414 ], [ -81.995807854115043, 28.897268675951004 ], [ -81.995762648061032, 28.897270332005682 ], [ -81.995717443253497, 28.897267016375103 ], [ -81.995679772981816, 28.897255410652743 ], [ -81.9956421008185, 28.897240492578362 ], [ -81.995611964150982, 28.89721894194475 ], [ -81.995515907285565, 28.897119486312068 ], [ -81.995267189076273, 28.896848987955817 ], [ -81.99484791887302, 28.896389740383377 ], [ -81.994602891298896, 28.896117241422374 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blythewood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992735771425444, 28.896968524294806 ], [ -81.992807345669377, 28.896955266224015 ], [ -81.9929488548145, 28.896925710935697 ], [ -81.993089676259302, 28.896890765125157 ], [ -81.993217860628164, 28.89685264242188 ], [ -81.993400948832175, 28.896790661052574 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blythewood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990700986222407, 28.896714444535764 ], [ -81.991316600726293, 28.896895604051629 ], [ -81.991495328810771, 28.896936922942057 ], [ -81.991684706490858, 28.896973943711043 ], [ -81.991820355542316, 28.896990018525365 ], [ -81.991958161171482, 28.897002839642504 ], [ -81.992215903335648, 28.897011590256437 ], [ -81.99238730861903, 28.897004970162978 ], [ -81.992553062872418, 28.896990061009038 ], [ -81.992735771425444, 28.896968524294806 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Segovia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997097775314558, 28.950972132748095 ], [ -81.997091436087644, 28.951082715739382 ], [ -81.997086634357842, 28.951395367111225 ], [ -81.997082560434507, 28.951595637992543 ], [ -81.99709017758903, 28.951722322698476 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Segovia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997161734511096, 28.949259129373409 ], [ -81.997136756075164, 28.949690196338022 ], [ -81.997128400700475, 28.950044932418294 ], [ -81.997108049539591, 28.950509763211773 ], [ -81.997100560910852, 28.9508302392282 ], [ -81.997097775314558, 28.950972132748095 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ayala Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990176992286862, 28.948376239098163 ], [ -81.990384071537477, 28.948409751948091 ], [ -81.990560925751126, 28.948431470259663 ], [ -81.990746004172806, 28.948453188915771 ], [ -81.991001004380436, 28.948467677523933 ], [ -81.991169373982174, 28.948467757480199 ], [ -81.991246472430532, 28.948460467586184 ], [ -81.991324995337067, 28.948446191290117 ], [ -81.991374963563999, 28.948437625496837 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fortaleza Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99035284174397, 28.945960552643015 ], [ -81.990360042696295, 28.946027170357979 ], [ -81.990387049693496, 28.946129796415846 ], [ -81.990415857924361, 28.946201815017719 ], [ -81.990427560383523, 28.946266632978961 ], [ -81.990443247397337, 28.946500728588251 ], [ -81.990443202115912, 28.946975562893478 ], [ -81.990436027825993, 28.947230275114684 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988480469850217, 28.946909370445347 ], [ -81.988594870433118, 28.946928247286106 ], [ -81.988709272435187, 28.946943980441574 ], [ -81.988988126749717, 28.946991173084967 ], [ -81.989183448128642, 28.947023184491716 ], [ -81.98930156748807, 28.947042850541607 ], [ -81.989399257846443, 28.947060388148426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trinidad Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989419317102445, 28.945955234394606 ], [ -81.989410174238486, 28.9464503704998 ], [ -81.989406433991419, 28.946811964958311 ], [ -81.989399257846443, 28.947060388148426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Catalani Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988491618718939, 28.945953882973171 ], [ -81.988487675128653, 28.946415668014193 ], [ -81.988490729867777, 28.946677741944061 ], [ -81.988480469850217, 28.946909370445347 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98663570422984, 28.946953221170372 ], [ -81.986821609867462, 28.946937516400279 ], [ -81.987000369355599, 28.946915521692844 ], [ -81.987225605665927, 28.946893532132616 ], [ -81.987413261960057, 28.946871396072776 ], [ -81.987566499507494, 28.946860178783592 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987566499507494, 28.946860178783592 ], [ -81.987797629220921, 28.946852704904707 ], [ -81.988026434808702, 28.946859016550743 ], [ -81.988165863692998, 28.946865318052819 ], [ -81.988312440748629, 28.94688734429776 ], [ -81.988480469850217, 28.946909370445347 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baez Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987539728939268, 28.9459583399696 ], [ -81.987553155049454, 28.946022782990319 ], [ -81.9875621045923, 28.946128398116837 ], [ -81.987568370472729, 28.94625191357818 ], [ -81.987568870686786, 28.946447030849075 ], [ -81.987566499507494, 28.946860178783592 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oporto Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986630821440627, 28.945956581379303 ], [ -81.986642922159575, 28.946437507412611 ], [ -81.986642895228627, 28.946641906513992 ], [ -81.986642877215331, 28.946770836035281 ], [ -81.98663570422984, 28.946953221170372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "La Estrellita Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985713925916485, 28.945955229042692 ], [ -81.985720542745668, 28.946456279306904 ], [ -81.985720495882887, 28.946789607024318 ], [ -81.985720458745973, 28.947053752330955 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "De La Garza Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984774759216123, 28.945952474771772 ], [ -81.984784827783486, 28.9460196020048 ], [ -81.98479489649911, 28.946127006688755 ], [ -81.984800490220252, 28.946264618721951 ], [ -81.984801741265215, 28.946453032952359 ], [ -81.98480168028108, 28.946868120123348 ], [ -81.984805214406606, 28.94714170201112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bando Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983834223091378, 28.945949825665366 ], [ -81.98385042778888, 28.946021393896512 ], [ -81.983870681607684, 28.946124020439211 ], [ -81.983881484803618, 28.94623204966501 ], [ -81.983879685669407, 28.94714530150355 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gaucho Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982952437345759, 28.945947123382663 ], [ -81.98295783812415, 28.946199639761044 ], [ -81.982955336590791, 28.946933870297819 ], [ -81.982943885168254, 28.946996257864868 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Estrella Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982036891768075, 28.945952523291012 ], [ -81.982037863831877, 28.946678156354167 ], [ -81.982021836768794, 28.946734505986811 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arriago Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996053531043884, 28.944546093352553 ], [ -81.996335518096359, 28.9448843695927 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ballesteros Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998948793715243, 28.943832204302961 ], [ -81.998619740776874, 28.943865141808825 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Batally Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000930529060241, 28.943526880391403 ], [ -82.001009267310479, 28.943513561369528 ], [ -82.001062716901004, 28.943510131542741 ], [ -82.001110211780144, 28.943503793630295 ], [ -82.00117279698533, 28.943496689580297 ], [ -82.001226297829106, 28.943490475211252 ], [ -82.001278766729072, 28.943484635278583 ], [ -82.001332114687784, 28.943475008395158 ], [ -82.001385463655936, 28.943464695747693 ], [ -82.001438418701625, 28.943453350858313 ], [ -82.001491375780176, 28.943441318400584 ], [ -82.001543943040545, 28.943428598377547 ], [ -82.001596116374756, 28.94341484701593 ], [ -82.001648291738547, 28.9434004080866 ], [ -82.00170007625529, 28.943385282495303 ], [ -82.00175146786809, 28.943369123761883 ], [ -82.001802471709169, 28.943352278367364 ], [ -82.001853277547823, 28.943334745408002 ], [ -82.001903693556514, 28.943316181112255 ], [ -82.001953719744208, 28.94329727302804 ], [ -82.002003354048483, 28.943277332706032 ], [ -82.002052597499343, 28.943256705724988 ], [ -82.00210145009045, 28.943235048311568 ], [ -82.002181568268412, 28.943197920676482 ], [ -82.003131982885094, 28.942726763117225 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000876788184272, 28.942194112038841 ], [ -82.000873222664424, 28.942435294183049 ], [ -82.000874257497316, 28.942622621120218 ], [ -82.000876606316737, 28.942801106475756 ], [ -82.000880169081981, 28.942852041829145 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Egerton Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000880169081981, 28.942852041829145 ], [ -82.001062601890354, 28.942844640591382 ], [ -82.001096128455302, 28.942842533594149 ], [ -82.0011328503073, 28.94283831971876 ], [ -82.001165577781421, 28.942835510723707 ], [ -82.001194314971798, 28.942832703545662 ], [ -82.001225447344396, 28.942828489673396 ], [ -82.00125817582142, 28.94282357470308 ], [ -82.001293299471968, 28.942816552855863 ], [ -82.001325229854658, 28.942808126148122 ], [ -82.001356361163118, 28.942801104308607 ], [ -82.001388292555134, 28.942791977406252 ], [ -82.001419423833923, 28.942782846892516 ], [ -82.001449759110002, 28.942774422872908 ], [ -82.001480091281977, 28.942763888382256 ], [ -82.001510425491944, 28.942752653705089 ], [ -82.001543952943948, 28.942741418996572 ], [ -82.001571092890117, 28.942732291185273 ], [ -82.001601427072984, 28.942720353601054 ], [ -82.00163096216771, 28.942708417821226 ], [ -82.001661295302483, 28.942695776434633 ], [ -82.001688779841601, 28.942682899567654 ], [ -82.001718091286236, 28.942670179677688 ], [ -82.001747207821509, 28.94265711600935 ], [ -82.001776128416921, 28.942643364788967 ], [ -82.001804658178855, 28.942629269792338 ], [ -82.001832993030661, 28.942614830115492 ], [ -82.001860936022965, 28.942600048467391 ], [ -82.001888684099882, 28.942584577463347 ], [ -82.001916238296758, 28.942569108260152 ], [ -82.00194320367946, 28.942552950607709 ], [ -82.001969974145936, 28.942536105404393 ], [ -82.001996354808725, 28.942519260200026 ], [ -82.002022539529065, 28.942501727445109 ], [ -82.002054390556381, 28.942479725560887 ], [ -82.002640490425648, 28.942059378751111 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Porter Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001603763471635, 28.941536468774665 ], [ -82.001999830318411, 28.941527601747168 ], [ -82.002140640738219, 28.941549236212545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bridgefield Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000884499945357, 28.93998372998723 ], [ -82.001774393734962, 28.939988871280548 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rugby Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000881066352761, 28.939228533541929 ], [ -82.001591953080037, 28.939226863198133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paynes Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000886738173435, 28.938451850660961 ], [ -82.001467503080832, 28.938467719164329 ], [ -82.001537459430097, 28.938476285031005 ], [ -82.001647390133471, 28.93851483285701 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sandy Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000894151935526, 28.937746652834438 ], [ -82.001917603289755, 28.937751916388031 ], [ -82.002055813845345, 28.937795339585655 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Huey Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004991308555134, 28.932348994643927 ], [ -82.004616614390798, 28.93254631854396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hudson Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004300809247866, 28.9320571748368 ], [ -82.004616614390798, 28.93254631854396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Manning Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006144473633597, 28.93233454635191 ], [ -82.005938798141983, 28.932533102916334 ], [ -82.005885656256055, 28.932582608536602 ], [ -82.005831337829903, 28.93263142573111 ], [ -82.005776239783344, 28.932679213415597 ], [ -82.005648923845072, 28.932773597437158 ], [ -82.005541848014872, 28.932837842139378 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barbados Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008797969215323, 28.93276076630659 ], [ -82.008794281655582, 28.933573790773302 ], [ -82.008795214831068, 28.933622286338426 ], [ -82.008804731602197, 28.933691291431682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carlsbad Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00808759112418, 28.93276005194371 ], [ -82.007880773263437, 28.933637425759628 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Taos Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00715531621556, 28.932678480389622 ], [ -82.007076325260755, 28.933010562963712 ], [ -82.00707488034918, 28.933062974620377 ], [ -82.007083446829171, 28.933158628257491 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northbrook Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009144718713443, 28.943856846794649 ], [ -82.008946202031211, 28.944035247248166 ], [ -82.008829859663393, 28.944134295597028 ], [ -82.008675989566527, 28.944299374129805 ], [ -82.008548391404247, 28.944474354484473 ], [ -82.00842455028031, 28.944688953277492 ], [ -82.008323910632953, 28.944922927346539 ], [ -82.008259438179223, 28.945114842476606 ], [ -82.008221915513886, 28.945253502698552 ], [ -82.008189106062474, 28.945347497333735 ], [ -82.008153545412242, 28.9454286299305 ], [ -82.008067596918465, 28.945548775090085 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deerfield Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009465239642665, 28.944537476031101 ], [ -82.009389934979126, 28.94465718913985 ], [ -82.009314630708957, 28.944759524943848 ], [ -82.009159498239143, 28.944943265320195 ], [ -82.00910016817511, 28.945019050904268 ], [ -82.009059238720383, 28.945093210263497 ], [ -82.009022231847737, 28.945167030099196 ], [ -82.008965073807346, 28.945312883041534 ], [ -82.008931302729664, 28.945418530126851 ], [ -82.008897532390534, 28.945534080768908 ], [ -82.008857438731965, 28.945660191326898 ], [ -82.0088140611348, 28.945745323540741 ], [ -82.008756932532322, 28.945830880661369 ], [ -82.008727622978284, 28.945867647280508 ], [ -82.008629992997299, 28.9459766005616 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wheeling Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009521236672754, 28.945943123764106 ], [ -82.009375500922857, 28.946170216191927 ], [ -82.009239932683442, 28.946376312344942 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barrington Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009521236672754, 28.945943123764106 ], [ -82.009883759720708, 28.94608684054446 ], [ -82.010033431305303, 28.946126291803722 ], [ -82.010085780392558, 28.94613580998206 ], [ -82.010172630178857, 28.946140569680075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wheeling Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009819031490125, 28.945274292421299 ], [ -82.009753822932169, 28.945442676505142 ], [ -82.009642685803328, 28.945704622427883 ], [ -82.009541637852209, 28.945906529909557 ], [ -82.009521236672754, 28.945943123764106 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palatine Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008493978211888, 28.947925729694031 ], [ -82.008688911363564, 28.947976036121698 ], [ -82.008958753385372, 28.948082258061451 ], [ -82.009125257943467, 28.948166473793037 ], [ -82.009304343411046, 28.948260688602481 ], [ -82.009373408890738, 28.94828754080217 ], [ -82.009433450570043, 28.948307399896425 ], [ -82.009569075056262, 28.948331799639934 ], [ -82.009818825911182, 28.948358940675568 ], [ -82.010285050624049, 28.948398739278328 ], [ -82.010351205533368, 28.948408324917683 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shorewood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010351205533368, 28.948408324917683 ], [ -82.010328724686872, 28.948594751015133 ], [ -82.010307839657017, 28.948734761259605 ], [ -82.010298661538997, 28.948821738408206 ], [ -82.01028948594616, 28.948913869449211 ], [ -82.010277066655576, 28.949006264193514 ], [ -82.010273193722327, 28.949034683076636 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shorewood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010426163411253, 28.947769916764774 ], [ -82.010403323783464, 28.947924135585758 ], [ -82.010387897787254, 28.948067834928494 ], [ -82.010369547671303, 28.948249692431361 ], [ -82.010353385224718, 28.948384667551256 ], [ -82.010351205533368, 28.948408324917683 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Berkeley Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009168840206101, 28.947419882523395 ], [ -82.009304013324353, 28.947506523616312 ], [ -82.0095194758498, 28.947626219215636 ], [ -82.009628810864768, 28.947676723085053 ], [ -82.009675194931745, 28.947691290151258 ], [ -82.009733726772339, 28.947704885501548 ], [ -82.009815450623663, 28.947719450991944 ], [ -82.009911529575149, 28.947730128352944 ], [ -82.010426163411253, 28.947769916764774 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Berkeley Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008480592850745, 28.947153552062037 ], [ -82.008687806650954, 28.947202935627597 ], [ -82.008934142244314, 28.947299878980452 ], [ -82.009001509602925, 28.947330959625848 ], [ -82.009061458282048, 28.94736251441314 ], [ -82.009168840206101, 28.947419882523395 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shorewood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010505693794897, 28.94714528347323 ], [ -82.010477334762868, 28.947387499721962 ], [ -82.01045926956904, 28.947531931039002 ], [ -82.010442716975177, 28.947650438470493 ], [ -82.010426163411253, 28.947769916764774 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shorewood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010561873461526, 28.946729670642629 ], [ -82.010505693794897, 28.94714528347323 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elgin Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009168840206101, 28.947419882523395 ], [ -82.009218568856511, 28.947344185980917 ], [ -82.009348100375078, 28.947173561203428 ], [ -82.009450195248135, 28.947054504152149 ], [ -82.00948699822095, 28.947026304150913 ], [ -82.009527364579526, 28.947006460935473 ], [ -82.009553483287149, 28.946998103950737 ], [ -82.009598599525546, 28.946993924195414 ], [ -82.009643716223096, 28.946994965090429 ], [ -82.009665087417076, 28.946998096397014 ], [ -82.009743449656781, 28.947018977308993 ], [ -82.009927481967196, 28.947064913798453 ], [ -82.010065208334154, 28.947094143776773 ], [ -82.010505693794897, 28.94714528347323 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shorewood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010273193722327, 28.949034683076636 ], [ -82.010246321991957, 28.949177603630453 ], [ -82.010226685629888, 28.949246125135307 ], [ -82.010208595669269, 28.949287049912876 ], [ -82.010184044054839, 28.949340479120746 ], [ -82.010155205227704, 28.949402889147407 ], [ -82.010124262288514, 28.949453547862344 ], [ -82.010070009883393, 28.949535401378906 ], [ -82.010032889346462, 28.949576327483946 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whiting Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0144326543397, 28.946700417059034 ], [ -82.014755843671651, 28.946703404091334 ], [ -82.015227392476675, 28.946725011952349 ], [ -82.015412754948997, 28.946734157932877 ], [ -82.015635307452783, 28.946757330131451 ], [ -82.015770140890965, 28.946735891767506 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Worth Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0144326543397, 28.946700417059034 ], [ -82.014443931408508, 28.946732797369954 ], [ -82.014468856793656, 28.946870142673685 ], [ -82.014482709379863, 28.946953142231752 ], [ -82.014497822487044, 28.947057168683184 ], [ -82.014504118680861, 28.947108077181504 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011803713338011, 28.946966801063624 ], [ -82.011824819944835, 28.946988799891194 ], [ -82.01183146603789, 28.946996363251127 ], [ -82.011838111106087, 28.947003926610844 ], [ -82.011844561269143, 28.947011488182039 ], [ -82.011850815539333, 28.947019395347507 ], [ -82.011857069810375, 28.947027301610429 ], [ -82.011862935333923, 28.947035549874752 ], [ -82.011868796717565, 28.947043457072525 ], [ -82.011874466311355, 28.94705170715746 ], [ -82.011879937922558, 28.947059957258901 ], [ -82.011885213640667, 28.947068551150164 ], [ -82.011890296467413, 28.947076801284034 ], [ -82.011895378307003, 28.947085395191284 ], [ -82.011900069309519, 28.947093989131432 ], [ -82.011904759324921, 28.947102926844998 ], [ -82.011909256448732, 28.947111520801244 ], [ -82.011913556653582, 28.947120459449792 ], [ -82.011917661952964, 28.947129397212439 ], [ -82.011921570295186, 28.947138334089395 ], [ -82.011925285783647, 28.947147271884859 ], [ -82.011928998195302, 28.947156209680497 ], [ -82.011932321859135, 28.947165492184798 ], [ -82.011935645485352, 28.947174429110969 ], [ -82.011938577286188, 28.947183710746081 ], [ -82.011941509087634, 28.947192993283451 ], [ -82.011944051076995, 28.947202274951579 ], [ -82.011946592040999, 28.947211556619735 ], [ -82.011948938137223, 28.947221182077897 ], [ -82.011951090315335, 28.947230463779011 ], [ -82.011952848615962, 28.947240089287096 ], [ -82.011954608930566, 28.94724937192376 ], [ -82.011956564494511, 28.947261746700594 ], [ -82.012009154880474, 28.947561502762664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012009154880474, 28.947561502762664 ], [ -82.012105950681175, 28.94819106635849 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carbondale Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012009154880474, 28.947561502762664 ], [ -82.012621469197896, 28.94744635346337 ], [ -82.013293603895946, 28.947321293946313 ], [ -82.013965441260311, 28.947201939005762 ], [ -82.014422339333095, 28.947116939863463 ], [ -82.014504118680861, 28.947108077181504 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fairfield Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012105950681175, 28.94819106635849 ], [ -82.012514650542286, 28.948112742175702 ], [ -82.013304803332744, 28.947972068673796 ], [ -82.014027226932569, 28.947832908699048 ], [ -82.014382511938564, 28.947768179044921 ], [ -82.014598177677712, 28.947736358030809 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Worth Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014504118680861, 28.947108077181504 ], [ -82.014516713518972, 28.947189970653152 ], [ -82.014533082278206, 28.947286250784295 ], [ -82.014543853890018, 28.94736533289764 ], [ -82.014556317865541, 28.94746514319926 ], [ -82.014573221704595, 28.947572978023793 ], [ -82.014589443053993, 28.947678243186747 ], [ -82.014598177677712, 28.947736358030809 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Worth Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014598177677712, 28.947736358030809 ], [ -82.014611903325005, 28.947819691426012 ], [ -82.014625627989759, 28.947910700621069 ], [ -82.014636858264439, 28.947989650034245 ], [ -82.014649336265904, 28.948070790080457 ], [ -82.014659317641076, 28.948131097356626 ], [ -82.014665557943914, 28.948184826411087 ], [ -82.014659933785566, 28.948248339368568 ], [ -82.014647226382735, 28.948297871146533 ], [ -82.014614303185965, 28.948334715204197 ], [ -82.014561860807518, 28.948374571342445 ], [ -82.01449647042844, 28.948400141007031 ], [ -82.014429264026532, 28.948416124873063 ], [ -82.014310240487248, 28.948438565424691 ], [ -82.014124007600671, 28.948471242884544 ], [ -82.013981354437462, 28.948498416255052 ], [ -82.013829317927573, 28.948525933275363 ], [ -82.013615140639956, 28.94856411407347 ], [ -82.013407216692499, 28.94860229302876 ], [ -82.013190107252285, 28.948640472529554 ], [ -82.012957365255346, 28.948681403315721 ], [ -82.012718168969442, 28.948726249332509 ], [ -82.012195436407538, 28.948810722386487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Worth Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011803713338011, 28.946966801063624 ], [ -82.012023806292689, 28.946913170875529 ], [ -82.01226345601124, 28.946866364463613 ], [ -82.012471377235556, 28.946830938361476 ], [ -82.012636107755625, 28.946799732253222 ], [ -82.012784349918306, 28.946774774021478 ], [ -82.01291325445203, 28.946750951593238 ], [ -82.013016379513061, 28.946730531280156 ], [ -82.013142418816599, 28.946706593405388 ], [ -82.013289658981677, 28.946677216184053 ], [ -82.01343203197672, 28.946651155194949 ], [ -82.013557474370074, 28.946629647765409 ], [ -82.013712467549823, 28.946601205908998 ], [ -82.013876176722505, 28.946570575850739 ], [ -82.014005082509655, 28.94654448401301 ], [ -82.014127543219459, 28.946527606015124 ], [ -82.014166214533816, 28.946528452053933 ], [ -82.014197153474569, 28.946530999690442 ], [ -82.014230025392223, 28.946536098806359 ], [ -82.014259030552338, 28.946545450814991 ], [ -82.014287070764354, 28.946557352795292 ], [ -82.014316077869182, 28.946573508078156 ], [ -82.014348951168927, 28.946596465341404 ], [ -82.014373125330152, 28.946617723574086 ], [ -82.01439439837678, 28.946638129435257 ], [ -82.014410835730473, 28.946658537597468 ], [ -82.0144326543397, 28.946700417059034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bloomington Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012232781891868, 28.949405975846204 ], [ -82.012347561564084, 28.949424137051665 ], [ -82.01242946145554, 28.949420349209028 ], [ -82.012567179784227, 28.949400771619224 ], [ -82.012714357274675, 28.94937172437437 ], [ -82.012869756657992, 28.949341335406451 ], [ -82.013032058849191, 28.949310946518562 ], [ -82.013215083436876, 28.949275998901733 ], [ -82.013380838411408, 28.949245609266899 ], [ -82.013537961852819, 28.949215218460132 ], [ -82.013696813882405, 28.949193940452961 ], [ -82.0138453044069, 28.949177219862847 ], [ -82.014074435128776, 28.949151590785164 ], [ -82.014301234585147, 28.949130346697356 ], [ -82.014608483026137, 28.949098168859727 ], [ -82.014742203963095, 28.949057086032948 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012232781891868, 28.949405975846204 ], [ -82.012191330146621, 28.94950166575121 ], [ -82.0121860543656, 28.949511979410772 ], [ -82.012178044184978, 28.949526762361366 ], [ -82.011939010505003, 28.949949135994459 ], [ -82.011895352689095, 28.950035457488617 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011895352689095, 28.950035457488617 ], [ -82.011581307912209, 28.950617083243081 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dixon Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011895352689095, 28.950035457488617 ], [ -82.01197407002266, 28.950070066336316 ], [ -82.012015065966878, 28.95008737060267 ], [ -82.012045405766543, 28.950098906515002 ], [ -82.012068363145389, 28.95010683569123 ], [ -82.012092961647042, 28.950112603732187 ], [ -82.012118378294346, 28.950114045206711 ], [ -82.012162653324779, 28.950116925100989 ], [ -82.012364349989895, 28.95009887876018 ], [ -82.0126619732997, 28.950067121268077 ], [ -82.01300824537708, 28.95002730564477 ], [ -82.01340835600331, 28.949988805833154 ], [ -82.013852193942881, 28.949948376812028 ], [ -82.014222788869077, 28.949906994682436 ], [ -82.014608542595695, 28.94988162382608 ], [ -82.014670408684708, 28.949898279954002 ], [ -82.014719186965436, 28.949922075471175 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Galesburg Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011581307912209, 28.950617083243081 ], [ -82.011861621913852, 28.950727931710791 ], [ -82.01197709110275, 28.950753311505199 ], [ -82.012059565928809, 28.95075330444158 ], [ -82.012166785252319, 28.950760549611999 ], [ -82.012294621644884, 28.950753284032768 ], [ -82.01240596223488, 28.950746019793442 ], [ -82.01249669815617, 28.950736072080094 ], [ -82.012617861500701, 28.950730559942571 ], [ -82.012770099068504, 28.950725046669216 ], [ -82.012897515680365, 28.950716784425158 ], [ -82.012996987930393, 28.950708524659905 ], [ -82.013112091815472, 28.950705764631383 ], [ -82.013251820022617, 28.950700250181033 ], [ -82.013422818036943, 28.950691983300683 ], [ -82.013596942878536, 28.950684058769646 ], [ -82.013746050085715, 28.950675794510794 ], [ -82.013876594396052, 28.950667531031844 ], [ -82.014069284400946, 28.950662011357561 ], [ -82.014230900534812, 28.950659244769565 ], [ -82.014331239349247, 28.950650061787268 ], [ -82.01447402991144, 28.950639270953406 ], [ -82.014577801771196, 28.950634290307349 ], [ -82.01471893017154, 28.95063678022542 ], [ -82.01491817152727, 28.950648403997977 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Atwood Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008359528213532, 28.952808432606243 ], [ -82.008763818593323, 28.952696294067813 ], [ -82.008909394301355, 28.952680466957155 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hopewell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008484381928369, 28.954148616453963 ], [ -82.008990954265215, 28.954146088748285 ], [ -82.009068997149896, 28.95413734780432 ], [ -82.00915807667279, 28.954117831838627 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Norfolk Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008492935806217, 28.953514292185403 ], [ -82.008489249417394, 28.953734084375249 ], [ -82.008486134193689, 28.953884656307874 ], [ -82.008486145419567, 28.95402938661438 ], [ -82.008484381928369, 28.954148616453963 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Radford Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00915807667279, 28.954117831838627 ], [ -82.009244972489498, 28.954369603497337 ], [ -82.009310303315445, 28.954596629352185 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008569429079444, 28.955206210903089 ], [ -82.008310654170415, 28.95530681096475 ], [ -82.008210398689869, 28.955344975572828 ], [ -82.008110924975682, 28.955384516056483 ], [ -82.008004807762205, 28.955428524985916 ], [ -82.007907093537938, 28.955471158275834 ], [ -82.007797890091581, 28.955527668461805 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Norfolk Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008484381928369, 28.954148616453963 ], [ -82.008484983512872, 28.954339129001784 ], [ -82.008485004228149, 28.954593005915022 ], [ -82.008485024119707, 28.954849485930165 ], [ -82.008490955892384, 28.954995302222855 ], [ -82.008499840959146, 28.955031756080327 ], [ -82.008522047329507, 28.955081228307733 ], [ -82.008569429079444, 28.955206210903089 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Norfolk Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008359528213532, 28.952808432606243 ], [ -82.008391479078071, 28.952900912046417 ], [ -82.008425668633507, 28.952995539702634 ], [ -82.00845431801929, 28.953083981563609 ], [ -82.008481325630996, 28.953167097285824 ], [ -82.008491703125628, 28.953242298185149 ], [ -82.008493786950922, 28.953324922731628 ], [ -82.008493793202589, 28.953418662733931 ], [ -82.008492935806217, 28.953514292185403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Staunton Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01122772949391, 28.953267215705679 ], [ -82.01146801128597, 28.953312625804358 ], [ -82.011572081781182, 28.953339874605412 ], [ -82.011638660362237, 28.953376211614021 ], [ -82.011679607657328, 28.953406459351761 ], [ -82.011719015860265, 28.953452931314086 ], [ -82.011741979020925, 28.95350744406073 ], [ -82.011751151760294, 28.953557369804315 ], [ -82.011756142229657, 28.954513748976559 ], [ -82.011755374899792, 28.955248720588671 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010827768996535, 28.954109724080784 ], [ -82.010793474225466, 28.954148056966471 ], [ -82.010768463077099, 28.954179686009059 ], [ -82.010742668064367, 28.954210627560332 ], [ -82.010735437408243, 28.954219222439789 ], [ -82.010716092298821, 28.954241226295093 ], [ -82.010689125584719, 28.954271134800958 ], [ -82.010661572045066, 28.954301046052578 ], [ -82.010608558711738, 28.954349842376658 ], [ -82.010516959067431, 28.954426582828191 ], [ -82.010458081826499, 28.954477803084771 ], [ -82.01041985066928, 28.954507829668156 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bedford Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01041985066928, 28.954507829668156 ], [ -82.010725754163829, 28.95485248484993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Staunton Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011755374899792, 28.955248720588671 ], [ -82.011755644323671, 28.955452347013271 ], [ -82.011750471236525, 28.955674054004515 ], [ -82.011747231615843, 28.955713495241401 ], [ -82.011740408652528, 28.955754328111311 ], [ -82.011718565380406, 28.955795163137978 ], [ -82.011691257197953, 28.955827591064288 ], [ -82.011653027304831, 28.955851614144709 ], [ -82.011609332892832, 28.955870832964109 ], [ -82.011551983757457, 28.955881647146008 ], [ -82.011450936579422, 28.955887659268225 ], [ -82.011311657151069, 28.955886469599566 ], [ -82.011082251476367, 28.955882885016706 ], [ -82.010988222172159, 28.955875512549031 ], [ -82.010906100805229, 28.955860080728453 ], [ -82.010811179306756, 28.955835291273544 ], [ -82.010744965966182, 28.955812055115619 ], [ -82.01067769252748, 28.95578510878266 ], [ -82.010544005624553, 28.955701239120369 ], [ -82.010415202879017, 28.955591928853909 ], [ -82.010320761155654, 28.955484229251471 ], [ -82.010259681839329, 28.955407500123087 ], [ -82.010230129460993, 28.955361730820943 ], [ -82.010216472095067, 28.955334109055688 ], [ -82.010208275622503, 28.955295679245971 ], [ -82.010208272571617, 28.955263253594044 ], [ -82.010213731193573, 28.955228424744703 ], [ -82.010227382770637, 28.955194795349733 ], [ -82.01025059322815, 28.955156365068536 ], [ -82.010279264306234, 28.95512633742733 ], [ -82.010318861546565, 28.955099913636648 ], [ -82.010365287041395, 28.955072288382919 ], [ -82.010454038248469, 28.955025443879549 ], [ -82.010642055544452, 28.954907429926042 ], [ -82.010725754163829, 28.95485248484993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oakville Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009419701626427, 28.95541392870788 ], [ -82.009128299923731, 28.955486825834402 ], [ -82.008978000249087, 28.955528846101743 ], [ -82.008829449193627, 28.955578270297138 ], [ -82.008730699178557, 28.95561027435139 ], [ -82.008678069557419, 28.955627456295787 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01041985066928, 28.954507829668156 ], [ -82.010343389997033, 28.954564281755918 ], [ -82.010276485572973, 28.954611122796422 ], [ -82.010238254887327, 28.954636348233866 ], [ -82.010204119332968, 28.954659167855116 ], [ -82.010167379917718, 28.954680686550475 ], [ -82.010112636923111, 28.954712017142203 ], [ -82.010024804709673, 28.954755361367955 ], [ -82.009967902906396, 28.954784085333095 ], [ -82.009910553570791, 28.954810510266359 ], [ -82.009809117562938, 28.954851373098965 ], [ -82.009712967545383, 28.954887949607336 ], [ -82.009635006652431, 28.954913099092341 ], [ -82.00953365851322, 28.954940532002539 ], [ -82.009434908922501, 28.9549679664681 ], [ -82.009336159083844, 28.954993115356547 ], [ -82.009302505101999, 28.955000575006494 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009302505101999, 28.955000575006494 ], [ -82.008956747518781, 28.955090235382169 ], [ -82.008696879710556, 28.955165677659149 ], [ -82.008569429079444, 28.955206210903089 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reston Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009302505101999, 28.955000575006494 ], [ -82.00936716573888, 28.955242192715009 ], [ -82.009419701626427, 28.95541392870788 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Richmond Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007797890091581, 28.955527668461805 ], [ -82.007844099754394, 28.955611822676147 ], [ -82.0079195243801, 28.955755132202423 ], [ -82.008004378257965, 28.955911470245766 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oakville Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008678069557419, 28.955627456295787 ], [ -82.008540339754461, 28.955680477850947 ], [ -82.008458193843154, 28.95571246085931 ], [ -82.008361237412913, 28.955751554742747 ], [ -82.008254852156227, 28.955795383424803 ], [ -82.008174053436392, 28.955832105016764 ], [ -82.008097296560948, 28.955866456913849 ], [ -82.008004378257965, 28.955911470245766 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Venice Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009876359525677, 28.956888496293235 ], [ -82.009440927368502, 28.957410698228703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roanoke Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008678069557419, 28.955627456295787 ], [ -82.00875979494991, 28.955777521323821 ], [ -82.008817262708703, 28.955886150065851 ], [ -82.00887766244783, 28.956005091790246 ], [ -82.008946661295511, 28.956134002362997 ], [ -82.009009992355089, 28.95625294474096 ], [ -82.009066947657018, 28.956336612409789 ], [ -82.009100618381595, 28.956376879524232 ], [ -82.009139673852118, 28.9564135939622 ], [ -82.009182771876155, 28.956443202582236 ], [ -82.009248640347082, 28.956488070161367 ], [ -82.009317829831744, 28.956533787448322 ], [ -82.009389754643422, 28.956581566254066 ], [ -82.009492528166518, 28.956645717742717 ], [ -82.009582269806273, 28.956700500640377 ], [ -82.009662796381264, 28.956751030705199 ], [ -82.009737642257605, 28.956798490614698 ], [ -82.009813061895798, 28.956848230532611 ], [ -82.009876359525677, 28.956888496293235 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roanoke Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009876359525677, 28.956888496293235 ], [ -82.010012382534185, 28.956973764988469 ], [ -82.010086456314454, 28.95702232104048 ], [ -82.010148785778696, 28.957063559410717 ], [ -82.010219787432504, 28.95710522029891 ], [ -82.010287125688919, 28.957137194416742 ], [ -82.010349075973778, 28.95715969303258 ], [ -82.010421799706549, 28.957173901473887 ], [ -82.010499908624467, 28.957178633611559 ], [ -82.010684406075541, 28.957178620648108 ], [ -82.01086671692039, 28.957174928958818 ], [ -82.011091111279285, 28.957173851257387 ], [ -82.011279647646859, 28.957172651548408 ], [ -82.011442598453229, 28.957170268051531 ], [ -82.011542254443668, 28.957171445505956 ], [ -82.011613629401822, 28.957167885493526 ], [ -82.011675267625066, 28.957157437259678 ], [ -82.011732439400944, 28.957141432159105 ], [ -82.011805203617868, 28.957120855617308 ], [ -82.011911750603815, 28.957084277643165 ], [ -82.012145632279768, 28.956990545594504 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Richmond Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012222435509443, 28.958020614444731 ], [ -82.012319400747927, 28.958034818836754 ], [ -82.01242444411163, 28.958039547482279 ], [ -82.012536221545389, 28.958043090734193 ], [ -82.01266954499188, 28.958041893109552 ], [ -82.012934929679872, 28.958045509546803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Richmond Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012934929679872, 28.958045509546803 ], [ -82.013030721423505, 28.95804317814687 ], [ -82.013187068603983, 28.958040673146538 ], [ -82.013313837529878, 28.958040692693199 ], [ -82.013410848353956, 28.958040682501505 ], [ -82.013537786554096, 28.958040670240713 ], [ -82.013656469103211, 28.95804065866901 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Richmond Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013656469103211, 28.95804065866901 ], [ -82.013771912229487, 28.95804424204065 ], [ -82.013884597354703, 28.958045417372968 ], [ -82.014082910364067, 28.958044570066374 ], [ -82.014259223457202, 28.958044552123543 ], [ -82.014380031735428, 28.958044539695877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Naples Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012934929679872, 28.958045509546803 ], [ -82.012932956348607, 28.959730949699377 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reston Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012932956348607, 28.959730949699377 ], [ -82.013139579756626, 28.959730930408686 ], [ -82.013347215772711, 28.959730909801515 ], [ -82.013509273126019, 28.95973089419947 ], [ -82.013652085790312, 28.959730881190691 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sanibel Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013656469103211, 28.95804065866901 ], [ -82.013652085790312, 28.959730881190691 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reston Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013652085790312, 28.959730881190691 ], [ -82.013888081111318, 28.959731746627252 ], [ -82.014037985113134, 28.959731732501716 ], [ -82.014176746318526, 28.959731717539839 ], [ -82.014317533766643, 28.959731703128675 ], [ -82.014374254199609, 28.959731697281072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Captiva Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014380031735428, 28.958044539695877 ], [ -82.014374254199609, 28.959731697281072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reston Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014374254199609, 28.959731697281072 ], [ -82.014515042673537, 28.959731682663136 ], [ -82.014684190337945, 28.95973166580816 ], [ -82.014814847597918, 28.959731651043811 ], [ -82.014960698087492, 28.959731635419953 ], [ -82.015090345816958, 28.959731622301316 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Englewood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01509181454918, 28.958047336264542 ], [ -82.015090345816958, 28.959731622301316 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reston Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015090345816958, 28.959731622301316 ], [ -82.015192642986818, 28.959732501711194 ], [ -82.015327354785001, 28.959732486907853 ], [ -82.015451935369455, 28.959732473097791 ], [ -82.015540054870186, 28.959732463259865 ], [ -82.015607915021462, 28.959732455644428 ], [ -82.015629185562659, 28.959729779762448 ], [ -82.015653493406703, 28.95972354309464 ], [ -82.015683878295803, 28.959712850223205 ], [ -82.015708184059861, 28.959699486350001 ], [ -82.015736540357523, 28.959679884476024 ], [ -82.015761859322495, 28.959656721598996 ], [ -82.015776037173708, 28.959638013692498 ], [ -82.015788188647704, 28.959618414551674 ], [ -82.015797300875363, 28.959596144974796 ], [ -82.015807422545564, 28.959552496401386 ], [ -82.015811457824469, 28.959450054342163 ], [ -82.015811439949246, 28.95932222769002 ], [ -82.015811424143351, 28.959215333283147 ], [ -82.01581139674694, 28.959030051445076 ], [ -82.015811368560435, 28.958839424430099 ], [ -82.015811339084792, 28.958647015385072 ], [ -82.015812313955465, 28.958377999001932 ], [ -82.015812295674579, 28.958261306601436 ], [ -82.015812275653715, 28.95812590790003 ], [ -82.015811022337971, 28.958052087095933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reston Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015811022337971, 28.958052087095933 ], [ -82.01581099549162, 28.957877450456586 ], [ -82.015810970332154, 28.9577072828606 ], [ -82.015810942825254, 28.957528175359577 ], [ -82.015810918396639, 28.957349069658008 ], [ -82.015812140516246, 28.957211964563975 ], [ -82.015812120760231, 28.957078349671185 ], [ -82.015808063582611, 28.957032028305449 ], [ -82.015800967006641, 28.956988380774352 ], [ -82.015773608269285, 28.956901087207175 ], [ -82.015711976467145, 28.956783799038959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reston Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012145632279768, 28.956990545594504 ], [ -82.012185258629827, 28.957083403267355 ], [ -82.012207986983285, 28.957157001188964 ], [ -82.012214498503781, 28.957193242053002 ], [ -82.012218430776301, 28.957273957980803 ], [ -82.012220299622214, 28.957370096049768 ], [ -82.012220551709177, 28.957458006264545 ], [ -82.012220569142826, 28.957593644095653 ], [ -82.012220744121734, 28.957734382562499 ], [ -82.012220762126887, 28.957902195189508 ], [ -82.012222435509443, 28.958020614444731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Nino Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99238768130401, 28.954393270401521 ], [ -81.992374367882718, 28.954571638281152 ], [ -81.992372124897301, 28.954616522655666 ], [ -81.992371530204096, 28.95471896612214 ], [ -81.992372014153318, 28.954762554060743 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Nino Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992372014153318, 28.954762554060743 ], [ -81.992372890392943, 28.954841005672826 ], [ -81.992364359537007, 28.955047381854545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Botello Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990865290672673, 28.954404495529978 ], [ -81.990946937929948, 28.954332696778035 ], [ -81.991025670970771, 28.954255769150688 ], [ -81.991113150319279, 28.954171148223814 ], [ -81.991150323025963, 28.954130816475029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barbosa Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975373440902672, 28.951891769169915 ], [ -81.975656515710583, 28.951934356914762 ], [ -81.975760596342027, 28.951948004966397 ], [ -81.975936499535649, 28.951956179962302 ], [ -81.976346174035442, 28.951956252253677 ], [ -81.976855371383749, 28.951956342392251 ], [ -81.97698730150428, 28.951956364296311 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oviedo Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97379127708659, 28.950283593460281 ], [ -81.973990108941322, 28.950552648035575 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ruiz Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971793914054786, 28.943499133148507 ], [ -81.971933945031239, 28.943496813940055 ], [ -81.972215447349171, 28.943495320779402 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hoyos Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972333781538666, 28.946501686236498 ], [ -81.972396092838352, 28.946562673353512 ], [ -81.972465034040567, 28.946627635503987 ], [ -81.972608072061846, 28.94674369431895 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fonseca Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969051850758859, 28.948102449945299 ], [ -81.969158059242474, 28.948253797047506 ], [ -81.969254655285241, 28.948400485122484 ], [ -81.969348396949968, 28.948539410049062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jimenez Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967076824963229, 28.946672325731051 ], [ -81.967067035264449, 28.946843590206356 ], [ -81.967054827664953, 28.94696347302559 ], [ -81.967013383362087, 28.94717540324195 ], [ -81.966923230155075, 28.947481518953744 ], [ -81.966859858501195, 28.947759810010556 ], [ -81.966828176852715, 28.947883970249816 ], [ -81.96676278979929, 28.948213713974312 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Salas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977595009928137, 28.941267735909761 ], [ -81.977693366442509, 28.941221070418283 ], [ -81.977963589480794, 28.941104533554768 ], [ -81.978079943865581, 28.941090859502669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Margarita Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97301684228367, 28.93655476070089 ], [ -81.97302549315873, 28.936707588508682 ], [ -81.973031173865792, 28.936972798243051 ], [ -81.973035779250267, 28.937247324837923 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965367385143992, 28.959994521585408 ], [ -81.962824491431107, 28.957495900826039 ], [ -81.962770693794667, 28.957442241957057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964350803407129, 28.95545439902012 ], [ -81.964301641624743, 28.955494077722374 ], [ -81.964221287458585, 28.955568301326061 ], [ -81.964132946871089, 28.955673902634402 ], [ -81.96407192235381, 28.955760665055035 ], [ -81.964020582685606, 28.955849323057564 ], [ -81.963976777760024, 28.955945241099347 ], [ -81.963935482972019, 28.956044630916814 ], [ -81.963895971544844, 28.956169266412456 ], [ -81.963851064819579, 28.956331767802414 ], [ -81.963813342530827, 28.956470604012974 ], [ -81.963786394658115, 28.956576310084301 ], [ -81.963755871120497, 28.956653612853579 ], [ -81.963723557169999, 28.956716717575713 ], [ -81.963693039732846, 28.956773507639696 ], [ -81.963658934066871, 28.956831878438905 ], [ -81.963614063388789, 28.956890244498897 ], [ -81.963570988196111, 28.956942299504298 ], [ -81.963468702537369, 28.957027473194586 ], [ -81.963414868186902, 28.957068481167152 ], [ -81.963319769348871, 28.957120521863647 ], [ -81.963230056435805, 28.957158364614077 ], [ -81.963140344583834, 28.957193052894432 ], [ -81.963079338099433, 28.957224590112222 ], [ -81.9629806468769, 28.957286099123536 ], [ -81.962770693794667, 28.957442241957057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974849688486188, 28.952819350473163 ], [ -81.974849926439546, 28.952962065129693 ], [ -81.974849818280347, 28.953403959854274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963345463150191, 28.953243457048671 ], [ -81.963485605416381, 28.953851611113379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109B 1", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967565641951765, 28.952965360849984 ], [ -81.967601695608451, 28.953582180788718 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109B 2", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969738305556263, 28.954072008433933 ], [ -81.968920803507388, 28.954692725789389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967248042069684, 28.95452039146139 ], [ -81.967273959599197, 28.954894409414006 ], [ -81.967271063125622, 28.955015132614626 ], [ -81.967259595352559, 28.955103157376115 ], [ -81.967230976180119, 28.955176088011967 ], [ -81.967202362567349, 28.955231412227064 ], [ -81.967150865659292, 28.9553043363325 ], [ -81.966834992718717, 28.955713103847604 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973495651064212, 28.955881205181328 ], [ -81.973965050718974, 28.956364291394536 ], [ -81.974003803863994, 28.956407937364403 ], [ -81.974041001395548, 28.956461125654901 ], [ -81.974071997633814, 28.956521134054611 ], [ -81.974096793959987, 28.956574321726123 ], [ -81.974116935720616, 28.956631601284865 ], [ -81.974127773451954, 28.956692968223315 ], [ -81.974135691472313, 28.956766406351804 ], [ -81.974124593488369, 28.958174794313869 ], [ -81.974119293958239, 28.958592700277105 ], [ -81.974119280156728, 28.958647508145937 ], [ -81.974119260029781, 28.9587274348962 ], [ -81.974111453977528, 28.958791376049483 ], [ -81.974093258430855, 28.958866732779107 ], [ -81.974056883399143, 28.958953502665594 ], [ -81.974020198963061, 28.959022097631316 ], [ -81.973978318211351, 28.959082090935578 ], [ -81.973922483218686, 28.959147534950375 ], [ -81.973868200116428, 28.95919798046036 ], [ -81.973795313208342, 28.959245695576652 ], [ -81.973719325175367, 28.959287955693608 ], [ -81.973669700866267, 28.959309763320594 ], [ -81.973620561274984, 28.959325651093259 ], [ -81.973547851463664, 28.959346190005256 ], [ -81.97347254657457, 28.959364444664022 ], [ -81.973384259239111, 28.959371278201857 ], [ -81.97160299151129, 28.959370911577832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109D 1", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968182135539081, 28.957161421924489 ], [ -81.967630798849044, 28.956853739150493 ], [ -81.967542158987328, 28.956815991069604 ], [ -81.967436360039557, 28.956793329577849 ], [ -81.967341993067862, 28.956783246930684 ], [ -81.967138951561523, 28.956795772451855 ], [ -81.966898734004317, 28.956810803160959 ], [ -81.966804363237898, 28.956815810056337 ], [ -81.966724296589788, 28.956805730522973 ], [ -81.966652810916827, 28.95678559162991 ], [ -81.966575607406142, 28.956760421898725 ], [ -81.966489830108316, 28.956720159153448 ], [ -81.966392618812961, 28.956664801756908 ], [ -81.966201064823807, 28.956526426832106 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109D 2", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968458306001097, 28.95830335132192 ], [ -81.967487400979266, 28.958161542173531 ], [ -81.967416507415422, 28.958157013470483 ], [ -81.967350500236094, 28.958156155540827 ], [ -81.96729214593546, 28.958160348671303 ], [ -81.96723857216351, 28.958168749428566 ], [ -81.967183085732529, 28.95818135527448 ], [ -81.96714194619581, 28.958193123686286 ], [ -81.96710418468659, 28.958209234741155 ], [ -81.96704626699092, 28.9582435806382 ], [ -81.966966888755167, 28.958297228439442 ], [ -81.966803846720211, 28.958420427522583 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109D 3", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969955366441752, 28.958051455995363 ], [ -81.969874235175141, 28.958197423946 ], [ -81.969839470377835, 28.958260644163943 ], [ -81.969805900232998, 28.958329132217834 ], [ -81.96977712238008, 28.958403946406793 ], [ -81.969765026068728, 28.958454724618367 ], [ -81.969757923205378, 28.958497727110476 ], [ -81.969752119850511, 28.95935940566179 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109D 3", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969955366441752, 28.958051455995363 ], [ -81.969412096446007, 28.957797309890257 ], [ -81.96937472170417, 28.957773691984578 ], [ -81.969348367457755, 28.957753664104608 ], [ -81.969317747377048, 28.957726866251942 ], [ -81.969294878929134, 28.957694165578186 ], [ -81.969286086548934, 28.957667239188478 ], [ -81.969280104097408, 28.957644056147689 ], [ -81.969277746065956, 28.957611163480642 ], [ -81.969274976537079, 28.957306839847067 ], [ -81.969276637144844, 28.957215166529796 ], [ -81.96928144628022, 28.957161424456938 ], [ -81.969287444493844, 28.957135081634821 ], [ -81.969294641692983, 28.95710979296387 ], [ -81.969306157843889, 28.957081647727069 ], [ -81.969328207303676, 28.957052895858482 ], [ -81.969353375545865, 28.957027611304174 ], [ -81.969386930764685, 28.957005490293877 ], [ -81.969422881269196, 28.956987583523333 ], [ -81.969460954150961, 28.956977408060045 ], [ -81.969969987495048, 28.956944826999777 ], [ -81.970020779461294, 28.956942405818538 ], [ -81.970072935806272, 28.956947365666732 ], [ -81.970135841453356, 28.95696749992479 ], [ -81.970187306521268, 28.957000206837787 ], [ -81.970227330718842, 28.957042971732566 ], [ -81.970247195127811, 28.957073126218916 ], [ -81.970259168648312, 28.957101580835129 ], [ -81.970266345720574, 28.957141627022679 ], [ -81.970270184550827, 28.95718131064864 ], [ -81.970272983839735, 28.957392578269079 ], [ -81.970272238627544, 28.95747567552181 ], [ -81.970267435994984, 28.957515717238682 ], [ -81.970262632827911, 28.957550491378594 ], [ -81.970247188339656, 28.957593778073484 ], [ -81.969955366441752, 28.958051455995363 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrera Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970504202596402, 28.923155569257975 ], [ -81.970511831564153, 28.923246573794348 ], [ -81.97051485305326, 28.923300014737471 ], [ -81.970514838154074, 28.923352120515744 ], [ -81.970514821465784, 28.923406896186663 ], [ -81.970519292604365, 28.923706167044205 ], [ -81.970520727039272, 28.92400521525483 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kaylee Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007621678178609, 28.91601270300345 ], [ -82.008175023161627, 28.916015732550107 ], [ -82.008386882431964, 28.916015720407753 ], [ -82.008575134641248, 28.91598042411767 ], [ -82.008789734338293, 28.915933350983359 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kaylee Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004457793173216, 28.913334832843457 ], [ -82.004368784951339, 28.913528177838682 ], [ -82.004343917211756, 28.91359382427239 ], [ -82.004326416902714, 28.913695317862313 ], [ -82.00433036689877, 28.913989688608243 ], [ -82.004328120792678, 28.914391520397526 ], [ -82.004322756241365, 28.914496445071531 ], [ -82.004310452525246, 28.914585138514123 ], [ -82.004298148056932, 28.914654238572886 ], [ -82.00429424330207, 28.9147463695308 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Callaway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010844814432289, 28.919636631069949 ], [ -82.010823233244977, 28.919713716795513 ], [ -82.010814897967506, 28.919758956764152 ], [ -82.010812129815605, 28.919870216427046 ], [ -82.010809232816982, 28.919954418938826 ], [ -82.010804151567513, 28.920009621813037 ], [ -82.010785504411174, 28.92006631631142 ], [ -82.010765159631774, 28.920109585669202 ], [ -82.010705158477535, 28.920193003886869 ], [ -82.010646801169415, 28.920276146753388 ], [ -82.010562041138982, 28.920394749996525 ], [ -82.010522835334967, 28.920440010279563 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Callaway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010522835334967, 28.920440010279563 ], [ -82.01047589388665, 28.920508461036604 ], [ -82.010431430015942, 28.920575710638701 ], [ -82.010411978999741, 28.920616059141889 ], [ -82.010399475444629, 28.920649071465988 ], [ -82.010395308115235, 28.920686973625219 ], [ -82.010393926058825, 28.920755441766637 ], [ -82.010393934719758, 28.920845917712036 ], [ -82.010393950520196, 28.921010974750072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Callaway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010393950520196, 28.921010974750072 ], [ -82.010391417444069, 28.921140291117784 ], [ -82.010399372839075, 28.92119464305128 ], [ -82.010413272786323, 28.921231322176606 ], [ -82.010443849377708, 28.921266774758109 ], [ -82.010471644850199, 28.9212936719655 ], [ -82.010523066701666, 28.921324233448715 ], [ -82.01058421574082, 28.921351127256372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mallory Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966295430037789, 28.898415783475684 ], [ -81.966235520478122, 28.898615599694274 ], [ -81.966138912800716, 28.898967601918908 ], [ -81.966021410543391, 28.899301723315059 ], [ -81.96592991751352, 28.899490406917867 ], [ -81.965857729328505, 28.899602269121459 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hollywood Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962549657408317, 28.897760547951336 ], [ -81.962498330466147, 28.897133585397942 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Perry Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96171196506657, 28.897894515850826 ], [ -81.961593026346506, 28.897394772291886 ], [ -81.961579088131387, 28.89733620276165 ], [ -81.961590897652513, 28.897270642370206 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mallory Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960974853112219, 28.898026945049246 ], [ -81.961592416676268, 28.897916139565858 ], [ -81.96171196506657, 28.897894515850826 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dalzell Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960974853112219, 28.898026945049246 ], [ -81.960921731749025, 28.897791717329365 ], [ -81.960907241528602, 28.897756722846676 ], [ -81.960881572691477, 28.897714592428017 ], [ -81.960860570796939, 28.897681710128264 ], [ -81.960799111884569, 28.897606167934804 ], [ -81.960755094678163, 28.897539779227525 ], [ -81.960736534980214, 28.897504800678533 ], [ -81.960713692430687, 28.897399628306388 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mallory Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960294558076001, 28.898177032398621 ], [ -81.960358372688233, 28.898152105403181 ], [ -81.960451784768992, 28.898119255895114 ], [ -81.960500824588095, 28.898103859071409 ], [ -81.960642099120804, 28.898080272981971 ], [ -81.960814897629234, 28.898051554654252 ], [ -81.960974853112219, 28.898026945049246 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Salley Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960294558076001, 28.898177032398621 ], [ -81.960053816756997, 28.897921534482151 ], [ -81.959923396154792, 28.897803071528372 ], [ -81.959846008196351, 28.897732780036403 ], [ -81.959854956596814, 28.897647425207737 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gifford Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964655408940885, 28.897038056438085 ], [ -81.964659926661753, 28.896341357980354 ], [ -81.964618938194533, 28.896065679349874 ], [ -81.964436390654001, 28.894777251059342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wyatt Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963928748597155, 28.897064977963534 ], [ -81.963929245311135, 28.896443016819596 ], [ -81.963900800376081, 28.896217632813897 ], [ -81.963847007799245, 28.895844789084599 ], [ -81.963767446167637, 28.895530933406185 ], [ -81.963578239625846, 28.894949898683045 ], [ -81.963562129729695, 28.894865997586557 ], [ -81.963558560222225, 28.89480889097543 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ward Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962925278043301, 28.896435523778557 ], [ -81.962863447547704, 28.896190394328439 ], [ -81.962742113646541, 28.89575204435171 ], [ -81.962657031765957, 28.895532692434386 ], [ -81.96255380014982, 28.895270704444087 ], [ -81.962474953910672, 28.895093981476869 ], [ -81.962450589469185, 28.894949587775415 ], [ -81.962450626810679, 28.894846626376758 ], [ -81.962474039334381, 28.894751684840163 ], [ -81.962521152573402, 28.894666025561882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eastover Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962209370096659, 28.896549113888312 ], [ -81.962158214709774, 28.896354853354481 ], [ -81.962118845867764, 28.896179501102392 ], [ -81.962079458695328, 28.896046159892112 ], [ -81.96199030072529, 28.89580321308517 ], [ -81.961907360197031, 28.895589493457827 ], [ -81.961824615559308, 28.89539322881339 ], [ -81.961785166366155, 28.895301959005998 ], [ -81.961753909682727, 28.895229637105576 ], [ -81.961695858364479, 28.895057932785576 ], [ -81.96167099305336, 28.894948336886934 ], [ -81.961648445520282, 28.894831789425975 ], [ -81.961618240487638, 28.89464476655796 ], [ -81.961618294000871, 28.894500379680615 ], [ -81.961626206727232, 28.894430046782666 ], [ -81.961648178175949, 28.894365962718972 ], [ -81.961698532018971, 28.894277159233432 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Troy Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956315955789478, 28.896687951772527 ], [ -81.956639256646113, 28.896368482022417 ], [ -81.956787559032833, 28.896254601017553 ], [ -81.956948380890083, 28.89616644932158 ], [ -81.957345198775229, 28.895979145868502 ], [ -81.958157343728956, 28.895586024218161 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Archer Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004395142664592, 28.936535644888011 ], [ -82.004629312202894, 28.936517279868095 ], [ -82.004994596534374, 28.936487640493553 ], [ -82.005080953430749, 28.936481560644907 ], [ -82.005107724575424, 28.936480041174367 ], [ -82.005131903904811, 28.936482319543423 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Archer Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00391327542502, 28.936580617407138 ], [ -82.004395142664592, 28.936535644888011 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Archer Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002398166507845, 28.93425585590446 ], [ -82.002118494326766, 28.935252476194044 ], [ -82.002112632733557, 28.935271383841901 ], [ -82.002108528131942, 28.935287885049672 ], [ -82.002104817399911, 28.9353043862527 ], [ -82.002101299499358, 28.93532088745329 ], [ -82.002098173417295, 28.935337389551471 ], [ -82.002095438128165, 28.935353889840389 ], [ -82.002093093637782, 28.935370734801111 ], [ -82.002090945050938, 28.935387235985299 ], [ -82.002089187263124, 28.935404080939044 ], [ -82.00208762230757, 28.935420925890472 ], [ -82.002086647127328, 28.93543742706083 ], [ -82.002085864785215, 28.935454272003074 ], [ -82.002085279378605, 28.935471116942985 ], [ -82.00208528067634, 28.935487961876042 ], [ -82.002085475832772, 28.935504806806779 ], [ -82.002085864847999, 28.935521652637544 ], [ -82.002086844665442, 28.935538154687258 ], [ -82.002088016296099, 28.935554998704237 ], [ -82.002089578721922, 28.935571843618931 ], [ -82.002091533994474, 28.935588688528963 ], [ -82.002093683120961, 28.935605190564818 ], [ -82.002096224074364, 28.935622034565572 ], [ -82.00209915581803, 28.935638535689844 ], [ -82.0021022814216, 28.935655037713989 ], [ -82.002105798846969, 28.935671537928854 ], [ -82.002109707068669, 28.93568803813897 ], [ -82.002113811202108, 28.935704540151189 ], [ -82.00211830510078, 28.935720697482218 ], [ -82.002123190821933, 28.935736854808393 ], [ -82.002128272455195, 28.93575301303429 ], [ -82.00213374283409, 28.93576916945073 ], [ -82.002139605035964, 28.935785326764471 ], [ -82.002145661093166, 28.935801141203786 ], [ -82.002152111024955, 28.935816952931106 ], [ -82.002158754818055, 28.935832766460315 ], [ -82.002165789403151, 28.935848237112548 ], [ -82.002173215811894, 28.93586370685729 ], [ -82.002180836082218, 28.935879176599194 ], [ -82.002188848176488, 28.935894645433471 ], [ -82.002197054126668, 28.935909771393 ], [ -82.002205651895096, 28.935924554475278 ], [ -82.002214445582851, 28.93593968042633 ], [ -82.002223629037601, 28.935954461695413 ], [ -82.002233008399955, 28.935968901894128 ], [ -82.002242778561168, 28.935983339380247 ], [ -82.00225294054718, 28.935997778665204 ], [ -82.002263101504155, 28.93601187327295 ], [ -82.002273652234621, 28.936025968777123 ], [ -82.002284594783958, 28.936039719598881 ], [ -82.002295734266767, 28.936053125740727 ], [ -82.002307066592749, 28.936066876555461 ], [ -82.002318790731479, 28.936079939815766 ], [ -82.002330709765005, 28.936093346846519 ], [ -82.002342824700023, 28.936106066325301 ], [ -82.002355329409113, 28.936118786699964 ], [ -82.002368032083922, 28.936131504363814 ], [ -82.002380928615224, 28.936143880956546 ], [ -82.002394020028646, 28.936155912868912 ], [ -82.002407503267762, 28.936167944774471 ], [ -82.002421182414722, 28.936179632901801 ], [ -82.002435055424698, 28.93619132012266 ], [ -82.002449123316779, 28.936202665369763 ], [ -82.002463583027989, 28.936213665933305 ], [ -82.002478042735405, 28.93622432272117 ], [ -82.002492893242987, 28.936234979501744 ], [ -82.002502663319632, 28.936242198614501 ], [ -82.002507742727914, 28.93624563628067 ], [ -82.002522986076357, 28.936255605503888 ], [ -82.002538423287831, 28.936265574722462 ], [ -82.002553859476535, 28.936275543939235 ], [ -82.002569686451324, 28.936284825600097 ], [ -82.002585708314825, 28.936294108158357 ], [ -82.002601730173893, 28.936303045136029 ], [ -82.002628480087708, 28.936316454616751 ], [ -82.002660720723995, 28.936332659312452 ], [ -82.002698845944423, 28.936350829102135 ], [ -82.002736363916952, 28.936367328744357 ], [ -82.002774271665643, 28.936383486400036 ], [ -82.002812375321952, 28.936398955591159 ], [ -82.002850869771336, 28.936413737216505 ], [ -82.002922190501465, 28.936439519922523 ], [ -82.002961464492302, 28.936452925503549 ], [ -82.00300093643088, 28.936465300649449 ], [ -82.003040797116853, 28.936477332002379 ], [ -82.003080660871504, 28.936488675795225 ], [ -82.003120913363716, 28.936499332020571 ], [ -82.003161360741302, 28.936509644455917 ], [ -82.003201810159865, 28.936519269330905 ], [ -82.003242647278995, 28.936527862863596 ], [ -82.003283680307405, 28.936536112605758 ], [ -82.003324716409807, 28.936544018561278 ], [ -82.003365945324035, 28.936550893177948 ], [ -82.003407370135974, 28.936557080229594 ], [ -82.003448990854878, 28.936562923490133 ], [ -82.003490896634275, 28.93656560328812 ], [ -82.003532348064041, 28.936569655472681 ], [ -82.003572647584932, 28.936572691687328 ], [ -82.003615248787952, 28.936574715462953 ], [ -82.003657853038234, 28.936575728655587 ], [ -82.003697000651954, 28.936577754290351 ], [ -82.003740754734011, 28.936578765625004 ], [ -82.003794871645368, 28.936579777596084 ], [ -82.003838625729216, 28.936580788898933 ], [ -82.00387796611011, 28.936580618292311 ], [ -82.00391327542502, 28.936580617407138 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Trce", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003164339127622, 28.934446376982773 ], [ -82.003219744151707, 28.934444549641242 ], [ -82.00330379571713, 28.934437457702778 ], [ -82.003406708659, 28.934425128392387 ], [ -82.00348346936849, 28.934412097595445 ], [ -82.003567232330937, 28.934393863966822 ], [ -82.003657273330816, 28.934368575099718 ], [ -82.003753988229093, 28.934335149120926 ], [ -82.003892454086539, 28.934273577665554 ], [ -82.004007013260988, 28.934222762038061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lansing Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002985940226736, 28.949117898885113 ], [ -82.003447219246766, 28.94916202248988 ], [ -82.003651941906426, 28.949180023993183 ], [ -82.003789105698331, 28.949196227683952 ], [ -82.003844514969742, 28.9492103246365 ], [ -82.003936506180096, 28.949235838244793 ], [ -82.004239597646531, 28.949323968788502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Summerchase Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999255644646141, 28.95320753867135 ], [ -81.998717409313201, 28.953293341845963 ], [ -81.998653941733522, 28.953305947060088 ], [ -81.998617090686835, 28.953320351727164 ], [ -81.998590151680304, 28.953337603233106 ], [ -81.998565907353637, 28.953372568561953 ], [ -81.998555669217254, 28.953419386563752 ], [ -81.998550318553797, 28.954383169586311 ], [ -81.998554991980185, 28.955284713412819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Summerchase Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999956058438059, 28.953218962896933 ], [ -81.999939645448848, 28.95319071300807 ], [ -81.999925279064584, 28.953171439121832 ], [ -81.99989050891098, 28.953149297706943 ], [ -81.999861848871788, 28.953138494499097 ], [ -81.999812713192142, 28.953136693397347 ], [ -81.999720585780224, 28.95314389520582 ], [ -81.999255644646141, 28.95320753867135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Hill Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999964882956647, 28.954725400575978 ], [ -82.000153913682098, 28.954723512602044 ], [ -82.000398796183859, 28.954721623582003 ], [ -82.000559901926181, 28.954719734189307 ], [ -82.000667652837535, 28.954715132397805 ], [ -82.000701048832269, 28.954712088918054 ], [ -82.000722931181741, 28.954706017359698 ], [ -82.000742487781508, 28.954687615985055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meadow Lawn Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999266567534832, 28.955256815880549 ], [ -81.999444628631991, 28.955244859809 ], [ -81.999873033778172, 28.955226630681782 ], [ -81.999969077891819, 28.955212971076222 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Betrillo Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996495718738416, 28.95475438141035 ], [ -81.996469063221099, 28.955015818811141 ], [ -81.996467102839986, 28.955094400246399 ], [ -81.99646710020167, 28.955191635713796 ], [ -81.996465049451487, 28.955299673359409 ], [ -81.996467091711594, 28.955389706788115 ], [ -81.996469137120783, 28.955477938339158 ], [ -81.996469134272289, 28.955553565720169 ], [ -81.996466109116483, 28.955628768939782 ], [ -81.996466888214997, 28.95569889777541 ], [ -81.996471214980033, 28.956148616278398 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gomez Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995763290516635, 28.95466343088026 ], [ -81.99575054509296, 28.954932319723298 ], [ -81.995748485294754, 28.955180808993745 ], [ -81.995742337890974, 28.955323059589752 ], [ -81.995744382605835, 28.955413093931263 ], [ -81.995746423042249, 28.955530135665647 ], [ -81.995743386334212, 28.955645659575904 ], [ -81.995748250826622, 28.95613712264274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996471214980033, 28.956148616278398 ], [ -81.996403596091099, 28.956147778872708 ], [ -81.996268118273179, 28.95614559505993 ], [ -81.996098541299062, 28.956140566958499 ], [ -81.99595113219597, 28.956136960452071 ], [ -81.995748250826622, 28.95613712264274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109F 1", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972734391323101, 28.95794320558154 ], [ -81.971603385099129, 28.957948200659796 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109E 2", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973234129642847, 28.953400072893501 ], [ -81.973228597018846, 28.954255400190615 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109H", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978269729189464, 28.955724262052357 ], [ -81.978269203529635, 28.956384157382931 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109H", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978290802334882, 28.952818353658625 ], [ -81.978286859399631, 28.953430807114216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109E 1", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970841819956874, 28.952853701263393 ], [ -81.970847756984696, 28.953037595961788 ], [ -81.970856352916542, 28.953095354440833 ], [ -81.970872480532222, 28.953161634901747 ], [ -81.970895071591883, 28.953219397327331 ], [ -81.970927579203675, 28.953283257788776 ], [ -81.970970391836161, 28.953347235972739 ], [ -81.971082315691618, 28.953468454259113 ], [ -81.971662122798492, 28.954057712683671 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rojas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956499141219552, 28.943901499722617 ], [ -81.956313729724243, 28.944160504877598 ], [ -81.956282507074974, 28.944215199817293 ], [ -81.956261091971484, 28.944265168130386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cabella Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96107770263508, 28.943620576690993 ], [ -81.960928104165063, 28.943605442294118 ], [ -81.960828120602386, 28.943607867335285 ], [ -81.960773256354088, 28.943621156496526 ], [ -81.960734854735492, 28.943645909583065 ], [ -81.960704133356444, 28.943672915230298 ], [ -81.960683023144824, 28.943701156223518 ], [ -81.960658039269205, 28.94373818801937 ], [ -81.960578633507708, 28.943905882909331 ], [ -81.960523897802418, 28.944081711069956 ], [ -81.960506873900783, 28.944159129108346 ], [ -81.960492019553925, 28.944287486733685 ], [ -81.960487593885631, 28.944379745787181 ], [ -81.960491943582397, 28.944486278994884 ], [ -81.960500327807424, 28.944549718977189 ], [ -81.960525999645711, 28.944643203189322 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cabella Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96107770263508, 28.943620576690993 ], [ -81.961169955404401, 28.943630276945161 ], [ -81.961245450424983, 28.943649434636889 ], [ -81.961292788881465, 28.943678716002822 ], [ -81.961329888533669, 28.943709117751816 ], [ -81.961350351518135, 28.943740640753553 ], [ -81.961366975164395, 28.943774414768363 ], [ -81.961374641009357, 28.943807059234519 ], [ -81.961378468583348, 28.943836327115314 ], [ -81.961377178249251, 28.943868969901029 ], [ -81.961364367192758, 28.943907236966176 ], [ -81.961311853874236, 28.944027664395939 ], [ -81.961181223973838, 28.944293275201701 ], [ -81.961138976237862, 28.944340538593906 ], [ -81.961106313375339, 28.944374527514459 ], [ -81.961048084272619, 28.944428311619536 ], [ -81.960926477460518, 28.944519452008045 ], [ -81.960844557106896, 28.94457120707348 ], [ -81.960774165621004, 28.94459594991179 ], [ -81.960716574623873, 28.944608315203428 ], [ -81.960597555858655, 28.94462291273695 ], [ -81.960525999645711, 28.944643203189322 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "De Silva Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960525999645711, 28.944643203189322 ], [ -81.960516895780927, 28.944720818450978 ], [ -81.960498952226544, 28.944793980094243 ], [ -81.960461821599878, 28.944846874183927 ], [ -81.960377336206903, 28.944912135529606 ], [ -81.960273654000801, 28.944979642351583 ], [ -81.960117723046267, 28.945077302614504 ], [ -81.960006883347859, 28.945139826441629 ], [ -81.959892803774963, 28.945200350628326 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Presa Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962025930143241, 28.941378421878447 ], [ -81.962179479494566, 28.94164977771203 ], [ -81.962203098994124, 28.941691518152229 ], [ -81.96222759361369, 28.94174977260738 ], [ -81.962251388687093, 28.941819252291729 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lavaca Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959920047968481, 28.939802093685394 ], [ -81.960160689473852, 28.939836360565884 ], [ -81.960237238413058, 28.939846681178938 ], [ -81.960302981979453, 28.939854623711156 ], [ -81.960366922587752, 28.939861771659661 ], [ -81.960421856073154, 28.939868917820018 ], [ -81.960488501910234, 28.939875274296025 ], [ -81.960574053693705, 28.939894314430031 ], [ -81.960669302221547, 28.939920731801571 ], [ -81.96074424145462, 28.939945645349837 ], [ -81.960803683811832, 28.939972811862468 ], [ -81.960837901045323, 28.939988667044791 ], [ -81.960873919213881, 28.940005312251149 ], [ -81.960923444475142, 28.940027509590745 ], [ -81.961001783368687, 28.940065559576318 ], [ -81.961136851183738, 28.940137691172918 ], [ -81.961579086957641, 28.94038626794827 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nueva Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959966123130812, 28.939104085894119 ], [ -81.960063702177067, 28.939112236555033 ], [ -81.960133045938292, 28.939119388029685 ], [ -81.960202389099635, 28.939128122993832 ], [ -81.960260926961084, 28.939134477174541 ], [ -81.960351885482538, 28.939146388227666 ], [ -81.960481568199029, 28.939163063025926 ], [ -81.960605847027537, 28.939180528324524 ], [ -81.96068258336787, 28.939190517598206 ], [ -81.960760179480033, 28.939205432701048 ], [ -81.960843593824237, 28.939222586245485 ], [ -81.960951657702751, 28.939251138381305 ], [ -81.96104981352623, 28.93927810131823 ], [ -81.961123656288905, 28.939301890080692 ], [ -81.961169582252708, 28.93931774857683 ], [ -81.961207395020693, 28.939329672512855 ], [ -81.961242662266429, 28.939343335324104 ], [ -81.961282161850619, 28.939359482461295 ], [ -81.961323072875942, 28.939375629091977 ], [ -81.961368213634032, 28.939393016681301 ], [ -81.96141641382296, 28.939414198378998 ], [ -81.961680016018846, 28.939526710644934 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dolorosa Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960652448022955, 28.938166124754147 ], [ -81.960672872156948, 28.938183137183358 ], [ -81.960715184942558, 28.938225929148256 ], [ -81.960780905765787, 28.938288535105933 ], [ -81.960826823003586, 28.938323405048354 ], [ -81.96091837067442, 28.93838418412269 ], [ -81.960998802967282, 28.938419314906021 ], [ -81.961133876726791, 28.938464512151871 ], [ -81.961565383902851, 28.938606745183851 ], [ -81.961637956690609, 28.938638156781749 ], [ -81.961744108899794, 28.938706396930868 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chavez Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962765205646448, 28.936658794205488 ], [ -81.963043632256628, 28.936346756060747 ], [ -81.963080662296747, 28.936307756488922 ], [ -81.963160374287824, 28.936237562809843 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959211871828231, 28.934061347829928 ], [ -81.959312436760868, 28.934177117492645 ], [ -81.9593575636205, 28.934225924553452 ], [ -81.959403979069322, 28.934279268724893 ], [ -81.959460711308523, 28.934337154541073 ], [ -81.959527018120824, 28.934403894731393 ], [ -81.959582100373723, 28.934458571438729 ], [ -81.95965124368017, 28.934524596000504 ], [ -81.959708864313299, 28.934577556353219 ], [ -81.959780745284263, 28.934641176153914 ], [ -81.959840517744937, 28.934692072645934 ], [ -81.959915330371643, 28.934752943059333 ], [ -81.959977252606919, 28.934801777488236 ], [ -81.960054606988365, 28.934860241261369 ], [ -81.960118679129025, 28.934906670748891 ], [ -81.960198575262282, 28.93496272967845 ], [ -81.960264797173807, 28.93500709618738 ], [ -81.960343967427022, 28.935054702122557 ], [ -81.960412538876568, 28.935094946671263 ], [ -81.96050220970676, 28.935144478403192 ], [ -81.960583088574566, 28.93518781684898 ], [ -81.96068331144896, 28.935238899899794 ], [ -81.96080307667161, 28.935294152680694 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mareno Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958041527707479, 28.934354799802239 ], [ -81.958204297489218, 28.934375939072044 ], [ -81.958295194464938, 28.934376995997251 ], [ -81.958366868755292, 28.934373131193002 ], [ -81.958668731402426, 28.93430741216288 ], [ -81.958808054974469, 28.934268873847 ], [ -81.958895720798438, 28.934239246855668 ], [ -81.958956412930135, 28.934214453261806 ], [ -81.959018339651337, 28.934182700621843 ], [ -81.959211871828231, 28.934061347829928 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Perez Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956550862225299, 28.933068653862414 ], [ -81.956523185605249, 28.933162754201124 ], [ -81.956496892417931, 28.93324993618803 ], [ -81.956481756610188, 28.933351790390681 ], [ -81.956481934356063, 28.934524659390156 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Panama Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954135789788864, 28.935153594862882 ], [ -81.954167516958975, 28.935148894832572 ], [ -81.954297619159021, 28.93510333728949 ], [ -81.954453342173778, 28.935041822229678 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corona Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955616357392799, 28.923913843529267 ], [ -81.955854021217235, 28.923720266752916 ], [ -81.955872394287496, 28.923704459164547 ], [ -81.955890179100805, 28.923687620056214 ], [ -81.955907186508654, 28.92367078068991 ], [ -81.95592360448758, 28.923653253578372 ], [ -81.955941192258365, 28.923636676966442 ], [ -81.955960976722935, 28.923613147982724 ], [ -81.955980758536256, 28.923588596694046 ], [ -81.955999379214077, 28.923561997712504 ], [ -81.95601102017298, 28.923541535659389 ], [ -81.956022661682866, 28.92351493438526 ], [ -81.956036633728402, 28.923480148247101 ], [ -81.956050607936291, 28.923440244286581 ], [ -81.956059929620338, 28.923401362003641 ], [ -81.956081941927067, 28.923200489304836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Armadillo Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961854547251264, 28.933327820818267 ], [ -81.961920031786406, 28.933281920775851 ], [ -81.96199041309427, 28.933229900022258 ], [ -81.962117711315983, 28.933125859108991 ], [ -81.962467515133355, 28.932810365603817 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Five Forks Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013868500794118, 28.924690506503438 ], [ -82.013869271117883, 28.924611781134132 ], [ -82.013869255148251, 28.92448802226626 ], [ -82.013869236073447, 28.924340198268769 ], [ -82.013870979179117, 28.924217812515845 ], [ -82.013875348044223, 28.924184673469892 ], [ -82.01388199358405, 28.924150410840031 ], [ -82.013890538360386, 28.924122831325668 ], [ -82.013908584029991, 28.924093579816539 ], [ -82.013931378143326, 28.924071849369891 ], [ -82.013956073325559, 28.924055133689524 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Awendaw Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013956073325559, 28.924055133689524 ], [ -82.013766454047882, 28.923853913426122 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bainan Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994764148413438, 28.917892799586351 ], [ -81.994692321901283, 28.917741825297366 ], [ -81.994668558882964, 28.917691874083307 ], [ -81.994665722116309, 28.91765698756609 ], [ -81.994670362233208, 28.917627362646655 ], [ -81.994691777677346, 28.917566685867783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Balmoral Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0257453206316, 28.920764955451311 ], [ -82.025941860262904, 28.919925842807842 ], [ -82.025946843646324, 28.919809374394188 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Foxfield Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026737631565538, 28.920355506361911 ], [ -82.026890476942299, 28.919370305514164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Manor Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024810161553447, 28.91916862342871 ], [ -82.025452085348263, 28.91919945504392 ], [ -82.02562233002773, 28.919211201134658 ], [ -82.025803181933099, 28.919218534598254 ], [ -82.026051019958246, 28.919231746245352 ], [ -82.026190008421011, 28.919240558753387 ], [ -82.026317277976034, 28.919249375164824 ], [ -82.026439524864244, 28.919264084415222 ], [ -82.02659168573571, 28.91929412229722 ], [ -82.026812854531755, 28.919347364453433 ], [ -82.026890476942299, 28.919370305514164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024810161553447, 28.91916862342871 ], [ -82.024793425720588, 28.919208405973475 ], [ -82.02476920902906, 28.919254825347263 ], [ -82.024739606160395, 28.919301343131782 ], [ -82.024708353634367, 28.919332289378264 ], [ -82.024618501806927, 28.919401059528266 ], [ -82.024520831532982, 28.919462956415106 ], [ -82.024411246856161, 28.919531730838496 ], [ -82.02430576242638, 28.919597067603235 ], [ -82.024200279673366, 28.919665840228326 ], [ -82.024086981827594, 28.919738053689045 ], [ -82.024012558123928, 28.91978619514839 ], [ -82.023965285166113, 28.919813017810526 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024606868049844, 28.918105370522479 ], [ -82.024682417380703, 28.918180846729399 ], [ -82.024735453239813, 28.918252141184094 ], [ -82.024780380914905, 28.918335115496586 ], [ -82.024817549205693, 28.918434669982812 ], [ -82.024835086406938, 28.918537481677966 ], [ -82.024835116888767, 28.918667723625543 ], [ -82.024830580743526, 28.91874587051619 ], [ -82.024828318953141, 28.918813996093988 ], [ -82.024821570114653, 28.918915954978559 ], [ -82.024819255448861, 28.919012365745399 ], [ -82.024820186090963, 28.919071384771996 ], [ -82.024814724342434, 28.919116559214739 ], [ -82.024810161553447, 28.91916862342871 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thistledown Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024734334713884, 28.921681069485757 ], [ -82.024714570077933, 28.92169063736976 ], [ -82.024683807487065, 28.921701405471179 ], [ -82.024633400255922, 28.921708588649675 ], [ -82.024590404911365, 28.921707291612293 ], [ -82.024531700098095, 28.921693713504062 ], [ -82.02446526978251, 28.921671724638184 ], [ -82.024371287287593, 28.921635300273099 ], [ -82.024263433465677, 28.921596472764627 ], [ -82.024138971423895, 28.921547678612516 ], [ -82.024095203847807, 28.921528090210142 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leicester Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024734334713884, 28.921681069485757 ], [ -82.024803075710707, 28.921742567532764 ], [ -82.024893944079636, 28.921793342271283 ], [ -82.0249881251316, 28.92183973570058 ], [ -82.025126459058782, 28.921880963489823 ], [ -82.025208322278445, 28.92189779348498 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thistledown Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025020857652564, 28.920627921098419 ], [ -82.025018343226847, 28.920742055679874 ], [ -82.0250099646465, 28.920834531710163 ], [ -82.0250017787492, 28.920922196661756 ], [ -82.024987930343812, 28.921017081006827 ], [ -82.024965879839826, 28.921126750052725 ], [ -82.024946365011743, 28.921216823473888 ], [ -82.02492977421177, 28.921294517764416 ], [ -82.024913380652606, 28.921364994551613 ], [ -82.024891123789956, 28.921430660452096 ], [ -82.024874641979622, 28.921487993505288 ], [ -82.024849947386329, 28.921554087526424 ], [ -82.024828214642881, 28.921602789255935 ], [ -82.024807464421073, 28.92162974998616 ], [ -82.024784735262699, 28.921649756172858 ], [ -82.024757063663913, 28.92166889072411 ], [ -82.024734334713884, 28.921681069485757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thistledown Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024975669603847, 28.919914395405545 ], [ -82.024987640246081, 28.920064039939248 ], [ -82.024998679012199, 28.92020198817411 ], [ -82.025001627795191, 28.920277274317559 ], [ -82.025009859809501, 28.920394157151616 ], [ -82.025018286398492, 28.920501068674685 ], [ -82.025021049700143, 28.92062035892091 ], [ -82.025020857652564, 28.920627921098419 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023965285166113, 28.919813017810526 ], [ -82.023957862118451, 28.919817145300883 ], [ -82.023852378141541, 28.91988247990415 ], [ -82.023742987182246, 28.919954691495796 ], [ -82.023667246208504, 28.920002185141623 ], [ -82.023572462429456, 28.920062536110954 ], [ -82.023480704760644, 28.920121998638749 ], [ -82.023393987255943, 28.920175248842796 ], [ -82.023357686843397, 28.920194775267891 ], [ -82.023315774225566, 28.920217409237221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023315774225566, 28.920217409237221 ], [ -82.023264917067081, 28.920241816811746 ], [ -82.02319192080293, 28.920264527262518 ], [ -82.023113653361648, 28.920283542752223 ], [ -82.023017853515157, 28.920300417266866 ], [ -82.022934152979772, 28.920316401843717 ], [ -82.022870623096978, 28.920332382125043 ], [ -82.022817692353769, 28.920353199638175 ], [ -82.022763040202847, 28.920381261949409 ], [ -82.022708389306999, 28.920415335334461 ], [ -82.022663291934279, 28.920451627679583 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Banberry Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960267785700466, 28.892096986224566 ], [ -81.960250794068401, 28.892095949863915 ], [ -81.960159780784053, 28.892084922936295 ], [ -81.960044159990062, 28.892070449055559 ], [ -81.959932442481914, 28.892055976241018 ], [ -81.959812725325932, 28.892026720362676 ], [ -81.959684609433424, 28.891994022287673 ], [ -81.959531498455277, 28.89195031751942 ], [ -81.959370387754788, 28.89188460757018 ], [ -81.959200883375459, 28.891808237811272 ], [ -81.959039772632764, 28.891746308102817 ], [ -81.958874560275348, 28.891680940083866 ], [ -81.958700953077596, 28.891608006200364 ], [ -81.95852324433416, 28.891531633062108 ], [ -81.958361944390603, 28.891455264780081 ], [ -81.958196741290081, 28.891371674883768 ], [ -81.958064540480393, 28.891302191732446 ], [ -81.958038105540382, 28.891280005837984 ], [ -81.958015816500833, 28.891251028720134 ], [ -81.957998838510207, 28.891219248009541 ], [ -81.957986107218204, 28.891187468625912 ], [ -81.957981877196772, 28.891146346780406 ], [ -81.957986139680344, 28.891109899702755 ], [ -81.957999960140754, 28.891072521735111 ], [ -81.958022276763458, 28.891033275954968 ], [ -81.958059468522208, 28.890972542030973 ], [ -81.958110475993593, 28.890888447346786 ], [ -81.958158293823132, 28.89081182720453 ], [ -81.958222047338779, 28.890717457445295 ], [ -81.958253924755397, 28.890669802455658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alora Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958253924755397, 28.890669802455658 ], [ -81.958879116153255, 28.890976624997982 ], [ -81.959591242034037, 28.891268382570072 ], [ -81.959767208665298, 28.891324921225351 ], [ -81.95988314631407, 28.891344998722673 ], [ -81.960065344669289, 28.891354164488149 ], [ -81.960199126402117, 28.891352689268921 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Banberry Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958253924755397, 28.890669802455658 ], [ -81.958316983734974, 28.890578619357502 ], [ -81.958403750815705, 28.890462106086275 ], [ -81.958512108906817, 28.890332504349416 ], [ -81.95861834966135, 28.890212912890789 ], [ -81.958689621784998, 28.890141449207754 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enright Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958689621784998, 28.890141449207754 ], [ -81.958784131905176, 28.890200264023054 ], [ -81.959168434779798, 28.890386020724918 ], [ -81.959661898685368, 28.890594689707683 ], [ -81.959843107967814, 28.890665771313458 ], [ -81.959919556793324, 28.890690715696458 ], [ -81.959984684788381, 28.890701949819363 ], [ -81.960068221874394, 28.890706959006913 ], [ -81.960146834596856, 28.890703966887259 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Banberry Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958689621784998, 28.890141449207754 ], [ -81.958722254815328, 28.890105706503039 ], [ -81.958797006126971, 28.89002496457616 ], [ -81.958843755655764, 28.889958935954613 ], [ -81.958870675857256, 28.889915331523568 ], [ -81.958893352329511, 28.88986175717401 ], [ -81.958910360257917, 28.88981814969836 ], [ -81.958918878823923, 28.889762077953186 ], [ -81.958924954678352, 28.889702174292548 ], [ -81.958926014542172, 28.889620026491752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Banberry Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958862555890477, 28.888969550475402 ], [ -81.958854961510511, 28.888898058888248 ], [ -81.958838419184431, 28.888745417071735 ], [ -81.958817780963884, 28.888585210911046 ], [ -81.958801437433209, 28.888425348033497 ], [ -81.958790738894407, 28.888319804469333 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Banberry Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958926014542172, 28.889620026491752 ], [ -81.9589207155813, 28.88955641089456 ], [ -81.958904367381379, 28.889407550700948 ], [ -81.958889361172297, 28.889215036720156 ], [ -81.958872435864407, 28.889048056342482 ], [ -81.958862555890477, 28.888969550475402 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gaskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958862555890477, 28.888969550475402 ], [ -81.958964504322594, 28.888958366087262 ], [ -81.959072112785407, 28.888955906788066 ], [ -81.959159893067991, 28.888965901237363 ], [ -81.959467117516425, 28.889025808759111 ], [ -81.959805933121046, 28.889089285521855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dobbins Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957111659220104, 28.888793487935523 ], [ -81.957256338766896, 28.887678817646758 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbett Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956293165811189, 28.88866279193963 ], [ -81.956342049770086, 28.888526328591272 ], [ -81.956383325003173, 28.888373361480326 ], [ -81.956411843898721, 28.88821333151591 ], [ -81.956441312126714, 28.888058079530623 ], [ -81.956466570029704, 28.88792377488085 ], [ -81.956486214547951, 28.887823971473853 ], [ -81.956503030172954, 28.887788242213027 ], [ -81.956524044117344, 28.887762372844922 ], [ -81.956560458726699, 28.887730346646801 ], [ -81.956608076112303, 28.887700788242462 ], [ -81.956659886676235, 28.887686018075939 ], [ -81.956720093930599, 28.887681110034368 ], [ -81.956899308524811, 28.887679936045995 ], [ -81.957142929236241, 28.88768001313224 ], [ -81.957256338766896, 28.887678817646758 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbett Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955523215079012, 28.889894529109682 ], [ -81.955624731382585, 28.889798761874662 ], [ -81.955735487343546, 28.889668899681372 ], [ -81.955820719847154, 28.889551988737107 ], [ -81.955911799589146, 28.889402818812162 ], [ -81.955964378603213, 28.889311735317271 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elwick Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954029126005821, 28.889054553695313 ], [ -81.954551996974232, 28.889053089493391 ], [ -81.955155504878348, 28.889057073042991 ], [ -81.955267024327227, 28.889067768213739 ], [ -81.955368580925949, 28.88908910441797 ], [ -81.955438684978645, 28.889100492174972 ], [ -81.955508784131425, 28.88912812039754 ], [ -81.955593639085663, 28.889162246417708 ], [ -81.955964378603213, 28.889311735317271 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbett Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954029126005821, 28.889054553695313 ], [ -81.954029091169076, 28.889130869342218 ], [ -81.954027083964164, 28.889303867594645 ], [ -81.954031096845483, 28.889500509975207 ], [ -81.954031035618115, 28.889638708968477 ], [ -81.954030995409511, 28.889729465019926 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Knoll Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954030995409511, 28.889729465019926 ], [ -81.954419471097111, 28.889733379890199 ], [ -81.954993766732315, 28.8897287318675 ], [ -81.955189339272195, 28.889728796376705 ], [ -81.955242839312859, 28.88973855635675 ], [ -81.955299930904445, 28.889755332895657 ], [ -81.95539779354975, 28.889801934960154 ], [ -81.95545312828861, 28.889839298634929 ], [ -81.955523215079012, 28.889894529109682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbett Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955203808950401, 28.890402654334302 ], [ -81.955205671961068, 28.890362060471716 ], [ -81.955214914889396, 28.890316598454334 ], [ -81.955240771746418, 28.89025328184578 ], [ -81.955268476425317, 28.890191588182986 ], [ -81.955310939474757, 28.890123405572368 ], [ -81.955355244031011, 28.890071460452081 ], [ -81.955451226659747, 28.889972445034356 ], [ -81.955523215079012, 28.889894529109682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ingram Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954041442847696, 28.89040063737438 ], [ -81.955203808950401, 28.890402654334302 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbett Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954030995409511, 28.889729465019926 ], [ -81.954032494040405, 28.889778741050918 ], [ -81.954034274769896, 28.889924878203985 ], [ -81.954036030327799, 28.890127846722443 ], [ -81.954035943290052, 28.890324318945222 ], [ -81.954041442847696, 28.89040063737438 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mercer Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955595784490626, 28.888459168360654 ], [ -81.955829551514483, 28.888533381175506 ], [ -81.956293165811189, 28.88866279193963 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mercer Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954025732219577, 28.888383948461097 ], [ -81.954420065537704, 28.888380271570043 ], [ -81.955009112592663, 28.888379410922838 ], [ -81.955171467566643, 28.888389206459074 ], [ -81.955312816328856, 28.888406012000772 ], [ -81.955492475895383, 28.888436403403951 ], [ -81.955595784490626, 28.888459168360654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbett Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954025732219577, 28.888383948461097 ], [ -81.954023164778377, 28.888449236235239 ], [ -81.954027403063236, 28.888583656083451 ], [ -81.954023017590231, 28.888783730667289 ], [ -81.954029155195272, 28.88898635604172 ], [ -81.954029126005821, 28.889054553695313 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbett Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955595784490626, 28.888459168360654 ], [ -81.955640129167847, 28.888311424104593 ], [ -81.955668373778749, 28.888191270473079 ], [ -81.955693238039615, 28.888049640966745 ], [ -81.95571963709078, 28.88790064377309 ], [ -81.955717810369123, 28.887856803096323 ], [ -81.955701540553775, 28.887816564150118 ], [ -81.955679098381424, 28.887782096985472 ], [ -81.955647750856983, 28.887743118079992 ], [ -81.95560532724889, 28.887717123219069 ], [ -81.95555736523896, 28.887700870455031 ], [ -81.955502018359255, 28.887694356463236 ], [ -81.955306450645438, 28.887694291511082 ], [ -81.955016790454579, 28.887694194787347 ], [ -81.954755125565796, 28.887696269690924 ], [ -81.954513109562413, 28.887695649255861 ], [ -81.954236363609994, 28.88769717936945 ], [ -81.954169937252956, 28.887713393613438 ], [ -81.954116420808489, 28.887740979418055 ], [ -81.954070278991466, 28.887779934003092 ], [ -81.954046276823945, 28.887822141724936 ], [ -81.954029649401917, 28.88787084853044 ], [ -81.954023386672361, 28.88795075953065 ], [ -81.954023341585611, 28.888052516450383 ], [ -81.954023258305369, 28.888238157520565 ], [ -81.954025732219577, 28.888383948461097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Banyan Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023219624964895, 28.915838628137625 ], [ -82.022956570969328, 28.916069376754219 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023219624964895, 28.915838628137625 ], [ -82.023253636340513, 28.915867660122355 ], [ -82.023314657126633, 28.915926608597108 ], [ -82.02335567375421, 28.915978519809979 ], [ -82.023388689791574, 28.916027792246226 ], [ -82.023413440503433, 28.916069145716932 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abbeville Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024090173802691, 28.917651969451146 ], [ -82.024252150698004, 28.917532015934547 ], [ -82.024468151682413, 28.91739683090092 ], [ -82.024542151919306, 28.917348422172093 ], [ -82.024590150216042, 28.91730617441317 ], [ -82.024620349550915, 28.917268961023019 ], [ -82.024645140142454, 28.917231366921957 ], [ -82.02466313244085, 28.917189126304031 ], [ -82.024670124101888, 28.917147765587806 ], [ -82.024673643736861, 28.917090533195637 ], [ -82.024673566121251, 28.916752257746161 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morven Park Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024673566121251, 28.916752257746161 ], [ -82.024693492033293, 28.916752254177052 ], [ -82.024801527805607, 28.916752234774492 ], [ -82.024899208872, 28.916752217156979 ], [ -82.025027953029934, 28.916752192926456 ], [ -82.025125633070815, 28.91675217604719 ], [ -82.025200107274003, 28.916755204986178 ], [ -82.025242116842222, 28.916763997391509 ], [ -82.02528012547765, 28.916779829333102 ], [ -82.025314135633238, 28.91680006249884 ], [ -82.02534414525968, 28.916824695989853 ], [ -82.025365155954006, 28.916853730729436 ], [ -82.025379163959258, 28.916881007278135 ], [ -82.025390174812415, 28.9169144443559 ], [ -82.025396192641551, 28.916987479633839 ], [ -82.025398209059617, 28.917056996692605 ], [ -82.025398222571155, 28.917117714925102 ], [ -82.025398239819012, 28.91718547197085 ], [ -82.025393252590803, 28.917236511288312 ], [ -82.025386265028004, 28.917298110549012 ], [ -82.025372279300754, 28.917368510292945 ], [ -82.025347293117278, 28.917440670635646 ], [ -82.025314304031397, 28.917505795434725 ], [ -82.025271570944525, 28.917577897666909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morven Park Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025271570944525, 28.917577897666909 ], [ -82.025245319816619, 28.917618444462551 ], [ -82.025203018851087, 28.917666605963099 ], [ -82.025150332638376, 28.917724936422321 ], [ -82.025093334328943, 28.917775986114563 ], [ -82.02502933545162, 28.91782175681637 ], [ -82.024921334384487, 28.917891292917911 ], [ -82.02482833550971, 28.917951147296712 ], [ -82.02475551796006, 28.918001867649757 ], [ -82.024693792226145, 28.918042445067275 ], [ -82.024645522889912, 28.918075853110459 ], [ -82.024606868049844, 28.918105370522479 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rosewell Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025271570944525, 28.917577897666909 ], [ -82.025484521052277, 28.917678630490439 ], [ -82.025518642892195, 28.917688545821573 ], [ -82.025546602385049, 28.917694494890451 ], [ -82.025605492654933, 28.917703417587063 ], [ -82.025703051118612, 28.917701632711285 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grant Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022641539906544, 28.917390309703816 ], [ -82.022655801063422, 28.917390994914594 ], [ -82.022751248407417, 28.917387621775209 ], [ -82.022893023188431, 28.917385103488868 ], [ -82.023016051102999, 28.917386466250711 ], [ -82.023124087532665, 28.917386447290109 ], [ -82.023187571105353, 28.917392214944858 ], [ -82.023228912500969, 28.91740746041129 ], [ -82.02325791977627, 28.917426991145646 ], [ -82.023304232394636, 28.917472363428868 ], [ -82.023360900688886, 28.917535606630413 ], [ -82.023443659348331, 28.917620963368371 ], [ -82.023531084113941, 28.917719296987375 ], [ -82.023598387561989, 28.917792236153144 ], [ -82.02365974678186, 28.917859102947173 ], [ -82.023733107980945, 28.917940047080101 ], [ -82.023803800271637, 28.918009259073099 ], [ -82.023881163036179, 28.918084335701561 ], [ -82.023949188597967, 28.918151202107744 ], [ -82.024018546082146, 28.918207507770536 ], [ -82.024055889388833, 28.91822744561772 ], [ -82.024089231516086, 28.918240347144696 ], [ -82.02414257311338, 28.918246204544207 ], [ -82.024203915650105, 28.918246193787311 ], [ -82.024266572978746, 28.918237440422043 ], [ -82.024333580504589, 28.918223678515108 ], [ -82.02443125567153, 28.918196503018532 ], [ -82.02452912450542, 28.918151107347047 ], [ -82.024606868049844, 28.918105370522479 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ravenel Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023133487747728, 28.91846602077052 ], [ -82.023006275449646, 28.918256564922981 ], [ -82.022837430412707, 28.91802523244796 ], [ -82.02272701542482, 28.917868487500783 ], [ -82.022675220655074, 28.917757112940258 ], [ -82.022652340425793, 28.917648484719138 ], [ -82.022641539906544, 28.917390309703816 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fayette Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020535544780358, 28.918539537990334 ], [ -82.020498404514584, 28.918415384811031 ], [ -82.020489504603631, 28.918360631176427 ], [ -82.020487675453637, 28.918096251389798 ], [ -82.020485790638048, 28.917542459111939 ], [ -82.020474870563973, 28.916949239570254 ], [ -82.0204767444948, 28.916732108843167 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morven Park Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0204767444948, 28.916732108843167 ], [ -82.020556294969097, 28.91673024283611 ], [ -82.020684041096089, 28.916729326925932 ], [ -82.020896702735868, 28.916729294981906 ], [ -82.021003870046457, 28.916730175639774 ], [ -82.021132614180928, 28.91673015603541 ], [ -82.021197262960655, 28.916729249261884 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morven Park Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019757261739827, 28.916734828175272 ], [ -82.019804931119452, 28.916734821372057 ], [ -82.019912965851802, 28.916734805891267 ], [ -82.020062223526864, 28.916734784360873 ], [ -82.020227819335688, 28.916732146326915 ], [ -82.020339835871411, 28.916730565339904 ], [ -82.02043790451242, 28.916730260361806 ], [ -82.0204767444948, 28.916732108843167 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brighton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021926565478523, 28.91844982477242 ], [ -82.021782937852933, 28.918450997012012 ], [ -82.021591479843295, 28.918451027052043 ], [ -82.021472135695973, 28.918450850743568 ], [ -82.021279836693481, 28.918450629632769 ], [ -82.021203277077092, 28.918450641391736 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northam Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021926565478523, 28.91844982477242 ], [ -82.021917610534942, 28.917385261714553 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brighton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019052446364057, 28.918111749160367 ], [ -82.019051028177216, 28.917991916269091 ], [ -82.019043996201077, 28.917843260286222 ], [ -82.019044802807997, 28.917559120700115 ], [ -82.019040593955907, 28.917386382928228 ], [ -82.019040551160842, 28.917140927599426 ], [ -82.019040528225233, 28.917018199931885 ], [ -82.019037351326077, 28.916737679066909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evelynton Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024270507403756, 28.91493788025193 ], [ -82.024268618207856, 28.915111909264599 ], [ -82.024264795894055, 28.915254406049737 ], [ -82.024264348793793, 28.915339756178707 ], [ -82.024264368510188, 28.915430513688516 ], [ -82.024264393420012, 28.915535020392959 ], [ -82.024264411647749, 28.915614776197131 ], [ -82.024264908716802, 28.915748056153497 ], [ -82.024264925775825, 28.915822695933425 ], [ -82.024264936244663, 28.91586850102027 ], [ -82.02425939563399, 28.915905470892792 ], [ -82.024242391345638, 28.915940399981444 ], [ -82.024211208382795, 28.915980322160891 ], [ -82.024176979597769, 28.916011165958505 ], [ -82.024155101296941, 28.916024920793319 ], [ -82.024095718264249, 28.916049682081422 ], [ -82.024055084459903, 28.916055189575818 ], [ -82.023992570019871, 28.916055200466289 ], [ -82.02394568239518, 28.916055208615411 ], [ -82.023880041156303, 28.916055219996505 ], [ -82.023811077653889, 28.916052481719078 ], [ -82.023739185895977, 28.916052495012682 ], [ -82.023661040540162, 28.916052507536033 ], [ -82.023572852430647, 28.9160530892749 ], [ -82.02348859017431, 28.916059114745568 ], [ -82.023413440503433, 28.916069145716932 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evelynton Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020725193694673, 28.914260531317652 ], [ -82.020715024093334, 28.914198653317303 ], [ -82.020696251699988, 28.914116150996286 ], [ -82.020677482946738, 28.914036397969799 ], [ -82.020652462734247, 28.913956301194712 ], [ -82.020627439510733, 28.913871049591894 ], [ -82.020602419481449, 28.913796796982869 ], [ -82.020561530887335, 28.913700692189803 ], [ -82.02054167098359, 28.913635829908415 ], [ -82.020524233378566, 28.91357129118914 ], [ -82.020517968205439, 28.9134997877864 ], [ -82.020521080124908, 28.913428282091399 ], [ -82.020542947256175, 28.913362272213352 ], [ -82.020571063122574, 28.913288012603726 ], [ -82.020586686259108, 28.91326050917095 ], [ -82.020639812815915, 28.913202747034667 ], [ -82.020680439816246, 28.913166988355563 ], [ -82.020749196822351, 28.913125381273996 ], [ -82.020814854813352, 28.913094580532686 ], [ -82.020903048434761, 28.913072037790648 ], [ -82.021002561290857, 28.913064838640146 ], [ -82.021086955299154, 28.913067576913249 ], [ -82.021233863539905, 28.9130730539528 ], [ -82.021634147993382, 28.913072991037264 ], [ -82.022103666946364, 28.913071851169128 ], [ -82.022437841110658, 28.913075614940585 ], [ -82.022669837802638, 28.913079268367209 ], [ -82.022911669160536, 28.913079228465897 ], [ -82.023260094730645, 28.913083727715694 ], [ -82.023375940919379, 28.913083708147965 ], [ -82.02349471795003, 28.913083688884033 ], [ -82.02361036929598, 28.913083669147838 ], [ -82.023710390169185, 28.913083651998942 ], [ -82.023804755634885, 28.913084319692711 ], [ -82.02389597577924, 28.913084303924055 ], [ -82.023967991628624, 28.913084291431478 ], [ -82.024019203423421, 28.913084282524355 ], [ -82.024086419287201, 28.913085677485142 ], [ -82.024124828065922, 28.91309552836768 ], [ -82.024169643583306, 28.91311664239247 ], [ -82.024207583090032, 28.913141663653011 ], [ -82.024229467912704, 28.913163660517739 ], [ -82.024246476481196, 28.913189851210312 ], [ -82.024260737347731, 28.913218659947596 ], [ -82.024273248903157, 28.913257160562981 ], [ -82.02428011538953, 28.913323614428947 ], [ -82.02427953738642, 28.913419422227239 ], [ -82.024280155961009, 28.913501034877903 ], [ -82.024279579918471, 28.913600935492198 ], [ -82.024279605935348, 28.913719194132209 ], [ -82.024276512930527, 28.913862206030156 ], [ -82.024276544371673, 28.913999716973226 ], [ -82.024278024452116, 28.914090679967664 ], [ -82.024276585323605, 28.914178822894826 ], [ -82.02427348247339, 28.914283331071573 ], [ -82.024273487428744, 28.914300520727881 ], [ -82.024273507788322, 28.914385089397605 ], [ -82.024273528140398, 28.91447859621854 ], [ -82.024272347934499, 28.914555491063009 ], [ -82.024270434476705, 28.91461885699746 ], [ -82.024270448050203, 28.914682721562254 ], [ -82.024270470791564, 28.914777718972932 ], [ -82.024270493572885, 28.914877376745054 ], [ -82.024270507403756, 28.91493788025193 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eden Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023461712397832, 28.915460033134632 ], [ -82.023460546423877, 28.914930802009906 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beldon Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022155501532012, 28.916095692224477 ], [ -82.022158796910247, 28.915605445944109 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020439876071279, 28.915097782491681 ], [ -82.020508506390286, 28.915142079629959 ], [ -82.020570389753047, 28.915185344605462 ], [ -82.02063703255007, 28.915228608842884 ], [ -82.02071319552968, 28.91527884998618 ], [ -82.020784599403257, 28.915324905143521 ], [ -82.02087345662386, 28.91538212445635 ], [ -82.020936925169309, 28.915422596413844 ], [ -82.021035393065134, 28.915476898843718 ], [ -82.021100613795156, 28.915504331366805 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ludwell Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020753474309416, 28.915941137871123 ], [ -82.020974510759103, 28.915982783439425 ], [ -82.021103715457969, 28.915982783645148 ], [ -82.02121884505226, 28.915967833928391 ], [ -82.021249778239195, 28.91595526650384 ], [ -82.021283092852727, 28.915938511146912 ], [ -82.021310305152497, 28.915914190964362 ], [ -82.021331326084962, 28.915893375349182 ], [ -82.021349712594684, 28.915857884281774 ], [ -82.021359639048129, 28.915824615972813 ], [ -82.021413118085505, 28.915587765647295 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021100613795156, 28.915504331366805 ], [ -82.021182266432845, 28.915532313549068 ], [ -82.02125485567953, 28.915555334442406 ], [ -82.021317922851182, 28.915572075876774 ], [ -82.021364330976567, 28.915580444737426 ], [ -82.021413118085505, 28.915587765647295 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968624555342629, 28.922666526192419 ], [ -81.968674372821511, 28.922636929916017 ], [ -81.968694579901566, 28.922589560494945 ], [ -81.968709398757213, 28.922551665723756 ], [ -81.968724219704541, 28.922510217709675 ], [ -81.968737691591357, 28.922473504628016 ], [ -81.968752513950989, 28.922427318654506 ], [ -81.968768685443735, 28.922369289456675 ], [ -81.968782270466008, 28.922307669417712 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barraza Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968782270466008, 28.922307669417712 ], [ -81.969655263733443, 28.92245417288084 ], [ -81.969734942263912, 28.922467905814116 ], [ -81.969795567290575, 28.922475540296222 ], [ -81.969852729382112, 28.922481649091125 ], [ -81.969913355314461, 28.922486235564612 ], [ -81.970015556593552, 28.922486257590183 ], [ -81.970091776083009, 28.922481702705074 ], [ -81.970180119992989, 28.922477150477956 ], [ -81.97027712478527, 28.922469553062506 ], [ -81.97043476164346, 28.922455871265001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968844112327886, 28.920764080779428 ], [ -81.968841901033315, 28.920638981407695 ], [ -81.96884565349238, 28.920160222990791 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrera Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97043476164346, 28.922455871265001 ], [ -81.970467588909372, 28.922751532023678 ], [ -81.970504202596402, 28.923155569257975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Estafana Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969721789464074, 28.923232130343145 ], [ -81.969853509589541, 28.923187872678529 ], [ -81.96993464841978, 28.923168905716466 ], [ -81.970036125796497, 28.923153012869594 ], [ -81.970131269078095, 28.923151392854084 ], [ -81.970504202596402, 28.923155569257975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bellerose Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019990601091394, 28.916095716055992 ], [ -82.019937263769293, 28.916078190310916 ], [ -82.019849932141327, 28.916052419718916 ], [ -82.019777167837915, 28.916042298230771 ], [ -82.019687123429449, 28.916036783578239 ], [ -82.019353711299331, 28.916034270696436 ], [ -82.019276694844834, 28.916033156256596 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bellerose Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019276694844834, 28.916033156256596 ], [ -82.018889298676754, 28.916031366139304 ], [ -82.01873434154173, 28.916027703961937 ], [ -82.01868827067598, 28.916018497721129 ], [ -82.018657096620203, 28.916004339464109 ], [ -82.018631728136839, 28.915990869775726 ], [ -82.018610785563865, 28.915976133567185 ], [ -82.018590889245303, 28.915956790088263 ], [ -82.018572039984988, 28.915937446466323 ], [ -82.018555284032416, 28.915913498141858 ], [ -82.018543761288242, 28.915889548214324 ], [ -82.018536428960985, 28.915866518971466 ], [ -82.018534330541073, 28.91584164653986 ], [ -82.018534323596199, 28.915807562281707 ], [ -82.018591330399872, 28.915557557106361 ], [ -82.018665098953051, 28.915231789197367 ], [ -82.018680791765505, 28.91515256091542 ], [ -82.018689158210336, 28.915101895823067 ], [ -82.018707657195876, 28.914949057782483 ], [ -82.018751735536185, 28.91453514570361 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eaton Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019276694844834, 28.916033156256596 ], [ -82.019275633445503, 28.915959460418982 ], [ -82.019276672862262, 28.915911557342437 ], [ -82.019281899260307, 28.915868259006082 ], [ -82.019291313212065, 28.915815749442057 ], [ -82.019298633889676, 28.915767845490699 ], [ -82.019311188278067, 28.915717177977523 ], [ -82.019340484251757, 28.915599258148667 ], [ -82.019375013507329, 28.915482259727867 ], [ -82.019442108681929, 28.915274835769864 ], [ -82.019461144977456, 28.91520059753352 ], [ -82.019473518004546, 28.915123502655408 ], [ -82.019474470279789, 28.915042601686796 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Birmingham Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991291557868195, 28.882810290702871 ], [ -81.991360701375271, 28.882865158769036 ], [ -81.991496288879532, 28.882955373329732 ], [ -81.991616039117858, 28.883024514403623 ], [ -81.991730641176119, 28.883078922271846 ], [ -81.99185940727132, 28.883123130398371 ], [ -81.992050222880735, 28.883175048705411 ], [ -81.992225922311476, 28.88323799919387 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Black Lake Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990872903445393, 28.908655053928527 ], [ -81.991225057348828, 28.908640316177056 ], [ -81.991292648784977, 28.908638257994959 ], [ -81.991391494119867, 28.908632077415287 ], [ -81.991486746099142, 28.908615992006961 ], [ -81.991593879366832, 28.908593930466481 ], [ -81.991672885091134, 28.908578511591681 ], [ -81.991772234010739, 28.908557844370623 ], [ -81.99186619849921, 28.908534475264346 ], [ -81.991960358279869, 28.908504915438026 ], [ -81.992047095702532, 28.908477074878309 ], [ -81.992114686457413, 28.908456197054857 ], [ -81.992220089785349, 28.908430549180075 ], [ -81.992312036686769, 28.90842463369524 ], [ -81.992403803867177, 28.908422090927086 ], [ -81.992500111296266, 28.908411439403071 ], [ -81.992579814002994, 28.908396661569331 ], [ -81.992676120584193, 28.908369164918355 ], [ -81.992731601867078, 28.908345792159157 ], [ -81.992798998822337, 28.908307635876898 ], [ -81.992866593232534, 28.908260886085269 ], [ -81.992938875613476, 28.908203822342568 ], [ -81.993005016011807, 28.908154333928177 ], [ -81.993073867373965, 28.908108260821731 ], [ -81.993160603860005, 28.908070106276643 ], [ -81.993231526019301, 28.908045815573455 ], [ -81.993294319929433, 28.908030033088714 ], [ -81.993366082946125, 28.908020170102976 ], [ -81.993446815973243, 28.908018199927824 ], [ -81.993541533615186, 28.908021309428648 ], [ -81.993630610250719, 28.908025439088288 ], [ -81.993710118093318, 28.908036099966001 ], [ -81.99381150141059, 28.908050887137534 ], [ -81.993905462468646, 28.908068080316699 ], [ -81.993980082488434, 28.908089054074082 ], [ -81.994078926259391, 28.908114497067231 ], [ -81.994172886927174, 28.908139941575108 ], [ -81.994257275265625, 28.908163322944315 ], [ -81.994353776278516, 28.908184639423883 ], [ -81.994423709648132, 28.908197363022115 ], [ -81.994529587850479, 28.908210088093622 ], [ -81.994664572225872, 28.908222811567484 ], [ -81.994727277895137, 28.90822487767074 ], [ -81.994770246570738, 28.908232742926828 ], [ -81.994812556865369, 28.908241609693828 ], [ -81.994844793870541, 28.90825756630748 ], [ -81.994885090022322, 28.908289479467619 ], [ -81.994925381265816, 28.908356849317386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blenheim Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990060230094016, 28.892514702156657 ], [ -81.990259904396311, 28.892382875594738 ], [ -81.990702765927836, 28.892082271836159 ], [ -81.990848971653364, 28.891978466973466 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blenheim Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990848971653364, 28.891978466973466 ], [ -81.991032775989268, 28.891854376283458 ], [ -81.991341746846985, 28.891650845156061 ], [ -81.99139552189618, 28.891613267861327 ], [ -81.991442970697534, 28.891578476438813 ], [ -81.991488838843637, 28.891539506345261 ], [ -81.991522053289145, 28.89150888892069 ], [ -81.991552105439013, 28.891469919594662 ], [ -81.9915837412114, 28.891411465188625 ], [ -81.991614862402812, 28.891339092760475 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blenheim Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987736762931519, 28.893440689120641 ], [ -81.987819297765867, 28.893445359793301 ], [ -81.987923631274626, 28.893468719029539 ], [ -81.988024852499137, 28.89349674911146 ], [ -81.9881657992497, 28.89353096973111 ], [ -81.988311625117845, 28.893541766023379 ], [ -81.988422012776454, 28.893542127584645 ], [ -81.988470812587295, 28.893535591055809 ], [ -81.988531141411514, 28.893524043228819 ], [ -81.988585971412903, 28.893504628651375 ], [ -81.988716731479485, 28.893433510614546 ], [ -81.988995677151536, 28.893289932078392 ], [ -81.989204926411489, 28.89316778956859 ], [ -81.989311997934095, 28.89308053048341 ], [ -81.989351160798279, 28.893054022252361 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bonneau Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004355737215533, 28.923534238572216 ], [ -82.004631034219116, 28.923559653593635 ], [ -82.004702552832754, 28.923562619056728 ], [ -82.004820572602512, 28.923562616265155 ], [ -82.004954982074338, 28.923556842652346 ], [ -82.00510250394413, 28.923533764231614 ], [ -82.00519624801106, 28.923512277362182 ], [ -82.005279529854306, 28.923487610202493 ], [ -82.005466387553838, 28.923412616399855 ], [ -82.005692670597867, 28.923296513136922 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bordeaux Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997825651420285, 28.917204397398439 ], [ -81.998350596223503, 28.917176903514033 ], [ -81.998734681140192, 28.917152156354383 ], [ -81.99899406034946, 28.917136869453049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brunson Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961832457385412, 28.90432076539479 ], [ -81.961804073638802, 28.904241729513469 ], [ -81.961765128022407, 28.904149545932221 ], [ -81.961725894483166, 28.904068059905956 ], [ -81.961693886634933, 28.903993106766887 ], [ -81.961654844476826, 28.903923996697664 ], [ -81.961605066150469, 28.903836318753861 ], [ -81.96155469933646, 28.903754142837698 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brunson Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96190713472015, 28.90522560503155 ], [ -81.961907185719525, 28.905089814575298 ], [ -81.961907221636906, 28.904989432100393 ], [ -81.96190725389846, 28.904901769321675 ], [ -81.961907282744292, 28.904823387580983 ], [ -81.961900284012245, 28.904729534841298 ], [ -81.961893088314199, 28.904641525327836 ], [ -81.961881064613038, 28.904554612537819 ], [ -81.961868916278732, 28.904483189465552 ], [ -81.961856312177915, 28.904424263093805 ], [ -81.961847314073822, 28.904371887529809 ], [ -81.961832457385412, 28.90432076539479 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brunson Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96057264560946, 28.902952170100441 ], [ -81.96049061608025, 28.902920862374316 ], [ -81.960422980024717, 28.902900207772426 ], [ -81.960314770969006, 28.90287795670411 ], [ -81.960217379843797, 28.902863642668237 ], [ -81.960088245437134, 28.902858176084344 ], [ -81.960005325964929, 28.902856398224024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cokesbury Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96190713472015, 28.90522560503155 ], [ -81.96198529758945, 28.905226224530288 ], [ -81.96208278150003, 28.905226252126024 ], [ -81.962201711912101, 28.90522628569731 ], [ -81.96234209087666, 28.905226325187911 ], [ -81.962461021911366, 28.905224643261484 ], [ -81.962580281447913, 28.905224764113605 ], [ -81.962638299747709, 28.905220654982148 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cokesbury Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962638299747709, 28.905220654982148 ], [ -81.962722281829983, 28.905221285599609 ], [ -81.962810020016434, 28.90521616234825 ], [ -81.962886585162423, 28.905202847591575 ], [ -81.962987455078888, 28.905176752130991 ], [ -81.963061550081306, 28.90515446955299 ], [ -81.963125901374752, 28.90512703844831 ], [ -81.963194153079016, 28.905094460771771 ], [ -81.963264356868962, 28.905048158736427 ], [ -81.963371616944045, 28.904972700901762 ], [ -81.963513979730394, 28.904868086646644 ], [ -81.963605639541612, 28.904799489063166 ], [ -81.963695347703506, 28.904734321426311 ], [ -81.963783107481603, 28.904669149593577 ], [ -81.963876716412315, 28.904597120909205 ], [ -81.963999575752922, 28.904507941910119 ], [ -81.964129097980219, 28.904424628617239 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gloverville Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961832457385412, 28.90432076539479 ], [ -81.9620070988652, 28.904256914209654 ], [ -81.962068119545478, 28.904223419217853 ], [ -81.962147506873649, 28.904171174209122 ], [ -81.962235269019274, 28.904100858475047 ], [ -81.962328883100596, 28.904013388927467 ], [ -81.962416654557316, 28.903913908084597 ], [ -81.962697523577305, 28.90359316797614 ], [ -81.962862361641655, 28.903406210561776 ], [ -81.962883526194588, 28.903382207160643 ], [ -81.962885473604302, 28.903327366899937 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lockhart Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961133721175742, 28.903295079141007 ], [ -81.961235440013326, 28.903158705405698 ], [ -81.961281278097573, 28.903090230579025 ], [ -81.961301771504935, 28.903043779849419 ], [ -81.96133465480581, 28.902958579869036 ], [ -81.961502227982677, 28.902501405417386 ], [ -81.961643407680086, 28.902107134148743 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brunson Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961133721175742, 28.903295079141007 ], [ -81.961073586523355, 28.903244439149756 ], [ -81.960953477585605, 28.903156141403237 ], [ -81.960868405230457, 28.903095554337966 ], [ -81.960783652694673, 28.903046328152584 ], [ -81.960704308815593, 28.903003452070411 ], [ -81.960622448796158, 28.902971092394264 ], [ -81.96057264560946, 28.902952170100441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fort Mill Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962638299747709, 28.905220654982148 ], [ -81.962632745884704, 28.904809515818368 ], [ -81.962636666999657, 28.904744323152315 ], [ -81.9626522867662, 28.90468256518438 ], [ -81.962677649697056, 28.904632820418726 ], [ -81.962718615198213, 28.904574500933805 ], [ -81.962979476171824, 28.904366123334551 ], [ -81.963221575648916, 28.904162672943905 ], [ -81.9632760657001, 28.904118824445785 ], [ -81.963288782261131, 28.904108591352408 ], [ -81.963314955927245, 28.90408752804306 ], [ -81.963408358925406, 28.904084034598423 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Donalds Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96155469933646, 28.903754142837698 ], [ -81.961654414640591, 28.903697525988825 ], [ -81.961722674115819, 28.903642646039941 ], [ -81.961778152603799, 28.903588778402501 ], [ -81.9618279972333, 28.903532878064649 ], [ -81.961937242258955, 28.903356200272427 ], [ -81.962135905651294, 28.903018626328887 ], [ -81.962261577838433, 28.902809752567197 ], [ -81.962271572658565, 28.902738451235496 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "La France Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96057264560946, 28.902952170100441 ], [ -81.960690927010234, 28.902399596571538 ], [ -81.960702197513456, 28.90234694623885 ], [ -81.960707047978232, 28.90232428191872 ], [ -81.960662045681275, 28.90226552999264 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pelzer Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963724150237709, 28.905550613185945 ], [ -81.964136273803405, 28.905237841313962 ], [ -81.964554249322148, 28.904936003762263 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pelzer Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963132501448754, 28.906204753327039 ], [ -81.963143357254765, 28.906073286062188 ], [ -81.963153954073732, 28.90596928918956 ], [ -81.963174682091136, 28.905876587358396 ], [ -81.963195392556841, 28.905830241085862 ], [ -81.963233034251701, 28.905793831951303 ], [ -81.963281958730207, 28.90576570177474 ], [ -81.963336525319377, 28.905742542079025 ], [ -81.963520921516263, 28.905671406457397 ], [ -81.963590546363818, 28.905633348397235 ], [ -81.963667696963213, 28.905588673080661 ], [ -81.963724150237709, 28.905550613185945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967091840581958, 28.906685840576003 ], [ -81.9670429335617, 28.906664306944588 ], [ -81.967009784634712, 28.906648117877545 ], [ -81.966929694032743, 28.906605411319298 ], [ -81.966825545012881, 28.906546564768306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967602050509825, 28.906795189875325 ], [ -81.967533231903843, 28.906792194734322 ], [ -81.967439592247828, 28.906781251502281 ], [ -81.967358365642269, 28.906766340215373 ], [ -81.967279396654092, 28.906749445277246 ], [ -81.967198171907071, 28.906725599338717 ], [ -81.967091840581958, 28.906685840576003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodruff Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966250154376723, 28.907638704290225 ], [ -81.966393983651741, 28.907476134609627 ], [ -81.966570515878544, 28.907265121334703 ], [ -81.966668384682905, 28.907145953046378 ], [ -81.966756840563377, 28.907049958777222 ], [ -81.966892340261168, 28.906920867153737 ], [ -81.967010907200304, 28.90679673566822 ], [ -81.967091840581958, 28.906685840576003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Snelling Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96485291867711, 28.893992904206513 ], [ -81.964886293040408, 28.8937006201547 ], [ -81.964918092290432, 28.893236184979909 ], [ -81.96494479480522, 28.893100806378364 ], [ -81.96499495742691, 28.892948914587326 ], [ -81.965059035076237, 28.892821525647232 ], [ -81.965176502037693, 28.892649768217936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moncks Cor", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963983490371518, 28.89402973732583 ], [ -81.964044189414253, 28.89366649494221 ], [ -81.964086030864678, 28.89346555225487 ], [ -81.964153432603055, 28.893194041194128 ], [ -81.964263920809444, 28.892812822808729 ], [ -81.964421646498181, 28.89235339105047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Plum Branch Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963052159732058, 28.894000698866741 ], [ -81.963207530077852, 28.893665792558476 ], [ -81.963396784417952, 28.893145365311483 ], [ -81.963523097076944, 28.892756932548515 ], [ -81.963710590317504, 28.89223512920357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shell Point Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96161203186449, 28.893071901125548 ], [ -81.961860165886364, 28.892788803119721 ], [ -81.961988299177605, 28.892602632752524 ], [ -81.962092154162946, 28.892408274247032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wade Hampton Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961272911612554, 28.892206299556872 ], [ -81.961533398032159, 28.892232629609321 ], [ -81.961692189534105, 28.892264663376451 ], [ -81.961863434882247, 28.892325621015004 ], [ -81.962092154162946, 28.892408274247032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Murphys Estate Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96191565108262, 28.891633021341736 ], [ -81.962277722103337, 28.891794073199204 ], [ -81.962337539526615, 28.891820932527271 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shell Point Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962092154162946, 28.892408274247032 ], [ -81.962337539526615, 28.891820932527271 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Westminster Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962248854397529, 28.893672420686187 ], [ -81.962695509026133, 28.892826146873031 ], [ -81.962756758762126, 28.892686831641285 ], [ -81.962842233554753, 28.892471197538658 ], [ -81.963007927695571, 28.892053742815374 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Murphys Estate Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962337539526615, 28.891820932527271 ], [ -81.962665433120947, 28.891939055841373 ], [ -81.963007927695571, 28.892053742815374 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Murphys Estate Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963007927695571, 28.892053742815374 ], [ -81.963109970869354, 28.89208887128596 ], [ -81.963420755650645, 28.892188296909076 ], [ -81.963611998013207, 28.89222011800025 ], [ -81.963710590317504, 28.89223512920357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Scranton Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96191565108262, 28.891633021341736 ], [ -81.961970776058692, 28.891507903298166 ], [ -81.961977582711683, 28.891460888175207 ], [ -81.961955054257515, 28.891237688839798 ], [ -81.9619080381391, 28.890557684966055 ], [ -81.96187347915567, 28.8903216225888 ], [ -81.961817302974865, 28.889970605503066 ], [ -81.961813817385561, 28.889880790443943 ], [ -81.961832613224431, 28.88980646429383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Little River Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961832613224431, 28.88980646429383 ], [ -81.961963983697487, 28.889835408591001 ], [ -81.962378031583569, 28.889928437889786 ], [ -81.963579077217219, 28.890197524850439 ], [ -81.964083498558878, 28.890327393577056 ], [ -81.96441621106456, 28.890443173378021 ], [ -81.964494641624086, 28.890486086806348 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inner Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962344021852005, 28.886831589609404 ], [ -81.96241034310134, 28.886910693957166 ], [ -81.962507952611986, 28.887032074389769 ], [ -81.962625675050873, 28.887165836309006 ], [ -81.962720758703256, 28.887284819369295 ], [ -81.962761984293778, 28.887342411131446 ], [ -81.962786330713541, 28.887393461032335 ], [ -81.962814566893442, 28.887458836028749 ], [ -81.96282593016025, 28.887500146499413 ], [ -81.96284012198214, 28.887590274921653 ], [ -81.962852877967222, 28.887710445041652 ], [ -81.962864233196541, 28.887774285950705 ], [ -81.962881284686873, 28.88781810097078 ], [ -81.962913980812317, 28.887860667920251 ], [ -81.962955215692006, 28.887893224390016 ], [ -81.962997879580058, 28.887912012134667 ], [ -81.96304765372642, 28.887924543467506 ], [ -81.963213859272614, 28.887946716255335 ], [ -81.963383183532912, 28.887972203839301 ], [ -81.963584148042131, 28.887997352416424 ], [ -81.963758161878445, 28.8880200896876 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inner Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96166404945177, 28.885419743895902 ], [ -81.961601279646459, 28.885601703794425 ], [ -81.961581406572662, 28.885671369267001 ], [ -81.961575447815108, 28.885738176622191 ], [ -81.961581081316709, 28.885824123291332 ], [ -81.961590807992678, 28.885886669959095 ], [ -81.961615432887839, 28.885958442401726 ], [ -81.961655233608226, 28.886023543052463 ], [ -81.961744630994758, 28.886134944063635 ], [ -81.961847904400315, 28.886253576388615 ], [ -81.961959765802106, 28.886384930800929 ], [ -81.962057377951595, 28.886496343852919 ], [ -81.9621407402866, 28.886594686596329 ], [ -81.962229562472146, 28.886703345023189 ], [ -81.962312730064255, 28.886799626747877 ], [ -81.962344021852005, 28.886831589609404 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inner Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961860737850216, 28.884817622347772 ], [ -81.961799531699455, 28.885023184285458 ], [ -81.961747914881457, 28.885179587959708 ], [ -81.961699292321512, 28.885306159690554 ], [ -81.96166404945177, 28.885419743895902 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Audrey Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96166404945177, 28.885419743895902 ], [ -81.961721643730471, 28.885437596116848 ], [ -81.961821902813242, 28.88546297211192 ], [ -81.96189437682095, 28.885467844381555 ], [ -81.962114180075631, 28.885447095946066 ], [ -81.962307257108463, 28.885428375238583 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robin Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962576479126014, 28.886022419895358 ], [ -81.962502686110867, 28.885933017377067 ], [ -81.962402147696565, 28.885814041635225 ], [ -81.962356276285732, 28.885743209889576 ], [ -81.962336192565644, 28.885657604777556 ], [ -81.962314698841126, 28.885499724965918 ], [ -81.962307257108463, 28.885428375238583 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Audrey Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964293769510007, 28.884941839377341 ], [ -81.964430145856824, 28.884890086233895 ], [ -81.964560298591977, 28.884836609717794 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Audrey Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962307257108463, 28.885428375238583 ], [ -81.962424599151603, 28.885412448248143 ], [ -81.962725415482325, 28.885375918577324 ], [ -81.962943030793483, 28.885345937643418 ], [ -81.963171316682434, 28.885303754764944 ], [ -81.963470013933247, 28.88523060928279 ], [ -81.963817791457529, 28.885123681602529 ], [ -81.964176243273613, 28.884985775369685 ], [ -81.964293769510007, 28.884941839377341 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kay Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964687924952173, 28.885462636302048 ], [ -81.964647749024493, 28.88540757724563 ], [ -81.96451980005277, 28.885251075467583 ], [ -81.964293769510007, 28.884941839377341 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kay Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964800190738842, 28.885859924516545 ], [ -81.964803415999413, 28.885784820546938 ], [ -81.964801298543037, 28.885740697479438 ], [ -81.964791720084733, 28.885676856277474 ], [ -81.964773604827755, 28.885621464685244 ], [ -81.964753509814244, 28.885572317394441 ], [ -81.964687924952173, 28.885462636302048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tega Cay Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975025349040735, 28.880687563289545 ], [ -81.975334615309976, 28.880805296975527 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.255943140394422, 28.644109429748621 ], [ -82.256503133432176, 28.644279360402379 ], [ -82.257320915083994, 28.644538856060819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Midnight Pass Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994181153328967, 28.877570304389675 ], [ -81.995042375491138, 28.876917943781184 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dutchess Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994181153328967, 28.877570304389675 ], [ -81.993692284575786, 28.877093225659209 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cedar Bay Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993692284575786, 28.877093225659209 ], [ -81.99424565146515, 28.87651866591537 ], [ -81.994481922331332, 28.876326353950866 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cedar Bay Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9934262191709, 28.877328629584767 ], [ -81.993426278632484, 28.877328577254197 ], [ -81.993692284575786, 28.877093225659209 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993765754203821, 28.877803318382295 ], [ -81.993348020979369, 28.877397815989628 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridge Spring Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970909331568336, 28.884895614767508 ], [ -81.97077800732751, 28.884980905979329 ], [ -81.970601270361897, 28.885089946498812 ], [ -81.970449079389127, 28.885186033351577 ], [ -81.970337560083124, 28.885258767562995 ], [ -81.970321347415194, 28.885269078176666 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Startex Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969081377812685, 28.882604179067343 ], [ -81.969332121143623, 28.882669553342602 ], [ -81.969835183248009, 28.882769363642527 ], [ -81.970362666309114, 28.88284098686627 ], [ -81.970447565245024, 28.882853116297337 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Startex Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970447565245024, 28.882853116297337 ], [ -81.970653711440491, 28.882873681721659 ], [ -81.970892988903202, 28.882894254029257 ], [ -81.971226846398011, 28.882916118493927 ], [ -81.971343325612835, 28.882917032215403 ], [ -81.971421530359763, 28.882902683374859 ], [ -81.971483222707832, 28.882886820524174 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parksville Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972929510447358, 28.884618358556569 ], [ -81.97330398303302, 28.884709349554807 ], [ -81.973721906549301, 28.884809469404043 ], [ -81.973920714272765, 28.884855919015024 ], [ -81.974009965602505, 28.884866592537975 ], [ -81.974083008797564, 28.884863169826637 ], [ -81.974177793407662, 28.884840376158689 ], [ -81.974293172232834, 28.884797892755572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gray Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972903410817622, 28.88587439053747 ], [ -81.972904513818548, 28.885734412309041 ], [ -81.972918420487773, 28.88479115599069 ], [ -81.972929510447358, 28.884618358556569 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gray Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972887247715732, 28.886675744108512 ], [ -81.972889774105866, 28.886405746441408 ], [ -81.972903410817622, 28.88587439053747 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gray Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972878580918916, 28.886966263352452 ], [ -81.972887247715732, 28.886675744108512 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Grove Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972887247715732, 28.886675744108512 ], [ -81.973120462017391, 28.886711470785073 ], [ -81.973586691372105, 28.886774165156492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ehrhardt Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974281457245382, 28.885943782067685 ], [ -81.97440785511121, 28.885935166749526 ], [ -81.974603624843311, 28.885913510899126 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Grove Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974248095410843, 28.886867173189994 ], [ -81.974410072172603, 28.886890964524564 ], [ -81.974697971332361, 28.886922665624557 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Grove Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973586691372105, 28.886774165156492 ], [ -81.973719217651421, 28.886791471186694 ], [ -81.974001449822197, 28.886831486462146 ], [ -81.974248095410843, 28.886867173189994 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valverda Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010352032144368, 28.921963635564126 ], [ -82.010349686371072, 28.921949885645549 ], [ -82.010336903750584, 28.921886664496043 ], [ -82.010335608516158, 28.921822690897852 ], [ -82.010353576642927, 28.92175909035095 ], [ -82.010381703725301, 28.921702709232985 ], [ -82.01041588780069, 28.921646328567419 ], [ -82.010447924095601, 28.921587883597191 ], [ -82.010484061443265, 28.921527721246989 ], [ -82.010514145186008, 28.921481994267644 ], [ -82.010542533323886, 28.921433048014638 ], [ -82.01058421574082, 28.921351127256372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Callaway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01058421574082, 28.921351127256372 ], [ -82.010612014009538, 28.921364073131659 ], [ -82.010631161221838, 28.921373010747377 ], [ -82.010739401680937, 28.921423879470058 ], [ -82.010927483968189, 28.92150637737992 ], [ -82.011138724233263, 28.921601726414309 ], [ -82.011337656104487, 28.921688541283412 ], [ -82.011553943134857, 28.921785812051084 ], [ -82.011732149277904, 28.921866993187091 ], [ -82.011853059261881, 28.921923224106251 ], [ -82.011900307502458, 28.921933001923275 ], [ -82.011939220235504, 28.921936665568857 ], [ -82.012007808991626, 28.921931190934291 ], [ -82.012130994562312, 28.921910974379767 ], [ -82.012288027074391, 28.921881617214794 ], [ -82.012445057305868, 28.921851037255795 ], [ -82.012613207588743, 28.921819232604644 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ingleside Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012615080316564, 28.92239798493074 ], [ -82.012613207588743, 28.921819232604644 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Callaway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012613207588743, 28.921819232604644 ], [ -82.012767204086444, 28.921789488970159 ], [ -82.012958078573121, 28.921755781589514 ], [ -82.013144850648729, 28.921722073419826 ], [ -82.013361122743078, 28.921684926244698 ], [ -82.013546500510657, 28.921648838296001 ], [ -82.013668155739325, 28.921624025991846 ], [ -82.013945844753437, 28.921570991471036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cameroon Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983369363521405, 28.885770649930443 ], [ -81.983562135986645, 28.88586006206107 ], [ -81.983744083901456, 28.885946596061356 ], [ -81.983835452369433, 28.886001561799741 ], [ -81.983931387829671, 28.886072611540012 ], [ -81.984092800539273, 28.886195942033378 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camino Del Rey Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960934929255799, 28.931058545732522 ], [ -81.960996457029736, 28.931099010819022 ], [ -81.961071747706512, 28.931138257266053 ], [ -81.961135234435957, 28.931162795550957 ], [ -81.961224459629719, 28.931216514248529 ], [ -81.961348730700578, 28.931301130351585 ], [ -81.961648207337532, 28.931533576224769 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camino Del Rey Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962148816588922, 28.932278968825372 ], [ -81.962168120883518, 28.932340605509328 ], [ -81.962187427780904, 28.932397992383194 ], [ -81.962205408809538, 28.932443298057748 ], [ -81.962221326860913, 28.93248114207417 ], [ -81.962245205747706, 28.932528798980599 ], [ -81.96227674516247, 28.932582911249973 ], [ -81.962303304551654, 28.932621174209078 ], [ -81.962343925669074, 28.932674578910813 ], [ -81.962382143692977, 28.932722239820514 ], [ -81.962412399351521, 28.932758685671494 ], [ -81.962444249952696, 28.932789527811202 ], [ -81.962467515133355, 28.932810365603817 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Diego Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96256095951415, 28.935337709236929 ], [ -81.963441064956058, 28.933880001701432 ], [ -81.963512868322567, 28.933819901400174 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camino Del Rey Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963100328307505, 28.933211148403487 ], [ -81.963135501307718, 28.933242392813899 ], [ -81.963169159040149, 28.933271735664011 ], [ -81.963209007177326, 28.933311595545387 ], [ -81.963243419196488, 28.933351453923528 ], [ -81.963270583266279, 28.933389715049231 ], [ -81.963297748274911, 28.933431164878133 ], [ -81.963324910688215, 28.933474208152614 ], [ -81.963350265042052, 28.933510875314219 ], [ -81.963373804759314, 28.933553917587293 ], [ -81.963393719243413, 28.933595365413549 ], [ -81.963417257766309, 28.933644783290635 ], [ -81.963441222133127, 28.933693750132267 ], [ -81.963466692771945, 28.933747011399166 ], [ -81.96348579727912, 28.933784857932821 ], [ -81.963512868322567, 28.933819901400174 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camino Del Rey Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964904332488032, 28.938212886381994 ], [ -81.964943196132651, 28.938489261033656 ], [ -81.964998417716316, 28.938895084804461 ], [ -81.965010273791435, 28.938932851602249 ], [ -81.965023318404064, 28.938968499221254 ], [ -81.965064213732873, 28.939044430694118 ], [ -81.965087768296542, 28.939100907791072 ], [ -81.965108468745299, 28.939149805775024 ], [ -81.965125957785247, 28.93920120137048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gardena Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961128077039973, 28.932699835251022 ], [ -81.961276250774873, 28.932624211727255 ], [ -81.96136909003522, 28.932564574293959 ], [ -81.961465047822287, 28.932506172934026 ], [ -81.961554322583325, 28.932449428907731 ], [ -81.961602128126287, 28.932420011569409 ], [ -81.9616451512494, 28.932397950155281 ], [ -81.961691757439496, 28.932374839480755 ], [ -81.961751508705262, 28.932351732542489 ], [ -81.961832321787028, 28.932329883060618 ], [ -81.961943456972421, 28.932310787827287 ], [ -81.962148816588922, 28.932278968825372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Redondo Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960827455343306, 28.931975256599763 ], [ -81.960978234673789, 28.931901905232252 ], [ -81.961141545320601, 28.931853522919582 ], [ -81.961235766497026, 28.931829677293631 ], [ -81.961315524432266, 28.931809052228669 ], [ -81.961363847966766, 28.931789939326496 ], [ -81.961409757377993, 28.931764449195395 ], [ -81.961460504954943, 28.931730460824166 ], [ -81.961513669625901, 28.931683720997093 ], [ -81.961648207337532, 28.931533576224769 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Castleberry Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000725425678695, 28.914697905458492 ], [ -82.0007536877375, 28.914764098842451 ], [ -82.000792633615163, 28.914851617994685 ], [ -82.000859250929622, 28.914976063585918 ], [ -82.000916028590183, 28.91508547509358 ], [ -82.000954585998358, 28.91516204482037 ], [ -82.001009484072156, 28.915266210335595 ], [ -82.001042109935511, 28.915320871379716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Castleberry Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002605753364463, 28.914521920493851 ], [ -82.002605751133999, 28.914464853808418 ], [ -82.002602818705242, 28.914342813650329 ], [ -82.00260281666101, 28.914245869037256 ], [ -82.002602814682007, 28.914152017497535 ], [ -82.002597047244592, 28.914101396907249 ], [ -82.002584644995764, 28.91405775027102 ], [ -82.002565477805589, 28.91402600683881 ], [ -82.002538793690434, 28.913991782196618 ], [ -82.002496701500675, 28.913956567048348 ], [ -82.002456112842339, 28.91392780058387 ], [ -82.00239974084954, 28.913901017572087 ], [ -82.002352741036859, 28.913882466972545 ], [ -82.002297141467253, 28.913865306907368 ], [ -82.002246406920051, 28.913851419390642 ], [ -82.002194545453136, 28.913842491796338 ], [ -82.002123515453022, 28.913833564404992 ], [ -82.002052486600377, 28.913831581055724 ], [ -82.001984839921249, 28.913835550088365 ], [ -82.001858727930056, 28.913852796062333 ], [ -82.001746948173775, 28.913867037143543 ], [ -82.001582068356271, 28.913889728556619 ], [ -82.001399799171097, 28.913915169176292 ], [ -82.001261095979501, 28.913935451800594 ], [ -82.001125127714204, 28.913953329648638 ], [ -82.000957511604227, 28.913976363181526 ], [ -82.000830333785515, 28.913994239803881 ], [ -82.000717417497768, 28.91401177251565 ], [ -82.00064513544713, 28.914032399092289 ], [ -82.00060372082271, 28.914056773767769 ], [ -82.000575536118092, 28.914083557563764 ], [ -82.000550729402306, 28.914121254639152 ], [ -82.000537201090282, 28.914157957381132 ], [ -82.000526748247168, 28.914202912532826 ], [ -82.000526749309117, 28.914233163851538 ], [ -82.000540584378101, 28.914285925684084 ], [ -82.000558397352521, 28.914324952747069 ], [ -82.000589065028933, 28.914392069219705 ], [ -82.000627944998683, 28.914479995360882 ], [ -82.000674049736446, 28.91458450209662 ], [ -82.000725425678695, 28.914697905458492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eagle Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984628278929051, 28.885817060974027 ], [ -81.984735313054458, 28.885763100330127 ], [ -81.984928485194573, 28.885667207707083 ], [ -81.985093531334371, 28.885583689429264 ], [ -81.985233653090049, 28.885514409206742 ], [ -81.985353498641004, 28.885454114431997 ], [ -81.985468572854955, 28.885392647843265 ], [ -81.985567665117998, 28.885336276524615 ], [ -81.98565138156259, 28.885283660659674 ], [ -81.985702636108385, 28.885248332961105 ], [ -81.985736328362023, 28.885222449554085 ], [ -81.985758167139664, 28.885203232877139 ], [ -81.985778669703222, 28.885179177013427 ], [ -81.985794048542175, 28.885152868456938 ], [ -81.985806010539434, 28.885125053594205 ], [ -81.985812846138799, 28.885099494839636 ], [ -81.98581641812892, 28.885069060604568 ], [ -81.985813710365122, 28.885040857091472 ], [ -81.985806880684919, 28.88500928214242 ], [ -81.985796634156088, 28.884983719763181 ], [ -81.985786386582504, 28.884965676258009 ], [ -81.985771013862902, 28.884948383821683 ], [ -81.985750516735976, 28.884926580232555 ], [ -81.985714645228697, 28.884899511870866 ], [ -81.985637777017871, 28.884846881409185 ], [ -81.985534768736372, 28.884781966848564 ], [ -81.985364549835765, 28.884666521397413 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eagle Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984092800539273, 28.886195942033378 ], [ -81.984205008970235, 28.886099940621367 ], [ -81.984271068824356, 28.886043530255719 ], [ -81.984333716257865, 28.885996427593071 ], [ -81.984425977467424, 28.88593429151636 ], [ -81.984528412960501, 28.885871628710358 ], [ -81.984628278929051, 28.885817060974027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orangeburg Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981785410055252, 28.886859119824123 ], [ -81.98175028395832, 28.886776181854273 ], [ -81.98170929663172, 28.886664758336572 ], [ -81.981702445642583, 28.886626807527048 ], [ -81.981698648496192, 28.886596399468182 ], [ -81.981697352240417, 28.886546803421677 ], [ -81.981699404998466, 28.886493769165032 ], [ -81.981701318896512, 28.886454743109951 ], [ -81.981760937912696, 28.886167353089839 ], [ -81.981862951793403, 28.885815338780841 ], [ -81.981999920244917, 28.885478456167053 ], [ -81.982090810680006, 28.885298869878287 ], [ -81.982189621892488, 28.885135390653513 ], [ -81.982307464989717, 28.884965301812354 ], [ -81.982435566968235, 28.88479542715632 ], [ -81.982740748119994, 28.884412540275278 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sunflower Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983752206507447, 28.88425926518703 ], [ -81.984675306678184, 28.884945088985461 ], [ -81.984751050096904, 28.885016418251823 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sunflower Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982813287753686, 28.883588958865655 ], [ -81.983752206507447, 28.88425926518703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trellis Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984193664141188, 28.883687652641285 ], [ -81.984929166028564, 28.884189174530142 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hagood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994402656488603, 28.891510463969663 ], [ -81.994257210659399, 28.891420691430753 ], [ -81.994127341626438, 28.891304707609379 ], [ -81.994097754589546, 28.891264276010094 ], [ -81.994081406709086, 28.891227955882307 ], [ -81.994079072838645, 28.891182727975025 ], [ -81.994084526459687, 28.891145723983762 ], [ -81.994100879727014, 28.891109404426476 ], [ -81.994130152868692, 28.891066269469494 ], [ -81.994392118275385, 28.890767585246344 ], [ -81.994501137990724, 28.890629622732224 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hagood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99509596638093, 28.887600690160561 ], [ -81.995048295219988, 28.887291276785366 ], [ -81.995044229608482, 28.887221844582907 ], [ -81.995046803078381, 28.88717928405282 ], [ -81.99505279323148, 28.887145027526593 ], [ -81.995062525287338, 28.88711472412152 ], [ -81.995079089419164, 28.887086068574764 ], [ -81.995097710162682, 28.887057411298539 ], [ -81.995123910835574, 28.887021179487498 ], [ -81.995162836726763, 28.886984289464106 ], [ -81.995202509658597, 28.886953987155351 ], [ -81.995247423268225, 28.886929614044938 ], [ -81.995292336535456, 28.886911827715796 ], [ -81.995341740148845, 28.886897335832764 ], [ -81.99540461624008, 28.886884821348964 ], [ -81.995800592992083, 28.886838062172785 ], [ -81.995966768637516, 28.886818304351028 ], [ -81.996162135413769, 28.886804476212784 ], [ -81.99637172480189, 28.886800529288951 ], [ -81.996536401589026, 28.886803169439695 ], [ -81.996812021270969, 28.88679232910982 ], [ -81.99694884037585, 28.886766155789392 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oconee Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99509596638093, 28.887600690160561 ], [ -81.995774478690507, 28.887524284568588 ], [ -81.996011350498122, 28.8875114090206 ], [ -81.996201645030666, 28.887513757119226 ], [ -81.996316088279897, 28.887516102806178 ], [ -81.996509947833601, 28.887539321690667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hagood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994501137990724, 28.890629622732224 ], [ -81.994530210587342, 28.89059216314606 ], [ -81.994656881407366, 28.890408516867545 ], [ -81.994787707094531, 28.890188322049585 ], [ -81.994862859844261, 28.890037543404564 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hagood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994862859844261, 28.890037543404564 ], [ -81.994988825669722, 28.889762701261333 ], [ -81.995044175548287, 28.889599916635561 ], [ -81.995095054467683, 28.889429973864882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gist Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994862859844261, 28.890037543404564 ], [ -81.995338597474927, 28.890210498882521 ], [ -81.995389064373072, 28.890226616667487 ], [ -81.995522315175961, 28.890268495279589 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Means Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994501137990724, 28.890629622732224 ], [ -81.994720130194665, 28.890766656891763 ], [ -81.994909056470632, 28.89085253270424 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cherry Vale Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008038072678929, 28.925043326213913 ], [ -82.008043542227981, 28.925043325909396 ], [ -82.008276238670362, 28.925044686944396 ], [ -82.008515757307279, 28.925031144858529 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chaparral Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972344390231854, 28.942199855601483 ], [ -81.972413175625448, 28.942088958105735 ], [ -81.972465114617876, 28.942020173452914 ], [ -81.972531867728193, 28.941963022384765 ], [ -81.972584264236545, 28.941939844197648 ], [ -81.972624226207671, 28.941928605297864 ], [ -81.97267377615799, 28.941928615432964 ], [ -81.97274410109074, 28.941944094192404 ], [ -81.972849585549511, 28.941970829852774 ], [ -81.973187616828127, 28.942057288145836 ], [ -81.973448318420267, 28.942128452622132 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chappells Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97073290753525, 28.904362882135533 ], [ -81.970792107931018, 28.904324048404252 ], [ -81.971140068765123, 28.904110295344267 ], [ -81.971248098987004, 28.904051232467062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chappells Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971248098987004, 28.904051232467062 ], [ -81.971322347259346, 28.904010640443602 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spartanburg Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973869076312951, 28.904047831087908 ], [ -81.973850082968042, 28.903946212328858 ], [ -81.973834026418643, 28.903662854076202 ], [ -81.973820788046964, 28.903584087142487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spartanburg Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973820788046964, 28.903584087142487 ], [ -81.973806988270084, 28.903523551941017 ], [ -81.973771659109019, 28.903391299636585 ], [ -81.973705396305704, 28.903237646846176 ], [ -81.973575840797537, 28.903010369314689 ], [ -81.97355631468939, 28.902980799840559 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 100", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953742555471592, 28.913706051721601 ], [ -81.953737421785519, 28.914521900551282 ], [ -81.953813733694673, 28.915916430179536 ], [ -81.953769640028327, 28.916025669592646 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955348759787739, 28.916240180459916 ], [ -81.955440209524681, 28.916256941250165 ], [ -81.955684982660301, 28.916317330934735 ], [ -81.955919961649187, 28.916384177400619 ], [ -81.956150043499562, 28.916459636984182 ], [ -81.956377671960752, 28.916541557625081 ], [ -81.956717881585007, 28.91669028330238 ], [ -81.956930815356472, 28.916791583205331 ], [ -81.95715598310187, 28.916910116032643 ], [ -81.957459461834148, 28.917093290410119 ], [ -81.957760488123995, 28.917285078455212 ], [ -81.958054177068249, 28.917466093716971 ], [ -81.958267098959155, 28.917604007590509 ], [ -81.958385135720633, 28.917678357409642 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 102", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040454088437784, 28.96010936879243 ], [ -82.040306914415609, 28.960102520749928 ], [ -82.040185789224708, 28.96011707621199 ], [ -82.039854121760044, 28.960129031596075 ], [ -82.037153480971043, 28.960169569702988 ], [ -82.036369540949934, 28.960165407731687 ], [ -82.035568444932707, 28.960166965288028 ], [ -82.034954037749017, 28.96016183311275 ], [ -82.034576044136486, 28.96014356874014 ], [ -82.031644173304088, 28.960129596028818 ], [ -82.028771811983276, 28.96013676699657 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038550276271934, 28.94855097142548 ], [ -82.038718180214801, 28.949573501203986 ], [ -82.038992257330165, 28.951225056373509 ], [ -82.039118884422919, 28.951987027876136 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 103G", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02236760561695, 28.94341768692545 ], [ -82.02230151461859, 28.943477918480482 ], [ -82.022214181958603, 28.94355476644802 ], [ -82.022136291653737, 28.943641996428415 ], [ -82.022077287923764, 28.943718838847985 ], [ -82.022008844402365, 28.943818527903893 ], [ -82.021949845627674, 28.943920289790768 ], [ -82.021890851445193, 28.944044895901243 ], [ -82.021846016822877, 28.944152886723046 ], [ -82.021745497267844, 28.944558327164312 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 103G 1", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027640019624044, 28.9431759730452 ], [ -82.02732068875892, 28.943110092959277 ], [ -82.027244963312, 28.94310946919963 ], [ -82.02719538784045, 28.943115708468799 ], [ -82.027044311675382, 28.943175960075649 ], [ -82.026838940568339, 28.943284553465428 ], [ -82.026674347946297, 28.943380376588571 ], [ -82.026537613957672, 28.94348287740825 ], [ -82.026340111112944, 28.943643308847129 ], [ -82.026198318822978, 28.943776998042871 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Marino Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957685701657837, 28.922991321273766 ], [ -81.95769400705457, 28.923000883718217 ], [ -81.957705724498382, 28.9230156688241 ], [ -81.957717440919154, 28.923030455733219 ], [ -81.957728568515876, 28.923045586230366 ], [ -81.957739504331741, 28.923060714861556 ], [ -81.957750244263536, 28.923075843430112 ], [ -81.957760592142762, 28.923091661228277 ], [ -81.957770550442703, 28.923107133323633 ], [ -81.957785972879336, 28.923135671479141 ], [ -81.957797688528871, 28.923154927451844 ], [ -81.957807059038089, 28.923170743134087 ], [ -81.957816038660084, 28.923186904271979 ], [ -81.95782482636011, 28.923203408221276 ], [ -81.957833219351201, 28.923219568271161 ], [ -81.957841223366316, 28.923236416649868 ], [ -81.95784903061157, 28.92325291938694 ], [ -81.957856254158642, 28.923269766617071 ], [ -81.957863475656836, 28.923286613846141 ], [ -81.957870110520076, 28.923303460890466 ], [ -81.957876550382764, 28.923320653452457 ], [ -81.957882601549684, 28.923337844087428 ], [ -81.957889625352109, 28.923359158519169 ], [ -81.957894893857755, 28.923376693584704 ], [ -81.957899771615502, 28.923394227625032 ], [ -81.957904257599196, 28.923411761542148 ], [ -81.957908548722514, 28.923429294495602 ], [ -81.957912449096696, 28.923446828228553 ], [ -81.957915959607362, 28.923464706515976 ], [ -81.957927195004999, 28.923499931155888 ], [ -81.957939046183441, 28.923541700338824 ], [ -81.957950890101671, 28.923601368358636 ], [ -81.9579661250649, 28.923662528032363 ], [ -81.957977968171761, 28.923719213058863 ], [ -81.957988123483176, 28.923762472297259 ], [ -81.958003974053838, 28.923830710667932 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cruz Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957685701657837, 28.922991321273766 ], [ -81.957905272293075, 28.922840738553806 ], [ -81.958027248299089, 28.922825384521854 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Darby Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001371688140296, 28.915883973523012 ], [ -82.001451784764654, 28.915867471810742 ], [ -82.001604556280029, 28.915833436073182 ], [ -82.001744434030911, 28.915808684009743 ], [ -82.001895058264282, 28.915797338023758 ], [ -82.002120894749396, 28.915791491422496 ], [ -82.002602359275855, 28.91580178200417 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Castleberry Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002602359275855, 28.91580178200417 ], [ -82.002602847514368, 28.915708978947837 ], [ -82.002602845955678, 28.915635066387566 ], [ -82.002602844077998, 28.915546028621765 ], [ -82.002602842040886, 28.915449427801171 ], [ -82.002602840105254, 28.915357639831551 ], [ -82.002602837749151, 28.915245912900563 ], [ -82.002605590464597, 28.915160668344743 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Castleberry Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002861128134313, 28.916887469284561 ], [ -82.002753103230688, 28.916739272440616 ], [ -82.002715592460049, 28.916683236802477 ], [ -82.00266635866096, 28.916612077037119 ], [ -82.002634709810152, 28.916553635760028 ], [ -82.002620024616931, 28.916518072856324 ], [ -82.002608529550855, 28.916469410356203 ], [ -82.00260286194154, 28.916393091464485 ], [ -82.002602860230567, 28.916311961438787 ], [ -82.002602858454352, 28.916227737436003 ], [ -82.002602855938619, 28.916108446564266 ], [ -82.002602853575141, 28.91599637406603 ], [ -82.002600614767786, 28.915893957079561 ], [ -82.002602359275855, 28.91580178200417 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dentsville Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975330345306105, 28.886092906874115 ], [ -81.975441010034473, 28.886080528701982 ], [ -81.975619826425572, 28.886081719035193 ], [ -81.97586076206764, 28.886101101709258 ], [ -81.975972565620964, 28.88611131601791 ], [ -81.97606905225139, 28.886130682241308 ], [ -81.976129014840751, 28.88616066377346 ], [ -81.976188501037754, 28.886207062558519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Downers Grove", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018832276405888, 28.921477342221642 ], [ -82.018794913993801, 28.921210232486484 ], [ -82.018767924922798, 28.921051412190501 ], [ -82.018750292103363, 28.92097983272334 ], [ -82.018734281738347, 28.920943223321853 ], [ -82.018710269613166, 28.920916472581762 ], [ -82.018663850039673, 28.920878460588877 ], [ -82.018631836460585, 28.920857343944661 ], [ -82.01859342280116, 28.920844674543751 ], [ -82.018535804653951, 28.920839051020867 ], [ -82.018422084009643, 28.920850694048813 ], [ -82.018244497274864, 28.920879594580409 ], [ -82.018025102671871, 28.920916750904148 ], [ -82.017950965532833, 28.920940294188959 ], [ -82.017890289077258, 28.920977176147677 ], [ -82.0178593560439, 28.921008109030836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harley Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97891043095963, 28.914367327368073 ], [ -81.978923172331847, 28.914569418665657 ], [ -81.978932897093472, 28.914774654887893 ], [ -81.978940098442479, 28.914918353145048 ], [ -81.978947929053774, 28.915064097907567 ], [ -81.978970332856647, 28.915176579075315 ], [ -81.979006199523752, 28.915259462500902 ], [ -81.979071221768777, 28.915346296231597 ], [ -81.979154188095535, 28.915425241241927 ], [ -81.979243885110421, 28.915488398853977 ], [ -81.979353768780712, 28.915539720489122 ], [ -81.979452443935287, 28.915569334654883 ], [ -81.979551121661657, 28.915581190642214 ], [ -81.979640831196718, 28.915583176768617 ], [ -81.979735029309893, 28.915575297801453 ], [ -81.979860627397173, 28.915547691175206 ], [ -81.979954676528934, 28.915525274223175 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southfield Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992358961603628, 28.884112568802788 ], [ -81.992379569229357, 28.884072903027167 ], [ -81.992490324250596, 28.883909708344046 ], [ -81.992709000442858, 28.88364164058504 ], [ -81.992869331899996, 28.883410274934761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zanzibar Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992869331899996, 28.883410274934761 ], [ -81.993223610359536, 28.88358285334699 ], [ -81.99332061019966, 28.883621160092414 ], [ -81.993476729086282, 28.883679289662709 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southfield Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992152027154006, 28.884733657494788 ], [ -81.992187215374813, 28.88461768500887 ], [ -81.992258969040634, 28.88437798480534 ], [ -81.992311307518321, 28.88422476809561 ], [ -81.992358961603628, 28.884112568802788 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southfield Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991921995010117, 28.885343979046716 ], [ -81.992005207846816, 28.885164983815379 ], [ -81.992061627781425, 28.88503326479168 ], [ -81.992106220478831, 28.884891535809025 ], [ -81.992152027154006, 28.884733657494788 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southfield Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991698729646203, 28.885721089151474 ], [ -81.991880236899419, 28.88541907951636 ], [ -81.991921995010117, 28.885343979046716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Windemere Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992933690492265, 28.885067423162511 ], [ -81.993095337268159, 28.884405309613886 ], [ -81.993127417377366, 28.884253385423797 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shelburne Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992152027154006, 28.884733657494788 ], [ -81.992209949859813, 28.884756215746012 ], [ -81.992406767793554, 28.884853251654686 ], [ -81.992586298445701, 28.884956824378122 ], [ -81.992633215475877, 28.884982311599536 ], [ -81.992719488862932, 28.885016353895487 ], [ -81.992789401947462, 28.88503599541885 ], [ -81.992848902421429, 28.885049091049122 ], [ -81.992933690492265, 28.885067423162511 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heather Hill Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993134555120307, 28.8827876992701 ], [ -81.992872760062028, 28.882727463066519 ], [ -81.992737401681495, 28.88268818030388 ], [ -81.992661540639816, 28.882659372838656 ], [ -81.992616917659078, 28.882638424323357 ], [ -81.992586231115908, 28.882617862762061 ], [ -81.992548496215534, 28.882586052706166 ], [ -81.992520420837337, 28.882552196767751 ], [ -81.992500902767588, 28.882517972268538 ], [ -81.992490491359092, 28.882485241593752 ], [ -81.992487424014357, 28.882444248961811 ], [ -81.992501408658072, 28.882389452989447 ], [ -81.992523229432976, 28.882312648521872 ], [ -81.992549018807338, 28.882234098320648 ], [ -81.992584726745648, 28.882115401668493 ], [ -81.99262242091794, 28.881975755479164 ], [ -81.992646231705265, 28.881825636391504 ], [ -81.992660124814279, 28.881675516744775 ], [ -81.992660916462498, 28.881520184671118 ], [ -81.992655069316001, 28.88137511049128 ], [ -81.992637108423253, 28.881275069506291 ], [ -81.992610164990992, 28.881188436216789 ], [ -81.992573260990312, 28.881101802360583 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southfield Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992869331899996, 28.883410274934761 ], [ -81.993011557729048, 28.883134582571962 ], [ -81.993106286948219, 28.882868867925989 ], [ -81.993134555120307, 28.8827876992701 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southfield Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993134555120307, 28.8827876992701 ], [ -81.993234442509262, 28.882431569671546 ], [ -81.993328208611047, 28.882109455534255 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heather Hill Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99366413786089, 28.882900615469715 ], [ -81.993134555120307, 28.8827876992701 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Herrera Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967542364612584, 28.927357404266772 ], [ -81.967853197749363, 28.927618656734953 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hollyberry Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987949902293039, 28.872610986941314 ], [ -81.987851965462994, 28.872546319022174 ], [ -81.987503066272211, 28.872344229553676 ], [ -81.987080715374333, 28.872112495936612 ], [ -81.986933810791513, 28.872034352108923 ], [ -81.98686171161809, 28.871999858101614 ], [ -81.986807633459009, 28.871989522292708 ], [ -81.986762142172907, 28.871989296716471 ], [ -81.986720045111227, 28.871995687147603 ], [ -81.986683825312369, 28.872006522896807 ], [ -81.986649207016399, 28.872022698624843 ], [ -81.986602188503454, 28.872067883938254 ], [ -81.986576704798026, 28.872106872585505 ], [ -81.986555699865661, 28.872160009787681 ], [ -81.986505492315089, 28.872320205868348 ], [ -81.986489141871942, 28.872368407031146 ], [ -81.986474163815217, 28.872418079986755 ], [ -81.986470703648024, 28.872452546699176 ], [ -81.986472060224813, 28.872488222986068 ], [ -81.986488579855376, 28.872540182864231 ], [ -81.986519267863727, 28.872587985460594 ], [ -81.986566446355397, 28.872629713606322 ], [ -81.986909226637138, 28.872802170560409 ], [ -81.987362188316524, 28.873033907600902 ], [ -81.987542758576652, 28.873130911329113 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hollyberry Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989311114215795, 28.874044585250104 ], [ -81.989451107548319, 28.874117374360846 ], [ -81.989545544067525, 28.874161987154519 ], [ -81.989639225643543, 28.874201914165752 ], [ -81.989795455733415, 28.874258310248337 ], [ -81.989938047098505, 28.874302507790553 ], [ -81.990039611798608, 28.874324223045821 ], [ -81.990181208598301, 28.874351522836328 ], [ -81.990507336972399, 28.874386125515585 ], [ -81.990667246252883, 28.874394648287122 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Homer Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972100570239945, 28.893976103338467 ], [ -81.97210804437384, 28.893844562213687 ], [ -81.972103559549964, 28.893701063123039 ], [ -81.972069053873028, 28.893467165372087 ], [ -81.972055838687197, 28.893236738683353 ], [ -81.972053540702973, 28.892904761306852 ], [ -81.972060993012235, 28.891835294614285 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jardin Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972992963437449, 28.893726475511816 ], [ -81.972945692123474, 28.893475843160996 ], [ -81.972902355719455, 28.89320331546854 ], [ -81.972864927554951, 28.893003752531463 ], [ -81.972828788710245, 28.892818287374453 ], [ -81.972807553521577, 28.892625331627762 ], [ -81.972796962373863, 28.892426759412196 ], [ -81.972796997951804, 28.892291879099403 ], [ -81.972799166466061, 28.892140142447399 ], [ -81.972814098033695, 28.892022126434551 ], [ -81.97285418879278, 28.891838543566578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gooding Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002821164646519, 28.932949061524873 ], [ -82.003570709191536, 28.933609208723638 ], [ -82.003637233013478, 28.933665709791221 ], [ -82.003662466689917, 28.933687907456662 ], [ -82.003682539177689, 28.933712373606873 ], [ -82.003701462894099, 28.933736588040887 ], [ -82.003720389696454, 28.93376080427668 ], [ -82.003739316459075, 28.933783504654869 ], [ -82.00375652022376, 28.933810998060256 ], [ -82.004007013260988, 28.934222762038061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fairmount Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023028446811693, 28.923202118694537 ], [ -82.023074035668628, 28.922982576219908 ], [ -82.023090811922316, 28.922934228408799 ], [ -82.023105416303949, 28.922892107701792 ], [ -82.023125324069952, 28.922841055180914 ], [ -82.02322780861239, 28.922672666869822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Golden Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987697599744607, 28.888160989781216 ], [ -81.98779896588367, 28.888228090586949 ], [ -81.987904614086958, 28.888265210961439 ], [ -81.988327453726498, 28.888395766546505 ], [ -81.989569205294814, 28.888700800565324 ], [ -81.990246720564087, 28.888871365275609 ], [ -81.990282852570331, 28.888881337448428 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Taylor Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988466277977949, 28.891887968184726 ], [ -81.988632228253891, 28.891913624956214 ], [ -81.988926127191618, 28.89196270423621 ], [ -81.989163020048167, 28.891998398926635 ], [ -81.989292234178762, 28.89202962719385 ], [ -81.989410045270631, 28.892069771859983 ], [ -81.989527854500892, 28.892118835659751 ], [ -81.989631729993306, 28.892170127851614 ], [ -81.98974573757674, 28.892240373561084 ], [ -81.989845790940493, 28.892312890097404 ], [ -81.990060230094016, 28.892514702156657 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sunset Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989351160798279, 28.893054022252361 ], [ -81.989257789960519, 28.892942673610936 ], [ -81.989182487186142, 28.8928869964851 ], [ -81.989110195939389, 28.892839271534175 ], [ -81.989031877972224, 28.892802152583613 ], [ -81.988941225464274, 28.89277760250279 ], [ -81.988731457302279, 28.892739426599956 ], [ -81.98853183977316, 28.892709324125704 ], [ -81.988456533736667, 28.892696063718535 ], [ -81.988391220721269, 28.892669266934721 ], [ -81.988348096462346, 28.892629779411404 ], [ -81.988305930595274, 28.892566151821999 ], [ -81.988299912130785, 28.89251313123679 ], [ -81.988308955959042, 28.892444206230657 ], [ -81.988405733338297, 28.892153602789108 ], [ -81.988466277977949, 28.891887968184726 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sunset Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988466277977949, 28.891887968184726 ], [ -81.988475153137458, 28.891822192173962 ], [ -81.988522062483099, 28.891491079127494 ], [ -81.988536017134876, 28.89131381713371 ], [ -81.988538668849998, 28.891102688122913 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Union Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991270328980633, 28.888595109847333 ], [ -81.991368609844002, 28.888281285302515 ], [ -81.991411386274024, 28.88810148211828 ], [ -81.991506179104661, 28.887610217073952 ], [ -81.991579501190756, 28.887245374635818 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Van Buren Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991148487203631, 28.886485270812777 ], [ -81.990946350685903, 28.88643197176274 ], [ -81.9903091994276, 28.886266475379649 ], [ -81.989628460666452, 28.88606128306931 ], [ -81.989321366470989, 28.885968081707549 ], [ -81.98928311905749, 28.885962274123667 ], [ -81.98924882712123, 28.885964592971845 ], [ -81.98919211328716, 28.885969232510931 ], [ -81.989148586806863, 28.885984318140398 ], [ -81.98911033844243, 28.886006369049856 ], [ -81.989070766034331, 28.886051636945464 ], [ -81.989045700277117, 28.886099225842152 ], [ -81.988966546181516, 28.886282621882167 ], [ -81.988946755516281, 28.886345300375137 ], [ -81.988942793698683, 28.886395214429864 ], [ -81.988953338608439, 28.886447451311536 ], [ -81.988971798540391, 28.886488078041399 ], [ -81.989017955453761, 28.886534514270018 ], [ -81.989132520328141, 28.886605098962967 ], [ -81.989385915408533, 28.886700532365762 ], [ -81.990151407413549, 28.886898420861456 ], [ -81.990888128007356, 28.887074413209646 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Williamsburg Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990720573169611, 28.887702886557648 ], [ -81.990752649940504, 28.887579929570325 ], [ -81.99084887895954, 28.887209042808781 ], [ -81.990888128007356, 28.887074413209646 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Van Buren Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990888128007356, 28.887074413209646 ], [ -81.991579501190756, 28.887245374635818 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Williamsburg Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990888128007356, 28.887074413209646 ], [ -81.990978931558189, 28.886817692278406 ], [ -81.991135204621742, 28.886505208969332 ], [ -81.991148487203631, 28.886485270812777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Van Buren Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991579501190756, 28.887245374635818 ], [ -81.991753322024522, 28.887292695028666 ], [ -81.991941369784058, 28.887358277731398 ], [ -81.992117724315719, 28.887418760572018 ], [ -81.992300949488239, 28.88747521120014 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Van Buren Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992300949488239, 28.88747521120014 ], [ -81.992417754372596, 28.887509486443822 ], [ -81.993093320773326, 28.887693238321859 ], [ -81.993908403685424, 28.887924273011144 ], [ -81.993984340124925, 28.887944962659766 ], [ -81.994062210650569, 28.887975202303917 ], [ -81.994114888443306, 28.888013503734161 ], [ -81.994151532357492, 28.88805381926695 ], [ -81.994176723050558, 28.888098166663237 ], [ -81.994197332013229, 28.888158639769912 ], [ -81.994228751500017, 28.888370372328193 ], [ -81.994235573255636, 28.888600703818433 ], [ -81.994221887950616, 28.888831033495812 ], [ -81.994187303455291, 28.889067207342062 ], [ -81.994111700850297, 28.889346007622446 ], [ -81.993987659170031, 28.889679465197418 ], [ -81.993849947708497, 28.889933853413105 ], [ -81.99364328720857, 28.890224679367332 ], [ -81.993461436377473, 28.890433001685118 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sag Harbor Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019208988562156, 28.914606001913647 ], [ -82.019236318191801, 28.914526418248816 ], [ -82.019271006480409, 28.914433877474458 ], [ -82.019299392702294, 28.914379279152108 ], [ -82.019339348222132, 28.914328379530861 ], [ -82.019395588352026, 28.914270350378278 ], [ -82.019435036057558, 28.914241382930491 ], [ -82.019476848550141, 28.914218085172998 ], [ -82.019520217261956, 28.914203432992718 ], [ -82.01956438666943, 28.914193246153008 ], [ -82.01961381618338, 28.914190462803667 ], [ -82.019658135144027, 28.914190557585659 ], [ -82.019778937426494, 28.914210797875196 ], [ -82.019878793124946, 28.914221102260914 ], [ -82.019913057829996, 28.914219675323153 ], [ -82.01997301995776, 28.914215392515665 ], [ -82.020027138446878, 28.914209271644843 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019208988562156, 28.914606001913647 ], [ -82.019367522187395, 28.914629943977335 ], [ -82.019477514331612, 28.914651586408571 ], [ -82.019581253953561, 28.914678386259396 ], [ -82.019702591242449, 28.914716188845542 ], [ -82.019807508282454, 28.91474860515223 ], [ -82.019903920698781, 28.91479100380614 ], [ -82.019997497205722, 28.914830906144481 ], [ -82.020082569189981, 28.914875800253981 ], [ -82.020164804700229, 28.914920693819845 ], [ -82.020252713698127, 28.914978060759296 ], [ -82.02033872617838, 28.915033053976295 ], [ -82.020439876071279, 28.915097782491681 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018751735536185, 28.91453514570361 ], [ -82.018804302582069, 28.914545928261344 ], [ -82.018952087608781, 28.914569126972566 ], [ -82.019061165802043, 28.914584590037673 ], [ -82.019208988562156, 28.914606001913647 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Scotia Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954011514897203, 28.897085757465838 ], [ -81.954519452025409, 28.897023522072427 ], [ -81.955027244536836, 28.896967094619491 ], [ -81.955203272287008, 28.896962685289761 ], [ -81.955304817244922, 28.896983571273829 ], [ -81.955436850981442, 28.89701285327563 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sheppard Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965744849156323, 28.903618557900156 ], [ -81.965852229340882, 28.903604232433338 ], [ -81.965952812224316, 28.903595885588963 ], [ -81.966109121286138, 28.903587552769483 ], [ -81.966508727504305, 28.903587653203537 ], [ -81.966840370322586, 28.903591324097146 ], [ -81.966885220915628, 28.903598512067298 ], [ -81.967056452081621, 28.903639754112927 ], [ -81.967123081607951, 28.903642183219059 ], [ -81.967170671419026, 28.903638614563569 ], [ -81.967237295235265, 28.903626717818817 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thompson Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965839080635277, 28.904293312588692 ], [ -81.965828941626825, 28.904240024773443 ], [ -81.965808858346549, 28.904124511923403 ], [ -81.965796522208265, 28.903999108245383 ], [ -81.965781450458934, 28.903907407419137 ], [ -81.965768524642556, 28.903822664761272 ], [ -81.965761900666081, 28.903766626726856 ], [ -81.965744849156323, 28.903618557900156 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Johnston Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965839080635277, 28.904293312588692 ], [ -81.965754883061649, 28.904313917647613 ], [ -81.965601203557839, 28.90433920762235 ], [ -81.965508439673357, 28.904365964905896 ], [ -81.965441763132716, 28.904386353212381 ], [ -81.965304387681286, 28.904438249512452 ], [ -81.965149657760065, 28.904497338795775 ], [ -81.965035174642537, 28.904535811862779 ], [ -81.964970682245408, 28.904549469359399 ], [ -81.96491705821353, 28.904550732090279 ], [ -81.964867785641957, 28.904537966103227 ], [ -81.964825761950749, 28.904521375352815 ], [ -81.964782291666367, 28.904492032929038 ], [ -81.964683775519816, 28.904384879838808 ], [ -81.964459240110315, 28.90407619476121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Johnston Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964459240110315, 28.90407619476121 ], [ -81.964386810865648, 28.903969049262379 ], [ -81.964067435272966, 28.903482912125501 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021024022226911, 28.92152532313456 ], [ -82.020882227937236, 28.921499118483741 ], [ -82.020744581913647, 28.921482240996795 ], [ -82.020640547191547, 28.92146676774523 ], [ -82.020530111440337, 28.921454111428659 ], [ -82.020448484222044, 28.921442857447229 ], [ -82.020379661520266, 28.921433011820053 ], [ -82.020317044591607, 28.921428763993312 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020317044591607, 28.921428763993312 ], [ -82.020235616962736, 28.921425993239975 ], [ -82.0201203817183, 28.921424602453659 ], [ -82.019986717395554, 28.921430770958473 ], [ -82.019873208701142, 28.921437662788318 ], [ -82.019775524523496, 28.921444552264333 ], [ -82.019642672930999, 28.921448008010014 ], [ -82.019582888907266, 28.921450767572921 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Keeneland Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020317044591607, 28.921428763993312 ], [ -82.020328956176115, 28.921308481681397 ], [ -82.020342544207409, 28.921224066287529 ], [ -82.020361478492362, 28.921155737140118 ], [ -82.020397170786012, 28.92106215566961 ], [ -82.020425089787892, 28.921003525771756 ], [ -82.020454472673791, 28.920941822431086 ], [ -82.020472083153635, 28.920869832846179 ], [ -82.020480390992887, 28.920799215222853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marion Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986494434932212, 28.880793647313947 ], [ -81.986857446421723, 28.880463283311141 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marston Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021592820691694, 28.920034674917446 ], [ -82.021993676436651, 28.920173600484656 ], [ -82.022361734371486, 28.920285749119486 ], [ -82.022507502619888, 28.920341831105976 ], [ -82.022574924835297, 28.920385098727841 ], [ -82.022663291934279, 28.920451627679583 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002050639890527, 28.94608279423651 ], [ -82.001984055702152, 28.946298869775358 ], [ -82.001929102250585, 28.946466446007982 ], [ -82.00189979401857, 28.946560975027655 ], [ -82.001866821696225, 28.946668395134797 ], [ -82.001852167440504, 28.946709214108587 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clarks Hill Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004515410910713, 28.924305371191306 ], [ -82.004843552465275, 28.924321152195905 ], [ -82.004932065503013, 28.924318265604171 ], [ -82.005014024713475, 28.924309609892539 ], [ -82.005118930362627, 28.924295184976607 ], [ -82.005220556749478, 28.924272108880714 ], [ -82.005352780045911, 28.924234301640261 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neeses Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957212101109533, 28.901117377364745 ], [ -81.957506801571483, 28.900884133838076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955258561701257, 28.898273428646579 ], [ -81.955253524947338, 28.898176613882583 ], [ -81.955253607214587, 28.897985963518177 ], [ -81.955264760133403, 28.897811811769191 ], [ -81.955272037773341, 28.897672073316787 ], [ -81.955275671051268, 28.897613848258551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955275671051268, 28.897613848258551 ], [ -81.955284127412469, 28.897534453257997 ], [ -81.955310660475661, 28.897378840744157 ], [ -81.955340246826339, 28.897247217764903 ], [ -81.955425122415122, 28.897036226151062 ], [ -81.955436850981442, 28.89701285327563 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Norris Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954014538656637, 28.897851159963253 ], [ -81.954158254708247, 28.89783199826341 ], [ -81.954227064250034, 28.89781806227203 ], [ -81.954304765263402, 28.897797726557453 ], [ -81.954666916910426, 28.897693043683166 ], [ -81.954810092203402, 28.897652862947524 ], [ -81.954874871724428, 28.897639472963633 ], [ -81.954953263813039, 28.897623269636803 ], [ -81.955068754926415, 28.897615895954498 ], [ -81.955177025467748, 28.897615932150199 ], [ -81.955275671051268, 28.897613848258551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northfield Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019582888907266, 28.921450767572921 ], [ -82.019573511079784, 28.920953672379277 ], [ -82.019564943891169, 28.92085516271262 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Olanta Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956127688175982, 28.901426932569979 ], [ -81.956043988697417, 28.901470805623788 ], [ -81.955899996138214, 28.901543295080639 ], [ -81.955769486800392, 28.901604443323308 ], [ -81.955646795832749, 28.901653564577117 ], [ -81.955526839292844, 28.901700622165471 ], [ -81.955404152101664, 28.901738053017446 ], [ -81.955268184120072, 28.901775479331949 ], [ -81.955110923022744, 28.901812899291631 ], [ -81.954940083926843, 28.901845167798566 ], [ -81.954762483635676, 28.901867430927595 ], [ -81.95464946469049, 28.901875796799199 ], [ -81.954537317328118, 28.901884098807955 ], [ -81.954397779779228, 28.901885912916754 ], [ -81.954312155457359, 28.901890534247155 ], [ -81.954270925351665, 28.901898891733904 ], [ -81.954236034750735, 28.901912832086378 ], [ -81.954206431202806, 28.901928636577903 ], [ -81.954178936234982, 28.901948161057497 ], [ -81.954151441865335, 28.901973267150726 ], [ -81.954134517106766, 28.901998376850166 ], [ -81.95412181792878, 28.902028137536313 ], [ -81.954114961866352, 28.902056769638474 ], [ -81.954112649640763, 28.902181883373206 ], [ -81.954112580218734, 28.902338773217974 ], [ -81.954118900089753, 28.902506990894242 ], [ -81.954119281483813, 28.902527961344575 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pomaria Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954002774420147, 28.89628463450067 ], [ -81.954617733213055, 28.896287662570316 ], [ -81.955259983568368, 28.89628251668557 ], [ -81.955352506474711, 28.896290491333222 ], [ -81.955411762987666, 28.89630501007688 ], [ -81.955494663865906, 28.896328270893356 ], [ -81.955587171521032, 28.896371991768635 ], [ -81.955760325290811, 28.896487731843028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Augustine Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971267949952818, 28.946865120639103 ], [ -81.971099185263185, 28.947105162707039 ], [ -81.970998688807057, 28.947238518757363 ], [ -81.970911468992426, 28.947336864151968 ], [ -81.970824671498477, 28.947421272768594 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Augustine Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970824671498477, 28.947421272768594 ], [ -81.970769269362592, 28.947480212863198 ], [ -81.970687736244031, 28.947575226282748 ], [ -81.970596727319872, 28.947666902695246 ], [ -81.970486758651177, 28.947773579988354 ], [ -81.970267069847878, 28.947962291842678 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Augustine Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970824671498477, 28.947421272768594 ], [ -81.970934896603097, 28.947446628633326 ], [ -81.97102062390357, 28.947475908586171 ], [ -81.971223188053003, 28.947563300567715 ], [ -81.971490621591428, 28.947696128400739 ], [ -81.971785855456076, 28.947845266898245 ], [ -81.972035308713103, 28.947973978102183 ], [ -81.97223430853947, 28.948074052240049 ], [ -81.972539440947074, 28.948222496367666 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Augustine Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967816738702851, 28.946657520422679 ], [ -81.967877585163208, 28.946657535041329 ], [ -81.968211030376651, 28.946655473524082 ], [ -81.968551779969388, 28.946644851041924 ], [ -81.968719718848064, 28.946644890406027 ], [ -81.968831676842839, 28.946651339051648 ], [ -81.968943633943042, 28.94666420831896 ], [ -81.969067756385755, 28.946683505532636 ], [ -81.96917970637675, 28.946713502824618 ], [ -81.969267319491593, 28.946741354197016 ], [ -81.969367098777212, 28.946779912196874 ], [ -81.969479042618175, 28.946831317034924 ], [ -81.969601274447399, 28.946896920790895 ], [ -81.969715184313998, 28.946961234077776 ], [ -81.969872275549932, 28.947049274664927 ], [ -81.970037184853865, 28.947137318623753 ], [ -81.970178566424238, 28.947213675153392 ], [ -81.970333461972331, 28.947298729925954 ], [ -81.970394362681162, 28.947329024360304 ], [ -81.970444673752993, 28.947348834493916 ], [ -81.970521466545193, 28.947368650447586 ], [ -81.970598260696264, 28.947383807820795 ], [ -81.970667109149659, 28.947397799450357 ], [ -81.970727352781537, 28.947412517311857 ], [ -81.970824671498477, 28.947421272768594 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Society Hill Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960451289555095, 28.900006916773819 ], [ -81.960505454485386, 28.900000974850037 ], [ -81.960652150263357, 28.899989103097202 ], [ -81.961157050959144, 28.89994395302309 ], [ -81.961743461036946, 28.899877085237993 ], [ -81.962536936488704, 28.899767987552945 ], [ -81.962828740779869, 28.899715388914508 ], [ -81.962866812639476, 28.899708845160333 ], [ -81.962928678668618, 28.899708845130057 ], [ -81.962989354839721, 28.899727285929472 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gayle Mill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963398178159579, 28.896383056814472 ], [ -81.963397789873099, 28.896379275171622 ], [ -81.963315455220922, 28.895991517461791 ], [ -81.9631908280858, 28.895594375895875 ], [ -81.963037836317042, 28.89519795904673 ], [ -81.963017930738204, 28.895092127353422 ], [ -81.963010747375407, 28.895023312396294 ], [ -81.963005153138269, 28.894920397267022 ], [ -81.963012884560612, 28.894841313739402 ], [ -81.96302575072292, 28.894762232528066 ], [ -81.96308354348885, 28.894399576313848 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96308354348885, 28.894399576313848 ], [ -81.962975467476113, 28.89438093569516 ], [ -81.962766366120064, 28.89433642241816 ], [ -81.9626535950771, 28.894304339581804 ], [ -81.962558446299184, 28.894274330543556 ], [ -81.962413964062819, 28.894221564259308 ], [ -81.962245991593647, 28.894148111404416 ], [ -81.962103866874941, 28.894075698776255 ], [ -81.961965267683851, 28.893993984286858 ], [ -81.961755667448543, 28.893851584213134 ], [ -81.961665445437603, 28.893792383843152 ], [ -81.961512877283411, 28.893663692070088 ], [ -81.961370039241544, 28.893516670898986 ], [ -81.961274238447032, 28.893401618105159 ], [ -81.961164877121576, 28.89324876848929 ], [ -81.961053553945703, 28.893065278816163 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966565698274309, 28.894406691096457 ], [ -81.966681784164834, 28.894458660875515 ], [ -81.966802762364281, 28.894496452125829 ], [ -81.966931039222473, 28.894539308773624 ], [ -81.967023266844066, 28.894567750320473 ], [ -81.96711173579007, 28.894589573416191 ], [ -81.96724620846787, 28.894623864850029 ], [ -81.967302829777836, 28.894637894091947 ], [ -81.967380682707955, 28.894653484944463 ], [ -81.967514939717219, 28.894669869017928 ], [ -81.967685252010753, 28.894685482066475 ], [ -81.967694949146036, 28.894686249553715 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966565698274309, 28.894406691096457 ], [ -81.966291976138379, 28.89436940450673 ], [ -81.966196819834437, 28.8943590411 ], [ -81.966071118322517, 28.89434970393641 ], [ -81.96591016921677, 28.894345527877025 ], [ -81.965753918071968, 28.894347556135759 ], [ -81.965515427454676, 28.894357833569991 ], [ -81.964817577995746, 28.894383498688558 ], [ -81.964236037983994, 28.894406090953858 ], [ -81.963788426473897, 28.894422512718705 ], [ -81.963504115930945, 28.894431740179538 ], [ -81.963260933997219, 28.894419267175945 ], [ -81.96308354348885, 28.894399576313848 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967707663510538, 28.894582822905718 ], [ -81.967696344264837, 28.894582318500039 ], [ -81.967549363994237, 28.894560348097531 ], [ -81.967252805560094, 28.894503299371486 ], [ -81.967013286493923, 28.894458495612863 ], [ -81.966635012091245, 28.89440981046857 ], [ -81.966565698274309, 28.894406691096457 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Travelers Rest Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965769097309533, 28.89396465919117 ], [ -81.965706110497891, 28.893520691748524 ], [ -81.965698343786272, 28.89338180326018 ], [ -81.965714017504325, 28.893236390819308 ], [ -81.965737883165559, 28.893125357189763 ], [ -81.965793986231802, 28.892939319980901 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcconnells Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973586691372105, 28.886774165156492 ], [ -81.973605310986343, 28.885943650530844 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ehrhardt Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972903410817622, 28.88587439053747 ], [ -81.973359527126249, 28.885919111624695 ], [ -81.973605310986343, 28.885943650530844 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ehrhardt Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973605310986343, 28.885943650530844 ], [ -81.973674090006483, 28.885948294674229 ], [ -81.973817900569514, 28.885950830355821 ], [ -81.97410597748511, 28.885953636571511 ], [ -81.974281457245382, 28.885943782067685 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Isle Of Palms Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975278309311918, 28.882195476049663 ], [ -81.975287124479578, 28.882107458173866 ], [ -81.975306792954598, 28.881554542297209 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Isle Of Palms Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975334615309976, 28.880805296975527 ], [ -81.97536352483371, 28.880763954326316 ], [ -81.975389299514234, 28.880739118702461 ], [ -81.975424889950688, 28.880715365832522 ], [ -81.975475205176963, 28.880690533790943 ], [ -81.975539451242113, 28.880679494151366 ], [ -81.975613865607073, 28.880682999630629 ], [ -81.975750123282495, 28.88070480413176 ], [ -81.975871540194959, 28.880728406815674 ], [ -81.976218781489493, 28.880804069182513 ], [ -81.976528651839743, 28.880878635029447 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Isle Of Palms Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975306792954598, 28.881554542297209 ], [ -81.975314084199567, 28.881284334114671 ], [ -81.975316860161243, 28.880912986105443 ], [ -81.975323010833847, 28.880850346756127 ], [ -81.975334615309976, 28.880805296975527 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Isle Of Palms Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974478063674567, 28.882398605421752 ], [ -81.974663777913506, 28.882393486735701 ], [ -81.974852875318618, 28.882379716261077 ], [ -81.975029580359632, 28.882361031082283 ], [ -81.975096662237206, 28.882353843208303 ], [ -81.975144113484404, 28.882339452196021 ], [ -81.975189928880383, 28.882319299669579 ], [ -81.975234111853126, 28.882287627143707 ], [ -81.975260297631962, 28.882255952181822 ], [ -81.975275030003203, 28.882224276002805 ], [ -81.975278309311918, 28.882195476049663 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974455006958621, 28.880864743554309 ], [ -81.974455477970025, 28.8808918596112 ], [ -81.974461762327351, 28.88101169999241 ], [ -81.974478033847106, 28.881301792137087 ], [ -81.974499774459332, 28.881510372294468 ], [ -81.974525719312467, 28.881557656024889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974525719312467, 28.881557656024889 ], [ -81.974546399206858, 28.881508046908863 ], [ -81.974556392216641, 28.881430951655805 ], [ -81.974565198438185, 28.881306603547529 ], [ -81.974581583963996, 28.881131594447901 ], [ -81.974587802325829, 28.881054047321015 ], [ -81.974587067652323, 28.88099014618513 ], [ -81.974584366816657, 28.880896648281599 ], [ -81.974582519172756, 28.88086452509247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rembert Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975134574906122, 28.885466699083047 ], [ -81.975130866352345, 28.885455352861939 ], [ -81.975051648883706, 28.8852556688439 ], [ -81.975018942116492, 28.885180783493148 ], [ -81.974994416242566, 28.885111659048935 ], [ -81.974979704686845, 28.885059816400553 ], [ -81.974973763183257, 28.884968535811431 ], [ -81.974973045999107, 28.88488642718508 ], [ -81.97498370738721, 28.884809622604877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pendleton Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974904517321036, 28.886596749233011 ], [ -81.974987527807244, 28.886602383391747 ], [ -81.975166516459751, 28.886636923397237 ], [ -81.975340907105789, 28.886679879882376 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pendleton Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975340907105789, 28.886679879882376 ], [ -81.975435047524684, 28.886702976237721 ], [ -81.975755720810398, 28.886792418413833 ], [ -81.975885717612258, 28.886825472418252 ], [ -81.97602425559333, 28.88685022034387 ], [ -81.976178153697319, 28.886861593349934 ], [ -81.976315650329383, 28.886858866633947 ], [ -81.976525026138191, 28.886833120273611 ], [ -81.977060688678677, 28.886745126042197 ], [ -81.977533433679483, 28.886663123942402 ], [ -81.9776547250992, 28.886637361909461 ], [ -81.97770992278501, 28.886602864425811 ], [ -81.97774444091209, 28.886561837139173 ], [ -81.97776953968787, 28.886518575986443 ], [ -81.977779526906232, 28.886473754046325 ], [ -81.977790884981061, 28.88624320091758 ], [ -81.977795175516349, 28.886091464395918 ], [ -81.977792355869923, 28.886012054229834 ], [ -81.977773918138453, 28.885960329475282 ], [ -81.97773348606232, 28.885909742470087 ], [ -81.977681061285665, 28.885876586808777 ], [ -81.977610046439864, 28.885851649783621 ], [ -81.977531291490664, 28.885844142070912 ], [ -81.977303542390146, 28.885834736849937 ], [ -81.977137522007823, 28.885815976822418 ], [ -81.977050258041416, 28.885793481960764 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rembert Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975340907105789, 28.886679879882376 ], [ -81.975378581218038, 28.886508527258005 ], [ -81.9753818668284, 28.886453808730401 ], [ -81.97537370099738, 28.886389006689146 ], [ -81.975362274698327, 28.88627812444436 ], [ -81.975344299934534, 28.886181641713023 ], [ -81.975330345306105, 28.886092906874115 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Guerard Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977255531311172, 28.889993110286944 ], [ -81.97730303918209, 28.889834059037813 ], [ -81.977314068282411, 28.889772008807444 ], [ -81.977325069560706, 28.889566381820771 ], [ -81.977333092484997, 28.889383734110435 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magrath Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976590848491298, 28.888931670178813 ], [ -81.976601476732839, 28.888997237703862 ], [ -81.976614761796995, 28.889079197784795 ], [ -81.97659643360403, 28.889546777507803 ], [ -81.976591484456392, 28.889732535033861 ], [ -81.976603955751457, 28.889791054102652 ], [ -81.976647090355712, 28.889850626094837 ], [ -81.976691742544674, 28.8898823939507 ], [ -81.97673052604955, 28.889901040421439 ], [ -81.976786154239122, 28.889916889965995 ], [ -81.976957339962283, 28.889941219404541 ], [ -81.97717331665261, 28.889973800592848 ], [ -81.977255531311172, 28.889993110286944 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hodges Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97594474131057, 28.896977534080957 ], [ -81.975887109256021, 28.896912768385089 ], [ -81.975824534936891, 28.896849036708701 ], [ -81.975781591194959, 28.896809069710514 ], [ -81.975703060315197, 28.896747495193129 ], [ -81.975607348344411, 28.896676197929182 ], [ -81.975553360944318, 28.896636228844041 ], [ -81.975523914037439, 28.896608142999959 ], [ -81.975499378218004, 28.896568178373471 ], [ -81.975467483663451, 28.896506613148453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jackson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97501823679039, 28.896810009455418 ], [ -81.975102552633118, 28.896738456577452 ], [ -81.975171675356606, 28.896682597230004 ], [ -81.97527525094489, 28.896610259203975 ], [ -81.975467483663451, 28.896506613148453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Conway Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977896188924234, 28.895741556176016 ], [ -81.977878138966261, 28.895680703008154 ], [ -81.97784146161581, 28.895588659668288 ], [ -81.977807301343063, 28.895516261602626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jackson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975467483663451, 28.896506613148453 ], [ -81.975533763126833, 28.896470984451202 ], [ -81.9756749136438, 28.896406212444365 ], [ -81.975818513774101, 28.89635331860234 ], [ -81.975962113775779, 28.896304743914566 ], [ -81.976818253086307, 28.896050179429256 ], [ -81.977373542555867, 28.895890271522308 ], [ -81.977642479982492, 28.895811073185293 ], [ -81.977896188924234, 28.895741556176016 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reidville Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97594474131057, 28.896977534080957 ], [ -81.97596271312112, 28.896969631362783 ], [ -81.976221680161046, 28.896885168266135 ], [ -81.977083542160685, 28.896633799081481 ], [ -81.977658675360956, 28.896464742291354 ], [ -81.977756465228325, 28.896439422922434 ], [ -81.977845530164203, 28.896439662378082 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Conway Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977845530164203, 28.896439662378082 ], [ -81.97790355773401, 28.896252563929576 ], [ -81.977944089385232, 28.896097051171914 ], [ -81.977952041500316, 28.896041061185944 ], [ -81.97795550509899, 28.895988209559501 ], [ -81.977952408039712, 28.89594315271956 ], [ -81.977948736173019, 28.89590103276959 ], [ -81.977943218522654, 28.895869441448824 ], [ -81.977934826445434, 28.895839976373608 ], [ -81.977910677822933, 28.895779223262235 ], [ -81.977896188924234, 28.895741556176016 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Conway Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97775602944364, 28.896742722703898 ], [ -81.977836388668877, 28.896471478651151 ], [ -81.977845530164203, 28.896439662378082 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 539A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061344058707817, 28.744243227961121 ], [ -82.061341994927545, 28.744147233456982 ], [ -82.061341903925452, 28.743991344580294 ], [ -82.061341826111985, 28.743858047153868 ], [ -82.061341758850574, 28.743742825053758 ], [ -82.061343747758357, 28.743638671730658 ], [ -82.061341669564882, 28.743589873228302 ], [ -82.061335502637178, 28.743566379494997 ], [ -82.06132318873756, 28.743548310567988 ], [ -82.061296522996727, 28.743541093072999 ], [ -82.06123910156667, 28.743541118716575 ], [ -82.061105803252374, 28.743546600210504 ], [ -82.060910979041097, 28.74354871977604 ], [ -82.060810489096255, 28.743548538770067 ], [ -82.060705898868108, 28.743550392437246 ], [ -82.060625914218605, 28.743543198389268 ], [ -82.060584890299083, 28.743530564135849 ], [ -82.060558216244743, 28.743505272066802 ], [ -82.060541790652465, 28.743472746059048 ], [ -82.060525354642806, 28.743420338268471 ], [ -82.06052119180849, 28.743317318275935 ], [ -82.060519029689502, 28.743122117881352 ], [ -82.06051887147413, 28.742847392156765 ], [ -82.060514559800282, 28.742482296079295 ], [ -82.06051432354235, 28.742072014350892 ], [ -82.060518049084166, 28.741412217713865 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 522", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061349991655732, 28.745779047284412 ], [ -82.061351627849504, 28.745552984937387 ], [ -82.06134893880639, 28.74506477448681 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 522", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06134893880639, 28.74506477448681 ], [ -82.061358471890799, 28.744926389998902 ], [ -82.061355082576569, 28.744610093074954 ], [ -82.06134401515132, 28.744321196799536 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 522", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06134401515132, 28.744321196799536 ], [ -82.061344058707817, 28.744243227961121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112142987459734, 28.664896705048577 ], [ -82.112107033899292, 28.66489569960974 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Highland Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116760076211165, 28.659374570358022 ], [ -82.116758504382815, 28.659328863091279 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rolling Oak Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009992998582774, 28.885361235221396 ], [ -82.010011586508455, 28.885258161382936 ], [ -82.010024053910186, 28.8851443208099 ], [ -82.01002820882448, 28.885030010715329 ], [ -82.010024032868174, 28.884915702102266 ], [ -82.010011544565273, 28.884801862360565 ], [ -82.009990794221295, 28.884688963387841 ], [ -82.009961869047032, 28.884577464445481 ], [ -82.009924884957726, 28.88446782569379 ], [ -82.009879996823614, 28.884360498266069 ], [ -82.009827387192175, 28.884255923367284 ], [ -82.009767272438467, 28.884154526859962 ], [ -82.009699899690105, 28.884056730994413 ], [ -82.009666407574144, 28.884012886824038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whisper Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009324248395131, 28.9101395809191 ], [ -82.009416011471586, 28.910139039864035 ], [ -82.009454166524222, 28.910136798753502 ], [ -82.009505040967454, 28.91013008229541 ], [ -82.009587708646194, 28.910111051843018 ], [ -82.009623320154148, 28.910104334556184 ], [ -82.009664018027081, 28.910098734863567 ], [ -82.009758600116328, 28.910098943194242 ], [ -82.009810172375595, 28.910098252116953 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053633315841481, 28.945620358667771 ], [ -82.053628068123913, 28.946197768095395 ], [ -82.053639173437219, 28.947527661689577 ], [ -82.053643202274472, 28.949674124486538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 202", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058480422291353, 28.945649877721344 ], [ -82.056885211004598, 28.945641244688701 ], [ -82.055414069682385, 28.945643193743951 ], [ -82.054394748608644, 28.945638411260209 ], [ -82.053983133469444, 28.945640585754472 ], [ -82.053706431872939, 28.945631643625202 ], [ -82.053633315841481, 28.945620358667771 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 15th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078537948119831, 28.890911874702784 ], [ -82.078528793603184, 28.892385130824451 ], [ -82.078524170403497, 28.893059716291688 ], [ -82.078579798475729, 28.894411067345857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 15th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078579798475729, 28.894411067345857 ], [ -82.078548907705454, 28.894698424835738 ], [ -82.078564278871198, 28.8952149338966 ], [ -82.078557027540484, 28.895538036655562 ], [ -82.078517348749486, 28.896792858556211 ], [ -82.078515893047694, 28.897199202997765 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.078579798475729, 28.894411067345857 ], [ -82.078343064196332, 28.894430371659706 ], [ -82.078058984015883, 28.894454702417438 ], [ -82.077661256386335, 28.894469932972665 ], [ -82.077495535976453, 28.894473360733485 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 15th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.077495535976453, 28.894473360733485 ], [ -82.077491833707583, 28.89524768460096 ], [ -82.077525971261792, 28.895480823500357 ], [ -82.077506193099552, 28.895753380288461 ], [ -82.077531213304127, 28.897165328123929 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08688978126969, 28.894580465987776 ], [ -82.085518196896558, 28.894570056804408 ], [ -82.083864313921865, 28.894554927861151 ], [ -82.083069877098424, 28.894548383003556 ], [ -82.082916421635034, 28.894544257688132 ], [ -82.082752972959213, 28.894534157858065 ], [ -82.082389301215599, 28.894506245428172 ], [ -82.08209356146746, 28.894474774693084 ], [ -82.081791820783224, 28.894432757252559 ], [ -82.081538040564027, 28.894399499624065 ], [ -82.081221866385363, 28.89435784237277 ], [ -82.080910593437693, 28.894329539984213 ], [ -82.080586398618223, 28.894309052134336 ], [ -82.080285180084658, 28.894303537094373 ], [ -82.079973481892864, 28.894301962477364 ], [ -82.079660043187218, 28.894313136733945 ], [ -82.079424449561486, 28.894323071909081 ], [ -82.079196240630978, 28.894343205555266 ], [ -82.078689640679627, 28.894399336115498 ], [ -82.078579798475729, 28.894411067345857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "India Hook Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981406048146482, 28.877395776863732 ], [ -81.981472778892282, 28.877314819856981 ], [ -81.981572870992295, 28.877208956663452 ], [ -81.981870004210734, 28.876942531243287 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eureka Mill Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981406048146482, 28.877395776863732 ], [ -81.981737786648665, 28.877521636900372 ], [ -81.981921737688509, 28.877587258370635 ], [ -81.982061065027139, 28.877673309844841 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bennettsville Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9813185786481, 28.876548827785175 ], [ -81.98162837372449, 28.876164184097629 ], [ -81.981970402677931, 28.875714913015514 ], [ -81.982105835324987, 28.875541894898429 ], [ -81.982224090935318, 28.875414254751306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blacksburg Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97798013920962, 28.873267160349862 ], [ -81.978149368417021, 28.87291674907517 ], [ -81.978319936513373, 28.872574990868927 ], [ -81.978351580338156, 28.872544660573595 ], [ -81.978391421194118, 28.872517246934457 ], [ -81.978462896489475, 28.872499039158626 ], [ -81.978611699778497, 28.872509376342048 ], [ -81.97901006459638, 28.872546223593783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Pine Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108488649416756, 28.656284822616335 ], [ -82.108497011939221, 28.655257360486157 ], [ -82.108490405955877, 28.654720726762285 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Pine Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108490405955877, 28.654720726762285 ], [ -82.108490159291676, 28.654700712279929 ], [ -82.108507548740036, 28.654453214311442 ], [ -82.108554233210484, 28.654375258825425 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Louisiana Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108490405955877, 28.654720726762285 ], [ -82.108235279400617, 28.654713559865467 ], [ -82.108012750027328, 28.654677802410543 ], [ -82.10789680609075, 28.654680658826539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016832872930024, 28.843236605452308 ], [ -82.016808288655611, 28.843208581846991 ], [ -82.016779385386783, 28.843183960447181 ], [ -82.01674676373689, 28.843163250079574 ], [ -82.016711101165555, 28.843146882865934 ], [ -82.01667690784997, 28.843135047754437 ], [ -82.01664124765432, 28.843127260554478 ], [ -82.016604735476591, 28.843123656538424 ], [ -82.016568002599982, 28.843124300597449 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01636532144056, 28.843513826522084 ], [ -82.016394531961978, 28.843543961968415 ], [ -82.016428855589112, 28.843569579866365 ], [ -82.016467401663732, 28.843590019827836 ], [ -82.016509171939816, 28.843604750507698 ], [ -82.016509287747056, 28.843604777563328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016444731748479, 28.843160637382415 ], [ -82.016440365384057, 28.843162696052829 ], [ -82.016404368839702, 28.843186991239403 ], [ -82.016373304359405, 28.843216093332607 ], [ -82.016347994742233, 28.843249232573033 ], [ -82.016329103930801, 28.843285539965787 ], [ -82.016317127789492, 28.843324059011263 ], [ -82.016317029531791, 28.843324871098478 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rhapsody Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954590902715893, 28.871319311007834 ], [ -81.954657659973449, 28.871286627788354 ], [ -81.954793793440075, 28.87122361894561 ], [ -81.954925146676842, 28.871177421869966 ], [ -81.955039775307071, 28.871143831457502 ], [ -81.955166342394349, 28.871118651686594 ], [ -81.955264250766803, 28.871101869011238 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 86th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960602293394871, 28.959056296720188 ], [ -81.960819862307332, 28.959276312927955 ], [ -81.961028211444969, 28.95949499160632 ], [ -81.961076736683424, 28.959557409965996 ], [ -81.961114058855799, 28.959616539813492 ], [ -81.96112722840995, 28.959664271217925 ], [ -81.961129315976308, 28.959703067626496 ], [ -81.96111844773948, 28.959739501685057 ], [ -81.961096028674618, 28.959772338562459 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 106", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032870791235041, 28.926591102963851 ], [ -82.031601131396755, 28.926590724211508 ], [ -82.031582198950645, 28.926595807596435 ], [ -82.031573536539753, 28.926602585829134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 106", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03154765956269, 28.926765568834917 ], [ -82.031547659707016, 28.926766052465041 ], [ -82.031547712774326, 28.926943868637053 ], [ -82.031546952652207, 28.927139305910575 ], [ -82.031556582437219, 28.927387309392291 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Muirwood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012853383690597, 28.88072435165423 ], [ -82.01298048539266, 28.880640433246384 ], [ -82.013130838883683, 28.880532563676361 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Muirwood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013130838883683, 28.880532563676361 ], [ -82.013241450536412, 28.880467095006424 ], [ -82.013368640413859, 28.880396566377375 ], [ -82.013474125134053, 28.880349208997089 ], [ -82.01361641080031, 28.880299114020566 ], [ -82.013734037449566, 28.880268515518228 ], [ -82.013847849589709, 28.880247428448133 ], [ -82.01396097586516, 28.880234373638377 ], [ -82.014079157184526, 28.880229045540212 ], [ -82.014239609825793, 28.880229162979472 ], [ -82.014418390382048, 28.880229432648157 ], [ -82.014485538568749, 28.880228686779134 ], [ -82.014545280913595, 28.880227561772237 ], [ -82.014573245051835, 28.880225321175221 ], [ -82.014639745430955, 28.880225311574435 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paisley Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00378164130295, 28.873854179317856 ], [ -82.00398095555947, 28.873810558131037 ], [ -82.004234754382082, 28.873755201667585 ], [ -82.004420700336269, 28.873722383454549 ], [ -82.004590680733187, 28.873702082194573 ], [ -82.004746063006763, 28.873691393394417 ], [ -82.004916505336013, 28.873688484494295 ], [ -82.005187382662072, 28.873702596678406 ], [ -82.005325830437172, 28.873718443595873 ], [ -82.005458654878908, 28.87374109573787 ], [ -82.005547996909058, 28.873769418503755 ], [ -82.00562106167159, 28.873803217886085 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969683076071789, 28.909034893425481 ], [ -81.969616047795299, 28.908985244642313 ], [ -81.96958291708755, 28.908945139009923 ], [ -81.969533223174949, 28.908881335263011 ], [ -81.969510452300014, 28.908828471672525 ], [ -81.969485619742272, 28.908742801864427 ], [ -81.969452508039026, 28.908638904649219 ], [ -81.9694276835626, 28.908533184869668 ], [ -81.969402857625354, 28.90842564334422 ], [ -81.969382178741071, 28.908310813095927 ], [ -81.969338742254848, 28.90809937672125 ], [ -81.969297382750938, 28.907869712579384 ], [ -81.969258086728018, 28.907663744137292 ], [ -81.969212582038779, 28.907446839301631 ], [ -81.969154644526725, 28.907239043889497 ], [ -81.969092562323993, 28.907038538058245 ], [ -81.969078075294192, 28.906996614850698 ], [ -81.96906980074084, 28.906960160099587 ], [ -81.969061530562698, 28.906909123309944 ], [ -81.96906154694706, 28.906854444051373 ], [ -81.969063630260464, 28.90681799078834 ], [ -81.969071030771318, 28.906759811415036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96918260729322, 28.908011149395843 ], [ -81.969199955429147, 28.908104812809938 ], [ -81.969276485011179, 28.908487585139614 ], [ -81.969336482519509, 28.90873001022096 ], [ -81.969386152886102, 28.908879478189402 ], [ -81.969398768211192, 28.908933951887068 ], [ -81.9694068297256, 28.909001599895355 ], [ -81.969402676589439, 28.909039875320676 ], [ -81.969394378580404, 28.909078148896459 ], [ -81.969378966952974, 28.909130454282693 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968783225895137, 28.906828163222432 ], [ -81.968841622635722, 28.906887178988129 ], [ -81.968889598346706, 28.906938245769755 ], [ -81.968918584319894, 28.90698199680887 ], [ -81.968945497781405, 28.907033037026956 ], [ -81.969055176006108, 28.907381187926855 ], [ -81.96909393292627, 28.907522883823095 ], [ -81.969117233391259, 28.907658243816154 ], [ -81.96918260729322, 28.908011149395843 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96918260729322, 28.908011149395843 ], [ -81.969170840035346, 28.908493027892018 ], [ -81.969164594811346, 28.908596917027587 ], [ -81.96915002801984, 28.908821098588884 ], [ -81.969145850892929, 28.908935925848464 ], [ -81.969147890643924, 28.909045284808759 ], [ -81.969158220463115, 28.909136419261419 ], [ -81.969172697479152, 28.909212974437203 ], [ -81.969189249800678, 28.909273125412735 ], [ -81.969226504212074, 28.90938066981963 ], [ -81.969251343766089, 28.909442645330959 ], [ -81.969294815928848, 28.909531964729794 ], [ -81.969396260265654, 28.9097215435457 ], [ -81.969541183453998, 28.909980392541417 ], [ -81.969603292997718, 28.91009341130874 ], [ -81.969657116458748, 28.910204603723095 ], [ -81.969698517716324, 28.910304858359879 ], [ -81.969723354604668, 28.910374125242324 ], [ -81.969737836480689, 28.910436098313575 ], [ -81.969750240525713, 28.910519941704425 ], [ -81.969768109102731, 28.910618445052851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969796514921427, 28.910774668041125 ], [ -81.969839773763596, 28.910713161849156 ], [ -81.9698600038584, 28.910598340918014 ], [ -81.96987609449252, 28.910471670079051 ], [ -81.969873539115611, 28.91035547613205 ], [ -81.969863217202615, 28.910234723832769 ], [ -81.969824442459839, 28.910013719856032 ], [ -81.969783075265624, 28.909804106784314 ], [ -81.969754639922542, 28.909644618348867 ], [ -81.96975672509592, 28.909597686707318 ], [ -81.969762953239609, 28.909550297633441 ], [ -81.969771247456777, 28.909521137243598 ], [ -81.969785759124193, 28.909481042407414 ], [ -81.969814857431004, 28.909431904420362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969465845286265, 28.909480296750935 ], [ -81.969512319135248, 28.909521078560683 ], [ -81.969555806018761, 28.909564831843984 ], [ -81.969578580397922, 28.909599468106158 ], [ -81.969607562518107, 28.909663267132078 ], [ -81.969624119988453, 28.9097070142797 ], [ -81.96964688092811, 28.909794506222163 ], [ -81.969665505528909, 28.909856480245079 ], [ -81.969711020670744, 28.910051514061635 ], [ -81.969737905957118, 28.910199154978756 ], [ -81.969750317453304, 28.910257481397817 ], [ -81.969766861686367, 28.910350440734671 ], [ -81.969777196443118, 28.910426993092528 ], [ -81.969768866918002, 28.910576448686005 ], [ -81.969768109102731, 28.910618445052851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96900129713751, 28.915842095114105 ], [ -81.968995510374171, 28.91551700703679 ], [ -81.968989424994462, 28.915086861733471 ], [ -81.968981310317361, 28.914516371750867 ], [ -81.968977208366539, 28.914379672798731 ], [ -81.968965024229888, 28.91356494802131 ], [ -81.968954767668407, 28.913225934546251 ], [ -81.968952761887749, 28.913010861613262 ], [ -81.968961073595466, 28.912925198537014 ], [ -81.968977694778346, 28.912761164745721 ], [ -81.968990138456604, 28.912711956333712 ], [ -81.969010881724415, 28.912617183827564 ], [ -81.969041986649003, 28.912511476966362 ], [ -81.969079308666906, 28.912396658328589 ], [ -81.969135279438603, 28.912256327910427 ], [ -81.969286595097287, 28.911926465632234 ], [ -81.969421325705653, 28.911638518315783 ], [ -81.969658919399947, 28.911121396195469 ], [ -81.969719029912184, 28.910993824029148 ], [ -81.969741830797773, 28.91094279523443 ], [ -81.969777072610768, 28.910849848500071 ], [ -81.969796514921427, 28.910774668041125 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969585923090477, 28.91811263865976 ], [ -81.969543511555344, 28.918044408182276 ], [ -81.969525398304285, 28.918003395584766 ], [ -81.969515051462864, 28.917962382948215 ], [ -81.969512476790413, 28.917912259787073 ], [ -81.969512522564926, 28.917757336374681 ], [ -81.969502203392523, 28.917629747479424 ], [ -81.969468598529815, 28.917429248607778 ], [ -81.969427199403597, 28.917313045009035 ], [ -81.969372862892257, 28.917174056348674 ], [ -81.969271931518861, 28.916980375996143 ], [ -81.969204649129338, 28.916834549392746 ], [ -81.96915290567263, 28.916681892337046 ], [ -81.969132217326944, 28.916590755598577 ], [ -81.969106355581786, 28.916481390365384 ], [ -81.969088264265238, 28.916365192923287 ], [ -81.969075357329004, 28.916230770278482 ], [ -81.969070199616382, 28.916160140902385 ], [ -81.969050200934575, 28.915982371175524 ], [ -81.96900129713751, 28.915842095114105 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96900129713751, 28.915842095114105 ], [ -81.968957918412002, 28.915979804439928 ], [ -81.968951683558345, 28.916043595380934 ], [ -81.968941292842359, 28.916156596625843 ], [ -81.968939196336208, 28.916239527141695 ], [ -81.968945372877911, 28.916366202923271 ], [ -81.968961913520147, 28.916471919848057 ], [ -81.968977944626261, 28.916549955088886 ], [ -81.968988803224434, 28.916606801396981 ], [ -81.969010272867223, 28.916680964331633 ], [ -81.969032257286287, 28.916769025457679 ], [ -81.969091124872676, 28.916911660587779 ], [ -81.969129552549518, 28.916996879645048 ], [ -81.969193736289554, 28.917113543340815 ], [ -81.969272274010279, 28.917290471985883 ], [ -81.969315870994194, 28.917412485121918 ], [ -81.969336947177965, 28.917504077569923 ], [ -81.969366035529333, 28.917652174563113 ], [ -81.96937248352485, 28.917740460347527 ], [ -81.969375691862865, 28.917828744487416 ], [ -81.969369591813276, 28.917884563670853 ], [ -81.969355077734363, 28.917928303688715 ], [ -81.969330335203182, 28.917971129140788 ], [ -81.969305335300177, 28.91801031015321 ], [ -81.96927632338064, 28.918039465725563 ], [ -81.969240743959773, 28.918068407743576 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969136115844279, 28.918406542758792 ], [ -81.969157541739435, 28.91849827154876 ], [ -81.969160758777846, 28.918563773601569 ], [ -81.969154270051718, 28.918612186629979 ], [ -81.969131592268155, 28.918680530363261 ], [ -81.969047387742208, 28.918831449788009 ], [ -81.968972904325767, 28.918951042774378 ], [ -81.968898413371136, 28.919084874855397 ], [ -81.968856310363108, 28.919170302616518 ], [ -81.968823914118531, 28.919255730818684 ], [ -81.96878503953937, 28.919361093740761 ], [ -81.968755879283975, 28.919455066522577 ], [ -81.968733189677721, 28.919557586456317 ], [ -81.96871372302661, 28.919708517140812 ], [ -81.968710454269811, 28.919811039797651 ], [ -81.968713624774324, 28.920036024513536 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968846337076471, 28.920036055451078 ], [ -81.968846398806846, 28.919828160080066 ], [ -81.968852915420882, 28.919691463701707 ], [ -81.968875614219399, 28.919554770179694 ], [ -81.968904786575308, 28.919423775253573 ], [ -81.968959859146807, 28.919275698634937 ], [ -81.969031116432603, 28.919121928634436 ], [ -81.969170374357759, 28.918882739422955 ], [ -81.969264292848251, 28.918717583913828 ], [ -81.969338771713609, 28.918615076647026 ], [ -81.969374386687036, 28.918580910317022 ], [ -81.969465081872102, 28.918521271183398 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962971288945297, 28.865426329738508 ], [ -81.962980762918818, 28.866064289816634 ], [ -81.962980653310154, 28.86637115417064 ], [ -81.962977943345408, 28.866887041786857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shanewood Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014627981810975, 28.880603134422469 ], [ -82.014637756204564, 28.88056870519052 ], [ -82.014641662532128, 28.880534277470041 ], [ -82.014639745430955, 28.880225311574435 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shanewood Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014639745430955, 28.880225311574435 ], [ -82.014639163680854, 28.880131420840257 ], [ -82.01464176193528, 28.879811309227325 ], [ -82.014642161489391, 28.879606157374717 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013937476170639, 28.879609923689323 ], [ -82.013940505436182, 28.878888766871931 ], [ -82.013939940400334, 28.87856273281287 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013939940400334, 28.87856273281287 ], [ -82.013939810660631, 28.878487053164193 ], [ -82.013936144700295, 28.878439276644993 ], [ -82.013923042335819, 28.878352379955576 ], [ -82.01389067694592, 28.878229316389746 ], [ -82.013855102844857, 28.878137451117539 ], [ -82.013809984997152, 28.878047728832129 ], [ -82.013747255044535, 28.877948128038682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Upper Elmwood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014748037817611, 28.874614197616214 ], [ -82.015071908459134, 28.874413658232864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vassar Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008765588992389, 28.878842674575086 ], [ -82.009097923834204, 28.878723380646786 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vassar Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009097923834204, 28.878723380646786 ], [ -82.009244786456648, 28.878670662482918 ], [ -82.009809518802157, 28.878466482146436 ], [ -82.010331413685904, 28.878277785127139 ], [ -82.010666697042467, 28.878155240632662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wayland Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009565247589393, 28.874569152436905 ], [ -82.010097935029265, 28.874455201360018 ], [ -82.010310215288925, 28.874410331050214 ], [ -82.010366606622213, 28.874401261563133 ], [ -82.010483290517911, 28.874390642924094 ], [ -82.01060731610788, 28.87438949601243 ], [ -82.010977170778517, 28.874389517799752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wayland Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010977170778517, 28.874389517799752 ], [ -82.011185745292607, 28.874389529624025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Montbrook Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010627043330928, 28.87652906977522 ], [ -82.010836526732888, 28.876410375197398 ], [ -82.010985875280099, 28.876317302181047 ], [ -82.011125928523924, 28.87622203261596 ], [ -82.011236587493528, 28.876140521716742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ansley Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010627043330928, 28.87652906977522 ], [ -82.010538279016103, 28.876397042450801 ], [ -82.010396317946586, 28.876188629121444 ], [ -82.010262366632261, 28.876011805565987 ], [ -82.010113884340669, 28.87580933585539 ], [ -82.009990527981714, 28.875592210845518 ], [ -82.009896064474432, 28.87539121058359 ], [ -82.009890626118974, 28.875378717679318 ], [ -82.00987824916524, 28.875336891402863 ], [ -82.009877161997309, 28.875330884850964 ], [ -82.009875408466982, 28.875301838055584 ], [ -82.009875835660011, 28.875287424649429 ], [ -82.00987754055528, 28.875277510937288 ], [ -82.009889961153078, 28.87523551242522 ], [ -82.009900127276339, 28.875213491942034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ansley Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01087434729088, 28.87689690174517 ], [ -82.010627043330928, 28.87652906977522 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Antigua Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008871310202323, 28.878139426701168 ], [ -82.00935062489576, 28.877963423331849 ], [ -82.00993948935249, 28.877750515614402 ], [ -82.010378823743622, 28.877591665902703 ], [ -82.010412259899127, 28.877583328919137 ], [ -82.010517974474993, 28.877574973114939 ], [ -82.010540571414381, 28.877572988197191 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Berrington Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001547267997168, 28.870574651468928 ], [ -82.001481283899508, 28.870740696402304 ], [ -82.001392714789006, 28.870974022551081 ], [ -82.001306180166651, 28.871219707468072 ], [ -82.001234724926775, 28.871447130547725 ], [ -82.001178314145974, 28.871628485546974 ], [ -82.001176662806628, 28.871637284811435 ], [ -82.001164518951995, 28.871674858555917 ], [ -82.001144736164861, 28.871709827378858 ], [ -82.001117990984667, 28.871741002039347 ], [ -82.001085194698845, 28.87176731871525 ], [ -82.001047461565989, 28.871787884119055 ], [ -82.001006077038355, 28.871801996251683 ], [ -82.000962454707846, 28.871809174179059 ], [ -82.000918074800168, 28.871809174274329 ], [ -82.00090736883665, 28.871808087922435 ], [ -82.000675708394354, 28.871779931802237 ], [ -82.000632488879518, 28.871774374519685 ], [ -82.000590214481448, 28.871761495937978 ], [ -82.000551472515198, 28.871741807665575 ], [ -82.000517663248118, 28.871716019819278 ], [ -82.000490009604803, 28.871685067189993 ], [ -82.00046951103819, 28.871650067736091 ], [ -82.000456907652122, 28.871612286490574 ], [ -82.000452656625285, 28.871573086836033 ], [ -82.000456907610825, 28.871533888095957 ], [ -82.00046101099521, 28.871518387439696 ], [ -82.000513032568094, 28.871351136628871 ], [ -82.000587879213271, 28.871110951754346 ], [ -82.000707957574207, 28.870764549511588 ], [ -82.000887489604068, 28.87030257466219 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Berrington Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000887489604068, 28.87030257466219 ], [ -82.001023105913561, 28.869938994025262 ], [ -82.001074814582594, 28.869833777206335 ], [ -82.001177183247023, 28.869660525618038 ], [ -82.001324740744138, 28.869422330458406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edenville Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005476977505651, 28.874184122922856 ], [ -82.005520008414081, 28.874038648552499 ], [ -82.005521014893958, 28.874035128633938 ], [ -82.005549989341446, 28.873949450348157 ], [ -82.005586903277717, 28.873866170084586 ], [ -82.005621062696747, 28.873803218788332 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edenville Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004470960926085, 28.872402081333149 ], [ -82.004462245388709, 28.872369508450088 ], [ -82.004441383066222, 28.872270108657904 ], [ -82.004428819835965, 28.872169633083683 ], [ -82.004424621300487, 28.872068619500343 ], [ -82.00442881103325, 28.871967605680524 ], [ -82.004441366478872, 28.871867128494252 ], [ -82.004446839245901, 28.871836747803723 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edenville Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004446839245901, 28.871836747803723 ], [ -82.004462221004218, 28.871767731127509 ], [ -82.004469643558963, 28.871739768552143 ], [ -82.004555532112704, 28.871431262424007 ], [ -82.004603840166354, 28.871257751777385 ], [ -82.004618406026168, 28.871194955577984 ], [ -82.00462002008868, 28.871184231660234 ], [ -82.004624119009648, 28.87112456585611 ], [ -82.004620016301828, 28.871064900292943 ], [ -82.004607774543786, 28.871006104788229 ], [ -82.004587567020721, 28.870949037424751 ], [ -82.004559694124183, 28.870894530113624 ], [ -82.004524562849255, 28.870843376865054 ], [ -82.004482680643079, 28.870796323863541 ], [ -82.004434660529299, 28.870754058640596 ], [ -82.004405926963898, 28.870733108870521 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edenville Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004405926963898, 28.870733108870521 ], [ -82.004381202655907, 28.870717194736404 ], [ -82.004323088144901, 28.870686273505132 ], [ -82.00426116166544, 28.870661742460513 ], [ -82.004196327334284, 28.870643960690241 ], [ -82.004129532314906, 28.870633188029018 ], [ -82.004061748366894, 28.87062958054786 ], [ -82.004057478948297, 28.870629595092588 ], [ -82.003863905615162, 28.870628890631512 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edenville Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003863905615162, 28.870628890631512 ], [ -82.003608273478349, 28.870627958984414 ], [ -82.002552361500648, 28.870624106212109 ], [ -82.00176203000342, 28.87062074582936 ], [ -82.001700564658194, 28.870615417319112 ], [ -82.001631451174831, 28.870602096236187 ], [ -82.001599911709235, 28.87059326381684 ], [ -82.001547267997168, 28.870574651468928 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edenville Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001547267997168, 28.870574651468928 ], [ -82.001152665000717, 28.870401201082803 ], [ -82.000993613987248, 28.870334237154303 ], [ -82.000887489604068, 28.87030257466219 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fairview Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001860680351257, 28.871768842487924 ], [ -82.001899681793205, 28.871779700445202 ], [ -82.001930040776998, 28.871790559375725 ], [ -82.001957296827086, 28.871800310301573 ], [ -82.001978791863607, 28.871806293261933 ], [ -82.002001394985925, 28.871810281216121 ], [ -82.003617117446694, 28.871817472867701 ], [ -82.003744018544381, 28.871817936506286 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fairview Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003744018544381, 28.871817936506286 ], [ -82.004245316639057, 28.871819761160577 ], [ -82.004338163553939, 28.871822089301197 ], [ -82.004446839245901, 28.871836747803723 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flatwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012638167591078, 28.880126869603533 ], [ -82.012692394110601, 28.880061230441527 ], [ -82.012752441975437, 28.880008853665519 ], [ -82.012874202596521, 28.879931641736196 ], [ -82.013002733014531, 28.8798613885278 ], [ -82.013156337626469, 28.879790877517994 ], [ -82.013298347472059, 28.879736967066126 ], [ -82.013480822142725, 28.879682115122566 ], [ -82.013654269195683, 28.879644404828806 ], [ -82.013812786523701, 28.879621002667431 ], [ -82.013937476170639, 28.879609923689323 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flatwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013937476170639, 28.879609923689323 ], [ -82.014047178810443, 28.879605256941282 ], [ -82.014220641735676, 28.879604833533246 ], [ -82.014642161489391, 28.879606157374717 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hopespring Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008597159493149, 28.877335170875778 ], [ -82.008384138051738, 28.87706442679568 ], [ -82.008283879728793, 28.876897896425074 ], [ -82.008191330694913, 28.876703691937273 ], [ -82.007978571885971, 28.876247795665993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hopespring Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007978571885971, 28.876247795665993 ], [ -82.007708371867466, 28.87566880906985 ], [ -82.007561741006256, 28.875343069302637 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sembler Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957183866922264, 28.865326932434229 ], [ -81.957179886200052, 28.865509674697471 ], [ -81.957167685761988, 28.865630375556673 ], [ -81.957156630190951, 28.865768601315747 ], [ -81.957126012745434, 28.865964437416437 ], [ -81.957091037189613, 28.866146831400709 ], [ -81.957071368729018, 28.866238987290451 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sembler Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957189232724232, 28.866251859265162 ], [ -81.957219768207921, 28.866050870077395 ], [ -81.957267880618957, 28.865745596428955 ], [ -81.957289657799976, 28.865540108245504 ], [ -81.957307963164837, 28.865344542483182 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arrobes Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005808222984342, 28.881740591229303 ], [ -82.006353705377379, 28.88186223008908 ], [ -82.006501512768466, 28.881895858823473 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arrobes Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006501512768466, 28.881895858823473 ], [ -82.006612287099543, 28.881920592351772 ], [ -82.00688341141975, 28.881982739592896 ], [ -82.007035864122898, 28.882030489444329 ], [ -82.007105836439024, 28.882054969147735 ], [ -82.007175762826137, 28.882082095267002 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arrobes Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007175762826137, 28.882082095267002 ], [ -82.007181958170804, 28.882084633139904 ], [ -82.007295335459958, 28.88213526654123 ], [ -82.007404752999165, 28.882192254052271 ], [ -82.007509748427253, 28.882255354791564 ], [ -82.007609882957198, 28.882324305320019 ], [ -82.007644317650403, 28.882350240185605 ], [ -82.007743058916745, 28.882416125568582 ], [ -82.007777778327423, 28.882437132916781 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chalmer Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005808222984342, 28.881740591229303 ], [ -82.005826944557711, 28.881617126789795 ], [ -82.005850603266992, 28.881472593413761 ], [ -82.005876735676736, 28.881328391981306 ], [ -82.005890849557304, 28.881255797662217 ], [ -82.005898962464926, 28.881210607376378 ], [ -82.005906446436839, 28.881155974528465 ], [ -82.005911442293907, 28.881101122517872 ], [ -82.005913941843133, 28.88104613706389 ], [ -82.005913937917015, 28.880991108397062 ], [ -82.005911434624863, 28.880936124942767 ], [ -82.005906431975063, 28.880881271517218 ], [ -82.005904364333034, 28.880864224413834 ], [ -82.005850271796575, 28.880443051062215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chalmer Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005630801239548, 28.88231303872552 ], [ -82.005667892333335, 28.882270258331417 ], [ -82.005689330536342, 28.882240895737617 ], [ -82.005708611682053, 28.882210393614915 ], [ -82.00572565478862, 28.882178878289441 ], [ -82.005740389126331, 28.88214647518463 ], [ -82.005752763444391, 28.882113313332287 ], [ -82.005754515947203, 28.88208234176852 ], [ -82.005770224970533, 28.88204525567841 ], [ -82.005775244535016, 28.882010631473165 ], [ -82.005775270152142, 28.882010389655377 ], [ -82.005787059550414, 28.881907050422701 ], [ -82.005808222984342, 28.881740591229303 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chalmer Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005266490810499, 28.882938259086043 ], [ -82.005265351571765, 28.882822665299507 ], [ -82.005265329843866, 28.882818389294126 ], [ -82.005266584163223, 28.882785324417675 ], [ -82.005270345076866, 28.882752407432161 ], [ -82.005276596186206, 28.882719784510787 ], [ -82.005285308790533, 28.882687601827044 ], [ -82.005296443937283, 28.882656003750011 ], [ -82.005309952421968, 28.882625130137516 ], [ -82.00532577376319, 28.882595119945368 ], [ -82.005343836202584, 28.882566106715934 ], [ -82.005364061830747, 28.882538221284726 ], [ -82.005386357360393, 28.882511585464773 ], [ -82.005410625403726, 28.882486319264608 ], [ -82.005436755245682, 28.882462538181709 ], [ -82.005464632070272, 28.882440345983788 ], [ -82.005494130809652, 28.882419840122861 ], [ -82.005508208234573, 28.882411000669425 ], [ -82.005531616600848, 28.88239606041564 ], [ -82.005562395697396, 28.88237405125896 ], [ -82.005591527224752, 28.88235036748442 ], [ -82.005618891240772, 28.882325105643783 ], [ -82.005630801239548, 28.88231303872552 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chalmer Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005506119486924, 28.884396787195342 ], [ -82.005450083054356, 28.884275167138554 ], [ -82.005421834420559, 28.884207939491667 ], [ -82.005395949906301, 28.884139978183615 ], [ -82.005372456165858, 28.884071348180495 ], [ -82.005351375752397, 28.884002112643842 ], [ -82.005332724042745, 28.883932340149119 ], [ -82.005316525640154, 28.883862094759884 ], [ -82.005302790795028, 28.883791443246917 ], [ -82.005291536934067, 28.883720453282965 ], [ -82.005282772257061, 28.88364919254099 ], [ -82.00527650291319, 28.883577725084592 ], [ -82.005272738127573, 28.883506124902546 ], [ -82.005271581353867, 28.883454554815753 ], [ -82.005266490810499, 28.882938259086043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dunster Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006265489020024, 28.883972290728998 ], [ -82.006129439408596, 28.883780424708977 ], [ -82.00611788353531, 28.883764887553333 ], [ -82.006095236086367, 28.883731465432369 ], [ -82.006074771241813, 28.883696971285321 ], [ -82.006056557694123, 28.883661511581955 ], [ -82.00604065388417, 28.883625203620031 ], [ -82.006027108000282, 28.883588160186022 ], [ -82.006015963105028, 28.883550503089612 ], [ -82.006007259184969, 28.883512348726676 ], [ -82.00600102084907, 28.883473824321122 ], [ -82.005997269630271, 28.883435050780836 ], [ -82.005996015784433, 28.883396152623206 ], [ -82.005997265466547, 28.883357252561005 ], [ -82.006001012529524, 28.883318479623494 ], [ -82.006007246725176, 28.883279954719274 ], [ -82.006015946528308, 28.883241801464141 ], [ -82.006019773853424, 28.883227840905519 ], [ -82.00605272968383, 28.883112938731095 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crestview Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009364760342095, 28.881022436464999 ], [ -82.009441539464959, 28.881032623866794 ], [ -82.009526943190039, 28.881052375954475 ], [ -82.009648867921626, 28.881097717527833 ], [ -82.009760225821992, 28.881160693385002 ], [ -82.009826963074502, 28.881211584067568 ], [ -82.009886674420954, 28.881268838229378 ], [ -82.009938583734879, 28.881331710632171 ], [ -82.009970433133915, 28.881379488901946 ], [ -82.010031389639437, 28.881463570138994 ], [ -82.010126784687159, 28.881554935009621 ], [ -82.010391309712475, 28.881763789873457 ], [ -82.010871812354665, 28.882141320432275 ], [ -82.011076744659519, 28.88230379564272 ], [ -82.011123828035508, 28.882330889898704 ], [ -82.011171105466119, 28.882360607112915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Hill Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011171105466119, 28.882360607112915 ], [ -82.011227385384629, 28.882323947609905 ], [ -82.011264868183943, 28.882294122695885 ], [ -82.01141619728142, 28.882143381229692 ], [ -82.011462610914165, 28.882089979312774 ], [ -82.011496726649867, 28.882038826004315 ], [ -82.011517317190112, 28.881997910389206 ], [ -82.011527101027696, 28.881973943571673 ], [ -82.011534359668573, 28.881948379884214 ], [ -82.011564605958412, 28.881855712885923 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Hill Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011564605958412, 28.881855712885923 ], [ -82.011599889224442, 28.881756477617898 ], [ -82.011677313662673, 28.881526408794297 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morning Dove Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015749288320379, 28.873798761520916 ], [ -82.015737924699664, 28.873621459465561 ], [ -82.015687859363581, 28.87347787806393 ], [ -82.01567109455749, 28.873412315027636 ], [ -82.015658078662284, 28.873333445316639 ], [ -82.015653387308191, 28.873280736937488 ], [ -82.015652701540645, 28.873147306326427 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arbordale Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009310965388494, 28.877026932045524 ], [ -82.0092431529973, 28.876907766647477 ], [ -82.009171631473279, 28.876808715566316 ], [ -82.009042137339392, 28.876640269307799 ], [ -82.008911642812578, 28.876468316635187 ], [ -82.008851535463464, 28.87637945166739 ], [ -82.008797342105851, 28.876289801310861 ], [ -82.008754364486634, 28.876209864442067 ], [ -82.008680746185348, 28.876055056351991 ], [ -82.008593254037763, 28.875860222007208 ], [ -82.008588285698465, 28.875826380552216 ], [ -82.008593086305197, 28.875747370172572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arbordale Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009452539387738, 28.877311384414245 ], [ -82.00937197001538, 28.877134136029863 ], [ -82.009310965388494, 28.877026932045524 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Benhogan Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008256197019051, 28.875818969258876 ], [ -82.008593086305197, 28.875747370172572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Benhogan Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008593086305197, 28.875747370172572 ], [ -82.008711778861183, 28.875721230642032 ], [ -82.008797595223299, 28.875701283695633 ], [ -82.008881293596872, 28.875680625809899 ], [ -82.009120444490051, 28.875602015040975 ], [ -82.009146091596776, 28.875597780725681 ], [ -82.009174943579268, 28.875597778902637 ], [ -82.009237459811871, 28.875602008533534 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sedgefield Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017560736951367, 28.885105041713089 ], [ -82.01756512414174, 28.884020294973944 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sedgefield Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017538175892, 28.885735326033867 ], [ -82.017536454437405, 28.885622047799675 ], [ -82.017559561527065, 28.885395405882257 ], [ -82.017560736951367, 28.885105041713089 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Larkwood Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01288724489315, 28.883650697664613 ], [ -82.013079991650997, 28.883407684880247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Graves Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011828991602712, 28.884836335785927 ], [ -82.012037419668189, 28.884862390283708 ], [ -82.012223992918592, 28.884947403589575 ], [ -82.012476335235888, 28.885089158379007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ravenwood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010977170778517, 28.874389517799752 ], [ -82.011021925716548, 28.874326695166342 ], [ -82.011031599110026, 28.874311297533069 ], [ -82.011297531280931, 28.873878501854673 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ravenwood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011297531280931, 28.873878501854673 ], [ -82.011542384753227, 28.873479703384916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Highbanks Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011779625625607, 28.875640142354889 ], [ -82.01169642856037, 28.875579483814654 ], [ -82.011645131444851, 28.875530362165922 ], [ -82.011482565530841, 28.875321969681604 ], [ -82.011396653997949, 28.875208882896782 ], [ -82.011364494540189, 28.875154639946846 ], [ -82.011310377576962, 28.875006061216933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Montbrook Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009986163403411, 28.876826830310087 ], [ -82.010186439486461, 28.876753049470604 ], [ -82.010331607379896, 28.876690074667124 ], [ -82.010422227350844, 28.876642099937268 ], [ -82.010627043330928, 28.87652906977522 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Montbrook Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009310965388494, 28.877026932045524 ], [ -82.009365283712953, 28.877034062140723 ], [ -82.009406960267242, 28.877031238840353 ], [ -82.009451843728698, 28.877019948114835 ], [ -82.009598853416037, 28.876966842459037 ], [ -82.009904646609698, 28.876856278956588 ], [ -82.009986163403411, 28.876826830310087 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quinn Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008070043376719, 28.873780533273187 ], [ -82.008798263065458, 28.873779196401355 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quinn Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006981349625292, 28.873860567120143 ], [ -82.007067291274396, 28.873814658412773 ], [ -82.007138281063362, 28.87379000681452 ], [ -82.007198098263245, 28.873781499719325 ], [ -82.008070043376719, 28.873780533273187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evander Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011236587493528, 28.876140521716742 ], [ -82.011125392773451, 28.87599588686011 ], [ -82.010894685343104, 28.875695788964581 ], [ -82.010813098784013, 28.875589662746407 ], [ -82.010772486344806, 28.875535034110051 ], [ -82.010746374852033, 28.875496915603939 ], [ -82.010733386736959, 28.875477516175899 ], [ -82.010718156152279, 28.875452626404869 ], [ -82.010694868765015, 28.875413150614541 ], [ -82.010676916805608, 28.875380808926984 ], [ -82.01066129098939, 28.875349914356875 ], [ -82.01065030163538, 28.875327958549423 ], [ -82.010626141556457, 28.875274200268255 ], [ -82.010604975907199, 28.87522087396383 ], [ -82.010586190513692, 28.875166694804413 ], [ -82.010579613281465, 28.875144661067051 ], [ -82.010567864622431, 28.875104350674462 ], [ -82.010555920427876, 28.875056079281613 ], [ -82.010546782410131, 28.87501224159486 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138757820824537, 28.874855310090052 ], [ -82.138851067790483, 28.874814151783117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986523950410742, 28.823805646537981 ], [ -81.986633581105039, 28.823830268039259 ], [ -81.986753960364837, 28.823860569652449 ], [ -81.986878639523582, 28.823894657670458 ], [ -81.98711509609906, 28.823962830311427 ], [ -81.987360151191382, 28.824042364327862 ], [ -81.987530586027219, 28.824102421820974 ], [ -81.987679779388742, 28.824156340533868 ], [ -81.987871053282888, 28.824233843862888 ], [ -81.988027895863681, 28.824304607193795 ], [ -81.988222993790558, 28.824394239206093 ], [ -81.988429567389417, 28.824496673894448 ], [ -81.988666743666158, 28.824628084018173 ], [ -81.988960535170776, 28.824806663928918 ], [ -81.989566479160601, 28.825216379155098 ], [ -81.990403358710751, 28.825799553950244 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962977943345408, 28.866887041786857 ], [ -81.962975376345355, 28.867002671255126 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Casa Bella", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97292505317138, 28.919732737793495 ], [ -81.972924973332908, 28.920036485013163 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Trce", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008303937023669, 28.928455778916426 ], [ -82.008441280548354, 28.928313616119055 ], [ -82.008489487537915, 28.9282476338451 ], [ -82.008526982363534, 28.928176938599155 ], [ -82.008548405075459, 28.928101530708922 ], [ -82.008564467633249, 28.927997847005567 ], [ -82.008566610853009, 28.927704947395416 ], [ -82.008556220647833, 28.92730396526753 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 31st Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037267841297052, 28.801528342345943 ], [ -82.037053562944038, 28.801532432495481 ], [ -82.03684401374916, 28.801541111101962 ], [ -82.036571042264526, 28.801555949143005 ], [ -82.035675492023472, 28.801575165421607 ], [ -82.035603690207793, 28.801572353401543 ], [ -82.035541426982562, 28.801564753027208 ], [ -82.035467063591142, 28.80156934325689 ], [ -82.035427287863101, 28.801573922772828 ], [ -82.035387517711214, 28.801598306213631 ], [ -82.035365045971147, 28.801630301627583 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 41st Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035365045971147, 28.801630301627583 ], [ -82.035333553647078, 28.803013701410244 ], [ -82.035319310741215, 28.803255203321097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 44th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031476063041637, 28.876378964001923 ], [ -82.031464883206453, 28.877515134962227 ], [ -82.031469674694421, 28.878477863487205 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 82nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030355775804665, 28.876382964677429 ], [ -82.031476063041637, 28.876378964001923 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 49th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030041863483589, 28.828849456927038 ], [ -82.029427745646458, 28.828493427994644 ], [ -82.028793606479198, 28.828089513999831 ], [ -82.028310288616666, 28.827763317268971 ], [ -82.02743694832472, 28.827109723512962 ], [ -82.027244257613631, 28.826985114798948 ], [ -82.027012596454796, 28.826817428167878 ], [ -82.026900052795853, 28.826659034430868 ], [ -82.026758331891443, 28.826504808573389 ], [ -82.026624947979755, 28.826379758916392 ], [ -82.026508236283846, 28.826267216450962 ], [ -82.02624291488651, 28.826088462668753 ], [ -82.026066215309754, 28.825932348727225 ], [ -82.025826042874215, 28.82563041523332 ], [ -82.025539389484663, 28.825362129718371 ], [ -82.025409169546805, 28.825306178859709 ], [ -82.025277073866519, 28.82527701415323 ], [ -82.024336954803573, 28.825274690513627 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963191570776218, 28.865269540168722 ], [ -81.962968379559797, 28.86526671233548 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 38th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.167363102381401, 28.574114356441694 ], [ -82.167360385872556, 28.574090730995128 ], [ -82.167377726478676, 28.574054086278647 ], [ -82.167384359913271, 28.57401627353283 ], [ -82.167376694245476, 28.573559193345652 ], [ -82.167301032342721, 28.573139401103742 ], [ -82.167308559445658, 28.572850948538495 ], [ -82.167419042851733, 28.572391613608147 ], [ -82.16747019842316, 28.57213470122155 ], [ -82.167532277715154, 28.571799745165627 ], [ -82.167583558345925, 28.571620862788091 ], [ -82.167616472088469, 28.571474515329388 ], [ -82.167671398160167, 28.571272869501069 ], [ -82.167685929539189, 28.571146052399019 ], [ -82.167715103508286, 28.57096394598635 ], [ -82.167791931071307, 28.570638723258245 ], [ -82.167828528041113, 28.570492371197307 ], [ -82.167838670292113, 28.570403099703494 ], [ -82.168357358645537, 28.570412634369895 ], [ -82.168362539778215, 28.570046323933166 ], [ -82.168356007066222, 28.569563013696026 ], [ -82.168360354583896, 28.568672684721033 ], [ -82.167749387929419, 28.568612385756392 ], [ -82.167501581227754, 28.568612690296582 ], [ -82.167294108844075, 28.568607858402945 ], [ -82.16718920873717, 28.568598828223355 ], [ -82.167096983323731, 28.568586731608537 ], [ -82.166981689980375, 28.568566522218344 ], [ -82.166684773861505, 28.568506933591767 ], [ -82.16651221694471, 28.568524401691725 ], [ -82.16632596392698, 28.568539578075733 ], [ -82.166079362830743, 28.568534248819532 ], [ -82.165710659279171, 28.568523716599419 ], [ -82.165162813241594, 28.568529455821341 ], [ -82.164430164997256, 28.568477186504509 ], [ -82.164340759684464, 28.568458929721995 ], [ -82.164259503809646, 28.568436049378569 ], [ -82.164222122137147, 28.568394289652378 ], [ -82.164189117190816, 28.568344589427202 ], [ -82.164184318418307, 28.568284703868578 ], [ -82.164181885817229, 28.567996139614486 ], [ -82.164191018172602, 28.567751487579624 ], [ -82.16418476849995, 28.567361139775674 ], [ -82.16420200058181, 28.566795312620147 ], [ -82.164210153361097, 28.566744848183166 ], [ -82.164224044401934, 28.566714893457124 ], [ -82.164239923945814, 28.566680652903514 ], [ -82.164261058961998, 28.566659448515445 ], [ -82.16429489560538, 28.566639474063557 ], [ -82.164331574644265, 28.566631955759899 ], [ -82.164407241366348, 28.566640423331844 ], [ -82.164571574420393, 28.566697694635501 ], [ -82.164621412907962, 28.566699226238192 ], [ -82.164915762025203, 28.566692963959479 ], [ -82.165414182473967, 28.566704173088134 ], [ -82.165905928218507, 28.566724246825249 ], [ -82.166157761812499, 28.566719442115318 ], [ -82.166221255609202, 28.566714381108394 ], [ -82.166273436803721, 28.566693138573257 ], [ -82.1662889057109, 28.566659483001679 ], [ -82.166287397341605, 28.566597195061231 ], [ -82.166278828425547, 28.566532422547603 ], [ -82.166275959328999, 28.566503772078264 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 38th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.166102151123155, 28.566384886013616 ], [ -82.166172159227813, 28.566407557891612 ], [ -82.166223753089554, 28.566430253978126 ], [ -82.166264325578354, 28.566469221029511 ], [ -82.166275959328999, 28.566503772078264 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 38th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.166275959328999, 28.566503772078264 ], [ -82.166309522006657, 28.566461929126639 ], [ -82.166358222183263, 28.566426000625128 ], [ -82.16640694139079, 28.566401548107166 ], [ -82.166477784390167, 28.566377924898415 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inman Mills Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976517235811215, 28.89812970152138 ], [ -81.97645075286529, 28.898029854931401 ], [ -81.976405358438015, 28.897969367616501 ], [ -81.976356280791038, 28.89790995788265 ], [ -81.976293703320209, 28.897851627596161 ], [ -81.976242167914023, 28.897810579175502 ], [ -81.976177131903341, 28.897769527429638 ], [ -81.976109642535491, 28.897723075854962 ], [ -81.976056879452273, 28.897688506555102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nichols Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976517235811215, 28.89812970152138 ], [ -81.976771065087902, 28.898050431020142 ], [ -81.977076676811336, 28.897961923964552 ], [ -81.977399468710104, 28.897863699549994 ], [ -81.977790209287875, 28.897755821133348 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974708861944961, 28.90432503051905 ], [ -81.974658086028214, 28.904262420350005 ], [ -81.974621286043288, 28.904184652393646 ], [ -81.974610252963828, 28.904129573100636 ], [ -81.974600454494848, 28.904045329949341 ], [ -81.974595562645803, 28.903981608702207 ], [ -81.974582085765249, 28.903877926632937 ], [ -81.974561303623801, 28.903750753635183 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974438195896141, 28.90376919571824 ], [ -81.974440199352586, 28.903778151413572 ], [ -81.974470377894434, 28.903959985660006 ], [ -81.974480168757282, 28.90407446754903 ], [ -81.97448137265728, 28.904165186670802 ], [ -81.97447052848689, 28.904225281288955 ], [ -81.974444576233608, 28.904284476137065 ], [ -81.974416631497675, 28.904344046857226 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Haynesville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97032864888007, 28.902070340394445 ], [ -81.970357342188578, 28.902070154556842 ], [ -81.970440749016532, 28.902072922290568 ], [ -81.97052728237918, 28.902078785545164 ], [ -81.970593743347095, 28.902086598718491 ], [ -81.970700343031567, 28.902101169838652 ], [ -81.970790189800141, 28.90212387866363 ], [ -81.970870270865987, 28.902146586207646 ], [ -81.970956799669551, 28.902168949521784 ], [ -81.971075362397073, 28.902191665281897 ], [ -81.971179139092271, 28.902210924659826 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Haynesville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969733234527652, 28.902104735469507 ], [ -81.969825045837283, 28.902095474231825 ], [ -81.969966275204214, 28.902086911570386 ], [ -81.97008002090206, 28.902079519223324 ], [ -81.97022441853079, 28.902071391004416 ], [ -81.97032864888007, 28.902070340394445 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Virginia Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970301525070141, 28.902495852127412 ], [ -81.970306492811872, 28.902297134579047 ], [ -81.97032864888007, 28.902070340394445 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Virginia Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970664397703658, 28.903957166703673 ], [ -81.970626363555866, 28.903913956318188 ], [ -81.970563790520927, 28.903835105155558 ], [ -81.970495084377774, 28.903746529443737 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Virginia Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970495084377774, 28.903746529443737 ], [ -81.970477915475442, 28.90370224536256 ], [ -81.970441126643209, 28.903589918229962 ], [ -81.970395764262065, 28.903421429228345 ], [ -81.970355322897774, 28.90320650089204 ], [ -81.970330827340931, 28.903031537069154 ], [ -81.970316149564482, 28.902854414407951 ], [ -81.970306403950516, 28.902606013046231 ], [ -81.970301525070141, 28.902495852127412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cayce Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969909548632884, 28.904075797692034 ], [ -81.969984422138182, 28.90405205516587 ], [ -81.970049482040125, 28.904022910148072 ], [ -81.970254484383375, 28.903894434236459 ], [ -81.970495084377774, 28.903746529443737 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Estill Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970077613552661, 28.904356635116745 ], [ -81.970000324415167, 28.904237817612966 ], [ -81.969942666712654, 28.904143845647074 ], [ -81.969909548632884, 28.904075797692034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Estill Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969909548632884, 28.904075797692034 ], [ -81.969878879812043, 28.904030432257318 ], [ -81.969818770289919, 28.90392349726471 ], [ -81.969774618777009, 28.903814408449218 ], [ -81.969742734009614, 28.903726921609728 ], [ -81.969709631252314, 28.903600554443809 ], [ -81.969680219407451, 28.903448267773161 ], [ -81.969650814460522, 28.903279783030804 ], [ -81.969628778275677, 28.903089698920724 ], [ -81.969610416397785, 28.902926615116051 ], [ -81.969607990227189, 28.902829414449116 ], [ -81.969605942956534, 28.902542335045009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hilda Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969276692833219, 28.902558262218506 ], [ -81.969605942956534, 28.902542335045009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hilda Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969605942956534, 28.902542335045009 ], [ -81.96966085127508, 28.902535668675224 ], [ -81.969940686868554, 28.902516291726997 ], [ -81.970301525070141, 28.902495852127412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Furman Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969696570504382, 28.90140762199524 ], [ -81.969871703323648, 28.901404909479712 ], [ -81.970163355341612, 28.901406847919869 ], [ -81.970447680514596, 28.901417871163826 ], [ -81.970691295529022, 28.901438811096188 ], [ -81.970887142043168, 28.901461333674558 ], [ -81.971031897739024, 28.901485716296811 ], [ -81.971155362090371, 28.90150822371487 ], [ -81.971274572226548, 28.90152698286056 ], [ -81.971393782419241, 28.901541994653893 ], [ -81.971498095496813, 28.901543890064161 ], [ -81.971621308292683, 28.901549606123421 ], [ -81.971738652400603, 28.901545814211698 ], [ -81.971811038333385, 28.901528970013615 ], [ -81.971862136916471, 28.90150650178898 ], [ -81.971906853004029, 28.901467170948461 ], [ -81.971930280215631, 28.901427835632624 ], [ -81.97194945413473, 28.901377261289955 ], [ -81.97195363056835, 28.901327941608862 ], [ -81.971960229438693, 28.900895823047509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gilbert Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970747520558959, 28.900094580304096 ], [ -81.970941167940808, 28.900136380846202 ], [ -81.971053235531244, 28.900156270123677 ], [ -81.971223247524691, 28.900175922733936 ], [ -81.971378432251797, 28.900182871201892 ], [ -81.971563083265892, 28.900184638433394 ], [ -81.971765419985857, 28.90017430931195 ], [ -81.972071870814091, 28.900157088222837 ], [ -81.972400329498825, 28.900137639588525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duncan Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969794956252784, 28.900720766509576 ], [ -81.969816249119134, 28.900657411879685 ], [ -81.969844089033288, 28.900579658931253 ], [ -81.969868655886856, 28.900509103780855 ], [ -81.969896496327692, 28.900432791791307 ], [ -81.969925977777805, 28.900347839748818 ], [ -81.969947272211058, 28.900271523570499 ], [ -81.969970205561964, 28.90019376949077 ], [ -81.969998049423026, 28.900101615814229 ], [ -81.970029393221836, 28.899986795358373 ], [ -81.970056186302315, 28.899872323968321 ], [ -81.97006686360848, 28.899807872428994 ], [ -81.970079972318189, 28.899745955086836 ], [ -81.970096352478265, 28.899692678888545 ], [ -81.970129094030909, 28.899643726544269 ], [ -81.97017664752542, 28.899606600313874 ], [ -81.970227745034521, 28.89958225952919 ], [ -81.970293014646415, 28.89956985296843 ], [ -81.970392249337266, 28.899553374592319 ], [ -81.970541291781615, 28.899533124666554 ], [ -81.970651852633466, 28.899519740767918 ], [ -81.970764222372424, 28.899509318518735 ], [ -81.970842596539384, 28.899505645196392 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duncan Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970842596539384, 28.899505645196392 ], [ -81.97093665924335, 28.899496242927054 ], [ -81.971060494373958, 28.899486139624607 ], [ -81.971166572437696, 28.899479432250253 ], [ -81.971253855400562, 28.899473830588203 ], [ -81.97139222877253, 28.899468240692844 ], [ -81.971513572508385, 28.899460773861922 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Irwin Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971513572508385, 28.899460773861922 ], [ -81.971519972397317, 28.899406449600203 ], [ -81.971537926531909, 28.899331541839686 ], [ -81.971549466154542, 28.899271038820995 ], [ -81.971564725012101, 28.899187160727447 ], [ -81.971583924892499, 28.899089873497704 ], [ -81.971600979207651, 28.899001830765854 ], [ -81.971624426066001, 28.898896929925453 ], [ -81.971648829447901, 28.898777397598611 ], [ -81.971675583076177, 28.898645918418715 ], [ -81.971709693942245, 28.898467960646215 ], [ -81.97173953412144, 28.898327469032381 ], [ -81.971758716795122, 28.898239426719424 ], [ -81.971773639648632, 28.89816824477095 ], [ -81.97179415071939, 28.898081624754361 ], [ -81.971813315672577, 28.897994308777502 ], [ -81.971832289526532, 28.897897023251833 ], [ -81.971858895077347, 28.897784234214527 ], [ -81.971878245117139, 28.897702113702806 ], [ -81.971888729750901, 28.897658729743537 ], [ -81.971903647326172, 28.897602532258166 ], [ -81.971929204317419, 28.897559451921499 ], [ -81.971965403783585, 28.8975219933278 ], [ -81.972003728263715, 28.897497648284627 ], [ -81.972053903878106, 28.89748350709996 ], [ -81.972115042367733, 28.897476988097285 ], [ -81.972157159348285, 28.897479852636405 ], [ -81.972203834476971, 28.897484576845024 ], [ -81.972261881171391, 28.897498594369289 ], [ -81.97233368070215, 28.897512703135458 ], [ -81.972397540304414, 28.897525829427835 ], [ -81.972518870180693, 28.897553954686575 ], [ -81.972589116190193, 28.897572701718619 ], [ -81.972635945996686, 28.897582078064509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inman Mills Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976056879452273, 28.897688506555102 ], [ -81.975989387400972, 28.897649614383109 ], [ -81.975922374695841, 28.897608742618587 ], [ -81.975870020491797, 28.89757129317908 ], [ -81.975829869085118, 28.897537266540503 ], [ -81.975788153657859, 28.89749189770388 ], [ -81.975726057058367, 28.897418627866834 ], [ -81.975663580347742, 28.897340169709896 ], [ -81.975618866673784, 28.897274499440453 ], [ -81.975551695508813, 28.897185792960428 ], [ -81.975548767028457, 28.897182010888653 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Loris Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977790209287875, 28.897755821133348 ], [ -81.977763255404653, 28.897375602139849 ], [ -81.977755904767562, 28.897314041541435 ], [ -81.977738732351341, 28.89727191844597 ], [ -81.977711740734279, 28.897237354078779 ], [ -81.977667566353773, 28.897203867792715 ], [ -81.977620007989771, 28.897181685835168 ], [ -81.977548530025231, 28.897167125180154 ], [ -81.97748102852789, 28.897170355794284 ], [ -81.976883591641041, 28.897341761150276 ], [ -81.97639012578945, 28.897492066628462 ], [ -81.976275572712794, 28.89753380568256 ], [ -81.976202201482778, 28.897569913500959 ], [ -81.976144919832635, 28.897605902338164 ], [ -81.976101071832048, 28.897643154062965 ], [ -81.976056879452273, 28.897688506555102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mouttrie Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973770206918218, 28.892604355663824 ], [ -81.973760954827057, 28.892531402895617 ], [ -81.973752270751262, 28.892353792456852 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mouttrie Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973947894133502, 28.893222774411672 ], [ -81.97388462198181, 28.893093975915548 ], [ -81.973842108048885, 28.89297732820582 ], [ -81.973781624890051, 28.89274403754807 ], [ -81.973770206918218, 28.892604355663824 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001852167440504, 28.946709214108587 ], [ -82.001806981654696, 28.946818782680175 ], [ -82.001776452473507, 28.946912237951771 ], [ -82.001761797627225, 28.946991728281652 ], [ -82.001758732373773, 28.947062623259999 ], [ -82.001764120322676, 28.94716680554366 ], [ -82.001766766427437, 28.947283977257932 ], [ -82.001768253053413, 28.947378036752301 ], [ -82.001766768567379, 28.947447275102384 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001766768567379, 28.947447275102384 ], [ -82.001765879243735, 28.94753068305118 ], [ -82.001763801418122, 28.947647151015232 ], [ -82.001756377326814, 28.947790852927774 ], [ -82.001744497246932, 28.947952843448427 ], [ -82.001723705533905, 28.948099159417666 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burbank Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001766768567379, 28.947447275102384 ], [ -82.001965789868109, 28.94744727217844 ], [ -82.002017618530985, 28.94744013176123 ], [ -82.002194220847571, 28.947405473491095 ], [ -82.002496729027555, 28.947341526561669 ], [ -82.002838362596265, 28.947270681152265 ], [ -82.003198775789755, 28.947213193846853 ], [ -82.003523544558902, 28.947162674788885 ], [ -82.003862176254501, 28.947120862629124 ], [ -82.004008718433028, 28.947105181551681 ], [ -82.004089909965103, 28.947099953330763 ], [ -82.004173082728229, 28.947105177166083 ], [ -82.004309725308588, 28.947134785713093 ], [ -82.004503978399143, 28.947197235875084 ], [ -82.004868343313561, 28.947316719677744 ], [ -82.005376249470558, 28.947497184230482 ], [ -82.005724658253754, 28.947628500754025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maywood Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001852167440504, 28.946709214108587 ], [ -82.001976735168952, 28.946752180887064 ], [ -82.00204301142503, 28.946765342791615 ], [ -82.002090538604307, 28.946765341336231 ], [ -82.002182621925726, 28.946749664683551 ], [ -82.00231868484822, 28.946719950411431 ], [ -82.002760774489303, 28.946637231431971 ], [ -82.003130813749848, 28.946575995117822 ], [ -82.003521612264322, 28.946523351661408 ], [ -82.003949334562165, 28.946469507884643 ], [ -82.004359710421809, 28.946429619010662 ], [ -82.004578773829351, 28.946420329763324 ], [ -82.00464760112547, 28.946426644612632 ], [ -82.004719655023365, 28.946442754616683 ], [ -82.004880026391646, 28.946504221802609 ], [ -82.004996883642761, 28.946560907202986 ], [ -82.005373038139297, 28.946733840181491 ], [ -82.005535468278609, 28.946798284073985 ], [ -82.005676258207828, 28.946847756859615 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillside Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002050639890527, 28.94608279423651 ], [ -82.002164972920824, 28.946094273647379 ], [ -82.002202597553961, 28.946089544260015 ], [ -82.002477288366691, 28.946040176965468 ], [ -82.002768776481986, 28.945987099502251 ], [ -82.003055448270302, 28.945939813317572 ], [ -82.003350368524508, 28.945899295349584 ], [ -82.00364496244552, 28.945862098985693 ], [ -82.003761481525714, 28.94584537311745 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Berwyn Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003761481525714, 28.94584537311745 ], [ -82.003687998060329, 28.945434024931604 ], [ -82.003687021298845, 28.945427835224859 ], [ -82.003686435445061, 28.945424053728814 ], [ -82.003686044505116, 28.945420616904077 ], [ -82.003685652528475, 28.945416834501135 ], [ -82.003685457517264, 28.945413396769474 ], [ -82.003685261469457, 28.945409616166494 ], [ -82.003685066458246, 28.945406177532508 ], [ -82.003685066339131, 28.945402396022612 ], [ -82.003685066230815, 28.945398957384029 ], [ -82.003685259988828, 28.945395176771818 ], [ -82.003685259880527, 28.945391739035543 ], [ -82.003685651629567, 28.945388300387677 ], [ -82.003685847439129, 28.945384519775423 ], [ -82.003686238162373, 28.945381082932194 ], [ -82.003686628874689, 28.945377300510721 ], [ -82.003687214500687, 28.945373862760576 ], [ -82.003687801152452, 28.945370425010385 ], [ -82.003688582696171, 28.945366643481972 ], [ -82.00368916832204, 28.945363205731805 ], [ -82.003689950902299, 28.945359767976974 ], [ -82.003690927348643, 28.945355985541624 ], [ -82.003691904831584, 28.945352547782129 ], [ -82.0036928812887, 28.945349110924994 ], [ -82.003693858771499, 28.945345673165516 ], [ -82.003695029105444, 28.94534223540143 ], [ -82.003696203542475, 28.945338796734983 ], [ -82.003697571856478, 28.945335359868483 ], [ -82.003698937092935, 28.945331922099758 ], [ -82.00370030540671, 28.945328484330936 ], [ -82.003701870685632, 28.94532539033106 ], [ -82.003703433901975, 28.945321952557574 ], [ -82.003704996092409, 28.945318514784095 ], [ -82.003706753196369, 28.94531542077959 ], [ -82.003708513366732, 28.945311983001353 ], [ -82.003710270470478, 28.945308888996799 ], [ -82.003712030640628, 28.945305451218523 ], [ -82.003713984698436, 28.945302356306936 ], [ -82.003716133658898, 28.945299263195242 ], [ -82.003718087716507, 28.945296169185877 ], [ -82.003720237702495, 28.945293075171801 ], [ -82.003722386662545, 28.945289981157721 ], [ -82.003724731561903, 28.945287230010255 ], [ -82.003727076450176, 28.945284135991407 ], [ -82.003729421338377, 28.945281043777083 ], [ -82.003734307064661, 28.945275542379456 ], [ -82.003748475919636, 28.945257841756689 ], [ -82.003762955684991, 28.945243144858299 ], [ -82.003789689529683, 28.945223549110949 ], [ -82.003825331531985, 28.945206891004737 ], [ -82.003881029022722, 28.945191212277514 ], [ -82.003985733386514, 28.945181412511864 ], [ -82.004244961045202, 28.94515838084266 ], [ -82.004435066158621, 28.945140956657504 ], [ -82.004644976508871, 28.945127015349279 ], [ -82.004773693118182, 28.945127012229626 ], [ -82.004995482382796, 28.945140940023883 ], [ -82.005278662521278, 28.945168798497054 ], [ -82.005886599661594, 28.945236220152147 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Irwin Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972635945996686, 28.897582078064509 ], [ -81.972718962594698, 28.89759708038844 ], [ -81.97314075452536, 28.897684693196407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97314075452536, 28.897684693196407 ], [ -81.973153049134254, 28.897622572353477 ], [ -81.973168409487414, 28.897560452123187 ], [ -81.973202201260449, 28.897451067726692 ], [ -81.973251346163977, 28.897314678762967 ], [ -81.973302018543151, 28.897202596223881 ], [ -81.973349617126203, 28.897105369411662 ], [ -81.973371106863198, 28.897042708993439 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973371106863198, 28.897042708993439 ], [ -81.973397226384776, 28.896974381246135 ], [ -81.973423345915165, 28.896854190224211 ], [ -81.97343872509731, 28.896725897122863 ], [ -81.973443358749094, 28.896609754958117 ], [ -81.973431118021409, 28.896467948949176 ], [ -81.973398934541436, 28.896299131347231 ], [ -81.973360605595957, 28.896153268815567 ], [ -81.973326886697407, 28.895991202790732 ], [ -81.973314641654127, 28.89586695460472 ], [ -81.973310070504866, 28.895737306779711 ], [ -81.97331317385121, 28.895611710002289 ], [ -81.973327014613787, 28.89549286907415 ], [ -81.973350068922556, 28.895357824674981 ], [ -81.973374649347718, 28.895256541016185 ], [ -81.973400761852062, 28.895162011368615 ], [ -81.973437619608248, 28.895063431618613 ], [ -81.973466795204317, 28.894990510835811 ], [ -81.9735012659782, 28.894899654278188 ], [ -81.973563479224381, 28.894770067463767 ], [ -81.973615927989286, 28.894633683475174 ], [ -81.973650017412652, 28.894517545262847 ], [ -81.973669503484473, 28.8944408969273 ], [ -81.973689486301737, 28.894318005822448 ], [ -81.973692577110953, 28.894227522905535 ], [ -81.973692594681836, 28.894162698082869 ], [ -81.973684943018384, 28.894081667350545 ], [ -81.973657358967529, 28.893934457126104 ], [ -81.973641058585429, 28.893842755893669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973613903253195, 28.893707487678189 ], [ -81.97359447636029, 28.893637547489163 ], [ -81.97348216283045, 28.89330360576373 ], [ -81.973367305800082, 28.892947653620084 ], [ -81.973314688615503, 28.892718714304728 ], [ -81.973296304629798, 28.892598065912935 ], [ -81.973292245820133, 28.892470218215202 ], [ -81.97329433613703, 28.892300955267149 ], [ -81.973312797439689, 28.892122694232448 ], [ -81.973334381472128, 28.891980951701342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridgeville Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973334381472128, 28.891980951701342 ], [ -81.973514429978991, 28.891990420976171 ], [ -81.973610219559575, 28.891988566710896 ], [ -81.973703882969602, 28.891973598832919 ], [ -81.973795422225592, 28.891945516444597 ], [ -81.973916765127228, 28.891906201654617 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Homeland Park Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97948071082817, 28.875627235614864 ], [ -81.979678335299425, 28.875656830620873 ], [ -81.97984907208199, 28.875690845277155 ], [ -81.980008897629418, 28.875740293772058 ], [ -81.980162056541445, 28.875797132748847 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boiling Springs Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980162056541445, 28.875797132748847 ], [ -81.980486937106377, 28.875046743809346 ], [ -81.980678878849361, 28.874617471526509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Homeland Park Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980162056541445, 28.875797132748847 ], [ -81.980411390499484, 28.875919929533797 ], [ -81.980528215914262, 28.875984455795223 ], [ -81.980630490423536, 28.876051097551194 ], [ -81.980749194196008, 28.876137245760948 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Homeland Park Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980749194196008, 28.876137245760948 ], [ -81.980922999876256, 28.876261817256836 ], [ -81.981279525252845, 28.87652063440073 ], [ -81.9813185786481, 28.876548827785175 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eureka Mill Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978642794564195, 28.876201755534048 ], [ -81.979042158422914, 28.876229348827586 ], [ -81.979293786493784, 28.87624964559652 ], [ -81.979441081194835, 28.876264523818048 ], [ -81.979557685574292, 28.876284800177704 ], [ -81.979671223526168, 28.876311826093371 ], [ -81.9797755517327, 28.876344255311363 ], [ -81.979866071238689, 28.876378029507723 ], [ -81.980016422612564, 28.876448279140163 ], [ -81.980172908761787, 28.876538787100529 ], [ -81.980303308871839, 28.8766387426538 ], [ -81.980407626764233, 28.876733293079766 ], [ -81.980491998036015, 28.876826491573503 ], [ -81.980593247544903, 28.876923741996034 ], [ -81.980678868985592, 28.876994058169693 ], [ -81.980782214479348, 28.877078928263522 ], [ -81.980912347421651, 28.877161476871898 ], [ -81.981035011426599, 28.877238392124625 ], [ -81.981140942357072, 28.877292509145104 ], [ -81.981262514777654, 28.877347711038027 ], [ -81.981406048146482, 28.877395776863732 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Westmoreland Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979758242505312, 28.872484960636896 ], [ -81.979749010629945, 28.872609206325009 ], [ -81.979733632842198, 28.872792872223332 ], [ -81.97969369805945, 28.873006246313995 ], [ -81.979639963373927, 28.873172350260432 ], [ -81.979578553567279, 28.873369513875158 ], [ -81.979541701610771, 28.873516713500813 ], [ -81.979537088140859, 28.873570733651327 ], [ -81.979543214183991, 28.873622053047683 ], [ -81.979564439212055, 28.873667071264883 ], [ -81.97960621820323, 28.873714176030035 ], [ -81.97964292294715, 28.873735512053205 ], [ -81.979692015279326, 28.873755776207428 ], [ -81.980073684870447, 28.87384733069706 ], [ -81.980176548448213, 28.8738717243927 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "James Island Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979758242505312, 28.872484960636896 ], [ -81.97983975707848, 28.872478273348484 ], [ -81.979951565203478, 28.872466083800894 ], [ -81.980184740216885, 28.872426482191926 ], [ -81.980444089306459, 28.872367569316349 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "James Island Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980444089306459, 28.872367569316349 ], [ -81.980726796754041, 28.872287260297373 ], [ -81.980952327321958, 28.872207194293924 ], [ -81.981114553079081, 28.87214453342904 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Summerville Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980176548448213, 28.8738717243927 ], [ -81.980324219108155, 28.873389884136483 ], [ -81.980403288392907, 28.873088274922782 ], [ -81.980441210104274, 28.8728878592004 ], [ -81.980460893635012, 28.87274976465045 ], [ -81.980467057091332, 28.872617415789119 ], [ -81.980462476022566, 28.872498571925348 ], [ -81.980456350887934, 28.872429693750721 ], [ -81.980444089306459, 28.872367569316349 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Port Royal Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980872854208428, 28.874059880986923 ], [ -81.981022291544562, 28.873570953545801 ], [ -81.981115947349309, 28.873229287362726 ], [ -81.981161975054931, 28.872985250762973 ], [ -81.981186225985226, 28.872794112181072 ], [ -81.981199928572295, 28.872608819028166 ], [ -81.981193121055938, 28.872457211360569 ], [ -81.981155270682109, 28.872278098031373 ], [ -81.981114553079081, 28.87214453342904 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Red Hill Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976831717430997, 28.892432121064214 ], [ -81.976834999227265, 28.89239180235478 ], [ -81.976861234613267, 28.892144127330333 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976724492969666, 28.893487649959447 ], [ -81.976695781147512, 28.893480424758074 ], [ -81.976452950324656, 28.893428343904301 ], [ -81.976264175663545, 28.89339745640865 ], [ -81.97602645382625, 28.893369415668641 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97602645382625, 28.893369415668641 ], [ -81.975941366514448, 28.893365081090277 ], [ -81.975769558276639, 28.893357849742745 ], [ -81.975565690152678, 28.893354609516038 ], [ -81.975309761070051, 28.893366405239316 ], [ -81.975028309891002, 28.893396593613126 ], [ -81.974783568453276, 28.893447027807266 ], [ -81.974570499114137, 28.893506320942272 ], [ -81.974376309531792, 28.893560870354491 ], [ -81.974157843252556, 28.893629655801877 ], [ -81.973977364896271, 28.893703162798868 ], [ -81.973834178853636, 28.893767250518827 ], [ -81.973641058585429, 28.893842755893669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rockville Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973947894133502, 28.893222774411672 ], [ -81.97398012552722, 28.893209717180355 ], [ -81.974342198734462, 28.893092089242785 ], [ -81.974511330096021, 28.89305089726718 ], [ -81.974676602534672, 28.893016368736529 ], [ -81.974905692555538, 28.892971771485225 ], [ -81.975093871429053, 28.892947328131505 ], [ -81.975403133437055, 28.892925784253361 ], [ -81.975633851139989, 28.892920065265827 ], [ -81.975877327569265, 28.89292301928614 ], [ -81.976069096895827, 28.892937423742577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carlton Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97602645382625, 28.893369415668641 ], [ -81.976051051987568, 28.893134701182518 ], [ -81.976069096895827, 28.892937423742577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Smyrna Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973770206918218, 28.892604355663824 ], [ -81.973940392346066, 28.892552549048265 ], [ -81.974038576088219, 28.892523768507903 ], [ -81.974217427478877, 28.892474079115047 ], [ -81.974472527105419, 28.892416718251486 ], [ -81.974630941612659, 28.892385641567458 ], [ -81.974830576108161, 28.892352559421202 ], [ -81.975033480071104, 28.892328118013996 ], [ -81.975218380583158, 28.892309432350711 ], [ -81.975419645260629, 28.89230082903341 ], [ -81.975776353836466, 28.892295135583737 ], [ -81.975985794139632, 28.892303812848578 ], [ -81.976111785088676, 28.892313914087339 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Smyrna Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976111785088676, 28.892313914087339 ], [ -81.976452670092115, 28.89235451394023 ], [ -81.9764585316547, 28.892354514971515 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carlton Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976069096895827, 28.892937423742577 ], [ -81.976113380004136, 28.892492474137057 ], [ -81.976119940119588, 28.892424794684253 ], [ -81.976111785088676, 28.892313914087339 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Red Hill Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976724492969666, 28.893487649959447 ], [ -81.976771032178178, 28.893065708311543 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Red Hill Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976771032178178, 28.893065708311543 ], [ -81.976784387145685, 28.892918022170267 ], [ -81.976831717430997, 28.892432121064214 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valley Falls Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97869509561815, 28.894055304799839 ], [ -81.978724556697316, 28.894010670010605 ], [ -81.978868591073223, 28.893822054433631 ], [ -81.978901337473161, 28.893725579385958 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pelion Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976771032178178, 28.893065708311543 ], [ -81.976897021856644, 28.893085889310552 ], [ -81.977238981491439, 28.893189628502952 ], [ -81.977535124977109, 28.893304877901048 ], [ -81.977765818924894, 28.893402835837641 ], [ -81.97802432921803, 28.893512318516603 ], [ -81.97831556797297, 28.893610286346103 ], [ -81.978493913569281, 28.893659273035716 ], [ -81.978650991157821, 28.89369529906876 ], [ -81.978772070011132, 28.893724118855271 ], [ -81.978901337473161, 28.893725579385958 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969090014017993, 28.886247795484657 ], [ -81.969130274768517, 28.886326391553059 ], [ -81.969189581077245, 28.886481188582479 ], [ -81.969237612678725, 28.886599527337463 ], [ -81.969273380042949, 28.886726542494028 ], [ -81.96930696834788, 28.886889844066523 ], [ -81.969322830041506, 28.887026905373471 ], [ -81.969350571770988, 28.88727603152963 ], [ -81.969363599053708, 28.88748483410183 ], [ -81.969386417040383, 28.887781478770862 ], [ -81.969399179015085, 28.888225333270704 ], [ -81.969396027448667, 28.888481317922505 ], [ -81.969391016593789, 28.88882547584581 ], [ -81.969379497352051, 28.889048673476633 ], [ -81.969353209846048, 28.889411546534024 ], [ -81.969312175711551, 28.889850736364032 ], [ -81.96924003700471, 28.890330239208943 ], [ -81.96915749778266, 28.890821804244037 ], [ -81.969119642680752, 28.891007136110268 ], [ -81.968977935486279, 28.891581064634771 ], [ -81.968892576498533, 28.891895759002992 ], [ -81.968822922980507, 28.892184455375922 ], [ -81.968784405529405, 28.892461256715272 ], [ -81.968765274999328, 28.892653555843747 ], [ -81.968740856113328, 28.892943582738656 ], [ -81.968740994722594, 28.893159832478904 ], [ -81.968745158513812, 28.893342624969375 ], [ -81.968776025526154, 28.893673543414309 ], [ -81.9688069140403, 28.89393049220676 ], [ -81.96883119262553, 28.894105685673171 ], [ -81.968846636407704, 28.894236106768631 ], [ -81.968839980673721, 28.894302288005704 ], [ -81.968814200376912, 28.894360079722126 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969109611355464, 28.894295650841975 ], [ -81.969072243334622, 28.894253678970159 ], [ -81.9690412948746, 28.89420111466919 ], [ -81.969021402881538, 28.894146607558319 ], [ -81.96899530362451, 28.894068511087696 ], [ -81.968975958756545, 28.894005212086562 ], [ -81.968951091625712, 28.893907830135149 ], [ -81.968931771411306, 28.89375932876537 ], [ -81.96889866042352, 28.893486669536411 ], [ -81.968887656552283, 28.893287047574148 ], [ -81.968887712707513, 28.893097166695572 ], [ -81.968885028285612, 28.892822079187933 ], [ -81.968923867607131, 28.892449626892315 ], [ -81.968973745193765, 28.892164816620273 ], [ -81.969090064423582, 28.891699873834714 ], [ -81.969189757870936, 28.891327435418244 ], [ -81.969331574193006, 28.890639858349967 ], [ -81.969416816147245, 28.890109959582336 ], [ -81.96947535684717, 28.889661851778818 ], [ -81.96951035295568, 28.889189823093332 ], [ -81.969531750490916, 28.888760709198198 ], [ -81.969535153884777, 28.888317191369428 ], [ -81.96953195986417, 28.888050790912363 ], [ -81.969528760337468, 28.887803111376734 ], [ -81.969497392172173, 28.887392899420746 ], [ -81.969479669461919, 28.887120245382377 ], [ -81.969437408206232, 28.886874293840624 ], [ -81.969390025110343, 28.886652523670463 ], [ -81.969330307617852, 28.886462087562034 ], [ -81.969259236502253, 28.886293933844705 ], [ -81.969217811320689, 28.886207412638814 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yemassee Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967871572824691, 28.881626575963171 ], [ -81.968323102210078, 28.881741883807546 ], [ -81.968565430123476, 28.881808000121474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cordova Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968753699737121, 28.881194613574454 ], [ -81.968748227166969, 28.881212145821859 ], [ -81.968606103137972, 28.881683431598908 ], [ -81.968565430123476, 28.881808000121474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blackville Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971414578483973, 28.88228815784213 ], [ -81.971414555331449, 28.882368077375983 ], [ -81.97141778007834, 28.882466153709316 ], [ -81.971429292621238, 28.88266001019166 ], [ -81.971442768314645, 28.882743172762023 ], [ -81.971470960093171, 28.882854417177345 ], [ -81.971483222707832, 28.882886820524174 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Le Carpe Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969456325094598, 28.881369072139162 ], [ -81.969538626745361, 28.881392426183112 ], [ -81.969851510457147, 28.881465936122872 ], [ -81.970056420629746, 28.881503782160205 ], [ -81.970288326407513, 28.881543793078997 ], [ -81.970577903913977, 28.881583818073324 ], [ -81.970802453127405, 28.881606546517293 ], [ -81.971046636594949, 28.881626039567379 ], [ -81.971355856943461, 28.88164446603481 ], [ -81.971435614102006, 28.881655281799738 ], [ -81.971534999503405, 28.881676904040503 ], [ -81.971593894356303, 28.881698517632419 ], [ -81.971666281015658, 28.881737412221849 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blackville Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971666281015658, 28.881737412221849 ], [ -81.97159507798176, 28.881852956700076 ], [ -81.971527559338568, 28.881960943342403 ], [ -81.971461260279966, 28.882088367585492 ], [ -81.971439155023631, 28.882152083401195 ], [ -81.97142318561373, 28.882219039783028 ], [ -81.971414578483973, 28.88228815784213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parksville Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97154161542899, 28.884386501727398 ], [ -81.97164288851738, 28.884420360387722 ], [ -81.971706264140821, 28.884437987602485 ], [ -81.971793175330404, 28.884456274813871 ], [ -81.971939757611594, 28.884479141023064 ], [ -81.972131440931619, 28.884498372968398 ], [ -81.972281625370513, 28.884508065959078 ], [ -81.972425192252729, 28.884521056233464 ], [ -81.972554035558247, 28.884536202546229 ], [ -81.972721975148701, 28.884567377056769 ], [ -81.972850980896297, 28.884596742481275 ], [ -81.972929510447358, 28.884618358556569 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridge Spring Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97154161542899, 28.884386501727398 ], [ -81.971509697960968, 28.884437255698199 ], [ -81.97148514402015, 28.884475049672982 ], [ -81.971447093435401, 28.884519321094569 ], [ -81.971408246819706, 28.884561463807056 ], [ -81.971362218432162, 28.884604113871429 ], [ -81.971299622573639, 28.884650539209741 ], [ -81.971210024827286, 28.884711000329887 ], [ -81.971086065229841, 28.884788733948341 ], [ -81.970962105752321, 28.884865386495143 ], [ -81.970909331568336, 28.884895614767508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blackville Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971483222707832, 28.882886820524174 ], [ -81.971545771621663, 28.882999154086683 ], [ -81.971603416296034, 28.883107165458597 ], [ -81.971635301532956, 28.883179532260062 ], [ -81.97164756083842, 28.883220575124163 ], [ -81.971659816891787, 28.883273498586664 ], [ -81.971670841621972, 28.883349101128836 ], [ -81.971675713685499, 28.883478700585343 ], [ -81.97166708352087, 28.883624499807858 ], [ -81.971659679474286, 28.883770298383642 ], [ -81.971648493127589, 28.883954525161773 ], [ -81.971639087116884, 28.884095456293423 ], [ -81.971615292709032, 28.884205077233016 ], [ -81.971596868780637, 28.88426447451857 ], [ -81.971575994781034, 28.884311988878274 ], [ -81.97154161542899, 28.884386501727398 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pilar Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973790846742389, 28.880192119933469 ], [ -81.973859638677411, 28.879888295010421 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pilar Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973859638677411, 28.879888295010421 ], [ -81.973885838926805, 28.879794699851725 ], [ -81.973989021930279, 28.879362720404625 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pilar Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973989021930279, 28.879362720404625 ], [ -81.974088556351148, 28.878935728971438 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eldra Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973989021930279, 28.879362720404625 ], [ -81.973863906521458, 28.879333814277125 ], [ -81.973708834826496, 28.879313711330614 ], [ -81.973606194994318, 28.879309363710835 ], [ -81.973514572665493, 28.879316546901105 ], [ -81.973386954680535, 28.879336681742537 ], [ -81.973056457687449, 28.879384136318755 ], [ -81.972441269018404, 28.879479049758562 ], [ -81.97237643743884, 28.879492176631505 ], [ -81.972354138559751, 28.879502119910224 ], [ -81.972327347567955, 28.879519166981712 ], [ -81.97230280002556, 28.879546161485923 ], [ -81.972288065914185, 28.879578558290991 ], [ -81.97228191421658, 28.879634717181158 ], [ -81.972276520853555, 28.879791145408042 ], [ -81.97227201749665, 28.879939274444304 ], [ -81.972270770198904, 28.880010553312516 ], [ -81.972280579507029, 28.880042956092755 ], [ -81.972297750652729, 28.880063479787964 ], [ -81.972324742608023, 28.880085085564467 ], [ -81.972351731341831, 28.880103451169543 ], [ -81.97238854173149, 28.88011209829725 ], [ -81.972448668163523, 28.880106711298769 ], [ -81.972686948537742, 28.880072245232192 ], [ -81.973435003286468, 28.879955975247356 ], [ -81.973782738026415, 28.879908439208467 ], [ -81.973859638677411, 28.879888295010421 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quincy Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96912045725324, 28.879721221072813 ], [ -81.969272419174871, 28.8793419075825 ], [ -81.969470417160636, 28.878877552517018 ], [ -81.969660741468346, 28.878422645198771 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quincy Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969660741468346, 28.878422645198771 ], [ -81.969778928036192, 28.878141872830913 ], [ -81.969917056874138, 28.877840854460011 ], [ -81.970039835252777, 28.87758303201705 ], [ -81.970194824990031, 28.8773144178653 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kenya Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968608850161402, 28.877454455084795 ], [ -81.968636495894287, 28.877330261485927 ], [ -81.968682583691773, 28.877084572705378 ], [ -81.968710265600421, 28.876840229451044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enola Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968529778960459, 28.875201287932782 ], [ -81.968923996805032, 28.875056928468009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kenya Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968710265600421, 28.876840229451044 ], [ -81.968724107014737, 28.876714681855162 ], [ -81.968736459710328, 28.876447384951579 ], [ -81.968731952407893, 28.876131484306946 ], [ -81.968718217275168, 28.875906030976189 ], [ -81.96867690814635, 28.87556987044438 ], [ -81.968650883076606, 28.875405166229779 ], [ -81.968629437117329, 28.875318761260814 ], [ -81.968611047283972, 28.875268806406048 ], [ -81.968591117944527, 28.87524180214912 ], [ -81.968529778960459, 28.875201287932782 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enola Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967972969221179, 28.875387455395916 ], [ -81.968180048702038, 28.875317303756862 ], [ -81.968529778960459, 28.875201287932782 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enola Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967641641486551, 28.875507526450811 ], [ -81.96773214087078, 28.875479197913492 ], [ -81.967972969221179, 28.875387455395916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lenore Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967710293669469, 28.876673941796493 ], [ -81.968050774432243, 28.876729373243201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Othello Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968050774432243, 28.876729373243201 ], [ -81.96805698699508, 28.876479624717586 ], [ -81.968058593330397, 28.87624742666716 ], [ -81.968041803526546, 28.875982822555429 ], [ -81.968032631848644, 28.875882919275146 ], [ -81.968014276854021, 28.875720915559732 ], [ -81.967974472703801, 28.875484656266345 ], [ -81.967972969221179, 28.875387455395916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lenore Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968050774432243, 28.876729373243201 ], [ -81.968185740944804, 28.87675100553318 ], [ -81.968503217182274, 28.876799680256514 ], [ -81.968710265600421, 28.876840229451044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Goliath Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967783511946564, 28.877969958336774 ], [ -81.967950688218352, 28.877994299181463 ], [ -81.968157740252536, 28.878026748353516 ], [ -81.968480450353908, 28.878086456812387 ], [ -81.968751283389039, 28.878145687735319 ], [ -81.968965996589347, 28.878206488678465 ], [ -81.969288065454791, 28.87830241164799 ], [ -81.969660741468346, 28.878422645198771 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Endicott Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967501109582656, 28.878558490604071 ], [ -81.968149822065456, 28.87872889974399 ], [ -81.968696399324045, 28.878872726313233 ], [ -81.968776762500411, 28.878875137951873 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baisley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96912045725324, 28.879721221072813 ], [ -81.969014284977519, 28.879694773578869 ], [ -81.968814514421922, 28.879644535836139 ], [ -81.968488205035783, 28.879558171543877 ], [ -81.96814962663457, 28.879469893375138 ], [ -81.967921106288884, 28.879413140076664 ], [ -81.967704856742202, 28.879355037697579 ], [ -81.967461001689486, 28.879284779686653 ], [ -81.967390946236549, 28.879252978192604 ], [ -81.967332190829566, 28.879192948197218 ], [ -81.967307661958657, 28.879153792250175 ], [ -81.967286204388415, 28.879105188143392 ], [ -81.967275483298749, 28.879056584847969 ], [ -81.96727550183418, 28.87900123585683 ], [ -81.96728778430257, 28.878962087978259 ], [ -81.967324617833071, 28.878885146854312 ], [ -81.967387540487465, 28.878769062091568 ], [ -81.967452001653768, 28.878643527863641 ], [ -81.967501109582656, 28.878558490604071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orwell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97098225050209, 28.872538616720171 ], [ -81.971028701316172, 28.872561346745972 ], [ -81.97123230801887, 28.872680113764954 ], [ -81.971346012545467, 28.872749974533896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Violet Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97380397917992, 28.874549573958969 ], [ -81.973851208248618, 28.874286333739818 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Violet Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973851208248618, 28.874286333739818 ], [ -81.973865128761702, 28.874203246128573 ], [ -81.973942204173866, 28.873807439080121 ], [ -81.973975588167463, 28.873704171629594 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Violet Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973975588167463, 28.873704171629594 ], [ -81.974057326193716, 28.8734378990472 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anita Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974832729535621, 28.876946526887771 ], [ -81.974932451547275, 28.876833146061198 ], [ -81.975018369966378, 28.876723812117117 ], [ -81.975081276311869, 28.876638772834291 ], [ -81.975147251279992, 28.876538884903674 ], [ -81.975219370396161, 28.876410648643848 ], [ -81.975283821964339, 28.876275660805437 ], [ -81.975334463392343, 28.87615552048085 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Davit Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97487103426154, 28.871481870880807 ], [ -81.974922349523339, 28.871525440969688 ], [ -81.975099893691123, 28.871670239550415 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Davit Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974198264096785, 28.870922843084596 ], [ -81.974345476269747, 28.871018046259543 ], [ -81.974629530812905, 28.871262112819274 ], [ -81.974795135496919, 28.871404907335137 ], [ -81.97487103426154, 28.871481870880807 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Indale Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977703007031153, 28.870753555167063 ], [ -81.977757220904735, 28.870773872317834 ], [ -81.977899911727192, 28.870829468788155 ], [ -81.97794523600723, 28.870845996527542 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seneca Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97657152654503, 28.870044613800236 ], [ -81.976674214081569, 28.869948167407919 ], [ -81.976823052439983, 28.869813145549315 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Indale Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97657152654503, 28.870044613800236 ], [ -81.976674173829778, 28.87012586335327 ], [ -81.976933679164887, 28.87032289548873 ], [ -81.977087080150369, 28.870423446499856 ], [ -81.977215107499603, 28.870497592536857 ], [ -81.977347751381643, 28.870569708148665 ], [ -81.977490651686168, 28.870644793028486 ], [ -81.977703007031153, 28.870753555167063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seneca Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976078857046033, 28.870487239882614 ], [ -81.976374230411622, 28.870211104580104 ], [ -81.97657152654503, 28.870044613800236 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seneca Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975755791879124, 28.870784694544156 ], [ -81.975990017253679, 28.870561349078997 ], [ -81.976078857046033, 28.870487239882614 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cordelia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967067763074184, 28.867873872068518 ], [ -81.967139278323273, 28.867880998847738 ], [ -81.96736766559809, 28.867914560711792 ], [ -81.967539529287137, 28.867953188494322 ], [ -81.967687167270427, 28.867997901675125 ], [ -81.967757496766836, 28.868021152000029 ], [ -81.967764917472323, 28.868023217350544 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "English Ivy Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985032799674528, 28.872003676975769 ], [ -81.985053979171013, 28.871841625760752 ], [ -81.985073314134212, 28.871744947076895 ], [ -81.985107383296963, 28.871601310583525 ], [ -81.985121636008884, 28.871482175709737 ], [ -81.985119294233698, 28.871345006458732 ], [ -81.985109868976835, 28.871216151136032 ], [ -81.985090999584003, 28.871081056232644 ], [ -81.985058269207272, 28.870889589296596 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alandari Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985759239852442, 28.870751198557517 ], [ -81.985711407111822, 28.870573409070289 ], [ -81.985551598288936, 28.870124456385351 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thornberry Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989871021350964, 28.870764517570706 ], [ -81.989786972517578, 28.870661877773589 ], [ -81.989724618200754, 28.870552080730562 ], [ -81.989628988392667, 28.870379913875528 ], [ -81.989471447231992, 28.870085162376498 ], [ -81.989424185168446, 28.869989801425849 ], [ -81.989390710085786, 28.86990657934048 ], [ -81.989365113895616, 28.869821622747686 ], [ -81.989339523239906, 28.8696846546889 ], [ -81.989339683062539, 28.869549594355039 ], [ -81.98933969112862, 28.869473216196329 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tallowtree Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98860487510342, 28.869473075842514 ], [ -81.989186751716204, 28.869474055614656 ], [ -81.98933969112862, 28.869473216196329 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blueberry Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987219031156343, 28.871439753167035 ], [ -81.987465768512976, 28.871571048156341 ], [ -81.987677256314257, 28.871690409184925 ], [ -81.987750466416117, 28.871719056839581 ], [ -81.987801984535963, 28.871723835654972 ], [ -81.987877910325537, 28.871716681013393 ], [ -81.987937568237754, 28.871690433931352 ], [ -81.987997228204819, 28.87163792890669 ], [ -81.988395876032158, 28.871253689701536 ], [ -81.988764688832532, 28.87089092790394 ], [ -81.988829777611286, 28.870802622286657 ], [ -81.98886503737107, 28.870716700733361 ], [ -81.988881316044015, 28.870628390089923 ], [ -81.988881327069834, 28.870528144223918 ], [ -81.988856932895445, 28.87043983107576 ], [ -81.988810846239645, 28.870341968829681 ], [ -81.988743073932923, 28.870210687937973 ], [ -81.988688857609858, 28.870067476107174 ], [ -81.988656332739055, 28.869952906106747 ], [ -81.988628467682148, 28.869849302184949 ], [ -81.988610753654541, 28.869729670612426 ], [ -81.988606828776582, 28.869601373595458 ], [ -81.98860487510342, 28.869473075842514 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Persimmon Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987219031156343, 28.871439753167035 ], [ -81.987704460536932, 28.870967213197229 ], [ -81.987931109537939, 28.870740390456067 ], [ -81.987983786079667, 28.870671273397743 ], [ -81.988011880932731, 28.870605165091312 ], [ -81.988033558353294, 28.870516744954337 ], [ -81.988037507940604, 28.870430056544539 ], [ -81.988025699310555, 28.870350303622537 ], [ -81.988002073279162, 28.87026534695427 ], [ -81.987974509171437, 28.870187327733451 ], [ -81.987946943472892, 28.870097169822461 ], [ -81.987925287949182, 28.870010479089451 ], [ -81.987907576954271, 28.869889115006032 ], [ -81.987891833525211, 28.869755614217603 ], [ -81.987887913658852, 28.869601310097192 ], [ -81.987887477793507, 28.86947439480085 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Persimmon Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9886100705085, 28.867065606456542 ], [ -81.988647561345459, 28.867065264981466 ], [ -81.98913167990105, 28.867066675126214 ], [ -81.989188795821221, 28.867078814863405 ], [ -81.989227121233085, 28.867095908505611 ], [ -81.989271514573602, 28.867125633973473 ], [ -81.989301055138952, 28.867155110098345 ], [ -81.989320746693807, 28.867198454732478 ], [ -81.989335286750133, 28.867238585847502 ], [ -81.989342873033493, 28.867510859233082 ], [ -81.989338890033395, 28.868245512534109 ], [ -81.989338827186103, 28.868840593290027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Persimmon Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987884819702671, 28.868840468800336 ], [ -81.987882348924714, 28.868269107568629 ], [ -81.987882442227374, 28.867496984009168 ], [ -81.987888854052002, 28.867220869808641 ], [ -81.987920376364201, 28.867149790106545 ], [ -81.987969622984082, 28.867101249736027 ], [ -81.988038559532427, 28.86707004797741 ], [ -81.988142949894808, 28.867057921335672 ], [ -81.9886100705085, 28.867065606456542 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Day Lily Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99269651114858, 28.866829373596335 ], [ -81.992893334487007, 28.866830671926667 ], [ -81.992974415781916, 28.866846930364847 ], [ -81.993034814986373, 28.866876983884978 ], [ -81.993084706679682, 28.866934778149659 ], [ -81.993108338135059, 28.86699025842168 ], [ -81.993113584098182, 28.867066544849468 ], [ -81.993136973401562, 28.867776505509234 ], [ -81.993144795622172, 28.868514923026332 ], [ -81.993142429307525, 28.868595977712779 ], [ -81.99313297882081, 28.86866248238864 ], [ -81.993109364832691, 28.868718595399027 ], [ -81.993071583088877, 28.868780941674601 ], [ -81.993008428175145, 28.868856474661182 ], [ -81.992852510753295, 28.868972821922245 ], [ -81.992438982563556, 28.869235347478373 ], [ -81.992140546902817, 28.869425808080642 ], [ -81.992085888120286, 28.869469899475188 ], [ -81.992042598759099, 28.869520634287927 ], [ -81.991991663440217, 28.869596497767123 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dalton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007832052112278, 28.959015808514025 ], [ -82.007864647374689, 28.959046765238014 ], [ -82.007880293195996, 28.95907886789513 ], [ -82.007883369380906, 28.959113281108049 ], [ -82.007881603622707, 28.959154541172055 ], [ -82.00787508779284, 28.95921057922034 ], [ -82.007872485409251, 28.959273783950756 ], [ -82.007869294217244, 28.959309547334833 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dalton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005030395603484, 28.958285571105169 ], [ -82.005156852713142, 28.95825804868851 ], [ -82.005353705296045, 28.958214473663627 ], [ -82.005407156344418, 28.958215616723592 ], [ -82.005450178448257, 28.958230521894176 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dalton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007198913499877, 28.959124981868541 ], [ -82.007162562818138, 28.959131378216988 ], [ -82.007090902039494, 28.959148768908676 ], [ -82.007025078246414, 28.959156878311997 ], [ -82.006958591608637, 28.959163762403769 ], [ -82.006915570050765, 28.959167203101121 ], [ -82.006854295562334, 28.959163766486228 ], [ -82.006809970351952, 28.959155742700901 ], [ -82.006740874156478, 28.959136253741331 ], [ -82.006654828913398, 28.959107594638823 ], [ -82.006512723469129, 28.959064031256482 ], [ -82.006362797347279, 28.959019321253944 ], [ -82.0062363379608, 28.958980344141409 ], [ -82.006124218518082, 28.958947097661731 ], [ -82.006056427519866, 28.95892646418968 ], [ -82.005997761421952, 28.958909268038482 ], [ -82.005940396110034, 28.958889776380143 ], [ -82.005881728603896, 28.958864555200751 ], [ -82.005834794527516, 28.958834745378351 ], [ -82.005789164206433, 28.958800352751119 ], [ -82.005757874392515, 28.95876480822254 ], [ -82.005720064251079, 28.958718947143446 ], [ -82.005664003242657, 28.958642131854631 ], [ -82.005596206709356, 28.958545822987134 ], [ -82.005541446768618, 28.958469004888602 ], [ -82.005493208071812, 28.95839906468979 ], [ -82.005463220744957, 28.958349762807323 ], [ -82.005443664759099, 28.95831422047446 ], [ -82.005439750719304, 28.958269505772162 ], [ -82.005450178448257, 28.958230521894176 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dalton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005450178448257, 28.958230521894176 ], [ -82.005465821754498, 28.958207588680878 ], [ -82.005506234037369, 28.958183509534734 ], [ -82.005563594953017, 28.958165162895412 ], [ -82.005730463129609, 28.95811700029828 ], [ -82.005863436318108, 28.958065399320759 ], [ -82.006006837139424, 28.957998892834162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrollton Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006006837139424, 28.957998892834162 ], [ -82.006077240708308, 28.958097495018446 ], [ -82.006125479342344, 28.958161700047455 ], [ -82.006163287534889, 28.958209854640877 ], [ -82.006194579180871, 28.958241955934731 ], [ -82.006231084821835, 28.958277499239347 ], [ -82.006283233127789, 28.958317626401413 ], [ -82.006344508166578, 28.958357753145307 ], [ -82.006410998829395, 28.958393295089465 ], [ -82.006480095964733, 28.958420809199403 ], [ -82.006543975928963, 28.958442591253043 ], [ -82.006598731750131, 28.95845520099936 ], [ -82.006657397347368, 28.958466663731741 ], [ -82.00672258255554, 28.958474688406596 ], [ -82.006820358317782, 28.958478122464356 ], [ -82.006910312513455, 28.958483850449458 ], [ -82.006983318225537, 28.95848843328519 ], [ -82.007057628858206, 28.958491869205371 ], [ -82.007137155267813, 28.958494158916654 ], [ -82.007254478040892, 28.958511168465325 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dalton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007921230837397, 28.958291174488394 ], [ -82.007939484066767, 28.958317544742172 ], [ -82.007944701895781, 28.95834506162721 ], [ -82.007939726692541, 28.958409634372035 ], [ -82.007933481039004, 28.958483715530882 ], [ -82.007926465319755, 28.958577816767558 ], [ -82.007914739644562, 28.958687888816328 ], [ -82.007905622075285, 28.958786491695754 ], [ -82.00789832504357, 28.958864105376666 ], [ -82.007890513134086, 28.958943861123799 ], [ -82.007875072054091, 28.95897682357031 ], [ -82.007856822088854, 28.958997464481708 ], [ -82.007832052112278, 28.959015808514025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dalton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007832052112278, 28.959015808514025 ], [ -82.007789031457321, 28.959030716708163 ], [ -82.00773355327469, 28.959037600584001 ], [ -82.007657940246389, 28.959047922340016 ], [ -82.007564076062323, 28.959062833166513 ], [ -82.007434433709619, 28.95908462485 ], [ -82.00733723633563, 28.959101827510018 ], [ -82.007261401739569, 28.959113987923789 ], [ -82.007198913499877, 28.959124981868541 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dalton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007982484829895, 28.958019435258432 ], [ -82.007979880228575, 28.958079057003623 ], [ -82.007975973302294, 28.958132944760123 ], [ -82.007967282274848, 28.958184309073914 ], [ -82.007956425781686, 28.95823957862352 ], [ -82.007921230837397, 28.958291174488394 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dalton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007336154366882, 28.958028625303214 ], [ -82.007398439181713, 28.958053862809319 ], [ -82.007485788417227, 28.958092842683406 ], [ -82.007575744684885, 28.958132967370513 ], [ -82.007682649952216, 28.958181117873306 ], [ -82.007789554129701, 28.958226973764148 ], [ -82.007892548412158, 28.958270537965472 ], [ -82.007921230837397, 28.958291174488394 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dalton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006006837139424, 28.957998892834162 ], [ -82.006051161019187, 28.957973665648669 ], [ -82.006121968448639, 28.957934516790516 ], [ -82.006195060238369, 28.957889479445047 ], [ -82.006266734218656, 28.957845952556308 ], [ -82.006345803428317, 28.957791618564166 ], [ -82.006437229583355, 28.957732936739134 ], [ -82.006544712587996, 28.957660129660681 ], [ -82.006601543445399, 28.957621009149364 ], [ -82.006660846868769, 28.957584061217815 ], [ -82.006793500666092, 28.957495516820128 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dalton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006793500666092, 28.957495516820128 ], [ -82.006915363954988, 28.957642726189448 ], [ -82.006979614992304, 28.957714439919563 ], [ -82.007061163533209, 28.957806798099686 ], [ -82.007152597776141, 28.957894810304158 ], [ -82.007231563585066, 28.957959854345372 ], [ -82.007301963767617, 28.958005713355398 ], [ -82.007336154366882, 28.958028625303214 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Richmond Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008004378257965, 28.955911470245766 ], [ -82.008047857085046, 28.955992857209374 ], [ -82.008108084994035, 28.956102155596906 ], [ -82.008171389127156, 28.956217039866257 ], [ -82.00824007912594, 28.95634140056033 ], [ -82.008312630518063, 28.95647520256971 ], [ -82.008363992492846, 28.956564063546644 ], [ -82.008398586285765, 28.956630326699649 ], [ -82.008428691654984, 28.956682154348041 ], [ -82.008475512488161, 28.956749565374114 ], [ -82.008532877417338, 28.95681262309888 ], [ -82.008596761671413, 28.956869947245991 ], [ -82.008676454210601, 28.956925291675169 ], [ -82.008848839946168, 28.957035431891317 ], [ -82.008952542219447, 28.957101752838501 ], [ -82.009041191282932, 28.957155569807938 ], [ -82.009125008354175, 28.95720942943661 ], [ -82.009199152646474, 28.957257620543309 ], [ -82.009270073319783, 28.957302977722311 ], [ -82.009343106407414, 28.95734808659428 ], [ -82.009440927368502, 28.957410698228703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Richmond Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009440927368502, 28.957410698228703 ], [ -82.009695599681052, 28.957575113686556 ], [ -82.009776193716462, 28.957626139028967 ], [ -82.009839517211262, 28.957663738529028 ], [ -82.009902061380913, 28.957704987821682 ], [ -82.009966667690605, 28.957746007757564 ], [ -82.010016497275927, 28.957772060601016 ], [ -82.010067674734287, 28.957795746619922 ], [ -82.010131907777591, 28.957815321746633 ], [ -82.010205003280376, 28.957829068303223 ], [ -82.010277765179367, 28.957840738672228 ], [ -82.010388195285273, 28.95784428380728 ], [ -82.010529894094745, 28.957842294571996 ], [ -82.010710669479678, 28.957840751562561 ], [ -82.010914760227465, 28.957840690772962 ], [ -82.011150540097759, 28.957833464776453 ], [ -82.011255805289721, 28.957832987194749 ], [ -82.011362181907216, 28.957835814533489 ], [ -82.011445940997859, 28.957839166060204 ], [ -82.011531115141693, 28.957845273918174 ], [ -82.011623242991703, 28.957860553838781 ], [ -82.011737967751614, 28.957883475115914 ], [ -82.011823144482534, 28.957903341827087 ], [ -82.011913412575723, 28.957929324683615 ], [ -82.011989447637063, 28.957951937737942 ], [ -82.012098534065231, 28.957983908267508 ], [ -82.012222435509443, 28.958020614444731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roanoke Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012145632279768, 28.956990545594504 ], [ -82.012239185509912, 28.956960824998379 ], [ -82.012374317285719, 28.956905956516128 ], [ -82.012499053334395, 28.956860233549509 ], [ -82.01255776710434, 28.956847057545907 ], [ -82.012595616058732, 28.956845238733241 ], [ -82.012617292673781, 28.956845312572241 ], [ -82.012643615006567, 28.956848487163171 ], [ -82.012699357617734, 28.956860737033505 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roanoke Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012699357617734, 28.956860737033505 ], [ -82.012712775491906, 28.956851204911139 ], [ -82.012733419924473, 28.956841670324984 ], [ -82.012754062785618, 28.956836221310922 ], [ -82.012770578703282, 28.956833496688194 ], [ -82.012788126908333, 28.956832586476871 ], [ -82.012800513784811, 28.956832188335106 ], [ -82.01282064238066, 28.956833037351341 ], [ -82.01470176583355, 28.956838223024192 ], [ -82.014835717671488, 28.956837349818809 ], [ -82.014853114278893, 28.956838282735479 ], [ -82.014869114987647, 28.956841912747855 ], [ -82.014886146807342, 28.956845995598172 ], [ -82.014902664123397, 28.956853712028465 ], [ -82.014918148532431, 28.95686278832051 ], [ -82.014932085151116, 28.956874134941902 ], [ -82.01494240907337, 28.956882304080256 ], [ -82.014949635878509, 28.956891382158226 ], [ -82.014955315410589, 28.956899097942383 ], [ -82.014962024965058, 28.956906813615451 ], [ -82.014966992601487, 28.956915171004827 ], [ -82.014972273128706, 28.956923420987646 ], [ -82.014976479471926, 28.956931323703841 ], [ -82.014980873848458, 28.956941297158089 ], [ -82.014984003171477, 28.956950576886566 ], [ -82.015015346330713, 28.95704803990925 ], [ -82.01507092318657, 28.957250222023106 ], [ -82.015072025493438, 28.957268119752392 ], [ -82.015073127664365, 28.957285049323179 ], [ -82.015072581174664, 28.957309233494144 ], [ -82.015066535674578, 28.957332936437759 ], [ -82.015060487031178, 28.957348898625035 ], [ -82.015052238740495, 28.957364378324442 ], [ -82.015040691834827, 28.957377924770231 ], [ -82.015029693251364, 28.957387599424152 ], [ -82.015017594876866, 28.957397275098273 ], [ -82.015002746959269, 28.957406467440016 ], [ -82.014985148472121, 28.957415176448553 ], [ -82.014968099606264, 28.957421949981004 ], [ -82.014949400783834, 28.957426788274066 ], [ -82.014924101792417, 28.95742872550472 ], [ -82.014887578950166, 28.957428851229889 ], [ -82.012815088955278, 28.957426233022677 ], [ -82.012810400487297, 28.957426234354699 ], [ -82.012805708900416, 28.957425890109349 ], [ -82.01280121223904, 28.957425546748222 ], [ -82.012796523730088, 28.957425203404533 ], [ -82.012792028053951, 28.957424517172356 ], [ -82.012787337411424, 28.957423485380328 ], [ -82.012782842761325, 28.957422799147757 ], [ -82.012778347003376, 28.957421422662332 ], [ -82.012774047237997, 28.957420392638689 ], [ -82.012769552506413, 28.957419017957452 ], [ -82.012765251674509, 28.957417644160667 ], [ -82.012761148804842, 28.9574159247681 ], [ -82.012756847932408, 28.957414207198095 ], [ -82.012752742970434, 28.957412144032514 ], [ -82.012748639034626, 28.957410081768987 ], [ -82.012744730024238, 28.957408018585323 ], [ -82.012740821014205, 28.957405957206085 ], [ -82.012737106888878, 28.957403551133726 ], [ -82.012733393789617, 28.957401145061191 ], [ -82.012729875575204, 28.957398395197835 ], [ -82.012726356335037, 28.957395645334465 ], [ -82.0127230330462, 28.957392894550892 ], [ -82.012719709757718, 28.957390145571821 ], [ -82.012716582379824, 28.957387050997291 ], [ -82.012713650953529, 28.957383958209469 ], [ -82.012710718501282, 28.957380863617065 ], [ -82.012707981960034, 28.957377427038438 ], [ -82.012705245418942, 28.95737399045974 ], [ -82.012702704829039, 28.957370552058585 ], [ -82.01270035916454, 28.957367113639712 ], [ -82.012698207399737, 28.957363677007741 ], [ -82.012696058672091, 28.957359894797911 ], [ -82.012694298769361, 28.957356114357342 ], [ -82.01269234394141, 28.957352333032144 ], [ -82.012690779989995, 28.95734855167143 ], [ -82.012689413015735, 28.957344770292838 ], [ -82.012688042923287, 28.957340645141525 ], [ -82.012686869848523, 28.957336863745315 ], [ -82.012685891658506, 28.957332738558431 ], [ -82.012684914535015, 28.957328957144419 ], [ -82.01268432824736, 28.957324831921955 ], [ -82.012683741959748, 28.95732070669952 ], [ -82.012683349571446, 28.95731658145947 ], [ -82.012683154160143, 28.957312456201539 ], [ -82.012683153714406, 28.957308673796632 ], [ -82.012676830982954, 28.956951752299808 ], [ -82.012676138401474, 28.956933594652263 ], [ -82.012676138172452, 28.956914227871568 ], [ -82.012677513457461, 28.956901518973758 ], [ -82.01268078075708, 28.956890700204678 ], [ -82.012683876067214, 28.956882981724064 ], [ -82.012686971484015, 28.95687617185072 ], [ -82.012691615929029, 28.956868455936242 ], [ -82.012699357617734, 28.956860737033505 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hampton Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008492935806217, 28.953514292185403 ], [ -82.008724163585526, 28.953508842824132 ], [ -82.008856286335103, 28.953510269315757 ], [ -82.008931318029738, 28.953504526052321 ], [ -82.009001455892616, 28.95349447912476 ], [ -82.009065069309628, 28.953474390970953 ], [ -82.009136835040849, 28.953449997428976 ], [ -82.009259165790823, 28.953392605554232 ], [ -82.009340718920086, 28.953350994634441 ], [ -82.009419008900409, 28.953312254974342 ], [ -82.009502194582524, 28.953276383326514 ], [ -82.009574854671754, 28.953240645877543 ], [ -82.009640834910442, 28.953213250531981 ], [ -82.009699555604342, 28.953193161508317 ], [ -82.009758273970732, 28.953181681225789 ], [ -82.009847985998633, 28.953178804825097 ], [ -82.009961078138815, 28.953179036920737 ], [ -82.010080693835789, 28.953179028446812 ], [ -82.010188891991163, 28.953184519256684 ], [ -82.010275341089113, 28.953185947640705 ], [ -82.010365966871859, 28.95319072045854 ], [ -82.010547580787858, 28.953202213029755 ], [ -82.010686012330964, 28.953224299736942 ], [ -82.010760252778226, 28.953259992364202 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peachtree Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004396348534655, 28.959707065964555 ], [ -82.004427941347473, 28.959729680063074 ], [ -82.004444106624163, 28.95974195706151 ], [ -82.00445733156873, 28.95975487928315 ], [ -82.004511703657769, 28.959833709026793 ], [ -82.004579115914268, 28.959945422346667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peachtree Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004396348534655, 28.959707065964555 ], [ -82.004395613394408, 28.959719134128896 ], [ -82.004392675828853, 28.959738519035525 ], [ -82.004384596097466, 28.959754672987312 ], [ -82.004376512136574, 28.959767596736732 ], [ -82.004363288183228, 28.959780520634304 ], [ -82.004349329575589, 28.959791505528262 ], [ -82.004334634237878, 28.959799905378048 ], [ -82.004319942977318, 28.959807660088003 ], [ -82.004303779384529, 28.959812830676679 ], [ -82.004286145560485, 28.959816708322023 ], [ -82.004271452026003, 28.959818646858672 ], [ -82.004259695704306, 28.95981864718992 ], [ -82.003030028948444, 28.959817490554943 ], [ -82.002994272594691, 28.959814906165455 ], [ -82.002963902334727, 28.9598071533437 ], [ -82.002939902054379, 28.959794231172943 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peachtree Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002939902054379, 28.959794231172943 ], [ -82.002919812284247, 28.959807089187283 ], [ -82.002893860167589, 28.959816487920193 ], [ -82.002844225926566, 28.959817639224681 ], [ -82.002598667669631, 28.959817643325657 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peachtree Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002939902054379, 28.959794231172943 ], [ -82.002923247575623, 28.959782169650094 ], [ -82.002909533379238, 28.95976666222235 ], [ -82.002898756284154, 28.959743400450805 ], [ -82.002890920538732, 28.959718415249519 ], [ -82.002794578092463, 28.959227190715207 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Macon Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002794578092463, 28.959227190715207 ], [ -82.004117711178679, 28.959223715555357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peachtree Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004117711178679, 28.959223715555357 ], [ -82.004274458110103, 28.959461498313321 ], [ -82.004370628731266, 28.959616395482563 ], [ -82.004382385820222, 28.959637072043801 ], [ -82.004388998800962, 28.959657102713283 ], [ -82.004394877603787, 28.959687471854771 ], [ -82.004396348534655, 28.959707065964555 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peachtree Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002794578092463, 28.959227190715207 ], [ -82.002735796103295, 28.958966430471342 ], [ -82.002670480774867, 28.958636746075999 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peachtree Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003754582153064, 28.95863787265035 ], [ -82.003907409475048, 28.958880250421487 ], [ -82.004117711178679, 28.959223715555357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peachtree Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003393426690337, 28.958041459224713 ], [ -82.003754582153064, 28.95863787265035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marietta Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002670480774867, 28.958636746075999 ], [ -82.003754582153064, 28.95863787265035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moultrie Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002572508024997, 28.958042853208994 ], [ -82.003393426690337, 28.958041459224713 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peachtree Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002572508024997, 28.958042853208994 ], [ -82.002515637852525, 28.957747202087237 ], [ -82.002446409542387, 28.957389684597526 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peachtree Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002670480774867, 28.958636746075999 ], [ -82.002623142769878, 28.958380248898173 ], [ -82.002572508024997, 28.958042853208994 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peachtree Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002930368751464, 28.957207718763041 ], [ -82.002939804729351, 28.957273777149567 ], [ -82.002991762260137, 28.957386919921621 ], [ -82.003106923838018, 28.957573297735504 ], [ -82.003393426690337, 28.958041459224713 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002930368751464, 28.957207718763041 ], [ -82.002876816653469, 28.957205423396104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street James Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005309592203915, 28.952003703979436 ], [ -82.005369750340009, 28.952006088374027 ], [ -82.005444632460424, 28.952022932333257 ], [ -82.005519513955306, 28.952047436710444 ], [ -82.005613842815123, 28.952090575344787 ], [ -82.00570672178209, 28.952145709941675 ], [ -82.005778702922512, 28.952202888988314 ], [ -82.005843719708921, 28.952264152046883 ], [ -82.005945889219888, 28.952376468863942 ], [ -82.006010906285937, 28.952458153414867 ], [ -82.006075924676892, 28.952562302297007 ], [ -82.006113079860071, 28.952637862289581 ], [ -82.006352266255945, 28.953183116124727 ], [ -82.006438188655778, 28.953373035773293 ], [ -82.006466055562711, 28.953440426718249 ], [ -82.006475345863862, 28.953491481588166 ], [ -82.006475351055059, 28.953562958442163 ], [ -82.006470733940873, 28.953745903732273 ], [ -82.006449844990129, 28.954155195048784 ], [ -82.006431272530577, 28.954230756490386 ], [ -82.006403412641092, 28.954306319239681 ], [ -82.006366264366335, 28.954365543689736 ], [ -82.006331826808037, 28.954412855955738 ], [ -82.006282293286873, 28.954461870586091 ], [ -82.006229666647712, 28.954510884427705 ], [ -82.006083001690712, 28.954604492548121 ], [ -82.005737428743245, 28.95480225814633 ], [ -82.005334968559822, 28.955025552552272 ], [ -82.00483343373088, 28.955235234310358 ], [ -82.004511461766128, 28.955365944887763 ], [ -82.003898471172334, 28.955630086061621 ], [ -82.003632222362043, 28.95573900727458 ], [ -82.003572722113844, 28.955747944047864 ], [ -82.003516994918499, 28.955749477407259 ], [ -82.003454301412219, 28.955737224784169 ], [ -82.003403797606694, 28.955720378301148 ], [ -82.003351553577232, 28.955692809905006 ], [ -82.003311496180729, 28.955660646763899 ], [ -82.003285374791673, 28.955631545698878 ], [ -82.003069421193814, 28.955170526808882 ], [ -82.002804702645832, 28.95458237998967 ], [ -82.002794252955184, 28.954541025430625 ], [ -82.002789028046763, 28.95449507540912 ], [ -82.002794250914974, 28.954452189391098 ], [ -82.002811874742221, 28.954407780992543 ], [ -82.002834301891767, 28.954367949833905 ], [ -82.002862164203023, 28.954328126696073 ], [ -82.002938787649938, 28.954266858805006 ], [ -82.003631873000671, 28.95383492179732 ], [ -82.004472971206368, 28.95329882444117 ], [ -82.004514763118152, 28.953260532634715 ], [ -82.004549591375536, 28.95322377131259 ], [ -82.004580935715509, 28.953187010989616 ], [ -82.005094623308366, 28.952369097382679 ], [ -82.005300403347462, 28.952022509879733 ], [ -82.005309592203915, 28.952003703979436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street James Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005396611872598, 28.950746452348294 ], [ -82.005392331002511, 28.950811404913654 ], [ -82.005373180569748, 28.95088186109869 ], [ -82.005336614170147, 28.950953849098269 ], [ -82.005287859169201, 28.951041154834734 ], [ -82.005251292512312, 28.951110079527599 ], [ -82.005228658103576, 28.951180535812362 ], [ -82.005211404543843, 28.951256021280642 ], [ -82.005197320154451, 28.95138271442254 ], [ -82.005199065846071, 28.951442448809409 ], [ -82.005204292157529, 28.951499119792047 ], [ -82.005216486222153, 28.95155732171925 ], [ -82.005233902841326, 28.951612460179039 ], [ -82.005249577344188, 28.951663004226191 ], [ -82.005273634708786, 28.951724007343707 ], [ -82.00529137550059, 28.951777876258078 ], [ -82.005300085150921, 28.95182229488525 ], [ -82.00530531189662, 28.951886622711331 ], [ -82.00530705720935, 28.951958609316467 ], [ -82.005309592203915, 28.952003703979436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wresh Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005764986602031, 28.950739404149861 ], [ -82.005789370297848, 28.950840490600743 ], [ -82.005791115448389, 28.950883376481549 ], [ -82.005780670870536, 28.950936984780082 ], [ -82.00574758744402, 28.951027352445617 ], [ -82.005669235619365, 28.951215748678962 ], [ -82.005648430183285, 28.951278261182114 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Willow Brook Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005396611872598, 28.950746452348294 ], [ -82.00556995154011, 28.950757791342674 ], [ -82.005636124548175, 28.950759320019696 ], [ -82.005690108087165, 28.950756254663407 ], [ -82.005764986602031, 28.950739404149861 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Willow Brook Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005764986602031, 28.950739404149861 ], [ -82.005864244808535, 28.950707235310585 ], [ -82.00601051869387, 28.950650559123332 ], [ -82.00609758563445, 28.95062145389327 ], [ -82.006170941393904, 28.950600581700627 ], [ -82.006245603403229, 28.950586220353053 ], [ -82.00630415561632, 28.950576453230589 ], [ -82.006361622758845, 28.950571854460009 ], [ -82.006455658167738, 28.950560364145943 ], [ -82.006541855818057, 28.950545426459986 ], [ -82.006631175840099, 28.950525357240355 ], [ -82.006698577546032, 28.950507511319742 ], [ -82.006765185929979, 28.950484534968563 ], [ -82.006838321441748, 28.950455811577338 ], [ -82.006901009399954, 28.950423644594583 ], [ -82.006933658772709, 28.95039951934989 ], [ -82.006958472877074, 28.950378840328053 ], [ -82.006978063180924, 28.950355865219557 ], [ -82.00699634500458, 28.950324848942564 ], [ -82.007017240325823, 28.950288088543633 ], [ -82.007034214897459, 28.950252476047687 ], [ -82.00705510967768, 28.950207675315887 ], [ -82.007074695890879, 28.95015368389517 ], [ -82.007085141683731, 28.95011462585693 ], [ -82.00709297616271, 28.950067528521203 ], [ -82.007095574038431, 28.950026173630018 ], [ -82.007091661863143, 28.949968737501713 ], [ -82.00707206973631, 28.949913600278666 ], [ -82.007051170772201, 28.949875690583657 ], [ -82.007030271969612, 28.949840081730635 ], [ -82.007001534749293, 28.949805620969244 ], [ -82.006942231833719, 28.949761877081059 ], [ -82.006897048263099, 28.949743595185858 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glenview Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005312428303611, 28.950361552844342 ], [ -82.005288041946386, 28.950278972314344 ], [ -82.005241481440336, 28.950276166933712 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glenview Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001091873934087, 28.952803141225107 ], [ -82.001156946955945, 28.952742360721569 ], [ -82.001180561476147, 28.952723558640681 ], [ -82.001211905979915, 28.952706326502469 ], [ -82.001271985204099, 28.952681054770586 ], [ -82.001467895426543, 28.952646591345275 ], [ -82.001645626281118, 28.952637569721137 ], [ -82.00197203969573, 28.952652330723861 ], [ -82.002032117984314, 28.952646586057114 ], [ -82.002113094309266, 28.95263624664188 ], [ -82.002184927973872, 28.952623609155605 ], [ -82.002261985215668, 28.95260178171786 ], [ -82.002345573018943, 28.952573063341653 ], [ -82.002422630925935, 28.952536302878453 ], [ -82.002507524245729, 28.95249150102693 ], [ -82.002589805400177, 28.952436360700059 ], [ -82.002808220294853, 28.952266629659281 ], [ -82.00293460049663, 28.952179039222894 ], [ -82.003070430989098, 28.952098624415196 ], [ -82.003194503685904, 28.952014764755319 ], [ -82.003312687649597, 28.951929264736904 ], [ -82.003365593527306, 28.951884955659992 ], [ -82.003413915833789, 28.951842451245991 ], [ -82.003471382177494, 28.951782715539295 ], [ -82.003537988756548, 28.951717236511485 ], [ -82.003586311624943, 28.951664394473575 ], [ -82.003629409531939, 28.951605807645791 ], [ -82.003656834975985, 28.951571343052059 ], [ -82.003707769021844, 28.951501268932315 ], [ -82.00376523331596, 28.951420857072453 ], [ -82.003916724916522, 28.951123331472242 ], [ -82.003953293243285, 28.951077381305286 ], [ -82.00399639089953, 28.951024538347927 ], [ -82.004070834932534, 28.950949869901837 ], [ -82.004142664316475, 28.950885538144846 ], [ -82.004202741068696, 28.950840735887098 ], [ -82.004257593415616, 28.950805122692934 ], [ -82.004315057687734, 28.950772957060828 ], [ -82.004439129051875, 28.950721261155827 ], [ -82.004544918869101, 28.950678754632388 ], [ -82.00459736919305, 28.950635904085196 ], [ -82.004691008898746, 28.950600091020789 ], [ -82.00484922011087, 28.950519070070747 ], [ -82.004955642985237, 28.950464006001468 ], [ -82.005061498990386, 28.950421030779218 ], [ -82.005158244159546, 28.950397415373253 ], [ -82.005312428303611, 28.950361552844342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glenview Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005241481440336, 28.950276166933712 ], [ -82.00511825522446, 28.950281275492454 ], [ -82.004960225470597, 28.950299659622562 ], [ -82.004845293898015, 28.950320340318868 ], [ -82.004748648306474, 28.950345615714841 ], [ -82.004684653488894, 28.95036974141032 ], [ -82.004635024465159, 28.950388121738854 ], [ -82.004590619026104, 28.950405355076619 ], [ -82.004555845425827, 28.950425331980185 ], [ -82.004499315802789, 28.950453168490053 ], [ -82.004430473505749, 28.950498851776242 ], [ -82.004379045842015, 28.950538614585518 ], [ -82.004335946860834, 28.950573077072551 ], [ -82.004260199295828, 28.950644300753311 ], [ -82.004168779580866, 28.950743094360103 ], [ -82.004054356240076, 28.950853078742991 ], [ -82.00397837343634, 28.950926597700487 ], [ -82.003883392963075, 28.951010141561277 ], [ -82.003830205389306, 28.951046900472065 ], [ -82.003715593803577, 28.951130229051032 ], [ -82.003607195696389, 28.951214088838029 ], [ -82.00353006642267, 28.951287506509217 ], [ -82.00345788067871, 28.95136102598569 ], [ -82.003389496685116, 28.951434543536408 ], [ -82.003332508832926, 28.951504719623649 ], [ -82.003267922778335, 28.951591605391776 ], [ -82.003197107168091, 28.951702309961611 ], [ -82.00315401021652, 28.95176893697581 ], [ -82.003108299059534, 28.951826375083424 ], [ -82.003059977104755, 28.951887257274056 ], [ -82.002998180494956, 28.951955850687121 ], [ -82.002947657512323, 28.951999836555341 ], [ -82.002888886566168, 28.952046935459428 ], [ -82.002827501515029, 28.952088290391512 ], [ -82.002774023751428, 28.9521262805142 ], [ -82.002720406324485, 28.952159512831585 ], [ -82.002660043766184, 28.9521931151762 ], [ -82.002540170755509, 28.95224682148131 ], [ -82.002443482965191, 28.952280002004468 ], [ -82.002342956259852, 28.952311153256144 ], [ -82.002226923386559, 28.952340155374049 ], [ -82.002116741882332, 28.952360205681561 ], [ -82.001930574239182, 28.952403649558498 ], [ -82.001858386825816, 28.952420358956918 ], [ -82.001777431341907, 28.952444412156002 ], [ -82.001700374143596, 28.952468534747808 ], [ -82.00158805255333, 28.95249955290404 ], [ -82.001497934846597, 28.952522527770384 ], [ -82.001405204141193, 28.952539758602914 ], [ -82.001303329730604, 28.952551248142804 ], [ -82.001236720717444, 28.952554694382812 ], [ -82.00116852356193, 28.952546842998949 ], [ -82.00110715865884, 28.952526475856018 ], [ -82.001063162843153, 28.952503054353375 ], [ -82.001031901274786, 28.9524877786783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001091873934087, 28.952803141225107 ], [ -82.001106113873334, 28.952763764233865 ], [ -82.001116562037282, 28.952706326981129 ], [ -82.001116422226929, 28.952663949933488 ], [ -82.001107160250996, 28.952609978474936 ], [ -82.001089792919643, 28.952567208105396 ], [ -82.001069542933806, 28.952530571527245 ], [ -82.001031901274786, 28.9524877786783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000965908317113, 28.952961303597299 ], [ -82.000984433578779, 28.952950102477203 ], [ -82.00100162928112, 28.952936073576456 ], [ -82.001024956598144, 28.952912424411696 ], [ -82.001041165361059, 28.95289307469373 ], [ -82.001059096547678, 28.952870595817743 ], [ -82.001074743077538, 28.952845212471257 ], [ -82.001091873934087, 28.952803141225107 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000887174563118, 28.952391038134039 ], [ -82.00084665252183, 28.952381873667004 ], [ -82.000814232847048, 28.952375763427149 ], [ -82.000783514086976, 28.952373197379096 ], [ -82.000752169554374, 28.952373197443976 ], [ -82.000728658593857, 28.952374345203381 ], [ -82.000699668448902, 28.952377394096828 ], [ -82.00069964998319, 28.952377394096853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000764765411475, 28.953012692397991 ], [ -82.000784822380311, 28.953011891119957 ], [ -82.000816551794813, 28.953008147436709 ], [ -82.000847513846793, 28.953003849740725 ], [ -82.000880165497165, 28.952994659805427 ], [ -82.000914123074864, 28.952983173524938 ], [ -82.000965908317113, 28.952961303597299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000462260117715, 28.952883911246932 ], [ -82.000479199435674, 28.952903910551932 ], [ -82.000490956014474, 28.952916547152007 ], [ -82.000509730632245, 28.95292871816741 ], [ -82.000527098775763, 28.952941956592049 ], [ -82.000552569323645, 28.952960286644625 ], [ -82.000582672751179, 28.952978616689148 ], [ -82.000604670697925, 28.952987781251878 ], [ -82.000633616927658, 28.952995928018261 ], [ -82.000669095959466, 28.953002871112211 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000669095959466, 28.953002871112211 ], [ -82.000718213174849, 28.953054394617578 ], [ -82.000739109414127, 28.953081964112272 ], [ -82.000753477963244, 28.953102641008087 ], [ -82.000770455365256, 28.953132508643055 ], [ -82.000782208994835, 28.953163524002694 ], [ -82.000792091481159, 28.953209800731965 ], [ -82.001167309637268, 28.95501338152507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Springfield Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001313646040742, 28.95069048970176 ], [ -82.001479999144948, 28.950707472432221 ], [ -82.001652292329524, 28.950750580779445 ], [ -82.002525640894206, 28.950967429148591 ], [ -82.002766257623932, 28.951028825382952 ], [ -82.002862802209378, 28.951066708261123 ], [ -82.002954890717689, 28.951112430266292 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001313646040742, 28.95069048970176 ], [ -82.001313646349772, 28.950725762112704 ], [ -82.001313647654527, 28.950874689065476 ], [ -82.001316619666198, 28.951002714396356 ], [ -82.001321077408917, 28.951162092566729 ], [ -82.001332959321076, 28.95120520401645 ], [ -82.001346327646274, 28.951240474535876 ], [ -82.001364151240963, 28.951269216038334 ], [ -82.001384945719195, 28.951295343578025 ], [ -82.001411680929479, 28.951316244997304 ], [ -82.001451784238384, 28.951343678912167 ], [ -82.0015290198061, 28.951378949843924 ], [ -82.001631505961882, 28.951407688826176 ], [ -82.001735475523418, 28.951432509061394 ], [ -82.001864694860458, 28.951466473692236 ], [ -82.002029564208144, 28.951506970391318 ], [ -82.002185519941449, 28.951547467000516 ], [ -82.002302407555348, 28.951576882909858 ], [ -82.002384253357292, 28.951587602818883 ], [ -82.002443461218235, 28.951589134064946 ], [ -82.002530532240712, 28.951572285173921 ], [ -82.002584667593169, 28.951544068763859 ], [ -82.002629790426383, 28.951503359337881 ], [ -82.002690781789809, 28.951438529563312 ], [ -82.002779548435399, 28.951333344272413 ], [ -82.002843977842076, 28.951249102453893 ], [ -82.002904924492412, 28.951170989034903 ], [ -82.002954890717689, 28.951112430266292 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002954890717689, 28.951112430266292 ], [ -82.003056422144368, 28.950988606805655 ], [ -82.003141234360541, 28.95088272387374 ], [ -82.003226045387819, 28.950777181051173 ], [ -82.003289559293066, 28.950702581829695 ], [ -82.003357390670061, 28.95061861127796 ], [ -82.003394520178375, 28.950571582105745 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hobart Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002761187261328, 28.950369762306099 ], [ -82.002985718321369, 28.950428686144644 ], [ -82.003254126692227, 28.950495794310431 ], [ -82.00330426506639, 28.950522566992099 ], [ -82.003394520178375, 28.950571582105745 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Riverdale Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00308404359248, 28.948524492616613 ], [ -82.003213260406653, 28.948506200600143 ], [ -82.00326821422108, 28.948499668686118 ], [ -82.003336535685946, 28.948493134663707 ], [ -82.003391489523182, 28.948487907414428 ], [ -82.003449414211303, 28.948483986597243 ], [ -82.003504368154793, 28.948482680665432 ], [ -82.003568234591, 28.948482678320875 ], [ -82.003648437449783, 28.948482676466753 ], [ -82.00375686234996, 28.948491817717162 ], [ -82.00384003543931, 28.948504879068718 ], [ -82.003917269139066, 28.948523166598445 ], [ -82.003991532136041, 28.948544068102468 ], [ -82.004049458544415, 28.948559743016837 ], [ -82.004101442349011, 28.948576723682834 ], [ -82.004150455396186, 28.948595010928955 ], [ -82.004214322761356, 28.948618525630717 ], [ -82.004303438436338, 28.948652488137913 ], [ -82.004389585447086, 28.948687758995909 ], [ -82.004487613045953, 28.94873086585736 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Riverdale Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002321877667242, 28.948694009792934 ], [ -82.002509872593777, 28.948644336808513 ], [ -82.002745356391685, 28.948595517247448 ], [ -82.002983046476942, 28.94854408960807 ], [ -82.00308404359248, 28.948524492616613 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001356063391839, 28.950043831844884 ], [ -82.001343725489093, 28.950157162554444 ], [ -82.001336015318373, 28.950285839420719 ], [ -82.001328217936845, 28.950415170446568 ], [ -82.001325133318758, 28.95054489935141 ], [ -82.001313646040742, 28.95069048970176 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Highland Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002321877667242, 28.948694009792934 ], [ -82.002061879621479, 28.95019748857138 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hobart Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002061879621479, 28.95019748857138 ], [ -82.002392850767109, 28.950280045862897 ], [ -82.002761187261328, 28.950369762306099 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hobart Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001356063391839, 28.950043831844884 ], [ -82.001434040408171, 28.950051670439098 ], [ -82.001639009897247, 28.950090859921179 ], [ -82.001939777125841, 28.950165320508937 ], [ -82.002061879621479, 28.95019748857138 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramon Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00308404359248, 28.948524492616613 ], [ -82.002985940226736, 28.949117898885113 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramon Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002985940226736, 28.949117898885113 ], [ -82.00293247784289, 28.949386142395813 ], [ -82.002761187261328, 28.950369762306099 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001723705533905, 28.948099159417666 ], [ -82.001714795789553, 28.948148800933296 ], [ -82.001710339157967, 28.948197136790448 ], [ -82.001699944237416, 28.94826637521145 ], [ -82.001674043447707, 28.948388401494814 ], [ -82.001646477653964, 28.948509362177735 ], [ -82.001624199713504, 28.948607339612007 ], [ -82.001603408124069, 28.94870139927465 ], [ -82.001587071503778, 28.948777170328842 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Riverdale Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001587071503778, 28.948777170328842 ], [ -82.0016456767476, 28.948789707196333 ], [ -82.001757070703121, 28.948809302188831 ], [ -82.001832150775485, 28.948809179655118 ], [ -82.001920090511902, 28.948792333853849 ], [ -82.002321877667242, 28.948694009792934 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001587071503778, 28.948777170328842 ], [ -82.001570733687274, 28.948839875281742 ], [ -82.001557676395493, 28.948894544388832 ], [ -82.001532057213424, 28.949000360946364 ], [ -82.001507552053241, 28.949107158281059 ], [ -82.001480138715351, 28.949227000976027 ], [ -82.001454958733873, 28.949362474060226 ], [ -82.001435582666304, 28.949472599896573 ], [ -82.001418440951696, 28.94959313185198 ], [ -82.001398392124713, 28.949732261874438 ], [ -82.001383910210748, 28.949838078315889 ], [ -82.001367203309101, 28.949955651638742 ], [ -82.001356063391839, 28.950043831844884 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glenwood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001723705533905, 28.948099159417666 ], [ -82.001903419064519, 28.948113526671236 ], [ -82.001967643261992, 28.948111669969187 ], [ -82.002514135123107, 28.947995302328959 ], [ -82.002972592842511, 28.947905357757534 ], [ -82.003393454649114, 28.947831613103265 ], [ -82.00366205368698, 28.947804520231553 ], [ -82.003867027455541, 28.947802418329079 ], [ -82.003993956706381, 28.947815046287207 ], [ -82.004103449200102, 28.947834606005948 ], [ -82.004342968385401, 28.94790231463557 ], [ -82.004604728725013, 28.947991092498398 ], [ -82.004875043915206, 28.948079865963088 ], [ -82.005118040328014, 28.948161839244246 ], [ -82.005293798701217, 28.948239128892659 ], [ -82.005408043793381, 28.948328013223751 ], [ -82.00550390037175, 28.948425035015998 ], [ -82.005559103150048, 28.948457394575801 ], [ -82.005623824781779, 28.948491660294621 ], [ -82.005694256508662, 28.948510695063558 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridgeville Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97285418879278, 28.891838543566578 ], [ -81.972939732860397, 28.891859173921809 ], [ -81.97311200486169, 28.8919099702143 ], [ -81.973226750715739, 28.891944039690028 ], [ -81.973334381472128, 28.891980951701342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Astor Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970724909898195, 28.890598697509382 ], [ -81.971172365712519, 28.890585435960393 ], [ -81.971959230411002, 28.890565199229179 ], [ -81.972514673589586, 28.890555038940665 ], [ -81.972681474072573, 28.890549200890288 ], [ -81.972898309942039, 28.890558053191629 ], [ -81.973089961738708, 28.890580333533283 ], [ -81.973261438831983, 28.890612684661118 ], [ -81.973549310663628, 28.890693528373873 ], [ -81.973828431123124, 28.890794971982611 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973548608215239, 28.891381370635106 ], [ -81.973828431123124, 28.890794971982611 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973334381472128, 28.891980951701342 ], [ -81.973357424415425, 28.891890811094402 ], [ -81.973380402238902, 28.891798587058386 ], [ -81.97339659322121, 28.891743950589863 ], [ -81.973425389405307, 28.8916558367745 ], [ -81.973492183170592, 28.891496828634779 ], [ -81.973548608215239, 28.891381370635106 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lucky Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971343676045635, 28.891216303270145 ], [ -81.971355981399171, 28.891216305901299 ], [ -81.971424341911757, 28.89121529007107 ], [ -81.971754230571008, 28.891210889125102 ], [ -81.972391355707174, 28.891189364929513 ], [ -81.972728274828697, 28.891183933523084 ], [ -81.972916487621433, 28.891203510118654 ], [ -81.973112311555298, 28.891241015781777 ], [ -81.973203837184258, 28.891263514030538 ], [ -81.973334696964884, 28.891308159793425 ], [ -81.973548608215239, 28.891381370635106 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973828431123124, 28.890794971982611 ], [ -81.97386412571575, 28.890727116049348 ], [ -81.973934369534931, 28.890583301272894 ], [ -81.973971219455422, 28.890499240220759 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Golden Grove Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973971219455422, 28.890499240220759 ], [ -81.974100111138384, 28.890547883857252 ], [ -81.97417267054675, 28.890571983874938 ], [ -81.97425714553863, 28.890588392230264 ], [ -81.974333526103848, 28.890588141615947 ], [ -81.974398763294303, 28.890582652779759 ], [ -81.974484703556797, 28.890569607484583 ], [ -81.974591542793533, 28.890556906269197 ], [ -81.974654828769204, 28.890547637202811 ], [ -81.974736666534938, 28.890535963368944 ], [ -81.974867140512188, 28.890517768676691 ], [ -81.974997611940822, 28.890509887149911 ], [ -81.975139803192306, 28.890502004966642 ], [ -81.975258361329182, 28.890496870283613 ], [ -81.975403673827785, 28.890491740414571 ], [ -81.975581607268339, 28.890486617245589 ], [ -81.975693717883004, 28.890488355629177 ], [ -81.975741569036103, 28.890489052764686 ], [ -81.975943131450478, 28.89049424669086 ], [ -81.976183368418646, 28.890502195609855 ], [ -81.976417543093703, 28.890523207438527 ], [ -81.976645663505948, 28.890549375352283 ], [ -81.976883326346879, 28.890579503822369 ], [ -81.977066911413857, 28.890609977219611 ], [ -81.977241544089694, 28.890653641376733 ], [ -81.977386186364498, 28.890689648735218 ], [ -81.977505912291107, 28.890727134230662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973971219455422, 28.890499240220759 ], [ -81.974080613177591, 28.890276426648956 ], [ -81.974160068850296, 28.890106279892045 ], [ -81.974294806393559, 28.889784212565321 ], [ -81.974444514726244, 28.88941757881598 ], [ -81.974499670197702, 28.889286288374809 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talapia Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971743004489809, 28.887980756918232 ], [ -81.971705682907668, 28.888046753234239 ], [ -81.971663464822356, 28.888160879924115 ], [ -81.971652885750757, 28.888275010588856 ], [ -81.971645823430109, 28.888392236885938 ], [ -81.97164931190099, 28.888490903286652 ], [ -81.971666130958681, 28.888551185933856 ], [ -81.971719252286817, 28.888610715606021 ], [ -81.971784455910239, 28.888648992308234 ], [ -81.971852082474996, 28.888663885467544 ], [ -81.971936956797208, 28.888663883420318 ], [ -81.97250492413086, 28.888651625228434 ], [ -81.973574452272047, 28.888617806611904 ], [ -81.97446235150305, 28.888601108551871 ], [ -81.97457106843359, 28.888607485046087 ], [ -81.974733585071192, 28.888627591094728 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridgeland Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974733585071192, 28.888627591094728 ], [ -81.974815877087664, 28.88864722080676 ], [ -81.974978769406974, 28.888703952813728 ], [ -81.975204645600542, 28.888788580095824 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974499670197702, 28.889286288374809 ], [ -81.974611493250009, 28.889022589753161 ], [ -81.974677137429168, 28.888846361240461 ], [ -81.974710541298677, 28.888728874491136 ], [ -81.974733585071192, 28.888627591094728 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974733585071192, 28.888627591094728 ], [ -81.974743957043231, 28.888566820402747 ], [ -81.974756647313725, 28.888438187218814 ], [ -81.974763579401838, 28.888327785733985 ], [ -81.974763644683378, 28.888065451772068 ], [ -81.974763166652878, 28.887961899150767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winnsboro Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974763166652878, 28.887961899150767 ], [ -81.974965063385994, 28.888009779737274 ], [ -81.975330019251658, 28.888134790851083 ], [ -81.975663189369953, 28.88825929893482 ], [ -81.97584546443052, 28.88831787772196 ], [ -81.975973085181607, 28.888335180648145 ], [ -81.976102343584543, 28.888342403243659 ], [ -81.976200517788783, 28.888335221279004 ], [ -81.976319963773449, 28.888323720988058 ], [ -81.976665520011679, 28.888256728114069 ], [ -81.977077835335052, 28.888182198962667 ], [ -81.977191705199118, 28.88816399916583 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974766024365678, 28.887592052064029 ], [ -81.974769540263807, 28.887490137863821 ], [ -81.974799504998259, 28.887317955657956 ], [ -81.974836379330725, 28.887130579995109 ], [ -81.974862879003638, 28.88700701398205 ], [ -81.974884778812878, 28.886873317870268 ], [ -81.974900934058269, 28.886698094988244 ], [ -81.974904517321036, 28.886596749233011 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greeleyville Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974248095410843, 28.886867173189994 ], [ -81.974267739834687, 28.886830456933428 ], [ -81.974285852786437, 28.886796894823302 ], [ -81.974296607306968, 28.886752329544965 ], [ -81.974301279275622, 28.886472777800101 ], [ -81.974304447124737, 28.886078431428526 ], [ -81.974281457245382, 28.885943782067685 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974904517321036, 28.886596749233011 ], [ -81.974889661483473, 28.886416907065492 ], [ -81.974869783314702, 28.886286673352771 ], [ -81.974847151753977, 28.886167747654294 ], [ -81.974811002129385, 28.886021623156736 ], [ -81.974768228980494, 28.885874106952862 ], [ -81.974726512193769, 28.885742235927452 ], [ -81.974630654232044, 28.885482953355581 ], [ -81.974528685945288, 28.885250615860823 ], [ -81.974438198344544, 28.88506423015242 ], [ -81.974293172232834, 28.884797892755572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974293172232834, 28.884797892755572 ], [ -81.974232672359705, 28.88469550514942 ], [ -81.974197401768805, 28.884606363645631 ], [ -81.974162132243407, 28.884509120370186 ], [ -81.974139141029013, 28.884414582749482 ], [ -81.974117695071897, 28.884261971517489 ], [ -81.974114662233589, 28.884120167992265 ], [ -81.974122356570263, 28.884033737149725 ], [ -81.974133118313631, 28.88395135732798 ], [ -81.974186881120659, 28.883721783480414 ], [ -81.974351246313788, 28.883001997921472 ], [ -81.974440340636093, 28.882618471023939 ], [ -81.974478063674567, 28.882398605421752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974478063674567, 28.882398605421752 ], [ -81.974497193863627, 28.882294361675385 ], [ -81.974507975195777, 28.882135003765985 ], [ -81.974521868580538, 28.881794679061649 ], [ -81.974525719312467, 28.881557656024889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Isle Of Palms Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976528651839743, 28.880878635029447 ], [ -81.976853232916767, 28.880948413291122 ], [ -81.977076458005939, 28.881006177351235 ], [ -81.977126762416376, 28.88102886801396 ], [ -81.977161115420827, 28.881054792492716 ], [ -81.977186877227254, 28.88108179735821 ], [ -81.977206501282026, 28.88112283918132 ], [ -81.977217537137449, 28.881160642081763 ], [ -81.977220283142486, 28.881195058135066 ], [ -81.977176743657495, 28.881653538092603 ], [ -81.977166054719063, 28.881780038035089 ], [ -81.977154433361676, 28.881904175589984 ], [ -81.977146685235169, 28.88199090167819 ], [ -81.97713121464551, 28.882048717609894 ], [ -81.977109659185558, 28.882089780370432 ], [ -81.977054572878828, 28.882140306134431 ], [ -81.976985040738782, 28.882171920763856 ], [ -81.976899328151603, 28.88218472319042 ], [ -81.976775666020359, 28.882198304888099 ], [ -81.97664621078934, 28.882201683139648 ], [ -81.976572792293879, 28.882191467989021 ], [ -81.976520628401417, 28.882165949886698 ], [ -81.976483612779546, 28.882140036511036 ], [ -81.976461753625955, 28.882113697197713 ], [ -81.976442195793581, 28.882088372472555 ], [ -81.976429542828186, 28.882062034773533 ], [ -81.97642264529712, 28.882026583037884 ], [ -81.976422136106535, 28.881966968794295 ], [ -81.976441508108692, 28.881742498549762 ], [ -81.976458941445941, 28.881553741047519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Witherspoon Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983797197577047, 28.877925234321804 ], [ -81.984055160066049, 28.878049509667228 ], [ -81.984432364823348, 28.878257340818177 ], [ -81.98468156339321, 28.878398348029052 ], [ -81.984862714410838, 28.878523592879954 ], [ -81.985051818690451, 28.878664889425973 ], [ -81.985252284512853, 28.878846779719336 ], [ -81.985419443118047, 28.878989840924085 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001886208898057, 28.944672450687282 ], [ -82.001981122444334, 28.94498297294394 ], [ -82.002015442210435, 28.945086766040607 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holder Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001886208898057, 28.944672450687282 ], [ -82.002453644600749, 28.944536991424858 ], [ -82.002766502425857, 28.944457231037969 ], [ -82.003247707857682, 28.944332554055734 ], [ -82.003399541274334, 28.944313914011794 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001430248133985, 28.944161661028073 ], [ -82.001571343110598, 28.944279234199584 ], [ -82.001657484968263, 28.94434847095571 ], [ -82.001737830270841, 28.944425366373224 ], [ -82.001783728082017, 28.944475189670094 ], [ -82.001822342782418, 28.944524832563722 ], [ -82.001847592361656, 28.944570554213943 ], [ -82.001871355693794, 28.944624114996767 ], [ -82.001886208898057, 28.944672450687282 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000930529060241, 28.943526880391403 ], [ -82.000939616808395, 28.943586370362624 ], [ -82.000964862949317, 28.943678877895898 ], [ -82.000987660303409, 28.94372272024555 ], [ -82.001011415768161, 28.943767402622463 ], [ -82.001063406218663, 28.943831150337093 ], [ -82.001147172730171, 28.943909445557015 ], [ -82.001382304230972, 28.944117827945725 ], [ -82.001411584750315, 28.944149826677528 ], [ -82.001430248133985, 28.944161661028073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000889050761799, 28.937042382527 ], [ -82.000894151935526, 28.937746652834438 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Michael Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000889050761799, 28.937042382527 ], [ -82.002108675856704, 28.937043351745352 ], [ -82.00213540820414, 28.937041393448936 ], [ -82.002155456909946, 28.937037473641162 ], [ -82.002174391629737, 28.9370306150721 ], [ -82.002187758743091, 28.937024735558587 ], [ -82.002203350646553, 28.937018857820544 ], [ -82.002216716679868, 28.937010038629868 ], [ -82.002243448791674, 28.936995341723421 ], [ -82.002447554153505, 28.936839095897191 ], [ -82.002506194943805, 28.936805587449175 ], [ -82.002623475564164, 28.936746948277481 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001324314744053, 28.933992917178617 ], [ -82.001290420849259, 28.934006334495287 ], [ -82.001264999131081, 28.934015279985399 ], [ -82.001232799642239, 28.934025716097025 ], [ -82.00120839644822, 28.934037344995055 ], [ -82.001185347156905, 28.934048078805827 ], [ -82.001163654852903, 28.934058813508528 ], [ -82.001136537694762, 28.934075510594806 ], [ -82.001117558347389, 28.934087438111074 ], [ -82.001097220993302, 28.934101750394916 ], [ -82.001080951534945, 28.934116061756686 ], [ -82.001063327153261, 28.934133953426556 ], [ -82.001026612637972, 28.934166947772379 ], [ -82.001013520767728, 28.934182417660196 ], [ -82.001001211500508, 28.934198231318145 ], [ -82.000995154819336, 28.934206137244054 ], [ -82.000989294046875, 28.934214388747804 ], [ -82.00098362712788, 28.934222295574141 ], [ -82.000978156119544, 28.934230889947987 ], [ -82.000972878964774, 28.93423914054674 ], [ -82.000967798744469, 28.934247734918856 ], [ -82.000962718521478, 28.934255985516565 ], [ -82.000957834207298, 28.934264579887632 ], [ -82.000953339658352, 28.93427351803151 ], [ -82.000948846132502, 28.934282112400979 ], [ -82.000944547489851, 28.934291050543926 ], [ -82.000940443728609, 28.93429998868611 ], [ -82.000936535874544, 28.934308925925279 ], [ -82.000932628019811, 28.934317864968889 ], [ -82.000929110954502, 28.934326803108924 ], [ -82.000925789798217, 28.934336085924773 ], [ -82.000922467615666, 28.934345366935958 ], [ -82.000919341338772, 28.934354305074528 ], [ -82.000916604827552, 28.934363587888409 ], [ -82.000913871392967, 28.934372868897626 ], [ -82.000911330790458, 28.934382495485014 ], [ -82.000909180976166, 28.934391776492422 ], [ -82.000907032187186, 28.934401058402081 ], [ -82.000905078281832, 28.934410683183078 ], [ -82.000903319256878, 28.934419965993833 ], [ -82.000901756141332, 28.934429591675922 ], [ -82.000900387907905, 28.934439218259758 ], [ -82.000899216606385, 28.934448499264192 ], [ -82.000898240188775, 28.934458124944573 ], [ -82.00089745762773, 28.934467749722124 ], [ -82.000896872000439, 28.934477376303693 ], [ -82.000896481255523, 28.934487001982404 ], [ -82.00089628539962, 28.934498001855072 ], [ -82.000889048772819, 28.936398662391191 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000889048772819, 28.936398662391191 ], [ -82.000889050761799, 28.937042382527 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walker Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001613021821981, 28.936399637455903 ], [ -82.000889048772819, 28.936398662391191 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Trce", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001685291520999, 28.933717107467857 ], [ -82.001782285888183, 28.933795366215975 ], [ -82.001901462257379, 28.933891384532124 ], [ -82.002028679394428, 28.933996712526664 ], [ -82.002121757112093, 28.934072290352763 ], [ -82.002188822930805, 28.934122610506755 ], [ -82.002280443186464, 28.9341882873617 ], [ -82.002358118900688, 28.934236264032712 ], [ -82.002398166507845, 28.93425585590446 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Trce", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002398166507845, 28.93425585590446 ], [ -82.002486205907744, 28.934301489097567 ], [ -82.00255082836685, 28.9343287744286 ], [ -82.002617632426379, 28.934351873950426 ], [ -82.002685574021754, 28.934375388476184 ], [ -82.002763539713087, 28.934395961321261 ], [ -82.002844847063201, 28.934412617203197 ], [ -82.002925039435681, 28.934426333380465 ], [ -82.002989639038887, 28.934434169543177 ], [ -82.003059809161897, 28.934440046688813 ], [ -82.003116612358937, 28.934443966979153 ], [ -82.003164339127622, 28.934446376982773 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Trce", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004007013260988, 28.934222762038061 ], [ -82.004030118704208, 28.934211752543579 ], [ -82.004127665596627, 28.934161395620542 ], [ -82.004215745583593, 28.93412037312293 ], [ -82.004331440737587, 28.93406523339236 ], [ -82.004421264199436, 28.934023131566448 ], [ -82.004551485789051, 28.933962272482635 ], [ -82.004645780982429, 28.933917533868193 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Trce", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004645780982429, 28.933917533868193 ], [ -82.004674277216878, 28.93390385962212 ], [ -82.004771855475141, 28.933857517440622 ], [ -82.004878069767074, 28.933806617419688 ], [ -82.005013642672949, 28.933741282333777 ], [ -82.005119855805958, 28.933692661317615 ], [ -82.005282923295852, 28.933611098153964 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Trce", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005282923295852, 28.933611098153964 ], [ -82.005432448472462, 28.933531604247751 ], [ -82.005616377539766, 28.933421448007078 ], [ -82.005711364296786, 28.933359912404583 ], [ -82.005814984927298, 28.933293818003659 ], [ -82.005901335223086, 28.933233043239621 ], [ -82.006005819728657, 28.933157073042114 ], [ -82.006102489796248, 28.933088370167479 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006102489796248, 28.933088370167479 ], [ -82.006274387259879, 28.933290000516607 ], [ -82.006388380355688, 28.933422936074489 ], [ -82.006480783374116, 28.933527003575463 ], [ -82.006529611810492, 28.933571497160063 ], [ -82.006576641754762, 28.933607522773272 ], [ -82.006671635419991, 28.933667530982099 ], [ -82.006859892729395, 28.933770834076817 ], [ -82.007025697159818, 28.933860464621237 ], [ -82.007201004282777, 28.933956173246823 ], [ -82.007369400353525, 28.934048082431786 ], [ -82.007506708902042, 28.934124040454158 ], [ -82.007606882909357, 28.93417797167729 ], [ -82.0077027389666, 28.934218986710757 ], [ -82.007800320643724, 28.934250126872186 ], [ -82.007878041831603, 28.934266836751807 ], [ -82.007956625103745, 28.93427594651298 ], [ -82.008062788079741, 28.934281883122093 ], [ -82.008177693605944, 28.934281252252024 ], [ -82.00836335375196, 28.934282001302773 ], [ -82.008566287636043, 28.93428274906686 ], [ -82.00874676899079, 28.934282739068429 ], [ -82.008954020030529, 28.934283484179733 ], [ -82.009123274188454, 28.934284234110898 ], [ -82.009357294726982, 28.934283459229881 ], [ -82.009587860786795, 28.934283443004222 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evelyn Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009589860087075, 28.932760329154458 ], [ -82.009587860786795, 28.934283443004222 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009587860786795, 28.934283443004222 ], [ -82.009832244057407, 28.93428418696567 ], [ -82.010045540485734, 28.934284172051214 ], [ -82.010219975367903, 28.934284159602917 ], [ -82.010307193394013, 28.934284913928121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Artesia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011025952182052, 28.931632767966306 ], [ -82.011029980484437, 28.934285616495558 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010307193394013, 28.934284913928121 ], [ -82.010435861749841, 28.934284904517678 ], [ -82.010776098238196, 28.934284879041183 ], [ -82.011029980484437, 28.934285616495558 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011029980484437, 28.934285616495558 ], [ -82.011181076886089, 28.934287445301489 ], [ -82.011578329702985, 28.934287092958026 ], [ -82.011748913246137, 28.934288395292246 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Davenport Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013022170995782, 28.934224675881232 ], [ -82.013138264549568, 28.934479094010708 ], [ -82.013175751445786, 28.934585638818945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012320452895906, 28.93428491500508 ], [ -82.012414241347926, 28.934283982805805 ], [ -82.012625809744293, 28.934286243151327 ], [ -82.012770023179556, 28.93428319118448 ], [ -82.012856375291676, 28.934273307691136 ], [ -82.012919413815723, 28.934258870606566 ], [ -82.013022170995782, 28.934224675881232 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cambria Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013475458554353, 28.93249933685528 ], [ -82.01364931581368, 28.932497294373007 ], [ -82.013790936143963, 28.932496268122467 ], [ -82.013884195895542, 28.932496258001173 ], [ -82.013956732853543, 28.932496251688306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cambria Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013956732853543, 28.932496251688306 ], [ -82.014032723268457, 28.93249624408773 ], [ -82.014182401317782, 28.932495215714646 ], [ -82.014417281253245, 28.932493166038281 ], [ -82.014615317947928, 28.932492133088886 ], [ -82.0149756974224, 28.932495132925869 ], [ -82.015299232966868, 28.932494084542785 ], [ -82.015544474420366, 28.932493045039521 ], [ -82.015847286433583, 28.932494024202686 ], [ -82.015994661965635, 28.932494006451222 ], [ -82.016025747751698, 28.932490964850935 ], [ -82.016053379433359, 28.932476781206564 ], [ -82.016081009016446, 28.932455508228518 ], [ -82.016101729890394, 28.932429170562493 ], [ -82.016113238692768, 28.932399796836414 ], [ -82.016116689053305, 28.932372449693759 ], [ -82.016116676848455, 28.932291419132408 ], [ -82.016117813009856, 28.932194182324277 ], [ -82.016117802330257, 28.932123282724245 ], [ -82.016120095508043, 28.932060484559845 ], [ -82.01611778539538, 28.932010855015292 ], [ -82.016107418142013, 28.931978443086212 ], [ -82.016083236002075, 28.931952111511606 ], [ -82.016052146162096, 28.931933883334732 ], [ -82.016009544644263, 28.931918694500617 ], [ -82.015945065014265, 28.931913639123692 ], [ -82.015865620410835, 28.931912635821867 ], [ -82.015747031184929, 28.931912647473165 ], [ -82.015612320446365, 28.931912663533854 ], [ -82.015456886883655, 28.931911667579776 ], [ -82.015251943254469, 28.931911691048359 ], [ -82.015052756864151, 28.931912725056321 ], [ -82.014838602557433, 28.931911735612051 ], [ -82.014623441406883, 28.931913403190212 ], [ -82.01445289667717, 28.931912788426317 ], [ -82.014279039112864, 28.931912806293273 ], [ -82.014139724131269, 28.931912820448339 ], [ -82.014063014500763, 28.931915739885671 ], [ -82.014039699618337, 28.931921059449554 ], [ -82.014019983270842, 28.931930050988093 ], [ -82.014001706367253, 28.931942333950552 ], [ -82.013985304038613, 28.93195980672197 ], [ -82.013971489872105, 28.93198031996592 ], [ -82.013962368122506, 28.932008484198779 ], [ -82.013959406782917, 28.932030458075417 ], [ -82.013956678691898, 28.932095153774586 ], [ -82.013955537464312, 28.932160991619853 ], [ -82.013955547464249, 28.93223796907882 ], [ -82.013955562201147, 28.932351410065465 ], [ -82.013956732853543, 28.932496251688306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 51st Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017607925222578, 28.932346881821065 ], [ -82.017601046815727, 28.932277095624798 ], [ -82.017597518389763, 28.931828395809227 ], [ -82.017600964478319, 28.931783829237215 ], [ -82.017610169345275, 28.931743313237174 ], [ -82.017626283262857, 28.931709887492548 ], [ -82.017648153416715, 28.93167139462982 ], [ -82.017679234903412, 28.93163796697468 ], [ -82.01770916435791, 28.931609601332138 ], [ -82.017747156900029, 28.931589339964667 ], [ -82.017783996913153, 28.931571103483321 ], [ -82.017827748026107, 28.931559956335374 ], [ -82.017875511607116, 28.931555306080011 ], [ -82.017929065281166, 28.931551838870146 ], [ -82.018426454149534, 28.931552787854397 ], [ -82.019813054393168, 28.931558439664666 ], [ -82.019834740946237, 28.931562965173558 ], [ -82.019878199236544, 28.931577768296656 ], [ -82.019917824855739, 28.931599344580889 ], [ -82.019952269942067, 28.931626958853872 ], [ -82.019980359929335, 28.931659671098242 ], [ -82.020001138681565, 28.931696364415533 ], [ -82.020013899272698, 28.931735794647118 ], [ -82.020018206557381, 28.931776616537057 ], [ -82.020018257285741, 28.932040980712785 ], [ -82.020018309541697, 28.932324376975725 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 50th View", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020083505876073, 28.936528491914835 ], [ -82.020082685026011, 28.936809738851196 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 50th View", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020087791423947, 28.93494185865767 ], [ -82.020090514086405, 28.935254029471171 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 51st Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01794189772481, 28.936324481475765 ], [ -82.017879999329921, 28.936437379983751 ], [ -82.017870794502102, 28.93647384557687 ], [ -82.017867318422432, 28.93651717688822 ], [ -82.017864676699759, 28.936618349645943 ], [ -82.017864726888916, 28.936918157552117 ], [ -82.017865539685928, 28.937190282068233 ], [ -82.017865586412086, 28.937469383208036 ], [ -82.01785468449755, 28.937699406377391 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 52nd Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01794189772481, 28.936324481475765 ], [ -82.017852418796565, 28.936240918945735 ], [ -82.017693802924938, 28.936090038718682 ], [ -82.017576911533055, 28.935995978597706 ], [ -82.017532003553868, 28.935975726875999 ], [ -82.017481337381398, 28.935962566091387 ], [ -82.017442190427332, 28.935958518814843 ], [ -82.01740304225028, 28.935959536103535 ], [ -82.017351230228869, 28.935970685019917 ], [ -82.017310935383421, 28.935984870504559 ], [ -82.017261428354857, 28.936010197747525 ], [ -82.017222284030353, 28.936041600637459 ], [ -82.017190051051543, 28.936080094691501 ], [ -82.017170481880555, 28.936114534969548 ], [ -82.017160124517929, 28.936141884782206 ], [ -82.017152070803064, 28.936181386405302 ], [ -82.017148639825805, 28.936322175373537 ], [ -82.017149825590735, 28.936546019027276 ], [ -82.0171498622298, 28.93676783806789 ], [ -82.017149888736796, 28.936932936199707 ], [ -82.0171499274403, 28.937173997546893 ], [ -82.017149959314267, 28.937372519339821 ], [ -82.017150012167448, 28.937701702293793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 52nd Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018648544459509, 28.936973051799789 ], [ -82.018578799185875, 28.936912493793834 ], [ -82.018374687949489, 28.93672257100658 ], [ -82.01829327818146, 28.936648026133362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 124th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01785468449755, 28.937699406377391 ], [ -82.017692335568867, 28.937701634198 ], [ -82.017439020526098, 28.937701666276944 ], [ -82.017270911759752, 28.937701687302518 ], [ -82.017150012167448, 28.937701702293793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 51st Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018648544459509, 28.936973051799789 ], [ -82.018616148569095, 28.937034696365789 ], [ -82.018598400232094, 28.937068472512895 ], [ -82.018592647266502, 28.937093796163165 ], [ -82.018586896736053, 28.937127220607167 ], [ -82.018586997207592, 28.937703542735903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 124th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018586997207592, 28.937703542735903 ], [ -82.018460339171867, 28.937703560579124 ], [ -82.018334062655384, 28.937703276886523 ], [ -82.018177088053179, 28.937702582953069 ], [ -82.017958802138509, 28.937699407365187 ], [ -82.01785468449755, 28.937699406377391 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 124th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019919201646175, 28.937703358232788 ], [ -82.019649767272028, 28.937703395891759 ], [ -82.019542684248137, 28.937703411067663 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 124th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019542684248137, 28.937703411067663 ], [ -82.01937572755871, 28.937704446932592 ], [ -82.019132774243587, 28.937703468373311 ], [ -82.018917457327092, 28.937703497974717 ], [ -82.018749946516451, 28.937703278048588 ], [ -82.018604870488645, 28.93770327776819 ], [ -82.018586997207592, 28.937703542735903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 50th Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019540261528533, 28.937055175554345 ], [ -82.019540308915211, 28.937313457162819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 50th Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019540308915211, 28.937313457162819 ], [ -82.019542684248137, 28.937703411067663 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 52nd Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019540308915211, 28.937313457162819 ], [ -82.019457407760882, 28.937313468851105 ], [ -82.019390623825061, 28.937313478229875 ], [ -82.019314629276437, 28.937304372987178 ], [ -82.019245539849194, 28.937289189792118 ], [ -82.019155723488936, 28.937261854632183 ], [ -82.019076270731659, 28.937232492334175 ], [ -82.019006029021, 28.937203129626774 ], [ -82.018947301278587, 28.937174776778246 ], [ -82.018897783718742, 28.937147435922871 ], [ -82.018843660997135, 28.937116044376545 ], [ -82.018773417601523, 28.937070473642297 ], [ -82.018648544459509, 28.936973051799789 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Idlewood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015123380171914, 28.934287066519424 ], [ -82.015289179726139, 28.934287048438911 ], [ -82.015483637208916, 28.934287026973067 ], [ -82.01560031313457, 28.934287014860843 ], [ -82.015680143561767, 28.934297809969959 ], [ -82.015725178869772, 28.93431941303664 ], [ -82.015768166907392, 28.934341016319969 ], [ -82.015809783667535, 28.934383863361891 ], [ -82.015830658474968, 28.934424364078382 ], [ -82.015846417748264, 28.934482956373863 ], [ -82.0158480801786, 28.934668481419116 ], [ -82.01584649418497, 28.934999261760716 ], [ -82.015848179022527, 28.935342987830314 ], [ -82.015849863793193, 28.935672330411908 ], [ -82.015846631734121, 28.935928326954073 ], [ -82.01585164881574, 28.936297590224758 ], [ -82.015848385121899, 28.936727954156918 ], [ -82.015848415401663, 28.936939367041596 ], [ -82.01585009125607, 28.937208307285179 ], [ -82.015846854679793, 28.937434100384337 ], [ -82.015850148763306, 28.937596613962132 ], [ -82.015846901954333, 28.937753377059956 ], [ -82.01584092963445, 28.937812214516008 ], [ -82.015825662062397, 28.937849737239382 ], [ -82.015783162403466, 28.937901515684814 ], [ -82.015729215266873, 28.937937477297716 ], [ -82.015676899556098, 28.937956179629193 ], [ -82.015560659451893, 28.937955408575466 ], [ -82.015400169408323, 28.937955427316272 ], [ -82.015257764035454, 28.937955442984443 ], [ -82.015126660171489, 28.937955457275972 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Danforth Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015123380171914, 28.934287066519424 ], [ -82.015130393345743, 28.936034162667045 ], [ -82.015130484939561, 28.936682878681975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Idlewood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014406957594744, 28.934287143200436 ], [ -82.014574805463312, 28.934287125788501 ], [ -82.014836811141464, 28.934287098190694 ], [ -82.015123380171914, 28.934287066519424 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Henderson Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014406957594744, 28.934287143200436 ], [ -82.014403138051989, 28.93481556682946 ], [ -82.014406384885319, 28.935713162439885 ], [ -82.01441082564466, 28.936678980256961 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Idlewood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013590250594604, 28.934391662797708 ], [ -82.01363732492203, 28.934359246906666 ], [ -82.013692588037657, 28.934332231332231 ], [ -82.013768319905324, 28.934305214625397 ], [ -82.013844056434777, 28.93429080112266 ], [ -82.013942307564989, 28.934288991289474 ], [ -82.014183842419868, 28.934288967001066 ], [ -82.014406957594744, 28.934287143200436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Halstead Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013590250594604, 28.934391662797708 ], [ -82.01365243207141, 28.934485867102612 ], [ -82.013677302326485, 28.934535576579815 ], [ -82.013686347384663, 28.934571366101437 ], [ -82.013687052756325, 28.934673648308394 ], [ -82.013684168685813, 28.93503770537486 ], [ -82.013684253820429, 28.935706348669775 ], [ -82.013692434202937, 28.936683227380005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Idlewood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013175751445786, 28.934585638818945 ], [ -82.013311887992899, 28.934550147745107 ], [ -82.013367154110028, 28.934537538335281 ], [ -82.013412184326924, 28.934521327021862 ], [ -82.013463352777364, 28.934492512758975 ], [ -82.013537035952993, 28.934436684317429 ], [ -82.013590250594604, 28.934391662797708 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sipsey Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012058653201663, 28.93722975333602 ], [ -82.012367695319966, 28.937288720273905 ], [ -82.012685853570474, 28.937314211474689 ], [ -82.013101392114905, 28.937321374485123 ], [ -82.013693479937729, 28.937323298377841 ], [ -82.014396461749016, 28.937323226842835 ], [ -82.014934437192593, 28.937323171211847 ], [ -82.015126571657831, 28.937321161844572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Davenport Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012339830350129, 28.936579574680497 ], [ -82.012294806059003, 28.936666010274454 ], [ -82.012219085553767, 28.936820873088166 ], [ -82.012147461533033, 28.936993743485928 ], [ -82.012086070735435, 28.937155805285464 ], [ -82.012058653201663, 28.93722975333602 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "New Hope Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012339830350129, 28.936579574680497 ], [ -82.012384802700041, 28.936595230940007 ], [ -82.012520806506799, 28.936637159316678 ], [ -82.012674588656893, 28.936665678764541 ], [ -82.012858073128868, 28.93668113100243 ], [ -82.013292837038819, 28.936686247967696 ], [ -82.013692434202937, 28.936683227380005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thorncrest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011332915525244, 28.938416327353675 ], [ -82.011820102363828, 28.938418089208678 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Davenport Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011890658750886, 28.93788827526993 ], [ -82.011879021540594, 28.937941532343892 ], [ -82.01186738520704, 28.938012204590219 ], [ -82.011843969138667, 28.938183867065117 ], [ -82.011820102363828, 28.938418089208678 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Davenport Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011820102363828, 28.938418089208678 ], [ -82.011812540702223, 28.938474933450742 ], [ -82.011812565373575, 28.938700449148083 ], [ -82.011812581019171, 28.938843460903172 ], [ -82.011812593618231, 28.938958624261705 ], [ -82.011814272439608, 28.939049470662621 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Candler Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012141037194738, 28.935788498414482 ], [ -82.012079592176264, 28.935963912392165 ], [ -82.012062743271287, 28.936032294198164 ], [ -82.012024092208136, 28.936141308169894 ], [ -82.01195725065017, 28.936281067490999 ], [ -82.011842831659834, 28.936501118716983 ], [ -82.011733317400825, 28.936732674582206 ], [ -82.011649960956376, 28.936948408270215 ], [ -82.011574776618801, 28.937149759565692 ], [ -82.011512671783038, 28.937358300126661 ], [ -82.011453838700064, 28.937585538624251 ], [ -82.011412985501352, 28.937765314073616 ], [ -82.011385207930772, 28.93791344861393 ], [ -82.011357446374291, 28.938097610835616 ], [ -82.011332915525244, 28.938416327353675 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eastmont Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01123652837957, 28.935920280417115 ], [ -82.011151683760573, 28.936081289802932 ], [ -82.011032852620048, 28.936330607509397 ], [ -82.010937654556756, 28.936540076165326 ], [ -82.010857842995676, 28.936739955790884 ], [ -82.010786220180293, 28.93694703594803 ], [ -82.010737111088446, 28.937127104183567 ], [ -82.010692096069107, 28.937323379091637 ], [ -82.010659363078219, 28.937510651770189 ], [ -82.010640232698364, 28.937672046526281 ], [ -82.01062344316216, 28.937835342233406 ], [ -82.01061076011753, 28.938025107320009 ], [ -82.010610324700949, 28.938418184450935 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thorncrest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010610324700949, 28.938418184450935 ], [ -82.011332915525244, 28.938416327353675 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thorncrest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009897968479834, 28.93841823688037 ], [ -82.010610324700949, 28.938418184450935 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kenova Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010341645107488, 28.935874208951702 ], [ -82.010272952562687, 28.936040461643852 ], [ -82.010186187259592, 28.936300017319617 ], [ -82.010095167761818, 28.936558371377089 ], [ -82.01001883054937, 28.936789596858084 ], [ -82.009970390233846, 28.936983360694121 ], [ -82.009929368606379, 28.937186247083744 ], [ -82.009910432900966, 28.937390794843843 ], [ -82.009897751961788, 28.93761734279283 ], [ -82.009893677274093, 28.937938772654334 ], [ -82.009897968479834, 28.93841823688037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thorncrest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00917947117523, 28.938418285033052 ], [ -82.009515179186195, 28.938418262109387 ], [ -82.009897968479834, 28.93841823688037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thorncrest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008460974755437, 28.93841652837213 ], [ -82.00917947117523, 28.938418285033052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kingmont Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009472751617665, 28.935870021524924 ], [ -82.009403529684164, 28.936039000544021 ], [ -82.009328577472232, 28.936311009256716 ], [ -82.009275840924033, 28.936547186375865 ], [ -82.009231505394638, 28.936790582177945 ], [ -82.009202018105654, 28.936998566470731 ], [ -82.009185033420238, 28.937184206440026 ], [ -82.009177336390948, 28.93737930635757 ], [ -82.009173268461595, 28.937685417065417 ], [ -82.00917947117523, 28.938418285033052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Auburndale Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008454881309746, 28.939046757502027 ], [ -82.008458470567376, 28.938783588869519 ], [ -82.008458455100509, 28.93857008359462 ], [ -82.008460974755437, 28.93841652837213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ashbrook Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008454881309746, 28.939046757502027 ], [ -82.008832191337262, 28.939046645393482 ], [ -82.009764969496445, 28.939046673861533 ], [ -82.010669750189535, 28.939048409631916 ], [ -82.011814272439608, 28.939049470662621 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Candlebrook Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008454929086199, 28.939678787188821 ], [ -82.00902604938868, 28.939678752288145 ], [ -82.009997349492181, 28.939683834953275 ], [ -82.011800061045591, 28.939680758019307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Auburndale Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008454929086199, 28.939678787188821 ], [ -82.008454919492493, 28.939554542249649 ], [ -82.008454899384489, 28.939280843179652 ], [ -82.008454881309746, 28.939046757502027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Auburndale Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008454979054761, 28.940312616891838 ], [ -82.008454969321662, 28.940186570986317 ], [ -82.008454950776596, 28.939959689252753 ], [ -82.008454929086199, 28.939678787188821 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shelby Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008454979054761, 28.940312616891838 ], [ -82.008872574173708, 28.940314393486961 ], [ -82.010231807824582, 28.940314301312565 ], [ -82.011797793165869, 28.940319582977462 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Davenport Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011800061045591, 28.939680758019307 ], [ -82.011800686704106, 28.93980232940141 ], [ -82.011799620483842, 28.93994824209776 ], [ -82.011803921325168, 28.94020974175703 ], [ -82.011797793165869, 28.940319582977462 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Davenport Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011797793165869, 28.940319582977462 ], [ -82.011801316828098, 28.940490290303973 ], [ -82.011801342480624, 28.94073436972015 ], [ -82.011801946435355, 28.940854375605849 ], [ -82.01180195706408, 28.94095161126123 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Davenport Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01180195706408, 28.94095161126123 ], [ -82.011801985365892, 28.941219908216222 ], [ -82.011804072360462, 28.94158183958201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Auburndale Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012513905077867, 28.941580260497691 ], [ -82.012404982172853, 28.941582230850187 ], [ -82.012252938867789, 28.941582244199569 ], [ -82.012062426398472, 28.941583871277796 ], [ -82.011804072360462, 28.94158183958201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oakdale Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008457074392339, 28.940946448219002 ], [ -82.008846015220925, 28.940946424700172 ], [ -82.009239048114225, 28.940949999943314 ], [ -82.01014651645994, 28.94095247981063 ], [ -82.010980907327266, 28.940952418404855 ], [ -82.01180195706408, 28.94095161126123 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Auburndale Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008457074392339, 28.940946448219002 ], [ -82.008457065769036, 28.940834806539275 ], [ -82.008457049913702, 28.940629533855951 ], [ -82.008454988788003, 28.940438663697293 ], [ -82.008454979054761, 28.940312616891838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Auburndale Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013964298721703, 28.939844784728759 ], [ -82.014016467338479, 28.939844751534871 ], [ -82.014125656380571, 28.939844768509243 ], [ -82.014253596391413, 28.939854452460438 ], [ -82.014351856669961, 28.939874248641487 ], [ -82.014463521646334, 28.939910394726326 ], [ -82.014562031851909, 28.939949552142966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blythe Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012547147338068, 28.938587281172921 ], [ -82.012534568430226, 28.938743542432796 ], [ -82.012523783883196, 28.939220785492527 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blythe Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012523783883196, 28.939220785492527 ], [ -82.012522173166218, 28.939844921100271 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jacona Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012523783883196, 28.939220785492527 ], [ -82.013591750406491, 28.939220186114657 ], [ -82.014347379226834, 28.939221830362683 ], [ -82.014556853801068, 28.93922352664228 ], [ -82.014629522740591, 28.939224341032009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gennesse Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013236555748193, 28.939844855477343 ], [ -82.013244619978792, 28.941550765957846 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Berkshire Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013964298721703, 28.939844784728759 ], [ -82.013965185020723, 28.941548894884697 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Auburndale Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013965185020723, 28.941548894884697 ], [ -82.013729773825958, 28.941550720089243 ], [ -82.013443183813521, 28.941550747929128 ], [ -82.013244619978792, 28.941550765957846 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Auburndale Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015130273116611, 28.941553359742588 ], [ -82.01498160353924, 28.941552923758696 ], [ -82.014771097616617, 28.941552163034263 ], [ -82.014436010406129, 28.941552448954781 ], [ -82.014163751378007, 28.941552476845512 ], [ -82.013965185020723, 28.941548894884697 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Radclife Berea Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006755488987451, 28.935879869915002 ], [ -82.006576181878359, 28.935975278567927 ], [ -82.006014315068157, 28.93635209079417 ], [ -82.005965188091864, 28.936384505000905 ], [ -82.005936020736797, 28.936402062114819 ], [ -82.005899176596685, 28.936433124166012 ], [ -82.00587614972406, 28.936461485993973 ], [ -82.005846981268121, 28.93649794976022 ], [ -82.005836237866291, 28.936516858661093 ], [ -82.005825491523709, 28.93653846542065 ], [ -82.005678124757296, 28.936824775390491 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Archer Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005678124757296, 28.936824775390491 ], [ -82.005834389153222, 28.936942979765156 ], [ -82.005891385648269, 28.93698627769411 ], [ -82.005922475300068, 28.937006027667536 ], [ -82.005941474411301, 28.937018939634321 ], [ -82.005968245466448, 28.937032612820296 ], [ -82.006029560155156, 28.937053121273731 ], [ -82.006114190864167, 28.937078945951171 ], [ -82.006276544160954, 28.937130594539223 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lexington Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006912825624298, 28.936516533941855 ], [ -82.006780835386621, 28.936585144273938 ], [ -82.006621082047317, 28.936691501407029 ], [ -82.006549408468103, 28.936736324291463 ], [ -82.006491553148749, 28.93677810850107 ], [ -82.006466510452768, 28.936800139120102 ], [ -82.006445785720615, 28.936816851422993 ], [ -82.006429378195349, 28.93683280560618 ], [ -82.006411245446799, 28.936849519594475 ], [ -82.006396565268417, 28.936866231625054 ], [ -82.006379295531872, 28.936889781351354 ], [ -82.006365480329791, 28.936911812364453 ], [ -82.006348209090206, 28.936945236793214 ], [ -82.006318851474418, 28.937009808932359 ], [ -82.006303311113413, 28.937052350059631 ], [ -82.006276544160954, 28.937130594539223 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Archer Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006983004480929, 28.937350397393384 ], [ -82.007052091277259, 28.937383818638036 ], [ -82.007241989374364, 28.937451591418995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Archer Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006276544160954, 28.937130594539223 ], [ -82.006934643965437, 28.937340270554046 ], [ -82.006983004480929, 28.937350397393384 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Archer Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006983004480929, 28.937350397393384 ], [ -82.007023303886243, 28.937329125675337 ], [ -82.007056694120109, 28.937309879930993 ], [ -82.007077416444304, 28.937287596772052 ], [ -82.007087779381607, 28.937256196434539 ], [ -82.007091230462791, 28.937216693833218 ], [ -82.007087774382185, 28.937178205747269 ], [ -82.006984121022398, 28.936790282060983 ], [ -82.006912825624298, 28.936516533941855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Archer Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005131903904811, 28.936482319543423 ], [ -82.005160941052708, 28.936485073249816 ], [ -82.005181667899151, 28.936489059771755 ], [ -82.005198506306144, 28.936494186925465 ], [ -82.005217936728314, 28.936499883334267 ], [ -82.005236395882065, 28.936507384362613 ], [ -82.005258849362988, 28.936518778647173 ], [ -82.005280439265718, 28.936531691519576 ], [ -82.005301165555252, 28.936545363248527 ], [ -82.005383639128112, 28.936603981443234 ], [ -82.005678124757296, 28.936824775390491 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winchester Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006405592263448, 28.935345071489387 ], [ -82.005877816751834, 28.935704086635145 ], [ -82.005448807145058, 28.935990054500589 ], [ -82.005365045362865, 28.936053107153452 ], [ -82.005338277353772, 28.936075138529411 ], [ -82.005323596122622, 28.936092611079065 ], [ -82.005308916973718, 28.936110843358737 ], [ -82.00529682760363, 28.93612603571572 ], [ -82.005283010258253, 28.936148828156863 ], [ -82.005253653162072, 28.936211878804023 ], [ -82.005131903904811, 28.936482319543423 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Archer Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006755488987451, 28.935879869915002 ], [ -82.006730316182328, 28.935798568954453 ], [ -82.006706131007846, 28.935697537474521 ], [ -82.006695765837549, 28.935657273971582 ], [ -82.006689625778648, 28.935637512204217 ], [ -82.006682810101722, 28.935623090244871 ], [ -82.0066776285624, 28.935611697212266 ], [ -82.006669854876591, 28.935597263566141 ], [ -82.006655173618924, 28.935575234721288 ], [ -82.006637902636854, 28.935556244919482 ], [ -82.006602493168643, 28.935522061300233 ], [ -82.006553269006218, 28.935479523045938 ], [ -82.006405592263448, 28.935345071489387 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Archer Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006225702526308, 28.934749562256911 ], [ -82.005932201198959, 28.934955515838517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Archer Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006405592263448, 28.935345071489387 ], [ -82.006028921090618, 28.934999065666805 ], [ -82.006005891903214, 28.934977796821762 ], [ -82.005990105929399, 28.934970013370222 ], [ -82.005970197681535, 28.93496260634042 ], [ -82.005932201198959, 28.934955515838517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Archer Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005932201198959, 28.934955515838517 ], [ -82.005886143343858, 28.934960584063699 ], [ -82.005837787730314, 28.934981854863619 ], [ -82.005665082941888, 28.935101380381624 ], [ -82.00537839473499, 28.935294848343897 ], [ -82.004855671339428, 28.935646333271507 ], [ -82.004825239723147, 28.935673753166107 ], [ -82.004810202408763, 28.935688086590453 ], [ -82.004797668660757, 28.935698008616885 ], [ -82.004771351187387, 28.935726675339122 ], [ -82.004758816819958, 28.935746522598897 ], [ -82.004743991158932, 28.935769905118264 ], [ -82.004729023124113, 28.935798266500122 ], [ -82.004517217105686, 28.936216041499826 ], [ -82.00444234318465, 28.936352313585321 ], [ -82.004423923010236, 28.936395868763405 ], [ -82.004411257843444, 28.936432331740249 ], [ -82.004395142664592, 28.936535644888011 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995748250826622, 28.95613712264274 ], [ -81.995723429963178, 28.95613574672953 ], [ -81.995560087712917, 28.956126144440073 ], [ -81.995404488791209, 28.956122536150755 ], [ -81.99525503125713, 28.956113528593821 ], [ -81.995197708952304, 28.956102722441585 ], [ -81.995155884181742, 28.956090003986969 ], [ -81.99510967334119, 28.956063104939226 ], [ -81.995074871216488, 28.956025290385583 ], [ -81.99504620956354, 28.955980272161234 ], [ -81.995031881022541, 28.955933455310792 ], [ -81.995029836918775, 28.955863229875934 ], [ -81.995029840803355, 28.955767796295195 ], [ -81.995031895470689, 28.955652553880821 ], [ -81.995029855912236, 28.955494096950474 ], [ -81.995029862490469, 28.9553662494381 ], [ -81.995029867864091, 28.955261812783764 ], [ -81.995027824887046, 28.955169978357695 ], [ -81.995027831844737, 28.955054736756921 ], [ -81.995029884170322, 28.954944897253224 ], [ -81.995029888246762, 28.954865669721709 ], [ -81.995036036787482, 28.954739624309198 ], [ -81.99506470921969, 28.954546956331598 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Benavides Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99506470921969, 28.954546956331598 ], [ -81.995173672758426, 28.954568184141536 ], [ -81.995332753200387, 28.954595004279767 ], [ -81.995482454056415, 28.954619417490175 ], [ -81.995738470110965, 28.954659647655152 ], [ -81.995763290516635, 28.95466343088026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Benavides Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994381818433993, 28.954289361293952 ], [ -81.994546745693526, 28.954392078890915 ], [ -81.994630683180787, 28.954433497576169 ], [ -81.994702337539678, 28.954458709645749 ], [ -81.994808797319607, 28.954487524118822 ], [ -81.994880453165408, 28.95450553400028 ], [ -81.994966437639391, 28.954525345374432 ], [ -81.99506470921969, 28.954546956331598 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Campos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993681577488758, 28.956144413946731 ], [ -81.993795671086772, 28.956147286896023 ], [ -81.993965180736637, 28.956144427356598 ], [ -81.994084399898739, 28.956145692414346 ], [ -81.994199051776107, 28.956145697564274 ], [ -81.994254330417533, 28.956138497920964 ], [ -81.994299374365823, 28.956116891820177 ], [ -81.994325992623544, 28.956082679889576 ], [ -81.994340325278898, 28.956035864211401 ], [ -81.994346705196321, 28.955933626729177 ], [ -81.99434750045674, 28.955700547693315 ], [ -81.994340506476448, 28.955424102368731 ], [ -81.99434319055689, 28.955047483221446 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moncayo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990865110696475, 28.955229172128771 ], [ -81.990937644338032, 28.955158925604007 ], [ -81.99104014635725, 28.955067774078199 ], [ -81.99110809800554, 28.955010045543641 ], [ -81.991171441631437, 28.954959406874082 ], [ -81.991209446840841, 28.954928009662328 ], [ -81.991250909133413, 28.954898640118781 ], [ -81.991287762848089, 28.954883449772403 ], [ -81.991325765529226, 28.954880413361288 ], [ -81.991355708386408, 28.954881428603024 ], [ -81.991393711041937, 28.954890546944739 ], [ -81.991422499222836, 28.95490979290074 ], [ -81.991457047325213, 28.954935116159081 ], [ -81.99148468189837, 28.954960440766222 ], [ -81.991514622452073, 28.954988802630144 ], [ -81.991554925909639, 28.95501412623382 ], [ -81.991591778338815, 28.955026284266495 ], [ -81.991642448645536, 28.95503844136244 ], [ -81.991702087668372, 28.955047342634199 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Olivarez Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990865110696475, 28.955229172128771 ], [ -81.991029725583786, 28.955395403603653 ], [ -81.991077212011376, 28.955437348049966 ], [ -81.991137792256055, 28.955489260976261 ], [ -81.991173555143661, 28.955514702587145 ], [ -81.991238183568285, 28.955544848855009 ], [ -81.99128480611013, 28.955554114873131 ], [ -81.991324555374746, 28.955560046454984 ], [ -81.991385538184204, 28.955561957901544 ], [ -81.991702044781391, 28.955561978228417 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Campos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989923689255676, 28.955209501341226 ], [ -81.990017346739592, 28.95530539318381 ], [ -81.99007876009874, 28.955360767841448 ], [ -81.990120216397145, 28.955397234359754 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Botello Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989923689255676, 28.955209501341226 ], [ -81.990063431863106, 28.955093369840309 ], [ -81.990250777615969, 28.954928624432213 ], [ -81.990385912936034, 28.954815193712491 ], [ -81.990499260943551, 28.954723567875746 ], [ -81.990605659228933, 28.954632929457091 ], [ -81.9906932470454, 28.954558348616619 ], [ -81.990775228966299, 28.954486736768605 ], [ -81.990865290672673, 28.954404495529978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Campos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990120216397145, 28.955397234359754 ], [ -81.990189306320701, 28.955456661732082 ], [ -81.990264540715074, 28.955524189393739 ], [ -81.990327490881867, 28.955582266412957 ], [ -81.990380059919033, 28.955630088101703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moncayo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990380059919033, 28.955630088101703 ], [ -81.99053018352015, 28.955505303000169 ], [ -81.990663783881544, 28.955387819709284 ], [ -81.990779144152938, 28.955295241869404 ], [ -81.990865110696475, 28.955229172128771 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duran Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990412096551253, 28.953983293403112 ], [ -81.990508822595331, 28.954071083465163 ], [ -81.990596338715847, 28.95415481880346 ], [ -81.990704939050445, 28.954250619212569 ], [ -81.990865290672673, 28.954404495529978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Acosta Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989757936856876, 28.954407298905153 ], [ -81.989846082018005, 28.954405049977094 ], [ -81.989902665475185, 28.954392890516985 ], [ -81.989944159581341, 28.954375201543648 ], [ -81.989998228584724, 28.95434202747575 ], [ -81.990095302408591, 28.954263381109861 ], [ -81.990145141145007, 28.954223850921466 ], [ -81.9901981080273, 28.954181914534232 ], [ -81.990293252258397, 28.954099029815549 ], [ -81.990412096551253, 28.953983293403112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Campos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989757936856876, 28.954407298905153 ], [ -81.989759468216761, 28.954450515191649 ], [ -81.989760999991034, 28.954489678383148 ], [ -81.989759459268143, 28.954538296451968 ], [ -81.989759450594804, 28.954623377151901 ], [ -81.989762514775066, 28.954685499275001 ], [ -81.989760972735795, 28.95475707525366 ], [ -81.989760968117906, 28.954812445288674 ], [ -81.989765567188485, 28.954873217700417 ], [ -81.989771703751089, 28.954927237479186 ], [ -81.989783983076308, 28.954974505883225 ], [ -81.989799332935746, 28.955021773620544 ], [ -81.989822359974539, 28.95507579560072 ], [ -81.989853065028058, 28.955128466533338 ], [ -81.98989403490576, 28.955174843857129 ], [ -81.989923689255676, 28.955209501341226 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Campos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989483858618286, 28.953975875424717 ], [ -81.989610561738587, 28.954100725638675 ], [ -81.989647408784705, 28.954139892506319 ], [ -81.989679649930494, 28.954185811756219 ], [ -81.989705427071655, 28.954240542276747 ], [ -81.989728746735651, 28.954300039408615 ], [ -81.989745069425126, 28.954353381460848 ], [ -81.989757936856876, 28.954407298905153 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Navidad Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987984646163156, 28.95345602231103 ], [ -81.988126003574365, 28.953582033801901 ], [ -81.988274900899953, 28.953722968815139 ], [ -81.988399807584912, 28.953833458234289 ], [ -81.988481439107531, 28.953910398372344 ], [ -81.988557240166372, 28.953982209329446 ], [ -81.988633042485915, 28.954043762087345 ], [ -81.98869143990143, 28.954102660578503 ], [ -81.988729136528661, 28.954137479625675 ], [ -81.988781910650431, 28.954182247708001 ], [ -81.988827146076915, 28.954222038993894 ], [ -81.988857303388855, 28.954248568013099 ], [ -81.988924587496399, 28.954287408299997 ], [ -81.988994564391987, 28.954300236606517 ], [ -81.989052878557317, 28.954297677130047 ], [ -81.98911702714652, 28.954274602699417 ], [ -81.98918992667177, 28.954222036643031 ], [ -81.989306566875115, 28.954123572699892 ], [ -81.989412490711899, 28.954031836186925 ], [ -81.989483858618286, 28.953975875424717 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Navidad Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989483858618286, 28.953975875424717 ], [ -81.989693810794606, 28.953791252363036 ], [ -81.989954564901083, 28.95356866168979 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duran Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988944753609502, 28.95265048281097 ], [ -81.989076136267713, 28.95276884916974 ], [ -81.989172669188264, 28.952857207732787 ], [ -81.989275650630745, 28.952948659805351 ], [ -81.989382269367539, 28.953046399260508 ], [ -81.989469783300365, 28.953124396766313 ], [ -81.989568811330301, 28.953217589719763 ], [ -81.989662371375033, 28.953302723802338 ], [ -81.989761495633616, 28.95339120485071 ], [ -81.989854789974274, 28.953479430028992 ], [ -81.989954564901083, 28.95356866168979 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duran Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989954564901083, 28.95356866168979 ], [ -81.990053591892661, 28.953660248201079 ], [ -81.990160875999422, 28.95375630881685 ], [ -81.990271228216031, 28.953857774300168 ], [ -81.990344924889584, 28.953923615435674 ], [ -81.990412096551253, 28.953983293403112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duran Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987533936007637, 28.953043532218381 ], [ -81.987653493762707, 28.952930709085933 ], [ -81.987872897642461, 28.95273610766036 ], [ -81.988044236158331, 28.952594803543224 ], [ -81.988103239494194, 28.952542670810214 ], [ -81.98814930794353, 28.952504185866466 ], [ -81.988197678859208, 28.952470765677145 ], [ -81.988251268981358, 28.952440953296819 ], [ -81.98830958390829, 28.952423007354874 ], [ -81.988370814788652, 28.9524101920763 ], [ -81.988455370401908, 28.952402505628324 ], [ -81.988534094051019, 28.95240251336914 ], [ -81.988610465807838, 28.952416786099125 ], [ -81.988680426735229, 28.952441543773869 ], [ -81.988735269031636, 28.952469206409422 ], [ -81.988807837914337, 28.952529905238805 ], [ -81.988914140355547, 28.952622732965956 ], [ -81.988944753609502, 28.95265048281097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989177370347889, 28.951983506081348 ], [ -81.989225589671904, 28.952028792448942 ], [ -81.989496167451222, 28.952284849519657 ], [ -81.989670084086598, 28.952443343604735 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969666196782811, 28.951998242956815 ], [ -81.969339238003812, 28.952015959805816 ], [ -81.96898191909176, 28.952038302093694 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96898191909176, 28.952038302093694 ], [ -81.96882069428969, 28.95204434155136 ], [ -81.968584970006873, 28.952059163396754 ], [ -81.96844284466691, 28.952062419705172 ], [ -81.968384238336938, 28.952053354977878 ], [ -81.968323211232601, 28.952030045168151 ], [ -81.968290974530007, 28.952005727980847 ], [ -81.968263346435918, 28.951976848086066 ], [ -81.968233444104087, 28.951914339222288 ], [ -81.968203558040287, 28.951799198759034 ], [ -81.968173582633881, 28.951564934060077 ], [ -81.968149066167143, 28.951406471301883 ], [ -81.96813068678928, 28.951257012165737 ], [ -81.968114351744546, 28.95111835845913 ], [ -81.968106197372322, 28.95100491493567 ], [ -81.968099114108099, 28.950901121679706 ], [ -81.968105767103893, 28.95080401768168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Esparza Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968835358495582, 28.9508148213223 ], [ -81.968835877989292, 28.950996692863477 ], [ -81.968861991463001, 28.951223678648841 ], [ -81.968893425430565, 28.951439677545793 ], [ -81.968925440520152, 28.95165791515015 ], [ -81.968951562245223, 28.951855295794363 ], [ -81.96898191909176, 28.952038302093694 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970386878937717, 28.951965693670619 ], [ -81.970104736624137, 28.951979810420802 ], [ -81.969736074026898, 28.951998258785423 ], [ -81.969666196782811, 28.951998242956815 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971097444036204, 28.951949527570495 ], [ -81.970757494963607, 28.95194945366319 ], [ -81.970547738520338, 28.9519589493704 ], [ -81.970386878937717, 28.951965693670619 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Contreras Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970307057561726, 28.950845972084046 ], [ -81.97029869636566, 28.950986236055577 ], [ -81.970307485582765, 28.951115627602888 ], [ -81.970328040089257, 28.951260547498318 ], [ -81.970351530314346, 28.951420996485322 ], [ -81.970375430103346, 28.951737795626119 ], [ -81.970386878937717, 28.951965693670619 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972537121336188, 28.951951748417542 ], [ -81.972258664945898, 28.951951971534605 ], [ -81.971817738930639, 28.951949712008076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968019893341776, 28.938064390360353 ], [ -81.96833899739417, 28.938057666530636 ], [ -81.968422911719784, 28.938057686352991 ], [ -81.968877825769582, 28.938051964986808 ], [ -81.968908742436, 28.938051972172318 ], [ -81.968926408662909, 28.938051976275041 ], [ -81.96894517960574, 28.938051981534063 ], [ -81.968966158955411, 28.938051986400275 ], [ -81.968984929898525, 28.93805199075145 ], [ -81.969004804824138, 28.938051023585178 ], [ -81.969023990861075, 28.938052121607242 ], [ -81.969041930595125, 28.938053338441065 ], [ -81.969055732879738, 28.938053342535266 ], [ -81.969072156760461, 28.938053952673094 ], [ -81.969086510890406, 28.938053956891675 ], [ -81.969101969155261, 28.938055901295463 ], [ -81.969119048198706, 28.938057454475924 ], [ -81.969136300147014, 28.93806049377212 ], [ -81.969157001641918, 28.938063534763408 ], [ -81.969175977399317, 28.938068090305482 ], [ -81.969194954183294, 28.93807264855198 ], [ -81.969217379490047, 28.93807720578447 ], [ -81.969239807875667, 28.938081763916209 ], [ -81.969281209525491, 28.938092396131452 ], [ -81.969317264320239, 28.938105487663609 ], [ -81.969351937567524, 28.938118212538413 ], [ -81.969391615106503, 28.93813188054369 ], [ -81.969427837654607, 28.938150099820604 ], [ -81.969464065343502, 28.938168320893471 ], [ -81.969495112630113, 28.938188056629514 ], [ -81.969534786049678, 28.938212347297192 ], [ -81.969571008462196, 28.938238155729014 ], [ -81.969600331079278, 28.938259407804409 ], [ -81.96962620415475, 28.938280660895039 ], [ -81.969677831260739, 28.9383199891553 ], [ -81.969714668139275, 28.938349368966378 ], [ -81.969750353699524, 28.938383815789209 ], [ -81.969777980679552, 28.938409144005753 ], [ -81.969810212620288, 28.938443588227827 ], [ -81.969841290193017, 28.93847600653222 ], [ -81.969880428456136, 28.938517543420677 ], [ -81.969907338812902, 28.938552378918882 ], [ -81.970107372408094, 28.938884781870602 ], [ -81.970403978276025, 28.939370485759117 ], [ -81.970611704160959, 28.939720465403123 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Haynesville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972886963435499, 28.901974433306101 ], [ -81.972949337728863, 28.901949528942115 ], [ -81.97304143158992, 28.901909033400091 ], [ -81.973148874700044, 28.901859085685242 ], [ -81.97323943376243, 28.901817238958152 ], [ -81.973341576370416, 28.90176779712116 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973647926664242, 28.90222107160368 ], [ -81.973583130255705, 28.902130623237198 ], [ -81.973501818914286, 28.902021217883338 ], [ -81.973443522983473, 28.901933421687385 ], [ -81.973380624982511, 28.901830771810261 ], [ -81.973341576370416, 28.90176779712116 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973341576370416, 28.90176779712116 ], [ -81.973310908580572, 28.901715310607514 ], [ -81.973260972762048, 28.901620071127759 ], [ -81.973224156056887, 28.90154713637202 ], [ -81.973181206688011, 28.901466097733863 ], [ -81.973152064642605, 28.901398566556903 ], [ -81.973116788266012, 28.901317529434873 ], [ -81.973067708312371, 28.901201377469636 ], [ -81.973027834541185, 28.901091979241794 ], [ -81.973000230191616, 28.901010943630933 ], [ -81.972975694464395, 28.900931259374246 ], [ -81.97295576367226, 28.900855627364372 ], [ -81.972935254881847, 28.900802357809862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972935254881847, 28.900802357809862 ], [ -81.972920370455697, 28.900740535595762 ], [ -81.972903639363366, 28.900643588313461 ], [ -81.972882183254839, 28.900535544500922 ], [ -81.972856132627328, 28.900384283241372 ], [ -81.972836227687765, 28.900207363641989 ], [ -81.972828579410304, 28.900118230289664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Honea Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972828579410304, 28.900118230289664 ], [ -81.973078069796784, 28.900101769513942 ], [ -81.97379125712294, 28.899950172297608 ], [ -81.974272397278725, 28.899835993968324 ], [ -81.974419293561823, 28.89980230230325 ], [ -81.974474648961902, 28.899776086646394 ], [ -81.974510846893992, 28.899744247801546 ], [ -81.97454065820952, 28.89970678821367 ], [ -81.974557847916614, 28.899662863052363 ], [ -81.974564097090152, 28.899618747229493 ], [ -81.974553466737717, 28.899562545511341 ], [ -81.974464563107574, 28.899331101496337 ], [ -81.974377502924256, 28.899105910700893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972828579410304, 28.900118230289664 ], [ -81.972822461968576, 28.900033146764372 ], [ -81.972808694600502, 28.899857579138928 ], [ -81.972807205856824, 28.899690115744626 ], [ -81.97280877932829, 28.899540212610155 ], [ -81.97281341558751, 28.899417316808119 ], [ -81.972824190276327, 28.899295773893584 ], [ -81.9728395690897, 28.899176933393445 ], [ -81.972858016118309, 28.899052691446443 ], [ -81.972882605269234, 28.898931152222179 ], [ -81.972905654564229, 28.898816363681973 ], [ -81.972931780046068, 28.898681319141051 ], [ -81.972968657265227, 28.898507112466095 ], [ -81.973002462674444, 28.898343709288156 ], [ -81.973036266565202, 28.898185707260708 ], [ -81.973068537147526, 28.898025004330908 ], [ -81.973097732859117, 28.897879157129655 ], [ -81.973125388918589, 28.897758966490734 ], [ -81.97314075452536, 28.897684693196407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "James Island Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982722528499067, 28.872230132265972 ], [ -81.983102927556601, 28.872331621410218 ], [ -81.983806863917593, 28.87252837813892 ], [ -81.984009271943322, 28.872584373276339 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Little Mountain Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982628416392004, 28.872910792885474 ], [ -81.982648810215721, 28.872647429616094 ], [ -81.982656509702181, 28.872484018176085 ], [ -81.9826856829674, 28.872355723530813 ], [ -81.982722528499067, 28.872230132265972 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "James Island Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981933551464238, 28.872029723022429 ], [ -81.982055144503619, 28.872051777247265 ], [ -81.982257661160745, 28.872103123661237 ], [ -81.982722528499067, 28.872230132265972 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "James Island Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981114553079081, 28.87214453342904 ], [ -81.981351951510092, 28.872064468430757 ], [ -81.9815611099215, 28.872027401970453 ], [ -81.981705334235585, 28.872017968360325 ], [ -81.981814167563385, 28.872019084923576 ], [ -81.981933551464238, 28.872029723022429 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heath Springs Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978703302651567, 28.875564058535083 ], [ -81.978719582721567, 28.875410053457227 ], [ -81.978735447696167, 28.875349584578803 ], [ -81.97877497241781, 28.875259282118716 ], [ -81.978838541694671, 28.875136795618051 ], [ -81.978887450617876, 28.875019353349984 ], [ -81.978926982183026, 28.874879431427914 ], [ -81.978957527006003, 28.874751901202135 ], [ -81.978973407282083, 28.874620498688127 ], [ -81.978972117559138, 28.874465834821802 ], [ -81.978957619154826, 28.874301867039048 ], [ -81.978932543754979, 28.874172783307635 ], [ -81.978852773022723, 28.873932999169138 ], [ -81.97881636089528, 28.873785526495681 ], [ -81.978805168348714, 28.873718130842928 ], [ -81.978795253945748, 28.873636674810125 ], [ -81.978792632474594, 28.873543644291736 ], [ -81.978803225434461, 28.873421542773706 ], [ -81.978825709182189, 28.873311073815429 ], [ -81.978860534712723, 28.87320734339329 ], [ -81.978892772903521, 28.873118214516097 ], [ -81.978926547076981, 28.873016931855123 ], [ -81.978961868609773, 28.872902924252781 ], [ -81.97898796815835, 28.872784653615831 ], [ -81.979006408656261, 28.872638802888062 ], [ -81.97901006459638, 28.872546223593783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Angelita Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961582331335322, 28.933869708001573 ], [ -81.961587764191734, 28.933875882154865 ], [ -81.961594276772388, 28.933885710909649 ], [ -81.96159985741653, 28.933897176159071 ], [ -81.961603578973182, 28.933904548068245 ], [ -81.961609158820451, 28.933920927212188 ], [ -81.96161024973145, 28.933933128349285 ], [ -81.961609148368694, 28.933946313261448 ], [ -81.961607280234375, 28.933961053509393 ], [ -81.961604484341194, 28.93397169797732 ], [ -81.961599823961137, 28.933987255806031 ], [ -81.961594234604533, 28.934001994085033 ], [ -81.961585848897357, 28.934017551747729 ], [ -81.961571876868817, 28.934039659367368 ], [ -81.961557905252164, 28.93406340194295 ], [ -81.961492702347201, 28.934166565994989 ], [ -81.961330631019322, 28.93442163943622 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dumas Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960333426915142, 28.932608549166829 ], [ -81.960353870933432, 28.932624236192616 ], [ -81.960375272930676, 28.932647990913971 ], [ -81.960390157442859, 28.932672562086999 ], [ -81.960418994086012, 28.932729894279948 ], [ -81.960446898642289, 28.932783949959816 ], [ -81.960479459203199, 28.932839646475614 ], [ -81.960509229676973, 28.932887968610324 ], [ -81.96054271988568, 28.932942847002817 ], [ -81.960572490952998, 28.932987075412928 ], [ -81.960617151552583, 28.933048428327893 ], [ -81.960645835728897, 28.933086544258956 ], [ -81.96069508818961, 28.933148483182329 ], [ -81.960725397349321, 28.933183267398995 ], [ -81.960774109424065, 28.933242347665448 ], [ -81.960809831560923, 28.933284276912069 ], [ -81.96085475531126, 28.933336686280139 ], [ -81.960887775889617, 28.933367659057279 ], [ -81.960939740277624, 28.933416737375342 ], [ -81.960971675240572, 28.933446281483079 ], [ -81.961026888195221, 28.933497740965723 ], [ -81.961071819626881, 28.933533003058905 ], [ -81.961129199210305, 28.933578274290923 ], [ -81.961180084978764, 28.933615919229521 ], [ -81.961247212112212, 28.933663097075236 ], [ -81.961300806369522, 28.933696455950276 ], [ -81.961371473527237, 28.933742954425863 ], [ -81.961514995788008, 28.933822299276887 ], [ -81.96155240103667, 28.933846390446686 ], [ -81.961571945158312, 28.933858679888488 ], [ -81.961582321083412, 28.933869694464217 ], [ -81.961582331335322, 28.933869708001573 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rivera Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958350798838069, 28.931680215723368 ], [ -81.958350959622493, 28.931762379625997 ], [ -81.958352886055522, 28.9318331959166 ], [ -81.958358314252663, 28.931939424748748 ], [ -81.958363561967516, 28.932009900099295 ], [ -81.958374265375411, 28.932115786792078 ], [ -81.9583830311811, 28.932186264134661 ], [ -81.958399010990902, 28.932291463107592 ], [ -81.958403772942859, 28.932312551209282 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rivera Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958403772942859, 28.932312551209282 ], [ -81.958417556397279, 28.932375393083262 ], [ -81.958438813668764, 28.932479907039305 ], [ -81.958454417148573, 28.932549354268243 ], [ -81.958480753054516, 28.932652839368512 ], [ -81.958500069832979, 28.932721600192018 ], [ -81.958520558104752, 28.932790016698075 ], [ -81.958560144789843, 28.932924629624747 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palma Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958350798838069, 28.931680215723368 ], [ -81.958210395743521, 28.931700224627079 ], [ -81.958038172056931, 28.931728012035698 ], [ -81.957912497631767, 28.931745171279712 ], [ -81.957817542015391, 28.931757424373849 ], [ -81.957723052087943, 28.931769541301342 ], [ -81.957632442761536, 28.931780432268116 ], [ -81.957535472678927, 28.931787635285829 ], [ -81.957427486140617, 28.93179906469328 ], [ -81.957137042262303, 28.931818626838723 ], [ -81.957041160973048, 28.931824328430107 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palma Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957041160973048, 28.931824328430107 ], [ -81.956970412424297, 28.931825943408327 ], [ -81.956540184197252, 28.931841227571045 ], [ -81.956136797018516, 28.93185092311051 ], [ -81.956012472939278, 28.931851201796658 ], [ -81.955959047875623, 28.931857899136851 ], [ -81.955929789729836, 28.931864601693714 ], [ -81.955900528243035, 28.931879139769443 ], [ -81.955877764618066, 28.931893151232376 ], [ -81.955860955578856, 28.931903459829996 ], [ -81.955844736005787, 28.931914456168091 ], [ -81.95582164331644, 28.931932824693689 ], [ -81.955796191502856, 28.93195855155227 ], [ -81.955777099548257, 28.931989875632272 ], [ -81.955755456187944, 28.932036864506081 ], [ -81.955743987990317, 28.932082738791678 ], [ -81.955740138994557, 28.93216106571278 ], [ -81.955745709979695, 28.932488585130944 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 103", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028796095319493, 28.934630061296954 ], [ -82.028796130351139, 28.934630641464661 ], [ -82.028801373467957, 28.934716368221789 ], [ -82.028798915604227, 28.935318234016261 ], [ -82.028774877967294, 28.937795114891216 ], [ -82.028775022599618, 28.938323080218556 ], [ -82.028755520435041, 28.941112161500637 ], [ -82.028750792908426, 28.942350761867292 ], [ -82.028751151392498, 28.943669557627949 ], [ -82.028759022777933, 28.944678701852173 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028762333855667, 28.930960145182951 ], [ -82.029209741518912, 28.930957477282401 ], [ -82.029343944044697, 28.930960101375639 ], [ -82.029445432191636, 28.930959581552187 ], [ -82.029766605841203, 28.930962183889374 ], [ -82.030156288870714, 28.930936804687356 ], [ -82.030781702236311, 28.930937954098511 ], [ -82.031739663718753, 28.930941294104869 ], [ -82.03193443838633, 28.930962802826517 ], [ -82.032268686188317, 28.930968640795548 ], [ -82.032837987513474, 28.930968850069551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 103", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028762333855667, 28.930960145182951 ], [ -82.028755235046901, 28.932235195193577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 103", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02874903176135, 28.928943004181768 ], [ -82.028753052066563, 28.929663251103168 ], [ -82.028769852011905, 28.930469880952852 ], [ -82.028762333855667, 28.930960145182951 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wedgewood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026822102021072, 28.928447875481865 ], [ -82.027300091477656, 28.928452322569413 ], [ -82.027424021510427, 28.928464756766349 ], [ -82.027512545893686, 28.928486543917732 ], [ -82.02763294746876, 28.92854881959348 ], [ -82.028114568406735, 28.928832183147421 ], [ -82.028188008102589, 28.928869372407288 ], [ -82.028278866911421, 28.928904874356547 ], [ -82.02838183473979, 28.928929717638695 ], [ -82.02850296812359, 28.928936797201189 ], [ -82.02874903176135, 28.928943004181768 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wedgewood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02874903176135, 28.928943004181768 ], [ -82.02892086556389, 28.928937999127974 ], [ -82.029061953179522, 28.928927516224789 ], [ -82.029099174392016, 28.9289186568217 ], [ -82.02918372758603, 28.928893519872833 ], [ -82.029287676682898, 28.928842541518659 ], [ -82.029390136620222, 28.928781110317814 ], [ -82.029465858451999, 28.928706621361979 ], [ -82.029595048092361, 28.928629505983668 ], [ -82.029761361994161, 28.928539317198773 ], [ -82.029887585103822, 28.928480493503688 ], [ -82.029967778589565, 28.928458265108503 ], [ -82.030009358262078, 28.928441270312874 ], [ -82.030254409800477, 28.928441216449464 ], [ -82.030765795901189, 28.928441157647967 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 122", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013164651354074, 28.897925331565183 ], [ -82.013050325407676, 28.897944706423246 ], [ -82.012916436519092, 28.897951647486526 ], [ -82.012754982616698, 28.897951663053377 ], [ -82.012381625249787, 28.897953170580614 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 97th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012381625249787, 28.897953170580614 ], [ -82.012374124302369, 28.898028505100548 ], [ -82.012310010646772, 28.898062594139528 ], [ -82.012227315652439, 28.898086859616939 ], [ -82.01210917596633, 28.89805914661903 ], [ -82.011983157508737, 28.898021037891692 ], [ -82.011853201841987, 28.897982929375051 ], [ -82.011664174186095, 28.897913639428776 ], [ -82.011530282292114, 28.897892856872982 ], [ -82.011463337169417, 28.897875535435684 ], [ -82.011360946680028, 28.897833959387963 ], [ -82.011278246121421, 28.897785451142067 ], [ -82.011164036512852, 28.897691893516686 ], [ -82.011014386372736, 28.897587945853907 ], [ -82.010888367107427, 28.897511717561891 ], [ -82.010829293454336, 28.897470136889659 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 132A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020739540869386, 28.882903960366413 ], [ -82.020499690021779, 28.882795930947243 ], [ -82.016972305587302, 28.882786786323518 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clyde Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033444561057578, 28.870246561137392 ], [ -82.033325167086758, 28.870251981382754 ], [ -82.033043835999322, 28.870276745290258 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walden Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033043835999322, 28.870276745290258 ], [ -82.033073544493917, 28.870306287656611 ], [ -82.033086470801408, 28.870352885768778 ], [ -82.033083914222715, 28.87043472252007 ], [ -82.033085259115609, 28.870608622065362 ], [ -82.03308787958224, 28.870727964479585 ], [ -82.033098795355244, 28.870812550909509 ], [ -82.033077413540823, 28.870960768263362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 131st Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087790846241575, 28.564169954786653 ], [ -82.087495806803545, 28.564167149496136 ], [ -82.087154992175428, 28.564171858551308 ], [ -82.086871820818388, 28.564166049467612 ], [ -82.086354652861914, 28.564161884421413 ], [ -82.086052993282351, 28.56416520800186 ], [ -82.085551155906245, 28.564091782377965 ], [ -82.085227802622882, 28.5640201281395 ], [ -82.085107960057357, 28.5639962516114 ], [ -82.084425225865772, 28.564036592706728 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 755", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087783127295623, 28.566552334075396 ], [ -82.087783790063014, 28.565543426440584 ], [ -82.087790846241575, 28.564169954786653 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 130th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091431048383868, 28.566596996459158 ], [ -82.091038611272182, 28.566599048097657 ], [ -82.090665572041459, 28.566603785584366 ], [ -82.090216221935293, 28.566602586156133 ], [ -82.089907616560993, 28.566607280013997 ], [ -82.08971600719606, 28.566605908634273 ], [ -82.089361617078552, 28.56660913423309 ], [ -82.089190353867906, 28.566607748838951 ], [ -82.088818991350863, 28.566590025270497 ], [ -82.088605334392668, 28.566584177440305 ], [ -82.088278062519834, 28.566570915751981 ], [ -82.087916880809971, 28.566562166013071 ], [ -82.087783127295623, 28.566552334075396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 478A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.095239010482473, 28.580760035195858 ], [ -82.095171679075378, 28.580899831705459 ], [ -82.09495457734532, 28.581362975345062 ], [ -82.094804800709383, 28.581677817741426 ], [ -82.094670107259319, 28.581928242003194 ], [ -82.094590369411961, 28.582052249441571 ], [ -82.094536749916273, 28.582132490443044 ], [ -82.094404738617897, 28.582301494961659 ], [ -82.094274084576611, 28.582452270159195 ], [ -82.094207325383408, 28.582523247585925 ], [ -82.094154220818382, 28.582577339046104 ], [ -82.094105639444322, 28.582621916668746 ], [ -82.094044605459345, 28.582677617903805 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Graham Lee Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107910169317165, 28.584101491101002 ], [ -82.107700378679112, 28.584047068312831 ], [ -82.107364192152104, 28.583976127837897 ], [ -82.106958070872295, 28.583883880964088 ], [ -82.106560039281973, 28.583810615492162 ], [ -82.106317999807573, 28.583775203708509 ], [ -82.106140502595821, 28.583744485036188 ], [ -82.105917292358825, 28.583713804250205 ], [ -82.105575717014048, 28.583630996785772 ], [ -82.10476621955803, 28.583493958596595 ], [ -82.104489211696276, 28.583444328634073 ], [ -82.104241803305172, 28.583413663572589 ], [ -82.104118100329515, 28.583399516100314 ], [ -82.103986320274416, 28.583375881998048 ], [ -82.10381689814524, 28.583352276343113 ], [ -82.103577552543399, 28.583319228980148 ], [ -82.103335506920899, 28.583274316509229 ], [ -82.103082714142985, 28.583236532101264 ], [ -82.102262473442792, 28.583106608349802 ], [ -82.101313153235537, 28.582960161325982 ], [ -82.100654295080744, 28.58287520468172 ], [ -82.100189051765526, 28.582806715352316 ], [ -82.099904012295426, 28.582787935747966 ], [ -82.099616296749247, 28.582783397384343 ], [ -82.098755834384406, 28.58276503577946 ], [ -82.098468129823871, 28.582769988534814 ], [ -82.097798599997219, 28.582772843624372 ], [ -82.097131754462325, 28.582773318535274 ], [ -82.096628925108362, 28.582764180005903 ], [ -82.096010470130992, 28.582752747603081 ], [ -82.095484777922437, 28.58275151637925 ], [ -82.094836557162949, 28.582743982172413 ], [ -82.094242282255877, 28.582753287893173 ], [ -82.094158027527854, 28.582739035594265 ], [ -82.094099826933274, 28.582715109352151 ], [ -82.094044605459345, 28.582677617903805 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 478A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.094044605459345, 28.582677617903805 ], [ -82.093922593996197, 28.582783798386277 ], [ -82.093810460085635, 28.582865330776652 ], [ -82.093647077143018, 28.582981025695631 ], [ -82.093488808793239, 28.583078809905501 ], [ -82.093306689255556, 28.583177453878854 ], [ -82.093022534537539, 28.583318267638504 ], [ -82.092746961907238, 28.583456550229169 ], [ -82.092256838836505, 28.583698547136112 ], [ -82.091737153447809, 28.583954875958685 ], [ -82.091474770374376, 28.584084120972758 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 478A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091474770374376, 28.584084120972758 ], [ -82.091347152684548, 28.584151332436726 ], [ -82.091225101952972, 28.584217093614242 ], [ -82.091086841558138, 28.584292126220845 ], [ -82.090935240339945, 28.584384009795475 ], [ -82.090775058475032, 28.584482635787875 ], [ -82.0906673220003, 28.584554281082358 ], [ -82.090561730131157, 28.584623532758787 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 643", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.250180539906509, 28.636242905084689 ], [ -82.250223266294455, 28.636253291221365 ], [ -82.250268340695456, 28.636253207733066 ], [ -82.251390457059529, 28.636251123576816 ], [ -82.251888604292148, 28.63623135956157 ], [ -82.252045148750057, 28.636218508942338 ], [ -82.252189615695414, 28.636172029070114 ], [ -82.252282840790286, 28.636151701413247 ], [ -82.252410307170649, 28.636142479710465 ], [ -82.252547930113167, 28.636152686891911 ], [ -82.252792359510678, 28.636185718073023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Afton Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014368772394292, 28.917376938343974 ], [ -82.014700599078694, 28.917379102806571 ], [ -82.015277465421121, 28.917379040095753 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Afton Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014366315924519, 28.917704169980816 ], [ -82.014368772394292, 28.917376938343974 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alcott Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015841407365627, 28.915363320439052 ], [ -82.015904288341787, 28.915182487588954 ], [ -82.016023034803325, 28.914914179643898 ], [ -82.016084794784746, 28.914797889930014 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alcott Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016084794784746, 28.914797889930014 ], [ -82.016158645662983, 28.914697556810051 ], [ -82.016330307300592, 28.91447329889337 ], [ -82.016436320349641, 28.914352207213948 ], [ -82.016666695182764, 28.914078727040643 ], [ -82.016775752379289, 28.913965714794177 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alcove Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975570066601335, 28.870019718103777 ], [ -81.975646674463377, 28.869952770338841 ], [ -81.97577226800685, 28.86984700168821 ], [ -81.975939129545765, 28.86969228859088 ], [ -81.976064725999649, 28.869580201737485 ], [ -81.976193906462868, 28.86946969443251 ], [ -81.97631770683293, 28.869356027989642 ], [ -81.976419978022037, 28.869262884136734 ], [ -81.976515067712413, 28.869177635000714 ], [ -81.976606569697537, 28.869109753603539 ], [ -81.976671138082466, 28.869064834679683 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alcove Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978401517044048, 28.86898026788446 ], [ -81.978424526058731, 28.869041061565721 ], [ -81.978422450329106, 28.869084966401811 ], [ -81.978408270644238, 28.86915354817982 ], [ -81.978382281090617, 28.869232519874405 ], [ -81.978347997607074, 28.869302339063172 ], [ -81.978301971212957, 28.869390458656408 ], [ -81.978235837286817, 28.869506832392066 ], [ -81.978146086151213, 28.869650222608513 ], [ -81.978082314244688, 28.86975412862563 ], [ -81.978018543681074, 28.869855954802532 ], [ -81.977964225705861, 28.869912061002974 ], [ -81.977924081504057, 28.869943228960093 ], [ -81.977888662890592, 28.869959848048801 ], [ -81.977820186420686, 28.869978542366326 ], [ -81.977739908971813, 28.86998476305455 ], [ -81.977671406388211, 28.869977161474104 ], [ -81.977586447886424, 28.869939015951015 ], [ -81.977510905771581, 28.869891201071887 ], [ -81.977433000834537, 28.869839230646253 ], [ -81.977291357698718, 28.869739447167959 ], [ -81.977178045298714, 28.869650061098113 ], [ -81.977085981828537, 28.869568990585901 ], [ -81.97700336044835, 28.869492079444512 ], [ -81.976923104286044, 28.869404777736438 ], [ -81.97684993283066, 28.86931123958281 ], [ -81.976795645044191, 28.86923641121049 ], [ -81.976753158252194, 28.869182366710852 ], [ -81.976671138082466, 28.869064834679683 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allenwood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961860737850216, 28.884817622347772 ], [ -81.961885736125325, 28.884819004556253 ], [ -81.961931828765429, 28.884815923648663 ], [ -81.962021473561293, 28.884809761067253 ], [ -81.962228699565358, 28.884787817844511 ], [ -81.962469713489938, 28.884762789766487 ], [ -81.962647186717064, 28.884743461467092 ], [ -81.962805908214747, 28.884717079864732 ], [ -81.962989248792411, 28.884682834998525 ], [ -81.963164255124539, 28.884643348835429 ], [ -81.96334278061434, 28.884590111436598 ], [ -81.963519548898631, 28.884533437360702 ], [ -81.963626708397854, 28.884497081163548 ], [ -81.963715370014938, 28.884460610701549 ], [ -81.96377696807285, 28.884409594101015 ], [ -81.96381017319554, 28.884357824516186 ], [ -81.963821373983365, 28.884298030242071 ], [ -81.963817876687571, 28.884246119017341 ], [ -81.963792908103059, 28.884166013212482 ], [ -81.963764412505498, 28.884104468587328 ], [ -81.963714452089192, 28.884002352500687 ], [ -81.963673046246214, 28.883943564501973 ], [ -81.963630823417489, 28.883905051876667 ], [ -81.963584228481039, 28.883883025799467 ], [ -81.963493563816925, 28.883867840700542 ], [ -81.963448200319277, 28.883871601774455 ], [ -81.963408161994764, 28.883880400930089 ], [ -81.963268780237229, 28.883930177990472 ], [ -81.963136018730594, 28.883975281000826 ], [ -81.962986316324361, 28.884021227371345 ], [ -81.962841890726054, 28.884055164506801 ], [ -81.962673158558886, 28.884091611246241 ], [ -81.962478932540719, 28.884113741958473 ], [ -81.962287725941366, 28.884129501189079 ], [ -81.962130702248515, 28.884132550962601 ], [ -81.961932472279628, 28.884127682909625 ], [ -81.961759294355161, 28.884119773732564 ], [ -81.961681229991896, 28.884122738985749 ], [ -81.961629180182157, 28.884139651282624 ], [ -81.961588443421405, 28.884159554316401 ], [ -81.961552229604663, 28.884188421189819 ], [ -81.961516003193651, 28.884251140580016 ], [ -81.961475234897179, 28.884355680308641 ], [ -81.961441364720798, 28.88444484769834 ], [ -81.961398555608341, 28.884542468872567 ], [ -81.961334828760243, 28.88470127625488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allenwood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961334828760243, 28.88470127625488 ], [ -81.96140376243855, 28.884724672007358 ], [ -81.961564476752002, 28.884779721493597 ], [ -81.961649144202724, 28.88480106618378 ], [ -81.961723489535416, 28.884814930509144 ], [ -81.961803559750251, 28.884817469839042 ], [ -81.961860737850216, 28.884817622347772 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ambrosia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958960363339685, 28.879342190883225 ], [ -81.959016366180009, 28.879341034094651 ], [ -81.95922037222077, 28.879339923218691 ], [ -81.959504390709668, 28.879313016828419 ], [ -81.959792397156832, 28.879311931298766 ], [ -81.960242998627507, 28.879322212777016 ], [ -81.961006170814528, 28.879338773695341 ], [ -81.961109522255924, 28.879322265389174 ], [ -81.961216009656127, 28.879291977055985 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ambrosia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958228365380791, 28.879290329139526 ], [ -81.958497706163399, 28.879288064869289 ], [ -81.958741699774023, 28.879322173980412 ], [ -81.958868364373032, 28.879337468958632 ], [ -81.958960363339685, 28.879342190883225 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edmonton Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958228365380791, 28.879290329139526 ], [ -81.958222846102672, 28.879218635945072 ], [ -81.958169905885214, 28.878773938111753 ], [ -81.958115394408864, 28.878385466675038 ], [ -81.958100794044483, 28.87822350977428 ], [ -81.958102155577691, 28.878149575588111 ], [ -81.958112855487315, 28.878069775743235 ], [ -81.958122213610849, 28.878009926274174 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fletcher Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971060946872171, 28.87112967893216 ], [ -81.971062141659104, 28.87104713201208 ], [ -81.971062155820974, 28.870996573278035 ], [ -81.971056307595546, 28.87095323531063 ], [ -81.971036218432616, 28.870904652789882 ], [ -81.970941053492581, 28.87074400514026 ], [ -81.970653909623948, 28.870292472625287 ], [ -81.97059890351774, 28.870187293555642 ], [ -81.970543503019016, 28.870074401489337 ], [ -81.9705121436713, 28.869964643873605 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Margaux Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971349605265559, 28.869772033031193 ], [ -81.971417301547731, 28.869994518411897 ], [ -81.971472547737307, 28.870138636990585 ], [ -81.971549448818251, 28.87029717533267 ], [ -81.971618172415319, 28.870432209611455 ], [ -81.971676331093718, 28.87051369896442 ], [ -81.971737142972316, 28.870571910337137 ], [ -81.971885214091387, 28.87068367995748 ], [ -81.97207559441182, 28.870807099744969 ], [ -81.972162854040775, 28.870867644371089 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Joiner Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974516927706532, 28.868744691245471 ], [ -81.974512159574701, 28.869004264017192 ], [ -81.974512134234217, 28.869106794525376 ], [ -81.974524712365778, 28.869162218181412 ], [ -81.974553035090679, 28.869206560032559 ], [ -81.974609688453356, 28.869250909053211 ], [ -81.974734413946933, 28.869333512313595 ], [ -81.974874345611425, 28.869432094489035 ], [ -81.974996835375109, 28.869533633720696 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Radley Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974996835375109, 28.869533633720696 ], [ -81.975345449874965, 28.869225972356265 ], [ -81.975352324360927, 28.869142714500224 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Raintree Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989871021350964, 28.870764517570706 ], [ -81.99000642642487, 28.870642329836567 ], [ -81.990130243354855, 28.870524280869201 ], [ -81.990203614535943, 28.870465760222636 ], [ -81.990305644392677, 28.870409260986751 ], [ -81.990415822790851, 28.870359723530218 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Callaway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007583484245373, 28.917971077823427 ], [ -82.007694271634094, 28.917969082434517 ], [ -82.007789232077357, 28.917969078271515 ], [ -82.007892592040221, 28.917960183255904 ], [ -82.008002205498329, 28.917948557465913 ], [ -82.008124736043555, 28.917929849637829 ], [ -82.008226011647125, 28.9179155434107 ], [ -82.008302279983212, 28.917906737143262 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bassinger Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995441000440678, 28.879102478527368 ], [ -81.995548342067764, 28.879046595465219 ], [ -81.996013993026821, 28.878743225092947 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bassinger Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996013993026821, 28.878743225092947 ], [ -81.99691732327237, 28.878155590468634 ], [ -81.996993794030672, 28.878096207276077 ], [ -81.997057163421914, 28.878034022090947 ], [ -81.997099495608737, 28.877975476286263 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hanover Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996245281677815, 28.879188994426105 ], [ -81.996013993026821, 28.878743225092947 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Agnew Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998271242664572, 28.879367110004015 ], [ -81.998006545858715, 28.879216977439256 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kane Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996245281677815, 28.879188994426105 ], [ -81.996434258740408, 28.879147751048233 ], [ -81.996611143400045, 28.879121143326774 ], [ -81.996691270372622, 28.879101185590955 ], [ -81.99675627960923, 28.879073243859338 ], [ -81.996809193221623, 28.879038649124098 ], [ -81.996874203239813, 28.878985423932868 ], [ -81.996952820864195, 28.878908248331353 ], [ -81.997034252371392, 28.878832603954738 ], [ -81.997078303026768, 28.878807123961227 ], [ -81.997120633071404, 28.878793818674829 ], [ -81.997159942837982, 28.878785836889541 ], [ -81.997199247228622, 28.878785837758119 ], [ -81.997246116027497, 28.878792490548932 ], [ -81.997354963210199, 28.878847049642232 ], [ -81.997598361698167, 28.8789920932062 ], [ -81.997631621285137, 28.879013384550213 ], [ -81.997670927152086, 28.879038666879104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kane Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997670927152086, 28.879038666879104 ], [ -81.997740469855827, 28.87907060421896 ], [ -81.997939267692686, 28.879178956955158 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orange Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996187808825212, 28.879786450120587 ], [ -81.996473546226227, 28.879738555031473 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hanover Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996473546226227, 28.879738555031473 ], [ -81.996245281677815, 28.879188994426105 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baldwin Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996120581908656, 28.881260066549341 ], [ -81.995933038142823, 28.880438232697625 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dudley Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981533329325941, 28.87121201952468 ], [ -81.981604198831803, 28.871008559985469 ], [ -81.981633314532786, 28.870868889296698 ], [ -81.981628094401728, 28.870482455670306 ], [ -81.981614886000074, 28.870398647950143 ], [ -81.981604314553493, 28.870363729173402 ], [ -81.981585809902555, 28.870324151614891 ], [ -81.981535569738597, 28.87027525880918 ], [ -81.981466814335988, 28.870240330167839 ], [ -81.981363675540678, 28.870231004063498 ], [ -81.98117061422505, 28.870240288782018 ], [ -81.980884991969049, 28.870244904141529 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Durango Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963978807128314, 28.930859183827227 ], [ -81.96409828770237, 28.930696973364434 ], [ -81.964116393110316, 28.930681011205664 ], [ -81.964144136641536, 28.930665101250469 ], [ -81.964190302527655, 28.930647896007986 ], [ -81.964599649263235, 28.930567296330491 ], [ -81.964649053768724, 28.930556962761411 ], [ -81.964686695667496, 28.930544556209686 ], [ -81.964733749407571, 28.930528012396604 ], [ -81.964790211516714, 28.930511471040159 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Marino Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969162705759985, 28.934043431271078 ], [ -81.969202497786938, 28.934063445202128 ], [ -81.969226657388859, 28.934075954754771 ], [ -81.969260764008624, 28.934095968263556 ], [ -81.969284923906329, 28.934110977161286 ], [ -81.969306240580693, 28.934125988109578 ], [ -81.96932463712777, 28.934140918983328 ], [ -81.969343780838983, 28.934154329659616 ], [ -81.969362730595833, 28.934168085867526 ], [ -81.969381289465446, 28.934182184855196 ], [ -81.969399651406306, 28.934196283795249 ], [ -81.969417624511308, 28.934210725515783 ], [ -81.969435400483405, 28.934225855639514 ], [ -81.969452787721153, 28.934240986574434 ], [ -81.96946997597891, 28.934256116559425 ], [ -81.969486105704789, 28.934271304047662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brookdale Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009331973656899, 28.924016390355128 ], [ -82.009232298257885, 28.923617272588846 ], [ -82.009169714904203, 28.923266001104565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Batesburg Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009532037520799, 28.925577021126031 ], [ -82.009379604246234, 28.925565472809851 ], [ -82.009288375225822, 28.925541222354177 ], [ -82.009153687126044, 28.92548079166766 ], [ -82.009125369803343, 28.925453113753839 ], [ -82.009103343692573, 28.925426822262452 ], [ -82.009082438467019, 28.925386812194052 ], [ -82.009072332028083, 28.925348594299926 ], [ -82.009065253166682, 28.925273044634682 ], [ -82.00906120799138, 28.925209049574093 ], [ -82.009049078114415, 28.925134388987004 ], [ -82.009031899353388, 28.925073951602517 ], [ -82.008984398642667, 28.924901521378022 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008984398642667, 28.924901521378022 ], [ -82.009224000314546, 28.924831833582143 ], [ -82.009530451706254, 28.924730284464029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shiloh Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011229143201945, 28.925690026045149 ], [ -82.011246921784021, 28.925508693908409 ], [ -82.011258680803508, 28.925029565899766 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gatsby Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965078599201092, 28.877613041892484 ], [ -81.964959219337857, 28.877252669259189 ], [ -81.964864477710591, 28.877024192443759 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arcola Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964197492463853, 28.877714473870402 ], [ -81.964173270276959, 28.877590332314483 ], [ -81.964168727979981, 28.877507067579845 ], [ -81.964183356428606, 28.87737756047418 ], [ -81.964193256962687, 28.877342751403521 ], [ -81.964220464774115, 28.877290542444346 ], [ -81.964247668325655, 28.877253562531177 ], [ -81.964285992354689, 28.877223113727116 ], [ -81.964339148430852, 28.877191579775651 ], [ -81.964513434725774, 28.8771361470349 ], [ -81.964769300507271, 28.877055713773199 ], [ -81.964864477710591, 28.877024192443759 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gatsby Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964864477710591, 28.877024192443759 ], [ -81.964746864526319, 28.876718032167833 ], [ -81.964632790354287, 28.876425119405933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gatsby Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964632790354287, 28.876425119405933 ], [ -81.964573835192809, 28.876221105076173 ], [ -81.9645355243875, 28.876049634089942 ], [ -81.964329248378093, 28.875088360475463 ], [ -81.964157835915557, 28.874319773380531 ], [ -81.964143590425422, 28.874262182832396 ], [ -81.96411704592326, 28.87421281528567 ], [ -81.964071318126855, 28.874150020851229 ], [ -81.964012313221289, 28.874084192909919 ], [ -81.963902160640686, 28.873980246964521 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Plaintain Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963963255901731, 28.876637939623656 ], [ -81.964041954918557, 28.876606630999792 ], [ -81.964262136090142, 28.876534754681686 ], [ -81.964558627402226, 28.876445767069956 ], [ -81.964632790354287, 28.876425119405933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Plaintain Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962656933068587, 28.877381877021673 ], [ -81.96294248585157, 28.877413131598537 ], [ -81.963181450399318, 28.87744403623978 ], [ -81.963245747079199, 28.877444390421012 ], [ -81.963298867286639, 28.877434278422299 ], [ -81.963345373044476, 28.877413242231068 ], [ -81.963382927122993, 28.877389699693804 ], [ -81.96341260094249, 28.877360335150268 ], [ -81.963436095075366, 28.87732553164496 ], [ -81.963458324990327, 28.877259348435057 ], [ -81.963520218242479, 28.877103634263605 ], [ -81.963567215749777, 28.877010092747494 ], [ -81.963619154343007, 28.876925255256225 ], [ -81.963701976704101, 28.87683271141746 ], [ -81.963781696193792, 28.876756743782536 ], [ -81.963854766931959, 28.876700259522107 ], [ -81.963963255901731, 28.876637939623656 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Plaintain Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961930737587295, 28.877289215049263 ], [ -81.962142071912538, 28.877317556570656 ], [ -81.962525195585968, 28.877364442119887 ], [ -81.962656933068587, 28.877381877021673 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Unity Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961930737587295, 28.877289215049263 ], [ -81.961959698747052, 28.877188788928692 ], [ -81.962061629432682, 28.876908245162941 ], [ -81.962143610100895, 28.87670173588301 ], [ -81.96220121492145, 28.876565363745829 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beasley Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98334232853621, 28.913086534089796 ], [ -81.983544501553354, 28.913164300231934 ], [ -81.983766801389095, 28.913266426940336 ], [ -81.98391224635921, 28.913341052831559 ], [ -81.984025916641059, 28.913396013702389 ], [ -81.984120848874994, 28.913433488431124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beaulieu Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961297475211254, 28.883372785078656 ], [ -81.961505316524878, 28.883414821703781 ], [ -81.961656279302403, 28.883444759958355 ], [ -81.961783339427029, 28.883466942277497 ], [ -81.961899080560769, 28.883480262471387 ], [ -81.96202237189155, 28.883489156208583 ], [ -81.962208569644517, 28.883489208769053 ], [ -81.962388544996756, 28.883473600794485 ], [ -81.962585223979488, 28.883440653204758 ], [ -81.962700097493936, 28.883415157277966 ], [ -81.962842460823964, 28.883371969327932 ], [ -81.96306750315604, 28.883300101806913 ], [ -81.963341798791276, 28.883219345269683 ], [ -81.963580865295384, 28.883144114233868 ], [ -81.963801056562872, 28.883077736475421 ], [ -81.963965884966228, 28.883029061086784 ], [ -81.964097006452775, 28.882993409320004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beaulieu Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964815170772184, 28.882860616609239 ], [ -81.964871225343273, 28.882851349324767 ], [ -81.965021612786686, 28.88283076201029 ], [ -81.965177508545096, 28.882810138061075 ], [ -81.965313565666591, 28.882786666554679 ], [ -81.965352395754252, 28.882774750872734 ], [ -81.965388606164993, 28.882754539648239 ], [ -81.965434189751917, 28.882719406766309 ], [ -81.965455586547336, 28.882691728772201 ], [ -81.965474277661841, 28.882655398813625 ], [ -81.965480772776075, 28.882623084564628 ], [ -81.965482040739801, 28.882589866669047 ], [ -81.965462862343699, 28.882473585774409 ], [ -81.965439954909741, 28.882337221394 ], [ -81.965414182256765, 28.882188229463413 ], [ -81.965396697949913, 28.881969763359852 ], [ -81.965387952713954, 28.881787060413117 ], [ -81.965388975324942, 28.881650667894423 ], [ -81.965382829171133, 28.881574609517575 ], [ -81.965371365790674, 28.881534203306018 ], [ -81.965334084773147, 28.881486216506588 ], [ -81.965282455913282, 28.881445800805139 ], [ -81.965204107284649, 28.881419259162033 ], [ -81.965025031829256, 28.881383460709987 ], [ -81.964785224005396, 28.881335267420461 ], [ -81.964697736601821, 28.881316336703581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hobbs Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964815170772184, 28.882860616609239 ], [ -81.96473696750914, 28.882534000915719 ], [ -81.96470713682254, 28.882352705401562 ], [ -81.964691162317223, 28.88223854564465 ], [ -81.964668263158345, 28.881972895783974 ], [ -81.964664584481355, 28.881700501757738 ], [ -81.964669689117599, 28.8814834743471 ], [ -81.964679976878699, 28.881390090661561 ], [ -81.964697736601821, 28.881316336703581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dipper Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963970984974537, 28.882367136957495 ], [ -81.963965274091024, 28.882286330732303 ], [ -81.963945266282522, 28.882069161277919 ], [ -81.963938607183749, 28.881876367464052 ], [ -81.963938687780569, 28.881644945225933 ], [ -81.963946311627353, 28.881431240793116 ], [ -81.96395413921536, 28.881306567394571 ], [ -81.963975773362463, 28.881174507851451 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beaulieu Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963975773362463, 28.881174507851451 ], [ -81.963941403747214, 28.88116728111077 ], [ -81.963842980653681, 28.881146628015514 ], [ -81.963769865735173, 28.881132963692409 ], [ -81.963706965318224, 28.881117444253842 ], [ -81.963655390817536, 28.881099713606034 ], [ -81.963615139402052, 28.881081986911326 ], [ -81.963581177453705, 28.881064261009275 ], [ -81.963544701540954, 28.881044319265595 ], [ -81.963505710297881, 28.881014411810394 ], [ -81.963403842458447, 28.880913621355045 ], [ -81.963362341402828, 28.880867104509683 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heath Springs Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978642794564195, 28.876201755534048 ], [ -81.978663585812939, 28.875897514261968 ], [ -81.978703302651567, 28.875564058535083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Westmoreland Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980872854208428, 28.874059880986923 ], [ -81.981106272023766, 28.874133046697672 ], [ -81.981365858262848, 28.87421669138611 ], [ -81.981421092689089, 28.874219399665641 ], [ -81.981468659450172, 28.874209954649544 ], [ -81.981516225857817, 28.874191052583949 ], [ -81.981562261411455, 28.874162698671466 ], [ -81.981591418481145, 28.874128940334451 ], [ -81.981615974792675, 28.874089779273017 ], [ -81.98172073644453, 28.873740607967065 ], [ -81.98183388222165, 28.873313308218673 ], [ -81.981890187266373, 28.873015260028669 ], [ -81.981918413424651, 28.872776488391697 ], [ -81.981929008473813, 28.872621438125826 ], [ -81.98192727286748, 28.872471038461722 ], [ -81.981917025341687, 28.872254334630572 ], [ -81.981933551464238, 28.872029723022429 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caribe Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992699858660075, 28.951215737738604 ], [ -81.99273843854121, 28.951240807361572 ], [ -81.992859113524446, 28.951304695371746 ], [ -81.992889797168033, 28.951318625723488 ], [ -81.992916099585145, 28.951329269683367 ], [ -81.993161943938176, 28.951419927914845 ], [ -81.99328930069565, 28.951456070400933 ], [ -81.993393359991103, 28.951478655554652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tamarindo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987108160488361, 28.950172169575783 ], [ -81.98704005981989, 28.950022912957184 ], [ -81.987009769230141, 28.949952865037975 ], [ -81.986973692656093, 28.949884571502139 ], [ -81.986933241655365, 28.949818202115051 ], [ -81.986910280418826, 28.949783574381339 ], [ -81.986884039834919, 28.949754718284058 ], [ -81.986850143503844, 28.949732591622372 ], [ -81.986804218329269, 28.949708541873928 ], [ -81.986758291018972, 28.949693147800676 ], [ -81.986710177654928, 28.949685449144951 ], [ -81.986667530540899, 28.949681597493683 ], [ -81.986623787061845, 28.949683516780755 ], [ -81.986596450628554, 28.949688322339931 ], [ -81.986562996504048, 28.949697282331094 ], [ -81.986507871523088, 28.949720054210385 ], [ -81.986449909360701, 28.94974793997088 ], [ -81.986372264177433, 28.949783520241922 ], [ -81.986279308876377, 28.949828716421685 ], [ -81.986220252774416, 28.949858526559385 ], [ -81.986162291090437, 28.949889299531058 ], [ -81.986108704628194, 28.949920072032974 ], [ -81.986058398178201, 28.949947960228936 ], [ -81.986009186418087, 28.949974884873026 ], [ -81.985966534329805, 28.949998924661109 ], [ -81.985921097410042, 28.950027641624153 ], [ -81.985895448543701, 28.95004604747232 ], [ -81.985877948525797, 28.950068167115102 ], [ -81.985863730828044, 28.950093173538114 ], [ -81.985845134332791, 28.950128758870925 ], [ -81.985835287062599, 28.950166268821366 ], [ -81.985832001416469, 28.950201855783522 ], [ -81.985840743595546, 28.950247062464197 ], [ -81.985851674559825, 28.950273032504533 ], [ -81.985868076146573, 28.95030092681321 ], [ -81.985908943728262, 28.950348380903357 ], [ -81.985970631703765, 28.950406269485111 ], [ -81.986033175767886, 28.950468300552149 ], [ -81.986106341776775, 28.950529280628288 ], [ -81.986160014216324, 28.95055487885093 ], [ -81.986190630781962, 28.950563538630242 ], [ -81.986227811573826, 28.950566427119643 ], [ -81.986251868831246, 28.950567390553637 ], [ -81.986285768947411, 28.950562586645507 ], [ -81.98632295168693, 28.950551048357251 ], [ -81.986468403415074, 28.950470270201951 ], [ -81.986608385572168, 28.950393337808915 ], [ -81.986727590409927, 28.950335641870502 ], [ -81.986978339017185, 28.950225492302849 ], [ -81.987108160488361, 28.950172169575783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tamarindo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987108160488361, 28.950172169575783 ], [ -81.987207674731792, 28.950137553738603 ], [ -81.9874056136333, 28.950076015586419 ], [ -81.98754449741979, 28.950036594013582 ], [ -81.987698140562486, 28.950001270074672 ], [ -81.987872566507193, 28.94996448705152 ], [ -81.988033499067811, 28.949938373094309 ], [ -81.988224611408612, 28.949918112995967 ], [ -81.988433007707627, 28.949902500942223 ], [ -81.988640048638359, 28.949897388426081 ], [ -81.988863129789181, 28.949901256555631 ], [ -81.989058505706055, 28.949915378385654 ], [ -81.98919574344464, 28.949930938865592 ], [ -81.989344461138529, 28.949950187799661 ], [ -81.989474952259556, 28.949972483063998 ], [ -81.989590114189369, 28.949994196821923 ], [ -81.989699854469094, 28.950016582266848 ], [ -81.989794987806121, 28.950037749303014 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tamarindo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989794987806121, 28.950037749303014 ], [ -81.98991636617356, 28.950073345931951 ], [ -81.990034079063349, 28.950110826161318 ], [ -81.990174198979588, 28.950156242715131 ], [ -81.990354858769578, 28.950222460831018 ], [ -81.990469189114606, 28.950266537993741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Becerra Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990725374875794, 28.949158617831682 ], [ -81.990681906091737, 28.949364539571462 ], [ -81.990637052520171, 28.949567480920653 ], [ -81.990598764747617, 28.949731948967443 ], [ -81.990575170784041, 28.949834852833359 ], [ -81.990543293495421, 28.949976215411652 ], [ -81.99050511246682, 28.950147782665681 ], [ -81.990469189114606, 28.950266537993741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Noriega Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990020169966201, 28.949064241667056 ], [ -81.990096229853833, 28.949076752261394 ], [ -81.990277021443887, 28.949107543790628 ], [ -81.990457815802856, 28.949131924288846 ], [ -81.99060799182287, 28.949146040596442 ], [ -81.990725374875794, 28.949158617831682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fortaleza Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990020169966201, 28.949064241667056 ], [ -81.98993702737063, 28.949413057128709 ], [ -81.989860508785668, 28.94975538825328 ], [ -81.989794987806121, 28.950037749303014 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fortaleza Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990176992286862, 28.948376239098163 ], [ -81.990138322836586, 28.948538456696859 ], [ -81.990033299170221, 28.948997557826896 ], [ -81.990020169966201, 28.949064241667056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Figueroa Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990329330979876, 28.947685240335254 ], [ -81.990474622844658, 28.947711562651744 ], [ -81.99066036925521, 28.947739541582258 ], [ -81.990811877088163, 28.947751381274152 ], [ -81.991169696278519, 28.947769493072531 ], [ -81.991338325321323, 28.94776950516238 ], [ -81.991523406628758, 28.947769517198235 ], [ -81.991614634579506, 28.9477713447661 ], [ -81.991646710833948, 28.947776477240655 ], [ -81.991705031079618, 28.94779187043126 ], [ -81.991770175424648, 28.947816561247159 ], [ -81.99184831657, 28.94785997721478 ], [ -81.9919100066639, 28.947914244902851 ], [ -81.991954335921676, 28.947965014215519 ], [ -81.991986408945323, 28.948011182879316 ], [ -81.992008274752493, 28.948059917938178 ], [ -81.992025150269413, 28.948116836485084 ], [ -81.992033779175145, 28.948185916532854 ], [ -81.992033770335311, 28.948309029850623 ], [ -81.99203375543388, 28.948494983334207 ], [ -81.992030805669685, 28.94891048798268 ], [ -81.992032243447227, 28.949172103276389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Noriega Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990725374875794, 28.949158617831682 ], [ -81.990856988951862, 28.949165862500482 ], [ -81.990996828589161, 28.949169488507064 ], [ -81.991142844937428, 28.949172047371398 ], [ -81.991316350030246, 28.949172058012632 ], [ -81.99152047451372, 28.949172071306911 ], [ -81.991762507115325, 28.94917080541353 ], [ -81.992032243447227, 28.949172103276389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Casso Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991248560784186, 28.949832548754792 ], [ -81.991412665216046, 28.949866439728069 ], [ -81.991598173139224, 28.949887845043595 ], [ -81.992027808364099, 28.949931301807165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Figueroa Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992032243447227, 28.949172103276389 ], [ -81.992030760331417, 28.949476040411351 ], [ -81.992033659034576, 28.949697898962253 ], [ -81.992033648551555, 28.94982870700202 ], [ -81.992027808364099, 28.949931301807165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Figueroa Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992027808364099, 28.949931301807165 ], [ -81.992019052387533, 28.950024917721993 ], [ -81.992003005237734, 28.950136487908011 ], [ -81.99198550114906, 28.950224974655907 ], [ -81.991965969274617, 28.950309010268338 ], [ -81.991941746641871, 28.950399381486516 ], [ -81.991907151651603, 28.950500842136631 ], [ -81.99185984566985, 28.950621483822982 ], [ -81.991786891474916, 28.950799047708802 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrillo Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99309310464362, 28.949406013201919 ], [ -81.993095123811685, 28.949504312659666 ], [ -81.993093643144292, 28.949846720834827 ], [ -81.993089392076968, 28.949948441448552 ], [ -81.993083797781509, 28.95005556672119 ], [ -81.993073023063118, 28.95017517403102 ], [ -81.993040197804348, 28.95036416554915 ], [ -81.993021197086421, 28.950448684067929 ], [ -81.992961959544587, 28.950657034637043 ], [ -81.992903844297132, 28.950819193282868 ], [ -81.992845729052178, 28.950964645958226 ], [ -81.992825612943733, 28.951006904620488 ], [ -81.992752529275705, 28.95113611878087 ], [ -81.992699858660075, 28.951215737738604 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arredondo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993818504117883, 28.94940629398614 ], [ -81.993819065698105, 28.949627102123426 ], [ -81.993805628709922, 28.950072310615276 ], [ -81.993792021634093, 28.9502045526486 ], [ -81.993769853509576, 28.950373046572473 ], [ -81.99373222102875, 28.950549522328227 ], [ -81.993697218002112, 28.950689306478786 ], [ -81.99367388283072, 28.950784205749716 ], [ -81.993649090252916, 28.950857301953661 ], [ -81.993597729891619, 28.951009023505591 ], [ -81.993469027934964, 28.951308385983076 ], [ -81.993393359991103, 28.951478655554652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caribe Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994480526058098, 28.949275167333589 ], [ -81.994408175544052, 28.949306016335747 ], [ -81.994331376917685, 28.949336918340745 ], [ -81.994254272960816, 28.949360736389984 ], [ -81.994174079317403, 28.94938125186648 ], [ -81.994088053939308, 28.949397919655976 ], [ -81.994012236411095, 28.949403047538038 ], [ -81.993818504117883, 28.94940629398614 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Azteca Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999910366707951, 28.950575397444499 ], [ -81.99995520155062, 28.95063887830575 ], [ -81.999962856384883, 28.950667732725108 ], [ -81.999965044421018, 28.95069658803741 ], [ -81.999962855553903, 28.950865867095416 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Azteca Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999910366707951, 28.950575397444499 ], [ -81.999888905727602, 28.950582731231332 ], [ -81.999868401888648, 28.950586337647316 ], [ -81.999844617362371, 28.950588503091076 ], [ -81.999586269352321, 28.950596436950622 ], [ -81.999318917414485, 28.950597848487575 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Azteca Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000211678178331, 28.948843161809254 ], [ -82.000184245929532, 28.948987923762964 ], [ -82.000159559927724, 28.949069548696752 ], [ -82.000147258002997, 28.949086859147886 ], [ -82.000135775734051, 28.949099123077879 ], [ -82.000100509259525, 28.949137354918381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Azteca Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000100509259525, 28.949137354918381 ], [ -82.000113630757923, 28.949151782613907 ], [ -82.000123518798389, 28.949169377346003 ], [ -82.00012757491335, 28.949193621957455 ], [ -82.000126890617992, 28.94921603309734 ], [ -82.00011477002657, 28.949313009658944 ], [ -82.000100188411096, 28.94941047254656 ], [ -82.000070823003554, 28.949606410684467 ], [ -82.000053197400476, 28.94976919230875 ], [ -82.000028960095477, 28.949945539870861 ], [ -82.000002203008791, 28.950176726040226 ], [ -81.999975841452624, 28.950477412221467 ], [ -81.999971743048008, 28.950503380189076 ], [ -81.999961900893538, 28.950522857055944 ], [ -81.999948778049571, 28.950540892053152 ], [ -81.999927862768757, 28.950562894413878 ], [ -81.999910366707951, 28.950575397444499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Azteca Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999505088840692, 28.948953405322523 ], [ -81.999660093238731, 28.948995967154417 ], [ -81.999793776691178, 28.949031314016274 ], [ -81.999967295720708, 28.9490778510472 ], [ -82.000003732591708, 28.949087580533597 ], [ -82.000035718277715, 28.949097680007199 ], [ -82.000062053627161, 28.949110750704417 ], [ -82.000100509259525, 28.949137354918381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Conchas Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999505088840692, 28.948953405322523 ], [ -81.999486222901822, 28.949034198306151 ], [ -81.999458578137208, 28.949187517513067 ], [ -81.999438627434827, 28.949308152109669 ], [ -81.999413689652499, 28.949470461758452 ], [ -81.999391244434889, 28.949650315588105 ], [ -81.999368799248288, 28.949819206555993 ], [ -81.999351341571241, 28.94999906130203 ], [ -81.999333255699597, 28.950209422542844 ], [ -81.999318917414485, 28.950597848487575 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Azteca Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998641451948089, 28.950606046972172 ], [ -81.998656325835427, 28.950362177369076 ], [ -81.998661962909523, 28.950177555779398 ], [ -81.998684931342666, 28.949891895672685 ], [ -81.998711506745892, 28.949656450872073 ], [ -81.998735786661214, 28.949455469997378 ], [ -81.998769750638999, 28.949242891146287 ], [ -81.998800630351141, 28.949059316442145 ], [ -81.998812712888665, 28.948981336834375 ], [ -81.998827675754058, 28.948917728969619 ], [ -81.998835854179077, 28.948889921297155 ], [ -81.998848157425172, 28.948867558098442 ], [ -81.998867575959693, 28.948840961411509 ], [ -81.998887524721098, 28.948822833644932 ], [ -81.998904746666483, 28.948813456282871 ], [ -81.998921150942493, 28.948809128140212 ], [ -81.998937553114885, 28.94880840736127 ], [ -81.99894985496293, 28.948810570269888 ], [ -81.999026127005749, 28.948827163205518 ], [ -81.999173053651873, 28.948860979607435 ], [ -81.999335143222154, 28.948907588649266 ], [ -81.999505088840692, 28.948953405322523 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Azteca Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999318917414485, 28.950597848487575 ], [ -81.999156823593864, 28.950602234293424 ], [ -81.998950650758118, 28.950601721864526 ], [ -81.998641451948089, 28.950606046972172 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Azteca Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998641451948089, 28.950606046972172 ], [ -81.998220712676755, 28.950606041492108 ], [ -81.997904346288948, 28.950604687578032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caribe Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997904346288948, 28.950604687578032 ], [ -81.99790824057915, 28.950341295873972 ], [ -81.997918907782349, 28.950110458081298 ], [ -81.997941878471607, 28.949814700544486 ], [ -81.99794597988074, 28.949768531210644 ], [ -81.997975511353332, 28.949533366311332 ], [ -81.997984534576275, 28.949450409688026 ], [ -81.997992738034171, 28.949371781346855 ], [ -81.997991921683408, 28.94931766904746 ], [ -81.997986999868516, 28.949265019296853 ], [ -81.997978799309578, 28.949218851561479 ], [ -81.997967694523965, 28.949175673072659 ], [ -81.997955836614238, 28.949139500871681 ], [ -81.997937828903787, 28.949098173769734 ], [ -81.997912370604169, 28.949052936906014 ], [ -81.997889139160733, 28.949018910157786 ], [ -81.997863985403455, 28.948980800498482 ], [ -81.997838526857024, 28.94894809195219 ], [ -81.997783612865376, 28.948893430100881 ], [ -81.997728895804613, 28.948842206867315 ], [ -81.997651348686901, 28.948792363691204 ], [ -81.997560442999273, 28.948748353531958 ], [ -81.997457202568896, 28.94870883647884 ], [ -81.997409634808193, 28.948694408750722 ], [ -81.997358786343, 28.948682865566333 ], [ -81.997284154707259, 28.948675650150086 ], [ -81.997206533624407, 28.948673746422866 ], [ -81.99708889039897, 28.948673744671691 ], [ -81.99696674975938, 28.948677867991996 ], [ -81.996880763797051, 28.94868164741775 ], [ -81.996745140258682, 28.94869367609305 ], [ -81.996620568143541, 28.948703309337876 ], [ -81.996514540093429, 28.948713264190282 ], [ -81.996411522806383, 28.948724680757557 ], [ -81.996310646306441, 28.948739104648716 ], [ -81.996213352025151, 28.948753185698777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caribe Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995310201462075, 28.948966182789551 ], [ -81.995228716728818, 28.948988011684779 ], [ -81.995145271321022, 28.949014919461941 ], [ -81.995034013620383, 28.949054056701243 ], [ -81.994911628386447, 28.949095642234855 ], [ -81.994756610941721, 28.949156711351964 ], [ -81.994613396951877, 28.949212904790201 ], [ -81.994480526058098, 28.949275167333589 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caribe Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996213352025151, 28.948753185698777 ], [ -81.996067553549764, 28.948776933268817 ], [ -81.995948578702041, 28.948800184364313 ], [ -81.995804478453707, 28.948833905644598 ], [ -81.995640373051927, 28.948870596443715 ], [ -81.995498518945141, 28.948909733934002 ], [ -81.995310201462075, 28.948966182789551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gutierrez Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995310201462075, 28.948966182789551 ], [ -81.995325508649401, 28.949017159262514 ], [ -81.995346282430447, 28.949092182928258 ], [ -81.995364866910123, 28.949192213548756 ], [ -81.995371426031895, 28.949237418638408 ], [ -81.995403923829031, 28.949450395112937 ], [ -81.995426166494482, 28.949638772011578 ], [ -81.995448882877398, 28.949898480548089 ], [ -81.995445852175735, 28.950013669798043 ], [ -81.995432715304929, 28.950138964364335 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valparaiso Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994480526058098, 28.949275167333589 ], [ -81.994510886531316, 28.949355617015865 ], [ -81.994526922151039, 28.949399220975394 ], [ -81.994537126278246, 28.949435129937907 ], [ -81.994540677118081, 28.949464826336964 ], [ -81.994544699928767, 28.949639428218507 ], [ -81.994537025816044, 28.949981837047147 ], [ -81.994516235413229, 28.950227099095894 ], [ -81.994493260950762, 28.9503983017865 ], [ -81.994479038374962, 28.950490636369342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valparaiso Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994479038374962, 28.950490636369342 ], [ -81.994462624461548, 28.95058437933459 ], [ -81.994432444978358, 28.950723935601076 ], [ -81.994395562893629, 28.950855628994702 ], [ -81.994339682833314, 28.951057102129081 ], [ -81.994322459508197, 28.951112018496115 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Castillo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994479038374962, 28.950490636369342 ], [ -81.994557772843265, 28.950509876556641 ], [ -81.99476180304174, 28.950575593468617 ], [ -81.995020332439623, 28.950657053564715 ], [ -81.995234662953692, 28.950720541491378 ], [ -81.995428215671041, 28.950768638845986 ], [ -81.995626144798038, 28.950818660659706 ], [ -81.995871094437319, 28.950868683697152 ], [ -81.996133542306808, 28.95092159234699 ], [ -81.996362229103795, 28.950953940800499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Castillo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996362229103795, 28.950953940800499 ], [ -81.996447526217196, 28.950958991521155 ], [ -81.996742793548407, 28.950965794558588 ], [ -81.997011791698128, 28.950971991795722 ], [ -81.997097775314558, 28.950972132748095 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "La Hermosa Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996213352025151, 28.948753185698777 ], [ -81.996255943977417, 28.949008897562781 ], [ -81.996297365297593, 28.949221352564454 ], [ -81.996339176560141, 28.949487778182817 ], [ -81.996367892118528, 28.949752140766535 ], [ -81.996384000551245, 28.949978053591806 ], [ -81.996391646852516, 28.95020215797549 ], [ -81.996390544860162, 28.950448384508906 ], [ -81.996382880934817, 28.950655174357607 ], [ -81.996371255346375, 28.950829144107239 ], [ -81.996362229103795, 28.950953940800499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 2nd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10850119767008, 28.641154745539517 ], [ -82.108510635033909, 28.64048800542907 ], [ -82.108505307804208, 28.640317566462539 ], [ -82.10850516993824, 28.64018348571696 ], [ -82.10850877772522, 28.64007136305408 ], [ -82.108514136102173, 28.639996577675284 ], [ -82.108518399213452, 28.639916997248104 ], [ -82.108538984800006, 28.639855622922774 ], [ -82.108556319439984, 28.63980479588021 ], [ -82.108568239663697, 28.639770271138072 ], [ -82.10861489718836, 28.639699286944886 ], [ -82.10867976882281, 28.6396311116536 ], [ -82.108737566437995, 28.639569760016361 ], [ -82.108895963792222, 28.639444588946045 ], [ -82.109077341835317, 28.639290167247619 ], [ -82.109554250635171, 28.638880134722193 ], [ -82.109674291855157, 28.638779774360675 ], [ -82.109745673361388, 28.638725288084686 ], [ -82.109810575800054, 28.638687993783133 ], [ -82.109914420323207, 28.638624886557448 ], [ -82.110972492455844, 28.638148492335841 ], [ -82.111400909824866, 28.63795334530964 ], [ -82.111644332778567, 28.637847151748286 ], [ -82.111949386668542, 28.637680751165227 ], [ -82.112202501855734, 28.637528714465791 ], [ -82.112322574578343, 28.63746272713426 ], [ -82.11240045975903, 28.63741969377805 ], [ -82.112484817231305, 28.637356601516718 ], [ -82.112523725654398, 28.637302139613404 ], [ -82.112536630627503, 28.637224782488019 ], [ -82.11253974359137, 28.637098733420167 ], [ -82.112551560964789, 28.636001548102968 ], [ -82.11257080358844, 28.635775220756702 ], [ -82.112577075188995, 28.635566094513567 ], [ -82.112556721638057, 28.634749673252919 ], [ -82.112561956569252, 28.633569416607457 ], [ -82.112586569858578, 28.632291743691432 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 763", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108489432293098, 28.646584471229673 ], [ -82.10849455060665, 28.645700024979487 ], [ -82.10848802423655, 28.644702891551841 ], [ -82.108486934536458, 28.64364410427012 ], [ -82.108489559640404, 28.642930285928291 ], [ -82.108512623625501, 28.64273110852886 ], [ -82.108535201138451, 28.642582125749598 ], [ -82.108564289413039, 28.642447462371997 ], [ -82.108577109472748, 28.642284164556052 ], [ -82.108554207895949, 28.64211803201972 ], [ -82.108534632441632, 28.642029241468986 ], [ -82.108502037621349, 28.641908950780302 ], [ -82.108501939390223, 28.641814414913263 ], [ -82.108498545623462, 28.641671184388841 ], [ -82.108497257756554, 28.641550706398096 ], [ -82.10850119767008, 28.641154745539517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 756A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056580546143763, 28.596335772839378 ], [ -82.055571149394495, 28.596336184771175 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 109th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058629929550094, 28.596719848257475 ], [ -82.058638568101472, 28.596513859612806 ], [ -82.058632611888896, 28.596295006164819 ], [ -82.057141841103544, 28.596300782789502 ], [ -82.056795315281079, 28.59633147679175 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 756A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056795315281079, 28.59633147679175 ], [ -82.056580546143763, 28.596335772839378 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 756", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05652312120624, 28.597259839450754 ], [ -82.055561363298878, 28.597255080277975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 756", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056789840244761, 28.597260198916604 ], [ -82.05652312120624, 28.597259839450754 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 782", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0971472905415, 28.573707531668912 ], [ -82.097083852309524, 28.573626566823368 ], [ -82.097029148492808, 28.573539808113214 ], [ -82.096956916049351, 28.573399055526302 ], [ -82.09693280284165, 28.573314204317601 ], [ -82.096930499334846, 28.573183046442498 ], [ -82.096960388757878, 28.57306478013265 ], [ -82.096998828085205, 28.572939268238919 ], [ -82.097055202788837, 28.572809776004021 ], [ -82.097058528909145, 28.572672664064186 ], [ -82.097030792066747, 28.572538620461806 ], [ -82.096968538275362, 28.572398506865099 ], [ -82.096885557809586, 28.572240127290669 ], [ -82.096850966028569, 28.572157885832805 ], [ -82.096840570697978, 28.572112190289879 ], [ -82.096847385170449, 28.572014685231871 ], [ -82.096850718879764, 28.571886712230917 ], [ -82.09686694807931, 28.571705032421416 ], [ -82.096871411897908, 28.571653709261223 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 478A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087544444090199, 28.555514376269603 ], [ -82.087617737468975, 28.55554684012462 ], [ -82.087694995539877, 28.555580885023566 ], [ -82.087757767566259, 28.555608545117963 ], [ -82.087803639550415, 28.555629824681642 ], [ -82.087850475982634, 28.555648225122042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 755", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087544444090199, 28.555514376269603 ], [ -82.087582871504438, 28.555448909845975 ], [ -82.087609244543415, 28.555414578507502 ], [ -82.087656864096843, 28.55534949419566 ], [ -82.08770015019978, 28.555280586684628 ], [ -82.087734748709906, 28.555192548629588 ], [ -82.087747666028449, 28.555089222431935 ], [ -82.087747588910219, 28.554997380611841 ], [ -82.087747491644123, 28.554878754410737 ], [ -82.087755061336722, 28.553783195354406 ], [ -82.087746986686554, 28.553409530066585 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 478A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.083737522716291, 28.555163470852293 ], [ -82.083790505182208, 28.555226579378427 ], [ -82.083822079468661, 28.555260842081697 ], [ -82.0838560844239, 28.555299387638712 ], [ -82.083894938652477, 28.555332573883021 ], [ -82.083939613054625, 28.555361687866622 ], [ -82.083986221466844, 28.555382227443616 ], [ -82.084047872944964, 28.555397830964992 ], [ -82.084569635423009, 28.555416793310311 ], [ -82.086781483214864, 28.555483984913256 ], [ -82.087468665511068, 28.555503275240802 ], [ -82.087544444090199, 28.555514376269603 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 755", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087775368032979, 28.567939737019767 ], [ -82.087783127295623, 28.566552334075396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Espana Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970371299795744, 28.929972306082274 ], [ -81.97052569720843, 28.930921574268591 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Espana Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97052569720843, 28.930921574268591 ], [ -81.970643510149017, 28.931670761096221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evelyn Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009587587212408, 28.930722045497827 ], [ -82.009585081548764, 28.931316625478857 ], [ -82.009586369815267, 28.931410172608853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evelyn Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009586369815267, 28.931410172608853 ], [ -82.009584568177047, 28.931496960855252 ], [ -82.009583146824568, 28.932117218197114 ], [ -82.009583148065033, 28.932131313844582 ], [ -82.009589860087075, 28.932760329154458 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Atwell Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007437602809475, 28.931341352026958 ], [ -82.008655943914064, 28.931343109360014 ], [ -82.009306782455596, 28.93135321030481 ], [ -82.00943775050618, 28.931372989931603 ], [ -82.009586369815267, 28.931410172608853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santa Fe Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010311391386708, 28.931572670294031 ], [ -82.01030959181287, 28.931772082072658 ], [ -82.010307193394013, 28.934284913928121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Atwell Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005711268349373, 28.930184992397471 ], [ -82.006068940092902, 28.930471435167924 ], [ -82.006258026938852, 28.930629342410178 ], [ -82.006485077092336, 28.930821479875611 ], [ -82.00672075098575, 28.931016143883056 ], [ -82.006884574457629, 28.931155188914381 ], [ -82.006959300539023, 28.931208279103469 ], [ -82.007070569398877, 28.931265847374512 ], [ -82.007168634493667, 28.931300110831319 ], [ -82.007250632770862, 28.931321520024852 ], [ -82.007404452098413, 28.9313391791929 ], [ -82.007437602809475, 28.931341352026958 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Trce", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007119584496493, 28.93194393215229 ], [ -82.007167624491473, 28.931873770059642 ], [ -82.007214582691688, 28.931793302894441 ], [ -82.007284114795908, 28.931666240981556 ], [ -82.00734696039865, 28.931539180271617 ], [ -82.00739242402328, 28.931445061396069 ], [ -82.007437602809475, 28.931341352026958 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roswell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00543165312736, 28.930906061949464 ], [ -82.005560431823795, 28.931043799736049 ], [ -82.0056703095659, 28.931174766395806 ], [ -82.005715474093051, 28.931222949014828 ], [ -82.005778118095392, 28.931291763714647 ], [ -82.005844222354924, 28.931352437743929 ], [ -82.005890208324757, 28.931395415833755 ], [ -82.005936192770349, 28.931428280987138 ], [ -82.005976429268472, 28.931458619029428 ], [ -82.006022414041482, 28.931496540613129 ], [ -82.006079894538729, 28.931534461707553 ], [ -82.006134502040695, 28.931569853764412 ], [ -82.006177612155639, 28.931592606935968 ], [ -82.00624084178007, 28.931633055949732 ], [ -82.006324188200665, 28.931678561431621 ], [ -82.006419030551413, 28.931726593686893 ], [ -82.006519602318932, 28.931773481510302 ], [ -82.00661534678683, 28.931810605744687 ], [ -82.006715043842647, 28.931840824467308 ], [ -82.006828431842521, 28.931874631804682 ], [ -82.006985057439806, 28.931913507876686 ], [ -82.007051358985507, 28.931930410075989 ], [ -82.007119584496493, 28.93194393215229 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roswell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007119584496493, 28.93194393215229 ], [ -82.007247381832258, 28.931953223984056 ], [ -82.007396322744796, 28.931967587318795 ], [ -82.007513550404141, 28.931974343085901 ], [ -82.007668255193522, 28.931981943121542 ], [ -82.007810468576238, 28.931992923651478 ], [ -82.007931539548252, 28.932000525199076 ], [ -82.008071830686319, 28.932008971012607 ], [ -82.008219278894643, 28.932016091702657 ], [ -82.008366825402462, 28.932020786857272 ], [ -82.008934985765137, 28.932058626406373 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hatch Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003591126912198, 28.932547644176285 ], [ -82.004269740709063, 28.933333212576638 ], [ -82.004295925628455, 28.933365526624893 ], [ -82.004312730247108, 28.933386841058596 ], [ -82.004328752273537, 28.933408153707642 ], [ -82.004344581503403, 28.93343015571326 ], [ -82.004360018927372, 28.933452155923469 ], [ -82.004374869677804, 28.933474500825149 ], [ -82.004389329660711, 28.933497189510518 ], [ -82.004403398862834, 28.933519877303226 ], [ -82.004645780982429, 28.933917533868193 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dowding Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002088192270605, 28.933308008437137 ], [ -82.002151213085952, 28.933406651051719 ], [ -82.002188204438909, 28.933464191732579 ], [ -82.002229304666329, 28.933517624203514 ], [ -82.00228863364903, 28.933580975348566 ], [ -82.002357335736974, 28.933659591359405 ], [ -82.002383818565775, 28.933688963392168 ], [ -82.002409148475692, 28.933715298312151 ], [ -82.002431025846818, 28.933737581071195 ], [ -82.002454055077365, 28.933759862005548 ], [ -82.00248053572578, 28.933780119941392 ], [ -82.002509320146999, 28.933803414961531 ], [ -82.00253695469867, 28.933822660494627 ], [ -82.002576102747923, 28.933846967719639 ], [ -82.002619856234119, 28.93387431559421 ], [ -82.002663609677313, 28.933898623624099 ], [ -82.002710816600427, 28.933920905030142 ], [ -82.002767235283841, 28.933943188071058 ], [ -82.002815594963195, 28.933958379190464 ], [ -82.002862801754588, 28.933972558840289 ], [ -82.002901948594669, 28.933983700590307 ], [ -82.002942248395513, 28.933997880333916 ], [ -82.002984849962075, 28.934016110423492 ], [ -82.003011331702865, 28.934032316049194 ], [ -82.003038965433262, 28.934053586227247 ], [ -82.003061994734267, 28.934070804281689 ], [ -82.003081568481619, 28.934088022397791 ], [ -82.00309999051251, 28.934110305112092 ], [ -82.003118414708212, 28.934136639126095 ], [ -82.00313453425801, 28.934166012110023 ], [ -82.003140291905225, 28.9341822181099 ], [ -82.003148351292751, 28.934201462090215 ], [ -82.003154109104457, 28.934223745042811 ], [ -82.003159867890744, 28.934244003246242 ], [ -82.003164473067315, 28.934275401199738 ], [ -82.003164339127622, 28.934446376982773 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dowding Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003164339127622, 28.934446376982773 ], [ -82.003172603033619, 28.934750148682124 ], [ -82.003172602714343, 28.934776735689585 ], [ -82.003167421521482, 28.934801044505353 ], [ -82.003160513991588, 28.934822315329352 ], [ -82.003144971522772, 28.9348602986184 ], [ -82.002876571371928, 28.935472513916739 ], [ -82.002839185204124, 28.93555295681124 ], [ -82.0028203086665, 28.935578381984055 ], [ -82.002796126106588, 28.935602771409954 ], [ -82.002735786174284, 28.935668168000184 ], [ -82.002690814082015, 28.935720277130358 ], [ -82.002650124176412, 28.935767390174068 ], [ -82.002624425956753, 28.9358116481128 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Thomas Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001430248133985, 28.944161661028073 ], [ -82.00134410845844, 28.944186482775415 ], [ -82.001268364149894, 28.944213917450163 ], [ -82.001231233665536, 28.944232207138231 ], [ -82.001202338245804, 28.944251582232319 ], [ -82.001166660345845, 28.944281530425062 ], [ -82.001138726209732, 28.944320738806852 ], [ -82.001118713205528, 28.94435531657826 ], [ -82.001103703985194, 28.944385494742917 ], [ -82.001096557491692, 28.944418185757936 ], [ -82.00109369778832, 28.944450248757704 ], [ -82.001097986865773, 28.944484198420909 ], [ -82.001106698098909, 28.944510212395919 ], [ -82.001138727981356, 28.944570957329933 ], [ -82.001304582418086, 28.944755643216375 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Thomas Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001430248133985, 28.944161661028073 ], [ -82.00171148749078, 28.944070217703917 ], [ -82.002076841775178, 28.943951202365124 ], [ -82.002443492542895, 28.943816558296657 ], [ -82.003027010215817, 28.94359650638517 ], [ -82.003250341089299, 28.943507384319304 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillside Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003761481525714, 28.94584537311745 ], [ -82.004002045219252, 28.945820968174168 ], [ -82.004293410918663, 28.945795864809504 ], [ -82.00454422344221, 28.945776937330916 ], [ -82.004614225462689, 28.945772724209469 ], [ -82.004660810432938, 28.945771144667933 ], [ -82.00472172703526, 28.945771143674339 ], [ -82.004768312069274, 28.94577114220591 ], [ -82.004814897370181, 28.94577744594428 ], [ -82.004866856954663, 28.945785323091208 ], [ -82.004911649222706, 28.945793202257622 ], [ -82.004954649409754, 28.945801079663848 ], [ -82.005003028196626, 28.945815262099408 ], [ -82.005053197103507, 28.945831019860474 ], [ -82.005263637418153, 28.945890930243095 ], [ -82.005339791451547, 28.945912302846232 ], [ -82.005425667254414, 28.945936529003276 ], [ -82.005797426880406, 28.946014653453911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillside Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001456979293195, 28.945784700214464 ], [ -82.001583088992732, 28.945864845433277 ], [ -82.001675017725319, 28.945933203279839 ], [ -82.001786922205795, 28.946002870100557 ], [ -82.002050639890527, 28.94608279423651 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baisley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968608850161402, 28.877454455084795 ], [ -81.96864370782167, 28.877461852190013 ], [ -81.968794426500054, 28.877497697905074 ], [ -81.968917094497556, 28.877526201237909 ], [ -81.969018341469791, 28.877550400043116 ], [ -81.969087358556408, 28.877562566368301 ], [ -81.969154846478673, 28.877559881318003 ], [ -81.969220804986463, 28.877539646109167 ], [ -81.969259157221643, 28.877516705757309 ], [ -81.969309988865334, 28.877471752984494 ], [ -81.969357347386207, 28.877388438930915 ], [ -81.969423948868325, 28.877259563898491 ], [ -81.969480186048187, 28.877161932289678 ], [ -81.969496462923232, 28.87713850140441 ], [ -81.969539366955487, 28.877107263534629 ], [ -81.969583751010305, 28.877083839922545 ], [ -81.96963996129773, 28.877073436485542 ], [ -81.969694692061054, 28.87707084572423 ], [ -81.969751628563486, 28.877083469153288 ], [ -81.969805304804453, 28.877107780244973 ], [ -81.969924920859796, 28.877171257006903 ], [ -81.970085140519757, 28.877253203826712 ], [ -81.970194824990031, 28.8773144178653 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cervantes Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959811697900065, 28.946489799229006 ], [ -81.960187413514205, 28.946400012373878 ], [ -81.960423383063528, 28.946338572093449 ], [ -81.960817110280786, 28.946212593324578 ], [ -81.961023600864223, 28.946133110141396 ], [ -81.961122583656476, 28.946089613204652 ], [ -81.961291085655446, 28.946010690632651 ], [ -81.961469022406035, 28.945924620794766 ], [ -81.961680643434093, 28.945813621890235 ], [ -81.961769391394625, 28.945761116664901 ], [ -81.961829123185467, 28.945728115196971 ], [ -81.961873493031845, 28.945710117166815 ], [ -81.961926390649651, 28.94570262874581 ], [ -81.961987815502113, 28.945707147729859 ], [ -81.962128899301931, 28.945726540971215 ], [ -81.962184547981494, 28.945736281605232 ], [ -81.962214053769188, 28.945751986217566 ], [ -81.962264974421899, 28.945790057478138 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Due West Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011313099376892, 28.914472530413217 ], [ -82.01149130413819, 28.914505524806188 ], [ -82.011744544496977, 28.914534387453546 ], [ -82.01199437736561, 28.91454578415048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Due West Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010545293977216, 28.914317363726457 ], [ -82.011163128235324, 28.91444396294153 ], [ -82.011313099376892, 28.914472530413217 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Willington Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011272960276457, 28.915339479486239 ], [ -82.011236080461785, 28.915256060552355 ], [ -82.011192891079503, 28.915165830665796 ], [ -82.011157794627778, 28.915061351956574 ], [ -82.011141592598676, 28.914971118120658 ], [ -82.011152377779695, 28.914880884869493 ], [ -82.011202913259254, 28.914758377830601 ], [ -82.011273794601749, 28.914576930211553 ], [ -82.011313099376892, 28.914472530413217 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charleston Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011729117700114, 28.91321876106165 ], [ -82.011760389609762, 28.913319161585335 ], [ -82.01185108310564, 28.913583227521617 ], [ -82.011918798171408, 28.913785775805547 ], [ -82.011930913429808, 28.913832872888189 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charleston Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011722404454687, 28.912808356240724 ], [ -82.011716185902131, 28.912940711127682 ], [ -82.011716206585533, 28.913141058101271 ], [ -82.011729117700114, 28.91321876106165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lockwood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010574882017352, 28.913678784217296 ], [ -82.010585061611408, 28.913453109015837 ], [ -82.010589255252512, 28.913299646901088 ], [ -82.010596455422572, 28.913238782809923 ], [ -82.010616879285209, 28.913188741689186 ], [ -82.010654383048035, 28.913143015876869 ], [ -82.010714938188599, 28.913102446752404 ], [ -82.010760729624664, 28.913085341153305 ], [ -82.010805404983799, 28.913075194139619 ], [ -82.010871697072133, 28.913080259994882 ], [ -82.010948077779844, 28.913094202742666 ], [ -82.01125072061464, 28.913153775808965 ], [ -82.011498600479527, 28.913201940394774 ], [ -82.01158687000877, 28.913217398575934 ], [ -82.011650959226003, 28.913220143519158 ], [ -82.011729117700114, 28.91321876106165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Manor Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02757619494966, 28.920868224660914 ], [ -82.027572611611731, 28.921009995915654 ], [ -82.027566071352197, 28.921438677087384 ], [ -82.027547703597065, 28.921640523442591 ], [ -82.027520949336193, 28.921793751261255 ], [ -82.027494204192308, 28.92197055335081 ], [ -82.027485745434589, 28.922050296332557 ], [ -82.027489552288259, 28.922097408943348 ], [ -82.027502876898794, 28.922142143001992 ], [ -82.027516201630476, 28.922175454897353 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Manor Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026890476942299, 28.919370305514164 ], [ -82.027089238763651, 28.919423305268381 ], [ -82.027343579818691, 28.919493697170957 ], [ -82.027450029637151, 28.91952848292749 ], [ -82.027487900202004, 28.91954455788429 ], [ -82.027525393949077, 28.919570733208186 ], [ -82.027551408962509, 28.919597830262799 ], [ -82.027573449618401, 28.919635364968354 ], [ -82.027587376269125, 28.919673453504288 ], [ -82.02758507794249, 28.920216710163121 ], [ -82.02757619494966, 28.920868224660914 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cheltenham Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0257453206316, 28.920764955451311 ], [ -82.026174821396566, 28.92084938255099 ], [ -82.026506167300937, 28.920909849620074 ], [ -82.026741547367777, 28.920941665020081 ], [ -82.026884583793745, 28.920949600790006 ], [ -82.026984163217179, 28.920946395274324 ], [ -82.027087362272539, 28.920936816958154 ], [ -82.027385875513971, 28.920890115423713 ], [ -82.02757619494966, 28.920868224660914 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chisholm Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968325722092146, 28.933014076952965 ], [ -81.968462778762074, 28.933113063050101 ], [ -81.96850937743622, 28.933140926949559 ], [ -81.968541368828966, 28.933160345533352 ], [ -81.968575702986044, 28.93317612209642 ], [ -81.968606541317243, 28.933186127657457 ], [ -81.96863995045257, 28.933194729843393 ], [ -81.968673360827921, 28.933202644472896 ], [ -81.968706966193409, 28.933210214463163 ], [ -81.968740767677559, 28.933217099649301 ], [ -81.968774764151362, 28.933223639293626 ], [ -81.968808760837049, 28.933229492283271 ], [ -81.968842952511537, 28.933234999730917 ], [ -81.968877146448179, 28.933239820524264 ], [ -81.96891153342473, 28.933243952903048 ], [ -81.968945921429153, 28.933248087077889 ], [ -81.968980505653036, 28.93325118906446 ], [ -81.969015088956297, 28.933253948170023 ], [ -81.969049673391069, 28.933256360785858 ], [ -81.969084258032709, 28.93325808855132 ], [ -81.969118842881656, 28.933259127857241 ], [ -81.96915362168906, 28.933259823424731 ], [ -81.969188401728005, 28.933259831435116 ], [ -81.969253436125541, 28.933254129451328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Broxton Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008841511797954, 28.910176177928783 ], [ -82.00890764541893, 28.910173112357342 ], [ -82.008984221927221, 28.910165450699903 ], [ -82.00922265316413, 28.910139403412103 ], [ -82.009324248395131, 28.9101395809191 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "La Hermosa Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996362229103795, 28.950953940800499 ], [ -81.996351154560372, 28.95104278830388 ], [ -81.996313962060569, 28.951327485709417 ], [ -81.9962660745406, 28.951589912405606 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "La Posada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994322459508197, 28.951112018496115 ], [ -81.994573044830389, 28.951188922523254 ], [ -81.994826741812133, 28.951268764070452 ], [ -81.995042240927333, 28.951331696532737 ], [ -81.995267537648132, 28.951387973700342 ], [ -81.995512306350975, 28.951449143396133 ], [ -81.995776547863045, 28.951498081812332 ], [ -81.995979594897108, 28.951539676761946 ], [ -81.996063038328273, 28.951554356930497 ], [ -81.996187955302474, 28.951575301095438 ], [ -81.9962660745406, 28.951589912405606 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "La Hermosa Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9962660745406, 28.951589912405606 ], [ -81.996247001879595, 28.951686214396897 ], [ -81.996194570885194, 28.951963124514087 ], [ -81.996142694785405, 28.952210593726683 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caribe Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994077038416066, 28.951701069055996 ], [ -81.994238364539811, 28.95175245279707 ], [ -81.994472005797164, 28.951833195508996 ], [ -81.994886443812135, 28.951953088291585 ], [ -81.995333471342377, 28.952058598438178 ], [ -81.995698714376786, 28.952134595835627 ], [ -81.996070520857018, 28.952200972203357 ], [ -81.996142694785405, 28.952210593726683 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992460232970984, 28.947793110520376 ], [ -81.992516158810446, 28.947920451577932 ], [ -81.992532600611867, 28.947964324690343 ], [ -81.992547176808728, 28.948016903916564 ], [ -81.992558920741573, 28.948082521109296 ], [ -81.992570192845974, 28.949405984636215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrillo Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992845219952656, 28.94750951168465 ], [ -81.99296693318135, 28.947598695465022 ], [ -81.993048940758882, 28.947660256953178 ], [ -81.993067531399646, 28.947681417603768 ], [ -81.993082835507025, 28.947714120206712 ], [ -81.993091582855499, 28.94774201324233 ], [ -81.99309704857788, 28.947769906104529 ], [ -81.993099233764539, 28.947796837852056 ], [ -81.993098550456423, 28.947842344045824 ], [ -81.993098543574817, 28.9479407426719 ], [ -81.993097052994088, 28.948102731195934 ], [ -81.993096828193771, 28.948530043438158 ], [ -81.993100516487999, 28.948891004874536 ], [ -81.99309310464362, 28.949406013201919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carvello Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992845219952656, 28.94750951168465 ], [ -81.992692457535313, 28.947666007746889 ], [ -81.992645433817543, 28.947703516136407 ], [ -81.992621376681697, 28.947722750765141 ], [ -81.992583648169656, 28.947743748600516 ], [ -81.992460232970984, 28.947793110520376 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carvello Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993272993516598, 28.947023330259242 ], [ -81.993182386738567, 28.947126451327392 ], [ -81.99305443617321, 28.947265911103784 ], [ -81.992977886838247, 28.947355355820577 ], [ -81.992898053492596, 28.947447685847088 ], [ -81.992845219952656, 28.94750951168465 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carvello Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993601224104196, 28.946722508748699 ], [ -81.993535612438322, 28.946757131914364 ], [ -81.993499525316224, 28.946785021803432 ], [ -81.993474374126137, 28.946802334649345 ], [ -81.993361838070655, 28.946930724359635 ], [ -81.993272993516598, 28.947023330259242 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arredondo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993601224104196, 28.946722508748699 ], [ -81.993743510063311, 28.946953895092609 ], [ -81.993796146432516, 28.947060979003925 ], [ -81.993808964432489, 28.94710436184916 ], [ -81.993812242352121, 28.947130330893174 ], [ -81.993815881395818, 28.947188319618093 ], [ -81.993814293453298, 28.947431720234679 ], [ -81.993808772425396, 28.948212088564482 ], [ -81.993809106086161, 28.94913408993931 ], [ -81.993818504117883, 28.94940629398614 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carvello Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995595957571339, 28.946655882291108 ], [ -81.995003706982175, 28.946655859902737 ], [ -81.994212493885968, 28.946651361684644 ], [ -81.993868558995629, 28.946655811436351 ], [ -81.993808992606205, 28.946658076992943 ], [ -81.993768532901896, 28.946663845233637 ], [ -81.993697454635708, 28.94668404145758 ], [ -81.99364059125061, 28.946702311940367 ], [ -81.993601224104196, 28.946722508748699 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "De La Fuente Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996335518096359, 28.9448843695927 ], [ -81.996237630684476, 28.944942610681224 ], [ -81.996143068777954, 28.945001802814758 ], [ -81.996101516845371, 28.945045083658169 ], [ -81.996079644456685, 28.945074899267933 ], [ -81.996067616177697, 28.945117220054886 ], [ -81.996061052696163, 28.945175890558179 ], [ -81.996061048259293, 28.945282651676465 ], [ -81.996059941120237, 28.945339092779111 ], [ -81.996062136852814, 28.945400956763521 ], [ -81.996066517287986, 28.945469326346828 ], [ -81.996076346291005, 28.945500987206692 ], [ -81.996095525419165, 28.945535625014557 ], [ -81.996245670968904, 28.945714871798465 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "De La Fuente Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997511026388423, 28.944554590967712 ], [ -81.997238749689046, 28.944554584387266 ], [ -81.997060514226177, 28.94455073299401 ], [ -81.996931484152768, 28.944550729939959 ], [ -81.996895398449126, 28.944555539188464 ], [ -81.996873529253463, 28.944561308817356 ], [ -81.996847286748078, 28.944576696779315 ], [ -81.996756943920957, 28.944626852084038 ], [ -81.996668660771377, 28.944678174948788 ], [ -81.996582289651656, 28.944728818379645 ], [ -81.996463016094154, 28.944801168217275 ], [ -81.996335518096359, 28.9448843695927 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ballesteros Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997511026388423, 28.944554590967712 ], [ -81.997503718335764, 28.944711983227872 ], [ -81.997487718586072, 28.944797881213493 ], [ -81.997466184509207, 28.94485083185187 ], [ -81.997429042968733, 28.944935039405529 ], [ -81.99737541621198, 28.945001075324679 ], [ -81.997307487819313, 28.945060820129804 ], [ -81.997225260855771, 28.945114279213211 ], [ -81.99712515588773, 28.945174022312266 ], [ -81.997017900636607, 28.945243202251415 ], [ -81.996889197478936, 28.945318669661535 ], [ -81.996724739777491, 28.945419291963649 ], [ -81.996435152992845, 28.945592237543085 ], [ -81.996245670968904, 28.945714871798465 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ballesteros Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998256653894472, 28.943898279238994 ], [ -81.998053266615528, 28.94391558847698 ], [ -81.997934353384096, 28.943928571446051 ], [ -81.997903188610792, 28.943935784756512 ], [ -81.997876124864803, 28.943946604596061 ], [ -81.997840860607695, 28.943970409189635 ], [ -81.99781696433736, 28.94398760016475 ], [ -81.997757737831847, 28.944039693010236 ], [ -81.997685353105695, 28.944103362909999 ], [ -81.997602272937883, 28.944182585393502 ], [ -81.9975591482672, 28.944229494783269 ], [ -81.997549716713507, 28.944243802262264 ], [ -81.997541651457865, 28.94426027256414 ], [ -81.997536593787046, 28.944278426603717 ], [ -81.997533999032129, 28.944297262825174 ], [ -81.997527432063919, 28.944402623469696 ], [ -81.997524150603411, 28.944474759036328 ], [ -81.997511026388423, 28.944554590967712 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carvello Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998221671019905, 28.943371168930259 ], [ -81.998240751622077, 28.943473330463306 ], [ -81.998251790488382, 28.943605293721692 ], [ -81.998254565836191, 28.943776339690913 ], [ -81.998256653894472, 28.943898279238994 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ballesteros Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998619740776874, 28.943865141808825 ], [ -81.998256653894472, 28.943898279238994 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carvello Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998256653894472, 28.943898279238994 ], [ -81.998271410395532, 28.94412623119937 ], [ -81.998281250022188, 28.944217123844108 ], [ -81.998286989554984, 28.944257519591158 ], [ -81.998296010468465, 28.94430513102234 ], [ -81.998341932775844, 28.94448835942951 ], [ -81.998361612355055, 28.944559052560976 ], [ -81.998370634522715, 28.944598005580055 ], [ -81.998376284859191, 28.944638776673774 ], [ -81.998385392833242, 28.94475021450862 ], [ -81.998382111625887, 28.944786282729968 ], [ -81.998375549721985, 28.944831729341644 ], [ -81.998361605903298, 28.944889438918619 ], [ -81.99834356417314, 28.944937769101031 ], [ -81.998296814316063, 28.945036596616561 ], [ -81.99826529648216, 28.945088033193024 ], [ -81.998223003291571, 28.945152735118025 ], [ -81.998167319140478, 28.945219682636726 ], [ -81.998099983650576, 28.945294122593442 ], [ -81.998018790298374, 28.945374913534295 ], [ -81.997999928426282, 28.945390782759723 ], [ -81.997895770304751, 28.945465803086972 ], [ -81.997737958421226, 28.945570660296728 ], [ -81.997580024323995, 28.945669055094889 ], [ -81.997265092204955, 28.94585244329571 ], [ -81.996523828082147, 28.94630862179098 ], [ -81.996191503796808, 28.94651119604978 ], [ -81.996063180573771, 28.946574861577865 ], [ -81.995934859086475, 28.946618269605917 ], [ -81.995806536204938, 28.946644311982897 ], [ -81.995701247659298, 28.946655884935783 ], [ -81.995595957571339, 28.946655882291108 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barboza Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99604028276454, 28.943369093845448 ], [ -81.996040274799597, 28.943584413505885 ], [ -81.996040268940092, 28.943700175926899 ], [ -81.996041606477107, 28.943849858296979 ], [ -81.996048167344028, 28.943876789244804 ], [ -81.996060192849356, 28.943897949292126 ], [ -81.996079874913534, 28.943918149531846 ], [ -81.996092461995659, 28.943928230334755 ], [ -81.996116591189192, 28.943940965129944 ], [ -81.996187034212483, 28.943946044442939 ], [ -81.996301847040854, 28.943947009645939 ], [ -81.996531476842733, 28.943947977913663 ], [ -81.996694401437907, 28.943947983135637 ], [ -81.996861490753162, 28.943947932321027 ], [ -81.997003854421251, 28.943946066205829 ], [ -81.997125231334564, 28.943946068114407 ], [ -81.997189744459007, 28.943946070466161 ], [ -81.997213872116106, 28.943946445451985 ], [ -81.997251050083065, 28.943940994610912 ], [ -81.997293166531406, 28.943924789432604 ], [ -81.997335282076875, 28.943903952769912 ], [ -81.997395823814387, 28.943850703396613 ], [ -81.997453731127791, 28.943802083608908 ], [ -81.997511231114814, 28.943754674665396 ], [ -81.997548489905654, 28.943716419969942 ], [ -81.997564811810776, 28.943696005000948 ], [ -81.997574813840274, 28.943674747165765 ], [ -81.997576841344824, 28.943654645915622 ], [ -81.997576842645273, 28.943606555488934 ], [ -81.997577591683878, 28.943371036202215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barboza Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99819619143959, 28.94220770635199 ], [ -81.997984737142787, 28.942203264686398 ], [ -81.997586720830441, 28.942204218546351 ], [ -81.996912062145825, 28.942203242910164 ], [ -81.996340393208413, 28.942206842400505 ], [ -81.996163048046284, 28.942203221733656 ], [ -81.99613243144934, 28.942209954632336 ], [ -81.996104002748822, 28.942218609475393 ], [ -81.996077756257293, 28.94224265479837 ], [ -81.996062447804462, 28.942261890324914 ], [ -81.996048234594397, 28.942287859699295 ], [ -81.996043856884469, 28.942305171869133 ], [ -81.996040575669909, 28.942348453882307 ], [ -81.99604032027311, 28.942470773283205 ], [ -81.996040314956289, 28.94259811214781 ], [ -81.996042943724746, 28.942679147198803 ], [ -81.996048203396896, 28.942790279227577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santa Cruz Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99952261508345, 28.942276353229261 ], [ -81.999534155844174, 28.942306195738947 ], [ -81.999540717459368, 28.942339860338972 ], [ -81.999543997088793, 28.942437965818176 ], [ -81.999543995092338, 28.942556270020891 ], [ -81.999545087974909, 28.942754406439718 ], [ -81.99956472285227, 28.943216348249816 ], [ -81.999580514208461, 28.943424723037577 ], [ -81.999598937803682, 28.943633095121569 ], [ -81.999617360950381, 28.943774326653461 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sherwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996996542742153, 28.918381144071621 ], [ -81.997024041056719, 28.918271501236088 ], [ -81.997043742224136, 28.91819106284893 ], [ -81.997062940719346, 28.918114625229837 ], [ -81.997078093381347, 28.918039964136447 ], [ -81.997089081460999, 28.917993016086367 ], [ -81.997091228479675, 28.917975080281515 ], [ -81.997094418816744, 28.917913739516983 ], [ -81.997091234289528, 28.917823979868366 ], [ -81.997086041117612, 28.917722440688518 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hartley Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998831154649196, 28.919617717258312 ], [ -81.998753024753213, 28.919495883872052 ], [ -81.998673495790612, 28.919398043389634 ], [ -81.998584317212661, 28.919320784129368 ], [ -81.998493398084761, 28.919261231454847 ], [ -81.998366379708742, 28.919201742302121 ], [ -81.998220443057136, 28.919147768495037 ], [ -81.998105176614786, 28.919093794101489 ], [ -81.997997531218758, 28.91903638198227 ], [ -81.997859408353875, 28.918951811934029 ], [ -81.997707444707814, 28.918836362194192 ], [ -81.99758016018724, 28.918718146316923 ], [ -81.997535710134954, 28.918675481260838 ], [ -81.997476108599486, 28.918600819546711 ], [ -81.997424587796075, 28.918548377927454 ], [ -81.997383115861368, 28.918512455743482 ], [ -81.997321577322253, 28.918471121147988 ], [ -81.997261318142506, 28.918448627408115 ], [ -81.997170015928035, 28.918422919874335 ], [ -81.997084193177514, 28.918398819394664 ], [ -81.996996542742153, 28.918381144071621 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sherwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998197763260009, 28.919964235514971 ], [ -81.998118586434359, 28.919903845433595 ], [ -81.998051911129437, 28.919847847881808 ], [ -81.99798826717128, 28.91980340605663 ], [ -81.997897346018561, 28.919739409173754 ], [ -81.997828650288469, 28.919695855949048 ], [ -81.997759798617778, 28.919656798829617 ], [ -81.997646049813952, 28.919597418415968 ], [ -81.997507805450397, 28.919513807152939 ], [ -81.997401895565417, 28.919443114595385 ], [ -81.997310594565903, 28.919380454508808 ], [ -81.997219292992582, 28.91930655084267 ], [ -81.997142600308294, 28.919239070892448 ], [ -81.997082099676433, 28.919185656269061 ], [ -81.997019467389777, 28.919119881910007 ], [ -81.996979059053061, 28.919078106431723 ], [ -81.996947743228759, 28.919037220823544 ], [ -81.996929559301805, 28.919004333481521 ], [ -81.996910313506604, 28.918953854034829 ], [ -81.996901571437107, 28.918901678522953 ], [ -81.996896226796679, 28.918855898571056 ], [ -81.996898250633492, 28.918812346568288 ], [ -81.996908353165551, 28.918754573664504 ], [ -81.996939673485798, 28.918625694883264 ], [ -81.996966984458766, 28.918509697183683 ], [ -81.996996542742153, 28.918381144071621 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Millwood Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995314159872564, 28.9204927645733 ], [ -81.995489796942479, 28.92039950042 ], [ -81.995847265790246, 28.92023095168156 ], [ -81.995986963001087, 28.920168666064004 ], [ -81.996094050612086, 28.920125116404567 ], [ -81.996246598235913, 28.920077123280603 ], [ -81.996517782654578, 28.919990671065683 ], [ -81.996713337238845, 28.919925148757009 ], [ -81.996760108355119, 28.919908003611042 ], [ -81.996787086044307, 28.919895818778453 ], [ -81.996828497217436, 28.919859210036982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rosebury Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996176631161475, 28.918843821752311 ], [ -81.996116373669295, 28.918830966735925 ], [ -81.996015940009769, 28.918803652960154 ], [ -81.995930945913315, 28.918778156821954 ], [ -81.995834826150301, 28.918742744032439 ], [ -81.995726984689611, 28.918702519742212 ], [ -81.995637706550767, 28.918665389064586 ], [ -81.995558388559672, 28.918628258669202 ], [ -81.995467349000705, 28.918583909444941 ], [ -81.995401708523445, 28.918552623609301 ], [ -81.995318402494249, 28.918512835667105 ], [ -81.9952549903104, 28.918487643951433 ], [ -81.995185103317709, 28.918474272052141 ], [ -81.99512018955032, 28.918474231736045 ], [ -81.995044495395376, 28.918491939153437 ], [ -81.994983625117939, 28.918515822418328 ], [ -81.994944941190241, 28.918544011375861 ], [ -81.994900233291148, 28.918589935628855 ], [ -81.994867376308051, 28.91864026534612 ], [ -81.994838654205509, 28.918692175140169 ], [ -81.994810128119227, 28.918740988253528 ], [ -81.994769683084101, 28.918809399667133 ], [ -81.994739202858, 28.918865778443077 ], [ -81.994703838550919, 28.918929374483689 ], [ -81.994661636704549, 28.918996065111955 ], [ -81.994634673539707, 28.919042129854532 ], [ -81.99460262938284, 28.919095413656052 ], [ -81.994567265117269, 28.919137008961929 ], [ -81.994510019969411, 28.919192010564213 ], [ -81.994466255011559, 28.919221573365132 ], [ -81.994390255881214, 28.919252509871388 ], [ -81.994338091856022, 28.919260070670958 ], [ -81.99427027403091, 28.919264075716786 ], [ -81.994216768311645, 28.919258691162259 ], [ -81.994154448740332, 28.919240811190502 ], [ -81.994099546380951, 28.919216072266316 ], [ -81.994040954940431, 28.919177849232277 ], [ -81.993999331225226, 28.919140078099719 ], [ -81.993972262498261, 28.919112961942645 ], [ -81.99394902963833, 28.919080964533023 ], [ -81.993933878002807, 28.919050743213475 ], [ -81.993919619004856, 28.919014036225878 ], [ -81.993911659085398, 28.918958303704166 ], [ -81.993913681951042, 28.918917418033697 ], [ -81.993923788172864, 28.918876532738256 ], [ -81.993959149516058, 28.918801874745853 ], [ -81.994019481350364, 28.918701077451722 ], [ -81.99407516607512, 28.918604479207122 ], [ -81.994132610590455, 28.918506849691969 ], [ -81.99418810025422, 28.918410251389069 ], [ -81.994245543633014, 28.918310902947642 ], [ -81.99430611212729, 28.918222209837761 ], [ -81.994368439689367, 28.918144863155995 ], [ -81.994415719592865, 28.918100518205662 ], [ -81.994488202745075, 28.918044143080486 ], [ -81.994542124556745, 28.918007018543449 ], [ -81.994594290514328, 28.917971610080215 ], [ -81.994663451735107, 28.917934486124508 ], [ -81.994736217417, 28.917902013618164 ], [ -81.994764148413438, 28.917892799586351 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rosebury Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994764148413438, 28.917892799586351 ], [ -81.994829008660972, 28.917870424314508 ], [ -81.994885582115884, 28.91785620544864 ], [ -81.994950236689476, 28.917843764397112 ], [ -81.99503250156026, 28.917835149725843 ], [ -81.99511846335291, 28.917828963223581 ], [ -81.995192702948202, 28.917828966891339 ], [ -81.995280419837911, 28.917835158959303 ], [ -81.995364621959922, 28.917846849440949 ], [ -81.995455660913805, 28.917867822938184 ], [ -81.995536540600284, 28.917896015300556 ], [ -81.995632659138806, 28.917938990455813 ], [ -81.995696737483399, 28.917968558156783 ], [ -81.995762378646759, 28.918001218951417 ], [ -81.995843259095054, 28.918039724380357 ], [ -81.995904015841418, 28.918069290973197 ], [ -81.995966335601778, 28.918097482487191 ], [ -81.99603549380582, 28.918122923982146 ], [ -81.996096833420566, 28.91814619427932 ], [ -81.996145707742372, 28.918166673372699 ], [ -81.99621436548415, 28.918194318169114 ], [ -81.996289870789298, 28.918222072305891 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winifred Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996453597093335, 28.917574269388588 ], [ -81.996442071262607, 28.917570487544108 ], [ -81.996311960618357, 28.917522011593107 ], [ -81.996206967323516, 28.917476526469432 ], [ -81.996102916870441, 28.917424081877076 ], [ -81.996015030804358, 28.917375193655506 ], [ -81.995933204381217, 28.91733341656812 ], [ -81.995843296916746, 28.917289861646609 ], [ -81.995740257846379, 28.917240972756947 ], [ -81.995615890945871, 28.917191621092314 ], [ -81.9955656849001, 28.917173743982335 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winifred Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9955656849001, 28.917173743982335 ], [ -81.995480506857888, 28.917143145059381 ], [ -81.995352341907946, 28.917109413580942 ], [ -81.995200163406963, 28.917072660206248 ], [ -81.995130095920928, 28.917057853617326 ], [ -81.995073525496849, 28.917041852862582 ], [ -81.995030084929951, 28.917025852585951 ], [ -81.994987658196578, 28.916998297521083 ], [ -81.994958363647285, 28.916965408572818 ], [ -81.99493614031401, 28.916928967550461 ], [ -81.99492402128061, 28.916877416153024 ], [ -81.994924714524259, 28.916799348553806 ], [ -81.994924719584716, 28.916702746846802 ], [ -81.994929803634989, 28.916614395938936 ], [ -81.994929808942516, 28.916512982279951 ], [ -81.994929817110688, 28.916376503556812 ], [ -81.994929823569635, 28.916253088285856 ], [ -81.994929829794614, 28.916134142089462 ], [ -81.99492983567778, 28.916002131533137 ], [ -81.994925421398221, 28.915873637955773 ], [ -81.994924769449128, 28.915750831700436 ], [ -81.994919373734518, 28.915603434957291 ], [ -81.994909951816666, 28.915457074792769 ], [ -81.994905918020535, 28.915348639282811 ], [ -81.994901881617778, 28.915270421699663 ], [ -81.994894716239443, 28.915156098575366 ], [ -81.994869668685226, 28.915010427140238 ], [ -81.994841921129691, 28.914901648715045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Townsend Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994655786459788, 28.914247080575421 ], [ -81.995549912284844, 28.914056869364181 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winifred Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994841921129691, 28.914901648715045 ], [ -81.994822435724856, 28.914839042959294 ], [ -81.994788094529184, 28.914725272750491 ], [ -81.994757794826342, 28.914613279316633 ], [ -81.994726484282964, 28.914496842922002 ], [ -81.994698205201885, 28.91439907156083 ], [ -81.994665885305608, 28.914289743404762 ], [ -81.994655786459788, 28.914247080575421 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arnsworth Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994263794761935, 28.913583984656075 ], [ -81.994501744761948, 28.913486363607266 ], [ -81.994610372203311, 28.913449804341834 ], [ -81.994718463820021, 28.913421365642716 ], [ -81.994828573026552, 28.91340270513275 ], [ -81.994964947906254, 28.913388489364731 ], [ -81.995129432280834, 28.913379128873231 ], [ -81.995263252395205, 28.913368819654856 ], [ -81.995367767929224, 28.913360229942683 ], [ -81.995474435091054, 28.913348201569349 ], [ -81.995571331640477, 28.913329641047842 ], [ -81.995714398924221, 28.91328720449776 ], [ -81.995925135571937, 28.913307618564051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winifred Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994655786459788, 28.914247080575421 ], [ -81.994634354710513, 28.914169106780648 ], [ -81.994609355057975, 28.914076630211039 ], [ -81.994593445796241, 28.914033643210935 ], [ -81.994582093793767, 28.914010333695952 ], [ -81.994563171875768, 28.913981473834692 ], [ -81.994493167249061, 28.913890654684291 ], [ -81.994425488358331, 28.91380354854876 ], [ -81.994333921488519, 28.913684369188434 ], [ -81.994263794761935, 28.913583984656075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Benzinger Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993876006882005, 28.912880037117414 ], [ -81.993960861301105, 28.912872929148271 ], [ -81.994181080808943, 28.912853385434506 ], [ -81.994406352396382, 28.91282317461711 ], [ -81.994588911414567, 28.912790907128343 ], [ -81.994823342307029, 28.912743131871157 ], [ -81.995038431471997, 28.912691916814509 ], [ -81.995244555388552, 28.912624868473479 ], [ -81.995456383261399, 28.912612818653376 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winifred Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994263794761935, 28.913583984656075 ], [ -81.994216279694314, 28.91352859143532 ], [ -81.99415276038566, 28.913446227816721 ], [ -81.994097206141461, 28.913364454629054 ], [ -81.994042661500373, 28.913275570458193 ], [ -81.993993443905893, 28.913177629247809 ], [ -81.993943440322425, 28.91307208793107 ], [ -81.993918438620611, 28.913010207219791 ], [ -81.993893437761471, 28.912935263041973 ], [ -81.993876006882005, 28.912880037117414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Renwick Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993852133351936, 28.912195192251335 ], [ -81.993948782089618, 28.912208088776612 ], [ -81.994060120329095, 28.912212996957869 ], [ -81.994144801578642, 28.912211486717588 ], [ -81.99422217474438, 28.912201129977117 ], [ -81.994297867563375, 28.912183374279561 ], [ -81.994395423345082, 28.912152297958585 ], [ -81.994498027758794, 28.912116783378142 ], [ -81.994573720186722, 28.912085708712059 ], [ -81.994664551024798, 28.912048711942173 ], [ -81.994733055818713, 28.912016735496987 ], [ -81.9948097241639, 28.912008511421433 ], [ -81.994911088678151, 28.912008511808228 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winifred Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993876006882005, 28.912880037117414 ], [ -81.993849745854646, 28.912803595959769 ], [ -81.993821469971522, 28.912691602378839 ], [ -81.993803206493311, 28.912587357291784 ], [ -81.993794207633599, 28.912477395683005 ], [ -81.993797243020566, 28.912429398114348 ], [ -81.993804316347408, 28.912371624343354 ], [ -81.993819473020338, 28.912305852085865 ], [ -81.993830586799604, 28.912263190180823 ], [ -81.993852133351936, 28.912195192251335 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pine Hills Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9955656849001, 28.917173743982335 ], [ -81.995595801478046, 28.917132531699711 ], [ -81.995606915215546, 28.917108532786074 ], [ -81.995618029101706, 28.9170587588603 ], [ -81.995637784560373, 28.916953384790975 ], [ -81.995648420769115, 28.916807893390441 ], [ -81.995651459210777, 28.916654127668689 ], [ -81.99565543561404, 28.916441029637134 ], [ -81.995657469363991, 28.916144163187496 ], [ -81.995657480374092, 28.915901513878286 ], [ -81.995648397309608, 28.915699750039785 ], [ -81.995639314738867, 28.915510429773075 ], [ -81.995632249000778, 28.915374440738322 ], [ -81.995628214772296, 28.915236673375205 ], [ -81.995618331560379, 28.915087712816145 ], [ -81.995598997605796, 28.914954327385299 ], [ -81.995575169326941, 28.914834005253578 ], [ -81.995563841253087, 28.914774531755789 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chilton Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996363761248489, 28.916754017716062 ], [ -81.99647982488402, 28.916815029750516 ], [ -81.996602059497306, 28.916869250259733 ], [ -81.996721263278985, 28.916909251283926 ], [ -81.996909162789578, 28.916959919032898 ], [ -81.996993008245326, 28.916980363475385 ], [ -81.997088941980707, 28.916989866891392 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rosella Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996368759519285, 28.915375133051313 ], [ -81.996366741112396, 28.915327137106825 ], [ -81.996357652437723, 28.915209811161734 ], [ -81.996352604895847, 28.915129818773064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rosella Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996363761248489, 28.916754017716062 ], [ -81.996379822053726, 28.916672815059531 ], [ -81.996383888531241, 28.916612382937721 ], [ -81.996385891884344, 28.916439054466093 ], [ -81.996390744135326, 28.91615859996303 ], [ -81.996386261960666, 28.915881859040486 ], [ -81.996376831351895, 28.915614225753231 ], [ -81.996368759519285, 28.915375133051313 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hinckley Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997077915480475, 28.915409815654957 ], [ -81.997203180566089, 28.91541781643496 ], [ -81.997353701075468, 28.915422264383409 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sherwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997088941980707, 28.916989866891392 ], [ -81.99708972767813, 28.916823478858248 ], [ -81.997096575961862, 28.916504798582487 ], [ -81.997098734005263, 28.916234247605693 ], [ -81.997096590990665, 28.916029355768462 ], [ -81.997089015978304, 28.915819562523431 ], [ -81.997085989973797, 28.915680906472932 ], [ -81.997083973562368, 28.915527140576508 ], [ -81.997077915480475, 28.915409815654957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hinckley Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996368759519285, 28.915375133051313 ], [ -81.996873857455668, 28.915394700946951 ], [ -81.997077915480475, 28.915409815654957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chilton Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996055669974453, 28.916624920646868 ], [ -81.996123860188121, 28.916649586096785 ], [ -81.996293431964602, 28.916721700848868 ], [ -81.996363761248489, 28.916754017716062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kingston Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999523152859993, 28.919296292774892 ], [ -81.999452624364082, 28.919222036117564 ], [ -81.999365490411989, 28.919134029226747 ], [ -81.999274059644904, 28.919038115424971 ], [ -81.999165242097504, 28.918927075330881 ], [ -81.999060916377175, 28.918839068109584 ], [ -81.998952058785264, 28.918762782500625 ], [ -81.998830191128178, 28.918697429801931 ], [ -81.9987082835042, 28.918639674329544 ], [ -81.998595453866372, 28.918597023298549 ], [ -81.998497891616722, 28.9185526237126 ], [ -81.998408742919494, 28.918512663465631 ], [ -81.998311181123782, 28.918453464274318 ], [ -81.998225394863681, 28.918386864545408 ], [ -81.998141289766679, 28.918311384382783 ], [ -81.998060550945581, 28.918221106554157 ], [ -81.99800302184066, 28.918149440725632 ], [ -81.997949150363212, 28.91805741460718 ], [ -81.997898642004913, 28.917953420459188 ], [ -81.997877428981127, 28.917901869180994 ], [ -81.997858236241839, 28.91785209636064 ], [ -81.997840054849803, 28.917754323172836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kingston Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997840054849803, 28.917754323172836 ], [ -81.997828660151455, 28.917669883338597 ], [ -81.99782740884315, 28.917301342002744 ], [ -81.997825651420285, 28.917204397398439 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winifred Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997840054849803, 28.917754323172836 ], [ -81.997770350270088, 28.917752545325449 ], [ -81.99772912992637, 28.917751344529339 ], [ -81.99761386486378, 28.917751342389042 ], [ -81.997493714274384, 28.917746870074939 ], [ -81.997348558065298, 28.917742398033994 ], [ -81.99722821277102, 28.917733801982838 ], [ -81.997086041117612, 28.917722440688518 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winifred Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998497309411007, 28.917804008897662 ], [ -81.998326895370539, 28.917788629729472 ], [ -81.99809967704158, 28.917769403894699 ], [ -81.997840054849803, 28.917754323172836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kingston Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001735720980122, 28.921882169570242 ], [ -82.001686013216485, 28.921777151746497 ], [ -82.001613274100592, 28.921655382957333 ], [ -82.001534470833093, 28.921522060267709 ], [ -82.001437774606956, 28.921382322321719 ], [ -82.001380724531941, 28.921300160491185 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lancaster Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000827480881838, 28.923035309826425 ], [ -82.000880741416822, 28.923005683717562 ], [ -82.000945888443951, 28.922976251546622 ], [ -82.001183587477371, 28.922892600573885 ], [ -82.001315643175047, 28.922838382721501 ], [ -82.001433610295351, 28.922782614688092 ], [ -82.001563903653633, 28.92271755280931 ], [ -82.001761519609957, 28.922615442840364 ], [ -82.002006275536672, 28.922486428316251 ], [ -82.002076993795598, 28.922450875262058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kingston Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002497302771587, 28.922961616320709 ], [ -82.002447677706485, 28.922902831541894 ], [ -82.002373823773397, 28.922814826217742 ], [ -82.002260504824037, 28.922684536157021 ], [ -82.002156174277957, 28.922550465270419 ], [ -82.002076993795598, 28.922450875262058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kingston Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002076993795598, 28.922450875262058 ], [ -82.00204668411412, 28.922403766723544 ], [ -82.001987078036578, 28.922305110317208 ], [ -82.001906255325892, 28.92216201060025 ], [ -82.001820905987984, 28.92202174137719 ], [ -82.001735720980122, 28.921882169570242 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kingston Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002811448787057, 28.923777175066519 ], [ -82.002825624049123, 28.923536116547851 ], [ -82.002817541842902, 28.923467677537484 ], [ -82.00278824072025, 28.92337612837445 ], [ -82.002720648445049, 28.923243946732622 ], [ -82.002643175267622, 28.923132416056461 ], [ -82.00254790529597, 28.923021431488152 ], [ -82.002497302771587, 28.922961616320709 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001933812474448, 28.923901963664157 ], [ -82.001958472960638, 28.923702114789108 ], [ -82.001958469719213, 28.923622359047478 ], [ -82.001939006719851, 28.923458293876138 ], [ -82.001926477469667, 28.923413470648697 ], [ -82.001894147875774, 28.923344143065311 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Somerset Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001079815298212, 28.923592986635505 ], [ -82.001156511924989, 28.923580133104366 ], [ -82.001295308821668, 28.923542247704468 ], [ -82.001508324153676, 28.923476602517006 ], [ -82.001767018742115, 28.923396580304715 ], [ -82.001894147875774, 28.923344143065311 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Somerset Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001894147875774, 28.923344143065311 ], [ -82.001965109796103, 28.923307116621658 ], [ -82.002054780205654, 28.923256148557208 ], [ -82.002190373623861, 28.923169259477099 ], [ -82.002497302771587, 28.922961616320709 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sherwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001098752239372, 28.924119137864032 ], [ -82.001074641955341, 28.923869588180406 ], [ -82.001067747446669, 28.923795669418826 ], [ -82.00106774705479, 28.92373434216929 ], [ -82.001076839426844, 28.923653459423814 ], [ -82.001079815298212, 28.923592986635505 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sherwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001079815298212, 28.923592986635505 ], [ -82.00108088062035, 28.923552133377463 ], [ -82.001070777151924, 28.923492581883838 ], [ -82.001050595090149, 28.923409834202104 ], [ -82.001036022280232, 28.923373223596499 ], [ -82.001014073392554, 28.923326289846521 ], [ -82.000989162654307, 28.923283900967249 ], [ -82.000958928125698, 28.923243525121816 ], [ -82.000837014788317, 28.923052042886106 ], [ -82.000827480881838, 28.923035309826425 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lancaster Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000191496562792, 28.923899842731057 ], [ -82.000299148232472, 28.923625803063459 ], [ -82.000316103335564, 28.923577909224115 ], [ -82.000348429972533, 28.923507692603579 ], [ -82.000408037225284, 28.923405478785515 ], [ -82.000464611711678, 28.923323707355912 ], [ -82.00052926979815, 28.923252600139502 ], [ -82.00058887476348, 28.923198382972071 ], [ -82.000653533749869, 28.923142387348619 ], [ -82.000745467042023, 28.923073948092057 ], [ -82.000827480881838, 28.923035309826425 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alistar Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999433610870028, 28.923409821274706 ], [ -81.999525015228798, 28.923336996534552 ], [ -81.999604527822555, 28.923254511700726 ], [ -81.999695931051249, 28.923159394717317 ], [ -81.999807390689995, 28.923031758977462 ], [ -81.999987765635765, 28.922828631753525 ], [ -82.000066566552533, 28.922754860301939 ], [ -82.000164564189262, 28.922669533183736 ], [ -82.000244373980451, 28.922612649033237 ], [ -82.000326696351621, 28.922561819246081 ], [ -82.000489833259039, 28.922468312666975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walden Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998745728652452, 28.922947852806235 ], [ -81.998919219978632, 28.922800392289982 ], [ -81.999291412012056, 28.92250646687927 ], [ -81.999652361545145, 28.922220677289975 ], [ -81.999751365297328, 28.922144238716054 ], [ -81.999861485124654, 28.922071355141611 ], [ -82.000123510144149, 28.921907958126422 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shalimar Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996289870789298, 28.918222072305891 ], [ -81.99631460576478, 28.918117818048994 ], [ -81.996357266797318, 28.917941764936717 ], [ -81.996429788962416, 28.91763785719078 ], [ -81.996453597093335, 28.917574269388588 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004311827661198, 28.921810965375197 ], [ -82.004204871149511, 28.921767719461197 ], [ -82.00407693815778, 28.921708978880833 ], [ -82.003982225230502, 28.921668986147843 ], [ -82.003921610029607, 28.921643654811525 ], [ -82.003855689778476, 28.921624324749942 ], [ -82.003745825104687, 28.921612327764514 ], [ -82.003583839232235, 28.921611204542334 ], [ -82.003571647283763, 28.921612442766737 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003588559219637, 28.921722121899947 ], [ -82.003637553737491, 28.921717940447625 ], [ -82.003800382989056, 28.921724984451956 ], [ -82.004009507607392, 28.921761644047251 ], [ -82.00421190155302, 28.921798683367197 ], [ -82.004311827661198, 28.921810965375197 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004311827661198, 28.921810965375197 ], [ -82.00443154518905, 28.921846959082529 ], [ -82.004596724065948, 28.92189961763658 ], [ -82.004660210179239, 28.921925404239492 ], [ -82.004770239618111, 28.921967605737365 ], [ -82.004845252966973, 28.922010269339655 ], [ -82.004895922952798, 28.922044293300122 ], [ -82.004986280210332, 28.922114106416636 ], [ -82.005038472993277, 28.922164916589029 ], [ -82.005080148590338, 28.92221691180972 ], [ -82.005119550584268, 28.922270238883218 ], [ -82.005200801277596, 28.922411816278423 ], [ -82.005259815992105, 28.922518528779946 ], [ -82.005325662706809, 28.922635538916015 ], [ -82.005374563783818, 28.922729069177063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005374563783818, 28.922729069177063 ], [ -82.005435538667257, 28.922834186266385 ], [ -82.005504096802056, 28.922959489212932 ], [ -82.005578745497616, 28.923094278634231 ], [ -82.005643320232139, 28.923212322682428 ], [ -82.005692670597867, 28.923296513136922 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005692670597867, 28.923296513136922 ], [ -82.005762942653803, 28.923393094895456 ], [ -82.005826000838226, 28.923469819170581 ], [ -82.005907623716553, 28.923554113842187 ], [ -82.005985670573708, 28.923620771430009 ], [ -82.006083419537347, 28.923694762926239 ], [ -82.006144795246342, 28.9237360909529 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clarks Hill Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005352780045911, 28.924234301640261 ], [ -82.005525433799363, 28.924165383425926 ], [ -82.005659841101888, 28.924101926239832 ], [ -82.005783747729495, 28.924029293881869 ], [ -82.005886708219023, 28.923971192813827 ], [ -82.006004627547142, 28.92388741713539 ], [ -82.006028873615094, 28.923868753063179 ], [ -82.006044784789509, 28.923852087010172 ], [ -82.006081151968615, 28.923808087770112 ], [ -82.006144795246342, 28.9237360909529 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00817550982832, 28.924519932856487 ], [ -82.008288517346244, 28.924639375921256 ], [ -82.008371363348047, 28.924747316375111 ], [ -82.008434584453795, 28.924853181745018 ], [ -82.008507369507498, 28.925012703333994 ], [ -82.008515757307279, 28.925031144858529 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yeamans Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00817550982832, 28.924519932856487 ], [ -82.008224759140319, 28.924479266295084 ], [ -82.008258094630079, 28.924457932314077 ], [ -82.008422915712416, 28.924380161121206 ], [ -82.008952956167292, 28.924168706738964 ], [ -82.009331973656899, 28.924016390355128 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilkinson Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008064298923145, 28.925664871086347 ], [ -82.008084803151519, 28.925542484371331 ], [ -82.008090072035671, 28.925435571973139 ], [ -82.008079317693472, 28.925326595116086 ], [ -82.008056060351024, 28.925205587744564 ], [ -82.008039164350009, 28.925105229048743 ], [ -82.008038072678929, 28.925043326213913 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilkinson Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008020279869953, 28.925905836980615 ], [ -82.008027387733577, 28.925868730583719 ], [ -82.008059611824081, 28.925692028640217 ], [ -82.008064298923145, 28.925664871086347 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Smoaks Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005721310414771, 28.925173333318661 ], [ -82.005794055194016, 28.925244659681262 ], [ -82.005863766723948, 28.925303984689041 ], [ -82.005930450138891, 28.925351978752534 ], [ -82.005973642127145, 28.925381973836277 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Smoaks Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005973642127145, 28.925381973836277 ], [ -82.005999405372705, 28.925400638584701 ], [ -82.006053204386973, 28.925433300398304 ], [ -82.006108521226452, 28.925463962640368 ], [ -82.006197636580012, 28.925504761638017 ], [ -82.006279011262251, 28.925537283246332 ], [ -82.006357068025707, 28.925567666507902 ], [ -82.006436619859059, 28.925592604304622 ], [ -82.006492691758737, 28.925605935060815 ], [ -82.006573011543495, 28.925625929967477 ], [ -82.006640450198958, 28.925637258860835 ], [ -82.006703341151166, 28.925645922547329 ], [ -82.00676926365594, 28.925651919780783 ], [ -82.00688694235474, 28.925654273790649 ], [ -82.007112605614466, 28.925657700715405 ], [ -82.007590502294335, 28.925659051648275 ], [ -82.008064298923145, 28.925664871086347 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lightbourne Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005973642127145, 28.925381973836277 ], [ -82.006005462026991, 28.925313312362089 ], [ -82.006152869453331, 28.92503379224793 ], [ -82.006253209806459, 28.924838671097831 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lightbourne Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006253209806459, 28.924838671097831 ], [ -82.00632478386413, 28.924699979778566 ], [ -82.006393371341787, 28.924564019797675 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cherry Vale Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006253209806459, 28.924838671097831 ], [ -82.006316859569083, 28.924854000192941 ], [ -82.006360808469296, 28.924867996517282 ], [ -82.006398694284755, 28.92488665976434 ], [ -82.006550262292095, 28.924961238655943 ], [ -82.006623741215449, 28.924987976695679 ], [ -82.006687390338797, 28.925007304589531 ], [ -82.006744219837103, 28.925019968411544 ], [ -82.006822428788354, 28.925027574749354 ], [ -82.006954897266127, 28.925033756451356 ], [ -82.007484956523896, 28.925036824143373 ], [ -82.008038072678929, 28.925043326213913 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008515757307279, 28.925031144858529 ], [ -82.00859812380854, 28.925007694706789 ], [ -82.00883285963441, 28.924939751133326 ], [ -82.008984398642667, 28.924901521378022 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blackthorne Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009873661766676, 28.927201733331664 ], [ -82.009880713595138, 28.926983083218282 ], [ -82.009885761721748, 28.926949307245327 ], [ -82.009891822781626, 28.926922642191546 ], [ -82.009903941437173, 28.926876423975319 ], [ -82.00996050699311, 28.926746651004141 ], [ -82.009994849792491, 28.926655988661601 ], [ -82.010007978116093, 28.926604435992886 ], [ -82.010017067291969, 28.926550217323872 ], [ -82.010020092508384, 28.92649066561253 ], [ -82.010022096671719, 28.926313790299744 ], [ -82.010024096239036, 28.926087141656765 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009873661766676, 28.927201733331664 ], [ -82.008555562553681, 28.927177292061788 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012285687968088, 28.927224784938662 ], [ -82.011377088176189, 28.927217061696059 ], [ -82.010351750800979, 28.927209774883607 ], [ -82.009873661766676, 28.927201733331664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 136th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959638874604906, 28.954610637213321 ], [ -81.959493158505026, 28.954738147480935 ], [ -81.959419885169638, 28.954810189525539 ], [ -81.959399129695726, 28.954834984524116 ], [ -81.959346598588155, 28.954918261831281 ], [ -81.959294431412317, 28.954983758670483 ], [ -81.958860772617925, 28.955329712730666 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 86th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958860772617925, 28.955329712730666 ], [ -81.961743047543891, 28.958166914362927 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 138th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962577510408266, 28.957506339201874 ], [ -81.96204108793701, 28.957935523611805 ], [ -81.961743047543891, 28.958166914362927 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 138th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961743047543891, 28.958166914362927 ], [ -81.960602293394871, 28.959056296720188 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 86th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961743047543891, 28.958166914362927 ], [ -81.961806340924525, 28.958223710002823 ], [ -81.962021038026776, 28.958446512458881 ], [ -81.962259316126008, 28.958683515155542 ], [ -81.962466297881747, 28.958889772108829 ], [ -81.962516208719762, 28.958952187637081 ], [ -81.962545922719798, 28.959012412148862 ], [ -81.962586343360584, 28.959112596701011 ], [ -81.962683305355228, 28.959483763111653 ], [ -81.962720617580004, 28.959575735902664 ], [ -81.962780336550608, 28.959667715815712 ], [ -81.962849888149606, 28.95973733424718 ], [ -81.962905740827182, 28.959779931550095 ], [ -81.962970286316761, 28.959817074178915 ], [ -81.963062141535517, 28.959862956686163 ], [ -81.963153707525649, 28.959894442999474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enconto Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959882171613643, 28.930232681039595 ], [ -81.959866207142284, 28.930259395918299 ], [ -81.959838639285763, 28.930307515166589 ], [ -81.959812241546445, 28.930355980338607 ], [ -81.959786821103108, 28.930404787768037 ], [ -81.959762184105756, 28.930453941006341 ], [ -81.95972776714332, 28.930527499279037 ], [ -81.959705669225457, 28.930577681884962 ], [ -81.959678874281963, 28.930642304302363 ], [ -81.959659121737346, 28.930693176056142 ], [ -81.959635454739242, 28.930758486051403 ], [ -81.959617849621537, 28.930810047798008 ], [ -81.959597110573029, 28.930876047118275 ], [ -81.959581850977742, 28.930927951535903 ], [ -81.959564043857057, 28.930994982154491 ], [ -81.959551324532356, 28.931047576687149 ], [ -81.959536447565654, 28.931114952861581 ], [ -81.959526070701813, 28.931167890067666 ], [ -81.95951432185349, 28.931235610054877 ], [ -81.959506288483041, 28.931288892642829 ], [ -81.959499353221858, 28.931337889661805 ], [ -81.959497469270559, 28.931358333285988 ], [ -81.959497468866829, 28.931359364608717 ], [ -81.959491780023612, 28.931412991677469 ], [ -81.959486283339857, 28.9314814019998 ], [ -81.959483137121367, 28.931535029835654 ], [ -81.959480569743036, 28.931603439237275 ], [ -81.95947976704268, 28.931657412457017 ], [ -81.959480522837183, 28.9317258237642 ], [ -81.959482063798731, 28.93177979678909 ], [ -81.959485944822561, 28.931848209941936 ], [ -81.959490026518367, 28.931901839057122 ], [ -81.959496838930349, 28.931970253094271 ], [ -81.959503264304502, 28.932023882916241 ], [ -81.959513204153239, 28.932091955024212 ], [ -81.959522171438223, 28.932144898965852 ], [ -81.959535040779826, 28.932212626376799 ], [ -81.959546352785665, 28.932265570121448 ], [ -81.959562348693694, 28.932332611825966 ], [ -81.959576201466803, 28.932385213461703 ], [ -81.959588828736159, 28.932437381624787 ], [ -81.959604630362037, 28.932503031023558 ], [ -81.959631735479135, 28.932580620279055 ], [ -81.959652059881947, 28.932650251054127 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nuevo Leon Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960435133061324, 28.930622655714117 ], [ -81.960378556664452, 28.930691945168231 ], [ -81.960347091729986, 28.930747258264287 ], [ -81.960327215538143, 28.93079238336351 ], [ -81.960305683258156, 28.930841874173467 ], [ -81.960274206873052, 28.930932126808166 ], [ -81.96024272334644, 28.931035481654252 ], [ -81.960222841456996, 28.931095163455467 ], [ -81.960194660280195, 28.931220358409288 ], [ -81.960173097581162, 28.931348464319733 ], [ -81.960156500192724, 28.931473660897588 ], [ -81.960151487062504, 28.931603229826326 ], [ -81.960155026642084, 28.931725748057769 ], [ -81.960158115408731, 28.931844369142329 ], [ -81.960164353407606, 28.931932645187725 ], [ -81.960174496861327, 28.932013779827972 ], [ -81.960189375614405, 28.932100927862024 ], [ -81.960213318283209, 28.932196119833645 ], [ -81.960250576709527, 28.932330406759842 ], [ -81.960259037528601, 28.932381135367539 ], [ -81.960259022172337, 28.932418434415936 ], [ -81.960245444619446, 28.932446775973197 ], [ -81.960228475256869, 28.932472135341339 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eduardo Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959769230432386, 28.932737890951209 ], [ -81.959794369092549, 28.932721518239386 ], [ -81.959814854048801, 28.932710880013971 ], [ -81.960194698452241, 28.932600439720268 ], [ -81.960244040875295, 28.932589809996436 ], [ -81.96027382767339, 28.932589818828436 ], [ -81.960307337942254, 28.932597197796174 ], [ -81.960333426915142, 28.932608549166829 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Villita Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959769230432386, 28.932737890951209 ], [ -81.959753396896801, 28.932759176739371 ], [ -81.959743145966144, 28.932786197381755 ], [ -81.959739410875798, 28.932814039263935 ], [ -81.959738471089395, 28.932841062702181 ], [ -81.959750558649645, 28.932873003046449 ], [ -81.95981194994387, 28.932991762520654 ], [ -81.959849178376174, 28.933057383118793 ], [ -81.959884511462519, 28.933122809145463 ], [ -81.959934747519966, 28.933202258566968 ], [ -81.95997196179934, 28.933257135504967 ], [ -81.960004524470847, 28.933307098953307 ], [ -81.960042669046658, 28.933359520103124 ], [ -81.960077095383198, 28.933407027141083 ], [ -81.960117105682571, 28.933456991877112 ], [ -81.960157116571409, 28.93350286289127 ], [ -81.960198055510745, 28.933552008595328 ], [ -81.960240856279484, 28.93360606963655 ], [ -81.96027342288096, 28.933643748280396 ], [ -81.960314365782992, 28.93368552581326 ], [ -81.960354379127779, 28.933728119634893 ], [ -81.96040276714092, 28.933776448195225 ], [ -81.960449297096062, 28.933818227336921 ], [ -81.960497686671133, 28.93386000520584 ], [ -81.960552591980559, 28.933905881391574 ], [ -81.960599122677863, 28.933946021012154 ], [ -81.960647515358332, 28.933985341879911 ], [ -81.960696836328836, 28.934024663904605 ], [ -81.960748951952169, 28.934062349065343 ], [ -81.960794553325456, 28.934097575352677 ], [ -81.960845740670024, 28.93413280325651 ], [ -81.960898785991745, 28.934169669347099 ], [ -81.960958350061503, 28.934208174077781 ], [ -81.961002092707517, 28.934236031617157 ], [ -81.961064447775897, 28.93427453711276 ], [ -81.961118430120948, 28.934304851829339 ], [ -81.961174273113528, 28.934335167063217 ], [ -81.961227323364483, 28.934362206137507 ], [ -81.961330631019322, 28.93442163943622 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palma Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955745709979695, 28.932488585130944 ], [ -81.955756165874817, 28.933707665963887 ], [ -81.955768852463052, 28.934555638211116 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leone Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955745709979695, 28.932488585130944 ], [ -81.95616088913583, 28.932482988332907 ], [ -81.956484839166876, 28.93247736067789 ], [ -81.956794828636603, 28.932466816556328 ], [ -81.95719976997789, 28.932454663498905 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lisbon Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957041160973048, 28.931824328430107 ], [ -81.95719976997789, 28.932454663498905 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leone Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95719976997789, 28.932454663498905 ], [ -81.957375093380691, 28.93243752161916 ], [ -81.95749394015688, 28.932429371028292 ], [ -81.957615890265544, 28.932419581844432 ], [ -81.95772387709097, 28.932408969766485 ], [ -81.957820694942129, 28.932399174274163 ], [ -81.957915029553888, 28.932384463134255 ], [ -81.958009984674391, 28.932369753024808 ], [ -81.958153350341291, 28.932348507309676 ], [ -81.95830043982285, 28.93232562313089 ], [ -81.958403772942859, 28.932312551209282 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Navarro Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957348454491552, 28.933077076630674 ], [ -81.957449556243944, 28.933069815510205 ], [ -81.957601185612674, 28.933056800129734 ], [ -81.957693806608347, 28.933047891260617 ], [ -81.957786428008603, 28.933037951907625 ], [ -81.957878851574748, 28.933027666849934 ], [ -81.957971082712447, 28.933016351248156 ], [ -81.95806331322251, 28.933004004260361 ], [ -81.958155349995437, 28.932991313374679 ], [ -81.958247189205409, 28.932977590139636 ], [ -81.958338835838731, 28.932963181038222 ], [ -81.958430479646694, 28.9329480825205 ], [ -81.958560144789843, 28.932924629624747 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lisbon Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95719976997789, 28.932454663498905 ], [ -81.957231371312687, 28.932568500745017 ], [ -81.957272266637119, 28.932729020247987 ], [ -81.95728992476792, 28.932796173728462 ], [ -81.95730479067177, 28.932864148307086 ], [ -81.957317793276729, 28.932933760856994 ], [ -81.957339164958086, 28.933032034744951 ], [ -81.957348454491552, 28.933077076630674 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lisbon Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957357348466445, 28.933706317927989 ], [ -81.957348634436542, 28.933772918014636 ], [ -81.957338678604373, 28.933836245083281 ], [ -81.957324985411361, 28.933931233371748 ], [ -81.957311301775519, 28.93400547610927 ], [ -81.95729512692624, 28.934101557182732 ], [ -81.957279647150671, 28.934178530587868 ], [ -81.957178611265263, 28.934542113926891 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957357348466445, 28.933706317927989 ], [ -81.957451683135957, 28.933701980795284 ], [ -81.957601870999781, 28.9336922005863 ], [ -81.957696206406055, 28.933683496177665 ], [ -81.957784334312151, 28.93367478884602 ], [ -81.95787618737829, 28.93366389817249 ], [ -81.957977970002844, 28.933650828801362 ], [ -81.9580809923619, 28.933641034167223 ], [ -81.958186500690459, 28.93362687222249 ], [ -81.958279596224756, 28.933614889884904 ], [ -81.958364002963648, 28.933600722134354 ], [ -81.958453375486414, 28.933585464093774 ], [ -81.95855143645683, 28.933568023323492 ], [ -81.958658187914011, 28.933548404316632 ], [ -81.958704114348734, 28.933542958689376 ], [ -81.958746313449964, 28.933545156137605 ], [ -81.95878602923456, 28.933552809885651 ], [ -81.958820778353243, 28.933563740131891 ], [ -81.958839392776326, 28.933573572737259 ], [ -81.958858005308954, 28.933585588891923 ], [ -81.958880339959137, 28.933603065969219 ], [ -81.958916318643276, 28.933645659882764 ], [ -81.959211871828231, 28.934061347829928 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Martinez Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958432895169679, 28.936530199526914 ], [ -81.960057384190918, 28.935806820862165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Martinez Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960057384190918, 28.935806820862165 ], [ -81.960159040049305, 28.93576009423963 ], [ -81.960248744033336, 28.935724539810415 ], [ -81.960334933598503, 28.935684341977762 ], [ -81.960417602698939, 28.935647237918754 ], [ -81.960473267717092, 28.935615866242099 ], [ -81.960517960559372, 28.935587491438209 ], [ -81.960552723864581, 28.935563479898285 ], [ -81.960585004519899, 28.935540559395051 ], [ -81.960607353186163, 28.935523096649145 ], [ -81.960632931895049, 28.935500007239671 ], [ -81.960657954392843, 28.935474919080399 ], [ -81.960681997718694, 28.935448799306855 ], [ -81.960709365654026, 28.935416492570301 ], [ -81.96080307667161, 28.935294152680694 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Miranda Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959557364881618, 28.935313143987042 ], [ -81.959618633207313, 28.935355883382552 ], [ -81.959691224637879, 28.935405857141305 ], [ -81.959774564555914, 28.935461074611435 ], [ -81.959811095064865, 28.93548515065784 ], [ -81.959848015493705, 28.935508883037006 ], [ -81.959862080390224, 28.935518512923899 ], [ -81.959874387356578, 28.935527797606657 ], [ -81.959886107351792, 28.935537771465331 ], [ -81.959897240376932, 28.935548431793201 ], [ -81.959907788616391, 28.935559435719238 ], [ -81.959918531210135, 28.935571814798848 ], [ -81.959929625081358, 28.935582949718977 ], [ -81.959943273597091, 28.935600421311165 ], [ -81.959955675635257, 28.935621171466408 ], [ -81.960057384190918, 28.935806820862165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Madrigal Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958093444598688, 28.935970319635892 ], [ -81.959494824439119, 28.935347110011268 ], [ -81.959557364881618, 28.935313143987042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Panama Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958093444598688, 28.935970319635892 ], [ -81.958130663564518, 28.936016190362423 ], [ -81.958164156835508, 28.936062878296362 ], [ -81.958210671995531, 28.936139050935559 ], [ -81.958432895169679, 28.936530199526914 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Martinez Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957992407182346, 28.93720191930689 ], [ -81.957983121605722, 28.93714049995695 ], [ -81.957981271885643, 28.937111018727972 ], [ -81.957983149871168, 28.937070892501371 ], [ -81.957993418672885, 28.937009591163395 ], [ -81.958014705026102, 28.936942581754749 ], [ -81.958037660543141, 28.936894968575345 ], [ -81.958057020333229, 28.936856297804269 ], [ -81.9580772761866, 28.936821155279794 ], [ -81.958100561371666, 28.936787588201998 ], [ -81.958127572294615, 28.936753203000936 ], [ -81.958149120425645, 28.936728421008155 ], [ -81.958178794759874, 28.936699990865986 ], [ -81.958198350927717, 28.936682800145135 ], [ -81.958215114415935, 28.936667245312126 ], [ -81.958231876541987, 28.936652511564123 ], [ -81.958248638664415, 28.936637775107094 ], [ -81.958269125172293, 28.936623041612055 ], [ -81.958291473686998, 28.936607489410338 ], [ -81.958314752193147, 28.936592756777017 ], [ -81.958432895169679, 28.936530199526914 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Benito Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959068543210833, 28.937542953012517 ], [ -81.959106543507033, 28.937669860514177 ], [ -81.959114912937252, 28.937691971973813 ], [ -81.959126074087152, 28.937714904469406 ], [ -81.959139100021261, 28.937737838434789 ], [ -81.959151194485827, 28.937755858222719 ], [ -81.959167942811632, 28.937778792417372 ], [ -81.959183758698103, 28.937799269379813 ], [ -81.959198649266796, 28.937814833068696 ], [ -81.959210744985171, 28.937827120578756 ], [ -81.959226708779212, 28.937839318132806 ], [ -81.959239404792285, 28.937851009406639 ], [ -81.95927550714741, 28.937875362464492 ], [ -81.959308153188346, 28.937896117920072 ], [ -81.959393393489975, 28.93794880344571 ], [ -81.95944621326926, 28.937981146821897 ], [ -81.959491330989678, 28.938007877386504 ], [ -81.959523975688114, 28.938027036631254 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Martinez Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960185841168638, 28.937310023162198 ], [ -81.960294260996903, 28.937260764817385 ], [ -81.960323122960048, 28.937252585048434 ], [ -81.960351052702094, 28.937249315280983 ], [ -81.960602402817059, 28.937246934270451 ], [ -81.960840719705814, 28.937253554778234 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santa Maria Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95550859436193, 28.937837505845444 ], [ -81.955807895910283, 28.937765443886956 ], [ -81.955831171880178, 28.937758080718993 ], [ -81.955862835077866, 28.93773188582735 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santa Anna Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955557042467859, 28.937009152993781 ], [ -81.955531718821533, 28.937043897349415 ], [ -81.955520537482144, 28.937065185069756 ], [ -81.955513081219209, 28.937087293308014 ], [ -81.955512141414872, 28.937106947664194 ], [ -81.955514660892248, 28.937125355295635 ], [ -81.955810722210174, 28.937685191197215 ], [ -81.955822817818671, 28.937701573620817 ], [ -81.9558386375341, 28.937716318704449 ], [ -81.955862835077866, 28.93773188582735 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santa Rosa Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955077427952745, 28.937035557593511 ], [ -81.955557042467859, 28.937009152993781 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santa Maria Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955862835077866, 28.93773188582735 ], [ -81.955892623298169, 28.937736809522789 ], [ -81.955920550885537, 28.937736818707801 ], [ -81.955942894760142, 28.937733549823395 ], [ -81.956340441237899, 28.937646876503816 ], [ -81.956890072234003, 28.937527650222336 ], [ -81.957172255062972, 28.937454428392044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santa Rosa Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955557042467859, 28.937009152993781 ], [ -81.956114067777392, 28.936976343202467 ], [ -81.956224077116062, 28.936980160681564 ], [ -81.956243420662219, 28.936981542092177 ], [ -81.95626511077478, 28.936983611813474 ], [ -81.956286603658839, 28.936986369014956 ], [ -81.956308095228096, 28.93698981376054 ], [ -81.956329391621139, 28.936993945987087 ], [ -81.956350688751286, 28.936998766660739 ], [ -81.956371593912635, 28.937003929172892 ], [ -81.956392304779683, 28.937010122940535 ], [ -81.956601941865188, 28.93707482227946 ], [ -81.956863941036175, 28.937155349046293 ], [ -81.95697087559509, 28.937188459701929 ], [ -81.957029631694525, 28.937212065413153 ], [ -81.957062499802873, 28.937230014449618 ], [ -81.957087625720547, 28.937252951587382 ], [ -81.957104371468759, 28.937278342083133 ], [ -81.95711832349852, 28.93730782809731 ], [ -81.95713413518844, 28.937339770748512 ], [ -81.957172255062972, 28.937454428392044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santa Maria Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957172255062972, 28.937454428392044 ], [ -81.957274673564058, 28.937420886719067 ], [ -81.957335192778899, 28.937397976902261 ], [ -81.957364708484519, 28.937384612493187 ], [ -81.957392461146767, 28.937373276776157 ], [ -81.957420018030447, 28.93736159721724 ], [ -81.957447182337035, 28.937349229980104 ], [ -81.957500147880893, 28.937324150380867 ], [ -81.957525554956476, 28.937312126344668 ], [ -81.957540016287126, 28.93730559922059 ], [ -81.957554674555922, 28.937299071254998 ], [ -81.95756933151452, 28.937293232639963 ], [ -81.957584185411406, 28.937287393183297 ], [ -81.957599233169034, 28.937281553786317 ], [ -81.95761427961763, 28.937276401935197 ], [ -81.957629329141554, 28.937271250985646 ], [ -81.957644768440531, 28.937266099255282 ], [ -81.95766001154324, 28.937261634106822 ], [ -81.957675450558042, 28.937257169920784 ], [ -81.95769108329371, 28.937253048665792 ], [ -81.95770671705273, 28.93724893011618 ], [ -81.957725086564778, 28.937244465946712 ], [ -81.95774091492919, 28.937241033197868 ], [ -81.957756744177928, 28.937237944221405 ], [ -81.957772573285453, 28.93723519901701 ], [ -81.95778859728054, 28.937232452969823 ], [ -81.957861094229131, 28.937220788366766 ], [ -81.957876730029213, 28.937216667091121 ], [ -81.957992407182346, 28.93720191930689 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Saba Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960185841168638, 28.937310023162198 ], [ -81.960215422652354, 28.937313969558069 ], [ -81.960242415304947, 28.937322985168883 ], [ -81.960261959292907, 28.937336912458353 ], [ -81.96027777863641, 28.937354114870185 ], [ -81.960289875536574, 28.937368859230816 ], [ -81.96029545590855, 28.937381143811191 ], [ -81.960300104060067, 28.937398342007725 ], [ -81.96030266197539, 28.93742838824998 ], [ -81.960300336517534, 28.93743941810397 ], [ -81.960298473819009, 28.93745004116046 ], [ -81.960294544873307, 28.937461781546816 ], [ -81.960283834689037, 28.93748457933971 ], [ -81.960270585405866, 28.937508455522412 ], [ -81.960260360728341, 28.937522343305094 ], [ -81.960252927915917, 28.937531330654704 ], [ -81.960248280900444, 28.937537866395495 ], [ -81.960240381222491, 28.937547260540445 ], [ -81.960226661999243, 28.937563494150009 ], [ -81.960210353446882, 28.937583387595609 ], [ -81.96019265882569, 28.937601398442428 ], [ -81.960172170819774, 28.93762022683724 ], [ -81.960138644114679, 28.937651336082176 ], [ -81.960113501795675, 28.937674256790672 ], [ -81.960077181041868, 28.937707821232252 ], [ -81.960033414316385, 28.937747115716281 ], [ -81.959952399408337, 28.93780687210732 ], [ -81.959832253411449, 28.937901775507513 ], [ -81.959657931919807, 28.938023247686722 ], [ -81.95962627604429, 28.938035521981838 ], [ -81.959589967552219, 28.938039605648044 ], [ -81.959557386380681, 28.938036320493477 ], [ -81.959523975688114, 28.938027036631254 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Soledad Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962025930143241, 28.941378421878447 ], [ -81.962071019838859, 28.941353150586885 ], [ -81.962103610407681, 28.941331049110726 ], [ -81.962130352393515, 28.941313585566046 ], [ -81.962163209283432, 28.941286845460244 ], [ -81.962190216912376, 28.941258191735859 ], [ -81.962223747031572, 28.941216436740543 ], [ -81.96224237779866, 28.941186142980367 ], [ -81.962263804275906, 28.941146022225158 ], [ -81.96227964873664, 28.94109689229947 ], [ -81.962290844540604, 28.941030564252628 ], [ -81.962295092907539, 28.940952794070441 ], [ -81.96229644985327, 28.94081259519395 ], [ -81.962302161440732, 28.940635037176204 ], [ -81.962335792228288, 28.940310761448064 ], [ -81.96250770107423, 28.938622230282498 ], [ -81.962533846718401, 28.93840850224916 ], [ -81.96254969362829, 28.938345451683276 ], [ -81.962565533535837, 28.938304511822466 ], [ -81.962605731106393, 28.938194066947968 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Soledad Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959920047968481, 28.939802093685394 ], [ -81.959899740106181, 28.940077276316998 ], [ -81.959894954448075, 28.940274326767565 ], [ -81.959893524331122, 28.940362154687033 ], [ -81.959897008148573, 28.94038242394852 ], [ -81.959906773303501, 28.940406380958247 ], [ -81.959915844757376, 28.94042050907672 ], [ -81.959922123789013, 28.940432793876077 ], [ -81.959933290558965, 28.940445080136669 ], [ -81.959940967315745, 28.940453067729166 ], [ -81.959948645337434, 28.940460440859699 ], [ -81.959956323836792, 28.940466583261649 ], [ -81.959965398705805, 28.94047457036822 ], [ -81.959977961705107, 28.940483786537435 ], [ -81.959991921314213, 28.940494232046159 ], [ -81.960010071938058, 28.940505293266078 ], [ -81.960028919293435, 28.940515740229511 ], [ -81.960052656368106, 28.940523731702921 ], [ -81.960082793276399, 28.940528755630883 ], [ -81.9601284082961, 28.940535321666591 ], [ -81.960174954947078, 28.940538610833819 ], [ -81.960236331266557, 28.940546541272624 ], [ -81.960327772965655, 28.940569552498435 ], [ -81.960395572538886, 28.940591085938017 ], [ -81.960444903821838, 28.940614029591295 ], [ -81.960478413545744, 28.940629598627762 ], [ -81.960510989212978, 28.940646804140929 ], [ -81.960544600093328, 28.940666146581911 ], [ -81.960587699502597, 28.940698335050907 ], [ -81.960617738200241, 28.940719028058357 ], [ -81.961346539778518, 28.941203041908881 ], [ -81.961539480965598, 28.941324844784948 ], [ -81.961575863669182, 28.941344746282191 ], [ -81.961596196608824, 28.94135528638742 ], [ -81.961628067130107, 28.941372030354724 ], [ -81.961647419354534, 28.941380054577383 ], [ -81.961683720805439, 28.941392347884307 ], [ -81.961723749787538, 28.941402186203923 ], [ -81.961751679616242, 28.941407107168157 ], [ -81.961785191254137, 28.941410392056433 ], [ -81.96182242806097, 28.941412040335539 ], [ -81.96185966885264, 28.941411232562885 ], [ -81.961908079407465, 28.94140715263142 ], [ -81.961973251659089, 28.941395705704547 ], [ -81.962025930143241, 28.941378421878447 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Soledad Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962605731106393, 28.938194066947968 ], [ -81.962209901424643, 28.938026289837783 ], [ -81.961506913409764, 28.937753395762126 ], [ -81.961470613134566, 28.937738643651606 ], [ -81.961432915255614, 28.937722664009364 ], [ -81.961402199418686, 28.937709758678572 ], [ -81.961372181316705, 28.937696237275205 ], [ -81.961343560375013, 28.937685173214415 ], [ -81.961313541367971, 28.937674109646171 ], [ -81.961279334078753, 28.937663659323118 ], [ -81.961253502327551, 28.937657509039262 ], [ -81.961229067728453, 28.937653817003223 ], [ -81.961211612305817, 28.937652583929456 ], [ -81.961192761198745, 28.937653192031021 ], [ -81.961170418734611, 28.937653186460693 ], [ -81.96115296295396, 28.937655638347398 ], [ -81.961136903192553, 28.937658088832155 ], [ -81.961122239217758, 28.937661156888947 ], [ -81.961105481033314, 28.937666065015812 ], [ -81.961085929652114, 28.937674043737747 ], [ -81.961068471321965, 28.937683251989245 ], [ -81.961051708534498, 28.937694917386825 ], [ -81.961036342095397, 28.937708423867797 ], [ -81.961022374286514, 28.937723159678079 ], [ -81.961009102945326, 28.937737895689537 ], [ -81.960994432700559, 28.937757544282494 ], [ -81.960965093219485, 28.937796843268327 ], [ -81.960831924930901, 28.937974341549676 ], [ -81.96073955518996, 28.938083336875863 ], [ -81.960652448022955, 28.938166124754147 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Miranda Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957658125540306, 28.93518520770742 ], [ -81.957745634610021, 28.935175408432912 ], [ -81.958007237777522, 28.935135363809337 ], [ -81.958124537307242, 28.935120660625302 ], [ -81.958261389793876, 28.935103507383793 ], [ -81.958361003344905, 28.935087977397831 ], [ -81.958420585022338, 28.935076532244683 ], [ -81.958470860425081, 28.935062625430547 ], [ -81.958503445231941, 28.935054448104232 ], [ -81.95852951307441, 28.935047904613331 ], [ -81.958555582267124, 28.935040542736989 ], [ -81.958580996513334, 28.935031975188135 ], [ -81.958616397030767, 28.935020811208304 ], [ -81.958666610138934, 28.935000952769073 ], [ -81.958729375507588, 28.934976682348491 ], [ -81.958794653529637, 28.934947995940764 ], [ -81.958844865543625, 28.934928136532157 ], [ -81.958890056866665, 28.934910486185828 ], [ -81.958940643518304, 28.934900229071367 ], [ -81.958986569233659, 28.934898060481821 ], [ -81.959028769210903, 28.934904623141335 ], [ -81.959069723609417, 28.93491992322453 ], [ -81.959108190313501, 28.934943954939762 ], [ -81.95914105566824, 28.934967975913647 ], [ -81.959160302856347, 28.934986552798982 ], [ -81.959195044902984, 28.935019321171445 ], [ -81.959237076719262, 28.935057140088031 ], [ -81.959284381132548, 28.935099053399558 ], [ -81.959358833250434, 28.935155854662195 ], [ -81.959423353961157, 28.935211559296427 ], [ -81.959557364881618, 28.935313143987042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Panama Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957178611265263, 28.934542113926891 ], [ -81.957298264205249, 28.934589612769422 ], [ -81.957356586846259, 28.934621297350297 ], [ -81.957411185906366, 28.934656254246455 ], [ -81.957443446316631, 28.934683560696474 ], [ -81.95747446282428, 28.934715234750481 ], [ -81.957512925438763, 28.934755645365446 ], [ -81.95754890101378, 28.934800424090337 ], [ -81.957579911452527, 28.934849569240626 ], [ -81.957603474735294, 28.934897618447899 ], [ -81.957625794702025, 28.934951127942249 ], [ -81.957638189894837, 28.934994805605953 ], [ -81.957645618634245, 28.935038483503824 ], [ -81.957651807037777, 28.935077793905297 ], [ -81.957654274186595, 28.935117101326281 ], [ -81.957658125540306, 28.93518520770742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Panama Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957658125540306, 28.93518520770742 ], [ -81.957667412741827, 28.935239258963598 ], [ -81.95767495714756, 28.935281084484906 ], [ -81.957684979860218, 28.935327460154955 ], [ -81.957700014151186, 28.935391502520254 ], [ -81.957717563907067, 28.935444505205599 ], [ -81.957752938174238, 28.935528359334032 ], [ -81.957780263995872, 28.935581433665106 ], [ -81.95780559134505, 28.935630495761593 ], [ -81.957835449670256, 28.93567861186942 ], [ -81.95787999788719, 28.935740260682245 ], [ -81.957913223164283, 28.935784629700308 ], [ -81.95795014119571, 28.935828604663492 ], [ -81.957991083054438, 28.935875294977979 ], [ -81.958029234892251, 28.935912156619075 ], [ -81.958093444598688, 28.935970319635892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Panama Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956481934356063, 28.934524659390156 ], [ -81.956765662018029, 28.934513420172568 ], [ -81.956912168177936, 28.934510182083834 ], [ -81.957074498038494, 28.934518733768307 ], [ -81.957178611265263, 28.934542113926891 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dominguez Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954328128342951, 28.931217754831014 ], [ -81.954307496891161, 28.931218096089232 ], [ -81.954284455640888, 28.93122423015696 ], [ -81.954265599535717, 28.931234049717133 ], [ -81.954244649920113, 28.931248782457249 ], [ -81.954231380075413, 28.931259833745965 ], [ -81.954218806596046, 28.931273342219455 ], [ -81.954204139242762, 28.931285621051416 ], [ -81.954190147690355, 28.931298150950532 ], [ -81.954178811850483, 28.931307773659789 ], [ -81.954162586417866, 28.931322549506454 ], [ -81.954147144286637, 28.931338014069741 ], [ -81.954132872133911, 28.93135416748218 ], [ -81.954119383436264, 28.931370663130778 ], [ -81.954110975978992, 28.931382348579252 ], [ -81.954099245686976, 28.931400220826752 ], [ -81.954088687578533, 28.931418437248681 ], [ -81.954079103700423, 28.931436996875274 ], [ -81.954070693904953, 28.931456246256332 ], [ -81.954065802846785, 28.931469308905356 ], [ -81.954059346795489, 28.931488901826718 ], [ -81.954055627923211, 28.931502307748783 ], [ -81.954051125616985, 28.931522246015472 ], [ -81.954048774834703, 28.931535995277962 ], [ -81.954046421153592, 28.931556277152499 ], [ -81.954045437588249, 28.931570028687922 ], [ -81.954044843541922, 28.931588935165951 ], [ -81.954051388771859, 28.932237679993989 ], [ -81.954049854119376, 28.932776907805803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Delgado Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954281909760311, 28.929646794242192 ], [ -81.954394610199429, 28.92963340736603 ], [ -81.954433596700966, 28.929630061373327 ], [ -81.954451720336152, 28.929629228395324 ], [ -81.954474615591295, 28.929630074400833 ], [ -81.954490833853143, 28.929630919941562 ], [ -81.954511818239439, 28.929634283597398 ], [ -81.954531848322745, 28.929641004365724 ], [ -81.95455473997707, 28.929647727003012 ], [ -81.954621506802269, 28.929671245369143 ], [ -81.954748198840562, 28.92971730431287 ], [ -81.954878888447212, 28.929771664692748 ], [ -81.954916982526669, 28.929787490221475 ], [ -81.954933196865156, 28.929795059609006 ], [ -81.954947260987723, 28.929803659595304 ], [ -81.954960151167796, 28.929813632478691 ], [ -81.954972230494533, 28.929827319836551 ], [ -81.954982398656426, 28.929841869145683 ], [ -81.954993836253578, 28.929864252604052 ], [ -81.954998914260031, 28.929885514179638 ], [ -81.955000177373094, 28.929907894222875 ], [ -81.954999525883224, 28.929939039418155 ], [ -81.955009836730639, 28.931032331808908 ], [ -81.95500641978029, 28.931061715694245 ], [ -81.954997333479923, 28.931087508348678 ], [ -81.954978465141707, 28.931128037604889 ], [ -81.954958204638601, 28.931157511476094 ], [ -81.954945633584103, 28.931170405555907 ], [ -81.954932200849996, 28.931183566424167 ], [ -81.954920669016971, 28.931195939324517 ], [ -81.954908158118798, 28.931207278767211 ], [ -81.95489486698375, 28.931217932202376 ], [ -81.954880598834237, 28.931227553984662 ], [ -81.954865745326373, 28.93123648621529 ], [ -81.95485011070646, 28.931244387760756 ], [ -81.954833889852054, 28.93125125778414 ], [ -81.954817279692122, 28.931257095449308 ], [ -81.954800083148058, 28.93126224626852 ], [ -81.954782691299712, 28.931266022824893 ], [ -81.954764910146807, 28.931268767924923 ], [ -81.954746933541415, 28.931270480731499 ], [ -81.954728957536901, 28.931270817536529 ], [ -81.954692855168233, 28.931272889645303 ], [ -81.954654457509747, 28.931272261302659 ], [ -81.954603492881418, 28.931270401574981 ], [ -81.95455950997578, 28.931268544193774 ], [ -81.954512735796698, 28.931263000880062 ], [ -81.954461776521754, 28.931251314209252 ], [ -81.954410116727317, 28.93123962728103 ], [ -81.954328128342951, 28.931217754831014 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Pedro Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954191763931789, 28.925089635899095 ], [ -81.954212857633081, 28.925105800506337 ], [ -81.95423004472508, 28.925117494707749 ], [ -81.954247623754839, 28.92512884526603 ], [ -81.954265593696306, 28.925139853083024 ], [ -81.954283955727902, 28.925150171677458 ], [ -81.954302902662093, 28.925159804724053 ], [ -81.954322045794029, 28.925168750285657 ], [ -81.954341580863442, 28.925177351301038 ], [ -81.954361505970411, 28.925185263994855 ], [ -81.95438162624832, 28.925192490105186 ], [ -81.954397644852619, 28.925197995945272 ], [ -81.95441815737162, 28.92520419085977 ], [ -81.95443905890059, 28.925209699256417 ], [ -81.954460159702847, 28.925214518363706 ], [ -81.954481454498094, 28.925218993758932 ], [ -81.95450294461331, 28.925222438795643 ], [ -81.954524433854857, 28.925225540956308 ], [ -81.954546120467811, 28.925227610052112 ], [ -81.95456800004601, 28.925229337239806 ], [ -81.954590470677218, 28.925230376172554 ], [ -81.954648300039437, 28.925231770835879 ], [ -81.954835863288849, 28.925236646063762 ], [ -81.954904813306513, 28.925240459805948 ], [ -81.954950732009166, 28.925244843248574 ], [ -81.954991686692878, 28.925247040552559 ], [ -81.955036363941986, 28.925252514424642 ], [ -81.955087278014688, 28.925257779233302 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Pedro Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955087278014688, 28.925257779233302 ], [ -81.95515598534989, 28.925267860110058 ], [ -81.955206740153045, 28.925283337000536 ], [ -81.955249689518524, 28.925295374424397 ], [ -81.95530239488555, 28.925316004939049 ], [ -81.955357767641331, 28.92534433831505 ], [ -81.955413603202032, 28.925379297377649 ], [ -81.955550272758998, 28.925501595655366 ], [ -81.955671274926672, 28.92562015581883 ], [ -81.955802031976305, 28.925750743075607 ], [ -81.955956212657554, 28.925895078052068 ], [ -81.956204069820146, 28.926135633574535 ], [ -81.95652999210624, 28.926456945031401 ], [ -81.956619771469462, 28.926541140211466 ], [ -81.956660753739655, 28.926584094598823 ], [ -81.95670759326849, 28.926632205677613 ], [ -81.956736863818108, 28.926668285281156 ], [ -81.956762232608057, 28.926702649259109 ], [ -81.956802715156229, 28.926761229391214 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Pedro Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956802715156229, 28.926761229391214 ], [ -81.956850177549157, 28.926858164720226 ], [ -81.956919619263701, 28.927006682291527 ], [ -81.956963019596387, 28.927100598997104 ], [ -81.956977898661123, 28.927134450670945 ], [ -81.957007660564102, 28.927195606057879 ], [ -81.957033701044949, 28.927248023320612 ], [ -81.95705009378527, 28.927274931406671 ], [ -81.957062589525194, 28.927293500132716 ], [ -81.957103638153569, 28.927360626891158 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Lobo Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95588795375167, 28.927243751614309 ], [ -81.956156282507735, 28.927123265893904 ], [ -81.95621710712372, 28.927097081306908 ], [ -81.956251866949415, 28.927081805964583 ], [ -81.956276692752638, 28.927070895386084 ], [ -81.95629727545105, 28.927060179218369 ], [ -81.956318381331968, 28.92704918531097 ], [ -81.956331866380395, 28.927041627566165 ], [ -81.956349847026203, 28.927030975508302 ], [ -81.956486454089173, 28.926948514024257 ], [ -81.956802715156229, 28.926761229391214 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Pedro Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95403360776379, 28.921731323742758 ], [ -81.953982353815888, 28.921807180237121 ], [ -81.953947500420369, 28.921870051085257 ], [ -81.953922363940222, 28.921952224468871 ], [ -81.953929010689009, 28.922591209229072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santa Clara Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954987169738104, 28.922613317406885 ], [ -81.954968649550366, 28.922729412302054 ], [ -81.95495496659224, 28.922799286909715 ], [ -81.954948741463198, 28.922848420239664 ], [ -81.954944999443327, 28.922887725694856 ], [ -81.95494250422874, 28.922918299149824 ], [ -81.954940009964375, 28.922946684537671 ], [ -81.954938756181818, 28.922976165729118 ], [ -81.954939981944037, 28.923011106642853 ], [ -81.954944927264648, 28.923053691251059 ], [ -81.954947397314299, 28.92308099013707 ], [ -81.954953587952005, 28.92311593091301 ], [ -81.95496071834998, 28.923145423942191 ], [ -81.954975155915037, 28.92318943285111 ], [ -81.954983329025225, 28.923219668818202 ], [ -81.954995726868688, 28.9232491536875 ], [ -81.955008124244941, 28.923279730333231 ], [ -81.955020524076161, 28.923307031644967 ], [ -81.955035404342055, 28.923335425564801 ], [ -81.955054006561667, 28.923366003383471 ], [ -81.955070129308723, 28.923393305937708 ], [ -81.955089973933227, 28.923420609736109 ], [ -81.95511230247061, 28.923445729904774 ], [ -81.955143313521489, 28.923480680778514 ], [ -81.955165642084552, 28.923505800938131 ], [ -81.955194175570028, 28.923533107624738 ], [ -81.955262408375404, 28.923592092717623 ], [ -81.955337373565584, 28.923662243219798 ], [ -81.955616357392799, 28.923913843529267 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Meteo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956329154145578, 28.921942537714404 ], [ -81.956697228119253, 28.92193832783774 ], [ -81.956863686163402, 28.921936317926626 ], [ -81.956889475303853, 28.921936327120843 ], [ -81.956914091042407, 28.921936678805636 ], [ -81.956944180735576, 28.921938407342321 ], [ -81.956974070156335, 28.921940824259881 ], [ -81.957003764291159, 28.921944271530126 ], [ -81.957033265192067, 28.921948749153923 ], [ -81.957062763758927, 28.9219539152223 ], [ -81.957092066016259, 28.921960112545673 ], [ -81.957120696101143, 28.921969808751427 ], [ -81.957151720855052, 28.921979645572033 ], [ -81.957191428270505, 28.921991669615668 ], [ -81.957401135364151, 28.922065983614555 ], [ -81.957502890428714, 28.922097680168022 ], [ -81.957537457052439, 28.922106359473968 ], [ -81.957571254105744, 28.922115996765843 ], [ -81.957605244256214, 28.922124944756202 ], [ -81.957638151326179, 28.922131570788448 ], [ -81.957676623527718, 28.922134858269537 ], [ -81.957715093234313, 28.922139238419188 ], [ -81.957746118717068, 28.922142523532251 ], [ -81.957783350866251, 28.922143627938294 ], [ -81.957821823076841, 28.922146915377894 ], [ -81.957896286217917, 28.922146939679031 ], [ -81.958053902970875, 28.922142620154855 ], [ -81.958232616880835, 28.92213830882331 ], [ -81.958330659525942, 28.922137247545862 ], [ -81.95839395470054, 28.922138358976888 ], [ -81.958456004535691, 28.922142745326575 ], [ -81.958500680640327, 28.922148219854815 ], [ -81.958534188639049, 28.922152596430337 ], [ -81.958561488813487, 28.922156972883933 ], [ -81.95859251360713, 28.922164624914089 ], [ -81.958643392451165, 28.922177743756674 ], [ -81.95879975132199, 28.922216006827817 ], [ -81.95895424677262, 28.922256999494383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Juarez Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959140587565614, 28.921277098900269 ], [ -81.959139212865907, 28.921309379927166 ], [ -81.959135873808421, 28.921353038308389 ], [ -81.959132146192417, 28.921396352796005 ], [ -81.959123907534803, 28.92147748203702 ], [ -81.959114304703348, 28.921553796209089 ], [ -81.959101961960172, 28.921639393267508 ], [ -81.959089428142306, 28.921715363669463 ], [ -81.959073375101511, 28.921800271139322 ], [ -81.95905751851376, 28.921875897649791 ], [ -81.95903814385224, 28.921960115647298 ], [ -81.959018966667628, 28.922035053587461 ], [ -81.958996074348363, 28.922118927629292 ], [ -81.95897377448965, 28.922193176154469 ], [ -81.95895424677262, 28.922256999494383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Juarez Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956330555860703, 28.921305823988551 ], [ -81.957123930191003, 28.92129497539813 ], [ -81.958129050630134, 28.921276753491867 ], [ -81.958598951398471, 28.921263921660614 ], [ -81.959140587565614, 28.921277098900269 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Juarez Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959140587565614, 28.921277098900269 ], [ -81.959215047341985, 28.921281489583446 ], [ -81.959366455039003, 28.921284810884551 ], [ -81.959438437230446, 28.921278281106549 ], [ -81.95948560019653, 28.921272836473801 ], [ -81.959671767984673, 28.921243411875984 ], [ -81.959960950780143, 28.921198732024212 ], [ -81.960430096648039, 28.921120256048777 ], [ -81.960495878366075, 28.921099528953064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Montoya Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960402824256946, 28.920564024846307 ], [ -81.960406057205674, 28.920739952796843 ], [ -81.960407021337446, 28.920769173941821 ], [ -81.960407992781981, 28.920784644095818 ], [ -81.960409355099003, 28.920799769688088 ], [ -81.960410911247934, 28.920814896239847 ], [ -81.960412859162943, 28.920830023809501 ], [ -81.960415001936013, 28.920845151436637 ], [ -81.96041753647647, 28.920860277374793 ], [ -81.960420267032276, 28.920875059595872 ], [ -81.960423386146189, 28.920890187511009 ], [ -81.960426896002076, 28.920905314639022 ], [ -81.960430409067456, 28.920920097090789 ], [ -81.960434504654927, 28.920934881518903 ], [ -81.960447521525595, 28.920984868954591 ], [ -81.960459918334976, 28.92102308755781 ], [ -81.96047603963197, 28.921056941046874 ], [ -81.960495878366075, 28.921099528953064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Montoya Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960495878366075, 28.921099528953064 ], [ -81.960520688911288, 28.92113447677465 ], [ -81.96076029738596, 28.921500180037405 ], [ -81.960768107682384, 28.921512215343036 ], [ -81.960778065512343, 28.921527000572503 ], [ -81.960788024891798, 28.921540410702484 ], [ -81.960798374121637, 28.921553477170924 ], [ -81.960809311007225, 28.921566543810339 ], [ -81.960830597408815, 28.921589240069245 ], [ -81.960843096770319, 28.921600932063196 ], [ -81.960855792149488, 28.921612279436125 ], [ -81.960869072107471, 28.921623628783067 ], [ -81.960882744098001, 28.921634288888878 ], [ -81.960896808119884, 28.921644262460372 ], [ -81.960923957527896, 28.921662146665014 ], [ -81.960938996241865, 28.921671089191804 ], [ -81.960954623897237, 28.921679344338902 ], [ -81.960970446414123, 28.921687599540885 ], [ -81.960986660962035, 28.921695167305533 ], [ -81.961003068579345, 28.921702047574801 ], [ -81.961028071524893, 28.921711680539225 ], [ -81.961045263203957, 28.921717185932163 ], [ -81.961062455014215, 28.921722347548165 ], [ -81.961079591139892, 28.921725594473656 ], [ -81.961102481300188, 28.921730076505252 ], [ -81.961133005232256, 28.921733442801578 ], [ -81.961171158833949, 28.92173569245395 ], [ -81.961210586014417, 28.92173570386764 ], [ -81.961579422993452, 28.921729095195349 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 107th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957031886370146, 28.90875284076003 ], [ -81.95707246500649, 28.908892305663873 ], [ -81.957129630178912, 28.909240489935033 ], [ -81.957183618997377, 28.909578440193577 ], [ -81.957199040026879, 28.909689575695154 ], [ -81.957229935282569, 28.909775769403627 ], [ -81.957281446754465, 28.909871042271906 ], [ -81.95730462521739, 28.909923214178988 ], [ -81.957322641999724, 28.909986722710926 ], [ -81.957340663381132, 28.910036624594387 ], [ -81.957345784750672, 28.910118274224654 ], [ -81.957330291668526, 28.910184041374066 ], [ -81.957307074998212, 28.910229392484485 ], [ -81.957273540830343, 28.910292886410392 ], [ -81.957240010277033, 28.910345039351174 ], [ -81.957198754256936, 28.910381314796652 ], [ -81.957162095231197, 28.91040054278605 ], [ -81.957100786419275, 28.910428910377796 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Old 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042718999172152, 28.857247267619844 ], [ -82.042455051740859, 28.857020425560609 ], [ -82.042430690012822, 28.857002565677707 ], [ -82.04240227077041, 28.856995426419523 ], [ -82.042365737615157, 28.856997224279805 ], [ -82.042339357678614, 28.857009740172398 ], [ -82.042310953058831, 28.857036550987782 ], [ -82.042228368593982, 28.857110578934762 ], [ -82.042184677888272, 28.857126868151589 ], [ -82.042142662601989, 28.857126881076422 ], [ -82.042105685603062, 28.857120974227431 ], [ -82.042061980587519, 28.857098794572575 ], [ -82.0420165808777, 28.857047023454793 ], [ -82.041933406434026, 28.856959834907848 ], [ -82.041823760307508, 28.856847297834037 ], [ -82.041705996233731, 28.856732979283056 ], [ -82.041624780613432, 28.856657957517434 ], [ -82.04154356300289, 28.856577576015081 ], [ -82.041425805140648, 28.856477550613651 ], [ -82.041263384949559, 28.856356094391138 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Huey Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040031056661761, 28.858151310486438 ], [ -82.039946647758029, 28.858183026719182 ], [ -82.039920908623088, 28.858189510048426 ], [ -82.039903320545292, 28.858192333061293 ], [ -82.039876062300777, 28.858193034859323 ], [ -82.038005331284552, 28.858199157247427 ], [ -82.037138269879364, 28.858196579280623 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Warfield Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034501411296262, 28.860814885550457 ], [ -82.034504259015463, 28.860202566994058 ], [ -82.034506994219498, 28.859946462677417 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Warfield Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034501411296262, 28.860814885550457 ], [ -82.034499846579763, 28.861168503315234 ], [ -82.034501848089974, 28.86215537494272 ], [ -82.0345050290301, 28.862568634616434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Warfield Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0345050290301, 28.862568634616434 ], [ -82.034516301997797, 28.863527919392254 ], [ -82.034518019738613, 28.863829236879905 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039878523525132, 28.864973155609828 ], [ -82.039645578577094, 28.86548688177874 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039645578577094, 28.86548688177874 ], [ -82.03906889021053, 28.865484756333835 ], [ -82.038620892576361, 28.865495136071804 ], [ -82.038620503072025, 28.865495145204491 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039645578577094, 28.86548688177874 ], [ -82.039057873653618, 28.866723118051407 ], [ -82.038897279732922, 28.867060012324512 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lee Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036084699765269, 28.872690680495918 ], [ -82.03607422512772, 28.872879282453766 ], [ -82.03607429155737, 28.873074068721763 ], [ -82.036081361849682, 28.873203924384011 ], [ -82.036095459288148, 28.873343051154603 ], [ -82.036144735581345, 28.87363367059659 ], [ -82.036198925366975, 28.873915012144383 ], [ -82.036207388833603, 28.874011475924839 ], [ -82.03620742524312, 28.87411783476599 ], [ -82.0361962247554, 28.874234090310804 ], [ -82.036176584457863, 28.87432314006351 ], [ -82.036131685808471, 28.87450618745542 ], [ -82.035912771741963, 28.875315067439963 ], [ -82.035682631139196, 28.87617836320516 ], [ -82.033684042465126, 28.883670079965022 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033684042465126, 28.883670079965022 ], [ -82.03323393539759, 28.88368350486807 ], [ -82.032056975560621, 28.883720095773697 ], [ -82.031776430351442, 28.883721610904377 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031776430351442, 28.883721610904377 ], [ -82.031477003042212, 28.883733545935193 ], [ -82.031122292141532, 28.883729188245617 ], [ -82.030670092531778, 28.883715936657353 ], [ -82.028873872919874, 28.88367627466695 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 121", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020739540869386, 28.882903960366413 ], [ -82.020584540099762, 28.88314770215047 ], [ -82.020578511486093, 28.884983291774265 ], [ -82.020582429814183, 28.88541864862496 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 121D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025770121921667, 28.893711036652796 ], [ -82.020570112438776, 28.893684308772862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 125", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020565778786235, 28.894461573763198 ], [ -82.019884381261235, 28.89446264656301 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 125B 1", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019884381261235, 28.89446264656301 ], [ -82.019884338602211, 28.894387816158133 ], [ -82.019877670797968, 28.894221396974604 ], [ -82.019884252185733, 28.89393527231033 ], [ -82.019887522565725, 28.893669585195255 ], [ -82.019880864054272, 28.893552800596918 ], [ -82.01987067878234, 28.893508834793678 ], [ -82.019841033854817, 28.89345061723769 ], [ -82.019821342745047, 28.893410206042816 ], [ -82.019784621411972, 28.893374714803144 ], [ -82.019714938847756, 28.893316333277969 ], [ -82.019612083072971, 28.893263794278241 ], [ -82.019476052029546, 28.893211259848986 ], [ -82.019298991503916, 28.893155793993611 ], [ -82.019213720563783, 28.89312438861948 ], [ -82.019142064069072, 28.89308479655795 ], [ -82.019098393809386, 28.893050125372721 ], [ -82.019056865754493, 28.893005898525129 ], [ -82.019029958189563, 28.892966447343738 ], [ -82.019000808253907, 28.892909242812021 ], [ -82.018929044858041, 28.892739594959838 ], [ -82.01872610707025, 28.892279998071114 ], [ -82.018633179769111, 28.892075634191556 ], [ -82.018563491114506, 28.891967617440972 ], [ -82.018417991126825, 28.891798282267004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 125", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01557971459323, 28.891769361356875 ], [ -82.015489161387976, 28.891686626865596 ], [ -82.015400533984874, 28.891619505500504 ], [ -82.015319829211236, 28.891568222186503 ], [ -82.015194288854559, 28.891507081543871 ], [ -82.015079961019978, 28.891467638091672 ], [ -82.014972358396932, 28.891438057769747 ], [ -82.014817684529547, 28.891416374751085 ], [ -82.014329012102522, 28.891416425383888 ], [ -82.013954637368158, 28.891425183705309 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 125B 1", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017280387121289, 28.891420594188141 ], [ -82.017231904880802, 28.891420044359993 ], [ -82.01661097788957, 28.891418147088249 ], [ -82.016303876426576, 28.891418183201864 ], [ -82.016216455717895, 28.891433975484119 ], [ -82.016126795054291, 28.891451740395489 ], [ -82.016046100249582, 28.891475421504168 ], [ -82.015958681071552, 28.891508969079108 ], [ -82.015893679781129, 28.891544487386827 ], [ -82.01584212801643, 28.891580001436616 ], [ -82.015752469882884, 28.891637220971631 ], [ -82.015651609564117, 28.891716142915076 ], [ -82.01557971459323, 28.891769361356875 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 125", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015821799176635, 28.892423108312329 ], [ -82.015820107669924, 28.89235504892283 ], [ -82.015813084780561, 28.89223890386388 ], [ -82.015799624508816, 28.892173803538785 ], [ -82.015786165706089, 28.892118568959248 ], [ -82.015768225705429, 28.892065306407464 ], [ -82.015736831152154, 28.891992318379621 ], [ -82.01570095761619, 28.891929195690977 ], [ -82.015631159403043, 28.891835900257064 ], [ -82.01557971459323, 28.891769361356875 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 125", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016116620590225, 28.893799776695371 ], [ -82.01608090511354, 28.893750245449013 ], [ -82.016042228859746, 28.893695508262493 ], [ -82.016010277342787, 28.89363928781729 ], [ -82.015976641001899, 28.893574190731194 ], [ -82.015945492178105, 28.893509831434052 ], [ -82.015911205135865, 28.893425884459653 ], [ -82.015884137602256, 28.893337470273142 ], [ -82.015862975327892, 28.893259735934244 ], [ -82.01584712697111, 28.893180642126669 ], [ -82.015836999708668, 28.893135900028479 ], [ -82.015830302527803, 28.893087431043504 ], [ -82.01582524979986, 28.893031208409692 ], [ -82.015821799176635, 28.892423108312329 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 125", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017020826015639, 28.894389305271119 ], [ -82.016972067176297, 28.894373037326339 ], [ -82.016913219926082, 28.894353810140114 ], [ -82.016847647828939, 28.894328664653258 ], [ -82.016783753952311, 28.894302041868311 ], [ -82.016713136045297, 28.894268020097471 ], [ -82.016642517724321, 28.894231038746504 ], [ -82.016573579693812, 28.894192578289982 ], [ -82.016514730109122, 28.894157076150051 ], [ -82.016444109662004, 28.894105298784407 ], [ -82.016365081492481, 28.894044647345108 ], [ -82.016276840573369, 28.893973792823207 ], [ -82.016176398041722, 28.893871285174598 ], [ -82.016116620590225, 28.893799776695371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 125", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018318434432658, 28.894458866139399 ], [ -82.017498314910256, 28.894451389432721 ], [ -82.017399120113723, 28.894446961616168 ], [ -82.017266296757768, 28.894432184903113 ], [ -82.017195681622283, 28.89442331408565 ], [ -82.017114979876069, 28.89441000876246 ], [ -82.017020826015639, 28.894389305271119 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 125", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019884381261235, 28.89446264656301 ], [ -82.019102237923079, 28.894455616306868 ], [ -82.018318434432658, 28.894458866139399 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 125A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019884381261235, 28.89446264656301 ], [ -82.019879723551838, 28.894623505586356 ], [ -82.019880836828747, 28.895397989692064 ], [ -82.019877489164898, 28.895474927439963 ], [ -82.019869096792391, 28.895540029544403 ], [ -82.019844723361857, 28.895608059185616 ], [ -82.019819530374789, 28.895652418015853 ], [ -82.019784256253459, 28.895701213980569 ], [ -82.019742262376823, 28.895745575186581 ], [ -82.019695226093901, 28.895779586817497 ], [ -82.019631389472394, 28.895816559445336 ], [ -82.019563206724939, 28.895843667815203 ], [ -82.019498670980113, 28.895859454488619 ], [ -82.01941689144185, 28.895864116383994 ], [ -82.018979757106692, 28.895862697846521 ], [ -82.017547300246804, 28.895859926969408 ], [ -82.017399347953074, 28.895854026410642 ], [ -82.017315282273273, 28.895842201402715 ], [ -82.017239620569384, 28.895814098725324 ], [ -82.017172361769425, 28.895775638379188 ], [ -82.017120234170221, 28.895734216602879 ], [ -82.017084921800134, 28.895692793652465 ], [ -82.017047924710852, 28.895643972944846 ], [ -82.017022699621066, 28.895590711479212 ], [ -82.01700362015535, 28.895543030885005 ], [ -82.016997462466719, 28.895487145009245 ], [ -82.016994091149897, 28.89542204541365 ], [ -82.016992063271744, 28.895126174431979 ], [ -82.017005710571496, 28.894489918031276 ], [ -82.017020826015639, 28.894389305271119 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 125", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013954637368158, 28.891425183705309 ], [ -82.013319538099168, 28.891415537250563 ], [ -82.012685267793501, 28.891418233900211 ], [ -82.012595495609617, 28.891425469337783 ], [ -82.012528248433355, 28.891439283200004 ], [ -82.012463242945486, 28.89145704439445 ], [ -82.012384003330254, 28.891481892564475 ], [ -82.012322025170292, 28.891506374659613 ], [ -82.012250299334568, 28.891545836652224 ], [ -82.012185295376639, 28.891587268652732 ], [ -82.012126931876054, 28.8916268566553 ], [ -82.012059777143932, 28.891689863675676 ], [ -82.011997019611016, 28.891760887226699 ], [ -82.011945470119372, 28.891829939182241 ], [ -82.011902888736117, 28.891908852505683 ], [ -82.011871512733009, 28.891979874265079 ], [ -82.011849105248913, 28.89205484012448 ], [ -82.011815500396054, 28.8922402818168 ], [ -82.011761731747171, 28.892506607335456 ], [ -82.011725882795545, 28.892678239478663 ], [ -82.011678825407671, 28.892832117973949 ], [ -82.011625039260153, 28.892970214872228 ], [ -82.011526432621636, 28.893206952101693 ], [ -82.011382999748903, 28.893512741338867 ], [ -82.011291612669353, 28.893695002353059 ], [ -82.011255465188114, 28.893748033374344 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 125B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015821799176635, 28.892423108312329 ], [ -82.017020513094209, 28.89242148878159 ], [ -82.017139879996733, 28.892422953060379 ], [ -82.017250841860616, 28.892425897141219 ], [ -82.01733322386464, 28.892434764670377 ], [ -82.01739375007179, 28.892451033732378 ], [ -82.017452596097172, 28.892468780042012 ], [ -82.017497993424058, 28.892492448001644 ], [ -82.017543391742024, 28.892522033228339 ], [ -82.017582064994983, 28.892550140417296 ], [ -82.017619056699445, 28.892590084176881 ], [ -82.017661099825688, 28.89265369912356 ], [ -82.017716420855493, 28.892775328446316 ], [ -82.017780606024132, 28.892930116132813 ], [ -82.017863444915704, 28.893118087983613 ], [ -82.017935778960933, 28.893287767001311 ], [ -82.018008111718345, 28.893436234713327 ], [ -82.018088471291605, 28.893545814930551 ], [ -82.018148741275894, 28.893630650340452 ], [ -82.018200975146527, 28.893697812525119 ], [ -82.018253209870451, 28.8937755794169 ], [ -82.018274948312822, 28.893818036986982 ], [ -82.018289378853396, 28.893856883606869 ], [ -82.018303543203686, 28.893897929164247 ], [ -82.018313493637621, 28.893945259790897 ], [ -82.018317526329966, 28.894030102498199 ], [ -82.018317540688258, 28.894107876214836 ], [ -82.018318434432658, 28.894458866139399 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 122", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020544437751511, 28.898332087236472 ], [ -82.020210823185295, 28.89833213621533 ], [ -82.020123792863274, 28.898330552689615 ], [ -82.020044014489187, 28.898327372796413 ], [ -82.01994972834656, 28.898306643419318 ], [ -82.019853702718663, 28.898277489458419 ], [ -82.019722983361675, 28.898241001959807 ], [ -82.019603108656014, 28.898190789737988 ], [ -82.019409026866384, 28.898105428803767 ], [ -82.019266316363414, 28.898022570676257 ], [ -82.019050263474298, 28.897875632153699 ], [ -82.01892695297208, 28.897798712644391 ], [ -82.018848484145323, 28.897759268461336 ], [ -82.01876329055888, 28.897727715745141 ], [ -82.018693793913641, 28.897707997227968 ], [ -82.018613089010486, 28.897692226830447 ], [ -82.018507721046348, 28.897672513008459 ], [ -82.018321652734485, 28.897644919137225 ], [ -82.018087584657422, 28.89761838693779 ], [ -82.017930618506355, 28.897608362826478 ], [ -82.017782214539878, 28.897595823634973 ], [ -82.017608121024978, 28.897565708030292 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 114D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017557073797903, 28.899527149314824 ], [ -82.017514266302101, 28.899539711991675 ], [ -82.017476823572906, 28.899546757327151 ], [ -82.017438713150028, 28.899552680275832 ], [ -82.017391636062854, 28.899552686153228 ], [ -82.017074760537824, 28.89955232286054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neptune Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018893790088072, 28.902992876860925 ], [ -82.018945934735058, 28.902724722000819 ], [ -82.019013481865102, 28.902407442971032 ], [ -82.019020776861197, 28.902369565285618 ], [ -82.019034644106014, 28.902340711489899 ], [ -82.019052900894565, 28.902311264280939 ], [ -82.019077507672606, 28.90228078396861 ], [ -82.019111550478954, 28.902253037221541 ], [ -82.019158047704948, 28.902231931471686 ], [ -82.019238791876489, 28.902212421646933 ], [ -82.019362730617175, 28.90221240443314 ], [ -82.019531741158474, 28.902218990112399 ], [ -82.019816658387569, 28.902218510331188 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ketch Kay Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018185147100866, 28.902936119267789 ], [ -82.018168776798802, 28.902827643473415 ], [ -82.018160373153464, 28.902751706226908 ], [ -82.018174742780005, 28.902672605256498 ], [ -82.018206018680402, 28.902519916922955 ], [ -82.018224781199038, 28.902424072318492 ], [ -82.018225062921601, 28.902398521893979 ], [ -82.018221275744366, 28.902371891048311 ], [ -82.018208659734867, 28.902337493469211 ], [ -82.018193523832963, 28.902311972128903 ], [ -82.018174603823866, 28.902289782567038 ], [ -82.018148118374143, 28.902266482356836 ], [ -82.018121632663849, 28.902247621450272 ], [ -82.01808203091295, 28.902232405723705 ], [ -82.017999402412869, 28.902212587513876 ], [ -82.017886728498951, 28.902212602027554 ], [ -82.017721478210163, 28.902212623143232 ], [ -82.017540288193899, 28.902217735026653 ], [ -82.017497414574351, 28.902227727957172 ], [ -82.017462107110163, 28.902243267258267 ], [ -82.017430586607404, 28.902266573965118 ], [ -82.017402846670535, 28.902289880192772 ], [ -82.017382674937025, 28.902318733705318 ], [ -82.017368459728772, 28.902348168455553 ], [ -82.017357205219966, 28.902430793335277 ], [ -82.017368500521997, 28.902599342197639 ], [ -82.01736476756767, 28.902734844439767 ], [ -82.017338497045969, 28.90286043322277 ], [ -82.017283542874679, 28.90300251776771 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ketch Kay Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017283542874679, 28.90300251776771 ], [ -82.01725214791567, 28.903062043577872 ], [ -82.017131995391949, 28.90325704778947 ], [ -82.016910462887623, 28.903627225596082 ], [ -82.016794067719232, 28.90385197420489 ], [ -82.016718977594863, 28.904007313880165 ], [ -82.016670163056105, 28.904076722701049 ], [ -82.016625098846433, 28.904122997030285 ], [ -82.016597330575479, 28.904146459187871 ], [ -82.016570849820923, 28.904160887376037 ], [ -82.016534969819602, 28.904179191141139 ], [ -82.016482390388163, 28.904192416928723 ], [ -82.016369246732268, 28.90419227684184 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Regatta Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015261567975685, 28.903400073092357 ], [ -82.015309679735566, 28.903424207935732 ], [ -82.015351296952602, 28.903443069539328 ], [ -82.015405526991145, 28.903465256517556 ], [ -82.015473627701525, 28.903488551768877 ], [ -82.015555598451357, 28.90350851686631 ], [ -82.015627479149586, 28.9035129472663 ], [ -82.015696838249994, 28.903516269888321 ], [ -82.015764727572019, 28.903523883069209 ], [ -82.015823409364401, 28.90353482944564 ], [ -82.015883869896882, 28.903550469350879 ], [ -82.01594277531828, 28.90356875043366 ], [ -82.016013837683104, 28.903606636141195 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Miona Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015261567975685, 28.903400073092357 ], [ -82.015225487017162, 28.903447195944953 ], [ -82.015138194825624, 28.903545182380181 ], [ -82.015031020152747, 28.90365837822856 ], [ -82.014918800501817, 28.903758261114046 ], [ -82.014811620780804, 28.903838169193214 ], [ -82.014703181100558, 28.903913638912737 ], [ -82.014596001628291, 28.903990218240345 ], [ -82.014527912765914, 28.90404792728549 ], [ -82.014474954465143, 28.904104526714349 ], [ -82.014428302611478, 28.904163344225804 ], [ -82.014390480291112, 28.904228817973422 ], [ -82.014210194656243, 28.904587259902947 ], [ -82.014074036122821, 28.904866911185017 ], [ -82.013998389889423, 28.905001187938861 ], [ -82.013968128712037, 28.905037809821117 ], [ -82.013936604229272, 28.905066664838344 ], [ -82.013893731983956, 28.905091081662381 ], [ -82.013860944352871, 28.90510551084223 ], [ -82.013467820152115, 28.905229056500261 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Five Forks Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013956073325559, 28.924055133689524 ], [ -82.013979818690288, 28.92403758076895 ], [ -82.014013380916126, 28.9240190974981 ], [ -82.014038705647877, 28.924009161589456 ], [ -82.014071953734828, 28.924004144196598 ], [ -82.014166164623774, 28.924002581849361 ], [ -82.014266196989183, 28.924002570791806 ], [ -82.014393582980276, 28.924002558654294 ], [ -82.014513933394298, 28.924002546223996 ], [ -82.014606933259529, 28.924002536544904 ], [ -82.014649719002279, 28.924002531168057 ], [ -82.014751511287457, 28.924002521370184 ], [ -82.014855060415499, 28.9240025104064 ], [ -82.014958610166659, 28.924006967531191 ], [ -82.015041646614762, 28.924015896759013 ], [ -82.015116281212983, 28.924023451746351 ], [ -82.015202833817725, 28.924027911423657 ], [ -82.015306384438176, 28.924030994084497 ], [ -82.015403094101629, 28.924032358547393 ], [ -82.015515044730677, 28.924030971050172 ], [ -82.015637349960087, 28.92403095739839 ], [ -82.015706905161551, 28.924033699782271 ], [ -82.015766636551476, 28.924045826213749 ], [ -82.015808262563638, 28.924068016171066 ], [ -82.015840941992238, 28.924094877414291 ], [ -82.015870075188246, 28.924123491311235 ], [ -82.015886669486932, 28.924159157169143 ], [ -82.01589683526575, 28.924201096517205 ], [ -82.015902120480206, 28.924265382674832 ], [ -82.015902128444765, 28.924319011517525 ], [ -82.015902139885469, 28.924389140639551 ], [ -82.015902149939151, 28.924463741538052 ], [ -82.015900403442117, 28.924547278069451 ], [ -82.015891816611173, 28.924612940903842 ], [ -82.015882765814794, 28.92464836425556 ], [ -82.015863851162919, 28.924679436957373 ], [ -82.015834846470597, 28.924709400979012 ], [ -82.015799533493663, 28.924733817493564 ], [ -82.015762888783669, 28.924754935356706 ], [ -82.015718813612722, 28.924769335554508 ], [ -82.015682235686086, 28.924770449495156 ], [ -82.015640611797579, 28.924771563991694 ], [ -82.015578808004591, 28.924771570906429 ], [ -82.015501867353919, 28.924771579475085 ], [ -82.015385827843247, 28.924772702138466 ], [ -82.015255691295906, 28.92477286800483 ], [ -82.015164058897454, 28.924772877984775 ], [ -82.015082585917611, 28.924771511707387 ], [ -82.015021432514743, 28.924765329450626 ], [ -82.014933119749671, 28.924748838636958 ], [ -82.014848323609399, 28.924730971390993 ], [ -82.014771928434897, 28.924714822077267 ], [ -82.014687133563655, 28.924698329827951 ], [ -82.014610737556779, 28.924690774788335 ], [ -82.014529265673715, 28.924689408175873 ], [ -82.014413993244233, 28.924689421000664 ], [ -82.014296961908641, 28.924689432101818 ], [ -82.014193413306174, 28.924690817736099 ], [ -82.014077942753659, 28.924689454292459 ], [ -82.013996471859244, 28.924687743582901 ], [ -82.013868500794118, 28.924690506503438 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Gaffney Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012072230863566, 28.925035324827931 ], [ -82.012201829507532, 28.925036978405313 ], [ -82.012436435408418, 28.925036124168127 ], [ -82.01282239918315, 28.925036923247752 ], [ -82.013376747326205, 28.925042694973222 ], [ -82.013864247464937, 28.925039094390289 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Five Forks Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012072230863566, 28.925035324827931 ], [ -82.012067201508671, 28.925422569765409 ], [ -82.012070723662248, 28.925470354133626 ], [ -82.012083942621771, 28.925533493838284 ], [ -82.012112806048421, 28.925585680134603 ], [ -82.012149819492436, 28.925623983003174 ], [ -82.01221078339826, 28.925656538872442 ], [ -82.012269567202139, 28.925673772121471 ], [ -82.01233704856989, 28.925676252051627 ], [ -82.012428680935116, 28.92567796376937 ], [ -82.012540829421297, 28.925677952920644 ], [ -82.012756332807029, 28.925677933545508 ], [ -82.01297847923928, 28.925679289212709 ], [ -82.01319574069295, 28.925680644972566 ], [ -82.013401085622775, 28.925682343490308 ], [ -82.013538436447831, 28.925682331206236 ], [ -82.013641988268432, 28.925682320269772 ], [ -82.013682381359303, 28.925677674023841 ], [ -82.013709978576927, 28.925670281527907 ], [ -82.013748857191885, 28.925652401442154 ], [ -82.013779814881033, 28.925633555765607 ], [ -82.013809137484188, 28.925612746848024 ], [ -82.013828999635351, 28.925590272318029 ], [ -82.013842236704107, 28.92556266618277 ], [ -82.013859225792501, 28.925505940794501 ], [ -82.013864300767693, 28.925452312358772 ], [ -82.01386604717932, 28.925355367750551 ], [ -82.013866032094498, 28.92524639120413 ], [ -82.013864258950306, 28.925128132915479 ], [ -82.013864247464937, 28.925039094390289 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Gaffney Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011258680803508, 28.925029565899766 ], [ -82.012072230863566, 28.925035324827931 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Gaffney Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010276746873473, 28.92502131858252 ], [ -82.011258680803508, 28.925029565899766 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Welcome Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01028290695146, 28.924417855576149 ], [ -82.010282909994316, 28.924460827408886 ], [ -82.010282925959487, 28.924618619976052 ], [ -82.010279816638587, 28.924784320484662 ], [ -82.010276899112895, 28.92493936305916 ], [ -82.010276746873473, 28.92502131858252 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Welcome Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010276746873473, 28.92502131858252 ], [ -82.010276917085989, 28.925118468739715 ], [ -82.01027693173971, 28.92528417081472 ], [ -82.010279874069369, 28.925391082703552 ], [ -82.010290399809179, 28.92546606180181 ], [ -82.010315631766048, 28.925519323382325 ], [ -82.010332978876932, 28.925594308296581 ], [ -82.010328220803174, 28.92565617453652 ], [ -82.010316322435472, 28.925696625309708 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glen Hollow Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994185714456435, 28.926660573326725 ], [ -81.994147446739589, 28.926723691702879 ], [ -81.994118294291013, 28.926776952899388 ], [ -81.994101211704717, 28.926824541902281 ], [ -81.994082568699952, 28.926879197610479 ], [ -81.994057712828152, 28.926961182661813 ], [ -81.994027884797163, 28.927074868730092 ], [ -81.994006754986287, 28.92718964786841 ], [ -81.993949576958272, 28.92750993665916 ], [ -81.993934655372897, 28.927687024976859 ], [ -81.993932157745078, 28.927889257227772 ], [ -81.993933377123426, 28.928255461068787 ], [ -81.993934606781593, 28.92843910799693 ], [ -81.993938345852783, 28.928711131248452 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 72nd Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983297757632883, 28.920088899703089 ], [ -81.983300927105432, 28.921251903179559 ], [ -81.983293307755503, 28.922344586463712 ], [ -81.983296394862336, 28.923409300640863 ], [ -81.983302902213381, 28.923465869094692 ], [ -81.983311512331824, 28.923514351435081 ], [ -81.983337010930029, 28.923568869540127 ], [ -81.983378674448147, 28.92362648814122 ], [ -81.983429266405579, 28.923686725399929 ], [ -81.983509624602206, 28.923757442883744 ], [ -81.983589986039462, 28.923815065299312 ], [ -81.983667369655194, 28.923870068838823 ], [ -81.983723920914215, 28.923896263994646 ], [ -81.983801308210076, 28.923922461661757 ], [ -81.983907450567955, 28.923946250022006 ], [ -81.983979901175601, 28.923956525979488 ], [ -81.984333937446735, 28.923967219695538 ], [ -81.984625845401524, 28.923976587969179 ], [ -81.984709173556837, 28.923980181484456 ], [ -81.984793050145882, 28.923992425321181 ], [ -81.984873768927642, 28.924011668758105 ], [ -81.98495616921322, 28.924041270693035 ], [ -81.98503184215474, 28.924081225665926 ], [ -81.985102067628276, 28.924132114909717 ], [ -81.985518740532981, 28.924527596557191 ], [ -81.985587190945324, 28.924616641635581 ], [ -81.98564968443452, 28.924737113899305 ], [ -81.985697293012024, 28.924868055674484 ], [ -81.985825155806936, 28.925356587598277 ], [ -81.985834141845686, 28.92541801413822 ], [ -81.985828179046294, 28.925483484076533 ], [ -81.985813287627309, 28.925546332795331 ], [ -81.985783512207831, 28.925603942095698 ], [ -81.985732901870179, 28.925651075308103 ], [ -81.985229797682933, 28.925954796271757 ], [ -81.985029865315823, 28.926086025456932 ], [ -81.984890419061756, 28.926198304894751 ], [ -81.984795150679616, 28.926292570397511 ], [ -81.984726675340298, 28.926373744795342 ], [ -81.98466415038969, 28.926462774325497 ], [ -81.984607577249662, 28.926557044143689 ], [ -81.984577800945786, 28.926627749085068 ], [ -81.984539089833589, 28.926708925023291 ], [ -81.98450037934694, 28.926805816229827 ], [ -81.984452734620106, 28.926915798688 ], [ -81.984416998918448, 28.927015306871617 ], [ -81.984274035222896, 28.927544284209382 ], [ -81.984259135481864, 28.927646413261897 ], [ -81.984247209671096, 28.927764257038863 ], [ -81.984214442382168, 28.927918760407472 ], [ -81.984172751885112, 28.92802088807067 ], [ -81.984122132307022, 28.928115158369831 ], [ -81.984068539919576, 28.928185859437729 ], [ -81.983875015059652, 28.9284084323914 ], [ -81.98352072215279, 28.928769778122923 ], [ -81.983443311364198, 28.928866663299701 ], [ -81.983365891549738, 28.929005450115262 ], [ -81.983336109945881, 28.929086626792497 ], [ -81.983318236231909, 28.929173045483942 ], [ -81.98330333832304, 28.929256844279728 ], [ -81.98330331963804, 28.929377306091723 ], [ -81.983303293330692, 28.92953181420194 ], [ -81.98331199436781, 28.93092762146474 ], [ -81.983311801622861, 28.93210606993291 ], [ -81.983308559654802, 28.933734945068085 ], [ -81.983308115588713, 28.936442753850276 ], [ -81.98330782590908, 28.938213043031709 ], [ -81.98330457849606, 28.939873341773012 ], [ -81.983307532346913, 28.940006899658325 ], [ -81.983325375559417, 28.940124746863905 ], [ -81.983361086457833, 28.940211170312526 ], [ -81.983411684475101, 28.940289740237326 ], [ -81.983530749213685, 28.940410218438636 ], [ -81.983751029450289, 28.940572608733831 ], [ -81.984223284422143, 28.94092740047326 ], [ -81.985497994147266, 28.94186742411463 ], [ -81.9865760298228, 28.942662700607737 ], [ -81.987835260183658, 28.943589866109306 ], [ -81.988180584318187, 28.943849155058938 ], [ -81.988332404749443, 28.943998438483074 ], [ -81.988403484352915, 28.944093650186979 ], [ -81.988469328683323, 28.944231520012682 ], [ -81.988628344765516, 28.944637864324374 ], [ -81.988939589191347, 28.945512138655939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 755", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087790846241575, 28.564169954786653 ], [ -82.087789750115959, 28.562848132094302 ], [ -82.087788238267265, 28.56159309211305 ], [ -82.087780683318954, 28.559751493987864 ], [ -82.087774142458159, 28.559134081479186 ], [ -82.087773288734539, 28.558104167965762 ], [ -82.087772747517079, 28.55693951915902 ], [ -82.087769490894757, 28.555776128861766 ], [ -82.087779112666126, 28.555738620223515 ], [ -82.087802251876568, 28.555702806557985 ], [ -82.087850475982634, 28.555648225122042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 478A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.090561730131157, 28.584623532758787 ], [ -82.090294592664932, 28.584816594190805 ], [ -82.090112465870163, 28.584968931445577 ], [ -82.090054316110056, 28.585019492831769 ], [ -82.089997118962614, 28.58506752610155 ], [ -82.089940013010988, 28.585115869693347 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 116th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.089940013010988, 28.585115869693347 ], [ -82.0899917550136, 28.585161256984915 ], [ -82.090004842072105, 28.58517530238991 ], [ -82.090013445797752, 28.585194663741056 ], [ -82.090017281770471, 28.585219080448738 ], [ -82.090013493809465, 28.58525108005103 ], [ -82.089994455416928, 28.585302457583644 ], [ -82.089918666550645, 28.585435733920068 ], [ -82.089910633931126, 28.585453237445119 ], [ -82.089906836932443, 28.585473449732181 ], [ -82.089903997718807, 28.585499553695382 ], [ -82.0899011846805, 28.585557657459333 ], [ -82.089904374598632, 28.585654292775782 ], [ -82.089907034073292, 28.585704168984641 ], [ -82.089910881186583, 28.585742900467789 ], [ -82.089913779407169, 28.585785000120545 ], [ -82.089916678039231, 28.585828783546162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 478A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.089940013010988, 28.585115869693347 ], [ -82.08970605998681, 28.585329574538711 ], [ -82.089559849930765, 28.585476055663413 ], [ -82.08941364820555, 28.585632870263566 ], [ -82.089310337234608, 28.585751769130159 ], [ -82.089244124400082, 28.585830908137503 ], [ -82.089160252542001, 28.585930974034845 ], [ -82.089070169770409, 28.586045270269857 ], [ -82.089023038863715, 28.586112294521122 ], [ -82.088950616740433, 28.586209176592639 ], [ -82.088855330844126, 28.586343964676182 ], [ -82.088773393642583, 28.586468639594429 ], [ -82.088666693719361, 28.586643011731816 ], [ -82.088607632273437, 28.586745778169941 ], [ -82.088526936277972, 28.586887198725275 ], [ -82.088458758487377, 28.587021573767839 ], [ -82.088378089749384, 28.587186315282093 ], [ -82.088306840581524, 28.587348886852059 ], [ -82.088203643640085, 28.587605559101249 ], [ -82.088131621638411, 28.587810545724654 ], [ -82.088075191317984, 28.587996578479721 ], [ -82.088030437483297, 28.588142993531164 ], [ -82.087983764866763, 28.588329019065554 ], [ -82.087948794824143, 28.588511592820392 ], [ -82.087913835706217, 28.5887062227646 ], [ -82.087886679064994, 28.58889740344349 ], [ -82.087873077304849, 28.589060181377995 ], [ -82.087855798323091, 28.589305581123231 ], [ -82.087846508184214, 28.589865297987501 ], [ -82.087844521089437, 28.59028536800249 ], [ -82.087833908294215, 28.591139724115234 ], [ -82.087823066423397, 28.592182515642573 ], [ -82.087812049569138, 28.593016060139192 ], [ -82.087806894136776, 28.593857350996515 ], [ -82.087795622673994, 28.594380902859548 ], [ -82.087794918483937, 28.594889679266704 ], [ -82.087787740137557, 28.595436167776832 ], [ -82.087783173665343, 28.595837018303026 ], [ -82.08777410122093, 28.596663672620416 ], [ -82.087768300936119, 28.597303825035141 ], [ -82.087760294612465, 28.598003565870346 ], [ -82.087748769208048, 28.599055805199242 ], [ -82.087747936574658, 28.599206849664753 ], [ -82.08774631497495, 28.59955292863064 ], [ -82.087739555387174, 28.599710240037957 ], [ -82.087735066381484, 28.599794601958756 ], [ -82.087727504504528, 28.599879652529111 ], [ -82.087712333901777, 28.599993337475389 ], [ -82.087665833445953, 28.60022866372519 ], [ -82.087621086144026, 28.600392300477079 ], [ -82.087566574428251, 28.600547332406354 ], [ -82.087527630214396, 28.60064552216717 ], [ -82.087471143586143, 28.600772998698758 ], [ -82.087397113852944, 28.600922877110378 ], [ -82.087330604449122, 28.601043604141839 ], [ -82.087234361733621, 28.601193548958268 ], [ -82.087143823296017, 28.601319070901951 ], [ -82.08706662106384, 28.601416795789842 ], [ -82.086965017562505, 28.601535199754661 ], [ -82.086872771939241, 28.601634471671506 ], [ -82.086777228747309, 28.601727530284357 ], [ -82.086650475866605, 28.601837830671471 ], [ -82.086577552296447, 28.601898752367624 ], [ -82.086521295290453, 28.601941732162981 ], [ -82.086453594333861, 28.60199398079379 ], [ -82.08639733516226, 28.602034434884356 ], [ -82.086317230354211, 28.602087534057713 ], [ -82.086204702513811, 28.602160861535271 ], [ -82.086139496081387, 28.602198088961579 ], [ -82.0859596048155, 28.602298268056405 ], [ -82.085768852410311, 28.602386801776067 ], [ -82.085693502106807, 28.602420531546297 ], [ -82.085613381644222, 28.602452577779736 ], [ -82.085538028859105, 28.602482097139049 ], [ -82.085458857830545, 28.602509933264621 ], [ -82.085292882317901, 28.602562243493928 ], [ -82.085213707435628, 28.602584186285736 ], [ -82.085122129739773, 28.602606977721678 ], [ -82.085047721852391, 28.602625548110648 ], [ -82.084959238297785, 28.602642287315128 ], [ -82.084872190154769, 28.602660181472078 ], [ -82.084772018596183, 28.602675400131325 ], [ -82.084670893727363, 28.602691461190531 ], [ -82.084482943166449, 28.602708418535869 ], [ -82.08419003563219, 28.602721228935192 ], [ -82.083914293257124, 28.602723924670361 ], [ -82.083604202981363, 28.602727480889548 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 753", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.083604202981363, 28.602727480889548 ], [ -82.083629638088226, 28.599379590498756 ], [ -82.083632851995816, 28.59926638882682 ], [ -82.083626451277595, 28.599193608922111 ], [ -82.083605259693371, 28.599135768194245 ], [ -82.083575625382764, 28.5990965948513 ], [ -82.083533305175095, 28.599063028268993 ], [ -82.08346139450866, 28.599044409853182 ], [ -82.082169370037448, 28.599045190725008 ], [ -82.081234711374421, 28.599043881896606 ], [ -82.080768310120973, 28.599044856856906 ], [ -82.080304916682664, 28.599045634447616 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 478A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.083604202981363, 28.602727480889548 ], [ -82.08255169892935, 28.602738318248157 ], [ -82.081662454093845, 28.602746429847649 ], [ -82.080988836918465, 28.602747671479989 ], [ -82.080310445715739, 28.602744702237853 ], [ -82.079474624551295, 28.602740978181981 ], [ -82.07886493218146, 28.602738805550221 ], [ -82.077626465089111, 28.602732776391875 ], [ -82.076928038296444, 28.602728958784194 ], [ -82.07627344349028, 28.602726618313941 ], [ -82.075689960550577, 28.602725218107683 ], [ -82.074279061937219, 28.602716518433311 ], [ -82.073363391012933, 28.602715755996336 ], [ -82.072767056140108, 28.602711863232035 ], [ -82.071238711914631, 28.60270779880916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Market Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054695119409175, 28.606345061065472 ], [ -82.054695003974615, 28.606122007745093 ], [ -82.054710386666784, 28.605855902066331 ], [ -82.054712301590257, 28.605272829927817 ], [ -82.054711800223572, 28.604306260822444 ], [ -82.054711189975478, 28.60295348032788 ], [ -82.054712036715912, 28.602746338409212 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054712036715912, 28.602746338409212 ], [ -82.054712497195425, 28.601097593511096 ], [ -82.054712004078837, 28.600146800357244 ], [ -82.054714768714746, 28.598795509263994 ], [ -82.054714634224638, 28.598535646450618 ], [ -82.054713971291889, 28.597254672342618 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 753", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.080304916682664, 28.599045634447616 ], [ -82.080125468387152, 28.599045235052714 ], [ -82.079226759208993, 28.599043890465303 ], [ -82.077600626098729, 28.599042955348217 ], [ -82.076198640307567, 28.599041874580088 ], [ -82.0753189692186, 28.599049825541734 ], [ -82.073790103546585, 28.599043191356451 ], [ -82.072787776393483, 28.599039993747514 ], [ -82.071524373914258, 28.599041376289552 ], [ -82.071335461378297, 28.59904147370305 ], [ -82.071243155440158, 28.599044048204306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 753", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071243155440158, 28.599044048204306 ], [ -82.069674278776802, 28.599058123305404 ], [ -82.068660300354153, 28.59905863409476 ], [ -82.067205722513208, 28.599062017311702 ], [ -82.066484466271447, 28.59905704266971 ], [ -82.064664740389503, 28.599065899584136 ], [ -82.063723188394164, 28.599066339362572 ], [ -82.063448571485694, 28.599070794934612 ], [ -82.063335400280934, 28.599064188741824 ], [ -82.063252402004309, 28.599050910190872 ], [ -82.063198071793977, 28.599034621733782 ], [ -82.063135439221796, 28.59901101365849 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 743", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071238711914631, 28.60270779880916 ], [ -82.071242211857111, 28.602110197717099 ], [ -82.071233537132073, 28.601243566955119 ], [ -82.071240408832182, 28.600689584999479 ], [ -82.071237642441531, 28.600169697580792 ], [ -82.071236971901413, 28.599174669052935 ], [ -82.071243155440158, 28.599044048204306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 762", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06292571099462, 28.595403503928889 ], [ -82.06285489136414, 28.595409260786727 ], [ -82.062793337670328, 28.595409879948146 ], [ -82.062584398103979, 28.595412134520799 ], [ -82.060694682758069, 28.595410959371463 ], [ -82.059556918006322, 28.595408881351879 ], [ -82.058821745137536, 28.595406622301336 ], [ -82.058404571101434, 28.595414524933648 ], [ -82.057581884749283, 28.595420020326429 ], [ -82.057465539749813, 28.595420068943696 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 110th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068898254347346, 28.595419964282421 ], [ -82.066993212015035, 28.595392585796898 ], [ -82.064994832561425, 28.595393544756099 ], [ -82.06382206600253, 28.595399243117406 ], [ -82.063129643579671, 28.595395595245545 ], [ -82.062990820754194, 28.595394632056195 ], [ -82.06292571099462, 28.595403503928889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 753", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063135439221796, 28.59901101365849 ], [ -82.063083358962473, 28.598973417114308 ], [ -82.063037958614032, 28.598933014811884 ], [ -82.062992131545556, 28.598883355560201 ], [ -82.062960617930372, 28.598834531623428 ], [ -82.062932353177104, 28.598776399433429 ], [ -82.06291722779919, 28.598715148143373 ], [ -82.062928913386983, 28.597434316517305 ], [ -82.062926797229309, 28.595995205629279 ], [ -82.06292571099462, 28.595403503928889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 112th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067198136256977, 28.591889327846449 ], [ -82.065388031154697, 28.591867826712509 ], [ -82.064566334532685, 28.591869435174083 ], [ -82.063570833542428, 28.591859761347486 ], [ -82.062972653090128, 28.591856878441941 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 753", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06292571099462, 28.595403503928889 ], [ -82.062934818616583, 28.594634271486211 ], [ -82.062950493918592, 28.593523394466693 ], [ -82.062966241702341, 28.592505567755712 ], [ -82.062972653090128, 28.591856878441941 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 753", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062972653090128, 28.591856878441941 ], [ -82.062967332310123, 28.590935849181918 ], [ -82.062968287851106, 28.590581557162928 ], [ -82.062963401330265, 28.590212851059988 ], [ -82.062970249003726, 28.589955367832744 ], [ -82.062970004935408, 28.589545462174467 ], [ -82.062983818925403, 28.589228240587655 ], [ -82.06297153681308, 28.588198329249312 ], [ -82.062966184620208, 28.588135936438569 ], [ -82.062958515886933, 28.588075311476739 ], [ -82.062952749284662, 28.587998532788177 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054715107153342, 28.595435017608146 ], [ -82.054716294259762, 28.595051946447125 ], [ -82.054714225046297, 28.59373031266351 ], [ -82.054710832848841, 28.592526994384855 ], [ -82.054713628303205, 28.591494155865359 ], [ -82.054712605308637, 28.590599721945544 ], [ -82.054712465881636, 28.590328241147912 ], [ -82.054711725707278, 28.588897462940011 ], [ -82.054719635864046, 28.588119702690356 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 747", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075208394633606, 28.614237498501467 ], [ -82.075228247949582, 28.613719176204516 ], [ -82.075237495874006, 28.613381491058284 ], [ -82.075262453244932, 28.612898677493554 ], [ -82.075284265528026, 28.612440982260804 ], [ -82.075306163103079, 28.61210608013808 ], [ -82.075314395430127, 28.611685434282428 ], [ -82.075330885084711, 28.611293957435961 ], [ -82.075363452625851, 28.610777163694337 ], [ -82.075376771890305, 28.610338084649545 ], [ -82.075372049592985, 28.610085469758229 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 4th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054695858274002, 28.613697064135259 ], [ -82.056092678969009, 28.613697396425046 ], [ -82.056527272250378, 28.613697217754165 ], [ -82.056779913363826, 28.613699848765673 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Market Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054695858274002, 28.613697064135259 ], [ -82.054698153362139, 28.614013951612318 ], [ -82.05469738885985, 28.614194428096226 ], [ -82.054708959388208, 28.614425702334703 ], [ -82.054719239416002, 28.614623297228118 ], [ -82.054719632650475, 28.615384499514107 ], [ -82.05472374875022, 28.616340353022522 ], [ -82.054724267688911, 28.617344095002128 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Market Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054716223596216, 28.612579196122429 ], [ -82.054713580871606, 28.612831110783493 ], [ -82.054694329007972, 28.613117274046719 ], [ -82.054695858274002, 28.613697064135259 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 4th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054695858274002, 28.613697064135259 ], [ -82.054600432871283, 28.613690366930609 ], [ -82.053336549663143, 28.613678925028697 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 1st Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053362501902868, 28.607522411738906 ], [ -82.053362477610023, 28.607012590766995 ], [ -82.053367983595209, 28.606341973097567 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 3rd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050614145304053, 28.607509624369577 ], [ -82.050612234612828, 28.607181604186255 ], [ -82.050610339048745, 28.606703650951996 ], [ -82.050610301733457, 28.606625727477233 ], [ -82.050610274866983, 28.606569623513284 ], [ -82.050603535356984, 28.606530725149412 ], [ -82.050591614298042, 28.606499209837938 ], [ -82.050578373485109, 28.606474697178019 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 3rd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050578373485109, 28.606474697178019 ], [ -82.05055190025513, 28.606443186296385 ], [ -82.050510876534076, 28.606415181823433 ], [ -82.050477798192816, 28.606401185084358 ], [ -82.050430059094879, 28.606388909049382 ], [ -82.050119241707506, 28.606376554688602 ], [ -82.049956773542107, 28.606379732114707 ], [ -82.049667156407239, 28.606379835786573 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 1st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051988639222003, 28.608691924251481 ], [ -82.051555754517366, 28.608685471757823 ], [ -82.050604389637499, 28.608682120976102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 1st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046362069177405, 28.609809999007464 ], [ -82.046282700771584, 28.609831915512675 ], [ -82.046182499419814, 28.609856464750074 ], [ -82.046062454529221, 28.609882772877583 ], [ -82.045938727177301, 28.609906116128766 ], [ -82.045716283283127, 28.609942999108313 ], [ -82.045511216265311, 28.609970673025565 ], [ -82.045326998416499, 28.609986069763796 ], [ -82.04517405890239, 28.609992254860618 ], [ -82.045014167628963, 28.609992306131339 ], [ -82.044833419027398, 28.609995431037511 ], [ -82.044694384333752, 28.609995476968741 ], [ -82.044513635447657, 28.609995535294377 ], [ -82.043213634859413, 28.609989814480439 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 1st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048352103081243, 28.608989324023216 ], [ -82.048149145551321, 28.6090698134078 ], [ -82.047969004360766, 28.609148161426937 ], [ -82.047719444983755, 28.60925651440035 ], [ -82.047486805564731, 28.609357396027725 ], [ -82.047309155989936, 28.609439592599305 ], [ -82.047114585616512, 28.609529259778402 ], [ -82.046914935573454, 28.609613328475266 ], [ -82.046738972784183, 28.609685069202172 ], [ -82.046574370530024, 28.609741632104704 ], [ -82.04645036435798, 28.609783703100472 ], [ -82.046362069177405, 28.609809999007464 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049656577773177, 28.609994667716727 ], [ -82.048907169327663, 28.61000612622815 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 5th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048907169327663, 28.61000612622815 ], [ -82.048880087735668, 28.608828231675719 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048907169327663, 28.61000612622815 ], [ -82.048845651543957, 28.610007899461255 ], [ -82.04827908791242, 28.610028010780855 ], [ -82.047933860605454, 28.610019170854503 ], [ -82.046904959509789, 28.610013551638986 ], [ -82.046630814559663, 28.610013643575176 ], [ -82.046566506199113, 28.6100106794268 ], [ -82.046530829546242, 28.61000257038296 ], [ -82.046496092564382, 28.609985071254133 ], [ -82.046470288814788, 28.609968442577006 ], [ -82.046450435690375, 28.609948310811177 ], [ -82.046431086938441, 28.609924109315379 ], [ -82.046362069177405, 28.609809999007464 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 1st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050593141685411, 28.610127535433467 ], [ -82.050533452693102, 28.610117615326335 ], [ -82.050464988991422, 28.610117639493151 ], [ -82.050393553247545, 28.61012292084682 ], [ -82.050365701680136, 28.610127619583636 ], [ -82.050306139812335, 28.610141975908213 ], [ -82.050254664155744, 28.610164998951383 ], [ -82.050218952955603, 28.610186024769789 ], [ -82.050165385080987, 28.610230434018565 ], [ -82.050122079242996, 28.610263901341661 ], [ -82.05007877009028, 28.610292589854936 ], [ -82.050025539534417, 28.610326188882308 ], [ -82.049965028736267, 28.610355980842986 ], [ -82.049885670156058, 28.610393658834059 ], [ -82.049827021517928, 28.61042170583465 ], [ -82.049765639206939, 28.610453242245573 ], [ -82.049718027150135, 28.610482154171027 ], [ -82.049674385178704, 28.610514565732444 ], [ -82.049628760903062, 28.610552231420932 ], [ -82.04959702674627, 28.610589892100894 ], [ -82.049578011496365, 28.610620112914855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 4th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049578011496365, 28.610620112914855 ], [ -82.049566298996737, 28.610652069913105 ], [ -82.049562344488848, 28.610681841360947 ], [ -82.049561220561671, 28.61084065734952 ], [ -82.049561341468532, 28.611100619869042 ], [ -82.049565797842661, 28.611362492880886 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 4th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049565797842661, 28.611362492880886 ], [ -82.049569696616331, 28.611549541288323 ], [ -82.049566925758455, 28.611988208867341 ], [ -82.049567041586471, 28.612235122597639 ], [ -82.049572213137992, 28.612685169401665 ], [ -82.049581237334507, 28.613683456074309 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 3rd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054716223596216, 28.612579196122429 ], [ -82.054794361257038, 28.612583116406142 ], [ -82.054895581672127, 28.612605841245198 ], [ -82.055005730078378, 28.612628562442868 ], [ -82.055106949450575, 28.612653038567206 ], [ -82.055201226267172, 28.612676641226432 ], [ -82.055312195142832, 28.612723257626421 ], [ -82.055446348690339, 28.612754469770639 ], [ -82.055494970476417, 28.612760579782229 ], [ -82.055634879503344, 28.612769277829951 ], [ -82.055938603857655, 28.612767027950323 ], [ -82.056525820566279, 28.612770901862461 ], [ -82.057495376707308, 28.612764475338288 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 2nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057596388834924, 28.610182651580715 ], [ -82.057566128211292, 28.611035224651658 ], [ -82.05756619433393, 28.611730921137184 ], [ -82.057572251138282, 28.611920919045811 ], [ -82.057570440567901, 28.612238755726263 ], [ -82.057562539283296, 28.612304426862938 ], [ -82.057556614522781, 28.612358715951032 ], [ -82.057495376707308, 28.612764475338288 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 2nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057495376707308, 28.612764475338288 ], [ -82.057513529474221, 28.612988575732498 ], [ -82.057546289207167, 28.613440938665413 ], [ -82.057558295714571, 28.613693500512909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 730", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071217585278859, 28.620944790378488 ], [ -82.070995903975202, 28.620938695365563 ], [ -82.070644035906653, 28.620938876073794 ], [ -82.069313984387776, 28.62095197410348 ], [ -82.069038684185898, 28.620955206978341 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 730", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069038684185898, 28.620955206978341 ], [ -82.067181197004018, 28.620969253981698 ], [ -82.06515955787701, 28.62096909744384 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 735", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069038684185898, 28.620955206978341 ], [ -82.06903861948291, 28.620856222195357 ], [ -82.069034923399514, 28.620682138438507 ], [ -82.069034751142766, 28.620417031227532 ], [ -82.069034572906901, 28.620145901796104 ], [ -82.069034368127504, 28.61983259251047 ], [ -82.069034183041595, 28.619549409608435 ], [ -82.069033995044407, 28.61926020357981 ], [ -82.069030389534234, 28.618967984541147 ], [ -82.069030218248741, 28.618705891979157 ], [ -82.069028054828934, 28.618082191406327 ], [ -82.069025233005917, 28.617882771244307 ], [ -82.069024283458461, 28.617617426999292 ], [ -82.069022848480813, 28.617419836973511 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 747", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075396613285548, 28.631951926535667 ], [ -82.075395913460966, 28.630970601142806 ], [ -82.075409295512813, 28.628110529447277 ], [ -82.075417286966015, 28.626728844688927 ], [ -82.07542051215475, 28.625989486590708 ], [ -82.075424296316328, 28.625345498081042 ], [ -82.075421983589422, 28.624657586112349 ], [ -82.075425533501729, 28.624108067967352 ], [ -82.075420735010823, 28.622907919277953 ], [ -82.075414936423144, 28.620951466318406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 28th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056750673250434, 28.622823451222356 ], [ -82.056758796555641, 28.622690894254006 ], [ -82.056813126816053, 28.622138967809434 ], [ -82.056816822499457, 28.622066410089545 ], [ -82.056816795764504, 28.622014811636607 ], [ -82.056811994287756, 28.621963215154377 ], [ -82.056808377859241, 28.621897928793757 ], [ -82.056812952822995, 28.621813609618592 ], [ -82.056832051192842, 28.621772631019169 ], [ -82.056836931188315, 28.621732591308373 ], [ -82.056808142698131, 28.621458815408502 ], [ -82.056803339662451, 28.621406165892388 ], [ -82.056798541618221, 28.621360887583513 ], [ -82.056808031121562, 28.621251368547746 ], [ -82.056815230559394, 28.620970089255881 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 729", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058837462220382, 28.622800883325631 ], [ -82.058839587159056, 28.621713945388482 ], [ -82.058845981885554, 28.621141503115727 ], [ -82.058855561404542, 28.620971639951989 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 4th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059870611537093, 28.619170886614448 ], [ -82.059876186402434, 28.619368510089561 ], [ -82.059884111851204, 28.620088419271354 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 4th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059884111851204, 28.620088419271354 ], [ -82.05988802046673, 28.620968785012831 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 9th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058876233798586, 28.620079608136603 ], [ -82.059780993358203, 28.62008192758838 ], [ -82.059884111851204, 28.620088419271354 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 9th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059884111851204, 28.620088419271354 ], [ -82.060059541110618, 28.620085183676 ], [ -82.060166119023719, 28.620091401126974 ], [ -82.060892660507662, 28.620098311739252 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 713", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013864091275238, 28.64994958358281 ], [ -82.013897829991365, 28.648860062309378 ], [ -82.013926588292819, 28.648350158594035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02982609066197, 28.649999790627742 ], [ -82.028162375673588, 28.649986832067704 ], [ -82.025400097842748, 28.649974687237194 ], [ -82.023840804871355, 28.649972867268261 ], [ -82.021639566449892, 28.649970762073281 ], [ -82.020568240464257, 28.649961078560551 ], [ -82.019201185365361, 28.649961270509049 ], [ -82.016707007266859, 28.649956662029084 ], [ -82.013864091275238, 28.64994958358281 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 714", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054773313826644, 28.639216424638683 ], [ -82.053908059845298, 28.639209407582371 ], [ -82.053024242906531, 28.639222754284205 ], [ -82.052295463737181, 28.639223032881404 ], [ -82.051957925861316, 28.6392299281143 ], [ -82.051597368063426, 28.639225551915839 ], [ -82.050819991151045, 28.639201024694191 ], [ -82.049855964517775, 28.639218295521111 ], [ -82.049162977036801, 28.63920388225068 ], [ -82.047994368135065, 28.639197526261256 ], [ -82.046726028881835, 28.63918216881304 ], [ -82.046633973020377, 28.639181072020357 ], [ -82.046570046526412, 28.639186734108783 ], [ -82.04654346107624, 28.6392065953907 ], [ -82.046529155235973, 28.639242017842335 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054773313826644, 28.639216424638683 ], [ -82.054772094575682, 28.638686144235518 ], [ -82.054772790972009, 28.637444189726768 ], [ -82.054769732219796, 28.636747258148844 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054774163371249, 28.639235333673764 ], [ -82.054773313826644, 28.639216424638683 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 714", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056283637213056, 28.639268048878037 ], [ -82.056095876338418, 28.639249637564919 ], [ -82.055576915889858, 28.639241302987728 ], [ -82.054774163371249, 28.639235333673764 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 708A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054790923816071, 28.648865374982385 ], [ -82.053949303934516, 28.648852702026446 ], [ -82.053936649260095, 28.648832158996722 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 708A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053936649260095, 28.648832158996722 ], [ -82.053898025283345, 28.648788143750924 ], [ -82.053856742854862, 28.648748238770466 ], [ -82.053855402162043, 28.648728864343031 ], [ -82.053854726536215, 28.64871184023983 ], [ -82.053875611070438, 28.648581325452241 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 561", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067104350454528, 28.657410358268866 ], [ -82.067107166669658, 28.656244690479092 ], [ -82.067111495606241, 28.655196041932609 ], [ -82.067119206778941, 28.653559665647229 ], [ -82.067128866520619, 28.650155212540167 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 745", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0712506382322, 28.650181990350713 ], [ -82.071239126997455, 28.649057609664929 ], [ -82.071245140955497, 28.647659968979891 ], [ -82.071257533390011, 28.646466628875455 ], [ -82.071260496974347, 28.645971828737441 ], [ -82.071273293153851, 28.645375154230162 ], [ -82.07127092441533, 28.644312476059966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Busted Oaks Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096089273637702, 28.652654082237333 ], [ -82.096088566043633, 28.652025590282129 ], [ -82.096120333273234, 28.650859142114442 ], [ -82.096120417549912, 28.650251152294647 ], [ -82.09612041841946, 28.650243126023213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 751", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07524183850505, 28.547864910997237 ], [ -82.075246106769015, 28.547040003749764 ], [ -82.075242910735184, 28.54595584474114 ], [ -82.075227809945801, 28.545193083649369 ], [ -82.075215375694739, 28.544768852723553 ], [ -82.075219989887785, 28.544432462463732 ], [ -82.075185730056134, 28.544025382668359 ], [ -82.075175859927825, 28.543793987766357 ], [ -82.075175701829181, 28.543571155347465 ], [ -82.075190023500511, 28.543236900087233 ], [ -82.075187369485974, 28.542915508978403 ], [ -82.075189503023537, 28.54250198442962 ], [ -82.075187832754153, 28.542429247839223 ], [ -82.075179725267688, 28.542399144478967 ], [ -82.075164412176434, 28.542357030276573 ], [ -82.075148811068033, 28.542329522564341 ], [ -82.075127365456169, 28.542298578290968 ], [ -82.075087404149883, 28.542247007402715 ], [ -82.074706150132286, 28.54180375737797 ], [ -82.074427628938508, 28.541501847925538 ], [ -82.074394489155097, 28.541458870718461 ], [ -82.074375969085452, 28.541433085275791 ], [ -82.074360367344667, 28.541401277772295 ], [ -82.07434768147111, 28.541364309051946 ], [ -82.074338890783082, 28.541325619245296 ], [ -82.074328091086997, 28.541200943803702 ], [ -82.074312060109548, 28.540905243402985 ], [ -82.074308189402601, 28.540883548494261 ], [ -82.074296321816249, 28.540863632834181 ], [ -82.074284090487097, 28.540846684296199 ], [ -82.074249152605631, 28.54080970864868 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 737", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062813487691926, 28.551469934277968 ], [ -82.062804890421546, 28.550527993601051 ], [ -82.06279729024601, 28.549731750089737 ], [ -82.06279386496935, 28.54907021985688 ], [ -82.062796831416037, 28.548957731688585 ], [ -82.062799798878601, 28.548845243517917 ], [ -82.062799677193311, 28.548641695308774 ], [ -82.062796365232799, 28.548173001417339 ], [ -82.06277789206402, 28.547709669853145 ], [ -82.062774498738932, 28.547101706463678 ], [ -82.062741539639191, 28.545992117081315 ], [ -82.062729376018297, 28.545940700446682 ], [ -82.062714785367177, 28.545889284014365 ], [ -82.062537036300839, 28.545618056434787 ], [ -82.062367049765896, 28.545395837102824 ], [ -82.062291132989046, 28.545245888383473 ], [ -82.062228380642281, 28.545036843313625 ], [ -82.062105641306914, 28.544439815912067 ], [ -82.062090365453003, 28.544252343447354 ], [ -82.062074883354484, 28.544140087318887 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 788", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054574509999284, 28.48128238855664 ], [ -82.054420728474582, 28.481267877031442 ], [ -82.054141703941966, 28.481253269210413 ], [ -82.053683603612527, 28.481227691060369 ], [ -82.053121391226313, 28.481198473420822 ], [ -82.052221536613402, 28.481147610229126 ], [ -82.052014130683702, 28.481137064965342 ], [ -82.051813729903699, 28.481132738533613 ], [ -82.051642988409043, 28.481136482266567 ], [ -82.051509731866417, 28.481141314504583 ], [ -82.051349822122631, 28.48115314980938 ], [ -82.051179922978534, 28.481170872917179 ], [ -82.051040004338716, 28.481185643051504 ], [ -82.050860116589078, 28.481215146152678 ], [ -82.050423721996864, 28.481291838798157 ], [ -82.049477367621606, 28.481456691764251 ], [ -82.049251949881324, 28.481499265270688 ], [ -82.049056591322099, 28.481543156020667 ], [ -82.04880674114203, 28.48160355455683 ], [ -82.048523121684994, 28.48168144500633 ], [ -82.048180490855827, 28.48177567822124 ], [ -82.047591548375323, 28.481940723401724 ], [ -82.047090543228109, 28.482075120862113 ], [ -82.047010387603052, 28.48209291016768 ], [ -82.046923316771839, 28.482101902854964 ], [ -82.046868367476478, 28.4821056563394 ], [ -82.04678720924251, 28.482106430044727 ], [ -82.046635034939015, 28.482096024838953 ], [ -82.046538653898281, 28.482084852663039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 719", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034614151182666, 28.549714621782336 ], [ -82.034751423534303, 28.549714587556284 ], [ -82.035522518782784, 28.549716157714627 ], [ -82.035618725696622, 28.549708746469801 ], [ -82.035714928638839, 28.549686561900792 ], [ -82.035811126546605, 28.549649602203047 ], [ -82.035890585996711, 28.5495978726007 ], [ -82.035946125095833, 28.549538472857503 ], [ -82.035982577327957, 28.549494430599569 ], [ -82.036020198713587, 28.549420553664067 ], [ -82.036049458953229, 28.549354062808288 ], [ -82.036066159056887, 28.549265414416467 ], [ -82.03607031900944, 28.549195237654128 ], [ -82.03607447290419, 28.549110286731882 ], [ -82.03607834004012, 28.54818322310118 ], [ -82.036081928926137, 28.546436207213269 ], [ -82.036099966716378, 28.545821040246306 ], [ -82.036102438929348, 28.545254752126343 ], [ -82.036102167839616, 28.544456037453632 ], [ -82.036104996450945, 28.544309054787913 ], [ -82.036126953751065, 28.5441405731783 ], [ -82.036164760701524, 28.544017419682074 ], [ -82.036208776851055, 28.543915968773273 ], [ -82.036280181539126, 28.543802153021456 ], [ -82.036350577708561, 28.543697979101136 ], [ -82.03641747192826, 28.543615225136843 ], [ -82.036501618778516, 28.543518120148406 ], [ -82.036578023353997, 28.543417213740646 ], [ -82.036618151927271, 28.543343334109483 ], [ -82.03664824142281, 28.543263545820615 ], [ -82.03672514035955, 28.54308328474794 ], [ -82.036812058515679, 28.542843924275694 ], [ -82.036838793869123, 28.542743454066223 ], [ -82.036895631676927, 28.542610474117438 ], [ -82.036972543102692, 28.542462715528153 ], [ -82.037116365716642, 28.542279479382959 ], [ -82.037240123511268, 28.542134662402226 ], [ -82.037414050453961, 28.541921871310162 ], [ -82.037594664799883, 28.541703168688308 ], [ -82.03772845065987, 28.541531754475262 ], [ -82.037858901043478, 28.541389889390643 ], [ -82.037949208491142, 28.541286446394682 ], [ -82.038165883152999, 28.541072927058572 ], [ -82.038281123502173, 28.540997661885118 ], [ -82.038393313525873, 28.540936789941163 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 772", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005386130030686, 28.569240050540326 ], [ -82.005299760189715, 28.569256853293112 ], [ -82.005163154467738, 28.569278015032356 ], [ -82.005007376333694, 28.569297061222411 ], [ -82.004650282946983, 28.569343616557372 ], [ -82.004317156882919, 28.569377477935969 ], [ -82.004091876992916, 28.569421915061174 ], [ -82.003967255963474, 28.569457885518631 ], [ -82.003849823794965, 28.569500202806157 ], [ -82.003749167585653, 28.569561560945065 ], [ -82.003638926337757, 28.569644075618786 ], [ -82.003533478239063, 28.569741401219037 ], [ -82.003421144777008, 28.569870224166817 ], [ -82.003306848471624, 28.569997430050332 ], [ -82.003224327932301, 28.570109543538699 ], [ -82.00312127571064, 28.5702343731854 ], [ -82.003001447138004, 28.570338045708233 ], [ -82.002898394974594, 28.570407866351616 ], [ -82.002823002394024, 28.570451812638858 ], [ -82.002738492806941, 28.570480826084669 ], [ -82.002589231561316, 28.570492499039961 ], [ -82.001649753469337, 28.570539054545961 ], [ -82.000602425376869, 28.570594064704629 ], [ -81.999799552684067, 28.570632145978774 ], [ -81.997788760756137, 28.570740024442415 ], [ -81.996511341112594, 28.570801348691788 ], [ -81.995533504753496, 28.570847863632565 ], [ -81.994603601199543, 28.570885910486311 ], [ -81.993048163806506, 28.570985273463396 ], [ -81.99236271946036, 28.571010622913782 ], [ -81.991634130696042, 28.571057125232738 ], [ -81.989768357063198, 28.571145649848287 ], [ -81.98874012439471, 28.571197374365127 ], [ -81.986967719331048, 28.571288393249027 ], [ -81.986627322986706, 28.571304939694645 ], [ -81.986435743699033, 28.571312690193341 ], [ -81.986258387648149, 28.571329598013648 ], [ -81.986104998812976, 28.571342277933134 ], [ -81.985951609840683, 28.571363418077489 ], [ -81.98581259933249, 28.571386675598685 ], [ -81.985690639535548, 28.571402242327427 ], [ -81.985522596008721, 28.571435305803352 ], [ -81.985359617836664, 28.571471255336544 ], [ -81.985103164760005, 28.571541046577579 ], [ -81.983967100931125, 28.571826535963051 ], [ -81.983300799442418, 28.571980901835456 ], [ -81.982586558048794, 28.572160645653533 ], [ -81.982406799708968, 28.572215629839235 ], [ -81.982198274657065, 28.572291769042216 ], [ -81.982073633827397, 28.572363688187799 ], [ -81.981960224095431, 28.572431980412528 ], [ -81.981853889217106, 28.572515164025422 ], [ -81.981752434244825, 28.572609068999398 ], [ -81.981649583419866, 28.572740665601717 ], [ -81.981577431060344, 28.572862930716472 ], [ -81.98151030137106, 28.572991981230611 ], [ -81.981476732067904, 28.573078720879757 ], [ -81.981457544545179, 28.573161231428934 ], [ -81.981445545270375, 28.573247974079941 ], [ -81.981440738158241, 28.573328370632826 ], [ -81.981438321848742, 28.573438389733234 ], [ -81.981431106563946, 28.573582257865116 ], [ -81.981433245006684, 28.575056916909737 ], [ -81.981428339547477, 28.575691635236481 ], [ -81.98141392867683, 28.575865121809688 ], [ -81.981389937880806, 28.575996294242277 ], [ -81.981339580276412, 28.576138041162899 ], [ -81.981272453085353, 28.576239585298303 ], [ -81.981202933557171, 28.576313626468679 ], [ -81.981126223031978, 28.57638555058055 ], [ -81.98103992898811, 28.576446894180936 ], [ -81.980934459868052, 28.576504002974456 ], [ -81.980800229951384, 28.576558993336658 ], [ -81.980701958824909, 28.576578018591317 ], [ -81.980582117139406, 28.576584349134027 ], [ -81.980366406503506, 28.576592780541965 ], [ -81.980265737936662, 28.576607575832842 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 734", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002067577279405, 28.619387737757386 ], [ -82.002061340119809, 28.619273058558186 ], [ -82.002040875066342, 28.619148927473564 ], [ -82.002010181201967, 28.619046238770551 ], [ -82.001989716646207, 28.618997714721729 ], [ -82.001978207561791, 28.618969504970249 ], [ -82.001964138951848, 28.618945806035104 ], [ -82.001818081419358, 28.618770046707535 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 734", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003580945756511, 28.61750116862023 ], [ -82.003377573938224, 28.617622039191016 ], [ -82.003257996355785, 28.617683386043144 ], [ -82.003066113153196, 28.61781589883077 ], [ -82.002295805307554, 28.618395026433582 ], [ -82.001818081419358, 28.618770046707535 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 734", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001818081419358, 28.618770046707535 ], [ -82.001772106150298, 28.618804770866237 ], [ -82.001658970874956, 28.618868632878442 ], [ -82.001594472665602, 28.618892959424215 ], [ -82.00151944447569, 28.618914024033199 ], [ -82.001464877649553, 28.618921547097056 ], [ -82.001396672089953, 28.618924556690885 ], [ -82.001349779930621, 28.618926313726377 ], [ -82.00128839417286, 28.618926313035139 ], [ -82.001156527507973, 28.618928319295915 ], [ -82.000847322379769, 28.618930324634832 ], [ -81.999848555192685, 28.618956972092477 ], [ -81.998900651527492, 28.618995619793452 ], [ -81.997401274955223, 28.619057304827983 ], [ -81.997325633122571, 28.619065155329501 ], [ -81.997247763129224, 28.619067116166477 ], [ -81.997178793916859, 28.619074966737983 ], [ -81.997153689161351, 28.619085867317505 ], [ -81.997131946695106, 28.619100536142714 ], [ -81.997121715873348, 28.619117462891978 ], [ -81.997115320737478, 28.619141160889178 ], [ -81.997112046592704, 28.619204532131963 ], [ -81.99711204481649, 28.619269312906646 ], [ -81.997106362427147, 28.619367980011532 ], [ -81.997099967303754, 28.619390550082478 ], [ -81.997087177829002, 28.619407475865032 ], [ -81.997066715462935, 28.619427788844785 ], [ -81.997039859763461, 28.619442456628846 ], [ -81.997020674039192, 28.619448098491223 ], [ -81.996906853249484, 28.619448096562074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998636076915147, 28.616151926681507 ], [ -81.998070984688979, 28.616613247896638 ], [ -81.997574856366356, 28.617025491686267 ], [ -81.997465842309552, 28.617113829409575 ], [ -81.997394647881251, 28.617174684399199 ], [ -81.99729898056377, 28.617264984865589 ], [ -81.997209987398293, 28.617365101072142 ], [ -81.997147690720624, 28.617451477016996 ], [ -81.997088912710097, 28.61753923269449 ], [ -81.997029773254823, 28.617639932403339 ], [ -81.996994174256898, 28.61770471322173 ], [ -81.996964177121058, 28.617768583708777 ], [ -81.996929651522436, 28.617877464595075 ], [ -81.996907399836431, 28.617967766603371 ], [ -81.996887374001147, 28.618069848710942 ], [ -81.996871798035698, 28.618189597840527 ], [ -81.99687179535465, 28.618279901308359 ], [ -81.996871791741071, 28.618401613420723 ], [ -81.996876235773399, 28.61854884742451 ], [ -81.996880682095835, 28.61868822836156 ], [ -81.996885126826939, 28.618847240600171 ], [ -81.996891797442601, 28.6189846571936 ], [ -81.996900687652612, 28.619314458990438 ], [ -81.996906853249484, 28.619448096562074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 746 South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015423908052796, 28.60015076200764 ], [ -82.015397664087544, 28.600129332392314 ], [ -82.015373368655361, 28.600120308867073 ], [ -82.01533884509854, 28.600113541384133 ], [ -82.015178237285184, 28.60011076479946 ], [ -82.01508753897933, 28.600110774353485 ], [ -82.014817154514859, 28.6001102096366 ], [ -82.014543347491895, 28.600106256431097 ], [ -82.014333444333502, 28.600106276564809 ], [ -82.014082079327579, 28.600106301328594 ], [ -82.013851444346713, 28.600099463131954 ], [ -82.013594897648318, 28.600099487489562 ], [ -82.013408317011752, 28.600097218364187 ], [ -82.013239877023054, 28.600099520396249 ], [ -82.013004060965258, 28.600097255204943 ], [ -82.012742330518378, 28.600097278414403 ], [ -82.012457276250146, 28.600097303117522 ], [ -82.012270696398332, 28.600092744989322 ], [ -82.012099665275997, 28.600092760190545 ], [ -82.011964912760348, 28.600097344375126 ], [ -82.011824978013479, 28.600097355774757 ], [ -82.011672085424308, 28.600092794091925 ], [ -82.011542515370905, 28.600095090005382 ], [ -82.01132121234042, 28.600107229344076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 746A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015435405758609, 28.606248314253339 ], [ -82.015444035935758, 28.605830385744984 ], [ -82.015443984977864, 28.605481473739474 ], [ -82.015448239351997, 28.604864165150712 ], [ -82.015448553459464, 28.604557605365439 ], [ -82.015448476200959, 28.604028735674557 ], [ -82.015448393224062, 28.603467704675683 ], [ -82.015449240354755, 28.603072351622441 ], [ -82.015451731393114, 28.60262660979075 ], [ -82.015452939229249, 28.602145885170852 ], [ -82.015457985041863, 28.601656132171055 ], [ -82.015457919400163, 28.601207005836191 ], [ -82.015459129339334, 28.600740951394684 ], [ -82.015459088435165, 28.600461092670045 ], [ -82.015461613027668, 28.600245557125454 ], [ -82.015457170806826, 28.600212436229143 ], [ -82.015444641435622, 28.600174543715017 ], [ -82.015423908052796, 28.60015076200764 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 754", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046534050298732, 28.599163078855742 ], [ -82.045645675512887, 28.599144158928642 ], [ -82.045340840731015, 28.599136574028609 ], [ -82.04480955624679, 28.599125215351254 ], [ -82.044513418684659, 28.599086879358836 ], [ -82.044352283808578, 28.599063870882411 ], [ -82.043985986038024, 28.599070658003605 ], [ -82.043866775106807, 28.599060555346423 ], [ -82.043836612397754, 28.599050425289661 ], [ -82.043806624144665, 28.59903443175028 ], [ -82.043774298171741, 28.599004972386787 ], [ -82.043757055038043, 28.598987865822888 ], [ -82.043748472823452, 28.598973103509852 ], [ -82.04373657585505, 28.598950797759972 ], [ -82.043731181618654, 28.598933686542683 ], [ -82.043724710614626, 28.598913726068364 ], [ -82.043716082219575, 28.598886160431686 ], [ -82.043702069663112, 28.598863350035465 ], [ -82.043670813552581, 28.598814876149699 ], [ -82.043648186539315, 28.598800624477981 ], [ -82.04361694631416, 28.59879302939175 ], [ -82.043587860100885, 28.598787333952583 ], [ -82.043415899179777, 28.598783609928244 ], [ -82.042959958441571, 28.598788346095404 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 723", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042399558050178, 28.600012706013835 ], [ -82.042399731341021, 28.598782580580988 ], [ -82.042399478626251, 28.598152411769373 ], [ -82.042391080990527, 28.597329988675369 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 721", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034142876270138, 28.578015219977882 ], [ -82.034142591168518, 28.577128368970026 ], [ -82.034152895689246, 28.576233811923878 ], [ -82.03415670527859, 28.574763645594491 ], [ -82.034152031723863, 28.573556384892008 ], [ -82.034155366202071, 28.572948587388144 ], [ -82.034160170324597, 28.571972762251551 ], [ -82.034161124583278, 28.570422556689774 ], [ -82.034161426541019, 28.569603502335198 ], [ -82.034161029186805, 28.568619190523879 ], [ -82.034153775266475, 28.568014510077372 ], [ -82.034167418132995, 28.56653397158809 ], [ -82.034167171715623, 28.565767210604019 ], [ -82.034170165923669, 28.564105894425875 ], [ -82.034155690828769, 28.563011858051969 ], [ -82.034148498655398, 28.562600426484703 ], [ -82.034169402527624, 28.561740150510008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 721", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034474590027543, 28.588024509366541 ], [ -82.0344127101678, 28.587987187509224 ], [ -82.034346033776075, 28.587934568470185 ], [ -82.034272980143058, 28.58786906188973 ], [ -82.034210387343393, 28.587798439113818 ], [ -82.034178361410511, 28.587754780761841 ], [ -82.034159434889105, 28.587718823397761 ], [ -82.034139048485343, 28.587676445309949 ], [ -82.034125936869685, 28.58762764255022 ], [ -82.034120105226975, 28.587591682868897 ], [ -82.034115436457995, 28.587516056765487 ], [ -82.034106529084923, 28.587383056161077 ], [ -82.03412349463477, 28.585016382992304 ], [ -82.034127741003616, 28.584445250347464 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 721", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036059601529743, 28.588105399315253 ], [ -82.034702314891305, 28.588102706684616 ], [ -82.034655747720777, 28.588095012283077 ], [ -82.034606269773576, 28.588083466484161 ], [ -82.034558811525827, 28.588067518531897 ], [ -82.034474590027543, 28.588024509366541 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 721", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042305009277143, 28.588106131033626 ], [ -82.040268114073314, 28.58811276234011 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 721", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040268114073314, 28.58811276234011 ], [ -82.039457339894184, 28.588111575257212 ], [ -82.038262989601378, 28.588111910868779 ], [ -82.0375553942945, 28.588111115238839 ], [ -82.036059601529743, 28.588105399315253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 38th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040268114073314, 28.58811276234011 ], [ -82.040270708318616, 28.587448445201211 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 774A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058814302151092, 28.578996374603442 ], [ -82.05880305639532, 28.577879565025675 ], [ -82.058806293549068, 28.577325537268493 ], [ -82.058799125906759, 28.577187817190882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 774", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06333180525283, 28.577246761497637 ], [ -82.063108301018815, 28.577246863345966 ], [ -82.062905879461937, 28.577235788663092 ], [ -82.062703453858006, 28.577224713680071 ], [ -82.062555852890213, 28.577217335643923 ], [ -82.062395605254437, 28.577213686261068 ], [ -82.062188968506604, 28.57721005586593 ], [ -82.062011853467695, 28.577210135828793 ], [ -82.061817863318524, 28.577199056623687 ], [ -82.061712436201461, 28.577199103960812 ], [ -82.061510018183739, 28.577195472443744 ], [ -82.061227474921353, 28.577191877209707 ], [ -82.060082736199249, 28.57718413259683 ], [ -82.058799125906759, 28.577187817190882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 90th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137449292457646, 28.624865292104182 ], [ -82.137897486395971, 28.624883796921473 ], [ -82.138862088338882, 28.624882819145011 ], [ -82.139857651152028, 28.624899170955636 ], [ -82.140386365867144, 28.624906072918471 ], [ -82.141350974552054, 28.624910038475843 ], [ -82.142388709086674, 28.624918885494733 ], [ -82.142602450759952, 28.624926104625363 ], [ -82.142745936008055, 28.624970619316652 ], [ -82.142861289798518, 28.625007717239519 ], [ -82.142973839352194, 28.625052264997393 ], [ -82.143080789865451, 28.625114185830661 ], [ -82.14321307325136, 28.625193450878356 ], [ -82.143308782362112, 28.625260347095399 ], [ -82.143429829105628, 28.625349547647836 ], [ -82.143556513974929, 28.625446186440684 ], [ -82.143708535369939, 28.625562650743646 ], [ -82.143953514551967, 28.625790673829528 ], [ -82.144282954724147, 28.626085607484839 ], [ -82.144527966931904, 28.62633596323078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 654A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134769207342103, 28.617508443860864 ], [ -82.138358263182482, 28.617533503909769 ], [ -82.138518194446547, 28.617571826350044 ], [ -82.138533973204929, 28.617571810326329 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134769207342103, 28.617508443860864 ], [ -82.135225413503903, 28.616652380225837 ], [ -82.135445731719273, 28.616129304032725 ], [ -82.135702506248023, 28.615631903342607 ], [ -82.135822124795084, 28.615407313012103 ], [ -82.136012262971832, 28.615019827884588 ], [ -82.136398424284778, 28.614228332665395 ], [ -82.136829937962204, 28.613287823575696 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 738A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136285084679557, 28.611698328465593 ], [ -82.136396822594236, 28.611736420062524 ], [ -82.136697808235738, 28.611850855826688 ], [ -82.136843194569551, 28.611902454747295 ], [ -82.136937559599303, 28.611929358969665 ], [ -82.137003871075009, 28.611948414777689 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 738A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135621420627984, 28.61145597164117 ], [ -82.136182563273067, 28.611655642789579 ], [ -82.136285084679557, 28.611698328465593 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 738B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135973797819972, 28.612469794703987 ], [ -82.136035392759339, 28.612319173438951 ], [ -82.136100205810322, 28.612153716274836 ], [ -82.136195577144491, 28.611862606659734 ], [ -82.136245072870622, 28.61175181219852 ], [ -82.136285084679557, 28.611698328465593 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 738", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137058943767329, 28.611950158728558 ], [ -82.137098103348919, 28.611872954008376 ], [ -82.137309192809369, 28.611474531128195 ], [ -82.137560923476215, 28.61096133262965 ], [ -82.137581263367736, 28.610918565580619 ], [ -82.137599035455153, 28.610862303920463 ], [ -82.137596211897915, 28.610816513929201 ], [ -82.137588408055933, 28.610781312502919 ], [ -82.137572829931429, 28.610734383987118 ], [ -82.137460908446712, 28.610511479916386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 738E", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120866225668067, 28.602596532444384 ], [ -82.120971095134394, 28.6025964386921 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 738E", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117878145474478, 28.602606901400989 ], [ -82.11799400025879, 28.60260680137279 ], [ -82.118199115677655, 28.602606624034863 ], [ -82.118392504859145, 28.602601285233892 ], [ -82.118565387260432, 28.602601136178734 ], [ -82.118726549217357, 28.602600996189036 ], [ -82.118931661707393, 28.602598229831319 ], [ -82.119227612463291, 28.602595385704273 ], [ -82.119403423170596, 28.602595233024598 ], [ -82.119555796059956, 28.602595098830349 ], [ -82.119927937051997, 28.602597359583225 ], [ -82.120144769939259, 28.602594582903485 ], [ -82.120352815683049, 28.602594398828032 ], [ -82.120584303330247, 28.602594195542771 ], [ -82.120804072466129, 28.602596586533348 ], [ -82.120866225668067, 28.602596532444384 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 738E", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115790064755345, 28.603123560423271 ], [ -82.115972484200427, 28.603023389293558 ], [ -82.116111682746748, 28.602952970558277 ], [ -82.116430954700292, 28.602808847593682 ], [ -82.116807858658248, 28.602613718500333 ], [ -82.116932935153287, 28.602603575654548 ], [ -82.117060868241353, 28.602603466084009 ], [ -82.117243862445747, 28.602604861172434 ], [ -82.117410881254429, 28.602602132511812 ], [ -82.117618930934256, 28.602604538736763 ], [ -82.117829906899871, 28.60260694302065 ], [ -82.117878145474478, 28.602606901400989 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 311", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120762515303298, 28.708302295278667 ], [ -82.120766161103006, 28.708129415210532 ], [ -82.120760145528024, 28.706237275638784 ], [ -82.120759190220809, 28.705404760388415 ], [ -82.120748584415864, 28.704203451561501 ], [ -82.120738388515747, 28.703360097365067 ], [ -82.120749462345188, 28.70228893336941 ], [ -82.120770595332374, 28.700348258051346 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 311", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120770595332374, 28.700348258051346 ], [ -82.120797975671465, 28.697787927882469 ], [ -82.120806891802502, 28.695033435559992 ], [ -82.120806051776256, 28.694302219686151 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 422", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139033672818613, 28.799502088750337 ], [ -82.139522860032471, 28.799486499517283 ], [ -82.139944875463428, 28.799488304798082 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 422", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139944875463428, 28.799488304798082 ], [ -82.139945999208791, 28.799488310858479 ], [ -82.140849555742477, 28.799468455237982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 429B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139922465815843, 28.797011253013835 ], [ -82.139932939675063, 28.797947881019009 ], [ -82.139933113953177, 28.798693633255606 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 429B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139933113953177, 28.798693633255606 ], [ -82.139944875463428, 28.799488304798082 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 431A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135633140005567, 28.804214938417818 ], [ -82.135767430565537, 28.804410575445925 ], [ -82.135786707282122, 28.804464690184489 ], [ -82.135791888469953, 28.804512050798046 ], [ -82.135789988456082, 28.804555929264421 ], [ -82.135789463719476, 28.804603372279324 ], [ -82.135778985387802, 28.80464979300562 ], [ -82.135753243991104, 28.804815176736568 ], [ -82.135748581753958, 28.804830995259444 ], [ -82.135755231716928, 28.804879747568133 ], [ -82.135764246798288, 28.804920337934181 ], [ -82.135783508030286, 28.804963176532816 ], [ -82.135811725721155, 28.805000364937133 ], [ -82.135847633315777, 28.805044312054967 ], [ -82.135880973184882, 28.805081496222066 ], [ -82.136139093231151, 28.805284231860252 ], [ -82.136163963170986, 28.805295994683451 ], [ -82.13666702277223, 28.805477355904717 ], [ -82.136729897114066, 28.80549694488754 ], [ -82.136804715917449, 28.805507530302322 ], [ -82.137309280069857, 28.805566136645968 ], [ -82.13740789060175, 28.805578442728844 ], [ -82.137466317126467, 28.805579271460573 ], [ -82.137516721308529, 28.805573821908723 ], [ -82.13756407798293, 28.805559112326346 ], [ -82.137596063305892, 28.805539908567336 ], [ -82.137620354154151, 28.805510559824203 ], [ -82.137638210289609, 28.805457534707369 ], [ -82.137647712164622, 28.80540058850363 ], [ -82.137653068195007, 28.804819109253959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 431A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135564742260186, 28.804115295279303 ], [ -82.135633140005567, 28.804214938417818 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 526", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032778284442031, 28.74125767976323 ], [ -82.031483883626862, 28.741255266455777 ], [ -82.029954947611003, 28.741272478108943 ], [ -82.029607581868817, 28.741253266972922 ], [ -82.029419629988496, 28.74124455602843 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eureka Mill Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982767553728806, 28.878876733510403 ], [ -81.982921496012608, 28.878993667246899 ], [ -81.983247781550347, 28.879243841993503 ], [ -81.983416531728892, 28.879389638944509 ], [ -81.983516138825493, 28.879487964281889 ], [ -81.98368818454891, 28.879679297759427 ], [ -81.983898773477733, 28.879899968595499 ], [ -81.983998088862563, 28.879988256329931 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clearwater Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010004759524861, 28.908741942592439 ], [ -82.009992287451269, 28.908534207435846 ], [ -82.009978754793792, 28.908434718313337 ], [ -82.009972254087018, 28.908340464732241 ], [ -82.009958273468271, 28.908242194640422 ], [ -82.009946544054628, 28.90814765719551 ], [ -82.009926416377468, 28.908076153289951 ], [ -82.009894367029219, 28.907948614798027 ], [ -82.00987158720109, 28.907883482191139 ], [ -82.009839121346729, 28.907820649301126 ], [ -82.009796920569684, 28.907774951707186 ], [ -82.009760806581667, 28.907749606819802 ], [ -82.009707245384888, 28.907730331059859 ], [ -82.009566450605377, 28.907712132154892 ], [ -82.009456086221121, 28.907700715478974 ], [ -82.009352214664759, 28.907686440712197 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kuhl Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962741910003444, 28.881794107072977 ], [ -81.962820587414299, 28.881797679448351 ], [ -81.963243943939645, 28.881803395750971 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Margaux Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972162854040775, 28.870867644371089 ], [ -81.972297708383181, 28.870953803433036 ], [ -81.972466934553111, 28.87106790562262 ], [ -81.972678471214707, 28.871216936251603 ], [ -81.972792269241438, 28.87131083228012 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Margaux Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972792269241438, 28.87131083228012 ], [ -81.973097845447811, 28.871583184591561 ], [ -81.973277146596516, 28.871730544853207 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nash Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97335653855805, 28.87086434540662 ], [ -81.973250349443902, 28.870961033983495 ], [ -81.973150335803183, 28.871043596356095 ], [ -81.973040447533165, 28.871121811176959 ], [ -81.972922987019871, 28.871203240185206 ], [ -81.972792269241438, 28.87131083228012 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nash Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972792269241438, 28.87131083228012 ], [ -81.972729296665705, 28.871368410767186 ], [ -81.972634218154511, 28.87145423467765 ], [ -81.972526793708127, 28.871546574225729 ], [ -81.972440358083361, 28.871633486140613 ], [ -81.972419362549473, 28.871667166590729 ], [ -81.972408243534019, 28.871697589952916 ], [ -81.972407002806733, 28.871725841700311 ], [ -81.972408228876688, 28.871756267602745 ], [ -81.972414391911002, 28.871789953638718 ], [ -81.97242426003389, 28.871818207671442 ], [ -81.972442768628355, 28.871854069892237 ], [ -81.972488429760219, 28.871905150510379 ], [ -81.972551375659236, 28.871957321025711 ], [ -81.972616786539589, 28.87201492477973 ], [ -81.972725838884472, 28.872106206815523 ], [ -81.972867763275715, 28.872231349818456 ], [ -81.973028764022658, 28.872371781517892 ], [ -81.973223502877957, 28.872536520583129 ], [ -81.973381441282115, 28.872670201117554 ], [ -81.973524358295975, 28.872800085217506 ], [ -81.973645182997501, 28.872897054234294 ], [ -81.973697322052857, 28.872926764671657 ], [ -81.973755594284825, 28.872960525824233 ], [ -81.973843008005446, 28.872998343079388 ], [ -81.973958659206403, 28.873035816577111 ], [ -81.974068448439922, 28.873059136224526 ], [ -81.974193574420539, 28.873073421274054 ], [ -81.974317025902067, 28.87307344499353 ], [ -81.974489851827158, 28.873079273499449 ], [ -81.974660461862001, 28.873079499870023 ], [ -81.974772422735015, 28.873084920377654 ], [ -81.974882845429818, 28.873105191502823 ], [ -81.975000095139876, 28.873143117362432 ], [ -81.975120239073931, 28.873201094626111 ], [ -81.975335240944119, 28.873326676257768 ], [ -81.97557907097341, 28.873457670302908 ], [ -81.975831221131955, 28.873576469885062 ], [ -81.975990064039237, 28.873654844483578 ], [ -81.976117596352282, 28.873706913901984 ], [ -81.976186722970084, 28.873730108168381 ], [ -81.976250915009444, 28.873734465958631 ], [ -81.976328279564555, 28.873725785970944 ], [ -81.976380956747917, 28.873698267825805 ], [ -81.976423762097212, 28.87366205423719 ], [ -81.97645998844726, 28.873598313836418 ], [ -81.976492925796649, 28.873522980064472 ], [ -81.976539033530088, 28.873438957613143 ], [ -81.976588432421167, 28.873352035719833 ], [ -81.976634537372746, 28.873279602407838 ], [ -81.976700397801224, 28.873189787853534 ], [ -81.976749791205847, 28.873126046953693 ], [ -81.976804125800527, 28.873056514108182 ], [ -81.9768568110389, 28.872995671031781 ], [ -81.976912787799833, 28.872934830306367 ], [ -81.976991816472292, 28.872843568776553 ], [ -81.977070844950319, 28.872747959904679 ], [ -81.977148228069055, 28.872656697096328 ], [ -81.977217378275867, 28.872571228331871 ], [ -81.977276650969515, 28.872488656051051 ], [ -81.977322756341877, 28.872410427003491 ], [ -81.977337582695938, 28.872352476413891 ], [ -81.977330210978977, 28.872288643563007 ], [ -81.977303777005616, 28.872228113518364 ], [ -81.977266759004564, 28.872190861082625 ], [ -81.977214176387434, 28.872156865106192 ], [ -81.977122009811552, 28.872119180053847 ], [ -81.976995280628387, 28.872071347121583 ], [ -81.976841832370269, 28.871997449142786 ], [ -81.976838511474924, 28.871995728779329 ], [ -81.976680931262223, 28.871922063598372 ], [ -81.976552561544963, 28.871855395294524 ], [ -81.97639950408734, 28.871774234243397 ], [ -81.976263483991573, 28.871696541783439 ], [ -81.976154924566274, 28.871629829688828 ], [ -81.97603992083765, 28.871557615915506 ], [ -81.975937052436876, 28.871488733721566 ], [ -81.975859704105872, 28.871439461286627 ], [ -81.975818263414141, 28.871412039144086 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116890390533925, 28.654026688097925 ], [ -82.117382713878698, 28.65300865158941 ], [ -82.117550193788134, 28.652701016202126 ], [ -82.118184053047415, 28.651410746582691 ], [ -82.118708939266369, 28.650327488426569 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115551252487791, 28.656665682436707 ], [ -82.115883921231415, 28.656010942899037 ], [ -82.11625904927682, 28.655269821065399 ], [ -82.116550672484195, 28.654708966515578 ], [ -82.116890390533925, 28.654026688097925 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Cherokee Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115551252487791, 28.656665682436707 ], [ -82.115698935045231, 28.656715632338319 ], [ -82.115949262161863, 28.656719260215823 ], [ -82.116708944859809, 28.65672437222846 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115054149941699, 28.657613476356026 ], [ -82.115551252487791, 28.656665682436707 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Seminole Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112667628470632, 28.657546056138688 ], [ -82.114611526968076, 28.657595911287984 ], [ -82.114814385649836, 28.657600891302142 ], [ -82.115054149941699, 28.657613476356026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Seminole Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115054149941699, 28.657613476356026 ], [ -82.115340084637651, 28.657608877628594 ], [ -82.116044193918128, 28.657612496421194 ], [ -82.116712112031891, 28.657619092241397 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114214946505498, 28.659287380564979 ], [ -82.114300512045176, 28.659113787457819 ], [ -82.114640187565371, 28.658366028239222 ], [ -82.114937140266534, 28.657762903985876 ], [ -82.115054149941699, 28.657613476356026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Parkhill Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114214946505498, 28.659287380564979 ], [ -82.114412596319326, 28.659322645143721 ], [ -82.114994888065695, 28.659324555944156 ], [ -82.115277868512962, 28.65932431629728 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113311605807269, 28.661248030872521 ], [ -82.113444934592266, 28.660925348542055 ], [ -82.113593366326583, 28.660575958862658 ], [ -82.113802233978944, 28.660137534098276 ], [ -82.114214946505498, 28.659287380564979 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113311605807269, 28.661248030872521 ], [ -82.114891426149214, 28.661263367107971 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113311605807269, 28.661248030872521 ], [ -82.113146148727765, 28.661263553827091 ], [ -82.113037318914124, 28.661262515185843 ], [ -82.112897700102678, 28.661263435629245 ], [ -82.11275008137919, 28.661263558558524 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113311605807269, 28.661248030872521 ], [ -82.113210999826975, 28.661510620292194 ], [ -82.113125529446705, 28.661775420432544 ], [ -82.113050121569216, 28.662015742699914 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Bostick Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113050121569216, 28.662015742699914 ], [ -82.113951870274249, 28.662032156044621 ], [ -82.114890100689109, 28.662044808746071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113050121569216, 28.662015742699914 ], [ -82.112972230043368, 28.662293886468127 ], [ -82.112909496784184, 28.662594262862825 ], [ -82.11288694559299, 28.662734432817402 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Flannery Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11288694559299, 28.662734432817402 ], [ -82.113326781233752, 28.662750687477285 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11288694559299, 28.662734432817402 ], [ -82.112849337695692, 28.662945804793754 ], [ -82.112819302898401, 28.663161617191221 ], [ -82.11278179195503, 28.663461971735497 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Anderson Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11278179195503, 28.663461971735497 ], [ -82.113326567088123, 28.663449893897027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112746269717391, 28.663794946661664 ], [ -82.11272435461413, 28.664000379985314 ], [ -82.112704361411943, 28.664173917848849 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11278179195503, 28.663461971735497 ], [ -82.112746269717391, 28.663794946661664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bushnell Plz", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112746269717391, 28.663794946661664 ], [ -82.11250451881331, 28.663791600890402 ], [ -82.112313151663074, 28.663790595395266 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112704361411943, 28.664173917848849 ], [ -82.112644058953634, 28.664905938347221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112644058953634, 28.664905938347221 ], [ -82.113331661154305, 28.664901432199393 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112644058953634, 28.664905938347221 ], [ -82.112452679642871, 28.664901184771843 ], [ -82.112238957985397, 28.664899611076212 ], [ -82.112179483273763, 28.664899660875999 ], [ -82.112142987459734, 28.664896705048577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112644058953634, 28.664905938347221 ], [ -82.112587800631772, 28.665072552720677 ], [ -82.112541451060665, 28.665511815017101 ], [ -82.112474295462363, 28.66617696636126 ], [ -82.112412452820635, 28.666725943312127 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Dade Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112412452820635, 28.666725943312127 ], [ -82.112542752546972, 28.666727015272336 ], [ -82.113318821113253, 28.666730046462135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112412452820635, 28.666725943312127 ], [ -82.112324317217968, 28.667453467439604 ], [ -82.112301821115892, 28.667647028172706 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Vermont Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112301821115892, 28.667647028172706 ], [ -82.112811973089677, 28.667624476807855 ], [ -82.113314955020087, 28.66761619264626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112301821115892, 28.667647028172706 ], [ -82.11227008073736, 28.668040813264131 ], [ -82.112247633410632, 28.668279421979239 ], [ -82.112230783963227, 28.668444615918755 ], [ -82.112223345041713, 28.66856475045941 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Belt Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112223345041713, 28.66856475045941 ], [ -82.111874817942564, 28.668551006243479 ], [ -82.111810399606838, 28.668551059937013 ], [ -82.11169838929365, 28.668550650862656 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Belt Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112223345041713, 28.66856475045941 ], [ -82.112385769948133, 28.668577965903417 ], [ -82.112980463664513, 28.668575107136576 ], [ -82.113320624809177, 28.66858382404823 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Palm Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112181411929186, 28.670310003961681 ], [ -82.113315675783483, 28.670308829492146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jumper Drive South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111656520715243, 28.674855340487554 ], [ -82.113587551164429, 28.674859259031521 ], [ -82.113798845130191, 28.674868889505571 ], [ -82.113908202055342, 28.674876970669033 ], [ -82.114000889041719, 28.674894874018023 ], [ -82.114108407971884, 28.674917665462509 ], [ -82.114195542260944, 28.674942109811795 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jumper Drive North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111199273379725, 28.678996848110959 ], [ -82.111382081580473, 28.678997014829516 ], [ -82.111514888764802, 28.678996907260242 ], [ -82.113311080461145, 28.679005026404042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Walker Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110740108923636, 28.683150031233463 ], [ -82.111477916419418, 28.683147974964687 ], [ -82.113528925768847, 28.683163563293878 ], [ -82.115188007726445, 28.683164094412902 ], [ -82.116709931834251, 28.683172400562551 ], [ -82.118462652273109, 28.683186248893982 ], [ -82.120810875366701, 28.683214908602881 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110545914839165, 28.684819823020284 ], [ -82.110559161118388, 28.684706947908886 ], [ -82.110572435299744, 28.684534900654594 ], [ -82.110615809989596, 28.68419968946699 ], [ -82.11067573237321, 28.6836064091456 ], [ -82.110740108923636, 28.683150031233463 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 476B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.205669187974905, 28.601935572780615 ], [ -82.205186264312388, 28.602000475656702 ], [ -82.204378050341404, 28.602123174772956 ], [ -82.203364771872074, 28.602286633648319 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 125th Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019684175382409, 28.938746747501593 ], [ -82.018057058455398, 28.938752050173285 ], [ -82.017801869194642, 28.938796962368659 ], [ -82.017622216509366, 28.938874538360565 ], [ -82.017397650783167, 28.93895415622913 ], [ -82.017197866559442, 28.938982301117509 ], [ -82.016349918283026, 28.938978623822074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016359009849069, 28.93978592920552 ], [ -82.016360616190539, 28.93992682846946 ], [ -82.016341148071675, 28.941011595029547 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lockwood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010545293977216, 28.914317363726457 ], [ -82.010547634226199, 28.914275765853908 ], [ -82.010550549329906, 28.914113502847954 ], [ -82.01056204724955, 28.913818885748796 ], [ -82.010574882017352, 28.913678784217296 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lamar Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010574882017352, 28.913678784217296 ], [ -82.011540593596678, 28.913859375947339 ], [ -82.011641596195176, 28.913874494690628 ], [ -82.011733997846122, 28.913869329530428 ], [ -82.011860977245902, 28.913846631583557 ], [ -82.011930913429808, 28.913832872888189 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arbella Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955292756273295, 28.881475453853291 ], [ -81.955292862754987, 28.881230682987116 ], [ -81.955290216897552, 28.881023385578221 ], [ -81.955287825208359, 28.880683044800996 ], [ -81.955285232837625, 28.880354048576585 ], [ -81.955282790821641, 28.880128186354437 ], [ -81.955280163207817, 28.879883415431298 ], [ -81.955280251649683, 28.879678180650338 ], [ -81.95528306205739, 28.879498730038165 ], [ -81.955280375212311, 28.879389063404091 ], [ -81.955275226205245, 28.879335876421969 ], [ -81.955256401714109, 28.879296670559672 ], [ -81.955227299004278, 28.879257459464085 ], [ -81.95518277626941, 28.879219752768211 ], [ -81.955139960086967, 28.87919712408814 ], [ -81.955088576591635, 28.879186552693895 ], [ -81.955002928715288, 28.879181999887383 ], [ -81.954918993598213, 28.879180465800363 ], [ -81.954821357834248, 28.879172893362259 ], [ -81.95475798472502, 28.879156287726666 ], [ -81.954679179000181, 28.879134810742098 ], [ -81.954592090818295, 28.879104528958951 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arbella Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955292756273295, 28.881475453853291 ], [ -81.955507277231291, 28.881475378920854 ], [ -81.955824184871076, 28.881475483538097 ], [ -81.955956087947996, 28.881477035510059 ], [ -81.956096556907923, 28.881472557366695 ], [ -81.956231888291569, 28.88146657055934 ], [ -81.956386065386468, 28.881456066501247 ], [ -81.956529962583176, 28.88144405209615 ], [ -81.95670127161975, 28.881430537730854 ], [ -81.956941101134277, 28.881415538293336 ], [ -81.957155225972429, 28.881418621372507 ], [ -81.957382651280057, 28.881429724378943 ], [ -81.957621101371089, 28.881445956455767 ], [ -81.957818154411129, 28.881450493016338 ], [ -81.95795519263234, 28.881459582470686 ], [ -81.95811109283035, 28.88146948793818 ], [ -81.958264790838555, 28.881469534898287 ], [ -81.958352615551917, 28.881455183996163 ], [ -81.958427998049331, 28.88142957748666 ], [ -81.958489995383573, 28.88139981711322 ], [ -81.958586759916372, 28.881338389441868 ], [ -81.958687203320295, 28.881272766228562 ], [ -81.958789528020034, 28.881224641848512 ], [ -81.958892321171604, 28.881194517544845 ], [ -81.958997102153774, 28.881166803816797 ], [ -81.959086046339579, 28.881154205949336 ], [ -81.959163510701075, 28.88115170399178 ], [ -81.959249583433632, 28.881146679061146 ], [ -81.959447552003837, 28.881134114904906 ], [ -81.959585719386993, 28.881128224838829 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Balsa Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95456390777062, 28.881477781720061 ], [ -81.954566066366908, 28.880460085708382 ], [ -81.954553159558898, 28.879279925037938 ], [ -81.954573286614831, 28.879178925493168 ], [ -81.954592090818295, 28.879104528958951 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arbella Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95456390777062, 28.881477781720061 ], [ -81.954619957491659, 28.88147763464622 ], [ -81.954739088495941, 28.881477674845332 ], [ -81.954927159758398, 28.881477738093061 ], [ -81.955152339465329, 28.881475407037314 ], [ -81.955292756273295, 28.881475453853291 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arbella Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954592090818295, 28.879104528958951 ], [ -81.954538749477763, 28.879091382426552 ], [ -81.95445996648246, 28.879062708563296 ], [ -81.954364052452533, 28.879031015147103 ], [ -81.95430753061693, 28.879014410724825 ], [ -81.954251008190667, 28.879003839067593 ], [ -81.954177353074883, 28.878996274328429 ], [ -81.954105409004413, 28.878993233371951 ], [ -81.954024895758039, 28.878999237725594 ], [ -81.953971787716455, 28.879012789252791 ], [ -81.953918672612573, 28.879039909569055 ], [ -81.9538741189955, 28.879077587026995 ], [ -81.953844890140161, 28.879129713781367 ], [ -81.953834679963578, 28.879168034633043 ], [ -81.953828833704875, 28.879222872713015 ], [ -81.953828766273716, 28.879374477409893 ], [ -81.953828683199845, 28.87956355468333 ], [ -81.953831330303188, 28.879759166455543 ], [ -81.9538312504895, 28.87993861616183 ], [ -81.953831169603163, 28.880120475910335 ], [ -81.953833616591169, 28.880328117983399 ], [ -81.953836272939398, 28.880500696686923 ], [ -81.953838932462673, 28.880668459804298 ], [ -81.953841390897935, 28.880852725039048 ], [ -81.953841301815842, 28.881050742271199 ], [ -81.953844564415022, 28.881192580658865 ], [ -81.953851735763038, 28.881302733367331 ], [ -81.953867724245768, 28.881360838044149 ], [ -81.953898089605914, 28.881403357691273 ], [ -81.953949715165066, 28.881441252206965 ], [ -81.954024296864787, 28.881471579742737 ], [ -81.954137768334121, 28.881477470862492 ], [ -81.954328575799209, 28.881477535879736 ], [ -81.954511370460963, 28.881477597010996 ], [ -81.95456390777062, 28.881477781720061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ambrosia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955963432301587, 28.879349078029598 ], [ -81.956156494127342, 28.879344739766807 ], [ -81.956365826126159, 28.879328470868455 ], [ -81.956728906061329, 28.879292936602425 ], [ -81.956748327456424, 28.879291033588469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lacrosse Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957482461437493, 28.87931458711256 ], [ -81.957484805815085, 28.879239942242542 ], [ -81.957448737926256, 28.878934458385409 ], [ -81.95740583047413, 28.878626377315928 ], [ -81.957380698094866, 28.878428658783658 ], [ -81.957370071439414, 28.878331249226019 ], [ -81.957364794505096, 28.878192765879461 ], [ -81.957370171270242, 28.878088318932534 ], [ -81.957387543013908, 28.87799443813573 ], [ -81.9574118647445, 28.877904184086113 ], [ -81.957449194715537, 28.877820865636082 ], [ -81.957492251995816, 28.877765326350701 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ambrosia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956748327456424, 28.879291033588469 ], [ -81.956995002018957, 28.879288765921483 ], [ -81.957102502456237, 28.879293057363284 ], [ -81.957482461437493, 28.87931458711256 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ambrosia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957482461437493, 28.87931458711256 ], [ -81.957559893422214, 28.879320331296995 ], [ -81.957710635202744, 28.8793218865999 ], [ -81.957833974074916, 28.879314386655732 ], [ -81.958152361876913, 28.879296173142329 ], [ -81.958228365380791, 28.879290329139526 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Opal Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95580752849952, 28.878705601804512 ], [ -81.955859452340434, 28.878395050226473 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jonesbury Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955859452340434, 28.878395050226473 ], [ -81.955723611649532, 28.878359386249059 ], [ -81.955660084265887, 28.878337573801552 ], [ -81.95554078209021, 28.878288374255757 ], [ -81.955418787242351, 28.878231364288407 ], [ -81.955351566501491, 28.878197383831935 ], [ -81.955304716618983, 28.878167906291896 ], [ -81.955211019298474, 28.878101094821687 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Placid Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954843117626396, 28.878556019565934 ], [ -81.95495038372772, 28.878413325885294 ], [ -81.955211019298474, 28.878101094821687 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jonesbury Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955211019298474, 28.878101094821687 ], [ -81.955158565847526, 28.878067335744358 ], [ -81.955072631884548, 28.877991639998108 ], [ -81.954979533993495, 28.877909636510203 ], [ -81.954888831339744, 28.877815023191108 ], [ -81.954812450866612, 28.877735127562726 ], [ -81.954770759186516, 28.877676616399246 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Matisse Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953762003169487, 28.878179076129506 ], [ -81.953933698813287, 28.878110142418024 ], [ -81.954069652551908, 28.878052697911567 ], [ -81.954201574798859, 28.877991670657007 ], [ -81.954770759186516, 28.877676616399246 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jonesbury Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954770759186516, 28.877676616399246 ], [ -81.954740854787488, 28.877634215282814 ], [ -81.954676426310357, 28.877527000096705 ], [ -81.954612004398186, 28.877405072848102 ], [ -81.95454519958632, 28.877270531481983 ], [ -81.954469723459283, 28.877121625201578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carbone Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953771007198668, 28.877402911071513 ], [ -81.953905112433077, 28.877341689954545 ], [ -81.954011036406669, 28.877292130333508 ], [ -81.954469723459283, 28.877121625201578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quill Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953744658180725, 28.87658345935164 ], [ -81.954237497037354, 28.876482235567515 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jonesbury Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954237497037354, 28.876482235567515 ], [ -81.954216054398685, 28.876372933319754 ], [ -81.9541898430532, 28.876244711776128 ], [ -81.95418033646051, 28.876143820337088 ], [ -81.954175615033236, 28.876017708478447 ], [ -81.954170886388795, 28.875912614839681 ], [ -81.954174834327191, 28.875798410005658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jonesbury Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954174834327191, 28.875798410005658 ], [ -81.954182921664085, 28.875698231965547 ], [ -81.9541996919327, 28.875572127427667 ], [ -81.954221235516499, 28.875454429456571 ], [ -81.954247546744838, 28.87535565438014 ], [ -81.954281023206633, 28.875250572838979 ], [ -81.954350338772784, 28.875103467016555 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Capri Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95373666834837, 28.875801177869981 ], [ -81.954009269924555, 28.87578608301984 ], [ -81.954174834327191, 28.875798410005658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lawthorn Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953724073342386, 28.874996929968312 ], [ -81.954037555403602, 28.875021388015181 ], [ -81.954171271542378, 28.875042452827515 ], [ -81.954264388279228, 28.875069808076692 ], [ -81.954350338772784, 28.875103467016555 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arcadia Lakes Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007638677756248, 28.924187015975761 ], [ -82.007678858809356, 28.924102317152631 ], [ -82.007764978947122, 28.923984245353672 ], [ -82.007836955734348, 28.923906154089689 ], [ -82.007868774434257, 28.923872808021336 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Welcome Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007868774434257, 28.923872808021336 ], [ -82.007818048076786, 28.923822118888726 ], [ -82.007748938965648, 28.923770137731101 ], [ -82.00771088071761, 28.923747232274728 ], [ -82.007663807842661, 28.923728731390224 ], [ -82.007593701347588, 28.923711994782703 ], [ -82.007436805162598, 28.923678950000792 ], [ -82.007255295178723, 28.923634574330585 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Welcome Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007255295178723, 28.923634574330585 ], [ -82.007204302136628, 28.923624264521994 ], [ -82.006930771371842, 28.923565148514868 ], [ -82.006813196063462, 28.923538003954686 ], [ -82.006676990496416, 28.923502766546953 ], [ -82.006527428421435, 28.923444034712222 ], [ -82.00640590932133, 28.923370026526054 ], [ -82.006293737066414, 28.923286621320884 ], [ -82.006225631125574, 28.923217308934799 ], [ -82.006157523213176, 28.923129203493666 ], [ -82.006092089115356, 28.923041095199743 ], [ -82.006050689435099, 28.922948288539946 ], [ -82.006023976190647, 28.922836681932864 ], [ -82.00601957445879, 28.92274271520294 ], [ -82.006031978854296, 28.922666334439711 ], [ -82.00604799776815, 28.922578224581052 ], [ -82.00606535240567, 28.922498337288346 ], [ -82.006083877079817, 28.92243504316853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Welcome Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006083877079817, 28.92243504316853 ], [ -82.006105907569392, 28.922398038198473 ], [ -82.006142960906416, 28.922364553360584 ], [ -82.0061710011949, 28.922345168166995 ], [ -82.006207425672301, 28.922327588109869 ], [ -82.0062360962322, 28.922318732671069 ], [ -82.006272150220809, 28.92231520677533 ], [ -82.006345258630731, 28.922316965832749 ], [ -82.006692061061642, 28.922371881340265 ], [ -82.006931677105612, 28.922403530862006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clover Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005691961630518, 28.922279235787464 ], [ -82.006083877079817, 28.92243504316853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bowman Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006835558577777, 28.922864910907418 ], [ -82.006931677105612, 28.922403530862006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Welcome Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008435532340542, 28.9226311518964 ], [ -82.008557597764224, 28.922641274768836 ], [ -82.008820954399354, 28.922650946800051 ], [ -82.009063999529261, 28.922661588667932 ], [ -82.009237297539187, 28.92266673421922 ], [ -82.009425637216083, 28.922677378050558 ], [ -82.009623161825971, 28.922685617283314 ], [ -82.009872063288242, 28.922697359903225 ], [ -82.009912122519495, 28.922708812673015 ], [ -82.009951393041234, 28.922730972129493 ], [ -82.009985965713113, 28.922756668903858 ], [ -82.010015285321472, 28.922781846316148 ], [ -82.010048301063804, 28.922828353736914 ], [ -82.010060816751889, 28.922878100036701 ], [ -82.010060827632472, 28.922995671899905 ], [ -82.010063967966801, 28.923150714083413 ], [ -82.01006085534307, 28.923295099688737 ], [ -82.010060868959982, 28.9234422361701 ], [ -82.01006693419869, 28.923540899986499 ], [ -82.010077740517048, 28.923625935189627 ], [ -82.010107690654152, 28.923723192434139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 215", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057873928887346, 28.856754078475294 ], [ -82.057874322754131, 28.857471390019288 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 122 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016265285604732, 28.898270366202787 ], [ -82.015449210090878, 28.898548362247837 ], [ -82.014705876580734, 28.89878157908166 ], [ -82.014426205249777, 28.898874531349765 ], [ -82.014283513661056, 28.898912218712066 ], [ -82.014160796878841, 28.898927299517467 ], [ -82.014043785140288, 28.8989348454446 ], [ -82.013932483924023, 28.898937368508356 ], [ -82.01386969511006, 28.898924818315031 ], [ -82.013832590687571, 28.898899705568411 ], [ -82.01378121362697, 28.898851994323834 ], [ -82.013681314529805, 28.898759080791223 ], [ -82.013584271047918, 28.898681234400527 ], [ -82.013455833073266, 28.89859837054647 ], [ -82.013401604137243, 28.898553170525069 ], [ -82.013367350999062, 28.898507967687262 ], [ -82.013321679014524, 28.898432628225628 ], [ -82.013256013664062, 28.898221673258227 ], [ -82.013164651354074, 28.897925331565183 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133311546994605, 28.878868893144276 ], [ -82.133497089142736, 28.878735401138194 ], [ -82.133624220845775, 28.878664552676167 ], [ -82.133754734323489, 28.878620222927704 ], [ -82.133926343496924, 28.878594938748783 ], [ -82.134006535533814, 28.878594860326871 ], [ -82.134088408980688, 28.878602131221445 ], [ -82.134168626498919, 28.878621167879398 ], [ -82.135077584441717, 28.878899552882501 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.077495535976453, 28.894473360733485 ], [ -82.077307084174393, 28.894473468142063 ], [ -82.077021315905085, 28.89447392105361 ], [ -82.076893440055002, 28.894473993515462 ], [ -82.075483189395669, 28.894453333352615 ], [ -82.074604032492289, 28.894443269372704 ], [ -82.072394148924616, 28.894412813169655 ], [ -82.072184337958802, 28.894391824540296 ], [ -82.072038460305208, 28.894365527770013 ], [ -82.071896574363493, 28.894330436732528 ], [ -82.071758680689996, 28.894291824472681 ], [ -82.071616786553719, 28.894244423987011 ], [ -82.071482877760459, 28.894188226251408 ], [ -82.071350961284381, 28.894121477660761 ], [ -82.071227031561463, 28.894049450818745 ], [ -82.071101097589207, 28.893966873430173 ], [ -82.070991145508998, 28.893877254157104 ], [ -82.070871190243011, 28.893770056915695 ], [ -82.070785212035503, 28.893680426771745 ], [ -82.070691229658777, 28.893569697773387 ], [ -82.070613235510081, 28.89346599472201 ], [ -82.07055522698694, 28.893367556088361 ], [ -82.070497219036412, 28.893274394070602 ], [ -82.070450809830774, 28.893183576502992 ], [ -82.070415506563918, 28.893101810439543 ], [ -82.070386619827687, 28.893034141265687 ], [ -82.070365343908705, 28.892975748287782 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070365343908705, 28.892975748287782 ], [ -82.070312730828206, 28.892760625078211 ], [ -82.070293395264557, 28.892597064547264 ], [ -82.070289216370298, 28.892339727472081 ], [ -82.070298508821054, 28.89090059464661 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 223", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070365343908705, 28.892975748287782 ], [ -82.070319787723946, 28.892991812931676 ], [ -82.070294009881181, 28.893054648816594 ], [ -82.070283408145499, 28.893098763173487 ], [ -82.070271045981798, 28.893168957579963 ], [ -82.070266403290617, 28.893645690404423 ], [ -82.070266864985726, 28.894337853369262 ], [ -82.070273006186653, 28.894541272504181 ], [ -82.070264716961987, 28.895613864261552 ], [ -82.070254289009114, 28.896418402178881 ], [ -82.070245163784264, 28.897148827258956 ], [ -82.070245964927381, 28.898347395462935 ], [ -82.070249244612768, 28.899412840750045 ], [ -82.070228273577357, 28.900648653122428 ], [ -82.07022260179582, 28.901754158370139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "De Silva Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959811697900065, 28.946489799229006 ], [ -81.959918546072103, 28.94695007086505 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "De Silva Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959892803774963, 28.945200350628326 ], [ -81.959817349403224, 28.945248561889127 ], [ -81.959758656541638, 28.945310173581831 ], [ -81.959713841636372, 28.945372069132556 ], [ -81.959681827302958, 28.945435046760103 ], [ -81.959649991564987, 28.945523942794075 ], [ -81.959620316240347, 28.945646693495867 ], [ -81.959616457879264, 28.945697345245357 ], [ -81.959621558645964, 28.945743498155945 ], [ -81.959671395266469, 28.945970481300325 ], [ -81.959811697900065, 28.946489799229006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 417", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143866190142404, 28.800272867262393 ], [ -82.14387661319212, 28.803233818707504 ], [ -82.143862444999982, 28.804626635366336 ], [ -82.143853131283166, 28.80466583610097 ], [ -82.143834445925506, 28.804702640308346 ], [ -82.143807168757519, 28.804734984481481 ], [ -82.14377285864596, 28.804761148066675 ], [ -82.143741850482286, 28.804776994761543 ], [ -82.143128086854063, 28.804994522121838 ], [ -82.143094746527282, 28.80500630893459 ], [ -82.143076058731012, 28.8050106804655 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141351597949011, 28.800297399299161 ], [ -82.143021787566298, 28.800288352418455 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 418", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143021787566298, 28.800288352418455 ], [ -82.143000288837726, 28.801777557480971 ], [ -82.143004917014721, 28.80330658786373 ], [ -82.143027229069048, 28.804718845067672 ], [ -82.143034510835093, 28.8048643671153 ], [ -82.143039818242968, 28.804900424986506 ], [ -82.143052391241454, 28.804929965045886 ], [ -82.143061502770237, 28.804952016884997 ], [ -82.143069354783037, 28.804978220669572 ], [ -82.143076058731012, 28.8050106804655 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143021787566298, 28.800288352418455 ], [ -82.143866190142404, 28.800272867262393 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 421", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140365971521291, 28.803649856008771 ], [ -82.14022379556819, 28.804559340537182 ], [ -82.140142249791026, 28.805057877116365 ], [ -82.140068338195675, 28.80554630078435 ], [ -82.14002132133254, 28.80563362957891 ], [ -82.13999011573317, 28.805668783212802 ], [ -82.139956737025287, 28.80569064897875 ], [ -82.139923346941202, 28.805703972594273 ], [ -82.139896415729282, 28.805712542501603 ], [ -82.139873296710348, 28.805719010608978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 426E", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139010575398544, 28.793162691882142 ], [ -82.139010023627151, 28.793330463480018 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 428", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133852352319366, 28.793356280991315 ], [ -82.134560824550832, 28.793344059540456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 431", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134954133891583, 28.802263402765636 ], [ -82.134967176309814, 28.802350260510998 ], [ -82.134997812420849, 28.802387277066142 ], [ -82.135041858282634, 28.802444488393743 ], [ -82.135093561133957, 28.802510111535359 ], [ -82.135158680309516, 28.802600980543009 ], [ -82.135202742635087, 28.80267166327258 ], [ -82.135244893481769, 28.802742346988062 ], [ -82.135281359566974, 28.802851767062595 ], [ -82.135298667242608, 28.802930895851169 ], [ -82.135310204644824, 28.802983087440754 ], [ -82.135333252352694, 28.803065580627798 ], [ -82.135356283785185, 28.803134597842181 ], [ -82.135375460802592, 28.803180046073631 ], [ -82.135390795241833, 28.803210342050111 ], [ -82.135406124449915, 28.803238954321465 ], [ -82.135423358474128, 28.803259145247008 ], [ -82.135442505193808, 28.803281017068763 ], [ -82.135475048958341, 28.803314665091683 ], [ -82.135517142709418, 28.803339880523339 ], [ -82.135549665965925, 28.803358372465834 ], [ -82.13558985696497, 28.803380054527501 ], [ -82.135612944628278, 28.803386806911188 ], [ -82.135640421353102, 28.803386780371984 ], [ -82.135674479942921, 28.803378032752384 ], [ -82.135710024351837, 28.80336167537088 ], [ -82.135750400607918, 28.803322069673094 ], [ -82.135809007971105, 28.803263984492077 ], [ -82.135860653228846, 28.803211333638803 ], [ -82.135888716165724, 28.803181395825014 ], [ -82.135915998046201, 28.803151116811957 ], [ -82.135930222720347, 28.803134257369411 ], [ -82.136022206677964, 28.803036188955197 ], [ -82.136055161969821, 28.803017247156337 ], [ -82.136092226127275, 28.803006209067121 ], [ -82.136131447082775, 28.803003419518451 ], [ -82.136170094223303, 28.803009225026241 ], [ -82.13629605004563, 28.803137171491407 ], [ -82.13631807860682, 28.803173290460641 ], [ -82.136340111176068, 28.803213281229432 ], [ -82.136348966586425, 28.803261029742757 ], [ -82.136338769666608, 28.803310087686519 ], [ -82.136321234181864, 28.803347536671943 ], [ -82.13629637275325, 28.803386284212021 ], [ -82.136214006041556, 28.803462284417137 ], [ -82.136147969267029, 28.803554826470084 ], [ -82.136111809741919, 28.803661090635536 ], [ -82.136124658068866, 28.803750659879249 ], [ -82.136140364107092, 28.80380743725571 ], [ -82.136167792715597, 28.803865922676152 ], [ -82.136242219549615, 28.804003527713707 ], [ -82.136338032422714, 28.804145937686002 ], [ -82.136543453182597, 28.804388439701825 ], [ -82.136807427823911, 28.804653758643621 ], [ -82.136862927398482, 28.804695802633734 ], [ -82.136924150780118, 28.804729421386856 ], [ -82.137029365115424, 28.804776464486427 ], [ -82.13710394869824, 28.804793228985407 ], [ -82.137211041812662, 28.804815013524248 ], [ -82.13745617608005, 28.80483271521749 ], [ -82.137653068195007, 28.804819109253959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 431", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135706810014767, 28.800311089755265 ], [ -82.135518021126813, 28.8006813270243 ], [ -82.135313517008839, 28.801098732546805 ], [ -82.135190578415816, 28.801387654370455 ], [ -82.135008739203215, 28.801887892271299 ], [ -82.134970553793167, 28.802106711306457 ], [ -82.134954133891583, 28.802263402765636 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134905456974778, 28.800262284534956 ], [ -82.134940087052769, 28.800270963734953 ], [ -82.135057570318381, 28.800290993724559 ], [ -82.135196681812246, 28.800303379375237 ], [ -82.135416475125268, 28.800311371424417 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133698165551976, 28.799305806765489 ], [ -82.13374752218742, 28.799407654181103 ], [ -82.133804256060074, 28.799505161419795 ], [ -82.133856043105453, 28.79958316016365 ], [ -82.133920143593571, 28.799665481441217 ], [ -82.133996558986738, 28.799756462634623 ], [ -82.134082815285268, 28.799843098472209 ], [ -82.134146880184346, 28.799897236941035 ], [ -82.134228675238802, 28.799958727921446 ], [ -82.134417862953484, 28.800083419541643 ], [ -82.134530171905666, 28.800138811202419 ], [ -82.134650347519539, 28.800187254406836 ], [ -82.134764602324395, 28.800225298849423 ], [ -82.134905456974778, 28.800262284534956 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 432", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133838259132602, 28.801083020655849 ], [ -82.134087352568073, 28.800938299921793 ], [ -82.134625259670628, 28.800586196541929 ], [ -82.134721644300356, 28.800508053021922 ], [ -82.134790490546038, 28.80045248276776 ], [ -82.13484550153153, 28.800357034217956 ], [ -82.134905456974778, 28.800262284534956 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hartford Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014530567703019, 28.919298804091014 ], [ -82.014628480407154, 28.919235116135528 ], [ -82.014792375613609, 28.91913396321873 ], [ -82.014915827904801, 28.919053418357379 ], [ -82.01497116544526, 28.919002845050453 ], [ -82.015003089507275, 28.918957891931452 ], [ -82.015020109999796, 28.918888595547649 ], [ -82.015021159951061, 28.918850509504654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hartford Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015021159951061, 28.918850509504654 ], [ -82.015022226224218, 28.918811808995876 ], [ -82.015017959707251, 28.918729401822191 ], [ -82.015000902811906, 28.918530881298373 ], [ -82.015007275774323, 28.918444729351421 ], [ -82.015030678036879, 28.918352956071708 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hartford Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015021159951061, 28.918850509504654 ], [ -82.015215284245613, 28.918844369139965 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Martinez Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958219149563106, 28.937508123151275 ], [ -81.958227940917908, 28.937513627177012 ], [ -81.958236927162929, 28.937519129458313 ], [ -81.958245913546904, 28.937524289769662 ], [ -81.958255094821055, 28.937529448336534 ], [ -81.958264473035442, 28.937534608768676 ], [ -81.958273850364392, 28.937539423621324 ], [ -81.958283226668115, 28.937544239375296 ], [ -81.958292801077448, 28.937548710514001 ], [ -81.958302374461127, 28.93755318345632 ], [ -81.958312142734627, 28.937557655556258 ], [ -81.958321911147465, 28.937561783881542 ], [ -81.958331873562429, 28.937565568492492 ], [ -81.958341838029568, 28.937569353103324 ], [ -81.958351801471707, 28.937573137713098 ], [ -81.958361960967309, 28.937576578609111 ], [ -81.958372121489319, 28.937580019504637 ], [ -81.958382279960887, 28.937583459496469 ], [ -81.958392635511174, 28.937586556677044 ], [ -81.958402990174193, 28.937589310984908 ], [ -81.958413540752915, 28.937592063548145 ], [ -81.95842389555483, 28.93759447498276 ], [ -81.958434447160329, 28.937597227544671 ], [ -81.9584449990422, 28.937599293460224 ], [ -81.958455743761746, 28.937601359434719 ], [ -81.958466294618717, 28.937603425348286 ], [ -81.958477041528539, 28.93760514754781 ], [ -81.958487787412977, 28.937606869746151 ], [ -81.958498534461057, 28.937608249072312 ], [ -81.958509281510146, 28.937609626593062 ], [ -81.958520026645502, 28.937610661240665 ], [ -81.958530970910545, 28.937611352175086 ], [ -81.958561968811935, 28.937615644048588 ], [ -81.958581517876027, 28.937616468471475 ], [ -81.958597342841202, 28.937616474262985 ], [ -81.958667164667844, 28.937618132573675 ], [ -81.958721361593348, 28.937614531077539 ], [ -81.958793601921826, 28.93760374292367 ], [ -81.958900889584157, 28.937582117203448 ], [ -81.959068543210833, 28.937542953012517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Martinez Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957992407182346, 28.93720191930689 ], [ -81.958001702047071, 28.937237955326523 ], [ -81.958011928553177, 28.937268258461746 ], [ -81.958024949146122, 28.937298561568749 ], [ -81.958041693498586, 28.93733050350346 ], [ -81.958057509457859, 28.937352619165026 ], [ -81.958071466774939, 28.937372277297033 ], [ -81.958093796875275, 28.937400127264691 ], [ -81.958120781774724, 28.937430433824588 ], [ -81.95814032284855, 28.937450913878841 ], [ -81.958176564148019, 28.937478200633254 ], [ -81.958184965443209, 28.937484392088045 ], [ -81.958193363662588, 28.93749058263905 ], [ -81.95820176407328, 28.937496429416253 ], [ -81.958210360399178, 28.937502276253973 ], [ -81.958219149563106, 28.937508123151275 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 439", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120576076584342, 28.785606445989611 ], [ -82.120653389807316, 28.785625802386672 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 453", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121927990456854, 28.790495032871529 ], [ -82.122313939499819, 28.791157497689021 ], [ -82.12236257712182, 28.791216670784372 ], [ -82.122602851489248, 28.79157373514462 ], [ -82.122648703013098, 28.791625557713232 ], [ -82.122701091069587, 28.791671610404315 ], [ -82.122738180494963, 28.791688863394938 ], [ -82.122792723686885, 28.791713785592886 ], [ -82.122882162201762, 28.791744439290124 ], [ -82.122934508005471, 28.791755917180303 ], [ -82.122993393761831, 28.791765468113532 ], [ -82.123082803189575, 28.791771150250987 ], [ -82.123163481747937, 28.791769155258237 ], [ -82.123248511744492, 28.791759474899997 ], [ -82.123330828587697, 28.791733373087858 ], [ -82.123405206073244, 28.79170903072071 ], [ -82.123464435550247, 28.7916919828175 ], [ -82.123559463726252, 28.791651840191761 ], [ -82.123677939255515, 28.791631098409667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 453", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123677939255515, 28.791631098409667 ], [ -82.123857069912361, 28.791633362533123 ], [ -82.124002104844621, 28.791673057407241 ], [ -82.124121078282784, 28.791715887993924 ], [ -82.124235292514243, 28.791799168906827 ], [ -82.124278122822105, 28.791861034592859 ], [ -82.124316192733971, 28.791927659796034 ], [ -82.124368540226101, 28.792163226006664 ], [ -82.124408990154151, 28.792282198364624 ], [ -82.124479082554416, 28.792386474700429 ], [ -82.124524919456249, 28.792424850400199 ], [ -82.124620897781682, 28.792451653103647 ], [ -82.124740847831049, 28.792468831351275 ], [ -82.124867379899655, 28.792518658069724 ], [ -82.124932809745047, 28.792530124063891 ], [ -82.124976444583936, 28.792551212457759 ], [ -82.125059345515155, 28.792583790832239 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12258489455499, 28.790134248607274 ], [ -82.12306316086962, 28.789864539830983 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122339166873644, 28.790243285955551 ], [ -82.12258489455499, 28.790134248607274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 452", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12258489455499, 28.790134248607274 ], [ -82.122896852821668, 28.790609779037805 ], [ -82.123139760151943, 28.790949427296322 ], [ -82.12362136015004, 28.791559535266039 ], [ -82.123677939255515, 28.791631098409667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 439B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119826690048427, 28.786541269845372 ], [ -82.119868567441301, 28.786525089682556 ], [ -82.119928530602266, 28.786519379322428 ], [ -82.12000943273739, 28.78651842819961 ], [ -82.120577743152026, 28.786530804184491 ], [ -82.12070078536081, 28.786518669923389 ], [ -82.120725174390017, 28.786517480682676 ], [ -82.120757536563161, 28.786518432761582 ], [ -82.120781331599062, 28.786514625529882 ], [ -82.120805125272099, 28.786506059503704 ], [ -82.120825114213034, 28.786487975661668 ], [ -82.120839391061025, 28.786471796258564 ], [ -82.120851763965547, 28.786457519716553 ], [ -82.120866992600568, 28.786445146317369 ], [ -82.120879202671091, 28.786431786666157 ], [ -82.121115149400481, 28.786132830365649 ], [ -82.121163303123524, 28.786098066516825 ], [ -82.121235821981671, 28.786040589596933 ], [ -82.121314588982898, 28.785989639800558 ], [ -82.121398830598537, 28.785945904466612 ], [ -82.121560293094589, 28.785874078783287 ], [ -82.12187263257178, 28.785751358226353 ], [ -82.122162402180379, 28.785673633854231 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 459", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126643765084594, 28.774828657663239 ], [ -82.126800161447662, 28.774842291162894 ], [ -82.128974047861306, 28.775008335161044 ], [ -82.132456357613265, 28.775271158107003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 484", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11847705364508, 28.770418893734139 ], [ -82.118481541169018, 28.770660289454629 ], [ -82.118479474311599, 28.770697430490372 ], [ -82.118461588644195, 28.77071848711595 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 483", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11495942212963, 28.770707045089427 ], [ -82.114972552827794, 28.770715293780917 ], [ -82.115250750464511, 28.770716914577601 ], [ -82.115834531041344, 28.770710848144535 ], [ -82.116241300338729, 28.770723500999843 ], [ -82.117524807307262, 28.770739111406741 ], [ -82.118422609236745, 28.770730906199738 ], [ -82.118460532153691, 28.770719730521705 ], [ -82.118461588644195, 28.77071848711595 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 474", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116011072790371, 28.77088431470716 ], [ -82.116616600194746, 28.770866510711723 ], [ -82.117506025867343, 28.770859836459927 ], [ -82.117767850994639, 28.770873642931925 ], [ -82.117865340804642, 28.770887486651347 ], [ -82.117928991566856, 28.770910561423094 ], [ -82.11797868948544, 28.770947737890843 ], [ -82.118012986894769, 28.770992970920492 ], [ -82.118061210844189, 28.7711596523162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003735939873593, 28.923995326071658 ], [ -82.003691785499342, 28.923849665879004 ], [ -82.003601066781172, 28.92358517345939 ], [ -82.003481840632119, 28.923263679946974 ], [ -82.003347062881147, 28.92296498585204 ], [ -82.003217471916926, 28.922691372628098 ], [ -82.003011040689628, 28.922316551946345 ], [ -82.00299644511189, 28.922293204398585 ], [ -82.002988835907303, 28.922275261476425 ], [ -82.00298317532328, 28.922258180211326 ], [ -82.002973884695521, 28.922219657749004 ], [ -82.002969903627388, 28.922186968534842 ], [ -82.002973883112773, 28.922155448553102 ], [ -82.002977864935119, 28.922135602478264 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004040898023277, 28.9271345927264 ], [ -82.004038024150134, 28.926897114052458 ], [ -82.004038014478652, 28.926649036932812 ], [ -82.004039667810602, 28.926532293385691 ], [ -82.004039665630771, 28.926440359397446 ], [ -82.004038002832303, 28.926314860959199 ], [ -82.004039656116234, 28.926167474546752 ], [ -82.00403799113532, 28.92597922595704 ], [ -82.004036549328106, 28.925837925601478 ], [ -82.004024707798237, 28.925607110567096 ], [ -82.003997653999747, 28.925302099239126 ], [ -82.003971729029189, 28.925071806971175 ], [ -82.003950227964708, 28.924942802688495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008614485834485, 28.925770719101155 ], [ -82.00861455848856, 28.925716501961471 ], [ -82.008612362652968, 28.925416653933237 ], [ -82.008584561233874, 28.925230253052824 ], [ -82.008539355256502, 28.925107714072556 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parr Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008614077191694, 28.926077797363664 ], [ -82.008726871122562, 28.926076560725658 ], [ -82.00930274184654, 28.926080968293821 ], [ -82.009778592613685, 28.926085380297355 ], [ -82.010024096239036, 28.926087141656765 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pueblo Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964861161642204, 28.922268987690469 ], [ -81.964669399497893, 28.922290789070544 ], [ -81.964622969108973, 28.922303750031965 ], [ -81.964570823449534, 28.922324812986396 ], [ -81.964528537371763, 28.922355796567903 ], [ -81.964498933601135, 28.922386782594153 ], [ -81.964470735298747, 28.922431407189535 ], [ -81.964450993146642, 28.922472314758409 ], [ -81.964442524430595, 28.922509506052151 ], [ -81.964438283757971, 28.922547938221854 ], [ -81.964439680284315, 28.922587610739544 ], [ -81.964453438654417, 28.922646738232054 ], [ -81.964535835992706, 28.922844250079024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Fernando Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963987774320643, 28.940617572384539 ], [ -81.964595898537382, 28.940580364232503 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000692965548822, 28.951702488610149 ], [ -82.000681482494258, 28.951506560387685 ], [ -82.000671120650296, 28.951271894946544 ], [ -82.000668530869163, 28.951075963089 ], [ -82.000668529192424, 28.950823073118652 ], [ -82.000681480563514, 28.950410701144385 ], [ -82.000706120411962, 28.950013900888258 ], [ -82.000733456496405, 28.949773464272678 ], [ -82.000766956833473, 28.949554060970659 ], [ -82.000811557433721, 28.949271982585802 ], [ -82.000866228573344, 28.949014371614293 ], [ -82.000913088900376, 28.948794544137058 ], [ -82.000983378738042, 28.948506020506564 ], [ -82.001028566804365, 28.948339730512728 ], [ -82.001054468159523, 28.948189363339456 ], [ -82.001082958472509, 28.948013934065443 ], [ -82.001101089611325, 28.947799774815948 ], [ -82.001119218278447, 28.947535492293632 ], [ -82.001119217178882, 28.947376011148091 ], [ -82.001111446250661, 28.947180078308183 ], [ -82.001095904041236, 28.947029712185817 ], [ -82.001075180168726, 28.946833777585731 ], [ -82.001054457685797, 28.946683410570412 ], [ -82.001020784242812, 28.946517094670227 ], [ -82.000981931610283, 28.946357614546937 ], [ -82.000948257649711, 28.94624597847325 ], [ -82.000909404325654, 28.946111558606191 ], [ -82.000862780618533, 28.945983973615203 ], [ -82.000810976545608, 28.945819936883787 ], [ -82.000679867896608, 28.945428471888732 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000679867896608, 28.945428471888732 ], [ -82.000945900854617, 28.945365651831526 ], [ -82.001317275011544, 28.945266710057812 ], [ -82.001674365171851, 28.945166197394116 ], [ -82.002015442210435, 28.945086766040607 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002330182640875, 28.959876069741078 ], [ -82.002307196996568, 28.959802259939728 ], [ -82.00179867019672, 28.957352168915296 ], [ -82.001775477627703, 28.957231246751526 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001775478653627, 28.957231246751519 ], [ -82.001308554209203, 28.954988800502317 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avalos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00117347258319, 28.957413769418732 ], [ -82.001533055464151, 28.957317812000337 ], [ -82.0016463390741, 28.95725558363538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001167309637268, 28.95501338152507 ], [ -82.001461475835058, 28.956408258516319 ], [ -82.001557341993617, 28.956844900105924 ], [ -82.0016463390741, 28.95725558363538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0016463390741, 28.95725558363538 ], [ -82.001771243787886, 28.957943514705274 ], [ -82.00203090607279, 28.95918161164462 ], [ -82.002182591987662, 28.959878973463994 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avalos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999628532739123, 28.958073808103737 ], [ -81.99969996123879, 28.958062813058756 ], [ -81.999804775641636, 28.958040653121664 ], [ -81.999916524300957, 28.958011168315771 ], [ -82.000019598642297, 28.957973298458853 ], [ -82.000105310967911, 28.9579340355154 ], [ -82.000212656991252, 28.957880129275146 ], [ -82.000296467106864, 28.957832626481071 ], [ -82.000370965836211, 28.957786762188579 ], [ -82.000451730847374, 28.9577220219204 ], [ -82.000553514902307, 28.957648209053303 ], [ -82.000660654150636, 28.9575791078672 ], [ -82.000808812703809, 28.957493114703617 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avalos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998739315092195, 28.957994495482474 ], [ -81.998862366999759, 28.958012802436542 ], [ -81.998917833776645, 28.958025117443203 ], [ -81.999017830977849, 28.95804710538436 ], [ -81.999099971924139, 28.958065951329647 ], [ -81.999192827820224, 28.958076945565114 ], [ -81.99927675404416, 28.958086368787185 ], [ -81.999358897245344, 28.958092651972137 ], [ -81.999443455553461, 28.958093068422002 ], [ -81.999523178706184, 28.958086371130115 ], [ -81.999628532739123, 28.958073808103737 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "La Pinta Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999628532739123, 28.958073808103737 ], [ -81.999657104580123, 28.958266976159749 ], [ -81.999661953735455, 28.95832796836428 ], [ -81.999671387816349, 28.958386333113463 ], [ -81.999678529937967, 28.958449152464944 ], [ -81.999687750539451, 28.958522889547623 ], [ -81.999695568753211, 28.958588550214639 ], [ -81.999701235365407, 28.958687213980127 ], [ -81.999704948383865, 28.958818534363814 ], [ -81.999706120254189, 28.958935417173961 ], [ -81.999700060459958, 28.959023768605775 ], [ -81.999701039505325, 28.959132399056418 ], [ -81.999708081887007, 28.959393912840724 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007797890091581, 28.955527668461805 ], [ -82.007423317395961, 28.95573102060877 ], [ -82.0065631044464, 28.956238915211621 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dalton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006793500666092, 28.957495516820128 ], [ -82.006823484066075, 28.957474876397992 ], [ -82.006859985815552, 28.957448504305674 ], [ -82.006904306916852, 28.957418692295668 ], [ -82.006943414469688, 28.957392318251529 ], [ -82.006981219672866, 28.957359065189738 ], [ -82.007003072815124, 28.957326203583701 ], [ -82.007017888088242, 28.957292831619249 ], [ -82.007024065419245, 28.957264578772239 ], [ -82.007022929401757, 28.957227210431128 ], [ -82.007013801651368, 28.957192811918993 ], [ -82.006995546376388, 28.957143511604187 ], [ -82.006969468783794, 28.9570827444429 ], [ -82.006942089618292, 28.957026564587885 ], [ -82.006900366210772, 28.956939427794261 ], [ -82.006856035590843, 28.956845411138026 ], [ -82.006809615377435, 28.956753316444775 ], [ -82.006771249156415, 28.95666897294355 ], [ -82.006734800944699, 28.956593063961513 ], [ -82.0065631044464, 28.956238915211621 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005340436780145, 28.956804296541499 ], [ -82.005109886892356, 28.95685663125828 ], [ -82.004928027554186, 28.956901839486267 ], [ -82.004737821412348, 28.956952464188181 ], [ -82.004631590675515, 28.956978504028935 ], [ -82.004554965486079, 28.956995355761276 ], [ -82.00449660869522, 28.957009274458777 ], [ -82.00440906777456, 28.957028524724009 ], [ -82.004297225973232, 28.95705050325083 ], [ -82.004170763780124, 28.957073442124589 ], [ -82.004056474015172, 28.95709483312671 ], [ -82.003934891964107, 28.957116222414644 ], [ -82.003801147439901, 28.957133335934508 ], [ -82.003672268811698, 28.957150447401499 ], [ -82.003550573433998, 28.957160864481349 ], [ -82.00342041121668, 28.957174962985416 ], [ -82.003292166289881, 28.957184736640805 ], [ -82.003203349447418, 28.95719163016976 ], [ -82.003097552519051, 28.95719622944447 ], [ -82.003007430625161, 28.957200824733277 ], [ -82.002930368751464, 28.957207718763041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982514096193128, 28.907419145911973 ], [ -81.982607489146133, 28.907470377971723 ], [ -81.982646932421844, 28.907507022725387 ], [ -81.982690755496975, 28.907561022836333 ], [ -81.982738955046329, 28.907640093850048 ], [ -81.982795913390717, 28.907771233083082 ], [ -81.982874776625678, 28.907973725220252 ], [ -81.982929544599173, 28.908101006785401 ], [ -81.982986508954426, 28.908205147370285 ], [ -81.983087297038693, 28.908363289710024 ], [ -81.983179321929043, 28.908490575885974 ], [ -81.9832735435524, 28.908592792827132 ], [ -81.983372148746781, 28.908691153826407 ], [ -81.983461992036638, 28.908768301544594 ], [ -81.983497052533693, 28.908797230852084 ], [ -81.983615382944464, 28.908893665899949 ], [ -81.98369865489579, 28.908955386063816 ], [ -81.983847667860005, 28.909053751962048 ], [ -81.983974768797879, 28.909128974731015 ], [ -81.984120010337989, 28.909203043698437 ], [ -81.984273591303364, 28.909268901680385 ], [ -81.984408796944578, 28.909317431415182 ], [ -81.984597149427898, 28.909375883421625 ], [ -81.984803153596218, 28.909418331318282 ], [ -81.984985952119189, 28.909438448926675 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985109820207356, 28.909449543049387 ], [ -81.985221746418034, 28.909456948042351 ], [ -81.985379541801123, 28.90945310813747 ], [ -81.98567541263057, 28.909433855487798 ], [ -81.985894575535013, 28.909420380516682 ], [ -81.986389884608727, 28.909385720699493 ], [ -81.986994774260694, 28.909343356981079 ], [ -81.987371735177931, 28.909316394767298 ], [ -81.987608430018184, 28.909300989558904 ], [ -81.988127846796331, 28.90926246827232 ], [ -81.988618770360929, 28.909229729880515 ], [ -81.989131609570379, 28.909196988789894 ], [ -81.989532675921069, 28.909168096996932 ], [ -81.990014834075296, 28.909135350116788 ], [ -81.990217579381593, 28.909121592573474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ternberry Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984679845558119, 28.910484425283386 ], [ -81.984713142705004, 28.910448088167467 ], [ -81.98476136764134, 28.910390241974927 ], [ -81.984814464995225, 28.910322177798811 ], [ -81.984860011466893, 28.910249479444325 ], [ -81.984912625050242, 28.910151135866446 ], [ -81.984957483846969, 28.910005264662665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039339586857309, 28.951975980747804 ], [ -82.038847443545052, 28.94904938533077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037677478023355, 28.941967905596655 ], [ -82.037552818753795, 28.941200708539597 ], [ -82.037454494593774, 28.940560753543352 ], [ -82.037372560838719, 28.940035849837624 ], [ -82.037274291245907, 28.939546902374868 ], [ -82.037208753683601, 28.939144235800562 ], [ -82.037151402866144, 28.938784711901544 ], [ -82.037134979690393, 28.938568993370755 ], [ -82.037109883007233, 28.938312585561636 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 202", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049522043160167, 28.945638353179703 ], [ -82.047199123886458, 28.945644739091581 ], [ -82.045360833716956, 28.945642199997241 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 203", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040733302921581, 28.933566712573892 ], [ -82.040559136985124, 28.93356676537865 ], [ -82.04016112631011, 28.933565246381114 ], [ -82.038090295643102, 28.933562199355777 ], [ -82.038032656077419, 28.933562216328365 ], [ -82.037478745469528, 28.933553488223971 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 105", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036600830258024, 28.934644144980112 ], [ -82.036829614480169, 28.934603168959768 ], [ -82.036968807633656, 28.934587756262562 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 519", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062151445275504, 28.8108575546186 ], [ -82.062107033530495, 28.810883162510208 ], [ -82.062055058514616, 28.810893989472547 ], [ -82.06201374176942, 28.810897040886744 ], [ -82.061982753886284, 28.81090008850747 ], [ -82.061907003419861, 28.810900122834504 ], [ -82.061500702666748, 28.810900305325749 ], [ -82.058725454426011, 28.810889394639688 ], [ -82.058250520551638, 28.810890001932769 ], [ -82.058184414061813, 28.810896500529374 ], [ -82.058140342469542, 28.810899753145051 ], [ -82.058110967340326, 28.81091270475136 ], [ -82.058103634991696, 28.810938587019535 ], [ -82.058092646139954, 28.810990347286634 ], [ -82.058100033087129, 28.811065552591657 ], [ -82.058101196198393, 28.81204554821937 ], [ -82.058093965956843, 28.812072817289767 ], [ -82.058070930587064, 28.812105312932331 ], [ -82.05805118417959, 28.812129105298876 ], [ -82.058036042516136, 28.812144774920274 ], [ -82.058016293931189, 28.812162767234735 ], [ -82.057995882944894, 28.812177858900895 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 542 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08574566436269, 28.682996527424468 ], [ -82.085403966960001, 28.68298154777445 ], [ -82.084645937311421, 28.682974423166613 ], [ -82.084117601443282, 28.682954491757052 ], [ -82.083566298085458, 28.682939638904877 ], [ -82.083454310891497, 28.682932110542545 ], [ -82.082604377146808, 28.682897178286701 ], [ -82.08240337961071, 28.682889703667623 ], [ -82.082314368200656, 28.682887225306068 ], [ -82.082228231953195, 28.682889809039192 ], [ -82.082162205993257, 28.682907573188714 ], [ -82.08209044541519, 28.682937999546947 ], [ -82.082024435098518, 28.68297855108446 ], [ -82.081912517904598, 28.683059643833872 ], [ -82.081840777846708, 28.683115392158683 ], [ -82.081771917891146, 28.683178732740654 ], [ -82.081674351337, 28.683257283871743 ], [ -82.081364506061135, 28.683586632435585 ], [ -82.081097669803768, 28.683842524919747 ], [ -82.080601250874494, 28.684263134702995 ], [ -82.080314326832834, 28.684536761933259 ], [ -82.080110591673048, 28.684711592416601 ], [ -82.079970024839255, 28.68488131910782 ], [ -82.079866430981539, 28.685028091345554 ], [ -82.079772158682786, 28.685220725338912 ], [ -82.079637435527587, 28.685527179324591 ], [ -82.079597342872063, 28.685666463836455 ], [ -82.079606053289723, 28.68579559219911 ], [ -82.079629181560634, 28.686003205001416 ], [ -82.079642253922728, 28.686202276770761 ], [ -82.079631835410922, 28.68666437889657 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 545A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100117730559973, 28.711267824114596 ], [ -82.100060704522363, 28.711181804696189 ], [ -82.100051707264029, 28.710980997526459 ], [ -82.100072822525078, 28.709666176937027 ], [ -82.100082201487339, 28.708902835545963 ], [ -82.10007366638385, 28.708815442386623 ], [ -82.100049521464157, 28.708722043047565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 545", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103133314055924, 28.708753091261013 ], [ -82.101304401760657, 28.708740585143769 ], [ -82.100771531557726, 28.708745294545928 ], [ -82.100092023307695, 28.708724640367478 ], [ -82.100049521464157, 28.708722043047565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 545", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100049521464157, 28.708722043047565 ], [ -82.100048216439745, 28.708721963696984 ], [ -82.099931155464716, 28.708610535331641 ], [ -82.099775063191373, 28.708475530515873 ], [ -82.099515252577802, 28.708293196500769 ], [ -82.099029635268806, 28.707992835527353 ], [ -82.098378126165841, 28.707599616619504 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 548", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087916380234176, 28.668424313956045 ], [ -82.08734633898932, 28.668424679187694 ], [ -82.084431498899818, 28.668452654344556 ], [ -82.084230721333242, 28.668504316635087 ], [ -82.084031069260391, 28.668605099129636 ], [ -82.083718844926992, 28.66881266824538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rivera Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957525241340605, 28.931040904698317 ], [ -81.957603689823827, 28.931007283859511 ], [ -81.957682137521871, 28.930993020805843 ], [ -81.957802356556257, 28.930996076873072 ], [ -81.957907530450612, 28.931018477820874 ], [ -81.958257616373345, 28.931121174579907 ], [ -81.958272854671293, 28.931126336840276 ], [ -81.958287702801769, 28.931132530300406 ], [ -81.958301376879206, 28.931140441362849 ], [ -81.958314268985646, 28.931149382601347 ], [ -81.958325987315817, 28.931159355698888 ], [ -81.958336535972762, 28.931170359754756 ], [ -81.958345518023293, 28.931182394645916 ], [ -81.958353131558837, 28.931195117562194 ], [ -81.958359184780036, 28.93120852663964 ], [ -81.958363672696009, 28.931222279004974 ], [ -81.95836640248065, 28.931236374598431 ], [ -81.958367374133303, 28.931250813420103 ], [ -81.958366781642752, 28.931265251756006 ], [ -81.958357927923274, 28.931418571432406 ], [ -81.958353210063009, 28.931489389271793 ], [ -81.958349462824444, 28.931574644126485 ], [ -81.958347676459724, 28.931645117295904 ], [ -81.958350798838069, 28.931680215723368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Soledad Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964305511808078, 28.938266246785009 ], [ -81.964000228732331, 28.938302224351215 ], [ -81.963609920680227, 28.938339234739182 ], [ -81.963351481227178, 28.93834148407915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Soledad Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963351481227178, 28.93834148407915 ], [ -81.963193256734939, 28.938336801103397 ], [ -81.963003393294741, 28.938306592338972 ], [ -81.962758162142393, 28.938243890763076 ], [ -81.962605731106393, 28.938194066947968 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000525249869895, 28.933014181613913 ], [ -82.000610988519995, 28.932897887531393 ], [ -82.000691791458863, 28.932801288687823 ], [ -82.00077833500454, 28.932711950549777 ], [ -82.000932128812522, 28.932566166415864 ], [ -82.00113665328378, 28.932431723729664 ], [ -82.00164796965548, 28.932079460058187 ], [ -82.002268472278118, 28.931665772954137 ], [ -82.003066123873637, 28.931128080974826 ], [ -82.003178001352396, 28.93105334895294 ], [ -82.003271232219973, 28.930982265196562 ], [ -82.003370679136111, 28.930898421891452 ], [ -82.003533024733144, 28.930751677241627 ], [ -82.003633794753597, 28.930648714080135 ], [ -82.003767108851164, 28.930486121900127 ], [ -82.003940412950925, 28.930234967420962 ], [ -82.004010849788429, 28.930114672549603 ], [ -82.004095790082459, 28.929932404925403 ], [ -82.004143434817351, 28.929792060681986 ], [ -82.004189009795184, 28.929598860028324 ], [ -82.004216837141783, 28.92933083070054 ], [ -82.004215927819928, 28.929174182362591 ], [ -82.004206501355227, 28.929040143965967 ], [ -82.004130958561618, 28.928494341313382 ], [ -82.004057769669174, 28.927957334086166 ], [ -82.004039177531411, 28.927737501139248 ], [ -82.004041835483861, 28.927459083396474 ], [ -82.004038172257765, 28.927262226996639 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000225791988456, 28.941906658679152 ], [ -82.000225800198535, 28.941904317227529 ], [ -82.000225604485763, 28.941167201139933 ], [ -82.000225605096603, 28.940802672709488 ], [ -82.000227677637753, 28.940496469430638 ], [ -82.000233613204898, 28.939517124308054 ], [ -82.000229709988204, 28.939043119561077 ], [ -82.00023361586895, 28.937851239765237 ], [ -82.000239475466699, 28.936781294898214 ], [ -82.00024101237446, 28.936533143241274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00389887675307, 28.927260418734814 ], [ -82.003904168846645, 28.927531264222285 ], [ -82.003904177106847, 28.927777320168389 ], [ -82.003886055462928, 28.927968697461132 ], [ -82.003862752481012, 28.928105396681115 ], [ -82.003749763641167, 28.929006512664362 ], [ -82.003733299276846, 28.929176200491671 ], [ -82.003735898715377, 28.929479214598928 ], [ -82.00373332081378, 28.929850576765489 ], [ -82.003722965792619, 28.929978162435681 ], [ -82.003699661428371, 28.930092077735633 ], [ -82.003673767162212, 28.93020371569747 ], [ -82.003627154722935, 28.930319909817765 ], [ -82.003554645153031, 28.930463444944415 ], [ -82.003464006722936, 28.93060242293323 ], [ -82.003383726050686, 28.930700391333573 ], [ -82.003306448876458, 28.930779951903677 ], [ -82.003236110726192, 28.93084164955642 ], [ -82.003168776591878, 28.930900886554902 ], [ -82.003095126168986, 28.930953106491984 ], [ -82.003012254042233, 28.931009609752721 ], [ -82.002922751046157, 28.931071763250817 ], [ -82.00270003141506, 28.931219858881317 ], [ -82.002275306456212, 28.931502372680086 ], [ -82.001897196569416, 28.931757546034234 ], [ -82.001705551567113, 28.931880577548895 ], [ -82.001280822290397, 28.932167645682128 ], [ -82.000990760603386, 28.932368137791844 ], [ -82.000840551750528, 28.932475218054496 ], [ -82.000755086378973, 28.93254584444492 ], [ -82.000599697439043, 28.932700770428472 ], [ -82.0004935140539, 28.932832911505361 ], [ -82.000397235414724, 28.932969465629711 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000551702908325, 28.945504559659664 ], [ -82.000571876513646, 28.945571443925022 ], [ -82.000688435701747, 28.945901797638445 ], [ -82.00078556751626, 28.946166647516733 ], [ -82.000834134245864, 28.946328977119141 ], [ -82.000889178352253, 28.946539719205699 ], [ -82.000928032239287, 28.946759004223843 ], [ -82.000950695453625, 28.94691848531053 ], [ -82.000966886769447, 28.947066574063193 ], [ -82.000976601292408, 28.947251685711052 ], [ -82.000976601037863, 28.947391231603692 ], [ -82.000979838966629, 28.947468124078338 ], [ -82.000976603071052, 28.947573493836199 ], [ -82.000973364075804, 28.947676017761129 ], [ -82.000963653124771, 28.947778541706924 ], [ -82.000957176654637, 28.947892456182469 ], [ -82.000944226095726, 28.947994979232355 ], [ -82.000911848794686, 28.948194330072681 ], [ -82.0008827097042, 28.948345268379263 ], [ -82.000853570442729, 28.948476269618698 ], [ -82.000788815502887, 28.948715490100145 ], [ -82.000724060513591, 28.949034451548517 ], [ -82.000681968767211, 28.949233801417723 ], [ -82.000656066616855, 28.949384738746069 ], [ -82.00063016442293, 28.949549915143706 ], [ -82.000597786054882, 28.949757810573537 ], [ -82.000575122401287, 28.949994182332542 ], [ -82.000555696234528, 28.950230555882715 ], [ -82.000542745130701, 28.950435602731435 ], [ -82.000533029453962, 28.950583691465997 ], [ -82.000529794124631, 28.950760259247364 ], [ -82.000526555717101, 28.950945370829707 ], [ -82.000529794634431, 28.95117035199333 ], [ -82.000536270106139, 28.951349768292928 ], [ -82.000549222024233, 28.951626012267905 ], [ -82.000555698443378, 28.9517114476056 ], [ -82.000556431949363, 28.951718941141834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Saddlebrook Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00004839870256, 28.932682544138864 ], [ -82.000091819677351, 28.932732201175551 ], [ -82.000140667552941, 28.932788541510579 ], [ -82.000207969525647, 28.932851568778698 ], [ -82.000290469114717, 28.932908864664164 ], [ -82.000397235414724, 28.932969465629711 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palm Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990666630929653, 28.656026435939665 ], [ -81.99066986280225, 28.656208438921766 ], [ -81.990683881226488, 28.656411822585007 ], [ -81.990723807326731, 28.656529244434477 ], [ -81.990777045349958, 28.656638839449247 ], [ -81.990843593962921, 28.656744521942265 ], [ -81.990942015377371, 28.656846463715198 ], [ -81.991068144338556, 28.656965376608177 ], [ -81.991069064976656, 28.656966037179767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Battlefield Pkwy", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124954796489803, 28.654121636058111 ], [ -82.124973846975251, 28.654055968378817 ], [ -82.124980492057475, 28.654041249731286 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 615B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133317713256346, 28.646739397769785 ], [ -82.134484444143922, 28.646734354881428 ], [ -82.135960527746008, 28.646750934093916 ], [ -82.137336190421095, 28.646766387484167 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 17th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13327100983841, 28.648576199358605 ], [ -82.133275831291982, 28.648480252997469 ], [ -82.13326413565575, 28.647101496720762 ], [ -82.133262048516741, 28.646991829868572 ], [ -82.133268583003172, 28.646922408655755 ], [ -82.13328931985285, 28.646860746274161 ], [ -82.133302816298908, 28.646817399344531 ], [ -82.133313433047718, 28.646779513453158 ], [ -82.133317713256346, 28.646739397769785 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 617", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.152028786004962, 28.657578263644822 ], [ -82.152025769803743, 28.657557393336369 ], [ -82.15202445065546, 28.657529364729037 ], [ -82.152024285230553, 28.6574678402242 ], [ -82.152033705369533, 28.657132541619347 ], [ -82.152050944139177, 28.657054079838929 ], [ -82.152083389111482, 28.656990909164435 ], [ -82.152144059874885, 28.656948749373115 ], [ -82.152215623210736, 28.656939104694807 ], [ -82.152314651093533, 28.656934041098385 ], [ -82.152705342172283, 28.656940229528633 ], [ -82.153160324913287, 28.656943646583318 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 619", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.161860977448953, 28.65608894916457 ], [ -82.161861516819712, 28.655680571446098 ], [ -82.161865237528616, 28.655278794099328 ], [ -82.161875121688041, 28.654653162143788 ], [ -82.161877040743988, 28.654490536822287 ], [ -82.161867785080346, 28.654412616894337 ], [ -82.161837279413604, 28.654232656574742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 620", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.239157564807215, 28.645470355013799 ], [ -82.240029399879759, 28.645474463773638 ], [ -82.240996179210583, 28.645477362797301 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 83rd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.240996179210583, 28.645477362797301 ], [ -82.240998393740128, 28.645477368797849 ], [ -82.241025798292583, 28.645475934239617 ], [ -82.241254144280873, 28.645463970393774 ], [ -82.241310186585835, 28.645454233132359 ], [ -82.241368328643617, 28.645437706580577 ], [ -82.241410188883648, 28.645425313623004 ], [ -82.241459022824927, 28.645408802656043 ], [ -82.241517113137036, 28.645369694361115 ], [ -82.241575194002664, 28.645326479543147 ], [ -82.241614658675829, 28.645283296879725 ], [ -82.241656402286623, 28.645219581188989 ], [ -82.241686490933986, 28.645147673172314 ], [ -82.241845945116353, 28.644658787439784 ], [ -82.2418887582172, 28.644554010934264 ], [ -82.241937355266032, 28.644434853574534 ], [ -82.241992954075343, 28.644323894960845 ], [ -82.242046242568989, 28.644221152564274 ], [ -82.242101882529752, 28.644128670894087 ], [ -82.24217148064362, 28.64403411063191 ], [ -82.242405749449603, 28.643697008532254 ], [ -82.242442851124522, 28.643639458381884 ], [ -82.242489149489359, 28.643532623556094 ], [ -82.24252611995216, 28.643417592319295 ], [ -82.242878132771992, 28.642256408021794 ], [ -82.243016618100143, 28.642103191719606 ], [ -82.243175728067925, 28.641855688824446 ], [ -82.243255284149811, 28.641749615356602 ], [ -82.243323053522914, 28.641655328451421 ], [ -82.243361357592136, 28.641572827284001 ], [ -82.243387875773024, 28.641454968533768 ], [ -82.243399661565888, 28.641266393248799 ], [ -82.243405554802138, 28.64098647722135 ], [ -82.243399926804457, 28.640846630199285 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 319", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.195380153868115, 28.690913920496939 ], [ -82.195359103658504, 28.690155158925744 ], [ -82.19539656662208, 28.689917318233967 ], [ -82.195406200157464, 28.68985618791551 ], [ -82.195475496459153, 28.689847492727271 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.195475496459153, 28.689847492727271 ], [ -82.195487647705576, 28.689874794135786 ], [ -82.195502618562756, 28.68991774507294 ], [ -82.195555564495507, 28.689998841443224 ], [ -82.19562347240587, 28.690116920730116 ], [ -82.195696767130542, 28.690220668674581 ], [ -82.195780903758106, 28.690330368059161 ], [ -82.195855518118876, 28.690415013537958 ], [ -82.195933755523711, 28.690493828324609 ], [ -82.196035658994418, 28.690570362146389 ], [ -82.196148669603176, 28.690646879865859 ], [ -82.196256094422722, 28.69070709056469 ], [ -82.196367209524695, 28.690760767505978 ], [ -82.196487791768647, 28.690815186823823 ], [ -82.196602678911006, 28.690862768308723 ], [ -82.196675047371897, 28.69089386071612 ], [ -82.196813981665215, 28.690924536409476 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.195375816518919, 28.688949601318118 ], [ -82.195378269154702, 28.689050425730894 ], [ -82.195378272485755, 28.689050566489268 ], [ -82.195380071626687, 28.689124573749144 ], [ -82.195438376249143, 28.689687112188736 ], [ -82.195463472542158, 28.689787347300999 ], [ -82.195475496459153, 28.689847492727271 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 632", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.224005381840044, 28.638162276856754 ], [ -82.222969387773873, 28.638176255184028 ], [ -82.222906618355381, 28.638168450000745 ], [ -82.222852800580995, 28.638155355981358 ], [ -82.222810081785028, 28.638127023191743 ], [ -82.222760802397488, 28.638096090679792 ], [ -82.222622293840871, 28.637963279104387 ], [ -82.222334771789249, 28.637657932090004 ], [ -82.222072332284782, 28.637385612242468 ], [ -82.221926695707523, 28.637250397827852 ], [ -82.221834347070228, 28.637185816805871 ], [ -82.221693577829967, 28.637111615447932 ], [ -82.22158452375345, 28.637074575450303 ], [ -82.221151712694621, 28.636870593354274 ], [ -82.220908895488321, 28.636746934964194 ], [ -82.220749207929359, 28.636676622618925 ], [ -82.220651031094917, 28.636664605794483 ], [ -82.220396520284226, 28.63669613535761 ], [ -82.220059172989451, 28.636716977671316 ], [ -82.219890438596281, 28.636738521234996 ], [ -82.219725086836164, 28.636756791772978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 90th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.240429540753482, 28.625280852088011 ], [ -82.240435940140316, 28.625295445973489 ], [ -82.240442100455866, 28.625327656569908 ], [ -82.240451327690096, 28.625370604946642 ], [ -82.24046059978474, 28.625432349785918 ], [ -82.240467369639418, 28.625733087007404 ], [ -82.240462733100983, 28.626369501273057 ], [ -82.240449166769508, 28.627094545063304 ], [ -82.24044835036581, 28.628071980857285 ], [ -82.240431354956698, 28.628627859016671 ], [ -82.240441746779908, 28.628925610185931 ], [ -82.240444379327158, 28.629001086727655 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Havana Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958960363339685, 28.879342190883225 ], [ -81.958955106181506, 28.879150897710147 ], [ -81.958920546939055, 28.878869263436901 ], [ -81.958889089702367, 28.878614213707724 ], [ -81.958846183129964, 28.878290980723996 ], [ -81.958836798585949, 28.87824016742762 ], [ -81.958817536443163, 28.87818239074484 ], [ -81.958782173522167, 28.87813452902375 ], [ -81.958736853104298, 28.878102828970871 ], [ -81.95869019133869, 28.878085210714772 ], [ -81.95864352686965, 28.878076981794589 ], [ -81.958570196213756, 28.87806639684397 ], [ -81.958462201193058, 28.878053454247848 ], [ -81.95834220520311, 28.878036987060884 ], [ -81.958196878290281, 28.878016991102022 ], [ -81.958122213610849, 28.878009926274174 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Havana Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958122213610849, 28.878009926274174 ], [ -81.958049222347469, 28.8779918132417 ], [ -81.95792991218957, 28.877960492208956 ], [ -81.957822712653254, 28.877925393327732 ], [ -81.957735237996076, 28.877890300570591 ], [ -81.957639605785161, 28.877848995542216 ], [ -81.957540959323012, 28.877796153563487 ], [ -81.957492251995816, 28.877765326350701 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hackney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956748327456424, 28.879291033588469 ], [ -81.956745690913124, 28.879221791914283 ], [ -81.95670715370305, 28.878906087595595 ], [ -81.956667270836903, 28.878624418541424 ], [ -81.956643344038611, 28.87844719965597 ], [ -81.95663802837484, 28.878406123358449 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Havana Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957492251995816, 28.877765326350701 ], [ -81.957409369601592, 28.877711775543279 ], [ -81.957309025104664, 28.877630605990099 ], [ -81.957219727504508, 28.877544906716121 ], [ -81.957135757871782, 28.8774662488422 ], [ -81.957063785788293, 28.877396986812006 ], [ -81.957025134150882, 28.877361766628486 ], [ -81.956991814825884, 28.877327722938546 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hackney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95663802837484, 28.878406123358449 ], [ -81.956630092862312, 28.878251209113852 ], [ -81.956636836407526, 28.878066960359693 ], [ -81.95665556453649, 28.877917923286507 ], [ -81.956687630662444, 28.877764194930656 ], [ -81.956734349603309, 28.877638635735735 ], [ -81.956791726713135, 28.877533033455716 ], [ -81.956839756772183, 28.877466154943789 ], [ -81.956925128441171, 28.877372296936482 ], [ -81.956991814825884, 28.877327722938546 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Havana Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956991814825884, 28.877327722938546 ], [ -81.956914509088676, 28.877256108622742 ], [ -81.956842537784993, 28.877185670773375 ], [ -81.95675190826725, 28.877099972561208 ], [ -81.956665274923324, 28.877016621561697 ], [ -81.956577307120568, 28.876940309834172 ], [ -81.956506669960405, 28.876869873136279 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Havana Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956506669960405, 28.876869873136279 ], [ -81.956441363672155, 28.876804130100094 ], [ -81.956384062615484, 28.876731349871388 ], [ -81.956336088862841, 28.87666209343266 ], [ -81.956281549932712, 28.876583805503124 ], [ -81.956258806963703, 28.87654588426977 ], [ -81.956229495104282, 28.876493063885345 ], [ -81.956181329555136, 28.876405116140084 ], [ -81.956140777935289, 28.876302111441763 ], [ -81.956105000687202, 28.876203314822405 ], [ -81.956083548015158, 28.876110826358879 ], [ -81.956074039609859, 28.876009935048877 ], [ -81.956071684874885, 28.87593006520402 ], [ -81.956081269016835, 28.87585440038114 ], [ -81.956090849450689, 28.875785043549641 ], [ -81.956107594458828, 28.875715688155893 ], [ -81.956145848904441, 28.87560430333156 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Keystone Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956218547901628, 28.8771608251419 ], [ -81.956275908419912, 28.877092775973722 ], [ -81.956383955531535, 28.876983667758022 ], [ -81.956449314067967, 28.876922664480336 ], [ -81.956506669960405, 28.876869873136279 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sebring Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956218547901628, 28.8771608251419 ], [ -81.956163117195345, 28.877111031574834 ], [ -81.956097259804025, 28.877049296219749 ], [ -81.956055942707351, 28.877010554103414 ], [ -81.956013297938966, 28.876960077102407 ], [ -81.955925351038417, 28.87683095502604 ], [ -81.95582808455903, 28.87667366176165 ], [ -81.955777460884804, 28.876571545120065 ], [ -81.95570686260146, 28.876414264149453 ], [ -81.955642944441252, 28.87622060181873 ], [ -81.955625645214326, 28.876144313683618 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sebring Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955625645214326, 28.876144313683618 ], [ -81.955615015401662, 28.876058639296339 ], [ -81.955612405743778, 28.87592367750112 ], [ -81.955612429312737, 28.875866172893566 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vidalia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954988372257205, 28.876010314610134 ], [ -81.955151024559015, 28.87604205515736 ], [ -81.955560314282778, 28.876136076624473 ], [ -81.955625645214326, 28.876144313683618 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vidalia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954569752346288, 28.875908071887743 ], [ -81.954769732780093, 28.875952736554822 ], [ -81.954914522787931, 28.875987624015366 ], [ -81.954988372257205, 28.876010314610134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Keystone Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95593549732844, 28.878058516628226 ], [ -81.95594087548335, 28.877951722851062 ], [ -81.955962272005806, 28.877802686747984 ], [ -81.955975641400599, 28.877719367163657 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nehaul Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955975641400599, 28.877719367163657 ], [ -81.95590764458629, 28.877709955505168 ], [ -81.955866314848279, 28.877702900367062 ], [ -81.955810319821694, 28.877685278948785 ], [ -81.955749001103953, 28.877653572625764 ], [ -81.955671688981184, 28.877600736305823 ], [ -81.955577050881772, 28.877531464196995 ], [ -81.955542397280837, 28.877502112580878 ], [ -81.955411792301476, 28.877358893827829 ], [ -81.955339840104116, 28.87724385981458 ], [ -81.955283884879421, 28.877139392531738 ], [ -81.955226600113832, 28.877025537231507 ], [ -81.955148001178685, 28.87686825150762 ], [ -81.955076066887827, 28.876715661738558 ], [ -81.955017466183847, 28.876564250288578 ], [ -81.954972198999528, 28.876411671189818 ], [ -81.954948240422681, 28.876315430839863 ], [ -81.954924288011924, 28.876207453341252 ], [ -81.954918988420445, 28.876128822254341 ], [ -81.954927004317952, 28.876094791012598 ], [ -81.954943017229198, 28.876063110242836 ], [ -81.954988372257205, 28.876010314610134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Keystone Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955975641400599, 28.877719367163657 ], [ -81.956025041990671, 28.877559776071223 ], [ -81.956062420341681, 28.8774565135367 ], [ -81.956103789743509, 28.877372031001968 ], [ -81.956165172424235, 28.877257040940226 ], [ -81.956218547901628, 28.8771608251419 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981922161917751, 28.895080267744458 ], [ -81.982103694906073, 28.895125691409429 ], [ -81.982219867936834, 28.895155960138105 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Andrews Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982140276437192, 28.896157473243896 ], [ -81.982111824391467, 28.896094874206085 ], [ -81.982098793638642, 28.896041666559803 ], [ -81.982088134721764, 28.89598115691944 ], [ -81.982079846319152, 28.89590917124718 ], [ -81.982077490503727, 28.895830927117721 ], [ -81.982077503840472, 28.895754769422094 ], [ -81.982079886618806, 28.895684871296229 ], [ -81.982089379949201, 28.895632710627805 ], [ -81.982103614706048, 28.895578462672532 ], [ -81.982175976115315, 28.895321832159805 ], [ -81.982219867936834, 28.895155960138105 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bethune Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982140276437192, 28.896157473243896 ], [ -81.982181651406364, 28.896139352476222 ], [ -81.982324637271915, 28.896083679749321 ], [ -81.982432280828661, 28.896053726784924 ], [ -81.982549890580103, 28.896035078144624 ], [ -81.982635190642341, 28.896026671716204 ], [ -81.982766566673575, 28.896018000501289 ], [ -81.982881995751811, 28.896016010446875 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greer Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982881995751811, 28.896016010446875 ], [ -81.982879706940622, 28.895815693323517 ], [ -81.982883989665751, 28.895791423817506 ], [ -81.982902549140292, 28.89574145503834 ], [ -81.982953946770706, 28.895652938800126 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bethune Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983695304265254, 28.896040170327602 ], [ -81.983767444545137, 28.89605554979974 ], [ -81.983933743691537, 28.896107695782629 ], [ -81.984152663203105, 28.896189104887458 ], [ -81.98434465596668, 28.896257195242171 ], [ -81.98439684131894, 28.896274533631775 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cope Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983695304265254, 28.896040170327602 ], [ -81.983754962200649, 28.895804607027742 ], [ -81.983771127918487, 28.895749739252516 ], [ -81.98376636920058, 28.895718806037202 ], [ -81.983733056663667, 28.895647422858445 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bethune Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982881995751811, 28.896016010446875 ], [ -81.982959452815308, 28.896015352658125 ], [ -81.983175123990264, 28.896010702504043 ], [ -81.983409678271315, 28.896007501642753 ], [ -81.983573748683696, 28.896017834327349 ], [ -81.983652020957976, 28.896029472779816 ], [ -81.983695304265254, 28.896040170327602 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilson Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013411323251617, 28.915338478599921 ], [ -82.013411360089904, 28.91563412518509 ], [ -82.013414496760674, 28.915853311732572 ], [ -82.01343007477945, 28.915889848754286 ], [ -82.013454303218253, 28.915927908023182 ], [ -82.013483723739768, 28.9159568310344 ], [ -82.013518333838078, 28.915981187015827 ], [ -82.013565056126808, 28.916004017840116 ], [ -82.013623889262604, 28.916014669174331 ], [ -82.013940542085123, 28.916016162972944 ], [ -82.014614911995736, 28.916015525847964 ], [ -82.01521308638867, 28.916017134961912 ], [ -82.015507894626793, 28.916017939899774 ], [ -82.015582461051665, 28.916047118197199 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016775752379289, 28.913965714794177 ], [ -82.016818372113747, 28.914018739457667 ], [ -82.01686161500335, 28.914075794592438 ], [ -82.016956990889341, 28.914170018916174 ], [ -82.017027371179253, 28.914230380316038 ], [ -82.017113586030803, 28.914289190489981 ], [ -82.017217391178974, 28.914334067871685 ], [ -82.017322954668671, 28.914369656709365 ], [ -82.017454905385065, 28.914399049693664 ], [ -82.01758509565343, 28.914423801355436 ], [ -82.01774695677301, 28.914456286050743 ], [ -82.017919370124247, 28.914481032898102 ], [ -82.018060114515407, 28.914496493592903 ], [ -82.018220211644604, 28.914502664262859 ], [ -82.018362714764621, 28.914505741287883 ], [ -82.018531607160142, 28.914515006205782 ], [ -82.018675872716813, 28.914527370006333 ], [ -82.018751735536185, 28.91453514570361 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Onslow Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962741910003444, 28.881794107072977 ], [ -81.962748569391039, 28.881575167294386 ], [ -81.962744852030255, 28.881278881153598 ], [ -81.96274203836623, 28.881069568089863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Devonshire Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96274203836623, 28.881069568089863 ], [ -81.962846022489401, 28.881065224364136 ], [ -81.962929498892592, 28.8810496872591 ], [ -81.963002075376039, 28.881031920217776 ], [ -81.963094324112205, 28.881002118237593 ], [ -81.963178449734599, 28.88097112112299 ], [ -81.96324531482513, 28.880939044588491 ], [ -81.963318297397308, 28.880900310707815 ], [ -81.963362341402828, 28.880867104509683 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Devonshire Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962016650211609, 28.880922324810207 ], [ -81.962077577333105, 28.880939186202511 ], [ -81.962292929778584, 28.881006326675401 ], [ -81.962377210833708, 28.881030709760243 ], [ -81.962452687274521, 28.881050661833839 ], [ -81.962526910483376, 28.88106064849778 ], [ -81.962606167094336, 28.881068420470953 ], [ -81.962669068631442, 28.8810717620606 ], [ -81.96274203836623, 28.881069568089863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Onslow Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962746480764366, 28.882710567663729 ], [ -81.96272639034288, 28.882598724551229 ], [ -81.962712578626096, 28.882525640627623 ], [ -81.962702536037014, 28.882462522764804 ], [ -81.962701298863024, 28.882404944771217 ], [ -81.96271266950842, 28.882273180360581 ], [ -81.962725313399119, 28.88210155262729 ], [ -81.962735441327936, 28.881918853854508 ], [ -81.962741910003444, 28.881794107072977 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jem Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963970984974537, 28.882367136957495 ], [ -81.96376461368888, 28.882413426289332 ], [ -81.963599764898987, 28.882464260638525 ], [ -81.963403272892137, 28.882525400365488 ], [ -81.963177871861902, 28.882596499598058 ], [ -81.962972589536108, 28.882660040916047 ], [ -81.962833294844387, 28.882693983075683 ], [ -81.962746480764366, 28.882710567663729 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Devonshire Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961514486395416, 28.880899017881998 ], [ -81.96178097027304, 28.880884868339329 ], [ -81.961838806259848, 28.880885502871759 ], [ -81.961916803787616, 28.880898813218881 ], [ -81.962016650211609, 28.880922324810207 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961523498812738, 28.88193403237187 ], [ -81.961535313257514, 28.881690414390551 ], [ -81.961535444380729, 28.881337189596298 ], [ -81.961524229419609, 28.881045970395451 ], [ -81.961514486395416, 28.880899017881998 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beckett Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980168696998177, 28.868152005985067 ], [ -81.980195161558811, 28.868051910179499 ], [ -81.980241438409251, 28.867860118912418 ], [ -81.980268242361234, 28.867716082768581 ], [ -81.980277174743719, 28.867683349421554 ], [ -81.980296519736029, 28.867638829014144 ], [ -81.980330742222179, 28.867599551370084 ], [ -81.980370912557646, 28.867573368816874 ], [ -81.980414054775864, 28.867556351382365 ], [ -81.980469097763489, 28.867544574445674 ], [ -81.980530337126353, 28.867538202283612 ], [ -81.980772564407431, 28.867536761154927 ], [ -81.981009090006225, 28.867526319207375 ], [ -81.981212887867301, 28.867527658137892 ], [ -81.98129169286824, 28.867546366717487 ], [ -81.981384784563616, 28.867561599763363 ], [ -81.981477028512202, 28.867565830842146 ], [ -81.981563350109525, 28.86756244560058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022158796910247, 28.915605445944109 ], [ -82.022206460855884, 28.915606443451228 ], [ -82.022297281836657, 28.915604555657282 ], [ -82.02239043545238, 28.91560563327333 ], [ -82.022508426502242, 28.915604520515156 ], [ -82.022617130358569, 28.91560749296956 ], [ -82.02271350998231, 28.915616961193066 ], [ -82.022796240077014, 28.915631295883017 ], [ -82.022873537025987, 28.915650372991301 ], [ -82.022935551419891, 28.915672361599206 ], [ -82.023015568950555, 28.915704908560855 ], [ -82.023081585965357, 28.915740974968831 ], [ -82.023141601529673, 28.915776163513478 ], [ -82.023178612299162, 28.915804316177681 ], [ -82.023219624964895, 28.915838628137625 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021413118085505, 28.915587765647295 ], [ -82.021471624081116, 28.915595609265363 ], [ -82.021604231677884, 28.915599201409009 ], [ -82.021706077742095, 28.915601369919123 ], [ -82.021829240903344, 28.915602463961648 ], [ -82.02193985484395, 28.915603385740727 ], [ -82.022055275382669, 28.915604415839898 ], [ -82.022158796910247, 28.915605445944109 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Benavides Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997000561391175, 28.954789246227939 ], [ -81.997145560672763, 28.954798277913117 ], [ -81.997311090377409, 28.954803924483411 ], [ -81.997437483080901, 28.954809005221932 ], [ -81.997719780835567, 28.954809010690639 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Benavides Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996495718738416, 28.95475438141035 ], [ -81.996655388165706, 28.954766664982444 ], [ -81.996769591987871, 28.954774568396655 ], [ -81.996885076073426, 28.954784729279343 ], [ -81.997000561391175, 28.954789246227939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997008943979196, 28.953495771346482 ], [ -81.997217456217498, 28.953502683150987 ], [ -81.997480505518269, 28.953513974562313 ], [ -81.997548512291971, 28.953524133012277 ], [ -81.997612669650067, 28.953545577221945 ], [ -81.997662711409092, 28.953583949036137 ], [ -81.997698638954205, 28.953625706873083 ], [ -81.997713754238262, 28.953671230486069 ], [ -81.997721129890024, 28.953730063663635 ], [ -81.99772040096731, 28.953791116330208 ], [ -81.997720398214597, 28.95385837046171 ], [ -81.997720395962247, 28.953946092181734 ], [ -81.997721317937518, 28.954037742496382 ], [ -81.997720392908633, 28.954144929339495 ], [ -81.99772038747831, 28.954276510560046 ], [ -81.997720386026543, 28.954373005258105 ], [ -81.997720381697107, 28.9545016648533 ], [ -81.9977203795696, 28.954624475790677 ], [ -81.997720375765709, 28.954732665989773 ], [ -81.997719780835567, 28.954809010690639 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Malacara Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997008943979196, 28.953495771346482 ], [ -81.997001874999356, 28.953829963866315 ], [ -81.997001869083306, 28.954011663797406 ], [ -81.997000582675369, 28.954135805593538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Malacara Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997000582675369, 28.954135805593538 ], [ -81.997002270575024, 28.954220939576704 ], [ -81.997002263911298, 28.9544256235768 ], [ -81.997000561391175, 28.954789246227939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "De La Rosa Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994764898981927, 28.953788887701926 ], [ -81.994841885709704, 28.953829518278038 ], [ -81.995049757149999, 28.953879183103254 ], [ -81.995225548942898, 28.953913047297739 ], [ -81.995391073842214, 28.953944652460471 ], [ -81.995579697807543, 28.953976260016621 ], [ -81.995811949627367, 28.954015767396186 ], [ -81.996057031756564, 28.954047375203679 ], [ -81.99625250009025, 28.954072585679164 ], [ -81.99645224455162, 28.954094786845939 ], [ -81.996720854082128, 28.954119998650075 ], [ -81.997000582675369, 28.954135805593538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994764898981927, 28.953788887701926 ], [ -81.994813663126322, 28.953721175356751 ], [ -81.994897073825427, 28.953608322694343 ], [ -81.995003584662413, 28.953467254396124 ], [ -81.995067381695264, 28.953402141134454 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994381818433993, 28.954289361293952 ], [ -81.994404070101751, 28.954271132347568 ], [ -81.994472234160639, 28.954188690146577 ], [ -81.994542056742489, 28.954092200197639 ], [ -81.994609624052259, 28.953999923820653 ], [ -81.99466223881214, 28.95392769662347 ], [ -81.994713569084837, 28.953855471157265 ], [ -81.994764898981927, 28.953788887701926 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harley Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983302519972327, 28.915030991265578 ], [ -81.983415389246858, 28.914944307240027 ], [ -81.983479403093895, 28.914896149669115 ], [ -81.983535942124448, 28.914853339059132 ], [ -81.983591237415069, 28.914808998878438 ], [ -81.983622696465375, 28.914773250127833 ], [ -81.983665880788394, 28.914707593463046 ], [ -81.983685226899325, 28.914669436785921 ], [ -81.983706730927551, 28.914591058671348 ], [ -81.983713966107004, 28.914538118174672 ], [ -81.9837116308764, 28.914474863251783 ], [ -81.983697186915165, 28.914402668692286 ], [ -81.983658716075965, 28.914307438247615 ], [ -81.983622780374489, 28.914250365346717 ], [ -81.98356496357728, 28.914187104492626 ], [ -81.983504800249719, 28.914144468933877 ], [ -81.983415922584982, 28.914085327665898 ], [ -81.98334852988846, 28.914040973163385 ], [ -81.983288366352127, 28.91400693188783 ], [ -81.983230741255113, 28.913977359982542 ], [ -81.983163347975463, 28.91394366151658 ], [ -81.983100838161292, 28.913916151589941 ], [ -81.983035793232844, 28.913889346908128 ], [ -81.982983046331455, 28.913867319623876 ], [ -81.9829231051189, 28.913841973651003 ], [ -81.982867596846376, 28.913818488757769 ], [ -81.982807432090738, 28.913793385422466 ], [ -81.982766603815804, 28.913776191390816 ], [ -81.982615312298137, 28.913722057382287 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bennett Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982568314785013, 28.914654371444197 ], [ -81.982720663959498, 28.914708141107813 ], [ -81.982850305999364, 28.914758983335545 ], [ -81.982926099366907, 28.914781965545405 ], [ -81.982989259838021, 28.914809389914652 ], [ -81.983054118257584, 28.914844948678116 ], [ -81.983116418855317, 28.914882023847696 ], [ -81.983180417423554, 28.914927234312824 ], [ -81.983249763737263, 28.914986991350133 ], [ -81.983302519972327, 28.915030991265578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harley Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981573854361557, 28.915283273284665 ], [ -81.981744216107856, 28.915325110047068 ], [ -81.981793666897602, 28.915338930971028 ], [ -81.981853555565152, 28.915357382080472 ], [ -81.981926916501536, 28.915381103501115 ], [ -81.982003836527753, 28.915407650453762 ], [ -81.982073576506707, 28.91543103745602 ], [ -81.982140971834284, 28.915456485856804 ], [ -81.982206023290317, 28.915479527485129 ], [ -81.98227126271091, 28.915501029788267 ], [ -81.982344622134747, 28.915528703943874 ], [ -81.982422470358756, 28.915555873364738 ], [ -81.982496897802449, 28.915581322513628 ], [ -81.982542607923648, 28.915594049087304 ], [ -81.982593204983644, 28.915604712730211 ], [ -81.982621924514348, 28.915604716475588 ], [ -81.982689324827547, 28.915596130862731 ], [ -81.982727813504354, 28.915583416172836 ], [ -81.982799909580606, 28.915526357914402 ], [ -81.982845636560128, 28.915469298934106 ], [ -81.982896242533371, 28.915414300507692 ], [ -81.982958768731493, 28.915348647458128 ], [ -81.983023640538292, 28.915280931124268 ], [ -81.983081476176864, 28.915225934449218 ], [ -81.983144000727464, 28.915168875690707 ], [ -81.983196950380972, 28.91512212895141 ], [ -81.983285850919344, 28.915046165813141 ], [ -81.983302519972327, 28.915030991265578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bishopville Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956465226526092, 28.892684870525724 ], [ -81.956432352080043, 28.892654539878318 ], [ -81.956397918857107, 28.892610426988313 ], [ -81.95637288604371, 28.892555291942312 ], [ -81.956358814606588, 28.892500161357372 ], [ -81.956352586064639, 28.892414711532751 ], [ -81.956352646972633, 28.892270004302752 ], [ -81.956354285091024, 28.892097731417078 ], [ -81.956362131286937, 28.89206190093017 ], [ -81.956373109716665, 28.892026072362853 ], [ -81.956398181362104, 28.891986114034076 ], [ -81.956460842281786, 28.891937898317522 ], [ -81.956517227562173, 28.891918621810284 ], [ -81.956617781338579, 28.891905747843751 ], [ -81.956742739403524, 28.891906290747979 ], [ -81.956880551999788, 28.891898067310194 ], [ -81.957048537574323, 28.89187503942798 ], [ -81.957196911662948, 28.891841662019651 ], [ -81.957326763815431, 28.891813606642348 ], [ -81.957430915983338, 28.891801085109492 ], [ -81.957509381746505, 28.891803620168414 ], [ -81.957589990485204, 28.891818358563722 ], [ -81.957687694499285, 28.891856409611535 ], [ -81.957863106852969, 28.891937084391078 ], [ -81.958064408682944, 28.892033503143892 ], [ -81.958227243333297, 28.892109353431369 ], [ -81.95840417114816, 28.892189342228061 ], [ -81.958595609669374, 28.892265275821419 ], [ -81.958815306002123, 28.892355069022358 ], [ -81.959091545851877, 28.892469323317805 ], [ -81.959144780271856, 28.892494146464834 ], [ -81.959185486120802, 28.892523101924084 ], [ -81.959226171425556, 28.892565241770875 ], [ -81.959249664971125, 28.892598919129327 ], [ -81.959265305785948, 28.892645782115569 ], [ -81.95926058136321, 28.892713311511955 ], [ -81.959233934233097, 28.892778077724127 ], [ -81.959187777594096, 28.892851251945309 ], [ -81.95911117327077, 28.892949205760779 ], [ -81.958980630748272, 28.89312861802436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hengan Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956886820421914, 28.894218708654918 ], [ -81.957053161956438, 28.894215723935336 ], [ -81.957265937294025, 28.894205717668694 ], [ -81.957441669805277, 28.89418215851499 ], [ -81.957616890240004, 28.894134429068817 ], [ -81.957798570914605, 28.894061605764456 ], [ -81.957983379185166, 28.89397193725776 ], [ -81.95815530260333, 28.893868514334258 ], [ -81.958362402338594, 28.893720066522267 ], [ -81.958601357106701, 28.893523845129028 ], [ -81.958803328208603, 28.893315597836516 ], [ -81.958980630748272, 28.89312861802436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcleod Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956884286944245, 28.893437007704055 ], [ -81.957078872847745, 28.893444640358435 ], [ -81.957312222955466, 28.893445430293813 ], [ -81.957411953537473, 28.893435601641169 ], [ -81.957495846895327, 28.893421917787546 ], [ -81.957594728407273, 28.893392244451732 ], [ -81.957674637261306, 28.893361333422696 ], [ -81.957751348864434, 28.893326203088268 ], [ -81.957852040635927, 28.893264362242878 ], [ -81.957969321323603, 28.893175280672246 ], [ -81.958066425192627, 28.893090939695423 ], [ -81.958125171031, 28.893036116252478 ], [ -81.958270857830598, 28.892832790458847 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Simpson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959591265321038, 28.893454015581291 ], [ -81.959831024576573, 28.893190412097763 ], [ -81.959993581550862, 28.893056042343655 ], [ -81.960257914350862, 28.892885264092204 ], [ -81.960473064413705, 28.892732620601379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Simpson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957117920659869, 28.895002860289654 ], [ -81.957381002933118, 28.894941887274275 ], [ -81.95770274544472, 28.894829571546193 ], [ -81.957934729497282, 28.894720082724138 ], [ -81.958178267614784, 28.894604647337477 ], [ -81.958439972225335, 28.894467172149984 ], [ -81.958617499367591, 28.894366159519933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958909509510818, 28.894705179151373 ], [ -81.959088068483098, 28.894579733751414 ], [ -81.959353525606815, 28.894366149858012 ], [ -81.959473411321284, 28.894259313231004 ], [ -81.959591774847738, 28.894150852799925 ], [ -81.959773495549996, 28.893963547567733 ], [ -81.959908298859034, 28.893810752771053 ], [ -81.959977304518148, 28.893734172632218 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wellford Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958909509510818, 28.894705179151373 ], [ -81.958700982128704, 28.894470925982954 ], [ -81.958617499367591, 28.894366159519933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95793912655698, 28.89520642627679 ], [ -81.957998124445481, 28.895177910432146 ], [ -81.95834787821795, 28.89501289861315 ], [ -81.958565546177866, 28.89490448070741 ], [ -81.958709192245777, 28.894827417162823 ], [ -81.958813189383378, 28.894765798596431 ], [ -81.958909509510818, 28.894705179151373 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Plaintain Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96153923129738, 28.877219092035435 ], [ -81.961707711081587, 28.877254145907461 ], [ -81.961875121485448, 28.877281583836496 ], [ -81.961930737587295, 28.877289215049263 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Judge Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961834713968301, 28.876406532478597 ], [ -81.962006937961533, 28.876487442035931 ], [ -81.96220121492145, 28.876565363745829 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barker Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978677948136564, 28.871695207535012 ], [ -81.978680356499339, 28.871490423971309 ], [ -81.978680474873713, 28.871231023642512 ], [ -81.978680519287309, 28.871016854835407 ], [ -81.978699046657454, 28.870947021343344 ], [ -81.978736081519756, 28.870898141361813 ], [ -81.97880485132228, 28.870860905205156 ], [ -81.978878905545628, 28.870837639301548 ], [ -81.979148662828663, 28.87083069778096 ], [ -81.979302053576632, 28.870828393653845 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hobbit Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978975329643404, 28.87009431110684 ], [ -81.979183995464837, 28.87013074533947 ], [ -81.979395743203355, 28.870160005512151 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Armondo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973114151965007, 28.935743341746804 ], [ -81.973482976800497, 28.936000789398499 ], [ -81.973595980121431, 28.93607537915587 ], [ -81.973725130662544, 28.936157073046758 ], [ -81.974196103617913, 28.936463623565984 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Armondo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972400281238976, 28.935245039682307 ], [ -81.973114151965007, 28.935743341746804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Armondo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973114151965007, 28.935743341746804 ], [ -81.972897069610369, 28.935987403698846 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Del Norte Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972238795003889, 28.937265102991702 ], [ -81.972314090598616, 28.937249635233588 ], [ -81.973035779250267, 28.937247324837923 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Del Norte Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973874575012715, 28.937249386173796 ], [ -81.974413810741694, 28.937249941610332 ], [ -81.974515092626632, 28.937276521786643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Luna Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968058352189871, 28.937266169883905 ], [ -81.968031793515408, 28.937373876691357 ], [ -81.96801069692286, 28.937491089561597 ], [ -81.968008924052427, 28.937528798708758 ], [ -81.968019893341776, 28.938064390360353 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ibarra Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973435217775773, 28.939253841105291 ], [ -81.973567161578757, 28.939265895733573 ], [ -81.973696425479844, 28.939272593689644 ], [ -81.973941374065191, 28.939275541630749 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sansores Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978518681510977, 28.939971189872161 ], [ -81.978657611330959, 28.939888832743815 ], [ -81.978703866442402, 28.939865024089542 ], [ -81.978736253625655, 28.939849834627033 ], [ -81.978770805290438, 28.939828949320848 ], [ -81.978809674724431, 28.939806162656126 ], [ -81.978840036611246, 28.93978311206418 ], [ -81.978863530608763, 28.939767313917013 ], [ -81.97888011488736, 28.939752730964425 ], [ -81.97889808159907, 28.939734501157151 ], [ -81.978914667393624, 28.939717486518898 ], [ -81.978932634343039, 28.939698041317282 ], [ -81.978951985522741, 28.939676164649942 ], [ -81.978964425215693, 28.939659150253792 ], [ -81.978981011984658, 28.939637273146406 ], [ -81.978993450642662, 28.939620257845011 ], [ -81.979004509663014, 28.939603242325386 ], [ -81.97901556917742, 28.939583796025566 ], [ -81.979023861494838, 28.939567996361173 ], [ -81.979033538789196, 28.939546118160887 ], [ -81.97904598320703, 28.939510870205595 ], [ -81.979059812744424, 28.939453743647391 ], [ -81.979069497716068, 28.939394184755656 ], [ -81.979068181540015, 28.939068427619972 ], [ -81.979067018097453, 28.938537299386283 ], [ -81.979064800101185, 28.938513892632912 ], [ -81.979058782908226, 28.93849482261006 ], [ -81.979046743604741, 28.938475751641583 ], [ -81.978959221751495, 28.938369151700183 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baisley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967501109582656, 28.878558490604071 ], [ -81.967556361850271, 28.878445102682814 ], [ -81.967630030265767, 28.878300671877184 ], [ -81.967688591175872, 28.878184829532124 ], [ -81.967733000858601, 28.878075478525208 ], [ -81.967783511946564, 28.877969958336774 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baisley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967783511946564, 28.877969958336774 ], [ -81.967807014764603, 28.877899734211397 ], [ -81.967832185863088, 28.877821624362262 ], [ -81.967863274239008, 28.877739611664811 ], [ -81.967906214370458, 28.87759771150213 ], [ -81.967925463362448, 28.877535223573723 ], [ -81.967953585142084, 28.877475340903345 ], [ -81.967977262642151, 28.877442799623033 ], [ -81.968011291809148, 28.877414164166009 ], [ -81.968058631853353, 28.877397250969146 ], [ -81.968108926378221, 28.877386846762448 ], [ -81.968170544719797, 28.877382672010839 ], [ -81.968301189200787, 28.877400577553143 ], [ -81.968452139548504, 28.87742570977187 ], [ -81.968608850161402, 28.877454455084795 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baisley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970827573987847, 28.877640040828588 ], [ -81.970858630302516, 28.877655897419483 ], [ -81.971029874598131, 28.877742222574462 ], [ -81.971180958394299, 28.87781858717857 ], [ -81.971351083732927, 28.877905022666383 ], [ -81.971465590056638, 28.877965527487166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baisley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970194824990031, 28.8773144178653 ], [ -81.970230473989886, 28.877332952752482 ], [ -81.970365010107997, 28.877397612644991 ], [ -81.970503838688515, 28.877472930436173 ], [ -81.970687189412544, 28.87756613423246 ], [ -81.970827573987847, 28.877640040828588 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baisley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970827573987847, 28.877640040828588 ], [ -81.970716579039916, 28.87783790949986 ], [ -81.970654419307223, 28.877953768623069 ], [ -81.970586336470333, 28.878100871327316 ], [ -81.970499009763714, 28.878289631746515 ], [ -81.970420562129661, 28.878469279911602 ], [ -81.97035099345166, 28.878633308437852 ], [ -81.97028586291853, 28.878792128919248 ], [ -81.970208894966575, 28.878967873015167 ], [ -81.97014080567935, 28.879129296803722 ], [ -81.970090477081854, 28.879251666580497 ], [ -81.970017948647154, 28.879419599416639 ], [ -81.969958737487758, 28.879564101515822 ], [ -81.969912850566146, 28.879672149978138 ], [ -81.969878806117364, 28.879748955278473 ], [ -81.969841812380054, 28.87979712085026 ], [ -81.969790029565203, 28.879834864202611 ], [ -81.969727895725214, 28.879858284768225 ], [ -81.96967760144048, 28.879860877446415 ], [ -81.969628367417513, 28.87985566182725 ], [ -81.969442278113874, 28.879808818963678 ], [ -81.969190752569872, 28.879742162520653 ], [ -81.96912045725324, 28.879721221072813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Balcorta Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958680017740889, 28.926733386092085 ], [ -81.959107102042239, 28.926618368810853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Marino Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959107102042239, 28.926618368810853 ], [ -81.959125262724157, 28.926657353507171 ], [ -81.959140019140321, 28.926694338579232 ], [ -81.959155910064098, 28.92672832566776 ], [ -81.959172937469432, 28.926767309109476 ], [ -81.959192236957165, 28.926800299292683 ], [ -81.959208133117116, 28.926826290235105 ], [ -81.95921948505412, 28.926846284041105 ], [ -81.959231973387972, 28.926866277289353 ], [ -81.95924900572237, 28.926890268183506 ], [ -81.959267173824387, 28.926913261481932 ], [ -81.959281935986354, 28.926933256318481 ], [ -81.959294426940801, 28.926949251491035 ], [ -81.959307971304852, 28.926967630846317 ], [ -81.959323007400059, 28.926984824134461 ], [ -81.959338435424399, 28.927001673765275 ], [ -81.95935425537759, 28.927018180640903 ], [ -81.959370271366453, 28.92703434109265 ], [ -81.959386677097285, 28.927050504367415 ], [ -81.959414801701186, 28.927076983521001 ], [ -81.959431990403246, 28.92709211570368 ], [ -81.959449567823626, 28.927107246197117 ], [ -81.959467341143522, 28.927122377649759 ], [ -81.959485507552699, 28.927136822572123 ], [ -81.959503867946083, 28.927150921069224 ], [ -81.959522619107474, 28.92716502238865 ], [ -81.9595540662378, 28.927187720996432 ], [ -81.959573599344367, 28.927200790318832 ], [ -81.959593132455794, 28.927213859638371 ], [ -81.95961305763015, 28.927226242426482 ], [ -81.959633176654009, 28.927238622563106 ], [ -81.95965368658041, 28.927250660844443 ], [ -81.959674392539867, 28.927262357211724 ], [ -81.959698614716316, 28.92727577079846 ], [ -81.959737097911272, 28.927295376605457 ], [ -81.959761125768324, 28.927307415926887 ], [ -81.95978105164852, 28.927318079817748 ], [ -81.959800584717172, 28.927328742685592 ], [ -81.959820118681591, 28.927339750227631 ], [ -81.959839261752563, 28.927351099619614 ], [ -81.959858404693989, 28.92736279368561 ], [ -81.959877155715134, 28.92737483321066 ], [ -81.959913488287341, 28.92739959584291 ], [ -81.959931459577433, 28.927412319969257 ], [ -81.959949232791828, 28.927425388710773 ], [ -81.959966813058813, 28.927438802069084 ], [ -81.959984001407236, 28.927452557278016 ], [ -81.960000993864369, 28.927466313328527 ], [ -81.960017596453142, 28.927480413937396 ], [ -81.960034003018791, 28.927494856455631 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Marino Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95903928455256, 28.925971189380778 ], [ -81.95904822750596, 28.926109619567928 ], [ -81.95905499575106, 28.926233557321368 ], [ -81.959056116085605, 28.926271536178533 ], [ -81.959057237210502, 28.926307519158325 ], [ -81.959061761405948, 28.926361490435305 ], [ -81.959065154282925, 28.92639747230362 ], [ -81.959068543048659, 28.926446448125869 ], [ -81.959071939797923, 28.926480431410528 ], [ -81.959079875394039, 28.926518413248711 ], [ -81.959088952832104, 28.926550398779774 ], [ -81.959098026248853, 28.926587383025062 ], [ -81.959107102042239, 28.926618368810853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Marino Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95899931232583, 28.925315860719259 ], [ -81.95900519524595, 28.925341694336215 ], [ -81.959009258231561, 28.925373982418424 ], [ -81.959012510468469, 28.925399811621354 ], [ -81.959014946605024, 28.925424923249732 ], [ -81.959019830591302, 28.92545075385339 ], [ -81.959021740986032, 28.925474870991106 ], [ -81.959024688779181, 28.925533981269218 ], [ -81.959026763603688, 28.9256168514266 ], [ -81.959035968272545, 28.925783203234474 ], [ -81.959039296206441, 28.925944335267928 ], [ -81.95903928455256, 28.925971189380778 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Juarez Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95895424677262, 28.922256999494383 ], [ -81.958934746303569, 28.922321878525345 ], [ -81.958914377756741, 28.92238004420539 ], [ -81.958894009186864, 28.92243821078409 ], [ -81.958874541624311, 28.922497526258198 ], [ -81.958843448116326, 28.922566958311691 ], [ -81.958812945165633, 28.922631580399365 ], [ -81.958781269047691, 28.922695854734954 ], [ -81.958770318808718, 28.922719229854174 ], [ -81.958751154373047, 28.922763914673848 ], [ -81.958741571977129, 28.922787975053797 ], [ -81.958732770183559, 28.922811692800778 ], [ -81.958724163110105, 28.92283575438174 ], [ -81.958716144581544, 28.922860159918002 ], [ -81.958708709744215, 28.922884222760999 ], [ -81.958699123349447, 28.922918253505138 ], [ -81.95869266575086, 28.922942659520434 ], [ -81.958686794647434, 28.922967409490749 ], [ -81.958681314289763, 28.922992159581089 ], [ -81.958676420565538, 28.923016908949634 ], [ -81.958672112311291, 28.923042004077612 ], [ -81.958667020700716, 28.923074317330403 ], [ -81.958663883663704, 28.923099411014327 ], [ -81.958660942511742, 28.923124506563088 ], [ -81.958658783882882, 28.923149600548346 ], [ -81.958657014975856, 28.923174696458236 ], [ -81.958655636817639, 28.923199791586175 ], [ -81.958654843300792, 28.923232449035265 ], [ -81.95865463725211, 28.923257889201373 ], [ -81.958655017978174, 28.923282984871289 ], [ -81.958655788428189, 28.923308081563615 ], [ -81.958657343317967, 28.923333521370072 ], [ -81.958659092182685, 28.923358616559256 ], [ -81.958660701476305, 28.923394213525686 ], [ -81.95866394451852, 28.923440131454441 ], [ -81.958668418091747, 28.923486504519175 ], [ -81.958673702828065, 28.923509968544423 ], [ -81.958681299496078, 28.923548235443498 ], [ -81.958695414738671, 28.923597027825224 ], [ -81.958713694040654, 28.923650617189129 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Guadalupe Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956123626447194, 28.924378321843875 ], [ -81.956730268275749, 28.92386229935331 ], [ -81.956905227674923, 28.923711922241928 ], [ -81.956961564441656, 28.923650539109826 ], [ -81.956981929960818, 28.923612750280824 ], [ -81.956996358754012, 28.923561545114424 ], [ -81.956993281534011, 28.923503345150699 ], [ -81.956982125760589, 28.923450022210766 ], [ -81.956936538388874, 28.923311529544673 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santa Clara Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957640175603373, 28.925764395202126 ], [ -81.957939212808355, 28.926029531396068 ], [ -81.957973122069603, 28.926048938672608 ], [ -81.958010424269375, 28.926065361307604 ], [ -81.958049423034566, 28.926078801474439 ], [ -81.958081642846395, 28.926086271729144 ], [ -81.958113860612343, 28.926093740170916 ], [ -81.958154559391389, 28.926098228263381 ], [ -81.958193564033124, 28.926099733729071 ], [ -81.958222392503345, 28.926101234208613 ], [ -81.958255148158045, 28.926099955932589 ], [ -81.95829285793711, 28.926095154823827 ], [ -81.958330373675835, 28.926088290996915 ], [ -81.958355969412679, 28.926082111007045 ], [ -81.958439797957112, 28.926059791670824 ], [ -81.958624841947753, 28.926010688236442 ], [ -81.958674866057308, 28.925998671554403 ], [ -81.958705828354184, 28.925991042260783 ], [ -81.958736358047432, 28.925985456526046 ], [ -81.958760523924013, 28.925982107422094 ], [ -81.958789779351278, 28.92597764012957 ], [ -81.958818821508146, 28.925975599037578 ], [ -81.958852103709319, 28.925973183885766 ], [ -81.958883900879613, 28.92597319273812 ], [ -81.958915698493698, 28.92597208363906 ], [ -81.958974205777764, 28.925972102456623 ], [ -81.95903928455256, 28.925971189380778 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Santa Clara Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957116654799421, 28.925287079626365 ], [ -81.957378301073319, 28.925531206900001 ], [ -81.957640175603373, 28.925764395202126 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sanchez Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957640175603373, 28.925764395202126 ], [ -81.957883284286922, 28.925557126088506 ], [ -81.957934278561282, 28.925517177624485 ], [ -81.957953430958511, 28.925501713775443 ], [ -81.957970628583524, 28.925488656635306 ], [ -81.957988413601029, 28.925476285421546 ], [ -81.958006784984164, 28.925464603742771 ], [ -81.958025545956602, 28.925453264153411 ], [ -81.958044697403636, 28.92544261313504 ], [ -81.958064239465145, 28.925432306010688 ], [ -81.958084366728428, 28.925423031292414 ], [ -81.958104690766575, 28.925414099504923 ], [ -81.958125208363455, 28.925405855323923 ], [ -81.958146311302968, 28.925398297969373 ], [ -81.958164025275877, 28.925391599441788 ], [ -81.95828703292176, 28.925353306446713 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Limestone Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972896498452172, 28.90326526369341 ], [ -81.972743131995031, 28.903030282129524 ], [ -81.97248775619191, 28.902661769942707 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bancroft Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97102527877, 28.903279159804125 ], [ -81.971201830654636, 28.903214368630895 ], [ -81.971371428138383, 28.903164256136989 ], [ -81.971550758102126, 28.903104359166363 ], [ -81.971764849458921, 28.903011443356402 ], [ -81.972072085687714, 28.902862282929565 ], [ -81.972318383201795, 28.902743890230457 ], [ -81.97248775619191, 28.902661769942707 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barcelona Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954833503587338, 28.941342740229093 ], [ -81.955268226114669, 28.943067314481862 ], [ -81.955285959163064, 28.943123554912578 ], [ -81.955317589092132, 28.943230790359721 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corona Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955225976526449, 28.945236132918964 ], [ -81.955228642399632, 28.945253181729626 ], [ -81.955231977090421, 28.945267878486213 ], [ -81.955237986574289, 28.945283751823432 ], [ -81.955248094288123, 28.945301687365358 ], [ -81.955250631671078, 28.94530512504571 ], [ -81.95525590676607, 28.945311314730628 ], [ -81.955261570642094, 28.945317504545059 ], [ -81.955267235693569, 28.945323349683804 ], [ -81.955270163032097, 28.945326444622644 ], [ -81.955276414993293, 28.945331947987878 ], [ -81.955285987327557, 28.945340200844274 ], [ -81.955292629245605, 28.94534535966298 ], [ -81.955296145546313, 28.94534811192641 ], [ -81.955302983542808, 28.945352927036438 ], [ -81.955310211346287, 28.945357742276077 ], [ -81.955317635227843, 28.945362213807108 ], [ -81.955325059258826, 28.945366340661952 ], [ -81.955328966690061, 28.945368405507775 ], [ -81.955336584747272, 28.945372189555393 ], [ -81.955340689282508, 28.945373909790707 ], [ -81.955348504294989, 28.945377694805543 ], [ -81.955352606927718, 28.945379070364005 ], [ -81.955360813070214, 28.945382167059005 ], [ -81.955364917606616, 28.945383886391298 ], [ -81.955373317775525, 28.945386639376583 ], [ -81.955377421582156, 28.945387672965737 ], [ -81.955386018854767, 28.945390082242291 ], [ -81.955390318442923, 28.945391458767464 ], [ -81.956300854456671, 28.945638589021669 ], [ -81.956319221586014, 28.945643407838318 ], [ -81.956337588862496, 28.945647881976676 ], [ -81.95635595628481, 28.945652014143622 ], [ -81.956374519638103, 28.945656146371828 ], [ -81.956393277016829, 28.945659932180206 ], [ -81.956412036592596, 28.945663376017698 ], [ -81.95643079426236, 28.945666476980712 ], [ -81.956449552078325, 28.945669233265338 ], [ -81.956468508021089, 28.945671645838161 ], [ -81.956497232313211, 28.945675092899851 ], [ -81.956516187521288, 28.945676817918631 ], [ -81.956535336752381, 28.945678199224123 ], [ -81.95655429313183, 28.945679580464379 ], [ -81.956573444704134, 28.945680274218102 ], [ -81.956592398295882, 28.945680967002719 ], [ -81.956611547961245, 28.945681316976891 ], [ -81.956630699822057, 28.9456813240778 ], [ -81.956649655897706, 28.945680986436837 ], [ -81.956668806877033, 28.945680648856175 ], [ -81.956687958144059, 28.945679623725844 ], [ -81.956706914506924, 28.945678598529799 ], [ -81.956737790323587, 28.945676201182636 ], [ -81.956756747116032, 28.945674145561387 ], [ -81.956775703908107, 28.945672089035181 ], [ -81.956794660842974, 28.945669688732792 ], [ -81.956813421991299, 28.945666943688835 ], [ -81.9568321812297, 28.94566385667267 ], [ -81.956850943688181, 28.945660424979071 ], [ -81.956869705263301, 28.945656648606761 ], [ -81.956888272958011, 28.945652874876334 ], [ -81.956989860314991, 28.945632072673433 ], [ -81.957082494118794, 28.945604462434773 ], [ -81.957194391911131, 28.945563538640407 ], [ -81.957318268702082, 28.945520853683554 ], [ -81.957459148290511, 28.945465358745977 ], [ -81.957572135400696, 28.945418927386946 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barcelona Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955268245099219, 28.94470147626425 ], [ -81.955240936039814, 28.944974756316302 ], [ -81.955224859131548, 28.945149077530765 ], [ -81.955225976526449, 28.945236132918964 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clearwater Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010465787517958, 28.905277660729475 ], [ -82.010561354155953, 28.905282157957888 ], [ -82.010699588292155, 28.905298665120252 ], [ -82.010831730167666, 28.905311779060487 ], [ -82.0109412796036, 28.905328909837305 ], [ -82.011050829663702, 28.905341752803551 ], [ -82.011143338442778, 28.905354599724483 ], [ -82.011257758010203, 28.905365300084465 ], [ -82.011384349335003, 28.905386711456579 ], [ -82.011491468255301, 28.905418834567843 ], [ -82.011588847877306, 28.905450959292022 ], [ -82.01168379471811, 28.905487367355693 ], [ -82.01176413494575, 28.905517350397389 ], [ -82.011866384345112, 28.905558042739671 ], [ -82.01196619949242, 28.905598736112005 ], [ -82.01206845110076, 28.905639426495391 ], [ -82.012160963101394, 28.905686545610529 ], [ -82.012246172720253, 28.905729381182375 ], [ -82.012336253329792, 28.905782926554338 ], [ -82.01241416054053, 28.905838614991101 ], [ -82.012501806462737, 28.905896445478955 ], [ -82.012582149211838, 28.905952133601769 ], [ -82.012650319586399, 28.906001396599777 ], [ -82.012686839760676, 28.906035668020166 ], [ -82.012728230161088, 28.906082790423657 ], [ -82.012769624678995, 28.906147051064178 ], [ -82.012795441804201, 28.906217469484588 ], [ -82.012804045902442, 28.90627625342583 ], [ -82.012809915898728, 28.906358072382226 ], [ -82.01280992905329, 28.906460172823085 ], [ -82.012809942693792, 28.90657499476276 ], [ -82.012811070889157, 28.906671869891102 ], [ -82.01280622075501, 28.906819678480112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clearwater Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009403663917851, 28.905558494489973 ], [ -82.009487949969738, 28.905513235980429 ], [ -82.009584181960548, 28.905467508327533 ], [ -82.009665656840539, 28.905429680320463 ], [ -82.009753291626438, 28.905395401486206 ], [ -82.009845796032593, 28.905361120455549 ], [ -82.009935866639083, 28.905333265698559 ], [ -82.010021070164882, 28.905311838293013 ], [ -82.010120878976778, 28.905294694814824 ], [ -82.010248988486993, 28.905282100427584 ], [ -82.010386230217961, 28.905279680471956 ], [ -82.010465787517958, 28.905277660729475 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barnacle Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010627319369661, 28.906125807297819 ], [ -82.010611893450033, 28.906057287924977 ], [ -82.01059396701595, 28.905982957032986 ], [ -82.010570921069714, 28.905901868304014 ], [ -82.01053891317666, 28.905811770785224 ], [ -82.010493383293991, 28.905680253351218 ], [ -82.010473899137125, 28.905603137158781 ], [ -82.010469025518177, 28.905551726367914 ], [ -82.010464151497715, 28.905506741744567 ], [ -82.010465787517958, 28.905277660729475 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barnsdale Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961601122718605, 28.872892376388865 ], [ -81.96184252336954, 28.873076668325297 ], [ -81.962021415891456, 28.873211875848359 ], [ -81.962180968761615, 28.873328986519841 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barnsdale Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962180968761615, 28.873328986519841 ], [ -81.962444476632584, 28.873524879985712 ], [ -81.962634248587477, 28.873672862724728 ], [ -81.962732528577988, 28.873760536096185 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Adler Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962180968761615, 28.873328986519841 ], [ -81.962699781468388, 28.872826912787581 ], [ -81.962806858294158, 28.872742680970312 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Saffron Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962732528577988, 28.873760536096185 ], [ -81.963084828652114, 28.873471662051642 ], [ -81.963405319241886, 28.873222718825417 ], [ -81.963728234710842, 28.872962068106176 ], [ -81.963820150554369, 28.872881211412814 ], [ -81.96386369273327, 28.87283652577943 ], [ -81.963909660402564, 28.872773747812332 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Saffron Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963909660402564, 28.872773747812332 ], [ -81.963945951698022, 28.87271522429376 ], [ -81.963982243607461, 28.872657766384417 ], [ -81.964036679550432, 28.872576897672214 ], [ -81.964082644131182, 28.872519442325864 ], [ -81.964138275979664, 28.872474757128824 ], [ -81.964224141628549, 28.872409863879845 ], [ -81.964310003505275, 28.872355608722675 ], [ -81.964382563578582, 28.872307739186205 ], [ -81.96442126781001, 28.872266243529094 ], [ -81.964444255708045, 28.872223679883291 ], [ -81.964457571720871, 28.872172600446671 ], [ -81.964455172023079, 28.872124708291913 ], [ -81.964445234275686, 28.8720785077623 ], [ -81.964348932505473, 28.871932259554004 ], [ -81.964291624056244, 28.871854853816373 ], [ -81.964234797354393, 28.87179859725552 ], [ -81.964140569496735, 28.871760050104498 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flintshire Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96030664944368, 28.873317330918322 ], [ -81.961053689890207, 28.872488214533778 ], [ -81.96148357439148, 28.872002873553154 ], [ -81.961629821231085, 28.871843042730543 ], [ -81.961683852510035, 28.871754184051479 ], [ -81.961727952981079, 28.8717117207295 ], [ -81.96177649368822, 28.871670318862634 ], [ -81.961845023510989, 28.871626060555844 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Auburndale Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013244619978792, 28.941550765957846 ], [ -82.013060384710499, 28.941556186193488 ], [ -82.012861821940874, 28.941565207642963 ], [ -82.012639868585751, 28.941574356328083 ], [ -82.012513905077867, 28.941580260497691 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Auburndale Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011804072360462, 28.94158183958201 ], [ -82.011398753819776, 28.941581872978109 ], [ -82.011048705478473, 28.941580100762689 ], [ -82.010616775643868, 28.94158193396013 ], [ -82.010217598538475, 28.941583764315883 ], [ -82.009874222779899, 28.941581492303357 ], [ -82.009483228050073, 28.941581518934186 ], [ -82.009088835979085, 28.9415815455481 ], [ -82.008818539162334, 28.941581562502179 ], [ -82.00871144086868, 28.941581569069665 ], [ -82.008647827612478, 28.941577675924879 ], [ -82.00859470289501, 28.941561565067449 ], [ -82.008545241352095, 28.941534175302433 ], [ -82.008515929089782, 28.941508396720671 ], [ -82.008482951930944, 28.941471336072244 ], [ -82.00846462826118, 28.941426218874504 ], [ -82.008459131148228, 28.941385935405538 ], [ -82.00845914907886, 28.941299376587779 ], [ -82.008457089969909, 28.941148121643923 ], [ -82.008457074392339, 28.940946448219002 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Auburndale Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008460974755437, 28.93841652837213 ], [ -82.008459593544913, 28.938249827856765 ], [ -82.008459564967865, 28.937879924351527 ], [ -82.008455615347501, 28.937354637911501 ], [ -82.008455580123353, 28.936898449781467 ], [ -82.008459465909255, 28.936597645458349 ], [ -82.008460901719246, 28.936303050854526 ], [ -82.008465746684266, 28.936243334937572 ], [ -82.008479760206512, 28.936166563314057 ], [ -82.00849611921501, 28.936112374167777 ], [ -82.008528837907917, 28.936026490061863 ], [ -82.008569735251513, 28.935936516261034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024090173802691, 28.917651969451146 ], [ -82.024243850472004, 28.917803295511515 ], [ -82.024477206075886, 28.917997175801098 ], [ -82.024606868049844, 28.918105370522479 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02347324573104, 28.916742937252305 ], [ -82.02347433910397, 28.916831857486258 ], [ -82.023484027280148, 28.916892397226619 ], [ -82.023495866350103, 28.916940640102723 ], [ -82.023519530785109, 28.916993608995583 ], [ -82.023557175260478, 28.917056036075952 ], [ -82.023596968628937, 28.917110895217011 ], [ -82.02364213598446, 28.917161970095734 ], [ -82.023762022428187, 28.917286959962084 ], [ -82.023987109955613, 28.917534191721973 ], [ -82.024090173802691, 28.917651969451146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morven Park Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021911806232481, 28.91673412757547 ], [ -82.021966226705771, 28.91673449519444 ], [ -82.02216416484427, 28.916734087330692 ], [ -82.022331556901207, 28.916739250384794 ], [ -82.022573415195538, 28.91673921016783 ], [ -82.022789485690851, 28.916739174677705 ], [ -82.022979964262177, 28.91673914400592 ], [ -82.023185680051924, 28.916739108701183 ], [ -82.023298990076242, 28.916739090520121 ], [ -82.023410849313478, 28.916740560376866 ], [ -82.02347324573104, 28.916742937252305 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morven Park Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02347324573104, 28.916742937252305 ], [ -82.023565871848064, 28.916742294365697 ], [ -82.023673887492691, 28.916744035349414 ], [ -82.023839170880649, 28.916747936383118 ], [ -82.023988934061009, 28.916747501673097 ], [ -82.024173959940086, 28.916747469358693 ], [ -82.024353757796092, 28.916752314626464 ], [ -82.02447722666453, 28.916752292756595 ], [ -82.024569827290222, 28.9167522762801 ], [ -82.024673566121251, 28.916752257746161 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023492101067944, 28.916395481296306 ], [ -82.023488685572744, 28.916485907333012 ], [ -82.023486422954974, 28.916554034717493 ], [ -82.023478602306113, 28.916660636971727 ], [ -82.02347324573104, 28.916742937252305 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aberdeen Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966277640190782, 28.866928043010954 ], [ -81.966159339558715, 28.86695949459946 ], [ -81.966033334908516, 28.866990216877976 ], [ -81.965933744827822, 28.867010289542648 ], [ -81.965862220430964, 28.867014307372624 ], [ -81.965802616773544, 28.867013484637909 ], [ -81.965742098067892, 28.867008626542606 ], [ -81.965634816778106, 28.866992455105652 ], [ -81.965575390938753, 28.866980961676269 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aberdeen Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967034170921352, 28.866858006508945 ], [ -81.966928722595128, 28.866847487677667 ], [ -81.966825107304572, 28.866839390097116 ], [ -81.966683890820846, 28.866843390214775 ], [ -81.966553673400156, 28.866861922717789 ], [ -81.966461051715385, 28.86688207961863 ], [ -81.966362009900948, 28.866906270849856 ], [ -81.966277640190782, 28.866928043010954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stebbins Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967067763074184, 28.867873872068518 ], [ -81.967033927306943, 28.867143346360859 ], [ -81.967027729001913, 28.866927422736239 ], [ -81.967034170921352, 28.866858006508945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aberdeen Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967764917472323, 28.868023217350544 ], [ -81.967790492070094, 28.86794533216321 ], [ -81.967792980379684, 28.8678086491534 ], [ -81.967789346939668, 28.867698871355756 ], [ -81.967782057944362, 28.867547120235184 ], [ -81.96777598480665, 28.867417969394499 ], [ -81.967765830973548, 28.867279017654116 ], [ -81.967758925716993, 28.867228246994316 ], [ -81.967743943696576, 28.867185595122727 ], [ -81.967718577161151, 28.867149036712931 ], [ -81.967678216053628, 28.867113486169202 ], [ -81.967610170261452, 28.867072854379284 ], [ -81.967489071063753, 28.867007838496917 ], [ -81.967359895873415, 28.866948914698295 ], [ -81.967247810920654, 28.866907297517805 ], [ -81.967108455036069, 28.866868636726963 ], [ -81.967034170921352, 28.866858006508945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cordelia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967764917472323, 28.868023217350544 ], [ -81.968240166186973, 28.868161872133413 ], [ -81.968461098260931, 28.868228902220416 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bianca Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968461098260931, 28.868228902220416 ], [ -81.968484351598818, 28.868154646323681 ], [ -81.968557785248976, 28.867911432370825 ], [ -81.96857737695521, 28.867810270716802 ], [ -81.968590871357833, 28.867662828494421 ], [ -81.968594576873087, 28.867537984870115 ], [ -81.968587115627003, 28.86737919758664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aberdeen Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967971185499451, 28.869425001027704 ], [ -81.968005018416861, 28.869435839443909 ], [ -81.968101906897758, 28.869467001895497 ], [ -81.968214368589429, 28.869500194540535 ], [ -81.968297742508256, 28.869532184669733 ], [ -81.968364881807076, 28.869569957389544 ], [ -81.968411013039642, 28.869609231976856 ], [ -81.968470977906492, 28.86967422994822 ], [ -81.968557074773145, 28.869786621170181 ], [ -81.968652397829871, 28.869911200093824 ], [ -81.968873233433357, 28.87019948408652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968119000913489, 28.871013364653301 ], [ -81.96828167933927, 28.870867407000588 ], [ -81.968354144463376, 28.870795585465455 ], [ -81.968433032939316, 28.870709236520824 ], [ -81.968536880447445, 28.870583623357465 ], [ -81.968655952608685, 28.870429195918462 ], [ -81.968782727689373, 28.870288790146628 ], [ -81.968873233433357, 28.87019948408652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967534166700517, 28.87135584683589 ], [ -81.967657708856052, 28.871292139807977 ], [ -81.967748505968146, 28.871247363232523 ], [ -81.967821422900784, 28.871208030412689 ], [ -81.967899841956992, 28.871160223539178 ], [ -81.967985766903965, 28.871104700112461 ], [ -81.968119000913489, 28.871013364653301 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Afton Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013557949048717, 28.917409914071783 ], [ -82.01366592518788, 28.91737907664341 ], [ -82.013854365413238, 28.917373075945981 ], [ -82.014368772394292, 28.917376938343974 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alandari Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985551598288936, 28.870124456385351 ], [ -81.985471091209064, 28.869946233757062 ], [ -81.985303595299229, 28.869526263681998 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tallowtree Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985303595299229, 28.869526263681998 ], [ -81.98548661389114, 28.86947046544093 ], [ -81.985638464846971, 28.869432292797836 ], [ -81.985839122315653, 28.869398899261022 ], [ -81.986058759455901, 28.869382215359138 ], [ -81.986310929728063, 28.86938224148977 ], [ -81.986614618735516, 28.869396592786643 ], [ -81.987037055477643, 28.869424002310097 ], [ -81.987107959889983, 28.869441346946164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alandari Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985303595299229, 28.869526263681998 ], [ -81.985210885589879, 28.869306710443141 ], [ -81.98507472813202, 28.868961049088966 ], [ -81.985040948627116, 28.868903499112822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blueberry Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98584693365774, 28.871380636388359 ], [ -81.986330020117492, 28.871361135697732 ], [ -81.986732056080541, 28.871351455820033 ], [ -81.986977791606819, 28.871358927673128 ], [ -81.987082180710971, 28.87138320978535 ], [ -81.987145208048574, 28.871405754507318 ], [ -81.987219031156343, 28.871439753167035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alandari Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98584693365774, 28.871380636388359 ], [ -81.985840560331923, 28.871228642784491 ], [ -81.985818629726239, 28.871037587730687 ], [ -81.985759239852442, 28.870751198557517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alandari Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985557207408306, 28.872620178122876 ], [ -81.985707524756293, 28.872322601331074 ], [ -81.985771517029818, 28.872205308811303 ], [ -81.985829689831164, 28.872065221666947 ], [ -81.985851127266258, 28.871970931493401 ], [ -81.985861081507437, 28.87184074468605 ], [ -81.985852034128101, 28.871501106097252 ], [ -81.98584693365774, 28.871380636388359 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avila Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972529717752096, 28.950360400407217 ], [ -81.972542482817772, 28.950870427314687 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bartlet Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970400952537261, 28.871238907518176 ], [ -81.970470124081871, 28.87121312683151 ], [ -81.970560392896516, 28.871183224511462 ], [ -81.970705758470331, 28.871143015442581 ], [ -81.970842913824967, 28.87112550456715 ], [ -81.970953103171723, 28.871123464012182 ], [ -81.971060946872171, 28.87112967893216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bartlet Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969758491128644, 28.871532834601137 ], [ -81.96986635280453, 28.871475074504961 ], [ -81.96998711035701, 28.871412162352442 ], [ -81.970098485719504, 28.8713616275943 ], [ -81.970247376032077, 28.87129975100439 ], [ -81.970400952537261, 28.871238907518176 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bartlet Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968119000913489, 28.871013364653301 ], [ -81.968170342306053, 28.871065407236095 ], [ -81.968217977619076, 28.871105640483702 ], [ -81.968277521958257, 28.871153783410627 ], [ -81.968331795843156, 28.871197112183609 ], [ -81.968394658733885, 28.871251100056995 ], [ -81.968462839363539, 28.871299816093284 ], [ -81.968534225986645, 28.871360357525212 ], [ -81.968602972859131, 28.871411587438391 ], [ -81.968682294733128, 28.871479116276348 ], [ -81.968772187244184, 28.871560614273179 ], [ -81.968864728763677, 28.871635129000602 ], [ -81.968936115148026, 28.871697999060483 ], [ -81.969002217022535, 28.871751556096388 ], [ -81.96906567494139, 28.871802784548681 ], [ -81.969137072643704, 28.871835393073649 ], [ -81.969205831246157, 28.871842392700401 ], [ -81.969267237187367, 28.871838141599124 ], [ -81.969311786459045, 28.871820610131358 ], [ -81.969352822120058, 28.871794825384974 ], [ -81.96940675657838, 28.871754594994538 ], [ -81.969494689406318, 28.871698897826551 ], [ -81.969583795747823, 28.871640103261353 ], [ -81.969677592465942, 28.871582342833833 ], [ -81.969758491128644, 28.871532834601137 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bartlet Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971060946872171, 28.87112967893216 ], [ -81.971113696261455, 28.871133817439365 ], [ -81.971172303565027, 28.871143115650955 ], [ -81.97124614973977, 28.871159640942512 ], [ -81.971336402826026, 28.871185456202969 ], [ -81.971428703278775, 28.871221527413493 ], [ -81.971501580306466, 28.87125859508744 ], [ -81.971551822283544, 28.871281883365889 ], [ -81.97160689402611, 28.871303026972235 ], [ -81.971660814342286, 28.871310259509777 ], [ -81.971707704697778, 28.871306143181901 ], [ -81.971745216977197, 28.871296863689416 ], [ -81.971790939320968, 28.871279332549985 ], [ -81.971830804464233, 28.871246323865993 ], [ -81.971878880120002, 28.871195774320256 ], [ -81.971928712950913, 28.871140583678965 ], [ -81.971994380352413, 28.871058050234133 ], [ -81.972063170876652, 28.870983773478486 ], [ -81.972162854040775, 28.870867644371089 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rayburn Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969758491128644, 28.871532834601137 ], [ -81.969726854160797, 28.871483300063005 ], [ -81.969594444655201, 28.871307857931807 ], [ -81.969473139153706, 28.871181326617592 ], [ -81.969343586602704, 28.871060245021347 ], [ -81.969179658136412, 28.870922859814467 ], [ -81.968998095898414, 28.870750723549257 ], [ -81.968970732166611, 28.870700754905943 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jericho Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970400952537261, 28.871238907518176 ], [ -81.970351742647551, 28.871163572406104 ], [ -81.970083406822482, 28.870805471816244 ], [ -81.969778644563092, 28.870413287903347 ], [ -81.969630008994983, 28.870187105626805 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Callaway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008302279983212, 28.917906737143262 ], [ -82.008381051299551, 28.91789353199129 ], [ -82.008508581191151, 28.917874824425851 ], [ -82.008667370839589, 28.917849511854453 ], [ -82.008841983477993, 28.917825543447805 ], [ -82.008995610409812, 28.917799918612289 ], [ -82.00901456101434, 28.917797168125944 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "High Point Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007564615579199, 28.916867277614664 ], [ -82.008281311274516, 28.916865745132618 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Raleigh Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008302279983212, 28.917906737143262 ], [ -82.008281311274516, 28.916865745132618 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Callaway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00901456101434, 28.917797168125944 ], [ -82.009177731871873, 28.91777628675872 ], [ -82.009389695723968, 28.91774643497935 ], [ -82.00962548183746, 28.917708220584281 ], [ -82.009731688222587, 28.917698870110669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "High Point Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008281311274516, 28.916865745132618 ], [ -82.00899680821216, 28.916865450471988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "High Point Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00899680821216, 28.916865450471988 ], [ -82.00933702701677, 28.916866887743925 ], [ -82.009484680794557, 28.916864885769396 ], [ -82.009555044880116, 28.916874227077884 ], [ -82.009617444045034, 28.916898750930187 ], [ -82.009661256224575, 28.91693028595401 ], [ -82.009685954594474, 28.91696071604413 ], [ -82.009707728065052, 28.916989854239386 ], [ -82.00971835203778, 28.917019054545801 ], [ -82.009724838981612, 28.917059033969259 ], [ -82.009729733852268, 28.917174197372479 ], [ -82.00972976165086, 28.91748531557737 ], [ -82.009731688222587, 28.917698870110669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Callaway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009731688222587, 28.917698870110669 ], [ -82.00977018968014, 28.917697699008603 ], [ -82.009880597894835, 28.917702368917226 ], [ -82.009973531072674, 28.917718514464095 ], [ -82.010061876979663, 28.917744752458088 ], [ -82.010135815704359, 28.917776222935011 ], [ -82.010218909634219, 28.917820974520531 ], [ -82.010286741957287, 28.917858268774093 ], [ -82.010354573445454, 28.917897054489522 ], [ -82.010416703849955, 28.917933895236516 ], [ -82.010494658730323, 28.917975142506663 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Farmington Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010494658730323, 28.917975142506663 ], [ -82.010718509835385, 28.917667651098892 ], [ -82.010810281853736, 28.917546511726279 ], [ -82.010856167183761, 28.917474837000132 ], [ -82.010896311863064, 28.917386004625502 ], [ -82.010926134232747, 28.917284048225689 ], [ -82.010937598552758, 28.917222471911845 ], [ -82.010943327410772, 28.917133641265483 ], [ -82.010945599391647, 28.916914593229812 ], [ -82.010945569113744, 28.916614791610968 ], [ -82.010951460835187, 28.916443241985807 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inner Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966061533065783, 28.88740551449483 ], [ -81.965985742933015, 28.887388150370512 ], [ -81.965785659671042, 28.887332064806156 ], [ -81.965580900693965, 28.887278535767106 ], [ -81.965435384801552, 28.887238474096183 ], [ -81.965364074188159, 28.887217934677878 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Doric Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965194009691103, 28.888218829856026 ], [ -81.965352504235909, 28.887270472657509 ], [ -81.965364074188159, 28.887217934677878 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baxter Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965896296264447, 28.888388982019436 ], [ -81.966061533065783, 28.88740551449483 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inner Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965194009691103, 28.888218829856026 ], [ -81.96533832942562, 28.88825565221488 ], [ -81.965525636783397, 28.888301839624177 ], [ -81.965709658011718, 28.888346073354509 ], [ -81.965833477517762, 28.888375888088195 ], [ -81.965896296264447, 28.888388982019436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grove Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964477061543633, 28.888113788276868 ], [ -81.964586468799496, 28.887441734100403 ], [ -81.964638136634306, 28.887138879688518 ], [ -81.964655343980411, 28.887076430579587 ], [ -81.964679972086699, 28.88702860339988 ], [ -81.964708698643591, 28.886987996601427 ], [ -81.964753835574626, 28.886942882605684 ], [ -81.964824612718289, 28.886894163410307 ], [ -81.964876922004009, 28.886864393974413 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inner Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965364074188159, 28.887217934677878 ], [ -81.965277873223982, 28.887184733894451 ], [ -81.965207394133941, 28.887152027986115 ], [ -81.965146541136619, 28.887118978058737 ], [ -81.965088420618812, 28.887079286077284 ], [ -81.965017361662362, 28.887021470694656 ], [ -81.964953800197065, 28.886960984618423 ], [ -81.964913822055237, 28.886913139598729 ], [ -81.964876922004009, 28.886864393974413 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hollis Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963472851724262, 28.887230050847158 ], [ -81.963881265285835, 28.887293379306787 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jenkins Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963881265285835, 28.887293379306787 ], [ -81.96397226758684, 28.886759516070796 ], [ -81.963985848563354, 28.886651242727744 ], [ -81.963989709302496, 28.886619624439387 ], [ -81.963989077525241, 28.886590828244046 ], [ -81.963984598172814, 28.886555817772873 ], [ -81.963944874258175, 28.886406743409591 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inner Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964876922004009, 28.886864393974413 ], [ -81.964837979310587, 28.886789708463215 ], [ -81.964800318514335, 28.886702075260889 ], [ -81.964769062978732, 28.886600677326772 ], [ -81.964749192661159, 28.886484261775355 ], [ -81.96473783607648, 28.886415414144651 ], [ -81.964732397746701, 28.886392867828015 ], [ -81.964720787621943, 28.886364088599024 ], [ -81.964707608787975, 28.886341667469818 ], [ -81.964689514072418, 28.886319018567967 ], [ -81.964666444474688, 28.88629479654545 ], [ -81.964644649421587, 28.886276059038998 ], [ -81.96460704321369, 28.886257662037519 ], [ -81.964558691325138, 28.886240125689017 ], [ -81.964504648230402, 28.886235104534101 ], [ -81.964456043487516, 28.886240436895427 ], [ -81.964412196352328, 28.88625010064283 ], [ -81.964315470550289, 28.886285123019576 ], [ -81.96413736452449, 28.886345813905567 ], [ -81.963944874258175, 28.886406743409591 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inner Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963944874258175, 28.886406743409591 ], [ -81.963823607830335, 28.886437201313946 ], [ -81.963703625314366, 28.886466529775774 ], [ -81.963475687027824, 28.886519425755637 ], [ -81.963235187658043, 28.88656869607302 ], [ -81.962940027108573, 28.886620213844953 ], [ -81.962706757820342, 28.88666771399852 ], [ -81.962594388420428, 28.886698975412745 ], [ -81.96250619426219, 28.886737754241185 ], [ -81.962344021852005, 28.886831589609404 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rhapsody Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956064305013939, 28.870994992719151 ], [ -81.956152624543691, 28.870992800106471 ], [ -81.956330527044585, 28.870989526755256 ], [ -81.956478151648597, 28.870981799521832 ], [ -81.956625372337172, 28.870974104479213 ], [ -81.956689835481185, 28.870990938788562 ], [ -81.956747127820179, 28.871030892266678 ], [ -81.956790086413946, 28.871083452595876 ], [ -81.956818714332059, 28.871148618888228 ], [ -81.956847345630891, 28.87120327515262 ], [ -81.956894394394467, 28.871270689566604 ], [ -81.956938534093794, 28.871320681369944 ], [ -81.956976372291507, 28.871351788651232 ], [ -81.957013405591653, 28.871380980075511 ], [ -81.957176756545465, 28.871472415666894 ], [ -81.957331930951838, 28.8715607436387 ], [ -81.957513370310281, 28.871649077936933 ], [ -81.957699582582947, 28.871747924417281 ], [ -81.957921136200142, 28.871864111341139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rhapsody Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955264250766803, 28.871101869011238 ], [ -81.955455295310827, 28.871061997475351 ], [ -81.955600966190559, 28.871030518337253 ], [ -81.955751409491782, 28.871011651196905 ], [ -81.955918563942348, 28.870999095567186 ], [ -81.956064305013939, 28.870994992719151 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Havana Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957297915210731, 28.872981577008741 ], [ -81.957352896578115, 28.872838669758689 ], [ -81.95743656106697, 28.872618003923183 ], [ -81.95754401487028, 28.872396405350678 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jessup Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95754401487028, 28.872396405350678 ], [ -81.957217127317591, 28.872253174779605 ], [ -81.957135134981257, 28.872209836308762 ], [ -81.957040526526228, 28.872157607877263 ], [ -81.956842261840819, 28.872042354563384 ], [ -81.956582494385245, 28.871888078157081 ], [ -81.956523647223776, 28.871849048970649 ], [ -81.956422073379926, 28.871766432806272 ], [ -81.956368072203091, 28.871716978113739 ], [ -81.956309892702293, 28.871650794251018 ], [ -81.956263402022472, 28.871592558041698 ], [ -81.956207273744425, 28.871512039918528 ], [ -81.956160013199536, 28.871422602696267 ], [ -81.956125980560742, 28.871344850085954 ], [ -81.956099514726787, 28.871270432143223 ], [ -81.956080629178402, 28.871177135988219 ], [ -81.956064276722856, 28.871059407201564 ], [ -81.956064305013939, 28.870994992719151 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Havana Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95754401487028, 28.872396405350678 ], [ -81.957668358153768, 28.872193503207665 ], [ -81.957806934323415, 28.871998075578844 ], [ -81.957921136200142, 28.871864111341139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Foxbridge Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957297915210731, 28.872981577008741 ], [ -81.957164206432466, 28.872950007080807 ], [ -81.957127103699889, 28.872943519417809 ], [ -81.957092576741644, 28.872935271272969 ], [ -81.957063709764626, 28.872926008033755 ], [ -81.957037217567134, 28.872915170127772 ], [ -81.95676517430033, 28.872763124264953 ], [ -81.956325159253652, 28.872513164117194 ], [ -81.95596958698134, 28.872277843923449 ], [ -81.955920165881977, 28.872242805742605 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Foxbridge Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955178615659051, 28.870349381296382 ], [ -81.955181192573278, 28.869907994539627 ], [ -81.955190921947107, 28.869496036043664 ], [ -81.955191055179725, 28.86918496442977 ], [ -81.95519517261603, 28.86867480457078 ], [ -81.955177030211374, 28.868487148352692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ellenton Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953717505611891, 28.868292261354899 ], [ -81.95426731649458, 28.868419582312395 ], [ -81.954725730505999, 28.86851011674888 ], [ -81.954845114854393, 28.868520666048148 ], [ -81.955000323800164, 28.868512312265484 ], [ -81.955177030211374, 28.868487148352692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bostic Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958806962807827, 28.870865672168875 ], [ -81.958355696684308, 28.870538803738441 ], [ -81.958293804960007, 28.870482406847735 ], [ -81.958271873994548, 28.870453241217014 ], [ -81.958256852495182, 28.870425452839754 ], [ -81.958214131128528, 28.870327383596361 ], [ -81.958168005792203, 28.870205919271044 ], [ -81.95816000439639, 28.870184848006335 ], [ -81.958145257551706, 28.870119271255856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beacon Hill Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967035104240367, 28.882943972050555 ], [ -81.967104459238442, 28.882916279406984 ], [ -81.967276070932058, 28.882837347469351 ], [ -81.967381558970843, 28.882786110723629 ], [ -81.967433515233381, 28.882758412775033 ], [ -81.967482326588069, 28.882719631979437 ], [ -81.967527993613757, 28.882671151568061 ], [ -81.967561064231006, 28.882625438159696 ], [ -81.967587844804527, 28.882571411223296 ], [ -81.967613840208557, 28.882500525493736 ], [ -81.96773360174258, 28.882103382964374 ], [ -81.967871572824691, 28.881626575963171 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beasley Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982815197336492, 28.912932571365975 ], [ -81.983098172590601, 28.913013219677225 ], [ -81.983274680572535, 28.913064595284457 ], [ -81.98334232853621, 28.913086534089796 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blease Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98334232853621, 28.913086534089796 ], [ -81.983372031003626, 28.912890212336467 ], [ -81.983387478164417, 28.912781607437573 ], [ -81.98340384236117, 28.912677564664797 ], [ -81.983411079240909, 28.912633219454328 ], [ -81.98342300950199, 28.912546244884776 ], [ -81.983435137262489, 28.912442769122727 ], [ -81.983449611692706, 28.91233688722215 ], [ -81.983458021579366, 28.912280510016437 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Troy Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96088652650181, 28.894745969215109 ], [ -81.960894906643588, 28.894794099417105 ], [ -81.960955552396868, 28.895056077209428 ], [ -81.961004115625883, 28.895248605066158 ], [ -81.961050820507552, 28.895396516355525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Timmonsville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958942336376623, 28.896116714080875 ], [ -81.959514910313104, 28.896414256149669 ], [ -81.95959341552205, 28.896456101388242 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Timmonsville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95959341552205, 28.896456101388242 ], [ -81.960013083825672, 28.896676361081461 ], [ -81.960034957946903, 28.896684961999615 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alexa Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959445359943047, 28.897135752498937 ], [ -81.95966039032399, 28.897013157844917 ], [ -81.959879211060539, 28.896868837512802 ], [ -81.959927859980098, 28.896836880877746 ], [ -81.960034957946903, 28.896684961999615 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alexa Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958892543082939, 28.89755506141212 ], [ -81.959174098695442, 28.897328598973683 ], [ -81.959366556016789, 28.897195602533387 ], [ -81.959445359943047, 28.897135752498937 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carlisle Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958019118982037, 28.896392480648061 ], [ -81.95896781619156, 28.896879218981397 ], [ -81.9592896225234, 28.897045893176752 ], [ -81.959445359943047, 28.897135752498937 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Timmonsville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960034957946903, 28.896684961999615 ], [ -81.960146664537902, 28.896730031691821 ], [ -81.960243926269598, 28.896762031717532 ], [ -81.960358325485828, 28.896780476080323 ], [ -81.960459039761687, 28.896785233846504 ], [ -81.960541788664543, 28.896783433757502 ], [ -81.96076661875928, 28.896756686058271 ], [ -81.961027978032348, 28.896724789251579 ], [ -81.961490920992134, 28.896665104991506 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Troy Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961050820507552, 28.895396516355525 ], [ -81.961093752439609, 28.895500523343774 ], [ -81.961163518598212, 28.895665985585513 ], [ -81.961223891919019, 28.895812538289618 ], [ -81.961325853307201, 28.896066640811874 ], [ -81.961411897220088, 28.896331199930021 ], [ -81.961453478845016, 28.896500425504247 ], [ -81.961490920992134, 28.896665104991506 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marigold Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992696564072304, 28.866109846032437 ], [ -81.992696564325215, 28.866106407353243 ], [ -81.993312087162678, 28.866109801975831 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marigold Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99212802620653, 28.866110917807866 ], [ -81.992696564072304, 28.866109846032437 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Russell Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98217896096034, 28.913455729177393 ], [ -81.982046455631448, 28.913469171882237 ], [ -81.981948518115232, 28.913479734493578 ], [ -81.981852553708606, 28.913489848860351 ], [ -81.981771814513436, 28.913495756925055 ], [ -81.98165936489842, 28.913507898167619 ], [ -81.981537459853499, 28.913521976142974 ], [ -81.981390545493582, 28.913539117431359 ], [ -81.981233553443602, 28.913556854463607 ], [ -81.981049648263436, 28.913574587494683 ], [ -81.980892656838776, 28.913588378383693 ], [ -81.980753607428909, 28.913602171677514 ], [ -81.980607826912617, 28.913619909595973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chamberlain Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980749287126116, 28.912712222606139 ], [ -81.980847962879253, 28.912731969139099 ], [ -81.980962340925672, 28.912724093104405 ], [ -81.981152973201645, 28.912704386010525 ], [ -81.981380234497934, 28.912680330177054 ], [ -81.981625003663666, 28.912651343512096 ], [ -81.981868039952005, 28.912614720024045 ], [ -81.982124081262683, 28.912566391434105 ], [ -81.982371571522833, 28.912519960563213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Poppy Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97091305444043, 28.888271758958837 ], [ -81.970713056549343, 28.888271715402482 ], [ -81.970558762092594, 28.888271681596784 ], [ -81.970415068759067, 28.888271387385419 ], [ -81.970361913666025, 28.888275535247242 ], [ -81.970315432018467, 28.888289966281103 ], [ -81.970282864219328, 28.888307136159867 ], [ -81.970254118430958, 28.888328210231194 ], [ -81.970232554412533, 28.888356659491606 ], [ -81.970218694802711, 28.888382646277744 ], [ -81.970204995942723, 28.888409351329322 ], [ -81.970196606026647, 28.88843885920317 ], [ -81.970190532177284, 28.888521525724947 ], [ -81.970183443688114, 28.888713008558756 ], [ -81.970179881118867, 28.888882832448292 ], [ -81.970169257426605, 28.889142038449219 ], [ -81.970155324126054, 28.889376491797478 ], [ -81.970144735235706, 28.88951847001676 ], [ -81.970130623541436, 28.889685198448692 ], [ -81.970124787345256, 28.889796502213819 ], [ -81.970132731620382, 28.889830052413828 ], [ -81.970148288946589, 28.889869052398556 ], [ -81.970172231569975, 28.889898567461916 ], [ -81.970207704952685, 28.889925858207313 ], [ -81.97024526989631, 28.889946011309675 ], [ -81.970291970891751, 28.889962884760656 ], [ -81.970452444145607, 28.889966082798853 ], [ -81.970585375520386, 28.889962948576052 ], [ -81.970663219082709, 28.88995769710748 ], [ -81.970725498204644, 28.889937685975084 ], [ -81.970779393257757, 28.889901233073701 ], [ -81.970808150376129, 28.889870251640136 ], [ -81.970831953558346, 28.889824237700484 ], [ -81.970849563991393, 28.889709764880475 ], [ -81.970863481963008, 28.88952791016704 ], [ -81.97087759041824, 28.889361180750555 ], [ -81.97089171386655, 28.88914838618707 ], [ -81.970902307656601, 28.888981655995103 ], [ -81.970905881571014, 28.888774702425092 ], [ -81.970909482302361, 28.888472522763184 ], [ -81.97091303859662, 28.888324357664352 ], [ -81.97091305444043, 28.888271758958837 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993528026415134, 28.954425496547334 ], [ -81.993664335110665, 28.954425503221817 ], [ -81.993863687145378, 28.954425462206313 ], [ -81.99400035197533, 28.954423045001345 ], [ -81.994090097319699, 28.954423049096317 ], [ -81.994178141870393, 28.954403475127783 ], [ -81.9942609525812, 28.954378624268678 ], [ -81.994332418843328, 28.954337219419791 ], [ -81.994381818433993, 28.954289361293952 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995067381695264, 28.953402141134454 ], [ -81.995150032870612, 28.953347295728843 ], [ -81.995190419870255, 28.95332756410868 ], [ -81.995235292755126, 28.953313752578971 ], [ -81.995288019800142, 28.953299940418034 ], [ -81.995339623105082, 28.953294022348356 ], [ -81.995388983726087, 28.953290077491506 ], [ -81.995437221744311, 28.953292053416838 ], [ -81.995733378912334, 28.9533443567727 ], [ -81.995986908174828, 28.953386791590823 ], [ -81.996229220055355, 28.953417385726862 ], [ -81.996464800288521, 28.953446005025754 ], [ -81.996739646481757, 28.953473639620384 ], [ -81.996868655446448, 28.953483509423961 ], [ -81.997008943979196, 28.953495771346482 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privateer Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987035192873563, 28.873946789883842 ], [ -81.98715468412594, 28.874070401574237 ], [ -81.987320084709324, 28.874263216020001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Red Ash Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985551598288936, 28.870124456385351 ], [ -81.985713072574669, 28.870078348948851 ], [ -81.9858631596572, 28.870043995316575 ], [ -81.986008362030049, 28.87002575162623 ], [ -81.986149903107005, 28.870020396798829 ], [ -81.986313554341507, 28.870026678390868 ], [ -81.986504577983155, 28.870040702514537 ], [ -81.986731876013607, 28.870060663529355 ], [ -81.986913675702979, 28.870070651055201 ], [ -81.987127252267271, 28.870066678270053 ], [ -81.987202497393142, 28.870058636976822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "English Ivy Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987202497393142, 28.870058636976822 ], [ -81.987226067631255, 28.870214904599088 ], [ -81.98723201154381, 28.870308298950359 ], [ -81.987226093571579, 28.870367245841706 ], [ -81.987210328686288, 28.870434861114788 ], [ -81.987180776405523, 28.870495538153385 ], [ -81.987121677310043, 28.870564884365987 ], [ -81.987052731136231, 28.870627291787354 ], [ -81.986974133724786, 28.870674332009251 ], [ -81.986899162251177, 28.870695040632899 ], [ -81.986796231416321, 28.870711097781985 ], [ -81.986462697061725, 28.870724129665476 ], [ -81.986131786662469, 28.870730764570752 ], [ -81.985835682054557, 28.870741594465027 ], [ -81.985759239852442, 28.870751198557517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dalkeith Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975024520509436, 28.854292587157421 ], [ -81.974882928673026, 28.8543261598406 ], [ -81.974771989718434, 28.854343676212856 ], [ -81.974508570653299, 28.854363018728357 ], [ -81.97434984632855, 28.85437496655743 ], [ -81.974241007120654, 28.854384925186565 ], [ -81.974195225467938, 28.854379751588986 ], [ -81.974152579970806, 28.854374929577151 ], [ -81.974114987728996, 28.854356165206308 ], [ -81.974084563877881, 28.854340980752735 ], [ -81.974007491414682, 28.854251136846852 ], [ -81.973898691688447, 28.854109385228931 ], [ -81.973785355494243, 28.853969630337339 ], [ -81.973748198516262, 28.853932814430909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dalkeith Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973748198516262, 28.853932814430909 ], [ -81.97366803080989, 28.853853377810449 ], [ -81.973575324307831, 28.853794675449532 ], [ -81.973487368977587, 28.853741552916894 ], [ -81.973359150313968, 28.853688083067606 ], [ -81.973241487133123, 28.853647137394351 ], [ -81.973162680035031, 28.853615203502898 ], [ -81.973093328716814, 28.853587434698948 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dalkeith Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973093328716814, 28.853587434698948 ], [ -81.973030286223548, 28.853549951105279 ], [ -81.972970398928538, 28.853502756606645 ], [ -81.972838024494592, 28.853357015688161 ], [ -81.972672562924188, 28.853166859141151 ], [ -81.972526009572221, 28.852998911091525 ], [ -81.972407823622888, 28.852858722726182 ], [ -81.972311700434574, 28.852743519133494 ], [ -81.972232912200084, 28.852644972007276 ], [ -81.972182491101663, 28.852565859157952 ], [ -81.972147829242218, 28.852500628822892 ], [ -81.972113173694623, 28.852415967333418 ], [ -81.972083250815885, 28.852317430264421 ], [ -81.972069660648671, 28.852238038095557 ], [ -81.972058071486344, 28.852164772994925 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fieldstone Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973093328716814, 28.853587434698948 ], [ -81.973199543440259, 28.853490603424351 ], [ -81.973298141121944, 28.853416588945748 ], [ -81.973392538226946, 28.853355974598532 ], [ -81.973506071591089, 28.853281888037269 ], [ -81.973600469152657, 28.853214535127396 ], [ -81.973623071224836, 28.853198967590302 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fieldstone Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973623071224836, 28.853198967590302 ], [ -81.973725479076322, 28.85314045063835 ], [ -81.973828804290662, 28.85307309931591 ], [ -81.973928924058967, 28.853007516711102 ], [ -81.974003022634776, 28.852961735493039 ], [ -81.974058206608149, 28.852915951478362 ], [ -81.974089626172542, 28.852870181799386 ], [ -81.974107094787584, 28.852824367011241 ], [ -81.974113412131544, 28.852779960371489 ], [ -81.974104968547095, 28.852728705090783 ], [ -81.974086634669789, 28.852693914970963 ], [ -81.974055118565943, 28.85265505109686 ], [ -81.974004689470235, 28.852598143759074 ], [ -81.973906990523929, 28.852482941894646 ], [ -81.973799831018013, 28.852363573067976 ], [ -81.973722614105881, 28.852276128176026 ], [ -81.97363121535605, 28.852170641561223 ], [ -81.973535092477718, 28.852055438828263 ], [ -81.973443694868706, 28.851943012452271 ], [ -81.973391693646278, 28.851880552682953 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fieldstone Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973391693646278, 28.851880552682953 ], [ -81.973355451708514, 28.851831974385096 ], [ -81.973301876518065, 28.851757024555194 ], [ -81.973230967738345, 28.851661255057365 ], [ -81.973164786114893, 28.851572425196103 ], [ -81.973082847878445, 28.851468326935578 ], [ -81.973041876439964, 28.851415584363835 ], [ -81.973013515530695, 28.851365618906502 ], [ -81.97298988558012, 28.851311492060205 ], [ -81.972964686581875, 28.851233772310202 ], [ -81.972930040611317, 28.851111642778349 ], [ -81.972876494082044, 28.850933999575989 ], [ -81.972824525458861, 28.850750804781097 ], [ -81.972764676513762, 28.850560669631349 ], [ -81.972733195238135, 28.850394131902537 ], [ -81.972734570550301, 28.850308968965049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fieldstone Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972734570550301, 28.850308968965049 ], [ -81.972743677661597, 28.85024654209138 ], [ -81.972769048061679, 28.850146835248161 ], [ -81.972830298889292, 28.850013227924883 ], [ -81.972890277977683, 28.849886357830822 ], [ -81.972932392106003, 28.849776325640452 ], [ -81.972954106882256, 28.84965169272353 ], [ -81.972954139959526, 28.84952144038223 ], [ -81.97296055297781, 28.849386698548674 ], [ -81.972968248844197, 28.849221640397843 ], [ -81.972969566378154, 28.849058825894318 ], [ -81.972978530084291, 28.848920715354534 ], [ -81.972981111800777, 28.84880281698204 ], [ -81.972973483989634, 28.848711863013666 ], [ -81.972947993462597, 28.84865010135422 ], [ -81.972896991890224, 28.848597317895099 ], [ -81.972860305333043, 28.848576692788342 ], [ -81.972806451183757, 28.848556875365659 ], [ -81.97271335150856, 28.848551242314084 ], [ -81.972599840541989, 28.848565816683021 ], [ -81.972475938868641, 28.848582883700818 ], [ -81.972370723376571, 28.848607689922602 ], [ -81.972321906569135, 28.848633464153401 ], [ -81.972288272766434, 28.848667834162253 ], [ -81.972266570095826, 28.8487108019951 ], [ -81.972253539511286, 28.848766188248934 ], [ -81.972248075692519, 28.848912292994488 ], [ -81.972242614679089, 28.849051711651043 ], [ -81.97224129541604, 28.849190052906049 ], [ -81.972236148876789, 28.849352864801496 ], [ -81.97222979959011, 28.849452932807608 ], [ -81.972221713694111, 28.849512814460621 ], [ -81.972213350130332, 28.849564772908259 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ipswitch Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97166884134505, 28.849484948440733 ], [ -81.972213350130332, 28.849564772908259 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Garnet Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972267771931783, 28.851507448186556 ], [ -81.972284048411026, 28.851483577449102 ], [ -81.972294059505828, 28.85145298504435 ], [ -81.972292741998587, 28.851412912482306 ], [ -81.972286242426222, 28.851385219383527 ], [ -81.97226782011488, 28.851324097912165 ], [ -81.972236392571574, 28.851219049513478 ], [ -81.972205709168733, 28.851113954340175 ], [ -81.972180226673657, 28.85102187328776 ], [ -81.972167800134969, 28.850983244813655 ], [ -81.972154244903123, 28.850953366663354 ], [ -81.972138631475246, 28.850935792825261 ], [ -81.97212127963742, 28.850926621795939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Garnet Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97212127963742, 28.850926621795939 ], [ -81.972127358027251, 28.850908288209617 ], [ -81.972130834042389, 28.850886897973393 ], [ -81.972112632893896, 28.850812027189814 ], [ -81.972090960918791, 28.850735626272975 ], [ -81.972057145445305, 28.850635541812327 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amber Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97029788795416, 28.850395664940702 ], [ -81.970374752403643, 28.850450079230153 ], [ -81.970470968354036, 28.85050914912037 ], [ -81.97055609629659, 28.850560901517564 ], [ -81.970671383874077, 28.850614619361039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amber Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970671383874077, 28.850614619361039 ], [ -81.970761184581988, 28.85065130775498 ], [ -81.970839272494501, 28.850675390139564 ], [ -81.970952503009784, 28.85070864571102 ], [ -81.971063128994828, 28.850739611476392 ], [ -81.971195881302165, 28.85077745566651 ], [ -81.971323428587155, 28.850810714901129 ], [ -81.971456181078707, 28.850848558834819 ], [ -81.971607156123341, 28.850889844279394 ], [ -81.971714317328363, 28.850909729366695 ], [ -81.971815837871048, 28.850921209109909 ], [ -81.971926449710864, 28.850923008940555 ], [ -81.972030742086631, 28.850921212577781 ], [ -81.972077025490819, 28.850922028880074 ], [ -81.97212127963742, 28.850926621795939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakewood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993027500881752, 28.89322909674793 ], [ -81.992907915439446, 28.893173907497349 ], [ -81.992712993678808, 28.893089326083846 ], [ -81.992534673594733, 28.89300715356719 ], [ -81.992387302463484, 28.892948749186544 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakewood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993698478755149, 28.895899599766459 ], [ -81.993917553862047, 28.895769817001227 ], [ -81.994120699984833, 28.895641940625104 ], [ -81.994321109132059, 28.895494814159314 ], [ -81.994515854780403, 28.89534974800733 ], [ -81.994658642658024, 28.895231493099306 ], [ -81.994836980411492, 28.895064769708871 ], [ -81.994979769560103, 28.894927264791551 ], [ -81.995074817746399, 28.894831707647942 ], [ -81.995111422819704, 28.894782196225815 ], [ -81.99513109241478, 28.894720293780747 ], [ -81.995126406169945, 28.894670774488972 ], [ -81.995109996862396, 28.894615066785224 ], [ -81.995088898105095, 28.894573799309111 ], [ -81.995039664451866, 28.894501582779952 ], [ -81.994950578743527, 28.894379845577284 ], [ -81.994778822914185, 28.894181259762906 ], [ -81.994776675049195, 28.894178510369283 ], [ -81.994596569374977, 28.894006376709463 ], [ -81.994371504436344, 28.893841305888099 ], [ -81.994251934506295, 28.893777337554731 ], [ -81.99406593076894, 28.893690660648662 ], [ -81.993712020714625, 28.893533537502964 ], [ -81.993360650172392, 28.893379163763051 ], [ -81.993099908102579, 28.89326054842536 ], [ -81.993027500881752, 28.89322909674793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hickory Grove Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992743429947353, 28.893545864494723 ], [ -81.992985227112499, 28.893284527303646 ], [ -81.993027500881752, 28.89322909674793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakewood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991881745265758, 28.895151252066455 ], [ -81.991875885372636, 28.895154001915778 ], [ -81.991697547909766, 28.895221714739787 ], [ -81.991538357180389, 28.895274646177562 ], [ -81.991382295854592, 28.895324083023926 ], [ -81.991316020562195, 28.895358542928292 ], [ -81.991276855614188, 28.895393003688483 ], [ -81.991243714570189, 28.895448671586156 ], [ -81.991234538815874, 28.89548599550805 ], [ -81.991230893782074, 28.895533145839639 ], [ -81.991239088440039, 28.895646593425152 ], [ -81.991255680879959, 28.895767259961097 ], [ -81.991263873502291, 28.895881052219519 ], [ -81.991263866722051, 28.8959704331197 ], [ -81.991274795171179, 28.896081472638553 ], [ -81.991284170889813, 28.896126649594301 ], [ -81.991300889372752, 28.896167094470851 ], [ -81.991329298405077, 28.896198146270983 ], [ -81.991367157170799, 28.89622542165614 ], [ -81.991405121131166, 28.896245814296051 ], [ -81.99144764195384, 28.896262655768837 ], [ -81.991599418394117, 28.896303278909905 ], [ -81.991787892728482, 28.896339684111123 ], [ -81.991999223681844, 28.896364289259338 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bermuda Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990547894545216, 28.894926378947446 ], [ -81.990712372747666, 28.894873746807068 ], [ -81.991084309618756, 28.894745902066195 ], [ -81.99121913616267, 28.894695338984565 ], [ -81.991304231688403, 28.894660334471723 ], [ -81.991404570237108, 28.894615563501127 ], [ -81.99179579072036, 28.894408442880689 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Latta Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99179579072036, 28.894408442880689 ], [ -81.991853802751379, 28.894468986279254 ], [ -81.991889946338674, 28.89450087848682 ], [ -81.991936646193935, 28.894536773931591 ], [ -81.991984748331234, 28.894564543332848 ], [ -81.992048100497584, 28.894597753601886 ], [ -81.992264984991806, 28.894690550883762 ], [ -81.992413234356491, 28.894759316543258 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Derby Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98339172436485, 28.854046526673965 ], [ -81.983424810875007, 28.853886389648459 ], [ -81.983443340708902, 28.853756692783577 ], [ -81.983462162265312, 28.853546596037372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Haislip Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988990340840729, 28.854610593936879 ], [ -81.989153348142892, 28.854263192757386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vicksburg Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987828452813105, 28.856327672239598 ], [ -81.987912896190139, 28.856180625877784 ], [ -81.987966766478834, 28.856043770040475 ], [ -81.988072652121872, 28.855712611975445 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tannery Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98708884697696, 28.855909825510778 ], [ -81.987142716648435, 28.855793353067629 ], [ -81.987227159934505, 28.855659409495068 ], [ -81.987366632091849, 28.855469525474575 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinekot Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985442203753522, 28.855078498592171 ], [ -81.985890530690497, 28.854904076123322 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rosebriar Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996277056304976, 28.86102438020454 ], [ -81.996283565890508, 28.861025942280246 ], [ -81.996294297464019, 28.861025062840959 ], [ -81.996307622257774, 28.861023633971413 ], [ -81.996320947254972, 28.861016972637721 ], [ -81.996337603563788, 28.861006978284742 ], [ -81.996351404239547, 28.860997936682612 ], [ -81.99666359298152, 28.860611514325925 ], [ -81.996667875686555, 28.860601520513139 ], [ -81.996669302757894, 28.860592954072061 ], [ -81.996665637894822, 28.860580343371108 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Point Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999800572981187, 28.863365904870857 ], [ -82.00001234200262, 28.862976750591255 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Braidfoot Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006674612543563, 28.861246053279643 ], [ -82.006670193129608, 28.860652017853663 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bowen Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007024672804519, 28.859064417771734 ], [ -82.006826657157461, 28.858596195854251 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vickers Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004613762485548, 28.860043126602122 ], [ -82.005039238753, 28.859955234464874 ], [ -82.005087779778975, 28.85994762014256 ], [ -82.005136320246507, 28.859950475241018 ], [ -82.005216271150857, 28.859960945619356 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arjay Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013670356198389, 28.861817860279892 ], [ -82.013187649149472, 28.861860377404263 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Upton Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014341252560328, 28.858532527597969 ], [ -82.015946647175525, 28.858545335021063 ], [ -82.016028566824474, 28.858554497644889 ], [ -82.016076148053884, 28.858567307649857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Russell Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979044947102793, 28.912228512429298 ], [ -81.979085215071422, 28.912211485168655 ], [ -81.979140593496567, 28.912189376712426 ], [ -81.979206777955326, 28.912179649436172 ], [ -81.979298381903575, 28.91216540736335 ], [ -81.97941303408065, 28.912148282332755 ], [ -81.979516963876137, 28.912130764865942 ], [ -81.979623046119485, 28.912113248549559 ], [ -81.979722874270863, 28.912099168051132 ], [ -81.979824853502606, 28.91208165275733 ], [ -81.979898504797731, 28.912069630823947 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Smith Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979044947102793, 28.912228512429298 ], [ -81.978701732373509, 28.9118652229924 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrera Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970279503817181, 28.920698331014894 ], [ -81.970291830710366, 28.920977398625201 ], [ -81.970326324679576, 28.921380023449561 ], [ -81.970365134024988, 28.921734448540274 ], [ -81.970397085033227, 28.92205866682303 ], [ -81.97043476164346, 28.922455871265001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caryle Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996757398028052, 28.921402116969361 ], [ -81.996930885286218, 28.92129171809318 ], [ -81.997221746252876, 28.92115625762931 ], [ -81.997333892403006, 28.921114821181476 ], [ -81.99743706407196, 28.921097063419531 ], [ -81.997529022197938, 28.921077332036738 ], [ -81.997600795061061, 28.921057600207003 ], [ -81.9976905104606, 28.921028003865487 ], [ -81.99780265428528, 28.920984593704301 ], [ -81.997881155085793, 28.920951049491162 ], [ -81.997953530190898, 28.92091477117339 ], [ -81.998043205944029, 28.920859768637964 ], [ -81.998235438587571, 28.920734078052881 ], [ -81.998474304688386, 28.920580164859402 ], [ -81.998692234065615, 28.920438652171367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Catalina Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956999302438987, 28.928181599963878 ], [ -81.957012412255935, 28.928378933397624 ], [ -81.957017322151231, 28.928435371724085 ], [ -81.957004952274545, 28.928513512827433 ], [ -81.956980108799883, 28.928623079570979 ], [ -81.956933171794404, 28.928806856589325 ], [ -81.956884297126749, 28.928956278983257 ], [ -81.956847152908935, 28.92907306912193 ], [ -81.956827602301757, 28.929131463871617 ], [ -81.956811968085887, 28.929164094846403 ], [ -81.956796334885908, 28.929196725819526 ], [ -81.956759207085057, 28.929268855943675 ], [ -81.956718170279018, 28.929351290808011 ], [ -81.95664731468321, 28.9294729243456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Centerville Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983289898893901, 28.878398521221303 ], [ -81.983668838059089, 28.878637716925621 ], [ -81.984018639832954, 28.878864643983874 ], [ -81.984135240045859, 28.87894929020392 ], [ -81.984292745477106, 28.879098763412241 ], [ -81.984550486098769, 28.879343685446202 ], [ -81.984726492436067, 28.879502191419597 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barrymoore Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006482549299378, 28.909598932588665 ], [ -82.006545059657128, 28.909595147400399 ], [ -82.006633944553229, 28.909589643024418 ], [ -82.006716576229437, 28.909584140679652 ], [ -82.006792763074074, 28.90958104140077 ], [ -82.006872074489863, 28.909578288415098 ], [ -82.006964279942679, 28.909575534771708 ], [ -82.007050037344555, 28.909572778668476 ], [ -82.007129348570075, 28.90956727532782 ], [ -82.007211981227812, 28.909561771776843 ], [ -82.007310436766829, 28.909558671106112 ], [ -82.0074215894752, 28.909555916200947 ], [ -82.007538994360857, 28.90955315997871 ], [ -82.007666166865448, 28.909553153343779 ], [ -82.007821663390658, 28.909553145067957 ], [ -82.00795508807839, 28.909553137823742 ], [ -82.00808538513634, 28.909553131524067 ], [ -82.008199666678664, 28.909553125103592 ], [ -82.008313944119138, 28.909553118586388 ], [ -82.008418844822771, 28.90955311161629 ], [ -82.00849338391852, 28.909552934013899 ], [ -82.008575182205036, 28.909552929180457 ], [ -82.008663941746875, 28.909559047774128 ], [ -82.008717342901278, 28.909580938810915 ], [ -82.008763371149499, 28.909603800244852 ], [ -82.008794412139821, 28.909635929175874 ], [ -82.008818844818364, 28.90967695515954 ], [ -82.00883495502579, 28.909731849964746 ], [ -82.008838086497633, 28.909804731064302 ], [ -82.00884121886277, 28.909888611171599 ], [ -82.008841226752907, 28.909986244290618 ], [ -82.008841511797954, 28.910176177928783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Broxton Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006493916650598, 28.910235262208907 ], [ -82.00681175067983, 28.910221152170195 ], [ -82.007313604348994, 28.910193283087708 ], [ -82.007640815122869, 28.91018192082673 ], [ -82.008002800147679, 28.910184651551447 ], [ -82.008438039641717, 28.910184626843016 ], [ -82.008744048730861, 28.910183841675948 ], [ -82.008841511797954, 28.910176177928783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barrymoore Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005772261620635, 28.90962749522982 ], [ -82.005842978847852, 28.909626117380832 ], [ -82.005941986126629, 28.909621971023235 ], [ -82.006055171474245, 28.909620835886692 ], [ -82.006189332187787, 28.909614758799908 ], [ -82.006290913252357, 28.909609254120443 ], [ -82.006405191463955, 28.909603748815428 ], [ -82.006482549299378, 28.909598932588665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brunson Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960005325964929, 28.902856398224024 ], [ -81.959910293241492, 28.902858123025585 ], [ -81.959726789815349, 28.902860123501494 ], [ -81.959564462033541, 28.902861264806969 ], [ -81.959487354442558, 28.902864812842971 ], [ -81.959426480343296, 28.902869556779084 ], [ -81.959375071791811, 28.902879063178851 ], [ -81.959338541813977, 28.902893336400606 ], [ -81.959306070121542, 28.902915942667882 ], [ -81.959280357785531, 28.902938551881164 ], [ -81.959254644211512, 28.902969493815807 ], [ -81.959238395801165, 28.903008768641126 ], [ -81.959230267741333, 28.903042096175778 ], [ -81.959227545715663, 28.903080187684136 ], [ -81.95923001022409, 28.903164909749471 ], [ -81.95922997693863, 28.903249479468553 ], [ -81.959229942628014, 28.903334048283956 ], [ -81.959229914213665, 28.903406241174594 ], [ -81.959229887151565, 28.903474998112415 ], [ -81.959226974899138, 28.903569108758557 ], [ -81.959222382819434, 28.903635129440815 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Witherspoon Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983194144512694, 28.87756417850175 ], [ -81.98328371615419, 28.877633839343524 ], [ -81.983422424815942, 28.877736680272083 ], [ -81.983570748581897, 28.877813991603855 ], [ -81.983690118432989, 28.877878094949459 ], [ -81.983797197577047, 28.877925234321804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Witherspoon Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982061065027139, 28.877673309844841 ], [ -81.982487278383275, 28.877289709354063 ], [ -81.98261618272916, 28.877179322309047 ], [ -81.982671240417318, 28.877157571349457 ], [ -81.982725512319419, 28.877150975332174 ], [ -81.982782936788013, 28.877154928513587 ], [ -81.982843310620865, 28.877170878156118 ], [ -81.982879706906104, 28.877190497972183 ], [ -81.982918773861073, 28.877221373436541 ], [ -81.982985170209361, 28.877325008602089 ], [ -81.983084771129299, 28.877452563460093 ], [ -81.983194144512694, 28.87756417850175 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bucksport Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982305765600699, 28.878284138678531 ], [ -81.982392846384201, 28.878257087440822 ], [ -81.982435738749516, 28.878238262044942 ], [ -81.982477188861722, 28.878212596997177 ], [ -81.982594874897316, 28.878115734023226 ], [ -81.982910127599041, 28.877818143193554 ], [ -81.983194144512694, 28.87756417850175 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burke Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978401517044048, 28.86898026788446 ], [ -81.978645089776322, 28.868873793681658 ], [ -81.978702196902177, 28.868848095259924 ], [ -81.97874788313554, 28.86881097725599 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Campobello Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977795758094985, 28.876988216741299 ], [ -81.977852163375204, 28.876639541348922 ], [ -81.977982583668876, 28.875486221189586 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Salmon Brook Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97690355447979, 28.876970269669876 ], [ -81.977043139659145, 28.876494055896718 ], [ -81.977182502301787, 28.875947760993018 ], [ -81.977216501931352, 28.875775055302004 ], [ -81.977265636442468, 28.875416352472104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caribou Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973599584907547, 28.901352856666449 ], [ -81.973778213968941, 28.901338432434486 ], [ -81.973989182167699, 28.901304080667238 ], [ -81.974090417816853, 28.901285955070154 ], [ -81.974336011313241, 28.901228265180919 ], [ -81.974422740546316, 28.901203199678125 ], [ -81.974604106100173, 28.901150783579869 ], [ -81.975106606961518, 28.900995729499947 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959868960373669, 28.887519955718613 ], [ -81.959839673920271, 28.887304297116405 ], [ -81.95982566230542, 28.887089296339443 ], [ -81.959827314827777, 28.886870167706203 ], [ -81.959855587535458, 28.886645533070443 ], [ -81.959890095954947, 28.886496700763963 ], [ -81.959940267329287, 28.886338224818939 ], [ -81.960011060865284, 28.886166736601314 ], [ -81.960169072557662, 28.885873848024382 ], [ -81.960465235802175, 28.88534195795518 ], [ -81.960520830278639, 28.885239707536257 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbett Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958735141070164, 28.887664892265555 ], [ -81.958868571231818, 28.887648775720383 ], [ -81.959028634842966, 28.88763056571684 ], [ -81.959196106272273, 28.887608442692983 ], [ -81.959356168739646, 28.887590233202165 ], [ -81.959459910659675, 28.887577221819978 ], [ -81.959578716401552, 28.887566828859864 ], [ -81.959868960373669, 28.887519955718613 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Banberry Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958790738894407, 28.888319804469333 ], [ -81.958782374442052, 28.888259150165883 ], [ -81.95876316872166, 28.88810654360007 ], [ -81.95874989101253, 28.887953939752194 ], [ -81.958737050957652, 28.887729624796368 ], [ -81.958735141070164, 28.887664892265555 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbett Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957983817890309, 28.887673283400208 ], [ -81.958094965226934, 28.887673318141157 ], [ -81.958336529294471, 28.887673392427601 ], [ -81.958523262516579, 28.887668234955914 ], [ -81.958667016103021, 28.887664365115842 ], [ -81.958735141070164, 28.887664892265555 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbett Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957256338766896, 28.887678817646758 ], [ -81.957329145191935, 28.887678839904698 ], [ -81.957499610873654, 28.887678946310658 ], [ -81.957706249110871, 28.887679011568153 ], [ -81.95789100763885, 28.88767667674654 ], [ -81.957983817890309, 28.887673283400208 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Halyard Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958015791614102, 28.888758019182589 ], [ -81.957998880479309, 28.888223077860133 ], [ -81.957983817890309, 28.887673283400208 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbett Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954041442847696, 28.89040063737438 ], [ -81.954039555236065, 28.890498060781233 ], [ -81.954039500877016, 28.890623088881636 ], [ -81.954039459878331, 28.890715641399048 ], [ -81.954038711318759, 28.890831617383327 ], [ -81.95406347217461, 28.890929947691603 ], [ -81.954085473353146, 28.890967336606195 ], [ -81.954124205070471, 28.890999825428622 ], [ -81.954175853921939, 28.891030693606229 ], [ -81.954236731585411, 28.891046951257817 ], [ -81.954377486959956, 28.891050031786847 ], [ -81.954538815783806, 28.891050086505619 ], [ -81.954732958484172, 28.891050152097982 ], [ -81.954876959456598, 28.891047167938435 ], [ -81.954972902554317, 28.891042330434143 ], [ -81.955019031715025, 28.891037474377836 ], [ -81.955052246268266, 28.89102611832476 ], [ -81.955107610018587, 28.890995286305497 ], [ -81.955144526062924, 28.890959575681094 ], [ -81.955173230923307, 28.890920919904605 ], [ -81.955181179360054, 28.89089597396066 ], [ -81.955185159017304, 28.890863789342465 ], [ -81.955192588721587, 28.890748505840424 ], [ -81.955196247212186, 28.890595835174128 ], [ -81.955200400253048, 28.890475514836481 ], [ -81.955203808950401, 28.890402654334302 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crawford Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00458597197138, 28.911307914489001 ], [ -82.004629926346865, 28.911325101940058 ], [ -82.005007206492124, 28.91147764509644 ], [ -82.005147624236685, 28.911521873729722 ], [ -82.005222167577031, 28.911538649398477 ], [ -82.005329648438533, 28.911563051889356 ], [ -82.005457929884116, 28.911584401068779 ], [ -82.005582675084341, 28.911596309518792 ], [ -82.005747943725382, 28.911604552973941 ], [ -82.005916142321922, 28.91159629669809 ], [ -82.006149610142103, 28.911569120857887 ], [ -82.006511379278848, 28.911516171203957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crawford Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006511379278848, 28.911516171203957 ], [ -82.007046837533821, 28.911484175417613 ], [ -82.007482081139415, 28.91146490327213 ], [ -82.007865801682087, 28.911457690824136 ], [ -82.008406298000523, 28.911500949091216 ], [ -82.008710038110507, 28.911533909149771 ], [ -82.008788165503887, 28.911531040513982 ], [ -82.008859548948337, 28.91152271334845 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Weston Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004140090129084, 28.919742812236283 ], [ -82.004174860908705, 28.919641740571432 ], [ -82.004204551966197, 28.919481540645052 ], [ -82.004204545366889, 28.919328560790564 ], [ -82.004200241188101, 28.919160797823118 ], [ -82.004196132090044, 28.918970691277185 ], [ -82.004183426950902, 28.918810147801707 ], [ -82.004179527989493, 28.918757740718334 ], [ -82.004165456878198, 28.918682443545876 ], [ -82.004158912642595, 28.918646960908553 ], [ -82.004145524744473, 28.918605081170522 ], [ -82.004122073610262, 28.918545255920908 ], [ -82.004061105049686, 28.918423539515224 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Culpepper Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003160711720369, 28.918447284918354 ], [ -82.003266226542038, 28.918451408137297 ], [ -82.003535877002193, 28.918456559970586 ], [ -82.003827801088249, 28.91845861674976 ], [ -82.003938006697297, 28.918460676678269 ], [ -82.003990762058862, 28.918447266313834 ], [ -82.004061105049686, 28.918423539515224 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Culpepper Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002160651551918, 28.917720094534253 ], [ -82.002355761875236, 28.918140509094755 ], [ -82.002425314298918, 28.918273205307887 ], [ -82.00246009027191, 28.918324083524059 ], [ -82.002506586824808, 28.918358117488193 ], [ -82.002538171676377, 28.918373027479177 ], [ -82.002583895506248, 28.91838127739927 ], [ -82.002726766907415, 28.918402460196042 ], [ -82.003022369251298, 28.918438002889566 ], [ -82.003160711720369, 28.918447284918354 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stratford Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003160711720369, 28.918447284918354 ], [ -82.003163602987883, 28.91834126049832 ], [ -82.003163897741828, 28.918241042405718 ], [ -82.003163894829996, 28.91813101635276 ], [ -82.003155555184918, 28.918053997373399 ], [ -82.00314513201549, 28.917951305385351 ], [ -82.003115947487956, 28.917799103830511 ], [ -82.00306592204177, 28.91760105786118 ], [ -82.003020662698347, 28.917454938055734 ], [ -82.002999248032978, 28.917390693112193 ], [ -82.002988540385829, 28.917345483726699 ], [ -82.002988541021537, 28.917288376462139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Day Lily Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990415822790851, 28.870359723530218 ], [ -81.990187976589908, 28.86993445323289 ], [ -81.990091908513634, 28.869745188013312 ], [ -81.990081964989429, 28.869707552206254 ], [ -81.990069328715421, 28.869648248288772 ], [ -81.990062272200618, 28.869596050424867 ], [ -81.990063037306669, 28.869560755088987 ], [ -81.990063669179492, 28.869473271429232 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Day Lily Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990062122277436, 28.868840649376743 ], [ -81.990065336239027, 28.867932731252804 ], [ -81.990066428206234, 28.867316800062845 ], [ -81.990065856791333, 28.867269586990641 ], [ -81.990069036518875, 28.86723789742793 ], [ -81.990077511312876, 28.867198748015586 ], [ -81.990091279513734, 28.867168921597369 ], [ -81.990112459768312, 28.867139096632179 ], [ -81.990137877249495, 28.867112068216922 ], [ -81.990170704088158, 28.867091563999967 ], [ -81.990207765921326, 28.867075722289666 ], [ -81.990244828045519, 28.867067335400733 ], [ -81.990351320474701, 28.867066207185562 ], [ -81.990726020136293, 28.867068864123318 ], [ -81.990787921150456, 28.867069556895359 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baisley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971465590056638, 28.877965527487166 ], [ -81.971531022509154, 28.877997222123351 ], [ -81.971621131212657, 28.878040404648718 ], [ -81.971706850353925, 28.87808717644652 ], [ -81.971812876963824, 28.878148047320021 ], [ -81.971906798575574, 28.878198258485057 ], [ -81.972091003228883, 28.878293269658027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Derringer Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971520720641365, 28.880201902344371 ], [ -81.971510743538573, 28.880113361874077 ], [ -81.971518226393655, 28.880023574523005 ], [ -81.971529450373708, 28.879951246600296 ], [ -81.971577347888726, 28.879724968522304 ], [ -81.971641743062406, 28.879342086808929 ], [ -81.971669638484485, 28.879215719028128 ], [ -81.971736123956461, 28.879013911611906 ], [ -81.971836909827374, 28.878778160456768 ], [ -81.971920535739415, 28.878593332443803 ], [ -81.971963421917636, 28.878502805353598 ], [ -81.972091003228883, 28.878293269658027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sutton Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970581694099437, 28.880122090382631 ], [ -81.970657947521929, 28.879900185095988 ], [ -81.970730887602699, 28.879622931847802 ], [ -81.970778077522141, 28.879468275895434 ], [ -81.970829545500195, 28.879341912525621 ], [ -81.971003244465464, 28.878928877352596 ], [ -81.971202677929057, 28.878447942927604 ], [ -81.971275719831553, 28.878282286045454 ], [ -81.971465590056638, 28.877965527487166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000032507438846, 28.886009288147331 ], [ -82.000302634847344, 28.885979128745731 ], [ -82.000929572578812, 28.885911709746864 ], [ -82.001415398339404, 28.885853159257145 ], [ -82.001836714659802, 28.88579105976536 ], [ -82.002407382702685, 28.885697588567261 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994755136272772, 28.886429084377056 ], [ -81.994755189584652, 28.886429084379191 ], [ -81.995143289826757, 28.886429099388039 ], [ -81.995999906117518, 28.886381343604363 ], [ -81.996979865774321, 28.886300826404653 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998673800960646, 28.886151214541048 ], [ -81.999365249819988, 28.886078478696117 ], [ -81.999471326878336, 28.886067478426895 ], [ -81.999472038385093, 28.886067404441857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dove Hollow Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998673800960646, 28.886151214541048 ], [ -81.998662462541603, 28.886054744003282 ], [ -81.998642808161279, 28.885981559051753 ], [ -81.998608036752785, 28.885916356580317 ], [ -81.998562678960056, 28.885849823982436 ], [ -81.998493133765137, 28.88575002684177 ], [ -81.998452313548228, 28.885694138706612 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hollow Branch Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995725050560054, 28.88406653190701 ], [ -81.995651641303084, 28.884302453272671 ], [ -81.995546568723299, 28.884613466623204 ], [ -81.995435126492509, 28.884932884589173 ], [ -81.995313672742327, 28.885286166349985 ], [ -81.995217275149443, 28.885565597368185 ], [ -81.995170776866615, 28.885718285743021 ], [ -81.995163971049635, 28.885767187499425 ], [ -81.995165104372774, 28.885799122681405 ], [ -81.9951707713807, 28.885828063294081 ], [ -81.995179840330152, 28.885852015209903 ], [ -81.995191180450988, 28.885869977734721 ], [ -81.995207053765839, 28.885894928746509 ], [ -81.995225196302655, 28.885911896280213 ], [ -81.995248818640931, 28.885929361179144 ], [ -81.995287119954014, 28.885950651459449 ], [ -81.995325420515414, 28.885966621762105 ], [ -81.99536775363633, 28.885975493795431 ], [ -81.995438308445443, 28.885977271112345 ], [ -81.995635648277215, 28.885964010449229 ], [ -81.996125935313771, 28.885930402675637 ], [ -81.996663977135825, 28.885891190174107 ], [ -81.997146489405694, 28.885852134903132 ], [ -81.997790998167986, 28.885795948860657 ], [ -81.998223316702948, 28.885759858314227 ], [ -81.998313216639644, 28.885746030911022 ], [ -81.998382763919082, 28.885728735637969 ], [ -81.998452313548228, 28.885694138706612 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dove Hollow Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998480015338927, 28.881991716254745 ], [ -81.998502190257199, 28.881926073189859 ], [ -81.998562665423677, 28.88183558931571 ], [ -81.998637252880314, 28.881761075408765 ], [ -81.998721025915842, 28.881683202289242 ], [ -81.998751399682106, 28.881638878849373 ], [ -81.998768029796295, 28.881597628500412 ], [ -81.99877256615045, 28.881536420016268 ], [ -81.99876198392009, 28.881491179407014 ], [ -81.998737794531223, 28.881443275059461 ], [ -81.998696976714598, 28.881398033219931 ], [ -81.998367148130697, 28.881067366366306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Foggy Brook Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998480015338927, 28.881991716254745 ], [ -81.998257694651002, 28.881995968555255 ], [ -81.997945950715732, 28.882018653972729 ], [ -81.997454742121832, 28.882065238959107 ], [ -81.997118962157302, 28.882093153523108 ], [ -81.997010109653885, 28.882102465482109 ], [ -81.996907869887494, 28.88210262817551 ], [ -81.99686478165215, 28.882092648576638 ], [ -81.996821694620905, 28.882077677431994 ], [ -81.996792216158127, 28.882055721898141 ], [ -81.996767270052601, 28.882033765569609 ], [ -81.996743460072025, 28.882005820689955 ], [ -81.996726453301108, 28.881975882795345 ], [ -81.996717382564128, 28.881943945601154 ], [ -81.996709445862308, 28.881907022316916 ], [ -81.99670151745778, 28.881664512328431 ], [ -81.996707187840272, 28.881632577314051 ], [ -81.996718528285911, 28.881606630117492 ], [ -81.996733268296055, 28.881578687115205 ], [ -81.996750278899555, 28.881555734798713 ], [ -81.99677295676284, 28.881530784926799 ], [ -81.996796770343209, 28.88151082570943 ], [ -81.996819447741657, 28.881498851828781 ], [ -81.996858000183806, 28.881482883844878 ], [ -81.99688861533653, 28.881476896917839 ], [ -81.997025172820727, 28.881463443236285 ], [ -81.997220849441561, 28.881445631699098 ], [ -81.997417007654164, 28.881433996142064 ], [ -81.99764038353203, 28.881414039785447 ], [ -81.997741300316846, 28.881407056916842 ], [ -81.997828607931964, 28.881396080151088 ], [ -81.997904579217405, 28.881380114313952 ], [ -81.997960139214598, 28.881362151308988 ], [ -81.998029308643396, 28.881335207888785 ], [ -81.998082601121808, 28.881307264439066 ], [ -81.998129091450338, 28.881282316507292 ], [ -81.998174446029552, 28.88124938227088 ], [ -81.998239717201855, 28.881192265717903 ], [ -81.998367148130697, 28.881067366366306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dove Hollow Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998568761214401, 28.883881812306758 ], [ -81.998617144453192, 28.883714154461234 ], [ -81.998631043642817, 28.883622371627904 ], [ -81.998650409977557, 28.88348262251435 ], [ -81.998660995525441, 28.883337583104854 ], [ -81.998667020983817, 28.883191629609687 ], [ -81.998662524393907, 28.88307285511716 ], [ -81.998654617315594, 28.882996126927519 ], [ -81.998645548222072, 28.882887016028036 ], [ -81.99861754659679, 28.882736328665413 ], [ -81.998536583044611, 28.882391884057881 ], [ -81.99847925452984, 28.882165808105967 ], [ -81.998473210131365, 28.882104598602485 ], [ -81.998470186937155, 28.882044720933138 ], [ -81.998480015338927, 28.881991716254745 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abordale Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000032507438846, 28.886009288147331 ], [ -81.999984043552772, 28.885646913057041 ], [ -81.9999749730015, 28.885499209970536 ], [ -81.999979509216558, 28.885339535168281 ], [ -81.999999164300917, 28.885174535903865 ], [ -82.000020331264935, 28.885061431652563 ], [ -82.00004905806199, 28.884956311891401 ], [ -82.000089879271385, 28.884828571481115 ], [ -82.000118605804886, 28.884771353968468 ], [ -82.00015035564418, 28.884715468256477 ], [ -82.000191176464398, 28.884672886996999 ], [ -82.000241069311627, 28.884632968441885 ], [ -82.000289449928289, 28.884603694311441 ], [ -82.000352976930557, 28.884574627724287 ], [ -82.000431715920968, 28.884551002006003 ], [ -82.000531929897392, 28.884538402378865 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Foggy Brook Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998367148130697, 28.881067366366306 ], [ -81.998856287084863, 28.880593922553828 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Foggy Brook Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998856287084863, 28.880593922553828 ], [ -81.999335543960711, 28.880137518645469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Foggy Brook Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999335543960711, 28.880137518645469 ], [ -81.999519987347711, 28.879957883087474 ], [ -81.999636400819369, 28.87984211826539 ], [ -81.999686289872585, 28.879772924531199 ], [ -81.999727110271252, 28.879703732553676 ], [ -81.999787136326631, 28.879578934460699 ], [ -81.999855615809949, 28.879434945299195 ], [ -81.999878293640592, 28.879381718560023 ], [ -81.999908587321272, 28.879335449480848 ], [ -81.999972025390349, 28.879285913209245 ], [ -82.000027964188831, 28.879261960872327 ], [ -82.000102042949521, 28.879255308514175 ], [ -82.000174609565235, 28.879263293251615 ], [ -82.000378704634741, 28.879313857891603 ], [ -82.000534420723838, 28.879360430410628 ], [ -82.000592312396151, 28.879402757422966 ], [ -82.000631176214981, 28.879462889533674 ], [ -82.000643271114868, 28.879504139165654 ], [ -82.000646292369098, 28.879553201829168 ], [ -82.000643272447491, 28.879637201620309 ], [ -82.000629665670061, 28.879709056427625 ], [ -82.000594893463344, 28.879807524620585 ], [ -82.000545004148151, 28.879898008325295 ], [ -82.000501161123751, 28.879956555946514 ], [ -82.000443711068598, 28.880019095317664 ], [ -82.000307648291894, 28.880146836628011 ], [ -82.00016704778686, 28.880281230454379 ], [ -82.000097508588638, 28.880347005287234 ], [ -82.000050635858784, 28.880375705506903 ], [ -82.000003771337816, 28.880395664210859 ], [ -81.99996143899358, 28.880404977696337 ], [ -81.999900967333275, 28.880402317608628 ], [ -81.999848053274462, 28.880390341245846 ], [ -81.99965151459638, 28.880301188724076 ], [ -81.999335543960711, 28.880137518645469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sun Bluff Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999467123280894, 28.881036120772183 ], [ -81.999230900861448, 28.880889942871825 ], [ -81.998856287084863, 28.880593922553828 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hallandale Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995933038142823, 28.880438232697625 ], [ -81.996629364783232, 28.880309348098262 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baldwin Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995933038142823, 28.880438232697625 ], [ -81.99588265119219, 28.880244845285961 ], [ -81.995838565726956, 28.880060549644902 ], [ -81.995802287751076, 28.879930147821693 ], [ -81.995773565548021, 28.879840993155316 ], [ -81.995728217758469, 28.879718572774632 ], [ -81.995687402680332, 28.879610789667513 ], [ -81.995603807321544, 28.879422473763608 ], [ -81.995441000440678, 28.879102478527368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baldwin Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995441000440678, 28.879102478527368 ], [ -81.995194506087671, 28.87872169374527 ], [ -81.995174941800173, 28.878685978106912 ], [ -81.995167385212156, 28.878648720876601 ], [ -81.995167387008195, 28.878612793918883 ], [ -81.995167387579556, 28.878580858744865 ], [ -81.995178759693118, 28.878537621756603 ], [ -81.995193092664437, 28.878510335770809 ], [ -81.99522181794859, 28.878478401651346 ], [ -81.995255080203549, 28.878453119461089 ], [ -81.996255919333819, 28.877801140571325 ], [ -81.996408613213063, 28.877701347586083 ], [ -81.996461526621218, 28.877684051013802 ], [ -81.996509904483929, 28.877674737867114 ], [ -81.996555258703452, 28.877678730871455 ], [ -81.996612706103164, 28.877694699532711 ], [ -81.996975530339114, 28.877898296813051 ], [ -81.997099495608737, 28.877975476286263 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baldwin Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997099495608737, 28.877975476286263 ], [ -81.997976327115751, 28.878471820808176 ], [ -81.998594647770489, 28.8788244481117 ], [ -81.998762457915916, 28.878914933696255 ], [ -81.998963528652155, 28.878994774913721 ], [ -81.999207781280134, 28.879079504813689 ], [ -81.999248338424209, 28.879088408106735 ], [ -81.999297831909786, 28.879093167172154 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Durango Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969253436125541, 28.933254129451328 ], [ -81.969292463949017, 28.93353865622997 ], [ -81.96929460878043, 28.933555501657739 ], [ -81.969295972136194, 28.933568566292308 ], [ -81.969297139483572, 28.933581972851481 ], [ -81.969297919222171, 28.933595036449809 ], [ -81.969298501002598, 28.933608100002708 ], [ -81.96929869291823, 28.933621507240343 ], [ -81.969298883910824, 28.933634569801264 ], [ -81.969298685038154, 28.933647976949207 ], [ -81.969298093427639, 28.933661041135142 ], [ -81.969297503766015, 28.933674449095719 ], [ -81.969296327511188, 28.933687512245193 ], [ -81.96929515023038, 28.933700575394397 ], [ -81.969293584109366, 28.933713983130865 ], [ -81.969291821158237, 28.933727044341033 ], [ -81.96928986332432, 28.933740108213346 ], [ -81.969287514701392, 28.933753171093652 ], [ -81.969284972221985, 28.933766233929365 ], [ -81.969282035875977, 28.933779296674636 ], [ -81.969279101683, 28.933792015646123 ], [ -81.969275774546517, 28.933805078301532 ], [ -81.969272057748569, 28.933817796190866 ], [ -81.969268343000536, 28.933830515885155 ], [ -81.969264235411089, 28.933843235489107 ], [ -81.969259933965105, 28.933855953243796 ], [ -81.969255239677224, 28.933868671810377 ], [ -81.969250350608874, 28.93388104655784 ], [ -81.969245267683263, 28.933893421260581 ], [ -81.969239987823215, 28.933905795917834 ], [ -81.969234318198176, 28.933918170485271 ], [ -81.969228648674658, 28.933930200376 ], [ -81.969222587231485, 28.933942575755093 ], [ -81.969216135202828, 28.933954262593446 ], [ -81.969209683070076, 28.933966293205593 ], [ -81.96920284127458, 28.9339779799536 ], [ -81.969195803569846, 28.933989666656135 ], [ -81.969188570981501, 28.93400135331343 ], [ -81.969162705759985, 28.934043431271078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Marino Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966386279137055, 28.9328044260829 ], [ -81.966435669370611, 28.932837550876432 ], [ -81.966468595644713, 28.932860323114138 ], [ -81.966506229150383, 28.932885166384818 ], [ -81.96653915612572, 28.932905868741585 ], [ -81.966574434337645, 28.932928642443155 ], [ -81.966614418762305, 28.932953485367847 ], [ -81.966682626758598, 28.932994891508041 ], [ -81.967727153779151, 28.933555132959231 ], [ -81.967767984664007, 28.933577488117624 ], [ -81.967809010662094, 28.933599155762096 ], [ -81.967850622561301, 28.933620135084016 ], [ -81.967892627530375, 28.933640428743487 ], [ -81.967935020441089, 28.933660034032076 ], [ -81.96797780642072, 28.93367895275518 ], [ -81.96802098341783, 28.933697183107377 ], [ -81.968064551325071, 28.933715069764784 ], [ -81.968108313421851, 28.933731925131688 ], [ -81.968152468585146, 28.933748093029525 ], [ -81.968197012605259, 28.933763918133309 ], [ -81.968241753889899, 28.933778710141993 ], [ -81.968286886081259, 28.933793160258812 ], [ -81.968331278715056, 28.933804416965454 ], [ -81.968378179818231, 28.933816931146186 ], [ -81.968423658678788, 28.933828195297288 ], [ -81.968473404050812, 28.933840711017954 ], [ -81.968518884339375, 28.933850724557132 ], [ -81.96856294443235, 28.933859487167314 ], [ -81.968612689951584, 28.933868251998543 ], [ -81.968682331770822, 28.933880771403285 ], [ -81.96874486900478, 28.933892039435541 ], [ -81.968800299219239, 28.933903306684783 ], [ -81.96884577918928, 28.933914568888884 ], [ -81.968891259817127, 28.933927083462432 ], [ -81.968936738677158, 28.933942098278042 ], [ -81.968975112667565, 28.933953361496101 ], [ -81.969009220051959, 28.93396712307101 ], [ -81.969044751759853, 28.933982135546714 ], [ -81.969073174111728, 28.933994645210483 ], [ -81.969112965076718, 28.934014660972444 ], [ -81.969162705759985, 28.934043431271078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edwards Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021100613795156, 28.915504331366805 ], [ -82.02124783417834, 28.915186383673301 ], [ -82.02132292426856, 28.915024434209414 ], [ -82.021343577816467, 28.914993033802812 ], [ -82.021377374757691, 28.914959154557671 ], [ -82.021410237856102, 28.914942624811463 ], [ -82.021444040113892, 28.914930226528689 ], [ -82.021482540177459, 28.914922784726485 ], [ -82.021542637348631, 28.914920295867336 ], [ -82.021729467921205, 28.914920084372454 ], [ -82.02216883074324, 28.914922763908066 ], [ -82.022786946227626, 28.914925070663831 ], [ -82.023352122692032, 28.914930132848593 ], [ -82.023460546423877, 28.914930802009906 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elko Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970546170055073, 28.900784825548488 ], [ -81.970648024270417, 28.900456022209813 ], [ -81.970704799882981, 28.900253453185162 ], [ -81.970747520558959, 28.900094580304096 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kline Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970546170055073, 28.900784825548488 ], [ -81.970596214403201, 28.900787773524744 ], [ -81.970806699269517, 28.900805279944674 ], [ -81.97113648636163, 28.900850606210266 ], [ -81.971388653283128, 28.90088091168499 ], [ -81.97160996339332, 28.900894365132995 ], [ -81.971869756285002, 28.900894420851237 ], [ -81.971960229438693, 28.900895823047509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kline Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969794956252784, 28.900720766509576 ], [ -81.970015859131166, 28.900761137157836 ], [ -81.970176223700705, 28.900768372393884 ], [ -81.9703459879848, 28.900771569025544 ], [ -81.970546170055073, 28.900784825548488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lodge Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954095996703856, 28.899968881803229 ], [ -81.954191903789791, 28.89997132099592 ], [ -81.954362623293079, 28.899971379144365 ], [ -81.954501116822257, 28.899964206864237 ], [ -81.954625680195491, 28.899944367773649 ], [ -81.954702705554965, 28.899920295189531 ], [ -81.954797077861215, 28.899886957282956 ], [ -81.954893227084241, 28.899841768211264 ], [ -81.954995584364923, 28.8997833480365 ], [ -81.955255966940271, 28.899641250822437 ], [ -81.955376054796048, 28.899588823018977 ], [ -81.955467848617161, 28.899556008018799 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955688782732551, 28.900164328038461 ], [ -81.955650980380085, 28.900093112443678 ], [ -81.955587336682825, 28.899936272758396 ], [ -81.955541345485798, 28.899813547590682 ], [ -81.955496526851974, 28.899663447044841 ], [ -81.955467848617161, 28.899556008018799 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955467848617161, 28.899556008018799 ], [ -81.955418882941061, 28.899374194768964 ], [ -81.955378333496839, 28.899204383968765 ], [ -81.955339496286044, 28.898989887363783 ], [ -81.955329880212787, 28.898928765135956 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955329880212787, 28.898928765135956 ], [ -81.955300663085694, 28.898766455274917 ], [ -81.955287166641313, 28.89866367891894 ], [ -81.955263550529793, 28.898478975846182 ], [ -81.955258525972781, 28.89835385957614 ], [ -81.955258561701257, 28.898273428646579 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Modoc Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954091003727427, 28.899335299338183 ], [ -81.954162756687083, 28.89934071058218 ], [ -81.954261502520637, 28.899331265612439 ], [ -81.954322867219759, 28.899321282718084 ], [ -81.954631395403993, 28.899192364909748 ], [ -81.954990524214182, 28.899034500472307 ], [ -81.955231510136571, 28.898947702298425 ], [ -81.955329880212787, 28.898928765135956 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mayesville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956561216389076, 28.899729887432649 ], [ -81.95648739071639, 28.89962693286639 ], [ -81.956380809179066, 28.89945810340285 ], [ -81.956306663838092, 28.899355449095456 ], [ -81.956272994054203, 28.899321896068582 ], [ -81.956237547465548, 28.899295363242164 ], [ -81.956197665653065, 28.899275069258682 ], [ -81.956148035817094, 28.899254772078898 ], [ -81.956059405615591, 28.899232122457487 ], [ -81.955826349099198, 28.899195457735857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pacolet Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955688782732551, 28.900164328038461 ], [ -81.955817976093499, 28.90012175234564 ], [ -81.95592163845032, 28.900080139020069 ], [ -81.956024609520824, 28.900036367991294 ], [ -81.956138915742883, 28.899975940541601 ], [ -81.956243069558468, 28.899915940983671 ], [ -81.956561216389076, 28.899729887432649 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pacolet Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954102744284825, 28.900611401175563 ], [ -81.954154312046995, 28.900611419699523 ], [ -81.95429573272952, 28.900611467924314 ], [ -81.954487552167421, 28.900607064012082 ], [ -81.954690121720162, 28.900585818439861 ], [ -81.954901700361191, 28.900537955068749 ], [ -81.955020209860166, 28.90049849941029 ], [ -81.955129742536585, 28.900455878991732 ], [ -81.955230300440647, 28.900410097444762 ], [ -81.955343416257094, 28.900351583150716 ], [ -81.955613373799935, 28.900194632995913 ], [ -81.955688782732551, 28.900164328038461 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lopez Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955666840955729, 28.930244792247162 ], [ -81.955828014394342, 28.930257987357642 ], [ -81.955949189055843, 28.930276473732917 ], [ -81.956037044667866, 28.930296322372474 ], [ -81.956862011205914, 28.930626861783175 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Loris Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976799097447739, 28.898711697618246 ], [ -81.977677938966522, 28.89845813867446 ], [ -81.977750806802973, 28.898417585247433 ], [ -81.977789684960626, 28.898379087893851 ], [ -81.977812820208584, 28.898339348158764 ], [ -81.977825399912604, 28.898274005732528 ], [ -81.977792351713248, 28.897786762235643 ], [ -81.977790209287875, 28.897755821133348 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Patrick Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977754841159197, 28.899622523445419 ], [ -81.977761539295344, 28.899364347912151 ], [ -81.977748232011635, 28.899275408780497 ], [ -81.977698417564227, 28.89907538241706 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Patrick Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976805586606048, 28.901063327361829 ], [ -81.977178775576931, 28.901041273502617 ], [ -81.977559606731234, 28.900971125556001 ], [ -81.97760335919331, 28.900952833366503 ], [ -81.977645470165299, 28.900929167698308 ], [ -81.97768407440438, 28.900891094424932 ], [ -81.977703964725151, 28.900857132504477 ], [ -81.977718009582219, 28.90081287979012 ], [ -81.977738948651989, 28.900263797363543 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Patrick Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977738948651989, 28.900263797363543 ], [ -81.977742631765352, 28.900083869628112 ], [ -81.977754841159197, 28.899622523445419 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ruby Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976703605216429, 28.90027099372147 ], [ -81.977738948651989, 28.900263797363543 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Backwater Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983863431781373, 28.873176343899654 ], [ -81.98386991006889, 28.87308106061835 ], [ -81.983887702082228, 28.872974399762025 ], [ -81.983913566051214, 28.872884806027759 ], [ -81.983941867186076, 28.872785130249948 ], [ -81.984009271943322, 28.872584373276339 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Backwater Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98400562139463, 28.873738056124278 ], [ -81.983942113706092, 28.873584264557167 ], [ -81.98392315879498, 28.873530471505756 ], [ -81.983887636250827, 28.873385405835034 ], [ -81.983876339778291, 28.873300074612867 ], [ -81.983863431781373, 28.873176343899654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lowndesville Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982628416392004, 28.872910792885474 ], [ -81.982714113629939, 28.872921581104141 ], [ -81.982909997387637, 28.872951240633789 ], [ -81.98304139418758, 28.872982586231426 ], [ -81.983188512930667, 28.873026711188931 ], [ -81.983394045465104, 28.873080219991063 ], [ -81.983536755271118, 28.873119689942598 ], [ -81.98368171984724, 28.873149789605268 ], [ -81.983792594397329, 28.873169802648206 ], [ -81.983863431781373, 28.873176343899654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marshall Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958488084661127, 28.886249257062754 ], [ -81.959352101891611, 28.886274509784556 ], [ -81.959448514266086, 28.886297985229785 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harston Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959731279143554, 28.885690867041721 ], [ -81.959689177729715, 28.885774407460978 ], [ -81.959600906697503, 28.885922859032576 ], [ -81.959519330776345, 28.886098539487829 ], [ -81.959457409497077, 28.88626560885448 ], [ -81.959448514266086, 28.886297985229785 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harston Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959448514266086, 28.886297985229785 ], [ -81.959410400110244, 28.886437547903761 ], [ -81.959367019899616, 28.886632983038577 ], [ -81.959354455918799, 28.886723937460626 ], [ -81.959335637367829, 28.88679559699257 ], [ -81.959316361588094, 28.886830558009777 ], [ -81.959296463995955, 28.886858981667149 ], [ -81.95924946959903, 28.886897557003582 ], [ -81.959188390391162, 28.886918211959998 ], [ -81.959097560648317, 28.886929208623545 ], [ -81.958869415134373, 28.886927531915298 ], [ -81.958692241587173, 28.886927325023958 ], [ -81.958655325986541, 28.886919682902775 ], [ -81.958617267508359, 28.886906272913411 ], [ -81.958576058047697, 28.886883729756047 ], [ -81.958535183620313, 28.886851522147133 ], [ -81.958507226564322, 28.886807953139719 ], [ -81.958494339814024, 28.886745452202302 ], [ -81.958490071531983, 28.886656439822691 ], [ -81.958489132522331, 28.886484629749479 ], [ -81.958488084661127, 28.886249257062754 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maybank Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964067435272966, 28.903482912125501 ], [ -81.96410416935197, 28.903455419004189 ], [ -81.964181542556901, 28.903396310270185 ], [ -81.964245438965676, 28.903334103916716 ], [ -81.964299178735232, 28.903274988810097 ], [ -81.964367842889885, 28.903195464046593 ], [ -81.964428288854123, 28.903120652479238 ], [ -81.964468590966518, 28.903057651146845 ], [ -81.964498817082585, 28.903007937089647 ], [ -81.964529047920976, 28.902950348667041 ], [ -81.96456431288361, 28.90289423682577 ], [ -81.964586143750907, 28.902854367313001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961643407680086, 28.902107134148743 ], [ -81.961504146684078, 28.902067903815496 ], [ -81.961286954796265, 28.902012149632363 ], [ -81.961088628674943, 28.901957569049237 ], [ -81.960930447516716, 28.901919016575405 ], [ -81.960815071601814, 28.901886878234876 ], [ -81.96073343050648, 28.901863476706762 ], [ -81.960647744647389, 28.901841928166444 ], [ -81.960534600368504, 28.901811852894909 ], [ -81.960388594281042, 28.901788536874061 ], [ -81.960233769941851, 28.901770720298739 ], [ -81.960009362332983, 28.901761162314887 ], [ -81.959712061564161, 28.90176760330348 ], [ -81.959362009508339, 28.901770458175317 ], [ -81.958974934237418, 28.901770341282905 ], [ -81.958628218671819, 28.901770789739885 ], [ -81.958471626807693, 28.901760898190801 ], [ -81.958471129511452, 28.901760867358739 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenwick Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970496938693259, 28.858854117779856 ], [ -81.970486560007913, 28.858731882109602 ], [ -81.970490069762363, 28.858594371671533 ], [ -81.970505737600519, 28.858427834059384 ], [ -81.970526606640021, 28.858284215218067 ], [ -81.970545017493549, 28.858177607462967 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abaco Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967074493556964, 28.859111858115835 ], [ -81.967167593244611, 28.858948914810206 ], [ -81.967238788394155, 28.858837396544999 ], [ -81.967311704594621, 28.858767129313982 ], [ -81.967365520401486, 28.858736584062697 ], [ -81.967412387220506, 28.858718260621902 ], [ -81.967474873341885, 28.858699940950512 ], [ -81.967556448370573, 28.858687737173923 ], [ -81.967627609550135, 28.858686226754287 ], [ -81.967762982111282, 28.858701537156243 ], [ -81.967971240598047, 28.858742840377396 ], [ -81.968182971719926, 28.858781090701672 ], [ -81.968342636528021, 28.858814741105732 ], [ -81.968471067317807, 28.858830050963782 ], [ -81.968589085765487, 28.85883466144303 ], [ -81.968710577605279, 28.858833162222876 ], [ -81.968908647173834, 28.858828178813368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blythill Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970545017493549, 28.858177607462967 ], [ -81.970642560108956, 28.858192076544107 ], [ -81.970680837245169, 28.858194627609002 ], [ -81.97074593093032, 28.858190994703754 ], [ -81.970864981333463, 28.85816856315201 ], [ -81.970989135760007, 28.858143137849932 ], [ -81.971169417596926, 28.858095269755378 ], [ -81.971329291063654, 28.858048891275409 ], [ -81.97142611417668, 28.858015080925345 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jemima Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97142611417668, 28.858015080925345 ], [ -81.971404985289013, 28.857935614063734 ], [ -81.971395099868332, 28.857860764884169 ], [ -81.971388344096454, 28.857699072254249 ], [ -81.971381610144391, 28.85744755068125 ], [ -81.971374865638623, 28.857237949271642 ], [ -81.971361330162878, 28.856990418927516 ], [ -81.971344068975441, 28.856724858825107 ], [ -81.971333706529677, 28.856533869362021 ], [ -81.971325093007366, 28.856304679386291 ], [ -81.971323405095433, 28.856130498997345 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jemima Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971323405095433, 28.856130498997345 ], [ -81.971321173320447, 28.856095355549982 ], [ -81.971315774258898, 28.85600940985552 ], [ -81.971302807748756, 28.855828923544568 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Emporia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971323405095433, 28.856130498997345 ], [ -81.971552036765118, 28.856130100132738 ], [ -81.971733435352405, 28.856130137576727 ], [ -81.97189824482426, 28.856132354880149 ], [ -81.972010705046841, 28.856133952915435 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Emporia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972010705046841, 28.856133952915435 ], [ -81.972124087532208, 28.856132417343787 ], [ -81.972350606703756, 28.856132449792582 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blythill Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97142611417668, 28.858015080925345 ], [ -81.971552096783157, 28.857971087868965 ], [ -81.971718776987245, 28.857908244212176 ], [ -81.971862697942811, 28.857841869369693 ], [ -81.971978998838495, 28.857777721809537 ], [ -81.972039754767081, 28.857739534518355 ], [ -81.972067533157457, 28.857712038060004 ], [ -81.972081425151984, 28.857678428298847 ], [ -81.972086640765099, 28.857641759722451 ], [ -81.972040062612322, 28.856598190370008 ], [ -81.972027980223999, 28.856353722793695 ], [ -81.972010705046841, 28.856133952915435 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ulelah Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969442621790321, 28.85602106466386 ], [ -81.969569440668167, 28.85596502335418 ], [ -81.96961185704653, 28.855955786145604 ], [ -81.969671735497258, 28.855952361007947 ], [ -81.969839651486609, 28.855950106999128 ], [ -81.970027089671973, 28.855950149900099 ], [ -81.970262691371829, 28.855950202321058 ], [ -81.970575091082964, 28.855950270292382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Newbridge Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96908746286131, 28.85536551113621 ], [ -81.969222704931298, 28.855326875744762 ], [ -81.969406382989789, 28.85531860119799 ], [ -81.969610742563631, 28.855318647630927 ], [ -81.969757830415915, 28.855318680859384 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Newbridge Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969757830415915, 28.855318680859384 ], [ -81.969795579387963, 28.855318688459032 ], [ -81.969980413470012, 28.855317584910498 ], [ -81.970286303357156, 28.855316507067819 ], [ -81.970479878597629, 28.855316836728115 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quaint Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968574327082848, 28.854448096053314 ], [ -81.968709030486437, 28.854479289532705 ], [ -81.96887492796408, 28.854487798044776 ], [ -81.969028281582794, 28.85449268250839 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sylewood Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969757830415915, 28.855318680859384 ], [ -81.969755277033741, 28.855147937112076 ], [ -81.96975530450878, 28.855053971075517 ], [ -81.969752738068379, 28.854927918486489 ], [ -81.969754506968513, 28.85480912411165 ], [ -81.969749120427906, 28.854684980159838 ], [ -81.96974699108172, 28.854550333206493 ], [ -81.969747028506191, 28.854422371015055 ], [ -81.969754642298028, 28.854349796723184 ], [ -81.969775271646, 28.854280091083186 ], [ -81.969812179920993, 28.854188425190983 ], [ -81.969870780393165, 28.854096762354786 ], [ -81.969954335888715, 28.853978369779853 ], [ -81.970012933626506, 28.853895304041831 ], [ -81.97006610413645, 28.853823693635526 ], [ -81.970142059980446, 28.85373203635103 ], [ -81.970237538879502, 28.853641337992809 ], [ -81.970325426404287, 28.853549682345857 ], [ -81.970397035537871, 28.853481898948587 ], [ -81.970439348630364, 28.853446574906371 ], [ -81.970484914405645, 28.853416026565444 ], [ -81.970538072106379, 28.85338739005627 ], [ -81.970595567174897, 28.853358754476538 ], [ -81.970657403919247, 28.853332984640787 ], [ -81.970737678930504, 28.853306264159968 ], [ -81.970841819111556, 28.853274772917764 ], [ -81.970913413803601, 28.853252826347145 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oldsmar Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968176704522065, 28.853279484712164 ], [ -81.968301280521743, 28.85334660780034 ], [ -81.968460262245799, 28.853435574647861 ], [ -81.968518972058234, 28.853475520849617 ], [ -81.968564519010883, 28.853512200305634 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oldsmar Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968564519010883, 28.853512200305634 ], [ -81.968613960151174, 28.853577530651371 ], [ -81.968650394714899, 28.853617645729578 ], [ -81.968698541257524, 28.853660056287019 ], [ -81.968741483369371, 28.853699027832327 ], [ -81.968770813255276, 28.853719106438437 ], [ -81.968904571658356, 28.853785012087595 ], [ -81.9691743827116, 28.853896204938223 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mayflower Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97105750285094, 28.853879298240155 ], [ -81.971096939869071, 28.853862719665567 ], [ -81.971147679931491, 28.853852216926668 ], [ -81.971193101092936, 28.853843994054255 ], [ -81.971259267767536, 28.853838278606759 ], [ -81.971329773567319, 28.853841158510985 ], [ -81.971384006618521, 28.85384499044962 ], [ -81.971483797927661, 28.853848831155435 ], [ -81.971537003550267, 28.853843236431942 ], [ -81.971580873736158, 28.853828479507982 ], [ -81.971613970093472, 28.853817345752766 ], [ -81.97165302696979, 28.853792525279292 ], [ -81.971687744406822, 28.853760064962906 ], [ -81.971709449868101, 28.853722826894973 ], [ -81.971723565710406, 28.853667442768465 ], [ -81.971734437381684, 28.853575770849996 ], [ -81.97173045178782, 28.853477366407038 ], [ -81.971723642021104, 28.853384780333815 ], [ -81.971712210755229, 28.853289247257919 ], [ -81.971693737286074, 28.853227810810065 ], [ -81.971673806766731, 28.853165133381772 ], [ -81.971608764544328, 28.85301901385029 ], [ -81.97152758710827, 28.852844556669698 ], [ -81.97144692135015, 28.852684999312846 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enisgrove Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97276742376792, 28.852094142039135 ], [ -81.97283678525487, 28.852083054137388 ], [ -81.973052746707978, 28.852042853071961 ], [ -81.973129992437279, 28.852020663734692 ], [ -81.973197779826364, 28.851992921480285 ], [ -81.973286354172899, 28.851944787621214 ], [ -81.973391693646278, 28.851880552682953 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enisgrove Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968564519010883, 28.853512200305634 ], [ -81.968633524202588, 28.853450336357604 ], [ -81.968668681068053, 28.853404506561375 ], [ -81.968737699281533, 28.85329909731151 ], [ -81.968836664092848, 28.853162754933777 ], [ -81.968918702704897, 28.853042451549644 ], [ -81.968981204409431, 28.852963396094957 ], [ -81.969043154497925, 28.852884760055037 ], [ -81.96917243434568, 28.852761026908677 ], [ -81.969303978001264, 28.852647273650561 ], [ -81.96946954273362, 28.852495601404868 ], [ -81.96961696839891, 28.852343923944577 ], [ -81.969739450081676, 28.852198230200617 ], [ -81.969855129077672, 28.8520565266133 ], [ -81.969918643875914, 28.851960723248169 ], [ -81.969978991629944, 28.851868511221227 ], [ -81.970026727733284, 28.851830324595131 ], [ -81.970093985184576, 28.851801690499752 ], [ -81.97016123748601, 28.851797886010832 ], [ -81.970341281093653, 28.85183994358017 ], [ -81.970577723162791, 28.851904931844675 ], [ -81.970751256363656, 28.851956535634738 ], [ -81.970905268776107, 28.851996676593398 ], [ -81.971070127158143, 28.852042550256673 ], [ -81.971254508821275, 28.852092247361153 ], [ -81.971378155177376, 28.852120921089181 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elko Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970747520558959, 28.900094580304096 ], [ -81.970773736203341, 28.89997074819669 ], [ -81.970800314274939, 28.899855888622209 ], [ -81.970850130520844, 28.89955766437652 ], [ -81.970842596539384, 28.899505645196392 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "English Ivy Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985685535532568, 28.868776792617449 ], [ -81.985836645975496, 28.868756025097156 ], [ -81.986058586537354, 28.868743578653991 ], [ -81.986281160899793, 28.86874360264413 ], [ -81.986645541294592, 28.868760177965022 ], [ -81.986822808061504, 28.868769483018603 ], [ -81.986891190781932, 28.868783542234539 ], [ -81.986924902005939, 28.868797796524611 ], [ -81.986960317248801, 28.868817182371654 ], [ -81.98700364456451, 28.868855328768372 ], [ -81.98702097871255, 28.868883953321962 ], [ -81.987036988802657, 28.868926245833972 ], [ -81.987067214482806, 28.8691048073632 ], [ -81.987107959889983, 28.869441346946164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "English Ivy Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985058269207272, 28.870889589296596 ], [ -81.984990502135688, 28.870668686188935 ], [ -81.984862520514341, 28.870358330020501 ], [ -81.984592778700716, 28.869696005978902 ], [ -81.984451449613275, 28.869334777786854 ], [ -81.984421213033031, 28.869256458856576 ], [ -81.984407706674631, 28.869210533656343 ], [ -81.984408770130926, 28.869167177209526 ], [ -81.984425448339309, 28.869116913649499 ], [ -81.98445500050704, 28.869064904727779 ], [ -81.984480609395007, 28.86903890152422 ], [ -81.984526220831555, 28.869015668902243 ], [ -81.984616522525101, 28.868986903987977 ], [ -81.984835155579731, 28.868941851744193 ], [ -81.985040948627116, 28.868903499112822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991937767680483, 28.951622806539117 ], [ -81.992163674281343, 28.95171131791162 ], [ -81.992635091892353, 28.9519035099527 ], [ -81.993257168343987, 28.952148104280568 ], [ -81.993775567408122, 28.952347094399034 ], [ -81.994237417857306, 28.952496339373369 ], [ -81.994746398691774, 28.952641440445294 ], [ -81.995297796536804, 28.952774104845421 ], [ -81.995849196022817, 28.952877751077317 ], [ -81.996508993903049, 28.952964818437419 ], [ -81.997135805527009, 28.953022865009792 ], [ -81.99788043928892, 28.953043605468427 ], [ -81.99807115805632, 28.953038266128132 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98371614603748, 28.953093987664353 ], [ -81.983821717660604, 28.953067471354967 ], [ -81.983945388675835, 28.95303565167135 ], [ -81.984053979156371, 28.953003830066997 ], [ -81.984156536362846, 28.952972008558664 ], [ -81.984265127943132, 28.952932227666214 ], [ -81.984379751405925, 28.952887144624462 ], [ -81.984488343621919, 28.952842056269905 ], [ -81.984618427098923, 28.952782050014687 ], [ -81.984716462977119, 28.952729006549717 ], [ -81.984822039952064, 28.952669327516261 ], [ -81.984920075578984, 28.952609649348716 ], [ -81.985006801824156, 28.952549970736403 ], [ -81.985112379368715, 28.952477027780496 ], [ -81.985274518993876, 28.952357666289089 ], [ -81.985429119425859, 28.952221723254453 ], [ -81.985783566330966, 28.951926630930629 ], [ -81.986119158065421, 28.95164479938455 ], [ -81.986432126628657, 28.951362962874327 ], [ -81.986794103712725, 28.951107660607207 ], [ -81.987031644057097, 28.950981673507705 ], [ -81.98720508508697, 28.9508954718106 ], [ -81.987359673166864, 28.950829165442588 ], [ -81.987578354494133, 28.950756232164526 ], [ -81.987714087724839, 28.950716451013612 ], [ -81.987861128494643, 28.950679987587819 ], [ -81.988011942507782, 28.950650157093122 ], [ -81.988196976464877, 28.950625010574083 ], [ -81.98829998854896, 28.950611596307596 ], [ -81.988376293033511, 28.950601537953482 ], [ -81.98854797869383, 28.950591484227747 ], [ -81.988773076537967, 28.950591503502245 ], [ -81.989047770370831, 28.950611660263945 ], [ -81.989288125709294, 28.950641881466638 ], [ -81.98957044593341, 28.950702306181594 ], [ -81.989955770434619, 28.950829852476598 ], [ -81.990287682022, 28.950960746667111 ], [ -81.990841173847969, 28.951178908164568 ], [ -81.991434965160266, 28.95141936474376 ], [ -81.991937767680483, 28.951622806539117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Botello Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991937767680483, 28.951622806539117 ], [ -81.991892320683064, 28.951736299469648 ], [ -81.991842384904871, 28.951830857503932 ], [ -81.991800948426331, 28.951899917272168 ], [ -81.991754199636503, 28.951984913880178 ], [ -81.991708018933551, 28.952071956002818 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Botello Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991708018933551, 28.952071956002818 ], [ -81.991662448474187, 28.952172138227077 ], [ -81.991618772942985, 28.952294028800374 ], [ -81.991595986737792, 28.952360815008127 ], [ -81.991580790151176, 28.952449312648557 ], [ -81.991576991765825, 28.952492725286056 ], [ -81.991571526350853, 28.952572246642159 ], [ -81.991567245412014, 28.952668675221208 ], [ -81.991564352970158, 28.952819910909653 ], [ -81.991560882815406, 28.953033294625545 ], [ -81.991558459841954, 28.953176748067499 ], [ -81.991559818151174, 28.953297412560932 ], [ -81.991546630624796, 28.953439973842215 ], [ -81.991516699433703, 28.9535598585435 ], [ -81.99145351795238, 28.953729451050197 ], [ -81.991390340287779, 28.953840561475097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992252957155202, 28.950995415684869 ], [ -81.992064983680208, 28.951351061910284 ], [ -81.991985237558808, 28.951509683654336 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tamarindo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991786891474916, 28.950799047708802 ], [ -81.99187899031628, 28.95083415259397 ], [ -81.991997722861925, 28.950878918979882 ], [ -81.992091012397566, 28.95091995185226 ], [ -81.992252957155202, 28.950995415684869 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caribe Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992252957155202, 28.950995415684869 ], [ -81.99241993655761, 28.951050883913695 ], [ -81.992495752058872, 28.951089361105936 ], [ -81.992584688375899, 28.951141945433836 ], [ -81.992699858660075, 28.951215737738604 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992570192845974, 28.949405984636215 ], [ -81.992565829033936, 28.949882600524273 ], [ -81.992563477559258, 28.949926586243979 ], [ -81.992543077036544, 28.950109655703258 ], [ -81.992500499488514, 28.950333669015041 ], [ -81.992460239756056, 28.950482535924447 ], [ -81.992421944293454, 28.95061973268297 ], [ -81.992372727833839, 28.950738329843155 ], [ -81.992317513580488, 28.950850151319965 ], [ -81.992252957155202, 28.950995415684869 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991985237558808, 28.951509683654336 ], [ -81.990086740787092, 28.950748810353439 ], [ -81.989797436807379, 28.950640929217172 ], [ -81.989641957677904, 28.950591451658767 ], [ -81.989385309460843, 28.950534161011987 ], [ -81.989129193997556, 28.950495389469058 ], [ -81.988867846555763, 28.950477909292992 ], [ -81.988659431722553, 28.950466252938138 ], [ -81.988434472331051, 28.950477872154419 ], [ -81.988173121645588, 28.950498216527521 ], [ -81.987951468423503, 28.950536024265666 ], [ -81.987779436453465, 28.950576744309501 ], [ -81.987614019082542, 28.950617465653398 ], [ -81.987455219035496, 28.950661096410066 ], [ -81.987289802584812, 28.950725094691197 ], [ -81.987036934475142, 28.950829020611497 ], [ -81.986879556860799, 28.950911277055429 ], [ -81.986664506849252, 28.951042194469277 ], [ -81.986419675151907, 28.951213844280478 ], [ -81.986182910613891, 28.951419071480149 ], [ -81.985724864084759, 28.951801538074502 ], [ -81.985527119365827, 28.951982314367431 ], [ -81.985116070807265, 28.95231358430539 ], [ -81.984927479953754, 28.952453230646832 ], [ -81.984722346016568, 28.95258123525392 ], [ -81.98456684522138, 28.952671419429588 ], [ -81.984383312239558, 28.952760092405605 ], [ -81.984163208689196, 28.952840135771876 ], [ -81.983944850412399, 28.952909942485196 ], [ -81.983733111101003, 28.952965202901641 ], [ -81.983647154924896, 28.952982136506478 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998063587790554, 28.952913425787756 ], [ -81.99806352213416, 28.952913426688998 ], [ -81.997988839003412, 28.952915109167957 ], [ -81.997432719541081, 28.952906808685004 ], [ -81.997149947205685, 28.952894367216373 ], [ -81.996886027681882, 28.952877781389731 ], [ -81.996499574959969, 28.952836319163605 ], [ -81.996080130601186, 28.952786566370644 ], [ -81.995632411475583, 28.952711939636327 ], [ -81.995184694637459, 28.952624876925114 ], [ -81.994765254888264, 28.952517087314117 ], [ -81.994402373324817, 28.952413444868547 ], [ -81.994039490682923, 28.952305656313182 ], [ -81.993596491782242, 28.952156409775363 ], [ -81.99308752029296, 28.951949130101546 ], [ -81.992498434373772, 28.951716971359495 ], [ -81.991985237558808, 28.951509683654336 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981494407486025, 28.917441041176399 ], [ -81.981376085269773, 28.917369906589155 ], [ -81.981303870622511, 28.917318172330958 ], [ -81.981214860294671, 28.917253136718859 ], [ -81.981132571128285, 28.917189579959828 ], [ -81.981050283976757, 28.917115678317888 ], [ -81.980942804107713, 28.91701812744105 ], [ -81.980853800259311, 28.9169264900749 ], [ -81.980779913297241, 28.91683781255519 ], [ -81.980687555796962, 28.916726962890305 ], [ -81.980601916050134, 28.916608727032582 ], [ -81.980512922688192, 28.91646536707567 ], [ -81.980467587131287, 28.916391471361436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980467587131287, 28.916391471361436 ], [ -81.980444081679906, 28.916345656504344 ], [ -81.980413861167762, 28.916283583072961 ], [ -81.980356773269477, 28.916183083175955 ], [ -81.980306024019342, 28.916104940398593 ], [ -81.980264419014006, 28.916050068287941 ], [ -81.980151912097242, 28.91591409351296 ], [ -81.980098177314161, 28.915838718457483 ], [ -81.980061238259879, 28.915775166880874 ], [ -81.980006380962365, 28.915672028844934 ], [ -81.979954676528934, 28.915525274223175 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ternberry Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982001805326263, 28.914554920817164 ], [ -81.982105529041647, 28.914454568652662 ], [ -81.982193309490015, 28.914375393900119 ], [ -81.982283787701448, 28.91429144719806 ], [ -81.982336005384184, 28.914237045604853 ], [ -81.982383113769174, 28.914177853922883 ], [ -81.982440317340973, 28.914093503898997 ], [ -81.982484062450723, 28.914019511356919 ], [ -81.98252612925063, 28.913936639073246 ], [ -81.98256482900824, 28.913849327033041 ], [ -81.98259527705099, 28.913771011611871 ], [ -81.982615312298137, 28.913722057382287 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ternberry Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981573854361557, 28.915283273284665 ], [ -81.981587666239705, 28.915236055281685 ], [ -81.981617915451366, 28.915146283605463 ], [ -81.981655721569354, 28.915062330971661 ], [ -81.981702978458799, 28.914962584912526 ], [ -81.981766296909882, 28.914856192906353 ], [ -81.981839270144604, 28.914751078031216 ], [ -81.981899747075317, 28.914671284388042 ], [ -81.981962748119159, 28.914594816925106 ], [ -81.982001805326263, 28.914554920817164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mansfield Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009587587212408, 28.930722045497827 ], [ -82.009636755771083, 28.930715570020851 ], [ -82.009654164997386, 28.930711831537149 ], [ -82.009678839752439, 28.930705315294176 ], [ -82.009715851847361, 28.930695183612492 ], [ -82.009745461746931, 28.930685052427329 ], [ -82.009783296342178, 28.930674195225716 ], [ -82.00981290694709, 28.930672022266485 ], [ -82.009853209160028, 28.930671295841993 ], [ -82.010289964048425, 28.930673434917143 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ellsworth Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010289964048425, 28.930673434917143 ], [ -82.010297165457871, 28.929821719415482 ], [ -82.010297361959118, 28.929817250334196 ], [ -82.010297361600479, 28.929813468815929 ], [ -82.010297752047705, 28.929810031946019 ], [ -82.010297946595358, 28.929806593285733 ], [ -82.010298337009843, 28.929802811739119 ], [ -82.010298727456927, 28.929799373966919 ], [ -82.010299313770645, 28.929795591503808 ], [ -82.010299899091493, 28.929792154619765 ], [ -82.010300681337213, 28.929788716819097 ], [ -82.010301266625177, 28.92978493435605 ], [ -82.010302047845158, 28.929781496555485 ], [ -82.010303023938789, 28.929778058740769 ], [ -82.010304001058103, 28.929774621828241 ], [ -82.01030497715162, 28.929771184013507 ], [ -82.010305955263718, 28.929767402424218 ], [ -82.010307126230771, 28.92976396459532 ], [ -82.010308299249047, 28.929760526766245 ], [ -82.010309665089608, 28.929757088923164 ], [ -82.010311033013949, 28.92975399395203 ], [ -82.010312399880078, 28.929750557011136 ], [ -82.010313962645327, 28.929747119153724 ], [ -82.010315525410448, 28.929743681296284 ], [ -82.010317088208168, 28.929740587213207 ], [ -82.01031884687238, 28.929737149341491 ], [ -82.010320604543509, 28.929734055244218 ], [ -82.010322363207493, 28.929730617372414 ], [ -82.010324315752015, 28.929727523260922 ], [ -82.010326075474111, 28.929724429163436 ], [ -82.010328222891928, 28.929721334135404 ], [ -82.010330177487489, 28.929718240925979 ], [ -82.01033232490515, 28.929715146800174 ], [ -82.010334475399688, 28.929712053576399 ], [ -82.010336819741966, 28.929708959436198 ], [ -82.010339164084002, 28.929705864393668 ], [ -82.010341509484405, 28.929703114027699 ], [ -82.010343851774962, 28.929700019887509 ], [ -82.010346392048632, 28.929697269507251 ], [ -82.010348932322188, 28.92969451912694 ], [ -82.010351472595701, 28.929691769648883 ], [ -82.010354206716784, 28.929689018352054 ], [ -82.010356941863449, 28.929686267957386 ], [ -82.010359675984347, 28.929683517562726 ], [ -82.010362412189266, 28.92968111184458 ], [ -82.010365343234611, 28.929678360533117 ], [ -82.010368273287156, 28.929675954800679 ], [ -82.010371204332188, 28.92967320348912 ], [ -82.010374134384463, 28.929670797756533 ], [ -82.01037726033546, 28.929668389302684 ], [ -82.010380386319369, 28.92966632642776 ], [ -82.01038351227038, 28.92966392068065 ], [ -82.010386638221135, 28.929661514031174 ], [ -82.010389960103709, 28.929659450239406 ], [ -82.010393086087191, 28.92965738826646 ], [ -82.01039640694394, 28.929655325376892 ], [ -82.010399924725334, 28.92965326247279 ], [ -82.010403245581813, 28.929651199583045 ], [ -82.010406762337198, 28.929649135776561 ], [ -82.010410083226375, 28.929647416661034 ], [ -82.01041379588078, 28.929645354644585 ], [ -82.010417313694475, 28.929643635514424 ], [ -82.010420829456777, 28.929641916384348 ], [ -82.010424541118127, 28.929640198142078 ], [ -82.010428056880173, 28.929638479011771 ], [ -82.010431770625388, 28.929637101836661 ], [ -82.01043548334502, 28.929635726466095 ], [ -82.010439195005901, 28.929634008223417 ], [ -82.010443103624397, 28.929632632838249 ], [ -82.010446814292507, 28.929631258369831 ], [ -82.010450721918104, 28.929630224954309 ], [ -82.010454435662879, 28.929628849583164 ], [ -82.010458342262908, 28.929627818874376 ], [ -82.010462249888405, 28.929626787263118 ], [ -82.010466157513846, 28.929625755651752 ], [ -82.010470260012639, 28.929624724025867 ], [ -82.010474169689203, 28.929623692414108 ], [ -82.010478077347699, 28.92962300547909 ], [ -82.010482179846136, 28.929621972950546 ], [ -82.010486087504432, 28.929621285113004 ], [ -82.010490189010412, 28.929620597260989 ], [ -82.010494097727502, 28.929620253197509 ], [ -82.010498199233467, 28.929619566247556 ], [ -82.010502303849464, 28.929619221267068 ], [ -82.010506406380927, 28.929618533414487 ], [ -82.010510314072192, 28.929618189350624 ], [ -82.01051441766252, 28.929617845272126 ], [ -82.010518520260504, 28.929617844967964 ], [ -82.01052262385079, 28.929617500889208 ], [ -82.010526726448759, 28.929617500584804 ], [ -82.010530830072398, 28.929617500280202 ], [ -82.010534933695993, 28.929617499975468 ], [ -82.011033250276753, 28.929624069547632 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mansfield Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010289964048425, 28.930673434917143 ], [ -82.011022823961397, 28.930676276177277 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oberlin Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011033250276753, 28.929624069547632 ], [ -82.011022823961397, 28.930676276177277 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ellsworth Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011033250276753, 28.929624069547632 ], [ -82.011169052377326, 28.929623532851931 ], [ -82.011174523192111, 28.929623533322012 ], [ -82.011179995032364, 28.92962353198719 ], [ -82.011185271999281, 28.929623531569867 ], [ -82.01119074178834, 28.929623531137064 ], [ -82.011196212603011, 28.929623530703967 ], [ -82.011524853722165, 28.929627629571929 ], [ -82.011532082537144, 28.929627972756048 ], [ -82.011536186161138, 28.9296279724208 ], [ -82.011540288796112, 28.929628314957615 ], [ -82.011544393482595, 28.929628659298718 ], [ -82.011548300218735, 28.929629003655865 ], [ -82.011552402890416, 28.929629689064413 ], [ -82.011556506551344, 28.929630033405232 ], [ -82.011560610249063, 28.929630721520311 ], [ -82.011564518047578, 28.929631407846717 ], [ -82.011568619694003, 28.929632095059436 ], [ -82.011572528518244, 28.929632781385529 ], [ -82.011576631190522, 28.9296334695002 ], [ -82.01158053902617, 28.929634500502814 ], [ -82.0115844457994, 28.929635187731044 ], [ -82.011588353635176, 28.929636218733418 ], [ -82.011592261471023, 28.92963724973572 ], [ -82.011596170369486, 28.92963862451219 ], [ -82.011600078205433, 28.929639654611968 ], [ -82.011603986078526, 28.929641030290618 ], [ -82.011607699041264, 28.92964206130846 ], [ -82.011611606914357, 28.929643435182264 ], [ -82.011615319914313, 28.929644810876599 ], [ -82.011619032951103, 28.929646528540619 ], [ -82.011622743899963, 28.929647904234933 ], [ -82.011626456937194, 28.929649623703344 ], [ -82.011629974075248, 28.929651341383192 ], [ -82.011633687075687, 28.92965271707703 ], [ -82.011637203225334, 28.929654778531155 ], [ -82.011640720363914, 28.92965649801533 ], [ -82.011644237502423, 28.929658215694804 ], [ -82.011647754678194, 28.929660278050896 ], [ -82.011651271816959, 28.929661995730182 ], [ -82.011654594119605, 28.929664059004462 ], [ -82.011657915396626, 28.929666121376432 ], [ -82.011661237736547, 28.929668527522661 ], [ -82.011664559013852, 28.92967058989446 ], [ -82.011667685417692, 28.929672651380031 ], [ -82.011670811858963, 28.929675058444481 ], [ -82.011673938300177, 28.929677463704277 ], [ -82.011677064741775, 28.929679870768581 ], [ -82.011680191183459, 28.929682277832821 ], [ -82.011683122751606, 28.929684683108526 ], [ -82.011686052268672, 28.929687089286652 ], [ -82.01168898588837, 28.929689494562059 ], [ -82.011691719543819, 28.929692245432939 ], [ -82.011694651149682, 28.929694994482773 ], [ -82.01169738784516, 28.929697401578906 ], [ -82.011699927653027, 28.929700151563416 ], [ -82.011702663360239, 28.929702901531613 ], [ -82.011705203205594, 28.929705995290401 ], [ -82.011707744039441, 28.929708744372352 ], [ -82.01171009, 28.929711495275036 ], [ -82.011712629845917, 28.929714589935962 ], [ -82.011714974780915, 28.929717339034053 ], [ -82.011717123854169, 28.929720432825054 ], [ -82.011719468826797, 28.929723526599737 ], [ -82.011721617900321, 28.92972662039066 ], [ -82.011723767999513, 28.929729713279155 ], [ -82.011725722199756, 28.929732807988504 ], [ -82.011727676400028, 28.929735901795528 ], [ -82.011729630600399, 28.929738995602506 ], [ -82.011731387875955, 28.929742089425847 ], [ -82.011733343139653, 28.929745527909368 ], [ -82.011734906567327, 28.929748620846464 ], [ -82.011736664906209, 28.929752058444027 ], [ -82.01173823042285, 28.929755496057595 ], [ -82.011739792825281, 28.929758589897023 ], [ -82.011741160391466, 28.929762027527058 ], [ -82.011742527957679, 28.929765464254753 ], [ -82.011743897575485, 28.929768902786858 ], [ -82.011745265141954, 28.929772340416825 ], [ -82.011746436809076, 28.929775777160796 ], [ -82.011747414628402, 28.929779215725471 ], [ -82.011748587321435, 28.929782653371639 ], [ -82.011749565140704, 28.929786090131703 ], [ -82.011750540908949, 28.929789528696542 ], [ -82.011751323892113, 28.929793310149496 ], [ -82.011752105812306, 28.929796747828206 ], [ -82.011752692858778, 28.929800185523103 ], [ -82.011753474816572, 28.929803967878428 ], [ -82.011754060837404, 28.929807404671102 ], [ -82.011754450958932, 28.92981084238242 ], [ -82.011754843169328, 28.92981462477022 ], [ -82.011755234316553, 28.929818062481417 ], [ -82.011755626526693, 28.929821842162323 ], [ -82.01175582177467, 28.929825280792155 ], [ -82.011755823211786, 28.929829062310215 ], [ -82.011756018459579, 28.929832499135436 ], [ -82.011756017808096, 28.92983593778159 ], [ -82.011745176786235, 28.930771006737015 ], [ -82.011744983422204, 28.930775475819427 ], [ -82.011744786906419, 28.930779257353439 ], [ -82.011744593430322, 28.930782696015171 ], [ -82.011744203027121, 28.930786132888681 ], [ -82.011744008562616, 28.930789914422526 ], [ -82.011743422258192, 28.930793352214664 ], [ -82.011743031892479, 28.930797134667099 ], [ -82.011742445587899, 28.930800571556937 ], [ -82.011741664407751, 28.930804009365275 ], [ -82.011740883264821, 28.930807790045648 ], [ -82.011740102084659, 28.930811228756259 ], [ -82.011739320904354, 28.930814666564594 ], [ -82.011738344848254, 28.930818103486832 ], [ -82.011737367803903, 28.930821885085784 ], [ -82.011736195846538, 28.930825323828881 ], [ -82.011735022863363, 28.93082876166978 ], [ -82.01173385193141, 28.930832199510515 ], [ -82.011732680999387, 28.930835637351212 ], [ -82.011731313102956, 28.930838731433955 ], [ -82.011729751393744, 28.93084216930713 ], [ -82.011728382508707, 28.930845606261972 ], [ -82.011726819773628, 28.930849044135194 ], [ -82.011725257001231, 28.930852139136359 ], [ -82.011723498364589, 28.930855577025852 ], [ -82.011721739690515, 28.930858671140971 ], [ -82.011719983104967, 28.930862109030222 ], [ -82.011718029554956, 28.930865203161478 ], [ -82.011716076004831, 28.930868297292715 ], [ -82.011714122454578, 28.930871391423928 ], [ -82.011711973002903, 28.930874486473659 ], [ -82.01170982457657, 28.930877579718693 ], [ -82.011707675124541, 28.930880673866067 ], [ -82.011705525672383, 28.930883768013381 ], [ -82.011703182369985, 28.930886862176774 ], [ -82.011700839030226, 28.930889612565796 ], [ -82.011698297774785, 28.930892706745517 ], [ -82.011695952383462, 28.930895457134632 ], [ -82.011693415193179, 28.930898207539599 ], [ -82.011690873900108, 28.930900957944832 ], [ -82.011688138756881, 28.93090370926841 ], [ -82.011685403613299, 28.930906458787323 ], [ -82.011682668469675, 28.930909209208483 ], [ -82.011679933325908, 28.930911959629562 ], [ -82.011677003268929, 28.930914365390127 ], [ -82.011674072186338, 28.930916772955278 ], [ -82.011671142166222, 28.930919522490058 ], [ -82.011668212109015, 28.930921930055 ], [ -82.011665085124392, 28.93092433673387 ], [ -82.011661960153774, 28.930926398735902 ], [ -82.01165883214334, 28.930928806317009 ], [ -82.011655707209741, 28.930931213897786 ], [ -82.011652386337204, 28.930933275915777 ], [ -82.011649063413302, 28.930935338836125 ], [ -82.011645743566262, 28.930937401756172 ], [ -82.011642421667773, 28.930939464676278 ], [ -82.011639100794795, 28.930941527596207 ], [ -82.011635584020169, 28.930943590532259 ], [ -82.011632067208396, 28.930945309693858 ], [ -82.011628550433485, 28.930947372629689 ], [ -82.011625034647125, 28.930949091791025 ], [ -82.011621516809228, 28.930950810050152 ], [ -82.011617804095408, 28.930952529227525 ], [ -82.011614092407243, 28.930954249306989 ], [ -82.011610379656247, 28.930955624709828 ], [ -82.011606667930835, 28.930957000112496 ], [ -82.011602955216574, 28.930958719289453 ], [ -82.011599243491133, 28.930960096496488 ], [ -82.0115953368894, 28.930961471012584 ], [ -82.01159162410103, 28.930962502640575 ], [ -82.011587715447774, 28.930963877156575 ], [ -82.011583807783538, 28.930964910604963 ], [ -82.011579900118932, 28.930965941346351 ], [ -82.011575992454326, 28.930966972989921 ], [ -82.011572085815232, 28.930968003730992 ], [ -82.011568177124914, 28.930969036276704 ], [ -82.011564269423303, 28.930969724145626 ], [ -82.011560167908044, 28.930970754902333 ], [ -82.01155625918075, 28.930971443673375 ], [ -82.01155215557749, 28.930972132460269 ], [ -82.011548052962809, 28.930972474765738 ], [ -82.011544145260942, 28.93097316263405 ], [ -82.011540041620819, 28.930973507646257 ], [ -82.01153593904283, 28.930974194627986 ], [ -82.011531834376896, 28.930974538737718 ], [ -82.011527732787997, 28.930974883749379 ], [ -82.011523825012631, 28.930974884068476 ], [ -82.011519721372267, 28.930975228177758 ], [ -82.011515619746618, 28.930975228512434 ], [ -82.011511516069604, 28.930975228847149 ], [ -82.011507412392703, 28.930975230084048 ], [ -82.011257314445473, 28.930972156270709 ], [ -82.011250084548379, 28.930972156846465 ], [ -82.011245980835668, 28.93097181249647 ], [ -82.011241877123084, 28.930971469048654 ], [ -82.011237774436196, 28.930971125600625 ], [ -82.011233670723669, 28.930970782152535 ], [ -82.011229568036825, 28.930970438704257 ], [ -82.011225660190291, 28.930969751466058 ], [ -82.01122155647785, 28.930969408017624 ], [ -82.011217452729809, 28.930968720794723 ], [ -82.011213544883418, 28.930968033556173 ], [ -82.011209443186701, 28.930967345430581 ], [ -82.01120553530491, 28.930966315319775 ], [ -82.011201627458689, 28.930965628080862 ], [ -82.011197523675335, 28.930964597083026 ], [ -82.011193615793786, 28.930963566971858 ], [ -82.011189707912067, 28.930962535056 ], [ -82.011185801056328, 28.930961504944534 ], [ -82.011181893139266, 28.930960129254121 ], [ -82.011178180133726, 28.930959097322486 ], [ -82.011174272216962, 28.930957722534156 ], [ -82.011170559176207, 28.930956347730305 ], [ -82.011166846135623, 28.930954973828619 ], [ -82.011162938219087, 28.930953598137666 ], [ -82.011159421044724, 28.930951879543709 ], [ -82.011155709030007, 28.930950504739357 ], [ -82.011151995954265, 28.930948785258355 ], [ -82.011148478780328, 28.930947067566418 ], [ -82.011144766730553, 28.930945348987439 ], [ -82.011141249556687, 28.930943629490695 ], [ -82.011137732347834, 28.930941568926439 ], [ -82.011134215174209, 28.930939849429521 ], [ -82.011130892841408, 28.930937787947432 ], [ -82.011127571534203, 28.930935724660614 ], [ -82.011124054325705, 28.930933662291391 ], [ -82.011120927894737, 28.930931599891363 ], [ -82.01111760658803, 28.930929537506575 ], [ -82.011114284220483, 28.930927131347453 ], [ -82.011111158815467, 28.930925068044807 ], [ -82.011108031324241, 28.930922663674814 ], [ -82.01110490588421, 28.930920256597705 ], [ -82.011101973268836, 28.930917849505374 ], [ -82.011098846803606, 28.930915444232777 ], [ -82.011095916204582, 28.930912693365819 ], [ -82.011093180516951, 28.930910288062442 ], [ -82.01109024991824, 28.930907537195367 ], [ -82.011087513205297, 28.930905132794244 ], [ -82.011084777482679, 28.930902381911757 ], [ -82.011082042785858, 28.93089963102916 ], [ -82.011079502965245, 28.930896882838095 ], [ -82.011076960067427, 28.930894131038063 ], [ -82.011074421272752, 28.930891382846834 ], [ -82.011071880391455, 28.930888288174508 ], [ -82.011069535446893, 28.930885537261123 ], [ -82.011067189441818, 28.930882444378042 ], [ -82.011064846548933, 28.930879694366716 ], [ -82.011062696445464, 28.93087660056592 ], [ -82.011060546342122, 28.930873506765103 ], [ -82.011058397264478, 28.930870412061857 ], [ -82.011056247161491, 28.930867319163269 ], [ -82.011054292959926, 28.930864225347033 ], [ -82.011052534624866, 28.930860788643415 ], [ -82.011050580423458, 28.930857693924818 ], [ -82.011048822123513, 28.930854599190898 ], [ -82.011047063788794, 28.930851162487219 ], [ -82.011045498313536, 28.930848068640493 ], [ -82.011043739978859, 28.93084463013216 ], [ -82.011042372421514, 28.930841193397875 ], [ -82.011040809988486, 28.93083775577653 ], [ -82.011039440415075, 28.930834662816721 ], [ -82.011038072857815, 28.930831224277817 ], [ -82.011036901202047, 28.930827786625912 ], [ -82.011035726469501, 28.93082434987652 ], [ -82.011034554813818, 28.930820911322279 ], [ -82.011033577998901, 28.930817129880808 ], [ -82.011032600193431, 28.93081369221375 ], [ -82.011031622388032, 28.930810254546664 ], [ -82.011030840483983, 28.930806816864283 ], [ -82.011030057554407, 28.930803380084289 ], [ -82.011029276641011, 28.930799597725201 ], [ -82.011028690638383, 28.930796160027548 ], [ -82.011028102584376, 28.930792721427753 ], [ -82.011027517572572, 28.930788940857958 ], [ -82.011027127471309, 28.930785503145017 ], [ -82.011026735283721, 28.930781721657905 ], [ -82.0110265390325, 28.930778284832137 ], [ -82.011026343771775, 28.930774502427376 ], [ -82.011026147520511, 28.930771064699304 ], [ -82.011026147135453, 28.930767283181627 ], [ -82.011026145759729, 28.930763845438381 ], [ -82.011022823961397, 28.930676276177277 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Feliciana Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975764277681165, 28.889888091467 ], [ -81.975883086578037, 28.888971352216686 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fontana Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955268245099219, 28.94470147626425 ], [ -81.956199877490349, 28.944946476726837 ], [ -81.956269933755692, 28.944955895176943 ], [ -81.956338252922919, 28.944961463843448 ], [ -81.956510989061584, 28.944943812504249 ], [ -81.95659448270662, 28.944927900565943 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gayle Mill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96338383671501, 28.897725501067406 ], [ -81.963371360329191, 28.897638757829373 ], [ -81.963356045026856, 28.897383422802601 ], [ -81.963376672728373, 28.897137134110995 ], [ -81.963385897397174, 28.897074091170857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mullins Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963385897397174, 28.897074091170857 ], [ -81.96349938328737, 28.897082754399477 ], [ -81.963928748597155, 28.897064977963534 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gayle Mill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963385897397174, 28.897074091170857 ], [ -81.963404171852389, 28.89690024382757 ], [ -81.963423041800752, 28.896712348740635 ], [ -81.963422481132824, 28.8966363876117 ], [ -81.963418306485238, 28.896553777354363 ], [ -81.963398178159579, 28.896383056814472 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glencoe Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001680286807101, 28.910175226163368 ], [ -82.001573038966015, 28.910151850271699 ], [ -82.001471676278257, 28.910128624939116 ], [ -82.001381970924726, 28.910093106556069 ], [ -82.001296750830377, 28.910039828162162 ], [ -82.001242928286871, 28.909990496212014 ], [ -82.001189761021436, 28.90993596158793 ], [ -82.00114649453316, 28.909874073173672 ], [ -82.001110989702056, 28.909802973155976 ], [ -82.001057940175002, 28.909692279461936 ], [ -82.000998513348719, 28.909560360111051 ], [ -82.000948808088495, 28.90945488976136 ], [ -82.000898791357542, 28.909384206583912 ], [ -82.000760864650132, 28.909237504038529 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fairhope Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000680530005738, 28.910799996940156 ], [ -82.000487829569408, 28.910503203274409 ], [ -82.000379262946865, 28.910326239118081 ], [ -82.00027635724885, 28.910126654276702 ], [ -82.000079978189873, 28.909709413152701 ], [ -82.000040884093792, 28.909619520679712 ], [ -82.00003191357689, 28.909578081713239 ], [ -82.000029671122434, 28.909518882844772 ], [ -82.000025186022313, 28.909455738218057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Golden Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990282852570331, 28.888881337448428 ], [ -81.990612116672708, 28.888967301705421 ], [ -81.990795777220654, 28.889037158073663 ], [ -81.99101571151003, 28.889152916687074 ], [ -81.992165281349955, 28.889759638024806 ], [ -81.993029167110919, 28.89021467603428 ], [ -81.993365149708964, 28.890382458115301 ], [ -81.993461436377473, 28.890433001685118 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974367705246621, 28.903392827201301 ], [ -81.974334653415809, 28.903324018797235 ], [ -81.97429058012824, 28.903236966497435 ], [ -81.974239355065279, 28.903148865237199 ], [ -81.974192896081462, 28.903064961466249 ], [ -81.974151202843018, 28.902994689623849 ], [ -81.97409163805213, 28.902900294965374 ], [ -81.974032072640085, 28.902800655217213 ], [ -81.973970126125565, 28.902702065253937 ], [ -81.973909369899459, 28.902608718750376 ], [ -81.973839085028743, 28.902498591210176 ], [ -81.973754500463045, 28.902371680780028 ], [ -81.973666342909311, 28.902243722022963 ], [ -81.973647926664242, 28.90222107160368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oswego Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977333092484997, 28.889383734110435 ], [ -81.978439927315463, 28.889531440489367 ], [ -81.978602623458386, 28.889556683207552 ], [ -81.978760857968041, 28.88957096026585 ], [ -81.978862223199116, 28.889571435596942 ], [ -81.978919092327089, 28.889566201305943 ], [ -81.978975010642344, 28.889557872853242 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magrath Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977255531311172, 28.889993110286944 ], [ -81.977684442232857, 28.890096108819595 ], [ -81.978268987301504, 28.890227871432337 ], [ -81.978656452979024, 28.890319916128089 ], [ -81.978819399660679, 28.890349543802074 ], [ -81.978957276470865, 28.890359798557242 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridgeland Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977343909642869, 28.888784884516649 ], [ -81.977362854996201, 28.888781450860474 ], [ -81.977560516673606, 28.888751576502973 ], [ -81.977766766538764, 28.888746453386812 ], [ -81.978404840154084, 28.888778872907075 ], [ -81.978749354950708, 28.888790973801427 ], [ -81.978860000392288, 28.888794542791977 ], [ -81.97892424700369, 28.888793353774961 ], [ -81.978973025784796, 28.888781455597861 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pamplico Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974838120388995, 28.889908698773013 ], [ -81.975204645600542, 28.888788580095824 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gumwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992197328915452, 28.869717205744699 ], [ -81.992269801843491, 28.869772385841117 ], [ -81.992487209281464, 28.870053448664695 ], [ -81.992618435945545, 28.870225879872052 ], [ -81.992655650871313, 28.8702845045792 ], [ -81.992673209772477, 28.870347599097844 ], [ -81.992671312087651, 28.870406925419637 ], [ -81.992649760483928, 28.870455202849374 ], [ -81.992608622798869, 28.870503478278064 ], [ -81.992549855490836, 28.870543133901659 ], [ -81.992367775557312, 28.870614180773824 ], [ -81.99228596903896, 28.870647291447213 ], [ -81.992163261438648, 28.870674560849309 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pearson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96522878697607, 28.869062066333456 ], [ -81.965284474260955, 28.86901325081147 ], [ -81.965372671510181, 28.868963477290784 ], [ -81.965597262253027, 28.868856578741742 ], [ -81.965825302540892, 28.868741372287538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holly Hill Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985364549835765, 28.884666521397413 ], [ -81.985425085596475, 28.884594059714043 ], [ -81.985473165256096, 28.884534001482002 ], [ -81.985534816545211, 28.884445322810663 ], [ -81.985580660195765, 28.884370062326099 ], [ -81.985617863897446, 28.884283531151283 ], [ -81.985733551756155, 28.883944287354346 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holly Hill Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984751050096904, 28.885016418251823 ], [ -81.984854960078664, 28.884965551139192 ], [ -81.985031762316538, 28.88488203516464 ], [ -81.985152142163528, 28.884816467575273 ], [ -81.985261056800482, 28.884744593330399 ], [ -81.985328413793667, 28.884697937355234 ], [ -81.985364549835765, 28.884666521397413 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hollyberry Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989346200802999, 28.873362531204943 ], [ -81.989271621772687, 28.873322915019092 ], [ -81.989144131912539, 28.873248516125635 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iberia Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991230047934238, 28.945958942802335 ], [ -81.991227385968259, 28.946028808069286 ], [ -81.991218070040219, 28.946081374132614 ], [ -81.991210751480025, 28.946132609445979 ], [ -81.991178058366003, 28.946218647207537 ], [ -81.991168227805233, 28.946267046442888 ], [ -81.991160361628019, 28.946327543751909 ], [ -81.991160335471079, 28.9466231231638 ], [ -81.991160303501061, 28.946984385869229 ], [ -81.991161772015133, 28.947302651699278 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tenerife Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992902375993395, 28.94662382418149 ], [ -81.992975865638016, 28.946739570653797 ], [ -81.993017202730556, 28.946802957127932 ], [ -81.993083704139778, 28.946883212380474 ], [ -81.993272993516598, 28.947023330259242 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Impala Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980269664263801, 28.950326601467001 ], [ -81.980270446281139, 28.950457975340548 ], [ -81.980267589350376, 28.950510758113897 ], [ -81.980251313170456, 28.950579501352387 ], [ -81.980229253945254, 28.950638969970971 ], [ -81.980186612185818, 28.950712656556657 ], [ -81.98014103075387, 28.950783756720664 ], [ -81.980096918814922, 28.950857443057302 ], [ -81.980042514400608, 28.950946641851012 ], [ -81.979988115216401, 28.95101386258866 ], [ -81.979929305248191, 28.951073323829206 ], [ -81.979864618805152, 28.95112890881137 ], [ -81.979794053319011, 28.951178026143218 ], [ -81.979739659992362, 28.951209047718979 ], [ -81.979677916316703, 28.951240065445859 ], [ -81.979616175942667, 28.951264620928225 ], [ -81.979550676134664, 28.95128722685471 ], [ -81.979479590629012, 28.951303888491481 ], [ -81.979396657385777, 28.951320547358737 ], [ -81.979294770468925, 28.951330952154002 ], [ -81.979211838866703, 28.951339274630268 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "India Hook Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981870004210734, 28.876942531243287 ], [ -81.981897349192735, 28.876916406987064 ], [ -81.982342125068456, 28.876503841011651 ], [ -81.982484061773278, 28.876371426092575 ], [ -81.982608312705921, 28.876244415314932 ], [ -81.982716629844376, 28.87612916657644 ], [ -81.982899522755361, 28.875884455059879 ], [ -81.982959486804916, 28.87581450000787 ], [ -81.983045147003509, 28.875704568981813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcclellanville Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984212152923106, 28.876690961831663 ], [ -81.984323953884896, 28.876517723964209 ], [ -81.984466012930028, 28.876252150620026 ], [ -81.984523618148273, 28.876169999985841 ], [ -81.984791773758801, 28.87582916898668 ], [ -81.985075869948204, 28.875469800515951 ], [ -81.985361846710603, 28.875093321272043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01259362018196, 28.912826856868033 ], [ -82.012665755711524, 28.912825755921791 ], [ -82.012807543432686, 28.912826837598701 ], [ -82.012951817588956, 28.912833391330405 ], [ -82.013205542861471, 28.912857441053283 ], [ -82.013385888024786, 28.912884783467547 ], [ -82.013563746618274, 28.912913219464176 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Livingston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01259362018196, 28.912826856868033 ], [ -82.012592070222425, 28.912735140297208 ], [ -82.012592061473327, 28.912660196391126 ], [ -82.012592051761175, 28.912577002780434 ], [ -82.012592038820387, 28.912457368088976 ], [ -82.012592031355851, 28.912393426792796 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Livingston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013291633615026, 28.909544832887171 ], [ -82.013446741478475, 28.909544817252037 ], [ -82.013727653880579, 28.909544791017389 ], [ -82.013973792837433, 28.909542016554862 ], [ -82.014112491409207, 28.909542002686681 ], [ -82.014298658166254, 28.909541983847767 ], [ -82.014484825948543, 28.90954196475143 ], [ -82.014639543109737, 28.909541948685412 ], [ -82.01513494691298, 28.909539144941043 ], [ -82.015280091472945, 28.909539129173659 ], [ -82.015425236032925, 28.90953911415215 ], [ -82.015573505145483, 28.909539096821806 ], [ -82.015709272566895, 28.909536332334891 ], [ -82.015873366861115, 28.90953906309861 ], [ -82.016024761551918, 28.909539046721076 ], [ -82.016138260655396, 28.909539033654962 ], [ -82.01622675349752, 28.909541773604364 ], [ -82.01628270351587, 28.909550601487293 ], [ -82.016334931730171, 28.909569945158776 ], [ -82.016387166086716, 28.909615892151674 ], [ -82.016417406476833, 28.909654586337624 ], [ -82.016433909716795, 28.909705376531488 ], [ -82.016438156161811, 28.909772422155573 ], [ -82.016431918182903, 28.909858366733808 ], [ -82.016419238628714, 28.909966657467486 ], [ -82.016409885491385, 28.910127547241991 ], [ -82.016408132492927, 28.910157798777274 ], [ -82.01640033730196, 28.910280528397262 ], [ -82.016390971607862, 28.910366474236998 ], [ -82.016381414426633, 28.910461013578768 ], [ -82.016368929820956, 28.910577553981138 ], [ -82.01636259493533, 28.91072121220958 ], [ -82.016365354186078, 28.910786513859204 ], [ -82.016373616138054, 28.910885678987647 ], [ -82.016384617505679, 28.910960519658726 ], [ -82.016400452772842, 28.911040961222394 ], [ -82.016419417902995, 28.911135497202601 ], [ -82.016437613746945, 28.911235285542418 ], [ -82.016447898210572, 28.911308931647035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Livingston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016447898210572, 28.911308931647035 ], [ -82.0164500706627, 28.911358943929443 ], [ -82.016454237715351, 28.911449360851847 ], [ -82.016457377833021, 28.911543554008347 ], [ -82.016454272275993, 28.91167419078678 ], [ -82.016454294471032, 28.911818576400123 ], [ -82.016457250436474, 28.911982212176877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Livingston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012594569141413, 28.910722330280095 ], [ -82.012594958580678, 28.910702735050268 ], [ -82.012595151773056, 28.910688640243571 ], [ -82.012598062090021, 28.910522251808629 ], [ -82.012588674296595, 28.910419463812541 ], [ -82.012588662341471, 28.910317018753556 ], [ -82.012594899576726, 28.910197383464247 ], [ -82.01259488303991, 28.910055748008496 ], [ -82.012594866543338, 28.909914456325165 ], [ -82.012594855505554, 28.909819918092559 ], [ -82.012594847718844, 28.909753224763559 ], [ -82.012598750210998, 28.909714789242585 ], [ -82.012613785632141, 28.909672779628018 ], [ -82.012626723606886, 28.909645021990652 ], [ -82.012642106878474, 28.909622585884478 ], [ -82.012664961911725, 28.909594131682955 ], [ -82.012700406418617, 28.909574432241264 ], [ -82.012733718472532, 28.909558979195548 ], [ -82.012765697977272, 28.909548160462954 ], [ -82.012790564807247, 28.909544878358094 ], [ -82.012907187117193, 28.909542118430323 ], [ -82.013049205411647, 28.909544854654012 ], [ -82.013241625382832, 28.9095448375991 ], [ -82.013291633615026, 28.909544832887171 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baker Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962811730553085, 28.861212903833174 ], [ -81.962930613297999, 28.861151988764593 ], [ -81.963009213016917, 28.861105811563892 ], [ -81.963114908661979, 28.861031890495642 ], [ -81.963217598666347, 28.860958682242938 ], [ -81.963339087712924, 28.860876617515387 ], [ -81.963477962979937, 28.860804080325376 ], [ -81.963667275064452, 28.860737538022235 ], [ -81.963782167593706, 28.860702938624765 ], [ -81.963894986341799, 28.860695330099713 ], [ -81.96396267415237, 28.860702988092626 ], [ -81.964059857975485, 28.860733570671943 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alee Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963172896376449, 28.861994035972163 ], [ -81.96335170125397, 28.861818308845127 ], [ -81.963419106279943, 28.861754988186661 ], [ -81.963504096773008, 28.861683334082638 ], [ -81.9636085600999, 28.861599217165182 ], [ -81.963695317277285, 28.861533795631903 ], [ -81.963824565078781, 28.861441895652323 ], [ -81.963942894433103, 28.861367965611642 ], [ -81.964061395087029, 28.86130500843251 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Keller Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963509576442434, 28.862710728686974 ], [ -81.963657533849442, 28.86259316342084 ], [ -81.963840153870535, 28.862423577775321 ], [ -81.963948170339776, 28.86230985786964 ], [ -81.964073891038822, 28.862179000642008 ], [ -81.964109378090043, 28.862141071858034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Keller Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964109378090043, 28.862141071858034 ], [ -81.964184619799411, 28.862072227204429 ], [ -81.964244302840569, 28.862013037530254 ], [ -81.964317550197308, 28.861942868589821 ], [ -81.964394596636524, 28.861865060807872 ], [ -81.964462420866752, 28.861791071797981 ], [ -81.964497150630351, 28.861742856442675 ], [ -81.964535095288525, 28.861680999089572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jurgensen Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964394208798922, 28.863017530265925 ], [ -81.964473611143092, 28.862883730607162 ], [ -81.964539243972482, 28.862784428658255 ], [ -81.964607624458125, 28.862670807836498 ], [ -81.964648881576693, 28.862568640903891 ], [ -81.964661926092674, 28.862492248967904 ], [ -81.964663049173907, 28.862360937867276 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evinston Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96537074333969, 28.863093126279377 ], [ -81.965376286036559, 28.862846260967117 ], [ -81.965378068740662, 28.862802632324762 ], [ -81.96538517908661, 28.862716930622895 ], [ -81.965394063247615, 28.862617207573287 ], [ -81.965397634814707, 28.862523714463617 ], [ -81.965387619469908, 28.862422864974924 ], [ -81.965364569288198, 28.862315966684857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wellesly Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964109378090043, 28.862141071858034 ], [ -81.96420481791985, 28.862203742498945 ], [ -81.96428637443617, 28.862257238361764 ], [ -81.964378349657025, 28.862300046441771 ], [ -81.964466857496674, 28.86233062641983 ], [ -81.96453802165631, 28.862345731757891 ], [ -81.964581704058574, 28.862353877559109 ], [ -81.964630428911732, 28.862360545798403 ], [ -81.964663049173907, 28.862360937867276 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wellesly Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964663049173907, 28.862360937867276 ], [ -81.964808419643603, 28.862358390949758 ], [ -81.965013755514249, 28.862345979287173 ], [ -81.96519961905382, 28.862332003084244 ], [ -81.965364569288198, 28.862315966684857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wellesly Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965364569288198, 28.862315966684857 ], [ -81.965472223092448, 28.862304025353811 ], [ -81.965700576558973, 28.862271361838193 ], [ -81.965913884170064, 28.862238277251407 ], [ -81.96603105197849, 28.862203928266794 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alwick Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964102416801197, 28.859888077848534 ], [ -81.964129537611385, 28.860000196406833 ], [ -81.964146848457773, 28.860133128498763 ], [ -81.964157205648775, 28.860293560963907 ], [ -81.964148483861948, 28.860418847190591 ], [ -81.964131094070268, 28.860522740172694 ], [ -81.964101546376767, 28.860637324912954 ], [ -81.964059857975485, 28.860733570671943 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alwick Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964059857975485, 28.860733570671943 ], [ -81.964019902131724, 28.860837458495055 ], [ -81.964005993407355, 28.860904682745346 ], [ -81.964000762101648, 28.860974965424433 ], [ -81.963997267105015, 28.861045247665846 ], [ -81.964004183288964, 28.861120115500629 ], [ -81.964019779059527, 28.86119193226309 ], [ -81.964042318644815, 28.861259167177717 ], [ -81.964061395087029, 28.86130500843251 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alwick Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965764340085926, 28.861620798845351 ], [ -81.965871570559699, 28.861600366404048 ], [ -81.966089841610511, 28.861558404123755 ], [ -81.966343698142879, 28.861503081878961 ], [ -81.966456525187752, 28.86147828051616 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973641058585429, 28.893842755893669 ], [ -81.973537034853109, 28.893893755019494 ], [ -81.973475573115863, 28.893921787240945 ], [ -81.973388329858068, 28.893966738751278 ], [ -81.973235209685186, 28.894047682426894 ], [ -81.973158828765108, 28.894082910970795 ], [ -81.973078723890609, 28.894118138722654 ], [ -81.972955027638434, 28.894163168336874 ], [ -81.972830551038541, 28.894212030648344 ], [ -81.972713461095864, 28.894251347115521 ], [ -81.972596374639153, 28.894288789404722 ], [ -81.972457050442799, 28.89432547811225 ], [ -81.972300573469084, 28.894355772140297 ], [ -81.972214885334211, 28.894368047325564 ], [ -81.972123608455789, 28.89437950380977 ], [ -81.971925225468624, 28.894396675551985 ], [ -81.971763166466374, 28.894400738834083 ], [ -81.971642091779529, 28.894398253590666 ], [ -81.97150890810947, 28.894392488511141 ], [ -81.971353849709317, 28.894378735978705 ], [ -81.971221123655113, 28.894371936677054 ], [ -81.971070245309335, 28.894366167361959 ], [ -81.97087093641818, 28.894361205743724 ], [ -81.970695329065862, 28.894361549125069 ], [ -81.970572149900747, 28.894364840787581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978244719592567, 28.894129532168233 ], [ -81.97815033511921, 28.894091543493097 ], [ -81.978042976647203, 28.894038603318702 ], [ -81.977921122247977, 28.893982331179835 ], [ -81.977771877475817, 28.89390507861679 ], [ -81.977643372146616, 28.893835136179867 ], [ -81.9775543848437, 28.893790027037337 ], [ -81.977449665225009, 28.893741098456214 ], [ -81.977357530077938, 28.89370217933196 ], [ -81.977255056725966, 28.893659440756466 ], [ -81.977131010175739, 28.893611951417203 ], [ -81.977011966860317, 28.893570542519925 ], [ -81.976888106513627, 28.893530359813141 ], [ -81.976724492969666, 28.893487649959447 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982219867936834, 28.895155960138105 ], [ -81.982314701282803, 28.895173709239749 ], [ -81.982652145299483, 28.895235281336426 ], [ -81.982847506959956, 28.895258282745406 ], [ -81.983039580578918, 28.895274753510304 ], [ -81.983417529629349, 28.895284505248554 ], [ -81.983629881528088, 28.895278793750443 ], [ -81.983779833118419, 28.895270615577527 ], [ -81.983992702292028, 28.895254769842488 ], [ -81.984078590602536, 28.895243355204546 ], [ -81.98407952263311, 28.895243230798457 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985844980569951, 28.895021075360287 ], [ -81.986015149504112, 28.895014736635282 ], [ -81.98637652088027, 28.895007397797425 ], [ -81.986939994555357, 28.89501647005682 ], [ -81.987195748058625, 28.895012075450811 ], [ -81.987422544806876, 28.894998267540057 ], [ -81.98767957823182, 28.894973746340582 ], [ -81.987823897107361, 28.894956399387869 ], [ -81.98798794358494, 28.894933572593605 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98798794358494, 28.894933572593605 ], [ -81.988087450042244, 28.894916584928218 ], [ -81.988292352867091, 28.894877260160577 ], [ -81.988621133367758, 28.894803523013479 ], [ -81.988956654852217, 28.894710716419993 ], [ -81.989249452679488, 28.894612976271624 ], [ -81.989412464534411, 28.894553599101101 ], [ -81.989707340077885, 28.894433016400395 ], [ -81.990128548803071, 28.894230984693024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990128548803071, 28.894230984693024 ], [ -81.990276230086536, 28.894141398135648 ], [ -81.990364713492554, 28.894091407260628 ], [ -81.990610659813839, 28.89394243445604 ], [ -81.990789437591161, 28.893820142063081 ], [ -81.990936602511368, 28.89371360142643 ], [ -81.991121021485895, 28.893570999105439 ], [ -81.991356670878304, 28.893370206951666 ], [ -81.991542956462382, 28.893194819096497 ], [ -81.991674287150772, 28.893063688051541 ], [ -81.991858710775972, 28.892862891766768 ], [ -81.991961509000404, 28.892755641654254 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakewood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992387302463484, 28.892948749186544 ], [ -81.992315065956291, 28.892916194524194 ], [ -81.992197177624803, 28.892867126845335 ], [ -81.99205220663201, 28.89280155346497 ], [ -81.991961509000404, 28.892755641654254 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sunset Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991614862402812, 28.891339092760475 ], [ -81.991705682934736, 28.891357662416603 ], [ -81.991828732566063, 28.891344951258606 ], [ -81.992045927137909, 28.891306804433672 ], [ -81.992228447337027, 28.891300154523677 ], [ -81.992365491623616, 28.891303817741697 ], [ -81.992491113986389, 28.891325752653255 ], [ -81.992609139867625, 28.891351171705669 ], [ -81.992689408797688, 28.891378758598048 ], [ -81.992776616392845, 28.891412570792479 ], [ -81.992854480359981, 28.89145094986775 ], [ -81.99292299973898, 28.89149298271213 ], [ -81.993037885812242, 28.891572052894308 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991961509000404, 28.892755641654254 ], [ -81.992041270873386, 28.892660454729416 ], [ -81.992287166334137, 28.892392454614768 ], [ -81.992906557882691, 28.891714658948516 ], [ -81.993037885812242, 28.891572052894308 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993328974874217, 28.891252126736482 ], [ -81.993569714627768, 28.890986866051765 ], [ -81.993600838993004, 28.890953019579133 ], [ -81.993600907691132, 28.890952944691552 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Golden Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993461436377473, 28.890433001685118 ], [ -81.993865899239509, 28.890664768921862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993865899239509, 28.890664768921862 ], [ -81.994026097628648, 28.890480361455083 ], [ -81.99410247264899, 28.89038282714127 ], [ -81.994166738741711, 28.890291852870767 ], [ -81.994246839680173, 28.8901705520448 ], [ -81.994339048743711, 28.890014827126095 ], [ -81.994421014279851, 28.889856643838108 ], [ -81.994490873014485, 28.889703376622819 ], [ -81.994538376214194, 28.889578797081381 ], [ -81.994598920871113, 28.889393563613723 ], [ -81.994626128428862, 28.889295250969678 ], [ -81.994650154616906, 28.889196036790359 ], [ -81.994679966329798, 28.889039487955191 ], [ -81.994701394597428, 28.8888804827081 ], [ -81.99471630670331, 28.888676395544458 ], [ -81.994717249026479, 28.888466572786303 ], [ -81.994710735933623, 28.888347726893176 ], [ -81.994706084879112, 28.888282157417017 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kyrle Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995190854560661, 28.888235650839921 ], [ -81.994706084879112, 28.888282157417017 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994706084879112, 28.888282157417017 ], [ -81.994690258704154, 28.888159213794815 ], [ -81.994645573295472, 28.887862506623371 ], [ -81.994596228880482, 28.887557604536138 ], [ -81.994555954014757, 28.887307426436855 ], [ -81.994505925993764, 28.886989600608043 ], [ -81.994500342119224, 28.886924850361666 ], [ -81.994494761774519, 28.886815840452055 ], [ -81.99450688400141, 28.886508482085425 ], [ -81.994529833353624, 28.886406042115279 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994529833353624, 28.886406042115279 ], [ -81.994570279719781, 28.886110051190062 ], [ -81.994635442238192, 28.885789675667979 ], [ -81.994714613495788, 28.885553627015405 ], [ -81.99490555536056, 28.885011043057322 ], [ -81.994938155995754, 28.884915967952416 ], [ -81.995096494968166, 28.884453705257336 ], [ -81.995213994437378, 28.884117667382458 ], [ -81.995259700363633, 28.883967514393891 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcsweeney Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97948071082817, 28.875627235614864 ], [ -81.979716798687861, 28.874713509104826 ], [ -81.979814821414422, 28.874388532633386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inez Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978261433938513, 28.949899041267948 ], [ -81.978745135364903, 28.949897440025566 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inman Mills Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977754841159197, 28.899622523445419 ], [ -81.977549097403724, 28.899611211227931 ], [ -81.977432662767967, 28.899602572870791 ], [ -81.977358667664163, 28.899598731007604 ], [ -81.977268349300076, 28.899592968944997 ], [ -81.977170414591413, 28.899587207326682 ], [ -81.977101859668821, 28.899580491526009 ], [ -81.977050718866437, 28.899567077303949 ], [ -81.977016988041697, 28.899551750473979 ], [ -81.976983259967312, 28.899528761312098 ], [ -81.976954972115294, 28.899498113461998 ], [ -81.976935393606269, 28.899472255609176 ], [ -81.976919076217754, 28.899439696038367 ], [ -81.976911465894418, 28.899412882004725 ], [ -81.976906040461046, 28.89934106166783 ], [ -81.976896270961547, 28.899235725580805 ], [ -81.97688649851915, 28.899139008252369 ], [ -81.976875637550307, 28.899045163654218 ], [ -81.976848461582307, 28.898917799426172 ], [ -81.976822373738131, 28.898794266541191 ], [ -81.976799097447739, 28.898711697618246 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inman Mills Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976799097447739, 28.898711697618246 ], [ -81.976787189302442, 28.898674223066468 ], [ -81.976747340102008, 28.898570177437254 ], [ -81.976708187149683, 28.898475369655472 ], [ -81.976663595462227, 28.898377687991641 ], [ -81.976614647260433, 28.898288624312798 ], [ -81.976561791281867, 28.898196267440433 ], [ -81.976517235811215, 28.89812970152138 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inman Mills Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975548767028457, 28.897182010888653 ], [ -81.975503073690447, 28.89712321501953 ], [ -81.975454645596798, 28.897074047069992 ], [ -81.975406017564353, 28.897037941654681 ], [ -81.975347136001133, 28.897007138049382 ], [ -81.975294108268258, 28.896988417288242 ], [ -81.975220849688384, 28.896974149219147 ], [ -81.975176431579158, 28.896972958073984 ], [ -81.975118513094714, 28.896975321269547 ], [ -81.975037783849501, 28.896995437440754 ], [ -81.974943552328014, 28.897030955994648 ], [ -81.974861050889956, 28.897060873406531 ], [ -81.974793658431807, 28.897083549051722 ], [ -81.974726460672926, 28.897106570280524 ], [ -81.974659262884501, 28.89712959147575 ], [ -81.974584641829736, 28.897156048086568 ], [ -81.97449497858463, 28.897188689760153 ], [ -81.97442877932157, 28.897211897806255 ], [ -81.974352602966093, 28.897229119859173 ], [ -81.974269902723776, 28.897236765414156 ], [ -81.974183935928977, 28.89723962088339 ], [ -81.974118380106745, 28.897235722022728 ], [ -81.974033580473488, 28.897225044935496 ], [ -81.973980456907427, 28.897212768763954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inman Mills Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973980456907427, 28.897212768763954 ], [ -81.973907062938423, 28.897190668898311 ], [ -81.973810713992677, 28.89716389781211 ], [ -81.973707347730738, 28.897137064825085 ], [ -81.973578651091728, 28.897100581182208 ], [ -81.973371106863198, 28.897042708993439 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gumwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9907930317096, 28.868838295669104 ], [ -81.990938509838301, 28.868837274359869 ], [ -81.991025838308843, 28.868839204914252 ], [ -81.991115601319493, 28.868852380078728 ], [ -81.991210159514964, 28.868889514360372 ], [ -81.991286810130987, 28.868937259387465 ], [ -81.991328363427485, 28.868978232998401 ], [ -81.991359943966899, 28.869019205043802 ], [ -81.991404060956583, 28.869096433342456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Waterloo Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975278309311918, 28.882195476049663 ], [ -81.975512880401197, 28.882220899083329 ], [ -81.975644238313109, 28.88224840262977 ], [ -81.975750124976571, 28.882278146363365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jacinto Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981028749631278, 28.950809515615887 ], [ -81.980973547976433, 28.950975581850418 ], [ -81.980946722743781, 28.951036010844096 ], [ -81.980916550038145, 28.951080225161714 ], [ -81.980824363324643, 28.951165701410332 ], [ -81.980685247595517, 28.951298336322022 ], [ -81.980584680297014, 28.951394127997432 ], [ -81.980499198941459, 28.951475183763815 ], [ -81.980430963836469, 28.951553484602684 ], [ -81.980371800776311, 28.951656459920098 ], [ -81.980341623116416, 28.951724257312794 ], [ -81.980316472637227, 28.951795004130929 ], [ -81.980288314702747, 28.951964687728779 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jeter Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971146045188874, 28.902525047405874 ], [ -81.971179139092271, 28.902210924659826 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Joanna Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973272236669843, 28.899334079148346 ], [ -81.973435484373852, 28.899310476813195 ], [ -81.973590864007591, 28.899300643617327 ], [ -81.973745786413943, 28.899278306091542 ], [ -81.973820412328081, 28.899267766512175 ], [ -81.97389503971246, 28.89925136465439 ], [ -81.974142703662764, 28.899182183818802 ], [ -81.974377502924256, 28.899105910700893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jonesbury Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95663802837484, 28.878406123358449 ], [ -81.956563315437535, 28.878411073604489 ], [ -81.95642868436363, 28.878421311722285 ], [ -81.956231344692569, 28.878429462110546 ], [ -81.956086009630553, 28.878423547902472 ], [ -81.955934245068761, 28.878407450757525 ], [ -81.955859452340434, 28.878395050226473 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Juniper Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991806826415896, 28.870016225240118 ], [ -81.992146197725205, 28.869755324123016 ], [ -81.992197328915452, 28.869717205744699 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kassel Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959996706799856, 28.874942358608166 ], [ -81.960165003292047, 28.87505938852199 ], [ -81.960537028002719, 28.875324651623195 ], [ -81.960841141618317, 28.875548301376927 ], [ -81.961024090310346, 28.875678297857654 ], [ -81.961056054590941, 28.875719445796559 ], [ -81.961071430770232, 28.875748534161808 ], [ -81.961083088953771, 28.875785492229262 ], [ -81.961086171327352, 28.875818724911387 ], [ -81.96108552283215, 28.875855864382526 ], [ -81.961075672090374, 28.875884007940254 ], [ -81.961018176009176, 28.875995474297234 ], [ -81.960868714863281, 28.876315370002985 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kilmer Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957166288782162, 28.873694059889289 ], [ -81.95724030820071, 28.873704593493024 ], [ -81.957285584054077, 28.873709340475656 ], [ -81.957328652916502, 28.873721435092747 ], [ -81.957417391340854, 28.873763155943632 ], [ -81.957486219972296, 28.873805558891913 ], [ -81.957643775268423, 28.873919107485559 ], [ -81.958503172494005, 28.874537318442606 ], [ -81.958995843766957, 28.874886245705927 ], [ -81.959072938348541, 28.874936214361963 ], [ -81.959139325718809, 28.874962626920166 ], [ -81.959226413211582, 28.874984041564236 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "La Frontera Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967377517446579, 28.950793985481809 ], [ -81.967395867538841, 28.951262804701653 ], [ -81.967399548568537, 28.951450310013868 ], [ -81.967384526981576, 28.951644391179503 ], [ -81.967380719021094, 28.951861502466304 ], [ -81.967391392223405, 28.951922996268124 ], [ -81.967438275320234, 28.952043939174324 ], [ -81.967476435064711, 28.952101285501147 ], [ -81.967524976256811, 28.95214697131053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laguna Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992004603646933, 28.895737236456046 ], [ -81.991992175693696, 28.89562308306321 ], [ -81.991960206634474, 28.895415105550398 ], [ -81.991919824693781, 28.89523616712404 ], [ -81.991881745265758, 28.895151252066455 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Perdido Bay", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992004603646933, 28.895737236456046 ], [ -81.992281360429899, 28.895705042638252 ], [ -81.992530969068454, 28.895626328656121 ], [ -81.992670792834943, 28.895542436167666 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laguna Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991999223681844, 28.896364289259338 ], [ -81.99201879955757, 28.89600150734984 ], [ -81.992004603646933, 28.895737236456046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakewood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991999223681844, 28.896364289259338 ], [ -81.992240847311535, 28.896371338013235 ], [ -81.992424650012552, 28.896361723867361 ], [ -81.99261525078299, 28.896335726798061 ], [ -81.992786409750735, 28.896302723843945 ], [ -81.992903641648397, 28.896269717776935 ], [ -81.993086524972441, 28.896207828852702 ], [ -81.993283477065006, 28.896123243051708 ], [ -81.993525133906601, 28.89599222141857 ], [ -81.993698478755149, 28.895899599766459 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Miona Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000025186022313, 28.909455738218057 ], [ -82.000103677147095, 28.909457711841196 ], [ -82.000215808214421, 28.909457712187137 ], [ -82.00032341909963, 28.909447034638507 ], [ -82.000412854863555, 28.909426485844705 ], [ -82.00048493790942, 28.909403798535038 ], [ -82.000563548925143, 28.909369496809429 ], [ -82.0006449285749, 28.90932232105045 ], [ -82.000737718262357, 28.909254255228447 ], [ -82.000760864650132, 28.909237504038529 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hartford Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0025974489417, 28.908918992280618 ], [ -82.002632361830706, 28.908896660781576 ], [ -82.002682666457105, 28.908865712088712 ], [ -82.002754428261298, 28.908824271111691 ], [ -82.002830477291525, 28.908778449368221 ], [ -82.002906075226761, 28.908739601450044 ], [ -82.002978686064893, 28.90870389805081 ], [ -82.003061660042533, 28.908670350913631 ], [ -82.003142248938985, 28.90864265246584 ], [ -82.003214720380342, 28.908614805249819 ], [ -82.003267976993527, 28.908585496657366 ], [ -82.003306099006224, 28.908553922681111 ], [ -82.003333008588342, 28.908514455621464 ], [ -82.003350948220472, 28.908461178168857 ], [ -82.003350946214141, 28.908390140251161 ], [ -82.003341975151415, 28.908299370162801 ], [ -82.003333001304924, 28.908218464896486 ], [ -82.003324028608233, 28.908141507182286 ], [ -82.003310555461852, 28.908034326184019 ], [ -82.003300932536121, 28.90795252313896 ], [ -82.003276872868625, 28.907809127713922 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Miona Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000760864650132, 28.909237504038529 ], [ -82.000840863778407, 28.909172434693104 ], [ -82.000933653182216, 28.909099899653537 ], [ -82.001062582150666, 28.909004672533847 ], [ -82.001201865767428, 28.908900164205694 ], [ -82.001343834754891, 28.908796662681588 ], [ -82.001469418926462, 28.908694051684311 ], [ -82.001595001870925, 28.908595385415417 ], [ -82.001722829295716, 28.908498694139571 ], [ -82.001821502382498, 28.908417787814574 ], [ -82.001887917404176, 28.908364555213339 ], [ -82.001967270395156, 28.90831517796552 ], [ -82.002000821576146, 28.908302210690845 ], [ -82.002034546175992, 28.908297416421085 ], [ -82.00211079479152, 28.908295442249109 ], [ -82.002160131921968, 28.908303334981284 ], [ -82.002207225635544, 28.908325040100046 ], [ -82.002247593713363, 28.908358585239846 ], [ -82.002301416249381, 28.908427650057654 ], [ -82.002346269425402, 28.908502634948075 ], [ -82.002408913867868, 28.908618944827616 ], [ -82.002470645475128, 28.908718638872347 ], [ -82.002525683798822, 28.908802569839636 ], [ -82.0025974489417, 28.908918992280618 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Las Pacos Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989725645118213, 28.951273641668411 ], [ -81.989594805524703, 28.951519433878044 ], [ -81.989535334768249, 28.951620104239538 ], [ -81.989477352091541, 28.951694624460252 ], [ -81.989411795695602, 28.951765744212238 ], [ -81.989342803822282, 28.951834493333312 ], [ -81.989177370347889, 28.951983506081348 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991708018933551, 28.952071956002818 ], [ -81.991534670532403, 28.951994179121069 ], [ -81.99125521309827, 28.951885642193446 ], [ -81.991038188438935, 28.951801949947008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991038188438935, 28.951801949947008 ], [ -81.990875668967888, 28.951736131027193 ], [ -81.99068242829, 28.951656363014845 ], [ -81.990484727964414, 28.951581823186029 ], [ -81.990382162529897, 28.951541284789563 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990382162529897, 28.951541284789563 ], [ -81.990179013573467, 28.951452798285398 ], [ -81.990016989481873, 28.951388720688726 ], [ -81.989725645118213, 28.951273641668411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Paso Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990382162529897, 28.951541284789563 ], [ -81.990232981912371, 28.951825968674022 ], [ -81.990158120510287, 28.951946971320552 ], [ -81.990089320453549, 28.952040472514323 ], [ -81.990001757293498, 28.952141879038845 ], [ -81.989876086447424, 28.952257378198059 ], [ -81.989670084086598, 28.952443343604735 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Devonshire Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963890683099578, 28.880391215981962 ], [ -81.96399072522604, 28.880299943479539 ], [ -81.964198976973961, 28.88010404546095 ], [ -81.964282778853786, 28.880045625717166 ], [ -81.964372238448107, 28.880002332705139 ], [ -81.964482200804326, 28.87996935927185 ], [ -81.964612272677911, 28.879951517238183 ], [ -81.965097777929444, 28.879944081312438 ], [ -81.965478493796283, 28.879942929218441 ], [ -81.965567125547963, 28.879936473468501 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Devonshire Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963362341402828, 28.880867104509683 ], [ -81.963458761534952, 28.880793118615234 ], [ -81.963678541016577, 28.880592068804276 ], [ -81.963890683099578, 28.880391215981962 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leeds Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963890683099578, 28.880391215981962 ], [ -81.964057220923465, 28.880514959017756 ], [ -81.964106361681715, 28.880537933941113 ], [ -81.964152841119812, 28.88055201956298 ], [ -81.964281904285428, 28.880583812286918 ], [ -81.964616634663855, 28.880650683917672 ], [ -81.964810032119615, 28.880687399801076 ], [ -81.965024267991936, 28.880707098019837 ], [ -81.965220060294868, 28.88071391076388 ], [ -81.965530526374323, 28.880717625357299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Limestone Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97248775619191, 28.902661769942707 ], [ -81.972450241348128, 28.902604273173452 ], [ -81.972273067996397, 28.902348121834823 ], [ -81.972201366460169, 28.902235890788017 ], [ -81.972185207236862, 28.902191043187017 ], [ -81.972169842709093, 28.902123360373039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Haynesville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972169842709093, 28.902123360373039 ], [ -81.972259577844497, 28.902108715735054 ], [ -81.972339057506076, 28.90209632376375 ], [ -81.972403152742459, 28.902086185225059 ], [ -81.972472377951448, 28.902076045905936 ], [ -81.972548011356423, 28.902063654825152 ], [ -81.972631449225091, 28.902046259343862 ], [ -81.972718888431373, 28.902027625769989 ], [ -81.972818249094615, 28.901999668400144 ], [ -81.972886963435499, 28.901974433306101 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Haynesville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971179139092271, 28.902210924659826 ], [ -81.971282231291099, 28.902224986570506 ], [ -81.971383508296185, 28.902229015355285 ], [ -81.971437823488202, 28.902226694506812 ], [ -81.971508217414979, 28.90222544718409 ], [ -81.971594751280136, 28.902222715358008 ], [ -81.97168460711157, 28.902217233972241 ], [ -81.971766363016428, 28.902205782113327 ], [ -81.971865722902237, 28.902185985836418 ], [ -81.971979580017063, 28.902160916779597 ], [ -81.972107726898258, 28.90213550412065 ], [ -81.972169842709093, 28.902123360373039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Links Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954750306697264, 28.872401471077357 ], [ -81.954903226785248, 28.872165281635485 ], [ -81.955001177175973, 28.872053916200617 ], [ -81.955125395987977, 28.871938355641642 ], [ -81.955271096140208, 28.871839619236546 ], [ -81.95550993394265, 28.871719892604524 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lisbon Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957058878145943, 28.930183272933135 ], [ -81.957002413668434, 28.930299311608778 ], [ -81.956964164591056, 28.93037632914881 ], [ -81.956938241429356, 28.930432139489831 ], [ -81.956917504141231, 28.930477700520523 ], [ -81.956893701089754, 28.930538150230813 ], [ -81.956862011205914, 28.930626861783175 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pedro Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955680688567554, 28.930994396249925 ], [ -81.955877558374368, 28.931079795693773 ], [ -81.955954544475404, 28.931109667107364 ], [ -81.955991289438117, 28.931123056593105 ], [ -81.956040706125648, 28.931139795932239 ], [ -81.956079987503514, 28.931150957557296 ], [ -81.956128139881912, 28.931162122073541 ], [ -81.956182628841589, 28.931173286838739 ], [ -81.956245990774093, 28.931182226711819 ], [ -81.956295410739486, 28.931188934246041 ], [ -81.956338496107151, 28.931193406520229 ], [ -81.956395521320033, 28.931197885119058 ], [ -81.956437342516907, 28.931201242616588 ], [ -81.956488032103252, 28.931203489547578 ], [ -81.956545060694324, 28.931202391902925 ], [ -81.956588149440321, 28.931201292428561 ], [ -81.956652781299624, 28.931200198102026 ], [ -81.956714880132168, 28.931195759022582 ], [ -81.956789009712338, 28.931189638305653 ], [ -81.956875772237737, 28.931183970052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lisbon Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956875772237737, 28.931183970052 ], [ -81.956937830595123, 28.931419796593449 ], [ -81.957041160973048, 28.931824328430107 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lisbon Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956862011205914, 28.930626861783175 ], [ -81.956851889710961, 28.930711168047818 ], [ -81.956846167542267, 28.930757912293473 ], [ -81.956842263810884, 28.930802337324035 ], [ -81.956840951775533, 28.930842209306856 ], [ -81.956839637916801, 28.93088891256232 ], [ -81.956839619394287, 28.930933340647108 ], [ -81.956844781905133, 28.930974351604451 ], [ -81.956848505124213, 28.931018512009057 ], [ -81.956857684400958, 28.931085994878213 ], [ -81.956875772237737, 28.931183970052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lisbon Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957348454491552, 28.933077076630674 ], [ -81.95735717670847, 28.933152284745294 ], [ -81.957362313025797, 28.933260126805443 ], [ -81.95736400359317, 28.933346706102267 ], [ -81.957364141151558, 28.933413652782352 ], [ -81.957363950810702, 28.933477329442589 ], [ -81.95736316161404, 28.933535667938159 ], [ -81.957363893247717, 28.933617066854435 ], [ -81.957357348466445, 28.933706317927989 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lisbon Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957788106769129, 28.928677782659392 ], [ -81.957751528504616, 28.928830453895856 ], [ -81.957722902064162, 28.928940186504541 ], [ -81.957683144196992, 28.929032425506318 ], [ -81.957642353420752, 28.929117175120364 ], [ -81.957594810145636, 28.929198366640971 ], [ -81.957556771737757, 28.929266424640428 ], [ -81.957522802870486, 28.929327435189442 ], [ -81.957496999964675, 28.929371496902856 ], [ -81.957454886610932, 28.929444330329289 ], [ -81.957296277124115, 28.929744884874953 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lisette Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960146834596856, 28.890703966887259 ], [ -81.960135540379, 28.890615612105407 ], [ -81.960119184432855, 28.89048462754748 ], [ -81.960098529285332, 28.890357080373015 ], [ -81.96008071239865, 28.890220834058521 ], [ -81.960060537448797, 28.890135132091938 ], [ -81.960036671593642, 28.890086618229105 ], [ -81.960003531508434, 28.890047995320383 ], [ -81.959965126523727, 28.890017841627657 ], [ -81.959912536920783, 28.889993308627613 ], [ -81.959742772745756, 28.889924839994958 ], [ -81.959593978198924, 28.88986496826336 ], [ -81.959436004833805, 28.889788927981641 ], [ -81.95927435638643, 28.889709649847948 ], [ -81.959158631280985, 28.889654640235165 ], [ -81.959075963905292, 28.889630362126262 ], [ -81.959007991367656, 28.889622255871831 ], [ -81.958926014542172, 28.889620026491752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Little Mountain Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984320796523832, 28.874287691415653 ], [ -81.984247331547948, 28.87433078846324 ], [ -81.984183778221919, 28.874374418101471 ], [ -81.984127944656265, 28.874433150464448 ], [ -81.984007006639757, 28.874580692262118 ], [ -81.983906025060165, 28.874709596591043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Backwater Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98477207809654, 28.874736660817597 ], [ -81.984710519112681, 28.874694701224929 ], [ -81.984639034061928, 28.874638757480266 ], [ -81.984478197742362, 28.874484913440387 ], [ -81.98442035454481, 28.874419406757674 ], [ -81.984381828229075, 28.874369707944414 ], [ -81.984320796523832, 28.874287691415653 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Livingston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016447970712562, 28.912621637938855 ], [ -82.016447986401928, 28.912723738277666 ], [ -82.016454449968279, 28.912823433232635 ], [ -82.016454457926997, 28.912881875019014 ], [ -82.016452546545608, 28.912942717141711 ], [ -82.016444459525985, 28.913009207469724 ], [ -82.016428275479356, 28.913063822715454 ], [ -82.016381514678812, 28.913133281633229 ], [ -82.016325825532334, 28.91320022687697 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016325825532334, 28.91320022687697 ], [ -82.016363868056004, 28.913233691327644 ], [ -82.016392121913924, 28.913264550181442 ], [ -82.016433165247804, 28.913312573725584 ], [ -82.016490681356331, 28.91341575453615 ], [ -82.01656105651206, 28.913553992546646 ], [ -82.016624930459201, 28.913673914662347 ], [ -82.016675442377732, 28.913767592327993 ], [ -82.016728235928753, 28.913866652803502 ], [ -82.016775752379289, 28.913965714794177 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014293549567299, 28.913035561729764 ], [ -82.014366418129001, 28.913047428515039 ], [ -82.014476252775026, 28.913054243096006 ], [ -82.014633769836706, 28.913056028625551 ], [ -82.014780483152265, 28.913056013223912 ], [ -82.014933055073612, 28.913055997037745 ], [ -82.015207920393792, 28.913055968343766 ], [ -82.015482786738772, 28.913055937284124 ], [ -82.015641610026819, 28.913055919602897 ], [ -82.015745342114855, 28.913055907953677 ], [ -82.015888520705616, 28.913056761557801 ], [ -82.015978021456945, 28.913059218227797 ], [ -82.016056817910851, 28.913073553909307 ], [ -82.016126105584405, 28.913091474567612 ], [ -82.016199468326079, 28.913121351056621 ], [ -82.0162714765045, 28.913158396414058 ], [ -82.016325825532334, 28.91320022687697 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958046231823701, 28.901721074646858 ], [ -81.957897357431165, 28.901697712621583 ], [ -81.95777484801981, 28.901675878201441 ], [ -81.957566789631684, 28.901633354908501 ], [ -81.957411002276942, 28.901595270961295 ], [ -81.957302453263239, 28.901564277698178 ], [ -81.957086255932296, 28.901499275715093 ], [ -81.956995796599301, 28.901461333972005 ], [ -81.956918261634257, 28.901427188679062 ], [ -81.956834264099811, 28.901387354976457 ], [ -81.956722276230323, 28.901324762540856 ], [ -81.956623209689667, 28.901265968354711 ], [ -81.95656937113533, 28.901229934787388 ], [ -81.95649830474521, 28.901180626410376 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mayesville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958046231823701, 28.901721074646858 ], [ -81.9580593389814, 28.90162289511429 ], [ -81.95806640805057, 28.901541520809907 ], [ -81.958062415879994, 28.901468987379516 ], [ -81.958054387058439, 28.901438911254381 ], [ -81.95804133006348, 28.901413253917859 ], [ -81.958008177103579, 28.901369017376226 ], [ -81.957849420515686, 28.901212406143014 ], [ -81.957556825381431, 28.900933936710079 ], [ -81.957506801571483, 28.900884133838076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chesnee Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958046059561553, 28.902146537273381 ], [ -81.958038137845236, 28.901849329358452 ], [ -81.958046231823701, 28.901721074646858 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggett Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957447617370093, 28.902054990201918 ], [ -81.9575645998775, 28.902072969453773 ], [ -81.957727428024526, 28.902106633274101 ], [ -81.957899306458131, 28.902132337854411 ], [ -81.958046059561553, 28.902146537273381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chesnee Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958206318684148, 28.903628405056967 ], [ -81.958206388714473, 28.903452252967053 ], [ -81.958204256454849, 28.903227170345637 ], [ -81.958199435964048, 28.903186798206022 ], [ -81.958191403136709, 28.903161144260121 ], [ -81.958179350016451, 28.903139913932399 ], [ -81.95812308736437, 28.903067364219378 ], [ -81.958085915436897, 28.903017817328521 ], [ -81.958071849823384, 28.902998353062586 ], [ -81.958059798227225, 28.902970930249598 ], [ -81.958053123625177, 28.902941365255188 ], [ -81.958046059561553, 28.902146537273381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jonesville Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957412800307338, 28.903717337826578 ], [ -81.957397100052376, 28.903623508246305 ], [ -81.957392114081017, 28.903544900230433 ], [ -81.957395693568984, 28.902156062751526 ], [ -81.95740270757247, 28.902127678664122 ], [ -81.957413807820103, 28.902106534112509 ], [ -81.957447617370093, 28.902054990201918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mayesville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957506801571483, 28.900884133838076 ], [ -81.95737978631243, 28.900751025242243 ], [ -81.957230625754008, 28.900572556321322 ], [ -81.957034598047116, 28.900327943655348 ], [ -81.957017183859691, 28.900306707889666 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oakland Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956503435884045, 28.900623068795639 ], [ -81.957017183859691, 28.900306707889666 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mayesville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957017183859691, 28.900306707889666 ], [ -81.95687628330316, 28.900119690124754 ], [ -81.956713854634728, 28.899913372311286 ], [ -81.956583245425264, 28.899753817211803 ], [ -81.956561216389076, 28.899729887432649 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mccormick Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005467909850481, 28.924813600234813 ], [ -82.005439718638044, 28.924612419088611 ], [ -82.005431672852737, 28.924485772245546 ], [ -82.005427096778178, 28.924424963992454 ], [ -82.005415600995576, 28.924385408664012 ], [ -82.005387751910902, 28.924321134627963 ], [ -82.005352780045911, 28.924234301640261 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vance Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967870736524873, 28.908927232058922 ], [ -81.967780447695546, 28.908779635064789 ], [ -81.967716984479253, 28.908669118085147 ], [ -81.967652105578068, 28.908577224159213 ], [ -81.967606571258329, 28.908529576345828 ], [ -81.967553689016114, 28.908484011045754 ], [ -81.967505304781866, 28.9084503282734 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vance Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967505304781866, 28.9084503282734 ], [ -81.967447554842536, 28.90841452551572 ], [ -81.967333277091399, 28.908353659372519 ], [ -81.967130119967862, 28.908251798917934 ], [ -81.966848936258771, 28.908108795749619 ], [ -81.9667878022465, 28.90807784081931 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcnair Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967505304781866, 28.9084503282734 ], [ -81.96774267768474, 28.908167908648291 ], [ -81.967766233806344, 28.908139354784339 ], [ -81.967818344996275, 28.908092242095741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melendez Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96801493825005, 28.931866534238431 ], [ -81.967950769227429, 28.932024356401591 ], [ -81.967931216115289, 28.932069387051648 ], [ -81.967910686756568, 28.932113729013757 ], [ -81.967889375814735, 28.932158070784965 ], [ -81.96786728237015, 28.932202068590467 ], [ -81.967844213594731, 28.932245722383541 ], [ -81.967820165491631, 28.932288689290761 ], [ -81.96779553273231, 28.932331655150495 ], [ -81.967769923613545, 28.932374277898415 ], [ -81.967743336191347, 28.932416211052402 ], [ -81.967716163191966, 28.932457801187752 ], [ -81.967696266221608, 28.932506341643769 ], [ -81.967678445960857, 28.932572135372975 ], [ -81.96765377343246, 28.932643411590494 ], [ -81.967587979801309, 28.932758550124262 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Willow Grove Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006942285879489, 28.920229837522104 ], [ -82.007076785560812, 28.920228240325777 ], [ -82.007359577392634, 28.920267640438038 ], [ -82.007615769794924, 28.920310736256756 ], [ -82.007708125756068, 28.920330476331479 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Willow Grove Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007708125756068, 28.920330476331479 ], [ -82.007893742568513, 28.920359049283746 ], [ -82.008062356643762, 28.920372295622077 ], [ -82.008206920634066, 28.92037518926838 ], [ -82.008418114853228, 28.920373802000245 ], [ -82.008490401302609, 28.920373110209407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melrose Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007567137490994, 28.921097561877758 ], [ -82.00761967653159, 28.920954043505773 ], [ -82.007655555286661, 28.920856656787208 ], [ -82.007677341366957, 28.92078361656116 ], [ -82.007686311815363, 28.920708012684418 ], [ -82.007689012306813, 28.920593170981331 ], [ -82.007693514381458, 28.920488439410491 ], [ -82.007695572440241, 28.920396949165525 ], [ -82.007708125756068, 28.920330476331479 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Merida Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98663570422984, 28.946953221170372 ], [ -81.9866731598878, 28.947188722445834 ], [ -81.986698545444312, 28.947380309711605 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Merida Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986698545444312, 28.947380309711605 ], [ -81.986514593825476, 28.947399020045772 ], [ -81.986345199222555, 28.947413268886116 ], [ -81.986220560429487, 28.947427092672385 ], [ -81.986088914226045, 28.947440577249775 ], [ -81.985980127659403, 28.947453047228741 ], [ -81.985828951656671, 28.947466799274899 ], [ -81.985683087004418, 28.947482989718427 ], [ -81.985509586321385, 28.947500527725818 ], [ -81.985363721130383, 28.947512665626466 ], [ -81.985299407351178, 28.947523494162649 ], [ -81.985257776085803, 28.947538312416825 ], [ -81.985211064769089, 28.947568189358162 ], [ -81.985169913960121, 28.947622466702473 ], [ -81.985147206633371, 28.94768280318625 ], [ -81.985141058716493, 28.947732770565452 ], [ -81.985153331865178, 28.947788142028603 ], [ -81.985187100764875, 28.947854319037031 ], [ -81.985231618808442, 28.947924549427206 ], [ -81.985279205615498, 28.947998832338104 ], [ -81.985336003835926, 28.948070413881428 ], [ -81.985397413866579, 28.948116338313827 ], [ -81.985461897111293, 28.948135252022258 ], [ -81.985563816772213, 28.948135264034235 ], [ -81.985672602047316, 28.948122796197868 ], [ -81.985819226772421, 28.948106171846085 ], [ -81.985984769294461, 28.948093708900625 ], [ -81.986159771552707, 28.948077086266196 ], [ -81.986311125226408, 28.94806046277327 ], [ -81.986509778034957, 28.948035521176468 ], [ -81.98671788837936, 28.948014741606574 ], [ -81.986916540466467, 28.947993961685039 ], [ -81.987062098046678, 28.947976560804083 ], [ -81.987244958098245, 28.947957658332651 ], [ -81.987408456298709, 28.947940642274855 ], [ -81.987625735392001, 28.9479179574308 ], [ -81.987731415913615, 28.947914893138623 ], [ -81.987820156160183, 28.947909224094065 ], [ -81.987875017107299, 28.947887942233844 ], [ -81.987925038152383, 28.947858144974546 ], [ -81.987962151467315, 28.947816992976342 ], [ -81.987991200153843, 28.947754554250658 ], [ -81.988013799200829, 28.947667988530739 ], [ -81.988036396662878, 28.947577164886479 ], [ -81.988046090538603, 28.947483502363557 ], [ -81.988033190453095, 28.947416802819124 ], [ -81.988013834050648, 28.947374225485536 ], [ -81.987975115200584, 28.947331647296267 ], [ -81.987941236594367, 28.947311777537458 ], [ -81.987894450209254, 28.947290485481084 ], [ -81.987782168904488, 28.947278499050853 ], [ -81.987616627372134, 28.947286803737686 ], [ -81.98742743745008, 28.94730342692537 ], [ -81.987252769236036, 28.947318631034165 ], [ -81.9870494736344, 28.947338834436639 ], [ -81.986890951437076, 28.947356913452694 ], [ -81.986698545444312, 28.947380309711605 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Modesto Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956329154145578, 28.921942537714404 ], [ -81.95633850004026, 28.922573078663923 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Marino Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95633850004026, 28.922573078663923 ], [ -81.956492571543151, 28.922572429451368 ], [ -81.956545714296368, 28.922572102002597 ], [ -81.956748316356098, 28.922571479039689 ], [ -81.956778404608073, 28.922572177191118 ], [ -81.956808295518883, 28.922573905694136 ], [ -81.956838186000851, 28.922576665514576 ], [ -81.956867881194185, 28.922580456589724 ], [ -81.956897381243166, 28.922584934242749 ], [ -81.956926881008343, 28.922590100340955 ], [ -81.956955988431901, 28.92259664230798 ], [ -81.956984706878004, 28.922603870791104 ], [ -81.957061087407922, 28.922625553976751 ], [ -81.957095859772821, 28.92263553366973 ], [ -81.957123990894033, 28.922644480808799 ], [ -81.957222894355198, 28.922678500071747 ], [ -81.957269699593795, 28.92270171572585 ], [ -81.957322246005063, 28.922730073570154 ], [ -81.957378182001463, 28.922758431568891 ], [ -81.957422251601898, 28.922785294282377 ], [ -81.957476490938319, 28.922819618583762 ], [ -81.957522255683301, 28.922849466596425 ], [ -81.957562931914055, 28.922880802673745 ], [ -81.95760021819315, 28.922910646171903 ], [ -81.957685701657837, 28.922991321273766 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Juarez Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956346545461102, 28.920670865405345 ], [ -81.95655761901547, 28.920670437671255 ], [ -81.958822393794961, 28.920625893879446 ], [ -81.95887891740432, 28.920631879010703 ], [ -81.958919612155171, 28.920643827056718 ], [ -81.958953902119049, 28.920658739879848 ], [ -81.958971871853564, 28.920666996877127 ], [ -81.958989450306674, 28.920676627949355 ], [ -81.9590064461065, 28.920686602615973 ], [ -81.95902265591883, 28.920697609267044 ], [ -81.959038281027645, 28.92070895770777 ], [ -81.959053321159843, 28.92072133819482 ], [ -81.959067380584088, 28.920734405930443 ], [ -81.959081831110879, 28.920754349280397 ], [ -81.959091984241255, 28.920769822245134 ], [ -81.959100964882566, 28.92078598149882 ], [ -81.95910916390946, 28.920802486092942 ], [ -81.959116190582336, 28.920819333201603 ], [ -81.959122435640836, 28.920836523846432 ], [ -81.959127509369608, 28.920854057908755 ], [ -81.959131409852418, 28.920871592515518 ], [ -81.959134527694985, 28.920889467951554 ], [ -81.959136474340966, 28.920907345737469 ], [ -81.9591372487656, 28.920925222263815 ], [ -81.9591389684539, 28.921021823509836 ], [ -81.959139520880953, 28.921108456734096 ], [ -81.959140587565614, 28.921277098900269 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Juarez Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954173412563733, 28.92056130927568 ], [ -81.954329234049339, 28.920504247970797 ], [ -81.95445652490649, 28.92047132856252 ], [ -81.954557479953195, 28.920462550071157 ], [ -81.955775945482571, 28.92044450263251 ], [ -81.955794311239984, 28.920444508686195 ], [ -81.955814628201253, 28.920445546704613 ], [ -81.955834945749189, 28.920447615142315 ], [ -81.955855264029708, 28.920450372931466 ], [ -81.955875189082278, 28.92045416101038 ], [ -81.955894919866395, 28.920458979444646 ], [ -81.955914257569148, 28.920464486198771 ], [ -81.955933403055155, 28.920471024211469 ], [ -81.955951959432085, 28.920478594254767 ], [ -81.955970124780734, 28.920486850814484 ], [ -81.955987901152085, 28.920495794793794 ], [ -81.956004892533343, 28.920505769837735 ], [ -81.956026182349405, 28.920519871586645 ], [ -81.95604180710589, 28.920531220374897 ], [ -81.95605664994919, 28.920543601131893 ], [ -81.956070514700372, 28.920555294919588 ], [ -81.956084773562651, 28.920566300382927 ], [ -81.956099422141477, 28.920577306874595 ], [ -81.956117180880668, 28.920589200436986 ], [ -81.956130087258742, 28.920597254944692 ], [ -81.956145907767976, 28.920606542038151 ], [ -81.956162315047735, 28.920615485546687 ], [ -81.956183342965062, 28.920628164263981 ], [ -81.95621926634189, 28.920645299769671 ], [ -81.956259685419425, 28.920658485577174 ], [ -81.956304596648621, 28.920666403426679 ], [ -81.956346545461102, 28.920670865405345 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Modesto Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956346545461102, 28.920670865405345 ], [ -81.956339731357247, 28.920744465285338 ], [ -81.956328424586118, 28.920968055987938 ], [ -81.956330555860703, 28.921305823988551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moore Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968509404113178, 28.903837131089809 ], [ -81.968936208926308, 28.903755579919636 ], [ -81.969000346468292, 28.903752459286252 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morton Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980467587131287, 28.916391471361436 ], [ -81.980851421136862, 28.916229449190261 ], [ -81.980902421211724, 28.916207922279508 ], [ -81.980938422503741, 28.916183734139324 ], [ -81.980964120593356, 28.916141855892185 ], [ -81.980982205737732, 28.916097121687972 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Forest Acres Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975595921806189, 28.902329615761698 ], [ -81.975583954058365, 28.902262520450495 ], [ -81.975568277544028, 28.902190986955294 ], [ -81.975540623966168, 28.902104808764765 ], [ -81.975512965396888, 28.902035491823327 ], [ -81.97547254365162, 28.901928705482867 ], [ -81.975440629454269, 28.901848148711174 ], [ -81.975408715754156, 28.901765716051923 ], [ -81.975378931943169, 28.901687031022927 ], [ -81.975342763346148, 28.901598979850831 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quary Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975219074894142, 28.902375435610637 ], [ -81.975595921806189, 28.902329615761698 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mountville Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978146218241065, 28.892092112869719 ], [ -81.978188446531519, 28.891952398591137 ], [ -81.97819591846681, 28.891490041362857 ], [ -81.978197637061328, 28.891087861176693 ], [ -81.978232705103423, 28.890935015422496 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Murphys Estate Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96124510570138, 28.891442242822354 ], [ -81.961315645095567, 28.891446918142606 ], [ -81.961458480131682, 28.891470238586436 ], [ -81.961578386114454, 28.891501312998173 ], [ -81.961688013399453, 28.891541658208677 ], [ -81.96191565108262, 28.891633021341736 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Little River Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96124510570138, 28.891442242822354 ], [ -81.961198551313245, 28.890841784738608 ], [ -81.961183017123602, 28.890599075036103 ], [ -81.961151468340887, 28.890356356176401 ], [ -81.961078677486441, 28.889966091132919 ], [ -81.961084955348511, 28.889911034591162 ], [ -81.961102179916594, 28.889858732335654 ], [ -81.961130348075187, 28.889817447627358 ], [ -81.961169461879081, 28.889784423030555 ], [ -81.961214828192013, 28.889761035894278 ], [ -81.961260190366289, 28.889748661316585 ], [ -81.961335266629646, 28.889741800222396 ], [ -81.961436929431684, 28.889750087328295 ], [ -81.961606232112672, 28.889763041476272 ], [ -81.961722355523776, 28.889781656623494 ], [ -81.961832613224431, 28.88980646429383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Murphys Estate Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960758159222976, 28.891448115136185 ], [ -81.960832448996925, 28.891442122107751 ], [ -81.961176333005071, 28.891434462259493 ], [ -81.96124510570138, 28.891442242822354 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960758159222976, 28.891448115136185 ], [ -81.960749538378124, 28.891310926009549 ], [ -81.960723073855448, 28.890894708880879 ], [ -81.960690299157434, 28.890597014221001 ], [ -81.960659067660345, 28.89036684723818 ], [ -81.960621576646304, 28.890124278993927 ], [ -81.960530901272236, 28.889720445016184 ], [ -81.960458970055882, 28.889451679108411 ], [ -81.960355740861786, 28.889122265716413 ], [ -81.960238427143821, 28.888772173648452 ], [ -81.960099215251404, 28.888357302411219 ], [ -81.959970171386587, 28.887956765277849 ], [ -81.959959207116384, 28.887917786233803 ], [ -81.959886530206091, 28.887617156788746 ], [ -81.959868960373669, 28.887519955718613 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960804047737582, 28.892106148883091 ], [ -81.960787129265768, 28.891784512790085 ], [ -81.960768996939905, 28.891573954875309 ], [ -81.9607689857107, 28.891573825843142 ], [ -81.960758159222976, 28.891448115136185 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Murphys Estate Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965176502037693, 28.892649768217936 ], [ -81.965298498603417, 28.892718684122638 ], [ -81.965417313375909, 28.8927798257821 ], [ -81.965542942816626, 28.892842712330857 ], [ -81.965643235849782, 28.892882626034009 ], [ -81.965793986231802, 28.892939319980901 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Murphys Estate Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965793986231802, 28.892939319980901 ], [ -81.965946301724657, 28.89298249229002 ], [ -81.966161875653341, 28.893032598337392 ], [ -81.966286196876936, 28.893053581054474 ], [ -81.966389361928179, 28.893062918687132 ], [ -81.966470046679291, 28.893052463184844 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mount Croghan Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966470046679291, 28.893052463184844 ], [ -81.966447174942303, 28.892854983715445 ], [ -81.966416944698892, 28.892623052581758 ], [ -81.96640443645579, 28.892552745845276 ], [ -81.966396618423076, 28.892515524012914 ], [ -81.966376267151972, 28.892475541609176 ], [ -81.966343382016859, 28.892441070914334 ], [ -81.966308930197243, 28.892416249915971 ], [ -81.966258256530679, 28.892397026306281 ], [ -81.966097642076534, 28.892353825179899 ], [ -81.965891647327723, 28.892280270685863 ], [ -81.965767023626157, 28.892218987198895 ], [ -81.96566052768857, 28.892165198231464 ], [ -81.965533144448173, 28.892084691221278 ], [ -81.965409955233724, 28.892012119998029 ], [ -81.965308156811517, 28.891966603346621 ], [ -81.965210142210552, 28.891931970240346 ], [ -81.964683237288625, 28.891757883524157 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mount Croghan Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966565698274309, 28.894406691096457 ], [ -81.966582012268887, 28.894319975137442 ], [ -81.966588076322182, 28.894229905480344 ], [ -81.9665928040437, 28.894144093441348 ], [ -81.966588140463884, 28.894031401355946 ], [ -81.966572908351083, 28.893908366278808 ], [ -81.966478713042278, 28.893174015973749 ], [ -81.966470046679291, 28.893052463184844 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Surfside Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964945365992918, 28.891139495950757 ], [ -81.965922525044476, 28.891510949546479 ], [ -81.966295838941448, 28.891674970159709 ], [ -81.966351524655479, 28.891729483970561 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Noble Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977255206709231, 28.917197686760137 ], [ -81.977390191203412, 28.917052660047485 ], [ -81.977432252106738, 28.917011227373074 ], [ -81.977470948271417, 28.916974236125057 ], [ -81.977524787832607, 28.91692096727256 ], [ -81.977590399037908, 28.916869179236794 ], [ -81.977667785330738, 28.916821833339188 ], [ -81.977740121669655, 28.916784846727413 ], [ -81.977825915037968, 28.91675674091049 ], [ -81.977911706379288, 28.916733076143238 ], [ -81.977982448625298, 28.916721303821269 ], [ -81.978033049442132, 28.916714780422307 ], [ -81.978102793803998, 28.916712728316423 ], [ -81.978172538749732, 28.916712740629603 ], [ -81.978259083055477, 28.916721349115761 ], [ -81.978323941252242, 28.916731672905446 ], [ -81.978410481017633, 28.916757125370147 ], [ -81.978497216357113, 28.916789112244022 ], [ -81.978590982564953, 28.916826941658119 ], [ -81.97867986418504, 28.916865115807052 ], [ -81.978771284921748, 28.91691394552328 ], [ -81.97885781977557, 28.916964494181599 ], [ -81.978946894029136, 28.91701951316238 ], [ -81.979023855785996, 28.91707487215286 ], [ -81.979103160558381, 28.917142265397217 ], [ -81.979170353896052, 28.917199686327177 ], [ -81.979235398055508, 28.917260887512359 ], [ -81.979302783478872, 28.917332747859643 ], [ -81.979362746540119, 28.917402887248269 ], [ -81.979415675207761, 28.917474745303057 ], [ -81.979475830800169, 28.917557261473405 ], [ -81.979535987513216, 28.917639776713767 ], [ -81.979593604891718, 28.917718166237943 ], [ -81.979639306582612, 28.917781427819165 ], [ -81.979680126499758, 28.917840907116297 ], [ -81.979728368693259, 28.917908639030365 ], [ -81.979773876103749, 28.91796983788463 ], [ -81.979810008697029, 28.918022784705439 ], [ -81.979846139895812, 28.918077794166049 ], [ -81.979877389607054, 28.918122146757941 ], [ -81.979903755875469, 28.918170964975637 ], [ -81.979913318140788, 28.918217376040573 ], [ -81.979925421449707, 28.918270321016212 ], [ -81.979938292492136, 28.918367269305797 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Norfolk Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008119228329491, 28.952207587665551 ], [ -82.008228701413586, 28.952457070564499 ], [ -82.008266035053566, 28.952552638275364 ], [ -82.008303370413245, 28.95265645562959 ], [ -82.008359528213532, 28.952808432606243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odyssey Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95591585233808, 28.87035288796605 ], [ -81.956240710600241, 28.87035299417802 ], [ -81.956481477783257, 28.870341855864648 ], [ -81.956642361689006, 28.870324528632921 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odyssey Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956642361689006, 28.870324528632921 ], [ -81.956766591339104, 28.870313939544843 ], [ -81.957357057741461, 28.870296163438912 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ellenton Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957357057741461, 28.870296163438912 ], [ -81.957366040390625, 28.870383592219234 ], [ -81.957378741904819, 28.87044633517203 ], [ -81.957392411123053, 28.870501538787465 ], [ -81.957424504338917, 28.87059087333521 ], [ -81.957460267281974, 28.870667932304286 ], [ -81.957531097076327, 28.870787531495413 ], [ -81.957612547178542, 28.870888696344036 ], [ -81.957669006964949, 28.87093989366587 ], [ -81.957745396716604, 28.87100279468816 ], [ -81.957830094548797, 28.871061310376962 ], [ -81.95800780558865, 28.871156411018248 ], [ -81.958359902679845, 28.871358310723753 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parris Island Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006538377616522, 28.908422710018367 ], [ -82.006746970670434, 28.908436867605172 ], [ -82.007039111749791, 28.90846898654015 ], [ -82.007348293377433, 28.908494676015454 ], [ -82.007633128649204, 28.908498946408876 ], [ -82.007747549523785, 28.908498941268935 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parris Island Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007747549523785, 28.908498941268935 ], [ -82.008049427357022, 28.908498924861096 ], [ -82.008368343281347, 28.908490337669431 ], [ -82.008587206736706, 28.908468002885417 ], [ -82.008812176256328, 28.908428633793484 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pawleys Island Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011809125943998, 28.907723638681421 ], [ -82.011821863518918, 28.907785887152311 ], [ -82.011829464758094, 28.907932996265796 ], [ -82.011832407758902, 28.908045411509168 ], [ -82.011832588377729, 28.908177876039939 ], [ -82.011832602210532, 28.908304262703766 ], [ -82.011849650809296, 28.908366383582234 ], [ -82.011864187140915, 28.908391531210253 ], [ -82.011888608536779, 28.908424217607518 ], [ -82.011916420520421, 28.908442496725442 ], [ -82.011942170097555, 28.908458485979722 ], [ -82.01197245005865, 28.908474242052982 ], [ -82.012000602616936, 28.908484187501884 ], [ -82.012077857927494, 28.908489275301466 ], [ -82.012152877208749, 28.908489267973163 ], [ -82.012244050967695, 28.908486308690993 ], [ -82.012331692166626, 28.908484159016556 ], [ -82.012499670860521, 28.908475576033297 ], [ -82.012655478538832, 28.908475562152482 ], [ -82.012791812051802, 28.908475549858775 ], [ -82.013042512977179, 28.908457661395406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Poinsett Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965411446788707, 28.905193333033701 ], [ -81.965571266505378, 28.905104065593608 ], [ -81.965761028567684, 28.905025275882725 ], [ -81.965998631965476, 28.90494618224227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thompson Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965998631965476, 28.90494618224227 ], [ -81.965978306363453, 28.904880532176968 ], [ -81.965945869178299, 28.904772844562363 ], [ -81.96591077926206, 28.904646709676594 ], [ -81.965882565578525, 28.904521247839583 ], [ -81.965862475382366, 28.904432548601022 ], [ -81.965849025852719, 28.904346600353396 ], [ -81.965839080635277, 28.904293312588692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quinby Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963724150237709, 28.905550613185945 ], [ -81.963904669659826, 28.90580891317617 ], [ -81.963949807923655, 28.905851967648996 ], [ -81.964000589105851, 28.905895022719317 ], [ -81.96405827349956, 28.905932045050875 ], [ -81.964113449057706, 28.905956305483446 ], [ -81.964154679403805, 28.905973280619875 ], [ -81.964191866811902, 28.905980561275008 ], [ -81.964268999458326, 28.905987854375635 ], [ -81.964380565683484, 28.906001216418701 ], [ -81.964448052583293, 28.906019414736129 ], [ -81.964505897671657, 28.906040034942624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Saxon Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964505897671657, 28.906040034942624 ], [ -81.964714771982514, 28.905669645249944 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quinby Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964505897671657, 28.906040034942624 ], [ -81.964585770137603, 28.906089749231665 ], [ -81.964744132983185, 28.906207357708166 ], [ -81.964946563731985, 28.906355278501152 ], [ -81.965006947576597, 28.906380339364397 ], [ -81.965053980036942, 28.906385317881355 ], [ -81.965123592609771, 28.906380369760665 ], [ -81.965342344330153, 28.906312790226526 ], [ -81.965425482392419, 28.906276521264537 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "English Ivy Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987107959889983, 28.869441346946164 ], [ -81.987131216733729, 28.869552780929453 ], [ -81.9871614386321, 28.869772067872812 ], [ -81.987193151628418, 28.869987204351379 ], [ -81.987202497393142, 28.870058636976822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reston Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009419701626427, 28.95541392870788 ], [ -82.009460111889197, 28.955543027698202 ], [ -82.009498554322505, 28.955657596302835 ], [ -82.009535294107451, 28.955740151705967 ], [ -82.009583113132308, 28.955827355857224 ], [ -82.00964289163484, 28.955907348965262 ], [ -82.009707867080721, 28.955971343159113 ], [ -82.009775870186601, 28.956025285584722 ], [ -82.009874279063268, 28.956099460644918 ], [ -82.01000236575058, 28.956175006823113 ], [ -82.01016481810079, 28.956278026086117 ], [ -82.010349139806209, 28.956398902602889 ], [ -82.010463169208492, 28.956464832746235 ], [ -82.010536583175607, 28.95649230295562 ], [ -82.010599300112162, 28.956510687855179 ], [ -82.010689657629058, 28.956522512777383 ], [ -82.010800556140552, 28.956525251795334 ], [ -82.010966124179831, 28.956523864805913 ], [ -82.011155119989255, 28.956522476658623 ], [ -82.011351927392028, 28.956523834190033 ], [ -82.011467513615671, 28.956529320659016 ], [ -82.011563791058279, 28.956543813488391 ], [ -82.011636447340393, 28.956562882826468 ], [ -82.011718864417944, 28.956593393267266 ], [ -82.011794754001798, 28.956627159673584 ], [ -82.011857129557711, 28.956663723381034 ], [ -82.01190105320876, 28.956692566817225 ], [ -82.011945517123578, 28.956726896124287 ], [ -82.011982388968136, 28.956758365802035 ], [ -82.012018268210753, 28.956793991508547 ], [ -82.012072851072134, 28.956857984536931 ], [ -82.012111839789597, 28.956919693387469 ], [ -82.012145632279768, 28.956990545594504 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reston Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012222435509443, 28.958020614444731 ], [ -82.012217842342409, 28.958843288696123 ], [ -82.01221792150892, 28.959541492303597 ], [ -82.01222393877002, 28.959587596139709 ], [ -82.012238843211776, 28.959619526914423 ], [ -82.012273577450017, 28.959663308443826 ], [ -82.012312068110958, 28.959692699897492 ], [ -82.012327294951149, 28.959699565893377 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rhapsody Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953985220585366, 28.871967134189276 ], [ -81.954069681563638, 28.871862891194304 ], [ -81.954189902539611, 28.871688749030913 ], [ -81.954229045820412, 28.871631922718265 ], [ -81.954286415705667, 28.871564254211609 ], [ -81.954349679104482, 28.871500360209922 ], [ -81.954438132110141, 28.871423976025806 ], [ -81.954515322354283, 28.87136881373879 ], [ -81.954590902715893, 28.871319311007834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013563746618274, 28.912913219464176 ], [ -82.013628423177167, 28.912923061782195 ], [ -82.013803103218578, 28.912954011570505 ], [ -82.013956776369881, 28.912977746648913 ], [ -82.014094835436637, 28.91300071346129 ], [ -82.014214443456865, 28.913019487223096 ], [ -82.014293549567299, 28.913035561729764 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilson Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013563746618274, 28.912913219464176 ], [ -82.013563901491565, 28.913808317161525 ], [ -82.013557296314787, 28.914093442768106 ], [ -82.013556169267844, 28.914142078491853 ], [ -82.013507745126887, 28.914336954948887 ], [ -82.013443631389194, 28.914562493838194 ], [ -82.013419083266783, 28.914663883685279 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Saluda Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012592031355851, 28.912393426792796 ], [ -82.012673790194555, 28.912396594654108 ], [ -82.012867813466826, 28.912399494204646 ], [ -82.013143095364967, 28.912415520655767 ], [ -82.013314653089537, 28.91244011378657 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Saluda Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014028649956217, 28.912548213528478 ], [ -82.014158000317934, 28.912573005593575 ], [ -82.014289010608721, 28.912594879335927 ], [ -82.014411100816474, 28.912613090540962 ], [ -82.014536008699224, 28.912620816649287 ], [ -82.014650362122765, 28.91262699720815 ], [ -82.014753659263604, 28.912629045411201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Saluda Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013314653089537, 28.91244011378657 ], [ -82.013399828580205, 28.912449042954023 ], [ -82.013688688510641, 28.912492800906193 ], [ -82.013879398323894, 28.91252488232178 ], [ -82.014028649956217, 28.912548213528478 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reed Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014028649956217, 28.912548213528478 ], [ -82.014024427407563, 28.911332741856722 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Antonio Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963920722097569, 28.938759538680628 ], [ -81.963873386932747, 28.93881310141759 ], [ -81.963833525482812, 28.938886595117253 ], [ -81.96379972336058, 28.938988457654148 ], [ -81.963795170401269, 28.939066577012962 ], [ -81.963970973823095, 28.940451672181666 ], [ -81.963987774320643, 28.940617572384539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Antonio Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963987774320643, 28.940617572384539 ], [ -81.964000340637568, 28.94083907888762 ], [ -81.964019260237194, 28.941933222988208 ], [ -81.964031236525202, 28.942223713217757 ], [ -81.964043420675324, 28.942315092631919 ], [ -81.964067788809871, 28.942389415654599 ], [ -81.964106776951468, 28.942485669219465 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Bernadino Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959964106083703, 28.943301842861469 ], [ -81.959878020778561, 28.943463884290626 ], [ -81.959824633614673, 28.943617111944771 ], [ -81.959793050166581, 28.943969054502826 ], [ -81.959758179098827, 28.944383556530095 ], [ -81.9597621425699, 28.944486892820702 ], [ -81.959768482314658, 28.944551994257793 ], [ -81.959803605491302, 28.944768779771493 ], [ -81.959892803774963, 28.945200350628326 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Juan Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957572135400696, 28.945418927386946 ], [ -81.957830759988269, 28.945951910342611 ], [ -81.957926011311471, 28.946162376598711 ], [ -81.958009693684332, 28.946373279475431 ], [ -81.958055385958872, 28.94651150878061 ], [ -81.958085173257572, 28.946633988087019 ], [ -81.958097061244416, 28.946745960907162 ], [ -81.958104972855935, 28.946856186545091 ], [ -81.958102918587031, 28.947017144977803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Juan Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957063100027611, 28.942665834194809 ], [ -81.957098818552751, 28.94280970274168 ], [ -81.957109938324308, 28.94291785605845 ], [ -81.957114696789162, 28.943974939919748 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Clemente Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959118343819867, 28.946429965064009 ], [ -81.959187829465236, 28.94647703629834 ], [ -81.959261581020002, 28.94651243312649 ], [ -81.959357646301413, 28.946531961747262 ], [ -81.959414405569802, 28.946537855584314 ], [ -81.959472090451385, 28.946537701609667 ], [ -81.959603164811597, 28.946518118132396 ], [ -81.959811697900065, 28.946489799229006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sayle Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975875948855403, 28.903804582806806 ], [ -81.97603089171507, 28.90377381430579 ], [ -81.976268209777302, 28.903716646378239 ], [ -81.976620426699242, 28.903622170073419 ], [ -81.976991401273622, 28.90350156911709 ], [ -81.977421178479744, 28.903333446695211 ], [ -81.977790505007675, 28.903167001972772 ], [ -81.978004930328126, 28.903055080205519 ], [ -81.978098793821033, 28.902991647778887 ], [ -81.978156031246655, 28.902933245035729 ], [ -81.978186941216009, 28.902886923362914 ], [ -81.978299335527083, 28.902700990531244 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sayle Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975217286235065, 28.903803851572381 ], [ -81.975404834788151, 28.903825062220779 ], [ -81.975516994207638, 28.90384119513509 ], [ -81.97560511983518, 28.903842219099083 ], [ -81.97567608123714, 28.903839211123209 ], [ -81.975767642983925, 28.903827142351865 ], [ -81.975875948855403, 28.903804582806806 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Scotch Pine Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993994128356405, 28.871290273929187 ], [ -81.994059756041636, 28.87120569503303 ], [ -81.99411835288933, 28.871133490874488 ], [ -81.994242053262639, 28.870941393343685 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shelburne Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992933690492265, 28.885067423162511 ], [ -81.993099533926795, 28.885089198163147 ], [ -81.993244582696249, 28.885100170447647 ], [ -81.993402261509814, 28.885105414500259 ], [ -81.993726229762331, 28.885103089787744 ], [ -81.99401215834979, 28.885084882969196 ], [ -81.9942303859996, 28.885062116863686 ], [ -81.994431880517169, 28.88508416699073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Smithfield Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014556456422028, 28.918336620498319 ], [ -82.014736382541585, 28.918347669243186 ], [ -82.014869432161731, 28.918350008358342 ], [ -82.014928501555971, 28.918352967013988 ], [ -82.014982644461909, 28.918357335558564 ], [ -82.015030678036879, 28.918352956071708 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Smithfield Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015030678036879, 28.918352956071708 ], [ -82.01507862214676, 28.91833958068176 ], [ -82.01512008060925, 28.918339836066416 ], [ -82.01521921898896, 28.918336706070793 ], [ -82.015313776334366, 28.918333944641159 ], [ -82.015405402389305, 28.918329122623295 ], [ -82.015505818276424, 28.918323954890482 ], [ -82.015584127223178, 28.918322929287395 ], [ -82.015652244993717, 28.91831917533472 ], [ -82.01570599536123, 28.918311122619642 ], [ -82.015754416483702, 28.918285453146481 ], [ -82.015792982465385, 28.918261832984079 ], [ -82.015820003379545, 28.918234336951631 ], [ -82.015841680195663, 28.918206782871 ], [ -82.015851363775198, 28.918182142762294 ], [ -82.015856572658421, 28.918148722012031 ], [ -82.015873590872005, 28.918075679178571 ], [ -82.015888480797926, 28.918000762514698 ], [ -82.015907623698325, 28.917912734995667 ], [ -82.015926949177441, 28.917804462625249 ], [ -82.015952720442897, 28.917698576990361 ], [ -82.015972635461893, 28.917610568318313 ], [ -82.015989814383872, 28.917529778328099 ], [ -82.015999094167171, 28.91748009320742 ], [ -82.016005472680206, 28.917437016838495 ], [ -82.016016720442778, 28.917380502909801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sterling Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011294914118096, 28.95172219240056 ], [ -82.011792821609205, 28.951627628293593 ], [ -82.012049199339344, 28.951576963572535 ], [ -82.012265866284579, 28.9515324184813 ], [ -82.012401535086056, 28.95150747260389 ], [ -82.012529373008618, 28.951487991571078 ], [ -82.01267287617803, 28.951454016384893 ], [ -82.01281462157398, 28.95142550729188 ], [ -82.012928016980297, 28.951404125170605 ], [ -82.012998889751657, 28.951395212077337 ], [ -82.013081911813202, 28.95138629961518 ], [ -82.013164935976604, 28.951386291821862 ], [ -82.013274285118271, 28.951396967323994 ], [ -82.013391734946467, 28.951411204209887 ], [ -82.013513234693633, 28.951423660379145 ], [ -82.013628659076701, 28.951434334102839 ], [ -82.013738007062599, 28.951443229908151 ], [ -82.013833180809286, 28.951445001630443 ], [ -82.013926331324114, 28.951444993265245 ], [ -82.014015429442651, 28.951443201411564 ], [ -82.014116677101228, 28.951443192100616 ], [ -82.014228050908869, 28.951434274253373 ], [ -82.014333346691899, 28.951427139868358 ], [ -82.014414345900292, 28.951420007916905 ], [ -82.014509517647042, 28.951414654663296 ], [ -82.014594565376882, 28.951411083528225 ], [ -82.014685688022112, 28.951405731476612 ], [ -82.014872561060471, 28.95138839394523 ], [ -82.015072100078129, 28.951383547015684 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tynte Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003792217929671, 28.922215247250914 ], [ -82.003922221957481, 28.922484870878392 ], [ -82.003965511352533, 28.92256582559353 ], [ -82.004022801909386, 28.92264282426741 ], [ -82.004068951452183, 28.922684824949251 ], [ -82.004107143145276, 28.922715624722642 ], [ -82.004166025103359, 28.922750623216476 ], [ -82.004226495522801, 28.922780022894155 ], [ -82.004282193523991, 28.922798222476533 ], [ -82.004347101072128, 28.922811002586489 ], [ -82.004557127922382, 28.922832653406708 ], [ -82.00484453113593, 28.92285753889082 ], [ -82.00494000289639, 28.922862868380378 ], [ -82.004990768059713, 28.92285886503247 ], [ -82.005028652892207, 28.922854198907032 ], [ -82.005061991222519, 28.92284753163089 ], [ -82.005108968535183, 28.922835531315943 ], [ -82.005165038349332, 28.922816863608077 ], [ -82.005374563783818, 28.922729069177063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Weaton Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007385004807972, 28.942206978693889 ], [ -82.007328531626243, 28.94237293767647 ], [ -82.007315854359121, 28.942423648106157 ], [ -82.007298565759541, 28.942467442688578 ], [ -82.00726975323218, 28.942521609709615 ], [ -82.007228085486872, 28.942589126796051 ], [ -82.007156245520051, 28.942689207323333 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yucatan Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962050241841922, 28.934687330826208 ], [ -81.962086181159236, 28.934550948391106 ], [ -81.962135943415731, 28.93442101584095 ], [ -81.962177412292917, 28.934328865406375 ], [ -81.962493724570152, 28.933813485280748 ], [ -81.962551734708384, 28.933736992354632 ], [ -81.963100328307505, 28.933211148403487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963191570776218, 28.865269540168722 ], [ -81.963187456051941, 28.864401734070057 ], [ -81.963186225516637, 28.86420119673096 ], [ -81.963185638939109, 28.864017275486159 ], [ -81.963177885368182, 28.863856842847788 ], [ -81.963167505297349, 28.863761155195913 ], [ -81.963146070905808, 28.863635669534332 ], [ -81.963094722925717, 28.863435117504764 ], [ -81.963029703684455, 28.863243157033061 ], [ -81.962935416013892, 28.862990454374483 ], [ -81.962856730032101, 28.862795623414723 ], [ -81.962736561174196, 28.862505484969496 ], [ -81.962590236612542, 28.862168828959678 ], [ -81.96239622053136, 28.861727018449947 ], [ -81.962311103490549, 28.861538387774441 ], [ -81.962195341188576, 28.861286824435386 ], [ -81.962032311240677, 28.860957515033252 ], [ -81.961812903241167, 28.860551029759154 ], [ -81.96175587958831, 28.860457047572783 ], [ -81.961737456192509, 28.860411205270871 ], [ -81.961725536523048, 28.86037300372729 ], [ -81.961721214698017, 28.860330031158647 ], [ -81.9617244795608, 28.860301383027121 ], [ -81.961738687262368, 28.860249871818851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961427664119782, 28.860364133679585 ], [ -81.961482976618186, 28.860392224748995 ], [ -81.961536334908885, 28.860422034125534 ], [ -81.961585787582152, 28.860458717922072 ], [ -81.961637834434029, 28.860517748005194 ], [ -81.961680982515915, 28.860587854020238 ], [ -81.961863536205925, 28.860918314432819 ], [ -81.962050844208349, 28.861301108663032 ], [ -81.962131486676199, 28.861475312209471 ], [ -81.962217333397291, 28.861660403466228 ], [ -81.96231488455912, 28.861879876634632 ], [ -81.962405928688739, 28.862095909223722 ], [ -81.962505425190102, 28.862334862626017 ], [ -81.962601010093124, 28.86259272353902 ], [ -81.962680339307823, 28.862807033769009 ], [ -81.962751211595901, 28.863009883243183 ], [ -81.96282533257731, 28.863229349499264 ], [ -81.962892943251532, 28.863453970575236 ], [ -81.962935837015934, 28.86363332071954 ], [ -81.962956615976665, 28.863770836649948 ], [ -81.962970865313252, 28.863966793891212 ], [ -81.962974600307589, 28.864443500930609 ], [ -81.962973796851259, 28.864661139064665 ], [ -81.962976955786942, 28.865137935224148 ], [ -81.962968379559797, 28.86526671233548 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alwick Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964535095288525, 28.861680999089572 ], [ -81.964576030710901, 28.861691380979369 ], [ -81.964616665095875, 28.861700883030917 ], [ -81.964731934531812, 28.861714480403919 ], [ -81.964890064690749, 28.861710365837169 ], [ -81.965080085478164, 28.861696420659833 ], [ -81.965277132534268, 28.861679301824051 ], [ -81.965454997686692, 28.861656791912509 ], [ -81.965640719398323, 28.861633920148748 ], [ -81.965764340085926, 28.861620798845351 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alwick Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964061395087029, 28.86130500843251 ], [ -81.964078739991066, 28.861337099910891 ], [ -81.964127315810089, 28.861399755360981 ], [ -81.964193246093217, 28.861473113139724 ], [ -81.964255710643386, 28.861529661842205 ], [ -81.96433899880526, 28.861592328255561 ], [ -81.964430971891446, 28.861639718202991 ], [ -81.964535095288525, 28.861680999089572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bradford Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965764340085926, 28.861620798845351 ], [ -81.965815205682262, 28.861777088169152 ], [ -81.965879273115235, 28.861930777679323 ], [ -81.965955163159038, 28.86206830808468 ], [ -81.96603105197849, 28.862203928266794 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edgeworth Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966863817331131, 28.860926427787579 ], [ -81.966823568127992, 28.860604410733355 ], [ -81.966828534027826, 28.860563155903638 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edgeworth Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966828534027826, 28.860563155903638 ], [ -81.966827317130623, 28.860522353404701 ], [ -81.966827352051922, 28.860410160901498 ], [ -81.966832126632426, 28.860239796205672 ], [ -81.966841621185736, 28.860069431769073 ], [ -81.966859631681317, 28.859993467607065 ], [ -81.966877139297466, 28.859929048301613 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Braddy Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96916760403613, 28.862658483971494 ], [ -81.968845905689847, 28.862748164545895 ], [ -81.968674061190598, 28.862787849371347 ], [ -81.968484867545243, 28.862813779693912 ], [ -81.968264433671507, 28.862830534958075 ], [ -81.968070035914721, 28.862836600148231 ], [ -81.967965897597495, 28.862831992527745 ], [ -81.967908628326555, 28.862807531821481 ], [ -81.967861774872617, 28.862773906177392 ], [ -81.967827078006621, 28.862723477118202 ], [ -81.967792398693845, 28.862613459899347 ], [ -81.96774038323106, 28.86243926664325 ], [ -81.967688293166503, 28.862291177902506 ], [ -81.967664179941394, 28.862233038450896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Braddy Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967664179941394, 28.862233038450896 ], [ -81.96760573810306, 28.862131180398102 ], [ -81.967501948037238, 28.861956634362368 ], [ -81.967426476748145, 28.861788329137468 ], [ -81.967369899118353, 28.861584707766589 ], [ -81.967329584662693, 28.861437734272645 ], [ -81.967319538575822, 28.861373502209059 ], [ -81.967313827666473, 28.861291411893831 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Asher Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96916760403613, 28.862658483971494 ], [ -81.969149689853836, 28.862604611403317 ], [ -81.96912810149918, 28.862511571677235 ], [ -81.969109069145091, 28.862357996958217 ], [ -81.969087894035781, 28.862137763125499 ], [ -81.969078232145435, 28.862042856558197 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duke Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968365312888736, 28.862139947024904 ], [ -81.968337339127061, 28.861931348481278 ], [ -81.968304337831242, 28.861806683772219 ], [ -81.96824114877262, 28.861648454319784 ], [ -81.968217878990089, 28.861590187936248 ], [ -81.968199683223418, 28.861487535703542 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Asher Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969078232145435, 28.862042856558197 ], [ -81.969069067977216, 28.861952848712473 ], [ -81.96905025379462, 28.861728463001448 ], [ -81.969047716425905, 28.861648012079097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Asher Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969047716425905, 28.861648012079097 ], [ -81.969043240741726, 28.861506153498471 ], [ -81.969073983093381, 28.861300475844637 ], [ -81.969151944235151, 28.861042867900242 ], [ -81.969175395764722, 28.860974115002357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Asher Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969175395764722, 28.860974115002357 ], [ -81.969229895315507, 28.860814346577556 ], [ -81.96930312111121, 28.860602444565369 ], [ -81.969356467791542, 28.860367950584674 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Asher Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971256639919588, 28.863110815353654 ], [ -81.971187217340869, 28.863104689153474 ], [ -81.971037953940012, 28.863089378293228 ], [ -81.970867857850791, 28.863090869057867 ], [ -81.970591885135562, 28.863096919239112 ], [ -81.970422820944989, 28.863106477168017 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Asher Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970422820944989, 28.863106477168017 ], [ -81.970319600264048, 28.863110371270626 ], [ -81.97004582153393, 28.863114464624633 ], [ -81.969819249122637, 28.863108181630345 ], [ -81.969706644033465, 28.863089317047123 ], [ -81.969608398835945, 28.863061336037703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Asher Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969608398835945, 28.863061336037703 ], [ -81.969590330629885, 28.863056189713351 ], [ -81.969506751768222, 28.863022755721442 ], [ -81.969410986844537, 28.862964733824224 ], [ -81.969329778642873, 28.862901175040715 ], [ -81.969252901695299, 28.862815108325744 ], [ -81.969191765053239, 28.862714155360948 ], [ -81.96916760403613, 28.862658483971494 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962356199240517, 28.859718874216988 ], [ -81.962327898131122, 28.859723751357208 ], [ -81.962241367488133, 28.859737424939784 ], [ -81.962180825772847, 28.859754236783466 ], [ -81.962085233996689, 28.859780153788133 ], [ -81.962022133068288, 28.859799270225476 ], [ -81.961952701736266, 28.85982446095727 ], [ -81.961894549120032, 28.859849654853562 ], [ -81.961849230736973, 28.859867561752075 ], [ -81.96180081122121, 28.859887063027333 ], [ -81.961755679197225, 28.859905385007231 ], [ -81.961709681933087, 28.859913010810189 ], [ -81.961674102193427, 28.859913000662299 ], [ -81.961616348711573, 28.859906280049216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96177572424061, 28.86015360469565 ], [ -81.961795518541251, 28.860120064459561 ], [ -81.961821567704746, 28.860079583669442 ], [ -81.961845008927895, 28.860051322942329 ], [ -81.961884944344575, 28.860010846083593 ], [ -81.961930081720396, 28.859978008693169 ], [ -81.961993443577597, 28.859943648844652 ], [ -81.962046387889231, 28.859925328993128 ], [ -81.962113217616078, 28.859900901731383 ], [ -81.962191327278163, 28.859878769465247 ], [ -81.962260761211681, 28.859860453268002 ], [ -81.962357963446578, 28.859836797765208 ], [ -81.962378813111997, 28.859831797622931 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975820158369046, 28.857726378611126 ], [ -81.975822390735573, 28.857726247277398 ], [ -81.975947474989653, 28.857718929537114 ], [ -81.976145440116071, 28.857711802428312 ], [ -81.976335272258709, 28.857704675397368 ], [ -81.976524559213374, 28.857697067075247 ], [ -81.976651473517308, 28.857696135515155 ], [ -81.976740422750652, 28.857695195445523 ], [ -81.97684564301872, 28.857694259032492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bonifay Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977563017459687, 28.860311273565507 ], [ -81.977499496454044, 28.860298875173189 ], [ -81.97743311224022, 28.860283966960147 ], [ -81.977356316089967, 28.86026103637122 ], [ -81.977276918301428, 28.860225498300668 ], [ -81.977189713855992, 28.860183084197111 ], [ -81.977109015482228, 28.860138379295762 ], [ -81.977033526589267, 28.860091383385985 ], [ -81.97697495950888, 28.860046683098641 ], [ -81.976925503946546, 28.860004274403853 ], [ -81.976882125556799, 28.859956902260734 ], [ -81.976842217418479, 28.859901890891905 ], [ -81.976793640202175, 28.859810208358162 ], [ -81.976760683567548, 28.859718528516222 ], [ -81.976746821428677, 28.859625323476838 ], [ -81.976752053773183, 28.859512258419301 ], [ -81.976772919302135, 28.859342664891006 ], [ -81.97677468109022, 28.859225017323858 ], [ -81.97676602823708, 28.859111949851187 ], [ -81.976748699470662, 28.858992771366768 ], [ -81.97671922020362, 28.858872061361026 ], [ -81.976701889790476, 28.858765106385903 ], [ -81.97669671376552, 28.858629120969642 ], [ -81.976705411083813, 28.858540504442551 ], [ -81.976731469799887, 28.858430499994963 ], [ -81.976762735913525, 28.858317439435726 ], [ -81.976808442375443, 28.858191324117392 ], [ -81.976844371040514, 28.858036318905885 ], [ -81.976858286932824, 28.85790339378757 ], [ -81.976854836032544, 28.857807135328514 ], [ -81.97684564301872, 28.857694259032492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Asher Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969356467791542, 28.860367950584674 ], [ -81.969357474599875, 28.860363530425865 ], [ -81.969379856198543, 28.860130603873429 ], [ -81.969390758395136, 28.859941528487099 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966396332845974, 28.859375153029113 ], [ -81.966669738956313, 28.85943521180225 ], [ -81.966970802611371, 28.859499796471834 ], [ -81.967230450672474, 28.859555254382915 ], [ -81.967493285187075, 28.859612115648915 ], [ -81.967724259412051, 28.859664060208637 ], [ -81.967901873750066, 28.859700565825968 ], [ -81.9680699289367, 28.859738470214019 ], [ -81.968197364941489, 28.859765847513408 ], [ -81.968392499513598, 28.859808665546968 ], [ -81.968660911973657, 28.859862721487648 ], [ -81.968900459759197, 28.859895577785064 ], [ -81.969095711034285, 28.85991663214903 ], [ -81.969288793662614, 28.859933866279619 ], [ -81.969390758395136, 28.859941528487099 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bradford Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966456525187752, 28.86147828051616 ], [ -81.966421876056131, 28.861277735661194 ], [ -81.966398069440459, 28.861102020405383 ], [ -81.966374262120269, 28.860912937504029 ], [ -81.966356962408469, 28.860742952590911 ], [ -81.966341833274186, 28.860561510756309 ], [ -81.966344076176824, 28.860339963139999 ], [ -81.96635282080679, 28.860139429106475 ], [ -81.966359193572757, 28.859885416698866 ], [ -81.966370344940643, 28.859618036034725 ], [ -81.966375596201672, 28.859484345617055 ], [ -81.966396332845974, 28.859375153029113 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971779377303335, 28.859693848140395 ], [ -81.97189186776842, 28.859658604292171 ], [ -81.972084537983889, 28.859597528747987 ], [ -81.972265058858525, 28.85953339431072 ], [ -81.972445580735197, 28.859464675924723 ], [ -81.972591387899399, 28.859403589114994 ], [ -81.972777120582109, 28.859318065025594 ], [ -81.972917724146839, 28.859243224782556 ], [ -81.973051383622874, 28.859171441808769 ], [ -81.973193727442336, 28.859079795302332 ], [ -81.973334336545278, 28.858985092193898 ], [ -81.973435022628252, 28.858908717666008 ], [ -81.97353423433313, 28.85882567834971 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Islawild Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97353423433313, 28.85882567834971 ], [ -81.973277584922926, 28.858583573425843 ], [ -81.973213817544035, 28.858519387900063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Islawild Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973213817544035, 28.858519387900063 ], [ -81.973139646206562, 28.858426553894319 ], [ -81.973055067326968, 28.858307359634029 ], [ -81.972969190299864, 28.858167539275968 ], [ -81.972898934893749, 28.858031159799062 ], [ -81.972872916428742, 28.85797299920026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969390758395136, 28.859941528487099 ], [ -81.969577334810651, 28.859951120909251 ], [ -81.969755239455921, 28.859959136597709 ], [ -81.969940950700462, 28.859962233535033 ], [ -81.970085008387159, 28.859957682929089 ], [ -81.970270721689261, 28.85995008530152 ], [ -81.970400895838637, 28.859939417266528 ], [ -81.970529334688379, 28.859928751431539 ], [ -81.9706407552179, 28.85991706395146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9706407552179, 28.85991706395146 ], [ -81.970938953979271, 28.859875363018272 ], [ -81.971128147094817, 28.859844846432303 ], [ -81.971296510527182, 28.859811269020046 ], [ -81.971470081530555, 28.859774636400125 ], [ -81.971648861761366, 28.859728836342754 ], [ -81.971779377303335, 28.859693848140395 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenwick Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970583189972146, 28.859488119293946 ], [ -81.970496938693259, 28.858854117779856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenwick Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9706407552179, 28.85991706395146 ], [ -81.970583189972146, 28.859488119293946 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baffie Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969679461810244, 28.858884493877461 ], [ -81.969690405777342, 28.858554086873383 ], [ -81.969705096505521, 28.858326504620592 ], [ -81.969740867358709, 28.858130386865977 ], [ -81.969788541266837, 28.85794325421913 ], [ -81.969836214701104, 28.857750132954038 ], [ -81.969883888983517, 28.85755701437354 ], [ -81.969909437755433, 28.857416287644185 ], [ -81.969915823739726, 28.857227547685053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Islawild Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972872916428742, 28.85797299920026 ], [ -81.972845599245133, 28.857903664192296 ], [ -81.97283259399623, 28.857859543372506 ], [ -81.972810485233182, 28.857787918459774 ], [ -81.972787077749629, 28.857697384582458 ], [ -81.972782530919332, 28.857663005851617 ], [ -81.972772814220207, 28.857488822982081 ], [ -81.97276506575119, 28.857259063047358 ], [ -81.972754715695501, 28.857014977585475 ], [ -81.972744361117549, 28.85679209356887 ], [ -81.972734662107243, 28.856551445099988 ], [ -81.972723659205144, 28.856319392615077 ], [ -81.972713307183255, 28.856087338449111 ], [ -81.972703596194094, 28.855892528844905 ], [ -81.97269973568531, 28.855724268041282 ], [ -81.972695718443376, 28.855691451295204 ], [ -81.972686032964972, 28.855652361472927 ], [ -81.972668305874876, 28.855617306923566 ], [ -81.972640112081962, 28.855586743715655 ], [ -81.972594365027447, 28.855549925747436 ], [ -81.972549011583297, 28.85552465283606 ], [ -81.972499251859333, 28.855511478013256 ], [ -81.972425364221067, 28.855495026456126 ], [ -81.972330996750898, 28.855485456124551 ], [ -81.97218130637502, 28.855485426065016 ], [ -81.971936593012003, 28.855485709846025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Islawild Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971936593012003, 28.855485709846025 ], [ -81.971858060753505, 28.855483448458756 ], [ -81.97168580761857, 28.855483603500232 ], [ -81.971492294506021, 28.855483562516884 ], [ -81.971416799548876, 28.855479726093623 ], [ -81.971368206271606, 28.855470548313036 ], [ -81.971329161665253, 28.855456025496729 ], [ -81.971294456638645, 28.855437683238478 ], [ -81.971271030959471, 28.855415523027883 ], [ -81.971249344624482, 28.855389544631272 ], [ -81.97123286449127, 28.855365093145245 ], [ -81.971222457253162, 28.855339881414547 ], [ -81.971213788794287, 28.855305501735085 ], [ -81.971204293690661, 28.855125970779515 ], [ -81.971201758881548, 28.854883796078798 ], [ -81.971196604055706, 28.854694335273532 ], [ -81.971213110417168, 28.854627875024885 ], [ -81.97123481486814, 28.854588153894596 ], [ -81.971259120853489, 28.854558365892284 ], [ -81.971288632551094, 28.85453163240004 ], [ -81.971329424635073, 28.854507960126575 ], [ -81.971373685584979, 28.85448963383627 ], [ -81.97141967789905, 28.854485059932188 ], [ -81.971561990947166, 28.854483560767537 ], [ -81.971699966337752, 28.854482828399384 ], [ -81.971763308940098, 28.854495064371836 ], [ -81.971809296012864, 28.854513407980875 ], [ -81.971844002249199, 28.854534041964165 ], [ -81.97187436508159, 28.854561551494957 ], [ -81.971894316216364, 28.854587529430699 ], [ -81.971910794084636, 28.854624202560554 ], [ -81.97192032709718, 28.854668514954014 ], [ -81.971925469544118, 28.854904577079378 ], [ -81.971929766707206, 28.855064243560719 ], [ -81.971936668261961, 28.855208632754803 ], [ -81.971936593012003, 28.855485709846025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97381674457236, 28.858575313627487 ], [ -81.973906668374838, 28.85849293451005 ], [ -81.974080263052187, 28.858349725526136 ], [ -81.974278262490202, 28.85821845939229 ], [ -81.974403025743314, 28.858144475344996 ], [ -81.974495243369489, 28.858091971573529 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974495243369489, 28.858091971573529 ], [ -81.974682381575732, 28.858006062530649 ], [ -81.97481798871901, 28.857951178324587 ], [ -81.974978000338382, 28.857893911943631 ], [ -81.97512716347417, 28.857846193352113 ], [ -81.975250506733062, 28.85781668375213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Killington Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974495243369489, 28.858091971573529 ], [ -81.974335022145539, 28.857782284476503 ], [ -81.974313100304158, 28.857713302694744 ], [ -81.974308288619739, 28.857645655990492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Killington Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974308288619739, 28.857645655990492 ], [ -81.974206241071244, 28.857681567973039 ], [ -81.97376212757338, 28.857914750110687 ], [ -81.973651472669673, 28.857988381734863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mayflower Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969442621790321, 28.85602106466386 ], [ -81.969485554666505, 28.856095560602459 ], [ -81.969601340372009, 28.856307582503739 ], [ -81.969683303675538, 28.856453135596499 ], [ -81.969724938921004, 28.856515025060705 ], [ -81.969754869602255, 28.856544825915051 ], [ -81.969801721641204, 28.85657233781528 ], [ -81.969845999005898, 28.85658598791424 ], [ -81.969891529432857, 28.856594130611295 ], [ -81.969977439598907, 28.856594149860609 ], [ -81.970168786688092, 28.856595339367189 ], [ -81.970314572613688, 28.856595371700372 ], [ -81.970390069755595, 28.856594242455486 ], [ -81.970433058206382, 28.856588675691846 ], [ -81.970477290512392, 28.856570196304087 ], [ -81.9705176473866, 28.856544994781704 ], [ -81.970548895592344, 28.856516354368964 ], [ -81.970578844395945, 28.856479691271748 ], [ -81.970595781115435, 28.856430419215851 ], [ -81.970595813005573, 28.856314679679247 ], [ -81.970588048647414, 28.856154248174345 ], [ -81.970581569998288, 28.856049968282232 ], [ -81.970575091082964, 28.855950270292382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mayflower Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970575091082964, 28.855950270292382 ], [ -81.97057510636327, 28.855892974837154 ], [ -81.970568627743461, 28.855788693135811 ], [ -81.970554336624346, 28.855697014918061 ], [ -81.970528332532339, 28.85559502168217 ], [ -81.970507531473245, 28.855502197001808 ], [ -81.970488036117544, 28.85540249704038 ], [ -81.970479878597629, 28.855316836728115 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mayflower Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96908746286131, 28.85536551113621 ], [ -81.969126488541761, 28.855449173714231 ], [ -81.969238369538147, 28.855655467216327 ], [ -81.969368466412078, 28.855888120202422 ], [ -81.969442621790321, 28.85602106466386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mayflower Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969028281582794, 28.85449268250839 ], [ -81.969032145010189, 28.85463477749957 ], [ -81.969034703714286, 28.854787187337802 ], [ -81.96903333519991, 28.855003767296683 ], [ -81.969035885341583, 28.855184823503283 ], [ -81.969046279703392, 28.855244415024224 ], [ -81.969059970103032, 28.855304437703214 ], [ -81.96908746286131, 28.85536551113621 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mayflower Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970479878597629, 28.855316836728115 ], [ -81.97048026704033, 28.855255815732345 ], [ -81.970478999127764, 28.855141222719389 ], [ -81.970476877309764, 28.854969713920589 ], [ -81.970475829958545, 28.85484366257959 ], [ -81.970472626285613, 28.854666997763999 ], [ -81.970476998361448, 28.854545721705993 ], [ -81.970484605867782, 28.854497020560469 ], [ -81.970504149309761, 28.854431134028729 ], [ -81.970534539334651, 28.85436906933333 ], [ -81.97057252031793, 28.854308916475411 ], [ -81.970621350298089, 28.854243990983388 ], [ -81.970677774937684, 28.854171428217679 ], [ -81.97074179382696, 28.854099820820249 ], [ -81.970789533637287, 28.854051129301677 ], [ -81.970840526956778, 28.854004349555236 ], [ -81.970892605023707, 28.853963296955339 ], [ -81.970950103702791, 28.853929887131255 ], [ -81.971015194878746, 28.853896478020541 ], [ -81.97105750285094, 28.853879298240155 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mayberry Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97105750285094, 28.853879298240155 ], [ -81.971023092956926, 28.853808284809411 ], [ -81.971005476218423, 28.853744640516474 ], [ -81.970983831609132, 28.85356415133694 ], [ -81.970969631955256, 28.853456767627872 ], [ -81.970951068584299, 28.853348322762294 ], [ -81.970913413803601, 28.853252826347145 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mayberry Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970913413803601, 28.853252826347145 ], [ -81.970867686476012, 28.853140848464275 ], [ -81.97082011042167, 28.853003101225418 ], [ -81.970789857369084, 28.852905199932273 ], [ -81.970782277050063, 28.852862226894064 ], [ -81.970781204904, 28.852815433107217 ], [ -81.970785559761353, 28.852757183028789 ], [ -81.970794258079323, 28.852684608895725 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mayflower Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97144692135015, 28.852684999312846 ], [ -81.97135071838612, 28.852717806477301 ], [ -81.971279099264407, 28.852733415484323 ], [ -81.971206424915593, 28.852740085087948 ], [ -81.971134835209, 28.852741978983673 ], [ -81.971069756278609, 28.852734326050406 ], [ -81.971002508497563, 28.852719987436863 ], [ -81.970942853401723, 28.852708515253664 ], [ -81.970794258079323, 28.852684608895725 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mayflower Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97144692135015, 28.852684999312846 ], [ -81.971438569473975, 28.852658964221575 ], [ -81.971383138408811, 28.85248670863481 ], [ -81.971355520159065, 28.85238447966384 ], [ -81.971350335604669, 28.85230541043871 ], [ -81.971361521871273, 28.852192375616443 ], [ -81.971378155177376, 28.852120921089181 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enisgrove Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972058071486344, 28.852164772994925 ], [ -81.972143190906138, 28.852164789794777 ], [ -81.972281908037772, 28.852153715660357 ], [ -81.972449000409242, 28.852138483976869 ], [ -81.972620821743789, 28.852114927479509 ], [ -81.97276742376792, 28.852094142039135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kindle Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973623071224836, 28.853198967590302 ], [ -81.973434689779722, 28.85298832603489 ], [ -81.973322083139962, 28.852860295431988 ], [ -81.973207045988616, 28.852731212159323 ], [ -81.973084128745285, 28.852597962163568 ], [ -81.972999033706529, 28.852499413314213 ], [ -81.972899758050787, 28.852378659419205 ], [ -81.972865091728266, 28.852332855900606 ], [ -81.972825700954488, 28.85227039936963 ], [ -81.972803645062953, 28.85222043515159 ], [ -81.97278474600671, 28.852162146900412 ], [ -81.97276742376792, 28.852094142039135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beeber Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973748198516262, 28.853932814430909 ], [ -81.973845827804638, 28.853854291450432 ], [ -81.973910103919479, 28.853809959280287 ], [ -81.974012149809028, 28.853766062999441 ], [ -81.974118727852684, 28.853738138318146 ], [ -81.974229835520561, 28.853724183912462 ], [ -81.974322828681579, 28.853715349236438 ], [ -81.97441577407487, 28.85368828972636 ], [ -81.974520083162673, 28.853646388488816 ], [ -81.974615327844788, 28.853600495460686 ], [ -81.974705757104871, 28.853560116346134 ], [ -81.974766874153289, 28.853544142623086 ], [ -81.974881090185036, 28.853521300558555 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mayflower Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970794258079323, 28.852684608895725 ], [ -81.970735687042364, 28.85267791095432 ], [ -81.970654336028119, 28.852676939450991 ], [ -81.970578407146263, 28.852681696921763 ], [ -81.970512239595394, 28.852689322216929 ], [ -81.970441729680346, 28.852703630801006 ], [ -81.970376643439323, 28.852721760906363 ], [ -81.970298111544651, 28.852746974710833 ], [ -81.970203077168676, 28.852784748505425 ], [ -81.970130389714015, 28.852825794456162 ], [ -81.970053361508263, 28.85287829867617 ], [ -81.969987179941228, 28.852933670999548 ], [ -81.969917739330256, 28.853002412016796 ], [ -81.969826599148433, 28.853093109328427 ], [ -81.969725693532922, 28.85319431081691 ], [ -81.969630212452714, 28.853288828276344 ], [ -81.969536071840082, 28.853393569991542 ], [ -81.969440805359042, 28.853513319425478 ], [ -81.969325120494844, 28.85366749879757 ], [ -81.969229807882002, 28.853806314677207 ], [ -81.9691743827116, 28.853896204938223 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mayflower Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9691743827116, 28.853896204938223 ], [ -81.969133217627174, 28.853977227893651 ], [ -81.969103911011274, 28.85404693324562 ], [ -81.969081113807135, 28.854108997565788 ], [ -81.969066994744779, 28.854163426771365 ], [ -81.969050705859658, 28.854228359208467 ], [ -81.969034405188467, 28.854325758382434 ], [ -81.969027868971096, 28.854419342153822 ], [ -81.969028281582794, 28.85449268250839 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ivory Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970190854890348, 28.851445313121616 ], [ -81.97025814060747, 28.851317365791214 ], [ -81.970316741822515, 28.851216155426016 ], [ -81.970339197486112, 28.851182392509056 ], [ -81.97037836776795, 28.851160018569828 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ivory Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97037836776795, 28.851160018569828 ], [ -81.970374470840852, 28.851132514534612 ], [ -81.970378384834191, 28.851100430316006 ], [ -81.970395317783442, 28.85105803381278 ], [ -81.970452615375734, 28.850962934412397 ], [ -81.970533351098013, 28.850834608220513 ], [ -81.970611576518436, 28.850710506925065 ], [ -81.970671383874077, 28.850614619361039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fieldstone Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972213350130332, 28.849564772908259 ], [ -81.972200158572534, 28.84962753456368 ], [ -81.972173013551355, 28.849735438386805 ], [ -81.972137195273916, 28.849827105214857 ], [ -81.972084015568683, 28.849945506445763 ], [ -81.9720492775905, 28.850047678115153 ], [ -81.972005488418446, 28.850284007204117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nestlebranch Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965002324927113, 28.851205966772692 ], [ -81.965092214605718, 28.8509710740271 ], [ -81.965162549503475, 28.850826706261945 ], [ -81.965225065020377, 28.85071098373146 ], [ -81.965269342329449, 28.85064223770091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nestlebranch Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965269342329449, 28.85064223770091 ], [ -81.965359194917852, 28.850515063793111 ], [ -81.965467276209438, 28.850374142471683 ], [ -81.96555712311374, 28.850259571829959 ], [ -81.965663896705806, 28.850132400245403 ], [ -81.965760255668883, 28.850004080892862 ], [ -81.965865727168151, 28.849876909713565 ], [ -81.965966096120738, 28.849757471720473 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pleasant View Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966573416743046, 28.85010578973931 ], [ -81.96643578373606, 28.850044888575322 ], [ -81.966276102021709, 28.849951814538141 ], [ -81.966133287152019, 28.84986419629654 ], [ -81.965966096120738, 28.849757471720473 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlotte Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969698856816123, 28.851411971028693 ], [ -81.96979392549521, 28.85123551954802 ], [ -81.969903318127038, 28.851036151745294 ], [ -81.970017920054332, 28.850825326632972 ], [ -81.970122101180294, 28.850644292325438 ], [ -81.97022106765597, 28.850490759952972 ], [ -81.97029788795416, 28.850395664940702 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Countryside Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969239607836627, 28.849773343655219 ], [ -81.969099047662269, 28.849736641666588 ], [ -81.968941132347922, 28.849696879407428 ], [ -81.96885957586457, 28.849667830630644 ], [ -81.968805339601886, 28.849641326341974 ], [ -81.968743320361298, 28.849605158329688 ], [ -81.968687799242304, 28.849560834960762 ], [ -81.968652477704481, 28.849525256922799 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pleasant View Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969698856816123, 28.851411971028693 ], [ -81.969409455422124, 28.851277798420071 ], [ -81.969267381489658, 28.851209964923449 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Countryside Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969267381489658, 28.851209964923449 ], [ -81.969436678823271, 28.850912061389725 ], [ -81.969545206871473, 28.850701999545468 ], [ -81.969647219138039, 28.850520583434566 ], [ -81.969736204521013, 28.850375453232644 ], [ -81.96981051662334, 28.850261624261197 ], [ -81.969829532094096, 28.850219627111322 ], [ -81.969843429155844, 28.850167680888621 ], [ -81.969841706961631, 28.850123370977393 ], [ -81.969829572062878, 28.850079057823255 ], [ -81.969801818434121, 28.850030159246241 ], [ -81.969779266402483, 28.850001124289527 ], [ -81.969758447257846, 28.849979729541651 ], [ -81.969711598623149, 28.849950687292154 ], [ -81.96957451589617, 28.849888013714935 ], [ -81.969421814312497, 28.849825333733747 ], [ -81.969239607836627, 28.849773343655219 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pleasant View Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969267381489658, 28.851209964923449 ], [ -81.969132902864658, 28.851143087662763 ], [ -81.968887803857768, 28.851024618813888 ], [ -81.968655713557212, 28.850925250755502 ], [ -81.968630529976892, 28.850915780589794 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pleasant View Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968630529976892, 28.850915780589794 ], [ -81.96843422913993, 28.850832654789571 ], [ -81.968224914700031, 28.850742842245847 ], [ -81.967975999770786, 28.850641632839466 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pleasant View Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967975999770786, 28.850641632839466 ], [ -81.967968328615598, 28.850638131868301 ], [ -81.967784695488319, 28.850564229705178 ], [ -81.967687352450753, 28.850535236888458 ], [ -81.967587451534541, 28.850512280710667 ], [ -81.96748748484093, 28.850496582589187 ], [ -81.967426140437325, 28.850484830528814 ], [ -81.967378311818266, 28.850470781748136 ], [ -81.967273399272742, 28.850425482130724 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nestlebranch Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965966096120738, 28.849757471720473 ], [ -81.966011561804763, 28.849706202495963 ], [ -81.966127447702732, 28.849568719484669 ], [ -81.966186043946365, 28.849491956155997 ], [ -81.966216049151299, 28.849437990486194 ], [ -81.966241433521887, 28.849386197302227 ], [ -81.96625916283935, 28.849332203270794 ], [ -81.966270167053722, 28.849271672146955 ], [ -81.966270538792529, 28.849206446361539 ], [ -81.966262946651611, 28.849152779818851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Countryside Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966161492129714, 28.848406528430193 ], [ -81.966120448413335, 28.848413619229191 ], [ -81.966050160511401, 28.848423532257101 ], [ -81.965962439990747, 28.848432819142445 ], [ -81.965811077419247, 28.84844667800952 ], [ -81.965679731068576, 28.848445725960964 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nestlebranch Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966262946651611, 28.849152779818851 ], [ -81.966251268295508, 28.849042768666159 ], [ -81.966234400474065, 28.848881187624599 ], [ -81.966221419858968, 28.848773467091988 ], [ -81.966204541812985, 28.848646646468008 ], [ -81.966175099535931, 28.848458706792712 ], [ -81.966161492129714, 28.848406528430193 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Countryside Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966856020229699, 28.848258045848414 ], [ -81.966749716796059, 28.848281511102247 ], [ -81.966640377386128, 28.848305930157583 ], [ -81.966510210885048, 28.848336456151809 ], [ -81.966400053403717, 28.848358095705908 ], [ -81.966258556049269, 28.848388341613493 ], [ -81.966161492129714, 28.848406528430193 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Countryside Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968652477704481, 28.849525256922799 ], [ -81.968622658911286, 28.849478843469765 ], [ -81.968556940907561, 28.84936903733384 ], [ -81.968511630107614, 28.849249254645947 ], [ -81.968465794917819, 28.849125330234017 ], [ -81.968424183153516, 28.848998504079962 ], [ -81.968394731385615, 28.848835010162919 ], [ -81.96838088250864, 28.848717358852987 ], [ -81.968379189048335, 28.8485844307557 ], [ -81.968382689923899, 28.848480533766189 ], [ -81.968387914484865, 28.848424002826171 ], [ -81.968380990956703, 28.84836899572646 ], [ -81.96835844640772, 28.848307874529681 ], [ -81.968330693179396, 28.848268141261514 ], [ -81.968304670750669, 28.848239107037237 ], [ -81.96826476519152, 28.848211594423852 ], [ -81.968224855727726, 28.848190194017892 ], [ -81.96816932665115, 28.848174903020361 ], [ -81.967903808338889, 28.848168726685667 ], [ -81.967749356696729, 28.848168689674804 ], [ -81.967648701689242, 28.848168665459905 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenacres Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967689451975374, 28.852211672259926 ], [ -81.967575584899606, 28.852203053054982 ], [ -81.967396578958187, 28.852187081305825 ], [ -81.9672014713084, 28.852183000478245 ], [ -81.967054715261241, 28.85217829511641 ], [ -81.96696898010839, 28.852174325562952 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenacres Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96828205289313, 28.852361268737052 ], [ -81.968192534837627, 28.85230667612754 ], [ -81.968103269072458, 28.852268477504445 ], [ -81.96799050515871, 28.852245072833828 ], [ -81.967813655903086, 28.852221077048508 ], [ -81.967689451975374, 28.852211672259926 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlotte Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968663791215548, 28.852612524110448 ], [ -81.968914996435117, 28.852384686358885 ], [ -81.969034778451018, 28.852273559047998 ], [ -81.969151959376305, 28.852157846417207 ], [ -81.969270445394841, 28.852026091893396 ], [ -81.969374611022275, 28.851902355491042 ], [ -81.96948008206941, 28.851764868167663 ], [ -81.969536076583651, 28.851682374980836 ], [ -81.969593373276695, 28.851594149718057 ], [ -81.969649370956091, 28.851496758516877 ], [ -81.969698856816123, 28.851411971028693 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlotte Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968176704522065, 28.853279484712164 ], [ -81.968305621484461, 28.85309731271477 ], [ -81.968375939033905, 28.852999925446046 ], [ -81.968477509721893, 28.852855560641199 ], [ -81.968545221636333, 28.852761611354026 ], [ -81.96860121463817, 28.852688285087918 ], [ -81.968663791215548, 28.852612524110448 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenacres Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968663791215548, 28.852612524110448 ], [ -81.968553175822237, 28.852539157961861 ], [ -81.968383999353577, 28.852424526345946 ], [ -81.968291999691118, 28.852367334578947 ], [ -81.96828205289313, 28.852361268737052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aranda Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962864823078519, 28.851378469442089 ], [ -81.962898444782283, 28.85138898247008 ], [ -81.962938567346882, 28.851413821382305 ], [ -81.963068695523674, 28.851510307356545 ], [ -81.963223781886612, 28.851569555578582 ], [ -81.963309460527043, 28.851601092025565 ], [ -81.963355006987896, 28.851628798919027 ], [ -81.963387535709956, 28.851661274542753 ], [ -81.963426563061276, 28.851720492651147 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aranda Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962605674685634, 28.851133930520909 ], [ -81.962786761767205, 28.851283907883879 ], [ -81.962826882551568, 28.851316386649465 ], [ -81.962857240305965, 28.851348863606198 ], [ -81.962864823078519, 28.851378469442089 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belcherry Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963898234253776, 28.852188540483247 ], [ -81.963841816317597, 28.852231497599032 ], [ -81.963768037772866, 28.852288775008432 ], [ -81.963700766873487, 28.852344143053106 ], [ -81.96362047912173, 28.852410012177224 ], [ -81.963545614647657, 28.852471108627437 ], [ -81.963483768290772, 28.852526478936607 ], [ -81.963416495404246, 28.85258662093398 ], [ -81.963379601016896, 28.85263053871088 ], [ -81.963349216388892, 28.852669682351976 ], [ -81.963326423834886, 28.852706919683385 ], [ -81.963303629585752, 28.852751796828969 ], [ -81.963283004353485, 28.85279858113433 ], [ -81.963262409454344, 28.852843588805442 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belcherry Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965515831070718, 28.853221741499944 ], [ -81.965516268454593, 28.853219412762495 ], [ -81.965548491290235, 28.853062594067893 ], [ -81.965579862855833, 28.852898043289844 ], [ -81.965599462916984, 28.85277804892949 ], [ -81.965619024887374, 28.852664607095416 ], [ -81.965626207179682, 28.852594133476259 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abdella Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963898234253776, 28.852188540483247 ], [ -81.963952451565405, 28.852234392156745 ], [ -81.96399257244083, 28.852271646473834 ], [ -81.964026188579325, 28.852299349037068 ], [ -81.964054382286591, 28.852320364960573 ], [ -81.964093421836978, 28.852346158777852 ], [ -81.964137888157765, 28.8523662252964 ], [ -81.964188457106005, 28.852385179982775 ], [ -81.964240517035918, 28.852398944986952 ], [ -81.964296483015147, 28.852409273226129 ], [ -81.964360259733965, 28.852419603515024 ], [ -81.964509936847918, 28.85244256170586 ], [ -81.964647903080262, 28.852460932937412 ], [ -81.964796280502185, 28.852481597710515 ], [ -81.964961579020141, 28.852502268540835 ], [ -81.965073512787555, 28.852518340686942 ], [ -81.965204971125345, 28.85253670965589 ], [ -81.965344239223128, 28.852555080512371 ], [ -81.965450967393437, 28.852568859146213 ], [ -81.965626207179682, 28.852594133476259 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belcherry Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965626207179682, 28.852594133476259 ], [ -81.965631691499667, 28.852522782380625 ], [ -81.965630626407275, 28.852461665359492 ], [ -81.96562413788682, 28.852399592310526 ], [ -81.965612231167029, 28.852327014136804 ], [ -81.965589483085736, 28.852239154447116 ], [ -81.965563482204516, 28.852144608737916 ], [ -81.965541808233183, 28.852081576245691 ], [ -81.965523386555631, 28.852030003862833 ], [ -81.965499536013255, 28.851990845804554 ], [ -81.965464838501802, 28.851956459050605 ], [ -81.965432495826136, 28.85193244579655 ], [ -81.96539217822199, 28.851915377328936 ], [ -81.965333609492987, 28.851901038124453 ], [ -81.965142715221504, 28.851874249793468 ], [ -81.964910605692012, 28.851842676332033 ], [ -81.964755504929997, 28.851818762522178 ], [ -81.964634026529083, 28.85180154167027 ], [ -81.964561358565533, 28.851787198416865 ], [ -81.96450495676946, 28.851781453883198 ], [ -81.96445180941501, 28.85178048518755 ], [ -81.964405162729562, 28.851789067292081 ], [ -81.964362855538184, 28.851806244990929 ], [ -81.96431729098245, 28.851830106089459 ], [ -81.964239171288625, 28.851894066885411 ], [ -81.963898234253776, 28.852188540483247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abdella Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966366242187505, 28.852740210111239 ], [ -81.966605435798684, 28.852785733369576 ], [ -81.966708261266447, 28.852797217279843 ], [ -81.966820197820809, 28.852806412410473 ], [ -81.966997216966462, 28.852811040653584 ], [ -81.967195062446919, 28.852814526924778 ], [ -81.967361667864651, 28.852824879978542 ], [ -81.967511350838592, 28.852836375562337 ], [ -81.967668842865677, 28.852850164716344 ], [ -81.967753447579, 28.85285591470409 ], [ -81.967799006468823, 28.852852487856801 ], [ -81.967849773668263, 28.852839894819848 ], [ -81.967891430920233, 28.852822716776533 ], [ -81.967931789021748, 28.852797515111273 ], [ -81.967969546735347, 28.852759708510632 ], [ -81.968000799429063, 28.852718461663208 ], [ -81.96806200213291, 28.852632531657246 ], [ -81.968125807654957, 28.852544310384836 ], [ -81.968205214812883, 28.85244354892831 ], [ -81.96828205289313, 28.852361268737052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abdella Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965626207179682, 28.852594133476259 ], [ -81.96600542593869, 28.85266411265825 ], [ -81.966174626007174, 28.85269967914752 ], [ -81.966286557934438, 28.852722626754925 ], [ -81.966366242187505, 28.852740210111239 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glen Ridge Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966236085959849, 28.853394984874861 ], [ -81.966248614034555, 28.853326904585128 ], [ -81.966282516897678, 28.853137834140661 ], [ -81.966313809868851, 28.852975120266517 ], [ -81.966366242187505, 28.852740210111239 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eastbourne Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966236085959849, 28.853394984874861 ], [ -81.966633928777, 28.853454599479381 ], [ -81.966847385117461, 28.853489030185134 ], [ -81.967020497101203, 28.853510845444998 ], [ -81.967160730237225, 28.853529176764649 ], [ -81.967273474205768, 28.853541642572601 ], [ -81.967442539759531, 28.853570847988337 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Innisbrook Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966103984276117, 28.854001457661457 ], [ -81.966241943073101, 28.854043510060649 ], [ -81.966437172087026, 28.854104293161871 ], [ -81.966658426236648, 28.85417997950287 ], [ -81.966836788123373, 28.85424590999709 ], [ -81.966910708199791, 28.854267601604548 ], [ -81.966972573698484, 28.854278308251192 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glen Ridge Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966103984276117, 28.854001457661457 ], [ -81.966131342255622, 28.853929271131943 ], [ -81.966175678329449, 28.853682906985174 ], [ -81.966204360614071, 28.853540818286426 ], [ -81.966236085959849, 28.853394984874861 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belcherry Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965392201611238, 28.85385225047888 ], [ -81.965441595714665, 28.853619877214914 ], [ -81.965475383279042, 28.853436989548424 ], [ -81.965515831070718, 28.853221741499944 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Innisbrook Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965392201611238, 28.85385225047888 ], [ -81.965769489567748, 28.853919629374062 ], [ -81.965968625830001, 28.853965517994961 ], [ -81.966103984276117, 28.854001457661457 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belcherry Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965214642751903, 28.854470297124347 ], [ -81.965238100641258, 28.854388942351925 ], [ -81.965274587318333, 28.854267481679003 ], [ -81.965313682048517, 28.854134564197555 ], [ -81.965343653847512, 28.8540325843902 ], [ -81.965392201611238, 28.85385225047888 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlotte Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966996391787063, 28.85512048863318 ], [ -81.967098431728644, 28.854921342485188 ], [ -81.967246036117373, 28.854653994922256 ], [ -81.967384953679925, 28.854415674937567 ], [ -81.967482191830157, 28.854264436102063 ], [ -81.967634986532303, 28.854042926443476 ], [ -81.967749579653827, 28.853885581178826 ], [ -81.967840736501728, 28.853749235864644 ], [ -81.967963141148914, 28.853584251561919 ], [ -81.968115502945494, 28.853360831953733 ], [ -81.968176704522065, 28.853279484712164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlotte Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966544361381764, 28.856224097759096 ], [ -81.966586061853363, 28.856119094298556 ], [ -81.966685070919283, 28.855868542529102 ], [ -81.966775392499301, 28.855636322460953 ], [ -81.966863975152677, 28.855420910031143 ], [ -81.966954289173117, 28.855213136875992 ], [ -81.966996391787063, 28.85512048863318 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yarborough Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965322441684918, 28.85583197447507 ], [ -81.96550465700922, 28.855889319574121 ], [ -81.965671675476898, 28.855969577280874 ], [ -81.96582134550485, 28.856036460914055 ], [ -81.965949328762676, 28.856076600883036 ], [ -81.966087279818339, 28.856109751288333 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yarborough Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966087279818339, 28.856109751288333 ], [ -81.966318756700261, 28.856165981643272 ], [ -81.966544361381764, 28.856224097759096 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vandenberg Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965928304270733, 28.856812213066362 ], [ -81.965935508478069, 28.8567594905211 ], [ -81.965954258948258, 28.856627747052265 ], [ -81.965979409140331, 28.856505145547469 ], [ -81.965998547941069, 28.856404682366339 ], [ -81.966019650151466, 28.856311462478608 ], [ -81.966087279818339, 28.856109751288333 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Raven Croft Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964187090113512, 28.856715482232499 ], [ -81.96420244519426, 28.856651744812257 ], [ -81.964241099177173, 28.856504632514611 ], [ -81.964276497481592, 28.85638240851188 ], [ -81.964307618938363, 28.856324843425259 ], [ -81.964380430081391, 28.856247749082502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glendale Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964187090113512, 28.856715482232499 ], [ -81.964419349980133, 28.856766858945399 ], [ -81.964569329605268, 28.85679556662701 ], [ -81.964718978146365, 28.856815569521 ], [ -81.964882233811238, 28.856829584504858 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avondale Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964813544255364, 28.857467088097263 ], [ -81.964820070888734, 28.85741036552318 ], [ -81.964840307186662, 28.857232750345112 ], [ -81.964859890828592, 28.857060294366775 ], [ -81.964882233811238, 28.856829584504858 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vandenberg Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964813544255364, 28.857467088097263 ], [ -81.964925628309132, 28.857475655028292 ], [ -81.965056045658642, 28.857477894264591 ], [ -81.965244819457908, 28.857470455936198 ], [ -81.965430188363683, 28.857463017369174 ], [ -81.965581549576186, 28.857455571638376 ], [ -81.965688687546205, 28.857454102137147 ], [ -81.965766923414776, 28.857436157222267 ], [ -81.965806681769763, 28.857415248322539 ], [ -81.965842563153188, 28.857389992925427 ], [ -81.965869836239591, 28.857360945651003 ], [ -81.965891107785282, 28.857320907677707 ], [ -81.965904739495471, 28.857240065543099 ], [ -81.965908648768348, 28.857146210606306 ], [ -81.965916710215808, 28.857039451960233 ], [ -81.965916736324786, 28.8569601032899 ], [ -81.965920166137238, 28.856871772136721 ], [ -81.965928304270733, 28.856812213066362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avondale Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964790495300093, 28.858254333791248 ], [ -81.964786635427203, 28.858151499836524 ], [ -81.964774324881148, 28.857958107473955 ], [ -81.964777638499243, 28.857783353598819 ], [ -81.964795271383167, 28.857606312522591 ], [ -81.964813544255364, 28.857467088097263 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Raven Croft Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964088042627083, 28.858364812706526 ], [ -81.964075597664632, 28.858299686450913 ], [ -81.96407221544635, 28.858246100386687 ], [ -81.964056141890467, 28.858102007974438 ], [ -81.964045558224868, 28.857889340074522 ], [ -81.964052426225223, 28.857703697253779 ], [ -81.96407062732932, 28.857526039247041 ], [ -81.964088829062021, 28.85734638804227 ], [ -81.964107033164254, 28.857156753731843 ], [ -81.964122963433212, 28.85699506769441 ], [ -81.964161571487267, 28.856821409609896 ], [ -81.964187090113512, 28.856715482232499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jessmyth Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962685110305202, 28.857833028784171 ], [ -81.962710055477899, 28.857844494980615 ], [ -81.962749103614868, 28.857851190088866 ], [ -81.962828289092428, 28.857851212028276 ], [ -81.962951300379217, 28.857848286458953 ], [ -81.963088627397724, 28.857850329192527 ], [ -81.963348313258024, 28.857851068922049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jessmyth Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962334511401266, 28.857863775300675 ], [ -81.962465330729017, 28.857863811020785 ], [ -81.962572721995159, 28.857860403209326 ], [ -81.962627610983134, 28.857854975792574 ], [ -81.962685110305202, 28.857833028784171 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Embrook Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961019188216127, 28.857924420178101 ], [ -81.961165466852805, 28.857880858678925 ], [ -81.961304758694965, 28.857849958852825 ], [ -81.961450556494313, 28.85782822816434 ], [ -81.961596347339764, 28.85781681065744 ], [ -81.961756462289088, 28.857798521511068 ], [ -81.961956977369567, 28.857780744402092 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yarborough Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960810289064312, 28.857292571131762 ], [ -81.961045951397139, 28.857245597120563 ], [ -81.961241287533809, 28.857200377780149 ], [ -81.961387738634485, 28.857164131067794 ], [ -81.96158518139643, 28.857108802412409 ], [ -81.961754129974167, 28.857066271767501 ], [ -81.96182919989667, 28.857049104217015 ], [ -81.961881273203318, 28.857031930100529 ], [ -81.961934505653815, 28.856998128621605 ], [ -81.961969230961955, 28.856960894929546 ], [ -81.961989854802269, 28.856921748864174 ], [ -81.961999631697296, 28.856882597922599 ], [ -81.962015965561037, 28.85671071349427 ], [ -81.962031213217131, 28.856546467664536 ], [ -81.962042115359424, 28.856392724330917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Callahan Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960683410791177, 28.856623310916081 ], [ -81.960801079191725, 28.856616438159399 ], [ -81.960922748478026, 28.856605321120107 ], [ -81.961011267745974, 28.856592741643258 ], [ -81.961085355173026, 28.856576610066114 ], [ -81.961219552786162, 28.856544672998766 ], [ -81.961374468400209, 28.856498880550909 ], [ -81.961539797392746, 28.85645538276059 ], [ -81.961669974290871, 28.856427917719937 ], [ -81.961772814009464, 28.856406173509434 ], [ -81.961873046560882, 28.856394742726216 ], [ -81.961964016765464, 28.85638888368489 ], [ -81.962042115359424, 28.856392724330917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avondale Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964831445502753, 28.858893724709844 ], [ -81.964823900588499, 28.858752392980325 ], [ -81.96481546475701, 28.858569541472523 ], [ -81.964801210604662, 28.858382749874906 ], [ -81.964790495300093, 28.858254333791248 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963039917817667, 28.859638311492184 ], [ -81.963188877091653, 28.859606797018294 ], [ -81.963346598738553, 28.859578090938061 ], [ -81.963489984147884, 28.859552186040453 ], [ -81.963642127320043, 28.859527686444949 ], [ -81.96381896612165, 28.859499685174438 ], [ -81.964010938621072, 28.8594681831785 ], [ -81.96419838043893, 28.859434364388083 ], [ -81.964389307884659, 28.859400991999667 ], [ -81.964624712751615, 28.859363810709226 ], [ -81.964813470787007, 28.85933139359074 ], [ -81.964877744147785, 28.859322410834878 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964877744147785, 28.859322410834878 ], [ -81.965009821422854, 28.859305661555346 ], [ -81.965288610728706, 28.859279948767906 ], [ -81.965513156385441, 28.859277142720092 ], [ -81.965691054088481, 28.859280052213837 ], [ -81.965859187619486, 28.85929346542272 ], [ -81.966021410491379, 28.859312337672407 ], [ -81.966203803627593, 28.85933762838604 ], [ -81.966300972742744, 28.859357987145501 ], [ -81.966396310242033, 28.859375321754385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avondale Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964877744147785, 28.859322410834878 ], [ -81.96483683453117, 28.858993995605569 ], [ -81.964831445502753, 28.858893724709844 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yarborough Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964216104762926, 28.855612049675852 ], [ -81.964318065283138, 28.855621626800598 ], [ -81.96453500090351, 28.855640781549646 ], [ -81.964741087574296, 28.855669484901139 ], [ -81.96492981473591, 28.855711551051918 ], [ -81.965116368800182, 28.855766986727605 ], [ -81.965259536545091, 28.855810950752673 ], [ -81.965322441684918, 28.85583197447507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yarborough Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962042115359424, 28.856392724330917 ], [ -81.962047118484591, 28.856357967160214 ], [ -81.962069981113984, 28.856129741937643 ], [ -81.962090672099777, 28.855909155905561 ], [ -81.962107008451653, 28.855729632528881 ], [ -81.962118555138019, 28.855592553118584 ], [ -81.96213291078702, 28.855492861499652 ], [ -81.96214854842664, 28.855444164000417 ], [ -81.96216938702544, 28.855410937981425 ], [ -81.962196081383055, 28.85538229731613 ], [ -81.962232534790459, 28.855362825905239 ], [ -81.962281354500846, 28.855344504787052 ], [ -81.962341883071218, 28.855337073243064 ], [ -81.962432998800892, 28.855339964477405 ], [ -81.962585219314505, 28.855351860544047 ], [ -81.96276918046496, 28.855370246496879 ], [ -81.962979170397944, 28.855400863802519 ], [ -81.963215187643925, 28.855445237234161 ], [ -81.963477239222726, 28.855489617334875 ], [ -81.963711523775203, 28.855530934222088 ], [ -81.963921510623322, 28.855569188972616 ], [ -81.964096792222449, 28.855593682093453 ], [ -81.964216104762926, 28.855612049675852 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evanside Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964216104762926, 28.855612049675852 ], [ -81.964242627261228, 28.85545620973544 ], [ -81.964254806290313, 28.855364539700272 ], [ -81.964270460899598, 28.85526370046237 ], [ -81.9642861202163, 28.855149111899518 ], [ -81.964320016796378, 28.854993274796097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evanside Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964320016796378, 28.854993274796097 ], [ -81.964333047090577, 28.854953170801135 ], [ -81.964349990439132, 28.854892441151488 ], [ -81.964385170924075, 28.854784732413169 ], [ -81.964416448999017, 28.854672439822743 ], [ -81.964463357734431, 28.854528065393097 ], [ -81.964471177808534, 28.854498273349769 ], [ -81.964475091771703, 28.854471918054838 ], [ -81.964475099627265, 28.854448999508701 ], [ -81.96446794864724, 28.854425506104889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evanside Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96446794864724, 28.854425506104889 ], [ -81.964520894868542, 28.854380224389288 ], [ -81.964559552747673, 28.854259912216055 ], [ -81.964610811292289, 28.854081161049585 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Knightsbridge Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961512704680757, 28.854048252860146 ], [ -81.961718361706701, 28.854052895332163 ], [ -81.961882367611949, 28.854054088798431 ], [ -81.961965670312836, 28.854059842047175 ], [ -81.962013826239073, 28.85407819051235 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Candlewick Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962150754223799, 28.854677028563628 ], [ -81.962130155315023, 28.854646464394481 ], [ -81.962120740714852, 28.854611993688746 ], [ -81.96210717138365, 28.854520664864221 ], [ -81.962085089260839, 28.85444580070148 ], [ -81.962054500025516, 28.854385906981321 ], [ -81.96201504082002, 28.854313105979109 ], [ -81.96198902335874, 28.854268406548201 ], [ -81.961974718340045, 28.85423287874961 ], [ -81.96196431740853, 28.85419964390967 ], [ -81.961964327913762, 28.854170996629151 ], [ -81.961970306219683, 28.854137479493055 ], [ -81.961978992028065, 28.854115995361031 ], [ -81.961992015934214, 28.854095468899224 ], [ -81.962013826239073, 28.85407819051235 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Candlewick Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962099663877893, 28.854977820081043 ], [ -81.962122143293627, 28.85471728766413 ], [ -81.962150754223799, 28.854677028563628 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burnside Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962150754223799, 28.854677028563628 ], [ -81.962173528488378, 28.854689448890902 ], [ -81.962210968111279, 28.854696784340589 ], [ -81.962255961154412, 28.854704751711377 ], [ -81.962360090377359, 28.854711466107783 ], [ -81.962477841321885, 28.854722333027976 ], [ -81.962568090791578, 28.854729998926874 ], [ -81.962684364922268, 28.854740724495599 ], [ -81.96278558632892, 28.854747958385612 ], [ -81.962890886545026, 28.854759117451046 ], [ -81.962986338562843, 28.854766784507319 ], [ -81.963109916426021, 28.854783050972006 ], [ -81.96322601963918, 28.854804970924842 ], [ -81.963351854801573, 28.854828959711948 ], [ -81.963473712040425, 28.854850803423194 ], [ -81.963618829897541, 28.854878437102155 ], [ -81.963749925468662, 28.854901448843968 ], [ -81.963894400423257, 28.854924405406049 ], [ -81.964047986981257, 28.854947366057434 ], [ -81.964320016796378, 28.854993274796097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Knightsbridge Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962013826239073, 28.85407819051235 ], [ -81.962032050660667, 28.854071320099834 ], [ -81.962059387149239, 28.854065598186203 ], [ -81.962094531785283, 28.854064462180364 ], [ -81.962130978665044, 28.854064471557631 ], [ -81.962171327571738, 28.854066774781149 ], [ -81.962530567351024, 28.8541035460484 ], [ -81.962664631542722, 28.854116188580218 ], [ -81.962786982456791, 28.854127681806755 ], [ -81.962944474361734, 28.854142622403785 ], [ -81.963157815824303, 28.85416916554944 ], [ -81.963303709188594, 28.854191995909837 ], [ -81.963460229389014, 28.854219299925482 ], [ -81.963618688015373, 28.854245940188004 ], [ -81.963786589384256, 28.854278070630127 ], [ -81.963980522645869, 28.854310208749592 ], [ -81.964167950430166, 28.854337762047173 ], [ -81.964325441113431, 28.854360722523161 ], [ -81.964367090092054, 28.854371046024774 ], [ -81.964398326338539, 28.854380223533049 ], [ -81.964429560231792, 28.854396273891066 ], [ -81.96446794864724, 28.854425506104889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belcherry Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963262409454344, 28.852843588805442 ], [ -81.963234653850762, 28.852925353526707 ], [ -81.963196426596923, 28.853056742160028 ], [ -81.963163411392514, 28.853175146232765 ], [ -81.9631442950636, 28.853243896645466 ], [ -81.963139940413896, 28.853286677349157 ], [ -81.963140798941765, 28.853316470799889 ], [ -81.963143389707326, 28.853351613590966 ], [ -81.963154657862574, 28.853385231159699 ], [ -81.96316246009934, 28.853403568140962 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bradford Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962458573297525, 28.8604963453799 ], [ -81.962629820443283, 28.860392458520838 ], [ -81.962727033177529, 28.860343592376605 ], [ -81.962839870305842, 28.860280979369257 ], [ -81.962956180315345, 28.860222951832746 ], [ -81.963079429795599, 28.860163397599894 ], [ -81.963209615839205, 28.860119123872661 ], [ -81.963344769221337, 28.860070702580192 ], [ -81.963469991209749, 28.860029049341954 ], [ -81.963609127398357, 28.859983515338527 ], [ -81.963769952127493, 28.859945875891068 ], [ -81.963971627813748, 28.859908479110576 ], [ -81.964102416801197, 28.859888077848534 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bradford Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964102416801197, 28.859888077848534 ], [ -81.964328995891066, 28.859850740424317 ], [ -81.964494707977764, 28.85982281200879 ], [ -81.964708989923892, 28.859786434354206 ], [ -81.964811713256296, 28.859771190716206 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bradford Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964811713256296, 28.859771190716206 ], [ -81.96486899257836, 28.859758982198798 ], [ -81.965039417711282, 28.859732502544798 ], [ -81.965305082557805, 28.859709439082614 ], [ -81.965391074071093, 28.859715971402871 ], [ -81.965452601458338, 28.859732396556325 ], [ -81.965504659606552, 28.859762967381126 ], [ -81.965552374015928, 28.859808816692986 ], [ -81.965576222472805, 28.859856569146338 ], [ -81.96558705336048, 28.859911958972003 ], [ -81.965593531461252, 28.86000363475129 ], [ -81.965606491501205, 28.860175527943991 ], [ -81.965612944272948, 28.860343599108237 ], [ -81.965610721775548, 28.860502118057845 ], [ -81.965623654891147, 28.860752315896438 ], [ -81.96564312368632, 28.86092421073316 ], [ -81.965666926222596, 28.861111384485323 ], [ -81.965690726705361, 28.861308107312347 ], [ -81.96572796957598, 28.861509051833707 ], [ -81.965764340085926, 28.861620798845351 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bradford Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96603105197849, 28.862203928266794 ], [ -81.966050567017348, 28.86223449243634 ], [ -81.966126461878915, 28.862358653302316 ], [ -81.966202348192652, 28.862509553899873 ], [ -81.966267387415584, 28.862656630468731 ], [ -81.966317247298377, 28.862782694852193 ], [ -81.96635194699644, 28.862828540595544 ], [ -81.966395327669929, 28.862861019065907 ], [ -81.966443525970163, 28.862877347486254 ], [ -81.966508138051296, 28.862885877763841 ], [ -81.966586244121785, 28.862882076875568 ], [ -81.966833581605584, 28.862864949331644 ], [ -81.966892165719671, 28.862847774003161 ], [ -81.966943011225311, 28.862814107138785 ], [ -81.96698331277868, 28.86277331126503 ], [ -81.967011538308029, 28.86270838209656 ], [ -81.967011559001435, 28.862643445089784 ], [ -81.966974715166657, 28.862519295242983 ], [ -81.966922688783669, 28.862383680577668 ], [ -81.966831628098902, 28.862192669218864 ], [ -81.966734055995488, 28.862011207068225 ], [ -81.966642983877037, 28.861854573354496 ], [ -81.966549229834882, 28.861694168178737 ], [ -81.966456525187752, 28.86147828051616 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kent Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967664179941394, 28.862233038450896 ], [ -81.967780367870162, 28.862233008648097 ], [ -81.967896665787109, 28.862205533389702 ], [ -81.968144876180787, 28.862170452307065 ], [ -81.968365312888736, 28.862139947024904 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kent Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968365312888736, 28.862139947024904 ], [ -81.968465986809406, 28.862118578896055 ], [ -81.968655181716812, 28.862091120995796 ], [ -81.968804454402573, 28.862069765762175 ], [ -81.968964644201336, 28.862048384917273 ], [ -81.969078232145435, 28.862042856558197 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Norland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969403434520387, 28.86359574389957 ], [ -81.969608398835945, 28.863061336037703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bernay Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970315340379585, 28.863763551721735 ], [ -81.970421045099101, 28.86325167281683 ], [ -81.970427486731097, 28.863210434436613 ], [ -81.970422820944989, 28.863106477168017 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Adrienne Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971226663336239, 28.863624116984518 ], [ -81.971232255692229, 28.863425559898719 ], [ -81.971235765906954, 28.863283465832584 ], [ -81.971256639919588, 28.863110815353654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Adrienne Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971256639919588, 28.863110815353654 ], [ -81.971280963904718, 28.863034425196293 ], [ -81.971317461478137, 28.86285566944807 ], [ -81.971354244481134, 28.862700610955915 ], [ -81.9713835050146, 28.862537878554225 ], [ -81.971393939506541, 28.862459956902619 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Adrienne Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971393939506541, 28.862459956902619 ], [ -81.971413062256758, 28.862354536678879 ], [ -81.971444360616402, 28.8621498042402 ], [ -81.971472183238603, 28.861955766961437 ], [ -81.971480889411993, 28.861859510109205 ], [ -81.971484244739827, 28.861764693097172 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Adrienne Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971484244739827, 28.861764693097172 ], [ -81.971491422891475, 28.861645205194389 ], [ -81.971493837885291, 28.861447831186602 ], [ -81.971491532949614, 28.86124630015674 ], [ -81.971477622991131, 28.86111236277349 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Navin Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969801268812375, 28.862380842078142 ], [ -81.970040148302758, 28.862381738389114 ], [ -81.970225866049176, 28.862377196934229 ], [ -81.970517456320181, 28.8623726776318 ], [ -81.970772597007596, 28.862381900875143 ], [ -81.971005169256429, 28.862406397473222 ], [ -81.971277658286112, 28.86243701352927 ], [ -81.971393939506541, 28.862459956902619 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pickett Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969047716425905, 28.861648012079097 ], [ -81.969241447925583, 28.861651633363103 ], [ -81.969439695355703, 28.861655833774371 ], [ -81.969607262313147, 28.86166210495405 ], [ -81.969786628093317, 28.861664224374909 ], [ -81.969963988641126, 28.861660550315801 ], [ -81.970161853245074, 28.861656011666486 ], [ -81.970377072753635, 28.861659114564642 ], [ -81.970578404336734, 28.86167443758805 ], [ -81.970784940317543, 28.86169892975666 ], [ -81.970968911316746, 28.861723415824695 ], [ -81.971185858622675, 28.861754020937898 ], [ -81.971342064075031, 28.861763221813625 ], [ -81.971484244739827, 28.861764693097172 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Journey Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969175395764722, 28.860974115002357 ], [ -81.969283322004443, 28.861005100516955 ], [ -81.969380882099557, 28.861013832758193 ], [ -81.969518117231999, 28.861018730132347 ], [ -81.969665645306193, 28.861023347273129 ], [ -81.969827058660101, 28.861024913076228 ], [ -81.970011036809581, 28.861023424920582 ], [ -81.97018980893796, 28.861018881057479 ], [ -81.970368580612956, 28.861015865460594 ], [ -81.970549083061272, 28.861025072619519 ], [ -81.970712227986169, 28.86104344315909 ], [ -81.970884049158528, 28.861066399090138 ], [ -81.971059341158977, 28.861092411655502 ], [ -81.971222485428214, 28.86111383587728 ], [ -81.97133356395284, 28.861119972773917 ], [ -81.971402990837319, 28.861116931489732 ], [ -81.971477622991131, 28.86111236277349 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Islamorada Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968472782799296, 28.860903247205414 ], [ -81.968389499115247, 28.86115848315449 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Islamorada Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968659089018431, 28.860294305853387 ], [ -81.968545411773107, 28.860680666697839 ], [ -81.968472782799296, 28.860903247205414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Richfield Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966828534027826, 28.860563155903638 ], [ -81.96700060453351, 28.860592995110359 ], [ -81.967370269139479, 28.860671009382987 ], [ -81.967941688236522, 28.860790323433562 ], [ -81.968472782799296, 28.860903247205414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Adrienne Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966510142692854, 28.859847558562688 ], [ -81.966877139297466, 28.859929048301613 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Adrienne Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966877139297466, 28.859929048301613 ], [ -81.966952647603932, 28.859945533064842 ], [ -81.967194750855057, 28.859996013219774 ], [ -81.967637305452527, 28.86008664975207 ], [ -81.968006969103016, 28.860163515454978 ], [ -81.96828031137359, 28.86022087756448 ], [ -81.96858359234362, 28.860281683008974 ], [ -81.968659089018431, 28.860294305853387 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Adrienne Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968659089018431, 28.860294305853387 ], [ -81.968800536529059, 28.860313819564002 ], [ -81.969041131820575, 28.860340048428696 ], [ -81.969356467791542, 28.860367950584674 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "French Oak Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972115557376, 28.863326833203658 ], [ -81.972067182743331, 28.86312465021102 ], [ -81.972056291045647, 28.863022514353382 ], [ -81.972068920835881, 28.86287182049238 ], [ -81.972088468221372, 28.862732760569859 ], [ -81.972118730753522, 28.862533315271193 ], [ -81.972152148241818, 28.86230672118835 ], [ -81.97218241615991, 28.862093979510792 ], [ -81.972205131275942, 28.861944285656019 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "French Oak Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972205131275942, 28.861944285656019 ], [ -81.972212678327708, 28.861894534171768 ], [ -81.972227847933169, 28.861655193927028 ], [ -81.972219405025214, 28.86146501172756 ], [ -81.972219445602761, 28.86131795059238 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "French Oak Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972219445602761, 28.86131795059238 ], [ -81.972212953404565, 28.861256832575435 ], [ -81.972206484853089, 28.861107860811178 ], [ -81.972182681954777, 28.860874850245978 ], [ -81.972148016902509, 28.860701043912517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "French Oak Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972148016902509, 28.860701043912517 ], [ -81.972116370850586, 28.860590551080584 ], [ -81.972005263404355, 28.860292108832891 ], [ -81.971951065766689, 28.860141694204916 ], [ -81.971934807321617, 28.860093943564792 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Adrienne Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971477622991131, 28.86111236277349 ], [ -81.971453860678494, 28.860920104660483 ], [ -81.971423212166656, 28.860803751416171 ], [ -81.971385489514191, 28.860664542189262 ], [ -81.971352803667259, 28.860588265236863 ], [ -81.971319839853521, 28.860542421135207 ], [ -81.971262574697562, 28.860501155526727 ], [ -81.971196630025773, 28.860467528742994 ], [ -81.971130682153728, 28.860449179742481 ], [ -81.971066466850047, 28.860436941488114 ], [ -81.97099183654052, 28.860429285559405 ], [ -81.970844313284488, 28.860413974858034 ], [ -81.970667285457935, 28.860394073841231 ], [ -81.970465957783105, 28.860377222446946 ], [ -81.970257683488597, 28.860372592728545 ], [ -81.970066762712491, 28.86038324437769 ], [ -81.969858488113189, 28.860383197748472 ], [ -81.969655626243608, 28.860383681674435 ], [ -81.969356467791542, 28.860367950584674 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Long Leaf Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972205131275942, 28.861944285656019 ], [ -81.972342116492115, 28.861949729607776 ], [ -81.972407990857533, 28.861948293175477 ], [ -81.972542523080364, 28.861927544335366 ], [ -81.972688860336646, 28.861890177324177 ], [ -81.972854080974372, 28.861844502854908 ], [ -81.972885477313568, 28.861833029192162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Long Leaf Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972885477313568, 28.861833029192162 ], [ -81.973007503505329, 28.861788437580795 ], [ -81.973151482503226, 28.861744836474749 ], [ -81.973337942477386, 28.861699164760363 ], [ -81.97355508048966, 28.861668044887619 ], [ -81.973707443445306, 28.861664803100375 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Long Leaf Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973707443445306, 28.861664803100375 ], [ -81.973824825544483, 28.861662052387373 ], [ -81.973944495681636, 28.861678508463012 ], [ -81.974104978659568, 28.861707627138163 ], [ -81.974255933132625, 28.861746233325249 ], [ -81.974482732575396, 28.861789370737753 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rain Lily Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972885477313568, 28.861833029192162 ], [ -81.972917699756422, 28.861931085483032 ], [ -81.972925814738758, 28.861985248827956 ], [ -81.972928292742736, 28.862037670489368 ], [ -81.972910641784594, 28.862153389227917 ], [ -81.972885419271606, 28.862338984466614 ], [ -81.972860195212078, 28.862530122548748 ], [ -81.972831836121003, 28.862668624983691 ], [ -81.972812916310886, 28.862818210519325 ], [ -81.972819741609868, 28.862877218072061 ], [ -81.972834916536073, 28.862920710394437 ], [ -81.972868575979078, 28.862957631367404 ], [ -81.972911046788454, 28.863000647371006 ], [ -81.972967056650106, 28.863028773564562 ], [ -81.973080342231114, 28.863034336504032 ], [ -81.973203069201233, 28.863031591016263 ], [ -81.973310065191541, 28.863026072212865 ], [ -81.973410767766211, 28.863012240954681 ], [ -81.973448453122387, 28.862991405201935 ], [ -81.973486305986739, 28.862956853548997 ], [ -81.973527235626662, 28.862879295978221 ], [ -81.973552441832695, 28.862757413218436 ], [ -81.973583973357179, 28.862510875690237 ], [ -81.973621803847493, 28.86224217518793 ], [ -81.973656473674183, 28.862023338977071 ], [ -81.973707443445306, 28.861664803100375 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Silk Tree Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974330780788264, 28.863056069236791 ], [ -81.974378484737755, 28.862781813142789 ], [ -81.974395038641646, 28.862648847373155 ], [ -81.974418685008388, 28.862472252943061 ], [ -81.974444695977937, 28.862270729195828 ], [ -81.974458899965242, 28.86209413385037 ], [ -81.974473101333871, 28.861927926725556 ], [ -81.974482732575396, 28.861789370737753 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Silk Tree Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974482732575396, 28.861789370737753 ], [ -81.974484944165425, 28.861757562230995 ], [ -81.974503872177024, 28.861568503336674 ], [ -81.974508301174495, 28.861402439606874 ], [ -81.97451266030096, 28.861324135771046 ], [ -81.974508334683023, 28.861266837729342 ], [ -81.974497496267773, 28.861230549503944 ], [ -81.974469302323499, 28.861192345088025 ], [ -81.974430813276669, 28.861146730784899 ], [ -81.974373859658854, 28.861115932386422 ], [ -81.974293939497528, 28.861096840568106 ], [ -81.974128716495329, 28.86105285934816 ], [ -81.973966008567302, 28.861018449155068 ], [ -81.973814147244738, 28.860995501050706 ], [ -81.9736666187775, 28.860987833246398 ], [ -81.97352776892248, 28.86098780590223 ], [ -81.973369387258941, 28.861006872708437 ], [ -81.973232698277926, 28.861033584373146 ], [ -81.973102517413039, 28.861069846290466 ], [ -81.972954974911417, 28.8611194731204 ], [ -81.972809416521258, 28.861173419521045 ], [ -81.972655995410449, 28.861223252360659 ], [ -81.97247329272119, 28.861279804793231 ], [ -81.972332263895836, 28.86131224428431 ], [ -81.972219445602761, 28.86131795059238 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Twisted Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972148016902509, 28.860701043912517 ], [ -81.97226934190563, 28.860668370450124 ], [ -81.972405984368351, 28.86062692241504 ], [ -81.972632570920453, 28.860556327445828 ], [ -81.972868362973955, 28.860468185943756 ], [ -81.97307448486896, 28.860410931168346 ], [ -81.973254566283288, 28.860376589415097 ], [ -81.97342561166522, 28.860361190411968 ], [ -81.973601695734004, 28.860349920226277 ], [ -81.973788277742543, 28.86034995683438 ], [ -81.973939642380913, 28.860367483828458 ], [ -81.974074646598268, 28.860384391215856 ], [ -81.974185287228636, 28.860405420016281 ], [ -81.974282910331809, 28.860432176763876 ], [ -81.974345827407092, 28.860436009175963 ], [ -81.974395727086232, 28.860428378905752 ], [ -81.97445864723521, 28.860407383460139 ], [ -81.974525914806932, 28.860363466672265 ], [ -81.974558471838662, 28.860306176530518 ], [ -81.974578027690725, 28.86018394868065 ], [ -81.974586750821572, 28.860002512266423 ], [ -81.974593304149082, 28.859824894890004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Twisted Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974593304149082, 28.859824894890004 ], [ -81.974599830096182, 28.859754226743519 ], [ -81.974613732181353, 28.859673250262826 ], [ -81.974625897440191, 28.859615193788045 ], [ -81.974657165226404, 28.859514357257336 ], [ -81.974721411009298, 28.859389080806363 ], [ -81.974797576107534, 28.859250484940628 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Twisted Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97479757610688, 28.859250487647554 ], [ -81.974829068745436, 28.859188948278696 ], [ -81.974888104909539, 28.85908200559108 ], [ -81.974941933415593, 28.858978117105426 ], [ -81.975006182343961, 28.858849786208093 ], [ -81.975073901251022, 28.858722982622226 ], [ -81.975139884455373, 28.858593122572344 ], [ -81.975197438421432, 28.858492457699739 ], [ -81.975252746315789, 28.858392987939883 ], [ -81.975294421238019, 28.858310489797816 ], [ -81.97532394418738, 28.858232572210202 ], [ -81.975334374952851, 28.858156177802456 ], [ -81.975327453355419, 28.85807519649229 ], [ -81.975313586999647, 28.857997271812337 ], [ -81.975281502058593, 28.857881405469609 ], [ -81.975250506733062, 28.85781668375213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Falling Tree Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974054119336941, 28.8589172790577 ], [ -81.974231424254668, 28.859010453638351 ], [ -81.974357165617533, 28.859062920589313 ], [ -81.974538089307288, 28.859138908361334 ], [ -81.97479757610688, 28.859250487647554 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vanilla Leaf Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971934807321617, 28.860093943564792 ], [ -81.972069478287636, 28.860055775330437 ], [ -81.972174857796077, 28.860024360049188 ], [ -81.972351878499694, 28.85996622509807 ], [ -81.972554864307199, 28.859893549181482 ], [ -81.97272952400634, 28.859839565654735 ], [ -81.972913621232024, 28.859798050947628 ], [ -81.973109517736091, 28.859756537453286 ], [ -81.973314849196797, 28.85973372581082 ], [ -81.973546142980069, 28.859710916273585 ], [ -81.973775068804485, 28.859713039254089 ], [ -81.973968589113554, 28.859731775423136 ], [ -81.974197510288846, 28.859760906363423 ], [ -81.974355627858657, 28.85978586827709 ], [ -81.974593304149082, 28.859824894890004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beville Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961684813415246, 28.859210312556275 ], [ -81.962094255963478, 28.859196388876555 ], [ -81.962255672776621, 28.859180391363648 ], [ -81.96242881105195, 28.859152937671023 ], [ -81.962491844837658, 28.859145311868993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beville Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962491844837658, 28.859145311868993 ], [ -81.962570703065253, 28.859134641561951 ], [ -81.962737328984431, 28.85911176846189 ], [ -81.962923476438718, 28.859102653470504 ], [ -81.963100508080146, 28.859101556301678 ], [ -81.963290555097473, 28.859105045262979 ], [ -81.963471494076586, 28.859100511797628 ], [ -81.963591253315457, 28.859092521931665 ], [ -81.963712533444266, 28.859076131013804 ], [ -81.963922987268873, 28.859044674736971 ], [ -81.964202871178159, 28.858994136678049 ], [ -81.964429596167577, 28.858956000577543 ], [ -81.964831445502753, 28.858893724709844 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evesborough Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962457826612365, 28.858479400778542 ], [ -81.962750101326804, 28.858469044300769 ], [ -81.963031600260166, 28.858465490306497 ], [ -81.963270820943748, 28.85846737318527 ], [ -81.963384242613941, 28.858463957354463 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evesborough Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963384242613941, 28.858463957354463 ], [ -81.963497672860086, 28.858456541514709 ], [ -81.963694626454227, 28.858432085607728 ], [ -81.963945411955123, 28.858391798507373 ], [ -81.964088042627083, 28.858364812706526 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evesborough Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964088042627083, 28.858364812706526 ], [ -81.964166699510017, 28.858350323759939 ], [ -81.964446368636573, 28.858304654868917 ], [ -81.964711740534511, 28.858261761640996 ], [ -81.964790495300093, 28.858254333791248 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evesborough Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961392667624764, 28.85569076265153 ], [ -81.961272173346472, 28.855766817531638 ], [ -81.961124264526234, 28.8558307725853 ], [ -81.96100633843497, 28.855876649481896 ], [ -81.960852127320393, 28.855942480102573 ], [ -81.960750072030521, 28.855988362300298 ], [ -81.960719657711337, 28.856008719332785 ], [ -81.960691008838239, 28.856038505960182 ], [ -81.960671469292464, 28.856079754519332 ], [ -81.960655829629388, 28.856129024804922 ], [ -81.960652484858926, 28.856213903636714 ], [ -81.960661499721951, 28.856355636701281 ], [ -81.960673901320689, 28.856528959540476 ], [ -81.960683410791177, 28.856623310916081 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evesborough Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960683410791177, 28.856623310916081 ], [ -81.960698548523482, 28.856754715274821 ], [ -81.960734043469557, 28.856973216029523 ], [ -81.960775621640877, 28.857172620364004 ], [ -81.960810289064312, 28.857292571131762 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evesborough Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960810289064312, 28.857292571131762 ], [ -81.960825019562748, 28.857346815666837 ], [ -81.960856218206459, 28.857459889847004 ], [ -81.960908222513339, 28.857629502164318 ], [ -81.960974969830147, 28.857818218724478 ], [ -81.961019188216127, 28.857924420178101 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evesborough Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961019188216127, 28.857924420178101 ], [ -81.961041725203032, 28.857988853065777 ], [ -81.961097222784247, 28.858101935127142 ], [ -81.961150978613816, 28.858227238374841 ], [ -81.961206475413917, 28.858340320387235 ], [ -81.961237693723803, 28.858399916686263 ], [ -81.961263714429876, 28.858435065343318 ], [ -81.961286269218718, 28.858457991282037 ], [ -81.961315765011165, 28.858480918313735 ], [ -81.961353982502317, 28.858497422538314 ], [ -81.961395919720218, 28.858508009606002 ], [ -81.961434680885574, 28.858512343681074 ], [ -81.961644256161421, 28.858507819982673 ], [ -81.961912409699522, 28.858497582046358 ], [ -81.962310730811083, 28.858486236044214 ], [ -81.962420076284047, 28.8584828280013 ], [ -81.962457826612365, 28.858479400778542 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deuberry Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962491844837658, 28.859145311868993 ], [ -81.962482116949815, 28.858938474812323 ], [ -81.962479597731146, 28.858853138666344 ], [ -81.962474340439414, 28.858723636657935 ], [ -81.962457826612365, 28.858479400778542 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amberly Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963384242613941, 28.858463957354463 ], [ -81.963365397891238, 28.858182368238385 ], [ -81.96335514431405, 28.858019880241926 ], [ -81.963348313258024, 28.857851068922049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amberly Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963348313258024, 28.857851068922049 ], [ -81.963348061922417, 28.857787923773714 ], [ -81.963359452427525, 28.857642204688457 ], [ -81.963377657130223, 28.857460555882277 ], [ -81.963398124714189, 28.857290885779772 ], [ -81.963416345874208, 28.857059333197871 ], [ -81.963441810387991, 28.856795262612806 ], [ -81.963458149629901, 28.856604279824495 ], [ -81.963480061250735, 28.856416577519667 ], [ -81.963494074716408, 28.856237447661879 ], [ -81.963494737738699, 28.856202830918274 ], [ -81.963486934816459, 28.856182775072764 ], [ -81.963476742038935, 28.856167732684671 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Finesse Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962834841417546, 28.856064565718299 ], [ -81.962860878156292, 28.856054833442052 ], [ -81.962890819467148, 28.856049111179946 ], [ -81.962923359590448, 28.856050266093693 ], [ -81.962973471953759, 28.85605486272404 ], [ -81.963094952951565, 28.856077864328146 ], [ -81.963288021425726, 28.856112295054327 ], [ -81.963421432797617, 28.856138113913577 ], [ -81.963441390922711, 28.856142082270573 ], [ -81.963462604869108, 28.856151077706361 ], [ -81.963476742038935, 28.856167732684671 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Finesse Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963476742038935, 28.856167732684671 ], [ -81.963549423149374, 28.856158727577732 ], [ -81.963629688245547, 28.856171593647407 ], [ -81.963751169517508, 28.85619168021579 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kimberwicke Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962685110305202, 28.857833028784171 ], [ -81.962666677342227, 28.857811058861191 ], [ -81.962653670467517, 28.857786228334373 ], [ -81.96264934322879, 28.85774898450908 ], [ -81.962654262880761, 28.857624044661286 ], [ -81.96266786190229, 28.857512935042145 ], [ -81.9626851420159, 28.857346195752033 ], [ -81.96270049615714, 28.857208089657 ], [ -81.962713421665157, 28.857057143087491 ], [ -81.96272935960414, 28.856871502830938 ], [ -81.962745289495842, 28.856713806942711 ], [ -81.96275742937037, 28.856566844717673 ], [ -81.962770495774777, 28.856428381553751 ], [ -81.962783995965523, 28.856289154253734 ], [ -81.962797066068788, 28.856140186449913 ], [ -81.962799024319793, 28.856124144012789 ], [ -81.962804889817463, 28.856104664876298 ], [ -81.962819866546056, 28.856080604553505 ], [ -81.962834841417546, 28.856064565718299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kimberwicke Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962834841417546, 28.856064565718299 ], [ -81.962810125240054, 28.856024451427565 ], [ -81.96281646245059, 28.855901376998219 ], [ -81.96282530491365, 28.855783064722491 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glendale Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964882233811238, 28.856829584504858 ], [ -81.965084038459025, 28.856837622528719 ], [ -81.965269975265144, 28.856829684451135 ], [ -81.965442306701348, 28.856825738021495 ], [ -81.965619173778634, 28.856817798030018 ], [ -81.96581091946689, 28.856811054442971 ], [ -81.965928304270733, 28.856812213066362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Apollo Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965165671188657, 28.856214357758677 ], [ -81.965322441684918, 28.85583197447507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eubanks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973439222224528, 28.857114673410656 ], [ -81.973938089360104, 28.85704808466431 ], [ -81.974362988893674, 28.857010803047725 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Macarthur Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974298412754379, 28.855709450520067 ], [ -81.974062632842461, 28.855715105878332 ], [ -81.973883503165098, 28.855723055604042 ], [ -81.973708906191987, 28.85572501918729 ], [ -81.97360765747446, 28.855733761580915 ], [ -81.973538227319793, 28.855759723452419 ], [ -81.973484417369207, 28.855796382495672 ], [ -81.97345143118747, 28.855843739759507 ], [ -81.973430589448938, 28.855898741944287 ], [ -81.973430563105453, 28.856001111138131 ], [ -81.973430535582011, 28.856108064941338 ], [ -81.973439190248371, 28.856195158025557 ], [ -81.973458267918502, 28.856248637803681 ], [ -81.973484291799309, 28.856285312621964 ], [ -81.973529406988902, 28.856326574011458 ], [ -81.973583200775437, 28.856354086871942 ], [ -81.973645677634309, 28.856366323591924 ], [ -81.973723778007098, 28.856364810414842 ], [ -81.973969504660559, 28.856357862774612 ], [ -81.974327938553529, 28.856349321189406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Killington Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974308288619739, 28.857645655990492 ], [ -81.974291440528418, 28.857575787308264 ], [ -81.974298011856732, 28.857487770548904 ], [ -81.97432751556947, 28.857377985568405 ], [ -81.974355998892932, 28.857274373051165 ], [ -81.97436612722484, 28.857126472802832 ], [ -81.974362988893674, 28.857010803047725 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Killington Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974362988893674, 28.857010803047725 ], [ -81.974361632000125, 28.856960788034382 ], [ -81.974348085006596, 28.856727231967039 ], [ -81.974341343051719, 28.856483694092052 ], [ -81.974327938553529, 28.856349321189406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Killington Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974327938553529, 28.856349321189406 ], [ -81.974324303359481, 28.856282420001186 ], [ -81.974319152213113, 28.856059343981975 ], [ -81.974307061790469, 28.855830156216587 ], [ -81.974298412754379, 28.855709450520067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Killington Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974298412754379, 28.855709450520067 ], [ -81.974296255255297, 28.855660176135341 ], [ -81.97428761724214, 28.855503562308456 ], [ -81.974285475552421, 28.855390878442126 ], [ -81.974276827030707, 28.855272464591216 ], [ -81.974287695831507, 28.855192251760375 ], [ -81.974320252334977, 28.855131143076129 ], [ -81.974376668178351, 28.85508149461009 ], [ -81.974452606509061, 28.855049042361639 ], [ -81.974575250211629, 28.855042489676386 ], [ -81.974673917338635, 28.855046643615452 ], [ -81.974765714496144, 28.855050509256422 ], [ -81.974847436755269, 28.855062486471905 ], [ -81.974919020551724, 28.855091148970779 ], [ -81.974981919986917, 28.855150366370982 ], [ -81.975010103704037, 28.855224856005137 ], [ -81.975014413720473, 28.855350909720674 ], [ -81.975025209265667, 28.855566727745998 ], [ -81.975031654573769, 28.855822655114903 ], [ -81.975044618956019, 28.856038474429901 ], [ -81.97505324808327, 28.856240922576305 ], [ -81.975066934075798, 28.856507785395479 ], [ -81.975078209210508, 28.856767291263399 ], [ -81.975082713154748, 28.856893053539604 ], [ -81.975089462643666, 28.857112636076209 ], [ -81.975100775425943, 28.857212447521352 ], [ -81.975091682570209, 28.857308262475257 ], [ -81.975070333225901, 28.857358206487262 ], [ -81.975042120501371, 28.857392579949742 ], [ -81.975009572506806, 28.857417402604728 ], [ -81.974971473882576, 28.857435996508297 ], [ -81.974844482781833, 28.857479887907669 ], [ -81.974647192385177, 28.85754971799814 ], [ -81.974517058952898, 28.857600179979009 ], [ -81.974391221277571, 28.857636922209377 ], [ -81.974308288619739, 28.857645655990492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenwick Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970583189972146, 28.859488119293946 ], [ -81.970656869485708, 28.859481166932838 ], [ -81.970895232272738, 28.859448126844061 ], [ -81.971053402897141, 28.859418218997842 ], [ -81.971257493695248, 28.859377839644832 ], [ -81.971454784334981, 28.8593314690387 ], [ -81.971655478089801, 28.859276119128737 ], [ -81.971851070187867, 28.859217772198036 ], [ -81.97210959275391, 28.859132488054147 ], [ -81.972303489362304, 28.859057672153806 ], [ -81.972478677276129, 28.858978358659233 ], [ -81.972687886733951, 28.858870608523926 ], [ -81.972864783187248, 28.858765843569213 ], [ -81.973084927820224, 28.858604160674016 ], [ -81.973213817544035, 28.858519387900063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abaco Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970496938693259, 28.858854117779856 ], [ -81.970585457149781, 28.858843442201572 ], [ -81.970769562731846, 28.858816305029784 ], [ -81.970932833836329, 28.8587893922791 ], [ -81.971101208582439, 28.858753497988605 ], [ -81.971263824331828, 28.858712647699853 ], [ -81.971435660809064, 28.85866684642891 ], [ -81.971608800009562, 28.85861302372696 ], [ -81.971765019065174, 28.858559198143734 ], [ -81.971926445886567, 28.858497352883862 ], [ -81.972077458981218, 28.858435504360124 ], [ -81.972231078668756, 28.858361051011325 ], [ -81.972383399617655, 28.858278574828983 ], [ -81.972497969206501, 28.858204114029714 ], [ -81.972606030078239, 28.858126213119935 ], [ -81.97267633549221, 28.858072367997462 ], [ -81.972745337029721, 28.858026545865641 ], [ -81.972800666046268, 28.85799876792079 ], [ -81.972872916428742, 28.85797299920026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenwick Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968908647173834, 28.858828178813368 ], [ -81.968925714712711, 28.85909116121131 ], [ -81.968934787043537, 28.859222945779276 ], [ -81.968942570415024, 28.859315767638257 ], [ -81.968955216849253, 28.859365535360613 ], [ -81.968982001175419, 28.859399790323355 ], [ -81.969026623115724, 28.859440408840531 ], [ -81.969070415356654, 28.859465684367294 ], [ -81.969136474242461, 28.859486554539068 ], [ -81.969221080979963, 28.85949688821405 ], [ -81.969353852203554, 28.859509523795758 ], [ -81.969529580771834, 28.859515195097963 ], [ -81.969728905245915, 28.85952380037681 ], [ -81.96994612249442, 28.859529138516724 ], [ -81.970205165252821, 28.859521174807082 ], [ -81.970372575514034, 28.859508112225853 ], [ -81.970498056565148, 28.859498320099316 ], [ -81.970583189972146, 28.859488119293946 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenwick Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969915823739726, 28.857227547685053 ], [ -81.969809155014175, 28.857230619534533 ], [ -81.969693513230368, 28.857229097444595 ], [ -81.969552363561746, 28.857224572916184 ], [ -81.969394203351825, 28.857229028609485 ], [ -81.969324473982596, 28.857240988978397 ], [ -81.969261543138728, 28.857266426789451 ], [ -81.96920880844435, 28.85731582039384 ], [ -81.969174778746151, 28.857372702892498 ], [ -81.969094794953207, 28.857555336227879 ], [ -81.969043734567293, 28.857694559993135 ], [ -81.968992665841952, 28.85785773631277 ], [ -81.968950095129074, 28.858040377285739 ], [ -81.968926238441512, 28.858200565116164 ], [ -81.968892147082315, 28.858461060665661 ], [ -81.968893723531821, 28.858702874133126 ], [ -81.968908647173834, 28.858828178813368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenwick Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970545017493549, 28.858177607462967 ], [ -81.970552666971884, 28.858140701274976 ], [ -81.970574208555519, 28.858039247262358 ], [ -81.970601456405106, 28.857907503226585 ], [ -81.970630411127971, 28.857756298649633 ], [ -81.97064744851501, 28.857645513803075 ], [ -81.970652574073341, 28.857563172404689 ], [ -81.970654302255809, 28.857468852167269 ], [ -81.970642416651103, 28.857401478084704 ], [ -81.970631329125354, 28.857364262807625 ], [ -81.970613525023325, 28.857331106429609 ], [ -81.970583518740412, 28.857295198051801 ], [ -81.970550618146063, 28.85726970974903 ], [ -81.970503177126304, 28.857246335049076 ], [ -81.970446890434502, 28.857235253188328 ], [ -81.970297236775366, 28.857230728468437 ], [ -81.970128876470483, 28.85722769634269 ], [ -81.969963914449963, 28.857226162593335 ], [ -81.969915823739726, 28.857227547685053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sapphire Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97037836776795, 28.851160018569828 ], [ -81.970401787416364, 28.851192109721904 ], [ -81.970444734106408, 28.851217329603678 ], [ -81.970509805360336, 28.851244846191594 ], [ -81.970646463833262, 28.851283073453597 ], [ -81.97077227664434, 28.851315569477414 ], [ -81.970900258140574, 28.851351884410999 ], [ -81.971026070088442, 28.851384379295364 ], [ -81.971167066740918, 28.851424517146775 ], [ -81.971301339364317, 28.8514604522782 ], [ -81.971433988793407, 28.851492193916609 ], [ -81.971562728496139, 28.851519713610763 ], [ -81.971700536149399, 28.851537165365702 ], [ -81.97184720557739, 28.851545057108432 ], [ -81.971968368136316, 28.851547326512854 ], [ -81.972079026169439, 28.851547516515371 ], [ -81.972163631881045, 28.851542758194363 ], [ -81.972214613863883, 28.851535129845001 ], [ -81.972243553974494, 28.851522279787236 ], [ -81.972267771931783, 28.851507448186556 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sapphire Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972267771931783, 28.851507448186556 ], [ -81.972315491683446, 28.851518917322785 ], [ -81.972367577343732, 28.851519338610668 ], [ -81.972454305656896, 28.851510373093902 ], [ -81.972558894094831, 28.851495798835902 ], [ -81.972649449892813, 28.851484588138124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenwich Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972005488418446, 28.850284007204117 ], [ -81.972069123207007, 28.85029042322811 ], [ -81.972219119674037, 28.850298457823442 ], [ -81.972384571536324, 28.850301693363587 ], [ -81.972655527085223, 28.850308898737595 ], [ -81.972734570550301, 28.850308968965049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Countryside Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96828205289313, 28.852361268737052 ], [ -81.968403176966618, 28.852227203897154 ], [ -81.968493487291241, 28.852143803382781 ], [ -81.968609000598789, 28.852040110440761 ], [ -81.968734872907518, 28.851930848075305 ], [ -81.968845444455937, 28.851811101762276 ], [ -81.968956394553302, 28.851679046192871 ], [ -81.969088342645421, 28.85150795080434 ], [ -81.969238747037792, 28.851262431941198 ], [ -81.969267381489658, 28.851209964923449 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lazy Acres Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967689451975374, 28.852211672259926 ], [ -81.967702602467483, 28.852066842778171 ], [ -81.967734943449486, 28.851966541263597 ], [ -81.967789389013078, 28.851876727127202 ], [ -81.96786083582532, 28.851801886285852 ], [ -81.967954389189316, 28.851721063887954 ], [ -81.968053047636445, 28.851632755308422 ], [ -81.968158508552605, 28.851542951344314 ], [ -81.968280986232188, 28.851417221514048 ], [ -81.968366041626638, 28.851322920884666 ], [ -81.968457906777715, 28.85120317137121 ], [ -81.968630529976892, 28.850915780589794 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lazy Acres Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968630529976892, 28.850915780589794 ], [ -81.968753402195034, 28.850697615519753 ], [ -81.968807233951239, 28.850592201752253 ], [ -81.968873217491819, 28.850469983533259 ], [ -81.968949622078014, 28.850326379437906 ], [ -81.969026024058266, 28.850187358105853 ], [ -81.969104164250595, 28.850040696403131 ], [ -81.969239607836627, 28.849773343655219 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quail Hollow Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96696898010839, 28.852174325562952 ], [ -81.966978187805793, 28.852003786696542 ], [ -81.967003725973598, 28.85191396486324 ], [ -81.967054789505823, 28.851761268527014 ], [ -81.967116051663083, 28.851634025995885 ], [ -81.967168054279639, 28.85155059351435 ], [ -81.967224934331867, 28.851479846812659 ], [ -81.967309990333149, 28.851390039430132 ], [ -81.967401846298145, 28.851300232741536 ], [ -81.967517511007472, 28.85120444405219 ], [ -81.967626379330824, 28.851102665021706 ], [ -81.96772673859212, 28.851008368480798 ], [ -81.967820305033499, 28.850890116730287 ], [ -81.967892169673021, 28.850787639243872 ], [ -81.967975999770786, 28.850641632839466 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quail Hollow Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967975999770786, 28.850641632839466 ], [ -81.968005452128878, 28.850590486353365 ], [ -81.968085327032298, 28.850440769555416 ], [ -81.968142628614686, 28.850338412983607 ], [ -81.968201671556471, 28.850225362671804 ], [ -81.968271129068924, 28.850092450534923 ], [ -81.96835795054281, 28.84993356868204 ], [ -81.96844571845287, 28.849772243547903 ], [ -81.968529851559737, 28.849635668648876 ], [ -81.968574986231175, 28.849586784176992 ], [ -81.968652477704481, 28.849525256922799 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenacres Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96696898010839, 28.852174325562952 ], [ -81.966811483678981, 28.852164938840367 ], [ -81.966652773122306, 28.852144937814209 ], [ -81.966475926549705, 28.852110957168769 ], [ -81.966417939953615, 28.852089518339682 ], [ -81.966370116838064, 28.852062993931465 ], [ -81.966303638614818, 28.852005116932204 ], [ -81.96626284554074, 28.851943223878191 ], [ -81.96624246263292, 28.851867362842491 ], [ -81.966247021836182, 28.851793505779021 ], [ -81.966271988991139, 28.851721649741862 ], [ -81.966328708195988, 28.851611873256001 ], [ -81.96638315931439, 28.851508084777933 ], [ -81.966455759471089, 28.851374357804222 ], [ -81.966528353522193, 28.85125260889248 ], [ -81.966628164477669, 28.851110903197075 ], [ -81.96673250256886, 28.850993154758125 ], [ -81.966834562645772, 28.850899358276518 ], [ -81.966943429652275, 28.850799576594863 ], [ -81.96705683012577, 28.850697797329222 ], [ -81.967138482166106, 28.850613977810951 ], [ -81.967202578512428, 28.850528321372195 ], [ -81.967238062291599, 28.850478196131608 ], [ -81.967273399272742, 28.850425482130724 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenacres Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967273399272742, 28.850425482130724 ], [ -81.967306100714069, 28.850384246610432 ], [ -81.96738078766208, 28.850263363041279 ], [ -81.967455454164977, 28.850131981097288 ], [ -81.96756658830607, 28.849922683903461 ], [ -81.967630837764887, 28.849800467666679 ], [ -81.967686411965843, 28.849673664693949 ], [ -81.967714211128509, 28.849569771780459 ], [ -81.967733339500015, 28.849450600739829 ], [ -81.967734903030774, 28.849336816751265 ], [ -81.967734925048291, 28.849269445194526 ], [ -81.967727150000925, 28.849195170928539 ], [ -81.96770678729078, 28.84905942585689 ], [ -81.967677645156812, 28.848905625331497 ], [ -81.967660654675342, 28.848795110432285 ], [ -81.967653633234306, 28.848723325800265 ], [ -81.967643351324881, 28.848633148681238 ], [ -81.96763991314387, 28.848530777643813 ], [ -81.967643430027167, 28.848377987428314 ], [ -81.967648701689242, 28.848168665459905 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rabbit Run Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963415945893658, 28.850847113110827 ], [ -81.963648751988643, 28.850930583632554 ], [ -81.963737249706114, 28.850964986295605 ], [ -81.963842665428459, 28.851001683507036 ], [ -81.963963701848925, 28.851037239802078 ], [ -81.964101659786763, 28.851073946440028 ], [ -81.964272159981121, 28.851101495075582 ], [ -81.964425741809293, 28.851122161643005 ], [ -81.964589737533885, 28.851142832586195 ], [ -81.964765445155976, 28.851168088310359 ], [ -81.964938549908112, 28.851195635884313 ], [ -81.965002324927113, 28.851205966772692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rabbit Run Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965002324927113, 28.851205966772692 ], [ -81.965129008598296, 28.851221659237698 ], [ -81.965256558205851, 28.851240792298547 ], [ -81.965384978497937, 28.851258395153085 ], [ -81.96551166190784, 28.851275235893468 ], [ -81.965561992951564, 28.851275248809905 ], [ -81.965605526183268, 28.851268344697466 ], [ -81.965652242649583, 28.85125540857069 ], [ -81.965709522767597, 28.851223338128431 ], [ -81.965754911162477, 28.851184956611927 ], [ -81.965791988286568, 28.851132447370343 ], [ -81.965836268675957, 28.851053773091031 ], [ -81.965893570544793, 28.850961348260917 ], [ -81.966004694918709, 28.85079712705463 ], [ -81.966164422465326, 28.850599302613627 ], [ -81.966329102029235, 28.850400185312701 ], [ -81.966573416743046, 28.85010578973931 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rabbit Run Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966573416743046, 28.85010578973931 ], [ -81.966751152857952, 28.849890016789345 ], [ -81.966832656511642, 28.849775501871814 ], [ -81.96688710387437, 28.849675705862587 ], [ -81.966937735602372, 28.849556483150465 ], [ -81.966967354992491, 28.849454616514265 ], [ -81.966986914565126, 28.84933888076224 ], [ -81.966989554974603, 28.849221997625559 ], [ -81.966980476738215, 28.849122299628448 ], [ -81.966966194117603, 28.84901343201982 ], [ -81.966953212806246, 28.848902273773785 ], [ -81.966936984762583, 28.848775070825383 ], [ -81.966919180563451, 28.848631703577485 ], [ -81.966893722428978, 28.848390028212634 ], [ -81.966872923250122, 28.848309043836952 ], [ -81.966856020229699, 28.848258045848414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pheasant Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964070811294732, 28.850280048261915 ], [ -81.964302352114174, 28.850360085855154 ], [ -81.964436404896503, 28.850395646089936 ], [ -81.964587376274793, 28.850434646632927 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pheasant Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964587376274793, 28.850434646632927 ], [ -81.964653750465132, 28.85045529082268 ], [ -81.964817736387957, 28.850498879146677 ], [ -81.964988231054932, 28.850543614896143 ], [ -81.965144406532005, 28.850590638570509 ], [ -81.965269342329449, 28.85064223770091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sassafras Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964587376274793, 28.850434646632927 ], [ -81.96463328050713, 28.850326427172224 ], [ -81.964667173567975, 28.850268008195485 ], [ -81.964741055419751, 28.850166538982357 ], [ -81.964832207106667, 28.850047386352717 ], [ -81.9649129378884, 28.849948856742195 ], [ -81.965006691315082, 28.84983887299806 ], [ -81.965104349948561, 28.849720865997014 ], [ -81.965216332689991, 28.849582236827487 ], [ -81.965324981552939, 28.849445748774947 ], [ -81.965393421320186, 28.849362265250726 ], [ -81.965455923745651, 28.849285502341427 ], [ -81.965502796850444, 28.849239677257504 ], [ -81.965548362477364, 28.849205312006994 ], [ -81.965593141609276, 28.849190655604176 ], [ -81.965638179676432, 28.849180123692339 ], [ -81.965695450205146, 28.849176701450798 ], [ -81.96580738382923, 28.849185897422799 ], [ -81.965906303044193, 28.849184776643671 ], [ -81.965981798448823, 28.849179065244865 ], [ -81.966105452767977, 28.849165345371553 ], [ -81.966201772074328, 28.849157349051797 ], [ -81.966262946651611, 28.849152779818851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Netherwood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963262409454344, 28.852843588805442 ], [ -81.963343723408954, 28.852862579281922 ], [ -81.963567152566213, 28.852912296636525 ], [ -81.963720080948136, 28.852947672304808 ], [ -81.963858724999056, 28.852975340976784 ], [ -81.96398020081979, 28.853000584018023 ], [ -81.964119841073398, 28.853025697360195 ], [ -81.964246980997217, 28.853049854396311 ], [ -81.964365423602473, 28.853068220717091 ], [ -81.964486470678366, 28.853083149839634 ], [ -81.964615325344468, 28.853101518693805 ], [ -81.964747341350034, 28.853118431934089 ], [ -81.964893297848207, 28.853139182585078 ], [ -81.965050048633074, 28.853160074842773 ], [ -81.965197125882369, 28.853179592907637 ], [ -81.965431409516725, 28.853207155685361 ], [ -81.965515831070718, 28.853221741499944 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Netherwood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961663107272372, 28.852570375924383 ], [ -81.961685875557009, 28.852600366926332 ], [ -81.961721117382822, 28.8526261603457 ], [ -81.96175799060461, 28.852644315303756 ], [ -81.961826318592045, 28.852663529476697 ], [ -81.961914169895351, 28.852685518326165 ], [ -81.962075774852906, 28.852721851153252 ], [ -81.962236295231889, 28.852759139023 ], [ -81.96231763998064, 28.852777306322121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Netherwood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96231763998064, 28.852777306322121 ], [ -81.962430438182068, 28.852805986108024 ], [ -81.96253130561017, 28.852828932833884 ], [ -81.962636514235697, 28.852844239970974 ], [ -81.962749320493785, 28.852845227744211 ], [ -81.962879485140064, 28.852838578597947 ], [ -81.962993380172051, 28.852830014664494 ], [ -81.963101850409132, 28.852830044504618 ], [ -81.963172354277162, 28.852832928672612 ], [ -81.963262409454344, 28.852843588805442 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belcherry Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966087279818339, 28.856109751288333 ], [ -81.966201838037776, 28.855797010632628 ], [ -81.96624950251362, 28.855651798455355 ], [ -81.966249034190128, 28.855604408381748 ], [ -81.966232513285263, 28.855560734474551 ], [ -81.966203629254878, 28.855518541745209 ], [ -81.966164038154147, 28.855481696979705 ], [ -81.966123894171361, 28.855452573086176 ], [ -81.966069313366148, 28.855422691206044 ], [ -81.965977493415792, 28.85538523945953 ], [ -81.965866969575728, 28.855338799548871 ], [ -81.965774352949964, 28.855296521934328 ], [ -81.96566462908676, 28.855245924240069 ], [ -81.965542201581641, 28.855200980648881 ], [ -81.965399245593716, 28.855166496591053 ], [ -81.965281238587281, 28.855140492380499 ], [ -81.965211821645326, 28.855119084372934 ], [ -81.965171913765673, 28.855096155481871 ], [ -81.965125606529696, 28.855048162494231 ], [ -81.965099052210249, 28.855007516681365 ], [ -81.965088652918183, 28.854963205389655 ], [ -81.965086934721057, 28.854909728033206 ], [ -81.965099100584339, 28.854863894101964 ], [ -81.965113001636453, 28.85480889320128 ], [ -81.965133850611963, 28.854738614469788 ], [ -81.965180761724554, 28.854587364227402 ], [ -81.965214642751903, 28.854470297124347 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belcherry Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96316246009934, 28.853403568140962 ], [ -81.963202535952931, 28.853452633849134 ], [ -81.963240705985257, 28.853480146562294 ], [ -81.9632858218839, 28.853504604153358 ], [ -81.963329204099097, 28.853519132289964 ], [ -81.963529640697459, 28.8535634963634 ], [ -81.963724003153331, 28.853604038138343 ], [ -81.963902747766269, 28.853639991726247 ], [ -81.964060668460377, 28.853672884301172 ], [ -81.964222931117575, 28.853695846175071 ], [ -81.964386062968245, 28.853718808084238 ], [ -81.96457609230626, 28.853745597253557 ], [ -81.964802566717381, 28.853774687567171 ], [ -81.965076765876873, 28.853810663680843 ], [ -81.965392201611238, 28.85385225047888 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sebastion Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96231763998064, 28.852777306322121 ], [ -81.962342601246959, 28.852741024408861 ], [ -81.962389264841335, 28.852678967902619 ], [ -81.962441354559047, 28.852610225912375 ], [ -81.962553123105906, 28.852484204164657 ], [ -81.962689842128484, 28.852347686420064 ], [ -81.962844999991972, 28.852215947732727 ], [ -81.963000154734814, 28.852086117238908 ], [ -81.963114081214485, 28.851989700248897 ], [ -81.963246450000653, 28.85187991784732 ], [ -81.963361461712466, 28.851779680580872 ], [ -81.963426563061276, 28.851720492651147 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sebastion Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963426563061276, 28.851720492651147 ], [ -81.963525299295682, 28.851634574006074 ], [ -81.963671770626945, 28.851519065369718 ], [ -81.963848626387005, 28.85136250263675 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Overland Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961448775580507, 28.852860234293892 ], [ -81.961498919950927, 28.852774304099253 ], [ -81.961545226814877, 28.852697222596426 ], [ -81.961609480365439, 28.852590287120318 ], [ -81.961626839646812, 28.852580361307925 ], [ -81.961663107272372, 28.852570375924383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Overland Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961663107272372, 28.852570375924383 ], [ -81.961658345340808, 28.852543349619978 ], [ -81.961659219675511, 28.852526446984633 ], [ -81.961670183650483, 28.852502481275607 ], [ -81.961712952075416, 28.852445523719599 ], [ -81.961766767983249, 28.85237416489209 ], [ -81.961839473909848, 28.852285375261427 ], [ -81.96193279837675, 28.852174629322572 ], [ -81.962046733667094, 28.852051474322238 ], [ -81.962132455575784, 28.851964598385994 ], [ -81.962251810991958, 28.851850040096878 ], [ -81.962406966591956, 28.851724029737593 ], [ -81.962555613112301, 28.85159419972873 ], [ -81.962691238052031, 28.851481554855852 ], [ -81.962793227643502, 28.851401368189386 ], [ -81.962827941895, 28.851383233339636 ], [ -81.962864823078519, 28.851378469442089 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Highridge Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965214642751903, 28.854470297124347 ], [ -81.965456734689269, 28.854517341741495 ], [ -81.965636348166271, 28.854557496189152 ], [ -81.965810752069018, 28.854610253370158 ], [ -81.965959002389994, 28.854662742931087 ], [ -81.966097077103015, 28.854722626856361 ], [ -81.966263663890345, 28.854796009071705 ], [ -81.966422442703418, 28.854870534153267 ], [ -81.966571525336846, 28.85493757652489 ], [ -81.966710065229137, 28.855000095569466 ], [ -81.966996391787063, 28.85512048863318 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fisher Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964802755442747, 28.861106597755299 ], [ -81.964835648133175, 28.860840730718227 ], [ -81.964844369640787, 28.860716972055219 ], [ -81.964853087004201, 28.860599325597125 ], [ -81.964870496264481, 28.860445010863963 ], [ -81.964879217718575, 28.860315142689164 ], [ -81.964877529585209, 28.860173047370139 ], [ -81.964864559601111, 28.860034004298647 ], [ -81.964841173895891, 28.859901071607766 ], [ -81.964811713256296, 28.859771190716206 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "French Oak Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971934807321617, 28.860093943564792 ], [ -81.971888740569568, 28.85996759506607 ], [ -81.971779377303335, 28.859693848140395 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burnett Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97731352167051, 28.863074346758349 ], [ -81.977274387000918, 28.862847599250454 ], [ -81.977267900404314, 28.86274732961575 ], [ -81.977261420779854, 28.862615546109566 ], [ -81.97726470146911, 28.862500953149897 ], [ -81.977287512931724, 28.862360581064909 ], [ -81.977309352503397, 28.862220834105202 ], [ -81.977340064777977, 28.862083714345395 ], [ -81.977366056786849, 28.861942440472212 ], [ -81.977403858181916, 28.861765848790078 ], [ -81.977434565416488, 28.861641196135245 ], [ -81.977455836339786, 28.861508231661453 ], [ -81.977465311009652, 28.861350334532101 ], [ -81.977472432963324, 28.861161271414392 ], [ -81.977472938135989, 28.861119767308914 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burnett Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977472938135989, 28.861119767308914 ], [ -81.977474835655116, 28.860963896372795 ], [ -81.977474860656855, 28.860849626759435 ], [ -81.977489054008288, 28.860702117733506 ], [ -81.977517406561603, 28.860562921303089 ], [ -81.977563017459687, 28.860311273565507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Emory Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97841471401712, 28.862946578472364 ], [ -81.978352388776486, 28.86269912326242 ], [ -81.978335732611157, 28.862596806508321 ], [ -81.978316697814648, 28.862458798728127 ], [ -81.978309559697607, 28.862332687042624 ], [ -81.978309560554152, 28.86218278184953 ], [ -81.978319078505706, 28.862047153548033 ], [ -81.978333356365482, 28.861887730448533 ], [ -81.978369047630025, 28.861716410315069 ], [ -81.978399981668474, 28.861516535984194 ], [ -81.978437372085878, 28.861252466441272 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Braddock Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979575182192733, 28.862917600808291 ], [ -81.979503669772726, 28.862667475709937 ], [ -81.979473314120298, 28.862571974806034 ], [ -81.979436455925281, 28.862445917269905 ], [ -81.979393326548021, 28.862306353068384 ], [ -81.979356233924179, 28.862189980801702 ], [ -81.979322571867215, 28.862059104514049 ], [ -81.979301357129529, 28.861934444309508 ], [ -81.979294299338619, 28.86181601760255 ], [ -81.979291972883942, 28.861651884504681 ], [ -81.979331158572748, 28.861389556442674 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bonifay Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980679009156802, 28.863140209753045 ], [ -81.980683321485998, 28.862965113772663 ], [ -81.980673037275722, 28.862852907173007 ], [ -81.980653535943418, 28.862726373356828 ], [ -81.980612885970984, 28.862561641941355 ], [ -81.980566811200987, 28.862411231994592 ], [ -81.980509884423327, 28.862279919519384 ], [ -81.980463803564987, 28.862162932679702 ], [ -81.980412301751727, 28.862029233453903 ], [ -81.980360798700048, 28.861902695793752 ], [ -81.980320965766921, 28.86174137780722 ], [ -81.980309200322921, 28.861552311768197 ], [ -81.980306923877365, 28.861498624333006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bonifay Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980306923877365, 28.861498624333006 ], [ -81.98030215160918, 28.861386101783324 ], [ -81.980292740220534, 28.861236510085618 ], [ -81.98028569115526, 28.861072376294178 ], [ -81.980279354647294, 28.860912667503644 ], [ -81.980274584113616, 28.860860777085367 ], [ -81.980262140273908, 28.860810591792369 ], [ -81.980228405196215, 28.860762604073841 ], [ -81.98017955518749, 28.860723318638343 ], [ -81.98010097522635, 28.860686853882218 ], [ -81.979995478223373, 28.860667195891025 ], [ -81.979801955303714, 28.86064223525355 ], [ -81.979504592419218, 28.860600637130265 ], [ -81.979235550861205, 28.86055904364947 ], [ -81.978966508917225, 28.860515371624825 ], [ -81.97870926746242, 28.860477933156293 ], [ -81.978414267455435, 28.860434255899229 ], [ -81.978109825055427, 28.860388498446614 ], [ -81.977828983504708, 28.860344821320187 ], [ -81.977663507108247, 28.86032411481365 ], [ -81.977563017459687, 28.860311273565507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ardsley Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977472938135989, 28.861119767308914 ], [ -81.977589609765261, 28.86112390950964 ], [ -81.977741488844075, 28.861140539040111 ], [ -81.977965690282318, 28.861177973919794 ], [ -81.978151150488671, 28.861206509902821 ], [ -81.978312614552692, 28.861232048803192 ], [ -81.978437372085878, 28.861252466441272 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ardsley Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978437372085878, 28.861252466441272 ], [ -81.978477815466903, 28.861259085033588 ], [ -81.978657178053481, 28.861284045313159 ], [ -81.9788058603515, 28.861306921591748 ], [ -81.978992302405487, 28.8613381174682 ], [ -81.979162225577738, 28.86136099578297 ], [ -81.979320347355284, 28.861388029878732 ], [ -81.979331158572748, 28.861389556442674 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ardsley Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979331158572748, 28.861389556442674 ], [ -81.979497350851616, 28.861412989578334 ], [ -81.979636590340917, 28.861435863493927 ], [ -81.979804156349061, 28.861458743347875 ], [ -81.979992958674529, 28.861483703274459 ], [ -81.980115154852342, 28.861501651174862 ], [ -81.980190027104385, 28.861505868822181 ], [ -81.980306923877365, 28.861498624333006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abaco Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968908647173834, 28.858828178813368 ], [ -81.968990010060438, 28.858832769616491 ], [ -81.969081997328416, 28.858835082695343 ], [ -81.969214331180154, 28.858850773517247 ], [ -81.96952673130653, 28.858875291864507 ], [ -81.969679461810244, 28.858884493877461 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abaco Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969679461810244, 28.858884493877461 ], [ -81.969846078215994, 28.858887585725867 ], [ -81.970050880799491, 28.85888610489771 ], [ -81.97021229350942, 28.85887850011677 ], [ -81.970385856780936, 28.858864787419094 ], [ -81.970496938693259, 28.858854117779856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deauville Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96124372779542, 28.85325849793324 ], [ -81.961553854066608, 28.853309311932009 ], [ -81.961677933820624, 28.853332265935578 ], [ -81.961840193639645, 28.853362870493616 ], [ -81.961973817619267, 28.853388118790814 ], [ -81.962084015031181, 28.853408777537513 ], [ -81.96222979030459, 28.853428680145129 ], [ -81.962343461191026, 28.853440936488372 ], [ -81.962466503623546, 28.853453795387615 ], [ -81.962614884220244, 28.853468353051142 ], [ -81.962794502893658, 28.853485972608087 ], [ -81.962883882612914, 28.853486763392134 ], [ -81.962970661388752, 28.853475327164965 ], [ -81.963035749170231, 28.853457774503827 ], [ -81.963110386976808, 28.853428763354056 ], [ -81.96316246009934, 28.853403568140962 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Market Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992705558022735, 28.649687266236143 ], [ -81.992607501714375, 28.649890750954835 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 311 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120965461898265, 28.710409414924545 ], [ -82.121016962485854, 28.710378132455542 ], [ -82.121057984638682, 28.710339050539343 ], [ -82.121102209344713, 28.710282216997424 ], [ -82.12120710831509, 28.710109874976343 ], [ -82.121383742887616, 28.709723539940143 ], [ -82.12172464215854, 28.709002917359708 ], [ -82.122301114993888, 28.707832909660002 ], [ -82.122781533882673, 28.706887574238017 ], [ -82.12322788626139, 28.70604086420439 ], [ -82.123590543968717, 28.705353083271895 ], [ -82.123707966826515, 28.705122959941693 ], [ -82.12385047381413, 28.704849217757754 ], [ -82.123977165424336, 28.704622126598501 ], [ -82.124170179283851, 28.70426523103152 ], [ -82.124821078462219, 28.703032151644084 ], [ -82.125317026602431, 28.702119656989996 ], [ -82.125633156056978, 28.701514079892558 ], [ -82.125837676129265, 28.701092106135491 ], [ -82.126122826679847, 28.700560504902125 ], [ -82.126497835909106, 28.699755110159064 ], [ -82.126605014211606, 28.699552176292109 ], [ -82.126798364107515, 28.699187710409813 ], [ -82.1269874466944, 28.698853392288871 ], [ -82.127095907528329, 28.698636922793575 ], [ -82.12724159310207, 28.698379334543699 ], [ -82.127384188560541, 28.698135440946594 ], [ -82.127477175662847, 28.697968284296749 ], [ -82.12753296977499, 28.697869634675843 ], [ -82.127604254773985, 28.697738101411417 ], [ -82.127718925105512, 28.69752162466855 ], [ -82.127814977183093, 28.697321598491929 ], [ -82.127938918881128, 28.697066768408625 ], [ -82.128078352995644, 28.696781795798117 ], [ -82.128270501820111, 28.696420085425519 ], [ -82.128465748555982, 28.696052894708565 ], [ -82.128750849839832, 28.695502114059835 ], [ -82.128884137029772, 28.695271924936439 ], [ -82.129039030533221, 28.694932159882701 ], [ -82.129221837269284, 28.69455676317941 ], [ -82.129444997306209, 28.694162155200619 ], [ -82.129652620735996, 28.693762084482184 ], [ -82.129835495520211, 28.693446941643362 ], [ -82.129968736156187, 28.69318388320384 ], [ -82.130123718905736, 28.692920804765347 ], [ -82.130213597015, 28.692759126229788 ], [ -82.130279214357458, 28.692636856586311 ], [ -82.130353055259377, 28.69250154038853 ], [ -82.130458407049503, 28.692293285799199 ], [ -82.130591623275549, 28.692013794416873 ], [ -82.130774468417655, 28.691679477579676 ], [ -82.130817810546972, 28.691564404355951 ], [ -82.131276450568464, 28.690709439506076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 533", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065618557971149, 28.748016189679156 ], [ -82.065618559947907, 28.748016075985586 ], [ -82.065630953409695, 28.747369474836614 ], [ -82.065638241222842, 28.746545009346896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 533", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065638241222842, 28.746545009346896 ], [ -82.065643106032667, 28.74601477428709 ], [ -82.065642521963269, 28.745078232186405 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 533A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066732538307164, 28.746550748349375 ], [ -82.066048535993502, 28.746541752442567 ], [ -82.065638241222842, 28.746545009346896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060336043098545, 28.753304774455554 ], [ -82.060282451465284, 28.75329495914362 ], [ -82.060187922623342, 28.753276637581525 ], [ -82.06003310400132, 28.753247192408349 ], [ -82.059899870223191, 28.753220361575362 ], [ -82.059812781901655, 28.753199410757158 ], [ -82.059756210321567, 28.753179760369871 ], [ -82.05973022763304, 28.753171358473214 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060336043098545, 28.753304774455554 ], [ -82.060366742617674, 28.753201061187522 ], [ -82.060439670045014, 28.752976131802331 ], [ -82.060569037593439, 28.752654571714874 ], [ -82.060670525237256, 28.752445587968442 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060345905557497, 28.755093242021665 ], [ -82.060271203490359, 28.754754524135883 ], [ -82.060255094356251, 28.754629495272905 ], [ -82.060235181901319, 28.754442491494174 ], [ -82.060226583188026, 28.754250495631368 ], [ -82.060229361505407, 28.75405507137501 ], [ -82.060245438061173, 28.753860483135824 ], [ -82.060262770409011, 28.753668598583584 ], [ -82.060301747789879, 28.753470104057374 ], [ -82.060336043098545, 28.753304774455554 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060740423485228, 28.756478219740753 ], [ -82.060673501614403, 28.756240248747936 ], [ -82.060576722305512, 28.755906827535373 ], [ -82.06047728840791, 28.755557085386972 ], [ -82.060345905557497, 28.755093242021665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060740423485228, 28.756478219740753 ], [ -82.060493693938895, 28.756482847594476 ], [ -82.059825684563776, 28.756496331555191 ], [ -82.058432274677358, 28.756523382598797 ], [ -82.057405328256593, 28.756540377116519 ], [ -82.055194563071296, 28.756581765176378 ], [ -82.054080563454576, 28.756599917136171 ], [ -82.053960679084511, 28.756598742533729 ], [ -82.053783987626971, 28.756593442119346 ], [ -82.053525037047493, 28.756582806555532 ], [ -82.053296545847644, 28.756561420206907 ], [ -82.053071099340031, 28.756534660800529 ], [ -82.052827365266424, 28.756491802584023 ], [ -82.052571442025979, 28.756438211012085 ], [ -82.052185670543551, 28.756347506361919 ], [ -82.051520056699388, 28.756185691239168 ], [ -82.0511601210317, 28.756100709101815 ], [ -82.051022503971609, 28.756075110044922 ], [ -82.050884886978324, 28.7560495108476 ], [ -82.050732715153742, 28.756025081770883 ], [ -82.050610979099318, 28.756008802789797 ], [ -82.050464106130207, 28.755992533824923 ], [ -82.050331787882087, 28.755983253239236 ], [ -82.050126699107565, 28.755975166656114 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 32nd Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050126699107565, 28.755975166656114 ], [ -82.050086829716676, 28.757938074354275 ], [ -82.050029288685764, 28.760193166268074 ], [ -82.049818989322361, 28.765070368809102 ], [ -82.049579905483341, 28.765922644215681 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050126699107565, 28.755975166656114 ], [ -82.049872651002133, 28.755960102751061 ], [ -82.049557746964012, 28.755959050732123 ], [ -82.049175363070219, 28.755956854508394 ], [ -82.045614046324005, 28.755951782797286 ], [ -82.044012822071153, 28.755944566776559 ], [ -82.042416864205691, 28.755945066638525 ], [ -82.038984417186199, 28.75593988975027 ], [ -82.038166247957022, 28.755938570443888 ], [ -82.03632799938984, 28.755931329453173 ], [ -82.034106960054828, 28.755918773064273 ], [ -82.029849101666613, 28.755901020519616 ], [ -82.028486610944128, 28.755897808263803 ], [ -82.028140113448998, 28.755897325463739 ], [ -82.027370940277848, 28.755906629699957 ], [ -82.026921077622703, 28.755908271806927 ], [ -82.026158956267139, 28.755905307992499 ], [ -82.02541447453028, 28.755902335777655 ], [ -82.025133506080877, 28.755894725801017 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 50th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02053196406581, 28.755858875954612 ], [ -82.020528476072585, 28.756118726025647 ], [ -82.020533022802098, 28.759002533314064 ], [ -82.020543442472245, 28.761490706654588 ], [ -82.020583318734282, 28.762042654664441 ], [ -82.020593347713643, 28.762489473485765 ], [ -82.020543711133854, 28.762892495282607 ], [ -82.020567471677126, 28.763827719139204 ], [ -82.020603619308645, 28.764197902053962 ], [ -82.020603747976679, 28.76487251208318 ], [ -82.020554360023951, 28.766572187259488 ], [ -82.020624052265404, 28.767036518253743 ], [ -82.020544681836853, 28.767956454197858 ], [ -82.020495063631927, 28.768464609954581 ], [ -82.020435494101008, 28.768946483524765 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 54th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01354089454226, 28.755860585795041 ], [ -82.013537528394707, 28.756684847437477 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018502219440066, 28.755568862885191 ], [ -82.018222843550944, 28.7557241184922 ], [ -82.017920603016108, 28.755829899592481 ], [ -82.016678687074602, 28.755849761570872 ], [ -82.015825270139985, 28.755847235569192 ], [ -82.015276506576484, 28.755857788177646 ], [ -82.014752546999944, 28.755860467800584 ], [ -82.014034090165168, 28.755862287402426 ], [ -82.01354089454226, 28.755860585795041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01354089454226, 28.755860585795041 ], [ -82.01309334648586, 28.755858003023384 ], [ -82.012095046456068, 28.755842349477284 ], [ -82.011034228443705, 28.755836312881147 ], [ -82.008346957846229, 28.755832114437368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 500", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008346957846229, 28.755832114437368 ], [ -82.008341420182362, 28.757131861722225 ], [ -82.008339323490688, 28.758208350738911 ], [ -82.008325587785222, 28.759564990058625 ], [ -82.008315477638135, 28.759614888789834 ], [ -82.008284992953591, 28.759647509252638 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995759743067822, 28.757809962190809 ], [ -81.995899702425078, 28.755784420902629 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991444749224442, 28.756602733117578 ], [ -81.991227609063657, 28.756532037715399 ], [ -81.990987743635714, 28.756424722549475 ], [ -81.990795994274166, 28.756319900680904 ], [ -81.990428894723749, 28.756052134462596 ], [ -81.990169764402836, 28.75591393370761 ], [ -81.989884721520667, 28.755827556955886 ], [ -81.989260161535768, 28.755764548976504 ], [ -81.987995908992787, 28.755758318402243 ], [ -81.987447139147122, 28.755755645947431 ], [ -81.986749520712479, 28.755750331783652 ], [ -81.985477330288745, 28.755740580381566 ], [ -81.981055434638989, 28.755699803818814 ], [ -81.980264401353466, 28.755696510187963 ], [ -81.977463614311432, 28.755668112396101 ], [ -81.976772161220666, 28.755662583544645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Preston Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012285687968088, 28.927224784938662 ], [ -82.012282283192278, 28.926101318313371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parr Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010024096239036, 28.926087141656765 ], [ -82.0102625261231, 28.926088013416059 ], [ -82.010872746776244, 28.926091523024052 ], [ -82.011374117090241, 28.926096734080463 ], [ -82.011661685172868, 28.926096959672559 ], [ -82.012282283192278, 28.926101318313371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parr Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012282283192278, 28.926101318313371 ], [ -82.013143501923423, 28.926106532429525 ], [ -82.0136327604896, 28.926108249738832 ], [ -82.014225289739016, 28.926113482790274 ], [ -82.014349608758479, 28.926114352544058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Campbell Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014348798188365, 28.927232290242436 ], [ -82.014349608758479, 28.926114352544058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parr Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014349608758479, 28.926114352544058 ], [ -82.014443851499692, 28.926114342846763 ], [ -82.015063446681268, 28.926118687869867 ], [ -82.015419364214665, 28.926121296348992 ], [ -82.015524977961803, 28.92612839923731 ], [ -82.015621888081284, 28.926140677681929 ], [ -82.015719141056735, 28.926161835507052 ], [ -82.015827426263442, 28.926194458379566 ], [ -82.015916659322144, 28.926231492859099 ], [ -82.016071069156496, 28.926308211751095 ], [ -82.016191421267081, 28.926383191192951 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01719109502254, 28.922303302881097 ], [ -82.017201357805021, 28.922079203793409 ], [ -82.017176787566427, 28.921852560016799 ], [ -82.017152898709043, 28.921710834826893 ], [ -82.017131770754389, 28.921633111850529 ], [ -82.017098732223715, 28.921525616370996 ], [ -82.017066315611487, 28.92144604415968 ], [ -82.017028528854709, 28.921358037933611 ], [ -82.016968144756504, 28.921237394795771 ], [ -82.016930249802712, 28.921171058996332 ], [ -82.016885124320694, 28.921096092698654 ], [ -82.016805905823418, 28.92098055515244 ], [ -82.016658503683104, 28.920790935490519 ], [ -82.016486040917044, 28.920611022823216 ], [ -82.016336641830122, 28.920473443865472 ], [ -82.016216654518217, 28.920379258156871 ], [ -82.016086985211103, 28.920285600397794 ], [ -82.015935589585325, 28.920184183443705 ], [ -82.015802240744947, 28.920102169959566 ], [ -82.015676915297036, 28.920028974484421 ], [ -82.015554598487327, 28.919966364295767 ], [ -82.015394183415253, 28.919888762035391 ], [ -82.015200685414257, 28.91980499147839 ], [ -82.015132509220848, 28.919772363722632 ], [ -82.015032250823694, 28.919718570612353 ], [ -82.014880855605028, 28.919621561982492 ], [ -82.014761544954169, 28.919531607561282 ], [ -82.014633204559686, 28.919411666159132 ], [ -82.014530567703019, 28.919298804091014 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014530567703019, 28.919298804091014 ], [ -82.014458178601572, 28.919193932266477 ], [ -82.014400692314936, 28.919107785128507 ], [ -82.014334686520826, 28.918987928141874 ], [ -82.014279323753314, 28.918858706906732 ], [ -82.014213312343941, 28.918686411095543 ], [ -82.014134524637868, 28.9184804031316 ], [ -82.014085549399553, 28.918358673831808 ], [ -82.014040564066832, 28.918240387275809 ], [ -82.013989420494482, 28.91811426216486 ], [ -82.013941682194158, 28.918014722860285 ], [ -82.013872619993336, 28.917882985390861 ], [ -82.013815134190551, 28.917791222090266 ], [ -82.013734227963496, 28.917663875383024 ], [ -82.013629444564486, 28.917512751819782 ], [ -82.013593348543395, 28.917460714460145 ], [ -82.013557949048717, 28.917409914071783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013138108280287, 28.916869839170886 ], [ -82.013061468377515, 28.916798675851197 ], [ -82.012962689415019, 28.916726041077048 ], [ -82.012835362433307, 28.916647550221768 ], [ -82.012751148837779, 28.916606103652768 ], [ -82.012681752023354, 28.916573233832995 ], [ -82.012680033153913, 28.916572420116022 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012476955575238, 28.916503698565247 ], [ -82.012370186626654, 28.916477360002478 ], [ -82.012224822568925, 28.916453557449856 ], [ -82.012062418892327, 28.916442105932017 ], [ -82.011863926219348, 28.916440359648831 ], [ -82.01174462952649, 28.91644036870564 ], [ -82.011474640143391, 28.916443200606693 ], [ -82.011145140625672, 28.916443945132492 ], [ -82.011096250989468, 28.916443767604093 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008991796238675, 28.916438805172621 ], [ -82.008648278861401, 28.916439282800297 ], [ -82.008458360758169, 28.916439294972815 ], [ -82.008245832138712, 28.91644129502712 ], [ -82.008033304391247, 28.916441306986126 ], [ -82.007655509633281, 28.916436236658146 ], [ -82.007620540427098, 28.916436238495642 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cumberland Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00899680821216, 28.916865450471988 ], [ -82.008991796238675, 28.916438805172621 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010951460835187, 28.916443241985807 ], [ -82.010802290196139, 28.916437797223036 ], [ -82.010547657768541, 28.916438698791222 ], [ -82.010261948836558, 28.916437836325191 ], [ -82.009992279285115, 28.916439621274161 ], [ -82.009565219932753, 28.916439650502785 ], [ -82.008991796238675, 28.916438805172621 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995259700363633, 28.883967514393891 ], [ -81.995314445258316, 28.883777524207659 ], [ -81.995370331442771, 28.883557045272909 ], [ -81.995408520837614, 28.883392301741228 ], [ -81.995467069818886, 28.883090343228709 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995467069818886, 28.883090343228709 ], [ -81.995499809233792, 28.882875941311884 ], [ -81.995519372747395, 28.882727589196779 ], [ -81.995538006512746, 28.882553829137098 ], [ -81.995547323487187, 28.882442360938541 ], [ -81.995560370259327, 28.882238275226225 ], [ -81.995567827260018, 28.882087463904693 ], [ -81.995573372541372, 28.881797400316984 ], [ -81.99556576849298, 28.881536816266575 ], [ -81.995552030547756, 28.881326851117048 ], [ -81.995538071283264, 28.881159647831414 ], [ -81.99548218251428, 28.880706299769113 ], [ -81.995441252733528, 28.880485091859025 ], [ -81.995395524884074, 28.880273395824961 ], [ -81.995330457246496, 28.880044950551628 ], [ -81.99524293375795, 28.879794141773846 ], [ -81.995190790956684, 28.879668736149263 ], [ -81.995105127432439, 28.879485137095905 ], [ -81.995007358025191, 28.87930317610131 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bassinger Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995102371959788, 28.879259202407134 ], [ -81.995441000440678, 28.879102478527368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994551668817579, 28.878661203479844 ], [ -81.994457528160396, 28.878550835367086 ], [ -81.994254055154798, 28.878322872640034 ], [ -81.994038026453353, 28.878087631060652 ], [ -81.993765754203821, 28.877803318382295 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993348020979369, 28.877397815989628 ], [ -81.993238163556455, 28.8772978867487 ], [ -81.99297930935731, 28.877058128820046 ], [ -81.99276046687848, 28.876866815388833 ], [ -81.992335216088549, 28.876510751043341 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hudson Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004616614390798, 28.93254631854396 ], [ -82.005156779247301, 28.933392317774508 ], [ -82.005282923295852, 28.933611098153964 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avery Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002984522999498, 28.921183601385568 ], [ -82.002997221454407, 28.921179132984545 ], [ -82.003351425184547, 28.921059490626689 ], [ -82.003386770883466, 28.921045049537959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ashford Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003386770883466, 28.921045049537959 ], [ -82.003388383786259, 28.920962499321007 ], [ -82.003384826393983, 28.920829161660873 ], [ -82.003377002517311, 28.920510480693768 ], [ -82.003374461367514, 28.920409067150132 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avery Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003386770883466, 28.921045049537959 ], [ -82.003534858917604, 28.92099375530827 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Foley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002400167143534, 28.920472075149437 ], [ -82.002541448025923, 28.920461635373446 ], [ -82.002804764105761, 28.920442768723241 ], [ -82.003266811570143, 28.920411132011719 ], [ -82.003374461367514, 28.920409067150132 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Good Hope Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002400167143534, 28.920472075149437 ], [ -82.002358149119061, 28.920426960901498 ], [ -82.002106509683088, 28.92017428947306 ], [ -82.002009018693883, 28.920072531378217 ], [ -82.001983424341716, 28.920034029762139 ], [ -82.001973081211133, 28.920007140536004 ], [ -82.001970529052301, 28.919968712660616 ], [ -82.001970527770382, 28.919883456475652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eaglemont Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009830533828023, 28.913073414098896 ], [ -82.009860727308507, 28.913040201164662 ], [ -82.009945906846099, 28.912889327551586 ], [ -82.01001383248483, 28.912750789496563 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Braxton Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00925142210005, 28.912979514513172 ], [ -82.009293478606253, 28.91297097245398 ], [ -82.009329067233111, 28.912972868577231 ], [ -82.009375439743252, 28.912985199054077 ], [ -82.009567607524176, 28.913018990917461 ], [ -82.00965043666568, 28.913037370566197 ], [ -82.009724847761674, 28.913045904868959 ], [ -82.009771218644374, 28.913050645084994 ], [ -82.009803572494278, 28.913059182211445 ], [ -82.009830533828023, 28.913073414098896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Braxton Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008942902474402, 28.912827871413036 ], [ -82.009031458901461, 28.912861258095482 ], [ -82.009111580150346, 28.912887224761967 ], [ -82.009193183976677, 28.912921638592703 ], [ -82.009211517781253, 28.912935870254476 ], [ -82.00925142210005, 28.912979514513172 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eaglemont Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009834154978236, 28.913926540343816 ], [ -82.009844100877331, 28.913729556464691 ], [ -82.009863801216895, 28.913408124371937 ], [ -82.009873743923677, 28.913177106727055 ], [ -82.009874756126806, 28.913155012105015 ], [ -82.00986828382986, 28.913127496095896 ], [ -82.009853182743271, 28.913096184717009 ], [ -82.009830533828023, 28.913073414098896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carnegie Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009166301220603, 28.913842033086365 ], [ -82.009168453374301, 28.913788898474571 ], [ -82.009179858136775, 28.913389262205587 ], [ -82.009179183639475, 28.913160751868912 ], [ -82.009181337914924, 28.913120899066843 ], [ -82.00919104166465, 28.913079149152534 ], [ -82.009199663212272, 28.913045938647812 ], [ -82.009209367442878, 28.913022216630853 ], [ -82.009225542487243, 28.912998495099618 ], [ -82.00925142210005, 28.912979514513172 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bellamy Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008687983010461, 28.913791854453375 ], [ -82.008750302584232, 28.913795632208494 ], [ -82.008878653231889, 28.913805938507206 ], [ -82.009139262628111, 28.913837203911203 ], [ -82.009166301220603, 28.913842033086365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bellamy Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009166301220603, 28.913842033086365 ], [ -82.00945926050278, 28.913878782670082 ], [ -82.009654620768245, 28.913906614518631 ], [ -82.009834154978236, 28.913926540343816 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lynnhaven Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008687983010461, 28.913791854453375 ], [ -82.008686399480382, 28.91375097236687 ], [ -82.008681002667132, 28.913677910983619 ], [ -82.008665746970692, 28.913568393777084 ], [ -82.00864012264843, 28.913420887769693 ], [ -82.008632449107466, 28.913371432417012 ], [ -82.00862920957465, 28.913319244642214 ], [ -82.008629205911163, 28.913272751071087 ], [ -82.008632437514123, 28.913224358872565 ], [ -82.008641058883654, 28.913147500677304 ], [ -82.008648604201198, 28.91310575183353 ], [ -82.008665458472322, 28.913045861743441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lynnhaven Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008665458472322, 28.913045861743441 ], [ -82.008699277298007, 28.912959623547476 ], [ -82.008754266439482, 28.912838166491824 ], [ -82.008836816064729, 28.912675136179164 ], [ -82.008892280220138, 28.912560142189093 ], [ -82.008955345525052, 28.912437609909457 ], [ -82.008985006675346, 28.912377007063323 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lynnhaven Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008985006675346, 28.912377007063323 ], [ -82.009031368680112, 28.912278322604514 ], [ -82.009094065247297, 28.912152692691656 ], [ -82.009128986090502, 28.912069717015033 ], [ -82.009186018921881, 28.911922203996859 ], [ -82.009222099055194, 28.911810545086897 ], [ -82.009252361356459, 28.911708107118091 ], [ -82.009274471856003, 28.91160259644294 ], [ -82.009290762693851, 28.911508353127772 ], [ -82.009303559636464, 28.911413085928288 ], [ -82.009316356070698, 28.911288112386377 ], [ -82.009322163222279, 28.911119091838032 ], [ -82.009322149333642, 28.910968510113427 ], [ -82.009322136620895, 28.910807683699087 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008985006675346, 28.912377007063323 ], [ -82.009141379566969, 28.912432031023492 ], [ -82.009215791872137, 28.912460492845486 ], [ -82.009290203111348, 28.912488002702585 ], [ -82.009392654003392, 28.912525951166671 ], [ -82.009499417816244, 28.912560103301793 ], [ -82.009597555197658, 28.91258097050504 ], [ -82.009684906777338, 28.91259235251551 ], [ -82.009767943746084, 28.912598988680259 ], [ -82.009908137949509, 28.912604671625907 ], [ -82.010045094019219, 28.912602764528611 ], [ -82.010193913041249, 28.912602753976046 ], [ -82.010337340167411, 28.912603692866952 ], [ -82.010455965345315, 28.912608428490454 ], [ -82.0105511246622, 28.912615664211817 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011722404454687, 28.912808356240724 ], [ -82.011800754462115, 28.912817072236965 ], [ -82.011900859115173, 28.912825822450834 ], [ -82.012012794800484, 28.912834567976319 ], [ -82.012152093675851, 28.912835649652379 ], [ -82.012233142650516, 28.912833860620434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 673", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.202556367061561, 28.602410190252382 ], [ -82.203364771872074, 28.602286633648319 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200491532981616, 28.602833441686847 ], [ -82.200515471891705, 28.602789285658151 ], [ -82.200540721262229, 28.602751431438083 ], [ -82.200559504116882, 28.602727337485749 ], [ -82.200583522217286, 28.602703384706231 ], [ -82.200609414428385, 28.602683717980806 ], [ -82.200645121276679, 28.602660320055211 ], [ -82.200680104242508, 28.602641785893688 ], [ -82.200720325053098, 28.602624765347688 ], [ -82.200781754059761, 28.602606340163913 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.21381296761831, 28.853049531575945 ], [ -82.214154490180121, 28.85300486990878 ], [ -82.215686784638663, 28.852753644908045 ], [ -82.217184182132073, 28.852502790596386 ], [ -82.218356041843492, 28.852300225825925 ], [ -82.219719103592467, 28.852084436727129 ], [ -82.220132266456631, 28.852021930547433 ], [ -82.220668795900764, 28.851894536123471 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.220668795900764, 28.851894536123471 ], [ -82.220032744769853, 28.851930922343762 ], [ -82.218780141368597, 28.85211904117067 ], [ -82.218221555187014, 28.852194836826492 ], [ -82.216338376399563, 28.852465718574749 ], [ -82.215572896323607, 28.852577972826037 ], [ -82.214491576309527, 28.852750030135471 ], [ -82.213772961562029, 28.852861311117344 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.220668795900764, 28.851894536123471 ], [ -82.221210880056418, 28.851814829621929 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137831952577244, 28.873428519316167 ], [ -82.137899678342578, 28.873392415244243 ], [ -82.139462894229297, 28.872467727038224 ], [ -82.139885664521529, 28.872221597585774 ], [ -82.141418206405234, 28.87134068350046 ], [ -82.142064099050629, 28.870970174763105 ], [ -82.142709982568448, 28.870597076045566 ], [ -82.143282469576903, 28.870268018259548 ], [ -82.144081010349353, 28.869809405554797 ], [ -82.145525403965067, 28.868975090845584 ], [ -82.146648429694878, 28.868328812661225 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 102nd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141477667348397, 28.606628815807884 ], [ -82.143580626197078, 28.606591624932868 ], [ -82.144639909537304, 28.606571754287529 ], [ -82.145049669639988, 28.606571319163706 ], [ -82.145413898399042, 28.606568253204514 ], [ -82.145605108354516, 28.606560012980228 ], [ -82.145687038205608, 28.606543853914545 ], [ -82.145736321171185, 28.606514671018953 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 22nd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141559389864071, 28.607948777939864 ], [ -82.141556292963884, 28.607834501591096 ], [ -82.141545776507925, 28.607673482699767 ], [ -82.141527679506723, 28.607346249792073 ], [ -82.141520011276867, 28.607113806807011 ], [ -82.141513931691222, 28.606969664272917 ], [ -82.141491576699806, 28.606760394166511 ], [ -82.141477667348397, 28.606628815807884 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 102nd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140117578738611, 28.606625259328691 ], [ -82.140243010481456, 28.60662439143071 ], [ -82.141477667348397, 28.606628815807884 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 481 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126443829372363, 28.764298335646338 ], [ -82.126447088740122, 28.76467725412871 ], [ -82.126443152740066, 28.765089040661444 ], [ -82.126444555098672, 28.766258036161663 ], [ -82.12642909782933, 28.766297081929586 ], [ -82.126400334061728, 28.766322480827391 ], [ -82.126374203198978, 28.766338556368364 ], [ -82.126333934127501, 28.766359621295884 ], [ -82.126300745981709, 28.766388925887007 ], [ -82.12628529331667, 28.766431875044638 ], [ -82.12628091238075, 28.766472863120956 ], [ -82.126278755813004, 28.766521653247128 ], [ -82.126285721227802, 28.766789013277133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 681", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165391775855937, 28.574094277524367 ], [ -82.165315036446287, 28.573924128913436 ], [ -82.165291633047474, 28.573841973583363 ], [ -82.1652712981018, 28.573595444429742 ], [ -82.165270247275203, 28.572923292242617 ], [ -82.165268399069163, 28.572340069692029 ], [ -82.165293953064094, 28.571749053725384 ], [ -82.16530856869457, 28.571601674153172 ], [ -82.16531481395802, 28.571540086993771 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 681", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16531481395802, 28.571540086993771 ], [ -82.165320704862523, 28.571481986921782 ], [ -82.165324734612241, 28.571431211629761 ], [ -82.165321948892498, 28.571402203731147 ], [ -82.16530275296563, 28.571385303526576 ], [ -82.165268502129251, 28.571373258127299 ], [ -82.165178339430639, 28.571370434723089 ], [ -82.165086379191237, 28.571369851248708 ], [ -82.165045286627645, 28.571361440595606 ], [ -82.164774946787702, 28.571239389680251 ], [ -82.164484157150156, 28.571169173697971 ], [ -82.164287799432117, 28.571073182516766 ], [ -82.164222340643718, 28.571036909490466 ], [ -82.164193207367674, 28.570994175237718 ], [ -82.164181019596541, 28.570945005816483 ], [ -82.164207222694287, 28.570660567015032 ], [ -82.164197368886818, 28.570553658267499 ], [ -82.164180279797378, 28.570468142889844 ], [ -82.164148731097413, 28.570431828102894 ], [ -82.164095384152446, 28.570395540435218 ], [ -82.163998463140445, 28.570376409984469 ], [ -82.163354062460527, 28.570334415668011 ], [ -82.162143429994529, 28.570276995562995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 127th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.161619599604975, 28.570277674921435 ], [ -82.162143429994529, 28.570276995562995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Osada Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966154940308215, 28.919427904408174 ], [ -81.966154974763825, 28.919341512247126 ], [ -81.966157866936157, 28.919319235280312 ], [ -81.96616923600989, 28.919275946873764 ], [ -81.966180279056928, 28.919251126585998 ], [ -81.966267097255809, 28.919080747994112 ], [ -81.966557883184748, 28.918510943089615 ], [ -81.966572442823932, 28.918482398062249 ], [ -81.966580338026844, 28.918461597586351 ], [ -81.966586293279548, 28.918439626347556 ], [ -81.966589425864257, 28.918409299139025 ], [ -81.966590039753484, 28.918277391663818 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arruda Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965837557543395, 28.917995193650814 ], [ -81.965837570573328, 28.917989903489488 ], [ -81.96583963082449, 28.917307608986945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mission Hills Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965837557543395, 28.917995193650814 ], [ -81.965854641490822, 28.917999769941886 ], [ -81.965885732943761, 28.918008415545959 ], [ -81.965969882245574, 28.918033894338137 ], [ -81.966046198415086, 28.918059710356459 ], [ -81.966129007643232, 28.918090759488305 ], [ -81.966211148306471, 28.91812483019164 ], [ -81.966232701007115, 28.918134330491409 ], [ -81.966353697818832, 28.91819224144793 ], [ -81.966400203746758, 28.918215075806682 ], [ -81.966454750986856, 28.918237813812485 ], [ -81.966489512790346, 28.918250171341427 ], [ -81.966524043356856, 28.918260902865288 ], [ -81.966562300921652, 28.918271087616485 ], [ -81.966590039753484, 28.918277391663818 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avecilla Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96583963082449, 28.917307608986945 ], [ -81.965889241637598, 28.917317767950713 ], [ -81.965928071629051, 28.917326171895343 ], [ -81.965974916431279, 28.917336848042499 ], [ -81.966014468059086, 28.917346321366932 ], [ -81.96606205801794, 28.917358284347735 ], [ -81.966120409776238, 28.91737380417964 ], [ -81.966190919808739, 28.917393829514765 ], [ -81.966241644802949, 28.917409108260884 ], [ -81.966287386006798, 28.917423524943029 ], [ -81.966347417204943, 28.917443580944152 ], [ -81.966390524161483, 28.917457026058401 ], [ -81.966418785997831, 28.917465841364251 ], [ -81.966458634293147, 28.917477859108971 ], [ -81.966494635432852, 28.917487920603119 ], [ -81.966542986223743, 28.917500602734478 ], [ -81.966592341249921, 28.917512584014403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arruda Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965552234953975, 28.919405806063274 ], [ -81.965544799403972, 28.919400556395932 ], [ -81.965536964292298, 28.919394099352886 ], [ -81.96552872565465, 28.919386022583627 ], [ -81.965523070898115, 28.919379473164124 ], [ -81.965517001374238, 28.91937118491256 ], [ -81.965511507474332, 28.91936203150668 ], [ -81.965506933644036, 28.919352430798398 ], [ -81.965503185668624, 28.919341974925597 ], [ -81.965500585345282, 28.919331339791203 ], [ -81.965498973828389, 28.919320180677129 ], [ -81.965498737629289, 28.919290430100492 ], [ -81.965498640953925, 28.919220602261511 ], [ -81.965498468845368, 28.919097187019673 ], [ -81.965499160796796, 28.919073493796738 ], [ -81.965501966587027, 28.919043104274056 ], [ -81.965505960348978, 28.919020766247822 ], [ -81.965510659132676, 28.919000085921365 ], [ -81.965516316556844, 28.918980138506065 ], [ -81.96552456557842, 28.918956992214174 ], [ -81.965542407953876, 28.918914220734987 ], [ -81.965714601068555, 28.918531857233251 ], [ -81.965755423175111, 28.918441016341941 ], [ -81.965801380801608, 28.918338747358018 ], [ -81.965817121608623, 28.918302225509791 ], [ -81.965822709030775, 28.918285889052232 ], [ -81.965826970872882, 28.918271306320744 ], [ -81.965831024485837, 28.918253753175883 ], [ -81.965834311720826, 28.918234000036556 ], [ -81.965836656670703, 28.918207476726081 ], [ -81.965837041897956, 28.918165187990994 ], [ -81.965837502476518, 28.918012860603113 ], [ -81.965837557543395, 28.917995193650814 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arruda Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965499426593098, 28.919782513826291 ], [ -81.965499185573123, 28.919610546011864 ], [ -81.965499070281069, 28.919488968769457 ], [ -81.965499761784528, 28.919481983369206 ], [ -81.965501225454929, 28.91947521923036 ], [ -81.965504090491137, 28.919467072231967 ], [ -81.965508568861566, 28.919458502471798 ], [ -81.965513678499704, 28.91945134587003 ], [ -81.965522216513406, 28.919441247761842 ], [ -81.965552234953975, 28.919405806063274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Toquero Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965552234953975, 28.919405806063274 ], [ -81.965563746570155, 28.919412563612696 ], [ -81.965572349573122, 28.919416692926884 ], [ -81.965582384305847, 28.919420645758166 ], [ -81.965592589543206, 28.919423810927782 ], [ -81.965601314246697, 28.91942588754716 ], [ -81.965613116676437, 28.919427829611362 ], [ -81.96562567626998, 28.919428851526526 ], [ -81.96563858485473, 28.919428961308387 ], [ -81.965724677913073, 28.9194288687669 ], [ -81.965774366944501, 28.919428813795985 ], [ -81.965845969975433, 28.9194287364232 ], [ -81.966024713473161, 28.919428541855392 ], [ -81.966154940308215, 28.919427904408174 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mission Hills Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965031350485475, 28.917907307735035 ], [ -81.965106408873808, 28.91790622379084 ], [ -81.965136149539887, 28.917905940991904 ], [ -81.965156532088571, 28.91790593366089 ], [ -81.965175817264836, 28.917906068604491 ], [ -81.965194383497902, 28.917906327875517 ], [ -81.96522196715712, 28.917906944087058 ], [ -81.96523841557584, 28.917907443715571 ], [ -81.965254416832451, 28.917908027139699 ], [ -81.965270502150531, 28.917908708031742 ], [ -81.965285452187075, 28.917909425621946 ], [ -81.96531739603013, 28.917911235779389 ], [ -81.965343931198746, 28.917913026484676 ], [ -81.965376675734007, 28.917915595666546 ], [ -81.96541126809521, 28.917918742787204 ], [ -81.965444210280793, 28.917922154748659 ], [ -81.965482552588469, 28.917926640021449 ], [ -81.965519027297049, 28.917931422560638 ], [ -81.965570300604881, 28.917939001500866 ], [ -81.965613884555793, 28.917946236478194 ], [ -81.965666554970127, 28.917955967717553 ], [ -81.965702543790485, 28.91796324403019 ], [ -81.965735274552429, 28.917970311069642 ], [ -81.965766716176589, 28.917977503191008 ], [ -81.965799839414714, 28.917985517726397 ], [ -81.965837557543395, 28.917995193650814 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mission Hills Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963665962915215, 28.917927775854864 ], [ -81.964003849416386, 28.917922722128633 ], [ -81.964353050694555, 28.917917497323575 ], [ -81.964658722798731, 28.917912924231562 ], [ -81.965031350485475, 28.917907307735035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reyes Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963223909263107, 28.918648656962269 ], [ -81.963238657876431, 28.918607530726973 ], [ -81.963249947523039, 28.918580262814974 ], [ -81.963262454452689, 28.918553081855976 ], [ -81.963269606578251, 28.918538682262341 ], [ -81.963279148516065, 28.91852055232717 ], [ -81.963290538207517, 28.918500297086858 ], [ -81.963306847693048, 28.918473497933856 ], [ -81.963319241927181, 28.918454590996888 ], [ -81.963331243820647, 28.918437317107983 ], [ -81.963353113609529, 28.918408087781092 ], [ -81.963363514135821, 28.918395079509111 ], [ -81.9633843967258, 28.918370469665074 ], [ -81.963398805068479, 28.918354539946726 ], [ -81.963423972199578, 28.918327463485387 ], [ -81.963444666655349, 28.918304077094444 ], [ -81.963462322575793, 28.91828316667586 ], [ -81.963484114642569, 28.91825602612219 ], [ -81.963501438917277, 28.918233287555253 ], [ -81.963513858052195, 28.918216290768093 ], [ -81.963529429460053, 28.918194137310682 ], [ -81.96354985166758, 28.918163243722066 ], [ -81.963567396291026, 28.918135003002117 ], [ -81.963576221175984, 28.918120103973642 ], [ -81.963585840504464, 28.918103276952714 ], [ -81.963604261872959, 28.918069409744803 ], [ -81.963620306552372, 28.918036978345189 ], [ -81.963633284328111, 28.918008985410349 ], [ -81.963643467961063, 28.917985533877005 ], [ -81.963656434878501, 28.917953384958913 ], [ -81.963665962915215, 28.917927775854864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Feliu Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963223909263107, 28.918648656962269 ], [ -81.963295172896409, 28.918664250132064 ], [ -81.963368507727026, 28.918678144805995 ], [ -81.963465572041329, 28.918693773807668 ], [ -81.963620263555825, 28.918715919438721 ], [ -81.963772973909002, 28.91873477819302 ], [ -81.963932287593551, 28.918751297994334 ], [ -81.964111943618619, 28.918766096060445 ], [ -81.96423922947416, 28.918774138866759 ], [ -81.964408051135408, 28.918781695424606 ], [ -81.964599645152546, 28.918785989670383 ], [ -81.964768247773236, 28.918786412163275 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avecilla Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961394151722331, 28.91728006249107 ], [ -81.961405045992251, 28.917279910432484 ], [ -81.961795769059307, 28.917274486748447 ], [ -81.962166135199922, 28.917269345824717 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980912810835747, 28.871757177765971 ], [ -81.981043730373557, 28.871708311426794 ], [ -81.981154813900957, 28.87167340800919 ], [ -81.981264989320877, 28.871643071829659 ], [ -81.981375009078576, 28.871622842232544 ], [ -81.981446198371387, 28.871609751596111 ], [ -81.981510451122759, 28.871601154333405 ], [ -81.981622191315935, 28.871595636820505 ], [ -81.981823320362579, 28.871592591077953 ], [ -81.981921759192858, 28.871597891020922 ], [ -81.982015371099322, 28.871607985079986 ], [ -81.982147267941826, 28.871629262823898 ], [ -81.982423172126815, 28.871695724227532 ], [ -81.983359708323945, 28.871949089893832 ], [ -81.984149353225604, 28.872166354912899 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979744885228058, 28.872065626038751 ], [ -81.979842662023145, 28.872050888156778 ], [ -81.980074041077955, 28.87201204620462 ], [ -81.980270111422712, 28.871964850545659 ], [ -81.98036682921915, 28.871938956957329 ], [ -81.980557736933818, 28.871881086781372 ], [ -81.980726882734928, 28.87182408662898 ], [ -81.980912810835747, 28.871757177765971 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979025570744753, 28.872116361776435 ], [ -81.979207567354379, 28.872109425305226 ], [ -81.979460780257185, 28.87209553376243 ], [ -81.979540844393256, 28.872087105889463 ], [ -81.979541259562708, 28.872087061740107 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Westmoreland Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979744885228058, 28.872065626038751 ], [ -81.979756774265809, 28.872143284527496 ], [ -81.9797644107162, 28.872312097507752 ], [ -81.979758242505312, 28.872484960636896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976770563130415, 28.875382389646504 ], [ -81.976775268181186, 28.875297169811802 ], [ -81.976771589008848, 28.875092808517998 ], [ -81.976764173026538, 28.87494418178817 ], [ -81.976745599362758, 28.874724517555368 ], [ -81.976738205134978, 28.874475350867733 ], [ -81.976758120396781, 28.874260064957966 ], [ -81.976779255989427, 28.874133301441546 ], [ -81.976832684399, 28.873947528414472 ], [ -81.976899767676144, 28.873777058061723 ], [ -81.976974295023794, 28.873629538114976 ], [ -81.977035154247787, 28.87352900860078 ], [ -81.977100979240944, 28.873431756167609 ], [ -81.977173011093114, 28.873334506563808 ], [ -81.977273602862567, 28.87321977604854 ], [ -81.977508315245075, 28.872949885534709 ], [ -81.977632510650594, 28.872776145405847 ], [ -81.97782378026379, 28.872451605409907 ], [ -81.977908243331441, 28.872276765736913 ], [ -81.977966626123035, 28.872129241639385 ], [ -81.978029068054582, 28.871967507812851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975737488525326, 28.877664892895158 ], [ -81.975804877549209, 28.877589641368679 ], [ -81.975928002584027, 28.877452088663585 ], [ -81.976045989825778, 28.877307857888734 ], [ -81.976152802729615, 28.877159250657286 ], [ -81.976262104004036, 28.876985509251245 ], [ -81.976362717339924, 28.876796465881174 ], [ -81.976437249321336, 28.876636925830891 ], [ -81.976520483379133, 28.876432579837566 ], [ -81.976586328632663, 28.876265388454261 ], [ -81.976623600231534, 28.87615720351695 ], [ -81.976670813121814, 28.876009678117718 ], [ -81.976704365701849, 28.875877452466682 ], [ -81.976742897760417, 28.875688398867194 ], [ -81.976762800417603, 28.875529940895447 ], [ -81.976770563130415, 28.875382389646504 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975470539764899, 28.877968803642737 ], [ -81.975642354237237, 28.877782072926969 ], [ -81.975737488525326, 28.877664892895158 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974625583279419, 28.879021244563784 ], [ -81.974690453888115, 28.878917811540315 ], [ -81.974739440294357, 28.878840864364943 ], [ -81.974795333285797, 28.878758911597572 ], [ -81.974881092031794, 28.87864721371249 ], [ -81.975078220758689, 28.878417675157674 ], [ -81.975470539764899, 28.877968803642737 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bonita Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967039633519477, 28.879630221373798 ], [ -81.967156413467237, 28.879660338170176 ], [ -81.967242218502491, 28.879679788414506 ], [ -81.967482699906142, 28.879742204998323 ], [ -81.967837595210199, 28.87983682110595 ], [ -81.968580043326796, 28.880032949950753 ], [ -81.969373465473794, 28.880236305670135 ], [ -81.969629709782623, 28.88030419899048 ], [ -81.96996741339639, 28.880389517297502 ], [ -81.970282771437638, 28.880455157826823 ], [ -81.970507497939636, 28.880494548704799 ], [ -81.970713603124807, 28.880524100956031 ], [ -81.971063930076539, 28.880558792031042 ], [ -81.971242587576711, 28.880570063231215 ], [ -81.971453611768567, 28.880577809483299 ], [ -81.971826105922062, 28.880576794710723 ], [ -81.972172354646943, 28.880560631938373 ], [ -81.972383834532195, 28.880539816275864 ], [ -81.97260587884189, 28.880514665077598 ], [ -81.972738738953481, 28.88049502109445 ], [ -81.973118700142706, 28.880434991937292 ], [ -81.973511283899668, 28.880366608891102 ], [ -81.97385510944072, 28.880309053641216 ], [ -81.97428763898796, 28.880244570455403 ], [ -81.974391132345175, 28.880242113462675 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965751100410444, 28.872396074424749 ], [ -81.965757057819872, 28.87236945079821 ], [ -81.965759649356102, 28.872347432567672 ], [ -81.96576000117382, 28.872328196466956 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96576000117382, 28.872328196466956 ], [ -81.965754299855433, 28.872265512045754 ], [ -81.965742201053672, 28.872233530448597 ], [ -81.965719722712635, 28.87220002220996 ], [ -81.965697240332602, 28.872175653390304 ], [ -81.965672160714107, 28.87215648567744 ], [ -81.965626328050632, 28.872125384204253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966387349005004, 28.871915550688293 ], [ -81.966392204674975, 28.871912898232186 ], [ -81.966589455010194, 28.87181396758751 ], [ -81.9668541753325, 28.871704394433802 ], [ -81.967144853899086, 28.871573507506959 ], [ -81.967163215282923, 28.871563508171008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965443664017201, 28.872575188404618 ], [ -81.965524963719247, 28.872607186017408 ], [ -81.965578326096889, 28.872640700407182 ], [ -81.965629177347409, 28.872676343566731 ], [ -81.965658140707816, 28.872709245325925 ], [ -81.965716049621363, 28.872785649071638 ], [ -81.965771891091393, 28.872874182820407 ], [ -81.965903431920793, 28.873065462046409 ], [ -81.966307916820483, 28.873676817333926 ], [ -81.966594833930316, 28.874102812828518 ], [ -81.966771076252172, 28.87438800851789 ], [ -81.966892460654691, 28.87461534924892 ], [ -81.966937128982011, 28.874704972423135 ], [ -81.966980549366696, 28.874812081893715 ], [ -81.967058707428862, 28.875007718447133 ], [ -81.967131892140614, 28.875225210199751 ], [ -81.967197211310008, 28.875481795837317 ], [ -81.9672310926302, 28.875620840772537 ], [ -81.967250920092525, 28.875738871256942 ], [ -81.967274985994777, 28.875933006546997 ], [ -81.967287217994354, 28.876149580099192 ], [ -81.967291262584638, 28.876326446744073 ], [ -81.967291199815961, 28.876524970340487 ], [ -81.967282947396285, 28.876687395338813 ], [ -81.967254178783563, 28.876885913725054 ], [ -81.967229519756827, 28.877055554024096 ], [ -81.967180238225907, 28.877275722619263 ], [ -81.967126863708799, 28.877477843244144 ], [ -81.967052979857485, 28.877683567111596 ], [ -81.966966794749496, 28.877896507221251 ], [ -81.966917545740969, 28.878011998753806 ], [ -81.966794444865869, 28.878242979280376 ], [ -81.966654926471435, 28.878506438472865 ], [ -81.966503097354547, 28.878795162496488 ], [ -81.966408718634042, 28.878972004486005 ], [ -81.966361453287576, 28.879077784818787 ], [ -81.966336693617592, 28.879144243058164 ], [ -81.966325450132103, 28.879168100703993 ], [ -81.96632531164073, 28.879168393014993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966458337353629, 28.879199162347206 ], [ -81.96645835069296, 28.879199124453855 ], [ -81.966464012504204, 28.879183723578461 ], [ -81.966507105488205, 28.87908086382285 ], [ -81.96656558229256, 28.878967178460798 ], [ -81.966639441518581, 28.878837255465122 ], [ -81.96676562325959, 28.878599057450007 ], [ -81.966885987056216, 28.878366162504506 ], [ -81.966987380556589, 28.878169976537691 ], [ -81.967091083443322, 28.877963765578496 ], [ -81.967156494966318, 28.877792429058804 ], [ -81.967224218071664, 28.877611066688171 ], [ -81.967282715198394, 28.877421581310649 ], [ -81.967322750217647, 28.877261870079671 ], [ -81.967353550851399, 28.877121104928637 ], [ -81.967378209123694, 28.876953269212336 ], [ -81.967409020679085, 28.876777312459041 ], [ -81.967424454976566, 28.876598645054425 ], [ -81.967439904398688, 28.876384785156905 ], [ -81.967430734816361, 28.876195283238811 ], [ -81.967424629908749, 28.876046389266381 ], [ -81.967409290190659, 28.875921857011129 ], [ -81.967390891693384, 28.875751302083888 ], [ -81.967357120011201, 28.875556380347149 ], [ -81.967311046329442, 28.875366869413014 ], [ -81.967234235745792, 28.8751123797751 ], [ -81.96717893112077, 28.874936402868336 ], [ -81.967120535524799, 28.874803737494183 ], [ -81.967065217465318, 28.874671076456981 ], [ -81.96701166964499, 28.874558551609674 ], [ -81.966958314283758, 28.874453626879774 ], [ -81.966904957608079, 28.874356350944332 ], [ -81.966842915033126, 28.874247051465101 ], [ -81.966551875469904, 28.8737992486327 ], [ -81.966100821096788, 28.873123431760646 ], [ -81.965800414026504, 28.872673558596819 ], [ -81.965774458359689, 28.872621737251411 ], [ -81.965757086818584, 28.872582391522883 ], [ -81.965750890307291, 28.872553976431671 ], [ -81.965753382480699, 28.872525563557684 ], [ -81.965751100410444, 28.872396074424749 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964041133382352, 28.873294988245171 ], [ -81.964182225707418, 28.87322192142026 ], [ -81.964591150069793, 28.872933983369588 ], [ -81.964749711932924, 28.872831669708507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964685116105599, 28.872733862976375 ], [ -81.964592596832091, 28.872792037117947 ], [ -81.964499299249752, 28.872859645465379 ], [ -81.964423540148331, 28.872929566487482 ], [ -81.964163716919018, 28.873161509129488 ], [ -81.964041133382352, 28.873294988245171 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965499184497389, 28.872094007386963 ], [ -81.965393498013285, 28.872029323871068 ], [ -81.965348817516272, 28.871983414910453 ], [ -81.965284285100239, 28.871898155891074 ], [ -81.965221000698023, 28.87179650593184 ], [ -81.96496164726608, 28.871413946018617 ], [ -81.964729391747071, 28.871103206089582 ], [ -81.964084283796083, 28.870244381050249 ], [ -81.963920475883484, 28.870034511083979 ], [ -81.96371802832715, 28.869743950150777 ], [ -81.963619669977092, 28.869584203267038 ], [ -81.963527464204063, 28.869419042356899 ], [ -81.963453708989491, 28.869262008033822 ], [ -81.963392251898938, 28.869115806462549 ], [ -81.963330797854212, 28.868961482328586 ], [ -81.963272438347744, 28.86875301721339 ], [ -81.963238663192413, 28.868598700598731 ], [ -81.963198755128346, 28.868395654310898 ], [ -81.963177304974138, 28.868179076716391 ], [ -81.963164543740476, 28.867825475921428 ], [ -81.963172221478445, 28.86754529662198 ], [ -81.963190049836285, 28.867136150269385 ], [ -81.963190096174344, 28.867005695263892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962975376345355, 28.867002671255126 ], [ -81.962978989172413, 28.867497434037205 ], [ -81.962980104446828, 28.86790769990834 ], [ -81.962997709160405, 28.868130071073917 ], [ -81.96303577300138, 28.868352296277436 ], [ -81.963066461947676, 28.868533681193878 ], [ -81.963134028181059, 28.868796293436343 ], [ -81.963186248631274, 28.8689722704061 ], [ -81.963250770859503, 28.869142840509948 ], [ -81.963346037796143, 28.869348608795342 ], [ -81.963390554058449, 28.869447515159944 ], [ -81.963445144528421, 28.869546978266062 ], [ -81.9635396985759, 28.869712512518287 ], [ -81.963759078196063, 28.87003665569236 ], [ -81.964724126361162, 28.87131859160413 ], [ -81.964864776407893, 28.871503532894398 ], [ -81.965114201620267, 28.87187734799739 ], [ -81.965195601797831, 28.872004974585792 ], [ -81.965225879151191, 28.87205878854893 ], [ -81.965245726425991, 28.872109062777735 ], [ -81.965254397319896, 28.872168078325469 ], [ -81.96524223364716, 28.872238222892818 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Colony Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958062496671516, 28.866307132818541 ], [ -81.958062533571891, 28.866307134634674 ], [ -81.958078129329962, 28.866307367785382 ], [ -81.958246970865687, 28.86630632768161 ], [ -81.95836987767413, 28.86630527313849 ], [ -81.958472832507624, 28.866308685034699 ], [ -81.958548646954071, 28.866316257121643 ], [ -81.958599544318687, 28.866322829857143 ], [ -81.958666580964561, 28.866331592919508 ], [ -81.958750690268928, 28.866348796827015 ], [ -81.958869408963551, 28.866373293774917 ], [ -81.959031059726598, 28.866422262458116 ], [ -81.959137141838085, 28.866460097675631 ], [ -81.959260898861913, 28.86651572708297 ], [ -81.959374550517367, 28.866575799871359 ], [ -81.959495777067289, 28.866646992127951 ], [ -81.959614939493804, 28.866715209662438 ], [ -81.95967906426084, 28.866745299090255 ], [ -81.959679074509097, 28.866745304507166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Colony Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955533821955484, 28.865879310898872 ], [ -81.95565386153713, 28.865920868259956 ], [ -81.955797830333964, 28.865967612610213 ], [ -81.956118606991225, 28.866056664124837 ], [ -81.956342158179169, 28.866111333528519 ], [ -81.956415708424501, 28.866127749554817 ], [ -81.95661872741276, 28.86616800927024 ], [ -81.956771363607629, 28.866195076141047 ], [ -81.957071368729018, 28.866238987290451 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mayo Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955873360989699, 28.865028414387329 ], [ -81.955742826782767, 28.865403800104669 ], [ -81.955659882193501, 28.865583272504328 ], [ -81.955533821955484, 28.865879310898872 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Farner Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954291435747436, 28.864228013286588 ], [ -81.954146728462106, 28.864372717854557 ], [ -81.95410321757474, 28.864412457596586 ], [ -81.954067768910122, 28.864453323448224 ], [ -81.954026372281675, 28.864502960353601 ], [ -81.953664909978841, 28.864901497392896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Farner Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953747767578406, 28.864962967394522 ], [ -81.954062227198705, 28.864612024126838 ], [ -81.954142338613863, 28.864527628354057 ], [ -81.954385101851955, 28.864289661625403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Colony Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953747767578406, 28.864962967394522 ], [ -81.953963308197345, 28.86511605945557 ], [ -81.954091765341445, 28.865198066849501 ], [ -81.95424535525035, 28.865291556371602 ], [ -81.954423882538549, 28.865391227738577 ], [ -81.95455520897255, 28.865460204594488 ], [ -81.954716843697824, 28.865538087349279 ], [ -81.954886057812573, 28.86562041900611 ], [ -81.955057797730205, 28.865698304743223 ], [ -81.955229543722197, 28.865765072079775 ], [ -81.955441700050812, 28.86584741733876 ], [ -81.955533821955484, 28.865879310898872 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962968379559797, 28.86526671233548 ], [ -81.96284073937241, 28.865265094431944 ], [ -81.961761342264609, 28.865266674503903 ], [ -81.959907287423647, 28.865257574565884 ], [ -81.959684486974709, 28.865257086500257 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95728805471461, 28.865213677779746 ], [ -81.957140916241258, 28.865193412102503 ], [ -81.956838924581305, 28.865144423203798 ], [ -81.956601151054116, 28.865096981987513 ], [ -81.956366855768309, 28.86504190077483 ], [ -81.956132561906642, 28.864979181155583 ], [ -81.956014550963985, 28.864939416854849 ], [ -81.95587224429427, 28.864892005571477 ], [ -81.955691758573607, 28.864826245841996 ], [ -81.955493925736647, 28.864743672916735 ], [ -81.955301299553241, 28.864658047134924 ], [ -81.955136442120164, 28.864580069253758 ], [ -81.954971588908109, 28.864492922864688 ], [ -81.954803269267202, 28.864396608604711 ], [ -81.954629745189351, 28.864292653473797 ], [ -81.954479552890703, 28.864195387582459 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954393059499338, 28.864139172708697 ], [ -81.95428040655186, 28.864072177180354 ], [ -81.954087806077666, 28.863935747262932 ], [ -81.953862673342428, 28.863774094635289 ], [ -81.953589389637713, 28.863582630037172 ], [ -81.953562190263341, 28.863563951977124 ], [ -81.953479134101229, 28.863570925129071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Farner Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953488244148474, 28.862767818358876 ], [ -81.953490957220353, 28.862777187016295 ], [ -81.953513336920182, 28.862818596068507 ], [ -81.953537955243988, 28.862853104168732 ], [ -81.953570415552704, 28.862883674612942 ], [ -81.953612954101359, 28.862913261407783 ], [ -81.953655494727315, 28.862935948272515 ], [ -81.953701398977685, 28.862952721681062 ], [ -81.953849000417819, 28.862995141027604 ], [ -81.954273654401987, 28.863109226407474 ], [ -81.954321179504973, 28.863125653671634 ], [ -81.954379748173707, 28.863146300231815 ], [ -81.954435707351337, 28.86318298884326 ], [ -81.954568842046001, 28.863264045459442 ], [ -81.954691622635323, 28.863346849824431 ], [ -81.954747777397984, 28.863386824561776 ], [ -81.954786801173071, 28.863415377565502 ], [ -81.954828679406361, 28.863442027656472 ], [ -81.954856231466565, 28.86346095822514 ], [ -81.954876101173639, 28.863484515929223 ], [ -81.954885738180977, 28.863505930833107 ], [ -81.954890020415732, 28.863527702153394 ], [ -81.954886809008869, 28.863560895025682 ], [ -81.954876457975629, 28.863595160144218 ], [ -81.954852662188188, 28.863645366257046 ], [ -81.95483438913206, 28.863679021459685 ], [ -81.954823919644326, 28.863698056549126 ], [ -81.95479631809485, 28.863740887745656 ], [ -81.954748728165626, 28.863806560341459 ], [ -81.954691588931482, 28.863863465624448 ], [ -81.954690742932414, 28.863864308993161 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971775360342136, 28.865291908387285 ], [ -81.970907918573602, 28.865291510077682 ], [ -81.968641642156982, 28.865284758220078 ], [ -81.963191570776218, 28.865269540168722 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963196224248748, 28.865428641927622 ], [ -81.96434826210637, 28.865433519346112 ], [ -81.965106369974052, 28.865433717637686 ], [ -81.965933908960281, 28.865424073444071 ], [ -81.966374270658008, 28.865415801186984 ], [ -81.966950696221843, 28.865409543428385 ], [ -81.967500521091111, 28.865410662120734 ], [ -81.968604648169944, 28.865412895631266 ], [ -81.970046955043486, 28.865418154691877 ], [ -81.970861052847582, 28.865421291770254 ], [ -81.971767186256187, 28.865421485590133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95968384513553, 28.865397323228269 ], [ -81.959683853335719, 28.865397323230731 ], [ -81.960605551812677, 28.865412690469057 ], [ -81.96131328419041, 28.865425425592051 ], [ -81.961941470350908, 28.865425605091932 ], [ -81.962971288945297, 28.865426329738508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980741351552354, 28.86541900062031 ], [ -81.981797514919904, 28.865416863914028 ], [ -81.982693988221484, 28.86541890218281 ], [ -81.983823847560259, 28.865417124559439 ], [ -81.985539501502259, 28.865420635596049 ], [ -81.985920794815925, 28.86541919931404 ], [ -81.986752498433631, 28.865418365097465 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991067234274041, 28.865421660107003 ], [ -81.991713267797763, 28.865427078924263 ], [ -81.992404465909146, 28.865433035022392 ], [ -81.993389614678676, 28.865444916342739 ], [ -81.994244585814926, 28.865455306849164 ], [ -81.994642674887189, 28.865459020446298 ], [ -81.995160863874844, 28.865463477257876 ], [ -81.99702673094383, 28.865469497667053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99723858061742, 28.865472667695055 ], [ -81.999944550054252, 28.86546208795011 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029970322227072, 28.865464504225351 ], [ -82.029245664398047, 28.865458931069938 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030716675424756, 28.865469114916998 ], [ -82.030294682382632, 28.865467299045669 ], [ -82.029970322227072, 28.865464504225351 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034526548663095, 28.865472605176723 ], [ -82.03408828094328, 28.865469658438272 ], [ -82.033788872392407, 28.865468968080858 ], [ -82.033500745454944, 28.865469037659892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stanley Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033499324150554, 28.864718506655176 ], [ -82.033509207062508, 28.864954172337377 ], [ -82.033500745454944, 28.865469037659892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033500745454944, 28.865469037659892 ], [ -82.03330287561765, 28.865469086608311 ], [ -82.032835972122541, 28.865469963982392 ], [ -82.032087881849321, 28.865470139514013 ], [ -82.031731195422466, 28.865470222175631 ], [ -82.031372772384117, 28.865469540038326 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stanley Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033500745454944, 28.865469037659892 ], [ -82.033487704207332, 28.866457958779019 ], [ -82.033481776512417, 28.866918489387668 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035430424644275, 28.865497202002533 ], [ -82.035198705018146, 28.865492677855237 ], [ -82.034737437238249, 28.865478664247096 ], [ -82.034526548663095, 28.865472605176723 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03621410381983, 28.865521062970526 ], [ -82.035728534867147, 28.865510876803945 ], [ -82.035430424644275, 28.865497202002533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035430424644275, 28.865497202002533 ], [ -82.035429801836784, 28.866487370655296 ], [ -82.035433506604178, 28.867308744237469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pengrove Pass Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018220140243557, 28.888088148169029 ], [ -82.018224806071487, 28.888057805902029 ], [ -82.01822622968713, 28.888037160179184 ], [ -82.018190302780695, 28.887769703155666 ], [ -82.018170101824253, 28.887536499904126 ], [ -82.018167190651596, 28.887346387363486 ], [ -82.018170039781168, 28.887171484148233 ], [ -82.018170024270717, 28.887080230882905 ], [ -82.018164259780363, 28.887052347838239 ], [ -82.018151546018373, 28.887016913441421 ], [ -82.018130007565844, 28.886978313114916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pengrove Pass Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018271016505693, 28.888428050718908 ], [ -82.018246586005233, 28.888206217944038 ], [ -82.018240482517925, 28.888174911623906 ], [ -82.018220140243557, 28.888088148169029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lone Palm Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015914035543219, 28.887633911105297 ], [ -82.0158987847948, 28.887597014156452 ], [ -82.015896493781071, 28.887578900732457 ], [ -82.015895729376297, 28.887554078530645 ], [ -82.015892795553597, 28.887328499206991 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Granville Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015914035543219, 28.887633911105297 ], [ -82.015925468250146, 28.887615124812001 ], [ -82.015947571192171, 28.887600363369522 ], [ -82.015971963555558, 28.887592980676573 ], [ -82.016000928772044, 28.887587610489842 ], [ -82.016033706417758, 28.887586265023664 ], [ -82.017364736028057, 28.887589517800446 ], [ -82.017364957479202, 28.887589517772927 ], [ -82.017389096378338, 28.88758765603211 ], [ -82.017412500611243, 28.887582132842955 ], [ -82.017434460739267, 28.887573117024544 ], [ -82.017454308351105, 28.887560882960457 ], [ -82.017471439642023, 28.887545801572632 ], [ -82.017485335916973, 28.887528330393373 ], [ -82.017495572815989, 28.88750900183415 ], [ -82.017501841840215, 28.887488400625188 ], [ -82.01750394932499, 28.887467154792443 ], [ -82.017502963746026, 28.887452618854059 ], [ -82.017502906209671, 28.887100911119976 ], [ -82.01750285674639, 28.887030431523712 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lone Palm Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015893532120202, 28.888168601378197 ], [ -82.01589194084049, 28.88770435441036 ], [ -82.015893461361514, 28.887684228424391 ], [ -82.015901842901656, 28.887658063465135 ], [ -82.015914035543219, 28.887633911105297 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bayport Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015204455318568, 28.8881684936566 ], [ -82.015893532120202, 28.888168601378197 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bayport Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015893532120202, 28.888168601378197 ], [ -82.018088024964285, 28.888169564591465 ], [ -82.018113434120124, 28.888166877853529 ], [ -82.018136809763433, 28.888161507031377 ], [ -82.018165266315037, 28.888148981203404 ], [ -82.018186608551702, 28.888135559410454 ], [ -82.018204900646978, 28.88811587875395 ], [ -82.018220140243557, 28.888088148169029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dalecroft Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016783100889569, 28.885732594490463 ], [ -82.016807305060198, 28.885548288525641 ], [ -82.016827542839451, 28.885443879963052 ], [ -82.0168331680715, 28.885390888060822 ], [ -82.016836202125063, 28.88530891456649 ], [ -82.016838923521846, 28.884216466029027 ], [ -82.016843011297667, 28.884179184264539 ], [ -82.016855145005493, 28.884142801125218 ], [ -82.016874879979738, 28.884109096902378 ], [ -82.016901506966661, 28.884079288882461 ], [ -82.016934061418127, 28.884054452720971 ], [ -82.016971369621459, 28.884035491759331 ], [ -82.017012079446928, 28.884023084688423 ], [ -82.017054722883827, 28.884017682834642 ], [ -82.017079040691385, 28.884017809799506 ], [ -82.01756512414174, 28.884020294973944 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mosby Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977647458688637, 28.871336504869344 ], [ -81.977661837112493, 28.871309938960987 ], [ -81.977669030266441, 28.871280841795375 ], [ -81.977674787224061, 28.871237827270004 ], [ -81.977684881856433, 28.871083481018946 ], [ -81.977703007031153, 28.870753555167063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mariel Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975378605518387, 28.871877434523356 ], [ -81.975517699945911, 28.871719948625618 ], [ -81.975818263414141, 28.871412039144086 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orrick Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975378605518387, 28.871877434523356 ], [ -81.975456143709891, 28.871939104003904 ], [ -81.975724219205276, 28.872117573302116 ], [ -81.976123317684383, 28.872348321445369 ], [ -81.976392476182511, 28.872507284520744 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mariel Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974999033768796, 28.872375518357877 ], [ -81.975046484597712, 28.872289181345042 ], [ -81.975147851574206, 28.87213643131015 ], [ -81.975262152916329, 28.871996020770251 ], [ -81.975378605518387, 28.871877434523356 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jace Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974999033768796, 28.872375518357877 ], [ -81.975467686496785, 28.872665508543349 ], [ -81.975776578097921, 28.872848111418513 ], [ -81.97601819494119, 28.872963494442214 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mariel Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974870660593794, 28.872754090625985 ], [ -81.97489116324428, 28.872666799393144 ], [ -81.97492892250844, 28.872540607703403 ], [ -81.974999033768796, 28.872375518357877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975755791879124, 28.870784694544156 ], [ -81.975844597984349, 28.870855787696989 ], [ -81.97592187194607, 28.870918757089544 ], [ -81.976023368341117, 28.870995944753229 ], [ -81.976116789707632, 28.871067041257767 ], [ -81.976240201959413, 28.87115134010271 ], [ -81.97637053379043, 28.871239703124683 ], [ -81.976489692149087, 28.871311479731787 ], [ -81.976653956731639, 28.871403920523367 ], [ -81.976861467192137, 28.871517194645275 ], [ -81.977051396371905, 28.871605219000841 ], [ -81.977176962886389, 28.871656256664778 ], [ -81.977302994879309, 28.871707440463425 ], [ -81.977436655050553, 28.87175680458261 ], [ -81.977584686689994, 28.871812497021043 ], [ -81.977765774088724, 28.871874519031085 ], [ -81.977916681831587, 28.871918824520513 ], [ -81.978029068054582, 28.871967507812851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978029068054582, 28.871967507812851 ], [ -81.978138009415346, 28.872004890910823 ], [ -81.978307604402332, 28.872041607939526 ], [ -81.978504509404416, 28.872075799086733 ], [ -81.978669497337165, 28.872095409966157 ], [ -81.979025570744753, 28.872116361776435 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Pedro Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958893746194519, 28.928621454852287 ], [ -81.959182275837847, 28.928795331353278 ], [ -81.959226056587411, 28.928831464448916 ], [ -81.959264362477882, 28.928867595866652 ], [ -81.959300506849388, 28.928915459159402 ], [ -81.959325926124791, 28.928963209108527 ], [ -81.959339469909636, 28.929022891009666 ], [ -81.959337755022318, 28.929075109008743 ], [ -81.959324165633149, 28.929128814898611 ], [ -81.959290224598988, 28.929186989991138 ], [ -81.95922588571753, 28.929262496137525 ], [ -81.95915468294703, 28.929353978902743 ], [ -81.959006792497078, 28.929558613056656 ], [ -81.958907261670774, 28.929717693273133 ], [ -81.958830990484728, 28.929845448366411 ], [ -81.958787815600473, 28.929920079250799 ], [ -81.958731689383043, 28.930023802437219 ], [ -81.958704344191105, 28.930075666046754 ], [ -81.958681323002594, 28.9301047570607 ], [ -81.958633850707272, 28.930142696552316 ], [ -81.958569120631481, 28.930173039688167 ], [ -81.958519317344297, 28.930186952111281 ], [ -81.958462691877813, 28.930197043890622 ], [ -81.958396541580896, 28.930193228327067 ], [ -81.958350524402618, 28.930180562963116 ], [ -81.958293009601888, 28.930160303000559 ], [ -81.958229742931806, 28.930134979347347 ], [ -81.958106085622759, 28.930084335557115 ], [ -81.957957860462386, 28.930022139990896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Maria Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958893746194519, 28.928621454852287 ], [ -81.95884008726496, 28.92866633929836 ], [ -81.958782538416656, 28.928730843835016 ], [ -81.958724986958032, 28.92879914339855 ], [ -81.958660243635961, 28.928872501692116 ], [ -81.958563843901331, 28.928988865283845 ], [ -81.958517796830279, 28.929057169213301 ], [ -81.958459161218258, 28.929140032267572 ], [ -81.958409701230579, 28.929209459360429 ], [ -81.958356328834867, 28.929287823353167 ], [ -81.95830999330812, 28.929358625573403 ], [ -81.958259747274312, 28.929438710272265 ], [ -81.958216342368686, 28.929510890272983 ], [ -81.958169610403161, 28.929592693098616 ], [ -81.95812933202825, 28.9296662491424 ], [ -81.958086117357396, 28.929749429035162 ], [ -81.958048963473345, 28.929824359322655 ], [ -81.958013176453633, 28.929899979380373 ], [ -81.957957860462386, 28.930022139990896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Pedro Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95664731468321, 28.9294729243456 ], [ -81.956491650712621, 28.929421642524826 ], [ -81.956419420642391, 28.929394136068204 ], [ -81.956351092179702, 28.9293666308428 ], [ -81.956298384562473, 28.929346002552617 ], [ -81.95623982354229, 28.929313347446936 ], [ -81.956183225270692, 28.929254927022289 ], [ -81.956159807728923, 28.929225719299147 ], [ -81.95614029775065, 28.929189641873766 ], [ -81.956130561836176, 28.929127802610285 ], [ -81.956128641025742, 28.92905222394991 ], [ -81.95616993701276, 28.928358295880148 ], [ -81.956173878269311, 28.928274131082937 ], [ -81.956177798867529, 28.928236342441178 ], [ -81.956181720915694, 28.928195120566691 ], [ -81.956187598980364, 28.928148745421264 ], [ -81.956203244563341, 28.928086914443409 ], [ -81.956226386167188, 28.928028302592274 ], [ -81.956256608554284, 28.927970114418326 ], [ -81.956279456474192, 28.927934067057961 ], [ -81.956315315676804, 28.927878347582492 ], [ -81.956365411746518, 28.927822444150436 ], [ -81.956429864783772, 28.927770935932845 ], [ -81.956521656952177, 28.927707411662894 ], [ -81.956636887797913, 28.927626717015333 ], [ -81.956775547678291, 28.927544313656522 ], [ -81.956933664283113, 28.927450292134623 ], [ -81.957103638153569, 28.927360626891158 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Pedro Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953942337526669, 28.923831600670795 ], [ -81.953948001308945, 28.924222873193244 ], [ -81.953953085914804, 28.924599739443067 ], [ -81.953953327658255, 28.924618873605681 ], [ -81.953953570212036, 28.924638492301249 ], [ -81.953953811525366, 28.924658594626731 ], [ -81.953953328326193, 28.924675064061557 ], [ -81.953953570177276, 28.924693956408799 ], [ -81.953953812085246, 28.924715028702046 ], [ -81.953955265833244, 28.924741670379277 ], [ -81.953957645255556, 28.924760086145678 ], [ -81.95396441859603, 28.924777987306943 ], [ -81.953969498302769, 28.924794397294427 ], [ -81.953978649888356, 28.924814914123388 ], [ -81.953987267721502, 28.924836425098267 ], [ -81.953996600070298, 28.924854069981226 ], [ -81.954006759374181, 28.924877938279302 ], [ -81.954018618109913, 28.924901808963643 ], [ -81.954040642190918, 28.924940598074961 ], [ -81.954071143583732, 28.924977898590821 ], [ -81.954115202994032, 28.925025644199312 ], [ -81.95414571008466, 28.925052504238579 ], [ -81.954166047788021, 28.925068919432963 ], [ -81.954191763931789, 28.925089635899095 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Overstreet Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014291016503137, 28.859149811774852 ], [ -82.016053269929301, 28.859155668674973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Idle Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01573962349066, 28.860106797781224 ], [ -82.015958718667179, 28.859942465325624 ], [ -82.01599455523592, 28.859885154110458 ], [ -82.016017160130417, 28.85981852900213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Red Clover Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996821987446282, 28.858126602246571 ], [ -81.997082309414637, 28.858234274127778 ], [ -81.99738433022209, 28.858337885995727 ], [ -81.997475087957511, 28.85836929073762 ], [ -81.997566744688697, 28.858398604795564 ], [ -81.997673466161842, 28.858431362263431 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yellowstone Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994102843788383, 28.861155296738509 ], [ -81.994206250756747, 28.86116038943182 ], [ -81.994296397448522, 28.861167278860858 ], [ -81.994385592594071, 28.861180707188264 ], [ -81.994473218151114, 28.861200580550239 ], [ -81.995397268278694, 28.861446460835118 ], [ -81.995482012734854, 28.86147239511941 ], [ -81.995564057145472, 28.861504358455647 ], [ -81.995694499700519, 28.861573932294586 ], [ -81.995792534549238, 28.86164068075043 ], [ -81.995900999511392, 28.861737671994963 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Waterbury Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994958770713254, 28.860641406028211 ], [ -81.994965278746506, 28.860652293483394 ], [ -81.99497634262282, 28.860666617088267 ], [ -81.994990009971872, 28.860680369633204 ], [ -81.995008884235219, 28.860693548509865 ], [ -81.995023853577237, 28.860702143529185 ], [ -81.995042728112551, 28.860710164829225 ], [ -81.995061723758653, 28.860715034382022 ], [ -81.996214237448029, 28.861021701247743 ], [ -81.996236863711516, 28.861025870552616 ], [ -81.996259966731515, 28.861026522685158 ], [ -81.996277056304976, 28.86102438020454 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Teasdale Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994958770713254, 28.860641406028211 ], [ -81.994953564668918, 28.860625363757922 ], [ -81.994951612656038, 28.860614477380224 ], [ -81.994950962333021, 28.860604162211356 ], [ -81.994951613729029, 28.860593849799589 ], [ -81.994954218907026, 28.860580098781085 ], [ -81.994982209520288, 28.860489570754364 ], [ -81.995127371411428, 28.860085063238515 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Norwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990710627546136, 28.863086313436369 ], [ -81.991249490729331, 28.863084201708329 ], [ -81.991378620472631, 28.86308134355297 ], [ -81.991507504607455, 28.86307379057023 ], [ -81.991635925815913, 28.863061551770123 ], [ -81.991763660628749, 28.863044653306833 ], [ -81.991888337983426, 28.863025831725164 ], [ -81.991967307161559, 28.863011250797115 ], [ -81.992044838649903, 28.862991580741429 ], [ -81.992120513204483, 28.86296693432358 ], [ -81.992193915681199, 28.862937442356209 ], [ -81.99252010975691, 28.862793354230767 ], [ -81.992608219148948, 28.862757212887505 ], [ -81.992698559562086, 28.862725632757041 ], [ -81.992934469935719, 28.862650067698056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Honeyville Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990630650191861, 28.862456396698096 ], [ -81.990725836726867, 28.862451171826944 ], [ -81.991079194497289, 28.862446809064853 ], [ -81.991215500538104, 28.862443125037199 ], [ -81.991351402239872, 28.862433154492507 ], [ -81.991486521353536, 28.862416922672118 ], [ -81.991620487829053, 28.862394472865493 ], [ -81.991752931615494, 28.862365870018888 ], [ -81.991883489836994, 28.86233119261491 ], [ -81.992011801668014, 28.862290533574424 ], [ -81.992137514482991, 28.862244007475454 ], [ -81.992283525982302, 28.862185954606961 ], [ -81.992425057589998, 28.862134742593408 ], [ -81.992568678661158, 28.862088255013074 ], [ -81.992686633219733, 28.862050473096193 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Friar Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990507314766546, 28.861837365766739 ], [ -81.990592178827342, 28.861824307347607 ], [ -81.990683543108773, 28.861813718938265 ], [ -81.990775594512712, 28.861809940204711 ], [ -81.991075969257906, 28.861808762497983 ], [ -81.991188290762608, 28.861805357497214 ], [ -81.991300180229842, 28.861796029649589 ], [ -81.991411233792434, 28.861780817729109 ], [ -81.991521050657681, 28.861759774045773 ], [ -81.991629239256767, 28.861732973469014 ], [ -81.99173540802019, 28.861700514329442 ], [ -81.991839176653329, 28.861662512103194 ], [ -81.991985185457438, 28.861604460454611 ], [ -81.992093204741039, 28.861563648514178 ], [ -81.992202892333395, 28.861526443095453 ], [ -81.992438799339297, 28.861450878889062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kuzmany Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991276667749005, 28.861175645201044 ], [ -81.991267403295481, 28.86092469210482 ], [ -81.991268982159852, 28.860861339616587 ], [ -81.991277180293281, 28.860798382772874 ], [ -81.991291925888959, 28.86073635753651 ], [ -81.991313096917722, 28.860675790843157 ], [ -81.99134051190407, 28.860617197893752 ], [ -81.991373939151813, 28.860561075839158 ], [ -81.991448659215337, 28.860448557008716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gullberry Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991118583205548, 28.858232755049652 ], [ -81.991337150054704, 28.858270347795852 ], [ -81.991460808339255, 28.858297092914011 ], [ -81.991565239772598, 28.858321623342523 ], [ -81.991667311553613, 28.858349248446729 ], [ -81.991767000894868, 28.858382949445197 ], [ -81.991863841470149, 28.858422566606503 ], [ -81.991957381302299, 28.858467916741375 ], [ -81.992091788041861, 28.858541513200148 ], [ -81.992222947564841, 28.858619516189236 ], [ -81.992948656417894, 28.859068871217985 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fireside Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990565684174314, 28.859463113885887 ], [ -81.990560446138943, 28.859457167326585 ], [ -81.990550337416451, 28.859440921516462 ], [ -81.990543271928871, 28.859423473150493 ], [ -81.99053942592748, 28.859405260761687 ], [ -81.990538896739082, 28.859386742727953 ], [ -81.990547492123724, 28.859299143103765 ], [ -81.990562429897395, 28.859212204415968 ], [ -81.990583648513137, 28.859126286677633 ], [ -81.990611061827124, 28.859041736364716 ], [ -81.99063048968749, 28.858989615210955 ], [ -81.990654102041461, 28.858941755031079 ], [ -81.99066777099867, 28.858907599252426 ], [ -81.990685479167297, 28.858874977673636 ], [ -81.990694114753381, 28.858860587423337 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harness Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990565684174314, 28.859463113885887 ], [ -81.990573341894276, 28.85947180542723 ], [ -81.990588703903754, 28.859484464947705 ], [ -81.990606143735448, 28.859494828248476 ], [ -81.990625224777801, 28.859502637238844 ], [ -81.990720775271811, 28.859533895272218 ], [ -81.990834728770835, 28.859568532738603 ], [ -81.990950395488653, 28.859598453879791 ], [ -81.991067522250518, 28.859623591001508 ], [ -81.991139919498096, 28.859637561728302 ], [ -81.99124592148344, 28.85966131652286 ], [ -81.991349879198367, 28.859691262714076 ], [ -81.991451327336108, 28.859727264028638 ], [ -81.991549813914503, 28.859769159833064 ], [ -81.991695768404, 28.859829216525672 ], [ -81.99172266946465, 28.859832272510559 ], [ -81.991745232151843, 28.859831511471732 ], [ -81.991771267682637, 28.859827692735102 ], [ -81.991791226426912, 28.859820817511526 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gable Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987385343051727, 28.851335368162381 ], [ -81.98761555783382, 28.851436421811794 ], [ -81.987744022453768, 28.851502032206785 ], [ -81.987801993225602, 28.851535263124521 ], [ -81.987857020118142, 28.851572167034902 ], [ -81.987908807990138, 28.851612544505212 ], [ -81.988004878995341, 28.851689912357177 ], [ -81.988104528452396, 28.851763687478794 ], [ -81.98820758419177, 28.851833743524281 ], [ -81.988313866867742, 28.851899956854268 ], [ -81.988423189957444, 28.85196221465689 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Luckett Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987098767811375, 28.852077947231059 ], [ -81.987174578245927, 28.852109059722782 ], [ -81.987288952701022, 28.852137543829269 ], [ -81.987420391940717, 28.85215572782845 ], [ -81.987479912611377, 28.852172321416877 ], [ -81.987536977980753, 28.852194621831604 ], [ -81.987590882963403, 28.85222235290464 ], [ -81.987640963475101, 28.852255176213514 ], [ -81.987688440536473, 28.852290060128858 ], [ -81.987737217552805, 28.852330473474876 ], [ -81.9877801890201, 28.852375705484242 ], [ -81.987813213599239, 28.852415006618703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brassie Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985201337204543, 28.852935113693739 ], [ -81.98505121232121, 28.852518638813155 ], [ -81.985013963702471, 28.85240540432833 ], [ -81.984983291110183, 28.85229065108857 ], [ -81.984959278522098, 28.852174672357002 ], [ -81.984941982241438, 28.85205777041584 ], [ -81.98493145037132, 28.85194024844764 ], [ -81.984927712566773, 28.851822406022755 ], [ -81.984930773884329, 28.851704548121553 ], [ -81.984940627082025, 28.851586978819736 ], [ -81.98495724851999, 28.851470001287787 ], [ -81.984980594061355, 28.851353917790668 ], [ -81.985010603172228, 28.851239027883562 ], [ -81.985031029762908, 28.851178678561691 ], [ -81.985056622538494, 28.851119876366198 ], [ -81.985087236932827, 28.851062965056478 ], [ -81.985122691487263, 28.851008273950477 ], [ -81.985186058593456, 28.85091865407334 ], [ -81.985239096651497, 28.85086582995083 ], [ -81.985350115908957, 28.850800862635435 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maiden Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985733151558364, 28.852250077244193 ], [ -81.98585593569031, 28.852236895899438 ], [ -81.985877788609926, 28.852235941769781 ], [ -81.98631952788476, 28.85218428658721 ], [ -81.986340495688665, 28.852180296033847 ], [ -81.986431209607389, 28.852168030327139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Castlegate Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986431209607389, 28.852168030327139 ], [ -81.986437439664115, 28.851993106407363 ], [ -81.986448197383879, 28.851920369043743 ], [ -81.986466965460451, 28.851848903839823 ], [ -81.986493567506983, 28.851779390210492 ], [ -81.98680581716971, 28.851078598006179 ], [ -81.986836000165113, 28.851005747026768 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buttonwood Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011330922762667, 28.885872433389196 ], [ -82.011287149814805, 28.886284488776624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nobleton Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011287149814805, 28.886284488776624 ], [ -82.011474671223112, 28.886301245772955 ], [ -82.011560045149494, 28.886305264034458 ], [ -82.01165228105306, 28.886310623401634 ], [ -82.011742228228641, 28.886311957730722 ], [ -82.011834306259189, 28.886307908695962 ], [ -82.011876338793428, 28.886302107909675 ], [ -82.011878901779298, 28.886301427360802 ], [ -82.011947537934631, 28.886287104803351 ], [ -82.012017597871932, 28.886279891318534 ], [ -82.012088136359623, 28.886279885335313 ], [ -82.012158198928674, 28.88628708693464 ], [ -82.012216744651695, 28.886298823550376 ], [ -82.012269385177547, 28.886311280687146 ], [ -82.012339059993067, 28.886334230081427 ], [ -82.012405410998795, 28.886365571127477 ], [ -82.012458010720664, 28.886397099223064 ], [ -82.01250603866751, 28.886434663190986 ], [ -82.012543394527142, 28.886467532512913 ], [ -82.012571600979527, 28.88649771919345 ], [ -82.01260057258024, 28.886530589242362 ], [ -82.012637927317343, 28.886570839357685 ], [ -82.012690531076615, 28.886617794898942 ], [ -82.012738496477084, 28.886653728330643 ], [ -82.0127649750156, 28.886670922896862 ], [ -82.012859759474892, 28.886723326264477 ], [ -82.012957344815348, 28.886766034989641 ], [ -82.013019853959491, 28.886790851545534 ], [ -82.01309790305902, 28.886819995873193 ], [ -82.013214765771892, 28.886852628437477 ], [ -82.013333886261421, 28.886878164994524 ], [ -82.013393440028452, 28.886888131590439 ], [ -82.01365851752351, 28.886913819970708 ], [ -82.013915157772402, 28.88693367077644 ], [ -82.014092761512856, 28.886933652236152 ], [ -82.01465887440466, 28.886927080744361 ], [ -82.014958579085246, 28.886920537286802 ], [ -82.015043681856611, 28.886923784608577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buttonwood Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011287149814805, 28.886284488776624 ], [ -82.011261977283738, 28.886588448831738 ], [ -82.011198442177019, 28.887216379343414 ], [ -82.011159206628307, 28.887616109728377 ], [ -82.011144290544138, 28.887756662261612 ], [ -82.011144297775544, 28.887827029076007 ], [ -82.011149942806767, 28.887907421813345 ], [ -82.011164391446542, 28.887996386618603 ], [ -82.011180743123532, 28.888076998675619 ], [ -82.011204694290583, 28.888151249816204 ], [ -82.011229783913237, 28.888219481615103 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buttonwood Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011229783913237, 28.888219481615103 ], [ -82.011293024197883, 28.888349491811514 ], [ -82.011347636792735, 28.888436466537478 ], [ -82.011401850311401, 28.88851040754119 ], [ -82.011469618565982, 28.888583154589966 ], [ -82.011519389516835, 28.888634680953555 ], [ -82.011601082567807, 28.888704795699141 ], [ -82.011691887905698, 28.888772769388964 ], [ -82.011766318932573, 28.888820272077453 ], [ -82.011920647882121, 28.888897220034774 ], [ -82.012074071071254, 28.888958794496304 ], [ -82.012219009874798, 28.888996790598338 ], [ -82.012334271911428, 28.889017213218054 ], [ -82.012458950080457, 28.889030321766931 ], [ -82.012998321611178, 28.889083943919498 ], [ -82.013182627256569, 28.889103008707384 ], [ -82.013417574995302, 28.889127969486278 ], [ -82.013633628870281, 28.889164164419181 ], [ -82.013770791650813, 28.889199560073109 ], [ -82.013899277651433, 28.889241682189564 ], [ -82.014040996848507, 28.889292782558542 ], [ -82.014189688558147, 28.889364328201605 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buttonwood Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014739666673009, 28.889752575717097 ], [ -82.01481844019618, 28.889848263600193 ], [ -82.014838773149876, 28.8898780779679 ], [ -82.014851865762211, 28.889908111454226 ], [ -82.01486452972793, 28.889944864414502 ], [ -82.014865889212757, 28.889981837828365 ], [ -82.014888912164722, 28.89024601446393 ], [ -82.014893046932784, 28.890363488099485 ], [ -82.014899221002068, 28.890399935861691 ], [ -82.014910674640802, 28.890439818120186 ], [ -82.014935241039979, 28.890476893733151 ], [ -82.014976399839824, 28.890517633619499 ], [ -82.015027842239377, 28.890544790971067 ], [ -82.015074140659863, 28.89056289427273 ], [ -82.015151303843695, 28.890567413712169 ], [ -82.015994928981897, 28.890562792312643 ], [ -82.017316952802418, 28.890567162663483 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eastpoint Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015577400449999, 28.890194054801256 ], [ -82.015560441943464, 28.889963237456712 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cedar Key Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014739666673009, 28.889752575717097 ], [ -82.01500553244, 28.889554046033453 ], [ -82.015154201485714, 28.889450437878562 ], [ -82.015214096853555, 28.889421246499239 ], [ -82.015275077149809, 28.889400965190923 ], [ -82.015357741210337, 28.889385451044109 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eastpoint Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015560441943464, 28.889963237456712 ], [ -82.015538351221508, 28.889818416202427 ], [ -82.01552176976935, 28.88974084728342 ], [ -82.015504146386164, 28.889696720432038 ], [ -82.015472967565202, 28.88963470606776 ], [ -82.015440434417542, 28.889572690942316 ], [ -82.015403838564353, 28.889520217177765 ], [ -82.015384858513784, 28.889480860017496 ], [ -82.015369945835189, 28.889442697054644 ], [ -82.015357741210337, 28.889385451044109 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cedar Key Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015357741210337, 28.889385451044109 ], [ -82.015387554754838, 28.889379483574075 ], [ -82.015448537224898, 28.889374706413555 ], [ -82.015589477063145, 28.889375883667267 ], [ -82.016153235907865, 28.889377012685006 ], [ -82.016547723290074, 28.889378643998672 ], [ -82.016564493583488, 28.889379983735445 ], [ -82.01658431452843, 28.889384676958912 ], [ -82.016605661276685, 28.889397421224039 ], [ -82.016622433135524, 28.889408824308699 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palm Crest Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016662706098131, 28.889961981013048 ], [ -82.01665445856878, 28.889471882268655 ], [ -82.016653693379851, 28.889456453024689 ], [ -82.016649117422403, 28.889441693740935 ], [ -82.016636918384009, 28.889424924136176 ], [ -82.016622433135524, 28.889408824308699 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palm Crest Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016622433135524, 28.889408824308699 ], [ -82.016648346603517, 28.889390036238058 ], [ -82.016655967474946, 28.889371251243332 ], [ -82.016658249496274, 28.889337037548504 ], [ -82.016659563233731, 28.889128591579823 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kirkwood Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001810927083312, 28.889043240773173 ], [ -82.00278081633607, 28.889116968294893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Delwood Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001767975020542, 28.889655969075033 ], [ -82.001797795709294, 28.889583667478046 ], [ -82.001809744435349, 28.889536335395249 ], [ -82.001819306498433, 28.889499520547179 ], [ -82.001824009507288, 28.889436043663931 ], [ -82.001819304187066, 28.889329121093841 ], [ -82.00181450826534, 28.889193432278873 ], [ -82.001810927083312, 28.889043240773173 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Delwood Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001810927083312, 28.889043240773173 ], [ -82.001806151786653, 28.888914697270291 ], [ -82.001804953930304, 28.888734832679269 ], [ -82.001807343740438, 28.888579159634084 ], [ -82.001814513803168, 28.888541292719811 ], [ -82.001831244263812, 28.88850237544122 ], [ -82.001862317822329, 28.888458197615851 ], [ -82.001892197184176, 28.888430848603818 ], [ -82.001939094622315, 28.888407065311444 ], [ -82.001986614445897, 28.888388774300481 ], [ -82.002040565830114, 28.888384405704119 ], [ -82.002222302797932, 28.888387069960956 ], [ -82.002463107304521, 28.888395063066653 ], [ -82.002728142217862, 28.888391061082185 ], [ -82.003031038861096, 28.888365731125727 ], [ -82.0032036894615, 28.888344402047412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pennecamp Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003222848374818, 28.889490369417214 ], [ -82.003218849836756, 28.888880216730904 ], [ -82.003212854055633, 28.888570725938212 ], [ -82.0032036894615, 28.888344402047412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pennecamp Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0032036894615, 28.888344402047412 ], [ -82.003177937710845, 28.888164020907766 ], [ -82.003159057995092, 28.888052169366208 ], [ -82.003130371521024, 28.887925949766863 ], [ -82.003072998558139, 28.887745033214564 ], [ -82.003049094445018, 28.887677714794719 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pennecamp Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003049094445018, 28.887677714794719 ], [ -82.002947869344169, 28.887412750551331 ], [ -82.002855467445926, 28.887171784569198 ], [ -82.002727577611267, 28.88679207136985 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eldridge Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003190128668933, 28.886657625027901 ], [ -82.002727577611267, 28.88679207136985 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pennecamp Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002727577611267, 28.88679207136985 ], [ -82.002623595584041, 28.886492297924345 ], [ -82.002551881231938, 28.886253530297136 ], [ -82.002407382702685, 28.885697588567261 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eldridge Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004516860748851, 28.887705509092633 ], [ -82.004338549956586, 28.887750085982802 ], [ -82.003847052367803, 28.88783352357196 ], [ -82.003750001461228, 28.887842676995746 ], [ -82.003711213352588, 28.887835478434109 ], [ -82.003672967233655, 28.887816546330601 ], [ -82.00363950284283, 28.887797613206782 ], [ -82.003612014451534, 28.887774473416027 ], [ -82.003588109280827, 28.887751333540646 ], [ -82.003572571987547, 28.887723986049526 ], [ -82.003470977174686, 28.887449457823109 ], [ -82.003401462216075, 28.887274646621844 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002407382702685, 28.885697588567261 ], [ -82.002940284341506, 28.885584553721547 ], [ -82.003509738323885, 28.885451869288129 ], [ -82.004154524104848, 28.885275286256949 ], [ -82.004597910590277, 28.885142742129428 ], [ -82.005270849854156, 28.884917919516152 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006200878118349, 28.884477921328937 ], [ -82.006207126561961, 28.884474514883571 ], [ -82.006241709819349, 28.884455667083273 ], [ -82.006427409333597, 28.884345904209841 ], [ -82.00660837166123, 28.884230174372242 ], [ -82.006781337616957, 28.884107648523468 ], [ -82.00694864478227, 28.883980367589494 ], [ -82.007115952092576, 28.883845723668362 ], [ -82.007276087498738, 28.883707926348873 ], [ -82.007429051827387, 28.883563814895115 ], [ -82.007579625713717, 28.883415495957991 ], [ -82.007719440782111, 28.883267180123546 ], [ -82.007852085604341, 28.883109396678648 ], [ -82.007985552026213, 28.882948806898288 ], [ -82.008106791266542, 28.882783356964353 ], [ -82.008185953948114, 28.882667556610276 ], [ -82.008192655851076, 28.882657086831944 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arrobes Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007777778327423, 28.882437132916781 ], [ -82.008192655851076, 28.882657086831944 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008192655851076, 28.882657086831944 ], [ -82.008279888380926, 28.882524548277651 ], [ -82.008410985127242, 28.882309207453677 ], [ -82.008509573263211, 28.882126521786237 ], [ -82.008568595131521, 28.88200859113768 ], [ -82.008612519686835, 28.881912127107459 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Claverton Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011003098209841, 28.888761765642258 ], [ -82.010962408619577, 28.888705499509591 ], [ -82.010910316300368, 28.888629108423025 ], [ -82.010873419164284, 28.888562266108263 ], [ -82.010854245064692, 28.888521841796511 ], [ -82.010788045152538, 28.888400265423204 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Claverton Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011506633594209, 28.889312112012323 ], [ -82.011003098209841, 28.888761765642258 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kincord Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010532942378418, 28.889073821070301 ], [ -82.010804097446936, 28.888884836571343 ], [ -82.011003098209841, 28.888761765642258 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parrot Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006282025745989, 28.890428162611656 ], [ -82.006516019094647, 28.890327419756897 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meadowlark Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006526453603357, 28.891768898064647 ], [ -82.006520714670927, 28.89146347241919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Swordfish Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00579366830793, 28.891893512432155 ], [ -82.005796831960581, 28.891390031524153 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Swordfish Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005796831960581, 28.891390031524153 ], [ -82.005787832793871, 28.890746883986182 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grey Dove Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007183812480349, 28.891562293202739 ], [ -82.007564141383483, 28.891618552379757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kingfisher Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007183812480349, 28.891562293202739 ], [ -82.007202642137784, 28.891506439903004 ], [ -82.007212975255783, 28.891465282779599 ], [ -82.007219912513762, 28.891437653105999 ], [ -82.007222609634212, 28.891321905004091 ], [ -82.007210875175488, 28.889996826189371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mangrove Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008200047337425, 28.89244035553746 ], [ -82.00867400013297, 28.892436290212508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pennecamp Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008200047337425, 28.89244035553746 ], [ -82.008187593170945, 28.892398581551728 ], [ -82.008174543175784, 28.892354806296556 ], [ -82.008152229156281, 28.892302917174387 ], [ -82.008123539444696, 28.892258041982057 ], [ -82.008086884133647, 28.892210358365432 ], [ -82.00803907317578, 28.892168288562683 ], [ -82.007989668147417, 28.892129022276229 ], [ -82.007914765241154, 28.892086953007393 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jetta Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008181008272402, 28.89356231877515 ], [ -82.00861355716242, 28.893553313177108 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pennecamp Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010246927895864, 28.8932524390002 ], [ -82.010131461782009, 28.893343413475648 ], [ -82.010043934507308, 28.893431929837298 ], [ -82.010010483141485, 28.893475251592253 ], [ -82.009980209154577, 28.893529949314228 ], [ -82.009959497044235, 28.893595866464295 ], [ -82.009951536519267, 28.893673001020677 ], [ -82.009950845884944, 28.893812198862598 ], [ -82.009950858914792, 28.893954796518479 ], [ -82.009942006996511, 28.894016603765571 ], [ -82.009924479869156, 28.894054470891639 ], [ -82.009905358901761, 28.894086728527508 ], [ -82.00987348920394, 28.894117584864162 ], [ -82.009826090106898, 28.894146574496141 ], [ -82.00976831388482, 28.894163873719283 ], [ -82.009705029420715, 28.894166251056092 ], [ -82.009490841029873, 28.894167903926292 ], [ -82.009211466906351, 28.894167922960847 ], [ -82.008894842424297, 28.894166303331815 ], [ -82.008540969136376, 28.894169603593646 ], [ -82.008289531395206, 28.894169619068613 ], [ -82.008064716832649, 28.894172391836022 ], [ -82.007873481809511, 28.894173806264767 ], [ -82.007769895526167, 28.894158173151897 ], [ -82.007691804488573, 28.894128936451398 ], [ -82.007648773832969, 28.894102291989476 ], [ -82.00760096199248, 28.894057416794123 ], [ -82.007562712588282, 28.894004125337652 ], [ -82.007543584700031, 28.893960649908887 ], [ -82.00753561300975, 28.893915771729908 ], [ -82.007540391171887, 28.893859673698376 ], [ -82.007549950034687, 28.89381479371405 ], [ -82.007572257246011, 28.893767110526955 ], [ -82.00760890528548, 28.893689973719219 ], [ -82.007656708588158, 28.893614238491569 ], [ -82.007792194835361, 28.893433707294456 ], [ -82.007830398906378, 28.893384226734579 ], [ -82.007900206726205, 28.89327963017352 ], [ -82.007937915939678, 28.893208175898895 ], [ -82.007988194690185, 28.893087702578761 ], [ -82.008051040273088, 28.892910833894494 ], [ -82.008131544545563, 28.892739082037451 ], [ -82.00815863123799, 28.892678775302695 ], [ -82.008180937701681, 28.8926142605035 ], [ -82.008190972640293, 28.892565446411211 ], [ -82.008200052674468, 28.892511880859775 ], [ -82.008200047337425, 28.89244035553746 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pennecamp Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007914765241154, 28.892086953007393 ], [ -82.007950400887623, 28.892001162183693 ], [ -82.00796436414501, 28.891929862571338 ], [ -82.007959693831026, 28.891729076689398 ], [ -82.007953961797895, 28.89144936125064 ], [ -82.00796352095837, 28.891399922801085 ], [ -82.007981446801494, 28.891356796385196 ], [ -82.008017297254767, 28.891310514541331 ], [ -82.008065821203445, 28.891279969004721 ], [ -82.008118885658703, 28.891257916549282 ], [ -82.008154742057926, 28.891251603859427 ], [ -82.008309798977407, 28.891248813299157 ], [ -82.008514667184045, 28.891252079496365 ], [ -82.008957929521074, 28.891252052770891 ], [ -82.009686145923254, 28.891252005699329 ], [ -82.010352899114466, 28.891250318767838 ], [ -82.010684412700655, 28.891248657622576 ], [ -82.010787950511556, 28.891255112117037 ], [ -82.010834166223532, 28.891270536146845 ], [ -82.010874008950225, 28.891297178943883 ], [ -82.010913502759863, 28.891330591713587 ], [ -82.010940947024125, 28.89136869916096 ], [ -82.01095688597276, 28.891399552091038 ], [ -82.010963264387485, 28.891431807928253 ], [ -82.010952120159743, 28.891538394789329 ], [ -82.010926578726327, 28.891723966491135 ], [ -82.010876322249857, 28.892005888570019 ], [ -82.010799995631402, 28.892359930725213 ], [ -82.010721801773471, 28.892654967054007 ], [ -82.010665940238567, 28.892782050257768 ], [ -82.010602628712945, 28.892897556578625 ], [ -82.010533959631147, 28.892999644258381 ], [ -82.010416634568273, 28.89312688435534 ], [ -82.010246927895864, 28.8932524390002 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pennecamp Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007914765241154, 28.892086953007393 ], [ -82.007879705478757, 28.892068723028007 ], [ -82.007833490048966, 28.892056103237518 ], [ -82.007771338694795, 28.892043486083576 ], [ -82.007672534507563, 28.892029464141086 ], [ -82.007278911217071, 28.89197198602486 ], [ -82.0069267222961, 28.891920111714654 ], [ -82.006682898591379, 28.891886463519452 ], [ -82.006550629148222, 28.891882261989672 ], [ -82.006448043022587, 28.891885948759686 ], [ -82.006196850951838, 28.891890691971689 ], [ -82.006034303436323, 28.891894906940241 ], [ -82.00579366830793, 28.891893512432155 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pennecamp Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003309656948815, 28.89041839994109 ], [ -82.003254676177406, 28.890270702579024 ], [ -82.003230513338139, 28.8901399931082 ], [ -82.003224937541631, 28.890010493256487 ], [ -82.003224933094288, 28.889807897032973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pennecamp Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003612679605439, 28.890904177597832 ], [ -82.003520896251445, 28.890759626589311 ], [ -82.003413830437452, 28.890611930414291 ], [ -82.00338111808928, 28.890569142203407 ], [ -82.003335699514523, 28.890484995500245 ], [ -82.003309656948815, 28.89041839994109 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trout Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003744443460675, 28.89020940243476 ], [ -82.003817350254423, 28.890189417474602 ], [ -82.00384603289065, 28.890186260542944 ], [ -82.003872326733841, 28.890185208729751 ], [ -82.003898620752423, 28.890189414615818 ], [ -82.003935577670319, 28.890198590104859 ], [ -82.004059529305366, 28.890241559950482 ], [ -82.004266117584194, 28.890320889269727 ], [ -82.004711390999788, 28.890479293337375 ], [ -82.005084264910394, 28.890623948195032 ], [ -82.00528072245605, 28.890690982445964 ], [ -82.005384967854027, 28.890719206357165 ], [ -82.005509256949864, 28.89074037257009 ], [ -82.005625527794919, 28.890747425185637 ], [ -82.005787832793871, 28.890746883986182 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Salmon Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003744443460675, 28.89020940243476 ], [ -82.003759982114815, 28.890266202784328 ], [ -82.003783887826557, 28.890318793703784 ], [ -82.003813767707996, 28.890369282116954 ], [ -82.003861578959047, 28.890434496536187 ], [ -82.003933587632943, 28.890532240977983 ], [ -82.004063897259002, 28.890719246665416 ], [ -82.004173536458097, 28.890865742192577 ], [ -82.004202541479231, 28.890898355969295 ], [ -82.00423807980637, 28.890938317897469 ], [ -82.004279913241348, 28.890976181796646 ], [ -82.004346845764417, 28.891025616990298 ], [ -82.004406330208511, 28.891060090417191 ], [ -82.004498925047542, 28.891100832951089 ], [ -82.004745501316918, 28.891188511151338 ], [ -82.004933943098351, 28.891255547048825 ], [ -82.005162478360788, 28.891320814629815 ], [ -82.005382994314843, 28.891366676335746 ], [ -82.005617542248174, 28.891389603395375 ], [ -82.005796831960581, 28.891390031524153 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triggerfish Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003222848374818, 28.889490369417214 ], [ -82.003544826845982, 28.889492052811182 ], [ -82.003713347073273, 28.889492049042353 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Salmon Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003713347073273, 28.889492049042353 ], [ -82.003715057588195, 28.88976304321811 ], [ -82.003713364770107, 28.890050575725464 ], [ -82.003716950684122, 28.890101064764472 ], [ -82.003730099488251, 28.890159967533368 ], [ -82.003744443460675, 28.89020940243476 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triggerfish Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003713347073273, 28.889492049042353 ], [ -82.003764737939349, 28.889489944588671 ], [ -82.003825693584133, 28.889493098495077 ], [ -82.003875456678784, 28.889501107021744 ], [ -82.003984384730543, 28.889524242935899 ], [ -82.004127117491322, 28.889573825214168 ], [ -82.004510240866807, 28.889715954075125 ], [ -82.004994781558921, 28.889897748221486 ], [ -82.005460544770372, 28.890069625013339 ], [ -82.005561960975896, 28.890099371073624 ], [ -82.005652106565407, 28.890109285819271 ], [ -82.005784772817577, 28.890118571780967 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pennecamp Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00579366830793, 28.891893512432155 ], [ -82.005549846607622, 28.891871083190349 ], [ -82.005411203289427, 28.891850051975521 ], [ -82.005266185544372, 28.891822007259183 ], [ -82.005135219187508, 28.891791176514879 ], [ -82.005012112423671, 28.891754367647966 ], [ -82.004746773964314, 28.891663916851897 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pennecamp Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004746773964314, 28.891663916851897 ], [ -82.00462127607517, 28.891615535700229 ], [ -82.004516096525791, 28.891575568695469 ], [ -82.004403747224146, 28.891533498548469 ], [ -82.004272274230303, 28.891481961894478 ], [ -82.004177853079796, 28.891439891069975 ], [ -82.004097771416298, 28.891395716546864 ], [ -82.004015936307468, 28.891343016185196 ], [ -82.003947173593033, 28.891292640678039 ], [ -82.003887412695164, 28.891237945605518 ], [ -82.003837211704578, 28.891189560965458 ], [ -82.00378420631607, 28.891131095873778 ], [ -82.003612679605439, 28.890904177597832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004465916398445, 28.89202260302697 ], [ -82.004505357041126, 28.892000511780751 ], [ -82.00453643129984, 28.891976319309929 ], [ -82.004565115659148, 28.891953178984 ], [ -82.004598579562824, 28.891922673936733 ], [ -82.004630848784032, 28.891886910311452 ], [ -82.004665507092398, 28.891831161560248 ], [ -82.004746773964314, 28.891663916851897 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mystic Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005083513303234, 28.893231128229537 ], [ -82.005181891140367, 28.893052331479055 ], [ -82.005293035567192, 28.89283039073425 ], [ -82.005389837447325, 28.892622122953362 ], [ -82.005405371141975, 28.892570581218195 ], [ -82.005410151259895, 28.892532714221748 ], [ -82.005406564174663, 28.892498002866375 ], [ -82.005395806200582, 28.892462241488353 ], [ -82.005379072001901, 28.892429636566572 ], [ -82.005356359581867, 28.892401237473926 ], [ -82.005324088701073, 28.892378097316904 ], [ -82.00528345142196, 28.89235285327873 ], [ -82.00523444721432, 28.892336027073064 ], [ -82.005142415841689, 28.892316045155756 ], [ -82.005026478911802, 28.892293960699664 ], [ -82.00476064135006, 28.892217106717066 ], [ -82.004683450745901, 28.892187733790418 ], [ -82.00460170766074, 28.892151550393045 ], [ -82.00455197476343, 28.892110954667857 ], [ -82.004517312739438, 28.892076245093886 ], [ -82.004465916398445, 28.89202260302697 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landings Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004282739730982, 28.892986778030178 ], [ -82.004948828722206, 28.893180663389423 ], [ -82.005083513303234, 28.893231128229537 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mystic Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004536514434662, 28.894051599384255 ], [ -82.004836497341003, 28.893629803000035 ], [ -82.005034890827375, 28.893322658241328 ], [ -82.005083513303234, 28.893231128229537 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Swallow Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000176332511813, 28.893700341927161 ], [ -82.000010307694566, 28.893300321929459 ], [ -81.999967846446467, 28.893223419706842 ], [ -81.999904790092572, 28.893156794667963 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999327720564082, 28.894056911447635 ], [ -81.999820154328987, 28.89385180548831 ], [ -82.000176332511813, 28.893700341927161 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000176332511813, 28.893700341927161 ], [ -82.000286293583358, 28.893665632558452 ], [ -82.000379520722461, 28.893636179872388 ], [ -82.000446454100185, 28.893617246106118 ], [ -82.000569560323825, 28.893590951370737 ], [ -82.000852826732142, 28.893533100188883 ], [ -82.00106079427151, 28.893492077483 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Horizon Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007573772348493, 28.896810451683098 ], [ -82.007636567135862, 28.897590094648194 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baypoint Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01215536288926, 28.898327942106903 ], [ -82.012223491916501, 28.898338454346753 ], [ -82.012480478584692, 28.898338431926145 ], [ -82.012627496757759, 28.898342627202545 ], [ -82.012688357887512, 28.898350357165317 ], [ -82.012757138467364, 28.898364184123803 ], [ -82.012804269774108, 28.898384917403497 ], [ -82.012864172108635, 28.898417285554373 ], [ -82.012929917386685, 28.898470923943776 ], [ -82.012974148328809, 28.898519303874735 ], [ -82.013008816948599, 28.898567684671992 ], [ -82.013031532382556, 28.898618170725211 ], [ -82.013047737335469, 28.898672302664426 ], [ -82.01306637783668, 28.898796866941733 ], [ -82.013081296307831, 28.898937825431073 ], [ -82.013093746934842, 28.899096751625898 ], [ -82.013096143542768, 28.899150395789384 ], [ -82.013096154657973, 28.899250319091649 ], [ -82.013088791238559, 28.899314807988997 ], [ -82.013070191955066, 28.899531165677605 ], [ -82.013073936946043, 28.899695071551786 ], [ -82.013077681948658, 28.899858975617231 ], [ -82.013047923025738, 28.900206458202884 ], [ -82.013059107168573, 28.900278577017897 ], [ -82.013269613125672, 28.900688918391641 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baypoint Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010534091168083, 28.897655475016133 ], [ -82.011226994066163, 28.897947992675469 ], [ -82.012106355009109, 28.898313219877227 ], [ -82.01215536288926, 28.898327942106903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99737115098587, 28.893309028212681 ], [ -81.997482302982249, 28.893467857828817 ], [ -81.997783814035273, 28.893845281132165 ], [ -81.998150415210489, 28.894291460882719 ], [ -81.998192247589955, 28.894344052050023 ], [ -81.998217347623552, 28.894367193699953 ], [ -81.998251702101641, 28.894389500849378 ], [ -81.99828069234789, 28.8944040093373 ], [ -81.998340069631169, 28.894417867675507 ], [ -81.998418144692593, 28.894417684640477 ], [ -81.998479101480285, 28.89440401286647 ], [ -81.998672837599756, 28.894321712768406 ], [ -81.999327720564082, 28.894056911447635 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00106079427151, 28.893492077483 ], [ -82.000943661278654, 28.893050304520116 ], [ -82.000885094329391, 28.892762100989266 ], [ -82.00086836117022, 28.892657969275803 ], [ -82.000856408886932, 28.892539110207466 ], [ -82.000844455293404, 28.892346624347105 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Viewpoint Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99737115098587, 28.893309028212681 ], [ -81.997704368012933, 28.893071643176249 ], [ -81.997783835945938, 28.893010454222594 ], [ -81.997843436696101, 28.8929492630763 ], [ -81.998310614856081, 28.892302432113183 ], [ -81.998531733546159, 28.891994247128341 ], [ -81.998578348203736, 28.891925877691488 ], [ -81.998618247221572, 28.891856567964144 ], [ -81.998640502076967, 28.891790191404091 ], [ -81.998660823150345, 28.89160506759503 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000844455293404, 28.892346624347105 ], [ -82.000852819653545, 28.891894332836916 ], [ -82.000850429407095, 28.891819652160002 ], [ -82.000842062842906, 28.891750230098285 ], [ -82.000824133552456, 28.891686068461123 ], [ -82.000803815483053, 28.891646098396023 ], [ -82.000773730683235, 28.89161618267131 ], [ -82.000714131249921, 28.891576845146343 ], [ -82.000681906794114, 28.891565107143194 ], [ -82.000647245270414, 28.891555641125006 ], [ -82.00054565376918, 28.891555641113868 ], [ -82.000164385451924, 28.891572469191004 ], [ -81.999382724317229, 28.891600866281966 ], [ -81.998922571621875, 28.891617692536581 ], [ -81.998810223613589, 28.891614536111732 ], [ -81.998660823150345, 28.89160506759503 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998660823150345, 28.89160506759503 ], [ -81.998523375531065, 28.891589289272989 ], [ -81.998210995899683, 28.89152437994619 ], [ -81.998039322025107, 28.89148935727254 ], [ -81.99797956178935, 28.891483043824909 ], [ -81.997922191209454, 28.891488304196006 ], [ -81.997870797791634, 28.891501975887504 ], [ -81.997818638262103, 28.89152437369183 ], [ -81.997769204650623, 28.891557721840215 ], [ -81.997739324069755, 28.891592430992151 ], [ -81.997300667126936, 28.892198283591963 ], [ -81.997079543422089, 28.892504364186614 ], [ -81.997058028224487, 28.892553799813815 ], [ -81.997050854984337, 28.89259587390265 ], [ -81.997047268132988, 28.892640050433055 ], [ -81.997049657004226, 28.892673709891312 ], [ -81.997073560349605, 28.892746286949741 ], [ -81.997103884270786, 28.892813471101501 ], [ -81.997134509297055, 28.89289249433179 ], [ -81.997228926620068, 28.893087085549396 ], [ -81.997285100730664, 28.893179649210627 ], [ -81.99737115098587, 28.893309028212681 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vinewood Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002472999912285, 28.892844950200548 ], [ -82.00242040505853, 28.892599872684684 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vinewood Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00242040505853, 28.892599872684684 ], [ -82.002404865091606, 28.892454718071672 ], [ -82.002397691438404, 28.892307460081348 ], [ -82.002398874756594, 28.891724741987371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duxbury Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002398874756594, 28.891724741987371 ], [ -82.002795681611218, 28.891719476630012 ], [ -82.003088505742667, 28.891711055810159 ], [ -82.003221954672355, 28.891705909276986 ], [ -82.003296468656686, 28.891702638778924 ], [ -82.003368180288277, 28.891690014150942 ], [ -82.003404036037168, 28.891681599463169 ], [ -82.003455430662285, 28.89166581986456 ], [ -82.003493675041781, 28.891648990250847 ], [ -82.003527139129375, 28.891617434288207 ], [ -82.003576350285314, 28.89154795519611 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sagecrest Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003937098651178, 28.891789926542227 ], [ -82.003873205376976, 28.891759210197101 ], [ -82.00377324377034, 28.89169256868859 ], [ -82.003661165158164, 28.891612598601291 ], [ -82.003576350285314, 28.89154795519611 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jonquil Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003230716407913, 28.891089416080128 ], [ -82.00326537652451, 28.891082052631862 ], [ -82.003315837800798, 28.891063462438542 ], [ -82.003476374443622, 28.890984153243203 ], [ -82.003612679605439, 28.890904177597832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sagecrest Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003576350285314, 28.89154795519611 ], [ -82.003476388148499, 28.891449991917021 ], [ -82.003397630019876, 28.89135669391985 ], [ -82.003311994079226, 28.89124824278267 ], [ -82.003253426152327, 28.891164096323486 ], [ -82.00324147369993, 28.891132541312242 ], [ -82.003230716407913, 28.891089416080128 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jadestone Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001637523656171, 28.890982150505984 ], [ -82.001642303480693, 28.89081070077566 ], [ -82.001650668823544, 28.8906539765551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jonquil Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002349859660285, 28.891083119630142 ], [ -82.002594875100002, 28.891094685542047 ], [ -82.002949846513957, 28.891092577491808 ], [ -82.003230716407913, 28.891089416080128 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jonquil Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001637523656171, 28.890982150505984 ], [ -82.0018024610292, 28.890990564002941 ], [ -82.001978156025103, 28.891029480353449 ], [ -82.002123968377916, 28.891054722452015 ], [ -82.002257829103669, 28.891073652948535 ], [ -82.002349859660285, 28.891083119630142 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odeum Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001716429222157, 28.892673508898316 ], [ -82.002046306765394, 28.892656676082218 ], [ -82.002227174138724, 28.892636270319819 ], [ -82.002348692786072, 28.892617753608071 ], [ -82.00242040505853, 28.892599872684684 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odeum Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00139611219285, 28.892671406986391 ], [ -82.001509279263672, 28.892673597062402 ], [ -82.001716429222157, 28.892673508898316 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jadestone Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001716429222157, 28.892673508898316 ], [ -82.001703571970012, 28.892578670045317 ], [ -82.001696106757777, 28.892487332070733 ], [ -82.001692522022637, 28.892376889662849 ], [ -82.001691322932999, 28.892167573183798 ], [ -82.001679365872988, 28.891730008219252 ], [ -82.00164708979824, 28.891271407154111 ], [ -82.001641111398527, 28.891095749184803 ], [ -82.001637523656171, 28.890982150505984 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vinewood Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002398874756594, 28.891724741987371 ], [ -82.002391702744362, 28.891660578612278 ], [ -82.002364206664012, 28.891376582681911 ], [ -82.002347469824699, 28.891142023628227 ], [ -82.002349859660285, 28.891083119630142 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Adair Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998378358425555, 28.890189308895739 ], [ -81.99877385715422, 28.890283723050022 ], [ -81.998857520743911, 28.890296344362156 ], [ -81.998960305747616, 28.890296346220541 ], [ -81.99970305506254, 28.890263071252434 ], [ -82.000433969043598, 28.890240605939205 ], [ -82.000968178090844, 28.890226641592147 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flagstone Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998378358425555, 28.890189308895739 ], [ -81.998509727372664, 28.889925041204265 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sagamore Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998153545733729, 28.890747577035089 ], [ -81.99816669228683, 28.890770716723203 ], [ -81.998185814282408, 28.890786494629115 ], [ -81.998215693386499, 28.890804377754861 ], [ -81.99825274444791, 28.890813843415767 ], [ -81.998492976850756, 28.890868544955904 ], [ -81.99869137966968, 28.890907464384224 ], [ -81.998810489514028, 28.890917062498417 ], [ -81.998951845876803, 28.890917062940325 ], [ -81.999707088383403, 28.890892188482258 ], [ -82.000430021950066, 28.890856647011997 ], [ -82.000937891927833, 28.890845096396511 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flagstone Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997969479274801, 28.891038933261719 ], [ -81.998084223214946, 28.890787546085072 ], [ -81.998106932361424, 28.890768613464992 ], [ -81.998153545733729, 28.890747577035089 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flagstone Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998153545733729, 28.890747577035089 ], [ -81.998152351307979, 28.890699192964817 ], [ -81.998153547699602, 28.890656067536398 ], [ -81.998165500124827, 28.89061609761195 ], [ -81.998378358425555, 28.890189308895739 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ashwood Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001116399552004, 28.887715136153638 ], [ -82.000635949397662, 28.887717239431531 ], [ -82.000285768023517, 28.887728810125829 ], [ -81.99987673240598, 28.887741275095234 ], [ -81.999543578112224, 28.887749844032278 ], [ -81.999225664946806, 28.887763516567784 ], [ -81.999008146384369, 28.887781395775999 ], [ -81.998944802600278, 28.887799277015475 ], [ -81.998904166791135, 28.887823469130378 ], [ -81.998880263928797, 28.88784871257344 ], [ -81.99885277453825, 28.887888681525585 ], [ -81.998836786369424, 28.887924316834983 ], [ -81.998822649465353, 28.888048717799723 ], [ -81.998804472165034, 28.888231766461242 ], [ -81.998786295634346, 28.888427255134761 ], [ -81.998760038672074, 28.888711600478967 ], [ -81.998735803961367, 28.888958625772261 ], [ -81.998713588495363, 28.889166553487723 ], [ -81.998696397697756, 28.889376293969615 ], [ -81.998695204655476, 28.889417256596733 ], [ -81.998704419010679, 28.889458042485693 ], [ -81.998727424977488, 28.889509681392063 ], [ -81.998745325561444, 28.889536990609237 ], [ -81.998770124121023, 28.889562862530575 ], [ -81.998803801411754, 28.889590556281835 ], [ -81.998842819329056, 28.889616177492652 ], [ -81.998884953118605, 28.889635718118491 ], [ -81.998932690052911, 28.889649372173825 ], [ -81.998975652491879, 28.889653574572424 ], [ -81.99904487090221, 28.889651473706181 ], [ -81.999182112298072, 28.889644122829587 ], [ -81.999425570620446, 28.889634671880046 ], [ -81.99967618623019, 28.889626269892119 ], [ -81.999956638912508, 28.889616819915979 ], [ -82.000229930466162, 28.889607367430507 ], [ -82.000549162562166, 28.889591305211194 ], [ -82.000813696164613, 28.889589528451431 ], [ -82.001007552698155, 28.889591304656086 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boxwood Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001113699321579, 28.888353256763939 ], [ -82.001116399552004, 28.887715136153638 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ashwood Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003049094445018, 28.887677714794719 ], [ -82.002971409777913, 28.887705064908513 ], [ -82.002914041964317, 28.887721895611005 ], [ -82.002862651147936, 28.88773346577646 ], [ -82.002808394707756, 28.887741950100366 ], [ -82.002725209195759, 28.887754505136328 ], [ -82.002635571681239, 28.887759766018533 ], [ -82.002319919101026, 28.88775509555256 ], [ -82.00188010383367, 28.887737218590431 ], [ -82.001116399552004, 28.887715136153638 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boxwood Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001116399552004, 28.887715136153638 ], [ -82.00111281473265, 28.887628884334514 ], [ -82.001108028296954, 28.887080875566404 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ethanwood Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001108028296954, 28.887080875566404 ], [ -82.001631503287655, 28.887062989954529 ], [ -82.002359249187151, 28.887037378840198 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boxwood Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001108028296954, 28.887080875566404 ], [ -82.001104442331865, 28.886667500872171 ], [ -82.00110682939912, 28.886565473188728 ], [ -82.001111610771304, 28.886523399782053 ], [ -82.001130347477087, 28.886475735666441 ], [ -82.001151049640939, 28.886444511463136 ], [ -82.0011821240183, 28.886416111415699 ], [ -82.001217977026855, 28.88639717828136 ], [ -82.001257416285313, 28.886381399564623 ], [ -82.001296856629153, 28.886374036597157 ], [ -82.00156815221321, 28.886331962476792 ], [ -82.001945334589067, 28.886277113839988 ], [ -82.00205910663135, 28.886268191625238 ], [ -82.002107646976242, 28.886273901761442 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abordale Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000531929897392, 28.884538402378865 ], [ -82.00090594166187, 28.884510050913416 ], [ -82.001129632411718, 28.884492726079273 ], [ -82.001256321230159, 28.884486523127375 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Altamonte Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001256321230159, 28.884486523127375 ], [ -82.00125273179701, 28.883834118749526 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Altamonte Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00125273179701, 28.883834118749526 ], [ -82.001250938805228, 28.883718154094513 ], [ -82.001260797682875, 28.883662142793309 ], [ -82.001276930879484, 28.883620331878756 ], [ -82.001297546274159, 28.883584043023848 ], [ -82.00131886908531, 28.883552845848286 ], [ -82.001370147804195, 28.883485431937117 ], [ -82.001447230382752, 28.883392344671634 ], [ -82.001530587913678, 28.883287421832367 ], [ -82.001621115444962, 28.883179344441995 ], [ -82.0016524870083, 28.883147000312608 ], [ -82.001684753584399, 28.883117811516669 ], [ -82.001729569466747, 28.88308389004024 ], [ -82.001781556634256, 28.88305706689254 ], [ -82.001838023908221, 28.883033400837093 ], [ -82.001898078280746, 28.883008154794489 ], [ -82.001941999310262, 28.882991588120227 ], [ -82.001996674573974, 28.882974231809207 ], [ -82.00205672699866, 28.882960031669345 ], [ -82.002114092432194, 28.882948986880297 ], [ -82.002179523086937, 28.882941096419895 ], [ -82.002313972535802, 28.882925318065926 ], [ -82.002477998641268, 28.882906382022668 ], [ -82.002641128653735, 28.882886658986418 ], [ -82.00283949325943, 28.882861798377618 ], [ -82.003017994769664, 28.882839352389023 ], [ -82.003181734522741, 28.882818086654673 ], [ -82.003326684661289, 28.882801547353548 ], [ -82.003369836885582, 28.882799079590846 ], [ -82.003403895925629, 28.882805388687434 ], [ -82.003436165217053, 28.882819589340606 ], [ -82.003460366362305, 28.882836943699083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edenton Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003491784058255, 28.883416973015045 ], [ -82.00349443078423, 28.882955275292378 ], [ -82.003493532062052, 28.882898476342742 ], [ -82.003488154190691, 28.882873231869155 ], [ -82.003477398405224, 28.88285587542768 ], [ -82.003460366362305, 28.882836943699083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edenton Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003460366362305, 28.882836943699083 ], [ -82.003480084851944, 28.882801444040094 ], [ -82.003491736601035, 28.882782509900814 ], [ -82.00349442415849, 28.882765943590229 ], [ -82.003499793630567, 28.882473268479728 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Goldenrod Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00125273179701, 28.883834118749526 ], [ -82.001403315223314, 28.883833329354644 ], [ -82.001502807811889, 28.883833328744618 ], [ -82.001544936296867, 28.883827805478077 ], [ -82.001601403051666, 28.883807293968992 ], [ -82.001718828804201, 28.88375719910638 ], [ -82.001840960145898, 28.883709948152614 ], [ -82.001964437462632, 28.883662697074669 ], [ -82.002091940581749, 28.883613083614929 ], [ -82.002191259115861, 28.883578824825634 ], [ -82.002285207772161, 28.883554018537634 ], [ -82.002404657248718, 28.883535116509975 ], [ -82.002546921487323, 28.883519758292955 ], [ -82.002675767908187, 28.883504400130406 ], [ -82.002830113952982, 28.883486679205536 ], [ -82.003039485136753, 28.883461870455992 ], [ -82.00320456790547, 28.883442966895082 ], [ -82.003338483735462, 28.883427818238282 ], [ -82.003491784058255, 28.883416973015045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edenton Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003489970178677, 28.883684202210912 ], [ -82.003491784058255, 28.883416973015045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abordale Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001256321230159, 28.884486523127375 ], [ -82.00165339965632, 28.884450232836784 ], [ -82.001752892719765, 28.884441553708374 ], [ -82.001806672902276, 28.884436031164494 ], [ -82.001864037110622, 28.884424197871763 ], [ -82.001908854838376, 28.884412363772359 ], [ -82.00194291608716, 28.884399741152375 ], [ -82.002028065852045, 28.88435240737719 ], [ -82.002132937206085, 28.884293240550949 ], [ -82.002233770224223, 28.884237568303568 ], [ -82.00228710497602, 28.884211982905924 ], [ -82.002345365884267, 28.884190684257398 ], [ -82.00240004178346, 28.88417727174355 ], [ -82.002460992984538, 28.884166226760591 ], [ -82.002593463449216, 28.884158813389707 ], [ -82.00276346880068, 28.884158810800759 ], [ -82.002958527005006, 28.884157233050491 ], [ -82.003098110514145, 28.884158805078076 ], [ -82.003223375783861, 28.884150927437279 ], [ -82.003321528679223, 28.884148963004822 ], [ -82.003387162963193, 28.88414034650425 ], [ -82.003479486150582, 28.884125118248377 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Markridge Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000531929897392, 28.884538402378865 ], [ -82.000524771289847, 28.88401865340748 ], [ -82.000521126324912, 28.883693085957997 ], [ -82.00052202104068, 28.883447743913333 ], [ -82.000525607123876, 28.883402776826493 ], [ -82.000534569334562, 28.883362544118228 ], [ -82.000558771038783, 28.883306533776331 ], [ -82.000575801518266, 28.88327182134843 ], [ -82.000600899233532, 28.8832339571814 ], [ -82.000626891935028, 28.883200822873288 ], [ -82.000749688305078, 28.883103791133166 ], [ -82.000815119994556, 28.883047780699911 ], [ -82.0008581430303, 28.883005180277895 ], [ -82.000917300389858, 28.882941281886115 ], [ -82.00097825063547, 28.882859237279593 ], [ -82.001029408166289, 28.882775979980991 ], [ -82.001063399888707, 28.882698305257467 ], [ -82.001087600094493, 28.882636772730958 ], [ -82.001105526075222, 28.882568140011802 ], [ -82.001125244969742, 28.882482940125964 ], [ -82.001130621727995, 28.882433240439251 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glenmont Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001130621727995, 28.882433240439251 ], [ -82.001204119476114, 28.882445073829658 ], [ -82.001264173911082, 28.882449807033709 ], [ -82.001390554851511, 28.882455328464232 ], [ -82.001438956975377, 28.882454538668465 ], [ -82.001504387371696, 28.88244665124256 ], [ -82.001556373411788, 28.882434027697659 ], [ -82.001618219606755, 28.88241509336434 ], [ -82.001733843576801, 28.882366181411207 ], [ -82.001785143147529, 28.88231180197851 ], [ -82.001841400792841, 28.88228177018453 ], [ -82.001911253592468, 28.882266593729987 ], [ -82.002021899521878, 28.882253507456614 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Markridge Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001130621727995, 28.882433240439251 ], [ -82.001129723860416, 28.882314118602057 ], [ -82.001124346169945, 28.882228131997056 ], [ -82.001109108391233, 28.882159499390962 ], [ -82.001098351838635, 28.882110588371045 ], [ -82.001079529133278, 28.882057733417074 ], [ -82.001068772680512, 28.882020656078485 ], [ -82.001062498300755, 28.881978846153 ], [ -82.001065187177545, 28.881951234815265 ], [ -82.001072358140561, 28.88192283485121 ], [ -82.001090284201169, 28.881883391581873 ], [ -82.001110899387768, 28.881857357403611 ], [ -82.001139581653092, 28.88182343436949 ], [ -82.00119694322639, 28.881778468845337 ], [ -82.001302708251586, 28.881693270339731 ], [ -82.00149093254231, 28.881533914692213 ], [ -82.001667350491331, 28.881387616076672 ], [ -82.001840927293713, 28.881249013886084 ], [ -82.002021662250641, 28.88109938887948 ], [ -82.002235757227709, 28.880915424341413 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Markridge Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002235757227709, 28.880915424341413 ], [ -82.002320009653829, 28.880845213416357 ], [ -82.002372889252683, 28.880804979112821 ], [ -82.002418601035586, 28.880775789958228 ], [ -82.002472378828756, 28.880746601580547 ], [ -82.002518090765903, 28.880727666148321 ], [ -82.002570074705687, 28.880710311443089 ], [ -82.002639023197958, 28.880696180390267 ], [ -82.002715276155755, 28.880689008642392 ], [ -82.002791460490499, 28.880685063483245 ], [ -82.002898121085153, 28.880682694093366 ], [ -82.002959070524568, 28.880685060694901 ], [ -82.00300657514785, 28.88069847077649 ], [ -82.003055872059775, 28.880722924079198 ], [ -82.003086347882501, 28.880746590900607 ], [ -82.003116821053197, 28.880786035361897 ], [ -82.003140078273518, 28.880833198238811 ], [ -82.003149090543459, 28.880872023208525 ], [ -82.003154394928487, 28.880916671701655 ], [ -82.003162541393834, 28.881050309639086 ], [ -82.003159857339142, 28.88123885192703 ], [ -82.003163447458888, 28.881431338954428 ], [ -82.003167929486295, 28.881468417148557 ], [ -82.003175998528192, 28.881502339023765 ], [ -82.003193028967885, 28.881548092608629 ], [ -82.003247706382666, 28.88164512416451 ], [ -82.003319415172044, 28.881777655509261 ], [ -82.003390228067161, 28.881907818289839 ], [ -82.00340098455527, 28.881953573778315 ], [ -82.003399583445571, 28.882000266104917 ], [ -82.003385748867487, 28.882045083703431 ], [ -82.00336021681035, 28.882085316041572 ], [ -82.00332928493863, 28.882120030007098 ], [ -82.003288950826203, 28.882145273594915 ], [ -82.003247480529438, 28.882160917607305 ], [ -82.003177808425406, 28.882176043319614 ], [ -82.003095346924823, 28.882183144161182 ], [ -82.002971656771209, 28.882196557273716 ], [ -82.002890092276502, 28.882203658876438 ], [ -82.002838105063987, 28.882198137653173 ], [ -82.002809422265955, 28.882189459784467 ], [ -82.00278522051525, 28.882179203712735 ], [ -82.002747576312572, 28.88215790548303 ], [ -82.002709929743929, 28.882121617308204 ], [ -82.002676764035584, 28.882074284884375 ], [ -82.002648977455038, 28.882025375148526 ], [ -82.002587130113625, 28.881920454636763 ], [ -82.002542312472457, 28.881830521985048 ], [ -82.002515421883317, 28.881774511996209 ], [ -82.002490323052768, 28.88170430245739 ], [ -82.002465462578499, 28.881606532108847 ], [ -82.002445504916437, 28.881527592722069 ], [ -82.002438331526122, 28.881410839505907 ], [ -82.002438614796503, 28.881269483129778 ], [ -82.002427572397011, 28.881204153031703 ], [ -82.002409979332114, 28.881148208760116 ], [ -82.002389027921225, 28.881097654879476 ], [ -82.002360345763378, 28.881050321409028 ], [ -82.002328077637017, 28.881006145130709 ], [ -82.002235757227709, 28.880915424341413 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Huckleberry Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996008098506167, 28.884700968754618 ], [ -81.996287608920596, 28.884679717958626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hortensia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997538140352631, 28.885198790505605 ], [ -81.998231913711024, 28.885141214655903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aberdeen Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965575390938753, 28.866980961676269 ], [ -81.965518873728698, 28.866970793549292 ], [ -81.965446206027025, 28.866957574163415 ], [ -81.965341400529681, 28.866940720086603 ], [ -81.965201111297915, 28.866914853550668 ], [ -81.96511170413099, 28.866903671556276 ], [ -81.965058067603948, 28.866901901722411 ], [ -81.965016801800346, 28.866907541197982 ], [ -81.96497828343756, 28.866921254286101 ], [ -81.964940680014578, 28.866942231144368 ], [ -81.964906742178385, 28.866972087615672 ], [ -81.964883808997627, 28.866996296733852 ], [ -81.964864540584713, 28.867031808157005 ], [ -81.964856279784314, 28.867056021109946 ], [ -81.964851684651549, 28.867085886148104 ], [ -81.964853809816645, 28.867151580704935 ], [ -81.964863825517071, 28.867284423131913 ], [ -81.964868095904805, 28.867402084603281 ], [ -81.964876677968078, 28.867524806415343 ], [ -81.964882376222363, 28.867672830761194 ], [ -81.964889523521393, 28.867791757104623 ], [ -81.96489810530602, 28.867909418791587 ], [ -81.964905248780624, 28.868039731293543 ], [ -81.964912390818895, 28.868171309723675 ], [ -81.964918091729402, 28.868311742075484 ], [ -81.96493238146121, 28.868558451740277 ], [ -81.964946721191495, 28.868654605812573 ], [ -81.964974004587219, 28.868731788727555 ], [ -81.965002724214202, 28.868802645061081 ], [ -81.965027143258155, 28.868850727038783 ], [ -81.965064886650097, 28.868909073471453 ], [ -81.965107551884998, 28.8689568082835 ], [ -81.965162905323851, 28.869010638726131 ], [ -81.96522878697607, 28.869062066333456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Radbourne Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967971185499451, 28.869425001027704 ], [ -81.968040973743456, 28.869252532510334 ], [ -81.968089874707459, 28.869151331006528 ], [ -81.96812294938421, 28.869094407151884 ], [ -81.968194844429476, 28.868989416884144 ], [ -81.968275361579927, 28.868889487829108 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pearson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966481586432295, 28.868524635852136 ], [ -81.966635736445426, 28.868510441334948 ], [ -81.966861030848406, 28.868503855306052 ], [ -81.967055816301809, 28.868514229225411 ], [ -81.96716655009638, 28.868529147977515 ], [ -81.967284974378103, 28.868552194656299 ], [ -81.967567947863031, 28.868636201907858 ], [ -81.967897059845313, 28.868732405216345 ], [ -81.968155425791323, 28.868816407147936 ], [ -81.968212325915829, 28.868842143499542 ], [ -81.968275361579927, 28.868889487829108 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Radbourne Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968275361579927, 28.868889487829108 ], [ -81.968348004388602, 28.868838860515808 ], [ -81.968623736304608, 28.86869019053454 ], [ -81.968917929579291, 28.86853160073353 ], [ -81.968979517853896, 28.86849741679557 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Berg Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976078857046033, 28.870487239882614 ], [ -81.976139554963439, 28.870539019440109 ], [ -81.976362520267045, 28.870714729241424 ], [ -81.976668666310744, 28.870925862261068 ], [ -81.976977945050109, 28.871110181383017 ], [ -81.97727083152796, 28.871253930374166 ], [ -81.977445636824385, 28.87133127375721 ], [ -81.977513691365985, 28.871352608425926 ], [ -81.977547145016999, 28.87135667530568 ], [ -81.977590980548996, 28.871356683552335 ], [ -81.977621583651541, 28.871350416763949 ], [ -81.977647458688637, 28.871336504869344 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mosby Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977628652468539, 28.871699951121329 ], [ -81.977647414713374, 28.871538930193061 ], [ -81.977666128406966, 28.871412416018806 ], [ -81.977647458688637, 28.871336504869344 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Marino Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954987169738104, 28.922613317406885 ], [ -81.955060346488793, 28.92262190833927 ], [ -81.955104562854245, 28.922625717299468 ], [ -81.955154173788969, 28.922629529853392 ], [ -81.955199469484242, 28.922632391732623 ], [ -81.955269570141169, 28.922637159398736 ], [ -81.955326731425814, 28.922636229232861 ], [ -81.955373108086476, 28.922634346239917 ], [ -81.95541840604065, 28.922634361302897 ], [ -81.955469096300519, 28.922632481515091 ], [ -81.955512237242459, 28.922630597399955 ], [ -81.955557536823306, 28.922626817360381 ], [ -81.955600677354894, 28.922625881529704 ], [ -81.955649210593279, 28.922622103431912 ], [ -81.955691276289016, 28.922616423847558 ], [ -81.95573441700536, 28.92261264303529 ], [ -81.955786188997763, 28.922604120783053 ], [ -81.955821782226153, 28.92259843902422 ], [ -81.955871323481404, 28.922594920137254 ], [ -81.955933650628992, 28.922589097360497 ], [ -81.95598659691548, 28.922585332320661 ], [ -81.956039740843025, 28.922582256678837 ], [ -81.95609288345122, 28.922579866760426 ], [ -81.956146026791075, 28.922578165273023 ], [ -81.956177871420337, 28.922577488131704 ], [ -81.956209717810026, 28.922577497630598 ], [ -81.95633850004026, 28.922573078663923 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sunset Pointe Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989713672731455, 28.900431961022232 ], [ -81.989719480837152, 28.900347368230648 ], [ -81.989723172200144, 28.900216289728313 ], [ -81.989720506671631, 28.899800437013411 ], [ -81.989727287644399, 28.899687239601832 ], [ -81.989735421330607, 28.899601448727051 ], [ -81.98976522642775, 28.899450121927959 ], [ -81.9897963812829, 28.899334543414163 ], [ -81.989874942919315, 28.899090281705131 ], [ -81.990112780571394, 28.898371289859234 ], [ -81.990238688439717, 28.897985405617391 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sunset Pointe Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990238688439717, 28.897985405617391 ], [ -81.990384965788678, 28.897556456866401 ], [ -81.990457198396115, 28.897376934278324 ], [ -81.990544374942587, 28.89716535220952 ], [ -81.990624674254178, 28.896953590935453 ], [ -81.990700986222407, 28.896714444535764 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakewood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992413234356491, 28.894759316543258 ], [ -81.992384222148218, 28.894813289543169 ], [ -81.992336144768785, 28.89487382475879 ], [ -81.992315022789427, 28.894894448298633 ], [ -81.992272852325058, 28.894926398977791 ], [ -81.992183167305726, 28.894991387250865 ], [ -81.992032343189138, 28.895076661802399 ], [ -81.991881745265758, 28.895151252066455 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Latta Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992413234356491, 28.894759316543258 ], [ -81.992540040816749, 28.89481110856822 ], [ -81.992770489276879, 28.894914306610286 ], [ -81.993160330577183, 28.89508634998797 ], [ -81.993322050807365, 28.895182960313935 ], [ -81.993411155818094, 28.89525854684992 ], [ -81.993466842668781, 28.895321281116409 ], [ -81.993511501145051, 28.895386142438028 ], [ -81.993551483355304, 28.895464391838026 ], [ -81.993593803216385, 28.895560451833152 ], [ -81.993659728699157, 28.895757772634987 ], [ -81.993698478755149, 28.895899599766459 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Latta Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992387302463484, 28.892948749186544 ], [ -81.992346854493917, 28.893004454851074 ], [ -81.992180742035458, 28.893195523385021 ], [ -81.991967617409131, 28.893420536991872 ], [ -81.99177804545036, 28.893603231146692 ], [ -81.991599414002735, 28.893759277199081 ], [ -81.991556313324836, 28.893797201728212 ], [ -81.991525643983877, 28.893827834652821 ], [ -81.991503612281903, 28.89387647803219 ], [ -81.991495799532274, 28.893924111747108 ], [ -81.991499939426689, 28.893963499209132 ], [ -81.991509019578913, 28.893998810397239 ], [ -81.991524797845102, 28.894036438218009 ], [ -81.991560333485282, 28.894088962466352 ], [ -81.991694893398034, 28.89427254660864 ], [ -81.99179579072036, 28.894408442880689 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hortensia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996092746452021, 28.885240917355286 ], [ -81.996202367782359, 28.885291560463578 ], [ -81.996253307312344, 28.885302769431853 ], [ -81.996329715961991, 28.885297166531121 ], [ -81.997538140352631, 28.885198790505605 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dove Hollow Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998452313548228, 28.885694138706612 ], [ -81.998388812979414, 28.885608976909396 ], [ -81.998334387968285, 28.885513169856583 ], [ -81.998296591807687, 28.885432001041828 ], [ -81.998273914269831, 28.885366799548002 ], [ -81.998246273107398, 28.885229961588347 ], [ -81.998231913711024, 28.885141214655903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dove Hollow Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998231913711024, 28.885141214655903 ], [ -81.998211300796584, 28.884941628057032 ], [ -81.998211301919198, 28.88488798354717 ], [ -81.998214445366401, 28.884832083329375 ], [ -81.998233357585406, 28.884727428396268 ], [ -81.998291822411474, 28.884571301339559 ], [ -81.998479555661987, 28.884134632429433 ], [ -81.998523402629573, 28.884024191295289 ], [ -81.998547592564066, 28.883953667719737 ], [ -81.998568761214401, 28.883881812306758 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Huckleberry Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996287608920596, 28.884679717958626 ], [ -81.997368749161879, 28.884590560338712 ], [ -81.997405498856708, 28.884590561997221 ], [ -81.997446729479364, 28.884600028875429 ], [ -81.997478101529467, 28.884615018530678 ], [ -81.997507680254799, 28.88463868557378 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carnation Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997507680254799, 28.88463868557378 ], [ -81.997544431043238, 28.884599243098275 ], [ -81.997557876469045, 28.884569265303981 ], [ -81.997608076084248, 28.884408334529009 ], [ -81.997664550136477, 28.88427422655646 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carnation Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997538140352631, 28.885198790505605 ], [ -81.997519325195142, 28.88487771530578 ], [ -81.997525605446157, 28.884698640229256 ], [ -81.997522021236321, 28.884663929535304 ], [ -81.997507680254799, 28.88463868557378 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wildflower Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995683764262708, 28.882752781598484 ], [ -81.996034227309778, 28.882778036468597 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hydrangea Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995905012931416, 28.883448913376917 ], [ -81.995992094806596, 28.88290346860359 ], [ -81.996003749083428, 28.882857712356671 ], [ -81.996013609692056, 28.882826158277595 ], [ -81.996034227309778, 28.882778036468597 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wildflower Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996034227309778, 28.882778036468597 ], [ -81.996060221005962, 28.882779616289238 ], [ -81.996110415435581, 28.882780407320393 ], [ -81.996168676050772, 28.882781985378781 ], [ -81.996359593325067, 28.88278909110689 ], [ -81.996653589380543, 28.882775689071817 ], [ -81.99692696905241, 28.882752817151264 ], [ -81.997454009583166, 28.882703918610574 ], [ -81.997888815879634, 28.882669014790562 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pink Blossom Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997888815879634, 28.882669014790562 ], [ -81.997821509970919, 28.882378906575688 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Foliage Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997957730233125, 28.883286122420738 ], [ -81.998261586005768, 28.883261671066833 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pink Blossom Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997957730233125, 28.883286122420738 ], [ -81.997956281770584, 28.883104518004277 ], [ -81.997942790929642, 28.882942193761849 ], [ -81.997888815879634, 28.882669014790562 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Foliage Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995905012931416, 28.883448913376917 ], [ -81.996791195476547, 28.883381633979106 ], [ -81.997895882885629, 28.883296375148667 ], [ -81.997957730233125, 28.883286122420738 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reedy Creek Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995725050560054, 28.88406653190701 ], [ -81.995870890776587, 28.884075085931734 ], [ -81.996121867095084, 28.884053005350932 ], [ -81.996447558418325, 28.884025083980877 ], [ -81.996806668232878, 28.883995172182665 ], [ -81.997166398011402, 28.883967832804373 ], [ -81.997572738620875, 28.883936285937772 ], [ -81.998084959315023, 28.883888461100263 ], [ -81.998343491504116, 28.883865843237473 ], [ -81.998416061525575, 28.883867175992783 ], [ -81.998488631475936, 28.883872497782974 ], [ -81.998568761214401, 28.883881812306758 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orange Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996473546226227, 28.879738555031473 ], [ -81.996747186355449, 28.879693321723284 ], [ -81.996924070337371, 28.879650744655546 ], [ -81.997032923291869, 28.879612158480612 ], [ -81.997135728170704, 28.879558936745919 ], [ -81.997264235665966, 28.879475107602726 ], [ -81.997370066656941, 28.879383295203958 ], [ -81.997497063846424, 28.879256888885628 ], [ -81.997584750009466, 28.879170398634677 ], [ -81.997613475876804, 28.879134473127102 ], [ -81.997639643104961, 28.87909204196858 ], [ -81.997670927152086, 28.879038666879104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abercrombie Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991426862922069, 28.876638122002039 ], [ -81.991371210051923, 28.87658414627548 ], [ -81.991241587734379, 28.876472858632805 ], [ -81.991181840468727, 28.876432885384695 ], [ -81.991131651098101, 28.87640974158969 ], [ -81.991056366470005, 28.876387646363732 ], [ -81.990979885341758, 28.876379226307311 ], [ -81.99088574220923, 28.876382658538642 ], [ -81.990828498985351, 28.876393418152812 ], [ -81.990776728604814, 28.876407612286027 ], [ -81.990724143332869, 28.876431802046678 ], [ -81.990676339979046, 28.876459145669529 ], [ -81.99062136506474, 28.876505423580777 ], [ -81.990584398203936, 28.876544901195135 ], [ -81.990199250332907, 28.876952594787547 ], [ -81.989953749862948, 28.877188407535073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abercrombie Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98945629754769, 28.877649374962694 ], [ -81.989105328658312, 28.877944652061569 ], [ -81.988725847467549, 28.878239238263316 ], [ -81.988463549175734, 28.878425886704317 ], [ -81.988424163677891, 28.878463971252447 ], [ -81.988391894110777, 28.878498679093944 ], [ -81.98837754965237, 28.878530234047712 ], [ -81.988367687691593, 28.87855705411129 ], [ -81.988362345377595, 28.878603809126766 ], [ -81.988371467976606, 28.878650401188416 ], [ -81.988390871471324, 28.878691277161955 ], [ -81.988563874221015, 28.878926779423367 ], [ -81.989194385411437, 28.879742273055175 ], [ -81.989445497446653, 28.88008125825267 ], [ -81.989523607465358, 28.880164802242099 ], [ -81.989571248771057, 28.880197061475734 ], [ -81.989618516475687, 28.880213969803613 ], [ -81.989679837940741, 28.880223601242385 ], [ -81.989730052953021, 28.880221173433828 ], [ -81.989785884300019, 28.880204013256044 ], [ -81.990159894390871, 28.880012557747801 ], [ -81.990233913072188, 28.879973715517725 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lowry Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990844823252587, 28.879660921156802 ], [ -81.99063979595384, 28.879319880948479 ], [ -81.990165662325182, 28.878530362227469 ], [ -81.989988822756928, 28.878241442731596 ], [ -81.989921895312264, 28.878145384006746 ], [ -81.989840657939439, 28.878039478232957 ], [ -81.989655844927142, 28.877836107635538 ], [ -81.98945629754769, 28.877649374962694 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990440951290807, 28.875448081113209 ], [ -81.990435224796499, 28.875525251916113 ], [ -81.990428341645625, 28.875562622076924 ], [ -81.990408621285894, 28.875595753195185 ], [ -81.990374222588954, 28.875646038720696 ], [ -81.990069705930722, 28.875997282575536 ], [ -81.989983236320029, 28.87609206925006 ], [ -81.989670734513453, 28.876421812420435 ], [ -81.989358232991478, 28.876730194649131 ], [ -81.989000222227261, 28.877062605197231 ], [ -81.988657381654022, 28.877354961978703 ], [ -81.988381290780765, 28.877580568707511 ], [ -81.987995974172676, 28.877871584657729 ], [ -81.987800282974277, 28.87801041580391 ], [ -81.987402831994046, 28.878281402332629 ], [ -81.986914358798842, 28.878608454124173 ], [ -81.986394027769407, 28.878959532787363 ], [ -81.986140536188117, 28.879128046730049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989959884741864, 28.87482955606599 ], [ -81.989953395116999, 28.874825771318388 ], [ -81.989720477627245, 28.874696240598745 ], [ -81.989601855960842, 28.874642862877565 ], [ -81.98924071989353, 28.874508256601406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99502396652332, 28.870961174079888 ], [ -81.995016794160136, 28.871019022256608 ], [ -81.995004843958455, 28.871055835762689 ], [ -81.994989307053672, 28.871091596142534 ], [ -81.994962026396209, 28.871135842227986 ], [ -81.994909736952096, 28.87119785368235 ], [ -81.992957598333646, 28.873073062887855 ], [ -81.992139441614214, 28.873860327215986 ], [ -81.991863022167109, 28.874134106994624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991970024195211, 28.87420777751662 ], [ -81.992828859983533, 28.87337669073327 ], [ -81.99401826446136, 28.872239249539923 ], [ -81.995053131320674, 28.871235726134604 ], [ -81.995115963870205, 28.87118941870046 ], [ -81.995151811947139, 28.871168385548827 ], [ -81.995181686403441, 28.871156815520976 ], [ -81.995232260178724, 28.871147103183539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brighton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022291069002208, 28.918450003744102 ], [ -82.022242210566631, 28.918451574397523 ], [ -82.022184466201011, 28.91845002000376 ], [ -82.022126720974327, 28.918449247876275 ], [ -82.022076085815129, 28.918448474588125 ], [ -82.022028113443483, 28.918450045924548 ], [ -82.021987299990812, 28.918449815121448 ], [ -82.021926565478523, 28.91844982477242 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02877370360001, 28.927437799676795 ], [ -82.029413671299878, 28.927439362075464 ], [ -82.02989946600816, 28.927449681234059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 103", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02877370360001, 28.927437799676795 ], [ -82.028727879885579, 28.927491878403718 ], [ -82.028697422462969, 28.927581345520565 ], [ -82.028685994841169, 28.928799624684402 ], [ -82.028705030374894, 28.928877670107155 ], [ -82.02874903176135, 28.928943004181768 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026908846988988, 28.927436780163152 ], [ -82.027108047407452, 28.927436267298059 ], [ -82.028203693475263, 28.927434254682197 ], [ -82.02877370360001, 28.927437799676795 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Old School Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028513906449717, 28.925064039837764 ], [ -82.028605554771573, 28.925125826194083 ], [ -82.028645350858682, 28.925177129624341 ], [ -82.02868154850546, 28.925248735438629 ], [ -82.028687594166854, 28.925304433765962 ], [ -82.028687607105851, 28.925352176011501 ], [ -82.028706721634904, 28.925515828526883 ], [ -82.028710358888603, 28.925702743640759 ], [ -82.028692129866215, 28.925862345432581 ], [ -82.028699559749001, 28.925909011489761 ], [ -82.028688739851518, 28.926035064391549 ], [ -82.028695775544293, 28.926103083345669 ], [ -82.028697461008434, 28.926172572354158 ], [ -82.028703995937832, 28.926254695186849 ], [ -82.028703227477735, 28.926404969898414 ], [ -82.028725755505349, 28.926512003554301 ], [ -82.028743284967121, 28.926612439767524 ], [ -82.028769982001208, 28.926722404998337 ], [ -82.028791662375056, 28.926778119880147 ], [ -82.028812513015495, 28.926837498250258 ], [ -82.028816684509735, 28.926853627703458 ], [ -82.028826778949224, 28.927204797014785 ], [ -82.028829105263412, 28.927314704180858 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 103G 2", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021673607362786, 28.942667204640362 ], [ -82.02236760561695, 28.94341768692545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buffalo Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02028028862874, 28.931004752823569 ], [ -82.020301231109158, 28.928253648231745 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016267499024707, 28.931486333727502 ], [ -82.016395901415137, 28.931473326517128 ], [ -82.016699544989336, 28.931471869279889 ], [ -82.016815833048838, 28.931464750596096 ], [ -82.01691596823278, 28.931440584920985 ], [ -82.017046784400677, 28.931392259178359 ], [ -82.017174367995167, 28.931321201296125 ], [ -82.017306793436873, 28.9312302507007 ], [ -82.017390767910442, 28.931162037560338 ], [ -82.017456980929481, 28.931119404851277 ], [ -82.017605560971575, 28.93105260545541 ], [ -82.017733149906363, 28.93101848969318 ], [ -82.017842974524143, 28.931004266279881 ], [ -82.018028714449841, 28.931001400943657 ], [ -82.018627923715187, 28.931004163064451 ], [ -82.019411255431265, 28.931004055499365 ], [ -82.01976496817862, 28.931006847663035 ], [ -82.020226893262318, 28.931008200192352 ], [ -82.02028028862874, 28.931004752823569 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tatonka Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023566550017335, 28.92842617777546 ], [ -82.023563009694016, 28.931130193420373 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020506210645635, 28.931005945713913 ], [ -82.020511039496668, 28.931006096582916 ], [ -82.020563336323676, 28.931007730988455 ], [ -82.020638289528947, 28.931017248949694 ], [ -82.020696586438277, 28.931029146008996 ], [ -82.020811989544697, 28.931063648664065 ], [ -82.020892890922369, 28.931085065049075 ], [ -82.020934532140586, 28.931096961816092 ], [ -82.020989258791403, 28.931108859289381 ], [ -82.021070160017899, 28.931113618306266 ], [ -82.021360252639596, 28.931123434918124 ], [ -82.022098009995275, 28.931124029770118 ], [ -82.022584994501187, 28.93112466369459 ], [ -82.023317091138765, 28.931129522451421 ], [ -82.023563009694016, 28.931130193420373 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Village Campus Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026822102021072, 28.928447875481865 ], [ -82.026828643902832, 28.930842802653054 ], [ -82.02682867147891, 28.930951684338396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023563009694016, 28.931130193420373 ], [ -82.02389467567771, 28.931130135372637 ], [ -82.024508601318487, 28.931129699905501 ], [ -82.024849392273609, 28.931132480108399 ], [ -82.025677950905461, 28.931133749017526 ], [ -82.025907330471142, 28.931133705979665 ], [ -82.025948585325793, 28.931131898120032 ], [ -82.026009046913771, 28.931122321467569 ], [ -82.026123713968275, 28.931096723278287 ], [ -82.026227072965668, 28.931062602270988 ], [ -82.02633204311185, 28.93101569445928 ], [ -82.026437018405787, 28.930981574785534 ], [ -82.026538262584324, 28.930960991071487 ], [ -82.026583562799985, 28.93095599984299 ], [ -82.026607021039439, 28.930953150367035 ], [ -82.026639376899297, 28.93095029735732 ], [ -82.02682867147891, 28.930951684338396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02682867147891, 28.930951684338396 ], [ -82.02696214812056, 28.93095165729941 ], [ -82.027422879782506, 28.930955379161436 ], [ -82.028076869841598, 28.930954992502809 ], [ -82.028762333855667, 28.930960145182951 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wedgewood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023566550017335, 28.92842617777546 ], [ -82.023717769838854, 28.928434424968025 ], [ -82.024374975082239, 28.928439372090548 ], [ -82.026485710828638, 28.928446252538929 ], [ -82.026822102021072, 28.928447875481865 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wedgewood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020301231109158, 28.928253648231745 ], [ -82.020455738151398, 28.928254151501452 ], [ -82.021078914202079, 28.928257174396947 ], [ -82.022134063216754, 28.928263238730331 ], [ -82.022505843342827, 28.928260062958866 ], [ -82.022598903773272, 28.928271410343761 ], [ -82.022665057955834, 28.928284050566095 ], [ -82.022785864397704, 28.928311863751645 ], [ -82.023089315486871, 28.92838772063649 ], [ -82.02322018472654, 28.928401617454874 ], [ -82.023417201480072, 28.928401584119442 ], [ -82.023566550017335, 28.92842617777546 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wedgewood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015920011059791, 28.92821113636699 ], [ -82.017070758806554, 28.928223461578096 ], [ -82.018540180574959, 28.928232616389863 ], [ -82.020089441516703, 28.928249024213045 ], [ -82.020301231109158, 28.928253648231745 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016261135116054, 28.930699195113483 ], [ -82.016303499742293, 28.930616696052851 ], [ -82.016319107943289, 28.930540887024613 ], [ -82.016321337218514, 28.930308999703886 ], [ -82.01631866249059, 28.930047976946874 ], [ -82.01631056260095, 28.929938358995013 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013475458554353, 28.93249933685528 ], [ -82.013474298352747, 28.932424386062856 ], [ -82.013473114909445, 28.93218028390632 ], [ -82.013473670727464, 28.932007588269745 ], [ -82.013478264658787, 28.931917105720675 ], [ -82.013493607589396, 28.931850929953942 ], [ -82.013507546567865, 28.931810927181697 ], [ -82.013539648854064, 28.931744238191186 ], [ -82.013593262106738, 28.931674670591633 ], [ -82.013658848799196, 28.931612002552949 ], [ -82.013738261120338, 28.931563007402438 ], [ -82.013797527301932, 28.931530834769411 ], [ -82.013857395346875, 28.931513272006459 ], [ -82.013914439595268, 28.931502760028419 ], [ -82.014010907351718, 28.931491648570283 ], [ -82.014124507921437, 28.931488934775643 ], [ -82.01438183159992, 28.931489060134027 ], [ -82.01476250379595, 28.931486611306106 ], [ -82.015162221195851, 28.931481307179954 ], [ -82.015465418915568, 28.931481716915311 ], [ -82.015708246590421, 28.931487311056063 ], [ -82.015883530303398, 28.931488334234796 ], [ -82.016036882091768, 28.931488879692242 ], [ -82.016267499024707, 28.931486333727502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01630905616345, 28.932442640236385 ], [ -82.016309611941153, 28.934083089944167 ], [ -82.016312885634989, 28.93467281917658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 123rd Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018609348070441, 28.936359116427614 ], [ -82.018453997077685, 28.936215774426639 ], [ -82.018359217038238, 28.936126793760916 ], [ -82.018241221976865, 28.936018470900731 ], [ -82.018084540658577, 28.935875330753202 ], [ -82.017964612100926, 28.935757335305272 ], [ -82.017821471817797, 28.935625800200672 ], [ -82.017658987885099, 28.935511672657615 ], [ -82.017500371650172, 28.935443971972184 ], [ -82.017500153168854, 28.93544393681028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016316254139966, 28.935460204902128 ], [ -82.016326732538985, 28.936070184255577 ], [ -82.016326792622507, 28.936463764000635 ], [ -82.016339173794947, 28.937704107195138 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016339173794947, 28.937704107195138 ], [ -82.016340485262262, 28.937835484631094 ], [ -82.016346231112934, 28.938283181379379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 124th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017150012167448, 28.937701702293793 ], [ -82.017001302951272, 28.937701338011898 ], [ -82.016780855385846, 28.937701653557912 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Trce", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006668667569627, 28.932548905978919 ], [ -82.00668237291228, 28.932535672299547 ], [ -82.006745343897222, 28.932459528368117 ], [ -82.006801387025533, 28.932394491074771 ], [ -82.006856213434148, 28.932326254277797 ], [ -82.006953829086356, 28.932195663249271 ], [ -82.00704342277615, 28.932066247323949 ], [ -82.007119584496493, 28.93194393215229 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Trce", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006102489796248, 28.933088370167479 ], [ -82.006216226461746, 28.93298980055113 ], [ -82.006284128244744, 28.932927074654536 ], [ -82.006362216672557, 28.932858373287122 ], [ -82.006442004142571, 28.932782627585016 ], [ -82.006496495329614, 28.932727442644559 ], [ -82.006570043560387, 28.932654499669038 ], [ -82.006599464381097, 28.932623910556657 ], [ -82.006668667569627, 28.932548905978919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011231344471184, 28.912703255823732 ], [ -82.011327324516841, 28.912722223502662 ], [ -82.011482617108925, 28.912756371080462 ], [ -82.011635754953872, 28.912787671005798 ], [ -82.011722404454687, 28.912808356240724 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allagash Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011231344471184, 28.912703255823732 ], [ -82.011253857837332, 28.912445792533237 ], [ -82.011248760347272, 28.912269779996517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0105511246622, 28.912615664211817 ], [ -82.010709389273075, 28.912624539115235 ], [ -82.010849585631632, 28.912640659757834 ], [ -82.010978994146001, 28.912658679522089 ], [ -82.011105170576712, 28.912678595141319 ], [ -82.011231344471184, 28.912703255823732 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lockwood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008571205810355, 28.914367343840343 ], [ -82.008658411481832, 28.914409481315719 ], [ -82.00879144750887, 28.914434404626252 ], [ -82.009525496155291, 28.914535573865599 ], [ -82.01027597974543, 28.914635130925213 ], [ -82.010345367128608, 28.914633518913242 ], [ -82.010417752657887, 28.914606144261711 ], [ -82.010465876375491, 28.914574065878003 ], [ -82.010502390698292, 28.914524259099693 ], [ -82.010527527366932, 28.914445937859938 ], [ -82.010541978228034, 28.914377524628232 ], [ -82.010545293977216, 28.914317363726457 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lynnhaven Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008571205810355, 28.914367343840343 ], [ -82.008629282323938, 28.914242484113728 ], [ -82.008669059228311, 28.914124287121794 ], [ -82.008687902079217, 28.9139996507833 ], [ -82.008690220441267, 28.913879800319403 ], [ -82.008687983010461, 28.913791854453375 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lynnhaven Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007725572428114, 28.915402498476734 ], [ -82.007726744344723, 28.91539906156531 ], [ -82.007784546566612, 28.915274014556257 ], [ -82.007841589334646, 28.915171575514591 ], [ -82.007888870082539, 28.915096186038017 ], [ -82.007975462704934, 28.914981035571319 ], [ -82.008068593134595, 28.914871422080001 ], [ -82.008154741743553, 28.914789468832012 ], [ -82.008278972365346, 28.91468157141005 ], [ -82.008305487190171, 28.914660434482787 ], [ -82.008305570250869, 28.914660368610313 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ellison Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006765961116471, 28.915373669879909 ], [ -82.007141834981155, 28.915373652947178 ], [ -82.00761888415407, 28.91538212031757 ], [ -82.007725572428114, 28.915402498476734 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lynnhaven Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007621678178609, 28.91601270300345 ], [ -82.007618109231757, 28.915980834967087 ], [ -82.007615777064643, 28.915919374234786 ], [ -82.007620500469059, 28.915858351648613 ], [ -82.007630652429967, 28.91576037610945 ], [ -82.007640609928458, 28.915697807611735 ], [ -82.007654489684924, 28.91563071930095 ], [ -82.007679285775268, 28.915531088170454 ], [ -82.007725572428114, 28.915402498476734 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007620540427098, 28.916436238495642 ], [ -82.007528524620369, 28.91643624328735 ], [ -82.007223168930437, 28.916437272919786 ], [ -82.00691042122277, 28.91643728712469 ], [ -82.006834931669886, 28.916437291564669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greensboro Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00684250510713, 28.916869020379767 ], [ -82.006834931669886, 28.916437291564669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "High Point Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00684250510713, 28.916869020379767 ], [ -82.007564615579199, 28.916867277614664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greensboro Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00685931112433, 28.917975362568242 ], [ -82.006845759467055, 28.917157473671747 ], [ -82.00684250510713, 28.916869020379767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Weston Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004061105049686, 28.918423539515224 ], [ -82.003983721722349, 28.918267785260344 ], [ -82.003953237628835, 28.918178046316509 ], [ -82.003943857691795, 28.918136786331967 ], [ -82.003937992776457, 28.9180800545777 ], [ -82.003930742452113, 28.918025784322662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Callaway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003930742452113, 28.918025784322662 ], [ -82.004100173176084, 28.918023935678637 ], [ -82.004210359796687, 28.918023931833183 ], [ -82.004520207941724, 28.918023923073768 ], [ -82.004948642869124, 28.918023909787568 ], [ -82.005321790146994, 28.918023897105368 ], [ -82.00570783250906, 28.918023882896779 ], [ -82.006026081840758, 28.918023870351195 ], [ -82.006242351913343, 28.918023861396495 ], [ -82.006382426742746, 28.91802385631367 ], [ -82.006492612116688, 28.91802006907583 ], [ -82.006594593198542, 28.918016283018126 ], [ -82.006675082717777, 28.91800527948817 ], [ -82.006781164995644, 28.917986367002335 ], [ -82.00685931112433, 28.917975362568242 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Weston Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003930742452113, 28.918025784322662 ], [ -82.003928585782376, 28.917996369505587 ], [ -82.003919953668074, 28.917869223488459 ], [ -82.00391202633098, 28.917717978910655 ], [ -82.003900530615084, 28.917549457239911 ], [ -82.003879194775266, 28.917405486398909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Good Hope Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002984522999498, 28.921183601385568 ], [ -82.002979247484731, 28.921183601480767 ], [ -82.00292024342869, 28.921093189739974 ], [ -82.002837751544376, 28.920983752553429 ], [ -82.002791880771568, 28.920924053793094 ], [ -82.002563487301302, 28.920659693603454 ], [ -82.002400167143534, 28.920472075149437 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anniston Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001493048582816, 28.919905461344356 ], [ -82.001550609853595, 28.919905195655684 ], [ -82.001767735887995, 28.919892052829045 ], [ -82.001970527770382, 28.919883456475652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Weston Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003879194775266, 28.917405486398909 ], [ -82.003878218196391, 28.917397235821579 ], [ -82.003855588290975, 28.917317937125404 ], [ -82.003814521522713, 28.917177221334907 ], [ -82.003755322633822, 28.917039368947872 ], [ -82.003704329819456, 28.916923517043536 ], [ -82.003670529155372, 28.916845480883865 ], [ -82.003570854540556, 28.916614524032365 ], [ -82.003550372671057, 28.916541585517606 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002861128134313, 28.916887469284561 ], [ -82.002782907463356, 28.916940289249485 ], [ -82.002566428980884, 28.917068338491141 ], [ -82.002402705532404, 28.91716277431156 ], [ -82.002260812829945, 28.917234802019767 ], [ -82.002091629721065, 28.917314833263664 ], [ -82.001898798715942, 28.917398065880665 ], [ -82.001631926345937, 28.917496280566574 ], [ -82.00138522137631, 28.917573535149543 ], [ -82.001296070106676, 28.917597572852419 ], [ -82.001160177196752, 28.917632885813241 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003550372671057, 28.916541585517606 ], [ -82.003488893195964, 28.916558858634669 ], [ -82.003330722753731, 28.91662464844428 ], [ -82.003246785958893, 28.916666584390548 ], [ -82.00305213848489, 28.916777025656408 ], [ -82.002970277265447, 28.916825044676607 ], [ -82.002908426718633, 28.916860258805166 ], [ -82.002861128134313, 28.916887469284561 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006834931669886, 28.916437291564669 ], [ -82.006539437310522, 28.916437305005523 ], [ -82.006086492761824, 28.916436374231015 ], [ -82.005739234257263, 28.916436387127568 ], [ -82.00534776148335, 28.916436402511934 ], [ -82.004876482742873, 28.916436419339139 ], [ -82.004451182163052, 28.916436367329339 ], [ -82.00422983802865, 28.916436373540556 ], [ -82.004024903490247, 28.916443598244221 ], [ -82.003876207784401, 28.916461695745397 ], [ -82.003875858083859, 28.916461751696417 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Miona Shores Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009376982836301, 28.909080622848094 ], [ -82.009373258442082, 28.908722884570352 ], [ -82.00938071259381, 28.90845085481784 ], [ -82.009356491508129, 28.908305524182648 ], [ -82.009322249641684, 28.908193154230709 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lynnhaven Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009325940300627, 28.909802408415239 ], [ -82.009338202949337, 28.909721558136006 ], [ -82.009368372120591, 28.909534111942335 ], [ -82.009374004092891, 28.909297592269773 ], [ -82.009376982836301, 28.909080622848094 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 52nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017310720691086, 28.906618995174497 ], [ -82.01732398607804, 28.906672762365417 ], [ -82.017333745382132, 28.906807715152489 ], [ -82.017346881295978, 28.907839287237554 ], [ -82.01734231695896, 28.909058679138866 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Sun Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97729546486616, 28.90541441797517 ], [ -81.977382423111621, 28.90534908826794 ], [ -81.977403793650268, 28.90533560252107 ], [ -81.977565556882297, 28.905278698344532 ], [ -81.978030350026685, 28.90511557141286 ], [ -81.978526423173577, 28.904906902585999 ], [ -81.97881652247311, 28.904769364614133 ], [ -81.97908257905479, 28.904633136902021 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yemassee Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969269385492709, 28.88198717899601 ], [ -81.969427853389817, 28.882028966512344 ], [ -81.96966717111053, 28.882083105715544 ], [ -81.969865529112155, 28.882122054072628 ], [ -81.970120037384916, 28.882165835660416 ], [ -81.970430477247618, 28.88221234414118 ], [ -81.970874127064164, 28.882255645264593 ], [ -81.971414578483973, 28.88228815784213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yemassee Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968565430123476, 28.881808000121474 ], [ -81.969269385492709, 28.88198717899601 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridge Spring Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969081377812685, 28.882604179067343 ], [ -81.9691193820222, 28.882486247117519 ], [ -81.969177950083164, 28.882280017966412 ], [ -81.969256433903112, 28.88204031345829 ], [ -81.969269385492709, 28.88198717899601 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blackville Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969269385492709, 28.88198717899601 ], [ -81.969320082894825, 28.881814655237484 ], [ -81.969376583819837, 28.881627828596191 ], [ -81.969456325094598, 28.881369072139162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cordova Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968753699737121, 28.881194613574454 ], [ -81.968561543507448, 28.88114437904434 ], [ -81.967801229191053, 28.8809410608084 ], [ -81.967116581311004, 28.880761614606122 ], [ -81.967028241893331, 28.880733512394013 ], [ -81.966973030601125, 28.88071297957174 ], [ -81.966933773425708, 28.880684890275898 ], [ -81.966906785516258, 28.880660043258597 ], [ -81.966887163513064, 28.880625478461909 ], [ -81.966873676826239, 28.880591995232468 ], [ -81.96686755605046, 28.88054555406362 ], [ -81.966874937846754, 28.880486155569358 ], [ -81.966892146001953, 28.880394360556611 ], [ -81.966920823430783, 28.880280999751651 ], [ -81.96693781795824, 28.880231901590083 ], [ -81.966964514657576, 28.88018920764577 ], [ -81.967011421707127, 28.880152214897887 ], [ -81.967051855962168, 28.880130874574647 ], [ -81.967110885481787, 28.880116657057471 ], [ -81.967180420475387, 28.880116674088875 ], [ -81.967515555733996, 28.880197952892694 ], [ -81.968084867152101, 28.880347129045646 ], [ -81.968521666264564, 28.880460632644542 ], [ -81.968694668726627, 28.880504953592485 ], [ -81.968786688483576, 28.880537373985639 ], [ -81.968825946426762, 28.880564383590272 ], [ -81.968855385398911, 28.880597870330913 ], [ -81.968881680297457, 28.880637805987082 ], [ -81.968896757456648, 28.880689047581974 ], [ -81.968894585529569, 28.880742184519612 ], [ -81.968883551794519, 28.880785796510118 ], [ -81.968857892155768, 28.880865987115154 ], [ -81.968753699737121, 28.881194613574454 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bramble Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975360963963993, 28.877394515217631 ], [ -81.975271299445367, 28.877324609082564 ], [ -81.975182355093793, 28.87725304188255 ], [ -81.975087282125287, 28.877170672927544 ], [ -81.974979940668931, 28.87707480407655 ], [ -81.974890357138037, 28.877002849474483 ], [ -81.974832729535621, 28.876946526887771 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bramble Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975737488525326, 28.877664892895158 ], [ -81.975640877555108, 28.877593324611702 ], [ -81.975501324205311, 28.877497450318508 ], [ -81.975438568560435, 28.87745272524684 ], [ -81.975395455930425, 28.877419824814851 ], [ -81.975360963963993, 28.877394515217631 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glade Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975360963963993, 28.877394515217631 ], [ -81.975434289578686, 28.877311028752221 ], [ -81.975582379450444, 28.877145320988213 ], [ -81.975724727773908, 28.876950512773426 ], [ -81.975822506742261, 28.87679112074526 ], [ -81.975931794966328, 28.876586185205031 ], [ -81.976010895580188, 28.876404018272666 ], [ -81.976072184911828, 28.876250152425477 ], [ -81.976137456170903, 28.87608522232415 ], [ -81.976180606671917, 28.875957450474672 ], [ -81.976207938679522, 28.875863832451547 ], [ -81.976239592233711, 28.875727203341164 ], [ -81.976271259547929, 28.875526048780717 ], [ -81.976276357215397, 28.875460440575967 ], [ -81.976276370277262, 28.87540374080282 ], [ -81.9762727374371, 28.875353988111186 ], [ -81.976254062494164, 28.875310969341889 ], [ -81.976219575837163, 28.875269212790673 ], [ -81.976183648625153, 28.87523757890424 ], [ -81.97612558205104, 28.875209929239375 ], [ -81.975989605811733, 28.875198490804774 ], [ -81.975766823309968, 28.875197018725359 ], [ -81.975500912717933, 28.875196970349904 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anita Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975334463392343, 28.87615552048085 ], [ -81.975354083555999, 28.87611164964704 ], [ -81.975387158301018, 28.876047132096637 ], [ -81.975431741799753, 28.875940866221892 ], [ -81.975470577935653, 28.87583207192958 ], [ -81.975487849012168, 28.875729597013699 ], [ -81.975493626614266, 28.875613204685681 ], [ -81.975493652314285, 28.87550946067914 ], [ -81.975497992255626, 28.875390537126044 ], [ -81.975499454142593, 28.875286796085682 ], [ -81.975500912717933, 28.875196970349904 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anita Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975518406650195, 28.874164610555948 ], [ -81.975519900660672, 28.873925496154822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anita Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975509614923141, 28.874869297227079 ], [ -81.975518406650195, 28.874164610555948 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anita Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975500912717933, 28.875196970349904 ], [ -81.975509614923141, 28.874869297227079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buster Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973851208248618, 28.874286333739818 ], [ -81.973955971219411, 28.874327519887721 ], [ -81.974003402166389, 28.874335118364222 ], [ -81.974221877779399, 28.874338958365392 ], [ -81.974395796604739, 28.87434025493733 ], [ -81.97444610490399, 28.8743402654443 ], [ -81.974494916775939, 28.874351764664766 ], [ -81.974690427207804, 28.87445038008881 ], [ -81.975183374210147, 28.874711093346832 ], [ -81.975371644106858, 28.874807279243488 ], [ -81.975439191619813, 28.874838921856778 ], [ -81.975509614923141, 28.874869297227079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oscar Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973975588167463, 28.873704171629594 ], [ -81.974142983121538, 28.873713957024457 ], [ -81.974354269415798, 28.87371779361834 ], [ -81.974526577980711, 28.873722500416289 ], [ -81.974579490299718, 28.873728586571328 ], [ -81.974631252208994, 28.873735684871182 ], [ -81.974691062808645, 28.873752906701721 ], [ -81.974742822257014, 28.873770129695 ], [ -81.974969403529215, 28.873882560316467 ], [ -81.975239188406846, 28.874016336198 ], [ -81.975518406650195, 28.874164610555948 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Errol Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973277146596516, 28.871730544853207 ], [ -81.973443538345549, 28.871614931580158 ], [ -81.973564293355182, 28.871530191321888 ], [ -81.973674987050103, 28.871449241357087 ], [ -81.973790959506076, 28.871353076799835 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Errol Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973790959506076, 28.871353076799835 ], [ -81.973853251427172, 28.871301254375702 ], [ -81.974017144126051, 28.87113934634732 ], [ -81.974158540772905, 28.87097425316141 ], [ -81.974198264096785, 28.870922843084596 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972766842723303, 28.86925704926999 ], [ -81.973023022178538, 28.869259130349292 ], [ -81.973234299157042, 28.86926802971076 ], [ -81.973408205636645, 28.869284511506173 ], [ -81.973567735853521, 28.869312375503679 ], [ -81.973672650520754, 28.86933770124412 ], [ -81.973772949801017, 28.869365432442208 ], [ -81.973988287801646, 28.869437491732345 ], [ -81.97413465922682, 28.86949986830459 ], [ -81.974259025962056, 28.869561564667517 ], [ -81.974403545544448, 28.869652396523584 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968873233433357, 28.87019948408652 ], [ -81.968978408247253, 28.87011878932795 ], [ -81.969089694735246, 28.87004024878965 ], [ -81.969214430641927, 28.869962786791 ], [ -81.969311037345989, 28.86991007202413 ], [ -81.969423539333775, 28.869858439966297 ], [ -81.969556639042551, 28.869806257574275 ], [ -81.969732720854779, 28.869749793403276 ], [ -81.970055528791107, 28.869669955196905 ], [ -81.970316461386844, 28.869611399594827 ], [ -81.970600190998312, 28.869545983764773 ], [ -81.971008484992453, 28.869447093615442 ], [ -81.971325081721687, 28.869380160271561 ], [ -81.971539608128325, 28.869329953107368 ], [ -81.971722990230205, 28.8693010604593 ], [ -81.971915018595283, 28.869279783006675 ], [ -81.972138184931353, 28.869263078310986 ], [ -81.972209113364713, 28.869261569944523 ], [ -81.972350744752262, 28.869258403270877 ], [ -81.972619147067007, 28.869260313493367 ], [ -81.972766842723303, 28.86925704926999 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mandrake Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971406252266434, 28.868661643832734 ], [ -81.971426365686156, 28.86869201152496 ], [ -81.971456541780242, 28.868716056211074 ], [ -81.97149390457264, 28.868736306428868 ], [ -81.971546042379913, 28.868753373739782 ], [ -81.971631097159033, 28.868757893352356 ], [ -81.972139280661338, 28.86876179138952 ], [ -81.972766973281082, 28.868762156767367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Janwood Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971406252266434, 28.868661643832734 ], [ -81.971384705912044, 28.868619887862916 ], [ -81.97137466323619, 28.86855409879276 ], [ -81.971373344985111, 28.868121417039259 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Folkstone Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971373344985111, 28.868121417039259 ], [ -81.972488658930388, 28.868121650521303 ], [ -81.97362984340306, 28.868120613035224 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Midland Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97362984340306, 28.868120613035224 ], [ -81.973627133485451, 28.867481709563506 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Driftwood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972100990241401, 28.866672968369819 ], [ -81.972374064344777, 28.866674289941447 ], [ -81.972523537685035, 28.86667558568632 ], [ -81.972627014037229, 28.866694584099246 ], [ -81.97270829405285, 28.866726187607057 ], [ -81.972919970291926, 28.866834654923757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Driftwood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971372307881339, 28.866677876705662 ], [ -81.972100990241401, 28.866672968369819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Janwood Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971373344985111, 28.868121417039259 ], [ -81.971372307881339, 28.866677876705662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Janwood Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971372307881339, 28.866677876705662 ], [ -81.971373857857714, 28.866270496034577 ], [ -81.971375920516678, 28.866232429191736 ], [ -81.971381061899436, 28.866203444690687 ], [ -81.97140787416842, 28.866145907807006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Misty Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97140787416842, 28.866145907807006 ], [ -81.971436974169109, 28.866110993056786 ], [ -81.971458705930445, 28.866088331818808 ], [ -81.971491766659412, 28.866068096573418 ], [ -81.971542074839107, 28.866050395040219 ], [ -81.971593818681868, 28.866041549901613 ], [ -81.973028174277545, 28.866041846108196 ], [ -81.973347240119026, 28.866041909923265 ], [ -81.973401854026875, 28.866044450829865 ], [ -81.973452155364356, 28.866052050978698 ], [ -81.973498142187992, 28.866072303258626 ], [ -81.973549874475395, 28.866103942825141 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Midland Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973627133485451, 28.867481709563506 ], [ -81.973617386448296, 28.86625450908496 ], [ -81.973611646322823, 28.866210229213682 ], [ -81.973598633627788, 28.866177914259282 ], [ -81.973581483517194, 28.866143169486918 ], [ -81.973549874475395, 28.866103942825141 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mandrake Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972766973281082, 28.868762156767367 ], [ -81.973431271734697, 28.868758263101071 ], [ -81.973464395663825, 28.868753158115187 ], [ -81.973493144215666, 28.868741776737185 ], [ -81.973530520533728, 28.86871886291533 ], [ -81.973557779203958, 28.868697277082333 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Midland Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973557779203958, 28.868697277082333 ], [ -81.97358202742754, 28.868671101536279 ], [ -81.973602403392618, 28.868639321017923 ], [ -81.973612470770519, 28.868614020613578 ], [ -81.973616793793227, 28.86856847590499 ], [ -81.97362984340306, 28.868120613035224 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Castlehill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972100990241401, 28.866672968369819 ], [ -81.972105133751995, 28.867294160024816 ], [ -81.972113744440875, 28.867342236540036 ], [ -81.972130980863966, 28.867382725573894 ], [ -81.972158280478297, 28.867414360587773 ], [ -81.972194363771195, 28.86744192081126 ], [ -81.972224686044015, 28.86745915748121 ], [ -81.972249245652009, 28.867468332675777 ], [ -81.972277553470292, 28.867478908113416 ], [ -81.972332168787005, 28.867482714482943 ], [ -81.973627133485451, 28.867481709563506 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pearson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965825302540892, 28.868741372287538 ], [ -81.966000665036901, 28.868662891188205 ], [ -81.96614833817091, 28.868607420631964 ], [ -81.966335996572923, 28.868554665956669 ], [ -81.966481586432295, 28.868524635852136 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lantana Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966481586432295, 28.868524635852136 ], [ -81.966384811225581, 28.868063582528301 ], [ -81.966355667948577, 28.867903097885275 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cordelia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966355667948577, 28.867903097885275 ], [ -81.966504430542258, 28.867882259408816 ], [ -81.966759772285783, 28.867864657604514 ], [ -81.966912037180805, 28.867866726318695 ], [ -81.967067763074184, 28.867873872068518 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lantana Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966355667948577, 28.867903097885275 ], [ -81.966339537632919, 28.867780689183565 ], [ -81.966326690851076, 28.867509311026115 ], [ -81.966305998749789, 28.867136304460036 ], [ -81.96629961040648, 28.867045898374489 ], [ -81.966292290000638, 28.866994236058442 ], [ -81.966285881726662, 28.866961947326761 ], [ -81.966277640190782, 28.866928043010954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aberdeen Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96522878697607, 28.869062066333456 ], [ -81.965256845166763, 28.869091745836698 ], [ -81.96530186341613, 28.869135400980596 ], [ -81.965363367293463, 28.869189570390873 ], [ -81.965426411326192, 28.869242387617174 ], [ -81.965540192124763, 28.869346664463961 ], [ -81.965627438447257, 28.869419891586062 ], [ -81.965667777385036, 28.869442502798005 ], [ -81.96571454022552, 28.869459467221947 ], [ -81.965755801433858, 28.869467548857084 ], [ -81.965791565322263, 28.869469173100196 ], [ -81.965836499540586, 28.869461111640675 ], [ -81.965885176894702, 28.869444884372779 ], [ -81.965992366294842, 28.869392810794295 ], [ -81.966139614465718, 28.869323494306268 ], [ -81.966263598346885, 28.869264695370937 ], [ -81.966384346993763, 28.869215385934496 ], [ -81.96652018204972, 28.869176516191683 ], [ -81.966651701020993, 28.869151878168207 ], [ -81.966775321473776, 28.869141187666873 ], [ -81.966895320759562, 28.869145295734292 ], [ -81.967056776917246, 28.86916427390884 ], [ -81.967212899728338, 28.869199492944983 ], [ -81.967361685340961, 28.869244219387955 ], [ -81.967506760253457, 28.86928928944775 ], [ -81.967666479477273, 28.869337114003162 ], [ -81.967826004085978, 28.869384936517868 ], [ -81.967971185499451, 28.869425001027704 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cordelia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968461098260931, 28.868228902220416 ], [ -81.96864278216735, 28.868283321210207 ], [ -81.968815394493717, 28.868341355180071 ], [ -81.968878439535501, 28.868384693007048 ], [ -81.968913807573315, 28.868413132781562 ], [ -81.96893225610161, 28.868434798648433 ], [ -81.968979517853896, 28.86849741679557 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Radbourne Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968979517853896, 28.86849741679557 ], [ -81.969069273302978, 28.868443351661757 ], [ -81.969120217787747, 28.868404223289708 ], [ -81.969166311903336, 28.868364380963847 ], [ -81.969205939182899, 28.868320267438737 ], [ -81.969243953667487, 28.868270460900835 ], [ -81.969266600857878, 28.868233460831021 ], [ -81.969295720957035, 28.868180094458062 ], [ -81.969319182544069, 28.868127437799295 ], [ -81.969337791105772, 28.868076201154416 ], [ -81.969348314430775, 28.86803065889988 ], [ -81.969369371776423, 28.867906836119921 ], [ -81.969442255302411, 28.867491962852412 ], [ -81.969455609458535, 28.867402096480625 ], [ -81.969459624219041, 28.867312980501357 ], [ -81.96944918740212, 28.867222259641796 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Halsey Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965825302540892, 28.868741372287538 ], [ -81.965718575472977, 28.868525760481941 ], [ -81.965691290510307, 28.868454905566676 ], [ -81.96566832613324, 28.868362543549217 ], [ -81.965655409053525, 28.868308138580012 ], [ -81.965632479172996, 28.868112033348137 ], [ -81.965596764234874, 28.867455410888759 ], [ -81.965575390938753, 28.866980961676269 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hartsville Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992737873636358, 28.898518495235546 ], [ -81.992807498611597, 28.898478626449496 ], [ -81.992900334364009, 28.898437786202145 ], [ -81.992970280205114, 28.898411673804176 ], [ -81.99308995668973, 28.898379973343964 ], [ -81.993169741497027, 28.89835619650917 ], [ -81.993209634594308, 28.898341477561068 ], [ -81.993245666850541, 28.898317699317591 ], [ -81.993279126014869, 28.898285993330937 ], [ -81.993304827950737, 28.898246222189524 ], [ -81.993318090467966, 28.89820537757743 ], [ -81.993323619242418, 28.898173284874996 ], [ -81.993322517184637, 28.898140220059197 ], [ -81.993310363088526, 28.89810520751935 ], [ -81.993279423436746, 28.898043938010158 ], [ -81.99309588651704, 28.897715553785574 ], [ -81.99285508001222, 28.897267599791626 ], [ -81.992783991093503, 28.897118395282938 ], [ -81.992735771425444, 28.896968524294806 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belton Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990580474587347, 28.898271833712837 ], [ -81.991044697052772, 28.898331478147536 ], [ -81.991325207655208, 28.898369594628885 ], [ -81.991498277120215, 28.898401285602333 ], [ -81.991588271510892, 28.898428095967198 ], [ -81.991656114060888, 28.898458560089139 ], [ -81.991736416577751, 28.8985024295153 ], [ -81.991837486472392, 28.898559700225483 ], [ -81.991913632321271, 28.898616971139774 ], [ -81.991980087587336, 28.898675459526235 ], [ -81.992074769960041, 28.898782982324352 ], [ -81.992110129871506, 28.898838417198313 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hartsville Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992110129871506, 28.898838417198313 ], [ -81.992428378961577, 28.898678091856002 ], [ -81.992737873636358, 28.898518495235546 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lyman Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990337519920899, 28.899031891465839 ], [ -81.990749294460926, 28.899038950687427 ], [ -81.991143078598952, 28.899053416225865 ], [ -81.991207473841669, 28.899064505268875 ], [ -81.991263399101584, 28.899082301414111 ], [ -81.991311179590809, 28.899104860238655 ], [ -81.99133955977149, 28.899123114711713 ], [ -81.991369034707404, 28.899145211240285 ], [ -81.99142049126921, 28.899202094630091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hartsville Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99142049126921, 28.899202094630091 ], [ -81.991474645148486, 28.899168061603479 ], [ -81.991577429186222, 28.899112633637614 ], [ -81.991925564267632, 28.898933713199973 ], [ -81.992110129871506, 28.898838417198313 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hartsville Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991228147589183, 28.899747662615002 ], [ -81.991233680915954, 28.899648466019087 ], [ -81.991246959838989, 28.899478277938407 ], [ -81.991262578774922, 28.899411479056674 ], [ -81.991280590022555, 28.899366155953189 ], [ -81.991296194750532, 28.899332572503344 ], [ -81.991315528189105, 28.899304676488299 ], [ -81.99136080841086, 28.899250716549322 ], [ -81.99142049126921, 28.899202094630091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Olar Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990135959819696, 28.899810438988073 ], [ -81.990604057642628, 28.899770467786571 ], [ -81.991146367095254, 28.89974668448647 ], [ -81.991228147589183, 28.899747662615002 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hartsville Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989713672731455, 28.900431961022232 ], [ -81.99046845482917, 28.900527330019997 ], [ -81.99055362045344, 28.900530524848168 ], [ -81.990640599096125, 28.900520962144736 ], [ -81.990721812506109, 28.900506873951471 ], [ -81.990798247880122, 28.900479516167483 ], [ -81.990894289044604, 28.900431687427826 ], [ -81.990950466278434, 28.900391827710472 ], [ -81.991006642134678, 28.900343995254939 ], [ -81.991061008712151, 28.90027862286188 ], [ -81.991099066389367, 28.900218034241636 ], [ -81.991133829785696, 28.900142998678703 ], [ -81.991156998160292, 28.90009317527451 ], [ -81.991175185549309, 28.900052206696976 ], [ -81.991198748245921, 28.899983644363527 ], [ -81.991211436962672, 28.899915078596063 ], [ -81.991220077098347, 28.899828198592665 ], [ -81.991228147589183, 28.899747662615002 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Persimmon Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987887477793507, 28.86947439480085 ], [ -81.987884819702671, 28.868840468800336 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tallowtree Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987887477793507, 28.86947439480085 ], [ -81.988368355157149, 28.869473986548623 ], [ -81.98860487510342, 28.869473075842514 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tallowtree Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987107959889983, 28.869441346946164 ], [ -81.987184773003975, 28.869456956984475 ], [ -81.987318705912585, 28.869470841812156 ], [ -81.98760734732636, 28.869477376396087 ], [ -81.987823529277435, 28.869474332121634 ], [ -81.987887477793507, 28.86947439480085 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avignon Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989734258017435, 28.888402364873055 ], [ -81.9897436504273, 28.888381101080064 ], [ -81.989840160077975, 28.888116742531121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Trce", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001247684672407, 28.933415723370381 ], [ -82.001331313390239, 28.933456835049221 ], [ -82.001367389082631, 28.933480635556421 ], [ -82.00142477565791, 28.93351999417947 ], [ -82.001496418433646, 28.933570411198559 ], [ -82.001576057656166, 28.93363033920431 ], [ -82.001636903149432, 28.933680881650226 ], [ -82.001685291520999, 28.933717107467857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974761489717864, 28.952530251226751 ], [ -81.974013476881098, 28.952521385376443 ], [ -81.973024300085413, 28.952524097453868 ], [ -81.972415581234756, 28.952518155241101 ], [ -81.971353624421653, 28.952517931010711 ], [ -81.97091031744381, 28.952517835304487 ], [ -81.97060926034122, 28.952529408140041 ], [ -81.970241102890739, 28.952547108191638 ], [ -81.969413825247813, 28.952585530641617 ], [ -81.968482011181379, 28.95263367448738 ], [ -81.968167718884246, 28.95265105852426 ], [ -81.96724151949924, 28.952688959515378 ], [ -81.966040682430901, 28.952748753731136 ], [ -81.966033645816466, 28.952749088500465 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961691463013779, 28.950165211134365 ], [ -81.961755716375123, 28.950228829366932 ], [ -81.961886896868236, 28.950358423286573 ], [ -81.962103749724207, 28.950572843273466 ], [ -81.962582966735681, 28.951048802672599 ], [ -81.963062192644458, 28.95151209937627 ], [ -81.963262248615749, 28.951717901354662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buenos Aires Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963262248615749, 28.951717901354662 ], [ -81.962450227868672, 28.952365221273936 ], [ -81.96157028045215, 28.953070886907007 ], [ -81.961110447762977, 28.953437459086075 ], [ -81.960588723852226, 28.953855637897608 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bella Cruz Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959900344226099, 28.953155811005065 ], [ -81.960371829040071, 28.953631302078925 ], [ -81.960588723852226, 28.953855637897608 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buenos Aires Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960588723852226, 28.953855637897608 ], [ -81.960244932910626, 28.954129955677985 ], [ -81.959781400562818, 28.954481197630184 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962770693794667, 28.957442241957057 ], [ -81.961462676335756, 28.956146584888831 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959781400562818, 28.954481197630184 ], [ -81.959111348270071, 28.953795466967911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966033402878324, 28.95287002532605 ], [ -81.966047522275019, 28.952869395499668 ], [ -81.966456971373646, 28.952851115450013 ], [ -81.967567889904529, 28.952794962671135 ], [ -81.968548243703268, 28.952748669132735 ], [ -81.969693437663281, 28.952692671977029 ], [ -81.969957429445103, 28.952680687741445 ], [ -81.970542714853167, 28.952651119899411 ], [ -81.970703667572167, 28.952645215468628 ], [ -81.970871371855395, 28.952638323404198 ], [ -81.971412753272674, 28.952638440243732 ], [ -81.972798281918443, 28.952640708071506 ], [ -81.974833128716895, 28.952651878359912 ], [ -81.974833863245593, 28.95265187849829 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963373215771909, 28.951639961092742 ], [ -81.963142887784258, 28.951410222162966 ], [ -81.962197072496878, 28.950481753479451 ], [ -81.961790477264685, 28.950082300718837 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961790477264685, 28.950082300718837 ], [ -81.961652207362718, 28.949967107059255 ], [ -81.961452970678764, 28.949821031915533 ], [ -81.961161917469937, 28.949646363309931 ], [ -81.960907231104443, 28.949526989942335 ], [ -81.960730275090526, 28.949460615188123 ], [ -81.960572288459574, 28.949401681576251 ], [ -81.960414293765226, 28.949361589443914 ], [ -81.960205981239412, 28.949311463134578 ], [ -81.960097129591915, 28.949293476943566 ], [ -81.959992686609695, 28.949279313189038 ], [ -81.959825143041485, 28.949264834493583 ], [ -81.959565371881453, 28.949250623737534 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95969428586325, 28.949379056070654 ], [ -81.959798315622734, 28.949384961251276 ], [ -81.959878656098596, 28.949392051187079 ], [ -81.959967031123753, 28.949401501165845 ], [ -81.96005495086159, 28.949413159762379 ], [ -81.960140467510953, 28.949428972642433 ], [ -81.960228093995056, 28.949445714553274 ], [ -81.960303050945157, 28.949463382014326 ], [ -81.960402289631432, 28.949486626463599 ], [ -81.960501525560716, 28.949514516741804 ], [ -81.960625792626175, 28.949554809095591 ], [ -81.960708802822523, 28.949585454562534 ], [ -81.960783779518295, 28.94961374444825 ], [ -81.960874823628501, 28.949651459819659 ], [ -81.960981930201626, 28.949700958332279 ], [ -81.961078322905053, 28.949750453646608 ], [ -81.961169361648672, 28.949797591454558 ], [ -81.961236300771844, 28.949837654573251 ], [ -81.961305916533817, 28.949880076121303 ], [ -81.961370175358553, 28.94992249428369 ], [ -81.961455856802473, 28.949976698006662 ], [ -81.961546886270852, 28.950049747583158 ], [ -81.961691463013779, 28.950165211134365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963976532690538, 28.936497487559407 ], [ -81.964015746824501, 28.936583299947049 ], [ -81.964029457702154, 28.936621380437938 ], [ -81.964050552713559, 28.936674318278055 ], [ -81.96406742781349, 28.93672168602383 ], [ -81.964082579976619, 28.93676535299743 ], [ -81.964094844812621, 28.936811772996467 ], [ -81.964108550000404, 28.936869352049943 ], [ -81.964119086304351, 28.936922287950129 ], [ -81.964140674968036, 28.937039736316713 ], [ -81.964155959047147, 28.937149820272104 ], [ -81.964258618278294, 28.937939930541098 ], [ -81.964258962010007, 28.93794257435383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96256095951415, 28.935337709236929 ], [ -81.962665393095591, 28.935365834015169 ], [ -81.962736050218567, 28.935390927538993 ], [ -81.962814422552086, 28.935422291404965 ], [ -81.962904076132347, 28.935460972345926 ], [ -81.962991945038453, 28.935505398543349 ], [ -81.963067904880162, 28.935545890105082 ], [ -81.963130278491548, 28.935582747053708 ], [ -81.9631734027368, 28.935607800284785 ], [ -81.963210723910862, 28.935631785396861 ], [ -81.963255844535752, 28.935661746727504 ], [ -81.963298885136496, 28.93569144671013 ], [ -81.963336287295135, 28.935718619614548 ], [ -81.963370720591925, 28.935744227118708 ], [ -81.963406933147397, 28.935770876347448 ], [ -81.963436614723278, 28.935795436777664 ], [ -81.963474609549934, 28.9358262668032 ], [ -81.963505071302109, 28.935852024775169 ], [ -81.963533980425524, 28.9358798783468 ], [ -81.963562496473642, 28.935908419353325 ], [ -81.963590429810452, 28.935937304871683 ], [ -81.963631024348956, 28.9359843263247 ], [ -81.963659516408484, 28.936017069287448 ], [ -81.96368167817063, 28.93604284481744 ], [ -81.963710961624457, 28.936076982027981 ], [ -81.963733912282919, 28.936108329428933 ], [ -81.963757656028477, 28.936136196892086 ], [ -81.963779813590932, 28.936168241543726 ], [ -81.963804346482064, 28.936200983404447 ], [ -81.963826900984188, 28.936233144551245 ], [ -81.963848001612774, 28.936266581145588 ], [ -81.963870162469604, 28.93629816290581 ], [ -81.963889151497042, 28.936330670463242 ], [ -81.963908803891485, 28.93636399206585 ], [ -81.963976532690538, 28.936497487559407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961360044947568, 28.934973431545504 ], [ -81.961364713217804, 28.934975401697553 ], [ -81.961476322726838, 28.93501519071846 ], [ -81.96165957055733, 28.935074588068638 ], [ -81.961838883149127, 28.935127922435836 ], [ -81.962206289461321, 28.935233149259346 ], [ -81.962419060204184, 28.935291996280906 ], [ -81.96256095951415, 28.935337709236929 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959131983861738, 28.932808839586531 ], [ -81.959156900862013, 28.932868395911182 ], [ -81.959184189669173, 28.932934747230437 ], [ -81.959212668104641, 28.932999006484657 ], [ -81.959243518779502, 28.933063789784345 ], [ -81.9592749641849, 28.933129095685583 ], [ -81.959304039067007, 28.933187087762651 ], [ -81.959332520314547, 28.933241945984204 ], [ -81.9593675296844, 28.933305685658009 ], [ -81.959403727664281, 28.9333673359682 ], [ -81.959441707717716, 28.933427943755053 ], [ -81.959484436764811, 28.933493774544022 ], [ -81.95952123264064, 28.933548111905587 ], [ -81.959558620990663, 28.933600883052382 ], [ -81.959592451238848, 28.933645817591248 ], [ -81.95964111942277, 28.933708516450459 ], [ -81.959695127289635, 28.933776816536259 ], [ -81.959743282601735, 28.933834623865401 ], [ -81.959788155193422, 28.933888578297395 ], [ -81.959843973473838, 28.933949277035026 ], [ -81.959887752314543, 28.933996486455012 ], [ -81.959932629807042, 28.934040808847016 ], [ -81.959996111132924, 28.934104400762013 ], [ -81.960051934304303, 28.934158358372208 ], [ -81.960101188867085, 28.934204606605448 ], [ -81.96016761718937, 28.934260297924116 ], [ -81.960229353309771, 28.934312553685203 ], [ -81.960289903962504, 28.934361674495925 ], [ -81.960352236286582, 28.934408183664221 ], [ -81.960408776165323, 28.934450318574203 ], [ -81.960467887049404, 28.934493681338836 ], [ -81.960530331623232, 28.934536741888262 ], [ -81.960609883879101, 28.934587956057495 ], [ -81.960682311627693, 28.934633946512413 ], [ -81.960747616272059, 28.934673665701418 ], [ -81.960813514217278, 28.93471234107755 ], [ -81.960880982129751, 28.934749445985247 ], [ -81.960947987092567, 28.934787625356531 ], [ -81.961065964948162, 28.934848898395579 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alcona Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959131983861738, 28.932808839586531 ], [ -81.959652059881947, 28.932650251054127 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Navarro Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958560144789843, 28.932924629624747 ], [ -81.958619458717322, 28.932912725027993 ], [ -81.958710520812176, 28.932895220622754 ], [ -81.958877010006674, 28.932861239056702 ], [ -81.959131983861738, 28.932808839586531 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959048537415555, 28.930795103619623 ], [ -81.959036593647312, 28.930831169204019 ], [ -81.959021762046632, 28.930886828137542 ], [ -81.959009625320206, 28.930941304082275 ], [ -81.958986934465969, 28.931037230924414 ], [ -81.958959714715519, 28.931188815327296 ], [ -81.958944861405712, 28.931298957504154 ], [ -81.958932690662422, 28.931436336264582 ], [ -81.958925883117814, 28.931630566642166 ], [ -81.958927162896998, 28.931794005980507 ], [ -81.958937866749622, 28.931962186150976 ], [ -81.95894591809288, 28.932027327069701 ], [ -81.958952622349685, 28.932096020810985 ], [ -81.958959445837181, 28.932156343098541 ], [ -81.95897010894447, 28.932217986617459 ], [ -81.958983736629222, 28.93229425723715 ], [ -81.958997959669844, 28.932361646751346 ], [ -81.959020486531074, 28.932457770567609 ], [ -81.959045981340154, 28.932554938338079 ], [ -81.959089275965084, 28.932693381585171 ], [ -81.959131983861738, 28.932808839586531 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964327834137208, 28.925830017608408 ], [ -81.964268588306055, 28.92586908655586 ], [ -81.964195875896905, 28.925917623274842 ], [ -81.964132588011324, 28.925962611944556 ], [ -81.964059873414456, 28.926017071256098 ], [ -81.964000624489557, 28.92606443037414 ], [ -81.963948107264542, 28.926107053323687 ], [ -81.963887510163318, 28.926155594035514 ], [ -81.963829604838438, 28.92620532196479 ], [ -81.963771700265241, 28.926258600401432 ], [ -81.963701674197409, 28.926322536150064 ], [ -81.963647807582717, 28.926372265093704 ], [ -81.963595284862947, 28.926426729626726 ], [ -81.963548151762907, 28.92647527564494 ], [ -81.963501809919833, 28.926522273522902 ], [ -81.963449037636451, 28.926577263967772 ], [ -81.963397436193802, 28.926633284230284 ], [ -81.963373904166559, 28.926659742123718 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963373904166559, 28.926659742123718 ], [ -81.96333940584482, 28.926707348621065 ], [ -81.963305733860693, 28.926749975567443 ], [ -81.96322896565772, 28.926845887467838 ], [ -81.963168959814354, 28.926919677845049 ], [ -81.962948822917213, 28.927202297258951 ], [ -81.962804708791296, 28.927390567263267 ], [ -81.962737369556578, 28.927468715296641 ], [ -81.962710433766262, 28.927501869861647 ], [ -81.96267407069719, 28.9275397588457 ], [ -81.962645789070166, 28.927570543595245 ], [ -81.962622893706595, 28.927596592791087 ], [ -81.962594611023476, 28.927627377529298 ], [ -81.962569024635243, 28.927649874530587 ], [ -81.962539396124555, 28.927678289453755 ], [ -81.962498997329106, 28.927712624022718 ], [ -81.962469371526353, 28.927736302783405 ], [ -81.962434360438607, 28.927764717980153 ], [ -81.962404734442998, 28.927786025494523 ], [ -81.962373762965953, 28.927809704758644 ], [ -81.962349523843173, 28.927827463241368 ], [ -81.962313211420522, 28.927852355480145 ], [ -81.96227979157598, 28.927876410290949 ], [ -81.962236412384172, 28.927904413438053 ], [ -81.962206788198955, 28.92792335509089 ], [ -81.962170432325593, 28.927943478648444 ], [ -81.962134076438247, 28.927963602196108 ], [ -81.961960378625989, 28.928053561462733 ], [ -81.9612777095806, 28.92838853703438 ], [ -81.961163257755814, 28.928447721548498 ], [ -81.961070346084938, 28.928493883983638 ], [ -81.960992250479265, 28.928535312715404 ], [ -81.960941082820739, 28.928563720110059 ], [ -81.960899340967259, 28.92858621117934 ], [ -81.960786378753596, 28.928648672038893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrera Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963373904166559, 28.926659742123718 ], [ -81.963458602424339, 28.926696679052295 ], [ -81.963501351874513, 28.926709924668913 ], [ -81.963531434225573, 28.926713414816962 ], [ -81.963563099158137, 28.926719693481285 ], [ -81.96359159824155, 28.926725271999118 ], [ -81.963628013333874, 28.926730157892386 ], [ -81.963665222262819, 28.926735042186461 ], [ -81.963696096699252, 28.926740623130843 ], [ -81.963730138753078, 28.926744812683825 ], [ -81.963762596954481, 28.926746910279245 ], [ -81.963788722419679, 28.926747613011617 ], [ -81.963815640397272, 28.92674622894377 ], [ -81.963844624544137, 28.926746164583861 ], [ -81.963898159682415, 28.926747209439558 ], [ -81.963930983259061, 28.926748593377219 ], [ -81.96396361082229, 28.926750321930985 ], [ -81.963996239173042, 28.92675273712381 ], [ -81.964028867405659, 28.926755496083231 ], [ -81.964061494375613, 28.9267589416812 ], [ -81.964093928410435, 28.926762732798661 ], [ -81.964126359251694, 28.926766866779676 ], [ -81.964158789857095, 28.926771688301898 ], [ -81.964191026384029, 28.926777198215785 ], [ -81.964223066901852, 28.926783050039585 ], [ -81.964255107304027, 28.926789246532529 ], [ -81.964286953629482, 28.926796130515164 ], [ -81.964318601894675, 28.926803359114366 ], [ -81.964350249927975, 28.926811272548225 ], [ -81.964381508109454, 28.926819532352432 ], [ -81.964412766177801, 28.926828135021552 ], [ -81.96444382914612, 28.926837425180718 ], [ -81.964474697133085, 28.926847059055536 ], [ -81.964505563982357, 28.926857035795187 ], [ -81.964535842918266, 28.926867700823511 ], [ -81.964566125726492, 28.926879055199652 ], [ -81.964596209570999, 28.926890406809527 ], [ -81.964626099343207, 28.926902446812786 ], [ -81.964655597215597, 28.926914831382796 ], [ -81.964684899991468, 28.926927902541664 ], [ -81.964714007788757, 28.926941316515027 ], [ -81.964742723686641, 28.926955075958073 ], [ -81.964771244489071, 28.926969521990408 ], [ -81.964799374535929, 28.926983967913994 ], [ -81.964827309487262, 28.926999102231822 ], [ -81.965610764249917, 28.927428928127963 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrera Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963373904166559, 28.926659742123718 ], [ -81.963202161530987, 28.926507162943029 ], [ -81.962560364289502, 28.925896325174573 ], [ -81.962510904837714, 28.925840243610924 ], [ -81.962477668029678, 28.925797051350841 ], [ -81.962451557480236, 28.925755951697642 ], [ -81.96242861378019, 28.9257127605037 ], [ -81.962408836177701, 28.925672360091319 ], [ -81.962394601255326, 28.925631261952084 ], [ -81.96238036607842, 28.925588074996941 ], [ -81.962370881039902, 28.925546282518027 ], [ -81.962362978792299, 28.925506580199073 ], [ -81.962358252776284, 28.925444590267606 ], [ -81.962356678337528, 28.925413945162603 ], [ -81.962356687465089, 28.925388871274802 ], [ -81.962358281171731, 28.925366583218253 ], [ -81.962359142182848, 28.925342602249426 ], [ -81.962359880927636, 28.925319221272694 ], [ -81.962364639904493, 28.925293452146235 ], [ -81.962367023579787, 28.925270469543513 ], [ -81.962373365839198, 28.925245397433272 ], [ -81.962381291394109, 28.925223807725573 ], [ -81.962390798434143, 28.92520221755883 ], [ -81.962398724741377, 28.925178539938234 ], [ -81.962413779727498, 28.925141631249751 ], [ -81.962443888165524, 28.925074774174668 ], [ -81.962813478867247, 28.924325330331655 ], [ -81.962852560372767, 28.924248263463472 ], [ -81.962876854408648, 28.924209263952314 ], [ -81.962904316445858, 28.92416469724667 ], [ -81.96294022212534, 28.924111774002792 ], [ -81.962970849131707, 28.924069991740286 ], [ -81.963000418086608, 28.924032854196792 ], [ -81.963036322072057, 28.923990144010958 ], [ -81.963061666309727, 28.923962291715856 ], [ -81.963100736953422, 28.923920513554304 ], [ -81.963130302508631, 28.923892661505842 ], [ -81.963166205763258, 28.92385459720499 ], [ -81.963219000765861, 28.923807248396521 ], [ -81.963265459705895, 28.923768257600557 ], [ -81.963315081617196, 28.923734839330436 ], [ -81.963363650870079, 28.923699563829391 ], [ -81.963425942817494, 28.923660576402391 ], [ -81.963478732354645, 28.923628088300426 ], [ -81.963532578874748, 28.923593742638179 ], [ -81.963594870696141, 28.923554755132262 ], [ -81.963656106810305, 28.923516696675598 ], [ -81.96371101050434, 28.923476779551503 ], [ -81.963769081034556, 28.923428504392671 ], [ -81.963822931957267, 28.9233839428212 ], [ -81.963853553201261, 28.923357020261069 ], [ -81.963879950076461, 28.923332881942518 ], [ -81.963929578443228, 28.923282747512779 ], [ -81.96396019892822, 28.923254896465327 ], [ -81.964002437261058, 28.923209402332539 ], [ -81.964034117615583, 28.923171336661454 ], [ -81.964068963614778, 28.923134200293944 ], [ -81.964104866912763, 28.923094276106244 ], [ -81.964135488262613, 28.923063638728717 ], [ -81.964170333284386, 28.923032073108676 ], [ -81.964200952023319, 28.923008866121634 ], [ -81.96423262710384, 28.922985656702632 ], [ -81.964266412567554, 28.922966165297833 ], [ -81.964300197635396, 28.92294481425257 ], [ -81.964329757723377, 28.922928106191044 ], [ -81.964362486797512, 28.922908612676149 ], [ -81.964399436916636, 28.922892834124504 ], [ -81.964435331057118, 28.922878914914271 ], [ -81.964475445792004, 28.922864066546321 ], [ -81.964535835992706, 28.922844250079024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrera Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968404100888577, 28.927139103310729 ], [ -81.968425247639743, 28.927127862089836 ], [ -81.968466257013404, 28.927108833322198 ], [ -81.968534603826328, 28.927081795879349 ], [ -81.968577889858423, 28.927066775608459 ], [ -81.968626870157252, 28.927051755755638 ], [ -81.968691796767956, 28.927033735873373 ], [ -81.968747611807956, 28.927018719379078 ], [ -81.968801146073005, 28.927009713421882 ], [ -81.968856959270326, 28.927000707071173 ], [ -81.968921883213952, 28.926994709260523 ], [ -81.968990223932778, 28.926990718914848 ], [ -81.969072398821183, 28.926988379322211 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrera Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967853197749363, 28.927618656734953 ], [ -81.967868049188453, 28.927604565544936 ], [ -81.967882707911727, 28.927590130532529 ], [ -81.967896779969877, 28.927575694475543 ], [ -81.967910852130458, 28.927560916447167 ], [ -81.967924534654216, 28.927545793647177 ], [ -81.967937824357236, 28.927530670751679 ], [ -81.967950920318899, 28.92751520403398 ], [ -81.967973397567832, 28.927487019902291 ], [ -81.967996071726034, 28.927458834911519 ], [ -81.968009165618781, 28.92744336818749 ], [ -81.968022457347772, 28.92742824528387 ], [ -81.96803613778647, 28.927413123373984 ], [ -81.968050016061667, 28.927398344382112 ], [ -81.968064282939977, 28.927383910158241 ], [ -81.968078746735813, 28.927369474175187 ], [ -81.968093599134988, 28.927355382057648 ], [ -81.968108648450723, 28.927341290887636 ], [ -81.968124086369727, 28.927327543582905 ], [ -81.968139721099334, 28.927314140097749 ], [ -81.968155552639629, 28.927301080432038 ], [ -81.968171772889335, 28.927288020856839 ], [ -81.968188189950027, 28.927275304198634 ], [ -81.968204800744061, 28.927262933163512 ], [ -81.968221606403873, 28.927250561270249 ], [ -81.968238804663514, 28.927238877919326 ], [ -81.968256197789245, 28.927227192807798 ], [ -81.968273785674469, 28.927215852416953 ], [ -81.968291569450585, 28.927204512972466 ], [ -81.96830974172525, 28.927193859362017 ], [ -81.968325707944302, 28.927182965216723 ], [ -81.968343131652929, 28.927171824185166 ], [ -81.968362134823636, 28.927160686231399 ], [ -81.96837955523435, 28.927150241766324 ], [ -81.968404100888577, 28.927139103310729 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967823731008323, 28.923608960169009 ], [ -81.967750299389834, 28.923655541574071 ], [ -81.967691947693467, 28.923690112508723 ], [ -81.967411640196943, 28.923866956831191 ], [ -81.966903282339445, 28.924190005645812 ], [ -81.965973249572556, 28.924779932656854 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrera Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964535835992706, 28.922844250079024 ], [ -81.964560987694114, 28.922837550870213 ], [ -81.964605191702361, 28.922824823940275 ], [ -81.964653206085686, 28.9228141092185 ], [ -81.964695122550538, 28.922808756119853 ], [ -81.964753804246698, 28.922803408321382 ], [ -81.964804102121917, 28.922800068610687 ], [ -81.964884121441344, 28.922796737575919 ], [ -81.964974807414663, 28.922800783746563 ], [ -81.965063967789035, 28.922809523201646 ], [ -81.965107403948522, 28.922816909886592 ], [ -81.965179795371441, 28.922833690669556 ], [ -81.965232373535116, 28.92285046446921 ], [ -81.965259042325954, 28.922861199684839 ], [ -81.965282662732193, 28.922869922887802 ], [ -81.965324572112962, 28.922888706006393 ], [ -81.965376385268925, 28.922911515911203 ], [ -81.965438101669221, 28.922943042724611 ], [ -81.965555443488711, 28.923003415783988 ], [ -81.965639259839719, 28.923039641025472 ], [ -81.965738318308212, 28.923076542323766 ], [ -81.965819850160202, 28.923105392404256 ], [ -81.965957772899216, 28.923146996291194 ], [ -81.9660941717231, 28.923188600553345 ], [ -81.966390589657209, 28.92329192766735 ], [ -81.966520127367161, 28.923337551308432 ], [ -81.96660013837166, 28.923361037289183 ], [ -81.966662622557863, 28.923379826923306 ], [ -81.966742634328668, 28.923397948670793 ], [ -81.966816722398463, 28.923412614914955 ], [ -81.96690006513569, 28.923421778498717 ], [ -81.966998251652086, 28.923432949687875 ], [ -81.96707585452242, 28.923437845693897 ], [ -81.967163752809284, 28.923437868172837 ], [ -81.967260076196879, 28.923438304100902 ], [ -81.96735991310365, 28.923426260260445 ], [ -81.967455936175568, 28.923419578665719 ], [ -81.967524525071894, 28.92341490247312 ], [ -81.967564447422617, 28.923414277833068 ], [ -81.967612486439407, 28.923419746543317 ], [ -81.967647325347258, 28.92343090282834 ], [ -81.967683217597241, 28.923448444003764 ], [ -81.967712509714772, 28.923470745896012 ], [ -81.967737843062054, 28.923493043219128 ], [ -81.967767927768776, 28.92351604186247 ], [ -81.967790883971745, 28.923541127599727 ], [ -81.967823731008323, 28.923608960169009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968624555342629, 28.922666526192419 ], [ -81.968585815466568, 28.92274904921717 ], [ -81.968554507642338, 28.922815737779384 ], [ -81.96851814061958, 28.922885604835209 ], [ -81.968483122734014, 28.922943629564251 ], [ -81.968460226581882, 28.922980338593934 ], [ -81.968440023726771, 28.92300994267411 ], [ -81.968417129657311, 28.92304310025996 ], [ -81.968394235274161, 28.923073885705808 ], [ -81.968369994579547, 28.923107042063201 ], [ -81.968345753207288, 28.923139013701388 ], [ -81.968321512911075, 28.923167431191892 ], [ -81.968294761616406, 28.923196967832631 ], [ -81.968268895595799, 28.923225835174136 ], [ -81.968241041295798, 28.9232568892042 ], [ -81.968214179128722, 28.923286630623352 ], [ -81.968186323958179, 28.923313748827088 ], [ -81.96815896748025, 28.923339991014227 ], [ -81.968128625440045, 28.923369731588537 ], [ -81.96809828405793, 28.923397286795474 ], [ -81.968067942931185, 28.923423964963956 ], [ -81.96803611044345, 28.923451081285343 ], [ -81.96800577023437, 28.923474697047766 ], [ -81.967973440981908, 28.923499625168056 ], [ -81.967940614029828, 28.923525429290567 ], [ -81.967907352499907, 28.923550302131563 ], [ -81.967875272827854, 28.923573918349639 ], [ -81.967844683323818, 28.923594254170226 ], [ -81.967823731008323, 28.923608960169009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aldama Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967823731008323, 28.923608960169009 ], [ -81.967850473896533, 28.92369609588302 ], [ -81.967863054311181, 28.923753846735345 ], [ -81.967885809220988, 28.923859182593933 ], [ -81.967923211199704, 28.924048781040451 ], [ -81.967930654852211, 28.924085518892117 ], [ -81.967934781591936, 28.92411938755092 ], [ -81.967939462190358, 28.924146545968611 ], [ -81.967943557067457, 28.924174048922815 ], [ -81.967947064278718, 28.924201551736122 ], [ -81.967950182789252, 28.924229056260806 ], [ -81.967952519795716, 28.924256557891439 ], [ -81.967954463998538, 28.924284060330173 ], [ -81.967955822478231, 28.924311906403322 ], [ -81.967956596473343, 28.924339408561831 ], [ -81.967987464592625, 28.92566672709069 ], [ -81.967988512171942, 28.925691801231636 ], [ -81.967988505259882, 28.925714087929524 ], [ -81.96798955283991, 28.925739162070251 ], [ -81.967991657090465, 28.925763308903679 ], [ -81.967993760604813, 28.925786525470123 ], [ -81.967997976147771, 28.925808814981391 ], [ -81.968003245898942, 28.925834817690372 ], [ -81.9680074637849, 28.925856178739668 ], [ -81.968016946752414, 28.925905400322268 ], [ -81.968138157847378, 28.926494200465349 ], [ -81.968171887871392, 28.92665579606054 ], [ -81.968184141972088, 28.926705830350144 ], [ -81.968192841260631, 28.926739264265649 ], [ -81.968204704771523, 28.926775485219935 ], [ -81.968216569316269, 28.926811706173236 ], [ -81.968227643588222, 28.926843050933584 ], [ -81.968238718555909, 28.926868824019113 ], [ -81.968252168616857, 28.926898776196641 ], [ -81.968265619113652, 28.92692733613103 ], [ -81.968282234011994, 28.926961467585119 ], [ -81.96830043394111, 28.926994207170491 ], [ -81.968321006325681, 28.927029733602616 ], [ -81.968337624634401, 28.927056204562682 ], [ -81.968353451808426, 28.927080585617595 ], [ -81.968374026831242, 28.927104271220024 ], [ -81.968392228774789, 28.927127260589398 ], [ -81.968404100888577, 28.927139103310729 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Juarez Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958713694040654, 28.923650617189129 ], [ -81.958725405258875, 28.923681559612753 ], [ -81.958734188011547, 28.923703220120217 ], [ -81.958743166792914, 28.923724537814977 ], [ -81.958752732218471, 28.923745853884952 ], [ -81.958770105899092, 28.923781611793608 ], [ -81.958780647837585, 28.923802586191613 ], [ -81.958791775669042, 28.92382287231715 ], [ -81.958803295145259, 28.923843502336716 ], [ -81.958815204489355, 28.92386378779803 ], [ -81.958827505751188, 28.923883732310806 ], [ -81.958840001881953, 28.923903674175321 ], [ -81.958853084794228, 28.923923274248626 ], [ -81.958866557438938, 28.923942871733267 ], [ -81.958880419950731, 28.923962128268311 ], [ -81.95889467643353, 28.9239810402457 ], [ -81.958909322648523, 28.923999951438653 ], [ -81.958938809613031, 28.924036057712858 ], [ -81.958976499884884, 28.924081103729172 ], [ -81.958993488048279, 28.924101391630117 ], [ -81.95901087018359, 28.924121336776988 ], [ -81.959041727207818, 28.924155378994406 ], [ -81.95906008381634, 28.924174978853202 ], [ -81.959078833507462, 28.924193892182391 ], [ -81.9590979719069, 28.924212806529809 ], [ -81.95911750338918, 28.924231033445047 ], [ -81.959137423580998, 28.924249258671264 ], [ -81.959166330307895, 28.924274706801377 ], [ -81.959187031403687, 28.924291902738631 ], [ -81.95920812633689, 28.924309097890195 ], [ -81.959229416276429, 28.92432594932308 ], [ -81.959251292111404, 28.924342112479053 ], [ -81.959286448899064, 28.924367562482434 ], [ -81.95930832577649, 28.924383727433973 ], [ -81.959321020705531, 28.924394045427597 ], [ -81.959334497630309, 28.924405737853448 ], [ -81.959347778533356, 28.924417773993135 ], [ -81.959360471500233, 28.924430497502566 ], [ -81.959372580903292, 28.924443220833947 ], [ -81.95938429723428, 28.924456631594435 ], [ -81.959395429866689, 28.924470385049425 ], [ -81.959405974832109, 28.92448413922785 ], [ -81.959416128776198, 28.924498581738604 ], [ -81.959425501215037, 28.9245130231098 ], [ -81.959436825406598, 28.924532621690247 ], [ -81.959445025318914, 28.924547750254526 ], [ -81.959452443590138, 28.9245632223565 ], [ -81.959459275084427, 28.924579038055278 ], [ -81.959465520962141, 28.924594852674286 ], [ -81.959471181222, 28.92461066892055 ], [ -81.959476059705779, 28.924627170674935 ], [ -81.959480352705413, 28.924643331184399 ], [ -81.959484056877045, 28.924659831681179 ], [ -81.959487176454957, 28.924676334708099 ], [ -81.959489514389205, 28.924693182175641 ], [ -81.959491069789763, 28.924710026699771 ], [ -81.9594922366216, 28.924726527331842 ], [ -81.959492425918413, 28.924743372345446 ], [ -81.959492224459794, 28.92476021814322 ], [ -81.959491239439529, 28.924777063704237 ], [ -81.959489670850786, 28.924793907284268 ], [ -81.959487119932021, 28.924820720031285 ], [ -81.959483985409719, 28.924842377787176 ], [ -81.959480265535177, 28.924863346914474 ], [ -81.959475568123125, 28.92488465861847 ], [ -81.959470089331703, 28.924905628116001 ], [ -81.959463827110383, 28.924926252699468 ], [ -81.959456591451953, 28.924947220762835 ], [ -81.959448572497024, 28.924967501039621 ], [ -81.959439773052978, 28.924987780177464 ], [ -81.959430387227442, 28.925007373392599 ], [ -81.959420023995619, 28.925026965408897 ], [ -81.959409075273271, 28.925046213472481 ], [ -81.959397150303872, 28.925065117464872 ], [ -81.959383069337719, 28.925081830931738 ], [ -81.959368917240951, 28.925099459303205 ], [ -81.959355941708154, 28.9251139751102 ], [ -81.959341789799808, 28.925128490559178 ], [ -81.959325281040179, 28.925143007096249 ], [ -81.959308768792582, 28.925158557660865 ], [ -81.959288720242384, 28.92517410985657 ], [ -81.959269853187237, 28.925189661505883 ], [ -81.959250985300571, 28.925202101134989 ], [ -81.959233297884779, 28.925214541120351 ], [ -81.959212071089198, 28.925226980928993 ], [ -81.95918731024851, 28.925241494035934 ], [ -81.959163727002249, 28.925252895479712 ], [ -81.959142503879988, 28.92526118562132 ], [ -81.959118923494671, 28.925270513582987 ], [ -81.959098877764191, 28.925278804978976 ], [ -81.959075297371356, 28.925288132030666 ], [ -81.95905289293799, 28.925298496174896 ], [ -81.95899931232583, 28.925315860719259 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amelia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013957314112176, 28.933654379995165 ], [ -82.014008010850219, 28.933654374928011 ], [ -82.014149491472352, 28.933655398324557 ], [ -82.014372319366927, 28.93365537559227 ], [ -82.014638770847128, 28.933655347925431 ], [ -82.014900506208136, 28.933655320234848 ], [ -82.015167549681436, 28.933656501435014 ], [ -82.015448295925481, 28.933654611884183 ], [ -82.015676430732711, 28.933654586405066 ], [ -82.015846205082738, 28.933656121846226 ], [ -82.015959388972732, 28.933656887599167 ], [ -82.015998296323758, 28.933656104453409 ], [ -82.016030127538571, 28.933649101694002 ], [ -82.016059305733364, 28.933638208539801 ], [ -82.01607698809174, 28.933621093583234 ], [ -82.016091132961137, 28.933604756811107 ], [ -82.016103509070746, 28.933585308228768 ], [ -82.016110216606776, 28.933568584328267 ], [ -82.016112347754159, 28.933553414708243 ], [ -82.01611675616715, 28.933471736704213 ], [ -82.016116745534077, 28.933407954415951 ], [ -82.016116731942262, 28.933317719561806 ], [ -82.016116719142403, 28.93322593275996 ], [ -82.016116082850019, 28.933169013393368 ], [ -82.016112287312652, 28.933152036260481 ], [ -82.016105211061159, 28.933138035274201 ], [ -82.016087523058843, 28.933117035514019 ], [ -82.016063646555338, 28.933099146674724 ], [ -82.016043306407738, 28.933086704575267 ], [ -82.016011471779294, 28.933076594421753 ], [ -82.015960186348025, 28.933075043852398 ], [ -82.015871763203222, 28.933075054861561 ], [ -82.015712599581832, 28.933074295129945 ], [ -82.015537520545678, 28.933074315665603 ], [ -82.015343871398827, 28.933073558436138 ], [ -82.015087442441953, 28.933074364190151 ], [ -82.014831013265734, 28.933073613900074 ], [ -82.014608185376559, 28.93307208183364 ], [ -82.014394199197611, 28.933072880919291 ], [ -82.014198783117322, 28.933074458265068 ], [ -82.013960579308574, 28.933081541795055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leslie Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013960579308574, 28.933081541795055 ], [ -82.013957314112176, 28.933654379995165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amelia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01347628653987, 28.933655464762719 ], [ -82.013690861608083, 28.933654407215631 ], [ -82.013806403440469, 28.93365439496575 ], [ -82.013888932441617, 28.933654386799706 ], [ -82.013957314112176, 28.933654379995165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01347628653987, 28.933655464762719 ], [ -82.013475455976646, 28.933632865074195 ], [ -82.013474585852336, 28.933572852653153 ], [ -82.013475427037392, 28.93340193003349 ], [ -82.013474532811387, 28.933141369130865 ], [ -82.013474498090019, 28.932872452888166 ], [ -82.013474333887359, 28.932707988069481 ], [ -82.013474317642846, 28.932578340975333 ], [ -82.013475458554353, 28.93249933685528 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013022170995782, 28.934224675881232 ], [ -82.013059302103755, 28.934207201303845 ], [ -82.013109383717278, 28.934182127285521 ], [ -82.013181051417703, 28.934135021704286 ], [ -82.013244948025928, 28.93408487789165 ], [ -82.013288983156002, 28.934043853617496 ], [ -82.01332783850377, 28.934002828919091 ], [ -82.013361511552191, 28.933958006044126 ], [ -82.01338263247824, 28.933924012794712 ], [ -82.013403814505139, 28.933886594426522 ], [ -82.013434892335752, 28.933815944505906 ], [ -82.013462148051119, 28.933734289659821 ], [ -82.013471576643965, 28.933696950908427 ], [ -82.01347628653987, 28.933655464762719 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Margaux Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974226714881112, 28.872437329537917 ], [ -81.974264564542793, 28.872457025960113 ], [ -81.974290373624925, 28.872463846006958 ], [ -81.974329904633578, 28.872466368303687 ], [ -81.974513950369044, 28.872467415820871 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Margaux Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973277146596516, 28.871730544853207 ], [ -81.973540268122221, 28.871959336227622 ], [ -81.973881755817033, 28.872248695012228 ], [ -81.973994439139389, 28.872344892472444 ], [ -81.974064974850464, 28.872400947261966 ], [ -81.97409766294362, 28.87242140156858 ], [ -81.974124012330407, 28.872431904049087 ], [ -81.974155302421096, 28.872443373843637 ], [ -81.974184554887231, 28.872445651480696 ], [ -81.974205203683795, 28.872444140491023 ], [ -81.974226714881112, 28.872437329537917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Banning Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974226714881112, 28.872437329537917 ], [ -81.974249086237009, 28.872425973847946 ], [ -81.974270600261974, 28.872407802897239 ], [ -81.974286092166707, 28.872384330661351 ], [ -81.974362710992409, 28.8722010777335 ], [ -81.974449648613785, 28.872032214844872 ], [ -81.974496987715867, 28.871951192563294 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greyford Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973790959506076, 28.871353076799835 ], [ -81.974179274105566, 28.871690312072158 ], [ -81.974363384144681, 28.871843672128048 ], [ -81.974496987715867, 28.871951192563294 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Banning Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974496987715867, 28.871951192563294 ], [ -81.974552070713429, 28.87186411277186 ], [ -81.974624491932346, 28.87177276383775 ], [ -81.974664813321596, 28.871724033582225 ], [ -81.974748205998011, 28.871627751057314 ], [ -81.97487103426154, 28.871481870880807 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Errol Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974198264096785, 28.870922843084596 ], [ -81.974332526367704, 28.870763078240074 ], [ -81.974404815458115, 28.870677263207277 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nash Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974114765685229, 28.869986546887905 ], [ -81.974025523560698, 28.870087331305708 ], [ -81.973928592640263, 28.870206726873693 ], [ -81.973834415828819, 28.870322219544683 ], [ -81.973719576582198, 28.870461282567355 ], [ -81.97359979395199, 28.870609039106657 ], [ -81.973499774321411, 28.870725287417564 ], [ -81.973403460313534, 28.870820891696706 ], [ -81.97335653855805, 28.87086434540662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nash Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974403545544448, 28.869652396523584 ], [ -81.974229076423214, 28.869845699563246 ], [ -81.974157995425713, 28.86993098148459 ], [ -81.974114765685229, 28.869986546887905 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nash Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975818263414141, 28.871412039144086 ], [ -81.975749442868889, 28.871358305394715 ], [ -81.97562248472623, 28.87126223491698 ], [ -81.975464732289353, 28.87113225916243 ], [ -81.9753309535391, 28.87101592594621 ], [ -81.975186370917896, 28.87088624824155 ], [ -81.975015010520565, 28.870740064974729 ], [ -81.974875785007342, 28.87061745927938 ], [ -81.974709780775399, 28.870478349776633 ], [ -81.974599898226757, 28.870386498008482 ], [ -81.974479518459475, 28.870285006652516 ], [ -81.974353320324013, 28.870172385971191 ], [ -81.974258127468104, 28.870097646201309 ], [ -81.974166375660971, 28.870027956314619 ], [ -81.974114765685229, 28.869986546887905 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975237079929684, 28.870329324656907 ], [ -81.975280968259071, 28.87036811735377 ], [ -81.975337143316196, 28.870418978796408 ], [ -81.975467090059027, 28.870529032188209 ], [ -81.97557030974049, 28.870619928299089 ], [ -81.975663208460745, 28.870700723880589 ], [ -81.975755791879124, 28.870784694544156 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 673", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.202556367061561, 28.602410190252382 ], [ -82.202316080519083, 28.602435656831105 ], [ -82.201856550817368, 28.602513117881905 ], [ -82.201733228988445, 28.602532782121404 ], [ -82.201600806567939, 28.602546729866113 ], [ -82.201428124707704, 28.602558445091429 ], [ -82.201321648534673, 28.602559748504515 ], [ -82.201212572121079, 28.602559909704802 ], [ -82.201051333471923, 28.602553318928834 ], [ -82.200861236607238, 28.60253682584408 ], [ -82.200720551680263, 28.602516904778827 ], [ -82.200595420445609, 28.6024943086836 ], [ -82.200445591979459, 28.602459387677026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 673", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200445591979459, 28.602459387677026 ], [ -82.200373618020635, 28.602439318182892 ], [ -82.200262833916739, 28.602406940967647 ], [ -82.200151102748819, 28.602376544786036 ], [ -82.199990869555791, 28.602333234176733 ], [ -82.199799455859988, 28.602280799550503 ], [ -82.199620200846169, 28.602249739496205 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 673", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.199620200846169, 28.602249739496205 ], [ -82.199764024578101, 28.602313703899064 ], [ -82.199888759916377, 28.60235477674415 ], [ -82.199982858409513, 28.602387156209311 ], [ -82.200122229230359, 28.602436266140497 ], [ -82.200200140817486, 28.602468356126675 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 673", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200200140817486, 28.602468356126675 ], [ -82.200348027859775, 28.602517452403124 ], [ -82.200439302868645, 28.602540802383842 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 673", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200439302868645, 28.602540802383842 ], [ -82.200670912785412, 28.602588167092179 ], [ -82.200781754059761, 28.602606340163913 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 673", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200781754059761, 28.602606340163913 ], [ -82.200894318264474, 28.602619161535586 ], [ -82.200942809405561, 28.602626729201781 ], [ -82.201131326533357, 28.602640423643098 ], [ -82.20124156351504, 28.60264025989062 ], [ -82.201355601984304, 28.602640091330336 ], [ -82.201478915412508, 28.602636297790774 ], [ -82.201645089501952, 28.602616570339663 ], [ -82.201774895278888, 28.602592312689772 ], [ -82.202319280761628, 28.60247302155847 ], [ -82.202556367061561, 28.602410190252382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 772", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980265737936662, 28.576607575832842 ], [ -81.980018870024125, 28.57660542386218 ], [ -81.979783981120065, 28.576626544756326 ], [ -81.979606615731257, 28.576645559879292 ], [ -81.979462804958658, 28.576662463051605 ], [ -81.979290227467629, 28.576702634894449 ], [ -81.979067314733086, 28.576763956809135 ], [ -81.978892334520808, 28.576835863261174 ], [ -81.978743712777856, 28.576939510093517 ], [ -81.976634464178673, 28.578517901446109 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 772C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028011250409236, 28.563236807342822 ], [ -82.028007323583239, 28.562452314673202 ], [ -82.027986915059785, 28.561227142197868 ], [ -82.027989734554538, 28.560661116207658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 738C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13597287489263, 28.614115475963999 ], [ -82.137003871075009, 28.611948414777689 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 738C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135869209567048, 28.61433237798926 ], [ -82.13597287489263, 28.614115475963999 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 244", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057135468192811, 28.854591594783756 ], [ -82.057066887638896, 28.854590608380889 ], [ -82.055785928001484, 28.854572191252363 ], [ -82.054893877907645, 28.854578907702752 ], [ -82.054382886747035, 28.854562591845493 ], [ -82.053730441833622, 28.854555225582484 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 316", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170072416078867, 28.671571638810587 ], [ -82.171160253214737, 28.67160358643585 ], [ -82.173427519665637, 28.671642566177518 ], [ -82.17361332820424, 28.671644692464728 ], [ -82.173646844087884, 28.671646103357808 ], [ -82.173697997782014, 28.671645102359136 ], [ -82.173790074584531, 28.67164724153298 ], [ -82.17379893179573, 28.671647240147212 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 316", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.17379893179573, 28.671647240147212 ], [ -82.174201008581278, 28.671647250304662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 481A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128013626119113, 28.76885412031735 ], [ -82.128871837767676, 28.768853572506032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 405A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148493916460765, 28.809080338456344 ], [ -82.148513618685669, 28.809114934832145 ], [ -82.148504372525821, 28.809526026389729 ], [ -82.148498922658234, 28.810000713818415 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 405A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148498922658234, 28.810000713818415 ], [ -82.14849015998989, 28.810274724430769 ], [ -82.148483464050997, 28.810376336095363 ], [ -82.148478649438914, 28.810445576320529 ], [ -82.148486116273673, 28.810514802204182 ], [ -82.148512939651795, 28.81056660770826 ], [ -82.148534326725368, 28.810593447797832 ], [ -82.14856181055211, 28.810616699048555 ], [ -82.148617782353583, 28.810656037014112 ], [ -82.148678814638956, 28.810678355502027 ], [ -82.148794922912671, 28.81070269700832 ], [ -82.148846555556304, 28.81073509277093 ], [ -82.148888356305477, 28.810763173639888 ], [ -82.148927713650991, 28.810799911208008 ], [ -82.148952356318318, 28.810853973880999 ], [ -82.148959854146142, 28.810944836128357 ], [ -82.148946616614026, 28.812005006748123 ], [ -82.148946674845334, 28.812046114901143 ], [ -82.148963904691243, 28.812069894340702 ], [ -82.149005718269095, 28.812106629180249 ], [ -82.149086137655928, 28.812146750361368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 714A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054764689964415, 28.635598164210965 ], [ -82.053628018029272, 28.635613717630974 ], [ -82.0529741587914, 28.635623946910144 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 503C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013607582098857, 28.796946314536065 ], [ -82.013512100888917, 28.796917486544995 ], [ -82.012812109115501, 28.796914187701702 ], [ -82.012720449288068, 28.796914195823419 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 436E", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131429759848857, 28.786421234634595 ], [ -82.1314329170241, 28.786456880095908 ], [ -82.131437644745574, 28.786503492534063 ], [ -82.131091631380116, 28.786517203477668 ], [ -82.131043712861967, 28.78653024296996 ], [ -82.130997647081699, 28.786549778203174 ], [ -82.130964481717086, 28.786566050865485 ], [ -82.130938701012326, 28.786590437207131 ], [ -82.130925836923154, 28.786622932805798 ], [ -82.130929576716241, 28.786665156468722 ], [ -82.130946241202125, 28.786723609282458 ], [ -82.131101470386952, 28.78701580757815 ], [ -82.131410400494403, 28.787588215153821 ], [ -82.131570009406403, 28.787887359131147 ], [ -82.131849965115336, 28.788417244277856 ], [ -82.132163258052799, 28.789014466517067 ], [ -82.132179966527545, 28.789081817701589 ], [ -82.132173380498671, 28.789131618134906 ], [ -82.132146831650928, 28.789172650375559 ], [ -82.132110285347963, 28.78919611802095 ], [ -82.13205044818163, 28.789204963784616 ], [ -82.131003084744549, 28.789203048559525 ], [ -82.130806928736391, 28.78921495220624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 481 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126285721227802, 28.766789013277133 ], [ -82.126283749384001, 28.766991978926896 ], [ -82.126282276628913, 28.767492690585676 ], [ -82.12628217402569, 28.767526713332042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 552", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.094565538246385, 28.661121267868527 ], [ -82.094500960909372, 28.661073572761016 ], [ -82.09446752772692, 28.661036280763341 ], [ -82.094409573161414, 28.660967581022145 ], [ -82.094116782600153, 28.660533620539024 ], [ -82.094067993508801, 28.66045773446529 ], [ -82.094050082512837, 28.660406177511629 ], [ -82.094039732344982, 28.660333607218803 ], [ -82.094040731559019, 28.660235800766426 ], [ -82.094038220475682, 28.659567537654777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 552", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.094038220475682, 28.659567537654777 ], [ -82.094042541333948, 28.658431572011452 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 626 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.247733124427413, 28.704815314209263 ], [ -82.247736329646258, 28.704317861468304 ], [ -82.24774992910379, 28.703363150340472 ], [ -82.247754416197225, 28.7030255094643 ], [ -82.247751220089981, 28.70279033522856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 552 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100244120334764, 28.661186840701419 ], [ -82.099918564077427, 28.661186575685456 ], [ -82.099528898081005, 28.661188825388965 ], [ -82.09891522136553, 28.661197198045123 ], [ -82.097275512381273, 28.661200267363768 ], [ -82.096645362622596, 28.661199731817963 ], [ -82.096036809646932, 28.661202175718579 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 552 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096036809646932, 28.661202175718579 ], [ -82.095661157448419, 28.661184711916579 ], [ -82.094726198301032, 28.661176845952312 ], [ -82.094661227520774, 28.661167342467206 ], [ -82.094609240620912, 28.661148278762827 ], [ -82.094581076291348, 28.661133019037578 ], [ -82.094565538246385, 28.661121267868527 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037265808053405, 28.927478614618234 ], [ -82.037237636789214, 28.927666552266892 ], [ -82.037214956577998, 28.927842633157688 ], [ -82.037176366341342, 28.928052733078779 ], [ -82.037128370601081, 28.92835242077398 ], [ -82.037100468195831, 28.928620875467221 ], [ -82.037054900722922, 28.929779121024779 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037220679037503, 28.929372996482812 ], [ -82.037220722752238, 28.929371896573787 ], [ -82.037240337860268, 28.928871068085748 ], [ -82.037253897435136, 28.928622957715479 ], [ -82.037292428699431, 28.928248786337178 ], [ -82.037353699465683, 28.92785860200236 ], [ -82.037394558131012, 28.927634495984243 ], [ -82.037428137242443, 28.927478361811836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037312505404941, 28.927175521028271 ], [ -82.037307987353998, 28.927224340926575 ], [ -82.037292998615229, 28.927322302661359 ], [ -82.037277362841394, 28.92740621583884 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037253679836269, 28.925183543078408 ], [ -82.037280826966665, 28.925393572838633 ], [ -82.037320082190888, 28.925927298539236 ], [ -82.037340866003305, 28.926216401722822 ], [ -82.037345530395285, 28.926404420679646 ], [ -82.037350977999665, 28.926600062004713 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036993909699419, 28.918569960148268 ], [ -82.037000278426774, 28.918824809230429 ], [ -82.037022421271587, 28.919615143211445 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 110th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036965456858496, 28.917292562852197 ], [ -82.035850989356874, 28.917276686753457 ], [ -82.035294557152071, 28.917303951735811 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 214", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049501408061246, 28.916502088938199 ], [ -82.047371853209739, 28.916494998696464 ], [ -82.045425361436457, 28.91649566119149 ], [ -82.043617254730663, 28.916492258722194 ], [ -82.041795534563249, 28.91648684207177 ], [ -82.041475656040333, 28.91648095018806 ], [ -82.04123696366625, 28.916461381306423 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037117840757901, 28.933547800388851 ], [ -82.0371256197664, 28.932324428214105 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bluebeard Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986230264251844, 28.860586695131829 ], [ -81.987142985218711, 28.86041876727467 ], [ -81.987202325944267, 28.860411727793739 ], [ -81.987327248371841, 28.86039816546533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canary Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987345813743516, 28.862890473154501 ], [ -81.987346659474284, 28.862461842702519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hackberry Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985202304231208, 28.85875479420698 ], [ -81.985341114951225, 28.858756987686974 ], [ -81.985422726441755, 28.858755145096403 ], [ -81.985503844787701, 28.858747057552755 ], [ -81.985583857041178, 28.858732788151926 ], [ -81.985662154349441, 28.8587124396932 ], [ -81.986171383205971, 28.858558589152047 ], [ -81.986267516287199, 28.858532558572119 ], [ -81.986365350009578, 28.858512028546489 ], [ -81.986464483618889, 28.858497082945167 ], [ -81.986564504065214, 28.858487784885003 ], [ -81.986664995227812, 28.858484172219267 ], [ -81.98682369018762, 28.858482968080867 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Regency Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985498324737506, 28.862924245941489 ], [ -81.98541614095582, 28.862697955368255 ], [ -81.985285748171606, 28.862399165611851 ], [ -81.985237656378487, 28.862279692528425 ], [ -81.98519586557876, 28.862158396568148 ], [ -81.985160470014705, 28.862035532197087 ], [ -81.985131544450866, 28.861911365608169 ], [ -81.985109146226606, 28.861786156675549 ], [ -81.985093327554722, 28.861660170685635 ], [ -81.985084117071864, 28.861533678335146 ], [ -81.985081538289933, 28.861406945807811 ], [ -81.985081956715604, 28.861335250563542 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Euclid Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984580773575018, 28.863021064987585 ], [ -81.984390598917628, 28.861977150139456 ], [ -81.984362322437704, 28.861810435307028 ], [ -81.984352030780968, 28.861728549995991 ], [ -81.984347329474147, 28.86164626832473 ], [ -81.984348232808529, 28.861563886251247 ], [ -81.984354737650378, 28.861481701535414 ], [ -81.984373433976714, 28.861316878004001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Albara Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985936170634631, 28.861971004014269 ], [ -81.986076998938898, 28.861926532485551 ], [ -81.986168741029758, 28.861900344531328 ], [ -81.986262144926172, 28.861879190640792 ], [ -81.986356852908969, 28.861863151981375 ], [ -81.986690688457472, 28.861815970851346 ], [ -81.986812873032648, 28.861800875714987 ], [ -81.986935640243303, 28.861790037596183 ], [ -81.987058797404075, 28.861783476325364 ], [ -81.988196265352741, 28.861742692260389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quail Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982829876675012, 28.856714233329718 ], [ -81.982705246100849, 28.856296618831998 ], [ -81.982698350184435, 28.856261179914053 ], [ -81.982698547920137, 28.856225225795303 ], [ -81.982705836041546, 28.8561898482643 ], [ -81.982719991949836, 28.856156122838584 ], [ -81.982740583970198, 28.856125073576401 ], [ -81.982766988781691, 28.856097641498554 ], [ -81.982798402695366, 28.856074665641856 ], [ -81.98283386933484, 28.856056839752547 ], [ -81.982872316534326, 28.856044707780015 ], [ -81.98386939462398, 28.855814080878247 ], [ -81.983909649660347, 28.855808008707978 ], [ -81.983950488945666, 28.855808184155592 ], [ -81.983990676424199, 28.855814599854035 ], [ -81.984028985293236, 28.855827062563971 ], [ -81.984064254373621, 28.855845189571149 ], [ -81.984095412703198, 28.855868434855889 ], [ -81.984121512333957, 28.855896089998947 ], [ -81.984141759074916, 28.855927313960656 ], [ -81.984155542211141, 28.855961160153271 ], [ -81.984280179191558, 28.856378772432915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thunderbird Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980654616288561, 28.857570144243475 ], [ -81.980456505365794, 28.85715615156554 ], [ -81.980444060836803, 28.857122196920511 ], [ -81.980438447812446, 28.857086862746584 ], [ -81.980439835199519, 28.857051208375115 ], [ -81.980448181791417, 28.857016294008051 ], [ -81.980463237296078, 28.856983169890277 ], [ -81.980484551571379, 28.856952824880114 ], [ -81.980511486928663, 28.856926167502639 ], [ -81.980543235563175, 28.856903994372278 ], [ -81.980820224829685, 28.856742823165092 ], [ -81.980983917098712, 28.856651845475866 ], [ -81.981151785602592, 28.856566969560493 ], [ -81.981323538226505, 28.85648834604779 ], [ -81.981498874661696, 28.856416112934237 ], [ -81.981677486405275, 28.856350395584222 ], [ -81.981713869193783, 28.856340705296905 ], [ -81.981751553721935, 28.856336323437148 ], [ -81.981789547839185, 28.85633736265687 ], [ -81.981826849170631, 28.856343796652791 ], [ -81.981862479964917, 28.856355454757281 ], [ -81.98189549939066, 28.856372033669807 ], [ -81.981925039409049, 28.856393094754786 ], [ -81.98195032219391, 28.856418083894244 ], [ -81.98197068062828, 28.856446341415776 ], [ -81.981985583923745, 28.856477126457722 ], [ -81.982138658261647, 28.856881551006328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yardley Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983577688540748, 28.850782763796637 ], [ -81.984100397537119, 28.850915408188193 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jaffia Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981246285358651, 28.855279298018797 ], [ -81.981497997543443, 28.855426112832383 ], [ -81.981597935681876, 28.855461804660656 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Niblick Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982213665032489, 28.8542788973905 ], [ -81.9824527860969, 28.854186400289841 ], [ -81.982524843967312, 28.854148343274286 ], [ -81.982604794915275, 28.854090522251425 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Empire Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985733151558364, 28.852250077244193 ], [ -81.985725807445021, 28.852028491886429 ], [ -81.985731780855019, 28.851930858557427 ], [ -81.98574561917232, 28.851833846853118 ], [ -81.985767252614707, 28.851737944910898 ], [ -81.985796570405867, 28.851643639058 ], [ -81.985833425901262, 28.851551405691218 ], [ -81.986233260366078, 28.85065405225518 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 740", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062228323636461, 28.610010626636399 ], [ -82.061409410478646, 28.609979089894207 ], [ -82.061320913488089, 28.609977446525093 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 740", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060367682655055, 28.609959345041048 ], [ -82.059705606774671, 28.609944956564778 ], [ -82.059207513583161, 28.609938194052418 ], [ -82.05885964223836, 28.609941831776165 ], [ -82.058650127636284, 28.609941921249774 ], [ -82.058456427501213, 28.609942003681773 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 740", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061320913488089, 28.609977446525093 ], [ -82.060492283773442, 28.609962054160466 ], [ -82.060367682655055, 28.609959345041048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 5th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061323886594792, 28.606836799480789 ], [ -82.06190478043635, 28.606830808403359 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 6th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061320913488089, 28.609977446525093 ], [ -82.061323886594792, 28.606836799480789 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dynasty Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986430334495083, 28.849191041355798 ], [ -81.986583541255342, 28.849309000861023 ], [ -81.986741725790282, 28.849421752575793 ], [ -81.98690465546791, 28.849529137654198 ], [ -81.987072100727062, 28.84963100086042 ], [ -81.987243816629416, 28.849727192371667 ], [ -81.987468723039171, 28.849844666849325 ], [ -81.987696821993296, 28.849957273305186 ], [ -81.988032140362776, 28.850106167153815 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Olympia Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986870483688534, 28.848708400459326 ], [ -81.987072944070633, 28.848858142569171 ], [ -81.987202366433479, 28.84894879799953 ], [ -81.987335367327262, 28.849035348152626 ], [ -81.98747177560665, 28.849117682920724 ], [ -81.987611422173245, 28.849195698512698 ], [ -81.987848929889012, 28.849319309215872 ], [ -81.988090220605457, 28.849437105378101 ], [ -81.988299808056581, 28.849533041771132 ], [ -81.988356709723675, 28.84956871129847 ], [ -81.988397474880472, 28.849604380299098 ], [ -81.988431445296953, 28.849657035506777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Newcastle Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988032140362776, 28.850106167153815 ], [ -81.988091086061374, 28.850035289098983 ], [ -81.988405117021458, 28.849687609654772 ], [ -81.988431445296953, 28.849657035506777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zombar Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982821682703559, 28.852110552195164 ], [ -81.983133866687226, 28.852150095777642 ], [ -81.983756677987927, 28.852213348733475 ], [ -81.98382280464503, 28.852216548208901 ], [ -81.983888900616321, 28.852212880201293 ], [ -81.983979845065576, 28.852203072246926 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tangelo Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981816386829706, 28.852383395567418 ], [ -81.982292757882632, 28.852646077276784 ], [ -81.982389187030194, 28.852696228413684 ], [ -81.982488975784534, 28.852740990451164 ], [ -81.982591740851873, 28.852780189187062 ], [ -81.982697082533861, 28.852813673877922 ], [ -81.982804587802931, 28.852841314532686 ], [ -81.98291384055166, 28.85286300191413 ], [ -81.98302441749253, 28.852878652952214 ], [ -81.983135887133969, 28.852888207134814 ], [ -81.983501991397617, 28.85290946872788 ], [ -81.983599058218275, 28.85291244113829 ], [ -81.983696147414847, 28.852910096196002 ], [ -81.983792882832532, 28.852902443780657 ], [ -81.983888890363261, 28.852889514526325 ], [ -81.983983798971977, 28.852871353505286 ], [ -81.984077243768851, 28.852848036469965 ], [ -81.984140972754162, 28.852830231638773 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alesio Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987193890382088, 28.854158043663414 ], [ -81.987188954394497, 28.854182499269903 ], [ -81.987183276761073, 28.854228214018018 ], [ -81.987184580802918, 28.854274187496234 ], [ -81.987192844084689, 28.854319597702162 ], [ -81.987207916055738, 28.854363627131576 ], [ -81.987229529319421, 28.854405494360318 ], [ -81.987285213850285, 28.854496628898072 ], [ -81.987333201682802, 28.854568672609954 ], [ -81.987387088391756, 28.854637407207065 ], [ -81.987446578852897, 28.854702463611819 ], [ -81.987511351290038, 28.854763483571659 ], [ -81.987581052148101, 28.854820137704685 ], [ -81.987655306343171, 28.85487211828265 ], [ -81.987733704963134, 28.854919142838899 ], [ -81.987815827815709, 28.854960955975574 ], [ -81.987901222930034, 28.854997331166345 ], [ -81.987989432180285, 28.855028067149725 ], [ -81.988079971810961, 28.855053000559707 ], [ -81.989001890174137, 28.855274400923243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ladd Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98438695914966, 28.854016087394392 ], [ -81.984332697312539, 28.853781838990322 ], [ -81.984303790574813, 28.853636359625082 ], [ -81.984287902509109, 28.853589358479745 ], [ -81.984266808708696, 28.853543969138823 ], [ -81.984240719215848, 28.853500640972729 ], [ -81.984209888146353, 28.853459798092114 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hatfield Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979236872690834, 28.853978440433345 ], [ -81.979298495125803, 28.853954639042577 ], [ -81.97935015725443, 28.853931827721237 ], [ -81.9793988880038, 28.853904468310713 ], [ -81.979444171782447, 28.853872849472626 ], [ -81.979485528863393, 28.853837306794421 ], [ -81.980094928513168, 28.853256793319797 ], [ -81.98017255554285, 28.853194165000932 ], [ -81.980292718866792, 28.853132299038077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vanceboro Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976095417881481, 28.851297486870763 ], [ -81.976245354266879, 28.851213600915248 ], [ -81.976299720009877, 28.85117900892574 ], [ -81.976349020970147, 28.851138966094815 ], [ -81.976392554971667, 28.851094038049816 ], [ -81.976429701815491, 28.851044865324219 ], [ -81.976459934556999, 28.850992148019678 ], [ -81.976482821557383, 28.850936636783391 ], [ -81.976649358903188, 28.850415096249876 ], [ -81.976669217091072, 28.850310135390988 ], [ -81.9766876566798, 28.850219357624042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bracci Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977418653581395, 28.853494799365901 ], [ -81.977400165332341, 28.853489977938402 ], [ -81.977381411304393, 28.853481992078944 ], [ -81.977368546084719, 28.853470726429769 ], [ -81.977358136064026, 28.853456973538673 ], [ -81.977347074836203, 28.85344035571741 ], [ -81.977337966955574, 28.853424311189439 ], [ -81.977159071742918, 28.853068469350841 ], [ -81.977152568317862, 28.853047267676239 ], [ -81.977148016569771, 28.853029505922041 ], [ -81.977148020510143, 28.853011744042362 ], [ -81.977148675516986, 28.852992836345933 ], [ -81.977149981089681, 28.852979658399224 ], [ -81.977155585543656, 28.852964465435363 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ohara Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978861920934435, 28.852504120469451 ], [ -81.978434409402553, 28.852164475081672 ], [ -81.97841054982112, 28.852150147139046 ], [ -81.978387773780923, 28.852139637923692 ], [ -81.978364996941949, 28.852132949967906 ], [ -81.978344389000128, 28.852130081817936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tipton Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977155585543656, 28.852964465435363 ], [ -81.977170813673965, 28.852945283214751 ], [ -81.97719294381811, 28.852933828607998 ], [ -81.977224837920105, 28.852918936971943 ], [ -81.977347143872507, 28.852870188102063 ], [ -81.977444123195184, 28.852831814980188 ], [ -81.977541754757183, 28.85278656723311 ], [ -81.977636784236253, 28.852735590243928 ], [ -81.97772270252625, 28.852683463940149 ], [ -81.977804718500892, 28.852623890208367 ], [ -81.977888037724782, 28.852556293341717 ], [ -81.977960904573195, 28.85249044968764 ], [ -81.978028427611974, 28.85241939159646 ], [ -81.978246061943864, 28.852182778569578 ], [ -81.978274703146866, 28.852155854814185 ], [ -81.97830198715117, 28.85213972511286 ], [ -81.978318962856463, 28.852132942524641 ], [ -81.978344389000128, 28.852130081817936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lafayette Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979752728057079, 28.856354427598372 ], [ -81.979665927459479, 28.856260934751454 ], [ -81.979606440150505, 28.856189550676945 ], [ -81.979544573899886, 28.856108649601993 ], [ -81.97948984788836, 28.856025369311418 ], [ -81.979443447233194, 28.855943277709539 ], [ -81.978354968901613, 28.853796911280966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 17th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133236048974055, 28.649916475755784 ], [ -82.1332614474954, 28.648833504048483 ], [ -82.133263745293561, 28.648696132164051 ], [ -82.13327100983841, 28.648576199358605 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillstream Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986255375337151, 28.862597026121286 ], [ -81.986338166625373, 28.862563680958072 ], [ -81.986419213836939, 28.862534144191827 ], [ -81.986502416917403, 28.862509683957828 ], [ -81.986587362788768, 28.8624904211194 ], [ -81.986673634277267, 28.86247645398273 ], [ -81.986760808064858, 28.862467844762225 ], [ -81.986848449560853, 28.862464643040024 ], [ -81.987346659474284, 28.862461842702519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillstream Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987346659474284, 28.862461842702519 ], [ -81.988220080908604, 28.862456926766622 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dafoe Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988267868813452, 28.86277001156034 ], [ -81.988234094737265, 28.86262365395423 ], [ -81.988220080908604, 28.862456926766622 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dafoe Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988220080908604, 28.862456926766622 ], [ -81.988219315198705, 28.862351478927341 ], [ -81.98821414084648, 28.862097553840407 ], [ -81.988202309202876, 28.861843802298612 ], [ -81.988196265352741, 28.861742692260389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dafoe Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988196265352741, 28.861742692260389 ], [ -81.988159665942447, 28.861130340228307 ], [ -81.988158385572703, 28.861105467194193 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dafoe Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987602015522114, 28.859547375970941 ], [ -81.987582723150112, 28.859492597974342 ], [ -81.987568684915288, 28.859436595135392 ], [ -81.987559996083476, 28.859379758162419 ], [ -81.987556718095703, 28.859322480467004 ], [ -81.987547611647571, 28.858392125978746 ], [ -81.98755062403599, 28.85833322561648 ], [ -81.987560781291592, 28.858274947608805 ], [ -81.987577966476138, 28.858217961453313 ], [ -81.987601982708256, 28.858162920397579 ], [ -81.987632552139331, 28.858110459634748 ], [ -81.987669324155348, 28.858061181867523 ], [ -81.987711875378139, 28.858015650992254 ], [ -81.987759719915346, 28.857974390295645 ], [ -81.988216568964361, 28.857620601719365 ], [ -81.988271732788377, 28.857574800186114 ], [ -81.988323155887784, 28.857525743688619 ], [ -81.988370593274212, 28.857473666808861 ], [ -81.988413817382991, 28.857418821274265 ], [ -81.988564478811711, 28.857212746080293 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dafoe Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988158385572703, 28.861105467194193 ], [ -81.988147480671316, 28.860975136487408 ], [ -81.988129554627008, 28.860845405183799 ], [ -81.988104646379654, 28.860716571946831 ], [ -81.988072818443783, 28.860588926418007 ], [ -81.987933975271091, 28.860089145548162 ], [ -81.987913509801174, 28.86002793948003 ], [ -81.987886688288484, 28.859968667371032 ], [ -81.987853741299219, 28.859911839040453 ], [ -81.987814950648527, 28.859857944460959 ], [ -81.987698068754355, 28.859711090882538 ], [ -81.987660532582808, 28.859659121890761 ], [ -81.987628429103253, 28.859604403168674 ], [ -81.987602015522114, 28.859547375970941 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979954676528934, 28.915525274223175 ], [ -81.979921206422986, 28.915417463654592 ], [ -81.979901735481477, 28.915347093290517 ], [ -81.979892936610128, 28.915252881331899 ], [ -81.979889180868682, 28.915134288260933 ], [ -81.979894234694484, 28.915050053278524 ], [ -81.979905592988146, 28.914941436470659 ], [ -81.979928288550553, 28.91484168914003 ], [ -81.979948245296882, 28.914782072859641 ], [ -81.979970682759486, 28.914732744939091 ], [ -81.980013302146276, 28.914683419134281 ], [ -81.980022779050572, 28.91467708462223 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980022779050572, 28.91467708462223 ], [ -81.980069378941792, 28.914645935267171 ], [ -81.980124045285848, 28.914626080247096 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980022779050572, 28.91467708462223 ], [ -81.979984725581545, 28.91463529264383 ], [ -81.979957879022663, 28.914608383020475 ], [ -81.979936252547333, 28.914590662267329 ], [ -81.979916864240892, 28.914575566629544 ], [ -81.97990344142309, 28.914565062774397 ], [ -81.979893748880485, 28.914551938306481 ], [ -81.979887039788963, 28.914537500542632 ], [ -81.979884805873979, 28.914518468053426 ], [ -81.979884810375879, 28.914500751450493 ], [ -81.979890035334122, 28.914479752174543 ], [ -81.979901225127051, 28.91446138038307 ], [ -81.979911668861178, 28.914445632358365 ], [ -81.979928080376425, 28.914433165982238 ], [ -81.979946727353777, 28.914426606376672 ], [ -81.979968357003202, 28.914422672900589 ], [ -81.979992223529607, 28.914422676478498 ], [ -81.980016090441865, 28.914425960804547 ], [ -81.980036225809116, 28.914433183095444 ], [ -81.980056361055546, 28.914446310917945 ], [ -81.980072020246027, 28.914463373889497 ], [ -81.980083203507121, 28.914483718748539 ], [ -81.980090656517447, 28.914517187864195 ], [ -81.980124045285848, 28.914626080247096 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ternberry Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981494407486025, 28.917441041176399 ], [ -81.981546569673995, 28.9173300514665 ], [ -81.981588639921654, 28.91723385981356 ], [ -81.981622299231063, 28.917134707454441 ], [ -81.981645865683916, 28.917044433199962 ], [ -81.981661019958139, 28.916952678017395 ], [ -81.981672814154948, 28.916846121995999 ], [ -81.981674511924084, 28.916757325395995 ], [ -81.98165955086165, 28.916629615857616 ], [ -81.98163864240621, 28.916515677253606 ], [ -81.981621382876298, 28.916458429556197 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ternberry Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981583641556412, 28.916333247806847 ], [ -81.981582431138236, 28.916329232418718 ], [ -81.981556285631257, 28.91624866903561 ], [ -81.981528837404582, 28.91614163658684 ], [ -81.981514841501777, 28.916054323889313 ], [ -81.98150140417431, 28.915946284604146 ], [ -81.981496374683474, 28.915857486159531 ], [ -81.981496397162346, 28.915733169494931 ], [ -81.981504654768642, 28.915601815151074 ], [ -81.981521670950286, 28.915494900731002 ], [ -81.981536824489027, 28.915417944114079 ], [ -81.981573854361557, 28.915283273284665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Owl Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983601328706882, 28.856535795653055 ], [ -81.983663507685492, 28.856733380967992 ], [ -81.983847460568455, 28.857160918070196 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Birdsong Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983847460568455, 28.857160918070196 ], [ -81.984040844942015, 28.857099513301538 ], [ -81.984097137190588, 28.857083666518893 ], [ -81.984623453638761, 28.856961924212932 ], [ -81.984783200593, 28.85692204980997 ], [ -81.984941079759437, 28.856876765689265 ], [ -81.985096850245199, 28.856826142210117 ], [ -81.98525028038263, 28.856770254245443 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Owl Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983847460568455, 28.857160918070196 ], [ -81.984032195677344, 28.857590267718901 ], [ -81.984049004058917, 28.857621262090429 ], [ -81.984071422433843, 28.8576493724605 ], [ -81.984098827758672, 28.857673816453982 ], [ -81.984130461678063, 28.857693918151533 ], [ -81.984165444871849, 28.857709120723982 ], [ -81.984202809851354, 28.857719002677989 ], [ -81.984241519406808, 28.857723290490927 ], [ -81.984280498381025, 28.857721862223976 ], [ -81.98431867056641, 28.857714759256556 ], [ -81.985248481022452, 28.857469036795397 ], [ -81.985282911650273, 28.857457261007031 ], [ -81.985314813371517, 28.857440866033524 ], [ -81.985343391792028, 28.857420263240353 ], [ -81.985367938600817, 28.857395961451864 ], [ -81.985387839769842, 28.857368566049516 ], [ -81.985402602205681, 28.857338757319212 ], [ -81.985411860925879, 28.857307276014922 ], [ -81.985415385210729, 28.857274905313183 ], [ -81.985413082705634, 28.857242449157859 ], [ -81.985405018896785, 28.857210715118647 ], [ -81.98525028038263, 28.856770254245443 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mockingbird Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97901258657707, 28.857342052270774 ], [ -81.979165497534424, 28.857596960098562 ], [ -81.979186576510912, 28.857627677829907 ], [ -81.979213385697292, 28.857654713239825 ], [ -81.979245111451917, 28.85767725051527 ], [ -81.979280794561433, 28.857694603752829 ], [ -81.97931935483318, 28.857706250348091 ], [ -81.979359623892833, 28.857711836415064 ], [ -81.979530610359561, 28.857718908766596 ], [ -81.979701786763698, 28.857719278610762 ], [ -81.979872809715005, 28.857712945895116 ], [ -81.980043344020331, 28.857699924104875 ], [ -81.980213053459863, 28.857680237554309 ], [ -81.980326117896254, 28.85766171998219 ], [ -81.980437676777186, 28.857637133193521 ], [ -81.980547312913757, 28.857606569166396 ], [ -81.980654616288561, 28.857570144243475 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mockingbird Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980654616288561, 28.857570144243475 ], [ -81.980759869801744, 28.857527694251424 ], [ -81.980861943876491, 28.857479603415175 ], [ -81.980960452062092, 28.857426057561625 ], [ -81.981219864472706, 28.857275112473381 ], [ -81.98136435501381, 28.857194978238788 ], [ -81.981512686824232, 28.857120479272737 ], [ -81.981664577009767, 28.857051762599635 ], [ -81.981819734482642, 28.856988957197686 ], [ -81.98197786200943, 28.85693218392456 ], [ -81.982138658261647, 28.856881551006328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mockingbird Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982138658261647, 28.856881551006328 ], [ -81.982259172315281, 28.856848095148713 ], [ -81.98238085310382, 28.856818089750661 ], [ -81.982829876675154, 28.856714232427418 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mockingbird Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982829876675154, 28.856714232427418 ], [ -81.983601328706882, 28.856535795653055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mockingbird Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984280179191558, 28.856378772432915 ], [ -81.984438479734365, 28.856342154682675 ], [ -81.984584463552636, 28.856305445094769 ], [ -81.984728539656345, 28.856263296036303 ], [ -81.984870447680507, 28.856215787788887 ], [ -81.985009928286672, 28.856163000635334 ], [ -81.985146730334449, 28.856105035613215 ], [ -81.985280604734996, 28.856041994663535 ], [ -81.985313074418912, 28.856028680218518 ], [ -81.985347473391386, 28.856019876599987 ], [ -81.985382991931147, 28.856015792150245 ], [ -81.985418802909919, 28.856016523324705 ], [ -81.985454068966831, 28.856022051083489 ], [ -81.985487966080441, 28.85603224630778 ], [ -81.985623163231068, 28.856086472323735 ], [ -81.98575555354121, 28.856145824800979 ], [ -81.985884885932663, 28.856210190932917 ], [ -81.986010916500931, 28.856279448891527 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mockingbird Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983601328706882, 28.856535795653055 ], [ -81.984280179191558, 28.856378772432915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Birdsong Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98525028038263, 28.856770254245443 ], [ -81.985402259854354, 28.856708709397733 ], [ -81.985551397729481, 28.856641997472714 ], [ -81.985697471565771, 28.856570221318609 ], [ -81.985759078226735, 28.856535027188482 ], [ -81.985816657536361, 28.8564948978965 ], [ -81.985869700050245, 28.856450180781152 ], [ -81.985917738341669, 28.856401276421707 ], [ -81.985960345979748, 28.856348616982704 ], [ -81.986010916500931, 28.856279448891527 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Birdsong Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986010916500931, 28.856279448891527 ], [ -81.98627642832534, 28.855916290601112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eastfield Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986674690037702, 28.857758297937945 ], [ -81.986644836310276, 28.857704181028883 ], [ -81.986438460323441, 28.857356245016952 ], [ -81.986423300516677, 28.857324465202019 ], [ -81.986414363387425, 28.857290906674187 ], [ -81.986411899916135, 28.857256506052579 ], [ -81.986415976589285, 28.85722222610357 ], [ -81.986426482579418, 28.857189021453767 ], [ -81.986443121548831, 28.857157820543222 ], [ -81.986465428053691, 28.857129494046585 ], [ -81.986953343543831, 28.856608921797068 ], [ -81.98700420621995, 28.856551269481901 ], [ -81.987051120086633, 28.856491081286713 ], [ -81.987121335212791, 28.856395040437178 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nutwood Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014291014453207, 28.859149811775058 ], [ -82.014301300781426, 28.858647007910395 ], [ -82.014310141285449, 28.858587429657771 ], [ -82.014320207064443, 28.858554488210473 ], [ -82.014341252560328, 28.858532527597969 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nutwood Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014310987905759, 28.859829199815387 ], [ -82.014298680268539, 28.859791658884198 ], [ -82.014287983556557, 28.859751652693699 ], [ -82.014281862192647, 28.859710908857867 ], [ -82.014280375672925, 28.859669830701332 ], [ -82.014291014453207, 28.859149811775058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amherst Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983563686864727, 28.86127564657226 ], [ -81.98352626325061, 28.860973176937982 ], [ -81.983520379964475, 28.86091532677694 ], [ -81.983517022256308, 28.86085731992581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amherst Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983517022256308, 28.86085731992581 ], [ -81.98351657924816, 28.860775979843975 ], [ -81.983521104286538, 28.860694736920564 ], [ -81.98353058194779, 28.860613823947649 ], [ -81.983544988607747, 28.860533479129685 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enisgrove Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971378155177376, 28.852120921089181 ], [ -81.971533906687, 28.85214845739614 ], [ -81.971649747271684, 28.852163378084306 ], [ -81.971743462552666, 28.852166836540768 ], [ -81.971892764613003, 28.852171613127755 ], [ -81.972058071486344, 28.852164772994925 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Falls Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003297958486428, 28.863870442404661 ], [ -82.003325830701115, 28.86333075942375 ], [ -82.003328578964215, 28.863229410779571 ], [ -82.003325666162937, 28.863128063147816 ], [ -82.003317100520604, 28.863026965563837 ], [ -82.003302902560193, 28.862926359843609 ], [ -82.003298420549768, 28.862899926933942 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Java Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002349637435572, 28.863853758636449 ], [ -82.002438989567821, 28.863614296850386 ], [ -82.002511060820893, 28.863425541109955 ], [ -82.002534800145185, 28.863340832483992 ], [ -82.002552389417062, 28.8632549698921 ], [ -82.002563757933345, 28.863168296213136 ], [ -82.00256885959169, 28.863081163347843 ], [ -82.002572006500586, 28.862941037289517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quasar Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000491015736102, 28.863880710014371 ], [ -82.000612758261113, 28.863714939735335 ], [ -82.000652960785715, 28.863657397113652 ], [ -82.000687681549394, 28.86359715027541 ], [ -82.000716687884918, 28.863534607968596 ], [ -82.000820813656503, 28.863280852931446 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yearling Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005858396973665, 28.862908478731871 ], [ -82.005858075200479, 28.863342406656493 ], [ -82.005854534657416, 28.863377991856105 ], [ -82.005844075306754, 28.86341250448184 ], [ -82.005827005613355, 28.863444910479981 ], [ -82.005803843147348, 28.863474238949337 ], [ -82.00577528178593, 28.863499610114136 ], [ -82.005742173265361, 28.863520262394463 ], [ -82.005705513857166, 28.863535576769305 ], [ -82.005666404393565, 28.86354509392222 ], [ -82.005626014392547, 28.863548528680109 ], [ -82.005338216709802, 28.863550967056749 ], [ -82.005235582234207, 28.863549361765141 ], [ -82.005133201738531, 28.863542812663702 ], [ -82.005031381713493, 28.863531340496049 ], [ -82.004930426599898, 28.863514977736688 ], [ -82.004418494417962, 28.863419179999479 ], [ -82.004332266817869, 28.863405803909604 ], [ -82.004245189711497, 28.863397776645026 ], [ -82.004157688461945, 28.863395136089892 ], [ -82.004123663596474, 28.863395158621557 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yearling Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003982784849256, 28.862085704213552 ], [ -82.004066876219611, 28.862068404950985 ], [ -82.004152417139963, 28.86205799288615 ], [ -82.004238687064429, 28.862054554656552 ], [ -82.004324949045994, 28.862058122763717 ], [ -82.004410471260087, 28.862068662940366 ], [ -82.004494528029497, 28.86208608858724 ], [ -82.004576405973083, 28.862110250847461 ], [ -82.004682418741268, 28.862145018024616 ], [ -82.004790323503997, 28.862174933371062 ], [ -82.004899834272877, 28.862199920195408 ], [ -82.00517259022341, 28.86225554923994 ], [ -82.005237630352099, 28.862266449592958 ], [ -82.005303443122301, 28.862272790545376 ], [ -82.00536962262828, 28.862274535115763 ], [ -82.005622147977277, 28.862272395737783 ], [ -82.005659067160224, 28.862274656453195 ], [ -82.005695122536636, 28.862282006185819 ], [ -82.005729411086932, 28.862294260900185 ], [ -82.005761081033711, 28.862311114748657 ], [ -82.005789341066574, 28.862332149094019 ], [ -82.005813489041785, 28.862356837921872 ], [ -82.005832918132995, 28.862384564983909 ], [ -82.005847146556846, 28.86241464003804 ], [ -82.005855817574002, 28.862446311480291 ], [ -82.005858715890582, 28.862478789803959 ], [ -82.005858396973665, 28.862908478731871 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yearling Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001584841913854, 28.863500810865613 ], [ -82.001503644109093, 28.863470563456602 ], [ -82.001466484639636, 28.86345806586915 ], [ -82.001428417051841, 28.863447911560048 ], [ -82.001224058254436, 28.863397453913301 ], [ -82.001021466721781, 28.86334175176054 ], [ -82.000820813656503, 28.863280852931446 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yearling Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000820813656503, 28.863280852931446 ], [ -82.000612371847524, 28.86321136566993 ], [ -82.000406457958348, 28.863136269367914 ], [ -82.000203261640877, 28.863055638928657 ], [ -82.00001234200262, 28.862976750591255 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yearling Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00001234200262, 28.862976750591255 ], [ -81.999915572082855, 28.862936763895902 ], [ -81.999882041389824, 28.86291980502736 ], [ -81.999852134100578, 28.862898222752381 ], [ -81.999826667136986, 28.862872603572978 ], [ -81.999806335443139, 28.862843646779044 ], [ -81.999791689435682, 28.86281213828126 ], [ -81.999783129879276, 28.862778939782959 ], [ -81.999780891487475, 28.862744953590003 ], [ -81.999787784240667, 28.862629793435673 ], [ -81.999801975960949, 28.862515151220752 ], [ -81.999823423572892, 28.86240138696223 ], [ -81.999852060427003, 28.862288856164362 ], [ -81.999862469409067, 28.862252718904685 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allende Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978543633016017, 28.933343217337843 ], [ -81.978560714272021, 28.933375334549932 ], [ -81.978603416103638, 28.933462118676879 ], [ -81.978631950527969, 28.933522444344216 ], [ -81.978660324724359, 28.933583986272396 ], [ -81.978684644668178, 28.933639283668718 ], [ -81.978731260084032, 28.93373917871596 ], [ -81.978828264430661, 28.93395523501902 ], [ -81.978844020265086, 28.933994316793274 ], [ -81.978856909553045, 28.93403213760616 ], [ -81.978866934356191, 28.934063654534977 ], [ -81.978878390763839, 28.934101475118595 ], [ -81.978888414801617, 28.934136772659176 ], [ -81.978897005959766, 28.934167029755489 ], [ -81.978904164212636, 28.934202328646098 ], [ -81.978912755888089, 28.934235105849595 ], [ -81.978918480484964, 28.934269144007295 ], [ -81.978927070356548, 28.934310745648936 ], [ -81.978931360766694, 28.934351085203673 ], [ -81.978935654526509, 28.934385122231934 ], [ -81.978937078631688, 28.934422942127679 ], [ -81.978941367237638, 28.934472106120595 ], [ -81.978939481667737, 28.93450868303427 ], [ -81.978939473221274, 28.934549798784772 ], [ -81.978939467093099, 28.934579629539257 ], [ -81.978939459308734, 28.934617522293852 ], [ -81.978939450995583, 28.934652995996849 ], [ -81.978939444402599, 28.934690082100005 ], [ -81.978940284997549, 28.935056913616869 ], [ -81.978940201523713, 28.935463251021186 ], [ -81.978938331675749, 28.935647875474025 ], [ -81.978933741642905, 28.935677705500314 ], [ -81.978930070448143, 28.935703503318326 ], [ -81.978927317397719, 28.935723659235098 ], [ -81.978923648022871, 28.935740589305169 ], [ -81.978919979310149, 28.935754293673206 ], [ -81.978914475959456, 28.935771223453305 ], [ -81.978909890619292, 28.935788155182756 ], [ -81.978902552854066, 28.93581717631756 ], [ -81.978901630391263, 28.935843782121985 ], [ -81.978902541209777, 28.935868774011681 ], [ -81.978904369875735, 28.935894575404241 ], [ -81.978907111489107, 28.93593004953506 ], [ -81.978911687413159, 28.935963910653342 ], [ -81.978916262811779, 28.935995353622737 ], [ -81.978921757916495, 28.936023572839829 ], [ -81.978929997506015, 28.936053405791842 ], [ -81.978937327756299, 28.936075980545169 ], [ -81.978948318655029, 28.936104199725616 ], [ -81.978956563487387, 28.936123550724773 ], [ -81.978963891498253, 28.936142094927892 ], [ -81.978976716192392, 28.936166284748857 ], [ -81.978993209054607, 28.93619450298711 ], [ -81.97901061653431, 28.936224336473664 ], [ -81.979023441084465, 28.936249332038589 ], [ -81.979031686308403, 28.9362719069299 ], [ -81.979037182576533, 28.936289645092177 ], [ -81.97904450843383, 28.936313833140186 ], [ -81.979049087879531, 28.936330764506923 ], [ -81.979052750499747, 28.936346889078621 ], [ -81.979058244761603, 28.936369463536252 ], [ -81.97906098874509, 28.936393651766441 ], [ -81.979064651115465, 28.936421063135267 ], [ -81.979064647619481, 28.936433157485641 ], [ -81.979066476260215, 28.93644928176904 ], [ -81.979067390820859, 28.9364662134623 ], [ -81.979066606733099, 28.936493471645683 ], [ -81.97906554744965, 28.936512166112045 ], [ -81.979064968959875, 28.936532175296318 ], [ -81.97906007569415, 28.936555109041294 ], [ -81.979051924299057, 28.936575175686233 ], [ -81.978943586197545, 28.936777387115466 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976924237592343, 28.934879135261934 ], [ -81.976919890172852, 28.934885869235949 ], [ -81.976910900252477, 28.93489790068001 ], [ -81.976901323704993, 28.934909587345519 ], [ -81.976741238009225, 28.935086188198781 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977005580915844, 28.934742161153149 ], [ -81.977190726399598, 28.934843360846468 ], [ -81.97722721663888, 28.934871905740735 ], [ -81.977238026411655, 28.934890934264331 ], [ -81.977242076009333, 28.934913529307249 ], [ -81.977238016920111, 28.934933742715952 ], [ -81.977229564536287, 28.934950240629831 ], [ -81.977217395096261, 28.934966291273494 ], [ -81.977203198428739, 28.934979666267328 ], [ -81.977183934741774, 28.934988582157899 ], [ -81.97716095359911, 28.934989618575994 ], [ -81.977142029878863, 28.934987236891235 ], [ -81.977117698414347, 28.934981287508069 ], [ -81.977083907712938, 28.934967011028164 ], [ -81.977044711368578, 28.934944411750216 ], [ -81.976924237592343, 28.934879135261934 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977005580915844, 28.934742161153149 ], [ -81.977003896545128, 28.934747489813784 ], [ -81.976997752036084, 28.934763692158256 ], [ -81.976990200557665, 28.934778571496519 ], [ -81.976984056814842, 28.934791337903455 ], [ -81.976975681030993, 28.934804595675853 ], [ -81.976967861616416, 28.934815890151075 ], [ -81.976958926820416, 28.934829147825983 ], [ -81.976952223367377, 28.934840441590431 ], [ -81.976944406329807, 28.934850262617953 ], [ -81.976936588960228, 28.93486155528706 ], [ -81.976928100710381, 28.934873152815303 ], [ -81.976924237592343, 28.934879135261934 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975037249839204, 28.933754997411018 ], [ -81.975884552937572, 28.934069448307557 ], [ -81.976345001013655, 28.934238765858577 ], [ -81.976667315781185, 28.934357648393966 ], [ -81.976833075558829, 28.934422490853105 ], [ -81.976911862296518, 28.93446481397978 ], [ -81.976928232503056, 28.934478318741498 ], [ -81.976942554795301, 28.934490024875029 ], [ -81.976956878738392, 28.934503530182322 ], [ -81.976970179254707, 28.934520636368617 ], [ -81.976984498312518, 28.934542243373514 ], [ -81.976995750751144, 28.934567450003424 ], [ -81.977002908378665, 28.934589055772818 ], [ -81.977010067034612, 28.934610662444221 ], [ -81.977015178797501, 28.934630466881128 ], [ -81.977018244691024, 28.934648471790805 ], [ -81.977019263908588, 28.934668275523322 ], [ -81.977018236027632, 28.934687178413817 ], [ -81.977016952403872, 28.934703029700653 ], [ -81.977013111950043, 28.934717785162125 ], [ -81.977009501556225, 28.934731183612314 ], [ -81.977005580915844, 28.934742161153149 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975831842522396, 28.936088390002958 ], [ -81.975824602232763, 28.936096108722346 ], [ -81.975806815114666, 28.936114324627447 ], [ -81.975788639243831, 28.936132541361975 ], [ -81.975770269668473, 28.936150070510735 ], [ -81.975751311325851, 28.936167599550121 ], [ -81.975732156120557, 28.936184784776927 ], [ -81.975712613269337, 28.936201626156429 ], [ -81.975692873555545, 28.936218123723176 ], [ -81.975667857657854, 28.936234157449505 ], [ -81.975647269854051, 28.936249848204053 ], [ -81.975626682903226, 28.936261916244522 ], [ -81.975601976667392, 28.936273983529841 ], [ -81.97558276314183, 28.936286052716564 ], [ -81.975562173837943, 28.936299328016243 ], [ -81.975534723504182, 28.936312601154597 ], [ -81.975511393020597, 28.936323462307755 ], [ -81.975486687494481, 28.936336737743776 ], [ -81.97546609845655, 28.936348805759135 ], [ -81.975441393207348, 28.936360873014955 ], [ -81.975416688689421, 28.93637414753595 ], [ -81.975389236713468, 28.936389836085578 ], [ -81.975368649994124, 28.93640069862137 ], [ -81.975345317712197, 28.936410350671093 ], [ -81.975319241048439, 28.936422418553679 ], [ -81.975290417949338, 28.936436899560274 ], [ -81.975262966518784, 28.936450174447256 ], [ -81.975232772752904, 28.936465861555003 ], [ -81.975203949338862, 28.936481548910155 ], [ -81.975177871323808, 28.936494824034504 ], [ -81.975153165865166, 28.936511721217556 ], [ -81.975129832078224, 28.936527409577145 ], [ -81.975107869963807, 28.936541891820877 ], [ -81.975080420096702, 28.936561202116067 ], [ -81.975054340581636, 28.936580512661347 ], [ -81.975033750712441, 28.936599824227063 ], [ -81.975013162448178, 28.936616721250807 ], [ -81.974995392523368, 28.93663499389487 ], [ -81.974971550422055, 28.936652864781038 ], [ -81.974947900979956, 28.936671425954042 ], [ -81.974924839268397, 28.936689984526218 ], [ -81.974903352196122, 28.936712069555348 ], [ -81.974880016852211, 28.936733794218309 ], [ -81.974856681498125, 28.936755520681736 ], [ -81.974840208806455, 28.936774832991684 ], [ -81.974819616355632, 28.936800179968678 ], [ -81.974801770937432, 28.936820699284667 ], [ -81.974781180519471, 28.936846047158284 ], [ -81.974760588633174, 28.936868978684807 ], [ -81.974744116338272, 28.936890706423966 ], [ -81.974724896556268, 28.936914845473588 ], [ -81.974709795639313, 28.936936573467694 ], [ -81.974690575974819, 28.936964336125197 ], [ -81.974678220476449, 28.936983648291893 ], [ -81.974661747551608, 28.937007789657052 ], [ -81.974649389395864, 28.937029517261649 ], [ -81.974623305645949, 28.937069348594711 ], [ -81.974602711724671, 28.937104354594787 ], [ -81.974584863228444, 28.937136945672382 ], [ -81.974568388038108, 28.937165915200488 ], [ -81.974558242693362, 28.937186196839807 ], [ -81.97454916487807, 28.937203335089148 ], [ -81.974540927188954, 28.93722023438994 ], [ -81.974534343550133, 28.937234785333953 ], [ -81.97452388754192, 28.937254481322451 ], [ -81.974515092626632, 28.937276521786643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mauldin Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955771090626627, 28.902510218105391 ], [ -81.955960127221971, 28.902508912384267 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mauldin Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955771090626627, 28.902510218105391 ], [ -81.955766676154639, 28.902397704533328 ], [ -81.955764906404411, 28.902366314787894 ], [ -81.955766699592573, 28.902342773507179 ], [ -81.955771165327562, 28.902325512202808 ], [ -81.955777415251148, 28.902310602876209 ], [ -81.95578812220154, 28.902298835918895 ], [ -81.955805070972445, 28.902283931017191 ], [ -81.955825587090658, 28.902273738188359 ], [ -81.955845207423877, 28.902269818743665 ], [ -81.95587285278539, 28.902269827835941 ], [ -81.955903170009748, 28.902275331896458 ], [ -81.955923677776497, 28.902284755020858 ], [ -81.955941506960258, 28.902299672261144 ], [ -81.955953983671833, 28.902316939132579 ], [ -81.955962887100569, 28.902350686215939 ], [ -81.955965547353784, 28.902388352639871 ], [ -81.955960127221971, 28.902508912384267 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Monetta Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960405582534463, 28.895858773142308 ], [ -81.960602944224277, 28.89570846122264 ], [ -81.960882540260528, 28.895478556807021 ], [ -81.960972925069939, 28.895421310567126 ], [ -81.961050820507552, 28.895396516355525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Monetta Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95959341552205, 28.896456101388242 ], [ -81.959635069768311, 28.896394663727108 ], [ -81.959683432065731, 28.896342682361148 ], [ -81.959828497918338, 28.896248187447366 ], [ -81.960022557314417, 28.896130449311208 ], [ -81.960218022145469, 28.895998958461576 ], [ -81.960270769547719, 28.8959596221036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Monetta Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960270769547719, 28.8959596221036 ], [ -81.960385927562868, 28.895873743707615 ], [ -81.960405582534463, 28.895858773142308 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Monetta Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960270769547719, 28.8959596221036 ], [ -81.960337379967442, 28.896041606691515 ], [ -81.960357733916979, 28.89607840486849 ], [ -81.960375947177965, 28.896106711772369 ], [ -81.960393091928822, 28.896124640110198 ], [ -81.960415064155271, 28.896136556946661 ], [ -81.960435161406764, 28.896142222998506 ], [ -81.960456066455762, 28.896142935661512 ], [ -81.96047455821703, 28.896140113303566 ], [ -81.960493857096552, 28.89613410516138 ], [ -81.960508866966023, 28.896125618039953 ], [ -81.960524952449688, 28.896114302524506 ], [ -81.960537822263092, 28.896098269742296 ], [ -81.960545331273607, 28.896086006994228 ], [ -81.960551769590623, 28.896069028514049 ], [ -81.960554993572003, 28.896049218575264 ], [ -81.960552853986357, 28.896035067184037 ], [ -81.960545356786454, 28.896019026607011 ], [ -81.960534643152926, 28.896002986888131 ], [ -81.960521782751826, 28.895991662856002 ], [ -81.960503565199659, 28.895974558920109 ], [ -81.960482667418432, 28.895957570589044 ], [ -81.960467128177925, 28.895945421963223 ], [ -81.960405582534463, 28.895858773142308 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edenville Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005621062696747, 28.873803218788332 ], [ -82.005626084320141, 28.873796213125861 ], [ -82.005658053581698, 28.873743805306052 ], [ -82.005682464589853, 28.873688337150501 ], [ -82.005698944260558, 28.873630646916318 ], [ -82.005707246626528, 28.873571612556013 ], [ -82.005707811991925, 28.873561963310877 ], [ -82.005708859986512, 28.873326280026195 ], [ -82.005709932310438, 28.873287307730966 ], [ -82.005705468998443, 28.873246062742982 ], [ -82.00570400594134, 28.873241234576476 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edenville Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00570400594134, 28.873241234576476 ], [ -82.005696541994141, 28.873216603798884 ], [ -82.005686499012896, 28.873194016832652 ], [ -82.005669764162988, 28.873170448409802 ], [ -82.005642986216202, 28.873141971830869 ], [ -82.005615094250416, 28.873118403813908 ], [ -82.005598102805294, 28.873108430385379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edenville Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00570400594134, 28.873241234576476 ], [ -82.005746469161267, 28.873214023138889 ], [ -82.005763201959098, 28.873197083577583 ], [ -82.005774078418057, 28.873180878711342 ], [ -82.005779099566354, 28.873165412150747 ], [ -82.005779307734457, 28.873146906817908 ], [ -82.005775750813342, 28.873130059158235 ], [ -82.005767380132511, 28.873114869211271 ], [ -82.005751481016517, 28.873096917600559 ], [ -82.005734746594612, 28.873081726163253 ], [ -82.005708806950636, 28.873068932487865 ], [ -82.005692072147554, 28.873066261396868 ], [ -82.005673872564302, 28.873065157658122 ], [ -82.005656300533502, 28.873067920260496 ], [ -82.005639357129056, 28.873075562490072 ], [ -82.005622623084889, 28.873088082557945 ], [ -82.005598102805294, 28.873108430385379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edenville Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005598102805294, 28.873108430385379 ], [ -82.005579135948409, 28.873097299372642 ], [ -82.005537602512362, 28.873083138342952 ], [ -82.005493821394012, 28.873075935939351 ], [ -82.005470138590084, 28.873075034485876 ], [ -82.005033069894068, 28.873048587580485 ], [ -82.005023281225576, 28.873047617923163 ], [ -82.004956325695531, 28.873036821321122 ], [ -82.004891340108543, 28.873018997490568 ], [ -82.004829268599238, 28.872994409877382 ], [ -82.004771015325005, 28.872963416672011 ], [ -82.00473007397315, 28.872935183964472 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edenville Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004625978887233, 28.872834989068426 ], [ -82.004592102738869, 28.872785669295368 ], [ -82.004564164764574, 28.872731033875727 ], [ -82.004546874735581, 28.872683951318475 ], [ -82.004470960926085, 28.872402081333149 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Underhill Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014343234794566, 28.850297839080906 ], [ -82.014393986530251, 28.849723414450573 ], [ -82.014399112798586, 28.849645923919834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eisenhower Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013766385671289, 28.853138312106658 ], [ -82.01378654679209, 28.853036659151726 ], [ -82.013807137201525, 28.852934192271245 ], [ -82.013853525973545, 28.852574251868113 ], [ -82.013898796689858, 28.852161904743895 ], [ -82.013945296757399, 28.851780044553536 ], [ -82.013966711716307, 28.851589941136865 ], [ -82.013983611515684, 28.851459374975914 ], [ -82.014014175666972, 28.851349749970673 ], [ -82.01406486316769, 28.851184238674414 ], [ -82.01417813556013, 28.850884945299715 ], [ -82.014306514377253, 28.850565700318352 ], [ -82.014321610410647, 28.850485889868143 ], [ -82.014343234794566, 28.850297839080906 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eisenhower Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01203838423524, 28.854994050036545 ], [ -82.012341233607302, 28.85510726708273 ], [ -82.012372785650371, 28.855115575482778 ], [ -82.012396277237059, 28.855119515615041 ], [ -82.012429072871285, 28.855122007636091 ], [ -82.012459813169215, 28.855121237093908 ], [ -82.01248997609872, 28.855117533201849 ], [ -82.012537560636886, 28.855105368663903 ], [ -82.012588538422108, 28.855082280505776 ], [ -82.012613136656611, 28.855066379718746 ], [ -82.012630609901549, 28.855052600877517 ], [ -82.012659378016068, 28.855023699302546 ], [ -82.012695760462677, 28.854979354996043 ], [ -82.0128792872773, 28.854755767200025 ], [ -82.013053141504614, 28.85454314123713 ], [ -82.013164155000993, 28.85439215552719 ], [ -82.013400449809794, 28.854024143673271 ], [ -82.013439263148044, 28.853958902447783 ], [ -82.013469455354766, 28.853905330637655 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hendry Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010807324461666, 28.860100998445347 ], [ -82.010736618915033, 28.859704384134627 ], [ -82.010712298909056, 28.859499647667807 ], [ -82.010691451384488, 28.859282686511957 ], [ -82.010682749789467, 28.859045861114577 ], [ -82.01064691356369, 28.858327199881607 ], [ -82.010644399159744, 28.858199458102959 ], [ -82.010644392981021, 28.858199161245189 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hendry Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01203838423524, 28.854994050036545 ], [ -82.012119716816343, 28.854822379639423 ], [ -82.012216289544412, 28.854577537265111 ], [ -82.012310433488679, 28.854275840780332 ], [ -82.012461882699441, 28.853779789919951 ], [ -82.012510650650128, 28.853601445039992 ], [ -82.01254098577428, 28.853416014152064 ], [ -82.012550492097645, 28.853207129662024 ], [ -82.012535209022928, 28.853005754524339 ], [ -82.01249771959634, 28.852813345727856 ], [ -82.012425772619849, 28.852587685456445 ], [ -82.012327543802499, 28.852381521715646 ], [ -82.012213355291848, 28.852207302675104 ], [ -82.012078214351192, 28.852042359198158 ], [ -82.011959675188137, 28.851907377952635 ], [ -82.011789541752307, 28.851717958452987 ], [ -82.011594547422987, 28.851500857110693 ], [ -82.011405811551228, 28.851290886803636 ], [ -82.0112424317429, 28.851108643896733 ], [ -82.011100999961613, 28.85093353091704 ], [ -82.010990277410144, 28.850752213896389 ], [ -82.010925753600105, 28.850602538041663 ], [ -82.01089122782335, 28.850522636082371 ], [ -82.010854269522127, 28.850406388524036 ], [ -82.010826313915359, 28.850301860325256 ], [ -82.010819869610742, 28.850271839296227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marianna Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011374437207024, 28.849729468409439 ], [ -82.01139262525939, 28.849727153456289 ], [ -82.011436413045658, 28.849721139717939 ], [ -82.011474939285137, 28.849716252463509 ], [ -82.011526739465637, 28.849710269635924 ], [ -82.011577029075667, 28.849705106203889 ], [ -82.011607580018605, 28.849702276811783 ], [ -82.011644384660983, 28.849699178018131 ], [ -82.011677530595378, 28.849696676838796 ], [ -82.011732658755321, 28.849693118156512 ], [ -82.01176177808928, 28.849691541246962 ], [ -82.011794115507854, 28.849690035348488 ], [ -82.011828362270819, 28.849688720573493 ], [ -82.011855709689939, 28.849687877364428 ], [ -82.011891917071935, 28.849687044242287 ], [ -82.011927930789639, 28.849686536858901 ], [ -82.011956939584906, 28.849686333225687 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marianna Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010913719013487, 28.849801218456694 ], [ -82.011190300994386, 28.849753449005217 ], [ -82.011326111321623, 28.84973562053823 ], [ -82.011374437207024, 28.849729468409439 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rose Arbor Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01190612545463, 28.848079436391227 ], [ -82.012014451359647, 28.848082232615603 ], [ -82.012139184311664, 28.848086996193757 ], [ -82.012350689263968, 28.848091753090532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Habersham Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011956941637337, 28.849686357587775 ], [ -82.011933257423678, 28.84946690437744 ], [ -82.011906114883445, 28.84924249688223 ], [ -82.011895258295795, 28.849147003156013 ], [ -82.011895249910054, 28.84907060763371 ], [ -82.011895240499499, 28.848994212110647 ], [ -82.011933184858066, 28.848807996497364 ], [ -82.011971126037238, 28.848631328166839 ], [ -82.011981960431015, 28.848516734418578 ], [ -82.012003629709724, 28.848301870117179 ], [ -82.012013248708726, 28.848225577543346 ], [ -82.012013454378177, 28.848176431630964 ], [ -82.012003386050665, 28.848146929779229 ], [ -82.011983415821661, 28.848119189154282 ], [ -82.011961726993221, 28.848101304557183 ], [ -82.011934002237297, 28.848087328346374 ], [ -82.01190612545463, 28.848079436391227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oldham Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011374437207024, 28.849729468409439 ], [ -82.011349464108193, 28.849727640508533 ], [ -82.011330772215445, 28.849723918168152 ], [ -82.011315810715132, 28.849719039677893 ], [ -82.011299445893243, 28.849711454379175 ], [ -82.011285921912318, 28.849703012567346 ], [ -82.011279131640194, 28.849697841986369 ], [ -82.011268988612429, 28.849688613999181 ], [ -82.011255743639296, 28.849672590989833 ], [ -82.011247188590218, 28.849657889490175 ], [ -82.011242261852033, 28.849645951468659 ], [ -82.011238609599488, 28.849629689498343 ], [ -82.011231978356932, 28.849576605566551 ], [ -82.011195277456167, 28.849253550489365 ], [ -82.011186472882315, 28.849164087557181 ], [ -82.011183901834031, 28.849097588723303 ], [ -82.01118480462857, 28.849046791544033 ], [ -82.011188176863925, 28.84898150404349 ], [ -82.01119563844918, 28.848917873759721 ], [ -82.011217316251816, 28.848788954224446 ], [ -82.011249839163625, 28.848621837424123 ], [ -82.011266704790728, 28.848528966273435 ], [ -82.011291203304921, 28.848306154352336 ], [ -82.01129872677015, 28.848237475650325 ], [ -82.011302360163526, 28.848210779742306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rose Arbor Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011302360163526, 28.848210779742306 ], [ -82.011311708635361, 28.848189000951681 ], [ -82.011322125584741, 28.848172851562776 ], [ -82.011335851894003, 28.848157858668241 ], [ -82.011352111863644, 28.84814510509543 ], [ -82.01137317441669, 28.848133677530374 ], [ -82.011399005907592, 28.848125245239363 ], [ -82.011433797830435, 28.84811843999038 ], [ -82.011473200527462, 28.848111428638422 ], [ -82.011526804414245, 28.848102991394587 ], [ -82.011638513655612, 28.848089408992259 ], [ -82.011721357701589, 28.848082773908096 ], [ -82.011828908043782, 28.848078469197336 ], [ -82.01190612545463, 28.848079436391227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oldham Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011302360163526, 28.848210779742306 ], [ -82.011301261165855, 28.848158117646765 ], [ -82.011287745752909, 28.848082291626298 ], [ -82.011184677238873, 28.847819690753333 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ragsdale Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012882261231852, 28.849749188610588 ], [ -82.012882555447931, 28.849758453458655 ], [ -82.012882990540618, 28.849780257635885 ], [ -82.012883226791075, 28.849801908439023 ], [ -82.012883275009997, 28.849819524148163 ], [ -82.012883164677007, 28.849839677155121 ], [ -82.012882936147392, 28.84985700415136 ], [ -82.012882509137739, 28.849877219445897 ], [ -82.012881985520394, 28.849895169961933 ], [ -82.012881555501011, 28.849907333983278 ], [ -82.012880778805197, 28.849925823198561 ], [ -82.012878724389893, 28.849963956625437 ], [ -82.012877521320632, 28.849982216693434 ], [ -82.012875734751177, 28.850006145098071 ], [ -82.012874163811489, 28.850024896053412 ], [ -82.012872369543715, 28.850044435643973 ], [ -82.012870292546381, 28.850065108555832 ], [ -82.012868910503528, 28.850077962926619 ], [ -82.012867349219093, 28.850091748492925 ], [ -82.012865996724798, 28.850103158269643 ], [ -82.012864633935337, 28.850114180055844 ], [ -82.012863586441512, 28.850122143899792 ], [ -82.012862629089909, 28.850129719744182 ], [ -82.01286222053163, 28.850132784913242 ], [ -82.012861789443264, 28.850135993550939 ], [ -82.012861250831676, 28.850139942991216 ], [ -82.012860616985634, 28.850144552025515 ], [ -82.012860134682327, 28.850148001583406 ], [ -82.012859521302346, 28.850152348044915 ], [ -82.012859081999082, 28.850155424044381 ], [ -82.012858525952581, 28.850159273330302 ], [ -82.012857970926191, 28.850163082914683 ], [ -82.012857491672534, 28.850166324039687 ], [ -82.01285696018985, 28.850169896315556 ], [ -82.012856494242726, 28.850172996679696 ], [ -82.012856010883141, 28.850176184569001 ], [ -82.01285552137584, 28.85017938509116 ], [ -82.012855158850243, 28.850181726606937 ], [ -82.012854786082372, 28.850184122261961 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marianna Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011956941637337, 28.849686357587775 ], [ -82.011983004993482, 28.849686374357447 ], [ -82.012149576835057, 28.84969041617817 ], [ -82.01233460314549, 28.849700833698446 ], [ -82.012549963384174, 28.849728189993517 ], [ -82.012642890398595, 28.849740152683122 ], [ -82.012716196719211, 28.849746352227864 ], [ -82.012802241801012, 28.849749735396124 ], [ -82.012882261231852, 28.849749188610588 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 5th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.060367682655055, 28.609959345041048 ], [ -82.06035764507655, 28.607074565255214 ], [ -82.060392755421702, 28.606973688849791 ], [ -82.060448024319697, 28.606922862759159 ], [ -82.060501463768006, 28.606884293048942 ], [ -82.06056745521262, 28.606852523247714 ], [ -82.060640168635985, 28.606838739525198 ], [ -82.060749245401468, 28.606834107492354 ], [ -82.061323886594792, 28.606836799480789 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avecilla Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96372556061776, 28.91724768323995 ], [ -81.963725725729091, 28.917247680577738 ], [ -81.963945602574881, 28.917244624272186 ], [ -81.964131570082301, 28.917242038559188 ], [ -81.964306771511019, 28.917239603113114 ], [ -81.964550161795103, 28.917236220937454 ], [ -81.964788297222483, 28.917232909125111 ], [ -81.96491825713909, 28.917231102522297 ], [ -81.965033130317991, 28.917229761052759 ], [ -81.965108272809758, 28.917230244418256 ], [ -81.965181787341734, 28.917232045574231 ], [ -81.965256391553282, 28.917235220268115 ], [ -81.965353735894013, 28.917241411765609 ], [ -81.965428196521756, 28.917247716394243 ], [ -81.965510379678108, 28.917256270590432 ], [ -81.965604556349831, 28.917268142853317 ], [ -81.965709776668731, 28.917284055654228 ], [ -81.965774424479505, 28.917295236297985 ], [ -81.96583963082449, 28.917307608986945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958449173262622, 28.917583594622464 ], [ -81.958305228026248, 28.917497743353163 ], [ -81.95778947608602, 28.917171096844388 ], [ -81.957505964564874, 28.916990512814312 ], [ -81.957171175080788, 28.916793984480506 ], [ -81.956782081181544, 28.916600093284359 ], [ -81.956420125840395, 28.91644336996545 ], [ -81.956172780236784, 28.916355695325255 ], [ -81.95600688078072, 28.916297245284426 ], [ -81.955768577018958, 28.916230809320624 ], [ -81.955590605121515, 28.916182971208553 ], [ -81.9553734122821, 28.916137775279903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cabrera Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964768247773236, 28.918786412163275 ], [ -81.964772603530491, 28.918752533881811 ], [ -81.964779805610789, 28.918717367868798 ], [ -81.964788240322207, 28.91868541345216 ], [ -81.964802888779602, 28.918641475463183 ], [ -81.964816671280445, 28.918607707930629 ], [ -81.964896607208715, 28.918429796029422 ], [ -81.96495220585058, 28.918306077761663 ], [ -81.964975450853586, 28.918254351571267 ], [ -81.96499412711654, 28.918208495426494 ], [ -81.965007905358561, 28.918165751825249 ], [ -81.965017295630915, 28.918128113172948 ], [ -81.965024335641928, 28.918089646500512 ], [ -81.965029069009162, 28.918048748438679 ], [ -81.965031083885449, 28.917995093900959 ], [ -81.965031350485475, 28.917907307735035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avecilla Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967337639252619, 28.917632406000912 ], [ -81.967384066569451, 28.917602054129151 ], [ -81.967397448187285, 28.917594128906117 ], [ -81.967410161219661, 28.917589248770142 ], [ -81.967421243188852, 28.917585837175235 ], [ -81.967435135111202, 28.91758570520836 ], [ -81.967606529371935, 28.917586103169704 ], [ -81.967840156055445, 28.917586649407792 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avecilla Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966592341249921, 28.917512584014403 ], [ -81.966649664443381, 28.917525299022437 ], [ -81.966704847902136, 28.917536340616419 ], [ -81.966757582905103, 28.917545808877293 ], [ -81.966801194449602, 28.917553088592424 ], [ -81.966855448905307, 28.917560623569827 ], [ -81.966905121722448, 28.917566792218942 ], [ -81.966989033330037, 28.917575175405599 ], [ -81.967027788311242, 28.917578189596846 ], [ -81.967084179268539, 28.917581611437654 ], [ -81.967142865712404, 28.917583970010146 ], [ -81.967189649219094, 28.917584972197581 ], [ -81.967229618291938, 28.917585226502744 ], [ -81.967255039635859, 28.917587160024222 ], [ -81.967269224890174, 28.917590172649852 ], [ -81.967283164588849, 28.917594618061031 ], [ -81.96729583127518, 28.917600092680463 ], [ -81.967308118081149, 28.917606938696824 ], [ -81.967316254967912, 28.917612471760386 ], [ -81.96732658878706, 28.917620495697964 ], [ -81.967337639252619, 28.917632406000912 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bermudez Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967363232095522, 28.918263190621936 ], [ -81.967363409903413, 28.917700551916269 ], [ -81.967361719768931, 28.917681249575701 ], [ -81.967358952121202, 28.917670659548474 ], [ -81.967356165110047, 28.917662930699013 ], [ -81.967352160091323, 28.917654167520745 ], [ -81.96734662729564, 28.917644554908868 ], [ -81.967337639252619, 28.917632406000912 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mission Hills Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967749230783681, 28.918241404318714 ], [ -81.967749824580451, 28.918241375588195 ], [ -81.9679592767842, 28.918231555629802 ], [ -81.968122200550468, 28.918223914154133 ], [ -81.968333343825279, 28.918214011907327 ], [ -81.96852700033007, 28.918204929920531 ], [ -81.968673942799612, 28.91819803834094 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Toquero Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966154940308215, 28.919427904408174 ], [ -81.966839937416069, 28.919427103926751 ], [ -81.966852648635495, 28.919425453163203 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bermudez Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966852648635495, 28.919425453163203 ], [ -81.966866168424019, 28.919422447349284 ], [ -81.966888168033094, 28.91941449814378 ], [ -81.966903552925174, 28.919406254054387 ], [ -81.966921612085315, 28.919392754747218 ], [ -81.966940991333558, 28.919372197098866 ], [ -81.967040830847225, 28.919185674628881 ], [ -81.967321092408056, 28.918652831676471 ], [ -81.967346561639317, 28.918604687738092 ], [ -81.967356129854878, 28.918575830117192 ], [ -81.967360786739917, 28.918546968592068 ], [ -81.967363153682598, 28.918508063046577 ], [ -81.967363221828478, 28.918292433147322 ], [ -81.967363232095522, 28.918263190621936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bermudez Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96672437492451, 28.919781181470547 ], [ -81.966865397781504, 28.919513369757869 ], [ -81.966867012177673, 28.91949363874053 ], [ -81.966863529577751, 28.919477106005395 ], [ -81.966852648635495, 28.919425453163203 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Osada Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966590039753484, 28.918277391663818 ], [ -81.966592341249921, 28.917512584014403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mission Hills Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966590039753484, 28.918277391663818 ], [ -81.966592566514251, 28.918277921039639 ], [ -81.966596728906225, 28.918278778356822 ], [ -81.966599589977506, 28.918279356539877 ], [ -81.966601654257801, 28.918279767599415 ], [ -81.966605883319673, 28.918280595157142 ], [ -81.966608772088819, 28.91828114808261 ], [ -81.966615222350271, 28.918282351548982 ], [ -81.966622122814883, 28.918283584000697 ], [ -81.966626897465815, 28.918284408084524 ], [ -81.966630786105455, 28.918285059608881 ], [ -81.966635706391145, 28.918285859366666 ], [ -81.966641621410488, 28.918286785693439 ], [ -81.966644748130761, 28.918287260177582 ], [ -81.966647638991276, 28.918287689488096 ], [ -81.966652127573298, 28.918288338454293 ], [ -81.966658662027299, 28.918289240572509 ], [ -81.966664424295359, 28.918289999935432 ], [ -81.966669553841925, 28.918290644549046 ], [ -81.966672666236278, 28.918291021580949 ], [ -81.966676882074879, 28.918291515283471 ], [ -81.966683234045348, 28.918292224263638 ], [ -81.966688698966024, 28.918292800385373 ], [ -81.966692655374672, 28.918293195672589 ], [ -81.96669560986561, 28.918293480630471 ], [ -81.966700546671689, 28.918293936615012 ], [ -81.966703058149477, 28.918294158301862 ], [ -81.966706020855298, 28.918294410778838 ], [ -81.966711478641045, 28.918294851553419 ], [ -81.966713612738531, 28.91829501539932 ], [ -81.966718809031249, 28.918295394752473 ], [ -81.966724494506323, 28.918295776031517 ], [ -81.966730112307957, 28.918296119397045 ], [ -81.966736552590646, 28.918296471087221 ], [ -81.966741303845922, 28.918296704156969 ], [ -81.966745611056055, 28.918296893806097 ], [ -81.966751904721946, 28.918297135378985 ], [ -81.966759453652301, 28.91829736914233 ], [ -81.966768882406583, 28.918297579009547 ], [ -81.966773431683308, 28.918297647810089 ], [ -81.966777102081508, 28.918297685714478 ], [ -81.966783074820327, 28.918297718775829 ], [ -81.966786645753004, 28.91829771966113 ], [ -81.966789802370727, 28.918297709616059 ], [ -81.96679311897627, 28.918297688783024 ], [ -81.966798886638557, 28.918297623442523 ], [ -81.966806075721408, 28.918297492586312 ], [ -81.966813367376261, 28.918297305812729 ], [ -81.966818698193265, 28.918297131185291 ], [ -81.966821777928445, 28.918297018258613 ], [ -81.966824946890299, 28.918296890917272 ], [ -81.966831882723625, 28.918296575928487 ], [ -81.96683558190999, 28.918296386459666 ], [ -81.96683904317058, 28.91829619783417 ], [ -81.966846152357547, 28.918295766491291 ], [ -81.966867688123699, 28.918294407546536 ], [ -81.966906976357734, 28.918291929625454 ], [ -81.967363232095522, 28.918263190621936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Braga Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961807312551429, 28.918115891499724 ], [ -81.96188655633155, 28.91800906770813 ], [ -81.96192699694538, 28.917954553420341 ], [ -81.961969137674899, 28.917897745062128 ], [ -81.962017048154962, 28.91783220499681 ], [ -81.962038206525889, 28.917800008026198 ], [ -81.962056858095877, 28.917768844374443 ], [ -81.962069652988518, 28.917745620175019 ], [ -81.962082584017992, 28.91772029005265 ], [ -81.962099183173265, 28.917684325596465 ], [ -81.962108476528655, 28.917662036986936 ], [ -81.962116559276581, 28.917641040123264 ], [ -81.962124015432877, 28.917620007892474 ], [ -81.96213013653167, 28.917601256289771 ], [ -81.96213788686363, 28.917575021499136 ], [ -81.962144295178689, 28.917550468209825 ], [ -81.96215059290931, 28.91752263052933 ], [ -81.962155605062733, 28.917496381429814 ], [ -81.962159306517421, 28.917473114952582 ], [ -81.962163567031808, 28.917438233368937 ], [ -81.962165335249495, 28.917418058516144 ], [ -81.962166813938353, 28.917393172691007 ], [ -81.962167537828449, 28.917348676138413 ], [ -81.962166135199922, 28.917269345824717 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Feliu Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961167025551234, 28.917714085467846 ], [ -81.961186605556762, 28.917726446283957 ], [ -81.961201505106999, 28.917735850721694 ], [ -81.961218375273234, 28.917746497287855 ], [ -81.961235728355462, 28.91775744987002 ], [ -81.961254775225498, 28.917769472160813 ], [ -81.961293792768629, 28.917794098982213 ], [ -81.961335344857162, 28.917820326294937 ], [ -81.961381014551023, 28.917849150687989 ], [ -81.96139126749955, 28.917855622204691 ], [ -81.961406827376564, 28.917865443670738 ], [ -81.961426078319946, 28.91787759412199 ], [ -81.961437886647488, 28.917885046878926 ], [ -81.961455340253806, 28.917896065329163 ], [ -81.961470257283167, 28.917905478764979 ], [ -81.961503537376984, 28.917926464012108 ], [ -81.961518232942637, 28.917935760080443 ], [ -81.961537403938479, 28.917947860866423 ], [ -81.961555737271581, 28.917959431761428 ], [ -81.961606523321237, 28.917991486863723 ], [ -81.961703944086565, 28.918052956607458 ], [ -81.961723785725667, 28.918065332758744 ], [ -81.961739571311966, 28.918075077555329 ], [ -81.961753838453902, 28.918083806833327 ], [ -81.961769941954785, 28.918093573372115 ], [ -81.96178709951316, 28.918103879782727 ], [ -81.961799453513308, 28.918111238824462 ], [ -81.961807312551429, 28.918115891499724 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avecilla Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96067897432988, 28.917406749146544 ], [ -81.960743270256671, 28.917338639179697 ], [ -81.960811753361938, 28.917294848200939 ], [ -81.960905118728022, 28.917289398515422 ], [ -81.961388654849102, 28.917280138505703 ], [ -81.961394151722331, 28.91728006249107 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Feliu Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96067897432988, 28.917406749146544 ], [ -81.960691648122861, 28.91741414176926 ], [ -81.960702515172812, 28.917420895035296 ], [ -81.960819262566403, 28.917494582767823 ], [ -81.961167025551234, 28.917714085467846 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Feliu Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960141647825296, 28.917345611496049 ], [ -81.960274917378797, 28.917343725542107 ], [ -81.960414006834355, 28.917341796962003 ], [ -81.960430044133929, 28.917341691615338 ], [ -81.960444667067975, 28.917341999101378 ], [ -81.960457821323132, 28.917342615640486 ], [ -81.960473676612366, 28.917343796909901 ], [ -81.960487189510346, 28.917345182308548 ], [ -81.960500325925764, 28.917346863548214 ], [ -81.960514521518519, 28.917349061212157 ], [ -81.960525008912057, 28.9173509392723 ], [ -81.960540958776534, 28.917354222010385 ], [ -81.960556093224511, 28.917357819408227 ], [ -81.960569252528543, 28.917361341332949 ], [ -81.960583463760344, 28.917365568259243 ], [ -81.960602717710231, 28.917372021729154 ], [ -81.960620045676066, 28.917378574785584 ], [ -81.960632985838885, 28.917383957175296 ], [ -81.960646420057486, 28.917390001994423 ], [ -81.960656152624523, 28.917394686867489 ], [ -81.960663284854334, 28.917398290927988 ], [ -81.96067897432988, 28.917406749146544 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Feliu Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959302490011382, 28.917356932307161 ], [ -81.95937836756778, 28.917347735645894 ], [ -81.959438148869964, 28.917347735694843 ], [ -81.95949563195623, 28.917347735925446 ], [ -81.95956231213593, 28.917350034347617 ], [ -81.959649448501011, 28.917352572588282 ], [ -81.959693194898918, 28.91735179533239 ], [ -81.960141647825296, 28.917345611496049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Feliu Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958738786344142, 28.917755233163884 ], [ -81.958814237950065, 28.917747775415688 ], [ -81.958878818934295, 28.91772466756845 ], [ -81.958905481227404, 28.91770807799637 ], [ -81.958929772710732, 28.917690895786421 ], [ -81.958952880696316, 28.917666011206585 ], [ -81.958980134733054, 28.917636386322574 ], [ -81.959000872363504, 28.917609725289658 ], [ -81.959015685650584, 28.917587802206807 ], [ -81.959028720274418, 28.917569435431904 ], [ -81.959041162135819, 28.917551067572308 ], [ -81.9590559747909, 28.917533293244208 ], [ -81.959079082065685, 28.917504853593414 ], [ -81.959102189183227, 28.917479376178097 ], [ -81.959131813925595, 28.917450344794272 ], [ -81.959164401361846, 28.917426645074073 ], [ -81.959189878394284, 28.917406500937716 ], [ -81.95921476270226, 28.91739405771747 ], [ -81.959232538202357, 28.917386355704892 ], [ -81.959243202196703, 28.917379838048852 ], [ -81.959258607688568, 28.917372136214816 ], [ -81.959271642568709, 28.917368581516431 ], [ -81.959285269319082, 28.917362064756801 ], [ -81.959302490011382, 28.917356932307161 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jarquin Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95861812308496, 28.917113217395809 ], [ -81.958702849770617, 28.917106700958822 ], [ -81.958736622493021, 28.917106700526336 ], [ -81.958769802459358, 28.917106700805462 ], [ -81.958801795971112, 28.917109071045132 ], [ -81.958844949287112, 28.917116613057186 ], [ -81.959038200226203, 28.917173059442295 ], [ -81.959141622667374, 28.917204690320247 ], [ -81.959194446155792, 28.917234671673253 ], [ -81.959238704245621, 28.91727036374429 ], [ -81.959278752577404, 28.917316442663015 ], [ -81.959302490011382, 28.917356932307161 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "D Angelo Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962214953912124, 28.919432951935843 ], [ -81.962277585811378, 28.919263073490725 ], [ -81.962322116231491, 28.919141999647586 ], [ -81.962333527105329, 28.919103698568904 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Feliu Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961807312551429, 28.918115891499724 ], [ -81.961822199121443, 28.918124644406582 ], [ -81.961829659335109, 28.918129003720576 ], [ -81.96184295157633, 28.918136723944031 ], [ -81.961866794415755, 28.918150419468009 ], [ -81.961892151738724, 28.918164778606211 ], [ -81.961923431459141, 28.918182197304567 ], [ -81.961954176080937, 28.918199010402841 ], [ -81.961988363914742, 28.918217350253737 ], [ -81.962012093390399, 28.918229864613654 ], [ -81.962046831058132, 28.918247866244247 ], [ -81.962068977564172, 28.918259151218138 ], [ -81.962097861726122, 28.918273643952809 ], [ -81.962128644948436, 28.918288816646989 ], [ -81.962149129562192, 28.918298757618711 ], [ -81.962174026360074, 28.918310673154682 ], [ -81.9621895544674, 28.918318015010065 ], [ -81.96221451905447, 28.918329672500874 ], [ -81.962241454474182, 28.918342050574712 ], [ -81.962262915506258, 28.918351767132247 ], [ -81.962300759029361, 28.91836858305151 ], [ -81.962330990334152, 28.91838158100958 ], [ -81.962346175266958, 28.918387932931207 ], [ -81.962366567176304, 28.918396280388148 ], [ -81.962387674890408, 28.918404701128836 ], [ -81.962401400845224, 28.918410059206451 ], [ -81.962423588444409, 28.918418524456907 ], [ -81.962445470562173, 28.918426641331671 ], [ -81.962475229970778, 28.918437313004816 ], [ -81.962484643253887, 28.918440603607753 ], [ -81.962491816022322, 28.918443082418651 ], [ -81.962500208019307, 28.918445951362315 ], [ -81.96250584575796, 28.918447861296269 ], [ -81.962510189425217, 28.918449322426774 ], [ -81.96252158592759, 28.918453114356282 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Feliu Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96252158592759, 28.918453114356282 ], [ -81.962522802075767, 28.918453514413617 ], [ -81.962531524302946, 28.918456372620074 ], [ -81.962539851755679, 28.918459068302319 ], [ -81.962545330592604, 28.918460823897526 ], [ -81.962552090189561, 28.918462973251561 ], [ -81.962557767969997, 28.918464762286806 ], [ -81.96256267053343, 28.918466294853129 ], [ -81.96256939528584, 28.918468380133515 ], [ -81.962576594819581, 28.918470590063027 ], [ -81.962582205970307, 28.918472296969671 ], [ -81.962589954125036, 28.918474630666193 ], [ -81.96259807247155, 28.918477045672272 ], [ -81.962603388317348, 28.918478612639685 ], [ -81.962608160687779, 28.918480008018964 ], [ -81.962613411940012, 28.91848153256004 ], [ -81.96261835659206, 28.918482955055914 ], [ -81.962622087129773, 28.918484023512846 ], [ -81.962625249578011, 28.918484923081888 ], [ -81.96263472565218, 28.918487593814149 ], [ -81.96264338959098, 28.918490004458086 ], [ -81.962653323028405, 28.918492757425483 ], [ -81.96267495058531, 28.918498751990739 ], [ -81.962687831139021, 28.918502323256732 ], [ -81.962709271043806, 28.91850826723563 ], [ -81.96276457817585, 28.918523598189793 ], [ -81.96300596602822, 28.918590510754612 ], [ -81.963122048142594, 28.918622687954148 ], [ -81.963130924381488, 28.918625126596272 ], [ -81.96314086402009, 28.918627817270945 ], [ -81.963150616017757, 28.918630414956752 ], [ -81.963160025529902, 28.918632884421637 ], [ -81.963168814658744, 28.918635156112469 ], [ -81.963176351722808, 28.91863707917237 ], [ -81.96318241009341, 28.918638606619851 ], [ -81.963186617526532, 28.918639658048487 ], [ -81.963190193282756, 28.918640545987884 ], [ -81.963190930584986, 28.918640725747363 ], [ -81.963191485355793, 28.91864086214645 ], [ -81.963193180430082, 28.91864128398435 ], [ -81.963194387389734, 28.918641581171315 ], [ -81.963195767651257, 28.918641920813752 ], [ -81.963197338648229, 28.918642304721075 ], [ -81.963199187543566, 28.918642756376926 ], [ -81.963200804686508, 28.918643150222149 ], [ -81.963202340818867, 28.918643523292282 ], [ -81.963203605205834, 28.918643829517894 ], [ -81.963205270546183, 28.91864423239922 ], [ -81.963206659014048, 28.91864456663005 ], [ -81.963208651475995, 28.918645045394065 ], [ -81.963210407057829, 28.918645466346064 ], [ -81.963212079578, 28.918645866522422 ], [ -81.963213840288219, 28.91864628567118 ], [ -81.963215314896701, 28.918646634362283 ], [ -81.963216459307603, 28.918646905365257 ], [ -81.963218064149274, 28.918647284770163 ], [ -81.963219378786718, 28.918647594618573 ], [ -81.963220347845336, 28.918647821360882 ], [ -81.96322161120942, 28.91864812036766 ], [ -81.963223023266806, 28.918648449190989 ], [ -81.963223909263107, 28.918648656962269 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "D Angelo Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962333527105329, 28.919103698568904 ], [ -81.962342888472847, 28.91907227421629 ], [ -81.962373986104126, 28.918976615169964 ], [ -81.962470911942702, 28.918630881452891 ], [ -81.962507986192904, 28.918501263408363 ], [ -81.962519810518316, 28.918459314441172 ], [ -81.96252158592759, 28.918453114356282 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "D Angelo Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96252158592759, 28.918453114356282 ], [ -81.962523073886032, 28.918447738889981 ], [ -81.962526093886069, 28.918437028572949 ], [ -81.962528052112361, 28.918430079632994 ], [ -81.962531290786472, 28.918418721528095 ], [ -81.962534820910136, 28.918406821224387 ], [ -81.962538286183658, 28.918395584090327 ], [ -81.962541364250896, 28.918385938498925 ], [ -81.962544791277111, 28.918375532369037 ], [ -81.962550655345041, 28.918358477897172 ], [ -81.962557290047414, 28.918340166741256 ], [ -81.962564712756048, 28.918320769440079 ], [ -81.962572138185905, 28.918302346619381 ], [ -81.962583854624498, 28.918275005795252 ], [ -81.96259024475205, 28.918260871299641 ], [ -81.962598962387602, 28.918242354999062 ], [ -81.962610451691972, 28.918219168282022 ], [ -81.962623463477698, 28.918194361463929 ], [ -81.962633986253337, 28.918175286240366 ], [ -81.962651679555719, 28.91814496318111 ], [ -81.962662919903408, 28.918126705635668 ], [ -81.962671577277888, 28.918113124875113 ], [ -81.962692995914935, 28.91808113901266 ], [ -81.962708679245196, 28.918059027186629 ], [ -81.962719401363159, 28.918044485149128 ], [ -81.962733759519679, 28.918025684379739 ], [ -81.962747551064624, 28.918008298252239 ], [ -81.96277684582607, 28.917973350520334 ], [ -81.962791122107234, 28.917956878549198 ], [ -81.962806090236782, 28.917938624732848 ], [ -81.962824288777426, 28.917914735164228 ], [ -81.962836752300433, 28.917897132107811 ], [ -81.962846225142329, 28.917882974091807 ], [ -81.962854783971721, 28.917869531342987 ], [ -81.962865391272942, 28.917851901602823 ], [ -81.962881733589995, 28.917822225986434 ], [ -81.962889285877552, 28.917807267098404 ], [ -81.96289997914073, 28.917784395938458 ], [ -81.96290857112001, 28.91776426447084 ], [ -81.962917907035049, 28.917740084603736 ], [ -81.962927407356162, 28.91771213769324 ], [ -81.962931400355814, 28.91769904106058 ], [ -81.962939004535158, 28.917670873464377 ], [ -81.962945481960588, 28.917641833937665 ], [ -81.962950889380821, 28.917610963355049 ], [ -81.962954393062347, 28.917583918885764 ], [ -81.962956165788668, 28.917565053256464 ], [ -81.962957482853298, 28.917544229517596 ], [ -81.96295819785685, 28.917517881752566 ], [ -81.962957342123289, 28.917458977790037 ], [ -81.962956188857945, 28.917394705982243 ], [ -81.962955380477979, 28.917349623411173 ], [ -81.96295444039302, 28.917297173551539 ], [ -81.962953743586667, 28.917258405282421 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avecilla Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962166135199922, 28.917269345824717 ], [ -81.962444132324208, 28.917265484563174 ], [ -81.962953743586667, 28.917258405282421 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avecilla Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962953743586667, 28.917258405282421 ], [ -81.962998449761557, 28.917257786022233 ], [ -81.96372556061776, 28.91724768323995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cammarano Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959968130805194, 28.917773002951911 ], [ -81.960100588513782, 28.917856684415074 ], [ -81.960342346397837, 28.918009280334964 ], [ -81.960792966646977, 28.918293703919218 ], [ -81.961106616415307, 28.91849166978368 ], [ -81.961310323329911, 28.918619759172085 ], [ -81.961446679236488, 28.918700672182258 ], [ -81.961547782061928, 28.918757198507475 ], [ -81.96170829186957, 28.918841213053543 ], [ -81.961943863956435, 28.918952581098647 ], [ -81.962157126593965, 28.919042000391169 ], [ -81.962195172089267, 28.919056813297637 ], [ -81.962333527105329, 28.919103698568904 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cammarano Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959479611921154, 28.917882742409073 ], [ -81.959573204053896, 28.917768207871962 ], [ -81.959588420884444, 28.917752614458337 ], [ -81.959605685261792, 28.917738154944196 ], [ -81.95962089089285, 28.917727587315156 ], [ -81.959641716954465, 28.917715732896532 ], [ -81.959664179034633, 28.917705753036685 ], [ -81.959688109895637, 28.917697843482852 ], [ -81.959704526153743, 28.917693868386717 ], [ -81.95972282394051, 28.917690732087205 ], [ -81.959754549780442, 28.917688361354109 ], [ -81.959779219741023, 28.917689142023846 ], [ -81.959799297776073, 28.917691484992467 ], [ -81.959813811130175, 28.917694162847184 ], [ -81.959834978100005, 28.917699625375953 ], [ -81.959857124554276, 28.917707483791894 ], [ -81.959876530374089, 28.917716395266535 ], [ -81.959907402168895, 28.917734634499361 ], [ -81.959968130805194, 28.917773002951911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rosa Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959968130805194, 28.917773002951911 ], [ -81.960029722770514, 28.917687117281037 ], [ -81.960045014499585, 28.917665914260283 ], [ -81.96006112965695, 28.91764223377665 ], [ -81.960077514879259, 28.917614969449509 ], [ -81.960094039343701, 28.917582960886417 ], [ -81.960105861836624, 28.91755599024863 ], [ -81.960111868237433, 28.917540409373817 ], [ -81.960116209975396, 28.9175280627368 ], [ -81.960120294425977, 28.917515398414725 ], [ -81.960124628941415, 28.91750049827596 ], [ -81.960128494839338, 28.917485462653172 ], [ -81.9601314318368, 28.91747248399027 ], [ -81.960134813608803, 28.917454974126112 ], [ -81.960138022437562, 28.917433833368985 ], [ -81.960140700999077, 28.917407537633732 ], [ -81.960142035147626, 28.917373095565193 ], [ -81.960141647825296, 28.917345611496049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mantonya Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961167025551234, 28.917714085467846 ], [ -81.961332897974287, 28.917510103401622 ], [ -81.961347009426632, 28.917493315731285 ], [ -81.961355962719722, 28.917481284382653 ], [ -81.961366321780304, 28.917464390962195 ], [ -81.961374615797709, 28.917449220332504 ], [ -81.961382254552447, 28.917431154946087 ], [ -81.961387139552826, 28.917416368614226 ], [ -81.961391429734249, 28.917398858077469 ], [ -81.96139486935941, 28.917374144261952 ], [ -81.961395496848013, 28.917355270202439 ], [ -81.961394151722331, 28.91728006249107 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reyes Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963665962915215, 28.917927775854864 ], [ -81.963681900143115, 28.917879974698746 ], [ -81.963694015254092, 28.917837812760908 ], [ -81.963707782897373, 28.91777989085519 ], [ -81.963718225467701, 28.917725669268055 ], [ -81.96372781149627, 28.917639886918288 ], [ -81.963730459711684, 28.917592293294877 ], [ -81.96373092832134, 28.917531064477544 ], [ -81.963728947534278, 28.917427191557103 ], [ -81.96372556061776, 28.91724768323995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reyes Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963043320120875, 28.919308815759759 ], [ -81.963068144697473, 28.919199420973346 ], [ -81.963143004126877, 28.918933399490136 ], [ -81.963211090999835, 28.918691859909575 ], [ -81.963223909263107, 28.918648656962269 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arteaga Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96268118208863, 28.919219830214157 ], [ -81.96277090566835, 28.919244694479563 ], [ -81.962869808617597, 28.919270599771231 ], [ -81.963043320120875, 28.919308815759759 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arteaga Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964763073322288, 28.919443890720572 ], [ -81.965136747519836, 28.919443987554111 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cabrera Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964763073322288, 28.919443890720572 ], [ -81.96476419969747, 28.91932262238711 ], [ -81.96476378994717, 28.918839915364824 ], [ -81.964765624648393, 28.91880682412577 ], [ -81.964768247773236, 28.918786412163275 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961455538029639, 28.919405009080169 ], [ -81.961330459307746, 28.919342962746793 ], [ -81.961062005541137, 28.919196895306431 ], [ -81.960642746138362, 28.918955229058515 ], [ -81.960232545221317, 28.918694982293147 ], [ -81.959719796431543, 28.918370999572339 ], [ -81.959128633495126, 28.917993903495312 ], [ -81.958870087857264, 28.917832262848652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968713624774324, 28.920036024513536 ], [ -81.968375044276485, 28.920028540748724 ], [ -81.967445555558626, 28.920032062595716 ], [ -81.966308589950131, 28.920030316154214 ], [ -81.966117863719816, 28.920030853647646 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arteaga Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963043320120875, 28.919308815759759 ], [ -81.963062729191066, 28.919313091678269 ], [ -81.963186571708903, 28.91933876359651 ], [ -81.963295820304523, 28.919359753901059 ], [ -81.9634823342857, 28.919388603438453 ], [ -81.963641934905453, 28.91940844862269 ], [ -81.96377193341219, 28.919421355081393 ], [ -81.963887016660749, 28.919430362183292 ], [ -81.963922361542373, 28.91943254984556 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arteaga Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963922361542373, 28.91943254984556 ], [ -81.963963500668356, 28.919435097268259 ], [ -81.964161275704257, 28.919442742221857 ], [ -81.964396356381513, 28.919444053657685 ], [ -81.964516594227931, 28.919443824783233 ], [ -81.964763073322288, 28.919443890720572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moncada Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963878111744748, 28.920023431922235 ], [ -81.963922361542373, 28.91943254984556 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brier Creek Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988176481349043, 28.917582665087444 ], [ -81.988235620486918, 28.917567805003433 ], [ -81.988376452772002, 28.917542399713135 ], [ -81.98851728010618, 28.917532881013717 ], [ -81.988647275686546, 28.917532892200963 ], [ -81.988773659338676, 28.917532902054766 ], [ -81.988889207857014, 28.917545621536828 ], [ -81.989011979223974, 28.917567870674297 ], [ -81.989113083502332, 28.917596472798198 ], [ -81.989170855254997, 28.917631425286849 ], [ -81.989221405577368, 28.917672731137081 ], [ -81.989250284688183, 28.917729921048316 ], [ -81.989253891221608, 28.917799815950872 ], [ -81.989253744520241, 28.919165945346677 ], [ -81.989235681571969, 28.919232662392375 ], [ -81.989199567530306, 28.91927396027274 ], [ -81.989156232556354, 28.919305727496987 ], [ -81.989116507156112, 28.919331141031581 ], [ -81.98906233959616, 28.919340667531475 ], [ -81.988972064437249, 28.919340660955609 ], [ -81.988809567920896, 28.919340646440062 ], [ -81.98868679309129, 28.919331104164243 ], [ -81.988596522503286, 28.919308857532915 ], [ -81.988506249297743, 28.919273901092229 ], [ -81.988412370885243, 28.919207176220528 ], [ -81.988311269359556, 28.919134096674611 ], [ -81.988249345875076, 28.919105969330467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wake Forest Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988249345875076, 28.919105969330467 ], [ -81.988325736529191, 28.918949828242646 ], [ -81.988340185834772, 28.91890217381831 ], [ -81.988351024618069, 28.918841810228123 ], [ -81.988347420703704, 28.918771915312711 ], [ -81.988322193566148, 28.918352542779072 ], [ -81.988314984268669, 28.91823499184105 ], [ -81.988311384654779, 28.918146034097344 ], [ -81.988300563360397, 28.918038013796536 ], [ -81.988260864635933, 28.917853741458028 ], [ -81.988176481349043, 28.917582665087444 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brier Creek Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987283354242535, 28.917753861949596 ], [ -81.987336466331939, 28.917748815062939 ], [ -81.98749535284162, 28.917729768192512 ], [ -81.987715627060126, 28.917691662199314 ], [ -81.987892568182232, 28.917653554608258 ], [ -81.988058677858987, 28.917612267921534 ], [ -81.988176481349043, 28.917582665087444 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98749342076178, 28.91912490986391 ], [ -81.987442539465121, 28.91901502429484 ], [ -81.987408538518565, 28.91894021437718 ], [ -81.987404932861381, 28.918889379550105 ], [ -81.987404944315571, 28.918797246049603 ], [ -81.987397742577357, 28.918635215459066 ], [ -81.987386930717065, 28.918466830548841 ], [ -81.987376112719843, 28.918339748261172 ], [ -81.987283354242535, 28.917753861949596 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brier Creek Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988249345875076, 28.919105969330467 ], [ -81.98819933353839, 28.919083251382673 ], [ -81.98809822797628, 28.919064180439001 ], [ -81.988004342205372, 28.919054641932512 ], [ -81.987903234161706, 28.919048278786523 ], [ -81.987812957465053, 28.919054624503548 ], [ -81.987708236803158, 28.919070499782173 ], [ -81.98749342076178, 28.91912490986391 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brier Creek Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98749342076178, 28.91912490986391 ], [ -81.987141284697657, 28.91924200696883 ], [ -81.987022115812422, 28.919273764342037 ], [ -81.986953504037615, 28.919292821344907 ], [ -81.986852394382808, 28.919305519325714 ], [ -81.986783784211909, 28.919311866493778 ], [ -81.98671156184902, 28.919311860196235 ], [ -81.98666100815862, 28.919305499357002 ], [ -81.986599624518789, 28.91927689940826 ], [ -81.986556296143647, 28.919245126076831 ], [ -81.986516580443848, 28.919200643349136 ], [ -81.986494923314098, 28.919143454500702 ], [ -81.986480493262178, 28.91903225671787 ], [ -81.986462469591544, 28.918806684357268 ], [ -81.986455269983381, 28.918631944870171 ], [ -81.986444452253451, 28.918511216483999 ], [ -81.986433629030117, 28.918431789819376 ], [ -81.986411974230506, 28.918358716019455 ], [ -81.986393932770312, 28.918260223986618 ], [ -81.986393942135308, 28.918190330285476 ], [ -81.986404783844634, 28.918123612873373 ], [ -81.986426457878125, 28.918060074454605 ], [ -81.986462577188206, 28.917999714489628 ], [ -81.986567303087838, 28.917929829600602 ], [ -81.986686471637299, 28.917882187689671 ], [ -81.986856196562002, 28.917821840027713 ], [ -81.987043971358048, 28.917780555832096 ], [ -81.987202857969123, 28.917761509306899 ], [ -81.987283354242535, 28.917753861949596 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994047451779778, 28.922096995651678 ], [ -81.994045870418901, 28.922095670106692 ], [ -81.993792455623506, 28.921878001944759 ], [ -81.993508873302432, 28.921633788962129 ], [ -81.993261493819347, 28.921421428294266 ], [ -81.992983945328604, 28.921206412807315 ], [ -81.992715449345738, 28.921023248302571 ], [ -81.992564606170575, 28.920922375770687 ], [ -81.992380579263809, 28.920818845694196 ], [ -81.992172417712027, 28.920707349363365 ], [ -81.991961238156748, 28.920598509787816 ], [ -81.991707823748442, 28.920484357217109 ], [ -81.99147250718363, 28.920391439981074 ], [ -81.991249259464141, 28.920314449566401 ], [ -81.991107467883637, 28.920264008044146 ], [ -81.990905335285134, 28.920205598565168 ], [ -81.990751474259142, 28.920165772255622 ], [ -81.990621749131265, 28.920133912054443 ], [ -81.990565634842127, 28.920120994396729 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98771988161765, 28.919960526097295 ], [ -81.987345361401992, 28.919961107211709 ], [ -81.986081260021038, 28.919958326311058 ], [ -81.984542615249381, 28.919960810168512 ], [ -81.98338109239323, 28.919963324900575 ], [ -81.983308685572723, 28.919965970408509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98771988161765, 28.919960526097295 ], [ -81.987718992968965, 28.91970273270741 ], [ -81.987715394583276, 28.91960742099587 ], [ -81.987693736726371, 28.919524816456367 ], [ -81.987632368059266, 28.919378666697373 ], [ -81.98756016253148, 28.919257930878473 ], [ -81.98749342076178, 28.91912490986391 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Nook Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023757813336687, 28.846896483253023 ], [ -82.023841998562773, 28.84680903359115 ], [ -82.023990477564126, 28.846670551000432 ], [ -82.024188496681006, 28.846482460772563 ], [ -82.024257454420578, 28.846409288880238 ], [ -82.024328838716272, 28.846326484411072 ], [ -82.024393775598611, 28.846243313797409 ], [ -82.024453986951585, 28.846151520645684 ], [ -82.024512274246618, 28.846044868630823 ], [ -82.024560123162445, 28.845941013779935 ], [ -82.024592867958731, 28.845849978843479 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016665567581484, 28.843611378485623 ], [ -82.016710774833811, 28.843598115541432 ], [ -82.016752761107938, 28.843578274249033 ], [ -82.016790301846385, 28.843552436745007 ], [ -82.016790334635076, 28.843552404258048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016878147350326, 28.843358322078547 ], [ -82.016876716691712, 28.843338568956849 ], [ -82.016867934649426, 28.843302782729918 ], [ -82.016853211050019, 28.843268541059839 ], [ -82.016832872930024, 28.843236605452308 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Torch Lake Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019030359481306, 28.843523530815098 ], [ -82.018919105553096, 28.843505827290006 ], [ -82.018746599662208, 28.843485602713148 ], [ -82.018573211683801, 28.843472453017 ], [ -82.018399319739743, 28.843466399804026 ], [ -82.018225293752081, 28.843467460168185 ], [ -82.018051512862641, 28.843475631353286 ], [ -82.017708055453767, 28.843498830063695 ], [ -82.017587656939725, 28.843496800557247 ], [ -82.017471063863979, 28.843496815096881 ], [ -82.017349588715334, 28.843491100492233 ], [ -82.01723841753126, 28.843482519692849 ], [ -82.017123448396731, 28.843467254075609 ], [ -82.017058913794017, 28.843450552100499 ], [ -82.017002511906611, 28.843432890862829 ], [ -82.016955871416684, 28.843409501486981 ], [ -82.016923873223078, 28.84339183817691 ], [ -82.016878147350326, 28.843358322078547 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Nook Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019948551571304, 28.845047087906533 ], [ -82.019943243967887, 28.845063240846752 ], [ -82.019914636114038, 28.845200757288222 ], [ -82.019897548425888, 28.845366906767911 ], [ -82.019887975018136, 28.845463171562987 ], [ -82.019886105268853, 28.845559790769343 ], [ -82.019905748704701, 28.845695145621519 ], [ -82.019919271739823, 28.84579104169018 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Nook Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022139777758028, 28.847239114765834 ], [ -82.022363447732587, 28.847265290110496 ], [ -82.022494317934488, 28.847274809107677 ], [ -82.022625187654938, 28.847281947695063 ], [ -82.02275605843586, 28.847279568633216 ], [ -82.022841718321487, 28.847267672133103 ], [ -82.022946414621188, 28.847260533908212 ], [ -82.023060630141046, 28.847246258589667 ], [ -82.023151049292196, 28.847215326059956 ], [ -82.023236710105081, 28.847203429308937 ], [ -82.023319991150515, 28.847172496053805 ], [ -82.023424687630893, 28.847120149227585 ], [ -82.023522245997043, 28.847067801723263 ], [ -82.023581733036778, 28.847017833676261 ], [ -82.02366025484784, 28.846965485690376 ], [ -82.023700706023206, 28.846932174688924 ], [ -82.023757813336687, 28.846896483253023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019347994213234, 28.84048960584434 ], [ -82.020543078560934, 28.840886166221168 ], [ -82.020952053644677, 28.841021941443536 ], [ -82.02205163923216, 28.841384002099378 ], [ -82.023190863119339, 28.841765404341565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023322622650383, 28.841809818212223 ], [ -82.023670418900394, 28.84192276975309 ], [ -82.024735738948664, 28.842271879709536 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022292136257391, 28.844191768286564 ], [ -82.023003157746388, 28.842463081758588 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kiessel Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023672152474248, 28.846856031254475 ], [ -82.023424852103787, 28.846595695630445 ], [ -82.023308067418341, 28.846494499988275 ], [ -82.023195552636821, 28.84638962031811 ], [ -82.023087458438624, 28.846281195560579 ], [ -82.022983929353785, 28.846169371875856 ], [ -82.022885103761141, 28.846054295425102 ], [ -82.022791110816414, 28.84593612319858 ], [ -82.022738092454603, 28.84585985182067 ], [ -82.022692046363716, 28.84578014600994 ], [ -82.022653259588978, 28.845697501092779 ], [ -82.022427641207614, 28.845162612666428 ], [ -82.022409635166014, 28.845109287467626 ], [ -82.022399171495394, 28.845054421718832 ], [ -82.022396412279249, 28.844998841005797 ], [ -82.022401396624034, 28.844943380858265 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kiessel Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022401396624034, 28.844943380858265 ], [ -82.022411967901562, 28.844895900709236 ], [ -82.022428222050991, 28.844849681067988 ], [ -82.02265186648242, 28.844306609919443 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Torch Lake Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020515928493467, 28.844116804725662 ], [ -82.020623736817342, 28.844187152500215 ], [ -82.020728613948478, 28.844260851788256 ], [ -82.020830428696385, 28.844337808776231 ], [ -82.0209062337603, 28.844393534708203 ], [ -82.020985886231202, 28.844444930753156 ], [ -82.021069069396745, 28.844491792128693 ], [ -82.021155449123754, 28.844533930297015 ], [ -82.02124468205804, 28.844571178377716 ], [ -82.021336408449912, 28.844603386637466 ], [ -82.021671503923528, 28.844710367434875 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Torch Lake Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021671503923528, 28.844710367434875 ], [ -82.022401396624034, 28.844943380858265 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brownwood Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020833455944654, 28.846727526360645 ], [ -82.021671503923528, 28.844710367434875 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brownwood Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02265186648242, 28.844306609919443 ], [ -82.022795384915838, 28.844352427259739 ], [ -82.02294639153547, 28.844397069311967 ], [ -82.023099634075166, 28.844435354076076 ], [ -82.023254766103079, 28.844467194078849 ], [ -82.023411440165134, 28.844492520797097 ], [ -82.023569302658899, 28.844511274733325 ], [ -82.024075225838345, 28.844564708322732 ], [ -82.024210139417818, 28.844581492138673 ], [ -82.024343994665202, 28.844603892860977 ], [ -82.024476491318708, 28.844631860016442 ], [ -82.024607334236251, 28.844665328695275 ], [ -82.024736225198879, 28.844704228575377 ], [ -82.024862875204562, 28.844748467678748 ], [ -82.024994460266853, 28.844790272254478 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brownwood Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021671503923528, 28.844710367434875 ], [ -82.021893013262911, 28.844172590786716 ], [ -82.021900513948069, 28.844158051649678 ], [ -82.021910505171547, 28.844144725722657 ], [ -82.021922742070018, 28.844132939678477 ], [ -82.02193692033434, 28.844122985009403 ], [ -82.021952694653407, 28.84411510448961 ], [ -82.021969672565504, 28.844109493980842 ], [ -82.021987441101643, 28.844106293405318 ], [ -82.022005558584624, 28.844105575919222 ], [ -82.022023580252423, 28.844107364150375 ], [ -82.022041061328977, 28.844111612151565 ], [ -82.022292136257391, 28.844191768286564 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brownwood Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022292136257391, 28.844191768286564 ], [ -82.02265186648242, 28.844306609919443 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bucklin Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991791226426912, 28.859820817511526 ], [ -81.991809450022913, 28.859812416380784 ], [ -81.99182680808083, 28.859797138731619 ], [ -81.991839827820144, 28.859777276203747 ], [ -81.991852846903427, 28.859752830869972 ], [ -81.991873676511105, 28.859712342138263 ], [ -81.991913603175732, 28.859635185818252 ], [ -81.992074257792694, 28.859320829029091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eastfield Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985087503179926, 28.859369585590862 ], [ -81.985192509512075, 28.859398983533858 ], [ -81.985259975494969, 28.859414673053585 ], [ -81.985328875256457, 28.859424394855125 ], [ -81.98539853027232, 28.859428055022388 ], [ -81.985468255859317, 28.859425619192081 ], [ -81.985537361176611, 28.859417108042205 ], [ -81.985605168698996, 28.859402607219536 ], [ -81.986660289348833, 28.859127484249846 ], [ -81.986695532159828, 28.859115497948192 ], [ -81.986728129144112, 28.859098677728436 ], [ -81.986757232598123, 28.859077467442088 ], [ -81.986782085003526, 28.859052412910533 ], [ -81.98680203850077, 28.85902416914508 ], [ -81.986816577442269, 28.858993467865851 ], [ -81.986825320443074, 28.858961109381074 ], [ -81.986828041908311, 28.858927933715112 ], [ -81.98682369018762, 28.858482968080867 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eastfield Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98682369018762, 28.858482968080867 ], [ -81.986822180927547, 28.858328837153007 ], [ -81.986817188869139, 28.858230176862143 ], [ -81.986804164200834, 28.858132087836072 ], [ -81.986783175551409, 28.858035072662986 ], [ -81.986754333571369, 28.857939633933942 ], [ -81.986717784784162, 28.857846265219298 ], [ -81.986674690037702, 28.857758297937945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bradshaw Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985202304231208, 28.85875479420698 ], [ -81.985201020740675, 28.858636350343421 ], [ -81.985192352415055, 28.858518147476413 ], [ -81.985176321776621, 28.858400541115071 ], [ -81.985152982095599, 28.858283887673146 ], [ -81.985122399966272, 28.858168539053072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bradshaw Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984867938969856, 28.860058159954452 ], [ -81.984868628837305, 28.85994019094662 ], [ -81.98487163239723, 28.859889079349525 ], [ -81.984880016968035, 28.85983843575519 ], [ -81.984893714829454, 28.859788696870325 ], [ -81.984912603939478, 28.859740293981048 ], [ -81.984936522285125, 28.859693645736243 ], [ -81.984993479837797, 28.859588081624381 ], [ -81.985043856352632, 28.859479955107098 ], [ -81.985087503179926, 28.859369585590862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bradshaw Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985087503179926, 28.859369585590862 ], [ -81.985120637416301, 28.859269557101808 ], [ -81.985148246209036, 28.859168236790666 ], [ -81.985170260866539, 28.859065860154601 ], [ -81.985186632171747, 28.858962666301561 ], [ -81.985197321157429, 28.858858897046904 ], [ -81.985202304231208, 28.85875479420698 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kilgore Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983544988607747, 28.860533479129685 ], [ -81.983819921824349, 28.860578380695475 ], [ -81.983897970481564, 28.860592338848914 ], [ -81.983975434558786, 28.860608623027634 ], [ -81.984126404623183, 28.860639290528194 ], [ -81.984278908128147, 28.860663377534621 ], [ -81.984432572988339, 28.860680826250878 ], [ -81.984587027115225, 28.860691593319487 ], [ -81.984741895341983, 28.860695652528086 ], [ -81.985251897741023, 28.860697956585057 ], [ -81.985291263389996, 28.860695205291726 ], [ -81.985329543393291, 28.860686672803634 ], [ -81.985365653285029, 28.860672601722655 ], [ -81.985398567001482, 28.860653395268297 ], [ -81.985427347634683, 28.860629591113906 ], [ -81.985451180230314, 28.860601874022262 ], [ -81.9854693851196, 28.860571025317505 ], [ -81.985481449693211, 28.860537923790552 ], [ -81.985487024306167, 28.86050350870384 ], [ -81.985485958154001, 28.860468759042018 ], [ -81.985457281828417, 28.860243107639032 ], [ -81.985450056337584, 28.860210428092849 ], [ -81.985436953457764, 28.860179196103456 ], [ -81.985418314392405, 28.86015022738966 ], [ -81.985394623848208, 28.860124276328715 ], [ -81.985366499787347, 28.860102017909462 ], [ -81.985334671905235, 28.860084033293397 ], [ -81.985299972408669, 28.860070789060963 ], [ -81.985263305267608, 28.860062633599316 ], [ -81.985225627768997, 28.860059777249752 ], [ -81.984867938969856, 28.860058159954452 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kilgore Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984867938969856, 28.860058159954452 ], [ -81.984745620114154, 28.860057606456934 ], [ -81.984620237031322, 28.860054178655968 ], [ -81.984495224838, 28.860045039194464 ], [ -81.98437091769118, 28.860030211572521 ], [ -81.984247650769746, 28.86000973643522 ], [ -81.984195125021159, 28.859997397533025 ], [ -81.984144197896441, 28.859980651042996 ], [ -81.984095347012413, 28.859959654927042 ], [ -81.984049028454479, 28.859934605041936 ], [ -81.984005672676716, 28.859905734236346 ], [ -81.983915762559988, 28.859839613398776 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amherst Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98366884973295, 28.863132521064941 ], [ -81.983638453065652, 28.862897223525597 ], [ -81.983617898738672, 28.861816058566433 ], [ -81.983612128343978, 28.86169273904267 ], [ -81.983600077822402, 28.861569771546581 ], [ -81.983563686864727, 28.86127564657226 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amherst Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983544988607747, 28.860533479129685 ], [ -81.983568520839313, 28.860438828493745 ], [ -81.983598887305547, 28.860345698172065 ], [ -81.983635965956523, 28.860254471624451 ], [ -81.983679601946591, 28.860165521478272 ], [ -81.983729616859165, 28.860079211334174 ], [ -81.983785806656797, 28.859995897570645 ], [ -81.983847940657384, 28.85991592302787 ], [ -81.983915762559988, 28.859839613398776 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amherst Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983915762559988, 28.859839613398776 ], [ -81.983993917148666, 28.859762743739772 ], [ -81.984072456048608, 28.859685467141055 ], [ -81.984144795520052, 28.859603636731475 ], [ -81.984210598295363, 28.859517635960387 ], [ -81.984269552731547, 28.859427868130634 ], [ -81.984321382034793, 28.85933475639936 ], [ -81.984365843236532, 28.859238735657005 ], [ -81.984402728216864, 28.859140259745597 ], [ -81.984431862680722, 28.859039791533196 ], [ -81.984453109232774, 28.858937800207134 ], [ -81.984466368400604, 28.858834769394772 ], [ -81.984471578636956, 28.858731179117289 ], [ -81.984468715291939, 28.858627521128803 ], [ -81.984457790615764, 28.85852427635859 ], [ -81.984455997737584, 28.858492116208296 ], [ -81.984459912810934, 28.858460103797825 ], [ -81.984469437316733, 28.858429016901756 ], [ -81.984484343595284, 28.858399613428407 ], [ -81.984504263575573, 28.858372610665455 ], [ -81.984528718502062, 28.858348666335377 ], [ -81.984557104588276, 28.858328362352399 ], [ -81.984588735041143, 28.858312195804682 ], [ -81.984622838013976, 28.858300560005926 ], [ -81.985122399966272, 28.858168539053072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amherst Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985122399966272, 28.858168539053072 ], [ -81.986674690037702, 28.857758297937945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amherst Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986674690037702, 28.857758297937945 ], [ -81.986682557809758, 28.857756218911536 ], [ -81.986776632254674, 28.857727716346801 ], [ -81.986867833535598, 28.85769271413222 ], [ -81.986955582514668, 28.85765143689072 ], [ -81.987040493071376, 28.857604289823431 ], [ -81.987121788138751, 28.857552437735976 ], [ -81.987199133551982, 28.85749609535122 ], [ -81.987272206420513, 28.857435497244239 ], [ -81.987340705378244, 28.857370892429415 ], [ -81.987451802976224, 28.857281203914443 ], [ -81.987528898810979, 28.85722600002326 ], [ -81.987629788131997, 28.857174604220539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brinkley Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983563686864727, 28.86127564657226 ], [ -81.983755497793695, 28.861257254905237 ], [ -81.983835294311731, 28.861253224066353 ], [ -81.983915141964559, 28.861256395378991 ], [ -81.983994202338721, 28.86126673355276 ], [ -81.984119961409633, 28.861287122593851 ], [ -81.984246421158161, 28.861303843733459 ], [ -81.984373433976842, 28.861316877101714 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brinkley Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984373433976842, 28.861316877101714 ], [ -81.984494793638419, 28.861325850227157 ], [ -81.984616412123387, 28.861331458580633 ], [ -81.98473817257296, 28.861333695831984 ], [ -81.985081956715604, 28.861335250563542 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brinkley Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985081956715604, 28.861335250563542 ], [ -81.985248819715835, 28.861336004487292 ], [ -81.985377124245417, 28.861334264527624 ], [ -81.985505239808333, 28.861327886581474 ], [ -81.985632950114322, 28.861316884160619 ], [ -81.985760038873309, 28.861301271679981 ], [ -81.985786290218172, 28.861297562399578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brinkley Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986311181427268, 28.861223382020075 ], [ -81.986618246048437, 28.861179985284384 ], [ -81.986740428867535, 28.861164889309389 ], [ -81.986863194315319, 28.861154053059586 ], [ -81.986986350733119, 28.861147491853863 ], [ -81.988158387622676, 28.861105467194371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brinkley Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985786290218172, 28.861297562399578 ], [ -81.986311181427268, 28.861223382020075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Olenda Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986230264251844, 28.860586695131829 ], [ -81.986168232410407, 28.86009858625016 ], [ -81.98616724101457, 28.860062693379561 ], [ -81.986173335184034, 28.860027193745879 ], [ -81.98618633129621, 28.85999316287603 ], [ -81.986205832542367, 28.859961629354054 ], [ -81.98623124840617, 28.859933552265872 ], [ -81.986261812094284, 28.859909778793039 ], [ -81.986296594888273, 28.859891029777955 ], [ -81.986334542021439, 28.85987787717033 ], [ -81.987602015522114, 28.859547375970941 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Olenda Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986311181427268, 28.861223382020075 ], [ -81.986230264251844, 28.860586695131829 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magellan Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985936170634631, 28.861971004014269 ], [ -81.985906423299397, 28.861890241943883 ], [ -81.985882393592718, 28.861808018738383 ], [ -81.985864174732612, 28.861724646607922 ], [ -81.985786290218172, 28.861297562399578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magellan Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986255375337151, 28.862597026121286 ], [ -81.985986032800412, 28.862078778667001 ], [ -81.985959804516341, 28.862025355893259 ], [ -81.985936170634631, 28.861971004014269 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magellan Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986517201694795, 28.862987293947015 ], [ -81.986391723534595, 28.862825046029055 ], [ -81.986347900454504, 28.862766445923594 ], [ -81.9863110888856, 28.862704220163252 ], [ -81.986255375337151, 28.862597026121286 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Luraville Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992948656417894, 28.859068871217985 ], [ -81.993229036915636, 28.858717944448216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Luraville Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992634351314763, 28.859606490426629 ], [ -81.992666438470238, 28.859515109516416 ], [ -81.992698961456767, 28.85943390030047 ], [ -81.992738600532604, 28.85935517551146 ], [ -81.992785113757876, 28.859279423276803 ], [ -81.992838213073938, 28.859207105553722 ], [ -81.992948656417894, 28.859068871217985 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Luraville Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992220323086471, 28.860701210131918 ], [ -81.99222776895931, 28.860616706155856 ], [ -81.992243070164534, 28.860533025540871 ], [ -81.99226612516739, 28.860450733120931 ], [ -81.992296780161439, 28.860370385604977 ], [ -81.992334824969774, 28.860292525260643 ], [ -81.99243974965195, 28.860099998483918 ], [ -81.992477562320445, 28.860026001750526 ], [ -81.992511199326799, 28.859950460023914 ], [ -81.992540575592571, 28.859873553763265 ], [ -81.992634351314763, 28.859606490426629 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Luraville Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992438799339297, 28.861450878889062 ], [ -81.992290165548525, 28.861091281291444 ], [ -81.992262597400014, 28.861015630486996 ], [ -81.992241724582158, 28.86093833607055 ], [ -81.992227673117597, 28.860859857325401 ], [ -81.992220523928509, 28.860780658042863 ], [ -81.992220323086471, 28.860701210131918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Luraville Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992686633219733, 28.862050473096193 ], [ -81.992438799339297, 28.861450878889062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Luraville Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994300799036182, 28.863291666698068 ], [ -81.993878707919492, 28.863150149301674 ], [ -81.993788959564128, 28.863122828743027 ], [ -81.993697489970145, 28.863100357024138 ], [ -81.993225547972884, 28.862997921191422 ], [ -81.99318394817081, 28.862986122324532 ], [ -81.993144625246984, 28.862969323896266 ], [ -81.993108352031456, 28.862947862508445 ], [ -81.993075834722035, 28.862922154162707 ], [ -81.993047712883353, 28.862892702381085 ], [ -81.993024532797889, 28.862860084669823 ], [ -81.993006751567009, 28.862824938082259 ], [ -81.992934469935719, 28.862650067698056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Luraville Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992934469935719, 28.862650067698056 ], [ -81.992686633219733, 28.862050473096193 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stepping Stone Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993387704104492, 28.863775116353587 ], [ -81.994000914731458, 28.863937232901677 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stepping Stone Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994000914731458, 28.863937232901677 ], [ -81.994128563056876, 28.863972494387294 ], [ -81.99420780940153, 28.863992380171993 ], [ -81.994288136352168, 28.864008558390214 ], [ -81.994507901221979, 28.864047484138794 ], [ -81.994544835437722, 28.86404655630702 ], [ -81.994583888560697, 28.864041783835653 ], [ -81.994621857378363, 28.864034146493481 ], [ -81.994656572205258, 28.864018869200631 ], [ -81.994690201693757, 28.864000726137522 ], [ -81.994719491438886, 28.863979718076198 ], [ -81.994746614613462, 28.863952981193833 ], [ -81.994798690461437, 28.863870858273504 ], [ -81.99486269826707, 28.863770592272591 ], [ -81.994918026926882, 28.863676055533343 ], [ -81.994962509183068, 28.863575788722581 ], [ -81.995437268905306, 28.862471510501084 ], [ -81.995443779189742, 28.862438279769261 ], [ -81.995446384191254, 28.862406193924691 ], [ -81.995442480376937, 28.86237639970528 ], [ -81.995435974216832, 28.862344313542039 ], [ -81.995421656429997, 28.862315664883379 ], [ -81.995408640281838, 28.862289308121444 ], [ -81.995390417126373, 28.862264096198352 ], [ -81.995366985941615, 28.862240031818867 ], [ -81.995340766619677, 28.86221950978199 ], [ -81.995142278825909, 28.862122106937441 ], [ -81.995073263733616, 28.862090199781619 ], [ -81.995002526541967, 28.862061363968067 ], [ -81.994930243540708, 28.862035669880658 ], [ -81.994868017499684, 28.862015124696693 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stepping Stone Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994868017499684, 28.862015124696693 ], [ -81.994289385757455, 28.861831400664492 ], [ -81.994257928587132, 28.861818986293862 ], [ -81.994228640522962, 28.861802749850433 ], [ -81.994202605946782, 28.861783652337515 ], [ -81.99417874247311, 28.861761686490564 ], [ -81.994161386821432, 28.861736856112671 ], [ -81.994142946913101, 28.861709164477379 ], [ -81.99412884612461, 28.861675739792197 ], [ -81.994119086389247, 28.8616384967481 ], [ -81.994104989692545, 28.861537272015987 ], [ -81.994098489876833, 28.861407400363664 ], [ -81.994097411601629, 28.861288032676391 ], [ -81.994102843788383, 28.861155296738509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stepping Stone Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994102843788383, 28.861155296738509 ], [ -81.994111529533924, 28.861017785949048 ], [ -81.994129980626269, 28.860873589517443 ], [ -81.994154937310469, 28.860744672991874 ], [ -81.99419074318314, 28.860600478219073 ], [ -81.994248247855865, 28.860418088035036 ], [ -81.994307917872376, 28.860239516467722 ], [ -81.994371930210292, 28.860065720050596 ], [ -81.994442334050746, 28.859891752431391 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stepping Stone Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994442334050746, 28.859891752431391 ], [ -81.994525873182027, 28.859689309491483 ], [ -81.994614255042464, 28.859485177578456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Touchstone Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994300799036182, 28.863291666698068 ], [ -81.994428587919757, 28.863006946532135 ], [ -81.994608687719051, 28.862594419722853 ], [ -81.994868017499684, 28.862015124696693 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Touchstone Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994000914731458, 28.863937232901677 ], [ -81.994061383288511, 28.863730011618529 ], [ -81.994086782521364, 28.863669013405818 ], [ -81.994118608363735, 28.863610397558062 ], [ -81.994156577874506, 28.86355468919907 ], [ -81.994204020139065, 28.863486609757029 ], [ -81.994245553370263, 28.863415602062318 ], [ -81.994280944878028, 28.863342061319315 ], [ -81.994300799036182, 28.863291666698068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abana Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977890137908432, 28.857642358079715 ], [ -81.97786717149107, 28.857463253115164 ], [ -81.97786124398101, 28.857402480106739 ], [ -81.97786299540094, 28.857341500836792 ], [ -81.977872407126696, 28.857281067824061 ], [ -81.97788936009232, 28.857221923644136 ], [ -81.977913649140618, 28.857164798224954 ], [ -81.977990863466374, 28.857009939341836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abana Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977990863466374, 28.857009939341836 ], [ -81.978478769711415, 28.856031395019208 ], [ -81.978501821614245, 28.855976575576207 ], [ -81.978517372451307, 28.855919743688002 ], [ -81.978525205807642, 28.855861695155429 ], [ -81.978525211859704, 28.855803238427431 ], [ -81.978517390450307, 28.855745189187694 ], [ -81.978501851090442, 28.855688356820021 ], [ -81.97847880988644, 28.855633531775659 ], [ -81.977800409024923, 28.854272239714248 ], [ -81.977787325149833, 28.854238180939262 ], [ -81.977781156691975, 28.854202639017981 ], [ -81.97778209199484, 28.85416669674883 ], [ -81.977790103144315, 28.854131439600142 ], [ -81.977804946996812, 28.854097945785028 ], [ -81.977826172367102, 28.854067228515355 ], [ -81.977853132330893, 28.854040223371666 ], [ -81.977885011906181, 28.854017749509129 ], [ -81.977920837281545, 28.854000491613455 ], [ -81.977921402056694, 28.854000262521005 ], [ -81.97792757458015, 28.853997889573254 ], [ -81.977928995224673, 28.853997340303465 ], [ -81.978038711227398, 28.853952713176948 ], [ -81.978146388351576, 28.853904383469921 ], [ -81.978251859512909, 28.853852424246721 ], [ -81.978354968901613, 28.853796911280966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abana Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97888629345546, 28.853420511034834 ], [ -81.978971234096662, 28.853342489429512 ], [ -81.979052625955205, 28.853261590665305 ], [ -81.979130347044347, 28.853177936540767 ], [ -81.979682593869782, 28.852559112185592 ], [ -81.9797114260884, 28.852523699266136 ], [ -81.979736609044522, 28.8524861924395 ], [ -81.979757948978374, 28.852446880416132 ], [ -81.979792321590764, 28.852375666641667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abana Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978354968901613, 28.853796911280966 ], [ -81.978468518242281, 28.853729965902591 ], [ -81.978578631818635, 28.853658714077721 ], [ -81.978685099490562, 28.853583289322394 ], [ -81.978787719316671, 28.853503836884215 ], [ -81.97888629345546, 28.853420511034834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kilarny Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980334745631154, 28.855993009518123 ], [ -81.980195440599431, 28.855793925164107 ], [ -81.980139522138913, 28.855705885297823 ], [ -81.980072897874166, 28.855604758586789 ], [ -81.980018171638903, 28.855506011191807 ], [ -81.979528061629267, 28.854562729675919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kilarny Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979236872690834, 28.853978440433345 ], [ -81.97905789901219, 28.853619311320791 ], [ -81.979034589784462, 28.853577908103528 ], [ -81.979006999112883, 28.853538599363691 ], [ -81.978975363684228, 28.853501726207249 ], [ -81.978939961184082, 28.853467610798067 ], [ -81.97888629345546, 28.853420511034834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kilarny Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979528061629267, 28.854562729675919 ], [ -81.979236872690834, 28.853978440433345 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Partridge Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980448626785616, 28.854905024104546 ], [ -81.981167132748396, 28.854261802539011 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Partridge Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981167132748396, 28.854261802539011 ], [ -81.981460000278162, 28.853992490904076 ], [ -81.981510824675851, 28.853940843670703 ], [ -81.981555576159536, 28.853885008884337 ], [ -81.981627184969454, 28.853785508906995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fieldbrook Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981246285358651, 28.855279298018797 ], [ -81.981336745286214, 28.855154409993673 ], [ -81.981433126406628, 28.855027097331263 ], [ -81.981505939204993, 28.85491145716923 ], [ -81.981530209462846, 28.854870768366936 ], [ -81.981547342038311, 28.854825082512292 ], [ -81.981556622054669, 28.854782965994062 ], [ -81.981560190835069, 28.854737280973346 ], [ -81.981558764034432, 28.854692308987023 ], [ -81.981548056735861, 28.854646623801859 ], [ -81.981530924924172, 28.854602842494906 ], [ -81.981509033838904, 28.854562390935993 ], [ -81.981477624797009, 28.854525271171081 ], [ -81.981444312164257, 28.854490054998518 ], [ -81.981167132748396, 28.854261802539011 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fieldbrook Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980334745631154, 28.855993009518123 ], [ -81.980454749631491, 28.855933763708663 ], [ -81.980578106289116, 28.855851527547955 ], [ -81.980700319577494, 28.855765863251758 ], [ -81.980814538486669, 28.855673348300439 ], [ -81.980920762342564, 28.855583116747479 ], [ -81.981034980677592, 28.855486031431731 ], [ -81.98113206657969, 28.855386662575611 ], [ -81.981246285358651, 28.855279298018797 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fieldbrook Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977990863466374, 28.857009939341836 ], [ -81.978096614282776, 28.857050804918156 ], [ -81.97815487809784, 28.857070010968485 ], [ -81.978215194066536, 28.857083431749118 ], [ -81.978276825281029, 28.857090905625249 ], [ -81.978339017393665, 28.857092340438005 ], [ -81.978401009891044, 28.857087718017823 ], [ -81.978462041219316, 28.857077095087714 ], [ -81.97852136825874, 28.857060602363944 ], [ -81.97866478759299, 28.85700944566042 ], [ -81.978805291030255, 28.856952357492865 ], [ -81.978942559769081, 28.856889465947386 ], [ -81.979076284231923, 28.85682091354948 ], [ -81.979206167141086, 28.85674685365516 ], [ -81.979331910193935, 28.856667453155662 ], [ -81.979453234561731, 28.856582893382871 ], [ -81.979569867567434, 28.856493360181698 ], [ -81.979653669051075, 28.856427654471208 ], [ -81.979752728057079, 28.856354427598372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fieldbrook Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979752728057079, 28.856354427598372 ], [ -81.979854285218536, 28.856283719360864 ], [ -81.97997223105213, 28.856207062798337 ], [ -81.980093120637633, 28.856134044662976 ], [ -81.980334745631154, 28.855993009518123 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greywood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982213665032489, 28.8542788973905 ], [ -81.982243678069253, 28.854347092190444 ], [ -81.982266714189024, 28.854417358653038 ], [ -81.982282592064649, 28.854489143644702 ], [ -81.982291186739218, 28.854561885917551 ], [ -81.982292429627535, 28.854635011597811 ], [ -81.982267843491456, 28.855371993089921 ], [ -81.982269210670225, 28.85543756738728 ], [ -81.982277669383365, 28.855502731172905 ], [ -81.982293140827707, 28.855566888011417 ], [ -81.982339298382939, 28.855721553704342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greywood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979528061629267, 28.854562729675919 ], [ -81.979589682291788, 28.854538929056389 ], [ -81.979681192528275, 28.854499714358163 ], [ -81.979768896363865, 28.854454255973046 ], [ -81.979852247452314, 28.854402838954577 ], [ -81.979930720966806, 28.854345784452597 ], [ -81.980918496756132, 28.853567792633054 ], [ -81.980948671704709, 28.853547642139528 ], [ -81.980982141899347, 28.853532034312341 ], [ -81.981018028922179, 28.853521379573341 ], [ -81.981055398012202, 28.853515952991412 ], [ -81.981093272412295, 28.853515899698461 ], [ -81.981130661044077, 28.853521217749726 ], [ -81.981166588227254, 28.853531770760156 ], [ -81.98120011417808, 28.853547281591158 ], [ -81.981627184969142, 28.85378551071161 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greywood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981627184969142, 28.85378551071161 ], [ -81.981857247163632, 28.853913841796778 ], [ -81.981922330148848, 28.853953637757744 ], [ -81.981983362934287, 28.853998132347201 ], [ -81.982039906916938, 28.854047005193284 ], [ -81.982091561417519, 28.854099909762709 ], [ -81.982137951382768, 28.854156466140392 ], [ -81.98217875095672, 28.854216270957867 ], [ -81.982213665032489, 28.8542788973905 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barrineau Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977418653581395, 28.853494799365901 ], [ -81.977447289207618, 28.853495949214633 ], [ -81.977476576401585, 28.85349366228607 ], [ -81.977513264072186, 28.853483679027274 ], [ -81.977647230525463, 28.853431936192781 ], [ -81.977766848754257, 28.853382261634891 ], [ -81.977882925440156, 28.853329605169069 ], [ -81.977998348573649, 28.853270034130059 ], [ -81.978106831042581, 28.853205116600783 ], [ -81.97821531569582, 28.853134086767682 ], [ -81.978309914348031, 28.853065346454105 ], [ -81.97841059073464, 28.852985912028021 ], [ -81.978499987167154, 28.852900364401396 ], [ -81.978596327800119, 28.85280182823622 ], [ -81.978861920934435, 28.852504120469451 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barrineau Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978861920934435, 28.852504120469451 ], [ -81.979284033620004, 28.85200632136122 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hollyhock Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97648412805718, 28.851836001037288 ], [ -81.976761566753538, 28.852190627506079 ], [ -81.976787592211537, 28.852216416296685 ], [ -81.976815245966435, 28.852238860517662 ], [ -81.97684073482354, 28.852253668147959 ], [ -81.976870018000668, 28.852263221401596 ], [ -81.976903639131777, 28.852274686479493 ], [ -81.976937262149875, 28.852282332992743 ], [ -81.976974142543199, 28.852284248613351 ], [ -81.977012107316583, 28.852281389409601 ], [ -81.977045734174894, 28.852271846075848 ], [ -81.977131332735325, 28.852237629048606 ], [ -81.977211415500349, 28.852193073315437 ], [ -81.977287435645977, 28.852143305129573 ], [ -81.977358951375933, 28.85208860684466 ], [ -81.977425556760409, 28.852029296010897 ], [ -81.977486867389999, 28.851965714544626 ], [ -81.978242667959691, 28.851118803716741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hollyhock Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975802567874368, 28.850220775287209 ], [ -81.975714382061966, 28.850514554578748 ], [ -81.975706123289967, 28.850568089583401 ], [ -81.975704424643197, 28.850622094975137 ], [ -81.975709304725527, 28.850675950873637 ], [ -81.975720706300251, 28.850729035579192 ], [ -81.975738501410163, 28.850780740913091 ], [ -81.975762484203088, 28.850830471313909 ], [ -81.975792377078363, 28.850877653764162 ], [ -81.976095417881481, 28.851297486870763 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hollyhock Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976095417881481, 28.851297486870763 ], [ -81.97648412805718, 28.851836001037288 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allaire Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97648412805718, 28.851836001037288 ], [ -81.97678705810965, 28.851666518768845 ], [ -81.976844334951238, 28.851630322767182 ], [ -81.976896613573913, 28.85158867595403 ], [ -81.976943232804842, 28.85154210787471 ], [ -81.97704244819802, 28.851430935603062 ], [ -81.977103247323328, 28.851357990090854 ], [ -81.977158464562493, 28.851281686120046 ], [ -81.977207863102393, 28.851202348487092 ], [ -81.977436813039006, 28.850804088791868 ], [ -81.97745774453611, 28.850774275625525 ], [ -81.977484107105809, 28.850748010332026 ], [ -81.977515140120175, 28.850726054326515 ], [ -81.977549945647922, 28.850709041776202 ], [ -81.977587523304052, 28.85069746156055 ], [ -81.977626784598797, 28.85069165186011 ], [ -81.977666595986861, 28.850691776704167 ], [ -81.977705807561037, 28.850697835900824 ], [ -81.977743288925055, 28.850709650606344 ], [ -81.977777957884882, 28.850726884082672 ], [ -81.977808810170885, 28.850749034483609 ], [ -81.978242667959691, 28.851118803716741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allaire Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978242667959691, 28.851118803716741 ], [ -81.979284033620004, 28.85200632136122 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allaire Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979284033620004, 28.85200632136122 ], [ -81.979554560177476, 28.852236878526604 ], [ -81.979608309623956, 28.852278652637739 ], [ -81.979666182132917, 28.852315911314733 ], [ -81.979727690938091, 28.852348340476421 ], [ -81.979792321590764, 28.852375666641667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allaire Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979792321590764, 28.852375666641667 ], [ -81.979865882890437, 28.852399425501304 ], [ -81.979941775101537, 28.852416574380495 ], [ -81.980607847572799, 28.85253609355771 ], [ -81.980685135017509, 28.852552560077658 ], [ -81.980760855525403, 28.85257392765098 ], [ -81.980834614541507, 28.852600084337936 ], [ -81.98090601853977, 28.852630890228195 ], [ -81.980974691420101, 28.852666182856989 ], [ -81.981430052753169, 28.852920196165798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allaire Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981430052753169, 28.852920196165798 ], [ -81.98190486191524, 28.853185051759663 ], [ -81.982024917260247, 28.853247984795232 ], [ -81.98214874748399, 28.853304964816846 ], [ -81.982275975436693, 28.853355817619349 ], [ -81.982406205514707, 28.853400385237759 ], [ -81.982539043132533, 28.853438534070804 ], [ -81.98267407525168, 28.853470144953064 ], [ -81.982810890878042, 28.853495119473902 ], [ -81.98294906773809, 28.853513381780441 ], [ -81.983088181503803, 28.853524876774223 ], [ -81.983454287981104, 28.853546139398667 ], [ -81.983462163292103, 28.85354658430753 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allaire Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983462163292103, 28.85354658430753 ], [ -81.983593799631862, 28.853550481346137 ], [ -81.983725471891034, 28.853547698494577 ], [ -81.983856743432426, 28.853538247429924 ], [ -81.983987181715875, 28.853522157877563 ], [ -81.984116349073801, 28.853499483023842 ], [ -81.984149659933223, 28.85349040798388 ], [ -81.98418107024429, 28.853477080145769 ], [ -81.984209888146353, 28.853459798092114 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allaire Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984209888146353, 28.853459798092114 ], [ -81.984239138622939, 28.853435390578266 ], [ -81.984263205738472, 28.853406931096639 ], [ -81.984281375006276, 28.853375260514525 ], [ -81.984293112310453, 28.853341317168923 ], [ -81.984298066984834, 28.853306106188416 ], [ -81.984296096414525, 28.853270667915062 ], [ -81.984287253740263, 28.853236051735866 ], [ -81.984140972754162, 28.852830231638773 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allaire Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984140972754162, 28.852830231638773 ], [ -81.984122213898729, 28.852778189849698 ], [ -81.9840752986224, 28.852636745187304 ], [ -81.984035877790262, 28.852493538296454 ], [ -81.984004037416597, 28.852348876880086 ], [ -81.983979845065576, 28.852203072246926 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allaire Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983979845065576, 28.852203072246926 ], [ -81.983965437002183, 28.85207958460008 ], [ -81.983956515277825, 28.851955696082307 ], [ -81.983953097266621, 28.851831595278576 ], [ -81.983955181894643, 28.851707470771036 ], [ -81.983962770137182, 28.851583513848322 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brunell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982527806823768, 28.851252286210546 ], [ -81.982633087292797, 28.851262848778905 ], [ -81.982690265945024, 28.851272884416812 ], [ -81.982746431394645, 28.851286646421812 ], [ -81.982801277219608, 28.851304058059782 ], [ -81.983074574368331, 28.851401118756165 ], [ -81.983217508491791, 28.851448155918597 ], [ -81.983362999871929, 28.851488665066856 ], [ -81.983510665194686, 28.851522535161866 ], [ -81.983660112941678, 28.851549675918154 ], [ -81.983810947489545, 28.851570020511346 ], [ -81.983962770137595, 28.851583511141406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brunell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983962770137595, 28.851583511141406 ], [ -81.983967248850021, 28.851583804025822 ], [ -81.984448781348888, 28.851614959802596 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anna Maria Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984821256040163, 28.855409077330297 ], [ -81.984868895819403, 28.855172289917043 ], [ -81.984891091345787, 28.855048959957163 ], [ -81.98490818485979, 28.854925004117355 ], [ -81.984920154832437, 28.854800581202863 ], [ -81.984926982808787, 28.854675857237034 ], [ -81.984941579302131, 28.854247666354492 ], [ -81.984943131311041, 28.854120616541987 ], [ -81.98493912624194, 28.853993610313392 ], [ -81.984929572286845, 28.853866833544021 ], [ -81.984914480712121, 28.853740473913479 ], [ -81.984893877132336, 28.853614720004682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anna Maria Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984893877132336, 28.853614720004682 ], [ -81.984869504825937, 28.853497206417817 ], [ -81.984840317443258, 28.85338054766347 ], [ -81.984806355973262, 28.853264895330536 ], [ -81.984767659354759, 28.853150399202608 ], [ -81.98472225347993, 28.853024434895502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anna Maria Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98472225347993, 28.853024434895502 ], [ -81.984586714709565, 28.852648415133082 ], [ -81.984545140281739, 28.852522790466107 ], [ -81.984510402248233, 28.852395568593952 ], [ -81.984482576384551, 28.852267035561471 ], [ -81.98446172309059, 28.852137482824514 ], [ -81.984447896615791, 28.852007203641822 ], [ -81.984441122511384, 28.851876493974753 ], [ -81.984441418129819, 28.851745645271006 ], [ -81.984448781348888, 28.851614959802596 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anna Maria Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984448781348888, 28.851614959802596 ], [ -81.984463540438924, 28.851482246808665 ], [ -81.984485591430726, 28.851350317858788 ], [ -81.984514877881139, 28.851219486042854 ], [ -81.984551334125172, 28.851090058132574 ], [ -81.98464103626489, 28.850801704225091 ], [ -81.984689519177067, 28.850637959357201 ], [ -81.984733414739708, 28.850473211482001 ], [ -81.984772690161563, 28.850307565267592 ], [ -81.984847403143732, 28.849971851960696 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anna Maria Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984847403143732, 28.849971851960696 ], [ -81.984880830050884, 28.849821654318504 ], [ -81.984910592018835, 28.849698606632547 ], [ -81.984944906243996, 28.849576480705203 ], [ -81.984983732722455, 28.849455406460532 ], [ -81.98502703042584, 28.849335515626819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orangedale Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986852056219632, 28.855071031329551 ], [ -81.986478683098881, 28.855335852118351 ], [ -81.986446421050999, 28.855355071550978 ], [ -81.986410987513125, 28.855369321658809 ], [ -81.98637336134513, 28.855378205525138 ], [ -81.986334582883657, 28.855381477827788 ], [ -81.986295726267969, 28.855379048445581 ], [ -81.986257862541137, 28.855370986966317 ], [ -81.98622204017714, 28.855357511856887 ], [ -81.986189249206831, 28.855338996775671 ], [ -81.986160394571499, 28.855315955230349 ], [ -81.986136276651067, 28.85528902343162 ], [ -81.986070043376458, 28.855196363336287 ], [ -81.986008658450714, 28.855101146583049 ], [ -81.985931343514821, 28.854974607307081 ], [ -81.985890530690497, 28.854904076123322 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orangedale Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985890530690497, 28.854904076123322 ], [ -81.985849103377461, 28.854823225197578 ], [ -81.9858123243731, 28.854740650447308 ], [ -81.985593967465576, 28.854211777872713 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orangedale Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985593967465576, 28.854211777872713 ], [ -81.985489889571937, 28.85395970041602 ], [ -81.985455224161399, 28.853865248743741 ], [ -81.985428386321615, 28.85376884262039 ], [ -81.985409518423069, 28.853670982845561 ], [ -81.985392239503412, 28.853556448638663 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Teaberry Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985593967465576, 28.854211777872713 ], [ -81.985710139412603, 28.854174601851682 ], [ -81.985768385330346, 28.85415904872421 ], [ -81.985828199588639, 28.854149128829587 ], [ -81.986319514527139, 28.854091678903398 ], [ -81.986385432618491, 28.854085137618039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Teaberry Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986385432618491, 28.854085137618039 ], [ -81.986497519811905, 28.854079318314678 ], [ -81.986609797779209, 28.854080127271548 ], [ -81.986721760236037, 28.854087558121627 ], [ -81.986832906025754, 28.854101578333214 ], [ -81.987193890382088, 28.854158043663414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Teaberry Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987193890382088, 28.854158043663414 ], [ -81.987209008571384, 28.854160407349976 ], [ -81.987260934121494, 28.854165405679545 ], [ -81.987313155618963, 28.854164257514075 ], [ -81.987364735257003, 28.854156983517406 ], [ -81.987414749564422, 28.854143713534924 ], [ -81.987462304780195, 28.854124685692906 ], [ -81.98778696837023, 28.853970935962554 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Olustee Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988072652121872, 28.855712611975445 ], [ -81.988803298661026, 28.8558880763063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Olustee Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987366632091735, 28.855469526376872 ], [ -81.987465672652831, 28.855519668699362 ], [ -81.987567785629281, 28.855564780884883 ], [ -81.98767264305171, 28.855604715820522 ], [ -81.987779906696787, 28.855639348048495 ], [ -81.987889231163834, 28.855668562939034 ], [ -81.988072652121872, 28.855712611975445 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Olustee Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986385432618491, 28.854085137618039 ], [ -81.986408861873215, 28.85424042041948 ], [ -81.986425868802328, 28.854328608048007 ], [ -81.986450068789807, 28.854415481745484 ], [ -81.986481332773124, 28.854500590342404 ], [ -81.986519497865061, 28.854583488981049 ], [ -81.986564364277811, 28.854663744529024 ], [ -81.9866469385031, 28.854798889258962 ], [ -81.98670892044656, 28.854893254009628 ], [ -81.986777380460737, 28.854984081434687 ], [ -81.986852056219632, 28.855071031329551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Olustee Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986852056219632, 28.855071031329551 ], [ -81.986926576589411, 28.855147869033637 ], [ -81.98700595364808, 28.855220841694202 ], [ -81.987089928121591, 28.855289711069133 ], [ -81.987178226382653, 28.855354252449715 ], [ -81.987270560450796, 28.855414255562977 ], [ -81.987366632091735, 28.855469526376872 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Resthaven Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985392239503412, 28.853556448638663 ], [ -81.986224090580706, 28.853459180157927 ], [ -81.986356317365946, 28.853446990066566 ], [ -81.986489107984951, 28.853441267627176 ], [ -81.986622054547766, 28.853442028136346 ], [ -81.986754749166465, 28.853449272455492 ], [ -81.986886784981365, 28.853462974378395 ], [ -81.987035120250582, 28.853482050986155 ], [ -81.987119016836843, 28.853491512570915 ], [ -81.987203238661806, 28.853498367374645 ], [ -81.987265324533482, 28.853505527699017 ], [ -81.987326122378704, 28.853518720685631 ], [ -81.987384876871545, 28.853537782947466 ], [ -81.987440860366078, 28.853562478916913 ], [ -81.987493375970502, 28.853592499943545 ], [ -81.98754177496869, 28.853627476927816 ], [ -81.987585456820653, 28.853666974004732 ], [ -81.987623881459868, 28.853710500274495 ], [ -81.987656569292014, 28.853757520630104 ], [ -81.98778696837023, 28.853970935962554 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Resthaven Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984991967576789, 28.853603251034595 ], [ -81.984992032147133, 28.853603242921107 ], [ -81.985392239503412, 28.853556448638663 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Resthaven Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98778696837023, 28.853970935962554 ], [ -81.987923485517214, 28.854194365500557 ], [ -81.987957597025371, 28.854243188714882 ], [ -81.987997890271018, 28.854288213772403 ], [ -81.988043824174468, 28.854328834270071 ], [ -81.988094785900969, 28.854364509666578 ], [ -81.988150089836466, 28.854394759868935 ], [ -81.988208993984614, 28.854419179671108 ], [ -81.988270709191369, 28.854437439657602 ], [ -81.988977842340205, 28.854607258884478 ], [ -81.988990340840729, 28.854610593936879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Resthaven Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988990340840729, 28.854610593936879 ], [ -81.989027078503867, 28.854624555632778 ], [ -81.98906058198888, 28.854643818095639 ], [ -81.989089872563213, 28.85466782091601 ], [ -81.989114096547283, 28.854695858424122 ], [ -81.989132548883489, 28.854727117588109 ], [ -81.989144690559272, 28.854760685233494 ], [ -81.989150163977854, 28.854795581429375 ], [ -81.989148817553897, 28.854830789266305 ], [ -81.989140682138498, 28.854865281923342 ], [ -81.989001890174137, 28.855274400923243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Resthaven Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988803298661026, 28.8558880763063 ], [ -81.988773128639878, 28.856019143489664 ], [ -81.988749017834294, 28.856151180251647 ], [ -81.988731001138603, 28.856283968240572 ], [ -81.988704916240607, 28.85655334104478 ], [ -81.988674340249901, 28.856755711899954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Resthaven Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989001890174137, 28.855274400923243 ], [ -81.988869568566969, 28.855664450981855 ], [ -81.988834206536126, 28.855775752757605 ], [ -81.988803298661026, 28.8558880763063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brandenburg Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995127371411428, 28.860085063238515 ], [ -81.996570718945691, 28.860470103647579 ], [ -81.996590491478898, 28.860476926494883 ], [ -81.996608773604336, 28.860486437264978 ], [ -81.996625288546809, 28.8604995544971 ], [ -81.996638304206527, 28.860513306858341 ], [ -81.996648718421653, 28.860528777138359 ], [ -81.99665848070731, 28.860545600857222 ], [ -81.996663685950253, 28.860562581458517 ], [ -81.996665637894822, 28.860580343371108 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brandenburg Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994442334050746, 28.859891752431391 ], [ -81.994643207127609, 28.859953152681069 ], [ -81.99473485532863, 28.859980587352023 ], [ -81.994827190405815, 28.860006173165882 ], [ -81.995127371411428, 28.860085063238515 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ranchwood Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995711371981969, 28.85928433900456 ], [ -81.995758919566512, 28.859317409121804 ], [ -81.995801771063498, 28.859344442653228 ], [ -81.995847312245985, 28.859367824630244 ], [ -81.995895140309059, 28.85938734931203 ], [ -81.995944833995893, 28.859402844342878 ], [ -81.996945513939181, 28.859669109432378 ], [ -81.996984406059667, 28.859676354954416 ], [ -81.997024130648427, 28.859677709338296 ], [ -81.997063543837299, 28.859673132855768 ], [ -81.997101509952685, 28.859662755413211 ], [ -81.997136937390081, 28.859646879259429 ], [ -81.997168805264835, 28.859625956428406 ], [ -81.997196196211405, 28.859600595055753 ], [ -81.997218326108808, 28.859571520579927 ], [ -81.997234551255488, 28.859539572132807 ], [ -81.997409688432413, 28.859097373481514 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ranchwood Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997673466161842, 28.858431362263431 ], [ -81.997843288015289, 28.858002576539707 ], [ -81.997861572457737, 28.857945686536787 ], [ -81.997872021180427, 28.857887285038235 ], [ -81.997874487608357, 28.857828203066067 ], [ -81.997868934836447, 28.857769283372761 ], [ -81.997855442803669, 28.857711366906713 ], [ -81.997834205217558, 28.85765527837551 ], [ -81.997805522378812, 28.857601819929755 ], [ -81.997701509385323, 28.857418959694353 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ranchwood Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997409688432413, 28.859097373481514 ], [ -81.997673466161842, 28.858431362263431 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Black Stone Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995711371981969, 28.85928433900456 ], [ -81.99607533764798, 28.858878805184194 ], [ -81.996102703051761, 28.858853154390324 ], [ -81.996134623174939, 28.858831974645966 ], [ -81.99617017040697, 28.858815877683124 ], [ -81.996208305424972, 28.858805333569272 ], [ -81.996247922292284, 28.85880064995613 ], [ -81.996287866907139, 28.85880196395966 ], [ -81.996326976975482, 28.858809234040585 ], [ -81.997409688432413, 28.859097373481514 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Black Stone Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995424050203923, 28.859717991236781 ], [ -81.995464605837014, 28.859614819544721 ], [ -81.995482208607953, 28.859571072822686 ], [ -81.995504387756952, 28.859528969352411 ], [ -81.995530947494188, 28.859488877265189 ], [ -81.995561656157648, 28.859451153863215 ], [ -81.995711371981969, 28.85928433900456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Atmore Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990694114753381, 28.858860587423337 ], [ -81.990824549826243, 28.858895782778273 ], [ -81.990969745200161, 28.858944879015059 ], [ -81.991118017851548, 28.858991586901119 ], [ -81.991219373171859, 28.859013769592583 ], [ -81.991291772068337, 28.859027740239039 ], [ -81.991407753394441, 28.859052865261894 ], [ -81.991522128224503, 28.859083160287422 ], [ -81.991634602416653, 28.859118548605121 ], [ -81.991744880804276, 28.859158934557033 ], [ -81.991852679494556, 28.859204215268235 ], [ -81.991957714594179, 28.859254273427769 ], [ -81.992074257792694, 28.859320829029091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Atmore Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992074257792694, 28.859320829029091 ], [ -81.992148019031987, 28.859362851043059 ], [ -81.992395331009732, 28.85951641968078 ], [ -81.992449357832768, 28.859544897703667 ], [ -81.992502031136254, 28.859567663138137 ], [ -81.99255711145338, 28.859585472328813 ], [ -81.992634351314763, 28.859606490426629 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bureau Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992728987923414, 28.863533096400054 ], [ -81.99260911641872, 28.863633844618796 ], [ -81.992577919827255, 28.863654982047311 ], [ -81.992543139145383, 28.863671221560345 ], [ -81.99250576559119, 28.863682109352499 ], [ -81.992466845724337, 28.863687332381836 ], [ -81.991632775854185, 28.863736756485515 ], [ -81.991562552464416, 28.863739173813624 ], [ -81.991492285291855, 28.863738113622933 ], [ -81.99118633016262, 28.863725909813343 ], [ -81.991030995839495, 28.863723117590883 ], [ -81.990976554664613, 28.863723330449709 ], [ -81.990943843244111, 28.863716370553689 ], [ -81.990903490815683, 28.863704908531304 ], [ -81.990874852268064, 28.86369230137737 ], [ -81.990839707827135, 28.863670527262101 ], [ -81.990814975197068, 28.863651043906554 ], [ -81.990790244021639, 28.863626977744676 ], [ -81.990769419678557, 28.863597182219873 ], [ -81.990757706930424, 28.863563950451073 ], [ -81.990747295131598, 28.863528425115124 ], [ -81.990710627546136, 28.863086313436369 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bureau Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990630650191861, 28.862456396698096 ], [ -81.990507314766546, 28.861837365766739 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bureau Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990507314766546, 28.861837365766739 ], [ -81.99034893740739, 28.861039737227834 ], [ -81.990342080857545, 28.860991135009343 ], [ -81.990340713111266, 28.860942173170226 ], [ -81.99034484743953, 28.860893331737469 ], [ -81.990354443814638, 28.860845088928997 ], [ -81.990369407885964, 28.860797918446558 ], [ -81.990544007506088, 28.860342361128279 ], [ -81.990558979714592, 28.860316006784686 ], [ -81.990585667513983, 28.860287932576387 ], [ -81.990609100422787, 28.860266161631088 ], [ -81.990637089056264, 28.860247255819711 ], [ -81.990670284377885, 28.86023007016091 ], [ -81.990705431782956, 28.860218040398134 ], [ -81.990743182185952, 28.860210593612017 ], [ -81.990780932215173, 28.860207159363114 ], [ -81.990819517269401, 28.860207273924722 ], [ -81.990952066119959, 28.860235629828761 ], [ -81.991028517092985, 28.860254599657285 ], [ -81.991103202662146, 28.860278402968731 ], [ -81.991175727207974, 28.860306916123999 ], [ -81.991245709461552, 28.860339989318746 ], [ -81.991448659215337, 28.860448557008716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bureau Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991448659215337, 28.860448557008716 ], [ -81.991807477624562, 28.860629089292303 ], [ -81.991856616211649, 28.860651596697551 ], [ -81.991908033696305, 28.860669737973311 ], [ -81.991961225798946, 28.860683338039326 ], [ -81.992015682085579, 28.860692265126335 ], [ -81.992070869568295, 28.860696432579591 ], [ -81.992220323086471, 28.860701210131918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flamingo Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980872473989791, 28.908498601503688 ], [ -81.981003106610302, 28.908453341942227 ], [ -81.981550626692822, 28.908222924919798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edgewater Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981152892947108, 28.909051174316684 ], [ -81.981327157100466, 28.908943357069102 ], [ -81.981479076762426, 28.908861774415413 ], [ -81.981591017133027, 28.908808326045108 ], [ -81.981765316111264, 28.908753475824021 ], [ -81.981823077881643, 28.908745570551037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cormorant Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981152892947108, 28.909051174316684 ], [ -81.980872473989791, 28.908498601503688 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edgewater Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980547980954782, 28.909466982787034 ], [ -81.980559494427652, 28.909463302186445 ], [ -81.980614465702089, 28.909437514386759 ], [ -81.98069226930005, 28.909392089551904 ], [ -81.980833002821598, 28.909280960273378 ], [ -81.981010517525135, 28.909144507680036 ], [ -81.981138452963592, 28.909060107732842 ], [ -81.981152892947108, 28.909051174316684 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flamingo Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980192624099061, 28.908729621490927 ], [ -81.980264348841217, 28.908709084981467 ], [ -81.980484404718155, 28.908633054509668 ], [ -81.980872473989791, 28.908498601503688 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seagull Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980547980954782, 28.909466982787034 ], [ -81.980192624099061, 28.908729621490927 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blue Heron Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979658118417717, 28.908867406862075 ], [ -81.979639648963513, 28.908769788953911 ], [ -81.979591114789784, 28.908583006788554 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flamingo Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979658118417717, 28.908867406862075 ], [ -81.97992641031631, 28.908805842159218 ], [ -81.980192624099061, 28.908729621490927 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edgewater Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979673999200699, 28.909376142838674 ], [ -81.979761649310134, 28.909389137505052 ], [ -81.979875174970189, 28.909406039355574 ], [ -81.979995097722565, 28.909421532679541 ], [ -81.980116615711509, 28.909449688981308 ], [ -81.980222144067596, 28.909482066462342 ], [ -81.980288313027884, 28.909495505142772 ], [ -81.980348462934302, 28.909501782269949 ], [ -81.98039336160663, 28.909500894692219 ], [ -81.980451995660289, 28.909492304390131 ], [ -81.980505746078393, 28.909480490341988 ], [ -81.980547980954782, 28.909466982787034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blue Heron Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979673999200699, 28.909376142838674 ], [ -81.979685215525194, 28.909304093359022 ], [ -81.979682745436548, 28.909152842606019 ], [ -81.979679169710195, 28.909038878237293 ], [ -81.979663009807879, 28.90889325483122 ], [ -81.979658118417717, 28.908867406862075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edgewater Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979245327008101, 28.909329965904753 ], [ -81.97942586774667, 28.909342655773763 ], [ -81.97960015438241, 28.909365194830897 ], [ -81.979673999200699, 28.909376142838674 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sandpiper Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979245327008101, 28.909329965904753 ], [ -81.979246709707098, 28.909241865762358 ], [ -81.979238182264055, 28.909134384526613 ], [ -81.979216481918883, 28.909006605855001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edgewater Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979216481918883, 28.909006605855001 ], [ -81.978981208298208, 28.909024524779301 ], [ -81.978894861417714, 28.909034006951806 ], [ -81.978794122330044, 28.909043488590452 ], [ -81.978718566925593, 28.909054556796917 ], [ -81.978648407170695, 28.909076705138144 ], [ -81.978607024053275, 28.909116269693314 ], [ -81.97858902503215, 28.909166917298787 ], [ -81.978587215495267, 28.909219151029014 ], [ -81.978603394770175, 28.90926980410747 ], [ -81.978639362843552, 28.909312547196436 ], [ -81.978695123056909, 28.90933629916157 ], [ -81.97881924620836, 28.909329985664382 ], [ -81.979017984434861, 28.909323343623797 ], [ -81.979105933198895, 28.909324431139787 ], [ -81.97920520571067, 28.909327145399548 ], [ -81.979245327008101, 28.909329965904753 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006144795246342, 28.9237360909529 ], [ -82.006221325450383, 28.923782750881958 ], [ -82.006316042783425, 28.923833408964242 ], [ -82.006372114294564, 28.923856737213658 ], [ -82.006428943667188, 28.923878734520127 ], [ -82.006485017162532, 28.923900063234608 ], [ -82.006563062128421, 28.923924059034462 ], [ -82.006707403382023, 28.923962017506586 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006707403382023, 28.923962017506586 ], [ -82.006710058686849, 28.923962714859741 ], [ -82.00682447435625, 28.923986042943561 ], [ -82.006910196855202, 28.924006688861411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006707403382023, 28.923962017506586 ], [ -82.006651042254916, 28.924191136438719 ], [ -82.006653601080558, 28.924207642019574 ], [ -82.006661358619382, 28.924223541923855 ], [ -82.006674620828633, 28.924244280589484 ], [ -82.006696722506504, 28.924262426554439 ], [ -82.00672176931441, 28.924274092994686 ], [ -82.00675123700367, 28.924277978730075 ], [ -82.006780126050828, 28.924278469146806 ], [ -82.006810029912103, 28.924270373263468 ], [ -82.006833034204291, 28.924256204342953 ], [ -82.006847001775867, 28.924239088041368 ], [ -82.006910196855202, 28.924006688861411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007781474768237, 28.924247648067787 ], [ -82.007807242687718, 28.924259305244242 ], [ -82.007861801313112, 28.924287299626158 ], [ -82.007905749923054, 28.92431196148566 ], [ -82.007996679551766, 28.924370619242996 ], [ -82.008088366861855, 28.924438611145202 ], [ -82.008152776660708, 28.924495934881023 ], [ -82.00817550982832, 28.924519932856487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007638677756248, 28.924187015975761 ], [ -82.007701160823601, 28.924211314202058 ], [ -82.007781474768237, 28.924247648067787 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006910196855202, 28.924006688861411 ], [ -82.006930341883248, 28.924011540454689 ], [ -82.007098290491101, 28.924048859462371 ], [ -82.007285095093522, 28.924090843991657 ], [ -82.007456350646521, 28.924130687912257 ], [ -82.007542617071906, 28.92415304324927 ], [ -82.007568026824998, 28.924162029694831 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triggerfish Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007665311897071, 28.889262957742663 ], [ -82.007840486832592, 28.889164349581819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triggerfish Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007840486832592, 28.889164349581819 ], [ -82.007988320126273, 28.889081130523266 ], [ -82.008016937000662, 28.889067805585828 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triggerfish Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007840486832592, 28.889164349581819 ], [ -82.00787528763469, 28.889216635121283 ], [ -82.007894019978067, 28.889244528729588 ], [ -82.007917070698525, 28.889272420296642 ], [ -82.00794588597509, 28.889293973787805 ], [ -82.007981903777178, 28.88930284685102 ], [ -82.008012159197662, 28.889305380658037 ], [ -82.00803808945102, 28.889299039669346 ], [ -82.008065460742941, 28.889286359033058 ], [ -82.008082747542758, 28.889272411218222 ], [ -82.008092832026406, 28.889245786479574 ], [ -82.00809715132128, 28.889216623889066 ], [ -82.008088504151559, 28.889186193383537 ], [ -82.00807697733282, 28.88915956894008 ], [ -82.008058246166968, 28.889134212625788 ], [ -82.008016937000662, 28.889067805585828 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triggerfish Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008406559176677, 28.888893746102561 ], [ -82.008389576259972, 28.888831166227327 ], [ -82.008375168454521, 28.888804540169595 ], [ -82.00836508294843, 28.888789327060959 ], [ -82.008352115568073, 28.888775380044599 ], [ -82.008337706499617, 28.888758899449702 ], [ -82.00832762071488, 28.888739881336864 ], [ -82.008323297564388, 28.888717059697083 ], [ -82.008324736596123, 28.888698040924339 ], [ -82.00833049768633, 28.888673950072953 ], [ -82.008344902537331, 28.888648591895883 ], [ -82.008365070235314, 28.888635910708452 ], [ -82.008386679619576, 28.888625767606275 ], [ -82.008415491748039, 28.88862069411071 ], [ -82.008439983873245, 28.888620693593449 ], [ -82.008464475364192, 28.888625762196149 ], [ -82.00848752687584, 28.888637171344349 ], [ -82.008503375300293, 28.888652386813931 ], [ -82.008514901285992, 28.888667600730422 ], [ -82.008523546723353, 28.888687885743835 ], [ -82.00853075301201, 28.888711975842472 ], [ -82.008533636621792, 28.888746208954746 ], [ -82.00855203833315, 28.888845386037424 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triggerfish Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008699607575394, 28.888806644213155 ], [ -82.008711807898877, 28.888869396676036 ], [ -82.008719495102696, 28.888906586333491 ], [ -82.008727180261616, 28.888943777794996 ], [ -82.008734866398299, 28.888967444673888 ], [ -82.008754076490462, 28.888992801767902 ], [ -82.008780970305239, 28.889011396554004 ], [ -82.00880786406708, 28.889016465850577 ], [ -82.008840518443463, 28.889018153870435 ], [ -82.008873173024199, 28.889009700025021 ], [ -82.00889622250132, 28.888994483117848 ], [ -82.00891927012006, 28.888969124349394 ], [ -82.008926951674241, 28.88892347920137 ], [ -82.008919263370075, 28.888886288653747 ], [ -82.008900582519104, 28.88877553061258 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odessa Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006230474008674, 28.878229333062347 ], [ -82.006230466831383, 28.878229310505102 ], [ -82.006087679274103, 28.877753853733143 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odessa Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005723393485837, 28.877852930803382 ], [ -82.006087679274103, 28.877753853733143 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odessa Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003629142970738, 28.877042487139917 ], [ -82.003433032406207, 28.877308783264205 ], [ -82.003408880157039, 28.877342931386213 ], [ -82.003381200646999, 28.877385869802708 ], [ -82.003355739540893, 28.877429857545927 ], [ -82.003332543994603, 28.877474806190584 ], [ -82.003294258599325, 28.877564209748442 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odessa Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006087679274103, 28.877753853733143 ], [ -82.005947172294668, 28.87728598324037 ], [ -82.005935545405165, 28.877251041146899 ], [ -82.005920815347096, 28.877214351414697 ], [ -82.005903750083888, 28.877178452188481 ], [ -82.005884404981074, 28.877143462569173 ], [ -82.005862841554105, 28.87710948992731 ], [ -82.005839127469216, 28.877076647047051 ], [ -82.005813344743672, 28.87704503768882 ], [ -82.005785567193172, 28.877014761101886 ], [ -82.005755889135727, 28.876985917437 ], [ -82.00572440591371, 28.876958598724105 ], [ -82.005702926474299, 28.876941626327028 ], [ -82.004615909289896, 28.876114198407588 ], [ -82.004614218808442, 28.876112922601994 ], [ -82.004592426118194, 28.876098029841213 ], [ -82.00456918500592, 28.876084945332785 ], [ -82.004544688198351, 28.87607377283522 ], [ -82.004519139698019, 28.876064608888257 ], [ -82.004492748631918, 28.876057528376457 ], [ -82.004465736427505, 28.87605258723579 ], [ -82.004438324511725, 28.876049830574779 ], [ -82.004410743536482, 28.876049278237364 ], [ -82.004383216977217, 28.876050936533368 ], [ -82.004355977534729, 28.876054789214983 ], [ -82.004329248683263, 28.876060809207203 ], [ -82.004303251845997, 28.87606894146387 ], [ -82.004278203320283, 28.876079121916103 ], [ -82.004254311202018, 28.876091264840106 ], [ -82.00423177128522, 28.876105268271164 ], [ -82.004210772188046, 28.876121019417148 ], [ -82.004191488176502, 28.876138385635727 ], [ -82.004174077114612, 28.876157224359773 ], [ -82.004158684564743, 28.876177376780952 ], [ -82.004145437637078, 28.87619867867765 ], [ -82.004145422261232, 28.876198707551737 ], [ -82.003842044156116, 28.876744300257446 ], [ -82.003832893338341, 28.876760227912694 ], [ -82.00381133389709, 28.876794201903422 ], [ -82.003795914584302, 28.876816022638916 ], [ -82.003728161461055, 28.876908028351469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odessa Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003728161461055, 28.876908028351469 ], [ -82.003629142970738, 28.877042487139917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odessa Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003728161461055, 28.876908028351469 ], [ -82.003650991925838, 28.876853706994595 ], [ -82.003625024771807, 28.876835205865785 ], [ -82.003594109285203, 28.876815615761682 ], [ -82.003564433588522, 28.876809085545403 ], [ -82.003538466950573, 28.876806910655528 ], [ -82.00351002696334, 28.876814529401255 ], [ -82.003486533487361, 28.87683085525272 ], [ -82.003474168704244, 28.876842828160854 ], [ -82.003461804300443, 28.876867860087284 ], [ -82.003456859827921, 28.876893980936437 ], [ -82.00346056849439, 28.876920101604519 ], [ -82.003470461627529, 28.876940780358336 ], [ -82.003491482515386, 28.876959281621325 ], [ -82.003527342240972, 28.876978871642692 ], [ -82.00355825667252, 28.876996284506482 ], [ -82.003629142970738, 28.877042487139917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bokeelia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984847403143732, 28.849971851960696 ], [ -81.984912240527834, 28.849986411687997 ], [ -81.984948043357633, 28.849993665754525 ], [ -81.984983234043611, 28.85000296075836 ], [ -81.985214986624825, 28.850071524860464 ], [ -81.985306432751372, 28.850101320969721 ], [ -81.985395662463901, 28.8501359368918 ], [ -81.985482349881323, 28.850175241761274 ], [ -81.985566179371176, 28.850219093886839 ], [ -81.985646836326794, 28.850267333531786 ], [ -81.985724030739362, 28.850319781111878 ], [ -81.985889763628975, 28.850435846980613 ], [ -81.986059526308864, 28.850547306794294 ], [ -81.986233260366078, 28.85065405225518 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bokeelia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986233260366078, 28.85065405225518 ], [ -81.986364656998475, 28.850730245611913 ], [ -81.986498019899841, 28.850803737535742 ], [ -81.986693141011457, 28.850902701274933 ], [ -81.986790332500007, 28.850965933688599 ], [ -81.986836000165113, 28.851005747026768 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ducksbury Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988176938663528, 28.850939887104431 ], [ -81.988199151358032, 28.850953680816236 ], [ -81.988242301606078, 28.850983042049119 ], [ -81.988282376862543, 28.851015603475734 ], [ -81.988319076866119, 28.851051118742983 ], [ -81.988352118780085, 28.851089316234834 ], [ -81.988387755456813, 28.851129827456329 ], [ -81.98842795738733, 28.851166877820571 ], [ -81.988472294166442, 28.851200071174134 ], [ -81.98852029028717, 28.851229052865854 ], [ -81.988571433339857, 28.851253510650182 ], [ -81.988779275299009, 28.851340963549376 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ducksbury Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98502703042584, 28.849335515626819 ], [ -81.98544843017018, 28.849460185988555 ], [ -81.985488827640324, 28.849472500543843 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ducksbury Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986100812174939, 28.849760638534491 ], [ -81.986189035995736, 28.849821375581644 ], [ -81.986355103774812, 28.849937223465979 ], [ -81.986525670772622, 28.850047887851858 ], [ -81.986700526896271, 28.850153236964911 ], [ -81.98687946000004, 28.850253139031167 ], [ -81.987135259995057, 28.850386500379592 ], [ -81.987394920036721, 28.850513950600899 ], [ -81.987658264852016, 28.850635398523984 ], [ -81.987757200778589, 28.850683630475309 ], [ -81.98785191150499, 28.850738037348716 ], [ -81.988176938663528, 28.850939887104431 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ducksbury Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985488827640324, 28.849472500543843 ], [ -81.98559717035829, 28.849509191008057 ], [ -81.98570331620482, 28.849550560507868 ], [ -81.98580700488904, 28.849596508864817 ], [ -81.985907983294453, 28.84964692236716 ], [ -81.986005998304336, 28.84970167737848 ], [ -81.986100812174939, 28.849760638534491 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inverary Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988176938663528, 28.850939887104431 ], [ -81.988318287089655, 28.850754180707028 ], [ -81.988375988879937, 28.850682227779391 ], [ -81.988437605332606, 28.850612835909804 ], [ -81.988502987818549, 28.850546169299797 ], [ -81.988571983611052, 28.850482387638959 ], [ -81.98862382315798, 28.85043449498356 ], [ -81.988672986946099, 28.850384463615651 ], [ -81.989284342363987, 28.849731183501834 ], [ -81.989338173056723, 28.849668630061366 ], [ -81.989386036261692, 28.84960242358877 ], [ -81.989427616280167, 28.849533002585783 ], [ -81.989462633283637, 28.849460831723512 ], [ -81.989528027309305, 28.849309224237064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inverary Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989528027309305, 28.849309224237064 ], [ -81.989701032712929, 28.848908133896856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Placida Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986430334495083, 28.849191041355798 ], [ -81.986504006875137, 28.849082633166024 ], [ -81.986583207829824, 28.848977285209688 ], [ -81.98666776616885, 28.848875217622684 ], [ -81.986772390325513, 28.848763360148276 ], [ -81.986819526283711, 28.848727084896751 ], [ -81.986870483688534, 28.848708400459326 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Placida Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986100812174939, 28.849760638534491 ], [ -81.986136045967299, 28.84972446875949 ], [ -81.986166936741824, 28.849685344375729 ], [ -81.986193169811855, 28.849643665977332 ], [ -81.986214474557613, 28.849599863938906 ], [ -81.986261314947029, 28.84949484488169 ], [ -81.986312963677051, 28.849391589405453 ], [ -81.986369334624968, 28.849290265324864 ], [ -81.986430334495083, 28.849191041355798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridgewood Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98472225347993, 28.853024434895502 ], [ -81.984848770526327, 28.852989087058383 ], [ -81.984928036092128, 28.852970263109956 ], [ -81.985008866770571, 28.852957618277806 ], [ -81.985201337204543, 28.852935113693739 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridgewood Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985201337204543, 28.852935113693739 ], [ -81.986128669834017, 28.852826681286519 ], [ -81.986265231305126, 28.85281339633471 ], [ -81.986402326006498, 28.852805410538572 ], [ -81.98653968645813, 28.852802738306398 ], [ -81.986677044156323, 28.852805386828972 ], [ -81.986814140848111, 28.852813349764716 ], [ -81.986950704957991, 28.852826610846268 ], [ -81.987086476184629, 28.85284514839471 ], [ -81.987119125771784, 28.852850253187793 ], [ -81.987157262921187, 28.852853420349717 ], [ -81.987195476610324, 28.852851072617604 ], [ -81.987232746025256, 28.852843271250382 ], [ -81.987268069806262, 28.852830232706481 ], [ -81.987300510123077, 28.8528122979695 ], [ -81.987329199847906, 28.852789947887846 ], [ -81.987443331724151, 28.852689530291123 ], [ -81.987562188651438, 28.852593454931011 ], [ -81.987685556407584, 28.852501891408849 ], [ -81.987813213599239, 28.852415006618703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridgewood Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987813213599239, 28.852415006618703 ], [ -81.987916219227714, 28.85235021873844 ], [ -81.988021609298372, 28.852288476274214 ], [ -81.98812927106961, 28.852229849590341 ], [ -81.988185050566202, 28.852197674726984 ], [ -81.988237504722548, 28.852161429246625 ], [ -81.988286257370191, 28.852121373886309 ], [ -81.988330951811534, 28.852077803672625 ], [ -81.988371261070213, 28.852031036192539 ], [ -81.988423189957444, 28.85196221465689 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridgewood Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988423189957444, 28.85196221465689 ], [ -81.988472078150579, 28.851891422201994 ], [ -81.98851769706863, 28.851818958376867 ], [ -81.988559971886076, 28.85174494047801 ], [ -81.988779275299009, 28.851340963549376 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridgewood Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989528027309305, 28.849309224237064 ], [ -81.98930047357841, 28.849230103678032 ], [ -81.989075370183684, 28.849145722492061 ], [ -81.988852873950279, 28.849056142963523 ], [ -81.98863314067691, 28.848961424670573 ], [ -81.988416325134637, 28.848861635312947 ], [ -81.988202572869014, 28.848756840785722 ], [ -81.98799203762097, 28.848647119617709 ], [ -81.987870148042319, 28.848578928534035 ], [ -81.987751194285082, 28.848506833331477 ], [ -81.987635333147438, 28.848430934188169 ], [ -81.987522723475578, 28.848351331282803 ], [ -81.987413517964001, 28.848268132914523 ], [ -81.987073708122935, 28.84799946224468 ], [ -81.987032864175646, 28.847971252192476 ], [ -81.986988129270202, 28.847948062179135 ], [ -81.986940298635218, 28.847930301023343 ], [ -81.986890213627618, 28.847918282807065 ], [ -81.986838760708991, 28.847912220559508 ], [ -81.986786846850691, 28.847912220841078 ], [ -81.986735394409905, 28.84791828554755 ], [ -81.986685310385937, 28.847930305590964 ], [ -81.986637479245886, 28.847948068117152 ], [ -81.986592749601911, 28.847971260113528 ], [ -81.986551903465724, 28.847999471112711 ], [ -81.98651567367034, 28.848032203119278 ], [ -81.986215418513922, 28.848342265242671 ], [ -81.986111155881929, 28.848454680856964 ], [ -81.986012400093088, 28.848570886650972 ], [ -81.985919331558691, 28.848690676027545 ], [ -81.985832114296429, 28.848813832462245 ], [ -81.985750912327305, 28.848940134918831 ], [ -81.985675863029414, 28.849069355139338 ], [ -81.985607108908226, 28.84920126035431 ], [ -81.985544769924687, 28.849335615986686 ], [ -81.985488827640324, 28.849472500543843 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridgewood Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988779275299009, 28.851340963549376 ], [ -81.988825390162873, 28.851256016257594 ], [ -81.988865648984174, 28.851187728630325 ], [ -81.988910921208728, 28.851121920041724 ], [ -81.988961016170876, 28.851058877404185 ], [ -81.989015713487007, 28.850998870483593 ], [ -81.989074773303244, 28.850942162728032 ], [ -81.989486130467611, 28.850572400325156 ], [ -81.989569488848758, 28.850493444310999 ], [ -81.989648050041581, 28.850410763152862 ], [ -81.989721596752702, 28.850324580614032 ], [ -81.98978992706293, 28.850235133091189 ], [ -81.989987918021797, 28.849960735308475 ], [ -81.990040030181092, 28.849882986630629 ], [ -81.990086235191441, 28.849802395227847 ], [ -81.990126335228908, 28.849719308479138 ], [ -81.990137140501588, 28.849687133957854 ], [ -81.990141879679442, 28.849653841931051 ], [ -81.99014042764793, 28.849620313942857 ], [ -81.990132819171663, 28.849587436059988 ], [ -81.99011925709442, 28.84955608172859 ], [ -81.990100100043492, 28.849527075681138 ], [ -81.990075855255569, 28.849501188522353 ], [ -81.990047165256286, 28.849479104245518 ], [ -81.990014788388748, 28.849461407598991 ], [ -81.989979580367773, 28.849448567843737 ], [ -81.989752783173913, 28.849381460504301 ], [ -81.989528027309305, 28.849309224237064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97684564301872, 28.857694259032492 ], [ -81.977071270267842, 28.857682837664893 ], [ -81.977364115890751, 28.857674492423897 ], [ -81.977475879646619, 28.857672403479217 ], [ -81.977632084249947, 28.857664789840197 ], [ -81.977755746769034, 28.857657170619841 ], [ -81.977890137908432, 28.857642358079715 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97901258657707, 28.857342052270774 ], [ -81.979110222806611, 28.857296230458005 ], [ -81.979338039487544, 28.857181673104563 ], [ -81.97947256136311, 28.857103388180324 ], [ -81.979611423126897, 28.857017464869443 ], [ -81.979739440529059, 28.856927718512498 ], [ -81.979876135786199, 28.856822696414529 ], [ -81.980036701832574, 28.856700488831322 ], [ -81.980164717827193, 28.856608832788659 ], [ -81.980338292864189, 28.856501906400204 ], [ -81.980511868510447, 28.856400704911035 ], [ -81.980663746534248, 28.856312873124189 ], [ -81.9808243016966, 28.856228860963171 ], [ -81.980974005217391, 28.856158217421584 ], [ -81.981115031085622, 28.856095211401943 ], [ -81.981256056522923, 28.856033636289702 ], [ -81.981402503488965, 28.855978748765164 ], [ -81.981589629433813, 28.85591431578786 ], [ -81.981784890188351, 28.855854658656117 ], [ -81.982064218063385, 28.855785464350269 ], [ -81.982339298382939, 28.855721553704342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977890137908432, 28.857642358079715 ], [ -81.977984631926574, 28.857627606526318 ], [ -81.9781375850513, 28.857601847321583 ], [ -81.978267758473507, 28.857577039789266 ], [ -81.978418544872824, 28.857540777086921 ], [ -81.978571501344788, 28.857497829387228 ], [ -81.978694085339029, 28.857460605417256 ], [ -81.978834025530006, 28.857409060894703 ], [ -81.97901258657707, 28.857342052270774 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982339298382939, 28.855721553704342 ], [ -81.983681318865933, 28.855411143663069 ], [ -81.983796348919896, 28.855387439670931 ], [ -81.98391266331106, 28.855369240698291 ], [ -81.984029924848741, 28.855356599035275 ], [ -81.984147790196374, 28.855349548926313 ], [ -81.984265916019254, 28.855348114691648 ], [ -81.984383957961825, 28.85535229629037 ], [ -81.984501570644866, 28.855362084659522 ], [ -81.984618411766803, 28.855377449984775 ], [ -81.984821256040163, 28.855409077330297 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984911046349652, 28.85542488235625 ], [ -81.98491110374384, 28.855424893190417 ], [ -81.98498998608396, 28.855438776825636 ], [ -81.985157066170942, 28.855474989666455 ], [ -81.985322171438781, 28.855517648150183 ], [ -81.985484982150766, 28.855566665627887 ], [ -81.985645181643477, 28.85562195274558 ], [ -81.9858024614539, 28.855683397593694 ], [ -81.985956511067641, 28.855750881947699 ], [ -81.986107035343139, 28.855824276758128 ], [ -81.986253741188179, 28.855903436735304 ], [ -81.98627642832534, 28.855916290601112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98627642832534, 28.855916290601112 ], [ -81.987121335212791, 28.856395040437178 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987121335212791, 28.856395040437178 ], [ -81.988564478811711, 28.857212746080293 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988564478811711, 28.857212746080293 ], [ -81.988781225168296, 28.857335554678794 ], [ -81.988900407861166, 28.857399250249642 ], [ -81.989023223711158, 28.857457353529348 ], [ -81.98914933551535, 28.857509699358875 ], [ -81.989278393766199, 28.857556147843688 ], [ -81.989410043828315, 28.857596566308374 ], [ -81.989543921837154, 28.857630846440237 ], [ -81.989679662900059, 28.857658892560142 ], [ -81.989816884696722, 28.857680628839571 ], [ -81.989955215153429, 28.85769599479152 ], [ -81.990094270919386, 28.857704947073415 ], [ -81.990233668641395, 28.857707460390287 ], [ -81.990373024964072, 28.85770352839716 ], [ -81.990511953455439, 28.857693163698745 ], [ -81.990632810935892, 28.857684304431899 ], [ -81.990754041957203, 28.857681358788177 ], [ -81.990875272433698, 28.857684331252425 ], [ -81.990996127255585, 28.857693218189898 ], [ -81.991116237465079, 28.857707987093953 ], [ -81.991235234104593, 28.857728595533811 ], [ -81.991352749242552, 28.857754980327037 ], [ -81.991468422122637, 28.857787058442216 ], [ -81.991581897112965, 28.857824733314764 ], [ -81.991742978097292, 28.857885877307734 ], [ -81.991901347850614, 28.8579522849878 ], [ -81.992056783984651, 28.858023864315971 ], [ -81.992209067184803, 28.858100514231126 ], [ -81.992357984284396, 28.858182127357264 ], [ -81.992503328264732, 28.858268591807821 ], [ -81.993229036915565, 28.858717945350531 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993229036915565, 28.858717945350531 ], [ -81.993895733221933, 28.859138312017045 ], [ -81.994044989897034, 28.85922693689788 ], [ -81.99418296792166, 28.859301809089906 ], [ -81.994324126003548, 28.859369394265908 ], [ -81.994486836071616, 28.859439112346188 ], [ -81.994614255042464, 28.859485177578456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002060633976171, 28.861821237182401 ], [ -82.002214915013624, 28.861844170272484 ], [ -82.002370307073789, 28.861860275435934 ], [ -82.002526420631654, 28.86186951207068 ], [ -82.002682864111989, 28.861871856720246 ], [ -82.00283924286461, 28.861867303073748 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00283924286461, 28.861867303073748 ], [ -82.002981676547748, 28.861857125423576 ], [ -82.003123432539553, 28.861841225222062 ], [ -82.003264215622437, 28.861819634057721 ], [ -82.00340372853006, 28.861792398859379 ], [ -82.003541681172095, 28.861759576482342 ], [ -82.003677783459793, 28.861721233708263 ], [ -82.003811752480956, 28.861677452658999 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003811752480956, 28.861677452658999 ], [ -82.003916364017257, 28.861638898332245 ], [ -82.004019317965543, 28.861597024388193 ], [ -82.004386580524809, 28.861440472205139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004386580524809, 28.861440472205139 ], [ -82.004412614606522, 28.861429374947907 ], [ -82.004529188936573, 28.861383096088378 ], [ -82.004648456014806, 28.861342484421435 ], [ -82.004770063269646, 28.861307660859559 ], [ -82.004893649930821, 28.861278730075039 ], [ -82.005018842929061, 28.861255777793421 ], [ -82.005145271245567, 28.861238871695349 ], [ -82.005272560786864, 28.861228062319217 ], [ -82.005400330284559, 28.86122338396348 ], [ -82.005528198469605, 28.861224847468126 ], [ -82.006019662236412, 28.861242288460094 ], [ -82.006202470508327, 28.861246889153954 ], [ -82.006385349304296, 28.861247720672186 ], [ -82.006674612543563, 28.861246053279643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006674612543563, 28.861246053279643 ], [ -82.00684249989267, 28.861245085649777 ], [ -82.006997288828089, 28.861240815090159 ], [ -82.007151649899455, 28.861229795137874 ], [ -82.007305200762048, 28.861212054686934 ], [ -82.007457562147778, 28.861187638874416 ], [ -82.007608362990339, 28.861156604568549 ], [ -82.00775723017621, 28.861119030294621 ], [ -82.007903800844289, 28.861075008113456 ], [ -82.008047713161602, 28.861024646328751 ], [ -82.009733596508084, 28.860391610530414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009733596508084, 28.860391610530414 ], [ -82.009868611261254, 28.860340911740636 ], [ -82.010020072262591, 28.860287180836416 ], [ -82.010173864391717, 28.860238851693595 ], [ -82.010329738609499, 28.860196004627234 ], [ -82.010487443827344, 28.860158708223537 ], [ -82.010646723832238, 28.860127022047166 ], [ -82.010807324461666, 28.860100998445347 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010807324461666, 28.860100998445347 ], [ -82.01098222681297, 28.860079271235247 ], [ -82.011158037902689, 28.860064260481078 ], [ -82.011334423627844, 28.860055993274745 ], [ -82.011511050909661, 28.86005448407764 ], [ -82.012381588218389, 28.860063715869376 ], [ -82.012509713719638, 28.860068162970123 ], [ -82.012637372567283, 28.860078773631145 ], [ -82.01276418041715, 28.860095515405202 ], [ -82.012889758047351, 28.860118340506844 ], [ -82.013013728282161, 28.860147176789575 ], [ -82.013135722142778, 28.860181940377519 ], [ -82.013205685390901, 28.860206585748685 ], [ -82.013273172946313, 28.860236100148541 ], [ -82.013337750205721, 28.86027029143073 ], [ -82.013398996909956, 28.860308938574494 ], [ -82.013456517393976, 28.860351794390407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013456517393976, 28.860351794390407 ], [ -82.013516916347314, 28.860405267321266 ], [ -82.013571512559693, 28.86046337230734 ], [ -82.013619859079512, 28.86052562215415 ], [ -82.013661544821673, 28.860591497180703 ], [ -82.013696226342219, 28.860660447922985 ], [ -82.013723609389629, 28.860731898744746 ], [ -82.013743469405284, 28.860805251444457 ], [ -82.013755638200351, 28.860879893377227 ], [ -82.013760017281811, 28.860955202867071 ], [ -82.013756564528379, 28.861030549208277 ], [ -82.013745312642271, 28.861105303491133 ], [ -82.013700686319297, 28.861324366499105 ], [ -82.013683558016893, 28.861422297022116 ], [ -82.013671940061357, 28.861520851404876 ], [ -82.013665858062538, 28.861619792340292 ], [ -82.013665328404542, 28.861718873498464 ], [ -82.013670355173417, 28.861817860279988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013670355173417, 28.861817860279988 ], [ -82.013680562870206, 28.861913836473825 ], [ -82.013695992821368, 28.862009270778696 ], [ -82.013748598722771, 28.8622867286782 ], [ -82.013771549147691, 28.862390236055155 ], [ -82.013800905649788, 28.862492483186521 ], [ -82.01383657698274, 28.862593160586751 ], [ -82.013878459600221, 28.862691967793825 ], [ -82.014177258825484, 28.863341947978313 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canyon Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013449830672371, 28.863074323389473 ], [ -82.013370678523927, 28.862910021330471 ], [ -82.013314795759769, 28.862710356651533 ], [ -82.013282248670748, 28.86257317070195 ], [ -82.013256345519935, 28.862434889626797 ], [ -82.013237135512256, 28.862295766070439 ], [ -82.013187649149472, 28.861860377404263 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canyon Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013187649149472, 28.861860377404263 ], [ -82.013119358277137, 28.861259539433757 ], [ -82.013113086318711, 28.861182660091153 ], [ -82.013111717837745, 28.861105589908917 ], [ -82.013115255928284, 28.861028575215951 ], [ -82.013123691383754, 28.860951855123371 ], [ -82.013136993408864, 28.86085829307213 ], [ -82.013136315060223, 28.860792424026876 ], [ -82.013106572092241, 28.86068891714201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buttercup Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01594615568635, 28.861771334375781 ], [ -82.016034877055745, 28.861461204203309 ], [ -82.016047614511322, 28.861406487935525 ], [ -82.016055266920205, 28.861351042282386 ], [ -82.016057783095732, 28.861295230879051 ], [ -82.016057411293659, 28.860968126736729 ], [ -82.016053886892877, 28.860868614723337 ], [ -82.016043552626911, 28.860769472527195 ], [ -82.016026443417545, 28.860671058357486 ], [ -82.016002624935297, 28.860573731321253 ], [ -82.01597218027355, 28.860477846011047 ], [ -82.015939590663095, 28.860397506734444 ], [ -82.015899758023437, 28.86031973802935 ], [ -82.015852943809008, 28.860245042443452 ], [ -82.015799448418548, 28.860173910789353 ], [ -82.01573962349066, 28.860106797781224 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buttercup Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01573962349066, 28.860106797781224 ], [ -82.015688734845654, 28.86005745102408 ], [ -82.015634420210375, 28.860011023581659 ], [ -82.01557689587851, 28.859967693179968 ], [ -82.015516388391703, 28.85992763573929 ], [ -82.015448392794767, 28.859889251061606 ], [ -82.015376896724916, 28.859856161452552 ], [ -82.015302429091733, 28.859828614982955 ], [ -82.015225544420716, 28.859806817313537 ], [ -82.015146814653178, 28.859790927184399 ], [ -82.015066819923021, 28.85978106273231 ], [ -82.014986158806323, 28.859777298782827 ], [ -82.014759552258056, 28.859775333963732 ], [ -82.014668718084465, 28.859776871022003 ], [ -82.014578139753837, 28.859783055762183 ], [ -82.014488122690608, 28.859793866498226 ], [ -82.014398971292252, 28.85980926349885 ], [ -82.014310987905759, 28.859829199815387 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buttercup Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014310987905759, 28.859829199815387 ], [ -82.014208459439189, 28.859858661356981 ], [ -82.014108484910182, 28.859894281695322 ], [ -82.014011540890792, 28.859935891155676 ], [ -82.013918089601916, 28.859983289387532 ], [ -82.013828575839455, 28.860036250778577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buttercup Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013828575839455, 28.860036250778577 ], [ -82.013745511563513, 28.860092997553693 ], [ -82.01366697201297, 28.860154533272443 ], [ -82.013593311789236, 28.860220580901281 ], [ -82.013456517393976, 28.860351794390407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Loyola Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016053269929301, 28.859155668674973 ], [ -82.016072485759082, 28.859107173036417 ], [ -82.016077060747662, 28.859076976898137 ], [ -82.016078667513767, 28.85904715465265 ], [ -82.016078111710911, 28.858662098115939 ], [ -82.016077015263917, 28.85862272618721 ], [ -82.016076148053884, 28.858567307649857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yearling Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999862469409067, 28.862252718904685 ], [ -81.999985147255089, 28.861826828817556 ], [ -81.999997236080617, 28.861795599179803 ], [ -82.000014824920015, 28.861766466563456 ], [ -82.000037464853463, 28.86174017533051 ], [ -82.000064576766249, 28.861717396784325 ], [ -82.000095468792821, 28.861698715612459 ], [ -82.000129346571754, 28.861684610030398 ], [ -82.000165349119825, 28.86167544005211 ], [ -82.000202549856638, 28.861671438467155 ], [ -82.000240000678247, 28.86167271084113 ], [ -82.000276741181366, 28.861679221981163 ], [ -82.000311832487014, 28.861690807665909 ], [ -82.000819216329958, 28.861900461159276 ], [ -82.001015588553116, 28.861977726012103 ], [ -82.001215080050287, 28.862048530067018 ], [ -82.001417416093346, 28.862112774960778 ], [ -82.001622318876798, 28.862170372256951 ], [ -82.001736227149124, 28.862198573823672 ], [ -82.001851119425979, 28.862223480070515 ], [ -82.001966878848066, 28.862245061220133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yearling Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001966878848066, 28.862245061220133 ], [ -82.002129220001265, 28.862269525538256 ], [ -82.002292658875433, 28.86228745425856 ], [ -82.00245685616845, 28.86229881038718 ], [ -82.0026214705277, 28.862303569564155 ], [ -82.002786159575663, 28.862301723672676 ], [ -82.002950582984838, 28.862293273620551 ], [ -82.003114399403302, 28.862278239265684 ], [ -82.003277265430199, 28.862256652197566 ], [ -82.003438845865588, 28.862228556639387 ], [ -82.003598805511004, 28.862194008545899 ], [ -82.003756810194901, 28.862153082821735 ], [ -82.003912532922612, 28.862105863395787 ], [ -82.003982784849256, 28.862085704213552 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Useppa Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999862469409067, 28.862252718904685 ], [ -82.000035380156049, 28.862291317172044 ], [ -82.000086602911253, 28.862305067616738 ], [ -82.000136108812256, 28.862323043525603 ], [ -82.000511239660284, 28.862478051320103 ], [ -82.000687675610479, 28.862548162248196 ], [ -82.000866395458985, 28.862613637804696 ], [ -82.001047244412092, 28.862674418429098 ], [ -82.001230057424792, 28.86273044907308 ], [ -82.00141468175083, 28.86278168190756 ], [ -82.001551430636226, 28.862815540945252 ], [ -82.001689364454919, 28.862845440524662 ], [ -82.001828335592634, 28.862871349965168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Border Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00142977696801, 28.863943298990179 ], [ -82.001498852976184, 28.863737136565604 ], [ -82.001522105337244, 28.863656889114324 ], [ -82.001550803510796, 28.863578017636112 ], [ -82.001584841913854, 28.863500810865613 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Border Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001584841913854, 28.863500810865613 ], [ -82.001624740201152, 28.863424405290182 ], [ -82.001664108586624, 28.863354720066393 ], [ -82.001707711008336, 28.863270547404479 ], [ -82.001744786143931, 28.863183984576434 ], [ -82.001775165912719, 28.863095421384205 ], [ -82.001798712985845, 28.863005262065624 ], [ -82.001828335592634, 28.862871349965168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Border Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001828335592634, 28.862871349965168 ], [ -82.001966878848066, 28.862245061220133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Border Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001966878848066, 28.862245061220133 ], [ -82.002060633976171, 28.861821237182401 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Useppa Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001828335592634, 28.862871349965168 ], [ -82.00201279917826, 28.862899350357274 ], [ -82.00219846198631, 28.862920322436796 ], [ -82.002384980605868, 28.862934227404185 ], [ -82.002572006500586, 28.862941037289517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Useppa Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002572006500586, 28.862941037289517 ], [ -82.002754185059118, 28.862940842404075 ], [ -82.002936194329678, 28.862933915184794 ], [ -82.003117712429088, 28.862920269172822 ], [ -82.003298420549768, 28.862899926933942 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Useppa Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004104480648692, 28.862755641214171 ], [ -82.004189334544151, 28.862750412880388 ], [ -82.004274436662584, 28.862750131819745 ], [ -82.004359375993772, 28.862754799847583 ], [ -82.00444377740142, 28.862764398928658 ], [ -82.00452727599783, 28.862778886666018 ], [ -82.005008995587772, 28.862877136540181 ], [ -82.005099837485076, 28.862893181964971 ], [ -82.005191599637413, 28.862904457718503 ], [ -82.005283962232227, 28.862910924108533 ], [ -82.005376596232452, 28.862912558587766 ], [ -82.005858396973665, 28.862908478731871 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Useppa Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003298420549768, 28.862899926933942 ], [ -82.003478564654515, 28.862872830718857 ], [ -82.003657252967002, 28.862839080705292 ], [ -82.003940270346661, 28.862780110370341 ], [ -82.004021904441913, 28.86276553976375 ], [ -82.004104480648692, 28.862755641214171 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Apache Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004944557843729, 28.864307532155713 ], [ -82.004770437551926, 28.864233438572086 ], [ -82.004583970095112, 28.864206269434071 ], [ -82.004276143731474, 28.864118990955554 ], [ -82.004239601674868, 28.864103634716958 ], [ -82.004206610058603, 28.864082971023798 ], [ -82.004178150863808, 28.864057615224326 ], [ -82.004155076923126, 28.864028326136815 ], [ -82.004138076044526, 28.8639959753719 ], [ -82.004127654610983, 28.863961531993187 ], [ -82.004124124254673, 28.863926022816049 ], [ -82.004123663596474, 28.863395158621557 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Apache Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004123663596474, 28.863395158621557 ], [ -82.0041233675922, 28.863055499823997 ], [ -82.004121209490862, 28.862955367592228 ], [ -82.004114910420881, 28.86285537171274 ], [ -82.004104480648692, 28.862755641214171 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Apache Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004104480648692, 28.862755641214171 ], [ -82.004099293835594, 28.862716835053092 ], [ -82.004053122939894, 28.862391340847633 ], [ -82.004035527466087, 28.862288465084109 ], [ -82.004012061952608, 28.862186498984837 ], [ -82.003982784849256, 28.862085704213552 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Apache Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003982784849256, 28.862085704213552 ], [ -82.003947057551329, 28.86198448009441 ], [ -82.003905469517164, 28.861885002063488 ], [ -82.003811752480956, 28.861677452658999 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nighthawk Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001760302725529, 28.859959083189775 ], [ -82.001858827797321, 28.859753046546491 ], [ -82.001884684866354, 28.859701910014302 ], [ -82.001912884989707, 28.859651744334968 ], [ -82.002176841283514, 28.859205257009208 ], [ -82.002204206969822, 28.859163964538094 ], [ -82.002235971797901, 28.859125187635563 ], [ -82.002271836484042, 28.859089290833097 ], [ -82.002305504758837, 28.859058705012274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harvest Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004855299135471, 28.860840917896002 ], [ -82.004613762485548, 28.860043126602122 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harvest Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004613762485548, 28.860043126602122 ], [ -82.004577386211025, 28.859909682249121 ], [ -82.004548617257484, 28.85977480480577 ], [ -82.004527528382411, 28.859638832638904 ], [ -82.004514168767969, 28.859502104114981 ], [ -82.004506883905023, 28.859438089427467 ], [ -82.004493955646453, 28.859374769673334 ], [ -82.004475461914083, 28.859312527425864 ], [ -82.004452019480212, 28.859244580042414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Altair Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004947245124029, 28.859109021079757 ], [ -82.004452019480212, 28.859244580042414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Altair Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004452019480212, 28.859244580042414 ], [ -82.004191480477544, 28.859314232363268 ], [ -82.004117919692931, 28.859330509127599 ], [ -82.004042913470556, 28.859340428250267 ], [ -82.003967165967978, 28.859343894969712 ], [ -82.00389139672005, 28.859340877686833 ], [ -82.003783629059399, 28.859331952812596 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Altair Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003783629059399, 28.859331952812596 ], [ -82.002956189526017, 28.859263435704349 ], [ -82.002880979852748, 28.859254489703211 ], [ -82.002806839102263, 28.859240216437176 ], [ -82.00255456371346, 28.859182138843103 ], [ -82.002499497511195, 28.859166760719937 ], [ -82.002446512919605, 28.859146489349261 ], [ -82.002396170600932, 28.859121539474792 ], [ -82.00234900251796, 28.859092176370392 ], [ -82.002305504758837, 28.859058705012274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Altair Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002305504758837, 28.859058705012274 ], [ -82.002288620366841, 28.859043672820867 ], [ -82.002004503401068, 28.858783910543497 ], [ -82.001975213954637, 28.858760992291238 ], [ -82.001935512045662, 28.858740365983817 ], [ -82.001891906184298, 28.85872546933426 ], [ -82.001846997721827, 28.858718021206577 ], [ -82.001796882599436, 28.858718021632015 ], [ -82.001755228553222, 28.858724324569323 ], [ -82.001711621004077, 28.858735784179721 ], [ -82.001672571465434, 28.858751253584241 ], [ -82.001636124335349, 28.858771881434485 ], [ -82.001603350723528, 28.858800800526865 ], [ -82.00157872656915, 28.85883489066471 ], [ -82.001192944559904, 28.859487444780004 ], [ -82.001181403750323, 28.859521895713275 ], [ -82.001178799605881, 28.859560092980708 ], [ -82.001181404279379, 28.859592942269533 ], [ -82.001189431000668, 28.859624837801736 ], [ -82.001202231990462, 28.859654822233743 ], [ -82.001216116342704, 28.859680795916486 ], [ -82.001235208566342, 28.859709828388475 ], [ -82.00125256444332, 28.859730454996274 ], [ -82.001273390842684, 28.859749552180297 ], [ -82.001305501080779, 28.859768651113363 ], [ -82.001760302725529, 28.859959083189775 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Altair Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001760302725529, 28.859959083189775 ], [ -82.001837368312195, 28.859990927578739 ], [ -82.001954026567802, 28.86003680148557 ], [ -82.002072559528827, 28.860078789948606 ], [ -82.002192799088647, 28.860116833412818 ], [ -82.002285290560692, 28.860141460739207 ], [ -82.002379407574622, 28.86016073731615 ], [ -82.002474748327671, 28.860174580133695 ], [ -82.002570911016718, 28.86018292964285 ], [ -82.002667489738641, 28.860185754267274 ], [ -82.002764070390668, 28.860183038673327 ], [ -82.002952350635027, 28.860171617863696 ], [ -82.002997477041035, 28.860176965052077 ], [ -82.003035661380039, 28.860183839948458 ], [ -82.003072110589059, 28.860196063725478 ], [ -82.003104219202939, 28.860213632822262 ], [ -82.003137196135896, 28.860237315910155 ], [ -82.003159759398287, 28.860260996475329 ], [ -82.003181455729518, 28.860291554416943 ], [ -82.003198844197087, 28.860324771526674 ], [ -82.003436000434363, 28.861095037026381 ], [ -82.00345552616136, 28.861127121663014 ], [ -82.003478959014814, 28.861155769338339 ], [ -82.003507598565719, 28.86117754134149 ], [ -82.00353623600995, 28.861197021485651 ], [ -82.003563572628778, 28.861211917945798 ], [ -82.003602624689563, 28.861224523195759 ], [ -82.003641676582305, 28.861231396997638 ], [ -82.00367942657796, 28.861232542087414 ], [ -82.003719779874672, 28.861229103402096 ], [ -82.003762737491883, 28.861221081841695 ], [ -82.003801787698805, 28.861207328921587 ], [ -82.004179087916427, 28.861052935374865 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Altair Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004179087916427, 28.861052935374865 ], [ -82.004200209260944, 28.861043227834404 ], [ -82.004314792757569, 28.860997126061804 ], [ -82.004431591300573, 28.860955560013661 ], [ -82.004550375311197, 28.860918609995963 ], [ -82.004670909061701, 28.860886349097171 ], [ -82.004855299135471, 28.860840917896002 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Altair Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004855299135471, 28.860840917896002 ], [ -82.005092367020126, 28.860782505981252 ], [ -82.00516022456074, 28.860763310825178 ], [ -82.005226226667176, 28.860739630342874 ], [ -82.005273512953039, 28.860720789526102 ], [ -82.005347944969628, 28.860687738265923 ], [ -82.005429322367831, 28.860637769416002 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rainsong Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004179087916427, 28.861052935374865 ], [ -82.004150332725843, 28.860981977105421 ], [ -82.00412603617167, 28.860909737442817 ], [ -82.003820349379424, 28.859900033841832 ], [ -82.003795660006432, 28.859805085820206 ], [ -82.003778668113242, 28.859708836492644 ], [ -82.003769456716853, 28.859611771299949 ], [ -82.003768075009489, 28.859514372073207 ], [ -82.003774528110071, 28.859417135080029 ], [ -82.003783629059399, 28.859331952812596 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rainsong Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004386580524809, 28.861440472205139 ], [ -82.004229503079785, 28.861154910679446 ], [ -82.004203123440575, 28.861104371505636 ], [ -82.004179087916427, 28.861052935374865 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tallsman Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005998415570289, 28.859864425476211 ], [ -82.006169107985158, 28.859824375261454 ], [ -82.006225967315203, 28.859813770855776 ], [ -82.006283765794691, 28.859808388022781 ], [ -82.006341888456873, 28.859808288143785 ], [ -82.006694637104104, 28.859823741062502 ], [ -82.006816223691942, 28.859826087887438 ], [ -82.006937769939753, 28.85982248029779 ], [ -82.007058900690481, 28.859812930041393 ], [ -82.007179240788489, 28.859797466913555 ], [ -82.007298419179733, 28.859776136952107 ], [ -82.007416062762559, 28.859749008753884 ], [ -82.00753181381188, 28.859716164450766 ], [ -82.007645313580525, 28.85967770783116 ], [ -82.007756207423768, 28.859633755316516 ], [ -82.007815129455651, 28.859604674547093 ], [ -82.007869666237269, 28.859569585540658 ], [ -82.007919027554351, 28.859528993635394 ], [ -82.007962506223919, 28.859483482666082 ], [ -82.007999471944373, 28.859433711354772 ], [ -82.008029391793286, 28.85938039616553 ], [ -82.008051832276848, 28.859324309499303 ], [ -82.008066473677005, 28.859266257135133 ], [ -82.008073100826095, 28.859207078230462 ], [ -82.008071621553796, 28.859147626371534 ], [ -82.008055867017319, 28.858980738799247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Isleworth Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005998415570289, 28.859864425476211 ], [ -82.005975545599782, 28.859788885450602 ], [ -82.005941900818726, 28.859666582109039 ], [ -82.005914645664831, 28.859543049569922 ], [ -82.005893838552922, 28.859418549503168 ], [ -82.005879522522477, 28.859293342676075 ], [ -82.005878272122828, 28.859235551925519 ], [ -82.005884684327626, 28.859178025253929 ], [ -82.005898669994252, 28.85912154947324 ], [ -82.005920037484429, 28.859066894254347 ], [ -82.005948495739347, 28.859014802201798 ], [ -82.005983657355046, 28.858965987049334 ], [ -82.006025044731629, 28.858921112004595 ], [ -82.006072089048686, 28.858880790651753 ], [ -82.006124151788725, 28.858845570709665 ], [ -82.006180523712075, 28.85881593403214 ], [ -82.006240437155554, 28.858792283975678 ], [ -82.006826657157461, 28.858596195854251 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Isleworth Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006670193129608, 28.860652017853663 ], [ -82.006420450202228, 28.860650477668266 ], [ -82.006381396337559, 28.860644368020051 ], [ -82.006342346317084, 28.86063367375214 ], [ -82.006312839738129, 28.86062145327752 ], [ -82.006282465738749, 28.860603883070159 ], [ -82.006252958833358, 28.860585548568295 ], [ -82.006227791244712, 28.860559575875108 ], [ -82.006208698548647, 28.860531310172565 ], [ -82.006190949450016, 28.860500325769273 ], [ -82.005998415570289, 28.859864425476211 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Isleworth Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006826657157461, 28.858596195854251 ], [ -82.008621158000409, 28.857999323238342 ], [ -82.008667151044477, 28.857993973464268 ], [ -82.0087053332674, 28.8579924426929 ], [ -82.00873917737627, 28.85799702438166 ], [ -82.008782569296713, 28.85800695344799 ], [ -82.008826827920458, 28.858024520456652 ], [ -82.008863276646039, 28.858044381583319 ], [ -82.008900592210509, 28.858073410062115 ], [ -82.008926629393414, 28.858103965920172 ], [ -82.008946591072871, 28.85813910675542 ], [ -82.00896814554045, 28.858211873591472 ], [ -82.008983968269106, 28.858294087905438 ], [ -82.008994102603793, 28.858376994635091 ], [ -82.009053146339014, 28.859051819125419 ], [ -82.009064026862362, 28.859158175784827 ], [ -82.009141626285071, 28.859855822790234 ], [ -82.009138374651684, 28.85988733687693 ], [ -82.009132953084261, 28.859917895559221 ], [ -82.009119938327146, 28.859945589900573 ], [ -82.009105838989953, 28.859971373227754 ], [ -82.00908848435256, 28.859997158561132 ], [ -82.00906136808176, 28.86002485377572 ], [ -82.009032080522786, 28.86004777412472 ], [ -82.009004344238704, 28.86006445854612 ], [ -82.008028997877574, 28.860430691124609 ], [ -82.007885087393021, 28.860481054696919 ], [ -82.007738517548859, 28.860525076860185 ], [ -82.007589650176072, 28.860562650213065 ], [ -82.007438850183746, 28.860593683596964 ], [ -82.007286488633468, 28.86061810119368 ], [ -82.007132939664032, 28.860635839818723 ], [ -82.006978581516719, 28.860646860651268 ], [ -82.006823790384061, 28.860651130286101 ], [ -82.006670193129608, 28.860652017853663 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bartow Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014295457464314, 28.861897006423284 ], [ -82.014210547899552, 28.861735370817144 ], [ -82.01419016918291, 28.861649832632917 ], [ -82.014177413722763, 28.861583161761526 ], [ -82.01417215693958, 28.86151571054695 ], [ -82.014174453228861, 28.861448132252743 ], [ -82.014184273962357, 28.861381078344952 ], [ -82.01422502636828, 28.861181036140902 ], [ -82.014239400207444, 28.86109234180886 ], [ -82.01424654477492, 28.861002970571665 ], [ -82.014246424275342, 28.86091337899996 ], [ -82.014239037762522, 28.860824021855073 ], [ -82.014224421189638, 28.860735357502659 ], [ -82.014202653557277, 28.860647837986853 ], [ -82.01417384256365, 28.860561910836356 ], [ -82.014138136902901, 28.860478012747006 ], [ -82.014095718065462, 28.86039657319218 ], [ -82.014046802386744, 28.860318007204086 ], [ -82.0139916410468, 28.860242716276311 ], [ -82.013828575839455, 28.860036250778577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eastwood Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012882762577391, 28.859988866790349 ], [ -82.012889433401767, 28.8596996767488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bartow Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013544780658705, 28.859870491479768 ], [ -82.013436615137621, 28.859838227237148 ], [ -82.013039480096666, 28.859727079591302 ], [ -82.012889433401767, 28.8596996767488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bartow Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013828575839455, 28.860036250778577 ], [ -82.013788673180187, 28.859982692980516 ], [ -82.013751785627008, 28.859950229849883 ], [ -82.013698775794325, 28.859920974154303 ], [ -82.013660790463135, 28.859903983818604 ], [ -82.013560450914397, 28.859875165724159 ], [ -82.013544780658705, 28.859870491479768 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eastwood Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012889433401767, 28.8596996767488 ], [ -82.012891936733411, 28.85959113201584 ], [ -82.012912955989961, 28.858522284648011 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eastwood Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012912955989961, 28.858522284648011 ], [ -82.0129194312008, 28.85819297810027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inwood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012912955989961, 28.858522284648011 ], [ -82.01361806978467, 28.858523218579364 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inwood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01361806978467, 28.858523218579364 ], [ -82.01394523042066, 28.858523648766724 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gulfport Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013544780658705, 28.859870491479768 ], [ -82.013585793725397, 28.859765583854873 ], [ -82.013590401714808, 28.859739202742087 ], [ -82.013592703789556, 28.859714852034724 ], [ -82.013594995117671, 28.85961338949733 ], [ -82.01361806978467, 28.858523218579364 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ida Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002647750694294, 28.860844926706644 ], [ -82.002729252595032, 28.860845274680106 ], [ -82.002974843910778, 28.860852910521952 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eleanor Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002781008348833, 28.861461255366564 ], [ -82.002647750694294, 28.860844926706644 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eleanor Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00283924286461, 28.861867303073748 ], [ -82.002832134147496, 28.861759745819853 ], [ -82.002823019995148, 28.861671260600225 ], [ -82.002807434138106, 28.861583477474188 ], [ -82.002781008348833, 28.861461255366564 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alva Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000197106412116, 28.861025709788148 ], [ -82.00034983931954, 28.860765874555728 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Veranda Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00034983931954, 28.860765874555728 ], [ -82.000444019073555, 28.860813918847292 ], [ -82.001224754929538, 28.861139885280206 ], [ -82.001388821660569, 28.86120443987004 ], [ -82.001555490955965, 28.861263594853391 ], [ -82.00172454242275, 28.861317269917425 ], [ -82.001895735166698, 28.86136539106657 ], [ -82.002019480419449, 28.861395121714708 ], [ -82.002144710851084, 28.861419565632147 ], [ -82.00227113432328, 28.861438667777719 ], [ -82.002398456646972, 28.861452382134399 ], [ -82.002526382607712, 28.861460677123109 ], [ -82.002654610841063, 28.861463534700555 ], [ -82.002781008348833, 28.861461255366564 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alva Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000671870394854, 28.860222296990411 ], [ -82.000815848825567, 28.859977673153587 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alva Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00034983931954, 28.860765874555728 ], [ -82.000671870394854, 28.860222296990411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ida Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000671870394854, 28.860222296990411 ], [ -82.001526085113397, 28.860574744327735 ], [ -82.001666147193433, 28.860629851609499 ], [ -82.001808431500962, 28.860680352462598 ], [ -82.001952746349232, 28.860726172892999 ], [ -82.002098889800678, 28.860767253344314 ], [ -82.002212779225033, 28.860794036094291 ], [ -82.002328264483367, 28.86081486261731 ], [ -82.00244494376544, 28.860829658023388 ], [ -82.002562412185412, 28.860838369079229 ], [ -82.002647750694294, 28.860844926706644 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pleasant View Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967273399272742, 28.850425482130724 ], [ -81.967140826464103, 28.850370443396674 ], [ -81.966979867694917, 28.850296543878233 ], [ -81.966916203400061, 28.850267963015252 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pleasant View Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966916203400061, 28.850267963015252 ], [ -81.966816998535236, 28.850223431407812 ], [ -81.966673821382557, 28.850150747712568 ], [ -81.966573416743046, 28.85010578973931 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Countryside Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967648701689242, 28.848168665459905 ], [ -81.967567137661817, 28.848168644880388 ], [ -81.967390123860298, 28.848168602006364 ], [ -81.967280791956441, 28.848170104817846 ], [ -81.967183607644458, 28.848171608705456 ], [ -81.967079474655534, 28.848192974181877 ], [ -81.966971870594392, 28.84822350434742 ], [ -81.966856020229699, 28.848258045848414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cedar Grove Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009316899780643, 28.862086115523162 ], [ -82.009172979386761, 28.862196988971778 ], [ -82.008995175156628, 28.862339619148209 ], [ -82.008852929729585, 28.862435285618893 ], [ -82.008781804019122, 28.86246611172027 ], [ -82.008696853463761, 28.862487472536241 ], [ -82.008620318430744, 28.862500627249865 ], [ -82.008559570514521, 28.862503495633543 ], [ -82.008496654369509, 28.862501588220518 ], [ -82.008422887526308, 28.862497773931768 ], [ -82.008308984686764, 28.862488231349683 ], [ -82.008208099535508, 28.862482508299447 ], [ -82.008136503928881, 28.862482512283265 ], [ -82.008090943649506, 28.86249015280228 ], [ -82.008054061076649, 28.862499705715493 ], [ -82.008019349028515, 28.86251785023936 ], [ -82.00798680722113, 28.862540770531773 ], [ -82.007956435513492, 28.862566555514306 ], [ -82.007933657886895, 28.862591385443338 ], [ -82.007914133234991, 28.862625765179502 ], [ -82.007902202876693, 28.862662052878523 ], [ -82.00789704354645, 28.862711718675115 ], [ -82.00789461841488, 28.862769006988866 ], [ -82.007896800364648, 28.862951398600931 ], [ -82.007904403320993, 28.863087955582994 ], [ -82.007910915062311, 28.863115647844214 ], [ -82.007921763501983, 28.863142386136481 ], [ -82.007939122456307, 28.863165304624221 ], [ -82.007961903931971, 28.863192041366705 ], [ -82.007994449688795, 28.863220687752492 ], [ -82.008024826080188, 28.863242650883372 ], [ -82.008062794437933, 28.863261746069238 ], [ -82.008098265383666, 28.863273645508116 ], [ -82.008128968651022, 28.863279888658173 ], [ -82.008282009719451, 28.863287549686259 ], [ -82.008501317193378, 28.86329797136624 ], [ -82.008764659619999, 28.863307543691253 ], [ -82.009052551122295, 28.863308374261798 ], [ -82.009313563044344, 28.863297006794927 ], [ -82.009665034708178, 28.863280748646044 ], [ -82.009976370748078, 28.863268313614931 ], [ -82.010243227179274, 28.863258744041374 ], [ -82.01028770336795, 28.863253011245771 ], [ -82.010316990946592, 28.86324537205283 ], [ -82.010349534849198, 28.863236775275311 ], [ -82.010379907345083, 28.863223402751782 ], [ -82.01040702621593, 28.863207165641516 ], [ -82.010427635500847, 28.863192839174481 ], [ -82.010447159874474, 28.86317373959529 ], [ -82.010467769896906, 28.863156550111693 ], [ -82.010485125178121, 28.863135538702547 ], [ -82.010501394047878, 28.8631154838125 ], [ -82.010515493741323, 28.863092564263898 ], [ -82.010527423981529, 28.863063915242503 ], [ -82.010535013726241, 28.863039086892435 ], [ -82.01053935106259, 28.863013304142449 ], [ -82.010539346629258, 28.86295696067576 ], [ -82.010531733941974, 28.862776478787023 ], [ -82.010503504508563, 28.862499548417194 ], [ -82.010486124214083, 28.862259858937282 ], [ -82.010469833961736, 28.86206696285598 ], [ -82.010442691773889, 28.86182631942614 ], [ -82.010437264351467, 28.861792895768748 ], [ -82.010429668250211, 28.861761384250332 ], [ -82.010417732556519, 28.861731782320561 ], [ -82.010403627640059, 28.86169835928829 ], [ -82.01038735366437, 28.861673533564279 ], [ -82.010366739556076, 28.861644885990099 ], [ -82.010334192643313, 28.861605736448272 ], [ -82.010302732204394, 28.861577090543115 ], [ -82.010150890243338, 28.861443832786584 ], [ -82.010123811871949, 28.861417100317798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cedar Grove Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010123811871949, 28.861417100317798 ], [ -82.009894066535239, 28.861619513873819 ], [ -82.009741947535275, 28.861753446877458 ], [ -82.009558219395672, 28.86189607729921 ], [ -82.009362635779368, 28.862050880315266 ], [ -82.009316899780643, 28.862086115523162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridge Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009586785898946, 28.862458565447547 ], [ -82.009316899780643, 28.862086115523162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cedar Grove Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010123811871949, 28.861417100317798 ], [ -82.009993763755162, 28.861298077406161 ], [ -82.009955573085776, 28.861253771492219 ], [ -82.009928667390355, 28.861208699638883 ], [ -82.009908704170954, 28.86116668521338 ], [ -82.009893946328631, 28.86110786140388 ], [ -82.009884133070699, 28.861038607520193 ], [ -82.009854219216137, 28.860835324028656 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cedar Grove Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009854219216137, 28.860835324028656 ], [ -82.009846185120423, 28.860774718604333 ], [ -82.009795829703549, 28.86051803269984 ], [ -82.009733596508084, 28.860391610530414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hammock Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009854219216137, 28.860835324028656 ], [ -82.010458879087452, 28.860767654701885 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052257646467368, 28.840098884763368 ], [ -82.052813614049143, 28.840259388175586 ], [ -82.053891174368772, 28.840570882327 ], [ -82.05508609965743, 28.840913480824657 ], [ -82.055613593407983, 28.841068691202988 ], [ -82.056595380269002, 28.841354497726133 ], [ -82.057651691313566, 28.841656143519511 ], [ -82.059557328878427, 28.842210823967672 ], [ -82.06067502076624, 28.842533843560883 ], [ -82.061654020102523, 28.842812793844704 ], [ -82.063090255924678, 28.843228850017312 ], [ -82.064039686351393, 28.843503058589203 ], [ -82.06476588007682, 28.843711072463549 ], [ -82.06675411801217, 28.844290608190086 ], [ -82.06757655264542, 28.84452419511722 ], [ -82.070236644204826, 28.84529234956543 ], [ -82.071689090721463, 28.845715409335444 ], [ -82.072864504249182, 28.846058100958011 ], [ -82.075784433998038, 28.846910607340632 ], [ -82.07733369771654, 28.847351354642129 ], [ -82.077930068922171, 28.847534328512189 ], [ -82.078302414780168, 28.847659101135427 ], [ -82.07867792325311, 28.84779220368058 ], [ -82.079047126904129, 28.847933643424813 ], [ -82.079416341981357, 28.848086188612637 ], [ -82.079776092616058, 28.848238740137063 ], [ -82.08012638395428, 28.8483940726572 ], [ -82.080454591765758, 28.848549418223786 ], [ -82.080826995345475, 28.848738066057038 ], [ -82.0811615357118, 28.848921179958577 ], [ -82.081499238115612, 28.849109847517859 ], [ -82.081713858734247, 28.849237483260765 ], [ -82.082064198580994, 28.849448361042381 ], [ -82.082395615846693, 28.849662027561809 ], [ -82.082739663672683, 28.849892349327831 ], [ -82.083055312304708, 28.850111579282178 ], [ -82.083367815332409, 28.850339141389188 ], [ -82.083595098695127, 28.850516760302973 ], [ -82.083781353764849, 28.850672184870458 ], [ -82.083970760544247, 28.850822050841018 ], [ -82.08423278373192, 28.851041311094882 ], [ -82.084488505728245, 28.85127168210666 ], [ -82.084775798968749, 28.85152703127395 ], [ -82.085053641250084, 28.851799052183043 ], [ -82.08533149501207, 28.852082180760139 ], [ -82.085605539130739, 28.852378421621619 ], [ -82.085845748846452, 28.852636867725259 ], [ -82.08607880347013, 28.852904778572714 ], [ -82.086243747624465, 28.853106505843982 ], [ -82.086448140320528, 28.853364972651942 ], [ -82.086699149885234, 28.853683330495198 ], [ -82.086917917328023, 28.853995399564834 ], [ -82.08714386325947, 28.854323230510985 ], [ -82.087369827925912, 28.854673139509856 ], [ -82.087570694283841, 28.85499152606867 ], [ -82.087742894595394, 28.855297316617225 ], [ -82.087918690176991, 28.85561887325624 ], [ -82.088098100660275, 28.85597826990363 ], [ -82.088259580561342, 28.856312449537082 ], [ -82.088417483636533, 28.856652939286082 ], [ -82.088568237746188, 28.857009200334023 ], [ -82.088704663207366, 28.857365471447661 ], [ -82.089543652038458, 28.859647849469507 ], [ -82.09008851412429, 28.861150404238707 ], [ -82.09026610439598, 28.861642986826258 ], [ -82.09045577073114, 28.862128471708175 ], [ -82.090621142261369, 28.862458010437617 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091836549610093, 28.861751816566681 ], [ -82.091767489591234, 28.861053575887663 ], [ -82.09170676098357, 28.860674343058623 ], [ -82.091646047248574, 28.860312835001732 ], [ -82.091589449547513, 28.86005057109616 ], [ -82.09150460599777, 28.859720980117718 ], [ -82.0914157554393, 28.859412658137519 ], [ -82.091347096124011, 28.85917167128844 ], [ -82.091273285973998, 28.858831837876885 ], [ -82.091193531297392, 28.858567284816452 ], [ -82.091074873199176, 28.858230757620952 ], [ -82.090960105663967, 28.857937026632449 ], [ -82.090833665084745, 28.857662747062822 ], [ -82.090720842274678, 28.857427372793687 ], [ -82.090563279499179, 28.857143367947462 ], [ -82.090339577258959, 28.856781551669563 ], [ -82.090193684915761, 28.856552012443817 ], [ -82.090061409171682, 28.856380830409112 ], [ -82.089894117346432, 28.856172689609345 ], [ -82.08983186949078, 28.856094879151648 ], [ -82.089757951069302, 28.85599567193616 ], [ -82.089652909427642, 28.855847833024239 ], [ -82.089499235215129, 28.855670814898314 ], [ -82.089293039569526, 28.855452947748319 ], [ -82.089100461361014, 28.855262312786312 ], [ -82.088886485368405, 28.85504833631785 ], [ -82.088653056538831, 28.854838248486331 ], [ -82.087939153628554, 28.854174918288237 ], [ -82.086943191150681, 28.853268433469765 ], [ -82.086093121839284, 28.852492278633346 ], [ -82.08483242111447, 28.851324241040707 ], [ -82.084399903919646, 28.850938439556295 ], [ -82.084137877224677, 28.850713626846897 ], [ -82.083942156851577, 28.850558208617279 ], [ -82.083702239288669, 28.850363933412805 ], [ -82.083399198948769, 28.850133588989362 ], [ -82.083111954434258, 28.849928230755374 ], [ -82.082824703598718, 28.849717317318916 ], [ -82.08248696957061, 28.849492546519169 ], [ -82.082086123103593, 28.849245591913061 ], [ -82.081669506991062, 28.848998646471582 ], [ -82.080858398419139, 28.848551956128833 ], [ -82.080132545919952, 28.848199644964751 ], [ -82.079684426438433, 28.847999930376975 ], [ -82.07932467992056, 28.847852934086823 ], [ -82.078955468939768, 28.847705940517923 ], [ -82.078535783347704, 28.847553423188906 ], [ -82.078179208875838, 28.847425863952942 ], [ -82.077787938253522, 28.847303878191358 ], [ -82.077409291482198, 28.847187440503568 ], [ -82.077052737921136, 28.847084875714 ], [ -82.074885032326463, 28.846458374446826 ], [ -82.073865871278301, 28.846161739844298 ], [ -82.07205476258693, 28.84563234779985 ], [ -82.070422109770561, 28.845159663699175 ], [ -82.069527406898303, 28.844905822883394 ], [ -82.067530710243858, 28.844325332596917 ], [ -82.064983964818197, 28.843594313252947 ], [ -82.064567486985808, 28.843472303706104 ], [ -82.062764705802593, 28.842949613874271 ], [ -82.060803466935113, 28.84238525694958 ], [ -82.05929248683988, 28.841944896172325 ], [ -82.05663883823533, 28.841178840439515 ], [ -82.055147966503611, 28.840748579286981 ], [ -82.053889299132877, 28.840384457589618 ], [ -82.052825342367981, 28.840074695997519 ], [ -82.052328323697097, 28.83993304723559 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edgewater Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982431449384151, 28.908809070945686 ], [ -81.982488049086143, 28.908832363988342 ], [ -81.982601568664876, 28.908890064549087 ], [ -81.982729476832148, 28.908957615458558 ], [ -81.982775383999822, 28.9089767203332 ], [ -81.982818134203583, 28.908987474018858 ], [ -81.982873380192288, 28.908994215875122 ], [ -81.982925625383672, 28.908990711732457 ], [ -81.982975709462622, 28.908977820689035 ], [ -81.983013578066874, 28.908960627720109 ], [ -81.983057557575663, 28.908929465239044 ], [ -81.983167507049217, 28.908843494685691 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edgewater Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981823077881643, 28.908745570551037 ], [ -81.981960399849939, 28.908726771761661 ], [ -81.982115501038592, 28.908731012686026 ], [ -81.982182999489893, 28.908740186355409 ], [ -81.982259951742023, 28.908754168691395 ], [ -81.982364935358959, 28.90878169637806 ], [ -81.982431449384151, 28.908809070945686 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mallard Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981823077881643, 28.908745570551037 ], [ -81.981550626692822, 28.908222924919798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ibises Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982431449384151, 28.908809070945686 ], [ -81.982473924272853, 28.908726393563068 ], [ -81.982481788630082, 28.908695277048462 ], [ -81.982483757395443, 28.908665888562123 ], [ -81.982479833057582, 28.908641687514809 ], [ -81.98245430413786, 28.908572534755109 ], [ -81.982224522314041, 28.908100566424064 ], [ -81.982191538345987, 28.908039595556254 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ibises Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982191538345987, 28.908039595556254 ], [ -81.982185242119755, 28.908027954169526 ], [ -81.982169534842697, 28.907972634888875 ], [ -81.982142069196996, 28.907739254543436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flamingo Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981550626692822, 28.908222924919798 ], [ -81.981754968602218, 28.908130755300522 ], [ -81.981885951028858, 28.908091589950544 ], [ -81.982011691760903, 28.908073166694674 ], [ -81.982115503485133, 28.908054291942051 ], [ -81.982191538345987, 28.908039595556254 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Old Mill Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97990951729345, 28.908365194320549 ], [ -81.97991014079858, 28.90836501305245 ], [ -81.980188979662771, 28.908283919168078 ], [ -81.980487750829795, 28.908185635233817 ], [ -81.980729505695095, 28.908099383585331 ], [ -81.981057926859961, 28.907971002900254 ], [ -81.981409158067478, 28.907814532443954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Old Mill Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977684423976356, 28.908644026688808 ], [ -81.977935717820202, 28.908662827174016 ], [ -81.978090795634714, 28.908664859391994 ], [ -81.978280081743861, 28.90866489118649 ], [ -81.978423757688063, 28.908656888517726 ], [ -81.978511482979897, 28.908650009997526 ], [ -81.978515123373455, 28.908649725456652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sandpiper Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979216481918883, 28.909006605855001 ], [ -81.979214999860631, 28.908997881306664 ], [ -81.979189370628845, 28.908892546676 ], [ -81.979092387253658, 28.908563083633691 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 4th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10779163120371, 28.756162555963769 ], [ -82.107818924033253, 28.758443349895007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 312", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108686145132438, 28.701502719826379 ], [ -82.108760362459179, 28.701512627793431 ], [ -82.11090675418356, 28.701534432278905 ], [ -82.112324351255651, 28.701578256852386 ], [ -82.112384402187729, 28.701579926316775 ], [ -82.112418799238128, 28.701592303174166 ], [ -82.11243550734612, 28.701619859132052 ], [ -82.112439730709724, 28.701671320832425 ], [ -82.112440066463108, 28.701985622157768 ], [ -82.11243657937878, 28.702623419305265 ], [ -82.112437112428182, 28.703123360845495 ], [ -82.11243720471424, 28.703209747832112 ], [ -82.112439343407885, 28.703261211238971 ], [ -82.112449814224647, 28.703305314706043 ], [ -82.11248527834681, 28.703327341058589 ], [ -82.112654142180816, 28.70332720257581 ], [ -82.113410898080232, 28.703330251422575 ], [ -82.114075915599599, 28.703322344562409 ], [ -82.114642963299488, 28.703327383129594 ], [ -82.114838926674707, 28.703327219133552 ], [ -82.115332016564381, 28.703321767966006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 312", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115332016564381, 28.703321767966006 ], [ -82.115660042424111, 28.703318143376084 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109753048588303, 28.930855983856205 ], [ -82.109586742979673, 28.930856117765497 ], [ -82.109498043422406, 28.93085375158892 ], [ -82.109395479034603, 28.930846519673754 ], [ -82.109262424383417, 28.930836873410687 ], [ -82.109140454595334, 28.930824780079657 ], [ -82.108979659738395, 28.930793209447376 ], [ -82.108810530180079, 28.930744579362216 ], [ -82.108669112627339, 28.930688610117222 ], [ -82.108544316155189, 28.930622872702926 ], [ -82.108422289115524, 28.930557134757084 ], [ -82.10830579384934, 28.930476761594917 ], [ -82.108214250258612, 28.930403684165928 ], [ -82.10814488946906, 28.930340341827382 ], [ -82.10803947890102, 28.930259959570428 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bachman Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01327866139593, 28.881219339381509 ], [ -82.013356706588212, 28.881167195253095 ], [ -82.013620818099028, 28.880989294859894 ], [ -82.01368592792403, 28.880949869724983 ], [ -82.013725317729438, 28.880930883285764 ], [ -82.013800428226816, 28.880901044979115 ], [ -82.013878542274597, 28.880877937504494 ], [ -82.013958883861307, 28.880861790118093 ], [ -82.014040651339286, 28.880852763505306 ], [ -82.014123033826522, 28.880850947072602 ], [ -82.014205211205663, 28.880856358045101 ], [ -82.014286368476178, 28.880868946879151 ], [ -82.014341846302074, 28.880881882957858 ], [ -82.015038151881882, 28.881051419549422 ], [ -82.015045413412466, 28.881053076300844 ], [ -82.015089513027291, 28.881058652312181 ], [ -82.015134016541253, 28.88105678427868 ], [ -82.015177311356922, 28.881047533730513 ], [ -82.015217839251093, 28.881031239200492 ], [ -82.01523171080342, 28.881023606032993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bachman Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013044698798254, 28.881377355017097 ], [ -82.01327866139593, 28.881219339381509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bachman Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012027494903037, 28.879683310513752 ], [ -82.011774733729951, 28.879853562580941 ], [ -82.011774078700057, 28.879854003860586 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bachman Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011676036479912, 28.879921292050678 ], [ -82.01159073370907, 28.879987488251349 ], [ -82.01155745617443, 28.880018749388075 ], [ -82.011496734674438, 28.880085513788842 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lowell Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010630252334423, 28.880148617432503 ], [ -82.010669850579788, 28.880099109710461 ], [ -82.01069354367624, 28.880062979786398 ], [ -82.01071792555517, 28.880015338242028 ], [ -82.010745407558346, 28.879947537236699 ], [ -82.010788304881714, 28.879838510705952 ], [ -82.010812263321739, 28.879770755065827 ], [ -82.010828927837295, 28.879714450181165 ], [ -82.010848629248486, 28.879631288053794 ], [ -82.010908518707723, 28.879342419727042 ], [ -82.010951060434522, 28.879137227645462 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lowell Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010951060434522, 28.879137227645462 ], [ -82.010978963815305, 28.879002645392738 ], [ -82.010996114029084, 28.878936104732524 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tamarind Grove Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013320584412725, 28.874145202621634 ], [ -82.013410286283559, 28.874013753059149 ], [ -82.013587061693869, 28.873772705059313 ], [ -82.013628069343227, 28.873720054475655 ], [ -82.013692770679796, 28.873647795458137 ], [ -82.013763715382169, 28.873580228676737 ], [ -82.013832846964576, 28.873523538388898 ], [ -82.013877795582701, 28.873484368643521 ], [ -82.013954401827874, 28.87342592799444 ], [ -82.014036162919027, 28.873373177611423 ], [ -82.014045077510431, 28.873367953296604 ], [ -82.014053833119675, 28.87336203061491 ], [ -82.014142986786183, 28.87330682065706 ], [ -82.014161457759172, 28.873297151537706 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tamarind Grove Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014161457759172, 28.873297151537706 ], [ -82.014236681325698, 28.873257777419962 ], [ -82.014334364260506, 28.873215192394017 ], [ -82.014428003307444, 28.873181694799211 ], [ -82.014453232357283, 28.87317720416517 ], [ -82.014511542901474, 28.873162252442242 ], [ -82.014545074448364, 28.873159669306784 ], [ -82.014611103652129, 28.873150167554329 ], [ -82.01480819008097, 28.87314694923607 ], [ -82.014925005991458, 28.873148061183862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 526", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06738862353491, 28.741448419307122 ], [ -82.067051866000583, 28.741439907779593 ], [ -82.066887730775676, 28.741444242454005 ], [ -82.066806882349184, 28.741451787419731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 135th Crossing", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95719438893768, 28.954338508838685 ], [ -81.956535517167012, 28.954773543232726 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 135th Crossing", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958316359824693, 28.953312426421277 ], [ -81.95770031806822, 28.95382192890408 ], [ -81.957626597127657, 28.953885787859289 ], [ -81.95758058105227, 28.953940254571016 ], [ -81.957515313659087, 28.95402571158845 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 86th Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957515313659087, 28.95402571158845 ], [ -81.957153940967984, 28.953667504021052 ], [ -81.956656321325269, 28.953022058314811 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 86th Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956656321325269, 28.953022058314811 ], [ -81.956403642272605, 28.952669822684697 ], [ -81.956188936902265, 28.952421153215408 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 134th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957389674553468, 28.952400363629291 ], [ -81.956656321325269, 28.953022058314811 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 135th Crossing", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956535517167012, 28.954773543232726 ], [ -81.956318512113043, 28.954802091548409 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 136th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957870537949546, 28.956110227223938 ], [ -81.956925465808155, 28.956858869097374 ], [ -81.956759480987259, 28.956984725863002 ], [ -81.956713106927097, 28.957037146641369 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 136th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95856932269399, 28.955559438349692 ], [ -81.957870537949546, 28.956110227223938 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 86th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957870537949546, 28.956110227223938 ], [ -81.956535517167012, 28.954773543232726 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allaire Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983962770137182, 28.851583513848322 ], [ -81.983975743957032, 28.851460718836059 ], [ -81.983994119831863, 28.851338459534666 ], [ -81.984017865942931, 28.851216920008493 ], [ -81.984046947397559, 28.851096282516277 ], [ -81.98408132315474, 28.850976727510872 ], [ -81.984100397537119, 28.850915408188193 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allaire Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984100397537119, 28.850915408188193 ], [ -81.98417102546523, 28.850688373009504 ], [ -81.984207114699885, 28.850567797659867 ], [ -81.98424054848789, 28.850446630974979 ], [ -81.98424796816937, 28.850402823103021 ], [ -81.984247303700627, 28.850358534250876 ], [ -81.984238573362575, 28.850314913055769 ], [ -81.984222002462786, 28.850273091936486 ], [ -81.984198021289316, 28.85023415551251 ], [ -81.984167250765992, 28.850199111729079 ], [ -81.984130490155863, 28.850168873809864 ], [ -81.984088692470038, 28.850144221455739 ], [ -81.984042941920848, 28.850125798135533 ], [ -81.98399442523143, 28.850114075893305 ], [ -81.983944400888632, 28.85010936617282 ], [ -81.983680918253825, 28.850103344755276 ], [ -81.98361580578019, 28.850104849054222 ], [ -81.983551222206543, 28.850112310409379 ], [ -81.983487876746608, 28.850125652213116 ], [ -81.983426450954695, 28.850144728378062 ], [ -81.983367613073241, 28.850169330557339 ], [ -81.983312006759121, 28.850199191752115 ], [ -81.983138899656524, 28.850303427850044 ], [ -81.98308787060067, 28.850337668418554 ], [ -81.983041099136472, 28.850376337121766 ], [ -81.982999076246315, 28.850419024379711 ], [ -81.982765973132615, 28.850681979652393 ], [ -81.982717379774414, 28.850741313512998 ], [ -81.982674044499191, 28.850803724899173 ], [ -81.982636216419635, 28.850868852925981 ], [ -81.98260411493149, 28.850936321365069 ], [ -81.982577927663016, 28.851005742253513 ], [ -81.98255780227592, 28.851076714087927 ], [ -81.982543856713463, 28.851148824532725 ], [ -81.982533137515887, 28.851220644854326 ], [ -81.982527806823768, 28.851252286210546 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allaire Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982527806823768, 28.851252286210546 ], [ -81.982510057280962, 28.851327842960256 ], [ -81.98248548632823, 28.851401907302456 ], [ -81.982454261090638, 28.851474000131141 ], [ -81.982416575338902, 28.851543661291419 ], [ -81.98237267306375, 28.851610438755003 ], [ -81.981816386829706, 28.852383395567418 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allaire Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981816386829706, 28.852383395567418 ], [ -81.981430052753169, 28.852920196165798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994614255042464, 28.859485177578456 ], [ -81.994725475961147, 28.859524112028843 ], [ -81.994850221472163, 28.859561359610179 ], [ -81.994977135998653, 28.859596696078192 ], [ -81.99528303393457, 28.859681698238749 ], [ -81.995424050203923, 28.859717991236781 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020609341869971, 28.870782215686599 ], [ -82.020599847237364, 28.86876256911756 ], [ -82.020597223715882, 28.867990461561188 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inspiration Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023222964557547, 28.867279153721604 ], [ -82.022975301064335, 28.867464324991051 ], [ -82.022648705497389, 28.867698001175686 ], [ -82.022459887774744, 28.867810348726678 ], [ -82.022260854576174, 28.867895742246805 ], [ -82.022102644385029, 28.867936202412508 ], [ -82.021913812813963, 28.867981157986183 ], [ -82.021684140075607, 28.86799018003661 ], [ -82.020597223715882, 28.867990461561188 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inspiration Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024741118198193, 28.867010259213867 ], [ -82.024143975812578, 28.867019350584489 ], [ -82.023791812685431, 28.867019411464724 ], [ -82.023669327004896, 28.867041895261668 ], [ -82.02353663790953, 28.867086845321364 ], [ -82.023388643655537, 28.867158752334181 ], [ -82.02324576075064, 28.867262109909415 ], [ -82.023222964557547, 28.867279153721604 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 20th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054463370854137, 28.7267711046103 ], [ -82.05431574794126, 28.726804619426531 ], [ -82.054225743034422, 28.726828246247699 ], [ -82.054126018209161, 28.726829675122289 ], [ -82.054026249427935, 28.72684119193714 ], [ -82.053960564151026, 28.72684979523391 ], [ -82.053714838125401, 28.72684774661354 ], [ -82.053510470269089, 28.726845681460517 ], [ -82.053038482249448, 28.726841576438204 ], [ -82.052410788596447, 28.726841816124725 ], [ -82.051559265183229, 28.726839993021283 ], [ -82.051284310810658, 28.726844924102384 ], [ -82.051121348158944, 28.726861601953019 ], [ -82.050955928048324, 28.726900265672498 ], [ -82.050875649141148, 28.726917449474751 ], [ -82.050800238769583, 28.726934634139592 ], [ -82.050729685619743, 28.726941093738819 ], [ -82.050671293579796, 28.726936827396298 ], [ -82.050598299932133, 28.726926131012565 ], [ -82.050513138969009, 28.726906861550489 ], [ -82.050420682373954, 28.726891883459057 ], [ -82.05031362524953, 28.726876910641099 ], [ -82.04991217710571, 28.726844889765395 ], [ -82.049559390173656, 28.726814993216625 ], [ -82.049148218521353, 28.726800129482555 ], [ -82.048496189679184, 28.726787493425107 ], [ -82.047625201784186, 28.726783507574172 ], [ -82.047257829736154, 28.726781490107879 ], [ -82.04680532807491, 28.72682882257752 ], [ -82.046637469360803, 28.726858903437179 ], [ -82.046510963191949, 28.726871814233679 ], [ -82.046299305247885, 28.726886896553495 ], [ -82.04620199209613, 28.726895507600897 ], [ -82.046090086994383, 28.726919134539887 ], [ -82.046000082946222, 28.726949188564173 ], [ -82.045893041537539, 28.726964236213288 ], [ -82.04576409806792, 28.726970712640448 ], [ -82.045588922411639, 28.726960047420459 ], [ -82.045452888903043, 28.726947337946743 ], [ -82.045292090149999, 28.72692583157939 ], [ -82.045121785833075, 28.72692374346363 ], [ -82.044927157417376, 28.726936674140095 ], [ -82.044666637965264, 28.726962687942976 ], [ -82.044537906799377, 28.726977547539029 ], [ -82.044165667727157, 28.726973377514625 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963395581324036, 28.937969283693636 ], [ -81.963372621096141, 28.938039299029125 ], [ -81.963367166420795, 28.938076399860105 ], [ -81.963363070169095, 28.93811828773093 ], [ -81.963360380246414, 28.938151360575411 ], [ -81.963358962278377, 28.938190094759005 ], [ -81.963356018092625, 28.938225713806645 ], [ -81.963353833457788, 28.938271469430454 ], [ -81.963351481227178, 28.93834148407915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962765205646448, 28.936658794205488 ], [ -81.962811200735658, 28.936679552524964 ], [ -81.962858078289003, 28.936696551214162 ], [ -81.962940431395737, 28.936713732043316 ], [ -81.963001108981331, 28.936730907739864 ], [ -81.963065595519026, 28.936752628411838 ], [ -81.963126797563717, 28.936774791175232 ], [ -81.963176637448072, 28.936797684353131 ], [ -81.963224754628783, 28.936822087479754 ], [ -81.963256040134794, 28.936842441891859 ], [ -81.9632818821418, 28.936862794804721 ], [ -81.963310444551894, 28.936885543145937 ], [ -81.96334716996283, 28.936919064398051 ], [ -81.963383527066938, 28.936949960766142 ], [ -81.963403058285451, 28.936971967639806 ], [ -81.963421615856575, 28.936994661792735 ], [ -81.963439193625689, 28.937018043223638 ], [ -81.963456183297751, 28.937042455813774 ], [ -81.963477723163834, 28.937078277344945 ], [ -81.963495400797299, 28.937109399575402 ], [ -81.963506957745579, 28.937129444477755 ], [ -81.96351906348589, 28.937155230824988 ], [ -81.963532106372668, 28.937190792878869 ], [ -81.963542976597495, 28.937232684834367 ], [ -81.963555205074812, 28.937276970944097 ], [ -81.963563356413857, 28.937309287916701 ], [ -81.963567426751879, 28.937346389545848 ], [ -81.963570131789766, 28.937389476621291 ], [ -81.963570116176157, 28.937433759398271 ], [ -81.963567377797844, 28.937485220987138 ], [ -81.963564641825471, 28.937521126126946 ], [ -81.963557830264691, 28.937552241684056 ], [ -81.963548294120216, 28.937586946726714 ], [ -81.963534670735726, 28.937632421338193 ], [ -81.96352805844819, 28.937648164566486 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96352805844819, 28.937648164566486 ], [ -81.9634927174355, 28.937730830323851 ], [ -81.963456891821394, 28.937814626512882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96352805844819, 28.937648164566486 ], [ -81.963611260197837, 28.937681318523374 ], [ -81.963647454514998, 28.937700664508736 ], [ -81.963664255570308, 28.937722279005751 ], [ -81.963670064469767, 28.937748013100535 ], [ -81.963669087354504, 28.937770191219055 ], [ -81.963661644499794, 28.937793932161235 ], [ -81.9636487093954, 28.937810278216581 ], [ -81.963633188765769, 28.937825629240908 ], [ -81.963611850954706, 28.93783585816556 ], [ -81.963590517320725, 28.937837132723654 ], [ -81.963560625649265, 28.93783358399445 ], [ -81.963528060743471, 28.937827632624522 ], [ -81.963456891821394, 28.937814626512882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962326186792993, 28.936062268638015 ], [ -81.962373807124891, 28.9361088431017 ], [ -81.962421479968228, 28.936166269453906 ], [ -81.962455226418456, 28.936210375831028 ], [ -81.962468701873547, 28.936234100015476 ], [ -81.962489221969207, 28.936263449267617 ], [ -81.962511797591901, 28.936309827185301 ], [ -81.962529355772375, 28.936349580857353 ], [ -81.962546909739828, 28.936398167082164 ], [ -81.962566972632331, 28.936446752200794 ], [ -81.962587039193394, 28.93649092149008 ], [ -81.962614636377864, 28.936532884964215 ], [ -81.962637217702252, 28.936563805661667 ], [ -81.962667328852106, 28.936594728453628 ], [ -81.962702466389644, 28.936619027995409 ], [ -81.962735089901443, 28.936643328633284 ], [ -81.962765205646448, 28.936658794205488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962180567382944, 28.935957621951481 ], [ -81.962230765442499, 28.93598955927671 ], [ -81.962306054057564, 28.936042578527509 ], [ -81.962326186792993, 28.936062268638015 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962180567382944, 28.935957621951481 ], [ -81.962230174546463, 28.935880312045949 ], [ -81.962258550973843, 28.935846412731301 ], [ -81.96228983341075, 28.935817632040742 ], [ -81.962321837463534, 28.935804205884907 ], [ -81.962351658607005, 28.935799736181924 ], [ -81.962376382894632, 28.935806780118877 ], [ -81.962397469965154, 28.935819582374009 ], [ -81.962414919029214, 28.935837498710708 ], [ -81.962426543921254, 28.935864373192572 ], [ -81.962430172495544, 28.935888045896384 ], [ -81.962424346879132, 28.935906598136654 ], [ -81.96241561359578, 28.935924508029888 ], [ -81.962395967885513, 28.935953292918065 ], [ -81.962326186792993, 28.936062268638015 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96080307667161, 28.935294152680694 ], [ -81.961399894111921, 28.935584640875394 ], [ -81.961442046823805, 28.935603578631106 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961442046823805, 28.935603578631106 ], [ -81.961396804532924, 28.935722373381711 ], [ -81.961390247523696, 28.935740620391421 ], [ -81.961387092801516, 28.935761607746151 ], [ -81.961387676832175, 28.935782507753309 ], [ -81.961396775232018, 28.935800850405109 ], [ -81.961417133041408, 28.935818769513556 ], [ -81.961446218186666, 28.935832425985861 ], [ -81.961473852111737, 28.935840158473752 ], [ -81.961502456890173, 28.935840972443582 ], [ -81.961531552282764, 28.935829891604815 ], [ -81.961552694490919, 28.935810003891941 ], [ -81.961639766918481, 28.935700279202774 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961639766918481, 28.935700279202774 ], [ -81.961876889597363, 28.935803971749181 ], [ -81.962050064913655, 28.935890140371825 ], [ -81.962146274468367, 28.935935804721129 ], [ -81.962180567382944, 28.935957621951481 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961442046823805, 28.935603578631106 ], [ -81.961639766918481, 28.935700279202774 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ortega Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964790211516714, 28.930511471040159 ], [ -81.964809007715246, 28.930583905893979 ], [ -81.964857165549546, 28.93069257288111 ], [ -81.964860874849535, 28.930700135084845 ], [ -81.964864584032213, 28.930708043769688 ], [ -81.964868490259875, 28.930715607829455 ], [ -81.964872395462763, 28.930723170986528 ], [ -81.964876691443067, 28.930730736050528 ], [ -81.964880987424294, 28.930738300212102 ], [ -81.964885478282099, 28.930745864424619 ], [ -81.964889970282726, 28.930753085765236 ], [ -81.964894852036522, 28.930760305403243 ], [ -81.96489973481664, 28.930767525041336 ], [ -81.964904813498478, 28.930774746535146 ], [ -81.964909890130016, 28.930781967125942 ], [ -81.964915358682362, 28.930788844044852 ], [ -81.964920827235403, 28.930795720963538 ], [ -81.964926491690889, 28.93080259793328 ], [ -81.964932155121474, 28.930809474902524 ], [ -81.964938015596857, 28.930816008148749 ], [ -81.964944068897722, 28.930822541445181 ], [ -81.96495012425099, 28.930829073839575 ], [ -81.964956374597094, 28.930835264314986 ], [ -81.964962820846054, 28.930841453939024 ], [ -81.964975907196717, 28.930853833236863 ], [ -81.964993722210579, 28.930862157051713 ], [ -81.965021835515159, 28.93087167909426 ], [ -81.965072893890806, 28.930884438233221 ], [ -81.965312326378935, 28.930980999073999 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cimarron Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971888804844582, 28.932713257372299 ], [ -81.971888417058082, 28.932739854229126 ], [ -81.971885322425962, 28.932762944200167 ], [ -81.97187656754285, 28.932784222076034 ], [ -81.971866220219056, 28.932803856537927 ], [ -81.971839323139776, 28.932858541661481 ], [ -81.971793430624089, 28.932953468723309 ], [ -81.971739609733191, 28.933077367674382 ], [ -81.971701643760099, 28.933152816738705 ], [ -81.971666560990997, 28.93319078418433 ], [ -81.971623822815076, 28.933227484980133 ], [ -81.971564014133321, 28.93327145823822 ], [ -81.971491154976405, 28.933321285483036 ], [ -81.971337339369882, 28.933425682383231 ], [ -81.97128876511745, 28.933461273803243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cimarron Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971839546766475, 28.932565786807171 ], [ -81.971852545586103, 28.932590720845631 ], [ -81.971868227277469, 28.932635593451277 ], [ -81.971878027472201, 28.932670110085567 ], [ -81.971888804844582, 28.932713257372299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cimarron Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970838502071572, 28.932390762715851 ], [ -81.970970712895337, 28.932355191427142 ], [ -81.971164980186884, 28.932312511583863 ], [ -81.971295486372682, 28.932283410865651 ], [ -81.971335703620611, 28.932278243022832 ], [ -81.971376901479829, 28.932276525752595 ], [ -81.9714190784496, 28.932279986045739 ], [ -81.971450971137671, 28.932286465014194 ], [ -81.971494131912451, 28.932307835140591 ], [ -81.971561569090269, 28.932352945276353 ], [ -81.971763879948469, 28.93248827187011 ], [ -81.971799588982861, 28.932518306865152 ], [ -81.97182678793537, 28.932548451943333 ], [ -81.971839546766475, 28.932565786807171 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cimarron Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971839546766475, 28.932565786807171 ], [ -81.971873416760246, 28.932550900656913 ], [ -81.971900746779085, 28.932540603999769 ], [ -81.971913689422436, 28.932538381658947 ], [ -81.971941087105677, 28.932539466552374 ], [ -81.971963208359114, 28.932541762116216 ], [ -81.971983854930897, 28.932546923957684 ], [ -81.972008555166468, 28.932559002732596 ], [ -81.972025659588155, 28.932577261535382 ], [ -81.972033847535656, 28.932588827957598 ], [ -81.97203996684334, 28.932603593483705 ], [ -81.972040957920868, 28.93262905103148 ], [ -81.972034129752416, 28.932648702483529 ], [ -81.972025640862427, 28.932661316592135 ], [ -81.972010017248024, 28.932677996751742 ], [ -81.9719735759424, 28.932696303898609 ], [ -81.971888804844582, 28.932713257372299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cadena Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971452314278849, 28.930211465149235 ], [ -81.97111084185012, 28.930662257805118 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cadena Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970997719924057, 28.930810268344466 ], [ -81.970984632956046, 28.930826710733665 ], [ -81.970941456480418, 28.930859929275442 ], [ -81.970895587171441, 28.93087653416471 ], [ -81.97052569720843, 28.930921574268591 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cadena Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97111084185012, 28.930662257805118 ], [ -81.971158293171783, 28.93072057614069 ], [ -81.971183365107379, 28.930751310998804 ], [ -81.971195896568886, 28.930777316030447 ], [ -81.97120215984225, 28.930800955699485 ], [ -81.97119903715317, 28.930817672746688 ], [ -81.971195392546548, 28.930830196717167 ], [ -81.971186414416863, 28.930846639108076 ], [ -81.971174738548712, 28.930860269366466 ], [ -81.971160938877048, 28.930872648585442 ], [ -81.971136753119794, 28.930882099420931 ], [ -81.971115257249281, 28.930882093880331 ], [ -81.971089283408006, 28.930878148851878 ], [ -81.971062417844465, 28.930864748477791 ], [ -81.970997719924057, 28.930810268344466 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cadena Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97111084185012, 28.930662257805118 ], [ -81.970997719924057, 28.930810268344466 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Durango Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968944319716371, 28.93222132238034 ], [ -81.968955953160105, 28.932234254961173 ], [ -81.968971639067277, 28.932253980052231 ], [ -81.968986205236945, 28.932272717771642 ], [ -81.969001891884631, 28.932293429969583 ], [ -81.969014215340053, 28.932314139582616 ], [ -81.969024297692897, 28.932334848675886 ], [ -81.969035499636476, 28.932360488165255 ], [ -81.969045579492487, 28.932386128296415 ], [ -81.969182472730466, 28.932825642322623 ], [ -81.969191063022393, 28.932855895530423 ], [ -81.969195355399691, 28.932873429906511 ], [ -81.969199454847157, 28.932891308012252 ], [ -81.969203160536551, 28.932908840448388 ], [ -81.969206672269934, 28.932926717516317 ], [ -81.969209597313025, 28.932944594449118 ], [ -81.969212328502962, 28.932962470434962 ], [ -81.969253436125541, 28.933254129451328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Durango Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96801493825005, 28.931866534238431 ], [ -81.968056337526392, 28.931879788905903 ], [ -81.968097737325422, 28.931891386947719 ], [ -81.968197469307768, 28.931922867374631 ], [ -81.968344249089512, 28.931967600936964 ], [ -81.96871949088694, 28.932080374917252 ], [ -81.968729845112321, 28.932083673418695 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Durango Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968729845112321, 28.932083673418695 ], [ -81.96877216760717, 28.932097149143615 ], [ -81.968802428057529, 28.932110961307568 ], [ -81.968827461824404, 28.932124257939755 ], [ -81.968850616975487, 28.93213956895416 ], [ -81.968873031155354, 28.932156336095854 ], [ -81.968893201160313, 28.932173106321507 ], [ -81.968915613437204, 28.932192831177503 ], [ -81.968934663120592, 28.932210583735589 ], [ -81.968944319716371, 28.93222132238034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Durango Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968729845112321, 28.932083673418695 ], [ -81.968694436666283, 28.932148078155301 ], [ -81.968682098625479, 28.932175685486339 ], [ -81.968663029821641, 28.932221039376696 ], [ -81.96865405213741, 28.932254563837432 ], [ -81.968648438545017, 28.932285129558828 ], [ -81.968652915790742, 28.932304852061414 ], [ -81.968664120335532, 28.932321617514511 ], [ -81.968686531574747, 28.932341344212535 ], [ -81.968712309142148, 28.932354169139611 ], [ -81.968734724751229, 28.932356146792696 ], [ -81.96877172118792, 28.932345307139617 ], [ -81.96879750463745, 28.932328551224167 ], [ -81.968838986416372, 28.932303908392107 ], [ -81.968944319716371, 28.93222132238034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972238795003889, 28.937265102991702 ], [ -81.972217097390555, 28.93719059246077 ], [ -81.972203165183416, 28.937125135353273 ], [ -81.97218923551975, 28.93703513313957 ], [ -81.972121934426227, 28.93655853371844 ], [ -81.972114977889944, 28.936486941547201 ], [ -81.972108012498751, 28.93644807828754 ], [ -81.972107124975935, 28.936433949078896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97210109128703, 28.936246155147987 ], [ -81.972101099200941, 28.936216942474438 ], [ -81.972103435582127, 28.93617603384731 ], [ -81.972103443421176, 28.936143308542274 ], [ -81.972103452758262, 28.936112626031402 ], [ -81.972105789689962, 28.936069672805125 ], [ -81.972108126619986, 28.936026718676239 ], [ -81.972117443861379, 28.935967402897344 ], [ -81.972141787876652, 28.935816790707403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972107124975935, 28.936433949078896 ], [ -81.972172500111981, 28.936430438334817 ], [ -81.972212119004041, 28.936428567092783 ], [ -81.972241755114624, 28.936424691577102 ], [ -81.972266347486396, 28.936418039552457 ], [ -81.972287157751154, 28.936408614892223 ], [ -81.972306707273461, 28.936395862306998 ], [ -81.972320478681496, 28.936380180578848 ], [ -81.972329450279886, 28.936362432505106 ], [ -81.972331697268231, 28.936344685746707 ], [ -81.97232834053014, 28.936323976499672 ], [ -81.972319377451925, 28.93630622561713 ], [ -81.972298085024661, 28.936285514460813 ], [ -81.972277912653325, 28.936268745656303 ], [ -81.972249891692954, 28.936258880477716 ], [ -81.972207753687997, 28.936249412077089 ], [ -81.97210109128703, 28.936246155147987 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972107124975935, 28.936433949078896 ], [ -81.972105696141327, 28.936411258790731 ], [ -81.972104313106712, 28.936374743561487 ], [ -81.972103695159603, 28.936334806992232 ], [ -81.97210180904716, 28.936307628597291 ], [ -81.972101084239611, 28.936272169188886 ], [ -81.972101090334931, 28.936249669583464 ], [ -81.97210109128703, 28.936246155147987 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allende Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975223987477477, 28.933163128743047 ], [ -81.975224355860945, 28.933162456601877 ], [ -81.975235357156976, 28.93314633463644 ], [ -81.975248193347113, 28.933126182459969 ], [ -81.975257361347133, 28.933111669846696 ], [ -81.975271112884656, 28.933093935986854 ], [ -81.975281198866853, 28.933079426248582 ], [ -81.975289449313294, 28.933067334319709 ], [ -81.975297698982999, 28.933058467191035 ], [ -81.975306868246363, 28.933047182082213 ], [ -81.97531786630482, 28.933035897310468 ], [ -81.975329783568696, 28.933023805153788 ], [ -81.975342617405403, 28.933013326467858 ], [ -81.975354533890297, 28.933004460914294 ], [ -81.975371949843279, 28.93299237066989 ], [ -81.97539028192169, 28.932979474842782 ], [ -81.975405864774984, 28.932968190005479 ], [ -81.975421447431813, 28.932957712719979 ], [ -81.975437029893016, 28.932948041181717 ], [ -81.97545261215916, 28.932939174488411 ], [ -81.975472776795215, 28.932931922839263 ], [ -81.975488358286754, 28.932926281844853 ], [ -81.975503023199096, 28.932919028280185 ], [ -81.975525936853458, 28.932910970475493 ], [ -81.975550684619307, 28.93290210635103 ], [ -81.975574513819183, 28.932895660203705 ], [ -81.975596510953025, 28.932890020369033 ], [ -81.975617590931321, 28.932885188819434 ], [ -81.975642337154909, 28.932882774279694 ], [ -81.975662499214536, 28.932881970398938 ], [ -81.975683578044197, 28.932881974235627 ], [ -81.975700992105303, 28.932881977402779 ], [ -81.975718404115057, 28.932881980567309 ], [ -81.975734901404806, 28.932881178716709 ], [ -81.975750480517334, 28.93288118154431 ], [ -81.976167478178041, 28.932878030855743 ], [ -81.976709116182064, 28.93287812636391 ], [ -81.977278246307051, 28.932874999570977 ], [ -81.977451461741907, 28.932875028922286 ], [ -81.977497284167328, 28.932875036649602 ], [ -81.977522945751247, 28.932875040970259 ], [ -81.977551357193548, 28.932875045748222 ], [ -81.977568769202179, 28.932875049575728 ], [ -81.977593514850639, 28.932875052826812 ], [ -81.977621925267087, 28.932875058492005 ], [ -81.977642087134484, 28.932875060966118 ], [ -81.977682412920089, 28.932875068612528 ], [ -81.977730069268489, 28.932875075664743 ], [ -81.977788723675559, 28.93287669783232 ], [ -81.97782354904831, 28.93287992842032 ], [ -81.977871205207421, 28.93288558017775 ], [ -81.977910611101109, 28.932894455354983 ], [ -81.977960097238821, 28.932908974232891 ], [ -81.978018748213728, 28.932926723011512 ], [ -81.978070982346395, 28.93295011095471 ], [ -81.978122299539834, 28.932973500531933 ], [ -81.978161704282911, 28.932992855787393 ], [ -81.978202024292074, 28.933015436883892 ], [ -81.97823501374539, 28.933033179572273 ], [ -81.978266169626778, 28.933054145852729 ], [ -81.97828816238308, 28.933068661034532 ], [ -81.978310153608092, 28.93308559616662 ], [ -81.978328480745404, 28.933099304997253 ], [ -81.978346808057978, 28.933112206271748 ], [ -81.978366584950876, 28.93312863845733 ], [ -81.978385223344262, 28.93314504067995 ], [ -81.978404636731199, 28.933163492136337 ], [ -81.978429488192475, 28.933187412373687 ], [ -81.97845200682228, 28.933213380438641 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allende Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97845200682228, 28.933213380438641 ], [ -81.978518037127174, 28.933171026542581 ], [ -81.978549107608416, 28.933159415397188 ], [ -81.978582249476119, 28.933159990065406 ], [ -81.978611241951626, 28.933172749549335 ], [ -81.978636094111323, 28.933193555027707 ], [ -81.978647479935134, 28.933224685110105 ], [ -81.97865058207779, 28.933252016109158 ], [ -81.97863711161429, 28.933282079312271 ], [ -81.978615358369893, 28.933303941134458 ], [ -81.978543633016017, 28.933343217337843 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allende Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97845200682228, 28.933213380438641 ], [ -81.978543633016017, 28.933343217337843 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976274288711977, 28.935600980480462 ], [ -81.97609490846601, 28.935798790957623 ], [ -81.975961628865647, 28.935945868073748 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975961628865647, 28.935945868073748 ], [ -81.975850401337027, 28.936068610558113 ], [ -81.975831842522396, 28.936088390002958 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975961628865647, 28.935945868073748 ], [ -81.976050256493053, 28.936039210081827 ], [ -81.976121699607717, 28.93610091813558 ], [ -81.976133275293392, 28.936116488387597 ], [ -81.97613889560823, 28.936132351723113 ], [ -81.976138891012354, 28.936152139935999 ], [ -81.976134916409606, 28.936169600423106 ], [ -81.976124325292631, 28.936189824357282 ], [ -81.976111089920607, 28.936201025778423 ], [ -81.976091238843196, 28.936211497863223 ], [ -81.976072711715062, 28.936218626279988 ], [ -81.976055838066088, 28.93622124081277 ], [ -81.976036981494133, 28.936220364913979 ], [ -81.976012170012424, 28.936213377607544 ], [ -81.975972476398766, 28.936193289016831 ], [ -81.975911284151778, 28.936149771179128 ], [ -81.975831842522396, 28.936088390002958 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Isabella Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973941374065191, 28.939275541630749 ], [ -81.97393747886251, 28.939491862184735 ], [ -81.973930114852735, 28.939528916147214 ], [ -81.973917636001033, 28.939571788003398 ], [ -81.973896086445905, 28.939618645323144 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Isabella Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973824651436658, 28.939718338418022 ], [ -81.973808777473522, 28.939736282832772 ], [ -81.973763427565913, 28.939778150292629 ], [ -81.973389040330048, 28.940108111858201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Isabella Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973896086445905, 28.939618645323144 ], [ -81.974078558556556, 28.939698447201319 ], [ -81.974100089948081, 28.939719390002047 ], [ -81.974105751722007, 28.939745313996529 ], [ -81.974103477008214, 28.939772233487929 ], [ -81.974095539325731, 28.939790179473601 ], [ -81.974081931514533, 28.939803139186935 ], [ -81.974060391831642, 28.939819087561258 ], [ -81.974033186604274, 28.939824068354373 ], [ -81.974002581762349, 28.939826056475081 ], [ -81.973975380314641, 28.939816079935021 ], [ -81.973824651436658, 28.939718338418022 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Isabella Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973896086445905, 28.939618645323144 ], [ -81.973824651436658, 28.939718338418022 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Isabella Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973939275173194, 28.93871359084763 ], [ -81.973939882894015, 28.938796717490902 ], [ -81.973941374065191, 28.939275541630749 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Isabella Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973938175839891, 28.938562755075559 ], [ -81.973939275173194, 28.93871359084763 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iglesia Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973938175839891, 28.938562755075559 ], [ -81.974267608625453, 28.93855018858347 ], [ -81.974302333534695, 28.938568525362825 ], [ -81.974321430427324, 28.938594497951705 ], [ -81.974328368087114, 28.93862504914901 ], [ -81.974324887684858, 28.938654072566379 ], [ -81.97431446210868, 28.938678510094245 ], [ -81.974290147207725, 28.938693780352242 ], [ -81.974260622299013, 28.938705996240415 ], [ -81.974227629980845, 28.938707516564936 ], [ -81.974168586531064, 28.938710561238022 ], [ -81.973939275173194, 28.93871359084763 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Madero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971551924314284, 28.941843511781951 ], [ -81.971559736686217, 28.941854318406701 ], [ -81.971608848164124, 28.941919150499402 ], [ -81.971666912728807, 28.941998617864392 ], [ -81.971816293756021, 28.942202122893928 ], [ -81.971951351631802, 28.942382216553224 ], [ -81.972169712897895, 28.942693497418656 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Madero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964629913010455, 28.942220753444822 ], [ -81.964880731412521, 28.942218151376508 ], [ -81.96496274626405, 28.942218173762885 ], [ -81.965055341834855, 28.94222168712675 ], [ -81.965122890596959, 28.942229573637192 ], [ -81.965221305245805, 28.942257933048094 ], [ -81.965341191463651, 28.942289445145324 ], [ -81.965418132681535, 28.942311502649801 ], [ -81.965475391357103, 28.942330407837751 ], [ -81.965543386859707, 28.942349313057832 ], [ -81.96559706614218, 28.942366641868738 ], [ -81.965659693317619, 28.942380824852158 ], [ -81.965731271461379, 28.942391861996423 ], [ -81.965790326479649, 28.942391877098061 ], [ -81.965852960970722, 28.94238717138602 ], [ -81.965906649148721, 28.942380887963008 ], [ -81.965963914723304, 28.942373032730853 ], [ -81.966010445015939, 28.942366747446588 ], [ -81.966056974277166, 28.94236046214597 ], [ -81.966116031352215, 28.942351033703748 ], [ -81.966158982690928, 28.94234474746229 ], [ -81.966201934544571, 28.942333740408781 ], [ -81.966249808285298, 28.942322060569289 ], [ -81.966296111647338, 28.942306946189163 ], [ -81.966336163071574, 28.942291273506228 ], [ -81.966377329008154, 28.942270820741371 ], [ -81.966415183856483, 28.942249961101279 ], [ -81.966458845468949, 28.942223210027819 ], [ -81.966513360121922, 28.942182705291444 ], [ -81.966805134634555, 28.941924626421962 ], [ -81.966837355037484, 28.941893152490312 ], [ -81.966869577472551, 28.941861678551291 ], [ -81.966907167735243, 28.941827057829894 ], [ -81.966944758494648, 28.941794010697542 ], [ -81.966975186325797, 28.94177040699461 ], [ -81.967005617201366, 28.941743655183885 ], [ -81.967044451018353, 28.941714180509081 ], [ -81.96707977049418, 28.941691230344421 ], [ -81.967114800736226, 28.941668126709494 ], [ -81.967152387865497, 28.941646096519595 ], [ -81.967196474361316, 28.941623734965699 ], [ -81.96725328817422, 28.941599440189695 ], [ -81.967317779245121, 28.941573796531003 ], [ -81.967382267977229, 28.941552205942646 ], [ -81.96744829072891, 28.941538714681908 ], [ -81.967491281627233, 28.941529272703789 ], [ -81.967526576202303, 28.941523003113247 ], [ -81.96756096824646, 28.941519519576751 ], [ -81.967601976860166, 28.941514877283765 ], [ -81.967637693096989, 28.941514885021324 ], [ -81.967672085066297, 28.941514893331899 ], [ -81.96770647842574, 28.941513737675514 ], [ -81.967735580141806, 28.941514909554229 ], [ -81.967769176249746, 28.941514485449609 ], [ -81.967810629188719, 28.941515845255751 ], [ -81.967875108531175, 28.941523963341449 ], [ -81.967905806949076, 28.941529797716569 ], [ -81.967943383541112, 28.941537676524458 ], [ -81.967980960187091, 28.941548704325839 ], [ -81.968020326270675, 28.941558157140001 ], [ -81.968062401727025, 28.941569924069434 ], [ -81.96810621335527, 28.941586512353066 ], [ -81.968150947422743, 28.941602263513648 ], [ -81.968197465967236, 28.941625886690932 ], [ -81.968281559856308, 28.941668407372052 ], [ -81.968605405472033, 28.941847930032623 ], [ -81.968659082204525, 28.941877850931768 ], [ -81.968693077739644, 28.941896748400282 ], [ -81.96872886073163, 28.941917218975146 ], [ -81.968762855266675, 28.941936115523379 ], [ -81.968789695927541, 28.941948715094064 ], [ -81.968822256175201, 28.941961745483653 ], [ -81.96886063283894, 28.941980661976121 ], [ -81.968909760631831, 28.941992828192337 ], [ -81.968939999009265, 28.941997546989914 ], [ -81.968973997871146, 28.942002278382397 ], [ -81.969011086348502, 28.942003654852812 ], [ -81.969061752158879, 28.942000966012007 ], [ -81.969104743318681, 28.941994224083324 ], [ -81.969143128533815, 28.941984779612586 ], [ -81.969192263188589, 28.941967234109477 ], [ -81.969255219637816, 28.941937537873208 ], [ -81.969516262496285, 28.941798497343491 ], [ -81.969981532458462, 28.941550111835355 ], [ -81.970050632456179, 28.941510963274855 ], [ -81.970127407050938, 28.94147586859215 ], [ -81.970184220249394, 28.941447520377945 ], [ -81.970252899926564, 28.941421241932805 ], [ -81.970320876412075, 28.94140028321862 ], [ -81.97039312860845, 28.941381711982455 ], [ -81.970457526778944, 28.941369252913713 ], [ -81.97052201164702, 28.941358462173788 ], [ -81.970597242560927, 28.941354427431644 ], [ -81.970672473341637, 28.941354443944974 ], [ -81.97075844840073, 28.94136391609366 ], [ -81.970838280416601, 28.941376088315035 ], [ -81.970908898627371, 28.941389608316637 ], [ -81.970987192444213, 28.94141123344356 ], [ -81.971053203749662, 28.941432855867586 ], [ -81.971111540286572, 28.94145447479735 ], [ -81.971159127064851, 28.941478796460196 ], [ -81.971222064550901, 28.941513921861947 ], [ -81.971292673767891, 28.941563905142036 ], [ -81.971372492386081, 28.941628745714944 ], [ -81.971404724080429, 28.94165846332697 ], [ -81.971435422543252, 28.941690881167901 ], [ -81.971455644931808, 28.941715524411045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Madero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971455644931808, 28.941715524411045 ], [ -81.971475326931596, 28.941739507057061 ], [ -81.971516765068941, 28.941794886926768 ], [ -81.971551924314284, 28.941843511781951 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Madero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971455644931808, 28.941715524411045 ], [ -81.971501465903259, 28.941679190705649 ], [ -81.971529894510738, 28.941655445690362 ], [ -81.971554057579269, 28.941644200134849 ], [ -81.971585324434244, 28.941635456339377 ], [ -81.97161943265067, 28.941634213904731 ], [ -81.971642167798649, 28.941641719492143 ], [ -81.971661104557356, 28.941652829835448 ], [ -81.971676268802511, 28.941662976630155 ], [ -81.971687633626416, 28.941680480821699 ], [ -81.971694732613955, 28.941700482559945 ], [ -81.971694726429277, 28.941722983951607 ], [ -81.971687615412037, 28.941746732613439 ], [ -81.97167197686025, 28.94176782582409 ], [ -81.971551924314284, 28.941843511781951 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dario Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973687027866447, 28.942937014175769 ], [ -81.974177604963984, 28.943387917197555 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dario Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974305410225213, 28.943505384310033 ], [ -81.974526305479301, 28.943708411880699 ], [ -81.974553743957799, 28.943743122911783 ], [ -81.974569174267486, 28.943774812579726 ], [ -81.97458117088982, 28.943824608811518 ], [ -81.97461263349949, 28.944013416020091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dario Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974177604963984, 28.943387917197555 ], [ -81.974305410225213, 28.943505384310033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dario Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974177604963984, 28.943387917197555 ], [ -81.974103991677694, 28.943472380155626 ], [ -81.974084187683701, 28.943501399479793 ], [ -81.974077582644142, 28.943525774551524 ], [ -81.974073616955422, 28.943550151037098 ], [ -81.974078892008052, 28.943568725765193 ], [ -81.974098683444069, 28.943589624004872 ], [ -81.974119794779696, 28.943603558598493 ], [ -81.974146186292188, 28.94361168885602 ], [ -81.974176541004709, 28.943609373123817 ], [ -81.974197658762662, 28.943597769200615 ], [ -81.974229337442452, 28.94358036285881 ], [ -81.974305410225213, 28.943505384310033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ballesteros Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992162328147643, 28.946279419333795 ], [ -81.992113739865914, 28.946324851388383 ], [ -81.992067545256276, 28.946377065202771 ], [ -81.992005570815692, 28.946463096882358 ], [ -81.99194836232347, 28.946560576213436 ], [ -81.991905450825868, 28.946667489870457 ], [ -81.991883990427283, 28.946783838307933 ], [ -81.991873249551546, 28.946978803272266 ], [ -81.991873239022098, 28.947107732791274 ], [ -81.991876800668734, 28.947271252823754 ], [ -81.991855343459619, 28.94734672106873 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ballesteros Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995591416550212, 28.946026167409403 ], [ -81.995494889740201, 28.946023019591358 ], [ -81.995212457766897, 28.946023008556384 ], [ -81.994847799698405, 28.946022995499405 ], [ -81.994297235586203, 28.946022972551621 ], [ -81.993800299954046, 28.946022949905302 ], [ -81.993321238088669, 28.946022926336529 ], [ -81.992945853094966, 28.946022906676852 ], [ -81.992795644951002, 28.946028307762976 ], [ -81.992685846216659, 28.946039553285036 ], [ -81.992618687440157, 28.946050801120478 ], [ -81.992542024046827, 28.946067909678021 ], [ -81.992461982972884, 28.946093922726998 ], [ -81.992386138917212, 28.946127397031621 ], [ -81.992311672883545, 28.946168925240425 ], [ -81.992276937881982, 28.946193984390298 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ballesteros Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992276937881982, 28.946193984390298 ], [ -81.992175219495309, 28.946267366370535 ], [ -81.992162328147643, 28.946279419333795 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ballesteros Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992276937881982, 28.946193984390298 ], [ -81.992213610468198, 28.94607328002985 ], [ -81.992192291882475, 28.946035773155831 ], [ -81.992175239363689, 28.946015144823694 ], [ -81.992152852540428, 28.946008578406595 ], [ -81.992128335106557, 28.946002014565195 ], [ -81.992102752286129, 28.94600295051421 ], [ -81.992078233008854, 28.946006700774088 ], [ -81.992056912715896, 28.946017013599167 ], [ -81.992037723758003, 28.946031075576975 ], [ -81.992023864544407, 28.94604982709151 ], [ -81.992012136288253, 28.946077017879706 ], [ -81.992011068283247, 28.946104209314374 ], [ -81.992016397404853, 28.94612952707482 ], [ -81.992027054485305, 28.946143590858384 ], [ -81.992048373657965, 28.946160468635185 ], [ -81.992076087540852, 28.94618016285002 ], [ -81.992109131625824, 28.946212043746954 ], [ -81.992162328147643, 28.946279419333795 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003394520178375, 28.950571582105745 ], [ -82.003421253141596, 28.950542839907751 ], [ -82.003467297041894, 28.950487971405192 ], [ -82.003523733431322, 28.950420039264692 ], [ -82.003606906545656, 28.950318138787068 ], [ -82.003749489579761, 28.950149611565713 ], [ -82.003780724485992, 28.950111259772267 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003878018368923, 28.949991805581853 ], [ -82.003892068856743, 28.949974555202285 ], [ -82.003979696292376, 28.949866122681549 ], [ -82.004015340895037, 28.94982039898921 ], [ -82.004048014611413, 28.949774675365639 ], [ -82.004079203713729, 28.949723724793554 ], [ -82.004110392227773, 28.949657098687833 ], [ -82.004196529892695, 28.949442851521205 ], [ -82.004239597646531, 28.949323968788502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003780724485992, 28.950111259772267 ], [ -82.003829916159972, 28.950050866329683 ], [ -82.003878018368923, 28.949991805581853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003780724485992, 28.950111259772267 ], [ -82.003764726706919, 28.950090868354764 ], [ -82.003748515507667, 28.950068934922829 ], [ -82.003722330822882, 28.950041517595462 ], [ -82.003684923663002, 28.950023972510248 ], [ -82.00365062921837, 28.950015208450946 ], [ -82.003625074062981, 28.950008619606738 ], [ -82.003600279124129, 28.950003937283917 ], [ -82.003581434859925, 28.949989977449942 ], [ -82.003562744201687, 28.949966900847627 ], [ -82.003555246464543, 28.949939531783617 ], [ -82.003557739307894, 28.94990662873283 ], [ -82.00357020770258, 28.949880309481781 ], [ -82.003590157637632, 28.949855085440525 ], [ -82.003612599753879, 28.949843020370807 ], [ -82.003645019470127, 28.949837536384845 ], [ -82.003674943500712, 28.949838632868509 ], [ -82.003704870991825, 28.949851792994711 ], [ -82.003732302030542, 28.949879208491783 ], [ -82.003762226391885, 28.94992197732974 ], [ -82.003795265776176, 28.949949181540884 ], [ -82.003878018368923, 28.949991805581853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997479355957651, 28.955697057813243 ], [ -81.997377616378046, 28.95581277914318 ], [ -81.99730960409758, 28.955869500270037 ], [ -81.997185690079363, 28.95595332767434 ], [ -81.997071360625313, 28.956015253861434 ], [ -81.996925675113445, 28.956075767108359 ], [ -81.996798737801697, 28.956111775332882 ], [ -81.99669227408836, 28.956131581520456 ], [ -81.996605480517616, 28.956141445797538 ], [ -81.996531446407047, 28.956145859622282 ], [ -81.996471214980033, 28.956148616278398 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997719780835567, 28.954809010690639 ], [ -81.997720371836195, 28.95492565537139 ], [ -81.997720367431668, 28.955057235674371 ], [ -81.997719453614081, 28.955126956642118 ], [ -81.997710851524616, 28.955202586576419 ], [ -81.997697090043488, 28.955282388610865 ], [ -81.997670491034398, 28.955375959374869 ], [ -81.997635601983035, 28.955456291551908 ], [ -81.997601986375315, 28.955523668639501 ], [ -81.997564094061246, 28.95557840362623 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997564094061246, 28.95557840362623 ], [ -81.997517956160181, 28.955645048688503 ], [ -81.997491559521279, 28.955683178105637 ], [ -81.997479355957651, 28.955697057813243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997564094061246, 28.95557840362623 ], [ -81.997450519188845, 28.955498516972373 ], [ -81.997405292196447, 28.955459980070128 ], [ -81.997360682304162, 28.955439583739768 ], [ -81.997326496217752, 28.955433990613876 ], [ -81.997297875360346, 28.955438884935088 ], [ -81.997268457161795, 28.955450771091193 ], [ -81.997245400154497, 28.955477341274793 ], [ -81.997236655404436, 28.955508806701097 ], [ -81.997235064295495, 28.955540272283745 ], [ -81.997246987456705, 28.955571738162053 ], [ -81.997267657761526, 28.955594812014343 ], [ -81.997295043924765, 28.955609148215409 ], [ -81.99733126032703, 28.955615093285989 ], [ -81.997369952159914, 28.95562406739176 ], [ -81.997419419642199, 28.955650171715501 ], [ -81.997479355957651, 28.955697057813243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alhambra Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995067381695264, 28.953402141134454 ], [ -81.994859793389622, 28.953196446603581 ], [ -81.994741585841439, 28.953141885691632 ], [ -81.994598630023347, 28.953124336570138 ], [ -81.994538563224879, 28.953130286483486 ], [ -81.994488916853314, 28.95314480046472 ], [ -81.994428929289583, 28.953164143052359 ], [ -81.99439762596792, 28.953173665401639 ], [ -81.99437531023915, 28.953186059225008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alhambra Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994310712055153, 28.953244935483497 ], [ -81.994271952090912, 28.953297615907026 ], [ -81.994194103736035, 28.953403407097973 ], [ -81.994059612648158, 28.953598561375212 ], [ -81.993554632155082, 28.954282220236138 ], [ -81.993538005811757, 28.95435531858795 ], [ -81.993528026415134, 28.954425496547334 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alhambra Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99437531023915, 28.953186059225008 ], [ -81.994306022070205, 28.95309825418293 ], [ -81.994297803786964, 28.953062099885805 ], [ -81.994286059432554, 28.95302801077986 ], [ -81.994269621071112, 28.953004251807613 ], [ -81.994237911324774, 28.952982558407978 ], [ -81.994209723671247, 28.952974293969163 ], [ -81.994182712092723, 28.952976359015814 ], [ -81.994160396812873, 28.952981521835806 ], [ -81.994135731890339, 28.952992882390252 ], [ -81.994119288253344, 28.95300631136427 ], [ -81.994105193569965, 28.953024904259479 ], [ -81.994094622411893, 28.953049695156409 ], [ -81.994094621753021, 28.953077585001914 ], [ -81.994100491381417, 28.953102377544443 ], [ -81.994114583525786, 28.953126136431184 ], [ -81.99413924559758, 28.953145763294359 ], [ -81.994168606778729, 28.953156094048822 ], [ -81.994220282977437, 28.95316642669011 ], [ -81.994310712055153, 28.953244935483497 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alhambra Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99437531023915, 28.953186059225008 ], [ -81.994310712055153, 28.953244935483497 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989725645118213, 28.951273641668411 ], [ -81.989617132320589, 28.951233103127286 ], [ -81.989416459229375, 28.95117163841293 ], [ -81.989229163581271, 28.951129784908034 ], [ -81.989043354304499, 28.951099697156142 ], [ -81.988861998577548, 28.951086606903608 ], [ -81.988699969415606, 28.951080055164592 ], [ -81.988508348973355, 28.951085077978146 ], [ -81.98833737317284, 28.95109727465875 ], [ -81.988134691298313, 28.95112426497732 ], [ -81.987967323540332, 28.951160715125773 ], [ -81.987804562168648, 28.951202564806284 ], [ -81.987608017167275, 28.951267369962071 ], [ -81.987385365935921, 28.951363234661006 ], [ -81.987224030961784, 28.951445985580655 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986962768501343, 28.951605065856398 ], [ -81.986822711959888, 28.951714960230618 ], [ -81.986750632275246, 28.951778344491366 ], [ -81.986630668966484, 28.951880764274456 ], [ -81.986592959741301, 28.951937133878285 ], [ -81.986581642488801, 28.951990191120203 ], [ -81.986589173283988, 28.952053196232026 ], [ -81.986608018578821, 28.952099623769872 ], [ -81.986643305650418, 28.952145364511352 ], [ -81.986672029198218, 28.952175619447654 ], [ -81.986713650701859, 28.952216534445775 ], [ -81.986747497392642, 28.95225549429005 ], [ -81.986804045309782, 28.952305239677216 ], [ -81.986849282410788, 28.952351669801175 ], [ -81.98690583231145, 28.952394785103074 ], [ -81.986951070179742, 28.952427949694592 ], [ -81.987015160604699, 28.952461117921594 ], [ -81.987086794827079, 28.952474387703653 ], [ -81.987165969730611, 28.952467763539925 ], [ -81.987241380950479, 28.952434610679074 ], [ -81.987301711778883, 28.952384874009496 ], [ -81.987369582119086, 28.952331823911877 ], [ -81.987524180811363, 28.952195879370567 ], [ -81.987731567515766, 28.95201682892926 ], [ -81.98781075190756, 28.951953831881895 ], [ -81.98787108116089, 28.951904095855383 ], [ -81.987931409798236, 28.951867624397995 ], [ -81.987999277118774, 28.951834469519778 ], [ -81.988082226829093, 28.951817896484702 ], [ -81.988154208245589, 28.951807235138766 ], [ -81.98823251440264, 28.951794272568925 ], [ -81.988326657908544, 28.951781367292032 ], [ -81.98840352762663, 28.951769978995827 ], [ -81.988483164201881, 28.951757677776666 ], [ -81.98856503899782, 28.95174720474747 ], [ -81.988652273961222, 28.951736576031358 ], [ -81.988723178104919, 28.951735050898954 ], [ -81.988793055783404, 28.951738868114113 ], [ -81.988845739312069, 28.951747986616358 ], [ -81.988895831692346, 28.951764703985127 ], [ -81.988947650903143, 28.951788257244715 ], [ -81.98901846729207, 28.951839158732096 ], [ -81.989088420004805, 28.951899177772667 ], [ -81.989177370347889, 28.951983506081348 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987224030961784, 28.951445985580655 ], [ -81.987158554888538, 28.9514795688901 ], [ -81.986990043947799, 28.951583664358669 ], [ -81.986962768501343, 28.951605065856398 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Privada Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987224030961784, 28.951445985580655 ], [ -81.987215278504223, 28.951549726682916 ], [ -81.987206263757741, 28.951593874067335 ], [ -81.987186954513916, 28.951621040220832 ], [ -81.987165075273921, 28.951633490640038 ], [ -81.987125175176928, 28.95164141070374 ], [ -81.987074980615844, 28.951640272544495 ], [ -81.98702736317064, 28.951630081019008 ], [ -81.986962768501343, 28.951605065856398 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Escandon Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990834855009581, 28.952517138712306 ], [ -81.990833851847157, 28.952638692720399 ], [ -81.990831689471307, 28.952748700916977 ], [ -81.990826868171823, 28.95296879847637 ], [ -81.990808008350228, 28.953058330695328 ], [ -81.990762757241768, 28.953141229219213 ], [ -81.990683572286258, 28.953230758083379 ], [ -81.99061570037145, 28.953290443496137 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Escandon Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991038188438935, 28.951801949947008 ], [ -81.990931141415629, 28.95200067608177 ], [ -81.990890996872082, 28.952092194609662 ], [ -81.990864232108351, 28.95216802499656 ], [ -81.990847873722103, 28.952255623793118 ], [ -81.990843245955233, 28.952334586661536 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Escandon Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990843245955233, 28.952334586661536 ], [ -81.990835232631184, 28.952471275233204 ], [ -81.990834855009581, 28.952517138712306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Escandon Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990843245955233, 28.952334586661536 ], [ -81.990748019107102, 28.952334556558053 ], [ -81.99071645326481, 28.952342028026163 ], [ -81.990689742289135, 28.952355907907805 ], [ -81.990673959359938, 28.952376194830613 ], [ -81.990661815533898, 28.952403958401156 ], [ -81.99066059880488, 28.952426382077551 ], [ -81.990666666523268, 28.952452009406116 ], [ -81.99067880485272, 28.952472298301103 ], [ -81.990700656384732, 28.952490453959129 ], [ -81.990732222149219, 28.952506472766359 ], [ -81.990772283505322, 28.952519289023826 ], [ -81.990834855009581, 28.952517138712306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melville Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00158538555894, 28.94069952033469 ], [ -82.001682634623634, 28.940698092998304 ], [ -82.001738215193939, 28.940686316669353 ], [ -82.001778262667187, 28.940672429097237 ], [ -82.001818782147907, 28.940671003086226 ], [ -82.001857681029236, 28.940676705199028 ], [ -82.001886856975474, 28.940698091068338 ], [ -82.001907929502096, 28.940723752985033 ], [ -82.001916033472313, 28.940756545860783 ], [ -82.001911171849514, 28.940789337066626 ], [ -82.001894964234722, 28.94081785241967 ], [ -82.001875513057456, 28.940839238781589 ], [ -82.001847959255088, 28.940850643146923 ], [ -82.001815544253759, 28.940853495614807 ], [ -82.001773402825421, 28.940843515746419 ], [ -82.00174422693523, 28.940827833251042 ], [ -82.001716671879876, 28.940822131004623 ], [ -82.001599974345694, 28.940827834493838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melville Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001599974345694, 28.940827834493838 ], [ -82.00159835408742, 28.940866328157668 ], [ -82.001598355561157, 28.940994645137554 ], [ -82.001603763471635, 28.941536468774665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melville Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00158538555894, 28.94069952033469 ], [ -82.001591387442232, 28.940714455953465 ], [ -82.001595490669615, 28.940731297231419 ], [ -82.001599591957458, 28.94075776237317 ], [ -82.001599974345694, 28.940827834493838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melville Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000878732334428, 28.940696061108238 ], [ -82.001548992574129, 28.940690397528726 ], [ -82.00157497712577, 28.940694005598459 ], [ -82.00158538555894, 28.94069952033469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walker Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001324314744053, 28.933992917178617 ], [ -82.001519212488333, 28.934161381490476 ], [ -82.001542938016144, 28.934179272911429 ], [ -82.00156497118941, 28.934200143717732 ], [ -82.001583613458422, 28.934223996630436 ], [ -82.001597172391413, 28.934247850483292 ], [ -82.001610730391405, 28.934279159091918 ], [ -82.001615815127806, 28.93431046596336 ], [ -82.001620898963679, 28.934352210577224 ], [ -82.001613601648813, 28.936248776562028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walker Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001613601648813, 28.936248776562028 ], [ -82.001613021821981, 28.936399637455903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walker Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001613601648813, 28.936248776562028 ], [ -82.001711543057553, 28.93624999743831 ], [ -82.001757124725543, 28.936244778157761 ], [ -82.001791831817613, 28.936243671621998 ], [ -82.00182059288494, 28.936245780009198 ], [ -82.001851750125624, 28.936255267328885 ], [ -82.001874518154395, 28.936272131883619 ], [ -82.001892494079812, 28.93629110694955 ], [ -82.001900882741879, 28.936316408096456 ], [ -82.001900883136045, 28.936343815283692 ], [ -82.001896091400667, 28.936372278204082 ], [ -82.001884107220803, 28.936392306550811 ], [ -82.00186493374639, 28.936409172427137 ], [ -82.001840967005535, 28.936419715069881 ], [ -82.001813406092182, 28.936426040419718 ], [ -82.001787041076867, 28.93642604157251 ], [ -82.001765472242639, 28.936420768766165 ], [ -82.001742702161152, 28.936404958073066 ], [ -82.001708809377604, 28.936401597330338 ], [ -82.001613021821981, 28.936399637455903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Weaton Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006308307969803, 28.944034726337403 ], [ -82.006254165293456, 28.944174017455115 ], [ -82.00615725389035, 28.944459200316235 ], [ -82.006078521567872, 28.944770829456079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Weaton Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006727217849402, 28.943245320194972 ], [ -82.006610086520752, 28.943431659032562 ], [ -82.006489772124255, 28.943641872583022 ], [ -82.006409564951795, 28.943805044115408 ], [ -82.006358885002712, 28.943915958910416 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Weaton Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006358885002712, 28.943915958910416 ], [ -82.006329323359012, 28.943980660024959 ], [ -82.006308307969803, 28.944034726337403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Weaton Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006358885002712, 28.943915958910416 ], [ -82.006229641569561, 28.943860245159048 ], [ -82.006209646627966, 28.943837307911025 ], [ -82.006187044181615, 28.943815133207771 ], [ -82.006165312417039, 28.943807488993194 ], [ -82.006140970317361, 28.943805196385181 ], [ -82.006114891851283, 28.9438082562482 ], [ -82.006084467490439, 28.94381819717405 ], [ -82.00606186591699, 28.94383043230188 ], [ -82.006048828186593, 28.943850313064683 ], [ -82.006041004788145, 28.943874782674889 ], [ -82.006034923177225, 28.9438992504084 ], [ -82.0060349233908, 28.943922190309589 ], [ -82.006044486923855, 28.943942835286038 ], [ -82.006058589560851, 28.943963055094468 ], [ -82.006081191595342, 28.943977581079853 ], [ -82.006101186767353, 28.943985992329136 ], [ -82.006125526898742, 28.943989049186587 ], [ -82.006151606688576, 28.943990578384383 ], [ -82.006184446209872, 28.943987944111548 ], [ -82.006201831354673, 28.943988705814682 ], [ -82.006308307969803, 28.944034726337403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mundelein Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009484514039144, 28.948961513423704 ], [ -82.00954814023558, 28.948967664598108 ], [ -82.009787238758875, 28.948989247379693 ], [ -82.010273193722327, 28.949034683076636 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mundelein Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008523719901859, 28.948687074239935 ], [ -82.008804819665656, 28.948813153454761 ], [ -82.008921881453787, 28.948867117702353 ], [ -82.008980764464724, 28.948890402171095 ], [ -82.009038924700235, 28.948906313125978 ], [ -82.009102254899133, 28.948918813962049 ], [ -82.009162997754956, 28.948929039353391 ], [ -82.009289657256176, 28.94894267379868 ], [ -82.009296249355387, 28.948943311288545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mundelein Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009296249355387, 28.948943311288545 ], [ -82.009484514039144, 28.948961513423704 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mundelein Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009296249355387, 28.948943311288545 ], [ -82.009278663895969, 28.949009513632799 ], [ -82.009273640664958, 28.949049301447172 ], [ -82.009277413169698, 28.949079142718169 ], [ -82.009292494549371, 28.949108981445637 ], [ -82.009312600307055, 28.949124453542481 ], [ -82.009335219003347, 28.949135503336169 ], [ -82.009361607292249, 28.949142133449545 ], [ -82.009379199543133, 28.949143237597639 ], [ -82.009399303698657, 28.949139920344511 ], [ -82.009423177629046, 28.949134394026551 ], [ -82.009445795159735, 28.94912002261545 ], [ -82.009459615166918, 28.94910675980185 ], [ -82.00947343376005, 28.949089075754088 ], [ -82.009483485620436, 28.949061445084908 ], [ -82.009485993989315, 28.949028288377939 ], [ -82.009484514039144, 28.948961513423704 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hopewell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010082269962737, 28.953912090799204 ], [ -82.010165237191146, 28.953918001184185 ], [ -82.010182869218028, 28.953918869724035 ], [ -82.010330440243166, 28.953930090737025 ], [ -82.010445378926462, 28.953942562778956 ], [ -82.010509233018155, 28.95395004525486 ], [ -82.01055464200202, 28.953961274494816 ], [ -82.010601469629052, 28.953981238699104 ], [ -82.010669582997608, 28.954017427190095 ], [ -82.010827768996535, 28.954109724080784 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hopewell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00915807667279, 28.954117831838627 ], [ -82.009354871486536, 28.954061607138755 ], [ -82.009497730505444, 28.954023438827125 ], [ -82.009609708560106, 28.953990427253871 ], [ -82.00975008590531, 28.953953845071389 ], [ -82.009893398708087, 28.953922634782387 ], [ -82.009955832571507, 28.953915143186311 ], [ -82.010082269962737, 28.953912090799204 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010849616525476, 28.954080692066157 ], [ -82.010827768996535, 28.954109724080784 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01122772949391, 28.953267215705679 ], [ -82.011213963750293, 28.953341922957165 ], [ -82.011197899360823, 28.953400478463781 ], [ -82.011179915360898, 28.953467374003651 ], [ -82.011158110404637, 28.95353899153649 ], [ -82.011133398558542, 28.953605496007583 ], [ -82.011104323981343, 28.953675836460121 ], [ -82.011067980454683, 28.953751293471839 ], [ -82.011033089757902, 28.953808846183826 ], [ -82.010993836830636, 28.953875349961169 ], [ -82.010988466107932, 28.953883494465721 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010988466107932, 28.953883494465721 ], [ -82.010951675199891, 28.95393929595566 ], [ -82.010928413454451, 28.953972549920142 ], [ -82.010884797801481, 28.95403393891096 ], [ -82.010849616525476, 28.954080692066157 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010988466107932, 28.953883494465721 ], [ -82.011053074654598, 28.953975444665758 ], [ -82.011069667057441, 28.95401234799581 ], [ -82.011072598020959, 28.954042385959053 ], [ -82.011069673265638, 28.95406298280226 ], [ -82.011060892640884, 28.954082723830787 ], [ -82.011050159980343, 28.954094740492597 ], [ -82.011034547920289, 28.954104183297858 ], [ -82.01101698461359, 28.954113623547137 ], [ -82.010987711702782, 28.954122209335956 ], [ -82.010962705698248, 28.954122961991892 ], [ -82.010937091004152, 28.954120388843183 ], [ -82.010914402852222, 28.95411459789058 ], [ -82.010849616525476, 28.954080692066157 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bedford Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010957228953743, 28.955110382575555 ], [ -82.010986591488603, 28.955143098281898 ], [ -82.011048043443864, 28.955198338077498 ], [ -82.011084913712622, 28.955222353276962 ], [ -82.011123149634642, 28.955237963512356 ], [ -82.01116821195086, 28.955243964692144 ], [ -82.011226928648043, 28.955246361014861 ], [ -82.011581956240832, 28.955246332201245 ], [ -82.011755374899792, 28.955248720588671 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bedford Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010798150575837, 28.9549331477998 ], [ -82.010957228953743, 28.955110382575555 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bedford Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010725754163829, 28.95485248484993 ], [ -82.010798150575837, 28.9549331477998 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bedford Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010798150575837, 28.9549331477998 ], [ -82.010847600423972, 28.95490758478611 ], [ -82.010872618296432, 28.954900542275588 ], [ -82.010895638830434, 28.954894378747003 ], [ -82.010927662239141, 28.954894376265479 ], [ -82.010949680598273, 28.954899655667646 ], [ -82.010976702890247, 28.954911096425498 ], [ -82.010990715949873, 28.954924298565178 ], [ -82.011008731849358, 28.954945422510612 ], [ -82.011019744483065, 28.954971828114825 ], [ -82.01102274877455, 28.954996473974536 ], [ -82.011016746966106, 28.955023760644536 ], [ -82.011006740262317, 28.955043126409553 ], [ -82.010989728890209, 28.955064253091713 ], [ -82.010957228953743, 28.955110382575555 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Davenport Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012719139277124, 28.93594956543155 ], [ -82.012667277474094, 28.936021343106283 ], [ -82.012536324314013, 28.936229078298922 ], [ -82.012433969459906, 28.936399500971323 ], [ -82.012368478601999, 28.936516550532023 ], [ -82.012339830350129, 28.936579574680497 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Davenport Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013175751445786, 28.934585638818945 ], [ -82.013187050392617, 28.934751833146485 ], [ -82.013174731714216, 28.934944332470149 ], [ -82.013140021774873, 28.935169589874839 ], [ -82.013113423854151, 28.935275830290518 ], [ -82.013078639499781, 28.935380271386197 ], [ -82.013031573104698, 28.935491916627612 ], [ -82.012982457714756, 28.93558195299752 ], [ -82.012849428281228, 28.935769234592403 ], [ -82.012831277233786, 28.935794356122251 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Davenport Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012831277233786, 28.935794356122251 ], [ -82.012719139277124, 28.93594956543155 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Davenport Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012831277233786, 28.935794356122251 ], [ -82.01289939655463, 28.935861631243633 ], [ -82.012918639218455, 28.935872911758892 ], [ -82.012945185571496, 28.935889365352139 ], [ -82.012963537758296, 28.935899236559671 ], [ -82.01297939681703, 28.935920706084101 ], [ -82.012992227844862, 28.935949542216317 ], [ -82.012994547250628, 28.935977282131837 ], [ -82.012989204761496, 28.935997968621624 ], [ -82.012978517169543, 28.936017715415332 ], [ -82.012961416818641, 28.936037464605494 ], [ -82.0129368332084, 28.936051571536417 ], [ -82.012910109965347, 28.936057215141012 ], [ -82.01288231747678, 28.936059098978934 ], [ -82.012852386054874, 28.936049698916904 ], [ -82.012828333668381, 28.936037320740343 ], [ -82.012804102198629, 28.936019769723661 ], [ -82.012719139277124, 28.93594956543155 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arcadia Lakes Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007868774434257, 28.923872808021336 ], [ -82.007929212951566, 28.923820351558309 ], [ -82.007991113755693, 28.923765878355834 ], [ -82.008133900573583, 28.923652399466416 ], [ -82.008183075121494, 28.923604643581445 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arcadia Lakes Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008279117931508, 28.923473666248071 ], [ -82.008285341447973, 28.923463287683543 ], [ -82.008306615096387, 28.923407213282566 ], [ -82.008334717368726, 28.923273896541506 ], [ -82.008395448158694, 28.922880614708731 ], [ -82.008435532340542, 28.9226311518964 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arcadia Lakes Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008183075121494, 28.923604643581445 ], [ -82.008187411003817, 28.92360043502763 ], [ -82.008237067675992, 28.923540962783605 ], [ -82.00825913683542, 28.923506980157157 ], [ -82.008279117931508, 28.923473666248071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arcadia Lakes Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008183075121494, 28.923604643581445 ], [ -82.008238972752025, 28.923657625016478 ], [ -82.008273116664938, 28.923684019726419 ], [ -82.008307259767648, 28.923699490331966 ], [ -82.008339333501041, 28.923704950076342 ], [ -82.008369336082211, 28.923704037920224 ], [ -82.008392098664885, 28.923698574999261 ], [ -82.008409686111648, 28.923693113279029 ], [ -82.008423134596313, 28.923678548535996 ], [ -82.008438651413854, 28.923660342004403 ], [ -82.008447963121284, 28.923638497778395 ], [ -82.008450028395814, 28.923608459326342 ], [ -82.008437611450887, 28.923580243458844 ], [ -82.008406570546597, 28.923548387914625 ], [ -82.008341387439032, 28.923511982261061 ], [ -82.008279117931508, 28.923473666248071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007568026824998, 28.924162029694831 ], [ -82.007638677756248, 28.924187015975761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007568026824998, 28.924162029694831 ], [ -82.007536053978242, 28.924253584603996 ], [ -82.007530603010082, 28.924284766424037 ], [ -82.007526686301688, 28.924315498820889 ], [ -82.007531798697087, 28.924342482612762 ], [ -82.007544071204293, 28.924360471948262 ], [ -82.007563325812029, 28.924375911031071 ], [ -82.007585138973056, 28.924386704056513 ], [ -82.00760694873064, 28.924392700474385 ], [ -82.007633020783231, 28.924397345025373 ], [ -82.007664202747549, 28.924392696557316 ], [ -82.007691465301804, 28.924379502647078 ], [ -82.007720089354947, 28.924344721232831 ], [ -82.007781474768237, 28.924247648067787 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avon Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009504592780999, 28.92100937568468 ], [ -82.009561080896162, 28.921009371917464 ], [ -82.009683773328234, 28.921009362751164 ], [ -82.0098443687437, 28.92101107063943 ], [ -82.010021179213211, 28.921011058322765 ], [ -82.010154812373784, 28.921011048859807 ], [ -82.010241359927306, 28.921012418662006 ], [ -82.010393950520196, 28.921010974750072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avon Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009349984916156, 28.921011104748569 ], [ -82.009384075719765, 28.921011101614731 ], [ -82.009472577721198, 28.921009376906973 ], [ -82.009504592780999, 28.92100937568468 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avon Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009349984916156, 28.921011104748569 ], [ -82.009350963915111, 28.921101952374769 ], [ -82.00933914364127, 28.921130554130446 ], [ -82.009332543796319, 28.921162690741006 ], [ -82.00933503988999, 28.921197062648005 ], [ -82.009345016995951, 28.921225583578245 ], [ -82.009368708345391, 28.921246261754572 ], [ -82.0093997408554, 28.921256660486808 ], [ -82.009433729520069, 28.921260558875474 ], [ -82.009468040404599, 28.921254827929801 ], [ -82.009498794294558, 28.921233617419087 ], [ -82.009518740364825, 28.921208020657524 ], [ -82.009527880093856, 28.921183155473575 ], [ -82.009529541132679, 28.921155364641244 ], [ -82.009519563791571, 28.921124652047105 ], [ -82.009504646550326, 28.921096739605552 ], [ -82.009504592780999, 28.92100937568468 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avon Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00853487622058, 28.920932861489238 ], [ -82.00850881830938, 28.920967621285584 ], [ -82.00848934305067, 28.920996819837459 ], [ -82.008474279913372, 28.921027975207355 ], [ -82.008463877047632, 28.921060572171029 ], [ -82.008461962328028, 28.921073995743843 ], [ -82.008462709983363, 28.921087509389864 ], [ -82.008466098446405, 28.921100706174702 ], [ -82.008472023079818, 28.921113190898584 ], [ -82.008480308483556, 28.921124588216351 ], [ -82.008490705419064, 28.921134556171957 ], [ -82.008502905167958, 28.921142797025446 ], [ -82.00851653440445, 28.921149059960069 ], [ -82.008531190066037, 28.921153160028545 ], [ -82.008546429097535, 28.92115497274002 ], [ -82.008561794091278, 28.921154444885978 ], [ -82.008576825593607, 28.921151590930549 ], [ -82.008591072361071, 28.921146495716595 ], [ -82.008604105718518, 28.921139316269532 ], [ -82.00862331429947, 28.92112281934094 ], [ -82.008639012152315, 28.92110366084674 ], [ -82.00865072961399, 28.921082412872128 ], [ -82.008658118044053, 28.921059708851072 ], [ -82.00866095700195, 28.92103622371507 ], [ -82.008668061442734, 28.9210018033944 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avon Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008668061442734, 28.9210018033944 ], [ -82.00872369880824, 28.921007734431768 ], [ -82.008773208051906, 28.921008958541186 ], [ -82.008822971575199, 28.921009418371909 ], [ -82.008914991272164, 28.921007693814463 ], [ -82.009052140207757, 28.921009404101618 ], [ -82.009164087796677, 28.921009397891158 ], [ -82.009277598492559, 28.921011109458298 ], [ -82.009349984916156, 28.921011104748569 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avon Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00853487622058, 28.920932861489238 ], [ -82.00856509863435, 28.920959898804519 ], [ -82.008585076699177, 28.920973869670867 ], [ -82.008604029982138, 28.920984683461118 ], [ -82.008621958481456, 28.920992343784928 ], [ -82.008638082764563, 28.920996831741245 ], [ -82.008656519615627, 28.921000281013551 ], [ -82.008668061442734, 28.9210018033944 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avon Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008490401302609, 28.920373110209407 ], [ -82.008481827423424, 28.920661882511091 ], [ -82.008480072257044, 28.9207093235459 ], [ -82.008480077087299, 28.920758484253312 ], [ -82.00848359857271, 28.920807642948752 ], [ -82.008487454292776, 28.920842241270019 ], [ -82.008492553865679, 28.920861565447442 ], [ -82.008497653306662, 28.920879164434247 ], [ -82.00850706940102, 28.920897453422487 ], [ -82.008520304799347, 28.920917032467656 ], [ -82.00853487622058, 28.920932861489238 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blease Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985948671433974, 28.910235596926519 ], [ -81.985955179228583, 28.910278585782923 ], [ -81.985968013243919, 28.910320585485316 ], [ -81.985996717512876, 28.910413407871928 ], [ -81.986016044306538, 28.910496260681452 ], [ -81.986032837389416, 28.91055539181577 ], [ -81.986044940861717, 28.910608334498466 ], [ -81.986054505752122, 28.910665402218495 ], [ -81.986066411534722, 28.910739316079457 ], [ -81.986076167650666, 28.910830418483442 ], [ -81.98608807129321, 28.910927708164795 ], [ -81.986092944696509, 28.910999900603613 ], [ -81.986095278242971, 28.91107793966453 ], [ -81.986092925598612, 28.911139475211996 ], [ -81.986095263324813, 28.911194480419201 ], [ -81.986094638829229, 28.911336772680531 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blease Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986094638829229, 28.911336772680531 ], [ -81.986148184994036, 28.911336119588231 ], [ -81.986268518097887, 28.911350916206914 ], [ -81.986376739675364, 28.911378772235459 ], [ -81.986475197669961, 28.911399751677241 ], [ -81.986566619451438, 28.911416605934484 ], [ -81.986636358711024, 28.911425208246264 ], [ -81.986718210164739, 28.911431404402272 ], [ -81.986809635404526, 28.911437945233896 ], [ -81.986864920734675, 28.911437950706397 ], [ -81.986927435241483, 28.911425236276298 ], [ -81.986956347518728, 28.911416645633881 ], [ -81.987009293417216, 28.911387087038197 ], [ -81.987038014806501, 28.911355461605169 ], [ -81.987076507877148, 28.911291866908673 ], [ -81.987081393127482, 28.911268491560314 ], [ -81.987088631920102, 28.911188047922955 ], [ -81.987095873894688, 28.911082508681496 ], [ -81.987098230233613, 28.910987282225658 ], [ -81.987103128600026, 28.910868681092783 ], [ -81.987107833733745, 28.910737358444411 ], [ -81.987110389698714, 28.910604315805617 ], [ -81.987110405011634, 28.910491902149658 ], [ -81.98709830103742, 28.910430708951477 ], [ -81.987062172504636, 28.910337543203948 ], [ -81.987030923432229, 28.910282536091572 ], [ -81.986975648698063, 28.910212742472229 ], [ -81.986932482523329, 28.91016804743116 ], [ -81.9868746625082, 28.910123694705817 ], [ -81.986814499586956, 28.91008552968092 ], [ -81.986735191814489, 28.910051831801567 ], [ -81.986672682573612, 28.910030510573133 ], [ -81.986576376697116, 28.910013656794536 ], [ -81.98645623822928, 28.910011581062061 ], [ -81.986328672555331, 28.910015694221933 ], [ -81.986230214496885, 28.910020153149521 ], [ -81.986102647987423, 28.910045235494575 ], [ -81.986049704669952, 28.910066544032073 ], [ -81.986012391632357, 28.910093596415148 ], [ -81.985987185040756, 28.910121541533165 ], [ -81.985968117616011, 28.910151328883387 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blease Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985968117616011, 28.910151328883387 ], [ -81.9859652877591, 28.910155748941531 ], [ -81.985953509125295, 28.910194227989518 ], [ -81.985948457307373, 28.910234186612595 ], [ -81.985948671433974, 28.910235596926519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blease Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985968117616011, 28.910151328883387 ], [ -81.985847931623979, 28.91012126693726 ], [ -81.985827502965179, 28.910095114371025 ], [ -81.985794072165277, 28.910071411957485 ], [ -81.98576156679033, 28.910066506300904 ], [ -81.985732776087403, 28.910065684834159 ], [ -81.98570955693107, 28.910070586331674 ], [ -81.985682622405832, 28.910083657731537 ], [ -81.985665903844605, 28.910101635116856 ], [ -81.985652896984064, 28.910122881924725 ], [ -81.98565103607126, 28.910149847793765 ], [ -81.985652890633688, 28.910175180904282 ], [ -81.985666817378558, 28.910204600919055 ], [ -81.985690961045549, 28.910225033341163 ], [ -81.985718821117516, 28.910237294949621 ], [ -81.985753183769262, 28.910241384235807 ], [ -81.985784761614454, 28.910235667044414 ], [ -81.985825628543452, 28.910219328084217 ], [ -81.985948671433974, 28.910235596926519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blease Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984239905006035, 28.911585867290949 ], [ -81.984327580706989, 28.911594889779497 ], [ -81.984421223533076, 28.911604763775415 ], [ -81.984481391635825, 28.911608894296769 ], [ -81.984570472252486, 28.911611312875348 ], [ -81.984693154319231, 28.911608919698377 ], [ -81.984813298430595, 28.911592088457731 ], [ -81.984885582258826, 28.911577313437128 ], [ -81.984981699975677, 28.911549822281511 ], [ -81.985077818246552, 28.911518205752881 ], [ -81.985171788215496, 28.911492776872787 ], [ -81.985219651288006, 28.911477999853414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blease Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983458021579366, 28.912280510016437 ], [ -81.983466430320235, 28.912224819457901 ], [ -81.98348559521709, 28.912100031390985 ], [ -81.983504949798757, 28.912006869770707 ], [ -81.983521763927655, 28.911934679030114 ], [ -81.983553037181963, 28.911831206515366 ], [ -81.983603455734666, 28.91171673463456 ], [ -81.983632378156216, 28.911653484427102 ], [ -81.983673411438616, 28.91159642275073 ], [ -81.983702247154056, 28.911574773845903 ], [ -81.983745981594694, 28.911555539495915 ], [ -81.983788677794678, 28.911545557164199 ], [ -81.983836931510865, 28.91153903129247 ], [ -81.983887332878211, 28.911543506474477 ], [ -81.983961278885815, 28.911549646505041 ], [ -81.984040330310606, 28.911558535504767 ], [ -81.984097651865767, 28.911567882940926 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blease Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984097651865767, 28.911567882940926 ], [ -81.984131155329521, 28.911573345834611 ], [ -81.984230391777928, 28.911585197562999 ], [ -81.984239905006035, 28.911585867290949 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blease Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984097651865767, 28.911567882940926 ], [ -81.984112205189675, 28.911470515946146 ], [ -81.984099539157953, 28.911433638437583 ], [ -81.984089798497692, 28.911405337615051 ], [ -81.98408785313157, 28.911372749102419 ], [ -81.98409370492503, 28.911343592958062 ], [ -81.98411222896803, 28.91131786795766 ], [ -81.984135622927184, 28.911299004605034 ], [ -81.984173633877475, 28.911293863321685 ], [ -81.984206770452488, 28.911297297788277 ], [ -81.984243806105511, 28.911305877608452 ], [ -81.984265245852058, 28.911317886113054 ], [ -81.984280836773038, 28.911340184627949 ], [ -81.984291553861027, 28.911367629271712 ], [ -81.984290575930928, 28.91139850126692 ], [ -81.984276925331585, 28.911428513682313 ], [ -81.984257426644788, 28.911470533180967 ], [ -81.984239905006035, 28.911585867290949 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980124045285848, 28.914626080247096 ], [ -81.980181081716921, 28.91460536386284 ], [ -81.980284432629432, 28.914575814496295 ], [ -81.980354179775915, 28.914556918043395 ], [ -81.98046495382053, 28.914529432281231 ], [ -81.980594678543625, 28.914499540952644 ], [ -81.980719906479905, 28.914474464409306 ], [ -81.980820911266008, 28.91445316489629 ], [ -81.980926603777775, 28.914436335054958 ], [ -81.981010804672096, 28.914425690028558 ], [ -81.981075862108767, 28.914417104887963 ], [ -81.9811887808808, 28.914402338516286 ], [ -81.981272982306393, 28.914394099752414 ], [ -81.981354839756833, 28.914389642135685 ], [ -81.981422374817356, 28.914386372606113 ], [ -81.981494176997529, 28.914383057617311 ], [ -81.981556840247094, 28.914383483153696 ], [ -81.981633811296703, 28.914389680821053 ], [ -81.981689094597002, 28.914398282798828 ], [ -81.981737152503896, 28.91441100906761 ], [ -81.98178286165377, 28.914425797649788 ], [ -81.98181411708552, 28.914436458944785 ], [ -81.981850258313685, 28.91445124619964 ], [ -81.981917416677803, 28.914490626150879 ], [ -81.982001805326263, 28.914554920817164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ternberry Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981621382876298, 28.916458429556197 ], [ -81.981583641556412, 28.916333247806847 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ternberry Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981621382876298, 28.916458429556197 ], [ -81.981755073773257, 28.916425926418889 ], [ -81.981793004774659, 28.916437440396894 ], [ -81.981825703973527, 28.916440897945282 ], [ -81.981858403991026, 28.916439751967296 ], [ -81.981884566906885, 28.916429396252187 ], [ -81.981905498289066, 28.916415158141433 ], [ -81.981922506263487, 28.916393726385255 ], [ -81.981929050695101, 28.916367256588806 ], [ -81.98192905476165, 28.9163442408009 ], [ -81.981921211530135, 28.916315468197983 ], [ -81.981909444183685, 28.916295182066847 ], [ -81.981893750306895, 28.916279644190222 ], [ -81.98187217051175, 28.916266694201887 ], [ -81.981850587935043, 28.916263671279921 ], [ -81.981823120384405, 28.91626366754052 ], [ -81.981791725500102, 28.916267114545164 ], [ -81.981769487694876, 28.916275168117256 ], [ -81.981748557014171, 28.91629127576639 ], [ -81.981732858127359, 28.916303932843103 ], [ -81.981719775958311, 28.916313139893251 ], [ -81.981583641556412, 28.916333247806847 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Honea Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974138303397282, 28.898485592669736 ], [ -81.974005638736159, 28.898144983300767 ], [ -81.973862202145412, 28.897798543730808 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Honea Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973837963726709, 28.897654771134974 ], [ -81.973839293659324, 28.897614111982445 ], [ -81.97384912077159, 28.897576673893621 ], [ -81.973895975852699, 28.89743816294369 ], [ -81.973980456907427, 28.897212768763954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Honea Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973862202145412, 28.897798543730808 ], [ -81.973862158083278, 28.897798435446298 ], [ -81.973844175858957, 28.89772499289117 ], [ -81.973837645449791, 28.897664510491719 ], [ -81.973837963726709, 28.897654771134974 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Honea Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973862202145412, 28.897798543730808 ], [ -81.973771776548503, 28.897818110453699 ], [ -81.973724626722216, 28.897828473139541 ], [ -81.973693197778388, 28.897829330468529 ], [ -81.973662751930718, 28.89781895165034 ], [ -81.973645076334407, 28.8978059839359 ], [ -81.973628384646588, 28.89778264448239 ], [ -81.973619549699819, 28.897761033575808 ], [ -81.973616609955101, 28.897733373913429 ], [ -81.973622511789429, 28.897701394881508 ], [ -81.973632338817154, 28.897680652955703 ], [ -81.973657880319138, 28.897663370830397 ], [ -81.973692259190258, 28.897658191173189 ], [ -81.973751191979758, 28.897656473934138 ], [ -81.973837963726709, 28.897654771134974 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moses Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973048100778669, 28.903908492388201 ], [ -81.973345006663635, 28.903780175508022 ], [ -81.973820788046964, 28.903584087142487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moses Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971322347259346, 28.904010640443602 ], [ -81.971364648923611, 28.904088989753291 ], [ -81.971483948129489, 28.904256267050616 ], [ -81.971574530301666, 28.904374920503397 ], [ -81.971629771323762, 28.90442549792219 ], [ -81.971685016221983, 28.904454680921429 ], [ -81.971746896709007, 28.904468306966667 ], [ -81.971795520394338, 28.90446831721615 ], [ -81.971848566761167, 28.904456658952672 ], [ -81.971910457335397, 28.904433334000682 ], [ -81.972096136813477, 28.90433029876111 ], [ -81.972365806768451, 28.904203943576771 ], [ -81.972662001675019, 28.904071758103992 ], [ -81.972864345978749, 28.903986767560781 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moses Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972864345978749, 28.903986767560781 ], [ -81.972958190716398, 28.903947350690807 ], [ -81.973048100778669, 28.903908492388201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moses Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972864345978749, 28.903986767560781 ], [ -81.972892465626813, 28.904056603939992 ], [ -81.972907817845467, 28.904088145987824 ], [ -81.972924452871425, 28.904111803106982 ], [ -81.972942368216991, 28.904125322257361 ], [ -81.972959326681732, 28.904135639857145 ], [ -81.972978045450404, 28.90414324640323 ], [ -81.973005406777673, 28.904145153967935 ], [ -81.97303836835718, 28.904141112899033 ], [ -81.973063973241992, 28.904130979827581 ], [ -81.973084455660256, 28.904115213574521 ], [ -81.973098542499244, 28.904096068730244 ], [ -81.973103667031921, 28.904078048152709 ], [ -81.973104954081208, 28.904049888578516 ], [ -81.973096002065802, 28.904019474810013 ], [ -81.973083211839096, 28.903985680259112 ], [ -81.973048100778669, 28.903908492388201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Haynesville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968713465882743, 28.904614997115388 ], [ -81.968869108659547, 28.904569415868334 ], [ -81.96894920647803, 28.904541244848438 ], [ -81.969000390564446, 28.904524410789538 ], [ -81.96906087814655, 28.904493862119793 ], [ -81.969097611742853, 28.904464786813278 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Haynesville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969154682055787, 28.904367451892835 ], [ -81.9691602828443, 28.904333016061404 ], [ -81.969152349585272, 28.904280558215124 ], [ -81.969123233111404, 28.904188460225427 ], [ -81.96909411461634, 28.904099860438794 ], [ -81.969064999990067, 28.904001933586589 ], [ -81.969037208510002, 28.903906338571716 ], [ -81.969013391175977, 28.903811910238524 ], [ -81.969000346468292, 28.903752459286252 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Haynesville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969097611742853, 28.904464786813278 ], [ -81.969100629200071, 28.904462396418477 ], [ -81.969132436130423, 28.904421604523787 ], [ -81.969152319287247, 28.904381975646132 ], [ -81.969154682055787, 28.904367451892835 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Haynesville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969097611742853, 28.904464786813278 ], [ -81.969121323017944, 28.904513437892486 ], [ -81.96913466046594, 28.904530599071528 ], [ -81.969149346105354, 28.904541638465183 ], [ -81.96916723830293, 28.904552307750521 ], [ -81.969187441803982, 28.904559425216334 ], [ -81.969209954860446, 28.904561970361762 ], [ -81.969231890648615, 28.904560959412969 ], [ -81.96924863453691, 28.904557407299162 ], [ -81.96926826262154, 28.904551315874933 ], [ -81.969288600693417, 28.90453695594827 ], [ -81.969302972266263, 28.904517995636819 ], [ -81.969309841372606, 28.904501036707845 ], [ -81.969312154542735, 28.904484273436076 ], [ -81.969312227006611, 28.904464717037516 ], [ -81.969305049510567, 28.904439429383373 ], [ -81.96929600992992, 28.904424329153176 ], [ -81.969282479987896, 28.904409623099632 ], [ -81.96926093233742, 28.904395168751314 ], [ -81.96921475631612, 28.904378000043152 ], [ -81.969154682055787, 28.904367451892835 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Haynesville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969000346468292, 28.903752459286252 ], [ -81.968978999652151, 28.903646898957629 ], [ -81.968960475605556, 28.903562435919252 ], [ -81.968945929963894, 28.903478502546317 ], [ -81.968927420492804, 28.903352600542519 ], [ -81.968910236899191, 28.903226698841497 ], [ -81.968895135252694, 28.90311662213146 ], [ -81.968888813403439, 28.903049569052744 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Haynesville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968881199103564, 28.902916004537342 ], [ -81.968879195727169, 28.902853972848398 ], [ -81.968872558628277, 28.902730681225318 ], [ -81.968870830300389, 28.90260323024112 ], [ -81.96887086075192, 28.902502201674334 ], [ -81.968871781496532, 28.902376499053698 ], [ -81.96887577518028, 28.902315883557023 ], [ -81.968886381682822, 28.902282080498146 ], [ -81.968906263472689, 28.902245948051025 ], [ -81.968942044889602, 28.902202824667437 ], [ -81.968992393111591, 28.902172528114626 ], [ -81.969036114515632, 28.902155052578443 ], [ -81.96912090072108, 28.902143415347087 ], [ -81.969206405189638, 28.902140369013328 ], [ -81.969314313846127, 28.902131803885343 ], [ -81.969424268675851, 28.902124832597345 ], [ -81.969526957563971, 28.902118095969534 ], [ -81.969654904302885, 28.902112626399877 ], [ -81.96965841838832, 28.902112282517606 ], [ -81.969733234527652, 28.902104735469507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Haynesville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968888813403439, 28.903049569052744 ], [ -81.968888123467508, 28.903042255762621 ], [ -81.968882294264787, 28.902949887005896 ], [ -81.968881199103564, 28.902916004537342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Haynesville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968888813403439, 28.903049569052744 ], [ -81.968765586650306, 28.903064318231849 ], [ -81.968743469259209, 28.903070098613039 ], [ -81.968722367453395, 28.903077778566153 ], [ -81.968698039022939, 28.90308113214294 ], [ -81.968677553284834, 28.903079285764658 ], [ -81.968650224335988, 28.903073232168861 ], [ -81.968626320144196, 28.903060603417444 ], [ -81.968610185986222, 28.903045873224094 ], [ -81.968601823045375, 28.903028514649545 ], [ -81.968598840652703, 28.903010105255223 ], [ -81.968597650964, 28.90299064329847 ], [ -81.968600645827323, 28.902968028788671 ], [ -81.968606627943444, 28.902951199614808 ], [ -81.968614404556803, 28.902937526199104 ], [ -81.968625164094121, 28.902927009721783 ], [ -81.968637121192174, 28.902920174902114 ], [ -81.968649076624317, 28.902915445143609 ], [ -81.96866820552377, 28.902911240394662 ], [ -81.968690916336044, 28.902909667582623 ], [ -81.968719607997144, 28.902912304483642 ], [ -81.968755164017011, 28.902917018266017 ], [ -81.968881199103564, 28.902916004537342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maybank Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964586143750907, 28.902854367313001 ], [ -81.964621411681804, 28.902789393080123 ], [ -81.964671582361007, 28.902700981047502 ], [ -81.964719442984716, 28.902617918115549 ], [ -81.964773601123795, 28.902523782909253 ], [ -81.964820817658293, 28.902449720198476 ], [ -81.964847907684941, 28.90240639080271 ], [ -81.964883166400398, 28.902367633683433 ], [ -81.96493180357821, 28.902340084798887 ], [ -81.964971292217669, 28.902327781451611 ], [ -81.965006537942287, 28.902321144323235 ], [ -81.965168916448633, 28.902318971461309 ], [ -81.965378935412943, 28.902319574454832 ], [ -81.965681706697666, 28.902319651395537 ], [ -81.96609523278542, 28.902319756614428 ], [ -81.966465199537041, 28.902319850576443 ], [ -81.966693744274679, 28.902316811769168 ], [ -81.966801376464346, 28.902308244976684 ], [ -81.966902170606886, 28.902302081938139 ], [ -81.966999842334545, 28.902296260928988 ], [ -81.967073679045811, 28.902293529782852 ], [ -81.967131523059621, 28.902290114342346 ], [ -81.96715559269596, 28.902294042534724 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maybank Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96728452950704, 28.902362314012439 ], [ -81.967314425801362, 28.902403878475106 ], [ -81.967329327132191, 28.902441415927107 ], [ -81.967331177644112, 28.902507262523489 ], [ -81.967308962656006, 28.902601267600964 ], [ -81.967285492386253, 28.902695800211703 ], [ -81.967255549809579, 28.902829200454711 ], [ -81.967223645779228, 28.90287792941259 ], [ -81.967179998516968, 28.902911885762183 ], [ -81.967129639319822, 28.902938457844698 ], [ -81.967094390379685, 28.902951741858374 ], [ -81.967053349723301, 28.902956324476492 ], [ -81.966952553861304, 28.902956300565311 ], [ -81.966842638231554, 28.902956109202453 ], [ -81.96669021802002, 28.902956235631049 ], [ -81.966508554757084, 28.902956190365771 ], [ -81.96632024606977, 28.9029588933921 ], [ -81.966121978658293, 28.902958843432831 ], [ -81.965950473813592, 28.902956049775764 ], [ -81.965819207572935, 28.902958767480047 ], [ -81.965661178527355, 28.902958727095857 ], [ -81.965503150507786, 28.902958685624274 ], [ -81.965375400211428, 28.902958653594734 ], [ -81.9652107297144, 28.902958610064491 ], [ -81.96504254520471, 28.9029585672214 ], [ -81.964918116148752, 28.902958533819533 ], [ -81.964786854734285, 28.902940966847652 ], [ -81.964722987232733, 28.90292307372026 ], [ -81.964643195065889, 28.902891303523955 ], [ -81.964586143750907, 28.902854367313001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maybank Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96715559269596, 28.902294042534724 ], [ -81.967176837547896, 28.90229750985878 ], [ -81.967222146624067, 28.902312290673173 ], [ -81.967256737458101, 28.902336509605266 ], [ -81.967282551385793, 28.902359563323305 ], [ -81.96728452950704, 28.902362314012439 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maybank Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96715559269596, 28.902294042534724 ], [ -81.967206201548606, 28.902184152241631 ], [ -81.967222698905658, 28.902155138351418 ], [ -81.967244137886851, 28.902134831044474 ], [ -81.967267225073698, 28.902126131306808 ], [ -81.96729030985361, 28.902121784253456 ], [ -81.967319988053532, 28.902123242389024 ], [ -81.967348016631249, 28.902130504603615 ], [ -81.967371093860933, 28.902143567387672 ], [ -81.967385930665372, 28.902158079059159 ], [ -81.967392517922477, 28.90217694321575 ], [ -81.967397458069868, 28.902200157855521 ], [ -81.967397451661071, 28.90222047130397 ], [ -81.967392496863056, 28.902243683536554 ], [ -81.967379299462621, 28.902265443769128 ], [ -81.967359506897296, 28.90229010508919 ], [ -81.96728452950704, 28.902362314012439 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sheppard Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965265289938671, 28.903739429123966 ], [ -81.965287630005719, 28.903731096769988 ], [ -81.965542313997375, 28.903657974335697 ], [ -81.965646980755082, 28.9036352759077 ], [ -81.965744849156323, 28.903618557900156 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sheppard Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964459240110315, 28.90407619476121 ], [ -81.965065696700279, 28.903813889070975 ], [ -81.965091331820716, 28.903804325068528 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sheppard Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965091331820716, 28.903804325068528 ], [ -81.965265289938671, 28.903739429123966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sheppard Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965091331820716, 28.903804325068528 ], [ -81.965055407318772, 28.903730491455633 ], [ -81.96504107179301, 28.903701527547309 ], [ -81.965032642041038, 28.903671077287584 ], [ -81.965034338632179, 28.90364508792517 ], [ -81.965040252470388, 28.903625783889396 ], [ -81.965058824053941, 28.903605737854136 ], [ -81.965087523219282, 28.903586438850049 ], [ -81.96511875032111, 28.903578276665286 ], [ -81.965152506367929, 28.903578286345571 ], [ -81.965181194456889, 28.903585719715466 ], [ -81.965199757310856, 28.903597606903592 ], [ -81.965214941040927, 28.903616916421981 ], [ -81.965233493338573, 28.903651080449489 ], [ -81.965265289938671, 28.903739429123966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thompson Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966180691749599, 28.90620514905234 ], [ -81.966277088091914, 28.906052737286902 ], [ -81.966295809065784, 28.906015403995742 ], [ -81.966309306462691, 28.905956277083732 ], [ -81.966315963582872, 28.905911932606575 ], [ -81.966319301124045, 28.905855898021834 ], [ -81.966315108479407, 28.905814095298219 ], [ -81.966303883345645, 28.905763396853274 ], [ -81.966290746362361, 28.9057267548298 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thompson Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966215587699963, 28.905531204277093 ], [ -81.966204197334761, 28.905499990910293 ], [ -81.96617190395375, 28.905412189146752 ], [ -81.966138003108654, 28.905320249028545 ], [ -81.966097602041543, 28.905219511653343 ], [ -81.966067352899898, 28.905133560089681 ], [ -81.96604380587037, 28.905069529748214 ], [ -81.966017827827912, 28.905004871688508 ], [ -81.965998631965476, 28.90494618224227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thompson Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966290746362361, 28.9057267548298 ], [ -81.966278610309374, 28.905692906571886 ], [ -81.96625755021843, 28.905639730643653 ], [ -81.966229466577744, 28.905569241448877 ], [ -81.966215587699963, 28.905531204277093 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thompson Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966290746362361, 28.9057267548298 ], [ -81.96621494858303, 28.905739133323635 ], [ -81.966169242296857, 28.905737060946645 ], [ -81.966141117809556, 28.905731896308989 ], [ -81.96612119869171, 28.90572054758314 ], [ -81.96609893953314, 28.905696822340524 ], [ -81.966089571903822, 28.905666915101847 ], [ -81.966087238299124, 28.905638040066727 ], [ -81.966090762232923, 28.905614322245285 ], [ -81.966103658838719, 28.905598857408926 ], [ -81.966122415006012, 28.905582361823154 ], [ -81.966142635515482, 28.905568831556547 ], [ -81.966215587699963, 28.905531204277093 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hammond Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967568774133184, 28.907462242628174 ], [ -81.967653775164962, 28.907453410727168 ], [ -81.968069921827279, 28.907427722857818 ], [ -81.968224195820397, 28.907426103814746 ], [ -81.968291924226222, 28.907434395736274 ], [ -81.968348355497213, 28.907462553557025 ], [ -81.968397257612239, 28.907508917951464 ], [ -81.968423582267462, 28.907560243257027 ], [ -81.968459295056377, 28.907667856113683 ], [ -81.968504384225099, 28.907853768066474 ], [ -81.968511024963107, 28.907853770529631 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hammond Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9667878022465, 28.90807784081931 ], [ -81.967003055414807, 28.9078181531025 ], [ -81.967074574267329, 28.907738708021142 ], [ -81.967138561070769, 28.907672504983271 ], [ -81.967200664490377, 28.907617890568169 ], [ -81.967266528046324, 28.907573209538331 ], [ -81.967326740810662, 28.9075401144087 ], [ -81.96738029813433, 28.907517807311162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hammond Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96738029813433, 28.907517807311162 ], [ -81.96739824458075, 28.907510333432825 ], [ -81.967473506510842, 28.907483864764597 ], [ -81.967567582539289, 28.907462366856905 ], [ -81.967568774133184, 28.907462242628174 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hammond Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96738029813433, 28.907517807311162 ], [ -81.967372772718193, 28.907491033396319 ], [ -81.967368044077062, 28.90747269755029 ], [ -81.96736236799174, 28.907447693491306 ], [ -81.967361431256933, 28.907416858132247 ], [ -81.967365227606692, 28.907393522924231 ], [ -81.967380389859954, 28.907370190483068 ], [ -81.96739744140055, 28.907355193928542 ], [ -81.967411651671625, 28.907346030037392 ], [ -81.967429650890566, 28.90734020015439 ], [ -81.967455223669774, 28.90733853892057 ], [ -81.967485532900028, 28.907340213724545 ], [ -81.967513944008701, 28.907348555141397 ], [ -81.967534774550288, 28.907365228340133 ], [ -81.967548975386606, 28.907386066742404 ], [ -81.967568774133184, 28.907462242628174 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duncan Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969733234527652, 28.902104735469507 ], [ -81.969731649275147, 28.90197537074037 ], [ -81.969727744852293, 28.901890668369898 ], [ -81.969721882919004, 28.901785219903157 ], [ -81.96971406397931, 28.901653843437217 ], [ -81.969708207144606, 28.901531108727308 ], [ -81.969704559044231, 28.901495521238516 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duncan Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969704559044231, 28.901495521238516 ], [ -81.969699832271417, 28.901449382925705 ], [ -81.969696570504382, 28.90140762199524 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duncan Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969696596502843, 28.90131904332765 ], [ -81.969696605161474, 28.901289542669989 ], [ -81.969704408506658, 28.901155905858456 ], [ -81.969708118761886, 28.901087946451359 ], [ -81.969722873627802, 28.900994349815541 ], [ -81.969742537335833, 28.900899315118735 ], [ -81.969772028500572, 28.90078556173798 ], [ -81.969794956252784, 28.900720766509576 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duncan Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969696570504382, 28.90140762199524 ], [ -81.969696596502843, 28.90131904332765 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duncan Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969704559044231, 28.901495521238516 ], [ -81.96958908490609, 28.901496850331856 ], [ -81.969547330412524, 28.901493902061347 ], [ -81.96951393285444, 28.901483605553636 ], [ -81.969488885335025, 28.901461555790714 ], [ -81.969475532510899, 28.901435099153542 ], [ -81.969473869126546, 28.901411583063435 ], [ -81.969473876512652, 28.901386599313742 ], [ -81.969483904294435, 28.901360147099417 ], [ -81.969497270570329, 28.901341043063418 ], [ -81.969515646266743, 28.90133076013668 ], [ -81.969544041049815, 28.901323418272359 ], [ -81.969585795748742, 28.901321957009703 ], [ -81.969696596502843, 28.90131904332765 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mauldin Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955960127221971, 28.902508912384267 ], [ -81.956698089316191, 28.902503810009787 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mauldin Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954119281483813, 28.902527961344575 ], [ -81.95430289733639, 28.902528023078286 ], [ -81.955190512328997, 28.902514229336383 ], [ -81.955771090626627, 28.902510218105391 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bishopville Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958270857830598, 28.892832790458847 ], [ -81.958127033830152, 28.892772545123133 ], [ -81.957939165525971, 28.89270235602897 ], [ -81.957815157549135, 28.892654981559271 ], [ -81.957707107579736, 28.892637031491848 ], [ -81.957588093260995, 28.892631480887996 ], [ -81.957415821304309, 28.892653477652964 ], [ -81.957333744448789, 28.892669388010106 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bishopville Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957132665026151, 28.892708226605514 ], [ -81.95700079074868, 28.892729144853547 ], [ -81.956873934186589, 28.89275253417923 ], [ -81.956769002749837, 28.8927676590652 ], [ -81.956684435079481, 28.892771767946741 ], [ -81.956626994599972, 28.892763474408177 ], [ -81.956571691794778, 28.892745544071978 ], [ -81.95652471962083, 28.892724856275972 ], [ -81.956465226526092, 28.892684870525724 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bishopville Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957333744448789, 28.892669388010106 ], [ -81.957136601371843, 28.892707602568713 ], [ -81.957132665026151, 28.892708226605514 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bishopville Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957333744448789, 28.892669388010106 ], [ -81.957318103903873, 28.892566681461116 ], [ -81.957304811778428, 28.892532519769507 ], [ -81.957284861925061, 28.89250714165204 ], [ -81.957259363706655, 28.892490542947652 ], [ -81.957230535437716, 28.892483703355406 ], [ -81.957203922672591, 28.892484670259734 ], [ -81.957176197688781, 28.892487589380963 ], [ -81.95715845266848, 28.892493438742818 ], [ -81.957138487124936, 28.892506118705814 ], [ -81.957126283223445, 28.892520753721989 ], [ -81.957118512293292, 28.892541244274863 ], [ -81.957116284907997, 28.892564664561434 ], [ -81.957117380949953, 28.892596869798929 ], [ -81.957121803433964, 28.892628098908087 ], [ -81.957132665026151, 28.892708226605514 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Golden Grove Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978232705103423, 28.890935015422496 ], [ -81.978281920405777, 28.890948774478765 ], [ -81.978551634378888, 28.891024449713417 ], [ -81.978747132915331, 28.891081891582338 ], [ -81.978825574712872, 28.891116061503634 ], [ -81.978870800057791, 28.891153534869666 ], [ -81.978908038859686, 28.891214423456194 ], [ -81.978916010052018, 28.891265939739547 ], [ -81.97891597838742, 28.891425172260522 ], [ -81.978915920090998, 28.891699143066816 ], [ -81.978913210030228, 28.891945015818102 ], [ -81.97891046014314, 28.892070221255114 ], [ -81.978903789295259, 28.892106873437619 ], [ -81.978894545770245, 28.892134685379489 ], [ -81.9788812042692, 28.892157066631498 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Golden Grove Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978718073728871, 28.892253935165428 ], [ -81.978697620818551, 28.892256418647829 ], [ -81.978667185224381, 28.892256385824698 ], [ -81.978640529284021, 28.892254182664445 ], [ -81.978560173533751, 28.892229733714966 ], [ -81.978476784580465, 28.892202526800286 ], [ -81.978376391513677, 28.892169543267457 ], [ -81.978284599708815, 28.892140994056902 ], [ -81.978146218241065, 28.892092112869719 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Golden Grove Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9788812042692, 28.892157066631498 ], [ -81.978878788890569, 28.89216111938201 ], [ -81.978859603427793, 28.892182682224711 ], [ -81.978839628041626, 28.892201433372506 ], [ -81.978813801585588, 28.892219022330178 ], [ -81.978783809538001, 28.892235877954302 ], [ -81.97875465225097, 28.892246868753841 ], [ -81.978727995666219, 28.892252730368909 ], [ -81.978718073728871, 28.892253935165428 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Golden Grove Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9788812042692, 28.892157066631498 ], [ -81.978911267204396, 28.892199243077858 ], [ -81.978922092502103, 28.892217573206398 ], [ -81.978931249459336, 28.892246897597655 ], [ -81.978934577699505, 28.892271091494102 ], [ -81.978930407000632, 28.892295282404344 ], [ -81.978919575044173, 28.892314339981567 ], [ -81.978905409906872, 28.892328265651528 ], [ -81.978881249249113, 28.892342190643976 ], [ -81.978857922324892, 28.892350250813461 ], [ -81.978836264746619, 28.89235244719498 ], [ -81.978812942707336, 28.892351709931788 ], [ -81.978789618954636, 28.892344376850787 ], [ -81.978764631959734, 28.892328243369032 ], [ -81.978745477139128, 28.892305514996206 ], [ -81.978732986835979, 28.892282055013016 ], [ -81.978718073728871, 28.892253935165428 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parksville Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970779681502336, 28.883788879087472 ], [ -81.970954702245038, 28.883941205712574 ], [ -81.971317699844391, 28.884245606596263 ], [ -81.971369394955573, 28.884282316040157 ], [ -81.971441099314646, 28.88432930513429 ], [ -81.971502802997705, 28.884364548615157 ], [ -81.97154161542899, 28.884386501727398 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parksville Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970447565245024, 28.882853116297337 ], [ -81.970426647291717, 28.88306047134467 ], [ -81.970410637512316, 28.883254866810862 ], [ -81.970411842203774, 28.883326148873909 ], [ -81.970419342380495, 28.883387605362987 ], [ -81.970446165656398, 28.883455754871537 ], [ -81.970480510183222, 28.883511921666045 ], [ -81.970539391477402, 28.883576734282492 ], [ -81.970618085004077, 28.883648233659443 ], [ -81.970667007813447, 28.883690812237059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parksville Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970667007813447, 28.883690812237059 ], [ -81.970779681502336, 28.883788879087472 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parksville Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970667007813447, 28.883690812237059 ], [ -81.970707027733297, 28.883636066646233 ], [ -81.970729196868788, 28.883599233238577 ], [ -81.970750130015347, 28.883575401717572 ], [ -81.970773527015069, 28.883550487066728 ], [ -81.970803076959513, 28.883537492248653 ], [ -81.970835084010645, 28.883536415552978 ], [ -81.970858471395218, 28.8835418380561 ], [ -81.970880628542091, 28.883547260287916 ], [ -81.970899090673697, 28.88355701546655 ], [ -81.970917552003542, 28.883573269917967 ], [ -81.97093231873626, 28.883596026450356 ], [ -81.970933540327067, 28.883623114699297 ], [ -81.970933535972861, 28.883645868027372 ], [ -81.970926142688413, 28.883669700709671 ], [ -81.970912595310111, 28.883689201912734 ], [ -81.970876888409734, 28.883715195772229 ], [ -81.970779681502336, 28.883788879087472 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Westwind Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968904868748112, 28.883111552787359 ], [ -81.968978875919291, 28.883151447132938 ], [ -81.969048306459456, 28.883192040567049 ], [ -81.969121916871913, 28.883246058463207 ], [ -81.9692223612238, 28.883329925191692 ], [ -81.969410013269609, 28.883493392028743 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Westwind Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969540416960996, 28.883606988052918 ], [ -81.969603686391025, 28.883662102336103 ], [ -81.970066042850377, 28.884065801162922 ], [ -81.970296432904419, 28.884262661427222 ], [ -81.970481268144198, 28.884432620891697 ], [ -81.970909331568336, 28.884895614767508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Westwind Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969410013269609, 28.883493392028743 ], [ -81.969540416960996, 28.883606988052918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Westwind Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969410013269609, 28.883493392028743 ], [ -81.969472352728729, 28.883409623059592 ], [ -81.969492057722562, 28.883386512392512 ], [ -81.969519966090928, 28.88336773914504 ], [ -81.969547871643115, 28.883361966246984 ], [ -81.969577416657955, 28.883359085590563 ], [ -81.969602036545325, 28.88336342312309 ], [ -81.969628294203815, 28.883376430332184 ], [ -81.969643062136541, 28.883390564616157 ], [ -81.969656188721288, 28.883408219306318 ], [ -81.969664388650997, 28.883431335411984 ], [ -81.969666021759537, 28.883455893713379 ], [ -81.96965945019727, 28.883480451060411 ], [ -81.969643028513403, 28.883505005274728 ], [ -81.969611835066758, 28.883535334476409 ], [ -81.969540416960996, 28.883606988052918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridge Spring Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970321347415194, 28.885269078176666 ], [ -81.970195548929951, 28.885348117995481 ], [ -81.970037323757282, 28.88544434199153 ], [ -81.969908380382023, 28.885523782360814 ], [ -81.969869771570302, 28.885538078767386 ], [ -81.969852643067512, 28.885542131661385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridge Spring Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969640186110823, 28.885530467492348 ], [ -81.969622894428312, 28.885524611251462 ], [ -81.969558900336509, 28.885478993544378 ], [ -81.969474685486901, 28.885393175501804 ], [ -81.969347565644242, 28.885251326443377 ], [ -81.969209719470072, 28.885119283713312 ], [ -81.969023059666839, 28.884947695252698 ], [ -81.96884903205671, 28.884800110672209 ], [ -81.968646147348636, 28.884621941039594 ], [ -81.968382047928799, 28.884394066055375 ], [ -81.968227051298157, 28.884258887275532 ], [ -81.968157124508579, 28.884200550457951 ], [ -81.968128911560527, 28.884164903764631 ], [ -81.968110516002483, 28.884129259400215 ], [ -81.96809703080649, 28.88408821773389 ], [ -81.968098273307476, 28.884038536428083 ], [ -81.968104420128526, 28.88399965773516 ], [ -81.968116700153203, 28.883972661099005 ], [ -81.968134737064531, 28.883947783530424 ], [ -81.968173167155967, 28.883906795702835 ], [ -81.968292976030341, 28.883808247685522 ], [ -81.968406666410843, 28.88372267320932 ], [ -81.968520360875559, 28.883626443362449 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridge Spring Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969852643067512, 28.885542131661385 ], [ -81.969843352909237, 28.885544332088372 ], [ -81.969803727625717, 28.885549688249757 ], [ -81.969744801834622, 28.885550569143884 ], [ -81.969699085259577, 28.885546982999767 ], [ -81.969662513172366, 28.885538032926291 ], [ -81.969640186110823, 28.885530467492348 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ridge Spring Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969852643067512, 28.885542131661385 ], [ -81.969844349307351, 28.885614970744552 ], [ -81.9698351980756, 28.885636428108249 ], [ -81.969821984412008, 28.885656098000982 ], [ -81.969803693890498, 28.885668610600405 ], [ -81.969779307944123, 28.885675758546739 ], [ -81.969757972834088, 28.88567664791557 ], [ -81.969733590003685, 28.885676642412747 ], [ -81.969704128514422, 28.885672164856871 ], [ -81.969686858453969, 28.885665901691468 ], [ -81.969668572951662, 28.885654273212896 ], [ -81.969652324617385, 28.885635492653712 ], [ -81.969644202185719, 28.885616713932762 ], [ -81.969641161011296, 28.885597041279595 ], [ -81.969641167342886, 28.885572005137487 ], [ -81.969640186110823, 28.885530467492348 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yemassee Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967415974491502, 28.883437511101729 ], [ -81.967406349203017, 28.88343654059371 ], [ -81.96736054352229, 28.883416370240827 ], [ -81.967316379197626, 28.883383238715631 ], [ -81.967273854192598, 28.883337148726042 ], [ -81.967195356004524, 28.883223370119609 ], [ -81.967094969752921, 28.883058980532901 ], [ -81.967035104240367, 28.882943972050555 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yemassee Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968565430123476, 28.881808000121474 ], [ -81.96850470558789, 28.882036369185023 ], [ -81.968408585499262, 28.882350851836119 ], [ -81.968312463382333, 28.882666720337816 ], [ -81.968269923149677, 28.882790016968684 ], [ -81.96822738988044, 28.882886992555182 ], [ -81.968184863781246, 28.8829604117496 ], [ -81.968131318397681, 28.883035216953175 ], [ -81.968071476016419, 28.883107246059147 ], [ -81.967980146668808, 28.883195897035009 ], [ -81.967879375896231, 28.883272073176979 ], [ -81.967763056270954, 28.88334014735263 ], [ -81.967630609226433, 28.883407791649336 ], [ -81.967598904180576, 28.883420073335497 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yemassee Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967598904180576, 28.883420073335497 ], [ -81.967574873674423, 28.883429381982854 ], [ -81.967530693661601, 28.883439451802897 ], [ -81.967463611932004, 28.883442314788631 ], [ -81.967415974491502, 28.883437511101729 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yemassee Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967598904180576, 28.883420073335497 ], [ -81.967614427730879, 28.883485581444361 ], [ -81.967614419124203, 28.883516336378065 ], [ -81.967606765779252, 28.883543245662349 ], [ -81.9675991167679, 28.883559583586557 ], [ -81.967581640364244, 28.88357207172292 ], [ -81.967564711827237, 28.883583240825217 ], [ -81.967540957720558, 28.883590443562184 ], [ -81.96751720519552, 28.883592600627228 ], [ -81.967487719974869, 28.883594034457534 ], [ -81.967461514696211, 28.883584657704585 ], [ -81.967436951441428, 28.883566630983903 ], [ -81.967420032042753, 28.883542238576435 ], [ -81.967410213561038, 28.883513404059119 ], [ -81.967413502632667, 28.883476883315723 ], [ -81.967415974491502, 28.883437511101729 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yemassee Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967035104240367, 28.882943972050555 ], [ -81.96700687064201, 28.882888544863068 ], [ -81.966932934541418, 28.882722268623628 ], [ -81.966873166333059, 28.882567077904184 ], [ -81.966838566215245, 28.882464544465982 ], [ -81.966810268924334, 28.882349541870443 ], [ -81.966783366327277, 28.882239750402722 ], [ -81.966775978014894, 28.88219759124933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yemassee Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966750564199202, 28.882029961721365 ], [ -81.966737664542435, 28.8818984598268 ], [ -81.966732838587234, 28.881647898552398 ], [ -81.966741039343418, 28.881583100906663 ], [ -81.966750870822665, 28.881538463785077 ], [ -81.966791792785486, 28.88147511341273 ], [ -81.966834344624559, 28.881437684746476 ], [ -81.96688670883556, 28.881411777269644 ], [ -81.966958699572402, 28.881400274437365 ], [ -81.967051952449836, 28.881414698107388 ], [ -81.967158291643216, 28.881439202722646 ], [ -81.967596730377977, 28.881553070625642 ], [ -81.967871572824691, 28.881626575963171 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yemassee Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966775978014894, 28.88219759124933 ], [ -81.96675560287558, 28.882081343619401 ], [ -81.966750564199202, 28.882029961721365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yemassee Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966775978014894, 28.88219759124933 ], [ -81.966817574938176, 28.882194512066331 ], [ -81.966856384049109, 28.8821924526845 ], [ -81.966882258045842, 28.882191423233412 ], [ -81.966905780562499, 28.882186254340908 ], [ -81.966929303077137, 28.882181084541983 ], [ -81.966950475795556, 28.882169703619773 ], [ -81.966966944589856, 28.88215625075421 ], [ -81.966982240794465, 28.882132449103672 ], [ -81.966984601195378, 28.882108643365545 ], [ -81.966983431550545, 28.882085870795787 ], [ -81.966979910164312, 28.882066203368343 ], [ -81.966971683872842, 28.882047570624252 ], [ -81.966957576130369, 28.882032040347625 ], [ -81.966936410057272, 28.882022720674726 ], [ -81.96690465964673, 28.882014431522478 ], [ -81.966870554483151, 28.882015458042876 ], [ -81.966831743748656, 28.882019589112456 ], [ -81.966750564199202, 28.882029961721365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blackville Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971937491013335, 28.881183001412492 ], [ -81.97194619330898, 28.881222312902352 ], [ -81.971945608139364, 28.8812630444748 ], [ -81.971931447098626, 28.881305469531291 ], [ -81.97190689345058, 28.881352983192979 ], [ -81.971870061626376, 28.88141777605378 ], [ -81.971792724200284, 28.881537638671709 ], [ -81.971739938333783, 28.881617548001994 ], [ -81.971693288124058, 28.881689897320431 ], [ -81.971666281015658, 28.881737412221849 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blackville Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969456325094598, 28.881369072139162 ], [ -81.969458280092212, 28.881362197047196 ], [ -81.969521901234401, 28.88116552062586 ], [ -81.969573694248737, 28.881005174460743 ], [ -81.969595209180767, 28.88093343915088 ], [ -81.969612538354696, 28.880899860318333 ], [ -81.969631951217394, 28.880871398907427 ], [ -81.969661065109293, 28.880850530751989 ], [ -81.969689100419004, 28.880833457426704 ], [ -81.96972360326005, 28.880817335679669 ], [ -81.969763496088476, 28.880805958538694 ], [ -81.969822253477176, 28.880803891971496 ], [ -81.969911826267335, 28.880816870957737 ], [ -81.970095875356094, 28.88085687236449 ], [ -81.970302292419703, 28.88089484739579 ], [ -81.97054741455554, 28.880934731769301 ], [ -81.97082472126921, 28.880967192252321 ], [ -81.971093444731309, 28.880991011679122 ], [ -81.971381661531439, 28.881009218808813 ], [ -81.971619847863963, 28.88102352311131 ], [ -81.971715557787334, 28.881028943618073 ], [ -81.971780590942416, 28.881039756973742 ], [ -81.971835802326083, 28.881060288728893 ], [ -81.971862102954162, 28.881080041122321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blackville Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971862102954162, 28.881080041122321 ], [ -81.971877515372285, 28.881091618179013 ], [ -81.971903275530451, 28.881119703205577 ], [ -81.971922900895223, 28.881152108064018 ], [ -81.97193638927456, 28.881178029500386 ], [ -81.971937491013335, 28.881183001412492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blackville Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971862102954162, 28.881080041122321 ], [ -81.971901232891454, 28.881038639105071 ], [ -81.971929781224134, 28.881007498540423 ], [ -81.971950331815194, 28.880996451453726 ], [ -81.971977732894501, 28.880984400632478 ], [ -81.972006273832761, 28.88098038684365 ], [ -81.972030245227316, 28.880981397914809 ], [ -81.972059923103146, 28.88099245459237 ], [ -81.972077041501166, 28.881007528400552 ], [ -81.972093018821965, 28.881026622624592 ], [ -81.972102145924893, 28.881045715420907 ], [ -81.972107846229534, 28.881074851924105 ], [ -81.97210098839939, 28.881102984258519 ], [ -81.972082716041029, 28.881128098723494 ], [ -81.972061023056654, 28.881144169606898 ], [ -81.972030197854565, 28.881156220632484 ], [ -81.971991381937372, 28.881166259653483 ], [ -81.971937491013335, 28.881183001412492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baisley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972890605708372, 28.878692120387516 ], [ -81.973060822059892, 28.878758853770382 ], [ -81.973252580858357, 28.878826959129292 ], [ -81.973324052195991, 28.878844162227239 ], [ -81.973432043489368, 28.878869967860872 ], [ -81.973591199510423, 28.878898877495342 ], [ -81.97375836304191, 28.878924006061155 ], [ -81.973978650760969, 28.878934706114386 ], [ -81.974088556351148, 28.878935728971438 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baisley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972091003228883, 28.878293269658027 ], [ -81.972228984684165, 28.878363683281609 ], [ -81.972360564368287, 28.878429873572721 ], [ -81.972494702848039, 28.878500462079408 ], [ -81.972615754025114, 28.878560967261841 ], [ -81.972690589282266, 28.878602703166823 ], [ -81.97270096455911, 28.878607653504197 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baisley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97270096455911, 28.878607653504197 ], [ -81.972746826125359, 28.878629528319887 ], [ -81.972805831140676, 28.878655472462267 ], [ -81.972877460505117, 28.878686967388575 ], [ -81.972890605708372, 28.878692120387516 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baisley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97270096455911, 28.878607653504197 ], [ -81.972686873199152, 28.878641087233351 ], [ -81.972676301518504, 28.878665494148397 ], [ -81.972672332532468, 28.878691066378476 ], [ -81.972673648004118, 28.878709664892646 ], [ -81.972677606320559, 28.878728263945582 ], [ -81.97269080577864, 28.878749190113744 ], [ -81.972707972379922, 28.878763142295242 ], [ -81.972727776705824, 28.878777094109029 ], [ -81.972750225110531, 28.878786397798443 ], [ -81.972772674746054, 28.878791051922949 ], [ -81.972791165028866, 28.87878873134887 ], [ -81.972810973965011, 28.878785247070439 ], [ -81.972829466495682, 28.878778276027827 ], [ -81.972845317401578, 28.878766656690591 ], [ -81.972865132967115, 28.878745737226797 ], [ -81.972890605708372, 28.878692120387516 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Longbow Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975334463392343, 28.87615552048085 ], [ -81.975159631164445, 28.876090687533331 ], [ -81.975084483477218, 28.876055574019794 ], [ -81.975021608611087, 28.876016412318592 ], [ -81.974969469937108, 28.875977252594431 ], [ -81.974929605379998, 28.875928645336181 ], [ -81.974885146600897, 28.87584493584232 ], [ -81.974826899362199, 28.875692376274561 ], [ -81.97477505299814, 28.875561398247697 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Longbow Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97477505299814, 28.875561398247697 ], [ -81.97473187186938, 28.875452309882501 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Longbow Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97477505299814, 28.875561398247697 ], [ -81.974887068554395, 28.875525798203313 ], [ -81.974921529699202, 28.875527321429388 ], [ -81.974957715468179, 28.875527328198896 ], [ -81.975000795337152, 28.875518236526755 ], [ -81.975031814799181, 28.875500041070065 ], [ -81.97505250015557, 28.875472745767844 ], [ -81.975054231460092, 28.875439379853173 ], [ -81.975052513815271, 28.875412078572218 ], [ -81.975043904501362, 28.875392361662975 ], [ -81.975024953779226, 28.875372641020814 ], [ -81.975009448336209, 28.87536202073764 ], [ -81.974985327788275, 28.875351399746499 ], [ -81.974954312496536, 28.875348362215458 ], [ -81.974924157708244, 28.875347787221415 ], [ -81.974895725287908, 28.875359157221521 ], [ -81.97487159498381, 28.87538019619203 ], [ -81.974849192036814, 28.875396874655348 ], [ -81.974825062779516, 28.875413553692805 ], [ -81.97473187186938, 28.875452309882501 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bramble Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974832729535621, 28.876946526887771 ], [ -81.974794392593822, 28.87691276997149 ], [ -81.974676314413855, 28.876816897952445 ], [ -81.974578545601474, 28.87673670537928 ], [ -81.974507085431355, 28.876671029468596 ], [ -81.974449367046972, 28.876610303463728 ], [ -81.974409502805898, 28.876556295777878 ], [ -81.974371175222188, 28.876490138875159 ], [ -81.97433131777197, 28.876405081144163 ], [ -81.974293000390233, 28.876298424386039 ], [ -81.974248548368948, 28.876189065845896 ], [ -81.974208697210599, 28.876079708175151 ], [ -81.974162714487733, 28.875959548750863 ], [ -81.974093739579658, 28.875781335249535 ], [ -81.97403242909273, 28.875626074154848 ], [ -81.973991016548339, 28.875510828585828 ], [ -81.973954466352879, 28.875415436402836 ], [ -81.973916565357712, 28.875306928981448 ], [ -81.973901675263932, 28.87525923399037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Longbow Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97473187186938, 28.875452309882501 ], [ -81.974687414322119, 28.875340000041355 ], [ -81.974656760901965, 28.875253594286637 ], [ -81.974624566949373, 28.875191488136505 ], [ -81.974589300558733, 28.875150981611334 ], [ -81.974541762229805, 28.875119922557793 ], [ -81.974491152769716, 28.87510506374144 ], [ -81.974453022810664, 28.875099660708013 ], [ -81.974409691413811, 28.875098371169138 ], [ -81.974351441571628, 28.875109090210138 ], [ -81.974253411055159, 28.875140116924733 ], [ -81.974045277012053, 28.875210377850376 ], [ -81.974029234582076, 28.875215835475601 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Longbow Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974029234582076, 28.875215835475601 ], [ -81.973901675263932, 28.87525923399037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bramble Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973901675263932, 28.87525923399037 ], [ -81.973866483097851, 28.875161458161806 ], [ -81.97385158670015, 28.87513880024845 ], [ -81.97382856371334, 28.875122104964891 ], [ -81.973811297563643, 28.875102279813458 ], [ -81.973801484203548, 28.875069638009915 ], [ -81.973804203394877, 28.875035061412969 ], [ -81.973810980648992, 28.875010023847256 ], [ -81.973825886701874, 28.874994527009793 ], [ -81.973842146626453, 28.874980223278662 ], [ -81.973863820724731, 28.874971881211113 ], [ -81.97389057685487, 28.874965477373618 ], [ -81.973921052080115, 28.874967272573993 ], [ -81.97394645060119, 28.874974430968063 ], [ -81.973969475840832, 28.874986207782086 ], [ -81.97398437006926, 28.875005288955943 ], [ -81.973996557093386, 28.875027945427007 ], [ -81.974000616147592, 28.875045830749716 ], [ -81.973999252349444, 28.875083983437865 ], [ -81.973995180667018, 28.875116175893233 ], [ -81.974029234582076, 28.875215835475601 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Monroe Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970179087372983, 28.87485880797129 ], [ -81.970157976728828, 28.874693521331682 ], [ -81.970155372275357, 28.874553845244598 ], [ -81.970152848193962, 28.874430507162295 ], [ -81.970173971802069, 28.874255877543817 ], [ -81.97019781476466, 28.874113880290263 ], [ -81.970301063474679, 28.87375773282686 ], [ -81.970364606651415, 28.87351098880039 ], [ -81.970446703797606, 28.873124574189987 ], [ -81.970474930423919, 28.872971976675746 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Monroe Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970500398278602, 28.872834295412275 ], [ -81.970534113360856, 28.872652026863456 ], [ -81.970584436341952, 28.872395968022577 ], [ -81.970584455260379, 28.87233311452335 ], [ -81.970576534619312, 28.872281899888893 ], [ -81.970563331217988, 28.87221438670241 ], [ -81.970544829690709, 28.872170151760571 ], [ -81.970417954723146, 28.871925693630455 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Monroe Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970474930423919, 28.872971976675746 ], [ -81.970500398278602, 28.872834295412275 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Monroe Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970474930423919, 28.872971976675746 ], [ -81.970400227042319, 28.872955785530312 ], [ -81.970376044361657, 28.872958067527371 ], [ -81.970348884253426, 28.872962252720271 ], [ -81.970316433708476, 28.872969696756087 ], [ -81.970283983919202, 28.872970932039983 ], [ -81.970260000853955, 28.872963474606056 ], [ -81.970237431447742, 28.872952292776411 ], [ -81.970213453352414, 28.872931175376024 ], [ -81.970202173179132, 28.872906337892779 ], [ -81.970199358919118, 28.872882742053896 ], [ -81.970202188218195, 28.872854180293043 ], [ -81.970213128951755, 28.872833225842797 ], [ -81.970224773249953, 28.872814601293225 ], [ -81.970245941921249, 28.872798772385114 ], [ -81.970271337849326, 28.872790862116457 ], [ -81.970296733594481, 28.872787141234102 ], [ -81.970336235221282, 28.872792117153868 ], [ -81.97037150276725, 28.872805786714853 ], [ -81.970385609014144, 28.87281324014366 ], [ -81.970409590318312, 28.872823178887224 ], [ -81.970500398278602, 28.872834295412275 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dunbar Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97335653855805, 28.87086434540662 ], [ -81.972813133575727, 28.870501903011515 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dunbar Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97265856625198, 28.870396338219486 ], [ -81.972480137375157, 28.870272577924307 ], [ -81.972407154956684, 28.870213049724079 ], [ -81.972362189917291, 28.87016077726739 ], [ -81.972338812194877, 28.870114845222965 ], [ -81.972317235786903, 28.87006416111614 ], [ -81.972302860897457, 28.869992890645491 ], [ -81.972281314543139, 28.869826596254651 ], [ -81.972254752706831, 28.869629451076506 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dunbar Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972813133575727, 28.870501903011515 ], [ -81.972751326435869, 28.870460678676444 ], [ -81.97265856625198, 28.870396338219486 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dunbar Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972813133575727, 28.870501903011515 ], [ -81.972874247481968, 28.870419576637833 ], [ -81.972898952927011, 28.870387612138384 ], [ -81.972913486931333, 28.870358202705962 ], [ -81.972917854611026, 28.870327513557204 ], [ -81.97291350272198, 28.8703019368998 ], [ -81.972901886869266, 28.870281474831856 ], [ -81.972887361218014, 28.870267404991019 ], [ -81.972868479711423, 28.870254615537281 ], [ -81.972845238603853, 28.870245658180881 ], [ -81.97281473148287, 28.870241815405116 ], [ -81.972784224391148, 28.870245645807074 ], [ -81.972755164046234, 28.870259705905191 ], [ -81.972733367364356, 28.870281440659301 ], [ -81.97265856625198, 28.870396338219486 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alcove Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977692180096113, 28.868867451187899 ], [ -81.977695449001033, 28.868867452634795 ], [ -81.977829985100456, 28.868865105531803 ], [ -81.978021117550668, 28.86885836616306 ], [ -81.978169571256487, 28.868853972777092 ], [ -81.978228889893259, 28.868860477215811 ], [ -81.978285552526799, 28.868877114062698 ], [ -81.978335129260401, 28.868902060853941 ], [ -81.978373193958049, 28.868935059725796 ], [ -81.978401517044048, 28.86898026788446 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alcove Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976671138082466, 28.869064834679683 ], [ -81.976730679675597, 28.869032869218056 ], [ -81.976850764686219, 28.868976045830713 ], [ -81.977009300398407, 28.86892418168479 ], [ -81.977116155738315, 28.86889970786936 ], [ -81.977252819295003, 28.868881588543648 ], [ -81.977434446289379, 28.868870962171723 ], [ -81.977516590600715, 28.868869227326549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alcove Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977516590600715, 28.868869227326549 ], [ -81.977601271936521, 28.868867436010646 ], [ -81.977692180096113, 28.868867451187899 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alcove Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977516590600715, 28.868869227326549 ], [ -81.9775182335284, 28.86894070174586 ], [ -81.977513842711389, 28.86896643289105 ], [ -81.977506529634269, 28.868996022695843 ], [ -81.977507982005505, 28.869029474928169 ], [ -81.977522591564679, 28.869060354196407 ], [ -81.977543049751191, 28.869083517044931 ], [ -81.977564971363904, 28.869098959127225 ], [ -81.977595663762244, 28.869107971056803 ], [ -81.977627817807942, 28.869107976433362 ], [ -81.977654129111045, 28.869102833187618 ], [ -81.977676054834447, 28.86908997180652 ], [ -81.977696523009712, 28.86907196344168 ], [ -81.977709682691909, 28.86904366038241 ], [ -81.977714073832203, 28.86901149671176 ], [ -81.977705313571079, 28.868974184114084 ], [ -81.97769216607152, 28.868936870784712 ], [ -81.977692180096113, 28.868867451187899 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Darlington Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98751613799169, 28.882201508901627 ], [ -81.98760353661828, 28.882105957931831 ], [ -81.987841331546463, 28.88185020085918 ], [ -81.988096225868546, 28.881572451287777 ], [ -81.988338225297696, 28.881355892381197 ], [ -81.988623384978183, 28.881127649220705 ], [ -81.98881641376498, 28.880957789275492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Darlington Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98881641376498, 28.880957789275492 ], [ -81.98883081169609, 28.880945121269015 ], [ -81.988925930656379, 28.880831339066461 ], [ -81.988955250774609, 28.880792444184518 ], [ -81.988973398788644, 28.88075124208618 ], [ -81.988980927442171, 28.88071562976608 ], [ -81.988981998224133, 28.880682831188899 ], [ -81.988973750984059, 28.880633392493252 ], [ -81.98895622878949, 28.8805955097062 ], [ -81.98893576646924, 28.880566513441291 ], [ -81.988804895599628, 28.880405388390205 ], [ -81.988605176798401, 28.880172426887349 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Darlington Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98881641376498, 28.880957789275492 ], [ -81.988862391055619, 28.881002058250704 ], [ -81.989125194831502, 28.881191687880047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Georgetown Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986563518976141, 28.88168815820428 ], [ -81.98663598595121, 28.881602907924563 ], [ -81.986783061890577, 28.881466100300273 ], [ -81.986977400766079, 28.881333077786802 ], [ -81.987180538376421, 28.881223364092769 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Georgetown Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987353623117997, 28.881133484339603 ], [ -81.987532273444785, 28.881041950965447 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Georgetown Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987180538376421, 28.881223364092769 ], [ -81.987223685904624, 28.881200059083437 ], [ -81.987353623117997, 28.881133484339603 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Georgetown Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987180538376421, 28.881223364092769 ], [ -81.987229482209599, 28.881306366106724 ], [ -81.987246109433713, 28.881331979531307 ], [ -81.987269665436003, 28.881352716676499 ], [ -81.987302921733573, 28.881364918970185 ], [ -81.987332024206978, 28.881367359761892 ], [ -81.987354196776081, 28.881367361870243 ], [ -81.987377756297462, 28.881360045538347 ], [ -81.987401316724174, 28.881345411536579 ], [ -81.987420720347728, 28.881328338216672 ], [ -81.987431809801151, 28.881302725629116 ], [ -81.987431812974137, 28.881277111994137 ], [ -81.987423501535048, 28.881246618828914 ], [ -81.987399948974783, 28.881206366731558 ], [ -81.987353623117997, 28.881133484339603 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9855076451028, 28.880621089448969 ], [ -81.985522045396706, 28.880630354042523 ], [ -81.985577288614891, 28.880689750428481 ], [ -81.985690075236235, 28.880819342124067 ], [ -81.985774398242242, 28.880918980590071 ], [ -81.985844967411083, 28.8809982480828 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985844967411083, 28.8809982480828 ], [ -81.985633782928915, 28.881146611696284 ], [ -81.985543157361107, 28.881211231055705 ], [ -81.985422062252397, 28.881290975013755 ], [ -81.985257998379268, 28.881393747170407 ], [ -81.985119713019969, 28.881484832687924 ], [ -81.984929669530359, 28.881621633647267 ], [ -81.984691967952415, 28.881785245275797 ], [ -81.984523406217548, 28.881914486832642 ], [ -81.984385118636652, 28.882024823995135 ], [ -81.984268514071005, 28.882104564724731 ], [ -81.984208123333417, 28.882144973478113 ], [ -81.984158836773148, 28.882156213921345 ], [ -81.984105899487446, 28.882161027720727 ], [ -81.984052962426432, 28.882157806504836 ], [ -81.98400733156484, 28.882136916374431 ], [ -81.983970825383295, 28.882112812424715 ], [ -81.983909951588004, 28.882062582999477 ], [ -81.983827936286275, 28.881994159686162 ], [ -81.983758811582049, 28.881933304591787 ], [ -81.983726256400629, 28.881891071111994 ], [ -81.983706876939053, 28.881842196489412 ], [ -81.983698291748766, 28.88179269066913 ], [ -81.98370802631031, 28.881738441881648 ], [ -81.983745766052579, 28.881682344081362 ], [ -81.983797724148346, 28.881625283436495 ], [ -81.983914331350334, 28.88153419666687 ], [ -81.984052616572683, 28.881431423070673 ], [ -81.984195201068701, 28.881328995421672 ], [ -81.984350675609491, 28.881214878913223 ], [ -81.984536419980458, 28.881081859809807 ], [ -81.984704980599176, 28.880971525950351 ], [ -81.984895217330063, 28.880846068149946 ], [ -81.985102445999985, 28.880705486694989 ], [ -81.98526277470846, 28.880599526472114 ], [ -81.985300952261099, 28.880584129298761 ], [ -81.985320048651573, 28.880580477983038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985320048651573, 28.880580477983038 ], [ -81.985337538553409, 28.880577133270524 ], [ -81.985392331421934, 28.880580480507771 ], [ -81.985442518379315, 28.880589745416632 ], [ -81.985480692737013, 28.880603750594425 ], [ -81.9855076451028, 28.880621089448969 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenville Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985320048651573, 28.880580477983038 ], [ -81.985447304748902, 28.880490344776511 ], [ -81.985475939923205, 28.880467949161783 ], [ -81.985488666727235, 28.880451149690064 ], [ -81.985501396145992, 28.880423151750993 ], [ -81.985518897124436, 28.880399353641096 ], [ -81.985549122725573, 28.880381156593074 ], [ -81.985593659746442, 28.880376961198809 ], [ -81.985627062673913, 28.880385365233195 ], [ -81.985649330020024, 28.880395167530935 ], [ -81.985668414890483, 28.880414769381655 ], [ -81.985681136580297, 28.88044137150516 ], [ -81.985687495242686, 28.880466572572075 ], [ -81.985684310639144, 28.880498770866001 ], [ -81.985668399327167, 28.880525369912409 ], [ -81.985638174138302, 28.880547765396532 ], [ -81.985599997079973, 28.880567361977594 ], [ -81.9855076451028, 28.880621089448969 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trellis Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98272987610946, 28.882922623853499 ], [ -81.982852268422562, 28.882913299002681 ], [ -81.982999132926565, 28.88292363108696 ], [ -81.983144039472663, 28.882958027141022 ], [ -81.983261408199951, 28.882999639804609 ], [ -81.983341669389048, 28.88303918417725 ], [ -81.983437746667178, 28.883108295270588 ], [ -81.983615836900327, 28.883253048185686 ], [ -81.983764368240557, 28.883377371875593 ], [ -81.983920612976391, 28.88349874309727 ], [ -81.984122818252331, 28.883637199273249 ], [ -81.984193664141188, 28.883687652641285 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trellis Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982155417373122, 28.883260418678166 ], [ -81.982170579124258, 28.883218598134921 ], [ -81.982196277016584, 28.883181478179658 ], [ -81.982224045934274, 28.883143511233982 ], [ -81.982277590882035, 28.883108147234939 ], [ -81.982477402594469, 28.882994383474795 ], [ -81.98258326157395, 28.882955672352672 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trellis Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98258326157395, 28.882955672352672 ], [ -81.982599741622181, 28.882949363805277 ], [ -81.982717120480146, 28.882923594884137 ], [ -81.98272987610946, 28.882922623853499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trellis Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98258326157395, 28.882955672352672 ], [ -81.98256297245176, 28.882850447832908 ], [ -81.982554190019798, 28.882830060089017 ], [ -81.98254025854574, 28.882812756639815 ], [ -81.982530320235824, 28.882795257912107 ], [ -81.982524646601121, 28.882766511652822 ], [ -81.982523231831706, 28.882736516263154 ], [ -81.982531756086075, 28.882707771861064 ], [ -81.982547380559865, 28.882686527413135 ], [ -81.982567264020318, 28.88267528192096 ], [ -81.982594244027325, 28.882669037002881 ], [ -81.982622910786972, 28.882666969954268 ], [ -81.982654859929724, 28.882672598152144 ], [ -81.982679441876797, 28.882685294918456 ], [ -81.982700738091651, 28.882704043892357 ], [ -81.982713515147864, 28.882727791412261 ], [ -81.982719190882733, 28.882756537664051 ], [ -81.982720605075087, 28.882790283918332 ], [ -81.982717757329709, 28.882825277503724 ], [ -81.98272987610946, 28.882922623853499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eldridge Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004734309918589, 28.88573355752354 ], [ -82.004744935997238, 28.885750701819724 ], [ -82.004756886544186, 28.885789619499047 ], [ -82.004764060893407, 28.885860091690716 ], [ -82.00476884777747, 28.886010506013555 ], [ -82.004766461368007, 28.886091497520784 ], [ -82.004761682336323, 28.886129365432797 ], [ -82.00474853713213, 28.886158816937908 ], [ -82.004730612417362, 28.886190371850862 ], [ -82.004700734481716, 28.886218772679602 ], [ -82.004668466690404, 28.886246121490572 ], [ -82.004626636320694, 28.886266107802857 ], [ -82.004446764735562, 28.886315138645301 ], [ -82.003190128668933, 28.886657625027901 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eldridge Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003190128668933, 28.886657625027901 ], [ -82.003135332383877, 28.886504138365176 ], [ -82.003055143897342, 28.886245386102619 ], [ -82.003043080831219, 28.886193568079641 ], [ -82.003045469296367, 28.886140975621881 ], [ -82.003057419168016, 28.886095746669284 ], [ -82.003071760168893, 28.886063139057626 ], [ -82.003095662404462, 28.886031583352096 ], [ -82.003125539779731, 28.886006339126535 ], [ -82.003156611606329, 28.885984250218296 ], [ -82.003210394198305, 28.885965315312827 ], [ -82.003509174357319, 28.885896940095403 ], [ -82.003860540053395, 28.885808576093524 ], [ -82.004385196666675, 28.885662358128322 ], [ -82.004454513873327, 28.88564026784724 ], [ -82.004504709105859, 28.885628694400637 ], [ -82.004541757312651, 28.885626590967178 ], [ -82.004579256930484, 28.885632414224485 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eldridge Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004579256930484, 28.885632414224485 ], [ -82.004582392065629, 28.88563290137493 ], [ -82.004618246530114, 28.885646574688302 ], [ -82.004663663511934, 28.885667608677121 ], [ -82.004694736683817, 28.885688644889282 ], [ -82.004723421370116, 28.885715991859904 ], [ -82.004734309918589, 28.88573355752354 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eldridge Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004579256930484, 28.885632414224485 ], [ -82.004586233820689, 28.885613893389348 ], [ -82.004602291079607, 28.885595905545909 ], [ -82.004613969785879, 28.885581771557799 ], [ -82.004628566464561, 28.885572777890758 ], [ -82.004656303347105, 28.885563783829518 ], [ -82.00468842134552, 28.885563781962215 ], [ -82.004713240010801, 28.885568919815459 ], [ -82.004732216125959, 28.885577914276862 ], [ -82.004749735677805, 28.885593331358624 ], [ -82.004764334604801, 28.885613888034278 ], [ -82.004771634959013, 28.885633160056553 ], [ -82.004774555961404, 28.885661427251851 ], [ -82.004768718472093, 28.885688407133181 ], [ -82.004734309918589, 28.88573355752354 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triggerfish Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008900582519104, 28.88877553061258 ], [ -82.00903247409272, 28.888757120923945 ], [ -82.009246456213361, 28.888750828281651 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triggerfish Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008699607575394, 28.888806644213155 ], [ -82.00872448266712, 28.888800111867777 ], [ -82.008900582519104, 28.88877553061258 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triggerfish Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00855203833315, 28.888845386037424 ], [ -82.008699607575394, 28.888806644213155 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triggerfish Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008406559176677, 28.888893746102561 ], [ -82.008510392534021, 28.888856319853936 ], [ -82.00855203833315, 28.888845386037424 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triggerfish Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008016937000662, 28.889067805585828 ], [ -82.008336577549471, 28.888918970331051 ], [ -82.008406559176677, 28.888893746102561 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triggerfish Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00976451929958, 28.88877387856607 ], [ -82.009772415738453, 28.888773600121247 ], [ -82.009900118886435, 28.888753757917296 ], [ -82.009990260390538, 28.888727307054516 ], [ -82.010129601501532, 28.888668479027725 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triggerfish Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009246456213361, 28.888750828281651 ], [ -82.009370517091511, 28.88874718220432 ], [ -82.009626871316158, 28.888771927140695 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triggerfish Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009626871316158, 28.888771927140695 ], [ -82.009678514549023, 28.888776911595009 ], [ -82.00976451929958, 28.88877387856607 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triggerfish Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009626871316158, 28.888771927140695 ], [ -82.009627745219731, 28.888834445678722 ], [ -82.009625828937203, 28.888868257712947 ], [ -82.009618145009156, 28.88888347281717 ], [ -82.009608544325729, 28.888915593550585 ], [ -82.009604706137864, 28.888954476641004 ], [ -82.009614311742823, 28.888978142439004 ], [ -82.009635444544671, 28.88900518928736 ], [ -82.009660416749796, 28.88901871129303 ], [ -82.009691150421489, 28.889027162879891 ], [ -82.009716123333789, 28.889025470284782 ], [ -82.009744934482725, 28.889020398309871 ], [ -82.009771827651704, 28.889006870099184 ], [ -82.009789113456449, 28.888984892493585 ], [ -82.0098025568807, 28.888954462396878 ], [ -82.009802554143917, 28.888924032313696 ], [ -82.009789104347135, 28.888883461288952 ], [ -82.009779497534268, 28.88885810368981 ], [ -82.00976451929958, 28.88877387856607 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allure Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011330922762667, 28.885872433389196 ], [ -82.011632091429703, 28.885891817613711 ], [ -82.011646622972179, 28.885892478714624 ], [ -82.011707073855959, 28.885890615918669 ], [ -82.011766641220149, 28.885881367836202 ], [ -82.011824167598348, 28.885864911415542 ], [ -82.011878530399684, 28.885841571581395 ], [ -82.011928673689027, 28.885811796869572 ], [ -82.011934803965232, 28.885806938367352 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allure Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012082156306548, 28.885638278667702 ], [ -82.012476335235888, 28.885089158379007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allure Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011934803965232, 28.885806938367352 ], [ -82.011973619466417, 28.885776172058115 ], [ -82.012012496370559, 28.885735388388216 ], [ -82.012042772525405, 28.885693142806279 ], [ -82.012082156306548, 28.885638278667702 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allure Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011934803965232, 28.885806938367352 ], [ -82.011862501940911, 28.885709062818851 ], [ -82.011843580852187, 28.885684090511919 ], [ -82.011834119755108, 28.885652456630485 ], [ -82.011834117321072, 28.885620823766327 ], [ -82.011841680032873, 28.885599178743323 ], [ -82.011854920393873, 28.885577532344477 ], [ -82.011871944530711, 28.885562547315967 ], [ -82.011892751030487, 28.885550682125569 ], [ -82.011925384020458, 28.885544438177504 ], [ -82.011949504709833, 28.885548181603497 ], [ -82.011975989332285, 28.885559209101146 ], [ -82.012006259870148, 28.885577519646652 ], [ -82.012082156306548, 28.885638278667702 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allure Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012858129002822, 28.884552016070618 ], [ -82.012967631341567, 28.884406769909877 ], [ -82.012972564977062, 28.88440112015121 ], [ -82.013021546399784, 28.884351610006377 ], [ -82.013076421263392, 28.884307140455029 ], [ -82.013136520176033, 28.884268254737471 ], [ -82.013201114279227, 28.884235423915964 ], [ -82.013269419348021, 28.884209045972469 ], [ -82.013340608092932, 28.884189443100894 ], [ -82.013378301856818, 28.88418203796396 ], [ -82.013416268714181, 28.884169568174759 ], [ -82.013462322975855, 28.88416198536963 ], [ -82.013495220622772, 28.884161185500471 ], [ -82.013511274960251, 28.884158431948283 ], [ -82.013552243900676, 28.88415659996317 ], [ -82.013578098830706, 28.884159223176969 ], [ -82.014033199438131, 28.884155922267254 ], [ -82.014064742615147, 28.884153820373403 ], [ -82.014108173105782, 28.88414454218557 ], [ -82.014148823334381, 28.884128198343248 ], [ -82.014185224256337, 28.884105379101573 ], [ -82.014216062692284, 28.884076908397212 ], [ -82.014240218232288, 28.884043816774927 ], [ -82.014256823717176, 28.884007298972538 ], [ -82.01426527650986, 28.883968675120197 ], [ -82.014266272084697, 28.883953999994823 ], [ -82.014262544773558, 28.8837553587882 ], [ -82.014258314775475, 28.883708750852712 ], [ -82.014245553444354, 28.883657147737864 ], [ -82.014224577496606, 28.883607667662655 ], [ -82.014218123332981, 28.883595797640147 ], [ -82.014199743600216, 28.883580348487936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allure Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014054469287075, 28.883519683288785 ], [ -82.014012588547089, 28.883516461728199 ], [ -82.013985015007151, 28.883517665426687 ], [ -82.013570618520419, 28.883520961363807 ], [ -82.013477011358432, 28.883516739431009 ], [ -82.013462146920574, 28.883515877345197 ], [ -82.013379649221619, 28.883506786371676 ], [ -82.013298591052205, 28.883490511090521 ], [ -82.013219777227377, 28.883467212940989 ], [ -82.013178045728296, 28.883451637701885 ], [ -82.013079991650997, 28.883407684880247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allure Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014199743600216, 28.883580348487936 ], [ -82.014192140917785, 28.883573960059131 ], [ -82.014152254428026, 28.883549384482826 ], [ -82.014108125514767, 28.883531278818126 ], [ -82.014061092125786, 28.883520191526657 ], [ -82.014054469287075, 28.883519683288785 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allure Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014199743600216, 28.883580348487936 ], [ -82.014243031408455, 28.883525136827281 ], [ -82.014265180570831, 28.883492559712373 ], [ -82.014277278978341, 28.883462122968002 ], [ -82.014279004848987, 28.883434731637518 ], [ -82.014265167842439, 28.883404298420825 ], [ -82.014247876320368, 28.883384516314486 ], [ -82.014221937281647, 28.883364735980681 ], [ -82.014192541874877, 28.883357128934605 ], [ -82.014161421245518, 28.883358655147617 ], [ -82.014125113299883, 28.883369312258402 ], [ -82.014102638082605, 28.883386051291467 ], [ -82.014083623462284, 28.883414967431541 ], [ -82.014069795666373, 28.883454535618899 ], [ -82.014054469287075, 28.883519683288785 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fringe Tree Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007162660121693, 28.885207698905532 ], [ -82.007181426200049, 28.885216490917063 ], [ -82.007256987240922, 28.885243532789598 ], [ -82.007335308759465, 28.885263592477035 ], [ -82.007415557228313, 28.885276459780496 ], [ -82.007452596398707, 28.885279901991687 ], [ -82.007872141640306, 28.885335903045991 ], [ -82.008238188135508, 28.885386773538425 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fringe Tree Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00726345250726, 28.884310403387243 ], [ -82.007061936517701, 28.884459947917176 ], [ -82.006923061814547, 28.88455417546658 ], [ -82.006833372411776, 28.884617840579544 ], [ -82.006833143804016, 28.884618060751539 ], [ -82.006805079720593, 28.884650771358217 ], [ -82.00678432252289, 28.884687465284451 ], [ -82.006771578508889, 28.884726891912074 ], [ -82.006767285369079, 28.884767705892411 ], [ -82.006771584507632, 28.884808520383064 ], [ -82.006784332320208, 28.884847943139214 ], [ -82.006805094044594, 28.884884634261311 ], [ -82.006821815487456, 28.884905596653876 ], [ -82.006824989828587, 28.884910304714786 ], [ -82.006876396081893, 28.884978835713749 ], [ -82.006934572631565, 28.885043034428204 ], [ -82.006999056054255, 28.88510238565754 ], [ -82.007011069052908, 28.885111622846665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fringe Tree Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007011069052908, 28.885111622846665 ], [ -82.007069321412089, 28.885156409393762 ], [ -82.007105383806064, 28.885180604670591 ], [ -82.007109424309377, 28.885182753757242 ], [ -82.007162660121693, 28.885207698905532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fringe Tree Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007011069052908, 28.885111622846665 ], [ -82.006969117665577, 28.885181856330508 ], [ -82.006946185540244, 28.885212133216442 ], [ -82.006916882443292, 28.885237925960023 ], [ -82.00690159407776, 28.885264838702877 ], [ -82.006899048023641, 28.885290629291063 ], [ -82.00690287360716, 28.885315298022231 ], [ -82.00691561534596, 28.885337724119225 ], [ -82.006933453223922, 28.885356787100676 ], [ -82.006965307498007, 28.885370241620191 ], [ -82.00699843262268, 28.885376968515853 ], [ -82.007037930874148, 28.885373603765924 ], [ -82.007068508011216, 28.885359023830045 ], [ -82.00709653573756, 28.885333231115233 ], [ -82.00712328898021, 28.88528949800526 ], [ -82.007162660121693, 28.885207698905532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edenville Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00473007397315, 28.872935183964472 ], [ -82.004717432164071, 28.872926467200351 ], [ -82.004669298213202, 28.872884102826248 ], [ -82.004627318761621, 28.872836940709632 ], [ -82.004625978887233, 28.872834989068426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Edenville Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00473007397315, 28.872935183964472 ], [ -82.00468227088227, 28.873012304311381 ], [ -82.004656612913777, 28.873040784456123 ], [ -82.004635415745099, 28.873059442899404 ], [ -82.004605293700635, 28.87306828184164 ], [ -82.004581864101198, 28.873067299919729 ], [ -82.004551742529614, 28.87306239226875 ], [ -82.004530544174997, 28.873051589610974 ], [ -82.0045126926031, 28.873036860032702 ], [ -82.004501534938953, 28.873023112868452 ], [ -82.004488146174566, 28.872996598183878 ], [ -82.00448368302149, 28.872973030164804 ], [ -82.00448702906985, 28.872950442726371 ], [ -82.004500416096462, 28.872932766234822 ], [ -82.004513803427358, 28.872922945189131 ], [ -82.004537231347513, 28.872908214423884 ], [ -82.004564007096889, 28.872890537539071 ], [ -82.004587434806155, 28.872870895531463 ], [ -82.004625978887233, 28.872834989068426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hopespring Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006981349625292, 28.873860567120143 ], [ -82.006873685441334, 28.873748762414778 ], [ -82.006832060731497, 28.873690988996287 ], [ -82.006787308244398, 28.873595651948644 ], [ -82.006773112510302, 28.873542641415931 ], [ -82.00676472297593, 28.873473217733913 ], [ -82.00676421729591, 28.873299654438146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hopespring Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00676421729591, 28.873299654438146 ], [ -82.006763985895418, 28.8732198502938 ], [ -82.006763965094848, 28.873147527130051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hopespring Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00676421729591, 28.873299654438146 ], [ -82.006622733649323, 28.873303196907269 ], [ -82.006566831976002, 28.873302029086894 ], [ -82.006533556921767, 28.873294999801882 ], [ -82.006514922234146, 28.873286800488028 ], [ -82.006494956632849, 28.873272742578411 ], [ -82.006478983174588, 28.873248139282481 ], [ -82.006470996383158, 28.873225881626585 ], [ -82.00647365706142, 28.873200107237121 ], [ -82.006486965542152, 28.873176675666674 ], [ -82.006501604932282, 28.873159101785735 ], [ -82.006522900192238, 28.87314035642445 ], [ -82.006550849818495, 28.873129810894937 ], [ -82.00658456800646, 28.873125317751771 ], [ -82.006636032904225, 28.873125314573297 ], [ -82.006691047056876, 28.873131560564168 ], [ -82.006763965094848, 28.873147527130051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013360552274506, 28.877347377277086 ], [ -82.013315949651656, 28.877239767531286 ], [ -82.013303056449175, 28.877180991889244 ], [ -82.01324878130194, 28.87675205252069 ], [ -82.013239748252303, 28.876680161546613 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013218468354566, 28.87651081136006 ], [ -82.013216009750266, 28.876491247875595 ], [ -82.013183243502127, 28.876238947409178 ], [ -82.013142188753832, 28.876057965655935 ], [ -82.013068647091217, 28.875860762588346 ], [ -82.012992959054202, 28.875714228451013 ], [ -82.012913243365375, 28.875591969270733 ], [ -82.012808981508542, 28.875461885688747 ], [ -82.012730440296593, 28.875394441150476 ], [ -82.012677181530805, 28.875361023738026 ], [ -82.012594909089117, 28.875320240679581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013239748252303, 28.876680161546613 ], [ -82.013218468354566, 28.87651081136006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013239748252303, 28.876680161546613 ], [ -82.013337544153018, 28.876676389770925 ], [ -82.013409615398047, 28.876672290120993 ], [ -82.013428212681887, 28.876667301334567 ], [ -82.013445648077294, 28.876658987672883 ], [ -82.013466570257691, 28.876645045116906 ], [ -82.013482260061167, 28.876622020483669 ], [ -82.01348865086419, 28.876598616865991 ], [ -82.013489230688663, 28.876579047683428 ], [ -82.013485159408262, 28.876558713791908 ], [ -82.013476147105976, 28.876539147327545 ], [ -82.013462195978164, 28.876521497821948 ], [ -82.013438655164251, 28.876506922466525 ], [ -82.013402618792824, 28.876498355817791 ], [ -82.013371233724641, 28.876500406108832 ], [ -82.013318924244729, 28.876506548497506 ], [ -82.013218468354566, 28.87651081136006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dutchess Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993692284575786, 28.877093225659209 ], [ -81.993337724053134, 28.876765802419843 ], [ -81.993301476506019, 28.876733187769535 ], [ -81.99327665753755, 28.876695122885412 ], [ -81.993264067849509, 28.876665448228675 ], [ -81.993259794906265, 28.876638164195089 ], [ -81.993260867199098, 28.876593005827431 ], [ -81.993263726146012, 28.876580119293024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dutchess Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993310335451994, 28.876479661140554 ], [ -81.993338905350512, 28.876441540318215 ], [ -81.993742604103829, 28.875954202301195 ], [ -81.994169944062492, 28.875526635307963 ], [ -81.994227525018829, 28.875476706243333 ], [ -81.994264038989712, 28.875456193097282 ], [ -81.994318423440873, 28.875443204113903 ], [ -81.994375136362819, 28.875440469875233 ], [ -81.994431850669201, 28.875449362681497 ], [ -81.994479240020041, 28.875466458804887 ], [ -81.994515753451438, 28.875491078756507 ], [ -81.994741185781947, 28.875700861576213 ], [ -81.995240444245383, 28.876183893979693 ], [ -81.995708219785442, 28.876702555381002 ], [ -81.995948311216452, 28.876989469932983 ], [ -81.995967962803817, 28.87702007573343 ], [ -81.995978089678616, 28.877054927470002 ], [ -81.995978542082455, 28.877095921779318 ], [ -81.995974005525525, 28.877127856819737 ], [ -81.995955594850173, 28.877181619019954 ], [ -81.995931669979328, 28.877210355693862 ], [ -81.995897117402279, 28.877241004908459 ], [ -81.994889504493912, 28.87790610220156 ], [ -81.994781546146427, 28.877969444957682 ], [ -81.994708483020801, 28.877987748830151 ], [ -81.994655381580628, 28.877986135161358 ], [ -81.994600449010164, 28.877970016890504 ], [ -81.994556504991223, 28.877953898152043 ], [ -81.994510729204691, 28.877916827868425 ], [ -81.994181153328967, 28.877570304389675 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dutchess Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993263726146012, 28.876580119293024 ], [ -81.993269421478843, 28.876554434648416 ], [ -81.993283318545522, 28.876518683435741 ], [ -81.993305768080106, 28.876485755960228 ], [ -81.993310335451994, 28.876479661140554 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dutchess Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993263726146012, 28.876580119293024 ], [ -81.993228802998189, 28.876564780168867 ], [ -81.993204219892178, 28.876556312601025 ], [ -81.993178566293153, 28.87655160667137 ], [ -81.993155052845893, 28.876551605451933 ], [ -81.993134742935396, 28.876551604395335 ], [ -81.993109090234711, 28.876548780654957 ], [ -81.993083437798418, 28.876542193407037 ], [ -81.993065267039498, 28.87653184304542 ], [ -81.993048164801479, 28.876516789036057 ], [ -81.993037479261929, 28.876496091462936 ], [ -81.993033205094747, 28.876472570021864 ], [ -81.993033208039563, 28.876445288913164 ], [ -81.993044966023461, 28.876419885213853 ], [ -81.99306741591198, 28.876397308086911 ], [ -81.993091998495473, 28.876383196467859 ], [ -81.993121928455835, 28.876379436335188 ], [ -81.993150787787528, 28.876381319138595 ], [ -81.993187128831934, 28.876393551729951 ], [ -81.993225607275178, 28.876420836627858 ], [ -81.993310335451994, 28.876479661140554 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ainsworth Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960587418126153, 28.869415233030452 ], [ -81.960553439982078, 28.869424422935371 ], [ -81.960478684097978, 28.869430250585918 ], [ -81.960043443982244, 28.869456442873407 ], [ -81.959031759766418, 28.869519014154669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ainsworth Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959031759766418, 28.869519014154669 ], [ -81.958832416717399, 28.869521877565081 ], [ -81.958471316309456, 28.869520568141688 ], [ -81.95829917558828, 28.869520252237429 ], [ -81.958246020981974, 28.869509999999188 ], [ -81.958177925127046, 28.869479270736225 ], [ -81.958131430782942, 28.869432464623134 ], [ -81.958106532473479, 28.869385664328796 ], [ -81.958096580130629, 28.869347643589769 ], [ -81.95809336893744, 28.869072741535934 ], [ -81.95810668184393, 28.869015717429541 ], [ -81.958131617829224, 28.868968932670665 ], [ -81.958163192749709, 28.868938235331413 ], [ -81.95820971692558, 28.86891046700077 ], [ -81.958256236958292, 28.868892935280908 ], [ -81.958365735518171, 28.868882826477584 ], [ -81.958741304380311, 28.868884311162187 ], [ -81.959138326878346, 28.868880046440268 ], [ -81.959502133665339, 28.868856759913854 ], [ -81.959877568172843, 28.868829091589085 ], [ -81.960203166597239, 28.868808716114486 ], [ -81.96041746427295, 28.868791233262606 ], [ -81.960510492344028, 28.868785411019331 ], [ -81.960571955054988, 28.868789816076553 ], [ -81.96061679803104, 28.868811762418744 ], [ -81.960659978770835, 28.86883809525666 ], [ -81.960688207506749, 28.868865886337751 ], [ -81.960716431189553, 28.868909760963817 ], [ -81.960733020555509, 28.868969719343767 ], [ -81.960741302318709, 28.869031134316767 ], [ -81.96074792230678, 28.869098400238336 ], [ -81.960754528631341, 28.869196372429901 ], [ -81.960752844235898, 28.869259248924987 ], [ -81.960732892642909, 28.869307496453974 ], [ -81.960697990681709, 28.869349891779009 ], [ -81.960686258374395, 28.869359275003138 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ainsworth Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960686258374395, 28.869359275003138 ], [ -81.960643154792351, 28.869393742984858 ], [ -81.960596634379399, 28.869412739062618 ], [ -81.960587418126153, 28.869415233030452 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ainsworth Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960686258374395, 28.869359275003138 ], [ -81.960765238142613, 28.86941933914952 ], [ -81.96079947753185, 28.869445728879921 ], [ -81.960823722885308, 28.869482163732549 ], [ -81.96083227012268, 28.869524875836248 ], [ -81.960823693934017, 28.869558789099617 ], [ -81.960800852181137, 28.869583905256086 ], [ -81.960763743759955, 28.869597712286648 ], [ -81.960720929604534, 28.869603981603529 ], [ -81.960679548048972, 28.86959517655027 ], [ -81.960652439267719, 28.869578837827952 ], [ -81.960636752964589, 28.869551197494665 ], [ -81.960631057813615, 28.869518536065794 ], [ -81.960622509298361, 28.869482105782524 ], [ -81.960611101697481, 28.869456978712041 ], [ -81.960587418126153, 28.869415233030452 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kerwood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959585719386993, 28.881128224838829 ], [ -81.959585526346061, 28.881123754779406 ], [ -81.959556358535551, 28.880799218839268 ], [ -81.959521504692916, 28.880531407055109 ], [ -81.959514091811613, 28.880491702650787 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kerwood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959484012721845, 28.880330582224513 ], [ -81.959478122131358, 28.880299034180119 ], [ -81.959456655237346, 28.880170243100526 ], [ -81.959450224204048, 28.880107745044821 ], [ -81.9594609981351, 28.880069870580602 ], [ -81.959484678268026, 28.880041469665731 ], [ -81.959521271539174, 28.880007391749697 ], [ -81.959564317009409, 28.879978997560084 ], [ -81.959611664173053, 28.879958177668019 ], [ -81.959757985084067, 28.879952540715191 ], [ -81.96004238448063, 28.87995470366231 ], [ -81.96015272601592, 28.879957485771346 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kerwood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959514091811613, 28.880491702650787 ], [ -81.959484012721845, 28.880330582224513 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kerwood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959514091811613, 28.880491702650787 ], [ -81.959392174544831, 28.880515067922818 ], [ -81.959346061921366, 28.880521463015288 ], [ -81.959304803753056, 28.880519313865864 ], [ -81.959274474463186, 28.880500080233215 ], [ -81.959255068838502, 28.88047444176383 ], [ -81.959249013822443, 28.880446670694461 ], [ -81.959250238771091, 28.880415698664009 ], [ -81.95926116997164, 28.88039006939945 ], [ -81.959278166438352, 28.880368713469146 ], [ -81.959303655349075, 28.880352701736165 ], [ -81.959342488784344, 28.880347372778854 ], [ -81.95939466991112, 28.88034204784789 ], [ -81.959484012721845, 28.880330582224513 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jem Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962746480764366, 28.882710567663729 ], [ -81.962665958205434, 28.882721617425691 ], [ -81.962536370961786, 28.8827326552565 ], [ -81.962364011169015, 28.882733713252769 ], [ -81.962253300828621, 28.88272482517154 ], [ -81.962166694866454, 28.882713006805911 ], [ -81.962136216585151, 28.88270554700706 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jem Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962001339494918, 28.882637832684818 ], [ -81.961990394720118, 28.882626200727081 ], [ -81.96197164329466, 28.882591744650973 ], [ -81.9619602286527, 28.882553112094577 ], [ -81.961956368498292, 28.882517669508964 ], [ -81.961971611821411, 28.882387022408302 ], [ -81.961987259325014, 28.882249983515351 ], [ -81.962001777587076, 28.882069504805251 ], [ -81.96201631546073, 28.881835396910727 ], [ -81.962022267511458, 28.881581345716455 ], [ -81.962022388722687, 28.881247881313254 ], [ -81.962016650211609, 28.880922324810207 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jem Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962136216585151, 28.88270554700706 ], [ -81.962097844013229, 28.882696154047476 ], [ -81.962055799248716, 28.882678262165676 ], [ -81.962021348558665, 28.882659096565853 ], [ -81.962001339494918, 28.882637832684818 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jem Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962136216585151, 28.88270554700706 ], [ -81.962123311430972, 28.882758928018632 ], [ -81.962110193362847, 28.882797365957714 ], [ -81.962088344947205, 28.882826833457528 ], [ -81.962057763021647, 28.882844763466046 ], [ -81.962027186807205, 28.882849880791781 ], [ -81.961982054171926, 28.882848585844698 ], [ -81.961952939374612, 28.882838325647743 ], [ -81.961931107773481, 28.882819100440916 ], [ -81.961916555049669, 28.882799874589203 ], [ -81.961909286546074, 28.88277168192911 ], [ -81.9619107536261, 28.882740928310064 ], [ -81.961922413078838, 28.882707615949695 ], [ -81.961941346844156, 28.88269224430222 ], [ -81.962001339494918, 28.882637832684818 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dipper Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966633307943781, 28.884781400822192 ], [ -81.966631739608204, 28.88478383754704 ], [ -81.966602250424728, 28.884812345625896 ], [ -81.966576531266071, 28.88482713063954 ], [ -81.966524807181884, 28.884852638421638 ], [ -81.96643550833079, 28.884870755964172 ], [ -81.966233355996991, 28.884910926194607 ], [ -81.966065579121818, 28.884941137103414 ], [ -81.965994735434109, 28.884957912788106 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dipper Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96503790318792, 28.883470911067896 ], [ -81.965161281449369, 28.883450742445092 ], [ -81.965382211565256, 28.883417973016876 ], [ -81.96556650838626, 28.883390572445645 ], [ -81.965646178538094, 28.883387737990564 ], [ -81.965717901344249, 28.883400382239067 ], [ -81.965778142437202, 28.883433224239603 ], [ -81.965821162391364, 28.883481214170029 ], [ -81.965912922163724, 28.883632747417565 ], [ -81.966019020153311, 28.883817110849812 ], [ -81.966168146095399, 28.884024211310944 ], [ -81.96631154585431, 28.884193431563943 ], [ -81.966397417622062, 28.884286668023005 ], [ -81.966462237087555, 28.884357158470419 ], [ -81.966546188763658, 28.884444498717489 ], [ -81.9666437756362, 28.884557999107624 ], [ -81.966665575012655, 28.884598317532639 ], [ -81.966674288827534, 28.884634792510045 ], [ -81.966675245172681, 28.884667162796777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dipper Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966675245172681, 28.884667162796777 ], [ -81.966675366875663, 28.884671267394353 ], [ -81.966668808009601, 28.884714459816465 ], [ -81.9666535291109, 28.884749969684119 ], [ -81.966633307943781, 28.884781400822192 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dipper Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966675245172681, 28.884667162796777 ], [ -81.96678140857307, 28.884674446339407 ], [ -81.966822339226198, 28.884680462186143 ], [ -81.96684621411562, 28.884693975536162 ], [ -81.966868376807625, 28.884727005229887 ], [ -81.966870068144416, 28.884763032722383 ], [ -81.96686152798992, 28.884805061597952 ], [ -81.966835938226822, 28.884832073773964 ], [ -81.966800115010287, 28.884845574161748 ], [ -81.966760884820332, 28.884850067829479 ], [ -81.966711429282768, 28.88483504398237 ], [ -81.966633307943781, 28.884781400822192 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inner Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965896296264447, 28.888388982019436 ], [ -81.96597264677284, 28.888409825605031 ], [ -81.966153487558017, 28.888455594539771 ], [ -81.96631414462621, 28.888494466392356 ], [ -81.966385671671503, 28.888505315554109 ], [ -81.966448741086666, 28.888504654621666 ], [ -81.966508737456323, 28.888492484951712 ], [ -81.966551047897255, 28.888468804709007 ], [ -81.966582590795227, 28.888443089789561 ], [ -81.966607211927382, 28.88841195933621 ], [ -81.96663261145639, 28.888357813190158 ], [ -81.966644931100021, 28.888312463021105 ], [ -81.966657260638911, 28.888242746227082 ], [ -81.966683463616803, 28.888074883330894 ], [ -81.966715627168767, 28.887881856741487 ], [ -81.966733858099076, 28.887757341075687 ], [ -81.966741095559826, 28.887718207386484 ], [ -81.966743525048372, 28.887677793042229 ], [ -81.966736924183465, 28.887647052730046 ], [ -81.966721778598838, 28.887607913487823 ], [ -81.966717427459159, 28.887601608033581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inner Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966571633093778, 28.887494151078027 ], [ -81.966562314833993, 28.887490559403162 ], [ -81.966509967417551, 28.887483451551777 ], [ -81.966426971418826, 28.887473509103526 ], [ -81.966341173012438, 28.887461788368608 ], [ -81.966237252214128, 28.887441555225532 ], [ -81.966136565203314, 28.88742087527768 ], [ -81.966061533065783, 28.88740551449483 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inner Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966717427459159, 28.887601608033581 ], [ -81.966702469010031, 28.887579935570944 ], [ -81.966668643656533, 28.887543765666127 ], [ -81.966620315631431, 28.887512910303776 ], [ -81.966571633093778, 28.887494151078027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inner Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966717427459159, 28.887601608033581 ], [ -81.966760483560847, 28.887556550600166 ], [ -81.966779828456666, 28.887525712953146 ], [ -81.966791923877366, 28.88749168207092 ], [ -81.966788309562943, 28.887457645493356 ], [ -81.96677260632714, 28.887437434580651 ], [ -81.966755693316543, 28.887420412998967 ], [ -81.966720652738331, 28.887404451632868 ], [ -81.966684399990285, 28.887399123569708 ], [ -81.966655395666223, 28.88740337070907 ], [ -81.966631222594884, 28.887412939008986 ], [ -81.966614299999122, 28.8874256960355 ], [ -81.966594956103251, 28.887453344026678 ], [ -81.966571633093778, 28.887494151078027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Keyhole Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958962848282269, 28.883709419641228 ], [ -81.95950854389946, 28.883714095946225 ], [ -81.9600819212326, 28.883731585538136 ], [ -81.96021063836389, 28.8837504024441 ], [ -81.960641639290728, 28.883826504165778 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harston Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958962848282269, 28.883709419641228 ], [ -81.958969211806732, 28.883670316759385 ], [ -81.958970171079912, 28.883528635026874 ], [ -81.958970229236172, 28.883379092168518 ], [ -81.958970305632022, 28.883188639880462 ], [ -81.958970352568983, 28.883070035113754 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harston Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958882157900035, 28.884347486007549 ], [ -81.958893937362205, 28.88419279100901 ], [ -81.958897807163538, 28.884165235920644 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harston Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958912639454098, 28.884060163896656 ], [ -81.958932291595488, 28.883925622386819 ], [ -81.958953292791847, 28.883801592189069 ], [ -81.958962848282269, 28.883709419641228 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harston Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958897807163538, 28.884165235920644 ], [ -81.958910715049598, 28.884073336000505 ], [ -81.958912639454098, 28.884060163896656 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harston Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958897807163538, 28.884165235920644 ], [ -81.958762731143125, 28.884154877587655 ], [ -81.958729404686622, 28.884157660870763 ], [ -81.958700836973037, 28.884168823474592 ], [ -81.958669095302312, 28.884177194278198 ], [ -81.958631011968919, 28.884177182548445 ], [ -81.95860244999534, 28.884168794074633 ], [ -81.958578657179629, 28.884147838915364 ], [ -81.958567560236318, 28.88411990205601 ], [ -81.958564397829647, 28.884093365309038 ], [ -81.95857075882688, 28.88405845273364 ], [ -81.958581875850086, 28.884036108873978 ], [ -81.958599339908901, 28.884013769677686 ], [ -81.958625527136434, 28.88400243041276 ], [ -81.958661231862479, 28.884002615555705 ], [ -81.958697726915432, 28.884008213836307 ], [ -81.958718353300256, 28.884015203088143 ], [ -81.958738978107135, 28.88402358819604 ], [ -81.958759603300578, 28.884036164489238 ], [ -81.958777055105472, 28.884044549518855 ], [ -81.958800854427153, 28.884054333256298 ], [ -81.958912639454098, 28.884060163896656 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cokesbury Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961287751681624, 28.905192759981968 ], [ -81.961300749560053, 28.905201649565722 ], [ -81.961336498084393, 28.905216515313224 ], [ -81.961388692761943, 28.905224338837478 ], [ -81.961466678200964, 28.905227792704746 ], [ -81.961571961399216, 28.905227823812918 ], [ -81.96170064143439, 28.905227859717272 ], [ -81.961819573506219, 28.905226177455205 ], [ -81.96190713472015, 28.90522560503155 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cokesbury Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960005325964929, 28.902856398224024 ], [ -81.960007197419657, 28.90306055555088 ], [ -81.960009109654109, 28.90316177686833 ], [ -81.960013265040089, 28.903290624525233 ], [ -81.960024627728842, 28.903364222983601 ], [ -81.960040209112634, 28.903405402211188 ], [ -81.960065540559327, 28.903439722359732 ], [ -81.960096725208047, 28.903465465190841 ], [ -81.960131813778261, 28.903482631925879 ], [ -81.960209789307427, 28.903508388628108 ], [ -81.960303923672924, 28.903537908140642 ], [ -81.960363788944889, 28.90356848037397 ], [ -81.960455403164758, 28.903621690685771 ], [ -81.960582096304464, 28.903712655292498 ], [ -81.960679175420566, 28.903792047245304 ], [ -81.960775248276136, 28.903886269911908 ], [ -81.960846320704846, 28.903967765513542 ], [ -81.960909511458752, 28.90405072681963 ], [ -81.96095682357641, 28.90412112348109 ], [ -81.961006604850624, 28.904202612796748 ], [ -81.961052867499177, 28.904293726790254 ], [ -81.96109190009453, 28.90438759067964 ], [ -81.961120385716626, 28.904475260830992 ], [ -81.961148866477146, 28.904578745556286 ], [ -81.961166597275906, 28.90469769616411 ], [ -81.96117874995339, 28.90478913859021 ], [ -81.96118020434254, 28.904881156291346 ], [ -81.961182124054233, 28.904960076364414 ], [ -81.961184048915356, 28.905025269774761 ], [ -81.961186592812325, 28.905050276804502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cokesbury Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961186592812325, 28.905050276804502 ], [ -81.961187586873805, 28.905060048079847 ], [ -81.961198499069582, 28.905088013459473 ], [ -81.961211400567876, 28.905115983022615 ], [ -81.961228275129216, 28.905139583000285 ], [ -81.961250113761082, 28.905165805586297 ], [ -81.96127367739885, 28.905183132006243 ], [ -81.961287751681624, 28.905192759981968 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cokesbury Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961186592812325, 28.905050276804502 ], [ -81.961148189458527, 28.905071250436517 ], [ -81.961119048632398, 28.905092215012878 ], [ -81.961097856045868, 28.905109686384939 ], [ -81.961079308381528, 28.905134295700154 ], [ -81.961073342196954, 28.905157016545168 ], [ -81.961074324570674, 28.905181484451319 ], [ -81.961086232382911, 28.905206831659005 ], [ -81.961100458414421, 28.905227371190662 ], [ -81.961128261475068, 28.905243691900488 ], [ -81.961165333973526, 28.905255354016028 ], [ -81.961209032221078, 28.905251871157557 ], [ -81.961244794162099, 28.90523090847552 ], [ -81.961287751681624, 28.905192759981968 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Society Hill Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960451289555095, 28.900006916773819 ], [ -81.96044446620283, 28.89989035398288 ], [ -81.960435763117275, 28.899833536359701 ], [ -81.960429667957243, 28.899799752489834 ], [ -81.96042095608523, 28.899765967847593 ], [ -81.960398081206506, 28.89971271282721 ], [ -81.960299772554876, 28.899526384301268 ], [ -81.960032833153662, 28.899029699525148 ], [ -81.959899587383603, 28.898776143508805 ], [ -81.959889147803452, 28.898756247400648 ], [ -81.959868194088244, 28.898731602956406 ], [ -81.95976016895824, 28.898606250282675 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Society Hill Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95976016895824, 28.898606250282675 ], [ -81.9596513195211, 28.898520867318322 ], [ -81.959612938295493, 28.898498334385668 ], [ -81.959570857859276, 28.898480485966768 ], [ -81.959521047916169, 28.898471690677034 ], [ -81.959504471143958, 28.898471685675268 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Society Hill Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959328383350154, 28.898518551069046 ], [ -81.959320939306906, 28.898523838992173 ], [ -81.959294169792088, 28.898554543330935 ], [ -81.959273217680732, 28.898586270832574 ], [ -81.959250703669454, 28.898644786214145 ], [ -81.959233624156639, 28.898689824698913 ], [ -81.95921499005334, 28.898743050170491 ], [ -81.959202560319127, 28.898796280232471 ], [ -81.959197886856941, 28.898848146570788 ], [ -81.959197871218336, 28.898890459880292 ], [ -81.959199403321676, 28.898934138838609 ], [ -81.959210244589869, 28.898977819724465 ], [ -81.959225392160477, 28.899014151789864 ], [ -81.959343536366276, 28.899238564141445 ], [ -81.959526531406254, 28.899584638493227 ], [ -81.959687397179167, 28.899888859113556 ], [ -81.959726875238559, 28.899953081267004 ], [ -81.959745563733378, 28.89997613880789 ], [ -81.959770177159541, 28.899998203789334 ], [ -81.95980574714855, 28.90002145586514 ], [ -81.95984238671906, 28.900039125728284 ], [ -81.959872047885582, 28.900048347976774 ], [ -81.959915089783166, 28.900052908429402 ], [ -81.960059834279463, 28.900046763629913 ], [ -81.960451289555095, 28.900006916773819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wine Palm Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995394385447923, 28.84075699157977 ], [ -81.995420825794795, 28.840736379303667 ], [ -81.995464107558746, 28.840690359543267 ], [ -81.995532815711911, 28.840609438500628 ], [ -81.995567767159443, 28.840558643412027 ], [ -81.995599184265942, 28.840504432060278 ], [ -81.99562926546875, 28.840440548826361 ], [ -81.995649917402133, 28.840382195511499 ], [ -81.99567039804252, 28.840304060908537 ], [ -81.995685314503476, 28.840240093241842 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wax Berry Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995394385447923, 28.84075699157977 ], [ -81.995432901154089, 28.840793678930407 ], [ -81.995482466184427, 28.840828378869769 ], [ -81.995541485270238, 28.840854407040759 ], [ -81.995596095239165, 28.840869642542827 ], [ -81.99574728516194, 28.840901336578892 ], [ -81.995854674641549, 28.840915547763224 ], [ -81.99596331466492, 28.840923171157211 ], [ -81.996127725777754, 28.840923143670043 ], [ -81.996260398471634, 28.84091943907352 ], [ -81.996404105905043, 28.840918805203767 ], [ -81.996552828193529, 28.840929953639709 ], [ -81.996692687838518, 28.840950923297221 ], [ -81.996721776073485, 28.840957967447078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wax Berry Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996721776073485, 28.840957967447078 ], [ -81.996786005902308, 28.840973525736935 ], [ -81.996899083518443, 28.8410073108798 ], [ -81.997177078571511, 28.841113454753454 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wine Palm Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997019725737189, 28.840387284407946 ], [ -81.996897489555508, 28.840621409457249 ], [ -81.996721777098273, 28.840957967447107 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wine Palm Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995685314503476, 28.840240093241842 ], [ -81.995703980297321, 28.840160046583303 ], [ -81.995731845753383, 28.840027586102781 ], [ -81.995766638155033, 28.839882153368684 ], [ -81.995785344650358, 28.839805822396869 ], [ -81.995812120179139, 28.83975270533794 ], [ -81.995842184693998, 28.839711152347146 ], [ -81.995888399157622, 28.839679344777529 ], [ -81.995939068004787, 28.839653818291264 ], [ -81.995982506549652, 28.83964064324627 ], [ -81.996049494079742, 28.839633095691802 ], [ -81.996128803057445, 28.839634993823179 ], [ -81.996271125190063, 28.839636928019399 ], [ -81.996511150767788, 28.83964573128987 ], [ -81.996685891157782, 28.839658678577063 ], [ -81.9968573295222, 28.839679206742584 ], [ -81.996986311812421, 28.839695549704555 ], [ -81.997050303185489, 28.839710323760727 ], [ -81.997108321806564, 28.839737865298975 ], [ -81.997160295887696, 28.839780450846312 ], [ -81.997192051331609, 28.839820311867083 ], [ -81.997213123384512, 28.839865346477744 ], [ -81.997223480642177, 28.839903203902058 ], [ -81.997226773043991, 28.839943481160567 ], [ -81.997209056386055, 28.840022913582253 ], [ -81.997176149908569, 28.840087669641669 ], [ -81.997138026863325, 28.840165864538683 ], [ -81.997041812085541, 28.840344976639848 ], [ -81.997019725737189, 28.840387284407946 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valmont Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995685314503476, 28.840240093241842 ], [ -81.995838593279004, 28.840266891328849 ], [ -81.995919668981088, 28.840279701239449 ], [ -81.996028611720035, 28.840286473715221 ], [ -81.996177011873016, 28.840283199177193 ], [ -81.996338350855865, 28.840279813857801 ], [ -81.996530496319039, 28.840286054986567 ], [ -81.996725705347387, 28.840307737100957 ], [ -81.996855631992091, 28.840330525390211 ], [ -81.996932183174039, 28.840352409084467 ], [ -81.997019725737189, 28.840387284407946 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bosie Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993604861362826, 28.851981341688195 ], [ -81.993710104431003, 28.851804050028569 ], [ -81.993747163306168, 28.851741216135103 ], [ -81.993780360458231, 28.851693007519742 ], [ -81.993817470366125, 28.851648562596182 ], [ -81.993865290292007, 28.851604553072761 ], [ -81.993922285995751, 28.851560508766099 ], [ -81.993977376126992, 28.851520705184186 ], [ -81.994056285080617, 28.851472613175911 ], [ -81.994145759621759, 28.851422668256038 ], [ -81.994252313814073, 28.851372375734169 ], [ -81.994350543132924, 28.851333439188746 ], [ -81.994436709933368, 28.851304652097323 ], [ -81.994517538829854, 28.851280462877462 ], [ -81.994623921036521, 28.85125796196975 ], [ -81.994695805054491, 28.851245453525028 ], [ -81.994751326521126, 28.851237763602629 ], [ -81.994851808721322, 28.851228127352666 ], [ -81.994885417849318, 28.851226117429075 ], [ -81.994923458582392, 28.851223955179208 ], [ -81.994949927431463, 28.851220206219768 ], [ -81.994973301208518, 28.851214925923713 ], [ -81.994995529244335, 28.851208070154161 ], [ -81.995021547485877, 28.851197543043391 ], [ -81.995049366656161, 28.85118283741819 ], [ -81.995074411574208, 28.851165866895698 ], [ -81.995105797998306, 28.851137785613886 ], [ -81.995128061866495, 28.85111082916054 ], [ -81.995145868621037, 28.851081632113207 ], [ -81.995159574984925, 28.851048968253416 ], [ -81.99517306583563, 28.851001360397493 ], [ -81.995267491519797, 28.850661550107297 ], [ -81.995283601386802, 28.850602641855357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boyd Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048191637582306, 28.922370838966387 ], [ -82.0487936116767, 28.922370297109271 ], [ -82.048855484983861, 28.922381734077955 ], [ -82.048917367318722, 28.922410358837997 ], [ -82.048969485358413, 28.922450448035526 ], [ -82.04899555106131, 28.922484816110657 ], [ -82.049021627455943, 28.922542101574329 ], [ -82.049037932559344, 28.922593662780983 ], [ -82.049035031339514, 28.923117864872051 ], [ -82.049031685414974, 28.92316089382766 ], [ -82.049015428567174, 28.923215330637181 ], [ -82.048982889897218, 28.923264043727482 ], [ -82.048950341151013, 28.923295568090229 ], [ -82.048898257302923, 28.923329963345722 ], [ -82.048846165747733, 28.923350036452575 ], [ -82.048777790009069, 28.923361520109054 ], [ -82.04819081073822, 28.923360460444179 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boyd Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047347626553744, 28.922370289481712 ], [ -82.048191637582306, 28.922370838966387 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boyd Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047346792666175, 28.923357481094765 ], [ -82.046780078621566, 28.923355477969231 ], [ -82.046713323861496, 28.923347919787869 ], [ -82.046648190166735, 28.923327888591636 ], [ -82.046602587834712, 28.923296391535803 ], [ -82.046566757562147, 28.923267755912331 ], [ -82.046540688663356, 28.923224793008654 ], [ -82.046514617494452, 28.923178964410695 ], [ -82.046501573334837, 28.923133131362288 ], [ -82.046504586628444, 28.922583091130008 ], [ -82.046517587687688, 28.922531520514767 ], [ -82.046543618412485, 28.922488539811084 ], [ -82.046579421313552, 28.922451286239799 ], [ -82.04661522443142, 28.92241689654416 ], [ -82.046664057445454, 28.922393960625886 ], [ -82.046712890684233, 28.92237389128212 ], [ -82.046781826230458, 28.922369918285376 ], [ -82.047347626553744, 28.922370289481712 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boyd Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04819081073822, 28.923360460444179 ], [ -82.047346792666175, 28.923357481094765 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Soutar Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04734865465376, 28.921076093422769 ], [ -82.047347626553744, 28.922370289481712 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Soutar Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047347626553744, 28.922370289481712 ], [ -82.047346792666175, 28.923357481094765 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dzuro Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048800940202057, 28.920202020779893 ], [ -82.048912651788299, 28.92036476746447 ], [ -82.048959869162871, 28.920445572722603 ], [ -82.048973463026982, 28.920505251076964 ], [ -82.04897077588312, 28.920557772862132 ], [ -82.048954520654377, 28.920612686998236 ], [ -82.048932832589557, 28.920655666616369 ], [ -82.048892146755463, 28.920691490629768 ], [ -82.048854173422583, 28.92072492798852 ], [ -82.048794489697627, 28.920751209791614 ], [ -82.048710389752443, 28.920789437671733 ], [ -82.048582879003916, 28.920837229080714 ], [ -82.048430946472152, 28.920887417430301 ], [ -82.048292577622632, 28.920928050904987 ], [ -82.048170485060069, 28.920956742918094 ], [ -82.048029401220418, 28.920992602134621 ], [ -82.047891024472179, 28.921016523784576 ], [ -82.047771642089856, 28.921038052061771 ], [ -82.04760884236093, 28.921059594509742 ], [ -82.047462320185133, 28.921073970474488 ], [ -82.04734865465376, 28.921076093422769 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965280095212819, 28.847858767096366 ], [ -81.965253305994452, 28.847857613337723 ], [ -81.965229443366184, 28.847854551954349 ], [ -81.965206884477993, 28.847851108326793 ], [ -81.965186061305317, 28.847845754963707 ], [ -81.965164371624454, 28.847838873768705 ], [ -81.965143982867289, 28.847830846979274 ], [ -81.965124462933133, 28.847820527652971 ], [ -81.965100606225121, 28.847806006962884 ], [ -81.965080653307254, 28.847791104705813 ], [ -81.965065472735759, 28.847777349615669 ], [ -81.965051270615618, 28.847761398565691 ], [ -81.965038800973005, 28.847747072115848 ], [ -81.965021253474831, 28.847722829804738 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965471556018869, 28.847793593268872 ], [ -81.96545257085134, 28.847805334605571 ], [ -81.965423504150507, 28.847823440917566 ], [ -81.965391047466767, 28.84783777832013 ], [ -81.965356404305865, 28.847847363607858 ], [ -81.965319144336092, 28.847854955919445 ], [ -81.965280095212819, 28.847858767096366 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965021253474831, 28.847722829804738 ], [ -81.96505070716016, 28.847821559667942 ], [ -81.965052863670081, 28.847857370947136 ], [ -81.96504905860678, 28.847884107086482 ], [ -81.965038144776713, 28.847927205595706 ], [ -81.965028969365022, 28.847954291333206 ], [ -81.964934761960976, 28.848138915555417 ], [ -81.964831652117297, 28.848342289998765 ], [ -81.96474091265793, 28.848510309847867 ], [ -81.964645411994212, 28.848664604306766 ], [ -81.964494354988446, 28.848879998094077 ], [ -81.964345042412319, 28.849069419296367 ], [ -81.964174905631992, 28.849254251061957 ], [ -81.964011719182082, 28.84941463739851 ], [ -81.963844998696345, 28.849571489153092 ], [ -81.96357187172471, 28.849798242377531 ], [ -81.963158493397188, 28.850150503453069 ], [ -81.962818891852905, 28.850434981733066 ], [ -81.962497734624051, 28.850707050374861 ], [ -81.962127749058865, 28.851019213767074 ], [ -81.961849986999127, 28.85125500594982 ], [ -81.961589579505414, 28.851486982152682 ], [ -81.961347604919638, 28.851737108509365 ], [ -81.961129487477265, 28.851995833979718 ], [ -81.960917863670758, 28.852292759168527 ], [ -81.960770251536829, 28.852546730428024 ], [ -81.960656276012742, 28.852762513179641 ], [ -81.960565054886501, 28.852972862509958 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960690814879541, 28.853014710381981 ], [ -81.960696320981185, 28.853000306690099 ], [ -81.960778822549443, 28.852826531473958 ], [ -81.960910169440936, 28.852563006387953 ], [ -81.961092503532626, 28.852276575578667 ], [ -81.961254204219216, 28.852054121935403 ], [ -81.961421321899408, 28.851847902119591 ], [ -81.961606873791624, 28.851652191998461 ], [ -81.961819543505044, 28.851453624505428 ], [ -81.962061501269091, 28.851247426026465 ], [ -81.962312135442673, 28.851036453637615 ], [ -81.962758070626151, 28.85065746712008 ], [ -81.963032573377632, 28.850426447147115 ], [ -81.963258251097827, 28.850235519842801 ], [ -81.963681395354527, 28.849874666645423 ], [ -81.9640133937869, 28.849591875952708 ], [ -81.964188727723027, 28.849433019559015 ], [ -81.964332823723012, 28.849278739257361 ], [ -81.964487337209292, 28.849100016284826 ], [ -81.964629706588113, 28.848921287225703 ], [ -81.964779025228239, 28.848702835819964 ], [ -81.964904048463467, 28.848495072926376 ], [ -81.965042970900356, 28.84823383746788 ], [ -81.965091750760777, 28.84813081223567 ], [ -81.965170183378589, 28.847976634833817 ], [ -81.96520446810041, 28.847926769662529 ], [ -81.965280095212819, 28.847858767096366 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975184449950632, 28.847757784180754 ], [ -81.975344820607916, 28.847774645382145 ], [ -81.975504221392782, 28.84779757241904 ], [ -81.976183821224325, 28.847908606326541 ], [ -81.976369871764135, 28.84793536375204 ], [ -81.976557060571153, 28.847955037115582 ], [ -81.97674503609214, 28.847967589356855 ], [ -81.976933453944241, 28.847972996051066 ], [ -81.977121958466697, 28.847971250819558 ], [ -81.977310204245796, 28.847962353603371 ], [ -81.977497840740213, 28.847946320586203 ], [ -81.977566128466847, 28.847937856675653 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972935316397709, 28.848053815340432 ], [ -81.972935344070152, 28.848053809932196 ], [ -81.973917696246602, 28.847839262938297 ], [ -81.974073309163487, 28.847808353939303 ], [ -81.974230275378474, 28.847783302791214 ], [ -81.974388309997195, 28.84776415545263 ], [ -81.974547124030281, 28.847750943445668 ], [ -81.97470643463943, 28.847743692881185 ], [ -81.974865952840958, 28.847742416335578 ], [ -81.975025386579276, 28.847747116460656 ], [ -81.975184449950632, 28.847757784180754 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967030737627269, 28.847736020061316 ], [ -81.967095815281652, 28.847736991565789 ], [ -81.968485040780536, 28.847741859819866 ], [ -81.968633313088318, 28.84774490463689 ], [ -81.968781331735244, 28.847753110422122 ], [ -81.968928867180182, 28.847766465393303 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969788512807071, 28.847933841773191 ], [ -81.970435895796157, 28.848082588504685 ], [ -81.97062095476079, 28.848121591615676 ], [ -81.970807660630484, 28.848153946640764 ], [ -81.970995702854864, 28.848179602074591 ], [ -81.971184774980287, 28.848198511828247 ], [ -81.971374563372621, 28.848210649663613 ], [ -81.971564753371723, 28.848215991148752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "View Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967073691130651, 28.837091831801636 ], [ -81.966990396160554, 28.837096799313905 ], [ -81.966918682983973, 28.837098170323284 ], [ -81.966847131521959, 28.837093739497952 ], [ -81.966776341249783, 28.837083546687921 ], [ -81.966706912652484, 28.837067676860134 ], [ -81.966639429802584, 28.83704626370319 ], [ -81.96648690415293, 28.836990770828603 ], [ -81.966372057156207, 28.836945772030301 ], [ -81.966260118175896, 28.836895415060695 ], [ -81.966151406898305, 28.836839842572001 ], [ -81.966054913738262, 28.836787417624411 ], [ -81.966007601821076, 28.836742266830466 ], [ -81.965973100018871, 28.836694678523145 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "View Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967579369006671, 28.837050405354713 ], [ -81.967439441918984, 28.837067198638387 ], [ -81.967298794103925, 28.837078405416335 ], [ -81.967073691130651, 28.837091831801636 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "View Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968948243666503, 28.837104123760749 ], [ -81.968925187917279, 28.837052870976226 ], [ -81.96890462608927, 28.837016368784191 ], [ -81.968877471038397, 28.836983375036876 ], [ -81.968844477728922, 28.836954806649878 ], [ -81.968806557946536, 28.836931451545095 ], [ -81.968764764929688, 28.836913959624798 ], [ -81.968720254438097, 28.836902815693644 ], [ -81.968644196793178, 28.836893070180917 ], [ -81.968567416754539, 28.836889957318181 ], [ -81.968490662362143, 28.83689350525119 ], [ -81.968414676551149, 28.836903679867035 ], [ -81.967708663458879, 28.83702979260968 ], [ -81.967579369006671, 28.837050405354713 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zenith Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959248504076612, 28.836780547229612 ], [ -81.959241567416413, 28.836814946497558 ], [ -81.959234150792028, 28.836868590030846 ], [ -81.959233420460734, 28.836922627192333 ], [ -81.959239382835165, 28.836976411029742 ], [ -81.959251966444441, 28.837029301784604 ], [ -81.959271025006245, 28.837080670502598 ], [ -81.959348097396301, 28.837255460832754 ], [ -81.959368833939919, 28.837292756755666 ], [ -81.959396433627546, 28.837326430179814 ], [ -81.959430098563359, 28.837355509977584 ], [ -81.959468863760648, 28.837379161219378 ], [ -81.959511609432184, 28.837396702321538 ], [ -81.959557110169811, 28.837407627619619 ], [ -81.95960405133458, 28.837411624517522 ], [ -81.959651084393229, 28.837408576211345 ], [ -81.960010283443239, 28.837358053276578 ], [ -81.960074015238675, 28.837345712414916 ], [ -81.960135691789375, 28.837326951899481 ], [ -81.960194484991064, 28.837302026840788 ], [ -81.960249601553173, 28.837271270861638 ], [ -81.960300300419291, 28.837235097906674 ], [ -81.960345897893333, 28.837193996829697 ], [ -81.961005594913502, 28.836525813752356 ], [ -81.96108294976915, 28.836451228880776 ], [ -81.96154298368306, 28.836028931609299 ], [ -81.96158826201912, 28.83598353141987 ], [ -81.961628839037573, 28.835934808478981 ], [ -81.961664402060023, 28.835883134452331 ], [ -81.96169467323827, 28.835828915303008 ], [ -81.96171942288683, 28.835772561519047 ], [ -81.961747996378932, 28.83569791092377 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Island House Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95648229708064, 28.836433408195866 ], [ -81.956588554757445, 28.836837225990699 ], [ -81.956602975159157, 28.83687352325115 ], [ -81.956623673145003, 28.836907382695969 ], [ -81.95665013874445, 28.836937971328297 ], [ -81.956681717463951, 28.836964531898069 ], [ -81.956717632819462, 28.836986410881302 ], [ -81.956756993506616, 28.837003065701261 ], [ -81.956798832331614, 28.83701408820129 ], [ -81.956842115434796, 28.837019203745893 ], [ -81.956885774051074, 28.837018289277196 ], [ -81.956928731157873, 28.837011364300608 ], [ -81.956969927091009, 28.836998599916058 ], [ -81.957112383401991, 28.836943041641661 ], [ -81.957224134476135, 28.836901605389116 ], [ -81.957337544047789, 28.836863819403117 ], [ -81.957452454295222, 28.836829735963413 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Island House Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957452454295222, 28.836829735963413 ], [ -81.957605844611763, 28.836790567429407 ], [ -81.957761206811, 28.836757995206948 ], [ -81.957918182231467, 28.836732091361679 ], [ -81.958076397870016, 28.836712919835605 ], [ -81.958235483807201, 28.836700523820269 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Island House Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958235483807201, 28.836700523820269 ], [ -81.958398112604755, 28.836694892409671 ], [ -81.958560858454462, 28.83669634395201 ], [ -81.95872332584112, 28.836704872911632 ], [ -81.958885113106518, 28.836720459315931 ], [ -81.959045829871513, 28.836743064249191 ], [ -81.9592050816631, 28.836772633457091 ], [ -81.959248504076257, 28.836780548131898 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Island House Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959248504076257, 28.836780548131898 ], [ -81.959313129545052, 28.836788217467571 ], [ -81.959378253891074, 28.836791111912405 ], [ -81.959443427251188, 28.836789211479214 ], [ -81.959508192575996, 28.836782529564889 ], [ -81.959636085410239, 28.83676454082584 ], [ -81.959699815863686, 28.836752201041474 ], [ -81.959761493156364, 28.836733441597712 ], [ -81.959820285089876, 28.836708514894664 ], [ -81.959875401449793, 28.836677758163123 ], [ -81.959926101181694, 28.836641587150318 ], [ -81.959971698543555, 28.836600487098348 ], [ -81.960458721343343, 28.836107198094723 ], [ -81.960560008514278, 28.836009542237267 ], [ -81.960821942649673, 28.835769095232322 ], [ -81.960863214391154, 28.835726653685583 ], [ -81.960898792079092, 28.835680387392742 ], [ -81.960928220514674, 28.835630885432771 ], [ -81.960951127488656, 28.835578780219059 ], [ -81.960964589832756, 28.835542141419463 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcdowell Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958235483807201, 28.836700523820269 ], [ -81.958186249700049, 28.836024184894388 ], [ -81.958187117558396, 28.835983674265957 ], [ -81.958195562029118, 28.835943844528387 ], [ -81.958211353124184, 28.835905787400854 ], [ -81.958234056954794, 28.835870545813453 ], [ -81.95826305316389, 28.835839085941497 ], [ -81.958297545186198, 28.835812267432981 ], [ -81.958361707405373, 28.835767311801028 ], [ -81.958422514964596, 28.835718873998523 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcdowell Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958422514964596, 28.835718873998523 ], [ -81.958486952089942, 28.835660123011714 ], [ -81.958546453547072, 28.835597465284931 ], [ -81.958600713840909, 28.835531221049717 ], [ -81.958649454113896, 28.835461730396474 ], [ -81.958692425223077, 28.835389346056822 ], [ -81.958729407736172, 28.835314442426473 ], [ -81.958760211936891, 28.835237402030465 ], [ -81.958790785059961, 28.835151210352155 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Society Hill Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959504471143958, 28.898471685675268 ], [ -81.959472188118198, 28.898471676830834 ], [ -81.959432634409495, 28.898476782718994 ], [ -81.959393683565438, 28.8984872105381 ], [ -81.959351192394294, 28.898502349079457 ], [ -81.959328383350154, 28.898518551069046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Society Hill Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959504471143958, 28.898471685675268 ], [ -81.959500120185098, 28.898441271468148 ], [ -81.959494025532479, 28.898409791119132 ], [ -81.959487925655154, 28.898389058955289 ], [ -81.959477463537141, 28.898366789760694 ], [ -81.959455660507246, 28.898346052852087 ], [ -81.959427748003307, 28.898329154277842 ], [ -81.959385871528909, 28.898322230900391 ], [ -81.959352716826942, 28.898325292287474 ], [ -81.959321300687591, 28.898339870237248 ], [ -81.95930209706215, 28.898360594736673 ], [ -81.959290744677389, 28.898391303750607 ], [ -81.9592863699459, 28.898418941649954 ], [ -81.959295083390529, 28.898452726372327 ], [ -81.959313388413761, 28.898495727378805 ], [ -81.959328383350154, 28.898518551069046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dunkirk Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963394802710866, 28.872326352326898 ], [ -81.963448400858937, 28.872357528856288 ], [ -81.963534761049786, 28.872423353666502 ], [ -81.963612814003156, 28.872492100531996 ], [ -81.963748989839374, 28.872622276484183 ], [ -81.963909660402564, 28.872773747812332 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dunkirk Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961601122718605, 28.872892376388865 ], [ -81.961811769596906, 28.872658844770747 ], [ -81.962067914911387, 28.872367383411692 ], [ -81.962132723523922, 28.872310372571228 ], [ -81.962205836765435, 28.872257752837246 ], [ -81.962280609474078, 28.87221098225519 ], [ -81.96236368419774, 28.872172987047669 ], [ -81.962450078488672, 28.872145228438647 ], [ -81.962539123646181, 28.872125882681598 ], [ -81.962612888457755, 28.872116028444331 ], [ -81.962689308307446, 28.872111663611729 ], [ -81.962774027187251, 28.872116074126229 ], [ -81.962885324471145, 28.872132189390104 ], [ -81.96299993630727, 28.872164389923014 ], [ -81.963113338503675, 28.872196885981282 ], [ -81.963232342095296, 28.87224026975996 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dunkirk Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963232342095296, 28.87224026975996 ], [ -81.96323463082399, 28.872241104114462 ], [ -81.963300154509014, 28.87227303197767 ], [ -81.963355917760808, 28.872303730915537 ], [ -81.963394802710866, 28.872326352326898 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dunkirk Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963232342095296, 28.87224026975996 ], [ -81.963279283384423, 28.872146610057897 ], [ -81.963297420302126, 28.872114705986334 ], [ -81.963312763476679, 28.872101209025587 ], [ -81.963337866665157, 28.872090169894587 ], [ -81.963362966376437, 28.87208894871339 ], [ -81.963390849516117, 28.872092637715532 ], [ -81.963407582342029, 28.87209755260908 ], [ -81.963422918408128, 28.872101239085989 ], [ -81.963442435261157, 28.872112290391961 ], [ -81.963459159982364, 28.872134386924408 ], [ -81.963467520261517, 28.872152798881345 ], [ -81.963473090251867, 28.872171210980792 ], [ -81.96347029292258, 28.872196984495226 ], [ -81.963461918081606, 28.872222756491471 ], [ -81.963449359687914, 28.872246071280173 ], [ -81.963394802710866, 28.872326352326898 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eureka Mill Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982427967228688, 28.878554048661513 ], [ -81.98243854693672, 28.878571124312241 ], [ -81.982498910513698, 28.878645530637442 ], [ -81.982562295634878, 28.878711967296486 ], [ -81.98265284970411, 28.878789034768232 ], [ -81.982767553728806, 28.878876733510403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eureka Mill Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982336635250192, 28.87838300077135 ], [ -81.98233895388303, 28.878390426120696 ], [ -81.982384220794216, 28.878483432359392 ], [ -81.982427967228688, 28.878554048661513 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eureka Mill Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982305765600699, 28.878284138678531 ], [ -81.982336635250192, 28.87838300077135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eureka Mill Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982336635250192, 28.87838300077135 ], [ -81.982304942487858, 28.878402301327636 ], [ -81.982277828852872, 28.878428716232509 ], [ -81.982262331183065, 28.87845513177226 ], [ -81.982250707401647, 28.878482401402508 ], [ -81.982256509111934, 28.878521603583284 ], [ -81.982271028581934, 28.878549728457632 ], [ -81.98229813649121, 28.878568480984125 ], [ -81.982327182245726, 28.878579563292789 ], [ -81.982366880508877, 28.878577864090239 ], [ -81.982427967228688, 28.878554048661513 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iris Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991404060956583, 28.869096433342456 ], [ -81.991576444584794, 28.868992991744715 ], [ -81.991746870726573, 28.868880927392716 ], [ -81.991909458835423, 28.868782656756711 ], [ -81.992178047659465, 28.868617746309745 ], [ -81.992266177916207, 28.868549130425965 ], [ -81.992347529627366, 28.868450680334192 ], [ -81.992381426302728, 28.868393996890411 ], [ -81.992406348461827, 28.868325912319342 ], [ -81.992417610655863, 28.868259249892152 ], [ -81.992418733708433, 28.868089682791549 ], [ -81.992418745304548, 28.867937521957796 ], [ -81.992409513291122, 28.867876061933742 ], [ -81.992395027993666, 28.867827132796066 ], [ -81.992358622189528, 28.867777078120728 ], [ -81.9923548072085, 28.86777395683254 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iris Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992203380194042, 28.867709296142298 ], [ -81.992086027211727, 28.867704941872571 ], [ -81.991607027122171, 28.867711787908416 ], [ -81.991591600191228, 28.867711786929505 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iris Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9923548072085, 28.86777395683254 ], [ -81.992323602681026, 28.867748427957583 ], [ -81.992294069231079, 28.867733062718543 ], [ -81.992259461426499, 28.867722702253094 ], [ -81.992206808960347, 28.867709423569242 ], [ -81.992203380194042, 28.867709296142298 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iris Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9923548072085, 28.86777395683254 ], [ -81.992388234844853, 28.867735513417902 ], [ -81.992412919852356, 28.867696999113384 ], [ -81.992424140700962, 28.86767428426829 ], [ -81.992427508752584, 28.867650583656982 ], [ -81.992427509155974, 28.867631819354663 ], [ -81.992417414124006, 28.867610092211152 ], [ -81.992405074023708, 28.867591326297699 ], [ -81.992389368330905, 28.867577500300658 ], [ -81.992362443613729, 28.86756268472924 ], [ -81.992341127031168, 28.867559719428776 ], [ -81.992311956183173, 28.867561694681982 ], [ -81.992278298104836, 28.867571568431213 ], [ -81.99224800636722, 28.867593292320642 ], [ -81.992232295486957, 28.86761995717206 ], [ -81.992217708609743, 28.867652546612074 ], [ -81.992207607243046, 28.867686124337091 ], [ -81.992203380194042, 28.867709296142298 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bethune Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986079180754459, 28.896022497493647 ], [ -81.986083865551549, 28.895879404090959 ], [ -81.986070391886813, 28.895721615739316 ], [ -81.986053052408337, 28.895626602672738 ], [ -81.9860063891782, 28.895492133471038 ], [ -81.985972414963612, 28.895412717599072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bethune Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986079180754459, 28.896022497493647 ], [ -81.98640538785871, 28.896032100087393 ], [ -81.986420564623273, 28.896032547372361 ], [ -81.986435789044052, 28.896021632001464 ], [ -81.986451969109055, 28.895994982425368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bethune Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985054028143509, 28.896584208666383 ], [ -81.985232929570842, 28.896696300528536 ], [ -81.985373549048518, 28.896791198246497 ], [ -81.985474330156237, 28.896853088972343 ], [ -81.98553811203692, 28.896873573598583 ], [ -81.985540248769368, 28.896873974451516 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bethune Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985716105512083, 28.8968578846718 ], [ -81.985746030425915, 28.89683868062809 ], [ -81.985806981747615, 28.896768556810244 ], [ -81.985903105811886, 28.896595302051058 ], [ -81.985982820816631, 28.896432704357171 ], [ -81.986041440020728, 28.896273886842291 ], [ -81.986058758089285, 28.89619667346734 ], [ -81.986076622132074, 28.896100626446795 ], [ -81.986079180754459, 28.896022497493647 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bethune Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985540248769368, 28.896873974451516 ], [ -81.985593864967811, 28.89688404180216 ], [ -81.985643087001904, 28.896884047116281 ], [ -81.985694278354842, 28.896871895040537 ], [ -81.985716105512083, 28.8968578846718 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bethune Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985540248769368, 28.896873974451516 ], [ -81.985541381938447, 28.896930472959454 ], [ -81.985543922837635, 28.896958453542254 ], [ -81.985550279474651, 28.896983077082485 ], [ -81.985559179255546, 28.897005464097624 ], [ -81.985576983342995, 28.897025613471463 ], [ -81.985601147499324, 28.897039046813248 ], [ -81.985629126846902, 28.897045765649647 ], [ -81.985653290699318, 28.897046887105727 ], [ -81.985680001950541, 28.897044651375005 ], [ -81.985701624236654, 28.897036819031495 ], [ -81.985721976446754, 28.89702674884564 ], [ -81.985741056758812, 28.897005484593222 ], [ -81.985748691753741, 28.896980861657529 ], [ -81.985747424104346, 28.89695400006627 ], [ -81.98574234064327, 28.896923777903172 ], [ -81.985716105512083, 28.8968578846718 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Straton Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988285288665992, 28.897168938161975 ], [ -81.988987221850849, 28.89716899822329 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Straton Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98752315394772, 28.897211285004083 ], [ -81.987595456679145, 28.897200687043103 ], [ -81.987685831227637, 28.897187441567073 ], [ -81.987773194028463, 28.897176844002377 ], [ -81.987887668366668, 28.897168902516899 ], [ -81.988078189718777, 28.897168919742811 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Straton Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988078189718777, 28.897168919742811 ], [ -81.988285288665992, 28.897168938161975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Straton Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988078189718777, 28.897168919742811 ], [ -81.988078197456574, 28.897103222416721 ], [ -81.988078202362942, 28.897061565054848 ], [ -81.98808560089256, 28.897029021580558 ], [ -81.988103357015362, 28.896999082167365 ], [ -81.988122590739664, 28.896976954090462 ], [ -81.988153655106174, 28.896969145656609 ], [ -81.988195075431747, 28.896969149342723 ], [ -81.98822613987177, 28.896978265323767 ], [ -81.988248327565472, 28.896991284762727 ], [ -81.988267555552397, 28.897009512009351 ], [ -81.988280866021611, 28.897039453285618 ], [ -81.988285299409483, 28.89708501619122 ], [ -81.988285288665992, 28.897168938161975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arial Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992147294628879, 28.897916690883314 ], [ -81.992180985730784, 28.897937107407522 ], [ -81.992290448400936, 28.898012373738332 ], [ -81.992370835253524, 28.898078608088504 ], [ -81.992437538320729, 28.89814032379309 ], [ -81.992499111214386, 28.898194515800359 ], [ -81.992565813190978, 28.898272790437826 ], [ -81.992625674723072, 28.898343537677786 ], [ -81.992671853539932, 28.898408263989072 ], [ -81.992737873636358, 28.898518495235546 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arial Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990844073531264, 28.897516470625732 ], [ -81.991296343256735, 28.897614377182858 ], [ -81.991623395899651, 28.897693229506913 ], [ -81.991763649419582, 28.897736888864028 ], [ -81.99188699911798, 28.897782864142226 ], [ -81.992043759656426, 28.897854230225605 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arial Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992043759656426, 28.897854230225605 ], [ -81.992045599050329, 28.897855066767992 ], [ -81.992147294628879, 28.897916690883314 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arial Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992043759656426, 28.897854230225605 ], [ -81.99211039640457, 28.897752299658293 ], [ -81.99211039917121, 28.897730325961032 ], [ -81.992115395270304, 28.897696268968403 ], [ -81.992134124489979, 28.897665507992158 ], [ -81.992160342076886, 28.897643537659228 ], [ -81.992192803100025, 28.897632554088442 ], [ -81.992226511180434, 28.897631456175741 ], [ -81.992257720083288, 28.897635852209152 ], [ -81.992282689037751, 28.897650137072045 ], [ -81.992295173477018, 28.897664419397053 ], [ -81.992308902941375, 28.897688590092727 ], [ -81.992313894133332, 28.897717153573836 ], [ -81.992313892010216, 28.897744619567696 ], [ -81.992297660982103, 28.897769886613418 ], [ -81.992277684720833, 28.897790761044408 ], [ -81.992240229738073, 28.897808335638821 ], [ -81.99220527315228, 28.897830306373059 ], [ -81.992147294628879, 28.897916690883314 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sunset Pointe Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986889488153892, 28.901014865439169 ], [ -81.98709003493407, 28.901042820228884 ], [ -81.987373750213067, 28.901075198493881 ], [ -81.987629664938027, 28.901131224636931 ], [ -81.987931617483, 28.901201555017941 ], [ -81.988102226757292, 28.901240893493057 ], [ -81.98829720902387, 28.901282614165975 ], [ -81.988391994731728, 28.901299304185677 ], [ -81.98849490340929, 28.90130765308918 ], [ -81.988585627631338, 28.901306469883828 ], [ -81.988684476425206, 28.90130052046489 ], [ -81.988788742159926, 28.901286229677488 ], [ -81.988907869965061, 28.90125960652821 ], [ -81.989029777934832, 28.901219524812515 ], [ -81.989115088883878, 28.901182591719344 ], [ -81.989201755693003, 28.901132553692452 ], [ -81.989277397251712, 28.901085969621437 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sunset Pointe Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989405435585212, 28.900987259380663 ], [ -81.989457698213556, 28.900933584877233 ], [ -81.989541662340017, 28.900828735361063 ], [ -81.989585001233223, 28.900763202991854 ], [ -81.989617502997632, 28.900707202548887 ], [ -81.989648654517211, 28.900639286231485 ], [ -81.98968087940132, 28.900552863836875 ], [ -81.989698771637023, 28.90048677092237 ], [ -81.989713672731455, 28.900431961022232 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sunset Pointe Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989277397251712, 28.901085969621437 ], [ -81.989310089273488, 28.901065837458738 ], [ -81.989389590863254, 28.901003531978187 ], [ -81.989405435585212, 28.900987259380663 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sunset Pointe Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989277397251712, 28.901085969621437 ], [ -81.989321886218647, 28.901142896543316 ], [ -81.989334464905596, 28.901167807322008 ], [ -81.9893454697972, 28.90119133294419 ], [ -81.989365911062109, 28.901225929627763 ], [ -81.989384778677888, 28.901248072652386 ], [ -81.98940993901347, 28.901260529997923 ], [ -81.989436673149186, 28.90126468180253 ], [ -81.989472842474342, 28.901261919132075 ], [ -81.989505866815918, 28.901250850541498 ], [ -81.989526314349675, 28.901235630375062 ], [ -81.989538895356532, 28.901219025458612 ], [ -81.989548336482372, 28.901184429355062 ], [ -81.989546767293362, 28.901148450061275 ], [ -81.989529469794277, 28.901123538027512 ], [ -81.989507457641807, 28.901098628325421 ], [ -81.989463426071296, 28.901069564492381 ], [ -81.989405435585212, 28.900987259380663 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yankee Clipper Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997529516259462, 28.875071373181228 ], [ -81.99756628060571, 28.875088357932004 ], [ -81.997638230818495, 28.875116041032626 ], [ -81.997658294242527, 28.875122908829997 ], [ -81.997756189188863, 28.875151676913525 ], [ -81.997850310926523, 28.875172312409344 ], [ -81.998007270236798, 28.875200666248983 ], [ -81.998163540754945, 28.875228893573215 ], [ -81.998281683240819, 28.875249057216571 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yankee Clipper Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996745541779077, 28.874327008385311 ], [ -81.996805796353726, 28.874397362426659 ], [ -81.996878229875648, 28.874482038082981 ], [ -81.996996046464588, 28.874623558025451 ], [ -81.997041332053286, 28.87468117199758 ], [ -81.997137728148374, 28.874794245326935 ], [ -81.997139928993235, 28.874796688811383 ], [ -81.997175304587472, 28.874832724853139 ], [ -81.99724630520177, 28.874896511069988 ], [ -81.997322977001332, 28.874954990927332 ], [ -81.997352570503253, 28.874974770918783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yankee Clipper Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997352570503253, 28.874974770918783 ], [ -81.997370011495079, 28.874986428126107 ], [ -81.997389559092014, 28.874998547353311 ], [ -81.997475864363793, 28.875046586778506 ], [ -81.997529516259462, 28.875071373181228 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yankee Clipper Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997352570503253, 28.874974770918783 ], [ -81.997322247182595, 28.875022530056537 ], [ -81.997300523938264, 28.875056945218567 ], [ -81.997289228401968, 28.875083712683516 ], [ -81.997286620595574, 28.875115068540673 ], [ -81.99729357114694, 28.875141070338248 ], [ -81.997310078833692, 28.875168603544818 ], [ -81.997333538036941, 28.875190018382142 ], [ -81.997367423931067, 28.875204550668492 ], [ -81.997394361953297, 28.875206080625894 ], [ -81.997423901988356, 28.875198433312555 ], [ -81.997448230424752, 28.875186961930343 ], [ -81.99747690473815, 28.87516096085389 ], [ -81.997496891205614, 28.875133426588203 ], [ -81.997529516259462, 28.875071373181228 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oakcrest Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998484482696256, 28.872777136031431 ], [ -81.998594678152159, 28.872847408692234 ], [ -81.998672661512359, 28.872894702869726 ], [ -81.998733639807455, 28.872930116203104 ], [ -81.998822198154159, 28.872979815943825 ], [ -81.998907528607972, 28.87302569885561 ], [ -81.998946143749265, 28.873045295418592 ], [ -81.998988546730942, 28.873058213158494 ], [ -81.99903296311038, 28.873063834881918 ], [ -81.999077783477901, 28.873061956653633 ], [ -81.999096766286073, 28.873057901855663 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oakcrest Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99927948577708, 28.872967055718643 ], [ -81.99932216895732, 28.872947231495779 ], [ -81.999390202786543, 28.87292391729871 ], [ -81.999458142209377, 28.872908061501306 ], [ -81.999537371950638, 28.872900421188518 ], [ -81.999683271866019, 28.872893545329916 ], [ -81.999857476717139, 28.872885333068723 ], [ -82.000005707623004, 28.872882110315668 ], [ -82.000074141762582, 28.872889560938617 ], [ -82.000186882458692, 28.87290467584544 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oakcrest Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999096766286073, 28.873057901855663 ], [ -81.999121389194087, 28.873052644328883 ], [ -81.999162206721522, 28.873036237163078 ], [ -81.999175764746383, 28.873028796873992 ], [ -81.999197330919202, 28.873013493072342 ], [ -81.999257597801574, 28.872977220917257 ], [ -81.99927948577708, 28.872967055718643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oakcrest Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999096766286073, 28.873057901855663 ], [ -81.999128953571798, 28.873121902437422 ], [ -81.999153333241438, 28.873142100667486 ], [ -81.999176280975973, 28.873152200310635 ], [ -81.99919492538011, 28.873159775276211 ], [ -81.99922504375867, 28.873163562452138 ], [ -81.999247992682925, 28.87315977654649 ], [ -81.99926663623279, 28.873152201839471 ], [ -81.999289582158269, 28.873140839290738 ], [ -81.999306794770121, 28.873123165996837 ], [ -81.999316834843682, 28.873097917824786 ], [ -81.99931970230368, 28.873072668705287 ], [ -81.999309663969484, 28.873029747906102 ], [ -81.99927948577708, 28.872967055718643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003459113800147, 28.892623780107407 ], [ -82.003461962962049, 28.892620071593814 ], [ -82.003519331838163, 28.892551702188189 ], [ -82.003568332678327, 28.892497004592471 ], [ -82.003643170159265, 28.8924269366196 ], [ -82.003739244381791, 28.892361312843342 ], [ -82.003812150009111, 28.892322394926921 ], [ -82.00401772306644, 28.892223514936322 ], [ -82.004303712561935, 28.892094736540844 ], [ -82.004381058661124, 28.892065729960901 ], [ -82.004433646389032, 28.892040484828243 ], [ -82.004465916398445, 28.89202260302697 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003008992802407, 28.893123913035907 ], [ -82.003065166166294, 28.89307237174441 ], [ -82.003140462855896, 28.89300820779621 ], [ -82.003207393006846, 28.892940889526173 ], [ -82.003324520143167, 28.892798888650088 ], [ -82.003459113800147, 28.892623780107407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003459113800147, 28.892623780107407 ], [ -82.003198653833095, 28.892419260101995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002309941502475, 28.893371375844346 ], [ -82.002377923429819, 28.893362690330953 ], [ -82.002492664609406, 28.893340600470982 ], [ -82.002590671844089, 28.893314303335782 ], [ -82.002711386911557, 28.893274331420297 ], [ -82.00280102847529, 28.893239618510293 ], [ -82.00290501030976, 28.893187025320092 ], [ -82.003008992802407, 28.893123913035907 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00106079427151, 28.893492077483 ], [ -82.001255615348924, 28.89345421076538 ], [ -82.001562187996655, 28.89339729005405 ], [ -82.001686352917076, 28.893379807054835 ], [ -82.001855217638351, 28.893371062310155 ], [ -82.002079119286876, 28.893376367379478 ], [ -82.00210856674552, 28.89337636705466 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00210856674552, 28.89337636705466 ], [ -82.002226131015519, 28.893376365693758 ], [ -82.002303820513987, 28.893372158215627 ], [ -82.002309941502475, 28.893371375844346 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00210856674552, 28.89337636705466 ], [ -82.002124521465504, 28.893632725636152 ], [ -82.002134490856506, 28.893659046515332 ], [ -82.002152437968391, 28.893678351018028 ], [ -82.002172377149307, 28.893692387868086 ], [ -82.002198298912674, 28.893704669671234 ], [ -82.002234190516177, 28.893708179189328 ], [ -82.002268087794164, 28.893704669731232 ], [ -82.002296003360954, 28.893694141348472 ], [ -82.002315942946552, 28.893673084123307 ], [ -82.00232591218699, 28.893632724119914 ], [ -82.002309941502475, 28.893371375844346 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Horizon Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003498158068055, 28.893500376366774 ], [ -82.003658008285569, 28.893618263743448 ], [ -82.003797852578927, 28.8937150303667 ], [ -82.003860006308599, 28.893752895700931 ], [ -82.003918572389608, 28.893785500685986 ], [ -82.003995069026629, 28.893821261440713 ], [ -82.00418391570939, 28.893881212582773 ], [ -82.004247263570363, 28.893903298284954 ], [ -82.004300665059276, 28.893926107874815 ], [ -82.004353448280014, 28.893947964631916 ], [ -82.004536514434662, 28.894051599384255 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Horizon Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003008992802407, 28.893123913035907 ], [ -82.003075927313631, 28.893180709807194 ], [ -82.00318708359471, 28.893269064549767 ], [ -82.003362784533891, 28.89340054061498 ], [ -82.003498158068055, 28.893500376366774 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Horizon Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003498158068055, 28.893500376366774 ], [ -82.003287266496173, 28.893771219586249 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Horizon Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007324742677241, 28.895089308967513 ], [ -82.007334611490151, 28.895169593295631 ], [ -82.007338201799215, 28.89522639378265 ], [ -82.007335812468853, 28.895267415151583 ], [ -82.007322408852403, 28.895302753484366 ], [ -82.007305937546889, 28.895338941934547 ], [ -82.007284424321199, 28.895368395868104 ], [ -82.007234227263936, 28.895418886524272 ], [ -82.007107468990512, 28.895518350484604 ], [ -82.007014314482547, 28.895590345827152 ], [ -82.006984435209773, 28.895630317314069 ], [ -82.006961729355993, 28.89567554705793 ], [ -82.0069426087138, 28.895732347719161 ], [ -82.006940221031755, 28.895785991347232 ], [ -82.006943809727261, 28.895836480254356 ], [ -82.006949788216005, 28.895866983112676 ], [ -82.006965328893486, 28.895898538502973 ], [ -82.006988041255738, 28.895939556869536 ], [ -82.007015532382468, 28.895976371190955 ], [ -82.007052866814959, 28.896016628210724 ], [ -82.007167107956704, 28.896128078343008 ], [ -82.007345923334697, 28.896305087145141 ], [ -82.007470953108708, 28.896440209203188 ], [ -82.007498447541806, 28.896475971341438 ], [ -82.007521159285403, 28.896518044402193 ], [ -82.007543873960586, 28.896572737921527 ], [ -82.007553439165093, 28.896616914913061 ], [ -82.007573772348493, 28.896810451683098 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Horizon Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004536514434662, 28.894051599384255 ], [ -82.004635719407219, 28.894102085544805 ], [ -82.004700264153556, 28.894127326339699 ], [ -82.004769586527274, 28.894145206896145 ], [ -82.004859968818053, 28.894167856310574 ], [ -82.004955053507373, 28.894174459914485 ], [ -82.005043296180148, 28.894176753390443 ], [ -82.005232469438951, 28.894154730009458 ], [ -82.005503148571904, 28.894104457831148 ], [ -82.005796178877702, 28.894051997075252 ], [ -82.006086725613144, 28.893999534880912 ], [ -82.006322638704745, 28.893960187512644 ], [ -82.006484051972677, 28.893949253717096 ], [ -82.006587517421551, 28.893956859160976 ], [ -82.00668768707834, 28.893973283752825 ], [ -82.006776363912138, 28.894002079327684 ], [ -82.006856556793664, 28.894036652663562 ], [ -82.006955653701425, 28.894095685507882 ], [ -82.007045300287913, 28.894167206559953 ], [ -82.007089526818646, 28.8942176926248 ], [ -82.00713255809265, 28.89427133227035 ], [ -82.0071779806199, 28.894343908350688 ], [ -82.007204280198025, 28.894399653852641 ], [ -82.007224603099971, 28.894452245202725 ], [ -82.007238950622323, 28.894521665636457 ], [ -82.007277214801931, 28.894783572488784 ], [ -82.007300300571515, 28.894922554373277 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orista Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012932094724363, 28.853700236014834 ], [ -82.013469455354766, 28.853905330637655 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eisenhower Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013469455354766, 28.853905330637655 ], [ -82.013494615088874, 28.853858738628496 ], [ -82.013531418671434, 28.853786954951513 ], [ -82.013564000111828, 28.853719279862251 ], [ -82.013595017383011, 28.853650627717776 ], [ -82.013635066703884, 28.853554604174288 ], [ -82.013669005280619, 28.853465069682429 ], [ -82.013687150765307, 28.85341335321624 ], [ -82.013710936652586, 28.853340501508509 ], [ -82.013741608058581, 28.853237595148268 ], [ -82.013766390793378, 28.853138293157745 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kelvington Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013766390793378, 28.853138293157745 ], [ -82.013639035567252, 28.853112261309942 ], [ -82.013498559340448, 28.853083751956166 ], [ -82.01338925318737, 28.853061570999749 ], [ -82.013369911809846, 28.853057394244345 ], [ -82.013347990598817, 28.853051877805093 ], [ -82.013320520267456, 28.853043745196967 ], [ -82.013300520586185, 28.853036930152765 ], [ -82.013279800271448, 28.853029036918095 ], [ -82.013256586135213, 28.853019128162781 ], [ -82.013225809682041, 28.853004127495964 ], [ -82.01320577670495, 28.852993119428305 ], [ -82.013183315430311, 28.852979498506677 ], [ -82.013167375957693, 28.852968934890441 ], [ -82.013148899538123, 28.852955670907132 ], [ -82.013127195249979, 28.85293852820875 ], [ -82.013108773846795, 28.852922475189267 ], [ -82.013093590297089, 28.85290805684658 ], [ -82.013081193657399, 28.852895382402107 ], [ -82.013070141757993, 28.85288330876832 ], [ -82.013053795384707, 28.852863910705068 ], [ -82.013040408121881, 28.852846405405231 ], [ -82.013029164095158, 28.852830339084811 ], [ -82.013020228406944, 28.85281650485561 ], [ -82.013011012728356, 28.852801041990332 ], [ -82.013000914233857, 28.8527823940674 ], [ -82.012989301284549, 28.852758027470987 ], [ -82.012980431296697, 28.85273645867219 ], [ -82.012973839003152, 28.852718001716159 ], [ -82.012968611047327, 28.852701212095702 ], [ -82.012947133556935, 28.852625983444259 ], [ -82.012932281324453, 28.852579077550498 ], [ -82.012918279434103, 28.85253796167077 ], [ -82.012903150111811, 28.852496337893527 ], [ -82.012891904562082, 28.852467013988953 ], [ -82.012875740302647, 28.852426928732353 ], [ -82.012846536208556, 28.852359740299988 ], [ -82.012813421909485, 28.852290162005296 ], [ -82.012778615855098, 28.852223075118378 ], [ -82.012741485522056, 28.852157061270496 ], [ -82.012718246703088, 28.852118214587904 ], [ -82.012705057975325, 28.852096923161579 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 37th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051493073468706, 28.810589649329362 ], [ -82.05103230561555, 28.810628941324627 ], [ -82.050306421758052, 28.810707496770995 ], [ -82.048499016962651, 28.810924925204493 ], [ -82.047745804311475, 28.81104042254184 ], [ -82.047562895328113, 28.811069865286942 ], [ -82.047245395850084, 28.811142139031084 ], [ -82.047046474619577, 28.811210300208597 ], [ -82.046454774897612, 28.811453109503347 ], [ -82.04618580424706, 28.811529015070757 ], [ -82.046056692694506, 28.811548011471753 ], [ -82.045578939606017, 28.811544382099434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 37th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051493073468706, 28.810589649329362 ], [ -82.051544528145101, 28.81112538928657 ], [ -82.051560175628737, 28.811195667946095 ], [ -82.051602394809038, 28.811279590356769 ], [ -82.051664771769794, 28.811346413596702 ], [ -82.051789286412017, 28.811432408179687 ], [ -82.051876258197765, 28.811460927079857 ], [ -82.051990115510435, 28.811484758149835 ], [ -82.05212249173303, 28.811477718563797 ], [ -82.053312860008489, 28.811388754699681 ], [ -82.053426697046291, 28.81137199956104 ], [ -82.053508006298244, 28.811352868623242 ], [ -82.05359201300142, 28.811307475748684 ], [ -82.053681429100266, 28.81123820738156 ], [ -82.053749143947343, 28.811137911615329 ], [ -82.0537843287687, 28.811032853567635 ], [ -82.053786984681423, 28.810923032360726 ], [ -82.053762511044027, 28.810772638601115 ], [ -82.053721809843907, 28.810689097042964 ], [ -82.053670270432633, 28.810615109769572 ], [ -82.053597048485841, 28.810548291695373 ], [ -82.053518415403246, 28.810495798966837 ], [ -82.053428949129938, 28.810464798935133 ], [ -82.053271685331367, 28.810457250102132 ], [ -82.052195651703457, 28.810529733601886 ], [ -82.051493073468706, 28.810589649329362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maplewood Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012705057975424, 28.852096924063879 ], [ -82.012817540948703, 28.852039558955987 ], [ -82.012877750515116, 28.852008851686133 ], [ -82.012909131553542, 28.851991576015013 ], [ -82.012930776602175, 28.851978106242317 ], [ -82.012956102549396, 28.851960527032741 ], [ -82.012974362313656, 28.851946490010747 ], [ -82.013001254636279, 28.851923405684825 ], [ -82.013026161578097, 28.851898973490862 ], [ -82.013051266861481, 28.851870610831764 ], [ -82.013074790403365, 28.851839539592394 ], [ -82.01308850906274, 28.851818727560463 ], [ -82.013100731387581, 28.851797954463901 ], [ -82.013111326253565, 28.851777715680861 ], [ -82.013120601090108, 28.851757703497242 ], [ -82.013131496388596, 28.851730260678494 ], [ -82.013142722218461, 28.851698702413252 ], [ -82.013170851126773, 28.851597121878967 ], [ -82.013199187485668, 28.851507842448161 ], [ -82.013250961248602, 28.851355346212355 ], [ -82.0133148097744, 28.851167775307843 ], [ -82.013362900152131, 28.851026502242398 ], [ -82.013420432219277, 28.850857488687982 ], [ -82.013445251804512, 28.850784573741233 ], [ -82.013459699234318, 28.850741477360074 ], [ -82.013470125342479, 28.850709006005847 ], [ -82.013478794342291, 28.850681010252686 ], [ -82.013490117525308, 28.850642910229578 ], [ -82.013497790469842, 28.850615982899257 ], [ -82.01350661983048, 28.850583758022605 ], [ -82.013513316249416, 28.850558331318069 ], [ -82.013521220261794, 28.850527082822786 ], [ -82.013528047510107, 28.850498886026784 ], [ -82.013532373229367, 28.850480376621022 ], [ -82.01354535812591, 28.850421255421132 ], [ -82.01355136427712, 28.850391777427852 ], [ -82.013556484295464, 28.85036536284613 ], [ -82.013559840533176, 28.850347313707481 ], [ -82.013562040427701, 28.850335137786033 ], [ -82.013563512122943, 28.850326820192741 ], [ -82.01356451475003, 28.850321074215085 ], [ -82.013565582912179, 28.850314877980683 ], [ -82.013566569135207, 28.850309085084685 ], [ -82.013567601434318, 28.850302950210466 ], [ -82.013568540530827, 28.850297298980927 ], [ -82.013569384378883, 28.850292162074631 ], [ -82.013570200569404, 28.850287137056895 ], [ -82.013570734109507, 28.850283814716772 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kelvington Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012705057975424, 28.852096924063879 ], [ -82.01269581995912, 28.852082312051159 ], [ -82.012646909804062, 28.852008748732395 ], [ -82.01257038056481, 28.851904563585713 ], [ -82.012493988025355, 28.851811308909426 ], [ -82.01238444643316, 28.851688602208348 ], [ -82.01230234274702, 28.851597191324998 ], [ -82.01226296480408, 28.851553349883439 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ironwood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000085769270143, 28.837323391192335 ], [ -82.000137133709885, 28.837266112040265 ], [ -82.000221297135141, 28.837162873959162 ], [ -82.000425044668589, 28.836888553211736 ], [ -82.000498247924611, 28.836789993393324 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Satinwood Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999890661313586, 28.836548813683667 ], [ -81.999983980251884, 28.836570719148177 ], [ -82.000144053356777, 28.836617496393885 ], [ -82.000271405633825, 28.836669436411874 ], [ -82.000398914821787, 28.836732090309795 ], [ -82.000498247924611, 28.836789993393324 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kettering Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999890661313586, 28.836548813683667 ], [ -81.99990665474688, 28.836483935087198 ], [ -81.99994635364888, 28.836374513205659 ], [ -82.000114366477149, 28.835956336643065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kettering Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000114366477149, 28.835956336643065 ], [ -82.000198437878126, 28.835747088227684 ], [ -82.000236239259507, 28.835653002035009 ], [ -82.000289396080419, 28.835587316017303 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warnock Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999361336084988, 28.83588741562307 ], [ -81.999463416048513, 28.835881903075645 ], [ -81.999558419179991, 28.835877411832847 ], [ -81.999730578537765, 28.835886302906683 ], [ -81.999834971220437, 28.835896512797071 ], [ -81.999934471835516, 28.835908132906141 ], [ -82.000031969986296, 28.835930398508903 ], [ -82.000114366477149, 28.835956336643065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Umatilla Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999361336084988, 28.83588741562307 ], [ -81.999353966350697, 28.835769605772775 ], [ -81.999353932377034, 28.835682891292482 ], [ -81.999362464025964, 28.835606882742347 ], [ -81.999379478402432, 28.83552885667892 ], [ -81.999482023620587, 28.835247014166868 ], [ -81.999530720137201, 28.835072836506203 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warnock Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998661460311979, 28.835998158098683 ], [ -81.998747012623568, 28.835982718721667 ], [ -81.99891814585736, 28.835952291861183 ], [ -81.999113279349316, 28.835917657507895 ], [ -81.999310760304013, 28.835890147508373 ], [ -81.999361336084988, 28.83588741562307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998661460311979, 28.835998158098683 ], [ -81.998629992855712, 28.835870263753286 ], [ -81.998629243608363, 28.835758929799962 ], [ -81.998622743298839, 28.835603069599866 ], [ -81.998620322906731, 28.835481102828567 ], [ -81.99862512289711, 28.835351076723327 ], [ -81.998633538025601, 28.835287073419551 ], [ -81.998669131599428, 28.835122999064708 ], [ -81.99876893237105, 28.834624438038276 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warnock Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998265597390869, 28.836628101062914 ], [ -81.99838171726978, 28.83618775935701 ], [ -81.998405965552109, 28.836137643698649 ], [ -81.998440116773992, 28.836092160608519 ], [ -81.998469849016956, 28.836062363171553 ], [ -81.99853774865052, 28.836026510800476 ], [ -81.998582410966151, 28.836012423594472 ], [ -81.998661460311979, 28.835998158098683 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warnock Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998103187601203, 28.837262216100658 ], [ -81.998125965937291, 28.837156404643604 ], [ -81.99824994734756, 28.836687442908527 ], [ -81.998265597390869, 28.836628101062914 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Satinwood Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998265597390869, 28.836628101062914 ], [ -81.998410295532693, 28.836652386803699 ], [ -81.99850395476831, 28.836657718807484 ], [ -81.998601272488145, 28.83665450232586 ], [ -81.998753023744342, 28.836632583313783 ], [ -81.99896184810639, 28.836595456247831 ], [ -81.999231701897457, 28.836547478133046 ], [ -81.999375178071801, 28.836527286283648 ], [ -81.999527753787731, 28.83651859062493 ], [ -81.999657530976691, 28.836521387405753 ], [ -81.999807175769334, 28.836536324661804 ], [ -81.999890661313586, 28.836548813683667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wading Heron Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995173821828743, 28.835348124420648 ], [ -81.995171588916449, 28.835389783888107 ], [ -81.995149351133918, 28.835556123501604 ], [ -81.995121844209748, 28.835740761711879 ], [ -81.99510856624596, 28.835831926779175 ], [ -81.995100512349424, 28.835923210241603 ], [ -81.995098997480881, 28.835990159610986 ], [ -81.995100214465666, 28.836038624406719 ], [ -81.99510454190073, 28.836099949007245 ], [ -81.995111366846885, 28.836156863220381 ], [ -81.995118252586366, 28.836207298865983 ], [ -81.995133873450968, 28.836273076772414 ], [ -81.995156294798718, 28.836353370350945 ], [ -81.995176029067068, 28.836418053903898 ], [ -81.99528263101115, 28.836767473699901 ], [ -81.995290890146791, 28.836794463821551 ], [ -81.995299835019097, 28.8368177707477 ], [ -81.995313600154063, 28.836843848832366 ], [ -81.995331000123599, 28.836868649377706 ], [ -81.995348566273663, 28.83689005093402 ], [ -81.995377774431006, 28.836913912590138 ], [ -81.995399642786737, 28.836928778877898 ], [ -81.995424285198183, 28.836942247584734 ], [ -81.995452781748966, 28.836954260096697 ], [ -81.995486022912331, 28.836965455275841 ], [ -81.995529212555553, 28.83697125679284 ], [ -81.995567864845498, 28.836972464494426 ], [ -81.995610532321933, 28.836968512022978 ], [ -81.995739938838085, 28.836952019419559 ], [ -81.995911887807722, 28.836930105164523 ], [ -81.996079629084193, 28.836908727436583 ], [ -81.996208579321518, 28.836895243565451 ], [ -81.996249229954202, 28.836893618786632 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wading Heron Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995173821828743, 28.835348124420648 ], [ -81.995649844848984, 28.835312188658953 ], [ -81.995859929225276, 28.835296312167472 ], [ -81.995971871975527, 28.835286816178147 ], [ -81.996070584513632, 28.835275543955508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wading Heron Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997405841143333, 28.834809493251381 ], [ -81.997451867393622, 28.834781404431336 ], [ -81.997506587620009, 28.834744243962412 ], [ -81.997555923921382, 28.834706854181732 ], [ -81.997604921109385, 28.834665533021049 ], [ -81.997667292384733, 28.834605730116049 ], [ -81.997723954951212, 28.834542676064132 ], [ -81.997760154352889, 28.834497708389826 ], [ -81.9978133195293, 28.834430878078965 ], [ -81.997834182618021, 28.834397538160413 ], [ -81.997848495714877, 28.834363098213913 ], [ -81.997856576460705, 28.83432871229876 ], [ -81.997858995535779, 28.834298261252084 ], [ -81.99785704317091, 28.834267408604241 ], [ -81.99784701220436, 28.834225318476065 ], [ -81.997833690694875, 28.834190706618823 ], [ -81.997808136139923, 28.83415529510415 ], [ -81.997791995248662, 28.834137051962024 ], [ -81.997754320293396, 28.834104754089935 ], [ -81.997714832491425, 28.834078177709287 ], [ -81.997645809867308, 28.834030578803027 ], [ -81.997424653855788, 28.833877715439741 ], [ -81.99739306037408, 28.833859752554815 ], [ -81.997362752707147, 28.833849113722817 ], [ -81.997336293777664, 28.8338417214682 ], [ -81.997313237840018, 28.833837292459187 ], [ -81.997274885985078, 28.833833286304486 ], [ -81.997239756694555, 28.833834722027682 ], [ -81.997214787393787, 28.83383778392151 ], [ -81.99718440751613, 28.833843611266204 ], [ -81.997157714451603, 28.833852839484408 ], [ -81.997123364527724, 28.833868117501193 ], [ -81.99709688438621, 28.83388388203106 ], [ -81.99706628667424, 28.833907784377477 ], [ -81.996999005941987, 28.833971223197661 ], [ -81.996921353649881, 28.834044532985477 ], [ -81.996851399217903, 28.834109106770228 ], [ -81.996813619946636, 28.834139469407983 ], [ -81.996763397432474, 28.834172090200731 ], [ -81.996723086306801, 28.834194725384304 ], [ -81.996673351826018, 28.834218281570173 ], [ -81.996598275866845, 28.83424676818716 ], [ -81.996487992169875, 28.834286594921462 ], [ -81.996275848861416, 28.834363207582882 ], [ -81.996180045494086, 28.834396538764313 ], [ -81.996117390292028, 28.834415490789485 ], [ -81.996046866211941, 28.834435190560146 ], [ -81.995991602483656, 28.834449037492892 ], [ -81.995925438751883, 28.834463823365237 ], [ -81.995839061295868, 28.834480259785334 ], [ -81.995785941465783, 28.834488788499382 ], [ -81.995710281803369, 28.834498897297394 ], [ -81.995631861625498, 28.834506882830226 ], [ -81.995384300515937, 28.834525719929331 ], [ -81.995348089722739, 28.834530569454639 ], [ -81.995308869054952, 28.83454089496896 ], [ -81.995274659119204, 28.834554212705655 ], [ -81.99524209152662, 28.834573145555225 ], [ -81.995217750436623, 28.834591058187179 ], [ -81.995188727909252, 28.834619044007987 ], [ -81.995169396319881, 28.834643872102426 ], [ -81.995146310257198, 28.83468679403456 ], [ -81.995137130442771, 28.834714204904763 ], [ -81.995131852810857, 28.834740772261338 ], [ -81.995129978428864, 28.834764416266665 ], [ -81.995132037369871, 28.834799786810777 ], [ -81.995138344645767, 28.834838575454402 ], [ -81.99516079342969, 28.834978952825935 ], [ -81.995173451989018, 28.835099709147421 ], [ -81.995176230706946, 28.835147667811725 ], [ -81.995177873617735, 28.835203893377827 ], [ -81.995177484114848, 28.835247172556556 ], [ -81.995177133756727, 28.835286328189909 ], [ -81.995173821828743, 28.835348124420648 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147332322613835, 28.59190297577118 ], [ -82.147467675969764, 28.591631489855089 ], [ -82.147932678572204, 28.590676959924245 ], [ -82.148226136088155, 28.590075957582968 ], [ -82.148296997386851, 28.589924333089026 ], [ -82.148541047939077, 28.589422506014888 ], [ -82.148891217016399, 28.588713933498255 ], [ -82.148997293250403, 28.588495419231364 ], [ -82.148997998649534, 28.58849396568958 ], [ -82.148998439015671, 28.58849305925677 ], [ -82.148998977238548, 28.588491949690059 ], [ -82.148999294261117, 28.588491296950199 ], [ -82.149000094479192, 28.58848966103168 ], [ -82.149000693882357, 28.588488438605324 ], [ -82.149001091444475, 28.588487626965225 ], [ -82.149002227043582, 28.588485307607137 ], [ -82.149003069063582, 28.588483591334445 ], [ -82.149004146559406, 28.588481392051332 ], [ -82.149004893771775, 28.588479866276451 ], [ -82.14900576127468, 28.588478096737699 ], [ -82.149006508489563, 28.58847657276749 ], [ -82.149007836753952, 28.58847386067993 ], [ -82.149008308730473, 28.588472896462662 ], [ -82.149008744011553, 28.588472008984596 ], [ -82.149010054947226, 28.588469333009645 ], [ -82.149011362823515, 28.588466662452063 ], [ -82.149012022371679, 28.588465318143722 ], [ -82.149013216076014, 28.588462880515202 ], [ -82.149014720695448, 28.588459809102645 ], [ -82.149016093815618, 28.588457007634112 ], [ -82.149017503631214, 28.588454129426363 ], [ -82.149018817624508, 28.588451447131582 ], [ -82.149019286542796, 28.58845048923401 ], [ -82.149020600541093, 28.588447810548566 ], [ -82.149021086786647, 28.588446815636033 ], [ -82.149022553689136, 28.588443821866029 ], [ -82.149023900304883, 28.588441074566898 ], [ -82.149025404923691, 28.58843800315422 ], [ -82.149027307104134, 28.588434120101361 ], [ -82.149028844344173, 28.588430982781979 ], [ -82.149030447844183, 28.588427710038857 ], [ -82.149032305169342, 28.588423917269161 ], [ -82.14903412885954, 28.588420196723568 ], [ -82.149036241034494, 28.588415885730829 ], [ -82.149038532621304, 28.588411208191005 ], [ -82.149039149352149, 28.58840994965183 ], [ -82.149041916996282, 28.588404302476032 ], [ -82.14904471114032, 28.588398598423666 ], [ -82.149045601122765, 28.588396821641339 ], [ -82.149046277983359, 28.588395430392094 ], [ -82.149048672486558, 28.588390513618901 ], [ -82.149051539007274, 28.588384662405453 ], [ -82.149054407568485, 28.588378808482723 ], [ -82.149057157877337, 28.588373193809861 ], [ -82.149059931635676, 28.588367533994205 ], [ -82.1490627757277, 28.588361727922145 ], [ -82.14906572074031, 28.588355716908016 ], [ -82.149067933833607, 28.588351200972724 ], [ -82.149070019501849, 28.588346944148938 ], [ -82.14907055672127, 28.588345849020492 ], [ -82.149073670947004, 28.588339489517065 ], [ -82.149074753540077, 28.588337282106703 ], [ -82.149086350092333, 28.588313611819004 ], [ -82.149087922897607, 28.588310323768848 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.149768647776213, 28.586921024528223 ], [ -82.149856286406617, 28.586734394207244 ], [ -82.149944849064553, 28.586552212261672 ], [ -82.150079109857174, 28.586268821955063 ], [ -82.150344798732718, 28.585727334899197 ], [ -82.150467645854235, 28.585479361080246 ], [ -82.150773326317889, 28.584854371322358 ], [ -82.151019006155124, 28.584350835851271 ], [ -82.151309604171715, 28.583773412263533 ], [ -82.151487592032268, 28.583404591354313 ], [ -82.151751888512237, 28.582866643689261 ], [ -82.152575819551032, 28.581128487433926 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.152575819551032, 28.581128487433926 ], [ -82.153479922178732, 28.579301672408548 ], [ -82.153774434470776, 28.57872548581323 ], [ -82.153914632862595, 28.57841973278386 ], [ -82.15399980522065, 28.578217181416225 ], [ -82.154089300501312, 28.578012713041073 ], [ -82.154178756473414, 28.577781507296844 ], [ -82.154333938769255, 28.577366868176455 ], [ -82.154467511017558, 28.576972309722439 ], [ -82.154613925003986, 28.576480327631284 ], [ -82.154711847809821, 28.576122097952151 ], [ -82.154789269074925, 28.575801135697056 ], [ -82.154855897147158, 28.575497376191894 ], [ -82.154911745754276, 28.575219412462133 ], [ -82.154980394416611, 28.574818241621493 ], [ -82.155036129008366, 28.574462924485598 ], [ -82.155120867671641, 28.573968147707678 ], [ -82.155234513383348, 28.57326897049273 ], [ -82.1553213612344, 28.572738856201291 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burnsed Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018067267805591, 28.864420824262712 ], [ -82.018067344681327, 28.864420824252782 ], [ -82.020524979850279, 28.864405011058896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020528811818082, 28.865318741697614 ], [ -82.020373896385237, 28.865317274730181 ], [ -82.019198918853476, 28.865318321122672 ], [ -82.017861548557931, 28.865312803001451 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020524231540449, 28.861830191738182 ], [ -82.020521780025035, 28.862615153166331 ], [ -82.020522751529299, 28.863344485169563 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999506582365754, 28.853936898536915 ], [ -81.999538788321601, 28.85391354341624 ], [ -81.999566639452112, 28.853886188349627 ], [ -81.99958949620904, 28.853855456830072 ], [ -81.999606842034922, 28.853822046339978 ], [ -81.999618284387807, 28.853786721132451 ], [ -81.999619450802371, 28.853777613267173 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999618543364775, 28.853693167410707 ], [ -81.999613261156199, 28.853670864206663 ], [ -81.999597173464863, 28.853633346285971 ], [ -81.99957430805145, 28.853598661573194 ], [ -81.999545287031566, 28.853567751172204 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Prairie Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000098979688914, 28.853799090466918 ], [ -82.000101354395156, 28.853799229432258 ], [ -82.000163978172409, 28.853805773207831 ], [ -82.000222864111308, 28.853820728231604 ], [ -82.000307918981591, 28.853850639016137 ], [ -82.000498343570868, 28.85393669858917 ], [ -82.000559092883492, 28.85393227646216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998832213508607, 28.860522278085565 ], [ -81.998823934249359, 28.860489871741233 ], [ -81.998821223566225, 28.860465041199237 ], [ -81.998819813815913, 28.860424361692719 ], [ -81.998822417779692, 28.860389219667844 ], [ -81.998830228617422, 28.86035331434433 ], [ -81.998849320448983, 28.86030747746462 ], [ -81.998882407517357, 28.860242287186214 ], [ -81.99916011284742, 28.859777042374798 ], [ -81.999282474630704, 28.859573831607083 ], [ -81.999350165560827, 28.859456947495037 ], [ -81.999410044011299, 28.859346174613083 ], [ -81.999476000449704, 28.859225470066651 ], [ -81.99954108564485, 28.859089487660274 ], [ -81.999598361550966, 28.858947392074025 ], [ -81.999653033853463, 28.858812935361961 ], [ -81.999708574371724, 28.858645630226576 ], [ -81.999754684039743, 28.85848843987225 ], [ -81.999791353709597, 28.858337794791989 ], [ -81.999837880604062, 28.858119267531965 ], [ -81.99986912121841, 28.857899249610224 ], [ -81.999915115302159, 28.857569221796691 ], [ -81.999953297761408, 28.857296492102659 ], [ -81.999961977521551, 28.857168146467771 ], [ -81.999969788173658, 28.857024523904744 ], [ -81.999969788735271, 28.856888540241279 ], [ -81.999964583767408, 28.856721233954907 ], [ -81.999953301943776, 28.856560039869166 ], [ -81.999932475034882, 28.856377454819668 ], [ -81.9999095120193, 28.856241568553063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998832213508607, 28.860522278085565 ], [ -81.998810192427896, 28.86048901080683 ], [ -81.998782509349837, 28.860459200195173 ], [ -81.998749854072415, 28.860433585241712 ], [ -81.998713034264455, 28.860412802978388 ], [ -81.9986729652164, 28.860397367725387 ], [ -81.998630639091488, 28.860387662970464 ], [ -81.99858710647716, 28.860383928736653 ], [ -81.998543449736545, 28.860386258875408 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037029785171583, 28.884321912327508 ], [ -82.037029835494621, 28.884389468464157 ], [ -82.037028867923738, 28.885259226015606 ], [ -82.036992705611397, 28.885722198935117 ], [ -82.036974717169883, 28.886123804170204 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 130", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036974717169883, 28.886123804170204 ], [ -82.035554093671948, 28.886122280548719 ], [ -82.03447122736118, 28.886122974648007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036974717169883, 28.886123804170204 ], [ -82.036959223731628, 28.887304497181368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 126", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036959223731628, 28.887304497181368 ], [ -82.036162329429999, 28.887303201969114 ], [ -82.035662521421841, 28.887293189203646 ], [ -82.035610291912505, 28.887293202774966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036947870371378, 28.88826953283078 ], [ -82.03694400207516, 28.8887796853104 ], [ -82.036915436200275, 28.889993617592115 ], [ -82.03691519164866, 28.890012617386418 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036921477314152, 28.892649979051296 ], [ -82.036928585313007, 28.892924846436717 ], [ -82.036941912381621, 28.893972773379303 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Horizon Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007300300571515, 28.894922554373277 ], [ -82.007315476060398, 28.895013923192749 ], [ -82.007324742677241, 28.895089308967513 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Horizon Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007300300571515, 28.894922554373277 ], [ -82.007408809242449, 28.894910843403203 ], [ -82.007456857598299, 28.894900692803436 ], [ -82.00748568699585, 28.894897308612595 ], [ -82.007524125928796, 28.894898997553675 ], [ -82.0075606447094, 28.894919293807423 ], [ -82.007574099294814, 28.894941279448947 ], [ -82.007583711724607, 28.894973415257382 ], [ -82.007583713584452, 28.895000476127397 ], [ -82.00757026305034, 28.895037688564916 ], [ -82.007551043863216, 28.895056294074404 ], [ -82.007520293683967, 28.895069825640054 ], [ -82.007489541897911, 28.895074901748437 ], [ -82.007443416263612, 28.895074904097637 ], [ -82.007324742677241, 28.895089308967513 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baypoint Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009738273382254, 28.897294478980207 ], [ -82.00984241726799, 28.89734991005032 ], [ -82.010022910504887, 28.897437199519505 ], [ -82.010271534767099, 28.897549729303833 ], [ -82.010534091168083, 28.897655475016133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baypoint Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007573772348493, 28.896810451683098 ], [ -82.00777457420557, 28.896806234621032 ], [ -82.00798254828662, 28.896803067143527 ], [ -82.008165423048112, 28.896809368584595 ], [ -82.008379978516601, 28.896817237050666 ], [ -82.008494120868178, 28.896828282677692 ], [ -82.008594523199051, 28.896844053463695 ], [ -82.008739151863935, 28.89687034232184 ], [ -82.008866109607382, 28.896903258596694 ], [ -82.009134324413949, 28.896991752033433 ], [ -82.009401345296382, 28.897117481103262 ], [ -82.00958309652448, 28.897212505593931 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baypoint Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00958309652448, 28.897212505593931 ], [ -82.00964877715775, 28.897246842712423 ], [ -82.009738273382254, 28.897294478980207 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baypoint Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00958309652448, 28.897212505593931 ], [ -82.009545180351637, 28.897301126546012 ], [ -82.009518226994274, 28.897331208286385 ], [ -82.009497912972847, 28.897353211296881 ], [ -82.009486978021471, 28.897379341705388 ], [ -82.009483856581184, 28.897410969307806 ], [ -82.009493235338965, 28.897446722300302 ], [ -82.009515113894849, 28.897470098527737 ], [ -82.009541680455939, 28.897483676372026 ], [ -82.0095709810317, 28.897490893721038 ], [ -82.009602624995395, 28.897492094375202 ], [ -82.009627627158167, 28.897485218083556 ], [ -82.009657317194836, 28.897467338834158 ], [ -82.009676065398423, 28.897443959899054 ], [ -82.009685438238037, 28.897412330066391 ], [ -82.009695202366999, 28.897376403457091 ], [ -82.009738273382254, 28.897294478980207 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brookside Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012038234620249, 28.898656217560251 ], [ -82.012047401866724, 28.898643725352223 ], [ -82.012062544267081, 28.898617066538691 ], [ -82.012076393336798, 28.898587157752047 ], [ -82.012094093604844, 28.898548197672529 ], [ -82.01215536288926, 28.898327942106903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brookside Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010534091168083, 28.897655475016133 ], [ -82.01031621121561, 28.898063615302167 ], [ -82.010300275414991, 28.898107201113049 ], [ -82.010291911597477, 28.898149275928301 ], [ -82.010291919164302, 28.898229216029815 ], [ -82.01030785339907, 28.89830947439739 ], [ -82.010346917080369, 28.898386987198482 ], [ -82.010399515001495, 28.898450094699054 ], [ -82.010455698121206, 28.898497422508054 ], [ -82.010517855776499, 28.898532127590272 ], [ -82.010734209378455, 28.898623623569222 ], [ -82.011194411539904, 28.898818177087136 ], [ -82.011358400724703, 28.898879786606265 ], [ -82.011395227237088, 28.898890738473135 ], [ -82.011439425511881, 28.898896992367661 ], [ -82.011537464370505, 28.898899141838953 ], [ -82.011643377936494, 28.898892058268988 ], [ -82.011700319356748, 28.898880342647939 ], [ -82.011757116556893, 28.898862566271667 ], [ -82.011808863296139, 28.898839237543072 ], [ -82.011862572987013, 28.89881076011169 ], [ -82.011903527199379, 28.89879035569782 ], [ -82.011914054555589, 28.898782149305735 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brookside Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011914054555589, 28.898782149305735 ], [ -82.011947699433307, 28.898755919346751 ], [ -82.012014939224457, 28.898687963322327 ], [ -82.012038234620249, 28.898656217560251 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brookside Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011914054555589, 28.898782149305735 ], [ -82.011979264438054, 28.898845885830944 ], [ -82.012000724878916, 28.898863655699365 ], [ -82.012028494451187, 28.898873649917718 ], [ -82.012060050547689, 28.898873648138736 ], [ -82.012086555036802, 28.898866982402048 ], [ -82.012115585106713, 28.89885253952826 ], [ -82.012134516524057, 28.898838098415681 ], [ -82.01214839812809, 28.898814770989546 ], [ -82.01215218251194, 28.898785890777265 ], [ -82.012147130208803, 28.898754791666775 ], [ -82.012130716547247, 28.898728134645363 ], [ -82.012092848184409, 28.898698148165817 ], [ -82.012038234620249, 28.898656217560251 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Upland Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998962885012546, 28.893301137722727 ], [ -81.998959600682028, 28.893249097539449 ], [ -81.998956016430625, 28.893161793662934 ], [ -81.998963415954748, 28.893089082782165 ], [ -81.998970361245711, 28.89301769196117 ], [ -81.998989484025344, 28.892938804936716 ], [ -81.999019367265859, 28.892855707868215 ], [ -81.999052832688719, 28.892783132542977 ], [ -81.999099449564952, 28.892702140657761 ], [ -81.999144867603874, 28.892637980252669 ], [ -81.999216580474098, 28.892544366236017 ], [ -81.999263195657065, 28.892503343480158 ], [ -81.999323492267521, 28.892459749238451 ], [ -81.999387496124371, 28.892430767741658 ], [ -81.999462556591226, 28.892407298423837 ], [ -81.999532118300834, 28.892397109092009 ], [ -81.99960741541409, 28.892391850818331 ], [ -81.999692276366929, 28.892390799961898 ], [ -82.000202630827545, 28.892370817310894 ], [ -82.000844455293404, 28.892346624347105 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Upland Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999327720564082, 28.894056911447635 ], [ -81.999104946447162, 28.893670463837068 ], [ -81.99902051728283, 28.893504372277786 ], [ -81.998985893298752, 28.893404768887081 ], [ -81.998963185358818, 28.893305895553425 ], [ -81.998962885012546, 28.893301137722727 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Upland Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998962885012546, 28.893301137722727 ], [ -81.998608917126262, 28.893354543046655 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 125C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016899436244501, 28.893486632323871 ], [ -82.016774969690701, 28.893467773911816 ], [ -82.016648432905356, 28.893480559283731 ], [ -82.016576542826812, 28.893516949451442 ], [ -82.016116620590225, 28.893799776695371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021737046026473, 28.921472052275096 ], [ -82.021649595770256, 28.921502522101548 ], [ -82.021585831150858, 28.921518561364007 ], [ -82.021530534047827, 28.921531656890334 ], [ -82.021475877211813, 28.921541282966668 ], [ -82.021415196103703, 28.921545503397194 ], [ -82.021351178531162, 28.921548330268603 ], [ -82.021296761779041, 28.921548337760669 ], [ -82.021246099461194, 28.921547453185447 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021246099461194, 28.921547453185447 ], [ -82.021216736259831, 28.921546942483886 ], [ -82.021122305958812, 28.921537100261798 ], [ -82.021024022226911, 28.92152532313456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021246099461194, 28.921547453185447 ], [ -82.02124001497917, 28.921481798557359 ], [ -82.021229894027144, 28.921442652198273 ], [ -82.021221797495429, 28.921418630714314 ], [ -82.021203589354229, 28.921391940887201 ], [ -82.021178302292327, 28.921373260018537 ], [ -82.021149984579523, 28.921364366812814 ], [ -82.021117622240865, 28.9213617027678 ], [ -82.021084250456482, 28.921367936409315 ], [ -82.021057960310699, 28.921390184717382 ], [ -82.021037739499491, 28.921417769177545 ], [ -82.021026623211654, 28.921453361029293 ], [ -82.021025616072677, 28.921479163237006 ], [ -82.021024022226911, 28.92152532313456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022663291934279, 28.920451627679583 ], [ -82.022613285209033, 28.920488076911031 ], [ -82.022576773805, 28.920519748064418 ], [ -82.022553095984591, 28.920550208937392 ], [ -82.022523437697302, 28.92059809862975 ], [ -82.022480937216002, 28.920698908263915 ], [ -82.022439016214904, 28.920790566703094 ], [ -82.022405750791137, 28.920862260424919 ], [ -82.022357751227318, 28.920939712270588 ], [ -82.022304220006561, 28.921008873794289 ], [ -82.022208958865875, 28.921129105649349 ], [ -82.0221433443416, 28.921198840203651 ], [ -82.02207453889001, 28.92127207253457 ], [ -82.021991989459053, 28.921334209680964 ], [ -82.021929479339192, 28.921375472589357 ], [ -82.021866968462959, 28.921413297721195 ], [ -82.021795342995915, 28.92144960118658 ], [ -82.021737046026473, 28.921472052275096 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Atwell Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010426211990634, 28.931594729326427 ], [ -82.010467130785457, 28.931602590713684 ], [ -82.010621423889035, 28.931620092778836 ], [ -82.010779035384559, 28.931630297556953 ], [ -82.011025952182052, 28.931632767966306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Atwell Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010311391386708, 28.931572670294031 ], [ -82.010426211990634, 28.931594729326427 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Atwell Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009586369815267, 28.931410172608853 ], [ -82.009670930391223, 28.93142707409449 ], [ -82.010007887507228, 28.931502563847111 ], [ -82.010219144724672, 28.931550136738593 ], [ -82.010275731138051, 28.93156395941951 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Atwell Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010275731138051, 28.93156395941951 ], [ -82.010311391386708, 28.931572670294031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Atwell Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010275731138051, 28.93156395941951 ], [ -82.010286717664798, 28.931472755572194 ], [ -82.010279913534575, 28.931441835325792 ], [ -82.01027650785646, 28.93141527742813 ], [ -82.010279908753645, 28.93139133839933 ], [ -82.010288409334933, 28.931368147003262 ], [ -82.010305981849541, 28.931344082429181 ], [ -82.01034226158923, 28.931321138043224 ], [ -82.010386480755855, 28.931317144866153 ], [ -82.010425032212098, 28.931325121031421 ], [ -82.010457915874042, 28.931344072215044 ], [ -82.010473791302715, 28.931367010985952 ], [ -82.01048513293992, 28.931396933851712 ], [ -82.010485136217497, 28.93143084750259 ], [ -82.010468130752173, 28.93146376447174 ], [ -82.010443189587235, 28.931495685889679 ], [ -82.010426211990634, 28.931594729326427 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004239597646531, 28.949323968788502 ], [ -82.004264844645377, 28.949267794062163 ], [ -82.004368804061215, 28.949011740355594 ], [ -82.004432684472135, 28.948860721805769 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004432684472135, 28.948860721805769 ], [ -82.004487613045953, 28.94873086585736 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Riverdale Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004487613045953, 28.94873086585736 ], [ -82.004591512588249, 28.948773136043233 ], [ -82.00462075942427, 28.948778036403137 ], [ -82.004662540776778, 28.948778034213959 ], [ -82.004697360171207, 28.948787832930677 ], [ -82.004717902964202, 28.948797172820019 ], [ -82.004735661782405, 28.948810034441642 ], [ -82.004747150910816, 28.94882840926633 ], [ -82.004754464353084, 28.948858727868114 ], [ -82.004751332026018, 28.948897315408562 ], [ -82.004743404033604, 28.94891455125039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004432684472135, 28.948860721805769 ], [ -82.004544165170032, 28.948905437017974 ], [ -82.004574806111421, 28.948934835489531 ], [ -82.004604052478498, 28.948952443740431 ], [ -82.004631211955598, 28.948961630953189 ], [ -82.004667772920953, 28.948962548358644 ], [ -82.004707463192645, 28.948950603476693 ], [ -82.004739148211598, 28.948923805296545 ], [ -82.004743404033604, 28.94891455125039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neira Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000978135605351, 28.959221662474672 ], [ -82.001024698218245, 28.959270802874251 ], [ -82.001082435442342, 28.959321580865808 ], [ -82.001166248297849, 28.959403480526952 ], [ -82.001280197576889, 28.959513050519842 ], [ -82.001336113170808, 28.959584738105594 ], [ -82.001380559937701, 28.959670764052888 ], [ -82.001445078801638, 28.959798369219047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cavazos Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996499620247221, 28.959173320646702 ], [ -81.996417148347206, 28.959267192735158 ], [ -81.996371550859024, 28.959332495675188 ], [ -81.996324445318152, 28.959394143374368 ], [ -81.996247533093637, 28.959503501537945 ], [ -81.996158604137904, 28.959654919596979 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Larranaga Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000808812703809, 28.957493114703617 ], [ -82.000723336986084, 28.957207324904271 ], [ -82.000689863769011, 28.957028584632159 ], [ -82.000675517986494, 28.956894004270531 ], [ -82.00066834438509, 28.95674470571576 ], [ -82.000615138818787, 28.955995246169362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caribe Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997714401140072, 28.952093407765314 ], [ -81.997766630730354, 28.952038465438637 ], [ -81.997804905355196, 28.951982682811192 ], [ -81.997836620330759, 28.951934591196448 ], [ -81.997874896348193, 28.951860530815818 ], [ -81.997894581177974, 28.951799938623761 ], [ -81.997904424407736, 28.951756655835105 ], [ -81.997913174213451, 28.951706641927302 ], [ -81.997911632981726, 28.951550331507754 ], [ -81.997895696182724, 28.950949687017463 ], [ -81.997904346288948, 28.950604687578032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caribe Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997984641876897, 28.952349597548576 ], [ -81.997714401140072, 28.952093407765314 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gerardo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9759167246239, 28.939396495617686 ], [ -81.975992119193023, 28.939396295342767 ], [ -81.976067234303571, 28.939398047539214 ], [ -81.976128512481665, 28.939398058502096 ], [ -81.976175953522443, 28.939397198061428 ], [ -81.97620659361823, 28.939392856270533 ], [ -81.976237235320667, 28.939381558690449 ], [ -81.976264912806457, 28.939369392570175 ], [ -81.97678387530614, 28.939043457960558 ], [ -81.976958837131164, 28.938935682192398 ], [ -81.977001341377516, 28.93891047672183 ], [ -81.977029018596753, 28.938893962289491 ], [ -81.977046811803461, 28.938881794307125 ], [ -81.977065594016096, 28.938868757583268 ], [ -81.977080421404892, 28.938858325100437 ], [ -81.97709722539588, 28.938847895661787 ], [ -81.977119684395902, 28.938832440510971 ], [ -81.977138742751336, 28.938818343628853 ], [ -81.977156536319512, 28.938804436009377 ], [ -81.977175320110504, 28.938788789836551 ], [ -81.97719014760996, 28.93877314298544 ], [ -81.977208930111132, 28.938754018464884 ], [ -81.977365138665675, 28.938528870381141 ], [ -81.977693224887005, 28.938031600135123 ], [ -81.977736481807497, 28.93796232561591 ], [ -81.977767377837182, 28.937910709624223 ], [ -81.977785914616788, 28.937883543735879 ], [ -81.977796729520549, 28.937861810175374 ], [ -81.977804454763358, 28.937845510616953 ], [ -81.977810475030282, 28.93783016359717 ], [ -81.977813836951171, 28.937813179374153 ], [ -81.977815519096509, 28.937803949186353 ], [ -81.977816359195273, 28.937794349820379 ], [ -81.977816360951806, 28.937786225565763 ], [ -81.977816782392111, 28.937777364206692 ], [ -81.977816785585205, 28.937762595459471 ], [ -81.9778159488515, 28.937751888700163 ], [ -81.977814691648362, 28.937740810125877 ], [ -81.977813015547454, 28.937731579380017 ], [ -81.977810917951231, 28.937721978623543 ], [ -81.977808820981636, 28.937714224862926 ], [ -81.977803380777658, 28.937698727961902 ], [ -81.97779616968181, 28.937685456725472 ], [ -81.977789613655034, 28.937673917099708 ], [ -81.977781090402814, 28.937661800580468 ], [ -81.977767976982065, 28.937645067160499 ], [ -81.977668612477487, 28.937541002548976 ], [ -81.977586352464883, 28.937459190402535 ], [ -81.977535885495783, 28.937417392175714 ], [ -81.977509549769238, 28.937404025671125 ], [ -81.977486902314851, 28.937396489504824 ], [ -81.97745619845945, 28.937390478656507 ], [ -81.977445716882741, 28.937388932159461 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gerardo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977445716882741, 28.937388932159461 ], [ -81.977426035848126, 28.93738603156822 ], [ -81.977395662431903, 28.937388662934083 ], [ -81.97736368215871, 28.93739385653581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gerardo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977445716882741, 28.937388932159461 ], [ -81.977440828238571, 28.937295707217118 ], [ -81.977435704761945, 28.937272237683736 ], [ -81.977418264955602, 28.937250723143951 ], [ -81.977401852138286, 28.937237483714281 ], [ -81.977367652430914, 28.937227851348112 ], [ -81.977344395106584, 28.937227847405008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zaragoza Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9759167246239, 28.939396495617686 ], [ -81.975918000846804, 28.939356289638379 ], [ -81.975915043169024, 28.939331946122167 ], [ -81.975914058425104, 28.93931455784174 ], [ -81.975914062705428, 28.939296299928376 ], [ -81.975913079809558, 28.939279781459366 ], [ -81.975912093633056, 28.939264131898586 ], [ -81.975911107252898, 28.939249352148941 ], [ -81.975910123542775, 28.93923631021752 ], [ -81.975908150599125, 28.939220661381018 ], [ -81.975906179089989, 28.939203272020016 ], [ -81.975902227483871, 28.939187622826527 ], [ -81.975899268183298, 28.939170233287186 ], [ -81.975895318223039, 28.939156322813815 ], [ -81.975892356056832, 28.939142411616228 ], [ -81.975889392457432, 28.939130240040711 ], [ -81.975885443520525, 28.939111981413419 ], [ -81.975880505154379, 28.939096332040986 ], [ -81.975875569249865, 28.939078942144072 ], [ -81.975868631508334, 28.939059786096454 ], [ -81.975863832247924, 28.939041474981732 ], [ -81.97585903196368, 28.939023162964325 ], [ -81.975855833231094, 28.939007669099624 ], [ -81.975853756028314, 28.93899051251001 ], [ -81.975851711464927, 28.938969779233595 ], [ -81.975852644430333, 28.938949919915625 ], [ -81.975853771069524, 28.938926510106484 ], [ -81.975858900977741, 28.938903975343294 ], [ -81.975867072006238, 28.938882313647259 ], [ -81.975876683412665, 28.938864004232222 ], [ -81.975889656457653, 28.938844485447071 ], [ -81.975907082497898, 28.938828262640687 ], [ -81.976206588052989, 28.938633068950647 ], [ -81.976240218060497, 28.938610539244472 ], [ -81.976269042886699, 28.938595050177604 ], [ -81.976293065515677, 28.938578150869454 ], [ -81.976321890649345, 28.938561255115101 ], [ -81.976347514765507, 28.938542948502555 ], [ -81.976377942031732, 28.938521826675267 ], [ -81.976406768485631, 28.938503521519802 ], [ -81.976433700808926, 28.938483388878897 ], [ -81.976458716285876, 28.938462079303555 ], [ -81.976483537888043, 28.938440769689382 ], [ -81.97650445945871, 28.938424662011176 ], [ -81.976528481627867, 28.938404948405822 ], [ -81.976555708836955, 28.938382415690274 ], [ -81.976579731950594, 28.938358475731253 ], [ -81.976614966557449, 28.938324676561034 ], [ -81.976674222932246, 28.938272573132632 ], [ -81.976733481801631, 28.938209199124927 ], [ -81.976762311931907, 28.938173992123463 ], [ -81.976797549352199, 28.938131744726977 ], [ -81.976930141174407, 28.937939460884568 ], [ -81.977117394632998, 28.937641982412643 ], [ -81.977151223182219, 28.937591507562022 ], [ -81.977164549352793, 28.937568973243913 ], [ -81.977178716756015, 28.937545809266954 ], [ -81.977191837889023, 28.937522734436854 ], [ -81.977201024320266, 28.937508889401506 ], [ -81.977213754213963, 28.937492358840764 ], [ -81.97723220595185, 28.937474333250854 ], [ -81.977256804222719, 28.937449998963082 ], [ -81.977272179414328, 28.937438282585664 ], [ -81.977284766093732, 28.937429180580303 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zaragoza Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977284766093732, 28.937429180580303 ], [ -81.977293901667892, 28.937422575536946 ], [ -81.977317657348394, 28.937409519769844 ], [ -81.97736368215871, 28.93739385653581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zaragoza Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977284766093732, 28.937429180580303 ], [ -81.977262288905152, 28.937333734800941 ], [ -81.977260924850128, 28.937314478711848 ], [ -81.977263666022424, 28.937294020563616 ], [ -81.977274616699546, 28.937261530819079 ], [ -81.977291038211831, 28.937244685075569 ], [ -81.977314297173606, 28.937232656034855 ], [ -81.977344395106584, 28.937227847405008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96538081520734, 28.939991817488131 ], [ -81.965452111301161, 28.939915007405769 ], [ -81.965611168896288, 28.939747987782518 ], [ -81.965980094808529, 28.939343060444685 ], [ -81.966019859725364, 28.939303247809914 ], [ -81.966039742651958, 28.939281883832674 ], [ -81.966057411825034, 28.939267319878851 ], [ -81.966073980299697, 28.939249840332867 ], [ -81.966090546147299, 28.939237218733396 ], [ -81.966107113654772, 28.939222653591674 ], [ -81.966124785179133, 28.939207116956851 ], [ -81.966144666154293, 28.939191581780626 ], [ -81.966166754457547, 28.939173132750508 ], [ -81.966223080992123, 28.939136239549303 ], [ -81.96679295649264, 28.938746898884919 ], [ -81.967316443894532, 28.93838668404409 ], [ -81.967578090516028, 28.938209265566321 ], [ -81.967596463177316, 28.938197237926211 ], [ -81.967612293197519, 28.938187959860102 ], [ -81.967628513912416, 28.938179025660578 ], [ -81.967645551390575, 28.93816919748323 ], [ -81.967657699258879, 28.938162400732171 ], [ -81.967673161163873, 28.938152693078017 ], [ -81.967690830145003, 28.938143955920687 ], [ -81.967710708443875, 28.938132303982492 ], [ -81.967729482135027, 28.938123567988793 ], [ -81.96774604547889, 28.938117744064513 ], [ -81.967764818557512, 28.938110950704409 ], [ -81.967782486917571, 28.938104155271208 ], [ -81.96780125999139, 28.938097361906006 ], [ -81.967817824050002, 28.938092508841244 ], [ -81.967829972015423, 28.938088625581429 ], [ -81.967841013211142, 28.938084744761554 ], [ -81.967855368859034, 28.938079890259296 ], [ -81.96787193363518, 28.938076009860822 ], [ -81.96789401656109, 28.93807310165208 ], [ -81.967919413937267, 28.93806922156126 ], [ -81.967950330488165, 28.938066314557677 ], [ -81.968019893341776, 28.938064390360353 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964595898537382, 28.940580364232503 ], [ -81.964684996311135, 28.940576469998561 ], [ -81.964728061524184, 28.940571257068498 ], [ -81.964762217433716, 28.940564736161967 ], [ -81.964809740626734, 28.940550378731647 ], [ -81.964851325414216, 28.94053079725116 ], [ -81.964885488103164, 28.940507294248764 ], [ -81.964924105812429, 28.940477261604034 ], [ -81.965079867388809, 28.940316047117406 ], [ -81.96525264697425, 28.940129901077988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96525264697425, 28.940129901077988 ], [ -81.96538081520734, 28.939991817488131 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palo Alto Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96525264697425, 28.940129901077988 ], [ -81.965194251568789, 28.94007266425896 ], [ -81.965163242776427, 28.940039913766352 ], [ -81.965141541797436, 28.940009895127723 ], [ -81.965129145232467, 28.939974420934682 ], [ -81.965138463868712, 28.93993895239505 ], [ -81.965163285685847, 28.939915767202116 ], [ -81.965189655211077, 28.939902130477748 ], [ -81.965231533969998, 28.939898048553584 ], [ -81.96527030283255, 28.939911702195239 ], [ -81.96538081520734, 28.939991817488131 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camino Del Rey Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965746469404422, 28.935621005032065 ], [ -81.965760979453563, 28.935684925457473 ], [ -81.965767249400827, 28.935725828957366 ], [ -81.965769749934765, 28.935763414659952 ], [ -81.965770989941348, 28.935813161160777 ], [ -81.965769718418045, 28.935858484875673 ], [ -81.965764675930444, 28.935908229769876 ], [ -81.965757119487535, 28.935954656285201 ], [ -81.965744539529695, 28.935996660273641 ], [ -81.965729445167895, 28.936039768927532 ], [ -81.965716865338834, 28.936075141953442 ], [ -81.965698005704354, 28.936111616875301 ], [ -81.965674114920375, 28.936148090504844 ], [ -81.965646455928834, 28.936186772881658 ], [ -81.965616283989235, 28.936222139578849 ], [ -81.965587370294543, 28.936255296874158 ], [ -81.965560968931996, 28.936287348596604 ], [ -81.965532054914476, 28.936318293454502 ], [ -81.965506914371986, 28.936340397698274 ], [ -81.965470461665959, 28.936370234388264 ], [ -81.965423954191721, 28.936398964967086 ], [ -81.96539127568785, 28.936417748605031 ], [ -81.965358597258557, 28.936433217206599 ], [ -81.965318375595544, 28.936451999777685 ], [ -81.965266844532394, 28.936476306857603 ], [ -81.965224109452194, 28.936496193156465 ], [ -81.96517132034819, 28.93652492021155 ], [ -81.965132355307574, 28.936549232311478 ], [ -81.96510595923921, 28.936568017515096 ], [ -81.965064477232445, 28.936597853685836 ], [ -81.965026766027648, 28.936629902351058 ], [ -81.964992827125087, 28.93665974046894 ], [ -81.964961399818989, 28.936690685447665 ], [ -81.964931227502177, 28.936726051085941 ], [ -81.964902309419642, 28.936768051613875 ], [ -81.964878418003252, 28.936811158763735 ], [ -81.964845726206008, 28.936865317603356 ], [ -81.964826860035743, 28.936910635780308 ], [ -81.964813023076175, 28.936952641149798 ], [ -81.964797924047275, 28.937007909005228 ], [ -81.964784084802247, 28.937056545328989 ], [ -81.964777786887154, 28.937098549969086 ], [ -81.964773996338195, 28.937157140333564 ], [ -81.96477398266056, 28.937200251033321 ], [ -81.964780240835779, 28.937268791830459 ], [ -81.964791513569395, 28.937377129619211 ], [ -81.96482411885583, 28.937580543208416 ], [ -81.964904332488032, 28.938212886381994 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camino Del Rey Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963512868322567, 28.933819901400174 ], [ -81.963538585770479, 28.933842462152747 ], [ -81.96357975915295, 28.933877379513312 ], [ -81.963621911154306, 28.93390624453605 ], [ -81.963672631230153, 28.933939728909493 ], [ -81.963721544251214, 28.933966838966825 ], [ -81.963765021207976, 28.933990759729994 ], [ -81.963813934186561, 28.934021056657322 ], [ -81.963875526191472, 28.934056140951149 ], [ -81.963944367768221, 28.934094414071751 ], [ -81.964009583174274, 28.934127904022667 ], [ -81.96428615152233, 28.934277275275917 ], [ -81.964414171041767, 28.934345316173342 ], [ -81.964515614870976, 28.93441335171568 ], [ -81.964573582023192, 28.934455871438075 ], [ -81.964631546311537, 28.934506893453936 ], [ -81.964687092654515, 28.934562162808692 ], [ -81.964725731654781, 28.934604678270137 ], [ -81.964766377267708, 28.934658314123098 ], [ -81.964812661059227, 28.934736466780642 ], [ -81.964848880306761, 28.934791731890598 ], [ -81.96488751759405, 28.934842746915958 ], [ -81.964923740526331, 28.934887386588596 ], [ -81.964969626230243, 28.934936279487001 ], [ -81.965010684509593, 28.934974542984378 ], [ -81.965054157739516, 28.935008559097774 ], [ -81.965097634075775, 28.935042572490914 ], [ -81.965143525666662, 28.93507446520465 ], [ -81.965187000414858, 28.935104228762327 ], [ -81.965230479695407, 28.935129743403451 ], [ -81.965286035661592, 28.93515525935652 ], [ -81.965348840233389, 28.935187154577839 ], [ -81.965418889410316, 28.935219051640505 ], [ -81.965479274968772, 28.935261572495264 ], [ -81.965537242983956, 28.935304091798322 ], [ -81.965583128840848, 28.935350858679879 ], [ -81.96562418467748, 28.935397624305828 ], [ -81.965660406703918, 28.935446512680201 ], [ -81.965669055759818, 28.935461104994893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camino Del Rey Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965669055759818, 28.935461104994893 ], [ -81.96568938212603, 28.935495401895004 ], [ -81.965720767158231, 28.935559166942056 ], [ -81.965745921449283, 28.935618593059573 ], [ -81.965746469404422, 28.935621005032065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camino Del Rey Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965669055759818, 28.935461104994893 ], [ -81.965813563211356, 28.935410299487241 ], [ -81.965873564905621, 28.935395429643027 ], [ -81.965899717841694, 28.935394082863603 ], [ -81.965922790972186, 28.935400854138791 ], [ -81.965941634160018, 28.935410501750571 ], [ -81.965959702560809, 28.935430636528341 ], [ -81.965970464787873, 28.935450937274013 ], [ -81.965975072005136, 28.935476651122588 ], [ -81.965973524388133, 28.935501009063625 ], [ -81.965955056215677, 28.935526717047619 ], [ -81.965913510899099, 28.935548358833255 ], [ -81.965841199200781, 28.935576759968384 ], [ -81.965746469404422, 28.935621005032065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camino Del Rey Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962126271278507, 28.932071461762487 ], [ -81.962127147452009, 28.932079189261295 ], [ -81.962134373083003, 28.932138698536047 ], [ -81.962139179645405, 28.932202456031732 ], [ -81.962143996293904, 28.932247087590788 ], [ -81.962148816588922, 28.932278968825372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camino Del Rey Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961648207337532, 28.931533576224769 ], [ -81.961757697084266, 28.931607281680215 ], [ -81.961921928565843, 28.931732718533489 ], [ -81.961979891368131, 28.931777364289989 ], [ -81.962025778477127, 28.931817756791986 ], [ -81.962059081313612, 28.931853420398625 ], [ -81.962078244485099, 28.931891183245092 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camino Del Rey Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962078244485099, 28.931891183245092 ], [ -81.962080868316065, 28.93189634962447 ], [ -81.962100448280339, 28.931941542981907 ], [ -81.962111985464517, 28.931971249784095 ], [ -81.962117163331783, 28.932004129962394 ], [ -81.962122331065203, 28.932036683506801 ], [ -81.962126271278507, 28.932071461762487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camino Del Rey Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962078244485099, 28.931891183245092 ], [ -81.962108903592693, 28.931883725429508 ], [ -81.962146280221717, 28.931875211113031 ], [ -81.962193344738679, 28.931874006301918 ], [ -81.962225181790984, 28.931876451475997 ], [ -81.962247324276007, 28.931889852280218 ], [ -81.96226254470966, 28.93190827420592 ], [ -81.962273955901068, 28.931932023107347 ], [ -81.962279137342136, 28.931958053962017 ], [ -81.962271858912516, 28.931986820675387 ], [ -81.962252126154425, 28.932008732757289 ], [ -81.962222360681722, 28.932023795396464 ], [ -81.962126271278507, 28.932071461762487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 72nd Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984407440203142, 28.671708439842689 ], [ -81.984413959881621, 28.671298345640334 ], [ -81.984414086588544, 28.670441134730865 ], [ -81.984410977600888, 28.669629488451751 ], [ -81.984404610486607, 28.669008649985045 ], [ -81.984388578197581, 28.668242568951868 ], [ -81.984435152678202, 28.668077709976082 ], [ -81.98445217980013, 28.66806619909249 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 571A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98445217980013, 28.66806619909249 ], [ -81.984487420947502, 28.668042376185038 ], [ -81.984516378792577, 28.6679587431755 ], [ -81.984527406639501, 28.667855148463321 ], [ -81.984536608267746, 28.66729082479284 ], [ -81.984540522671281, 28.666983411959368 ], [ -81.984536694121701, 28.666705299690509 ], [ -81.984539316454018, 28.666425067674986 ], [ -81.984541941819515, 28.666138004080342 ], [ -81.984541393370336, 28.665482419811543 ], [ -81.984528553675872, 28.664966952051358 ], [ -81.984511171346369, 28.664600142319021 ], [ -81.98451248363682, 28.664462875839757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 542H", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.085245681250683, 28.69018841135189 ], [ -82.085133052282018, 28.690141000009092 ], [ -82.084555408594795, 28.690137041618847 ], [ -82.083967989743883, 28.690150353750095 ], [ -82.083625341110775, 28.69017646234261 ], [ -82.083591785550979, 28.690111720829535 ], [ -82.083584313282984, 28.689811226060062 ], [ -82.083594879514266, 28.689558016783906 ], [ -82.083634163041921, 28.689307956218158 ], [ -82.083587352891271, 28.689118083154604 ], [ -82.08360141730131, 28.688750929979861 ], [ -82.083619327178226, 28.688703444737968 ], [ -82.08364439282235, 28.688627468555637 ], [ -82.083651484731035, 28.688519852326309 ], [ -82.083663804809447, 28.688364806423866 ], [ -82.083672704118939, 28.688121045504644 ], [ -82.08365098698566, 28.687893177095969 ], [ -82.083648905573753, 28.687532365374569 ], [ -82.083623557249595, 28.687250692303049 ], [ -82.083601928336748, 28.687133600191764 ], [ -82.083616213099603, 28.68704180551633 ], [ -82.083669931181163, 28.686889851819455 ], [ -82.083684214828949, 28.68679805713434 ], [ -82.083641067693321, 28.686703132199622 ], [ -82.083608737309063, 28.686668336448268 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 76th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189854162435466, 28.645204722684309 ], [ -82.189891330753781, 28.645178169282445 ], [ -82.18994759134246, 28.645164918503916 ], [ -82.19039555710637, 28.645164293475034 ], [ -82.190682798257882, 28.645209488081356 ], [ -82.190763184495907, 28.645199241319599 ], [ -82.190803330262199, 28.645168787216747 ], [ -82.190825316587592, 28.645136973481847 ], [ -82.190825251252832, 28.645101418005243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.186634924539717, 28.644252983300277 ], [ -82.187023697189673, 28.644195571042498 ], [ -82.18747893815187, 28.644125622946078 ], [ -82.188419651112483, 28.643991014019303 ], [ -82.188951438112866, 28.643912067904171 ], [ -82.189392579799119, 28.643845688151512 ], [ -82.190572988218776, 28.643671625180264 ], [ -82.190803744552184, 28.643638341417194 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.190803744552184, 28.643638341417194 ], [ -82.191128942512165, 28.64358730569322 ], [ -82.191572094399646, 28.643520916026393 ], [ -82.192575235218769, 28.643373747193589 ], [ -82.192964001296403, 28.643316318814414 ], [ -82.193348744456671, 28.643262449330138 ], [ -82.193729446379479, 28.643203250809545 ], [ -82.194193482540129, 28.643128490691613 ], [ -82.194491589450308, 28.643076518254052 ], [ -82.194781624143474, 28.643019223919737 ], [ -82.194985058817977, 28.642983383344991 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 52nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.190825251252832, 28.645101418005243 ], [ -82.190806186585803, 28.644959224264369 ], [ -82.190802792190269, 28.644568123166188 ], [ -82.190803744552184, 28.643638341417194 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bosie Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993384906444504, 28.852286040312805 ], [ -81.993528454808271, 28.852104480106775 ], [ -81.993590783963384, 28.852005055398593 ], [ -81.993604861362826, 28.851981341688195 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Key Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992970936995903, 28.851754827137221 ], [ -81.992994699042882, 28.851754951113275 ], [ -81.993037286990983, 28.851759179764837 ], [ -81.993062031682527, 28.851762520500206 ], [ -81.993099434544519, 28.851769288849759 ], [ -81.993133822093597, 28.851777400565148 ], [ -81.993166245871862, 28.851786785323263 ], [ -81.993209014498035, 28.851801902953465 ], [ -81.993317603457257, 28.851849590834469 ], [ -81.993604860337811, 28.851981343492756 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Merry Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992970936995903, 28.851754827137221 ], [ -81.992971969200582, 28.851723916910228 ], [ -81.992973445111403, 28.851708455982738 ], [ -81.992975450710489, 28.851695517027455 ], [ -81.992979030782763, 28.851679118716241 ], [ -81.992983714638811, 28.851663000178291 ], [ -81.992991655935043, 28.851641970563701 ], [ -81.99300288725388, 28.851619019212066 ], [ -81.993076653121392, 28.8514932687693 ], [ -81.993124403972317, 28.851414303282304 ], [ -81.993144777773367, 28.851383322776172 ], [ -81.993165307154214, 28.851355105134704 ], [ -81.993184440425921, 28.851329860514941 ], [ -81.993200285515456, 28.851309601863893 ], [ -81.993221005235071, 28.851285184734756 ], [ -81.993244293435907, 28.851258853943587 ], [ -81.993267582551297, 28.851233972251194 ], [ -81.993291701778048, 28.851209584158074 ], [ -81.993307655138779, 28.851194165467028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Key Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99196827286255, 28.851929081947201 ], [ -81.992278491945527, 28.851810255937917 ], [ -81.992327454261741, 28.851793584179426 ], [ -81.992376619304238, 28.851779345030589 ], [ -81.992427292729857, 28.851768267628856 ], [ -81.992464271237225, 28.851761653134119 ], [ -81.992506166999448, 28.851757146693746 ], [ -81.992568287861459, 28.851753434505241 ], [ -81.992586903879655, 28.851754355901946 ], [ -81.992662648314109, 28.851754360127419 ], [ -81.992860836213637, 28.851754992670823 ], [ -81.992970936995903, 28.851754827137221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ichabod Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992121723012858, 28.85239092902491 ], [ -81.992097621707856, 28.852246922339006 ], [ -81.992089655350327, 28.852219265297276 ], [ -81.992080102664218, 28.852189060049309 ], [ -81.992070033350345, 28.852159951070789 ], [ -81.9920615623694, 28.852137195320395 ], [ -81.992051583964013, 28.852112066415355 ], [ -81.992042108571098, 28.852089627312512 ], [ -81.9920206839152, 28.852042158436344 ], [ -81.992003150070587, 28.852003691191463 ], [ -81.99199023358608, 28.851975350798536 ], [ -81.991978286438524, 28.851949710161161 ], [ -81.99196827286255, 28.851929081947201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ichabod Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99196827286255, 28.851929081947201 ], [ -81.991942881066052, 28.851879828958818 ], [ -81.991918500415096, 28.851836070165525 ], [ -81.991878261435005, 28.851769975626468 ], [ -81.991835990905741, 28.851707191508755 ], [ -81.991779938730872, 28.851632262391945 ], [ -81.991733098864131, 28.851575572129047 ], [ -81.991688946713182, 28.851526258366299 ], [ -81.991635465548299, 28.85147113315216 ], [ -81.991588738573029, 28.851426586073842 ], [ -81.991581505484945, 28.85141996539836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nursery Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993051808737434, 28.851114784540428 ], [ -81.99305105969826, 28.850922652946025 ], [ -81.993057759993434, 28.85075250010032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quaker Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993051808737434, 28.851114784540428 ], [ -81.993056123500352, 28.851114701755286 ], [ -81.993082535795267, 28.851114171683562 ], [ -81.993104669138461, 28.851114578878835 ], [ -81.993123155865078, 28.851116185947106 ], [ -81.993138382433813, 28.851117875855582 ], [ -81.993163494840985, 28.851122219053281 ], [ -81.993182642378272, 28.851127327093543 ], [ -81.993200769097641, 28.851132962025048 ], [ -81.99322625215045, 28.851142684776438 ], [ -81.993244073249642, 28.851151394744051 ], [ -81.993259815894717, 28.851160010763373 ], [ -81.993265000568826, 28.851163107741083 ], [ -81.99327058902071, 28.851166595437491 ], [ -81.993278487442694, 28.851171813873613 ], [ -81.993284185524402, 28.851175796940868 ], [ -81.993287727347195, 28.851178370496779 ], [ -81.993292253001954, 28.851181776028433 ], [ -81.993299720927851, 28.851187691021359 ], [ -81.993305221174509, 28.851192178466533 ], [ -81.993307083285259, 28.851193698945991 ], [ -81.99330736408794, 28.851193927243585 ], [ -81.993307513712594, 28.851194050867051 ], [ -81.993307655138779, 28.851194165467028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quaker Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991581505484945, 28.85141996539836 ], [ -81.991608298888025, 28.851397787523414 ], [ -81.991627505421732, 28.851383442981291 ], [ -81.991650383184975, 28.851367958153482 ], [ -81.991665413905835, 28.851358641891924 ], [ -81.9916818026078, 28.851349194879617 ], [ -81.991700958555924, 28.851339034314918 ], [ -81.991717686381165, 28.851330883932636 ], [ -81.991737452017546, 28.851322071445427 ], [ -81.991757216556593, 28.851314097197172 ], [ -81.991827755443197, 28.851287078416263 ], [ -81.991859117891181, 28.851275067050356 ], [ -81.991909343914557, 28.851255826655784 ], [ -81.991955914044823, 28.85123798910568 ], [ -81.991991187541046, 28.851224479216818 ], [ -81.992019411634118, 28.851214006054761 ], [ -81.992044821267285, 28.851205080171898 ], [ -81.992064839830874, 28.851198378144609 ], [ -81.992102560591348, 28.851186515983262 ], [ -81.992128621933432, 28.851178898466628 ], [ -81.992159167194117, 28.851170553952272 ], [ -81.992178064376048, 28.851165704275203 ], [ -81.992201471108288, 28.851160021130841 ], [ -81.992226338294017, 28.851154372355833 ], [ -81.99225142579968, 28.851149074586026 ], [ -81.992275844013577, 28.851144299207451 ], [ -81.992292798896003, 28.851141204385385 ], [ -81.992316667713212, 28.851137149909608 ], [ -81.992339580274958, 28.851133585326238 ], [ -81.992359241847552, 28.851130782999533 ], [ -81.992377650968564, 28.851128548148047 ], [ -81.992409761876786, 28.85112465203391 ], [ -81.992422030847223, 28.851123394020949 ], [ -81.992455002581195, 28.851120457096261 ], [ -81.992484539866183, 28.851118372647225 ], [ -81.992516301114577, 28.851116705182822 ], [ -81.99254848559508, 28.851115618819602 ], [ -81.992579199322009, 28.851115147738636 ], [ -81.992606069699676, 28.851115188043114 ], [ -81.99275305214087, 28.851116823942025 ], [ -81.992795036462084, 28.851116943537345 ], [ -81.992817257969691, 28.85111700520153 ], [ -81.992840543311615, 28.851116986614496 ], [ -81.992849699617267, 28.851116967259593 ], [ -81.992870166534715, 28.851116897985797 ], [ -81.992890255272528, 28.851116798010136 ], [ -81.992908524844509, 28.851116678083116 ], [ -81.992926901006328, 28.851116529285562 ], [ -81.992945127537027, 28.851116354310641 ], [ -81.992959132573276, 28.851116201665924 ], [ -81.992976536125525, 28.851115989648353 ], [ -81.992990771763132, 28.851115797311188 ], [ -81.993005885727584, 28.851115573438328 ], [ -81.99301886383455, 28.851115369301603 ], [ -81.993032298016104, 28.85111514082547 ], [ -81.99304338726337, 28.851114942000542 ], [ -81.993051808737434, 28.851114784540428 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ichabod Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991581505484945, 28.85141996539836 ], [ -81.991553537429624, 28.851395016673404 ], [ -81.991472076021296, 28.851327776154484 ], [ -81.991419832857858, 28.851287812374387 ], [ -81.991369753110988, 28.851249634377503 ], [ -81.99130613455516, 28.851201137609912 ], [ -81.991233653243725, 28.851148338935477 ], [ -81.991192036829901, 28.851125060301875 ], [ -81.991143155870219, 28.851103990014714 ], [ -81.991055365899015, 28.851075773538327 ], [ -81.991040892913546, 28.851071229452813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Long Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991040892913546, 28.851071229452813 ], [ -81.991042217353453, 28.851067962293474 ], [ -81.99104533265826, 28.851060265836534 ], [ -81.991049950770531, 28.851048865516198 ], [ -81.991055984555388, 28.851033973368246 ], [ -81.991062687718482, 28.851017599679164 ], [ -81.991069923779435, 28.851001659132315 ], [ -81.991091559662408, 28.850959974065177 ], [ -81.991118678495269, 28.850908367608309 ], [ -81.991143587288178, 28.850860963035593 ], [ -81.991167709843367, 28.850815059842262 ], [ -81.991187832628512, 28.850776766424822 ], [ -81.991209199810072, 28.850736104534192 ], [ -81.991227999226183, 28.850700326650916 ], [ -81.99125002240757, 28.850658418712541 ], [ -81.991269954473907, 28.850620485289355 ], [ -81.991300648494899, 28.850562074741063 ], [ -81.991321158650322, 28.850523044143898 ], [ -81.991352259566952, 28.850463744838471 ], [ -81.991392010046354, 28.850384731608933 ], [ -81.991436898625381, 28.850288342996691 ], [ -81.9914748703832, 28.8502023999174 ], [ -81.991480598559932, 28.850188525529777 ], [ -81.991486349118134, 28.850176582077676 ], [ -81.991497639756446, 28.85015711104365 ], [ -81.991507249117362, 28.85014330728352 ], [ -81.991521816116418, 28.850125624827292 ], [ -81.991533575517039, 28.85011345257157 ], [ -81.991549937823223, 28.850098869647258 ], [ -81.991564691819505, 28.850087606201573 ], [ -81.991579463112799, 28.850077799979193 ], [ -81.991594405458301, 28.850069169470473 ], [ -81.991612401943513, 28.85006027928933 ], [ -81.991632915468358, 28.850051918015932 ], [ -81.991657878947805, 28.850044016293207 ], [ -81.991673681774301, 28.850040196021997 ], [ -81.991685105187102, 28.850037973457784 ], [ -81.99170420288678, 28.850035232547455 ], [ -81.991732315291983, 28.850033345778456 ], [ -81.991767764502754, 28.850034548052413 ], [ -81.991800307019275, 28.850037663927775 ], [ -81.991948752588655, 28.85005065811642 ], [ -81.99208714133627, 28.850060920261342 ], [ -81.992270359028268, 28.850071704618202 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jewel Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992240480990944, 28.850531433068696 ], [ -81.992249514981182, 28.850390364411837 ], [ -81.992256784860544, 28.850279247688121 ], [ -81.992265171116614, 28.850151001654499 ], [ -81.992270359028268, 28.850071704618202 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Long Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992270359028268, 28.850071704618202 ], [ -81.992277452140016, 28.850072122799883 ], [ -81.992369440327721, 28.850075897970072 ], [ -81.992505444851574, 28.85007844934529 ], [ -81.992585965021831, 28.85007825808351 ], [ -81.992718258900922, 28.850075197596301 ], [ -81.992788038605269, 28.850072204864627 ], [ -81.992879294682467, 28.850066852824021 ], [ -81.992982263182938, 28.850058842249261 ], [ -81.993116938540652, 28.850045196548166 ], [ -81.9932198294443, 28.85003232777353 ], [ -81.993345389851044, 28.850013817947438 ], [ -81.993365809558341, 28.850011518998311 ], [ -81.993392299461746, 28.850011023157261 ], [ -81.993416116381482, 28.850012281260099 ], [ -81.993449105696769, 28.850016718637956 ], [ -81.993478221810619, 28.8500243662203 ], [ -81.993498875594156, 28.850031462070611 ], [ -81.993520863606889, 28.850040956312125 ], [ -81.993541713909892, 28.85005205840325 ], [ -81.993568273413459, 28.850068826347872 ], [ -81.993587856589386, 28.850086002692617 ], [ -81.993605610326384, 28.850103903497281 ], [ -81.993621279387355, 28.850123194651939 ], [ -81.993632240376357, 28.85013953233052 ], [ -81.993641840277689, 28.850156784880571 ], [ -81.993652054700632, 28.850180339163085 ], [ -81.993684918728476, 28.850269672622968 ], [ -81.993768909121684, 28.850498560010958 ], [ -81.993810647309417, 28.850611444937243 ], [ -81.993887315729708, 28.850819847751929 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Merry Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993307655138779, 28.851194165467028 ], [ -81.993321728706022, 28.851181002443052 ], [ -81.993366052447257, 28.851141507151766 ], [ -81.993434948672373, 28.851087687164103 ], [ -81.993490355483061, 28.851047059989014 ], [ -81.993573737409335, 28.850990959615231 ], [ -81.993624131864038, 28.850959324518509 ], [ -81.993688100203755, 28.850921597685673 ], [ -81.993745337716035, 28.850890012497718 ], [ -81.993797907616539, 28.850862742793741 ], [ -81.993887315729708, 28.850819847751929 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Merry Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993887306505385, 28.850819854067652 ], [ -81.993945331662616, 28.850794308865225 ], [ -81.994035122554507, 28.850758122385468 ], [ -81.994149996544081, 28.85071742814193 ], [ -81.994253161689969, 28.850685953951142 ], [ -81.994349390036803, 28.850660713413415 ], [ -81.994485754845343, 28.850631462846728 ], [ -81.994560672055144, 28.850619567265628 ], [ -81.994601879690407, 28.850613024543023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Earl Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994601879690407, 28.850613024543023 ], [ -81.994593585914188, 28.850565898578051 ], [ -81.994584985022172, 28.850512647748186 ], [ -81.994584636536644, 28.850476206311779 ], [ -81.994593617041744, 28.85041105389066 ], [ -81.994640198192229, 28.850103014925619 ], [ -81.994689610779929, 28.849776256808013 ], [ -81.994710428236843, 28.849638591040954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jolly Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994157194442096, 28.849544707040387 ], [ -81.994383510167964, 28.84959185606786 ], [ -81.994611527022855, 28.849626901254382 ], [ -81.994710424136031, 28.849638615403038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Earl Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994710428236843, 28.849638591040954 ], [ -81.994716366405342, 28.849599317515324 ], [ -81.994730815040526, 28.849503777439423 ], [ -81.99473847148478, 28.849453134024625 ], [ -81.994742068883426, 28.849431994044284 ], [ -81.994745904757011, 28.849416737107731 ], [ -81.994751182653047, 28.849400796280879 ], [ -81.994756917529315, 28.849386868516479 ], [ -81.994768737506746, 28.849364123661452 ], [ -81.994776793632525, 28.849351442975426 ], [ -81.994785878710644, 28.84933896264172 ], [ -81.994796994089441, 28.849325652266515 ], [ -81.994808395337984, 28.849313557307738 ], [ -81.994823587640781, 28.849299949330678 ], [ -81.994842546366741, 28.849285435584942 ], [ -81.994855971539906, 28.849276628704398 ], [ -81.994872135172386, 28.849267393334316 ], [ -81.994892716002511, 28.849257523813414 ], [ -81.994943942901472, 28.849236723136784 ], [ -81.995059999931243, 28.849189807656881 ], [ -81.995119238280708, 28.849165919524513 ], [ -81.995176726057608, 28.849143604923093 ], [ -81.995259759947956, 28.849113304013191 ], [ -81.995291622446587, 28.849102605620381 ], [ -81.995317032222459, 28.849095573960394 ], [ -81.995340966111215, 28.849090216020503 ], [ -81.995362955761365, 28.849086332375322 ], [ -81.995387810895906, 28.849083099390292 ], [ -81.995408101218004, 28.849081355045133 ], [ -81.995431426124952, 28.849080326331659 ], [ -81.995473574614422, 28.849080920613886 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995419558108978, 28.848608105893302 ], [ -81.995426349929303, 28.848606345732193 ], [ -81.995438240481107, 28.848603292744382 ], [ -81.995448233995077, 28.848600754906158 ], [ -81.995458757365384, 28.848598109711194 ], [ -81.995471084505425, 28.848595046810267 ], [ -81.995480141282641, 28.848592822037382 ], [ -81.995492385403892, 28.848589844850714 ], [ -81.995503082994261, 28.848587277256634 ], [ -81.995515767804775, 28.848584266697681 ], [ -81.995524615502134, 28.84858219079511 ], [ -81.995533716340873, 28.848580077003763 ], [ -81.995543680117962, 28.848577786389271 ], [ -81.995553883712859, 28.848575465103835 ], [ -81.995561987350158, 28.848573640014546 ], [ -81.995570920105138, 28.84857164622165 ], [ -81.995579914350813, 28.848569662355636 ], [ -81.995594033961368, 28.848566583262638 ], [ -81.99560679459384, 28.848563844291814 ], [ -81.99562111609751, 28.848560816634219 ], [ -81.995648212570629, 28.848555227755124 ], [ -81.995690616443611, 28.848546838619377 ], [ -81.995732826590711, 28.848538920467696 ], [ -81.995777874565007, 28.848530941940265 ], [ -81.995820879955716, 28.848523776309982 ], [ -81.9958644039029, 28.848516970702551 ], [ -81.995913859735964, 28.848509779080388 ], [ -81.995953410236936, 28.84850443956671 ], [ -81.995996641000048, 28.848499019849484 ], [ -81.996040932472781, 28.848493917762433 ], [ -81.996092181706857, 28.848488578563703 ], [ -81.996116254672955, 28.848486279307284 ], [ -81.996143981261739, 28.84848378886619 ], [ -81.996191950897668, 28.848479572000855 ], [ -81.99623488128961, 28.848475798004618 ], [ -81.996277257228812, 28.848472074507949 ], [ -81.996319158654586, 28.848468392490567 ], [ -81.996360831533579, 28.848464728499856 ], [ -81.996414136575325, 28.848460043408355 ], [ -81.996459807427826, 28.848456028500607 ], [ -81.996520080485425, 28.848450730891742 ], [ -81.996730868574559, 28.848432202127725 ], [ -81.996956900349161, 28.848412334373513 ], [ -81.996993410967463, 28.848409103172003 ], [ -81.997034585728173, 28.848405157441977 ], [ -81.997071715375867, 28.848401264843229 ], [ -81.997112827637366, 28.848396584610771 ], [ -81.997153734935296, 28.848391538024956 ], [ -81.997222006020124, 28.848382247575433 ], [ -81.997266871351158, 28.848375548016428 ], [ -81.997347959382779, 28.848362231686689 ], [ -81.997390756565466, 28.848354571989891 ], [ -81.997431252940274, 28.848346918549332 ], [ -81.99747896537113, 28.848337390247611 ], [ -81.997517172215595, 28.848329360474285 ], [ -81.997556670389883, 28.848320682859228 ], [ -81.997607262698864, 28.848309000762818 ], [ -81.997651868793895, 28.848298170313704 ], [ -81.997690184288828, 28.848288464911001 ], [ -81.997719690070767, 28.848280735389391 ], [ -81.997773781274603, 28.848265984550508 ], [ -81.997807912263397, 28.848256287161352 ], [ -81.997860390339156, 28.848240774713375 ], [ -81.997899098365849, 28.848228864021888 ], [ -81.997945036795443, 28.848214288025424 ], [ -81.998017808146884, 28.848191103537452 ], [ -81.998141750784129, 28.848151615110105 ], [ -81.998141818424969, 28.848151592553471 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warnock Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997014971959459, 28.843839754915507 ], [ -81.997000120177304, 28.843814621720757 ], [ -81.996984923099006, 28.843787704655956 ], [ -81.996957838001975, 28.843736240056419 ], [ -81.996942753808256, 28.843705286069227 ], [ -81.996921904543925, 28.843659187627512 ], [ -81.996899777631128, 28.843604984633028 ], [ -81.996880138977076, 28.843550791620117 ], [ -81.996863284704119, 28.843497897090991 ], [ -81.996846790405201, 28.843437646061687 ], [ -81.99683235611171, 28.843373759686749 ], [ -81.996819406117609, 28.843299285679322 ], [ -81.996814089780898, 28.84325883243115 ], [ -81.99680964670965, 28.843214677039629 ], [ -81.996803473227629, 28.843096776075381 ], [ -81.99680112564684, 28.843000087533195 ], [ -81.996801031472216, 28.842877615629586 ], [ -81.996805350047481, 28.842726564167886 ], [ -81.996823976373193, 28.842469676075311 ], [ -81.996837928053466, 28.842346902234347 ], [ -81.996857192682796, 28.842211140714415 ], [ -81.996857552459232, 28.842208978795949 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warnock Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996857552459232, 28.842208978795949 ], [ -81.996858234099321, 28.842204516905138 ], [ -81.996859304213686, 28.842197783917431 ], [ -81.996860439924816, 28.842190755876945 ], [ -81.996861129756553, 28.842186485275381 ], [ -81.996862197817237, 28.842179862368997 ], [ -81.996864496903285, 28.842165947048468 ], [ -81.996866751902914, 28.842152612812423 ], [ -81.99686963624319, 28.842135807417094 ], [ -81.996871699553523, 28.842123997172557 ], [ -81.996873974006874, 28.8421111258202 ], [ -81.996875707257104, 28.842101551484017 ], [ -81.996878992327126, 28.842083619116767 ], [ -81.996887558046325, 28.842038565336825 ], [ -81.996893142067094, 28.842010422519849 ], [ -81.996896455770923, 28.84199412242576 ], [ -81.996899953956515, 28.841977225008861 ], [ -81.996902137113352, 28.841966846727509 ], [ -81.996904257744262, 28.841956861850409 ], [ -81.99690651366484, 28.841946356345424 ], [ -81.996908509243852, 28.841937160081446 ], [ -81.996911872099702, 28.841921861548652 ], [ -81.996915059681328, 28.841907574497601 ], [ -81.996917363755031, 28.841897369461694 ], [ -81.996920488802317, 28.841883699586866 ], [ -81.996924817119606, 28.841865075173448 ], [ -81.996928754924625, 28.841848407854243 ], [ -81.996933583385356, 28.841828338858996 ], [ -81.996937727179471, 28.841811408973015 ], [ -81.996940671798725, 28.84179954009786 ], [ -81.996945419256733, 28.841780672972938 ], [ -81.996950355288391, 28.841761389888788 ], [ -81.996957173058647, 28.841735302552387 ], [ -81.996961436715992, 28.841719282193644 ], [ -81.996966333761989, 28.84170115135375 ], [ -81.996972198313784, 28.841679810128344 ], [ -81.996977781000879, 28.841659844011744 ], [ -81.996984367059028, 28.841636704504872 ], [ -81.996991948281746, 28.841610603649514 ], [ -81.996998557877021, 28.841588289753194 ], [ -81.997004714451819, 28.84156784903514 ], [ -81.99701286238782, 28.841541289819578 ], [ -81.9970214489569, 28.841513878835798 ], [ -81.997029885869338, 28.841487492868627 ], [ -81.997038786010776, 28.841460209116061 ], [ -81.997047086572024, 28.841435250594085 ], [ -81.997055133969184, 28.841411465967042 ], [ -81.997063094234818, 28.84138833821692 ], [ -81.997071781124816, 28.841363527680326 ], [ -81.997080928167776, 28.841337848231905 ], [ -81.997089751329014, 28.841313577276615 ], [ -81.997099229350511, 28.841288496966079 ], [ -81.997109106008679, 28.841263441026054 ], [ -81.997120031066046, 28.841236871037584 ], [ -81.997129828738764, 28.84121396529164 ], [ -81.997142586167911, 28.841185303794457 ], [ -81.99715672607887, 28.841154929747901 ], [ -81.997167729902998, 28.84113219546397 ], [ -81.997177078571511, 28.841113454753454 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jupiter Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018246318360738, 28.855192127979745 ], [ -82.018577981669011, 28.855690384925349 ], [ -82.018608020637643, 28.855728551135336 ], [ -82.01864293705934, 28.855765644750814 ], [ -82.018671568787482, 28.85579170400808 ], [ -82.018707403067168, 28.855819969334139 ], [ -82.018745972357195, 28.855845176373371 ], [ -82.018774706164095, 28.855862768366769 ], [ -82.018809027877978, 28.855880361407667 ], [ -82.018865160071002, 28.855903970775866 ], [ -82.01892438671058, 28.855922737032415 ], [ -82.018979201086239, 28.8559358653592 ], [ -82.019057428163222, 28.855944842580669 ], [ -82.019134485532007, 28.855946527489817 ], [ -82.019718809602097, 28.855946536503374 ], [ -82.019754356497941, 28.855943081067579 ], [ -82.019796262965016, 28.855933572963355 ], [ -82.019826525997289, 28.855922654392593 ], [ -82.019854912862428, 28.855908800884453 ], [ -82.019882458596811, 28.855891273305168 ], [ -82.019912497558437, 28.855866055021401 ], [ -82.019930821579095, 28.855846193582131 ], [ -82.019947145538822, 28.855824060422691 ], [ -82.019963607031841, 28.85579751406901 ], [ -82.019973182916431, 28.855770145796413 ], [ -82.019980960390782, 28.855739103595393 ], [ -82.019983473909278, 28.855719342761429 ], [ -82.019984321476358, 28.855587612459708 ], [ -82.019984465392838, 28.855480323888422 ], [ -82.019984734903417, 28.855277381964033 ], [ -82.019985172857588, 28.85495034692477 ], [ -82.019985376857633, 28.854797171619936 ], [ -82.019983882338764, 28.854757792541573 ], [ -82.019978655228513, 28.854724679602224 ], [ -82.019961660753722, 28.85468434268736 ], [ -82.019947678997383, 28.854657571494059 ], [ -82.019923524708901, 28.854629357160572 ], [ -82.019882011978126, 28.854592846796336 ], [ -82.019756248813891, 28.854503459756227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kasper Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019230462529592, 28.855307135737725 ], [ -82.019151959942349, 28.855102113976649 ], [ -82.019080955264471, 28.854881752859672 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Young Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019055473978057, 28.849268712883827 ], [ -82.019587863321036, 28.849483983622473 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Young Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019587863321036, 28.849483983622473 ], [ -82.019780282448906, 28.84956141676107 ], [ -82.01998343710936, 28.849643191787919 ], [ -82.020018297448061, 28.849657223063634 ], [ -82.020046887625085, 28.849671014314477 ], [ -82.02006450343778, 28.849684206200166 ], [ -82.020082295737751, 28.849703946089662 ], [ -82.020098595312035, 28.849737224384135 ], [ -82.020100708145378, 28.849745778839196 ], [ -82.020101460151395, 28.849749920313496 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alwyne Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020101457073906, 28.84974990497475 ], [ -82.020099335682772, 28.84960325084889 ], [ -82.020103638149877, 28.849342269163721 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrabelle Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019352332236494, 28.851533559972616 ], [ -82.019361233534894, 28.85150628295278 ], [ -82.01937016009326, 28.85147137603477 ], [ -82.01937566345083, 28.851441644311439 ], [ -82.019378849354865, 28.8514165110569 ], [ -82.019380834653262, 28.851388800984527 ], [ -82.019381568871111, 28.851345792498059 ], [ -82.019382261117158, 28.851286094074815 ], [ -82.019384514438755, 28.851091744402456 ], [ -82.019385877764464, 28.850974351574134 ], [ -82.019386709252586, 28.850902596523312 ], [ -82.019388755699225, 28.850726116125486 ], [ -82.019392403570947, 28.850411567424437 ], [ -82.019393774933548, 28.850293376042757 ], [ -82.019395460106068, 28.850148054093225 ], [ -82.019397021149146, 28.850013391995351 ], [ -82.019398491369955, 28.849886554701147 ], [ -82.019401094560806, 28.849621254847122 ], [ -82.019401880866894, 28.849594310088552 ], [ -82.019402625233084, 28.849579100722227 ], [ -82.019404390205267, 28.849568664410903 ], [ -82.019407862124055, 28.849555601251151 ], [ -82.019413753803462, 28.849542854464758 ], [ -82.019419571165585, 28.849532856111239 ], [ -82.019432063412196, 28.849516928682586 ], [ -82.019444537984683, 28.849505274574533 ], [ -82.019456190170573, 28.849496816546129 ], [ -82.01946981945116, 28.849489099034439 ], [ -82.019487859801856, 28.849481709346083 ], [ -82.019501526686426, 28.849477901516142 ], [ -82.019509238503133, 28.84947636381419 ], [ -82.019514186403882, 28.849475597968766 ], [ -82.019519687751412, 28.849474944834135 ], [ -82.019525731282869, 28.849474463061632 ], [ -82.019532844813028, 28.849474207618144 ], [ -82.019539591501271, 28.849474276153238 ], [ -82.019545402531989, 28.849474578515892 ], [ -82.019551011701637, 28.849475083023009 ], [ -82.019557466446173, 28.849475929385441 ], [ -82.019562762082046, 28.84947683997343 ], [ -82.01956849538935, 28.849478049163103 ], [ -82.019576277549305, 28.849480080066161 ], [ -82.019580212220632, 28.849481284093297 ], [ -82.019587869470385, 28.849483984523907 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrabelle Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01921561207385, 28.851814844531162 ], [ -82.019240788579779, 28.851764550182484 ], [ -82.019269310107916, 28.851707573797235 ], [ -82.019320802252849, 28.851604711106674 ], [ -82.019331263548992, 28.851583711211724 ], [ -82.019337129766171, 28.851571166552183 ], [ -82.019350538555784, 28.851538479589479 ], [ -82.019352332236494, 28.851533559972616 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01921561207385, 28.851814844531162 ], [ -82.019254532801369, 28.851829948281804 ], [ -82.019296630915179, 28.851846307591828 ], [ -82.019321238200064, 28.851856307151323 ], [ -82.019343611162981, 28.85186590097797 ], [ -82.019368224810265, 28.851877026604988 ], [ -82.019399269291469, 28.851891941017751 ], [ -82.019425340738238, 28.851905256326937 ], [ -82.019451407204784, 28.851919327763589 ], [ -82.019482427635012, 28.851937106077351 ], [ -82.019512858914311, 28.851955700150132 ], [ -82.019542662093158, 28.85197508743008 ], [ -82.019557952253066, 28.851985512331634 ], [ -82.019574581156945, 28.851997231852042 ], [ -82.019594494332779, 28.852011822947716 ], [ -82.019610308516803, 28.852023859286987 ], [ -82.019634177549378, 28.852042816076899 ], [ -82.019652783147848, 28.85205829702047 ], [ -82.019667530564575, 28.852071030082566 ], [ -82.019685974434353, 28.85208756313218 ], [ -82.019701716360743, 28.852102244127426 ], [ -82.019718441442038, 28.852118451682571 ], [ -82.019740039909607, 28.852140380064899 ], [ -82.019764329498798, 28.852166510098602 ], [ -82.019779322679611, 28.852183492971147 ], [ -82.019802895209295, 28.85221147823875 ], [ -82.019823585492333, 28.852238022929566 ], [ -82.019847993309568, 28.852271404758085 ], [ -82.019858764800134, 28.852287348765483 ], [ -82.01987053891817, 28.85230480218603 ], [ -82.019883999704376, 28.852326114524882 ], [ -82.019905671749839, 28.852362980532192 ], [ -82.019922011095431, 28.852393266784478 ], [ -82.019940378983804, 28.852430499592831 ], [ -82.019949184363085, 28.852449801350861 ], [ -82.019962220586777, 28.8524805238829 ], [ -82.019971190637236, 28.852503463710331 ], [ -82.019980405088845, 28.852528930858952 ], [ -82.019989595386789, 28.8525567458084 ], [ -82.020000138011966, 28.852592638901747 ], [ -82.020004503056072, 28.852609171214485 ], [ -82.020009600788939, 28.852630577674603 ], [ -82.02001313442905, 28.852645947936995 ], [ -82.020017634807289, 28.852668183700736 ], [ -82.02002343381757, 28.852701827122313 ], [ -82.020027278221818, 28.852729286424164 ], [ -82.020029887820556, 28.852752301147689 ], [ -82.020033137154513, 28.852792774481721 ], [ -82.020034223746691, 28.85281571543435 ], [ -82.020034823888551, 28.852857050849352 ], [ -82.020034741301657, 28.85291945789394 ], [ -82.020034110470689, 28.853392160289506 ], [ -82.020033792425494, 28.853630893109393 ], [ -82.020034062189552, 28.853708547246683 ], [ -82.020033547937203, 28.853813719091679 ], [ -82.020032855583409, 28.853849085036032 ], [ -82.020030570228357, 28.853888338338663 ], [ -82.020026450648942, 28.853929516520651 ], [ -82.020019762503111, 28.853975388861084 ], [ -82.020009211803114, 28.85402849282654 ], [ -82.01999722205224, 28.854075754572087 ], [ -82.019985853648379, 28.85411346532916 ], [ -82.019975666521248, 28.854143366466591 ], [ -82.0199632343693, 28.854176250944281 ], [ -82.019946591043237, 28.8542156308133 ], [ -82.019934147484378, 28.854242404880416 ], [ -82.019919278484863, 28.854272013432084 ], [ -82.019900599713552, 28.854306208940951 ], [ -82.019873797320088, 28.8543505366831 ], [ -82.019845698981186, 28.854392524927082 ], [ -82.019812240882999, 28.854437494238471 ], [ -82.019756248813891, 28.854503459756227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019756248813891, 28.854503459756227 ], [ -82.019739649527509, 28.854521178859777 ], [ -82.019723473312041, 28.854537746560457 ], [ -82.019706348072503, 28.854554588693684 ], [ -82.019679014235663, 28.854580088976316 ], [ -82.019643995462999, 28.854610511504898 ], [ -82.019612889842008, 28.854635624313026 ], [ -82.019578771062314, 28.854661304183562 ], [ -82.01955277234849, 28.854679663412202 ], [ -82.019529327230572, 28.854695384841762 ], [ -82.019500967033878, 28.854713402416724 ], [ -82.019461081652551, 28.854737009565081 ], [ -82.019435524892486, 28.854751133290254 ], [ -82.019405208723043, 28.854766929642302 ], [ -82.019377348875892, 28.85478057094295 ], [ -82.01935262793728, 28.85479200115639 ], [ -82.019316600873239, 28.854807573604926 ], [ -82.01928699627733, 28.854819442098801 ], [ -82.019253920363781, 28.854831749584385 ], [ -82.019234772038232, 28.85483843108041 ], [ -82.019205440672806, 28.854848050072697 ], [ -82.019171790399014, 28.854858190280613 ], [ -82.01913907975667, 28.854867156452904 ], [ -82.019080955264471, 28.854881752859672 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019080955264471, 28.854881752859672 ], [ -82.019037781558396, 28.854892534067087 ], [ -82.018872861322336, 28.85493372046162 ], [ -82.018725845477789, 28.854970434242031 ], [ -82.018697234204922, 28.854978104951176 ], [ -82.018658431926511, 28.854990229887473 ], [ -82.018624727595835, 28.855002452485742 ], [ -82.018583809708687, 28.855019549381844 ], [ -82.018533688305538, 28.85504406262546 ], [ -82.018246318360738, 28.855192127979745 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018246318360738, 28.855192127979745 ], [ -82.018212630205696, 28.855209728209729 ], [ -82.017965088438118, 28.855337271172509 ], [ -82.017896190995458, 28.855372769437849 ], [ -82.017877599540341, 28.855382588886151 ], [ -82.017858205934559, 28.855394604644029 ], [ -82.017843298210991, 28.855405452245897 ], [ -82.017826438587647, 28.855419777577126 ], [ -82.017807820985311, 28.855438861885123 ], [ -82.017792107107056, 28.855458710074377 ], [ -82.017780895282229, 28.855476005972978 ], [ -82.017772156466194, 28.855492548132752 ], [ -82.017766599200613, 28.855504080292526 ], [ -82.01776149424019, 28.85551751535564 ], [ -82.017754998578695, 28.855537858640332 ], [ -82.017751682244352, 28.855558314310414 ], [ -82.017749947310648, 28.855578441341255 ], [ -82.01774605228637, 28.855638389161292 ], [ -82.017740469406164, 28.855724288382554 ], [ -82.017748221653761, 28.855790620338635 ], [ -82.017764078065611, 28.855851167493739 ], [ -82.017798677192133, 28.855923247333035 ], [ -82.017866689435266, 28.856022540932074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neaptide Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018052877218267, 28.848858488736589 ], [ -82.017893636476188, 28.848794425576951 ], [ -82.017724573047531, 28.848726370765878 ], [ -82.017584394221785, 28.848669942849487 ], [ -82.017258268158599, 28.848538664414122 ], [ -82.01708145716546, 28.848467488668156 ], [ -82.016966597581089, 28.848421205261545 ], [ -82.016942420509736, 28.848409736259782 ], [ -82.016917030420387, 28.848394321616318 ], [ -82.016901067518091, 28.848382617019539 ], [ -82.016886294335549, 28.848370037943788 ], [ -82.016873822004811, 28.848357805075853 ], [ -82.016859162946403, 28.848340987853021 ], [ -82.016846229582697, 28.848323145402553 ], [ -82.016834945021984, 28.848304103589125 ], [ -82.016825445573545, 28.848283891270601 ], [ -82.016818374073338, 28.848264133423331 ], [ -82.016813658962064, 28.848245989519224 ], [ -82.016810471800227, 28.848227173214521 ], [ -82.016808940714583, 28.848207819839924 ], [ -82.016809098745654, 28.848189500305974 ], [ -82.01681111450678, 28.848169112465136 ], [ -82.016814487576937, 28.848151326712014 ], [ -82.016820136626578, 28.848132189934937 ], [ -82.016826946457883, 28.848110685368251 ], [ -82.016836421147119, 28.848084251185583 ], [ -82.01684476618982, 28.848062703123482 ], [ -82.016854418667492, 28.848039440523113 ], [ -82.016864971908191, 28.848015700494237 ], [ -82.016879260787832, 28.847985889302628 ], [ -82.0169004288569, 28.847945698059029 ], [ -82.016937169119117, 28.847883778315254 ], [ -82.017009787463252, 28.847765429431753 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alcade Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017009787463252, 28.847765429431753 ], [ -82.017157216072405, 28.8478250440156 ], [ -82.017315540685701, 28.847888861840818 ], [ -82.017822717552477, 28.848093026306881 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alcade Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017822717552477, 28.848093026306881 ], [ -82.017891798103605, 28.848120831997775 ], [ -82.017996700661996, 28.848163060031201 ], [ -82.018078063952672, 28.848195810490754 ], [ -82.018152511126857, 28.848225779987434 ], [ -82.018229713332843, 28.848256856213911 ], [ -82.018288099037349, 28.848280360896471 ], [ -82.018353325101273, 28.848306614886422 ], [ -82.018415198674575, 28.848331522142548 ], [ -82.018464168488322, 28.848351231984626 ], [ -82.018537370600555, 28.848380699749733 ], [ -82.01860182297149, 28.848406643328037 ], [ -82.018640027043674, 28.84842202166227 ], [ -82.018700927074207, 28.848446537315464 ], [ -82.018763362471972, 28.848471669010202 ], [ -82.018817872143899, 28.848493610285484 ], [ -82.018866466986552, 28.848513172052936 ], [ -82.018920190582804, 28.848534798487822 ], [ -82.01894716564334, 28.848545654992549 ], [ -82.019062966089876, 28.848592269532524 ], [ -82.019153584131118, 28.848628745504417 ], [ -82.019221173091708, 28.848655951584011 ], [ -82.019287809927505, 28.848682775183168 ], [ -82.019375128873264, 28.848717923266136 ], [ -82.019441583353185, 28.848744689968903 ], [ -82.019515275929479, 28.848774336691207 ], [ -82.019593758059926, 28.848805928073155 ], [ -82.019664517366849, 28.848834409345436 ], [ -82.019703550922245, 28.848850122015627 ], [ -82.019772096431851, 28.848877712967443 ], [ -82.019813016923209, 28.848894184177979 ], [ -82.019846454380954, 28.848907644542347 ], [ -82.019892062947278, 28.848926001784253 ], [ -82.019920633008567, 28.84893750211252 ], [ -82.019928162176413, 28.848940504814763 ], [ -82.019932606261563, 28.848942113894342 ], [ -82.01993869018122, 28.848944051179096 ], [ -82.019946040839116, 28.84894605956497 ], [ -82.019951223751193, 28.848947152419626 ], [ -82.019958245293893, 28.848948431788827 ], [ -82.019963491667013, 28.848949094234165 ], [ -82.019968281943889, 28.848949572674098 ], [ -82.019971940736681, 28.84894983381993 ], [ -82.019977154231142, 28.848950050530433 ], [ -82.019982915990198, 28.84895008218967 ], [ -82.019988092519114, 28.848949920838958 ], [ -82.019993742491607, 28.848949541062339 ], [ -82.01999967937779, 28.848948912208087 ], [ -82.020004175311541, 28.84894827453676 ], [ -82.020010030131701, 28.84894723334008 ], [ -82.02001718129172, 28.848945628016413 ], [ -82.020022490812991, 28.848944191687433 ], [ -82.020026656621667, 28.848942911621041 ], [ -82.020030695330064, 28.848941536830619 ], [ -82.020034536230085, 28.8489401052232 ], [ -82.020039340394931, 28.848938131191822 ], [ -82.02004394981455, 28.848936039888464 ], [ -82.020048462867862, 28.848933791597602 ], [ -82.020051886572048, 28.84893194408663 ], [ -82.020055906652217, 28.848929610147231 ], [ -82.020060515916796, 28.848926696842867 ], [ -82.020064965273775, 28.848923626560122 ], [ -82.020068872506769, 28.848920695310159 ], [ -82.020072848348562, 28.848917463582453 ], [ -82.020076221624706, 28.848914503535212 ], [ -82.02007974548475, 28.848911170813999 ], [ -82.020082865578885, 28.848907988835769 ], [ -82.020085715121581, 28.848904866448557 ], [ -82.020088155795733, 28.848902009397911 ], [ -82.020090593359058, 28.848898960156578 ], [ -82.020093474527101, 28.848895068097889 ], [ -82.020095573883665, 28.848892000858982 ], [ -82.020097606601283, 28.848888810916051 ], [ -82.02010024270885, 28.84888428637619 ], [ -82.020104274005917, 28.848876220988046 ], [ -82.020107427047094, 28.848868408371771 ], [ -82.020110459773747, 28.84885844016447 ], [ -82.020112510611852, 28.848848075083939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jubilee Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020104038597879, 28.849319032029577 ], [ -82.020112509587506, 28.848848077791004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jubilee Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020112510611852, 28.848848075083939 ], [ -82.020113061825199, 28.848847225934932 ], [ -82.02011326752374, 28.848845644163458 ], [ -82.020113538641908, 28.848843152858453 ], [ -82.020113773826864, 28.848840325900902 ], [ -82.020113976991027, 28.848836169851687 ], [ -82.020114458287679, 28.848796012667922 ], [ -82.020114731584016, 28.848772429967113 ], [ -82.020114980673867, 28.84875091986585 ], [ -82.020115182365956, 28.848733502630004 ], [ -82.020115560538144, 28.848700843620836 ], [ -82.020115797534459, 28.848680422604101 ], [ -82.020115971002781, 28.848665514684306 ], [ -82.020116121270235, 28.848652576501159 ], [ -82.020116320931621, 28.848635262128202 ], [ -82.020116489359438, 28.848620799948037 ], [ -82.020116670873009, 28.848605077244891 ], [ -82.02011692803606, 28.848582903947236 ], [ -82.020117085358521, 28.848569335051231 ], [ -82.020117343522642, 28.848547036332835 ], [ -82.020117604715537, 28.848524494893688 ], [ -82.020117807420746, 28.84850701990954 ], [ -82.02011802322049, 28.848488331322248 ], [ -82.0201182370282, 28.848469949519153 ], [ -82.02011843266699, 28.848453046597704 ], [ -82.020118614193052, 28.848437393371704 ], [ -82.020118759398486, 28.848424789041974 ], [ -82.020118879422455, 28.848414520785404 ], [ -82.020118903440547, 28.848411449333213 ], [ -82.020118833096575, 28.848407976368538 ], [ -82.020118562706486, 28.848403442321139 ], [ -82.020118155080439, 28.848399409073188 ], [ -82.020119379482978, 28.848337967289538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nantuket Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018110384902783, 28.847542682162786 ], [ -82.018268583598172, 28.847240020127991 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lindewood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018110384902783, 28.847542682162786 ], [ -82.018184510508235, 28.847564631992359 ], [ -82.018215022290406, 28.847571277125617 ], [ -82.018237394009233, 28.847579538438151 ], [ -82.018590816996308, 28.847721803702136 ], [ -82.018833917502121, 28.847819660592705 ], [ -82.019084732023444, 28.847920622630461 ], [ -82.019335939573679, 28.848021740243986 ], [ -82.019727943786137, 28.848179532175287 ], [ -82.019937760833614, 28.848263988907746 ], [ -82.020119379482978, 28.848337967289538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nantuket Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017822717552477, 28.848093026306881 ], [ -82.018027586837817, 28.847695763603618 ], [ -82.018110384902783, 28.847542682162786 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neaptide Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017009787463252, 28.847765429431753 ], [ -82.017028122350496, 28.847735551865739 ], [ -82.017350437335509, 28.847189617384768 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Saginaw Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01226296480408, 28.851553349883439 ], [ -82.012362884962698, 28.851482815275329 ], [ -82.012399334439507, 28.851451710549565 ], [ -82.012444278270408, 28.851404088372536 ], [ -82.012482418312544, 28.851351420180741 ], [ -82.01251468582025, 28.851290529783 ], [ -82.012550374966168, 28.851190857084259 ], [ -82.012644648972284, 28.850905042592014 ], [ -82.012757922464274, 28.850565848634311 ], [ -82.012803230977894, 28.850426179400799 ], [ -82.012820136327747, 28.850357677548537 ], [ -82.012841021269764, 28.850263622040444 ], [ -82.012854440964105, 28.850186333844132 ], [ -82.012854786082372, 28.850184122261961 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triton Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000134648835854, 28.854453855655336 ], [ -82.000311974125125, 28.854327143735045 ], [ -82.000384289801644, 28.854264167521727 ], [ -82.00042859768547, 28.854208128141376 ], [ -82.000467387405862, 28.85414445523471 ], [ -82.000559092883492, 28.85393227646216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Prairie Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000559092883492, 28.85393227646216 ], [ -82.000571019736526, 28.853938139652698 ], [ -82.000590322852062, 28.853946332599914 ], [ -82.000614747432337, 28.853954516524126 ], [ -82.000633590363407, 28.853959312285475 ], [ -82.00065215451832, 28.853962826770587 ], [ -82.000670480892992, 28.853965173670101 ], [ -82.000685524486698, 28.853966289822697 ], [ -82.000702369865891, 28.853966683226911 ], [ -82.000724527337752, 28.853966245604461 ], [ -82.000753709512949, 28.853962300714421 ], [ -82.000777638007165, 28.85395728298074 ], [ -82.000807806118061, 28.853948019890996 ], [ -82.000837972158493, 28.853935078998134 ], [ -82.000866578268258, 28.853918808594116 ], [ -82.000921923062322, 28.853882444703515 ], [ -82.000977071017346, 28.853842695341033 ], [ -82.001032062097039, 28.853799148153197 ], [ -82.001086690287607, 28.853751488236213 ], [ -82.001094374977953, 28.853743990056124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vintage Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000010330765775, 28.853171057550885 ], [ -82.000310212190584, 28.853288724761498 ], [ -82.000490407228142, 28.853358920894809 ], [ -82.000572074514622, 28.853398228118312 ], [ -82.000659228177113, 28.85344285979718 ], [ -82.000741287127681, 28.853489081283474 ], [ -82.000890429374223, 28.853585798348696 ], [ -82.000991948548446, 28.853659500261383 ], [ -82.001094374977953, 28.853743990056124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Prairie Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001094374977953, 28.853743990056124 ], [ -82.001179790985333, 28.853660656461727 ], [ -82.001560995887445, 28.853281836071559 ], [ -82.001601083414329, 28.85324349233964 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wentworth Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000306177942306, 28.852431717752779 ], [ -82.000491530808844, 28.852496236604271 ], [ -82.00061017867948, 28.852549820137252 ], [ -82.000802775023345, 28.852654538076212 ], [ -82.000956452312096, 28.852748771933694 ], [ -82.001101946154662, 28.852854222198392 ], [ -82.001347634027383, 28.853045789684124 ], [ -82.001601083414329, 28.85324349233964 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Prairie Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001601083414329, 28.85324349233964 ], [ -82.001646871340554, 28.853199698630739 ], [ -82.001720591621378, 28.853138658932476 ], [ -82.001865602094639, 28.853031096626516 ], [ -82.001917030956264, 28.852994305567705 ], [ -82.001969295168891, 28.852963909119591 ], [ -82.002051492428933, 28.852928908789838 ], [ -82.002117735330145, 28.852910154588717 ], [ -82.002158870461969, 28.852902012644936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Queensway Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002158870461969, 28.852902012644936 ], [ -82.002147288242938, 28.852849033006205 ], [ -82.002127663474653, 28.852783767661467 ], [ -82.002099107622328, 28.852707900318034 ], [ -82.002036375240692, 28.852603584524857 ], [ -82.002001462522855, 28.852556023446329 ], [ -82.001933637029111, 28.852480121251368 ], [ -82.001878415091923, 28.852429745132678 ], [ -82.001804486827979, 28.852375370128915 ], [ -82.001577858979772, 28.852222403960749 ], [ -82.001021490881712, 28.851836375803078 ], [ -82.000952011532803, 28.851790689517568 ], [ -82.000914892049465, 28.851758328394837 ], [ -82.000871110726962, 28.851702173472521 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Prairie Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002158870461969, 28.852902012644936 ], [ -82.002197579715542, 28.85289731571784 ], [ -82.002257751357959, 28.852894118163228 ], [ -82.002423883114361, 28.85289762699864 ], [ -82.002529309224457, 28.852901883580348 ], [ -82.002629265689009, 28.85291654283737 ], [ -82.002687943410066, 28.852930782164126 ], [ -82.002743892947834, 28.852948493578037 ], [ -82.00283971538019, 28.852977329764066 ], [ -82.002926776787405, 28.852995806659354 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Norcoose Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002926776787405, 28.852995806659354 ], [ -82.002967850036967, 28.85284755448853 ], [ -82.002967847103037, 28.852727840215927 ], [ -82.002952739065123, 28.852641381564531 ], [ -82.002907410562599, 28.85253497343729 ], [ -82.002851963451292, 28.852431181239098 ], [ -82.002819071250258, 28.852372486791936 ], [ -82.002750985541141, 28.852276790233176 ], [ -82.002693517279127, 28.852203387645357 ], [ -82.002620339436902, 28.852122634174869 ], [ -82.0025613475905, 28.85206129266837 ], [ -82.002394860848796, 28.851914810986731 ], [ -82.00173856502046, 28.851351929683702 ], [ -82.001678912175862, 28.851300767599902 ], [ -82.001636076828703, 28.851264028728178 ], [ -82.001584572168326, 28.85114730862562 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Prairie Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002926776787405, 28.852995806659354 ], [ -82.002966673195374, 28.853004274127386 ], [ -82.003075024729554, 28.853017761719126 ], [ -82.0031890499056, 28.85302288294319 ], [ -82.003270026018498, 28.853020465946084 ], [ -82.003511764445676, 28.853013810209486 ], [ -82.003702118568498, 28.853007568453439 ], [ -82.003731570013827, 28.853006813464837 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kennedy Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003731570013827, 28.853006813464837 ], [ -82.003725297889758, 28.852853308903239 ], [ -82.003716099828239, 28.852735951660542 ], [ -82.003701471767073, 28.852646965725882 ], [ -82.00368158518242, 28.852563749246098 ], [ -82.003655278531767, 28.852475101927173 ], [ -82.00358729660698, 28.852314545367644 ], [ -82.003545482576499, 28.85222902033297 ], [ -82.003485850251693, 28.852121165398362 ], [ -82.003416299110611, 28.852010865388326 ], [ -82.003357861742614, 28.851928011450475 ], [ -82.00326927046099, 28.851815344988768 ], [ -82.003205238731098, 28.851742303661645 ], [ -82.003172046824318, 28.851705046275505 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008445686976799, 28.850128044601327 ], [ -82.008495665885363, 28.850129427661269 ], [ -82.008946361764686, 28.850143779982652 ], [ -82.009088483225227, 28.850152116637506 ], [ -82.009268464316008, 28.85017113764944 ], [ -82.009432763129908, 28.85019276800368 ], [ -82.009587661189272, 28.850218002586615 ], [ -82.009803346812205, 28.85025847554898 ], [ -82.009937800761961, 28.850281925445572 ], [ -82.010059671877087, 28.85029944793423 ], [ -82.010161612670757, 28.850309377006617 ], [ -82.010271259195619, 28.850316141069047 ], [ -82.010343370233898, 28.850316599714294 ], [ -82.010445350942774, 28.850314819349034 ], [ -82.010552001544553, 28.850308462973565 ], [ -82.010655028802177, 28.850297916474055 ], [ -82.010744160622792, 28.850285242392999 ], [ -82.010819891132684, 28.85027183568539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010819869610742, 28.850271839296227 ], [ -82.01084392388718, 28.850267066095963 ], [ -82.010885569664907, 28.850258203216473 ], [ -82.010921399355382, 28.85024996516076 ], [ -82.010959105472878, 28.850240675766663 ], [ -82.010981544432127, 28.85023484155338 ], [ -82.011011690177398, 28.850226639999327 ], [ -82.011039533080194, 28.850218897888777 ], [ -82.011072718510192, 28.850209985973336 ], [ -82.011124299926323, 28.850196833596506 ], [ -82.01117371488435, 28.850184952716919 ], [ -82.011213074123035, 28.85017615939147 ], [ -82.011243183118353, 28.850169700140736 ], [ -82.011274011582856, 28.85016337617267 ], [ -82.011309420127432, 28.850156469850042 ], [ -82.011375781265585, 28.850144542446351 ], [ -82.01141011381516, 28.850138886778119 ], [ -82.01147057915199, 28.850129771380487 ], [ -82.011504087809371, 28.850125182279438 ], [ -82.011542016704723, 28.850120383479709 ], [ -82.011582361230509, 28.850115735159378 ], [ -82.011617086502099, 28.850112110496774 ], [ -82.011656762906483, 28.850108393387746 ], [ -82.011714036226451, 28.850103821249288 ], [ -82.011734252653255, 28.850102430947636 ], [ -82.011781375852408, 28.85009963986008 ], [ -82.011809364891235, 28.85009827958643 ], [ -82.011862998145716, 28.850096293692644 ], [ -82.011895970157525, 28.850095475273974 ], [ -82.011943856089033, 28.850094833358337 ], [ -82.01196836889531, 28.850094632804346 ], [ -82.012013272573299, 28.850095050420144 ], [ -82.012051937903522, 28.850095759991188 ], [ -82.01208588476409, 28.850096729813771 ], [ -82.012125032900201, 28.850098254105067 ], [ -82.012136568891279, 28.850098787291842 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012136568891279, 28.850098787291842 ], [ -82.01225407923792, 28.850106353029634 ], [ -82.012316533381636, 28.850111977147222 ], [ -82.012401353700227, 28.850121409733049 ], [ -82.012576639961722, 28.85014539122248 ], [ -82.012742018796487, 28.850168637990155 ], [ -82.012843437505154, 28.850182542445253 ], [ -82.012854786082372, 28.850184122261961 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duval Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994617052744786, 28.884381196414331 ], [ -81.994637157631871, 28.884352595193803 ], [ -81.994679751579099, 28.884265689084263 ], [ -81.994801638636659, 28.883898540390568 ], [ -81.994913958951415, 28.883506980334335 ], [ -81.995013392087472, 28.883028446839784 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beatrice Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994617052744786, 28.884381196414331 ], [ -81.994657402057143, 28.884396521849222 ], [ -81.99490713486469, 28.884470849852864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018448114484386, 28.851468802687421 ], [ -82.018482356971163, 28.851493256063748 ], [ -82.018543209128111, 28.851533038786489 ], [ -82.018587312191286, 28.851558218990714 ], [ -82.018618996352018, 28.851575188950857 ], [ -82.018661674154131, 28.851596309848269 ], [ -82.018741354691841, 28.851630804266073 ], [ -82.018864656739112, 28.851678670344345 ], [ -82.019061552837286, 28.851755227734749 ], [ -82.01921561207385, 28.851814844531162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neaptide Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018448114484386, 28.851468802687421 ], [ -82.018507567523841, 28.851407117764094 ], [ -82.018553446785873, 28.851356252351511 ], [ -82.018587899450836, 28.85131041969451 ], [ -82.018616478495019, 28.851252816333155 ], [ -82.018635603127137, 28.851201899404138 ], [ -82.018646166584105, 28.851160819643095 ], [ -82.018652861803531, 28.851117823899475 ], [ -82.018655272797659, 28.85107353572231 ], [ -82.018658822903035, 28.850767481369651 ], [ -82.018674294181622, 28.849321409254546 ], [ -82.018675521793739, 28.849226464881582 ], [ -82.018654588114515, 28.849168425956783 ], [ -82.018623570042223, 28.849123340064548 ], [ -82.018595674470092, 28.849094374343601 ], [ -82.018547521439885, 28.849058902066179 ], [ -82.018494554856943, 28.849036318038692 ], [ -82.018061107388107, 28.848861839742984 ], [ -82.018052877218267, 28.848858488736589 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01777349685841, 28.85096401656136 ], [ -82.01814539235879, 28.851242649584584 ], [ -82.018398195250995, 28.851431510653782 ], [ -82.018448114484386, 28.851468802687421 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wentrop Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01777349685841, 28.85096401656136 ], [ -82.017827519786138, 28.850905950865386 ], [ -82.017875755321668, 28.85083648615776 ], [ -82.017895633491179, 28.850797651104042 ], [ -82.017911492952351, 28.850757889892588 ], [ -82.017927200790723, 28.850700183647326 ], [ -82.017934901196483, 28.850642069679267 ], [ -82.017938622754301, 28.850374260421649 ], [ -82.01794232752772, 28.850055314793046 ], [ -82.017945442239153, 28.849786989470797 ], [ -82.017949834975127, 28.849408801045136 ], [ -82.017953282246395, 28.849137599104001 ], [ -82.017957273288403, 28.849096223366413 ], [ -82.017965097440339, 28.849055678161264 ], [ -82.017974925175551, 28.849021180853821 ], [ -82.017989825173984, 28.848982036923257 ], [ -82.018052877218267, 28.848858488736589 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Margaret Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019352332236494, 28.851533559972616 ], [ -82.019366689527686, 28.851537547979529 ], [ -82.019393126680654, 28.851544745615058 ], [ -82.019408227966139, 28.851548323867743 ], [ -82.019426971728024, 28.851552114556835 ], [ -82.019444093953183, 28.851554959852802 ], [ -82.019456725960708, 28.851556691424339 ], [ -82.019479762675971, 28.851558900669776 ], [ -82.019502759331516, 28.851560615453554 ], [ -82.019968487054797, 28.851560721128433 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alwyne Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019968487054797, 28.851560721128433 ], [ -82.019997413047818, 28.8515534940368 ], [ -82.020014503736277, 28.851546566395939 ], [ -82.020029759562135, 28.85153793907276 ], [ -82.02004199907131, 28.851528874562575 ], [ -82.020054847962726, 28.851517565930468 ], [ -82.020062186365905, 28.851507918330451 ], [ -82.020070527457918, 28.851494701968402 ], [ -82.020076280624636, 28.851480987905259 ], [ -82.020079908664059, 28.851469834889905 ], [ -82.020083129864986, 28.851453446757382 ], [ -82.020084541990698, 28.85134355117788 ], [ -82.020085566853567, 28.851256231332357 ], [ -82.020086588947635, 28.851148743156457 ], [ -82.020088000696902, 28.851047786711483 ], [ -82.020088766183264, 28.850965508981975 ], [ -82.020090946806988, 28.850794880911046 ], [ -82.020092093930572, 28.850665618275016 ], [ -82.020093506446457, 28.85055790084791 ], [ -82.020100548349532, 28.849958667930316 ], [ -82.020102408018502, 28.849798229616592 ], [ -82.020102769849672, 28.849765832283577 ], [ -82.020102569904083, 28.849759871681822 ], [ -82.020101841888987, 28.849752510777844 ], [ -82.020101457073906, 28.84974990497475 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01559766995058, 28.850253076459758 ], [ -82.015689848420351, 28.85024978726403 ], [ -82.016499744467026, 28.850216079391245 ], [ -82.016651598982676, 28.850225609707497 ], [ -82.016787187437941, 28.850259017701607 ], [ -82.016911931208341, 28.850321073259696 ], [ -82.017074649619474, 28.85044042139755 ], [ -82.01777349685841, 28.85096401656136 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zinnia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014399113821895, 28.84964591218974 ], [ -82.014491806336139, 28.849650675936935 ], [ -82.014556613804274, 28.849651573402394 ], [ -82.014698973038264, 28.849646567141846 ], [ -82.01499559826722, 28.849635983553274 ], [ -82.015120773392354, 28.84962986702789 ], [ -82.015290265779186, 28.849609825728709 ], [ -82.015359420453379, 28.849616136171914 ], [ -82.01542953275019, 28.849639448620369 ], [ -82.015502223982153, 28.84968645800225 ], [ -82.015555506659069, 28.849756720998201 ], [ -82.01557720194053, 28.84982666984973 ], [ -82.015582465255704, 28.84992286497279 ], [ -82.01559766995058, 28.850253076459758 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Underhill Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014399112798586, 28.849645923919834 ], [ -82.01441710132741, 28.849447578159293 ], [ -82.014441623202529, 28.849202807193418 ], [ -82.014445364251728, 28.849174534866847 ], [ -82.014453229158789, 28.849144939339279 ], [ -82.014463532804569, 28.849119822607914 ], [ -82.014477009537131, 28.849095643949479 ], [ -82.014495237409974, 28.849070707769105 ], [ -82.014523394307048, 28.849039632182706 ], [ -82.01456000918013, 28.849014898028337 ], [ -82.014584879629524, 28.849001229146872 ], [ -82.014605236206407, 28.848992250911639 ], [ -82.014634974191281, 28.8489822123972 ], [ -82.014670404548013, 28.848974474166258 ], [ -82.014704468194637, 28.848970076403837 ], [ -82.014789328884191, 28.848972684250494 ], [ -82.014861434663061, 28.848971305192485 ], [ -82.014916354010353, 28.848965756549454 ], [ -82.014992005408999, 28.848954267614204 ], [ -82.015060128678229, 28.848938997875059 ], [ -82.015122812535267, 28.848920379324444 ], [ -82.01516421066772, 28.848905975895114 ], [ -82.015254128585212, 28.848869602396075 ], [ -82.015304622910818, 28.848852371017621 ], [ -82.015360659815144, 28.848836314722146 ], [ -82.015411448203935, 28.848825973278476 ], [ -82.015455375623219, 28.848818816803604 ], [ -82.015506800064813, 28.848813046335401 ], [ -82.015560495971371, 28.848809954543082 ], [ -82.015629868572077, 28.848810208549029 ], [ -82.015891226477081, 28.848816609190468 ], [ -82.01597223754402, 28.848811217786224 ], [ -82.016058849255273, 28.848804555249064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014343234794566, 28.850297839080906 ], [ -82.014397943197721, 28.850295888162453 ], [ -82.014615680182274, 28.850288119569885 ], [ -82.01559766995058, 28.850253076459758 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ragsdale Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013516948169965, 28.84901008364071 ], [ -82.013495353942147, 28.848908125139555 ], [ -82.013487703231363, 28.848808544692137 ], [ -82.013488759028547, 28.848678904001748 ], [ -82.013495285279987, 28.84835903325942 ], [ -82.01348984743737, 28.848244440931271 ], [ -82.013462722986603, 28.848172822972479 ], [ -82.013413908540642, 28.848125081165353 ], [ -82.013354246538825, 28.848072563550978 ], [ -82.013283742730266, 28.848053472843723 ], [ -82.01316443224475, 28.84804870801835 ], [ -82.013045124076285, 28.848063043098467 ], [ -82.012931241665285, 28.848096477592286 ], [ -82.012866168242397, 28.848134679891423 ], [ -82.01280652326642, 28.848206307593273 ], [ -82.012773994505537, 28.848301802442592 ], [ -82.012759744443301, 28.84887050903691 ], [ -82.012762593320346, 28.848938040054218 ], [ -82.01276683855582, 28.848975065792107 ], [ -82.01277213987791, 28.849007470727255 ], [ -82.012783620450932, 28.84906035293783 ], [ -82.012799206761997, 28.849114398753063 ], [ -82.012842991020165, 28.849271287740645 ], [ -82.012853456887669, 28.849322849961194 ], [ -82.012858369082977, 28.849357578363527 ], [ -82.012866899005999, 28.849478053453538 ], [ -82.012873493421338, 28.849585030222432 ], [ -82.012877193998179, 28.849643488469397 ], [ -82.012881752013996, 28.849724572855482 ], [ -82.012882261231852, 28.849749188610588 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Viceroy Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013516948169965, 28.84901008364071 ], [ -82.01363889412147, 28.848986116678628 ], [ -82.013747927256688, 28.848965722182658 ], [ -82.013793276650674, 28.848961096176723 ], [ -82.014017781870947, 28.848935469459693 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013570734109507, 28.850283814716772 ], [ -82.013646202799194, 28.850293807743284 ], [ -82.013767420900749, 28.850305032459396 ], [ -82.013937333046798, 28.850310778908284 ], [ -82.014286708276089, 28.850299856028727 ], [ -82.014343234794566, 28.850297839080906 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012854786082372, 28.850184122261961 ], [ -82.013240234849079, 28.850235483187685 ], [ -82.013570734109507, 28.850283814716772 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ragsdale Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013570734109507, 28.850283814716772 ], [ -82.013592188809696, 28.850121458112827 ], [ -82.013603951196018, 28.84995855202331 ], [ -82.013607993411256, 28.849813365244369 ], [ -82.013601392373715, 28.849619278122631 ], [ -82.013582175892083, 28.84929964448142 ], [ -82.013557748996405, 28.849158259113864 ], [ -82.013516944069053, 28.849010071911124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007666095711755, 28.850106584304857 ], [ -82.007829645742575, 28.850111002463503 ], [ -82.00839099673324, 28.850126532762076 ], [ -82.008445686976799, 28.850128044601327 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brandywine Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007666095711755, 28.850106584304857 ], [ -82.007648930025098, 28.849926795363395 ], [ -82.007633117173526, 28.84976116262019 ], [ -82.007616814234936, 28.849636495480407 ], [ -82.007589988383458, 28.849546778786738 ], [ -82.007466428553101, 28.849270972720863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melbourne Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007886725887502, 28.851946453194159 ], [ -82.007680424187768, 28.851842962388634 ], [ -82.007550435049609, 28.85175736914648 ], [ -82.007373992294475, 28.851611791013003 ], [ -82.007255745421062, 28.851489338622439 ], [ -82.007152744414171, 28.851342399530484 ], [ -82.007084654651081, 28.851202635644494 ], [ -82.007041719969067, 28.851067124909907 ], [ -82.007016821763983, 28.850924385846351 ], [ -82.006984674948669, 28.850704457573837 ], [ -82.00690250037313, 28.850142231108659 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00690250037313, 28.850142231108659 ], [ -82.007135528672208, 28.850118778278933 ], [ -82.007280316552865, 28.850109787931011 ], [ -82.007419699537607, 28.850105139592358 ], [ -82.007615960021937, 28.850105229819288 ], [ -82.007666095711755, 28.850106584304857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melbourne Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00690250037313, 28.850142231108659 ], [ -82.006850563362775, 28.849847973544627 ], [ -82.006780526038398, 28.84964678599745 ], [ -82.006700160818042, 28.849469378234801 ], [ -82.006642809441573, 28.849365840281781 ], [ -82.006564471152814, 28.849246332404064 ], [ -82.006441273472817, 28.849083968673117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vestridge Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007628569772223, 28.848943441902303 ], [ -82.007595401189775, 28.848569460371184 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Antilles Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006441273472817, 28.849083968673117 ], [ -82.006654479742735, 28.848957171012888 ], [ -82.00681582243466, 28.848877840275573 ], [ -82.00696030922785, 28.848817518104326 ], [ -82.007113081214953, 28.848763767780301 ], [ -82.007311689600741, 28.84870810215455 ], [ -82.007386870864778, 28.848690988922282 ], [ -82.007467219503013, 28.848675015001191 ], [ -82.007514448197455, 28.848663959375134 ], [ -82.007541858021682, 28.848649870284987 ], [ -82.007566442840485, 28.848628515966031 ], [ -82.007585205952537, 28.84859957174266 ], [ -82.007595401189775, 28.848569460371184 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vestridge Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00755710831433, 28.848146448667634 ], [ -82.007515174008191, 28.847686466925374 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vestridge Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007595401189775, 28.848569460371184 ], [ -82.007585647278546, 28.848459493238256 ], [ -82.00755710831433, 28.848146448667634 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sandalwood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0061029528582, 28.848536034843814 ], [ -82.006128407038261, 28.848515014604494 ], [ -82.0062143883343, 28.848462183809236 ], [ -82.006429591969408, 28.848351355423564 ], [ -82.006651619369848, 28.848253271464202 ], [ -82.006897849024966, 28.848168500455355 ], [ -82.007110384912735, 28.848109383161585 ], [ -82.007275273607917, 28.84807120587476 ], [ -82.007410850599413, 28.848050309910111 ], [ -82.007446065433911, 28.848050032949732 ], [ -82.007488021584805, 28.848062783134711 ], [ -82.007517452474005, 28.848082030543463 ], [ -82.007541900194269, 28.848111041149263 ], [ -82.00755710831433, 28.848146448667634 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sandalwood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005821228499741, 28.84890982967439 ], [ -82.005909348025398, 28.848757631654827 ], [ -82.006000857287972, 28.848620354874537 ], [ -82.0061029528582, 28.848536034843814 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melbourne Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006441273472817, 28.849083968673117 ], [ -82.006220868447016, 28.8487934949394 ], [ -82.006174433610326, 28.848744947361652 ], [ -82.00611167126273, 28.848685835323938 ], [ -82.006088204430483, 28.84865386756524 ], [ -82.006078333375868, 28.848622559748506 ], [ -82.006078744595683, 28.848589417133105 ], [ -82.006088706616168, 28.848559633421093 ], [ -82.0061029528582, 28.848536034843814 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fountainhead Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006127613199666, 28.850303253934904 ], [ -82.006018854878022, 28.850017080283539 ], [ -82.005897025717616, 28.849725318154096 ], [ -82.005790456622094, 28.849556933915107 ], [ -82.005574507444862, 28.849245037332707 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fountainhead Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006806243888164, 28.852191675539796 ], [ -82.006524693765954, 28.851726896028357 ], [ -82.006446848107458, 28.851576535572892 ], [ -82.006383512364238, 28.85141575643738 ], [ -82.006316849404243, 28.851134657665 ], [ -82.00627316457026, 28.850835768040891 ], [ -82.006244801634409, 28.850643215383432 ], [ -82.006210432854814, 28.850521089722555 ], [ -82.006127613199666, 28.850303253934904 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006127629597302, 28.850303248520397 ], [ -82.006215493521779, 28.850278266423366 ], [ -82.006355149658518, 28.85024221983722 ], [ -82.00650485673728, 28.85020844377728 ], [ -82.006667719109345, 28.850177258391131 ], [ -82.006840716585515, 28.850150328522883 ], [ -82.00690250037313, 28.850142231108659 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kananwood Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005416573494401, 28.850576643237975 ], [ -82.005359452878793, 28.850484230176182 ], [ -82.005261803815927, 28.850326247009665 ], [ -82.00512135959876, 28.850101307778001 ], [ -82.00502686308667, 28.849974794045746 ], [ -82.004954558029311, 28.849890347747603 ], [ -82.004919341876288, 28.849827054811971 ], [ -82.004899355482863, 28.849768520153351 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005416573494401, 28.850576643237975 ], [ -82.005564467688032, 28.850508607739158 ], [ -82.005635566765989, 28.850478109025318 ], [ -82.00578559385832, 28.850418248997165 ], [ -82.005952840680621, 28.850358405275351 ], [ -82.006127629597302, 28.850303248520397 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Prairie Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006512141505468, 28.853088267004615 ], [ -82.00668721371774, 28.852986237472578 ], [ -82.007303991016371, 28.852627937463364 ], [ -82.007464565063756, 28.852533207278622 ], [ -82.007565383408974, 28.852467224704345 ], [ -82.007623188750728, 28.852413116806773 ], [ -82.007668762736003, 28.852355556394773 ], [ -82.007840299715909, 28.852035999553664 ], [ -82.007886725887502, 28.851946453194159 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kananwood Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006108050823457, 28.852547869706903 ], [ -82.006070825975371, 28.852496796200025 ], [ -82.006001513303801, 28.852378419184259 ], [ -82.005929021345253, 28.852216804679546 ], [ -82.005776222365625, 28.851854715342373 ], [ -82.005695438458872, 28.851646367900841 ], [ -82.005648036568928, 28.851483767877383 ], [ -82.005612900290558, 28.851314788085737 ], [ -82.0055898338085, 28.851159904563062 ], [ -82.005548765354987, 28.850878900109237 ], [ -82.005534658341659, 28.850803862172828 ], [ -82.005516817786273, 28.850751029207409 ], [ -82.005489089880882, 28.850690067719448 ], [ -82.005416573494401, 28.850576643237975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kananwood Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006512141505468, 28.853088267004615 ], [ -82.00617856986058, 28.852644624671591 ], [ -82.006108050823457, 28.852547869706903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Prairie Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003731570013827, 28.853006813464837 ], [ -82.003811448448062, 28.853004767917245 ], [ -82.003980129314797, 28.853007148699049 ], [ -82.004108725724734, 28.853018639064963 ], [ -82.004242139393668, 28.853035829044334 ], [ -82.004421808519623, 28.85307179369121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003172046824318, 28.851705046275505 ], [ -82.003333660931787, 28.851593465905232 ], [ -82.003363079714845, 28.851575182810311 ], [ -82.003409575955587, 28.851550946855998 ], [ -82.003480366899154, 28.851521968769671 ], [ -82.003810650863173, 28.851392741451868 ], [ -82.004155684905257, 28.851257436820156 ], [ -82.004296973902555, 28.851200831487422 ], [ -82.00434711838308, 28.851177899845531 ], [ -82.004407211084896, 28.851148021962732 ], [ -82.004728186517553, 28.850961678509005 ], [ -82.004786482203073, 28.850927673364385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004786482203073, 28.850927673364385 ], [ -82.004863354315347, 28.850882833637563 ], [ -82.005002167301683, 28.850801863583829 ], [ -82.005112150054671, 28.850737734967087 ], [ -82.005229085367233, 28.850672331068704 ], [ -82.005381953020105, 28.850593495906633 ], [ -82.005416573494401, 28.850576643237975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hollyoak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004786482203073, 28.850927673364385 ], [ -82.004564856103826, 28.850633900917177 ], [ -82.00439544393646, 28.850463057700381 ], [ -82.004312122077891, 28.850389423694949 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kennedy Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003172046824318, 28.851705046275505 ], [ -82.003055601172349, 28.851574336774021 ], [ -82.002724734761088, 28.851202934233836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kennedy Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002724734761088, 28.851202934233836 ], [ -82.002369557883981, 28.850794915597508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jutland Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002724720412431, 28.851202918894856 ], [ -82.002961745646004, 28.851040575894292 ], [ -82.003021618226811, 28.851007150765625 ], [ -82.003105402116816, 28.850970487711965 ], [ -82.003322847104343, 28.850885594730883 ], [ -82.003428476929031, 28.850844151535341 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yorktown Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003428476929031, 28.850844151535341 ], [ -82.003233646761714, 28.850463113456744 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jutland Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003428476929031, 28.850844151535341 ], [ -82.003763967159301, 28.850712518669575 ], [ -82.003968060189635, 28.850632194226023 ], [ -82.004067410804623, 28.850581658147206 ], [ -82.004151058972042, 28.850523844400666 ], [ -82.004312122077891, 28.850389423694949 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hollyoak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004312122077891, 28.850389423694949 ], [ -82.004048070615852, 28.850146317774946 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valiant Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001491447564135, 28.848395972993636 ], [ -82.001124420368825, 28.847992124120495 ], [ -82.001034097775957, 28.847891381900808 ], [ -82.000954490106736, 28.847785899785013 ], [ -82.000846609780183, 28.847587388989879 ], [ -82.000756481986372, 28.847327672863763 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tisbury Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002892688829007, 28.849382878948429 ], [ -82.002792422933425, 28.849225437191308 ], [ -82.002602244953366, 28.848851870023715 ], [ -82.002571848525506, 28.848793521030991 ], [ -82.00252740424672, 28.848726255634709 ], [ -82.002484188102642, 28.848674116464011 ], [ -82.002426998027502, 28.848618097543202 ], [ -82.002345406067434, 28.848553428490437 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glenarden Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001491447564135, 28.848395972993636 ], [ -82.001549586986016, 28.848352023117407 ], [ -82.001713493019224, 28.84821687278108 ], [ -82.00188210321285, 28.848046211045109 ], [ -82.002071846550663, 28.847830577043947 ], [ -82.002112057935193, 28.84779686557092 ], [ -82.002147494751085, 28.847776227650137 ], [ -82.002181470232912, 28.847762132357555 ], [ -82.002223582012419, 28.847750926148805 ], [ -82.002254355003572, 28.847746602849018 ], [ -82.002298238915188, 28.847745708150573 ], [ -82.002331891864088, 28.847749187942021 ], [ -82.002367359898813, 28.84775694734045 ], [ -82.002399552591456, 28.847767992969615 ], [ -82.002454831248826, 28.847792209254536 ], [ -82.00252798038008, 28.847825671205953 ], [ -82.002601532440721, 28.847864728311738 ], [ -82.002676093086293, 28.847907449627272 ], [ -82.002765577005462, 28.847967611347222 ], [ -82.002813336808188, 28.848003632469286 ], [ -82.002843663698087, 28.848028602408089 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glenarden Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002843663698087, 28.848028602408089 ], [ -82.002866748875334, 28.848047607311273 ], [ -82.002923630290653, 28.848099323860378 ], [ -82.003060348075294, 28.848249949796898 ], [ -82.00337435502918, 28.848634637578158 ], [ -82.003474941656989, 28.848744987562299 ], [ -82.003536807051617, 28.848811612544601 ], [ -82.003611759923686, 28.848843735743827 ], [ -82.003658159939945, 28.848863960822786 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jodphur Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002345406067434, 28.848553428490437 ], [ -82.002393100839541, 28.848504650139866 ], [ -82.002444432600072, 28.84844705168398 ], [ -82.00259825945723, 28.848273779781454 ], [ -82.002683201230624, 28.848180457557437 ], [ -82.002843663698087, 28.848028602408089 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jodphur Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0005001412773, 28.849574479695381 ], [ -82.000596468243572, 28.849553204330352 ], [ -82.000642572754543, 28.849540166938766 ], [ -82.000731615903433, 28.849503196765639 ], [ -82.001020441143183, 28.849363254150376 ], [ -82.001382757225585, 28.849208300702053 ], [ -82.001591511012151, 28.849107981106368 ], [ -82.001786629515721, 28.848995508138966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jodphur Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001786629515721, 28.848995508138966 ], [ -82.002006319105234, 28.848851597410238 ], [ -82.002149347265942, 28.848734527161934 ], [ -82.002276995165943, 28.848620737725923 ], [ -82.002324190954511, 28.84857512740227 ], [ -82.002345406067434, 28.848553428490437 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nance Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000803754734889, 28.850226669152107 ], [ -82.000704636051992, 28.850104110804942 ], [ -82.000657307405291, 28.850034771305904 ], [ -82.000613666271292, 28.849952598296039 ], [ -82.000567849327069, 28.849816406022985 ], [ -82.000508839332838, 28.849605203222659 ], [ -82.0005001412773, 28.849574479695381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quailey Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000803754734889, 28.850226669152107 ], [ -82.000904227636454, 28.850162734352054 ], [ -82.001218717953293, 28.849990597009871 ], [ -82.001585045129815, 28.849830079396263 ], [ -82.001844758386696, 28.84973272314506 ], [ -82.001889080509898, 28.849714777701585 ], [ -82.001942862968875, 28.849684367703453 ], [ -82.001989790714617, 28.849628656191545 ], [ -82.002017651849997, 28.8495740285205 ], [ -82.002025345755584, 28.849523947762858 ], [ -82.002028883922804, 28.849479670676899 ], [ -82.002010580989648, 28.849419704510701 ], [ -82.001989943533744, 28.849365846974695 ], [ -82.001786629515721, 28.848995508138966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quailey Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999583229310645, 28.851048066797478 ], [ -81.999768727316521, 28.850971550120082 ], [ -81.999886981570086, 28.850900830387285 ], [ -82.000322689358569, 28.850556069842032 ], [ -82.000451574394305, 28.850458462308065 ], [ -82.00059496625191, 28.850359528271827 ], [ -82.00070693740561, 28.850283269032953 ], [ -82.000803754734889, 28.850226669152107 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glenarden Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000833211559211, 28.848729767125153 ], [ -82.001042378039756, 28.848646600307141 ], [ -82.00128923286502, 28.848522389811073 ], [ -82.001491447564135, 28.848395972993636 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nance Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0005001412773, 28.849574479695381 ], [ -82.000449500596474, 28.8493955713035 ], [ -82.000384841014565, 28.849227488722388 ], [ -82.000296686692124, 28.849106165336742 ], [ -82.000249057438481, 28.849050252896998 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glenarden Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000249057438481, 28.849050252896998 ], [ -82.000322954963522, 28.848988382002911 ], [ -82.000389127019019, 28.848943044002617 ], [ -82.000477924801956, 28.848896900249049 ], [ -82.000612118523421, 28.848831621270325 ], [ -82.000832228723752, 28.848730156922329 ], [ -82.000833211559211, 28.848729767125153 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nance Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000249057438481, 28.849050252896998 ], [ -82.000202240910596, 28.849014271479106 ], [ -82.000098843092687, 28.848945598358448 ], [ -81.999995998744296, 28.848897460753605 ], [ -81.999891240662009, 28.848864554398681 ], [ -81.999788260708826, 28.848843555698988 ], [ -81.999657254839022, 28.848839719583719 ], [ -81.999592101337768, 28.848843934002378 ], [ -81.999523876262003, 28.848855491341453 ], [ -81.999457987843471, 28.848868233385669 ], [ -81.999405258597889, 28.848883867361394 ], [ -81.999234503830436, 28.848938270851971 ], [ -81.999145098657522, 28.848966756016321 ], [ -81.999084636729037, 28.848982568465349 ], [ -81.999035124528888, 28.848989306486953 ], [ -81.998975691798549, 28.848985577655451 ], [ -81.998922233131069, 28.848972109361647 ], [ -81.998877304498578, 28.848952038954522 ], [ -81.998840172072065, 28.848927497682126 ], [ -81.998798798007201, 28.848886927793814 ], [ -81.998777339907733, 28.848858332598986 ], [ -81.998723952762504, 28.848736117407714 ], [ -81.998694663533342, 28.848658755183976 ], [ -81.99868995002528, 28.848607157666603 ], [ -81.99869305085366, 28.848568423507679 ], [ -81.998702125516857, 28.84853327607901 ], [ -81.99871939497875, 28.848495301811806 ], [ -81.998746385199809, 28.848457105676204 ], [ -81.998769762557643, 28.848433299474731 ], [ -81.998825641472521, 28.848389951447402 ], [ -81.998968003888805, 28.848342206340877 ], [ -81.999239164245409, 28.848258650387478 ], [ -81.999378347024034, 28.848228535885795 ], [ -81.999462873046141, 28.84821687313304 ], [ -81.999562595589538, 28.84820548920662 ], [ -81.999696319655968, 28.848201385129713 ], [ -81.999789966736572, 28.848204747402697 ], [ -81.999889184903722, 28.848213951150889 ], [ -81.999978156574798, 28.848227246771629 ], [ -82.000110449493803, 28.848252751009404 ], [ -82.000228616853306, 28.848291818617763 ], [ -82.000322150955498, 28.848327164945697 ], [ -82.000408157579059, 28.848365754080422 ], [ -82.000516555274487, 28.848423676903234 ], [ -82.000603315347632, 28.848478566974308 ], [ -82.00070310761707, 28.84855402685918 ], [ -82.000756297747373, 28.848609022397486 ], [ -82.000797747199542, 28.848666806049028 ], [ -82.000833211559211, 28.848729767125153 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vail Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004900156612706, 28.848234319496985 ], [ -82.004579095651252, 28.847960501798692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vail Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004579095651252, 28.847960501798692 ], [ -82.004553060541866, 28.847938297695912 ], [ -82.004374881748959, 28.847784748226026 ], [ -82.00432733573291, 28.847749555967628 ], [ -82.004287849557059, 28.847725619746313 ], [ -82.004252336924594, 28.847707044911363 ], [ -82.004209453600055, 28.847688121968865 ], [ -82.004178205628961, 28.8476765218292 ], [ -82.004144507294271, 28.847665917890787 ], [ -82.004106506714237, 28.847656719845556 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aber Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004579095651252, 28.847960501798692 ], [ -82.004599395311288, 28.847972567751754 ], [ -82.004611796207286, 28.847978199586798 ], [ -82.004628631620719, 28.84798371218719 ], [ -82.004644137712177, 28.847986886047124 ], [ -82.004660423647906, 28.847988420392316 ], [ -82.004679909079655, 28.847987929866399 ], [ -82.004697531247203, 28.847985275663067 ], [ -82.004712898685014, 28.847981129110398 ], [ -82.004729917041502, 28.847974285513907 ], [ -82.00474583359447, 28.847965297166883 ], [ -82.004776835247313, 28.847940312281384 ], [ -82.004907942611155, 28.847834158264284 ], [ -82.005041138565943, 28.847732969441509 ], [ -82.005220096872634, 28.847613594785869 ], [ -82.005361093855001, 28.847522871231373 ], [ -82.005605129053976, 28.847384395586907 ], [ -82.005775594890679, 28.847296839421272 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aber Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005775594890679, 28.847296839421272 ], [ -82.00580035647009, 28.847284120482648 ], [ -82.005995585557159, 28.847202941501568 ], [ -82.006152852227686, 28.847140864695671 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Onyx Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005775594890679, 28.847296839421272 ], [ -82.005800610721096, 28.847265991338691 ], [ -82.005812307932388, 28.847239707621146 ], [ -82.005816122470193, 28.84720156338777 ], [ -82.005811309629706, 28.847178117145681 ], [ -82.005798668904305, 28.847151689077695 ], [ -82.005767991711906, 28.847099277977602 ], [ -82.005735791092363, 28.847036144823068 ], [ -82.005703966318649, 28.846946668818102 ], [ -82.005690100079264, 28.846882379115602 ], [ -82.005686447471319, 28.846840075528377 ], [ -82.005681757423673, 28.846812001347438 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Onyx Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005681757423673, 28.846812001347438 ], [ -82.005659324166984, 28.846677736307125 ], [ -82.0056321921234, 28.846338731833978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ironton Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004106506714237, 28.847656719845556 ], [ -82.004193312369651, 28.847577468983665 ], [ -82.004320960904067, 28.847468137698634 ], [ -82.004506971460486, 28.847321065703426 ], [ -82.004688609075288, 28.847188090307494 ], [ -82.004829340460788, 28.847096161830166 ], [ -82.004985285125827, 28.846999389143306 ], [ -82.005187523627598, 28.846883065377831 ], [ -82.005337706936288, 28.84680594650623 ], [ -82.005448677804537, 28.846751689682254 ], [ -82.005499936945967, 28.846728180987625 ], [ -82.005529172092508, 28.846720713360668 ], [ -82.005564842507738, 28.846719840451446 ], [ -82.005595964028004, 28.846726117572118 ], [ -82.005623940630059, 28.846738442056466 ], [ -82.005640743475553, 28.84675140848432 ], [ -82.005643326099843, 28.846752120309301 ], [ -82.005661587612792, 28.846771456962713 ], [ -82.005671864475005, 28.846787790130804 ], [ -82.005681757423673, 28.846812001347438 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vail Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004106506714237, 28.847656719845556 ], [ -82.004077796444676, 28.847649771006278 ], [ -82.004024159624564, 28.847635243406479 ], [ -82.00396529171465, 28.847612065503579 ], [ -82.003901394616818, 28.847579918771775 ], [ -82.003776205044701, 28.847495506438037 ], [ -82.003667931103735, 28.847423657325969 ], [ -82.003607152615331, 28.847385165368213 ], [ -82.003503506337026, 28.847322422096337 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cosmos Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003503506337026, 28.847322422096337 ], [ -82.003535086677147, 28.847282240841647 ], [ -82.003607336566617, 28.847200749328959 ], [ -82.003703304774788, 28.847104206784035 ], [ -82.003846687090345, 28.846979393819772 ], [ -82.003969006320489, 28.8468765225929 ], [ -82.003997755087042, 28.846846995727823 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cosmos Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003230596356147, 28.847679319337015 ], [ -82.003439042031502, 28.847404436731868 ], [ -82.003503506337026, 28.847322422096337 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999326355684872, 28.847774191077658 ], [ -82.000072983176764, 28.847536478599331 ], [ -82.000645541838168, 28.847357047441911 ], [ -82.000756481986372, 28.847327672863763 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001825598874177, 28.847195579580021 ], [ -82.001912393786355, 28.847202001443346 ], [ -82.002087342755019, 28.847225581529525 ], [ -82.002313089582458, 28.847275405267666 ], [ -82.002530348268706, 28.847345577550943 ], [ -82.002740753412454, 28.847429997000777 ], [ -82.002957061355005, 28.847530053889422 ], [ -82.003123505441707, 28.847614047578876 ], [ -82.003230596356147, 28.847679319337015 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Druid Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001825598874177, 28.847195579580021 ], [ -82.001837724636559, 28.847034547600273 ], [ -82.001863154650309, 28.846935657330615 ], [ -82.001911961348569, 28.846849711331974 ], [ -82.001952695836934, 28.846798242510861 ], [ -82.002006596352842, 28.846746125694473 ], [ -82.002076412558452, 28.846696322208114 ], [ -82.002132550489776, 28.846663153749049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wyngate Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003503506337026, 28.847322422096337 ], [ -82.003386364953286, 28.847255696234118 ], [ -82.003257168458916, 28.847186970085563 ], [ -82.003127751916438, 28.847122968291345 ], [ -82.00299340713741, 28.8470613828319 ], [ -82.002842335043013, 28.846997742953256 ], [ -82.002731286608196, 28.84695458556094 ], [ -82.002643484917328, 28.846922841015111 ], [ -82.002549195051003, 28.846892150394609 ], [ -82.002463912656566, 28.846867388644643 ], [ -82.002367778262723, 28.846840833190367 ], [ -82.002297002443967, 28.846811509996577 ], [ -82.002234781793263, 28.846770101178876 ], [ -82.002196764916562, 28.846738023717016 ], [ -82.002170650600092, 28.846711144301324 ], [ -82.002132550489776, 28.846663153749049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Druid Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002132550489776, 28.846663153749049 ], [ -82.0021775044668, 28.846636592978022 ], [ -82.00227585793003, 28.846578514021939 ], [ -82.002372982485269, 28.84651924847633 ], [ -82.002483529804366, 28.846439810724906 ], [ -82.002580571741476, 28.846362024291491 ], [ -82.002624284425352, 28.846336509160988 ], [ -82.002666225340434, 28.846319682349286 ], [ -82.002702962299082, 28.846309951338398 ], [ -82.002747108797578, 28.846300610001705 ], [ -82.002793319571964, 28.846303162819972 ], [ -82.002828771684307, 28.846306852698362 ], [ -82.002869444416987, 28.846315691945581 ], [ -82.002974881130285, 28.846353127799858 ], [ -82.003133828135759, 28.846413513679341 ], [ -82.00340000220379, 28.846528606802988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Druid Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00340000220379, 28.846528606802988 ], [ -82.003435847267639, 28.846544107702403 ], [ -82.003683922646204, 28.846667912394718 ], [ -82.003855771288315, 28.846762632591432 ], [ -82.003997755087042, 28.846846995727823 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alzarine Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00340000220379, 28.846528606802988 ], [ -82.0035111317695, 28.846341751345864 ], [ -82.00358768466991, 28.846205099053847 ], [ -82.003641909488948, 28.84607140676901 ], [ -82.003695824350885, 28.845927529233112 ], [ -82.003750363377776, 28.845789696208861 ], [ -82.003776595712665, 28.845720775650772 ], [ -82.003815435090956, 28.845641678585555 ], [ -82.003860751805846, 28.845577732885399 ], [ -82.003897426790431, 28.84553390339256 ], [ -82.003975406088088, 28.845454761134008 ], [ -82.004029917940144, 28.845378541980683 ], [ -82.004061582182189, 28.845327764806388 ], [ -82.004097419884772, 28.845259695719506 ], [ -82.004124425516707, 28.845188466969674 ], [ -82.004140799079607, 28.845130776690542 ], [ -82.004158991310504, 28.845034201466806 ], [ -82.004163765618699, 28.844939472703011 ], [ -82.004158161045439, 28.844858267973009 ], [ -82.004147325400979, 28.844794210807436 ], [ -82.004125792976978, 28.84470827658923 ], [ -82.004101088217666, 28.844635351901285 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cosmos Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003997755087042, 28.846846995727823 ], [ -82.004039498312366, 28.846804124329232 ], [ -82.004124838234134, 28.846708381185856 ], [ -82.004216774784666, 28.846582287843546 ], [ -82.004300672823049, 28.846414736386365 ], [ -82.004374031255296, 28.84624805317921 ], [ -82.004453454341984, 28.846132870695691 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vertex Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004453454341984, 28.846132870695691 ], [ -82.004687956801718, 28.846275037662394 ], [ -82.004744129515757, 28.846290500617755 ], [ -82.004791718150514, 28.846303588037838 ], [ -82.004857152977522, 28.846310725987401 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cosmos Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004453454341984, 28.846132870695691 ], [ -82.004466218915013, 28.846114358624444 ], [ -82.004519568311338, 28.846056961422399 ], [ -82.004574386484691, 28.846005963312972 ], [ -82.004660569943667, 28.845940782716131 ], [ -82.004773598293994, 28.845866591727813 ], [ -82.005057316730444, 28.84567984155122 ], [ -82.005120217946853, 28.845621664207467 ], [ -82.0051348096748, 28.845604726536571 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Xanadu Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0051348096748, 28.845604726536571 ], [ -82.005402417890764, 28.845854306235896 ], [ -82.005464578203217, 28.845904882835608 ], [ -82.005522116020074, 28.84594365920978 ], [ -82.005610481915852, 28.845985405735536 ], [ -82.005715582553321, 28.846011434309101 ], [ -82.005811137015499, 28.846018820612468 ], [ -82.00605517379104, 28.846004487037327 ], [ -82.006298123117134, 28.845989467313096 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Xanadu Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006298123117134, 28.845989467313096 ], [ -82.006364287914437, 28.845985375300156 ], [ -82.006869185152354, 28.845947700824873 ], [ -82.007057965002446, 28.845934984883421 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Xanadu Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007057965002446, 28.845934984883421 ], [ -82.00723197299132, 28.845923264637459 ], [ -82.007543554164357, 28.845900012102305 ], [ -82.00762785786182, 28.845904146679395 ], [ -82.007689496072658, 28.845932191691045 ], [ -82.007730897792399, 28.845956662792883 ], [ -82.007793115479316, 28.846019260642255 ], [ -82.007819334249135, 28.846070489503134 ], [ -82.007826958823529, 28.846111572908292 ], [ -82.007830423063183, 28.846506054683829 ], [ -82.007828142041234, 28.846553066760951 ], [ -82.007815005110331, 28.84661700396747 ], [ -82.00777975742885, 28.846682416702542 ], [ -82.007730242625357, 28.846728528941167 ], [ -82.007689192516821, 28.846753949940741 ], [ -82.00764870238244, 28.846770819743568 ], [ -82.007609380092887, 28.846781057524225 ], [ -82.007535724465427, 28.846787472161672 ], [ -82.007428706644518, 28.846799331137753 ], [ -82.007312984977801, 28.84681304108582 ], [ -82.007175026745955, 28.846832772190336 ], [ -82.007114525080112, 28.846842831282714 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Firefly Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007114525080112, 28.846842831282714 ], [ -82.00705794860535, 28.845934987591104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Xanadu Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007114525080112, 28.846842831282714 ], [ -82.007076171961572, 28.846849206089207 ], [ -82.006972843905572, 28.846868458025835 ], [ -82.006749288735946, 28.846917518500032 ], [ -82.006675335166165, 28.846931184515601 ], [ -82.006614501694187, 28.846929809374952 ], [ -82.006562514075668, 28.846919015551205 ], [ -82.006521610761993, 28.846902112616871 ], [ -82.006467337581739, 28.846870240983247 ], [ -82.006417682264242, 28.846818986693314 ], [ -82.006389554735023, 28.846767995854172 ], [ -82.006377630449776, 28.84672668787768 ], [ -82.006370061415609, 28.846661925170014 ], [ -82.006298123117134, 28.845989467313096 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cosmos Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0051348096748, 28.845604726536571 ], [ -82.005149188245412, 28.845588033396087 ], [ -82.005192885034845, 28.84552704686741 ], [ -82.005226321348943, 28.845446318205369 ], [ -82.005247107735869, 28.84535515568988 ], [ -82.005249048745043, 28.845288602408321 ], [ -82.005241676065694, 28.845197589718012 ], [ -82.005216058262036, 28.845034154013273 ], [ -82.005215288550687, 28.844943403668161 ], [ -82.005228949038369, 28.844869090155079 ], [ -82.005269126537442, 28.844770029088508 ], [ -82.005301624171295, 28.844718732765401 ], [ -82.005328136826947, 28.844688826716361 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nordic Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004101088217666, 28.844635351901285 ], [ -82.004351922140685, 28.844579488070721 ], [ -82.004581067107011, 28.844561712560168 ], [ -82.004732235252774, 28.844554067400988 ], [ -82.004819927684508, 28.844554396803584 ], [ -82.005023852623964, 28.844578134624587 ], [ -82.005166458191539, 28.844610342325158 ], [ -82.005230804401236, 28.844634173704979 ], [ -82.005328136826947, 28.844688826716361 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cosmos Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005328136826947, 28.844688826716361 ], [ -82.005367016289398, 28.844644975088777 ], [ -82.005427523198634, 28.844596292647847 ], [ -82.005473634409995, 28.844567483989284 ], [ -82.005557424297024, 28.844524933641839 ], [ -82.005617689681642, 28.844486079948208 ], [ -82.005679244867878, 28.844439391452735 ], [ -82.005722151019057, 28.844383934106876 ], [ -82.005775813942051, 28.844295924733615 ], [ -82.005811041785492, 28.844194879512315 ], [ -82.005833247386064, 28.844075914065858 ], [ -82.005837351817732, 28.844057424746524 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cosmos Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005837351817732, 28.844057424746524 ], [ -82.005851769797445, 28.843957454045903 ], [ -82.005848531044151, 28.843655021759268 ], [ -82.005845320954478, 28.843410787333159 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iveywood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005845320954478, 28.843410787333159 ], [ -82.006143104642845, 28.843452150933416 ], [ -82.006312715655781, 28.843465379928343 ], [ -82.00654194116612, 28.843470302217003 ], [ -82.006701486534951, 28.843464977929486 ], [ -82.00704246204198, 28.843440025300456 ], [ -82.007406502101944, 28.843406837118582 ], [ -82.007678403538065, 28.843383498716722 ], [ -82.007818602809976, 28.843382957233747 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "New Haven Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007001140025167, 28.84280800112947 ], [ -82.007180001450592, 28.842797179424775 ], [ -82.007459983720736, 28.842785867019291 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "New Haven Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006407128673814, 28.842836636966918 ], [ -82.006482639050773, 28.842839253152508 ], [ -82.006656196622586, 28.842835058909479 ], [ -82.006858044053502, 28.842819318142478 ], [ -82.006952503287579, 28.842810944909111 ], [ -82.007001140025167, 28.84280800112947 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cosmos Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005845320954478, 28.843410787333159 ], [ -82.005844776677492, 28.843369306513562 ], [ -82.005843531464521, 28.843249484750793 ], [ -82.005838103534643, 28.843139667018981 ], [ -82.005827252089773, 28.84304417180492 ], [ -82.005807200754361, 28.842963017296782 ], [ -82.005767172445573, 28.842830149631268 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "New Haven Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005767172445573, 28.842830149631268 ], [ -82.005871856307692, 28.842804414585078 ], [ -82.005969182075859, 28.842798080241263 ], [ -82.006077145955359, 28.84280502735902 ], [ -82.006202969604786, 28.842822753522302 ], [ -82.00633506470453, 28.842834140602154 ], [ -82.006407128673814, 28.842836636966918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Karin Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006147063127912, 28.840475361187721 ], [ -82.006618024686333, 28.840793328816353 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Viscaya Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006407128673814, 28.842836636966918 ], [ -82.006409787140043, 28.842213746543049 ], [ -82.006412158386496, 28.841657958830108 ], [ -82.006414495205405, 28.841109828951677 ], [ -82.006415343593673, 28.840911193261661 ], [ -82.006415582021575, 28.840887320916508 ], [ -82.006416966834067, 28.840875318370838 ], [ -82.006421983089794, 28.840856811842919 ], [ -82.006427715990611, 28.84084397989292 ], [ -82.006434856903539, 28.840830581234162 ], [ -82.006450917278642, 28.840813549508066 ], [ -82.006465823007488, 28.840801429086099 ], [ -82.006484736706426, 28.840790430058611 ], [ -82.006506417461708, 28.840782155876681 ], [ -82.006527276563403, 28.840777678634449 ], [ -82.00654368113328, 28.840776290178315 ], [ -82.006562418215466, 28.84077689752209 ], [ -82.00658075372003, 28.840779797642735 ], [ -82.006599981972983, 28.84078549306891 ], [ -82.006618024686333, 28.840793328816353 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ivey Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007001140025167, 28.84280800112947 ], [ -82.007026155893954, 28.8428004178772 ], [ -82.007049677413178, 28.842789834520779 ], [ -82.007078320145084, 28.842767917044185 ], [ -82.007097634893299, 28.842741867438853 ], [ -82.007108746833794, 28.84271080951557 ], [ -82.007110532073668, 28.842663483444223 ], [ -82.007116924017041, 28.841197333835225 ], [ -82.007116981235953, 28.841178713827237 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ivey Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007116981235953, 28.841178713827237 ], [ -82.007118212162396, 28.840781696913716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Karin Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006618024686333, 28.840793328816353 ], [ -82.0067899608988, 28.840909409286748 ], [ -82.007059287647181, 28.841091828909807 ], [ -82.007076641080943, 28.841104547912867 ], [ -82.007090686611363, 28.84111863857661 ], [ -82.00710270942011, 28.841135758379 ], [ -82.00711057980098, 28.841152641070572 ], [ -82.007113905915503, 28.841163518222562 ], [ -82.007116981235953, 28.841178713827237 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Infinity Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005837351817732, 28.844057424746524 ], [ -82.006069168602721, 28.844086922055919 ], [ -82.006248791041799, 28.844101140560181 ], [ -82.006448628538934, 28.844108223428435 ], [ -82.00662702547065, 28.844106523891661 ], [ -82.006830386453487, 28.844099352303502 ], [ -82.007077752791503, 28.844076253529785 ], [ -82.00732178336834, 28.844054755157927 ], [ -82.007533277634565, 28.84404042050436 ], [ -82.00762062624635, 28.844024620277629 ], [ -82.007689330624515, 28.843996388981495 ], [ -82.007744766821446, 28.843954464939429 ], [ -82.007790878937968, 28.843893425098187 ], [ -82.007817968544074, 28.843818381544995 ], [ -82.007817956890449, 28.843639330539787 ], [ -82.007818602809976, 28.843382957233747 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "New Moon Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004568327661559, 28.842527331803076 ], [ -82.004570207873343, 28.842108065876221 ], [ -82.004568213193494, 28.842071342045656 ], [ -82.004583306250566, 28.842018385225579 ], [ -82.004604147737197, 28.841975350003597 ], [ -82.004632322842753, 28.841938295957181 ], [ -82.004663920024839, 28.841909229024697 ], [ -82.004720242070292, 28.841875168888336 ], [ -82.004777010477653, 28.841855843385751 ], [ -82.004860457322522, 28.841839685040654 ], [ -82.005153291008568, 28.841778799779249 ], [ -82.005276880448179, 28.841756634996592 ], [ -82.005356200818341, 28.841751084003832 ], [ -82.005697545406036, 28.841752177144404 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cosmos Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005767172445573, 28.842830149631268 ], [ -82.00574750733179, 28.842764869379081 ], [ -82.005722122638559, 28.842675255025988 ], [ -82.005701559362379, 28.842559623375973 ], [ -82.005695149402939, 28.842460961783935 ], [ -82.005695933466328, 28.842239817193366 ], [ -82.00569704039205, 28.84181707558292 ], [ -82.005697545406036, 28.841752177144404 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Utopia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004568327661559, 28.842527331803076 ], [ -82.004819287803414, 28.842528204140184 ], [ -82.004883559179888, 28.842511388582707 ], [ -82.004926389011345, 28.842500680478693 ], [ -82.005008481838303, 28.842467369233535 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "New Moon Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004564989750691, 28.843271234155935 ], [ -82.004565178677609, 28.843228807691133 ], [ -82.00456723059591, 28.842771591684347 ], [ -82.004568327661559, 28.842527331803076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iveywood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004564989750691, 28.843271234155935 ], [ -82.004828335393228, 28.843272153038463 ], [ -82.00494184785596, 28.843276510371698 ], [ -82.005023358963584, 28.843284330787547 ], [ -82.005236619845647, 28.843315955058777 ], [ -82.005496921936626, 28.843358918422798 ], [ -82.005845320954478, 28.843410787333159 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Infinity Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004635697654706, 28.84392027931229 ], [ -82.004657876513889, 28.843918835876291 ], [ -82.004732255929923, 28.843913991900152 ], [ -82.004813565141745, 28.8439102042732 ], [ -82.004873307465516, 28.843911611844042 ], [ -82.005106597467034, 28.843944111835413 ], [ -82.005458309565626, 28.843999431147818 ], [ -82.005837351817732, 28.844057424746524 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "New Moon Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004635697654706, 28.84392027931229 ], [ -82.004626557005608, 28.84378389684035 ], [ -82.00461028530512, 28.843712275823634 ], [ -82.004585294447452, 28.843637470815054 ], [ -82.004569609968442, 28.843590521544833 ], [ -82.004561468601423, 28.84347951009104 ], [ -82.004564824164888, 28.843307893977954 ], [ -82.004564989750691, 28.843271234155935 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cosmos Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005697545406036, 28.841752177144404 ], [ -82.005700678434266, 28.841129153970709 ], [ -82.00570080097711, 28.841100376691109 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Illehaw Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004508067221451, 28.841104964953779 ], [ -82.004677172997106, 28.841140567829004 ], [ -82.004810696300865, 28.841149477729001 ], [ -82.004921541804961, 28.841148640584414 ], [ -82.005084227134674, 28.841129536279329 ], [ -82.005344521374326, 28.841100879347501 ], [ -82.00570080097711, 28.841100376691109 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Infinity Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007818602809976, 28.843382957233747 ], [ -82.00781913113137, 28.843173625680404 ], [ -82.007821308445401, 28.842661789403913 ], [ -82.007809741422321, 28.842514884555868 ], [ -82.007817840750505, 28.842013539038557 ], [ -82.007825925270836, 28.841318816491064 ], [ -82.007825896834376, 28.840932065196181 ], [ -82.007793352494133, 28.840824635537427 ], [ -82.007671333325575, 28.84072437302628 ], [ -82.007272742413932, 28.840466557873736 ], [ -82.006604837588313, 28.840010378645253 ], [ -82.006296488695682, 28.839801523004052 ], [ -82.006264503418379, 28.839779735411636 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fellowship Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003714886551364, 28.840269645340634 ], [ -82.003713158690346, 28.840039750164433 ], [ -82.003708752041462, 28.839970602859118 ], [ -82.0036659340292, 28.839739414669122 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Infinity Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004011281687667, 28.843896291991388 ], [ -82.004101013566824, 28.843914483873419 ], [ -82.004177000524237, 28.843926792108743 ], [ -82.004245054254, 28.843933729078483 ], [ -82.004329340837629, 28.843937094249494 ], [ -82.004409408077493, 28.843934986092005 ], [ -82.004518336820524, 28.843927919802294 ], [ -82.004635697654706, 28.84392027931229 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alzarine Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004101088217666, 28.844635351901285 ], [ -82.004088531891455, 28.844598289075432 ], [ -82.004046112071961, 28.844432399277412 ], [ -82.004005192424657, 28.844228359002233 ], [ -82.003987227442551, 28.844137777788298 ], [ -82.00398184645303, 28.84408641592286 ], [ -82.003982525183417, 28.844035403102428 ], [ -82.003988915356771, 28.843989623520898 ], [ -82.003995538586409, 28.843956380580682 ], [ -82.004011281687667, 28.843896291991388 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fellowship Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003712249965261, 28.84098802074892 ], [ -82.003712241764163, 28.840728496503598 ], [ -82.003715091340979, 28.840296828239008 ], [ -82.003714886551364, 28.840269645340634 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fellowship Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003422186470971, 28.842145913126604 ], [ -82.003431801768699, 28.84213475139747 ], [ -82.00347218517328, 28.842080754731256 ], [ -82.003509547410331, 28.842025295475899 ], [ -82.003553616292464, 28.841951030189207 ], [ -82.003582866180224, 28.841894644414175 ], [ -82.003611290897524, 28.841832250188684 ], [ -82.003636960851608, 28.841766645608605 ], [ -82.003658042847178, 28.841702541659664 ], [ -82.00368515440374, 28.841597497203299 ], [ -82.003696205705126, 28.841532499281499 ], [ -82.003702670531112, 28.841482616905374 ], [ -82.00370801783113, 28.841416750186291 ], [ -82.003709779450773, 28.841352319116414 ], [ -82.003711141041748, 28.841081821899635 ], [ -82.003712249965261, 28.84098802074892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Usher Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003422186470971, 28.842145913126604 ], [ -82.003810751345341, 28.842389449995679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tudor Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002579176965909, 28.842024425505254 ], [ -82.002687226924792, 28.841843207361045 ], [ -82.002838744548839, 28.841602890954437 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cross Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001937583794714, 28.841848992828297 ], [ -82.002007892584061, 28.841854161486889 ], [ -82.002073790740099, 28.841862537854446 ], [ -82.002138958290274, 28.841874423268965 ], [ -82.002224648440531, 28.841895357658952 ], [ -82.002293385510654, 28.841915052424689 ], [ -82.002416605964243, 28.841956399135324 ], [ -82.002518705570779, 28.841996897849299 ], [ -82.002579176965909, 28.842024425505254 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flowersville Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001937583794714, 28.841848992828297 ], [ -82.001945695898712, 28.841701470990152 ], [ -82.001952221583991, 28.84162136141553 ], [ -82.001963652166268, 28.841560181291296 ], [ -82.002004091035445, 28.841412410102869 ], [ -82.002064260884353, 28.841195027524812 ], [ -82.002081001904827, 28.841142012309504 ], [ -82.002098224883099, 28.841109224102514 ], [ -82.002129578405558, 28.84106712303506 ], [ -82.002165706579547, 28.841038283114646 ], [ -82.002196236525293, 28.841019253127818 ], [ -82.002240960687104, 28.840999796182796 ], [ -82.002280831631097, 28.840989165646498 ], [ -82.002315996881734, 28.840984327063044 ], [ -82.002468776247596, 28.840983753098264 ], [ -82.002609983814637, 28.840984239334411 ], [ -82.00303439869505, 28.840986345901083 ], [ -82.003712249965261, 28.84098802074892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cross Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002579176965909, 28.842024425505254 ], [ -82.002616614973391, 28.842041466851096 ], [ -82.002709784877638, 28.842089543118441 ], [ -82.002781262941511, 28.842130504966253 ], [ -82.002837028803697, 28.84216513012354 ], [ -82.002893694585424, 28.842204593412227 ], [ -82.002928339428578, 28.842234251672405 ], [ -82.002955320891601, 28.842263962385108 ], [ -82.002985829803706, 28.842297554756691 ], [ -82.003018165274852, 28.842345458578244 ], [ -82.003034708285114, 28.842376930755567 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fellowship Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003034708285114, 28.842376930755567 ], [ -82.003129605310491, 28.842340618456394 ], [ -82.003200661715084, 28.842313114851699 ], [ -82.003254907416263, 28.842287060632444 ], [ -82.003298241093333, 28.842260896519676 ], [ -82.003345133606402, 28.842225942952723 ], [ -82.003384274529893, 28.842189919387298 ], [ -82.003422186470971, 28.842145913126604 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cross Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003034708285114, 28.842376930755567 ], [ -82.003040111257818, 28.84238721154605 ], [ -82.003061526762679, 28.842442667852559 ], [ -82.003071619911495, 28.842480786528938 ], [ -82.003078272792123, 28.84251743630934 ], [ -82.003083235440812, 28.842620542817549 ], [ -82.003089126775478, 28.842851669491285 ], [ -82.003091852782717, 28.842893247737571 ], [ -82.003100546102729, 28.842931083109566 ], [ -82.003108392763295, 28.842961907572604 ], [ -82.00312694862312, 28.842994066355129 ], [ -82.003156197321644, 28.843028536651143 ], [ -82.003185241881241, 28.843054619101174 ], [ -82.00320978221005, 28.843071544117659 ], [ -82.00323614149778, 28.843085857819926 ], [ -82.003279352684629, 28.843102484711306 ], [ -82.003311288774313, 28.843110190700422 ], [ -82.003345704795663, 28.843114624869422 ], [ -82.003815441977707, 28.843117314569909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cross Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001268353618102, 28.841967158851649 ], [ -82.001319137993761, 28.841953960589471 ], [ -82.001522433185485, 28.841901126744631 ], [ -82.001621247182356, 28.841876400198402 ], [ -82.00169153525232, 28.841863176398366 ], [ -82.001754264526255, 28.841854908089818 ], [ -82.001851945261592, 28.841848463925583 ], [ -82.001937583794714, 28.841848992828297 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kaley Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001268353618102, 28.841967158851649 ], [ -82.00123502753658, 28.841849308682267 ], [ -82.001217764124192, 28.841740769348149 ], [ -82.001212649644373, 28.841638777104492 ], [ -82.001269712196432, 28.840941697823791 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neighborly Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000929807912797, 28.84253919349425 ], [ -82.000781547474915, 28.842486584655735 ], [ -82.000685212509083, 28.842437392709101 ], [ -82.000620990588075, 28.842391615949573 ], [ -82.000570460957817, 28.842324936333622 ], [ -82.000550208902894, 28.84226358305467 ], [ -82.000527706334324, 28.842124009689122 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrotwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000315533941134, 28.840361517647381 ], [ -82.000942156761724, 28.840363810805787 ], [ -82.001026097048751, 28.840364101180654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Urbane Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001255096589418, 28.839784679417711 ], [ -82.001284235722977, 28.839765471885134 ], [ -82.001310036217532, 28.83975394389735 ], [ -82.001336525398742, 28.839747812600695 ], [ -82.001762047090239, 28.839747829820968 ], [ -82.00230771981785, 28.839749704891645 ], [ -82.002742472662575, 28.839751202303081 ], [ -82.002758915071581, 28.839751291383401 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Urbane Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002758915071581, 28.839751291383401 ], [ -82.003224163157824, 28.83975924007779 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Irish Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002941957932947, 28.840249276299076 ], [ -82.002939827061851, 28.840234097724352 ], [ -82.002923102940514, 28.840113580449113 ], [ -82.002894004680471, 28.839903888356311 ], [ -82.002886033716393, 28.83984781370529 ], [ -82.002883375217635, 28.839837368640548 ], [ -82.002879572054709, 28.839827020140948 ], [ -82.002875228870835, 28.83981800796678 ], [ -82.002870415340425, 28.83980991254402 ], [ -82.002864973638154, 28.839802270089276 ], [ -82.002858106472928, 28.839794180112637 ], [ -82.002850716694851, 28.839786864323418 ], [ -82.002844411168269, 28.839781492086271 ], [ -82.002836462927135, 28.839775636238063 ], [ -82.002830240440318, 28.839771650845059 ], [ -82.002826350367002, 28.839769395138109 ], [ -82.00282122031328, 28.839766673859899 ], [ -82.002816668241479, 28.839764484933735 ], [ -82.002811338367778, 28.839762170598796 ], [ -82.002805537102716, 28.839759938380904 ], [ -82.002798489717335, 28.839757605123598 ], [ -82.002794740065326, 28.839756525119789 ], [ -82.002787744957203, 28.839754790993073 ], [ -82.002783266698742, 28.83975386980617 ], [ -82.00277932439937, 28.839753176894643 ], [ -82.002775485604388, 28.83975260579291 ], [ -82.002770957141038, 28.839752062673064 ], [ -82.002765104678161, 28.839751566493195 ], [ -82.002758915071581, 28.839751291383401 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Irish Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003001854216194, 28.84067599074238 ], [ -82.002941957932947, 28.840249276299076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrotwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001026097048751, 28.840364101180654 ], [ -82.001110252538822, 28.840364391502646 ], [ -82.002214958249652, 28.840368196885105 ], [ -82.00252676942597, 28.840369268605688 ], [ -82.002822896439056, 28.840370410231561 ], [ -82.002853400733329, 28.840363430406054 ], [ -82.002878622224941, 28.840352743078714 ], [ -82.00290033171342, 28.840337978277944 ], [ -82.002917782159514, 28.840320045543113 ], [ -82.002929619904492, 28.840301707762411 ], [ -82.002938403702302, 28.840278494865821 ], [ -82.002941957932947, 28.840249276299076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neighborly Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000527706334324, 28.842124009689122 ], [ -82.000505528683732, 28.841983951778531 ], [ -82.000499679128822, 28.84192699003756 ], [ -82.000495448723768, 28.841843988623392 ], [ -82.000488511807475, 28.841696503839238 ], [ -82.000484278340764, 28.841606521273043 ], [ -82.000472239021988, 28.841414770196735 ], [ -82.000462554756652, 28.841325391259634 ], [ -82.00045040693098, 28.841238180559557 ], [ -82.000435762756979, 28.841152026453653 ], [ -82.000418013519905, 28.841063792520583 ], [ -82.000400517433249, 28.840988037490717 ], [ -82.000351798438544, 28.840803420837563 ], [ -82.000322997122566, 28.840690332809061 ], [ -82.00031513712409, 28.840636714993078 ], [ -82.000309029504436, 28.840579640443028 ], [ -82.000306633617569, 28.840535564539362 ], [ -82.000306173527235, 28.840498512199645 ], [ -82.000307749676494, 28.840449405043053 ], [ -82.00031244730306, 28.840382525152339 ], [ -82.000315533941134, 28.840361517647381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cross Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000527706334324, 28.842124009689122 ], [ -82.000626580240137, 28.842111377490724 ], [ -82.000730680545232, 28.842094849058103 ], [ -82.000810777143087, 28.842079932085188 ], [ -82.000897750048679, 28.842061528541606 ], [ -82.001041122176844, 28.84202621378012 ], [ -82.001268353618102, 28.841967158851649 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neighborly Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000315533941134, 28.840361517647381 ], [ -82.000330344047981, 28.840260709232318 ], [ -82.000354764477152, 28.840079884242769 ], [ -82.000366602661828, 28.840008648928801 ], [ -82.000391879667362, 28.839918874842844 ], [ -82.000410168732458, 28.839869568310039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neighborly Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000410168732458, 28.839869568310039 ], [ -82.000428604325165, 28.839831767995879 ], [ -82.000651754941089, 28.839392160605321 ], [ -82.00084892314861, 28.83900339605891 ], [ -82.000873763087583, 28.838944110834213 ], [ -82.000880861508321, 28.838923438965676 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Picnic Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000880861508321, 28.838923438965676 ], [ -82.00134826916306, 28.839058032960555 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Little Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000567431737736, 28.837814532093986 ], [ -82.000655113265509, 28.837763134927197 ], [ -82.000770534540266, 28.837682095090788 ], [ -82.000848299308515, 28.83761491373658 ], [ -82.000946679747258, 28.837531512424658 ], [ -82.001012354413817, 28.837477261060791 ], [ -82.001085165442376, 28.837438714307396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wading Heron Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996249229954202, 28.836893618786632 ], [ -81.99629203564669, 28.836891366953363 ], [ -81.996383087252838, 28.836890479846513 ], [ -81.996519973335978, 28.836896807865969 ], [ -81.996662548476408, 28.836912618243645 ], [ -81.996737896412952, 28.83692621072311 ], [ -81.996867989782686, 28.836955566009152 ], [ -81.997005142309447, 28.836996744269957 ], [ -81.99725445199978, 28.837082020609238 ], [ -81.997410150361588, 28.837135066904565 ], [ -81.99758578954237, 28.837183905939284 ], [ -81.99768212752123, 28.837203796393823 ], [ -81.997812375448902, 28.837223543902756 ], [ -81.998103187601203, 28.837262216100658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leisure Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996060276795959, 28.836067069641505 ], [ -81.996058650170937, 28.836051241310944 ], [ -81.996057478706419, 28.836006393876669 ], [ -81.99606518701296, 28.835826941350145 ], [ -81.996080556153629, 28.835523976653842 ], [ -81.996086017554347, 28.835409517274339 ], [ -81.996082728529558, 28.835351092747253 ], [ -81.996070584513632, 28.835275543955508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leisure Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996249229954202, 28.836893618786632 ], [ -81.996240957708793, 28.836777398624896 ], [ -81.996236367106675, 28.83674541619963 ], [ -81.996224428777964, 28.836695940523541 ], [ -81.996139930584334, 28.836418985548526 ], [ -81.996086227338679, 28.836238181343369 ], [ -81.996071700063382, 28.836178160302545 ], [ -81.996060276795959, 28.836067069641505 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Justice Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996060276795959, 28.836067069641505 ], [ -81.996440563988429, 28.836052871974331 ], [ -81.996609732649475, 28.836048390236829 ], [ -81.996707081351019, 28.836053058584127 ], [ -81.996799007979433, 28.836063686469142 ], [ -81.997014330425188, 28.836100762042872 ], [ -81.997317272661789, 28.836153525755247 ], [ -81.997411893306349, 28.836170005646473 ], [ -81.997490109387769, 28.836208174821408 ], [ -81.997540077403571, 28.836253859631572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neighborly Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000085769270143, 28.837323391192335 ], [ -82.000005663134615, 28.837272300335187 ], [ -81.99994426143742, 28.837241854568799 ], [ -81.999856780982739, 28.83720781034809 ], [ -81.999779783671713, 28.837185844387861 ], [ -81.999701713438967, 28.837170500415205 ], [ -81.999602213690054, 28.837160406840656 ], [ -81.99953776943741, 28.837159340039278 ], [ -81.999475870620628, 28.83716232909212 ], [ -81.999345136329708, 28.837181870558705 ], [ -81.999176178701816, 28.837220798609582 ], [ -81.999088763424254, 28.837240510667236 ], [ -81.998926743289047, 28.837269477886618 ], [ -81.998832897746183, 28.837281527324699 ], [ -81.998734636592033, 28.837290510610455 ], [ -81.99862692422775, 28.837296144353211 ], [ -81.998514139429204, 28.83729735844657 ], [ -81.998419904659045, 28.837296223977404 ], [ -81.998322046469141, 28.837290720420516 ], [ -81.998103187601203, 28.837262216100658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neighborly Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000567431737736, 28.837814532093986 ], [ -82.000488004360108, 28.837714363221366 ], [ -82.000389397963488, 28.837606990231777 ], [ -82.000173614320246, 28.837391885740271 ], [ -82.000107056249888, 28.837336967409701 ], [ -82.000085769270143, 28.837323391192335 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ironwood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000498247924611, 28.836789993393324 ], [ -82.000547550090332, 28.836723611598782 ], [ -82.000887615615724, 28.836249267589693 ], [ -82.000945913339166, 28.836168366601122 ], [ -82.000970897121135, 28.836124346575659 ], [ -82.000983746982641, 28.836072474687967 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wading Heron Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996070584513632, 28.835275543955508 ], [ -81.996174764090441, 28.835260900799646 ], [ -81.996292677296054, 28.835239746000575 ], [ -81.99638250565053, 28.835221059935012 ], [ -81.996536708059196, 28.835183132929366 ], [ -81.996634870765874, 28.835155010583062 ], [ -81.996728558498432, 28.835125176374167 ], [ -81.996878965604381, 28.835070890942262 ], [ -81.996984867334902, 28.835027704498732 ], [ -81.997061094682778, 28.834993941902532 ], [ -81.997147140095066, 28.834953005231846 ], [ -81.997255842560037, 28.83489676675406 ], [ -81.99734465790803, 28.834846833104489 ], [ -81.997405841143333, 28.834809493251381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "King Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997781584526479, 28.835269101665947 ], [ -81.997656253629302, 28.835131834035884 ], [ -81.997405841143333, 28.834809493251381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warnock Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997177078571511, 28.841113454753454 ], [ -81.997177130838722, 28.8411133518916 ], [ -81.997201252655742, 28.84106591092214 ], [ -81.99745071919132, 28.840588445022394 ], [ -81.997748157562626, 28.840019246431158 ], [ -81.99792244992372, 28.839683560465964 ], [ -81.997966041985066, 28.839580558297655 ], [ -81.998014498732147, 28.839424125165532 ], [ -81.998048733486982, 28.83927345121937 ], [ -81.998075139834683, 28.839082163388436 ], [ -81.998081226446004, 28.838965634104557 ], [ -81.998082108125857, 28.838809408630926 ], [ -81.998058115037622, 28.838640370007173 ], [ -81.998036429686223, 28.838430281839727 ], [ -81.998021086848695, 28.838211100308271 ], [ -81.998018365046988, 28.837987824296288 ], [ -81.998026756345467, 28.837825309835573 ], [ -81.998039729150477, 28.837668620738949 ], [ -81.998065376995697, 28.837468357599743 ], [ -81.998093489423383, 28.83730725914512 ], [ -81.998103187601203, 28.837262216100658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cross Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999783717161236, 28.842132383645485 ], [ -81.999900463834962, 28.842140254730612 ], [ -82.000106531304809, 28.842149803609644 ], [ -82.000306249900461, 28.842142483940368 ], [ -82.000475287229307, 28.842130706529485 ], [ -82.000527706334324, 28.842124009689122 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cross Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999056214659518, 28.84208644148703 ], [ -81.999115645556316, 28.842088191526685 ], [ -81.999255139487147, 28.842097278749375 ], [ -81.999483279171727, 28.842112353097992 ], [ -81.999722830009645, 28.842128279776936 ], [ -81.999783717161236, 28.842132383645485 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ola Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998241329920248, 28.83998720524162 ], [ -81.998503386496793, 28.840027227810861 ], [ -81.998895551746713, 28.840069298472937 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Underwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998895745080418, 28.839737023858266 ], [ -81.998885418200018, 28.839683869747525 ], [ -81.998850465861651, 28.83957693879405 ], [ -81.998807593950289, 28.8394850284601 ], [ -81.99875070534253, 28.839392470110646 ], [ -81.998654755433279, 28.839258868060231 ], [ -81.998617651320473, 28.839220515977679 ], [ -81.998549122905558, 28.839174831368009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Underwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998895548672024, 28.840069322835213 ], [ -81.998904747906991, 28.840009486421078 ], [ -81.998912255813877, 28.839908564335683 ], [ -81.998904941730629, 28.839784356271434 ], [ -81.998895745080418, 28.839737023858266 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Omega Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998895745080418, 28.839737023858266 ], [ -81.999610060886553, 28.839777173127274 ], [ -81.999665460045406, 28.839780310657378 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Indianwood Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999783717161236, 28.842132383645485 ], [ -81.999750831467139, 28.841476088809944 ], [ -81.999719449818471, 28.841248824655615 ], [ -81.999677679782636, 28.841062759789477 ], [ -81.99964670442408, 28.840950696755105 ], [ -81.999607184859784, 28.840790599362084 ], [ -81.999587640346704, 28.840642096683577 ], [ -81.999580073649597, 28.840475467602364 ], [ -81.999595007039972, 28.840302000926766 ], [ -81.999635691876151, 28.840000727047862 ], [ -81.999665460045406, 28.839780310657378 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Omega Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999665460045406, 28.839780310657378 ], [ -81.99996415646271, 28.839797229646663 ], [ -82.000156867392221, 28.839808144742868 ], [ -82.000224183419363, 28.839815672051209 ], [ -82.000410168732458, 28.839869568310039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Underwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998864266772287, 28.840671983386429 ], [ -81.998853418167315, 28.840551858239415 ], [ -81.998864266028662, 28.840303573204235 ], [ -81.998885961000113, 28.840131683899944 ], [ -81.998895548672024, 28.840069322835213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Unique Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99829091767829, 28.841515785370383 ], [ -81.998274829539142, 28.841413544746427 ], [ -81.998243591774596, 28.841272649075059 ], [ -81.998199488583779, 28.841099866581263 ], [ -81.998180917264776, 28.841010889817241 ], [ -81.998178541596175, 28.840972892731497 ], [ -81.99818640506777, 28.840909953321141 ], [ -81.998209148986021, 28.840866693440709 ], [ -81.998261746221317, 28.840803777217033 ], [ -81.998302294357345, 28.840774791162811 ], [ -81.998334846877299, 28.840758367810398 ], [ -81.998394021200198, 28.840739957015764 ], [ -81.99853889288849, 28.840718970253384 ], [ -81.998864266772287, 28.840671983386429 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Underwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999056214659518, 28.84208644148703 ], [ -81.999037117791431, 28.841679119239977 ], [ -81.999031538248389, 28.841566924544114 ], [ -81.999021511914265, 28.841473380494151 ], [ -81.998999865182171, 28.841329188950983 ], [ -81.998967286961914, 28.841196445777527 ], [ -81.998931022747499, 28.841058433087522 ], [ -81.998896109457505, 28.840908967414226 ], [ -81.998871640928357, 28.840753607957886 ], [ -81.998864266772287, 28.840671983386429 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zircon Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997479965907146, 28.841489084254825 ], [ -81.99771354184341, 28.841532438199913 ], [ -81.99787014467428, 28.841546594518352 ], [ -81.99809247086948, 28.841538332952485 ], [ -81.99829091767829, 28.841515785370383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Unique Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998353559869955, 28.84214980570405 ], [ -81.998335609265098, 28.842060558291266 ], [ -81.998327067770916, 28.842000328289402 ], [ -81.9983165358896, 28.841798053496788 ], [ -81.998310866996022, 28.841682526552599 ], [ -81.998299697977075, 28.841571586859626 ], [ -81.99829091767829, 28.841515785370383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cross Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998353559869955, 28.84214980570405 ], [ -81.998465400203045, 28.842132366453487 ], [ -81.998595186754343, 28.842112261000711 ], [ -81.998732304577274, 28.84209593526349 ], [ -81.998820093722699, 28.842089267204202 ], [ -81.998926532034886, 28.842085092331434 ], [ -81.998995946507804, 28.842084667954055 ], [ -81.999056214659518, 28.84208644148703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cross Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997594165275899, 28.842255327291696 ], [ -81.997659032943304, 28.842251166161255 ], [ -81.997796380625843, 28.842235726543063 ], [ -81.99806752624599, 28.842192759529659 ], [ -81.998299108225837, 28.842158296579836 ], [ -81.998353559869955, 28.84214980570405 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cross Hill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99685755348429, 28.842208971577509 ], [ -81.997199860699723, 28.842250039861451 ], [ -81.997389662945153, 28.842259592985428 ], [ -81.997560246507774, 28.842257503010128 ], [ -81.997594165275899, 28.842255327291696 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Treeline Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999149937405917, 28.846448209408731 ], [ -81.999461949307701, 28.846199571825256 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vineland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000000102948235, 28.846856964976759 ], [ -82.000003585379559, 28.846848441810021 ], [ -82.000009753953066, 28.846828374550828 ], [ -82.000013265106773, 28.846812135763198 ], [ -82.000015502386717, 28.846795905089717 ], [ -82.000016464763419, 28.846781100955912 ], [ -82.000016416649757, 28.84676653322116 ], [ -82.000013981731058, 28.84674123254128 ], [ -82.000009236821839, 28.84671869741813 ], [ -82.000000927544079, 28.846693592508032 ], [ -81.999989860400717, 28.846669849199813 ], [ -81.999977499896062, 28.846649067266842 ], [ -81.999960728509024, 28.846623519344902 ], [ -81.999941276159291, 28.846596291322442 ], [ -81.999918949154093, 28.846567677349778 ], [ -81.999892419310996, 28.846536726392173 ], [ -81.99986586999573, 28.846508881167416 ], [ -81.999843128963235, 28.846486274736311 ], [ -81.999808149380897, 28.84645497274532 ], [ -81.999778170982921, 28.846430623931262 ], [ -81.999750074178507, 28.846409633500048 ], [ -81.999629711783285, 28.84632776142718 ], [ -81.999559114281425, 28.8462799064203 ], [ -81.999531141561803, 28.846259461838901 ], [ -81.999506201336487, 28.846239504511512 ], [ -81.999472502962021, 28.846210312030657 ], [ -81.999461949307701, 28.846199571825256 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 526A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062810550220561, 28.738510481683026 ], [ -82.062767399776945, 28.738419339677797 ], [ -82.06275743315129, 28.738275083436061 ], [ -82.062752435513971, 28.738190091342535 ], [ -82.062749746618962, 28.737728035149363 ], [ -82.062749090036519, 28.736626495658484 ], [ -82.062734015328715, 28.735436331802454 ], [ -82.062732865453953, 28.734475332767378 ], [ -82.062732200440777, 28.734335361834134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 528", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062732200440777, 28.734335361834134 ], [ -82.062425579145469, 28.734331681278025 ], [ -82.061876266437423, 28.734331930143014 ], [ -82.061411460024061, 28.734326409220763 ], [ -82.060940143116838, 28.734307519854056 ], [ -82.060382148262804, 28.734282938150944 ], [ -82.059508860425467, 28.734248941896993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 528", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0627687256043, 28.734172810364516 ], [ -82.062752701181367, 28.734190198265974 ], [ -82.06273863051095, 28.734216943276436 ], [ -82.062731067630565, 28.734250370629439 ], [ -82.062732200440777, 28.734335361834134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 25th Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0627687256043, 28.734172810364516 ], [ -82.062760887781096, 28.734110932554749 ], [ -82.062771735668633, 28.733775519224384 ], [ -82.062761226403452, 28.733640699639377 ], [ -82.062761129447168, 28.733478296646364 ], [ -82.06277130021283, 28.73304624104432 ], [ -82.062755201225642, 28.732540556932253 ], [ -82.062736030798334, 28.731227808016673 ], [ -82.06276286659697, 28.729979865326275 ], [ -82.062817654669971, 28.729355874502975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whittaker Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050051944760568, 28.856250416100625 ], [ -82.049887594634953, 28.856320642044963 ], [ -82.049740649420954, 28.856329465978529 ], [ -82.049583736708854, 28.856327330371681 ], [ -82.049144387155195, 28.856334250843592 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 440", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121046098061171, 28.789811712043772 ], [ -82.121154477223243, 28.789620458184768 ], [ -82.121679846767719, 28.788759095688331 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 453", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121046098061171, 28.789811712043772 ], [ -82.121224912168472, 28.789973281182412 ], [ -82.121324295531238, 28.790099951912204 ], [ -82.121393778257215, 28.790166196225776 ], [ -82.121471877995617, 28.790208144394015 ], [ -82.121584653065142, 28.790240511451753 ], [ -82.121738653548533, 28.790297670402264 ], [ -82.121853668785789, 28.79038924217409 ], [ -82.121927990456854, 28.790495032871529 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 454", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119044349033501, 28.787659113408157 ], [ -82.119081298489434, 28.78812509606945 ], [ -82.119084906569057, 28.788248853948446 ], [ -82.119102329890652, 28.788319123337157 ], [ -82.119141881898514, 28.788356276554545 ], [ -82.119244556787521, 28.788382977992388 ], [ -82.119400734196262, 28.78839067392105 ], [ -82.119571499557964, 28.788386042096743 ], [ -82.119734961425806, 28.788379196801387 ], [ -82.120031490719199, 28.788382285665353 ], [ -82.120890650085272, 28.788374826702899 ], [ -82.121362046313976, 28.7883710574045 ], [ -82.121784017897625, 28.788363982260563 ], [ -82.122143739248514, 28.788357379504131 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 463", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11865947905001, 28.780480383785058 ], [ -82.118734317662231, 28.780522336471069 ], [ -82.118806976230601, 28.78055283165066 ], [ -82.119092633558637, 28.780559009039685 ], [ -82.119625783700329, 28.780568430574363 ], [ -82.120287444058448, 28.780574275151189 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 463", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120745849629657, 28.780982750953857 ], [ -82.122483309778886, 28.78096587161869 ], [ -82.12419652104272, 28.780959855022285 ], [ -82.124809161016401, 28.780957003156633 ], [ -82.126236046730469, 28.780947663559505 ], [ -82.126381715681788, 28.780938360754693 ], [ -82.12646656543734, 28.780934543585364 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 464", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120610125268598, 28.778117722218646 ], [ -82.120725223219452, 28.778091117391366 ], [ -82.120857973534825, 28.778067125221007 ], [ -82.12105578660676, 28.778066949328352 ], [ -82.12309945957827, 28.778042319139793 ], [ -82.124635896759642, 28.778045262686486 ], [ -82.124803455984988, 28.778045109027943 ], [ -82.124947058649767, 28.778027401927897 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 464", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119138556607069, 28.778985239153396 ], [ -82.11919105127356, 28.778982196590217 ], [ -82.119256927756425, 28.778959220114757 ], [ -82.119451010213083, 28.778821536481452 ], [ -82.119650113989337, 28.778684135087442 ], [ -82.120296073827404, 28.778303901086151 ], [ -82.120398617657926, 28.778232332761899 ], [ -82.120466539596464, 28.778185089794388 ], [ -82.120549545470453, 28.778141507643983 ], [ -82.120610125268598, 28.778117722218646 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 601A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122176479602714, 28.662576045078072 ], [ -82.122561456884739, 28.662575998373541 ], [ -82.12290967063683, 28.662585998703321 ], [ -82.123186427490182, 28.66259720775502 ], [ -82.123283858304916, 28.662584515032371 ], [ -82.123335815308963, 28.662573008428762 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 601A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123335815308963, 28.662573008428762 ], [ -82.123400739415956, 28.662539716776426 ], [ -82.12342016826058, 28.662489276823589 ], [ -82.12342113730891, 28.662391597486145 ], [ -82.123420875729096, 28.662168152069345 ], [ -82.123423327564637, 28.661958966467814 ], [ -82.123425655366034, 28.661626359836731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 626 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.247751220089981, 28.70279033522856 ], [ -82.247798796324119, 28.702387464254773 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 72nd Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129074951108024, 28.650373678970148 ], [ -82.129103551154074, 28.650389695408833 ], [ -82.129139950846636, 28.650401415659733 ], [ -82.129800337696423, 28.650406786545677 ], [ -82.13103133393497, 28.65040778935759 ], [ -82.131612193291076, 28.650383245029609 ], [ -82.131879361757854, 28.650382128787665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 650", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129074951108024, 28.650373678970148 ], [ -82.129091822701866, 28.650359911421905 ], [ -82.129116465098392, 28.650326654208119 ], [ -82.12913718592425, 28.650272774235805 ], [ -82.12914449797799, 28.650187729491449 ], [ -82.12912939530554, 28.649537412237017 ], [ -82.129122063541317, 28.649328894131859 ], [ -82.129128747844746, 28.648597378513976 ], [ -82.129149651669664, 28.647988085960165 ], [ -82.129163216941123, 28.647571704182084 ], [ -82.129178905156891, 28.646238546999101 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008849430193251, 28.847331449168916 ], [ -82.008794105006857, 28.847330303864648 ], [ -82.008531625289791, 28.847328409178417 ], [ -82.008225761214419, 28.847330336772863 ], [ -82.007951350429579, 28.847330351804501 ], [ -82.007731171766267, 28.847338003287259 ], [ -82.007514247724231, 28.847357113533405 ], [ -82.007269123815405, 28.847388638734099 ], [ -82.007083653118272, 28.847424934780705 ], [ -82.006922048734012, 28.847459319291453 ], [ -82.006732240434658, 28.847508985426181 ], [ -82.006557618384221, 28.847563425638679 ], [ -82.006368896068125, 28.847631234784917 ], [ -82.006131368015929, 28.847731513319602 ], [ -82.005939393468282, 28.847822241470702 ], [ -82.005663904045363, 28.84798077172238 ], [ -82.005482776009814, 28.848100145232923 ], [ -82.005300563983539, 28.848234798185427 ], [ -82.005146550857106, 28.848358947121191 ], [ -82.005000131093666, 28.848496463300165 ], [ -82.004894925047211, 28.848599600185317 ], [ -82.004867820782678, 28.848625319452374 ], [ -82.004844393437395, 28.848645181733087 ], [ -82.004819664404039, 28.848662372321577 ], [ -82.004785390945827, 28.848681089896775 ], [ -82.004755019904096, 28.848694459378613 ], [ -82.00472725485821, 28.84870286519082 ], [ -82.004694207608054, 28.848709021705247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004610635537517, 28.84918868185256 ], [ -82.004610894828033, 28.849188700793469 ], [ -82.004654343672613, 28.849185701163027 ], [ -82.004696731540903, 28.849176774302798 ], [ -82.004737020251582, 28.849162141309844 ], [ -82.004774226972941, 28.849142159528828 ], [ -82.004807440621093, 28.849117316235212 ], [ -82.004835851580879, 28.849088219610927 ], [ -82.004858765028374, 28.849055577990502 ], [ -82.004875619377913, 28.849020192641685 ], [ -82.004886004727851, 28.848982927086226 ], [ -82.004889665933888, 28.848944692662425 ], [ -82.004886513880606, 28.848906421455581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003655197233286, 28.849726660040478 ], [ -82.003811306580289, 28.849623753057411 ], [ -82.004045586629161, 28.849448036915604 ], [ -82.00427996011436, 28.849270578008451 ], [ -82.004350242170773, 28.849219772693186 ], [ -82.004379527014763, 28.84920510401242 ], [ -82.004406860638582, 28.849193643978662 ], [ -82.00444200264694, 28.849181609856164 ], [ -82.004470636048026, 28.849177026246437 ], [ -82.004520872602853, 28.849175553170383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004331912128237, 28.848935920388296 ], [ -82.004334129334538, 28.848974878288274 ], [ -82.004343326826387, 28.849013034751792 ], [ -82.004359273981507, 28.849049426121013 ], [ -82.004381569026208, 28.849083133857167 ], [ -82.004409647234596, 28.849113308000504 ], [ -82.004442799376108, 28.849139184314069 ], [ -82.004480188114002, 28.849160108645965 ], [ -82.004520872602853, 28.849175553170383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003230596356147, 28.847679319337015 ], [ -82.00347973382766, 28.847836431184099 ], [ -82.003607239062973, 28.847932682896268 ], [ -82.003687962236256, 28.847997020966446 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004694207608054, 28.848709021705247 ], [ -82.00466284263409, 28.848702068559223 ], [ -82.004630773719484, 28.848698361923191 ], [ -82.004598433352371, 28.848697949606336 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004046186170086, 28.848269989898505 ], [ -82.003922247640659, 28.84814369443875 ], [ -82.00381161220416, 28.848056606460048 ], [ -82.003687962236256, 28.847997020966446 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004598433352371, 28.848697949606336 ], [ -82.004556526148278, 28.84870237301331 ], [ -82.004515858208279, 28.848712315777608 ], [ -82.004477360086838, 28.848727550493162 ], [ -82.004441916216507, 28.848747727944804 ], [ -82.004410339287574, 28.848772383425036 ], [ -82.004383349751762, 28.848800956584842 ], [ -82.004361570697895, 28.848832786019727 ], [ -82.004345499157296, 28.848867146264823 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004345499157296, 28.848867146264823 ], [ -82.004335914941137, 28.848901106611446 ], [ -82.004331912128237, 28.848935920388296 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003687962236256, 28.847997020966446 ], [ -82.003727013245026, 28.848099007746427 ], [ -82.003820728017573, 28.848206722902273 ], [ -82.003960753050421, 28.848346855830727 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999545287031566, 28.853567751172204 ], [ -81.999511674634277, 28.853514833515696 ], [ -81.99949280128142, 28.853480455591164 ], [ -81.999479134487245, 28.85344321287025 ], [ -81.999468721945675, 28.853387063257493 ], [ -81.999466770069262, 28.853323463351071 ], [ -81.999473599548779, 28.853262464834707 ], [ -81.999580059485197, 28.852859130294579 ], [ -81.99968310575737, 28.85259652190469 ], [ -81.999753612495198, 28.852439909868764 ], [ -81.999848427618531, 28.852254573854676 ], [ -81.999972718397515, 28.852047430889897 ], [ -82.000072504167576, 28.851895892669837 ], [ -82.000237380152157, 28.851678824768953 ], [ -82.000345848923274, 28.851555637817974 ], [ -82.00044889171663, 28.851445818426082 ], [ -82.00057796625569, 28.851316901679695 ], [ -82.000741751085499, 28.851177480157098 ], [ -82.000921805391101, 28.851030418584621 ], [ -82.001128975398998, 28.850884312226125 ], [ -82.001409901826321, 28.850713376429219 ], [ -82.00163767901013, 28.850594008101311 ], [ -82.001887149260739, 28.850481321673495 ], [ -82.002148550775189, 28.850382960563373 ], [ -82.002532518811321, 28.85026358804382 ], [ -82.002707145198443, 28.850199603951708 ], [ -82.002863335077322, 28.850139440293567 ], [ -82.003011931376847, 28.850073546943317 ], [ -82.003201744069955, 28.849986644283664 ], [ -82.003390470758831, 28.849887326552597 ], [ -82.003604144567859, 28.849760314451014 ], [ -82.003655197233286, 28.849726660040478 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wicker Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000000102948235, 28.846856964976759 ], [ -82.00021130347065, 28.846913477348664 ], [ -82.000300533064262, 28.846921805929579 ], [ -82.000351691973421, 28.846924186355576 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vineland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999531931562004, 28.847140948292594 ], [ -81.999766210524484, 28.847037275977989 ], [ -81.999841142107542, 28.847003324190091 ], [ -81.999862407644059, 28.846993690313013 ], [ -81.99989138104219, 28.846978996314093 ], [ -81.999911760096253, 28.846965987802243 ], [ -81.999927317256848, 28.84695422626675 ], [ -81.999942429640868, 28.846940553644146 ], [ -81.999956020129972, 28.846927018168241 ], [ -81.999966239904481, 28.8469149796125 ], [ -81.99997813838462, 28.846898694804917 ], [ -81.999987913388011, 28.846882751967822 ], [ -81.999996311003784, 28.846866241577814 ], [ -82.000000102948235, 28.846856964976759 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vineland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999461949307701, 28.846199571825256 ], [ -81.999420772881066, 28.846155350478838 ], [ -81.999383744020349, 28.846108260711198 ], [ -81.999245587390604, 28.845902997795211 ], [ -81.999177052803489, 28.845813021132809 ], [ -81.999094565383444, 28.845713987877055 ], [ -81.999000233188156, 28.84561162856788 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warnock Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998282228707765, 28.845964525215045 ], [ -81.998276859815093, 28.845954402165695 ], [ -81.998258870637187, 28.845918623663195 ], [ -81.998249471277603, 28.845899107546913 ], [ -81.998239188569144, 28.845877043304245 ], [ -81.998226768184296, 28.84584930171858 ], [ -81.998212967455942, 28.845816889774085 ], [ -81.998134497190719, 28.845625983151539 ], [ -81.99809215761438, 28.845522969799585 ], [ -81.998063891310196, 28.845454200082106 ], [ -81.998029875055892, 28.845371436397386 ], [ -81.997996212400537, 28.845289531704463 ], [ -81.997970478422701, 28.845226920247001 ], [ -81.997947957118285, 28.845172122810432 ], [ -81.997931355907767, 28.845131736203669 ], [ -81.997914307912794, 28.845090252382548 ], [ -81.997898261125613, 28.845051212923995 ], [ -81.997883592657303, 28.845015519238853 ], [ -81.997864398847156, 28.8449688209455 ], [ -81.997850700851288, 28.84493549131582 ], [ -81.997835955558102, 28.844899617162294 ], [ -81.997818891242332, 28.844858097235189 ], [ -81.997801500041774, 28.844815783270239 ], [ -81.997782388285486, 28.844769283472708 ], [ -81.997766653123023, 28.844730997428069 ], [ -81.997758423294314, 28.844710973296216 ], [ -81.997745782910243, 28.844680398415171 ], [ -81.997734375261103, 28.844654954972132 ], [ -81.997728301476101, 28.844642335204181 ], [ -81.997719253798593, 28.844624544263738 ], [ -81.997709536921121, 28.844606599016135 ], [ -81.99770161337527, 28.844592736737372 ], [ -81.997684424810018, 28.844564700858175 ], [ -81.997667412454831, 28.844539267232001 ], [ -81.997657054993169, 28.844524736296602 ], [ -81.997642149529227, 28.844504934001158 ], [ -81.99762312543055, 28.844481220128113 ], [ -81.997606536185273, 28.844462097233944 ], [ -81.997585364064392, 28.844439134936344 ], [ -81.997565505691156, 28.844419040190733 ], [ -81.997553096500184, 28.844407121385348 ], [ -81.997533093589908, 28.844388855607534 ], [ -81.997515801236702, 28.84437389232162 ], [ -81.99749138759978, 28.844353023296989 ], [ -81.99746965687838, 28.844334447082144 ], [ -81.997433439709667, 28.844303488220039 ], [ -81.997404467834741, 28.844278722025589 ], [ -81.99737175548799, 28.844250758875742 ], [ -81.997339665208173, 28.844223259516362 ], [ -81.997311074627248, 28.844197869815662 ], [ -81.997295831944655, 28.844183678918665 ], [ -81.997280790124393, 28.844169673899319 ], [ -81.997252676173417, 28.844142213402527 ], [ -81.997235372706484, 28.844124648729967 ], [ -81.997207495571757, 28.84409521398182 ], [ -81.997190076364802, 28.844076061241189 ], [ -81.997175555254771, 28.844059614579617 ], [ -81.997146174916125, 28.844024909412482 ], [ -81.997131039001687, 28.84400622862114 ], [ -81.997122127582173, 28.843994778150677 ], [ -81.997107536879028, 28.843976031500446 ], [ -81.997085903996634, 28.843946844099079 ], [ -81.99705884196996, 28.843908226563364 ], [ -81.99703126356539, 28.843866265964021 ], [ -81.997014969910012, 28.843839749501605 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warnock Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999326355684872, 28.847774191077658 ], [ -81.99931939507681, 28.847757256553823 ], [ -81.99930933437858, 28.84773277782886 ], [ -81.999301370473788, 28.847713402559691 ], [ -81.999287473871732, 28.847679597572647 ], [ -81.999277152883536, 28.847654486326743 ], [ -81.999266869818669, 28.847629468017736 ], [ -81.999253419036123, 28.847596744894741 ], [ -81.999243257936243, 28.847572025247878 ], [ -81.999232139659128, 28.847544969523028 ], [ -81.999223569089523, 28.847524119876351 ], [ -81.99921047189666, 28.847492253039544 ], [ -81.999200197062137, 28.84746725728257 ], [ -81.9991858813748, 28.847432429065712 ], [ -81.99917466371997, 28.847405135126042 ], [ -81.999161439479508, 28.847372962401199 ], [ -81.999150819305299, 28.847347122981233 ], [ -81.999139458194492, 28.847319483453976 ], [ -81.999130449040791, 28.847297563662277 ], [ -81.99912321896943, 28.847279991194654 ], [ -81.999119075640209, 28.847270117226543 ], [ -81.999112671564021, 28.847255294993822 ], [ -81.999100014047386, 28.847227412732575 ], [ -81.999092213132215, 28.847211057469703 ], [ -81.999080302687759, 28.847187157089493 ], [ -81.999068039695857, 28.847163762899122 ], [ -81.999053959688311, 28.847138235640973 ], [ -81.999038141574786, 28.847110999399021 ], [ -81.999023805354796, 28.847086682128044 ], [ -81.999003912566849, 28.847052932099317 ], [ -81.998981588920302, 28.847015057604771 ], [ -81.998970784250929, 28.846996837241445 ], [ -81.998943243280792, 28.846950004598408 ], [ -81.998924450173732, 28.846918122341005 ], [ -81.998905081131085, 28.846885261975569 ], [ -81.998886992095933, 28.8468545743726 ], [ -81.998869610194134, 28.846825081427234 ], [ -81.998853045079613, 28.846796981648161 ], [ -81.998827084476375, 28.846752934414607 ], [ -81.998797696919354, 28.846703080800761 ], [ -81.998772816514773, 28.846660869760225 ], [ -81.998747921782851, 28.846618636157039 ], [ -81.998723645028718, 28.846577645933564 ], [ -81.998710639141521, 28.846556627473213 ], [ -81.998701719174292, 28.846542699378176 ], [ -81.998686604207947, 28.846519922297851 ], [ -81.998676985308578, 28.846505933738996 ], [ -81.998660850637492, 28.846483274846683 ], [ -81.998646599567167, 28.846464042030316 ], [ -81.998633053563481, 28.846446389158629 ], [ -81.998612228289446, 28.846420351070481 ], [ -81.998600437783338, 28.846406154048505 ], [ -81.99858607498507, 28.846389362865104 ], [ -81.998553891645969, 28.846353418214889 ], [ -81.998532243438106, 28.846328980795736 ], [ -81.99850539330069, 28.846297499906729 ], [ -81.998486687387867, 28.846274748926337 ], [ -81.998459847571411, 28.846240837214893 ], [ -81.998445110800475, 28.846221530381346 ], [ -81.998416799436512, 28.846182965448776 ], [ -81.998389098918338, 28.84614316706524 ], [ -81.998379259767148, 28.846128490924123 ], [ -81.998358741153069, 28.846096890983365 ], [ -81.998342418113381, 28.846070714858982 ], [ -81.998328724736055, 28.846047988285147 ], [ -81.998315981367384, 28.846026147787615 ], [ -81.998304293558263, 28.846005492933742 ], [ -81.998295149307211, 28.845988892176216 ], [ -81.998282228707765, 28.845964525215045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nectar Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998282228707765, 28.845964525215045 ], [ -81.998541446204158, 28.845881935935367 ], [ -81.998640249818322, 28.845845816848374 ], [ -81.998736674910404, 28.845798439587199 ], [ -81.998819542507846, 28.845746082295094 ], [ -81.999000233188156, 28.84561162856788 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nectar Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997816416090089, 28.84611293744177 ], [ -81.998282228707765, 28.845964525215045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quietwoods Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998671504035016, 28.847525652496508 ], [ -81.998495589438519, 28.847383501144741 ], [ -81.998322461529369, 28.847207003313226 ], [ -81.99825767256813, 28.847122806425219 ], [ -81.998165713721846, 28.846960076886788 ], [ -81.998011146296477, 28.846586719149709 ], [ -81.997836909501032, 28.84616279653542 ], [ -81.997816416090089, 28.84611293744177 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Underbrush Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997014971959459, 28.843839754915507 ], [ -81.996939888985338, 28.843874909725539 ], [ -81.996890373413208, 28.843897229801179 ], [ -81.996852876084333, 28.843911072981701 ], [ -81.996819316203641, 28.843921174383325 ], [ -81.996784636257857, 28.843929488279226 ], [ -81.996678525370129, 28.843950782736819 ], [ -81.996427710850071, 28.843998522513921 ], [ -81.996356902893567, 28.844012161615037 ], [ -81.996278578044652, 28.84402239245162 ], [ -81.99621902604477, 28.844024430846449 ], [ -81.996146616917201, 28.844021871582193 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quietwoods Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997816416090089, 28.84611293744177 ], [ -81.997590238706323, 28.84556263202596 ], [ -81.997318944980876, 28.844902547031584 ], [ -81.99729665875374, 28.844848324257942 ], [ -81.997274351797444, 28.844802674293941 ], [ -81.997246599707822, 28.844766325184615 ], [ -81.997215972771173, 28.844738027288042 ], [ -81.997175161135686, 28.844711385795254 ], [ -81.997129690469208, 28.844691782176845 ], [ -81.997075088461429, 28.844678873449944 ], [ -81.997026928182706, 28.844675353349448 ], [ -81.996822982673791, 28.844680706375541 ], [ -81.996473780034151, 28.844689664443074 ], [ -81.996391182796941, 28.844684685948675 ], [ -81.996355655694316, 28.844676006570882 ], [ -81.996312597521424, 28.844658986048337 ], [ -81.996256246021105, 28.844626307404074 ], [ -81.996229707526666, 28.844594739442055 ], [ -81.996194056045411, 28.844545442689022 ], [ -81.996177849171076, 28.844504280793167 ], [ -81.996171179231297, 28.844463952907752 ], [ -81.996168072618204, 28.844422856361685 ], [ -81.996146616917201, 28.844021871582193 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Underbrush Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996146616917201, 28.844021871582193 ], [ -81.996102895357978, 28.844020326432265 ], [ -81.996027752219533, 28.844013308725263 ], [ -81.995881058318943, 28.843990571454274 ], [ -81.995810152257533, 28.843972982335572 ], [ -81.995713950197583, 28.843945094325374 ], [ -81.995627278057682, 28.843914204591869 ], [ -81.99555017987845, 28.843880859050415 ], [ -81.995512818305485, 28.843858750357587 ], [ -81.995448140680537, 28.843808804546047 ], [ -81.995410754958897, 28.843756774433206 ], [ -81.995377021923034, 28.843700069588028 ], [ -81.995365757515586, 28.843650965661016 ], [ -81.99535892033613, 28.843601020940074 ], [ -81.995364211965423, 28.843525840935744 ], [ -81.995381939967103, 28.843443670297887 ], [ -81.99540697900315, 28.843359652891905 ], [ -81.995451610316266, 28.84325244236932 ], [ -81.995489430369503, 28.843173813965528 ], [ -81.995507259187775, 28.843145858410377 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Florahome Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995507259187775, 28.843145858410377 ], [ -81.995592505028142, 28.843179472240159 ], [ -81.99563489659144, 28.843191249669374 ], [ -81.995687241227571, 28.843199661810484 ], [ -81.995896292428995, 28.843221423172707 ], [ -81.996142041901322, 28.843246097048862 ], [ -81.99623310039604, 28.843262293419276 ], [ -81.996366350515885, 28.843296795110813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Florahome Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994900792063063, 28.843181130824103 ], [ -81.994992355855544, 28.843151461094081 ], [ -81.995093040074153, 28.843127415721508 ], [ -81.995253958325478, 28.843100063712551 ], [ -81.995287220524062, 28.843097685531731 ], [ -81.995346688812219, 28.843099678149049 ], [ -81.995406091126029, 28.843109836613763 ], [ -81.995443016380094, 28.84312058528154 ], [ -81.995507259187775, 28.843145858410377 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Underbrush Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995507259187775, 28.843145858410377 ], [ -81.995592594692098, 28.843012054642077 ], [ -81.99582731668086, 28.842661632576728 ], [ -81.995989492392809, 28.842417205462002 ], [ -81.996026100843878, 28.842353244760361 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Innfields Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996026100843878, 28.842353244760361 ], [ -81.996177738614165, 28.842415541862273 ], [ -81.996267227762331, 28.842449231187675 ], [ -81.996366193280267, 28.84248292162167 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yuma Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994900792063063, 28.843181130824103 ], [ -81.99486019858341, 28.843082551327246 ], [ -81.994850386432518, 28.843037204614959 ], [ -81.994846313878767, 28.842978856789308 ], [ -81.994849684823023, 28.842933242608439 ], [ -81.994855596567959, 28.842900987178389 ], [ -81.994876232255464, 28.842837689361897 ], [ -81.994902475999183, 28.842786916680069 ], [ -81.994955987116739, 28.84270643839821 ], [ -81.995041369783479, 28.84257897277482 ], [ -81.995144448759106, 28.842425081892149 ], [ -81.995301693862203, 28.842191304438838 ], [ -81.995389896585252, 28.842049998200871 ], [ -81.995441260881421, 28.841951105362785 ], [ -81.995481839536581, 28.841865615900243 ], [ -81.995513266064762, 28.841772538611625 ], [ -81.995587961463457, 28.841540897311575 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Florahome Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991353713927339, 28.843219451313814 ], [ -81.991476946948993, 28.843314244803516 ], [ -81.991602886929414, 28.843357578898303 ], [ -81.992161512468343, 28.843369187006719 ], [ -81.992304866039774, 28.84336318515048 ], [ -81.992482354997648, 28.843315113231178 ], [ -81.992742611977008, 28.843200866862375 ], [ -81.992861994396009, 28.84314742973433 ], [ -81.99292509497738, 28.843129412256779 ], [ -81.993015727861888, 28.843112505142638 ], [ -81.993093536538169, 28.84310707193238 ], [ -81.993309585683306, 28.843094473317365 ], [ -81.993468534504132, 28.84308520556538 ], [ -81.99362237164901, 28.843074758966416 ], [ -81.993780004700426, 28.843095780318453 ], [ -81.993858906646821, 28.84312550509998 ], [ -81.993928344438913, 28.843157233422602 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Florahome Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993928344438913, 28.843157233422602 ], [ -81.993997814041194, 28.843188974343114 ], [ -81.994154814039049, 28.843261103684892 ], [ -81.994226370748208, 28.843284974660833 ], [ -81.99430025115764, 28.843301438663723 ], [ -81.994368460799166, 28.843309399947312 ], [ -81.994439923528873, 28.843311359189844 ], [ -81.994523435480914, 28.843303194113719 ], [ -81.994568557177033, 28.843294432784013 ], [ -81.994620585305668, 28.843280780317595 ], [ -81.994714576113765, 28.843249108657414 ], [ -81.994857932942708, 28.843195021065213 ], [ -81.994900792063063, 28.843181130824103 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wine Palm Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993928344438913, 28.843157233422602 ], [ -81.994094322330454, 28.842809048917484 ], [ -81.99417813785881, 28.842635254830398 ], [ -81.994266328867425, 28.842481209666669 ], [ -81.994425892371666, 28.842241816477845 ], [ -81.994610396522233, 28.841966369738685 ], [ -81.994720411951235, 28.841800834277571 ], [ -81.994788071560166, 28.841671074419182 ], [ -81.994837541583294, 28.841530145054541 ], [ -81.994889709716631, 28.841370164464667 ], [ -81.994901045648533, 28.84133623274996 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Underbrush Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995587961463457, 28.841540897311575 ], [ -81.995536867092781, 28.841527928522794 ], [ -81.99490104154853, 28.841336248991329 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wine Palm Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994901045648533, 28.84133623274996 ], [ -81.994922066300717, 28.841273311188601 ], [ -81.99494677885636, 28.841217611830789 ], [ -81.99498947963545, 28.841138432421698 ], [ -81.995042352973144, 28.841067355197893 ], [ -81.995091767050823, 28.841006984598067 ], [ -81.995158258191424, 28.840944079129191 ], [ -81.99530745299873, 28.840824757163492 ], [ -81.995394385447923, 28.84075699157977 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Merry Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994601879690407, 28.850613024543023 ], [ -81.99463119248307, 28.850608368945412 ], [ -81.994875262279905, 28.850584552423168 ], [ -81.995138941514085, 28.850590272264771 ], [ -81.995283595236344, 28.850602666217373 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989701032712929, 28.848908133896856 ], [ -81.989913729697491, 28.848976498072876 ], [ -81.990128357251038, 28.849040013966619 ], [ -81.99034477392054, 28.849098636443426 ], [ -81.990562833126589, 28.84915232939214 ], [ -81.990664915649717, 28.849174983583829 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ichabod Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991040892913546, 28.851071229452813 ], [ -81.990869363227915, 28.851017368159262 ], [ -81.990757424753383, 28.850982219215261 ], [ -81.990621036513915, 28.850939002742933 ], [ -81.990514882227245, 28.850875567625177 ], [ -81.990478975583017, 28.850820936762851 ], [ -81.990454091923368, 28.850751628876605 ], [ -81.990451007723394, 28.85070120691023 ], [ -81.990458621813985, 28.850655190768869 ], [ -81.990483715381302, 28.850596339679356 ], [ -81.99075793860743, 28.850053377615712 ], [ -81.990851225006665, 28.849834704852853 ], [ -81.990902359863185, 28.849665366316625 ], [ -81.991003308198472, 28.849244779559182 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991003308198472, 28.849244779559182 ], [ -81.991244104701252, 28.84928649393219 ], [ -81.991486130714549, 28.849322268976714 ], [ -81.991729199675319, 28.84935207580082 ], [ -81.991973115795389, 28.849375891829375 ], [ -81.992217695583804, 28.849393699903231 ], [ -81.992320880713095, 28.849399400382971 ], [ -81.992608400341098, 28.849405090460689 ], [ -81.992928374156875, 28.849386008858513 ], [ -81.993362239278895, 28.849319184954066 ], [ -81.993844916016883, 28.849204615523373 ], [ -81.994123252266036, 28.849092928183534 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994123252266036, 28.849092928183534 ], [ -81.994264855811423, 28.849036108108667 ], [ -81.994685538411744, 28.848865647724054 ], [ -81.995108559228242, 28.848698548101957 ], [ -81.995371498809035, 28.848620897094545 ], [ -81.995419558108978, 28.848608105893302 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986801739139182, 28.847207779306121 ], [ -81.987739114037694, 28.847948918361976 ], [ -81.987859136936535, 28.848039511854545 ], [ -81.987983767347757, 28.848125146580795 ], [ -81.988112737798616, 28.848205645652321 ], [ -81.988245778763613, 28.848280833985708 ], [ -81.988368049914371, 28.848345298242407 ], [ -81.988491494875646, 28.848408006601655 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988491494875646, 28.848408006601655 ], [ -81.988726255393573, 28.848520917796826 ], [ -81.988964811136512, 28.84862748117396 ], [ -81.989206942763161, 28.848727599246313 ], [ -81.989452425804345, 28.848821179941922 ], [ -81.989701032712929, 28.848908133896856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shale Trail Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988540105043057, 28.848333769957904 ], [ -81.98880188410898, 28.847933991254141 ], [ -81.989107893707086, 28.847457244420983 ], [ -81.98919658452111, 28.847289180890286 ], [ -81.989242375484423, 28.847194398240362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shale Trail Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990817456109639, 28.847182804447456 ], [ -81.990592071084336, 28.847250667358164 ], [ -81.990347054592689, 28.847321169516647 ], [ -81.990230105787035, 28.84733763256774 ], [ -81.990105767895358, 28.847342728616923 ], [ -81.989961036206424, 28.84734127587954 ], [ -81.989780380728391, 28.847328380793289 ], [ -81.989660117252157, 28.847316997927585 ], [ -81.989517444268657, 28.847288353878369 ], [ -81.989242375484423, 28.847194398240362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shale Trail Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990878147109868, 28.84583216623648 ], [ -81.990970213570762, 28.845823914623381 ], [ -81.991422658986906, 28.845789640761019 ], [ -81.991627477859211, 28.845774125159682 ], [ -81.991759940106462, 28.845764091692949 ], [ -81.991944345319411, 28.845748098824114 ], [ -81.99204738344315, 28.845752880055553 ], [ -81.992091138316439, 28.845769157575599 ], [ -81.992150687728156, 28.845800591156298 ], [ -81.992199222407407, 28.845843608773393 ], [ -81.992230339971599, 28.845888398383689 ], [ -81.992248022947223, 28.845934330422676 ], [ -81.992296818403602, 28.846091900319486 ], [ -81.992340190868617, 28.846259016281987 ], [ -81.992365514132899, 28.846331343911057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lemon Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990878147109868, 28.84583216623648 ], [ -81.990895207121369, 28.845937802216284 ], [ -81.990936214730155, 28.84604031424049 ], [ -81.991000862762604, 28.84621736467286 ], [ -81.99104931364532, 28.846323496313531 ], [ -81.991102388081984, 28.846378726441205 ], [ -81.991173196687356, 28.84641855987195 ], [ -81.991250353986004, 28.846437526949302 ], [ -81.991338685825539, 28.846436414788847 ], [ -81.991505019208915, 28.846421305601627 ], [ -81.992144949664549, 28.846373598642788 ], [ -81.992206528322413, 28.84636941377596 ], [ -81.992263704781806, 28.846358735627746 ], [ -81.992365514132899, 28.846331343911057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shale Trail Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992365514132899, 28.846331343911057 ], [ -81.992396249440333, 28.846419126547701 ], [ -81.992465157700138, 28.846605113857652 ], [ -81.992490268311116, 28.846672888410239 ], [ -81.992508270976856, 28.846736496607235 ], [ -81.992508265224743, 28.846812893071114 ], [ -81.992475920270735, 28.846880026427797 ], [ -81.992439149117885, 28.846931876260577 ], [ -81.992345557136076, 28.846989548999694 ], [ -81.992280047012343, 28.847004520770859 ], [ -81.992215400635104, 28.847008639622029 ], [ -81.9916098918507, 28.847056282321333 ], [ -81.991408334618683, 28.847071549969108 ], [ -81.991142239789667, 28.847099162887353 ], [ -81.990937373348302, 28.847146696079232 ], [ -81.990817456109639, 28.847182804447456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shale Trail Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990130966782189, 28.846108587607798 ], [ -81.990157927188207, 28.846097092419928 ], [ -81.99026433875639, 28.846044174578516 ], [ -81.990478615007447, 28.845935965680969 ], [ -81.990585982769275, 28.84589024625296 ], [ -81.990663010357352, 28.845866014839782 ], [ -81.990786105230598, 28.845840415983826 ], [ -81.990878147109868, 28.84583216623648 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kimble Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990334100944523, 28.846687311105189 ], [ -81.990286238776548, 28.846560957671191 ], [ -81.990261350783058, 28.846442261069949 ], [ -81.990209693654137, 28.846254636217438 ], [ -81.990179562315447, 28.846193135503903 ], [ -81.990130966782189, 28.846108587607798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shale Trail Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989242375484423, 28.847194398240362 ], [ -81.989281472665283, 28.847113478968911 ], [ -81.989364661009219, 28.846892213097181 ], [ -81.989417091298549, 28.84672196202019 ], [ -81.989476324230196, 28.846493318707399 ], [ -81.989498125229503, 28.846408227535559 ], [ -81.989525319359146, 28.846358041600073 ], [ -81.989568552031997, 28.846308950512654 ], [ -81.98961060442538, 28.846276163993476 ], [ -81.989677451005278, 28.846239737679529 ], [ -81.989850993822685, 28.846206327807607 ], [ -81.99001369007452, 28.846158592785201 ], [ -81.990130966782189, 28.846108587607798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amish Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994123236892662, 28.849092935401305 ], [ -81.993883915334962, 28.848674618165138 ], [ -81.993625329565234, 28.848222622780586 ], [ -81.993570638195493, 28.848128275906671 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tango Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992885081805881, 28.848242031454909 ], [ -81.993169788924803, 28.848221470296842 ], [ -81.993396193442436, 28.848194105853675 ], [ -81.99347508731131, 28.848169832332939 ], [ -81.993570638195493, 28.848128275906671 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tango Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992163917002657, 28.848295108551454 ], [ -81.992443076911172, 28.848273951272574 ], [ -81.992885081805881, 28.848242031454909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ultra Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993138556734976, 28.848957365083152 ], [ -81.993081978242628, 28.84885419246875 ], [ -81.993028728117068, 28.84872883320325 ], [ -81.992904041388272, 28.848388569680427 ], [ -81.992885081805881, 28.848242031454909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arnett Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992111890157375, 28.848982780822897 ], [ -81.992165519155748, 28.848786923161718 ], [ -81.992187488351448, 28.848613152961576 ], [ -81.992182743960655, 28.848512672788392 ], [ -81.992163917002657, 28.848295108551454 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Behring Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991271704821756, 28.848362842139927 ], [ -81.9912548044951, 28.848285788604024 ], [ -81.991098157775099, 28.847877566805966 ], [ -81.991065119219314, 28.847790280908399 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tango Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991271704821756, 28.848362842139927 ], [ -81.992163917002657, 28.848295108551454 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Behring Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991214207690462, 28.848873193435345 ], [ -81.991270166808121, 28.848700652770592 ], [ -81.991287916322278, 28.848488742865381 ], [ -81.991277696826671, 28.848390164360239 ], [ -81.991271704821756, 28.848362842139927 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amish Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993570638195493, 28.848128275906671 ], [ -81.993392167181028, 28.8478204047648 ], [ -81.993321674034661, 28.847696258332849 ], [ -81.993294454661552, 28.847656735042516 ], [ -81.993262023772743, 28.847619860651353 ], [ -81.993180678375921, 28.847591207352718 ], [ -81.993111415723149, 28.847581040181407 ], [ -81.992923968780431, 28.847597143656369 ], [ -81.992301331728456, 28.847644313020602 ], [ -81.991642273810967, 28.847694240982037 ], [ -81.99132306585733, 28.847719451662403 ], [ -81.991223538760295, 28.847741036397192 ], [ -81.991065119219314, 28.847790280908399 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Behring Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991065119219314, 28.847790280908399 ], [ -81.990998310966773, 28.847633699215365 ], [ -81.990817456109639, 28.847182804447456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 532 South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09393657136637, 28.699546499829971 ], [ -82.093939872504777, 28.699169950425684 ], [ -82.093941374940144, 28.69781449557544 ], [ -82.093949410651547, 28.697704524140374 ], [ -82.093952007810501, 28.696494492093855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 532 South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09397886857198, 28.701350861435944 ], [ -82.093930918661158, 28.701290395107726 ], [ -82.093922742907836, 28.701242589058101 ], [ -82.093922674649335, 28.701166090610467 ], [ -82.093927985778706, 28.70104177769247 ], [ -82.093925493563248, 28.700809871989211 ], [ -82.09393657136637, 28.699546499829971 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 39th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09393657136637, 28.699546499829971 ], [ -82.093614560697972, 28.699552447964383 ], [ -82.09327663207344, 28.699552679122803 ], [ -82.092818480587297, 28.699552991171458 ], [ -82.092643023748622, 28.699558840051452 ], [ -82.092327848716025, 28.699567648088838 ], [ -82.092162137199907, 28.699570624866055 ], [ -82.092064663370053, 28.699576420369457 ], [ -82.091908692667261, 28.699573660485708 ], [ -82.091752710059922, 28.699553711070578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mullins Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966134388596032, 28.897033918490543 ], [ -81.966252501738381, 28.897033949173437 ], [ -81.966621560189864, 28.897036044663768 ], [ -81.966690440533654, 28.897034275241779 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mullins Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966849468000234, 28.896978423528253 ], [ -81.966862411168066, 28.896967563043603 ], [ -81.966881547637072, 28.896942959361411 ], [ -81.966911534498905, 28.896901252563122 ], [ -81.966936670656111, 28.896859051003915 ], [ -81.966954442937478, 28.896826266728219 ], [ -81.966975520922034, 28.896783695120483 ], [ -81.967002950313145, 28.896707330350637 ], [ -81.967042276751059, 28.896533850403234 ], [ -81.967059024516487, 28.896427454467236 ], [ -81.967067891662339, 28.896359477405102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mullins Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966690440533654, 28.897034275241779 ], [ -81.966707088991882, 28.897033847175624 ], [ -81.96673107043155, 28.897030838546481 ], [ -81.966757335228237, 28.897024816799384 ], [ -81.966788170516381, 28.897013769469684 ], [ -81.966815581511256, 28.897001718830754 ], [ -81.966839504220772, 28.896986783574725 ], [ -81.966849468000234, 28.896978423528253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mullins Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966690440533654, 28.897034275241779 ], [ -81.966693369240318, 28.897084088307757 ], [ -81.966699071873208, 28.897107203024547 ], [ -81.966710484589214, 28.897130318256647 ], [ -81.966727606043023, 28.897154440066078 ], [ -81.966747012806522, 28.897169517791458 ], [ -81.966768705956781, 28.897178567818845 ], [ -81.966791543269537, 28.897181588059659 ], [ -81.966814381228644, 28.8971825988761 ], [ -81.96683379483801, 28.89717958909802 ], [ -81.96684978307033, 28.897172558726645 ], [ -81.966862347390375, 28.897166530863956 ], [ -81.966879480796621, 28.897153473412445 ], [ -81.966890906753548, 28.897135386035071 ], [ -81.966900047881737, 28.897115291378796 ], [ -81.966903479953629, 28.897095194410308 ], [ -81.96690120618959, 28.897065047125167 ], [ -81.966892076531906, 28.897042936731957 ], [ -81.966879522005868, 28.897024847040289 ], [ -81.966849468000234, 28.896978423528253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlotte Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966589866353601, 28.858597226312149 ], [ -81.966589867387867, 28.858597197438662 ], [ -81.966592228881979, 28.858520963220222 ], [ -81.966583610816201, 28.858340668899821 ], [ -81.966555898955818, 28.858160368916277 ], [ -81.966512582727447, 28.857928117550554 ], [ -81.966458863761346, 28.857675999327949 ], [ -81.966419019434881, 28.857443747880904 ], [ -81.966401719597187, 28.857275673967742 ], [ -81.966398292697278, 28.857135105768602 ], [ -81.966398339790771, 28.856989955630343 ], [ -81.966415761000633, 28.856786747428181 ], [ -81.966445318370759, 28.856624795625738 ], [ -81.966481822478301, 28.856447569527184 ], [ -81.966515475261417, 28.85631738797375 ], [ -81.966544361381764, 28.856224097759096 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023224661049582, 28.865493737965956 ], [ -82.023631932312725, 28.865502826677609 ], [ -82.023900965628584, 28.865499724476464 ], [ -82.024885063285993, 28.865478953494137 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rio Grande Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023224661049582, 28.865493737965956 ], [ -82.023220042466306, 28.866354588460663 ], [ -82.023220058143295, 28.866426472253405 ], [ -82.023204759075455, 28.866475893962541 ], [ -82.023179252647651, 28.866534304315252 ], [ -82.02314864646884, 28.866610684882666 ], [ -82.023097629507291, 28.866714025149829 ], [ -82.023056818856986, 28.866803885095695 ], [ -82.023041523440057, 28.866880263994151 ], [ -82.023041535159109, 28.866929684943823 ], [ -82.023041545852777, 28.866979104088696 ], [ -82.023056870416383, 28.86704199839302 ], [ -82.023092611615098, 28.867109383671671 ], [ -82.023222964557547, 28.867279153721604 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020665191797065, 28.865468162837885 ], [ -82.021533061698221, 28.865472305507346 ], [ -82.022916820865589, 28.865489195500025 ], [ -82.023040053915409, 28.865489175104006 ], [ -82.023224661049582, 28.865493737965956 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025831444168332, 28.865476087683209 ], [ -82.026009471494589, 28.865475235042215 ], [ -82.026754419505977, 28.865476570915455 ], [ -82.027465726146048, 28.865477021497941 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961536773313199, 28.859886658333409 ], [ -81.961493182546036, 28.859864246139253 ], [ -81.961453670266621, 28.859847024253508 ], [ -81.961417881385898, 28.859827915805131 ], [ -81.961388602527052, 28.859802124046134 ], [ -81.961349564427081, 28.859766779483987 ], [ -81.961312701594835, 28.859714247541973 ], [ -81.961203205141189, 28.859542326984926 ], [ -81.961008056674885, 28.85925387866553 ], [ -81.960847603867123, 28.859015095785907 ], [ -81.960738112881842, 28.858832670208191 ], [ -81.960672123456561, 28.858715194326599 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960533604297993, 28.858737546191023 ], [ -81.960576961514207, 28.858822549684099 ], [ -81.960701626738839, 28.859037446549909 ], [ -81.96083388941706, 28.859238977870188 ], [ -81.961036628881274, 28.859531249000533 ], [ -81.961215509791586, 28.859811098122545 ], [ -81.961239619708522, 28.859853313072737 ], [ -81.961251753931364, 28.859889986220402 ], [ -81.961256685972415, 28.859931433186166 ], [ -81.961258839825362, 28.859971541232959 ], [ -81.961251236506769, 28.859999231660467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 317A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.170053422346925, 28.674253920227571 ], [ -82.170608251406534, 28.67427725127347 ], [ -82.170652833162279, 28.674277196279817 ], [ -82.170712257465894, 28.674266199942085 ], [ -82.170759263169131, 28.674233377346464 ], [ -82.170786453492639, 28.674200578700596 ], [ -82.170798771926684, 28.674161245989715 ], [ -82.170808602214919, 28.674113180035395 ], [ -82.170815274600244, 28.673645738218831 ], [ -82.170820184130008, 28.673619520252739 ], [ -82.170830040168298, 28.673586743351972 ], [ -82.170844860337638, 28.673562698389127 ], [ -82.170872065652034, 28.67353863607028 ], [ -82.170936447122614, 28.673529818855005 ], [ -82.171003314200178, 28.673527551211397 ], [ -82.172992158977834, 28.673546881200778 ], [ -82.173465221757752, 28.673550646292618 ], [ -82.175805773589232, 28.673576037993708 ], [ -82.176251761015024, 28.673579783210968 ], [ -82.176592371642627, 28.673589668767971 ], [ -82.176839714979479, 28.673593212221437 ], [ -82.17694800320379, 28.673595936343251 ], [ -82.177007562155609, 28.67359872377752 ], [ -82.177054087816842, 28.673600630326369 ], [ -82.177123788614779, 28.673600012651974 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 317A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177123788614779, 28.673600012651974 ], [ -82.177184516554433, 28.673599475203321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 44th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.177162005265188, 28.67591800091429 ], [ -82.177191286441285, 28.675655851189795 ], [ -82.177195987143691, 28.675505130648119 ], [ -82.177190702404516, 28.675308552243859 ], [ -82.177170781369853, 28.675245235499528 ], [ -82.177158293610375, 28.675181908171158 ], [ -82.17715821834048, 28.675009344811581 ], [ -82.177157854543509, 28.674921979856027 ], [ -82.177172582655771, 28.674843327099719 ], [ -82.177180987923293, 28.674773365699767 ], [ -82.177191239060164, 28.674155256015222 ], [ -82.177179541118875, 28.673993856959974 ], [ -82.177172807298476, 28.673853009231902 ], [ -82.177160745707496, 28.673763733919277 ], [ -82.177136629159875, 28.673684650781915 ], [ -82.177123788614779, 28.673600012651974 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 529", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091611445225922, 28.748872479450252 ], [ -82.091608077025725, 28.748737872409933 ], [ -82.091614175511182, 28.748276756481662 ], [ -82.091610583579609, 28.747884385926074 ], [ -82.09161387665057, 28.747653431653692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 529 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09162843988436, 28.7470250573237 ], [ -82.087953016893138, 28.746999051176775 ], [ -82.087708179834152, 28.747004139825851 ], [ -82.087539134910941, 28.746996608318998 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.083571445645219, 28.616035151936959 ], [ -82.083528839456235, 28.6160390688154 ], [ -82.083409214517445, 28.616045172050374 ], [ -82.083241743944399, 28.616054324395964 ], [ -82.083067432909374, 28.616060462356426 ], [ -82.082899956521373, 28.61606357763003 ], [ -82.082732477763273, 28.616063679785576 ], [ -82.082541071420522, 28.616063794349063 ], [ -82.082397519220436, 28.616063881671906 ], [ -82.082288139321861, 28.616057915276464 ], [ -82.0821240757205, 28.61605499810695 ], [ -82.081936080890728, 28.616046062009755 ], [ -82.08176859310764, 28.616037115218514 ], [ -82.081659215316151, 28.616031148314335 ], [ -82.081560090019494, 28.616025174316523 ], [ -82.081495143767697, 28.61601918082221 ], [ -82.081344742977819, 28.616004190298177 ], [ -82.081211431742034, 28.615989189478711 ], [ -82.081125976212462, 28.61598019324509 ], [ -82.081016590552551, 28.615965177163009 ], [ -82.08092771654313, 28.615956181923316 ], [ -82.080811495952233, 28.615941169712453 ], [ -82.080661090763257, 28.615920147192636 ], [ -82.0805311945049, 28.615900241281075 ], [ -82.080403002987438, 28.615877696705251 ], [ -82.080316702880367, 28.615865908617231 ], [ -82.08022353834933, 28.61584764208359 ], [ -82.080090219628786, 28.615820952156916 ], [ -82.079928698800529, 28.615791262931534 ], [ -82.079775878941604, 28.615758443645536 ], [ -82.079618082193662, 28.615721485338497 ], [ -82.079473010264209, 28.615686764490484 ], [ -82.079329209684516, 28.615650921142514 ], [ -82.079134505201765, 28.615600512598164 ], [ -82.078897802659043, 28.615535530804063 ], [ -82.078718363454698, 28.615480621024041 ], [ -82.078539886423897, 28.615422604600454 ], [ -82.078279302763789, 28.615334919900398 ], [ -82.078026044678765, 28.615246370598101 ], [ -82.077740967664752, 28.615144364227319 ], [ -82.07746098140548, 28.615043477791783 ], [ -82.077129632196062, 28.614929533046098 ], [ -82.076363952674612, 28.614650019693666 ], [ -82.075870167304288, 28.614472903683058 ], [ -82.075315295207517, 28.614274490818612 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.08362795191124, 28.616029959673895 ], [ -82.083571445645219, 28.616035151936959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 12th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087988786947534, 28.62648273711795 ], [ -82.087048744371799, 28.626465240866814 ], [ -82.085968560985862, 28.626456877525335 ], [ -82.085913866473732, 28.626456910957138 ], [ -82.085872841044278, 28.626447888949023 ], [ -82.085838643927985, 28.626429813997923 ], [ -82.085804442327486, 28.626408723425989 ], [ -82.085780475245471, 28.626360482289247 ], [ -82.085774445862199, 28.626300541921388 ], [ -82.085791397162026, 28.626127111779841 ], [ -82.085777757012707, 28.62511675475503 ], [ -82.085764494787298, 28.624570110992831 ], [ -82.085750410231967, 28.623013102716904 ], [ -82.085724707958263, 28.622930178530588 ], [ -82.085652037087911, 28.622888754320993 ], [ -82.08550675047789, 28.622869995270861 ], [ -82.085348665256632, 28.622873862971968 ], [ -82.085241851873533, 28.622881469453677 ], [ -82.084870126677529, 28.622881700359017 ], [ -82.084314694227587, 28.622908433281712 ], [ -82.08391735797133, 28.622938838018065 ], [ -82.083853264072062, 28.622935106403695 ], [ -82.083793431893909, 28.622916293166387 ], [ -82.083759226710541, 28.622886155218044 ], [ -82.083729281222062, 28.622840932964319 ], [ -82.083716424405623, 28.622791930286681 ], [ -82.083720653171582, 28.622739148094116 ], [ -82.083715252927846, 28.621314083790732 ], [ -82.08370485924479, 28.62113916178053 ], [ -82.083666304426728, 28.621011004455685 ], [ -82.083619256234527, 28.620950713621848 ], [ -82.083585034858459, 28.620897953987193 ], [ -82.083566704680806, 28.619329637270319 ], [ -82.083544054864859, 28.617704771395978 ], [ -82.083553360152777, 28.617618904498372 ], [ -82.083586978485613, 28.617515747471796 ], [ -82.083639294363579, 28.617405256532798 ], [ -82.083659693806865, 28.617266506648544 ], [ -82.083676624818068, 28.617067441080245 ], [ -82.083664969808268, 28.616821583194433 ], [ -82.083625435660508, 28.616705966187617 ], [ -82.083604999754712, 28.616606057171524 ], [ -82.083599827665907, 28.616501648792706 ], [ -82.083603549663678, 28.616383759441579 ], [ -82.083595854837029, 28.616305175758608 ], [ -82.083594508101356, 28.616210868538719 ], [ -82.083571445645219, 28.616035151936959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054371126462485, 28.741375388965253 ], [ -82.054393498692676, 28.737956978761726 ], [ -82.05441740126787, 28.734141225925551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05441740126787, 28.734141225925551 ], [ -82.054417596514256, 28.734073428809939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 528", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054417596514256, 28.734073428809939 ], [ -82.05179833176274, 28.734041319572292 ], [ -82.050286058069048, 28.734045709926093 ], [ -82.049838464489596, 28.734057363791322 ], [ -82.049690711677641, 28.734057417195537 ], [ -82.049573379193845, 28.734057458587206 ], [ -82.049425620448687, 28.734038360772285 ], [ -82.049325657674913, 28.734007754583491 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054417596514256, 28.734073428809939 ], [ -82.054421213973697, 28.73336264934467 ], [ -82.054434724196923, 28.731336147620162 ], [ -82.054446962759116, 28.729796384206683 ], [ -82.054463370854137, 28.7267711046103 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 528", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059508860425467, 28.734248941896993 ], [ -82.058386373173178, 28.734206450652319 ], [ -82.057504420152213, 28.734173397087858 ], [ -82.057113281678795, 28.734156371910327 ], [ -82.056571541860023, 28.734134631697941 ], [ -82.055992321465766, 28.734126846405939 ], [ -82.055420262629511, 28.734139302999562 ], [ -82.054842996463663, 28.734141062196446 ], [ -82.05441740126787, 28.734141225925551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 27th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059508860425467, 28.734248941896993 ], [ -82.059520654750173, 28.733151113975023 ], [ -82.059548908841208, 28.732312919006581 ], [ -82.059536994963992, 28.731568433328825 ], [ -82.059565464742519, 28.731110077962082 ], [ -82.059585113371739, 28.730294675581753 ], [ -82.059561922696901, 28.72993003724585 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 650", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118708939266369, 28.650327488426569 ], [ -82.120703759677951, 28.650341002334144 ], [ -82.121698889550558, 28.650358493503632 ], [ -82.123663810968694, 28.650368664481888 ], [ -82.124725845919414, 28.650376770581548 ], [ -82.124996488810893, 28.650371747702113 ], [ -82.126132146240622, 28.650385504217819 ], [ -82.126904576911443, 28.650384310413866 ], [ -82.128397481315105, 28.650388164774004 ], [ -82.128631982707574, 28.650397016780815 ], [ -82.128865831898437, 28.650403671813041 ], [ -82.128984045671928, 28.650400122168779 ], [ -82.129034699362052, 28.650389760568807 ], [ -82.129074951108024, 28.650373678970148 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 70th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.260584965809414, 28.653542187235001 ], [ -82.260622166259992, 28.653525306840955 ], [ -82.26069835184488, 28.653512937737357 ], [ -82.26084556045916, 28.653501957280969 ], [ -82.261167640713694, 28.653460080299105 ], [ -82.262125205877538, 28.653326821570435 ], [ -82.262781515732428, 28.653252204806172 ], [ -82.263249055254633, 28.653193232085894 ], [ -82.264474081626801, 28.653023086635098 ], [ -82.265484974811386, 28.652895338422287 ], [ -82.266503798799533, 28.652772225760337 ], [ -82.267817930789491, 28.652612268216753 ], [ -82.268406811517991, 28.652535561642768 ], [ -82.268565206881419, 28.652528260959755 ], [ -82.268637788007254, 28.652553227579187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 649", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256557729413885, 28.654506403308517 ], [ -82.256618780647571, 28.654515895329975 ], [ -82.256678080629186, 28.654526238843069 ], [ -82.256760560607546, 28.654540341585015 ], [ -82.256824666412072, 28.654532614847305 ], [ -82.2569156576468, 28.654501070449907 ], [ -82.256995333151337, 28.654470022151344 ], [ -82.257072309403227, 28.654436602205358 ], [ -82.257133153780103, 28.654417474266651 ], [ -82.257224142501627, 28.654384978610874 ], [ -82.257290923916486, 28.654369166186306 ], [ -82.257339405690075, 28.654363370181215 ], [ -82.257386820738404, 28.654361853238903 ], [ -82.25749388005832, 28.654357096899766 ], [ -82.257630115298937, 28.654354612834858 ], [ -82.257769084836269, 28.654338304221159 ], [ -82.257905415796927, 28.654305957968472 ], [ -82.258061186046177, 28.654254092215567 ], [ -82.258210471683611, 28.654206821619219 ], [ -82.258444207617742, 28.654161683001462 ], [ -82.258770260642194, 28.654148453101101 ], [ -82.259262531373807, 28.654106253535328 ], [ -82.260074334148058, 28.654040518951497 ], [ -82.260312018226116, 28.654015995886187 ], [ -82.260384747051859, 28.654006688911483 ], [ -82.260436689732217, 28.65399742017761 ], [ -82.260479532814173, 28.653985877957044 ], [ -82.260508034472153, 28.653953737013371 ], [ -82.260527430861657, 28.65391702888677 ], [ -82.260533807605796, 28.653868884471262 ], [ -82.260530818640362, 28.653710747787926 ], [ -82.260528064669074, 28.653647725311654 ], [ -82.260531874291019, 28.653612194111243 ], [ -82.260543492829171, 28.653582375840877 ], [ -82.260561621157848, 28.653558275712001 ], [ -82.260584965809414, 28.653542187235001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 651", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.256531538808474, 28.660122993255055 ], [ -82.256527357498157, 28.659516597597808 ], [ -82.256523372763226, 28.657878832788388 ], [ -82.256533031415032, 28.657398945311197 ], [ -82.256539838288759, 28.656191374395839 ], [ -82.256536097455353, 28.655321882340342 ], [ -82.256542807287246, 28.654741725189247 ], [ -82.256557729413885, 28.654506403308517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 680", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.15792231618488, 28.584033772274669 ], [ -82.157938138826594, 28.583503064422459 ], [ -82.15793785776043, 28.583315516369943 ], [ -82.157940428495579, 28.583213321244475 ], [ -82.157940351303367, 28.583161625200788 ], [ -82.157937592077857, 28.583137584563904 ], [ -82.157922580987901, 28.583118364893753 ], [ -82.157899397892479, 28.583099155584538 ], [ -82.15787078406116, 28.583091975375336 ], [ -82.157430839190027, 28.583085269625187 ], [ -82.157061717361159, 28.583077279899406 ], [ -82.156811092800709, 28.583069152996877 ], [ -82.156755233331666, 28.583058397205789 ], [ -82.156723870567646, 28.58303318568526 ], [ -82.156702016286644, 28.582992334652701 ], [ -82.156704613149287, 28.582906973625089 ], [ -82.156724386857846, 28.582463322947223 ], [ -82.156738761652946, 28.582053339451647 ], [ -82.156750538531426, 28.581728721487242 ], [ -82.156764282644573, 28.581227842923752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 675 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158885601104544, 28.587119534429291 ], [ -82.158903797900237, 28.586764852027358 ], [ -82.158945794609053, 28.586387600450781 ], [ -82.158947086700536, 28.586114088082255 ], [ -82.158955260444444, 28.585435563813892 ], [ -82.158954762769227, 28.585103744106068 ], [ -82.158954494069519, 28.584966449362437 ], [ -82.158938858172817, 28.584929032992939 ], [ -82.158933629090228, 28.584922856233884 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 33rd Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158933629090228, 28.584922856233884 ], [ -82.158985493188098, 28.584877544200733 ], [ -82.159056441496418, 28.58484256608098 ], [ -82.159331654641193, 28.584840013357816 ], [ -82.159497818791877, 28.584835010555746 ], [ -82.159496196597587, 28.584664293713715 ], [ -82.159508298078322, 28.584559684497918 ], [ -82.159533955918292, 28.584412979568949 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 680", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.158933629090228, 28.584922856233884 ], [ -82.158894473198842, 28.584896163635502 ], [ -82.158857425215785, 28.584880996901664 ], [ -82.158799430464811, 28.584878008202121 ], [ -82.158662679968216, 28.584881987870371 ], [ -82.158525921198077, 28.584879090656198 ], [ -82.158256723131032, 28.584868706901101 ], [ -82.158070614056044, 28.584855935295153 ], [ -82.158020499215084, 28.584842741559026 ], [ -82.157976889724821, 28.584827163498876 ], [ -82.157952327627498, 28.584795932986349 ], [ -82.157940018121977, 28.584762284440593 ], [ -82.157930422237555, 28.58472141761845 ], [ -82.157928865906683, 28.584590375783669 ], [ -82.157931317176562, 28.584408836005473 ], [ -82.15792231618488, 28.584033772274669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 738F", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120979585580699, 28.598706961791741 ], [ -82.120985051541055, 28.598640938026922 ], [ -82.120987713908391, 28.598548019744964 ], [ -82.12100003501935, 28.598419331300452 ], [ -82.121001414492696, 28.598371299333689 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 738F", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121001414492696, 28.598371299333689 ], [ -82.121003327537068, 28.598269562223987 ], [ -82.121013611343599, 28.598177859857195 ], [ -82.121012138470306, 28.598100532282935 ], [ -82.121014785028294, 28.597992941930759 ], [ -82.121014675860678, 28.597897579846624 ], [ -82.121017345828349, 28.597809551337185 ], [ -82.121017229286608, 28.59770685592553 ], [ -82.121019878629497, 28.59760171000843 ], [ -82.121018425263614, 28.597536059615411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 738F", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121018425263614, 28.597536059615411 ], [ -82.120996719322548, 28.596545269597531 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 776", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058407430694643, 28.57353769258129 ], [ -82.058059794640045, 28.573534006449986 ], [ -82.057820633069326, 28.57352988501118 ], [ -82.05766278918783, 28.573529952101651 ], [ -82.057184467606589, 28.573530150651024 ], [ -82.05667266906454, 28.573538807248223 ], [ -82.056304364589593, 28.573538958286832 ], [ -82.056022151947403, 28.573534850365643 ], [ -82.055716023042677, 28.573522307380394 ], [ -82.055476858345813, 28.573513957931937 ], [ -82.055237687075348, 28.573492942740344 ], [ -82.055151582350263, 28.573480309198892 ], [ -82.055027906933063, 28.573470587140694 ], [ -82.054856126012496, 28.573463319558329 ], [ -82.054717598572111, 28.573465819987 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tufts Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001026097048751, 28.840364101180654 ], [ -82.001070500615938, 28.840218783608361 ], [ -82.001136409484758, 28.840012322914145 ], [ -82.001218400131506, 28.839849614095137 ], [ -82.001255096589418, 28.839784679417711 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tufts Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001255096589418, 28.839784679417711 ], [ -82.001309935215815, 28.839687641463712 ], [ -82.00145092305209, 28.839410706446422 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126755487310376, 28.63392425596458 ], [ -82.126820012915857, 28.633790202591559 ], [ -82.126918202878244, 28.633584159215765 ], [ -82.127144769067357, 28.633134515914861 ], [ -82.129161200771648, 28.629016697442808 ], [ -82.130851550487122, 28.625579103118092 ], [ -82.131025581141941, 28.625222157104599 ], [ -82.131141312774218, 28.624985211077149 ], [ -82.131239766858684, 28.624780369605517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 654", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131239766858684, 28.624780369605517 ], [ -82.131294182279646, 28.624786096726353 ], [ -82.131370126037467, 28.624795949340928 ], [ -82.131856118107649, 28.624795092513445 ], [ -82.133205134357354, 28.624805413162314 ], [ -82.135960287972949, 28.624822080813697 ], [ -82.136883069091823, 28.6248289116871 ], [ -82.137289988210782, 28.624844708700707 ], [ -82.137449292457646, 28.624865292104182 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131239766858684, 28.624780369605517 ], [ -82.131662973255857, 28.623922774107793 ], [ -82.131988623104675, 28.623232538036707 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140868368299479, 28.605090397510761 ], [ -82.141407165343665, 28.603988941390199 ], [ -82.141927782298467, 28.602919644167208 ], [ -82.142354572442017, 28.602051338091314 ], [ -82.142959920772824, 28.600810519667583 ], [ -82.143407564720619, 28.599909663308384 ], [ -82.144210390672853, 28.598267204890366 ], [ -82.144575117785166, 28.597529574426929 ], [ -82.145035867727245, 28.596591295474205 ], [ -82.145179377297197, 28.596298919538743 ], [ -82.145502912443817, 28.595638068964174 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 112th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147332322613835, 28.59190297577118 ], [ -82.147784896160033, 28.591944175376181 ], [ -82.148208442331381, 28.591947473255885 ], [ -82.148685207515754, 28.591958225622221 ], [ -82.149168349441211, 28.591963333311764 ], [ -82.149453555419257, 28.591968657178516 ], [ -82.149581255660621, 28.591968517214664 ], [ -82.149632348230355, 28.591975974983701 ], [ -82.149691973182215, 28.591998450072335 ], [ -82.14976650226285, 28.592024668831748 ], [ -82.149834624450847, 28.592035864276738 ], [ -82.149926157967556, 28.592045156185602 ], [ -82.15011133719058, 28.592054345015818 ], [ -82.150430589063717, 28.592053993330637 ], [ -82.150724836366393, 28.592055958668798 ], [ -82.151552905421099, 28.592060910911005 ], [ -82.152267913567059, 28.592071855895522 ], [ -82.15308935257751, 28.592091481847838 ], [ -82.153744488310934, 28.592093681181613 ], [ -82.154007222025641, 28.592103657034002 ], [ -82.15438301779578, 28.592109102824903 ], [ -82.155024850743217, 28.592111310129006 ], [ -82.155300853123336, 28.592099254860596 ], [ -82.155859518807389, 28.592081007468387 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999773484793991, 28.856268166388105 ], [ -81.999773491968242, 28.85626821330797 ], [ -81.999793632222648, 28.856390441399451 ], [ -81.99981445795305, 28.856557747740325 ], [ -81.999826605576516, 28.856729637762321 ], [ -81.999831812386887, 28.85689465129699 ], [ -81.999827473080344, 28.857029106445513 ], [ -81.999821396468889, 28.857166618595851 ], [ -81.999813585710172, 28.857291142962822 ], [ -81.999796228404961, 28.857449280864046 ], [ -81.99977800425232, 28.8575554703622 ], [ -81.999734613386323, 28.857842717161486 ], [ -81.999695560974473, 28.858119266224289 ], [ -81.999627870878427, 28.858430959924256 ], [ -81.999565387957361, 28.858643337826873 ], [ -81.999488151515237, 28.858857245028453 ], [ -81.999405709105829, 28.859058164377647 ], [ -81.999311116601305, 28.859246860977329 ], [ -81.999219127381139, 28.859416456638069 ], [ -81.999097631707599, 28.859623485912611 ], [ -81.998996964515968, 28.85978697184018 ], [ -81.998908446156918, 28.859937469127914 ], [ -81.998740087393969, 28.860220893937612 ], [ -81.998704359020195, 28.860278012137382 ], [ -81.998684001620106, 28.860303657214249 ], [ -81.998660137798879, 28.860328005637705 ], [ -81.998634646357274, 28.860349492831201 ], [ -81.998615120454289, 28.860359041697929 ], [ -81.99859559353925, 28.860367635923748 ], [ -81.998575525435015, 28.860376229238081 ], [ -81.998543449736545, 28.860386258875408 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99831964035053, 28.860708340797196 ], [ -81.998336774204091, 28.860742969666564 ], [ -81.998359762793356, 28.86077486192233 ], [ -81.998388057773454, 28.860803256009493 ], [ -81.998420983698267, 28.86082747157857 ], [ -81.998457754419505, 28.860846934750796 ], [ -81.998497492561455, 28.860861179020915 ], [ -81.998539248995499, 28.860869862401671 ], [ -81.998582026415107, 28.860872780958772 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998582026415107, 28.860872780958772 ], [ -81.998623799455061, 28.860869999634257 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99872755855678, 28.8608358458429 ], [ -81.998738403936443, 28.86083033287731 ], [ -81.99877074746847, 28.860807650182824 ], [ -81.99879890606428, 28.860780988276293 ], [ -81.998822253453838, 28.860750941772661 ], [ -81.998840179765295, 28.860718350713874 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000084890670621, 28.861120043459959 ], [ -82.001027627288309, 28.861509593398299 ], [ -82.001207397247683, 28.86158032533719 ], [ -82.001390021970906, 28.861645142415764 ], [ -82.001575251335424, 28.861703955296186 ], [ -82.001762830091764, 28.861756682762632 ], [ -82.001910832098474, 28.861792178131161 ], [ -82.002060633976171, 28.861821237182401 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998543449736545, 28.860386258875408 ], [ -81.998503270632725, 28.860393926173263 ], [ -81.998464818508765, 28.860406732104472 ], [ -81.998428935893557, 28.860424395162244 ], [ -81.998396408945979, 28.860446528270266 ], [ -81.998394229812561, 28.860448527748467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99830658535096, 28.860599390972897 ], [ -81.998306579200445, 28.860599423455763 ], [ -81.998305820643253, 28.860603182445526 ], [ -81.99830459713607, 28.860638703445996 ], [ -81.998309236497505, 28.860674005266546 ], [ -81.99831964035053, 28.860708340797196 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995424050203923, 28.859717991236781 ], [ -81.996811618667138, 28.860081686716875 ], [ -81.996968286000026, 28.860126704671405 ], [ -81.997072078702828, 28.860157885309956 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99831964035053, 28.860708340797196 ], [ -81.998328192024601, 28.860745311932945 ], [ -81.998335241214306, 28.860775869468192 ], [ -81.998337410188157, 28.860821706559602 ], [ -81.998334697305296, 28.860861813952262 ], [ -81.998328187908939, 28.860901443974306 ], [ -81.998320594317022, 28.860929137396759 ], [ -81.998312160374667, 28.860949988633305 ], [ -81.998279265479965, 28.861012429446095 ], [ -81.998161455678783, 28.861236040426835 ], [ -81.997949892511528, 28.861662303728615 ], [ -81.997781325353785, 28.862071971352609 ], [ -81.997623369947107, 28.862509712328865 ], [ -81.997518354127706, 28.862808415391207 ], [ -81.997424619686825, 28.863078087856067 ], [ -81.997264056302413, 28.863530347266039 ], [ -81.997156432006037, 28.863923014074324 ], [ -81.997103593363335, 28.864199197296205 ], [ -81.997061272335458, 28.864468200193304 ], [ -81.997039249072245, 28.864686200811672 ], [ -81.997028377394955, 28.865302167278216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99723667922575, 28.865302171945306 ], [ -81.997246659787038, 28.864896292453853 ], [ -81.997260991398477, 28.864629015025347 ], [ -81.997281386395358, 28.864447852694788 ], [ -81.997322184953319, 28.86417053947655 ], [ -81.997365582190326, 28.863946702234355 ], [ -81.997421131364618, 28.863699182444812 ], [ -81.997490565038561, 28.863449371045842 ], [ -81.997547847336477, 28.863262204532912 ], [ -81.99769192131437, 28.862796959408211 ], [ -81.997834256762559, 28.862327131264248 ], [ -81.99790542261249, 28.862129268891881 ], [ -81.99797485424746, 28.861961199631075 ], [ -81.998026925573242, 28.861832857611045 ], [ -81.998141173006161, 28.861583835119767 ], [ -81.998241286645438, 28.861372959943996 ], [ -81.998332678591922, 28.861200050828753 ], [ -81.998396423505, 28.861078068249238 ], [ -81.998429070225697, 28.861019859212675 ], [ -81.998448595644447, 28.860988822898086 ], [ -81.998462699706891, 28.860970202220638 ], [ -81.998480053981865, 28.860951104262998 ], [ -81.998497411264736, 28.860935346633809 ], [ -81.998512056370913, 28.860923887547376 ], [ -81.998528328132181, 28.860911474743205 ], [ -81.998550025084512, 28.860900015737304 ], [ -81.998576628600375, 28.860888778752184 ], [ -81.998623799455061, 28.860869999634257 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99702673094383, 28.865469497667053 ], [ -81.99723858061742, 28.865472667695055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995561685943173, 28.870830770086158 ], [ -81.995568858726401, 28.87077923258612 ], [ -81.995580609793407, 28.87074329606023 ], [ -81.995601323167648, 28.870705431614589 ], [ -81.995637399212129, 28.870669799076705 ], [ -81.996418042151788, 28.869922265764586 ], [ -81.996521652942093, 28.86980876337147 ], [ -81.996615295863407, 28.869692929083978 ], [ -81.996691219802514, 28.869592685172176 ], [ -81.996759553239485, 28.869485760372179 ], [ -81.996815233024435, 28.869383288991642 ], [ -81.996878504748892, 28.869267452855727 ], [ -81.996949371001079, 28.869120429659169 ], [ -81.997020235058002, 28.868939991424753 ], [ -81.997070855295334, 28.868784055635153 ], [ -81.997118944475446, 28.868596935260705 ], [ -81.997149316332553, 28.86844768414166 ], [ -81.997174629069178, 28.868278381915246 ], [ -81.997201376421856, 28.867852847198293 ], [ -81.997225270308505, 28.867411826152445 ], [ -81.997237930900056, 28.867164556468275 ], [ -81.99723858061742, 28.865472667695055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028115554732452, 28.850975641816998 ], [ -82.02805579747853, 28.850934137084288 ], [ -82.027913903978487, 28.85086311828039 ], [ -82.027722544591143, 28.85076689793641 ], [ -82.027313791983275, 28.850566441878861 ], [ -82.026974034535769, 28.850399202151241 ], [ -82.026887726971196, 28.850358753252397 ], [ -82.026530687670231, 28.850184127678681 ], [ -82.026255476270236, 28.85008077230929 ], [ -82.024806510727373, 28.849503948913299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023226249294154, 28.84887132516495 ], [ -82.023095005983862, 28.848819025026945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024533522041779, 28.847574664944482 ], [ -82.025402231551155, 28.847183346450233 ], [ -82.025550590602165, 28.847106541094156 ], [ -82.02570935515692, 28.847002231363824 ], [ -82.025834277748231, 28.846900220515 ], [ -82.025935778839852, 28.846816548788258 ], [ -82.026034811668481, 28.846710741178256 ], [ -82.026137604663376, 28.84658925341596 ], [ -82.026242994807319, 28.846448858164084 ], [ -82.026310646647246, 28.846330814701307 ], [ -82.026326852688754, 28.846303306632315 ], [ -82.026349078576629, 28.846267491690814 ], [ -82.026379980792328, 28.84623215421848 ], [ -82.026401667475113, 28.84620827687808 ], [ -82.026450946211398, 28.846165946625003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023165730815649, 28.848986210495411 ], [ -82.023226249294154, 28.84887132516495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024356584487791, 28.847511282043662 ], [ -82.024312914919918, 28.847529526198173 ], [ -82.024245241266456, 28.847565061807497 ], [ -82.024109895106008, 28.847637278852098 ], [ -82.023995373622654, 28.847704907549719 ], [ -82.023901676619104, 28.847771388445299 ], [ -82.023784556860193, 28.847861935976173 ], [ -82.023684356637318, 28.847950190470264 ], [ -82.023567240779116, 28.848069387821621 ], [ -82.02347095168615, 28.848183996939625 ], [ -82.023378567551816, 28.848305480900219 ], [ -82.0232991990882, 28.848428109445855 ], [ -82.023218535865411, 28.848582823246296 ], [ -82.023095005983862, 28.848819025026945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023095005983862, 28.848819025026945 ], [ -82.023034936273248, 28.848933882253839 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brownwood Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020489659528195, 28.847418570322009 ], [ -82.020791768913938, 28.846834042574727 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020524830680941, 28.858176184551731 ], [ -82.020524847720026, 28.858259478074743 ], [ -82.020522800442507, 28.85924877117818 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kiessel Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024087822476645, 28.847113887563378 ], [ -82.023943623097608, 28.847012474362774 ], [ -82.023869177355749, 28.846960424122273 ], [ -82.023757813336687, 28.846896483253023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026164692146764, 28.846052160633526 ], [ -82.026183473865146, 28.846104898674135 ], [ -82.026192593826408, 28.846142330917619 ], [ -82.026193901392659, 28.846170978884043 ], [ -82.026193910602757, 28.846204211712173 ], [ -82.026190878844716, 28.846232095342952 ], [ -82.026177023801878, 28.846268170346701 ], [ -82.026162930891644, 28.846299686041938 ], [ -82.026141248798481, 28.846338364769156 ], [ -82.026078906112758, 28.846430050793082 ], [ -82.026012765605913, 28.846518873580973 ], [ -82.025952647154909, 28.846604462246258 ], [ -82.025870669688175, 28.846689278079221 ], [ -82.025791293889469, 28.846760340431661 ], [ -82.025714519768073, 28.846830255423651 ], [ -82.025633836100255, 28.84688871271219 ], [ -82.025544044677716, 28.846951756245968 ], [ -82.025441237069046, 28.847007925634905 ], [ -82.0253345236858, 28.84706409565861 ], [ -82.025229109895264, 28.847116827576144 ], [ -82.025117188743536, 28.847167268732417 ], [ -82.024975336930083, 28.847234905013849 ], [ -82.024820468680929, 28.847303687597854 ], [ -82.024698136593031, 28.847362151765765 ], [ -82.024578404097682, 28.84741488572049 ], [ -82.024491341862912, 28.847451594272936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brownwood Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026207330829351, 28.845751150524073 ], [ -82.026172469465635, 28.845756021442764 ], [ -82.026138084024097, 28.84575837302436 ], [ -82.02609122921703, 28.845759527780078 ], [ -82.026050881358515, 28.845757816475373 ], [ -82.026013787046764, 28.845754959521795 ], [ -82.025977342942141, 28.845749809676672 ], [ -82.02595131024259, 28.845741219185097 ], [ -82.025901846939718, 28.845720028755164 ], [ -82.025821790935581, 28.845679364123061 ], [ -82.025745641960313, 28.84563583118927 ], [ -82.025659727108035, 28.845577978618056 ], [ -82.025583573116108, 28.845517258467435 ], [ -82.025519783164128, 28.845454243239306 ], [ -82.02548398048269, 28.845409559505192 ], [ -82.02545468504691, 28.845363153869691 ], [ -82.025425388405097, 28.845311592450841 ], [ -82.025395436654264, 28.845241696285676 ], [ -82.025371992967621, 28.845182112281595 ], [ -82.025353112557553, 28.845138570441346 ], [ -82.025337486647132, 28.845106487291236 ], [ -82.025308191224838, 28.845059508657165 ], [ -82.025278244387877, 28.845009665313125 ], [ -82.025245045138291, 28.84496555400224 ], [ -82.025207940121646, 28.844924880276366 ], [ -82.02516237873877, 28.844885926966725 ], [ -82.025115514767762, 28.844850984627879 ], [ -82.025053685279715, 28.844815472010364 ], [ -82.024994460266853, 28.844790272254478 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027076869164503, 28.843048840741453 ], [ -82.02699058324373, 28.843231394150717 ], [ -82.026808910727055, 28.843643201412831 ], [ -82.026673632058262, 28.843957212048583 ], [ -82.026599495416576, 28.84415432697104 ], [ -82.02653707754429, 28.844373212251895 ], [ -82.026512704261322, 28.844504161392067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024735738948664, 28.842271879709536 ], [ -82.02599943534473, 28.842689939034784 ], [ -82.027076869164503, 28.843048840741453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Signature Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028337003447703, 28.841453033766282 ], [ -82.028005328394727, 28.842225460292298 ], [ -82.027968898239777, 28.842269012967066 ], [ -82.027922053624891, 28.842306837184932 ], [ -82.027854384394487, 28.842337790905809 ], [ -82.027739864970727, 28.842377921421669 ], [ -82.02761493209546, 28.842420345775931 ], [ -82.027493906229097, 28.842465061097013 ], [ -82.027418429762946, 28.842507475440232 ], [ -82.027375490773139, 28.842543008640572 ], [ -82.027340360417256, 28.842585415860501 ], [ -82.027227274136294, 28.842909311086988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Monaco Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03291494987549, 28.841753108321466 ], [ -82.030155219210215, 28.841746856122164 ], [ -82.029647051730606, 28.841740082386352 ], [ -82.029357781421808, 28.841712610243199 ], [ -82.029154508160275, 28.841692002168113 ], [ -82.028810498532167, 28.841609470811136 ], [ -82.028596893219841, 28.841537650933645 ], [ -82.028469765433059, 28.841495405896914 ], [ -82.028337003447703, 28.841453033766282 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Signature Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028676935677865, 28.839827605400952 ], [ -82.028674065006385, 28.84012265578264 ], [ -82.028674118516719, 28.84032090247657 ], [ -82.028672506683321, 28.840423919163083 ], [ -82.028660826279392, 28.840545389202877 ], [ -82.028637433475353, 28.840673739045595 ], [ -82.028607530691588, 28.8407849003849 ], [ -82.028551610974915, 28.84094648707779 ], [ -82.028337003447703, 28.841453033766282 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023218661256436, 28.865346418989805 ], [ -82.023203653959996, 28.865346436838649 ], [ -82.022168695746785, 28.86532277424763 ], [ -82.02067330567624, 28.865319097493888 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02067330567624, 28.865319097493888 ], [ -82.020528811818082, 28.865318741697614 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020524979850279, 28.864405011058896 ], [ -82.020530039468625, 28.864949407944248 ], [ -82.020528811818082, 28.865318741697614 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031533858869849, 28.844518373406881 ], [ -82.031869880799547, 28.844629232916564 ], [ -82.033025871382023, 28.845008440109108 ], [ -82.033444672258369, 28.845135550712769 ], [ -82.033834081520155, 28.845241106633679 ], [ -82.034796582493584, 28.845501759522808 ], [ -82.0349637986414, 28.84555036046401 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027076869164503, 28.843048840741453 ], [ -82.027216511928103, 28.843094338336332 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023034936273248, 28.848933882253839 ], [ -82.023165730815649, 28.848986210495411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022614290386699, 28.849735552318176 ], [ -82.022523780042974, 28.849913449309884 ], [ -82.022323417044106, 28.850298514284034 ], [ -82.022253286023727, 28.85047976619223 ], [ -82.022157760976498, 28.850668686285452 ], [ -82.022105448202836, 28.850772147523703 ], [ -82.022055103302847, 28.851020346330206 ], [ -82.0219988659683, 28.851297600271621 ], [ -82.021931784784272, 28.851628313865703 ], [ -82.021868637842161, 28.851939624523784 ], [ -82.021833085082065, 28.8520977013454 ], [ -82.021791479012123, 28.852320017817206 ], [ -82.021719939363891, 28.852560675585668 ], [ -82.02170216219757, 28.852619221719518 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Broken Oak Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022550043947561, 28.861818024675824 ], [ -82.021396973887974, 28.861834949997263 ], [ -82.020668726964203, 28.861837042332184 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02067330567624, 28.865319097493888 ], [ -82.020674209218384, 28.864628618620554 ], [ -82.020670273763571, 28.863340476987581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021841363740506, 28.852666296678553 ], [ -82.021894342189967, 28.852489600768955 ], [ -82.021932057885948, 28.852338330589951 ], [ -82.021987970182096, 28.852066736929736 ], [ -82.022037347557557, 28.85165648702068 ], [ -82.022060744578255, 28.851507511811175 ], [ -82.022101051243439, 28.851300093400639 ], [ -82.022155678789119, 28.851099544651216 ], [ -82.022166082986843, 28.851058290496894 ], [ -82.022233722974676, 28.85085201270455 ], [ -82.022283155682601, 28.85072366088248 ], [ -82.022342999375596, 28.850582701260436 ], [ -82.02240805173173, 28.850448617240332 ], [ -82.022608583575106, 28.850052783105795 ], [ -82.022739207965728, 28.849801607791992 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020668726964203, 28.861837042332184 ], [ -82.020668710114919, 28.861750040384422 ], [ -82.02066842234089, 28.860253459991963 ], [ -82.020668134980937, 28.858547172004229 ], [ -82.02066900869869, 28.858009644776466 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Huey Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02886323384287, 28.858159880082134 ], [ -82.028654739009184, 28.858171894369832 ], [ -82.028324341131707, 28.858185012538375 ], [ -82.028015671045381, 28.858182536383172 ], [ -82.027747380989297, 28.858164813306555 ], [ -82.027558420770788, 28.858134374875174 ], [ -82.027445906025349, 28.858106462817108 ], [ -82.027236747925713, 28.858058251644554 ], [ -82.027082406659744, 28.858027807527009 ], [ -82.026942491373035, 28.85801259763695 ], [ -82.02627034112416, 28.858011457331191 ], [ -82.025614056039899, 28.858010309840012 ], [ -82.025099125792607, 28.858010404074708 ], [ -82.024817860888419, 28.858010454717192 ], [ -82.024639680997623, 28.858010287988417 ], [ -82.023607882415405, 28.858010904094943 ], [ -82.02176451639356, 28.858011204033566 ], [ -82.02066900869869, 28.858009644776466 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024770156961324, 28.849628097305647 ], [ -82.025247141562616, 28.849818926528037 ], [ -82.02648201044569, 28.850307622900477 ], [ -82.027304702348516, 28.850650096399125 ], [ -82.027732975706087, 28.850833359653144 ], [ -82.028115554732452, 28.850975641816998 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017426385221839, 28.839857615671772 ], [ -82.017239916547368, 28.840319066660044 ], [ -82.017181816804722, 28.840516173674427 ], [ -82.017138468983418, 28.840735433202337 ], [ -82.017119415611972, 28.840949343589315 ], [ -82.017115103389983, 28.841116649835804 ], [ -82.017127264839701, 28.8412793838908 ], [ -82.017150712879271, 28.841497119378534 ], [ -82.017165721342465, 28.841673005998327 ], [ -82.017161193102069, 28.841847761698432 ], [ -82.017151448665572, 28.841952042466808 ], [ -82.01713454796851, 28.842068357265685 ], [ -82.017111789358808, 28.842177222427093 ], [ -82.017081221322883, 28.842283224609812 ], [ -82.017027235710529, 28.842447673821194 ], [ -82.016966739753869, 28.842594933047334 ], [ -82.016916647799789, 28.842692915130691 ], [ -82.016861350048728, 28.842792618516231 ], [ -82.016754003676724, 28.842964522526263 ], [ -82.016711714349739, 28.843024115872293 ], [ -82.016675277659729, 28.843064227714468 ], [ -82.016647949781543, 28.843087149531673 ], [ -82.016626477298232, 28.843101476183001 ], [ -82.016601750533511, 28.843112364524252 ], [ -82.016568002599982, 28.843124300597449 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012359731627299, 28.83799495522296 ], [ -82.012615998973956, 28.83807980659336 ], [ -82.013081850577095, 28.838244042368363 ], [ -82.013399418005434, 28.838362995630028 ], [ -82.013858878606115, 28.838542912311887 ], [ -82.014343681330899, 28.838740673401272 ], [ -82.014656184855156, 28.838871522023368 ], [ -82.015100449557664, 28.839051436024565 ], [ -82.015629172401958, 28.839250672978231 ], [ -82.01598728656289, 28.839377052445652 ], [ -82.016487667408924, 28.83954773932923 ], [ -82.017426385221839, 28.839857615671772 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016832872930024, 28.843236605452308 ], [ -82.016842112992833, 28.843148040258562 ], [ -82.016843178610742, 28.84310775304828 ], [ -82.016853584739451, 28.843070509102279 ], [ -82.016869196756446, 28.843032691567068 ], [ -82.016968085924461, 28.842877404461699 ], [ -82.017058514026857, 28.842708941923988 ], [ -82.01713137214054, 28.84255595060592 ], [ -82.017191215276384, 28.842390929480089 ], [ -82.017230889303079, 28.842264298528072 ], [ -82.01727250569833, 28.842064328743213 ], [ -82.017292655505599, 28.84192681563778 ], [ -82.017304361272863, 28.841797310634949 ], [ -82.017299110322966, 28.841600796103787 ], [ -82.017284342154753, 28.841403876698188 ], [ -82.017260886809197, 28.841225113665107 ], [ -82.017253922356758, 28.841078435532989 ], [ -82.017255637315913, 28.840947800250149 ], [ -82.017270359865591, 28.840785838885903 ], [ -82.017286828273186, 28.840672771503897 ], [ -82.017304167227294, 28.840594847057513 ], [ -82.017337115745164, 28.840461149099415 ], [ -82.017375273159914, 28.840340440097158 ], [ -82.017422973947617, 28.840218201392567 ], [ -82.01755914121577, 28.839902671196462 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017559104338247, 28.839902757822522 ], [ -82.01789578491497, 28.840011136561923 ], [ -82.019081060697033, 28.840403397259465 ], [ -82.019347994213234, 28.84048960584434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017426385221839, 28.839857615671772 ], [ -82.017559104338247, 28.839902757822522 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01636532144056, 28.843513826522084 ], [ -82.016397842189519, 28.843652012779909 ], [ -82.016398751020901, 28.843717980297328 ], [ -82.016390353085569, 28.843774031646639 ], [ -82.016381951962131, 28.843822680473547 ], [ -82.016321927810296, 28.844051125248349 ], [ -82.016263103323283, 28.844258417985284 ], [ -82.016176337875294, 28.844471260375059 ], [ -82.0161166107479, 28.844594745125189 ], [ -82.016045760788302, 28.844722720086104 ], [ -82.015947805159286, 28.844870860107289 ], [ -82.01584365607664, 28.845003807716999 ], [ -82.015749963405923, 28.845118698930225 ], [ -82.015730328627853, 28.845138085363992 ], [ -82.015712703054859, 28.84515431259717 ], [ -82.015691932958561, 28.845168031766086 ], [ -82.015670254820606, 28.845181446053047 ], [ -82.015650380763304, 28.845190571475023 ], [ -82.015620798955723, 28.84520236608752 ], [ -82.01557214462882, 28.84521722702911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015834135868616, 28.845395743545247 ], [ -82.015818901593022, 28.845359072821797 ], [ -82.015797210304228, 28.845325016800185 ], [ -82.015769616564043, 28.845294448847806 ], [ -82.015736832741354, 28.845268154790432 ], [ -82.01569969826366, 28.84524680765146 ], [ -82.015659168342353, 28.845230956825965 ], [ -82.015616283226322, 28.845221012745235 ], [ -82.01557214462882, 28.84521722702911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015834135868616, 28.845395743545247 ], [ -82.015829679220687, 28.845349148952206 ], [ -82.015829242006504, 28.845323937663178 ], [ -82.015830974060776, 28.845296818655449 ], [ -82.015837042260841, 28.845263586036477 ], [ -82.015849185815711, 28.845238755913048 ], [ -82.015860462534818, 28.845215071814753 ], [ -82.015875209867716, 28.845188332116198 ], [ -82.015892991978774, 28.845156625780724 ], [ -82.016100547503299, 28.844886819897635 ], [ -82.016249947552609, 28.844635976051546 ], [ -82.016300382203312, 28.844543960250896 ], [ -82.016374831000832, 28.84438319943493 ], [ -82.016480778785478, 28.844032732198656 ], [ -82.016529391222235, 28.843803495564895 ], [ -82.016552804567823, 28.84374083124516 ], [ -82.01658252486898, 28.843686892384174 ], [ -82.016665567581484, 28.843611378485623 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015567515358569, 28.845704476499797 ], [ -82.015593915752433, 28.845703361044425 ], [ -82.015620076014827, 28.845700033155694 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015620076014827, 28.845700033155694 ], [ -82.015661460118963, 28.845689993123493 ], [ -82.015700581617807, 28.845674437532541 ], [ -82.015736501820427, 28.845653740946464 ], [ -82.015768353794485, 28.845628405146805 ], [ -82.01579537003326, 28.845599034767446 ], [ -82.015816903977623, 28.845566339998648 ], [ -82.015832435135309, 28.845531105907757 ], [ -82.015841590600076, 28.845494179804174 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015841590600076, 28.845494179804174 ], [ -82.015844192886036, 28.84546117134672 ], [ -82.015841693596371, 28.845428155340919 ], [ -82.015834135868616, 28.845395743545247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01529556788114, 28.845506123350081 ], [ -82.015306655476792, 28.845542256806652 ], [ -82.01532389790701, 28.845576469487515 ], [ -82.015346889230571, 28.845607952968088 ], [ -82.015375086186879, 28.845635963804252 ], [ -82.015407823570641, 28.845659842479495 ], [ -82.015444328580884, 28.845679023328998 ], [ -82.015483740295579, 28.845693055291033 ], [ -82.015525127094989, 28.845701607319096 ], [ -82.015567515358569, 28.845704476499797 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013714337356888, 28.844288770750243 ], [ -82.013205000756741, 28.843948472533462 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015490963713219, 28.845226689415242 ], [ -82.015448526850292, 28.845240845831675 ], [ -82.015409289294141, 28.845260922819485 ], [ -82.015374303454408, 28.845286373469431 ], [ -82.01534451411824, 28.845316517343345 ], [ -82.015320721557373, 28.845350543184551 ], [ -82.015303565134602, 28.84538753598849 ], [ -82.015293506909146, 28.845426497756939 ], [ -82.01529081729349, 28.845466384493953 ], [ -82.01529556788114, 28.845506123350081 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01557214462882, 28.84521722702911 ], [ -82.01553115513309, 28.84521929962682 ], [ -82.015490963713219, 28.845226689415242 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015490963713219, 28.845226689415242 ], [ -82.015446801887208, 28.845225272214535 ], [ -82.01540948973728, 28.845222221980791 ], [ -82.015377007458156, 28.845218358233499 ], [ -82.015318219425382, 28.845210055277313 ], [ -82.015277871220164, 28.845203184069096 ], [ -82.015244193739235, 28.845197411138908 ], [ -82.015210352727877, 28.845187483097593 ], [ -82.015179981821973, 28.845177937253276 ], [ -82.015149177962769, 28.84516495275934 ], [ -82.01512085623996, 28.845152053712148 ], [ -82.015047964553617, 28.845106224325022 ], [ -82.014641853888449, 28.844843467485397 ], [ -82.014414205307659, 28.844701000405344 ], [ -82.014414067970748, 28.844700914700216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014414112661342, 28.844797486736407 ], [ -82.015050141070745, 28.845236660583151 ], [ -82.015099949244529, 28.845271589867384 ], [ -82.015140678808095, 28.845308367125757 ], [ -82.015178802678776, 28.845348003157376 ], [ -82.015216118329008, 28.845390016841783 ], [ -82.015238963024998, 28.845414235890185 ], [ -82.01526601798885, 28.845440432335359 ], [ -82.01529556788114, 28.845506123350081 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01090629288808, 28.847748417304174 ], [ -82.010963831370745, 28.847692652233068 ], [ -82.01100612698562, 28.847664478112726 ], [ -82.0110608980211, 28.847636303923554 ], [ -82.011115236484684, 28.847617582302991 ], [ -82.011177059922545, 28.847604208046899 ], [ -82.011358947514154, 28.847566282506815 ], [ -82.011548755135664, 28.847539529339734 ], [ -82.011797251489639, 28.847523118734724 ], [ -82.012058529945563, 28.847528028086579 ], [ -82.012387971340416, 28.847537417308011 ], [ -82.012605184283998, 28.847539441130799 ], [ -82.012748355979141, 28.847529877508673 ], [ -82.012896946569072, 28.847516495588128 ], [ -82.013008661745317, 28.847499297412963 ], [ -82.013178303150283, 28.84746561047313 ], [ -82.013389356297679, 28.847415225867454 ], [ -82.013607357044691, 28.847343583742468 ], [ -82.013684307523079, 28.847312646209922 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01090629288808, 28.847748417304174 ], [ -82.010925350437901, 28.847712887562949 ], [ -82.010937697060129, 28.847675129632652 ], [ -82.010943013107465, 28.847636117127536 ], [ -82.010941162384711, 28.847596858836837 ], [ -82.010932192144722, 28.847558368046268 ], [ -82.010916334109965, 28.847521640882704 ], [ -82.010893998319304, 28.847487623831743 ], [ -82.010865760827485, 28.847457197497448 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013618781909983, 28.847204920775116 ], [ -82.013509728480187, 28.84724523447802 ], [ -82.013346174391316, 28.847298060076852 ], [ -82.013224157708947, 28.847331492875615 ], [ -82.01311244350083, 28.847354899996745 ], [ -82.01296385277918, 28.847382128039982 ], [ -82.012842919087035, 28.847397896853355 ], [ -82.012654194997054, 28.847413192459065 ], [ -82.012460046116061, 28.847417506307668 ], [ -82.012260473853843, 28.847413704099324 ], [ -82.012103069482379, 28.847407017876545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010865760827485, 28.847457197497448 ], [ -82.010831428983565, 28.847430536937967 ], [ -82.010792588376077, 28.847409205726436 ], [ -82.010750295672395, 28.847393783963039 ], [ -82.010705699756883, 28.847384689327004 ], [ -82.010660013035405, 28.847382168056136 ], [ -82.010614476591201, 28.847386291340342 ], [ -82.010570327390113, 28.847396944496349 ], [ -82.010528766512749, 28.847413839602364 ], [ -82.010490923286085, 28.84743651640272 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010490923286085, 28.84743651640272 ], [ -82.01045833179036, 28.847463860441572 ], [ -82.010431186708061, 28.847495479205516 ], [ -82.010410203303209, 28.847530546133989 ], [ -82.010395930808571, 28.847568137228944 ], [ -82.010388744229502, 28.847607265342816 ], [ -82.010388835121518, 28.847646900931711 ], [ -82.010396199294149, 28.847686002734875 ], [ -82.010410643986205, 28.847723543940717 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hendry Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010819869610742, 28.850271839296227 ], [ -82.010814986695337, 28.850246917078739 ], [ -82.010808068009865, 28.850207868516506 ], [ -82.010802295288414, 28.850170370028941 ], [ -82.010796904455461, 28.850128922120437 ], [ -82.010741892754794, 28.8496435615636 ], [ -82.010729165150593, 28.849531241689448 ], [ -82.010713084382232, 28.849389323725674 ], [ -82.010698669478273, 28.849262111412859 ], [ -82.010670931168988, 28.84901730798132 ], [ -82.010655818653476, 28.8488818152478 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010489063817289, 28.847815332565393 ], [ -82.010520178017202, 28.847834884176045 ], [ -82.0105540456114, 28.84785048798971 ], [ -82.010590026038685, 28.847861848094958 ], [ -82.010627438775913, 28.847868753400629 ], [ -82.010665533616233, 28.847871063201243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010806873133689, 28.847837034846318 ], [ -82.010845638631409, 28.84781267689316 ], [ -82.010879107154622, 28.847782845940678 ], [ -82.01090629288808, 28.847748417304174 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hendry Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010705313541933, 28.848417347841387 ], [ -82.010706798199379, 28.848288779066806 ], [ -82.010706798283238, 28.848175079499139 ], [ -82.010706158094024, 28.848032757028225 ], [ -82.010713296513671, 28.847984216048069 ], [ -82.010724718612465, 28.847944241241549 ], [ -82.01074327862834, 28.847902840259049 ], [ -82.010775433066115, 28.847870095884506 ], [ -82.010806873133689, 28.847837034846318 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010410643986205, 28.847723543940717 ], [ -82.010431156478035, 28.847757664967485 ], [ -82.010457516446237, 28.847788519220394 ], [ -82.010489063817289, 28.847815332565393 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hendry Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010489063817289, 28.847815332565393 ], [ -82.010512949425674, 28.84784194524638 ], [ -82.010530804704302, 28.847867130914672 ], [ -82.01054549193212, 28.847889690199175 ], [ -82.010572613947915, 28.847946984644508 ], [ -82.010584550712508, 28.8480033246557 ], [ -82.010588896147738, 28.848067305948881 ], [ -82.010587823558424, 28.848198134070437 ], [ -82.010583484688183, 28.848423056691921 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005992412032128, 28.847940058911959 ], [ -82.006103610151939, 28.847883922946799 ], [ -82.006214239456568, 28.847829486857503 ], [ -82.006357408230713, 28.847769319672761 ], [ -82.006538536581857, 28.847699601592971 ], [ -82.006681704826178, 28.847653758171994 ], [ -82.006814027301132, 28.847612688290052 ], [ -82.006932250453161, 28.84758116984003 ], [ -82.007170865854931, 28.847529592714203 ], [ -82.007367180899422, 28.847498070113716 ], [ -82.007574343099051, 28.847471320776449 ], [ -82.007844415003873, 28.847456028894992 ], [ -82.008057002214727, 28.847453151742716 ], [ -82.00869693302667, 28.847453116221374 ], [ -82.008886742420771, 28.847455014113528 ], [ -82.009086314640967, 28.84745882221608 ], [ -82.009295649404081, 28.847473132243724 ], [ -82.009574401151767, 28.847500806865202 ], [ -82.009860747498806, 28.847543760946987 ], [ -82.010068999430814, 28.847581944864245 ], [ -82.010169872862548, 28.847603899947462 ], [ -82.010236795119752, 28.847624355020567 ], [ -82.010286148618661, 28.847646316356624 ], [ -82.010345590744379, 28.847679329299432 ], [ -82.010410643986205, 28.847723543940717 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003655197233286, 28.849726660040478 ], [ -82.00384601796074, 28.849661951367931 ], [ -82.00402823837517, 28.849584594114901 ], [ -82.004199608842086, 28.849522519251394 ], [ -82.004331934473413, 28.849476677710193 ], [ -82.004446905217094, 28.849437521706786 ], [ -82.004521745777694, 28.849409827838368 ], [ -82.004581401973624, 28.849383087201627 ], [ -82.004674677966463, 28.849337246443014 ], [ -82.004787478661612, 28.849270397543968 ], [ -82.004904617898291, 28.849190178046531 ], [ -82.004997894286333, 28.849113781377525 ], [ -82.005084662340877, 28.849029742324422 ], [ -82.005158414556448, 28.848945705450465 ], [ -82.005212643821608, 28.848876947936251 ], [ -82.005269040813786, 28.848791001398549 ], [ -82.005325437750429, 28.848684045545141 ], [ -82.005384003073431, 28.848575180311958 ], [ -82.005427384577672, 28.848498782357868 ], [ -82.005501135121236, 28.848393737803594 ], [ -82.005568380051713, 28.848315428768743 ], [ -82.005639962339075, 28.848242850988346 ], [ -82.005731066129798, 28.848154992792693 ], [ -82.005806987803098, 28.848090054585217 ], [ -82.005874231757247, 28.848040393610809 ], [ -82.005992412032128, 28.847940058911959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004886513880606, 28.848906421455581 ], [ -82.004889745093763, 28.848878689885467 ], [ -82.004892996824466, 28.848851473531234 ], [ -82.004901673183483, 28.84882568986956 ], [ -82.004917941265703, 28.848790355964073 ], [ -82.004936809421423, 28.848755572381346 ], [ -82.004960236175094, 28.848721955333389 ], [ -82.00498538593331, 28.848693754768973 ], [ -82.005123348944821, 28.848557384815837 ], [ -82.005353715305503, 28.84835339997073 ], [ -82.0055397482883, 28.848201395467342 ], [ -82.005662175605863, 28.848112744867315 ], [ -82.005824865395454, 28.84801304299172 ], [ -82.005936052632535, 28.847961131762204 ], [ -82.005992412032128, 28.847940058911959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004886513880606, 28.848906421455581 ], [ -82.004876369235106, 28.848868341754152 ], [ -82.004859484192693, 28.848832164320786 ], [ -82.004836284113907, 28.848798807687324 ], [ -82.004807362430441, 28.848769119097778 ], [ -82.004773448873308, 28.848743852854152 ], [ -82.004735410496579, 28.848723650466319 ], [ -82.004694207608054, 28.848709021705247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999545287031566, 28.853567751172204 ], [ -81.999512364162058, 28.853542408872794 ], [ -81.999475312942209, 28.85352195072354 ], [ -81.999435062954518, 28.853506890137787 ], [ -81.999392618598634, 28.853497603379655 ], [ -81.999349043718468, 28.853494323248199 ], [ -81.999305425731208, 28.853497130956626 ], [ -81.999262855130368, 28.853505957936846 ], [ -81.999222397814066, 28.853520580425428 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004331912128237, 28.848935920388296 ], [ -82.00432333347652, 28.848974927303505 ], [ -82.004314658294433, 28.849008922813585 ], [ -82.004303378683332, 28.849036043723999 ], [ -82.004290797537493, 28.849064309694242 ], [ -82.004264767531637, 28.849102890278271 ], [ -82.004241340203251, 28.849129247250897 ], [ -82.004217912737744, 28.849152165531699 ], [ -82.004194052743244, 28.849174321371109 ], [ -82.004165851414982, 28.849196095642601 ], [ -82.004086796830165, 28.849257047512367 ], [ -82.003821062992685, 28.849457591407798 ], [ -82.003644270779546, 28.849582692874613 ], [ -82.003496760672263, 28.84967532583272 ], [ -82.003331896376537, 28.84977273397141 ], [ -82.003218009798715, 28.849835763112655 ], [ -82.003061822135237, 28.849916935568988 ], [ -82.002856823038854, 28.850007658639601 ], [ -82.002588916389314, 28.850113661039916 ], [ -82.002370902350208, 28.850186239086121 ], [ -82.002068283168356, 28.850278872315929 ], [ -82.001866539345755, 28.850355268839671 ], [ -82.001690825972943, 28.850431666675945 ], [ -82.001479317885284, 28.85053480161962 ], [ -82.00128408134249, 28.850640800981068 ], [ -82.001094925035247, 28.850753187462988 ], [ -82.000918549599433, 28.850872854362272 ], [ -82.000742835880544, 28.851007501108043 ], [ -82.000547595741708, 28.851171750447531 ], [ -82.000345848000208, 28.851366557869856 ], [ -82.000230871423199, 28.851485926244507 ], [ -82.000093119472822, 28.851650175101103 ], [ -81.999953195125414, 28.851832567545877 ], [ -81.999878333511177, 28.851948057115873 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999098288453311, 28.853632173031066 ], [ -81.99909828230372, 28.853632185663265 ], [ -81.999082554653043, 28.853667471994477 ], [ -81.999073142435932, 28.853705943511997 ], [ -81.999070892262893, 28.853745249718507 ], [ -81.999075862574742, 28.853784361084454 ], [ -81.999087925278729, 28.853822256198473 ], [ -81.999093177815126, 28.853832204155747 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999162645153461, 28.853919057883417 ], [ -81.999194618005873, 28.853940819010408 ], [ -81.999229850136345, 28.853958244575026 ], [ -81.999267590286451, 28.853970964624761 ], [ -81.999307034924726, 28.853978706656278 ], [ -81.999346324859729, 28.853981241471519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015620076014827, 28.845700033155694 ], [ -82.015697844006041, 28.845707458633608 ], [ -82.015751642593287, 28.845716620975363 ], [ -82.015800235407028, 28.845728073931436 ], [ -82.015846224023036, 28.845745639384287 ], [ -82.01590783464556, 28.845780774571509 ], [ -82.015980118388796, 28.845833215656171 ], [ -82.016206610568489, 28.845990182960481 ], [ -82.016456531820793, 28.846165481102748 ], [ -82.016611430139108, 28.846266304650548 ], [ -82.016710357762619, 28.846329319025397 ], [ -82.016818395427563, 28.846393479972011 ], [ -82.017017548045473, 28.846502318352162 ], [ -82.017211494283103, 28.846600844617519 ], [ -82.017495249625796, 28.846719987067559 ], [ -82.017833674980281, 28.846854019056053 ], [ -82.01840513948639, 28.847084187572261 ], [ -82.018627739378175, 28.847175633043328 ], [ -82.019292434778208, 28.847436908595462 ], [ -82.019788989370639, 28.847633440853304 ], [ -82.02027350430977, 28.847826886233456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023095005983862, 28.848819025026945 ], [ -82.022915841535436, 28.848747630852792 ], [ -82.021952161886759, 28.848363606955463 ], [ -82.02075822027308, 28.847885396319626 ], [ -82.02052586429734, 28.8477925346834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 631C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.197065912638962, 28.630675875500994 ], [ -82.197068522678435, 28.630059566460428 ], [ -82.19707289128668, 28.629511472314018 ], [ -82.197071483784583, 28.629058264404609 ], [ -82.197073092054936, 28.628626852536939 ], [ -82.197075169303048, 28.627152596555408 ], [ -82.197082338439856, 28.62711317393563 ], [ -82.197099191775436, 28.627086517984331 ], [ -82.197114857196297, 28.627070518537 ], [ -82.19713776434395, 28.627053442039493 ], [ -82.197158266798198, 28.627042759365938 ], [ -82.197181193828442, 28.627036335813656 ], [ -82.197204124775155, 28.627033105619709 ], [ -82.197274147473863, 28.627031940309614 ], [ -82.197644259334524, 28.627031370970567 ], [ -82.198461065319734, 28.627030181697755 ], [ -82.198981703893054, 28.62702609203188 ], [ -82.199087340712609, 28.627025937575709 ], [ -82.199128814284222, 28.627010898132529 ], [ -82.199153301831629, 28.626992554810474 ], [ -82.199177768409996, 28.626962558745298 ], [ -82.199189018464679, 28.626925925481785 ], [ -82.199192730152774, 28.625893996588836 ], [ -82.199193862375054, 28.625494541461723 ], [ -82.199193639439571, 28.625376370913813 ], [ -82.199206763595839, 28.625333076558263 ], [ -82.199227444572017, 28.625296429482169 ], [ -82.199265127051405, 28.625273074197718 ], [ -82.199310389357393, 28.625268014405965 ], [ -82.200545939503826, 28.625257875721452 ], [ -82.201308022464403, 28.625253423031157 ], [ -82.202436054628166, 28.625246758408032 ], [ -82.203594271953321, 28.625241701355502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Old Wire Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037082862, 28.869962221088532 ], [ -82.037073648271203, 28.870691959827024 ], [ -82.037077218576087, 28.870805937707797 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lion Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037454378890089, 28.870100814013551 ], [ -82.037082862, 28.869962221088532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Berning Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039536149014168, 28.921914348369544 ], [ -82.039544553884127, 28.92201085546683 ], [ -82.039560851766154, 28.92205859842117 ], [ -82.039666809009603, 28.922404728841105 ], [ -82.039802948576977, 28.922842627342057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039536149014168, 28.921914348369544 ], [ -82.039411559998825, 28.921927337736925 ], [ -82.039265040933628, 28.921953640350509 ], [ -82.039142940856024, 28.921977548334556 ], [ -82.039009992651486, 28.92201100920272 ], [ -82.038879760526996, 28.92205401816026 ], [ -82.038727826076951, 28.922113744562093 ], [ -82.038645524345881, 28.922138088344518 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zimmerman Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038645524345881, 28.922138088344518 ], [ -82.038700398576992, 28.922850232979698 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zimmerman Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039470998623216, 28.920525615122429 ], [ -82.038936178765482, 28.920521337448832 ], [ -82.038884627244514, 28.920533288602982 ], [ -82.038835792859828, 28.920554788863146 ], [ -82.038778823699573, 28.920593001932058 ], [ -82.03872999715378, 28.920635987617576 ], [ -82.03870288811288, 28.920707616828267 ], [ -82.038692064365506, 28.92078878771013 ], [ -82.038705720007101, 28.921029904320832 ], [ -82.038703080966556, 28.921230440280507 ], [ -82.03870311688047, 28.921328321302095 ], [ -82.038692296423051, 28.921421430449175 ], [ -82.038676074016124, 28.921583772461279 ], [ -82.03865985273552, 28.921743727895471 ], [ -82.038644081085323, 28.921899390976851 ], [ -82.038635685378594, 28.9219796029154 ], [ -82.038645524345881, 28.922138088344518 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Berning Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039470998623216, 28.920525615122429 ], [ -82.039489953820393, 28.921127559973005 ], [ -82.039490040400722, 28.921361517988156 ], [ -82.039498270643136, 28.921602636964742 ], [ -82.039528197722447, 28.921810325017017 ], [ -82.039536149014168, 28.921914348369544 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stewart Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040252777094892, 28.920528855344092 ], [ -82.040265961308734, 28.921003191907861 ], [ -82.040268762480466, 28.921232375978494 ], [ -82.040279645238172, 28.921308766529098 ], [ -82.04034921520001, 28.921830173577149 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zimmerman Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040252777094892, 28.920528855344092 ], [ -82.039470998623216, 28.920525615122429 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zimmerman Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041249639708425, 28.921094398210421 ], [ -82.041209808181122, 28.920864597347787 ], [ -82.041185296341965, 28.920757356079168 ], [ -82.041159762295848, 28.920666456589668 ], [ -82.041106983258544, 28.920601870830172 ], [ -82.041058128845265, 28.920570850171092 ], [ -82.04098756735975, 28.920542223488098 ], [ -82.040925153096126, 28.920535080693259 ], [ -82.040252777094892, 28.920528855344092 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roz Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041856811537457, 28.917848198685427 ], [ -82.042107205355634, 28.917849528346746 ], [ -82.042614287425224, 28.91785395551425 ], [ -82.042846987160999, 28.917853882644945 ], [ -82.043036276680638, 28.91785534975773 ], [ -82.043291552515896, 28.917855268997478 ], [ -82.043341909857858, 28.917849142660415 ], [ -82.043376637829851, 28.917839963393519 ], [ -82.043430462343125, 28.917818554635588 ], [ -82.043461710749995, 28.917797154854814 ], [ -82.043499902478672, 28.917762002763844 ], [ -82.043532879269165, 28.917719210781073 ], [ -82.04355196354642, 28.917674895638608 ], [ -82.043560626750732, 28.917629055331602 ], [ -82.043561269605902, 28.917281372481192 ], [ -82.043555251592224, 28.917228748885346 ], [ -82.043543081494079, 28.917193611044059 ], [ -82.043517014175734, 28.91714778181694 ], [ -82.043485740990675, 28.917111123376905 ], [ -82.043444049113091, 28.917075994932421 ], [ -82.043384995812318, 28.917050040227537 ], [ -82.043329420623238, 28.917037833580459 ], [ -82.043284554885403, 28.917035307857645 ], [ -82.042598326066809, 28.917031954326799 ], [ -82.042167658042899, 28.917030558677993 ], [ -82.042092987061054, 28.917032111118793 ], [ -82.04204784051187, 28.917042818145877 ], [ -82.042009642083684, 28.917056580901196 ], [ -82.041987071027336, 28.917068812154369 ], [ -82.041940194923242, 28.917096328552272 ], [ -82.041895064119032, 28.917146762720137 ], [ -82.041869036372688, 28.917198717699414 ], [ -82.041855165814113, 28.917252200142592 ], [ -82.041858666764739, 28.91732400830584 ], [ -82.041856811537457, 28.917848198685427 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roz Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041856811537457, 28.917848198685427 ], [ -82.041855058539767, 28.91807716586375 ], [ -82.041837746201693, 28.918210861663937 ], [ -82.04179872321707, 28.918336923467315 ], [ -82.041777073170877, 28.918482080644125 ], [ -82.041777377453315, 28.919249845946393 ], [ -82.041777622704728, 28.919868642148039 ], [ -82.041799378576059, 28.919987046467071 ], [ -82.041829811769503, 28.920097809285252 ], [ -82.042038329113538, 28.920407143316567 ], [ -82.042194725192417, 28.920659197361228 ], [ -82.042303315032797, 28.920785215343223 ], [ -82.042398053013244, 28.920870863419665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049472266176821, 28.920013493859262 ], [ -82.049351253960239, 28.920013895974691 ], [ -82.049288739313639, 28.92001850137223 ], [ -82.049193232433879, 28.92003381627778 ], [ -82.049113357123431, 28.920053706434732 ], [ -82.049045640140093, 28.920076649144274 ], [ -82.048972716858941, 28.920107233428624 ], [ -82.048898082620809, 28.920148238899522 ], [ -82.048800940202057, 28.920202020779893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052191779706561, 28.920022420011442 ], [ -82.05069365550348, 28.920016840600503 ], [ -82.049472266176821, 28.920013493859262 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hess Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052196446818328, 28.918918219521544 ], [ -82.052191779706561, 28.920022420011442 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carter Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052196446818328, 28.918918219521544 ], [ -82.050402212453534, 28.918912334993898 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yates Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977906068675694, 28.847474872255937 ], [ -81.977321773645443, 28.846524498307978 ], [ -81.977293015216389, 28.846470739448886 ], [ -81.977271777654565, 28.846414332687875 ], [ -81.977258372319682, 28.846356093766104 ], [ -81.977252988609507, 28.846296858253538 ], [ -81.977252809983938, 28.846288952216074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Obrien Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976968795344874, 28.847567704307473 ], [ -81.976906793620103, 28.847359375529752 ], [ -81.976879174145665, 28.847276573356833 ], [ -81.976847642638205, 28.84719486138966 ], [ -81.976812259539798, 28.847114381298049 ], [ -81.976609114266068, 28.846679574297649 ], [ -81.976583645556403, 28.846618275290066 ], [ -81.976563761579342, 28.846555398217841 ], [ -81.976549584192526, 28.846491333803307 ], [ -81.976541203480878, 28.84642648088332 ], [ -81.976538670582428, 28.846361249114942 ], [ -81.976542003840706, 28.846296045441747 ], [ -81.976542573973532, 28.846290117389628 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Badger Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980220862276852, 28.845751471027754 ], [ -81.980245485310363, 28.845733102803901 ], [ -81.980308706328742, 28.845688950538332 ], [ -81.980375032848301, 28.845648481912441 ], [ -81.980444187110976, 28.845611869221738 ], [ -81.980549167050725, 28.845560276201322 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Badger Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979664390492715, 28.846166565868245 ], [ -81.980220862276852, 28.845751471027754 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Badger Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979108419625305, 28.846581280396471 ], [ -81.979664390492715, 28.846166565868245 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nation Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979108419625305, 28.846581280396471 ], [ -81.979092721032032, 28.846561680758654 ], [ -81.978463986576358, 28.845734885457958 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nation Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979418892151628, 28.846848923604693 ], [ -81.979323720251102, 28.846757277949493 ], [ -81.979254398182462, 28.846705580424949 ], [ -81.979195651736461, 28.846652707900258 ], [ -81.979151003248603, 28.846613934274487 ], [ -81.979108419625305, 28.846581280396471 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ivawood Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976190913152209, 28.846240068530022 ], [ -81.976214886002211, 28.846244926290709 ], [ -81.976323266030235, 28.846264528228357 ], [ -81.976432576659619, 28.846279603372182 ], [ -81.976542573973532, 28.846290117389628 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ivawood Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976542573973532, 28.846290117389628 ], [ -81.976619334148225, 28.846294728050594 ], [ -81.976696224986725, 28.846297114505759 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ivawood Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976696224986725, 28.846297114505759 ], [ -81.976786723119815, 28.84629707697291 ], [ -81.977252809983938, 28.846288952216074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ivawood Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977252809983938, 28.846288952216074 ], [ -81.977326895301402, 28.846284551590372 ], [ -81.977400170297415, 28.84627397630581 ], [ -81.977471972894733, 28.846257321896786 ], [ -81.97754165740298, 28.846234737137987 ], [ -81.977608587344491, 28.846206427652064 ], [ -81.977812822005419, 28.846109266096377 ], [ -81.977871360458892, 28.846080940652822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ivawood Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977871360458892, 28.846080940652822 ], [ -81.978025010140001, 28.846001923910471 ], [ -81.978175141393024, 28.845917826434576 ], [ -81.978321536914578, 28.845828770915162 ], [ -81.978463986576358, 28.845734885457958 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ivawood Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979033560735061, 28.845337021722365 ], [ -81.979395251185281, 28.845114504129736 ], [ -81.979433358085089, 28.845094829781782 ], [ -81.979474523984152, 28.845080719513117 ], [ -81.979517708621344, 28.845072525963669 ], [ -81.979561823598885, 28.845070459202866 ], [ -81.97960575083124, 28.845074571393269 ], [ -81.979648384561727, 28.845084758601807 ], [ -81.979688648783039, 28.845100762606926 ], [ -81.979725523880347, 28.845122179023022 ], [ -81.979758079422766, 28.845148468132987 ], [ -81.979785494657364, 28.845178966620804 ], [ -81.980220862276852, 28.845751471027754 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ivawood Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978463986576358, 28.845734885457958 ], [ -81.97857724188512, 28.845654729188173 ], [ -81.978687620958553, 28.845571520764661 ], [ -81.978777823910832, 28.845503992041479 ], [ -81.978870870014774, 28.845439522524217 ], [ -81.978966623977627, 28.845378202416473 ], [ -81.979033560735061, 28.845337021722365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Otter Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975981176399216, 28.844973340132125 ], [ -81.976018027076563, 28.844964108013599 ], [ -81.976051525232634, 28.844956253108048 ], [ -81.976428690576299, 28.84488966928507 ], [ -81.976470902332053, 28.844879107083237 ], [ -81.976510700901585, 28.844862828334215 ], [ -81.976547094160111, 28.844841238002129 ], [ -81.97660873820054, 28.844768982149077 ], [ -81.976638632617735, 28.844690373914183 ], [ -81.9766950983079, 28.844526514966198 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pickering Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971622410406724, 28.847193929764305 ], [ -81.971644910039004, 28.847032546250077 ], [ -81.971655370782074, 28.846975853861128 ], [ -81.971673221251393, 28.846920610330056 ], [ -81.971698218345111, 28.846867559102918 ], [ -81.971790005596034, 28.846700812407764 ], [ -81.971822205011406, 28.846648262547372 ], [ -81.971859462274821, 28.846598370128994 ], [ -81.971901494424543, 28.846551510448595 ], [ -81.971947986735913, 28.846508039846896 ], [ -81.97201407253074, 28.84644691518508 ], [ -81.972074698039648, 28.846381550319542 ], [ -81.972129511645548, 28.846312320543873 ], [ -81.97217819554713, 28.846239626423102 ], [ -81.972220469859025, 28.846163890185125 ], [ -81.972256091589585, 28.846085544892585 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pickering Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972256091589585, 28.846085544892585 ], [ -81.97228226165501, 28.8460132674516 ], [ -81.972302770886358, 28.845939588456982 ], [ -81.972317517745765, 28.845864846255242 ], [ -81.972326434511771, 28.845789393636014 ], [ -81.972334744301833, 28.845726411665172 ], [ -81.972349609664562, 28.845664372149795 ], [ -81.972370900294834, 28.84560380110544 ], [ -81.972398438748996, 28.845545215514111 ], [ -81.972431990199738, 28.845489113396855 ], [ -81.972471269611361, 28.845435969303875 ], [ -81.972515940713876, 28.845386239728374 ], [ -81.972565627282307, 28.845340340551335 ], [ -81.973403243814232, 28.844634791038665 ], [ -81.973445327455025, 28.844601143345692 ], [ -81.973489341321695, 28.84456946665814 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037748287239907, 28.869499504002153 ], [ -82.037454378890089, 28.870100814013551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037454378890089, 28.870100814013551 ], [ -82.037244360994976, 28.870559370781383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037180371719359, 28.877680522409673 ], [ -82.037180436546208, 28.876967042767529 ], [ -82.037168399597093, 28.876670061567744 ], [ -82.037149436385832, 28.87641520708652 ], [ -82.037141154236849, 28.876327244839484 ], [ -82.037127002598439, 28.876190693427574 ], [ -82.037105239769744, 28.876008304435057 ], [ -82.037077449374053, 28.875820270458807 ], [ -82.0370174535649, 28.875470164692111 ], [ -82.036976476291798, 28.875258433474482 ], [ -82.036935990197151, 28.875073064658974 ], [ -82.03686037347741, 28.874763685676335 ], [ -82.036779748793805, 28.874478648476163 ], [ -82.036509660689262, 28.873641941054135 ], [ -82.03645893181826, 28.873434519802043 ], [ -82.036438058006311, 28.873307326914951 ], [ -82.036417140213089, 28.873055229250269 ], [ -82.036415787447339, 28.872907406348219 ], [ -82.036423542221115, 28.872743534484044 ], [ -82.036436511532671, 28.872600291469116 ], [ -82.036461198827865, 28.872454751685304 ], [ -82.036478083673941, 28.872343591683574 ], [ -82.036524893675818, 28.872178566197721 ], [ -82.036569106156335, 28.872031876166528 ], [ -82.036630239056734, 28.871874868287609 ], [ -82.036701786200155, 28.87171671257148 ], [ -82.036782447279307, 28.871561990339075 ], [ -82.03687742606256, 28.871400388664693 ], [ -82.036985415631975, 28.871214719911805 ], [ -82.037109013058071, 28.870992376375838 ], [ -82.037237369898392, 28.870730783979372 ], [ -82.037244360994976, 28.870559370781383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Clarke Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037180371719359, 28.877680522409673 ], [ -82.037612638883601, 28.877676585990336 ], [ -82.037675127844963, 28.877666636299871 ], [ -82.037723727870045, 28.877652871862391 ], [ -82.037772324060228, 28.877628411526317 ], [ -82.037816577604133, 28.87759784198462 ], [ -82.037856491502879, 28.877558104438542 ], [ -82.03788251612248, 28.877522192868131 ], [ -82.037897257785275, 28.877485518357719 ], [ -82.037906825537846, 28.877431604098351 ], [ -82.037911963197871, 28.877344947442111 ], [ -82.037904885510116, 28.876950039068088 ], [ -82.0378965325867, 28.876852418659006 ], [ -82.037881256342558, 28.876781645438903 ], [ -82.037865733613572, 28.876712409806373 ], [ -82.03783445039511, 28.876605465018965 ], [ -82.037817066742093, 28.87653518592932 ], [ -82.037793613396076, 28.876479423836663 ], [ -82.037768426099774, 28.876436649947305 ], [ -82.037743243329217, 28.876400751590502 ], [ -82.037705035200759, 28.876347285387805 ], [ -82.037646842044239, 28.876232707256111 ], [ -82.037625944161874, 28.876178894303862 ], [ -82.037606873760097, 28.876109723671497 ], [ -82.037583407374683, 28.876019582943581 ], [ -82.037562546259295, 28.875936319742959 ], [ -82.037540795025961, 28.875852083198083 ], [ -82.037518581110064, 28.875760975747163 ], [ -82.037496366078344, 28.875666612786738 ], [ -82.037468601285283, 28.875564115282209 ], [ -82.03743344903242, 28.875474639099547 ], [ -82.037403850583289, 28.875416072447681 ], [ -82.037365009015161, 28.875352627756495 ], [ -82.037289184510527, 28.875251771948253 ], [ -82.037237396048141, 28.875165552127175 ], [ -82.037220749601389, 28.875134641978892 ], [ -82.037180327174909, 28.875008987555418 ], [ -82.03717075424349, 28.874934886803086 ], [ -82.037159431898985, 28.874824116973947 ], [ -82.037138668455796, 28.874579506742077 ], [ -82.037121293657975, 28.873913121731334 ], [ -82.037118329886653, 28.873608847335355 ], [ -82.037118293695059, 28.87350574579888 ], [ -82.037126832758531, 28.873415213715592 ], [ -82.037146794287338, 28.873309593851761 ], [ -82.037235281358207, 28.873093306995035 ], [ -82.037262688266807, 28.873037976702953 ], [ -82.037295239065401, 28.87298264500663 ], [ -82.037323792167356, 28.872942401784051 ], [ -82.037356345118368, 28.872899141070015 ], [ -82.037388330266523, 28.872864931495588 ], [ -82.037438602096856, 28.872836754227841 ], [ -82.037477449118242, 28.8728226613906 ], [ -82.037520870088514, 28.872808567291163 ], [ -82.037571147979349, 28.872800506799031 ], [ -82.039458979799932, 28.872803999880066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037145385136625, 28.88523184034824 ], [ -82.037147124431513, 28.884953333991806 ], [ -82.037145360244637, 28.884323818298487 ], [ -82.037145357836209, 28.884322799601726 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034219695366929, 28.883660865858747 ], [ -82.033684042465126, 28.883670079965022 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034859369671764, 28.883641615824697 ], [ -82.034219695366929, 28.883660865858747 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 95th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036945774153352, 28.895088371540645 ], [ -82.036424894987292, 28.895091371313075 ], [ -82.035934470451195, 28.895087949351581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037081944362598, 28.898318316931331 ], [ -82.037103702139532, 28.89705729968524 ], [ -82.037105447993952, 28.896282933598943 ], [ -82.037107043836812, 28.895522318502991 ], [ -82.037107044739798, 28.895521970215288 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 124A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036918592012881, 28.898318353849145 ], [ -82.033100933763606, 28.898301206268769 ], [ -82.031306560416212, 28.898310041145557 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036945774153352, 28.895088371540645 ], [ -82.036941259258256, 28.895782038685422 ], [ -82.03693180265725, 28.896377156188613 ], [ -82.036916751713235, 28.896986814791909 ], [ -82.036917184518217, 28.897359779028211 ], [ -82.036917187900116, 28.897363588533199 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036929891117524, 28.89985765967614 ], [ -82.03692994386472, 28.899864823912424 ], [ -82.036944871784229, 28.901898577052052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 114", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036241944880942, 28.901904247269933 ], [ -82.03510318040621, 28.901913430551097 ], [ -82.034738275767324, 28.901905545417634 ], [ -82.03378635649716, 28.901911767384298 ], [ -82.032931890551509, 28.901900007137002 ], [ -82.031084707799778, 28.901894455680402 ], [ -82.028632590407398, 28.901872725099931 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037077218576087, 28.870805937707797 ], [ -82.036902067230031, 28.871131089894643 ], [ -82.03664575570204, 28.871570049275668 ], [ -82.036559893968558, 28.871741960768979 ], [ -82.036494854844349, 28.871900114679452 ], [ -82.03643242334492, 28.872073166678472 ], [ -82.036388210891886, 28.872217564816651 ], [ -82.036359616866235, 28.872353937334122 ], [ -82.036327124263011, 28.872510938406048 ], [ -82.036310246858733, 28.87264730780603 ], [ -82.036294673242651, 28.872789405573084 ], [ -82.036293399687224, 28.87287191332393 ], [ -82.036294612531321, 28.873042657447069 ], [ -82.03632350477325, 28.873344027740423 ], [ -82.036343071065616, 28.873455177157446 ], [ -82.036375667194633, 28.873598408978953 ], [ -82.036418682148337, 28.873755389108354 ], [ -82.036595931970524, 28.874311116688752 ], [ -82.036656565408009, 28.874504597356928 ], [ -82.036730276147281, 28.874741611461825 ], [ -82.036790144101047, 28.874975700357997 ], [ -82.036837079332756, 28.875168204696926 ], [ -82.036861350528, 28.875284535565136 ], [ -82.036899144664559, 28.87549061565506 ], [ -82.036934206928308, 28.875681801265326 ], [ -82.036954029401429, 28.875813014968319 ], [ -82.037006447496054, 28.876253980061566 ], [ -82.037018634222576, 28.876397544704226 ], [ -82.037025633289105, 28.876519064806185 ], [ -82.037034367637645, 28.876674909796733 ], [ -82.037036323955476, 28.877477820544783 ], [ -82.037035994731554, 28.877676377500322 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 43rd Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037035994731554, 28.877676377500322 ], [ -82.036370502607284, 28.877675728146833 ], [ -82.036235090744782, 28.877642371599539 ], [ -82.035865296183928, 28.877511833529287 ], [ -82.035645546966933, 28.878331226571884 ], [ -82.035416688878612, 28.879178124562287 ], [ -82.035187829640407, 28.880029604853924 ], [ -82.035009683586239, 28.880703454654455 ], [ -82.034765206054686, 28.88159160844949 ], [ -82.034449223497759, 28.882818973512872 ], [ -82.034219695366929, 28.883660865858747 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037035131905654, 28.880202828739495 ], [ -82.037033096709237, 28.881381459204782 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037035994731554, 28.877676377500322 ], [ -82.037032783188891, 28.879611491830364 ], [ -82.037032822727923, 28.879826790822857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037148528310894, 28.881701979433444 ], [ -82.037146967987695, 28.881424839908902 ], [ -82.037143566772585, 28.881005624545995 ], [ -82.037146834416347, 28.880414601994609 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037146925013928, 28.880068525256227 ], [ -82.037145245139968, 28.879605684881295 ], [ -82.037147173111151, 28.87891908539758 ], [ -82.037144777075909, 28.878273548046842 ], [ -82.037179342533051, 28.87783808708954 ], [ -82.037180371719359, 28.877680522409673 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036944871784229, 28.901898577052052 ], [ -82.036946348338688, 28.905040823357957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037133830298075, 28.905567029702315 ], [ -82.037134858031209, 28.905305360354429 ], [ -82.037128517208359, 28.904495473941243 ], [ -82.037112702211331, 28.903987170478697 ], [ -82.037095627395757, 28.902799336685728 ], [ -82.03708933797401, 28.902131535762617 ], [ -82.037079165755145, 28.901902426041755 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036939875764872, 28.91515241122827 ], [ -82.036955007270919, 28.916418289311949 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036916627937643, 28.910250181979123 ], [ -82.036902153822041, 28.911996593539449 ], [ -82.036908241702491, 28.912505939394542 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 110", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036082580478734, 28.912766773638914 ], [ -82.036081886229312, 28.912766782844947 ], [ -82.034131457027996, 28.912792411062437 ], [ -82.031752904724144, 28.912804945427805 ], [ -82.030545397806449, 28.912825447284142 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037079748122522, 28.912730190472193 ], [ -82.03707974569997, 28.912043011102032 ], [ -82.037081774980308, 28.91136235832753 ], [ -82.037080135625089, 28.910411568647216 ], [ -82.037081751682919, 28.910253710421369 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036973105587947, 28.932651428512493 ], [ -82.036973237664654, 28.933028239137315 ], [ -82.036975694770916, 28.933547838948609 ], [ -82.03697519405965, 28.933623414329777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037109883007233, 28.938312585561636 ], [ -82.037097515108584, 28.937616872859557 ], [ -82.03710445961471, 28.936740280161217 ], [ -82.037109017085967, 28.935595216811254 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kiessel Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025246876742486, 28.8479600020164 ], [ -82.025246940280951, 28.847959992981789 ], [ -82.025313235946484, 28.84794386571954 ], [ -82.025385146655438, 28.847923109471129 ], [ -82.025458996919085, 28.847891890593534 ], [ -82.02556662707731, 28.847839090419541 ], [ -82.025662017495137, 28.847791011484269 ], [ -82.025799094778321, 28.847714591427902 ], [ -82.025913614826649, 28.847645814370853 ], [ -82.026003843116982, 28.847590792915284 ], [ -82.026078453158135, 28.847541884753277 ], [ -82.02615479771238, 28.847486865807834 ], [ -82.026222465214403, 28.847433375162456 ], [ -82.026288395592047, 28.84736766398299 ], [ -82.026354322054544, 28.847298894857268 ], [ -82.026421986941415, 28.847231654775619 ], [ -82.026517733858384, 28.847137476361503 ], [ -82.026519360824295, 28.847135548724886 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kiessel Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024401549633694, 28.847632483591919 ], [ -82.024447982668207, 28.847683169669271 ], [ -82.024495095751902, 28.84773170992711 ], [ -82.0246291244638, 28.847839464831626 ], [ -82.024733129911951, 28.847896101213749 ], [ -82.024763902043944, 28.847909522938487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Schoenfeldt Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013835601435034, 28.842595342639356 ], [ -82.013886319656947, 28.84259564357659 ], [ -82.01392412393669, 28.842600110807783 ], [ -82.013977023431892, 28.842612210960809 ], [ -82.014026919146204, 28.842631305168151 ], [ -82.014121902741053, 28.842696461242664 ], [ -82.014449943065316, 28.842923477435779 ], [ -82.01449960313613, 28.842956504908848 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Day Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014828728574102, 28.844033547789458 ], [ -82.014917580609961, 28.844092484330755 ], [ -82.015208280125435, 28.844292990984925 ], [ -82.015377494861937, 28.844405656313583 ], [ -82.015425221545996, 28.844441938266083 ], [ -82.01547294386566, 28.844447662695369 ], [ -82.015502570442422, 28.844449207806424 ], [ -82.015538018462735, 28.844440015727809 ], [ -82.015577060088305, 28.844420912310834 ], [ -82.015618267452481, 28.84436170112588 ], [ -82.015698501537415, 28.844182163041882 ], [ -82.015761376175746, 28.843968248970523 ], [ -82.015793897499123, 28.84384983295989 ], [ -82.015809068415564, 28.843763884770798 ], [ -82.015806891677016, 28.843700858910076 ], [ -82.015791697388607, 28.843641655772835 ], [ -82.015772165298429, 28.843576721667258 ], [ -82.015735279743382, 28.843515609858102 ], [ -82.015668023606054, 28.843429672642642 ], [ -82.015615955782536, 28.843376200506604 ], [ -82.015503145218858, 28.843282628404467 ], [ -82.015315692853491, 28.843127568511356 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Schoenfeldt Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01449960313613, 28.842956504908848 ], [ -82.014742806134862, 28.843118255268436 ], [ -82.014968422525953, 28.843274841339859 ], [ -82.015136566960138, 28.843390859172956 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deerfield Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008629992997299, 28.9459766005616 ], [ -82.008584137598177, 28.946033669735851 ], [ -82.008556173233501, 28.94606331263406 ], [ -82.008540542953909, 28.946089669542033 ], [ -82.00852942871829, 28.946121525653616 ], [ -82.008525957700684, 28.946152083811555 ], [ -82.008528564798013, 28.946184933430676 ], [ -82.008535516929001, 28.946226950085233 ], [ -82.00855375970346, 28.946275840632978 ], [ -82.008584777337163, 28.94636882365538 ], [ -82.008600727785279, 28.94642180352421 ], [ -82.008600727791872, 28.946447977233188 ], [ -82.008591210284649, 28.946474151514476 ], [ -82.008553139192571, 28.946526498508113 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Godleski Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014369202720374, 28.840767948898439 ], [ -82.014488652526836, 28.840818382022569 ], [ -82.014559151433275, 28.840843203582434 ], [ -82.014586268247569, 28.840851795269092 ], [ -82.014619888950364, 28.840857521455749 ], [ -82.014650255593381, 28.840860383146058 ], [ -82.014677372403142, 28.840861334982392 ], [ -82.014704484462357, 28.840857512708286 ], [ -82.014733785337981, 28.840852888952824 ], [ -82.014769918867245, 28.840844109356187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yardham Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960331220349602, 28.830653844765774 ], [ -81.960341812102214, 28.830010788144087 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yardham Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960302927887909, 28.831286423009825 ], [ -81.960319936237937, 28.831059651830206 ], [ -81.960331220349602, 28.830653844765774 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wheelock Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959680631071606, 28.83202056681851 ], [ -81.959873802595581, 28.831973099141447 ], [ -81.95998677165457, 28.83194798819099 ], [ -81.960101018591274, 28.831927856460723 ], [ -81.961938664098454, 28.831645666386766 ], [ -81.962089255138054, 28.831625557693712 ], [ -81.962240712913257, 28.831611348366209 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wheelock Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962240712913257, 28.831611348366209 ], [ -81.962273141148046, 28.83160908004562 ], [ -81.962372670966673, 28.831599387377342 ], [ -81.962471165001375, 28.831583478346008 ], [ -81.962568121106642, 28.831561434923987 ], [ -81.962663050448725, 28.831533367962678 ], [ -81.962755467258475, 28.831499418994028 ], [ -81.962844908300283, 28.83145976204052 ], [ -81.962930911355741, 28.831414598195188 ], [ -81.963013044939345, 28.831364157434347 ], [ -81.963090890880338, 28.83130869500334 ], [ -81.963164056618595, 28.831248492321969 ], [ -81.963232168033429, 28.831183853373251 ], [ -81.963405021278675, 28.831007618403472 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zephyrhills Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959508342955871, 28.82966711126965 ], [ -81.959803058315615, 28.82984487232298 ], [ -81.959872810391929, 28.829883622033936 ], [ -81.959945679361581, 28.829917631909431 ], [ -81.960021253373412, 28.829946706021044 ], [ -81.960099102117795, 28.829970680918894 ], [ -81.960178781952678, 28.829989419316753 ], [ -81.960259840001612, 28.830002812800604 ], [ -81.960341812102214, 28.830010788144087 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zephyrhills Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960341812102214, 28.830010788144087 ], [ -81.960430999010768, 28.830013260578401 ], [ -81.960520115609114, 28.830009320228104 ], [ -81.960608571657744, 28.829998992185029 ], [ -81.961053866366797, 28.829930612348964 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zephyrhills Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961053866366797, 28.829930612348964 ], [ -81.961776306732105, 28.829819669740775 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037404193295615, 28.941612573915819 ], [ -82.03742098286294, 28.941707403007548 ], [ -82.037462739317093, 28.941957086677949 ], [ -82.037562070495412, 28.942612502042387 ], [ -82.037739397878482, 28.943659041400156 ], [ -82.038026494313726, 28.945390774159875 ], [ -82.038065641103231, 28.945615258103405 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Gulf Atlantic Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045908395295172, 28.847283326729634 ], [ -82.046585199398407, 28.847275459268268 ], [ -82.047084140312364, 28.847304892348621 ], [ -82.047392185092605, 28.84732961480081 ], [ -82.047734932308245, 28.847340954091202 ], [ -82.04799090319888, 28.847338955309219 ], [ -82.048564669866224, 28.847337797377524 ], [ -82.049058171431597, 28.847329026888993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Gulf Atlantic Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045476774883667, 28.848385402096326 ], [ -82.045509711336564, 28.848232546055279 ], [ -82.045535301358001, 28.847967445662594 ], [ -82.045542622359989, 28.847811727883816 ], [ -82.045551834500131, 28.847685273040128 ], [ -82.045556424731075, 28.84758533487679 ], [ -82.045567968816826, 28.847495592254386 ], [ -82.045601195237651, 28.84742664145557 ], [ -82.045639727630672, 28.847375236013551 ], [ -82.045681409381544, 28.847340549229386 ], [ -82.045732364189831, 28.847316058094705 ], [ -82.045787951861598, 28.847297684827517 ], [ -82.045908395295172, 28.847283326729634 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Gulf Atlantic Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045493746722059, 28.847279427254065 ], [ -82.045908395295172, 28.847283326729634 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049992831187126, 28.847325918474073 ], [ -82.049995202668114, 28.847325910388946 ], [ -82.05050180490791, 28.847319908028354 ], [ -82.050954091533896, 28.847314010634364 ], [ -82.05134022110974, 28.847315775495044 ], [ -82.051535220028228, 28.847309822721567 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walker Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053862288467158, 28.85090410487042 ], [ -82.053855070398967, 28.849701943504467 ], [ -82.053854864781471, 28.849299187135589 ], [ -82.05385485911836, 28.849290101828917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05387703799191, 28.847287102044227 ], [ -82.05432082238913, 28.847297521219758 ], [ -82.054750290034733, 28.847320180834011 ], [ -82.055625617103757, 28.847386674508414 ], [ -82.055877551491434, 28.847406725569879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055830567261737, 28.847301600961679 ], [ -82.055356562629612, 28.847256911404696 ], [ -82.054718271656739, 28.847201134484603 ], [ -82.054105062615491, 28.847181982718464 ], [ -82.053867323869426, 28.847171378005491 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058670930195206, 28.847764469229855 ], [ -82.058312405973908, 28.847686358709105 ], [ -82.057893690445468, 28.847597728432262 ], [ -82.057096416094879, 28.847466281581024 ], [ -82.055830567261737, 28.847301600961679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055877551491434, 28.847406725569879 ], [ -82.056495543804175, 28.847490405574217 ], [ -82.057234244602085, 28.847616151806665 ], [ -82.057941867369948, 28.847773031291872 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052742202186039, 28.847158308396832 ], [ -82.052278353782071, 28.847175998509361 ], [ -82.051556007827145, 28.847206831171462 ], [ -82.05153575914126, 28.847207082426987 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Gulf Atlantic Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049081984438928, 28.847224930208178 ], [ -82.048349865657173, 28.847231875110115 ], [ -82.047803212923583, 28.847231112480237 ], [ -82.04746805309766, 28.847206400370368 ], [ -82.047137227915883, 28.847171182197709 ], [ -82.046773866279864, 28.847147434511953 ], [ -82.045875797051025, 28.847143917928385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Gulf Atlantic Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045875797051025, 28.847143917928385 ], [ -82.045716333984075, 28.847094313764771 ], [ -82.045664263040663, 28.847073321852964 ], [ -82.045618696549667, 28.847044688837016 ], [ -82.045586142655097, 28.847009367196964 ], [ -82.045563107819163, 28.846965315284571 ], [ -82.045549188588296, 28.846920450066964 ], [ -82.045537579494365, 28.846859267689659 ], [ -82.04552689907031, 28.846750879085572 ], [ -82.045498604007037, 28.846497821565006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Gulf Atlantic Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045875797051025, 28.847143917928385 ], [ -82.045728288317349, 28.847147786711336 ], [ -82.045497766046651, 28.847141162950184 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Gulf Atlantic Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045497766046651, 28.847141162950184 ], [ -82.045358849395086, 28.847137475276305 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045493746722059, 28.847279427254065 ], [ -82.045497766046651, 28.847141162950184 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045497766046651, 28.847141162950184 ], [ -82.045498604007037, 28.846497821565006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045358849395086, 28.847137475276305 ], [ -82.045354759302541, 28.847285590068363 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045361537237127, 28.846540015513487 ], [ -82.045358849395086, 28.847137475276305 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Gulf Atlantic Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045358849395086, 28.847137475276305 ], [ -82.044931082501094, 28.847133726390382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Gulf Atlantic Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044931082501094, 28.847133726390382 ], [ -82.04366435344059, 28.847139308748964 ], [ -82.042892756874934, 28.847133348067221 ], [ -82.042399495051797, 28.847117991733537 ], [ -82.042068302373508, 28.847099480958097 ], [ -82.041788607938003, 28.847080777741755 ], [ -82.041504704108021, 28.847058247638554 ], [ -82.041363276962542, 28.847041758306606 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Gulf Atlantic Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045361537237127, 28.846540015513487 ], [ -82.04532054778926, 28.846745091542111 ], [ -82.04529689081528, 28.846898896434769 ], [ -82.04526891763436, 28.846979689992352 ], [ -82.045236508444759, 28.847030687272415 ], [ -82.045201775081878, 28.847065372530746 ], [ -82.045160085434674, 28.847081701766285 ], [ -82.045091594686937, 28.84710407082181 ], [ -82.044931082501094, 28.847133726390382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cosmos Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005743475308762, 28.840484875424654 ], [ -82.005745776469851, 28.840475376752849 ], [ -82.005784007204852, 28.840384710609154 ], [ -82.005803370086383, 28.84034046164539 ], [ -82.005903023451239, 28.840188888311516 ], [ -82.006129337637859, 28.839932728876931 ], [ -82.006129587666223, 28.839932444640169 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cosmos Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00570080097711, 28.841100376691109 ], [ -82.005702212815464, 28.840770199062558 ], [ -82.005702794453995, 28.84072109188573 ], [ -82.005706850614288, 28.840662162066007 ], [ -82.005715826503547, 28.840598915426654 ], [ -82.005743475308762, 28.840484875424654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vision Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004247657447408, 28.840282050890416 ], [ -82.004259903500852, 28.840282335698145 ], [ -82.004367874910201, 28.840288981015572 ], [ -82.004447492012062, 28.840299241676284 ], [ -82.00453649023784, 28.840317851071696 ], [ -82.004696652665402, 28.840355709949478 ], [ -82.004851013988343, 28.840394238326525 ], [ -82.004960622587859, 28.84041173606802 ], [ -82.005054223920993, 28.840422052774628 ], [ -82.005155297700242, 28.840427274744904 ], [ -82.005297156298539, 28.840428027937833 ], [ -82.005442099416484, 28.84042764125974 ], [ -82.005550528425388, 28.840440904036093 ], [ -82.005645009543002, 28.840460077346794 ], [ -82.005743475308762, 28.840484875424654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Infinity Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003268626396988, 28.844012302358042 ], [ -82.003432649212087, 28.843903627142524 ], [ -82.003563464315178, 28.843879477809011 ], [ -82.003691261739476, 28.843869415226049 ], [ -82.003823880200756, 28.843870448074867 ], [ -82.003909196772952, 28.843877407371888 ], [ -82.003987705796803, 28.843891512146538 ], [ -82.004011281687667, 28.843896291991388 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neighborly Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000888197160947, 28.838350855475888 ], [ -82.000874166027629, 28.838307847011841 ], [ -82.000846224814453, 28.838244975165143 ], [ -82.00080533993652, 28.838170633189357 ], [ -82.000756810454519, 28.838092885894508 ], [ -82.000574571181119, 28.837823535325555 ], [ -82.000567431737736, 28.837814532093986 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neighborly Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000880861508321, 28.838923438965676 ], [ -82.000908647489538, 28.838842518205777 ], [ -82.000927412406213, 28.838747288664141 ], [ -82.000932803422899, 28.838700365065719 ], [ -82.00093589365531, 28.838614410362204 ], [ -82.000929012953222, 28.838518411188087 ], [ -82.000909274625698, 28.838415468775928 ], [ -82.000888197160947, 28.838350855475888 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gatehouse Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000888197160947, 28.838350855475888 ], [ -82.001098577868731, 28.838293345583978 ], [ -82.001687051507389, 28.838079166449614 ], [ -82.001902507718825, 28.838012558203506 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Underbrush Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996026100843878, 28.842353244760361 ], [ -81.996095979830017, 28.842225842051693 ], [ -81.996174487439603, 28.842047084762829 ], [ -81.996221493087774, 28.841908963706747 ], [ -81.99622517234279, 28.841877005005646 ], [ -81.996225817038066, 28.84184874747908 ], [ -81.99622129076495, 28.841817159387286 ], [ -81.996206670793669, 28.841773129993168 ], [ -81.996194498097282, 28.84175311105599 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Underbrush Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996194498097282, 28.84175311105599 ], [ -81.996177007091504, 28.841724345900332 ], [ -81.99615060656177, 28.841695623789509 ], [ -81.996121092534182, 28.841671764112604 ], [ -81.996079603849793, 28.841647768722783 ], [ -81.996033090361578, 28.841630412341491 ], [ -81.995987058204321, 28.841621029645331 ], [ -81.995878656676481, 28.841603113663293 ], [ -81.99577756506973, 28.841583870537505 ], [ -81.995606621636213, 28.841545633247478 ], [ -81.995587961463457, 28.841540897311575 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hardwood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996194498097282, 28.84175311105599 ], [ -81.996505316372023, 28.841613646609055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bosie Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995283601386802, 28.850602641855357 ], [ -81.995352524269748, 28.850350608673001 ], [ -81.995395919215767, 28.850164396854233 ], [ -81.995417617256891, 28.850068903887674 ], [ -81.995433687692753, 28.849930056729743 ], [ -81.995469787144003, 28.849180829208766 ], [ -81.995473574614422, 28.849080920613886 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bosie Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995473574614422, 28.849080920613886 ], [ -81.995475218481744, 28.849037586525867 ], [ -81.995479553436397, 28.848933024755851 ], [ -81.995480699428398, 28.848907004096329 ], [ -81.995481691903834, 28.848876443027795 ], [ -81.99548104863905, 28.848847199269233 ], [ -81.995478566779894, 28.848817849877122 ], [ -81.995474263756449, 28.848788269431413 ], [ -81.995468890622035, 28.848762081618805 ], [ -81.995466573860753, 28.84875258747493 ], [ -81.995461866526, 28.848734098159653 ], [ -81.995419558108978, 28.848608105893302 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Prairie Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004421808519623, 28.85307179369121 ], [ -82.004468180419224, 28.853081076219333 ], [ -82.004662775102858, 28.853137235523736 ], [ -82.005067960014657, 28.853279795336526 ], [ -82.005305288871199, 28.853362644311872 ], [ -82.005436864039638, 28.853391545093121 ], [ -82.005596766863619, 28.853406140471836 ], [ -82.005658415738637, 28.853406139116093 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Prairie Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005658415738637, 28.853406139116093 ], [ -82.005740299252011, 28.853406135170985 ], [ -82.005898938322588, 28.853379526467684 ], [ -82.006080238128391, 28.853319663114341 ], [ -82.006231321240477, 28.853253148967749 ], [ -82.006512141505468, 28.853088267004615 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parlor Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005636741488487, 28.853782587986039 ], [ -82.005655260704472, 28.853602689293176 ], [ -82.005658415738637, 28.853406139116093 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Prairie Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008213760982215, 28.851377981989298 ], [ -82.008270834758491, 28.851284448509762 ], [ -82.008444557303704, 28.850991808312457 ], [ -82.008482320983248, 28.850911998110558 ], [ -82.008504974829634, 28.850778982519106 ], [ -82.008471151823088, 28.850565663184842 ], [ -82.008443416754417, 28.850366470885138 ], [ -82.008441399945625, 28.850248162486825 ], [ -82.008445686976799, 28.850128044601327 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Prairie Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007886725887502, 28.851946453194159 ], [ -82.007998916931854, 28.851730058971377 ], [ -82.008213760982215, 28.851377981989298 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brandywine Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008213760982215, 28.851377981989298 ], [ -82.008055222113001, 28.851295720324174 ], [ -82.007907160382516, 28.851178403340434 ], [ -82.007835279193102, 28.851103430085843 ], [ -82.007787963537254, 28.851030081456486 ], [ -82.007762462514293, 28.850971876867149 ], [ -82.007742274128233, 28.850893969249892 ], [ -82.007730822687719, 28.85078453371273 ], [ -82.007666095711755, 28.850106584304857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hollyoak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006108050823457, 28.852547869706903 ], [ -82.005898901982462, 28.852667903513481 ], [ -82.005824302920303, 28.852706464590423 ], [ -82.005736978561828, 28.852742287606066 ], [ -82.005604289027687, 28.85275437437619 ], [ -82.005545922000394, 28.852749255005389 ], [ -82.005499148416163, 28.852740442962727 ], [ -82.00543963287987, 28.852722041651607 ], [ -82.005371656182916, 28.852689461781289 ], [ -82.005279448341128, 28.852621371572084 ], [ -82.00521693176033, 28.852530441150915 ], [ -82.005187385830723, 28.852456516256513 ], [ -82.005052796270931, 28.852049420307971 ], [ -82.004956503494796, 28.85173419393762 ], [ -82.004946271118754, 28.851688840775832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hollyoak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004946271118754, 28.851688840775832 ], [ -82.004930026649632, 28.851616818357211 ], [ -82.004865068130513, 28.851200562461845 ], [ -82.004843184174774, 28.851062993112876 ], [ -82.004786482203073, 28.850927673364385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inkwood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004421808519623, 28.85307179369121 ], [ -82.004453387643878, 28.852938010704381 ], [ -82.004463294154803, 28.852828549957572 ], [ -82.004456037057622, 28.852701205093435 ], [ -82.004433125903518, 28.85257782809882 ], [ -82.004367570679946, 28.852335864067722 ], [ -82.004321788626598, 28.852222285803968 ], [ -82.004282269753574, 28.852135901940819 ], [ -82.004270690614419, 28.852054377143507 ], [ -82.004292667775076, 28.851984357651897 ], [ -82.004323110090368, 28.851931419473861 ], [ -82.004374970536986, 28.85188044231742 ], [ -82.004440760730958, 28.851844129925762 ], [ -82.004566340182038, 28.851794936288137 ], [ -82.004833708612239, 28.851703591561691 ], [ -82.004946271118754, 28.851688840775832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kelvington Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012262970954083, 28.851553356199041 ], [ -82.012202294320588, 28.851485802173286 ], [ -82.012093310074434, 28.851364462173855 ], [ -82.012026630188174, 28.851290223392841 ], [ -82.011984921609709, 28.851243782521458 ], [ -82.01196324353873, 28.851217807862092 ], [ -82.011948239097734, 28.851197491902411 ], [ -82.011930904420083, 28.851170909623502 ], [ -82.011915060765944, 28.851142641711508 ], [ -82.011898243622511, 28.851106293732599 ], [ -82.011888743299835, 28.85108108861721 ], [ -82.011881528703654, 28.851058090350744 ], [ -82.011879473001912, 28.851050614920101 ], [ -82.011877186537703, 28.851041633560641 ], [ -82.011874070426003, 28.851027897119813 ], [ -82.011871820587132, 28.851016439830858 ], [ -82.011870364335437, 28.851008002492634 ], [ -82.011868776666901, 28.850997441138077 ], [ -82.011867292352406, 28.850985427965362 ], [ -82.011866497205105, 28.850977513007162 ], [ -82.011865800375858, 28.850968955599281 ], [ -82.01186530243541, 28.850960967529726 ], [ -82.011864825560437, 28.850948805393028 ], [ -82.011864702022535, 28.850934397388567 ], [ -82.011864987594748, 28.850921669443082 ], [ -82.011865882604397, 28.850905611939684 ], [ -82.011867447806338, 28.850888849680075 ], [ -82.011869038075943, 28.850876388708834 ], [ -82.011870013045296, 28.850869873079759 ], [ -82.011873110368612, 28.850852486297576 ], [ -82.011874839453625, 28.850844207500892 ], [ -82.01187727648194, 28.850833681904664 ], [ -82.011882029954791, 28.850815851050523 ], [ -82.011885254071089, 28.850805181922215 ], [ -82.011887730363171, 28.850797577085554 ], [ -82.01189131118052, 28.850787320281107 ], [ -82.011895237361614, 28.850776892009819 ], [ -82.011899507887492, 28.850766347312366 ], [ -82.01190657674988, 28.850750352456608 ], [ -82.011909069700721, 28.85074514594627 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kelvington Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011909069700721, 28.85074514594627 ], [ -82.011911173288183, 28.850740755152469 ], [ -82.011914814901729, 28.850733524675118 ], [ -82.011937402655519, 28.850691709954251 ], [ -82.011948792772159, 28.850669970658579 ], [ -82.011961082449005, 28.850645738216421 ], [ -82.01197015772685, 28.850627284406748 ], [ -82.011982083475374, 28.850602257061773 ], [ -82.011992193479017, 28.850580282367535 ], [ -82.012000292074646, 28.850562134519073 ], [ -82.012011574062413, 28.850535976636351 ], [ -82.012021993211803, 28.850510816775042 ], [ -82.012029680700621, 28.850491569950972 ], [ -82.012041229724488, 28.850461446409994 ], [ -82.012048317650581, 28.850442155422222 ], [ -82.012060133757245, 28.850408456019856 ], [ -82.012065230804609, 28.850393252643169 ], [ -82.012072304088505, 28.85037140542342 ], [ -82.012078468533858, 28.850351583053701 ], [ -82.012084071469445, 28.850332857032388 ], [ -82.012090796106108, 28.850309371253935 ], [ -82.012096990964693, 28.850286632628915 ], [ -82.012103153926446, 28.850262792291055 ], [ -82.012108928484693, 28.850239178464431 ], [ -82.012113131505686, 28.850221080564818 ], [ -82.012119521376079, 28.850191833591492 ], [ -82.012126225404998, 28.850158361996122 ], [ -82.012130378727406, 28.850135813026306 ], [ -82.012133699196099, 28.850116540398677 ], [ -82.012136568891279, 28.850098787291842 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Napa Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011458497381511, 28.850589886851296 ], [ -82.011909069700721, 28.85074514594627 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roma Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048191637582306, 28.922370838966387 ], [ -82.04819081073822, 28.923360460444179 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Soutar Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0473304909993, 28.920595036356882 ], [ -82.04734865465376, 28.921076093422769 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0473304909993, 28.920595036356882 ], [ -82.047136488448061, 28.920596617658813 ], [ -82.047008954829238, 28.920594274241328 ], [ -82.046892270507158, 28.92058476454779 ], [ -82.046748451862967, 28.920570490018154 ], [ -82.046569349705678, 28.920541903453692 ], [ -82.046411505085985, 28.920512488324349 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dzuro Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04734865465376, 28.921076093422769 ], [ -82.047207255028908, 28.921078833131631 ], [ -82.047052586455877, 28.921078886629395 ], [ -82.046916909147228, 28.921069384418651 ], [ -82.046764948965958, 28.921059886757725 ], [ -82.046602132057657, 28.921040844547065 ], [ -82.046466447491966, 28.921017017040882 ], [ -82.046314480028556, 28.920986033412472 ], [ -82.046170652556981, 28.920955046854932 ], [ -82.046056672152446, 28.920924050061057 ], [ -82.04593183725234, 28.920893057730936 ], [ -82.045798864582238, 28.920862067116982 ], [ -82.045687603196541, 28.920840618090182 ], [ -82.045532924652093, 28.92081679690876 ], [ -82.045383672425459, 28.920790585366614 ], [ -82.045218141523463, 28.920771542383797 ], [ -82.045106884443001, 28.920759643673836 ], [ -82.045031177879906, 28.920755888082013 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048800940202057, 28.920202020779893 ], [ -82.048696575268181, 28.920257067483782 ], [ -82.048598912916574, 28.920302462566475 ], [ -82.04849853472696, 28.920345469266515 ], [ -82.048365597239325, 28.920395650780218 ], [ -82.048219093528957, 28.920445836965236 ], [ -82.048121421036669, 28.920472132814567 ], [ -82.047972199117851, 28.92051276889249 ], [ -82.047852818413133, 28.920536683813037 ], [ -82.047709013938842, 28.920560608084909 ], [ -82.047570635478834, 28.920577367886711 ], [ -82.047464816367011, 28.92058934125971 ], [ -82.0473304909993, 28.920595036356882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046411505085985, 28.920512488324349 ], [ -82.046280115680744, 28.9204802642058 ], [ -82.046091731170122, 28.920432249220628 ], [ -82.045890917223488, 28.920386957675397 ], [ -82.045684677262656, 28.920351215740983 ], [ -82.045462154657898, 28.920313094153812 ], [ -82.045261353522136, 28.92029406117388 ], [ -82.045078905415323, 28.92027643933384 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Antepenko Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045078905415323, 28.92027643933384 ], [ -82.045031177879906, 28.920755888082013 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045078905415323, 28.92027643933384 ], [ -82.044911303123328, 28.920265529046056 ], [ -82.044770201844372, 28.920260801403561 ], [ -82.044604679994663, 28.920258468175795 ], [ -82.044477146842723, 28.920256123261478 ], [ -82.044352329309802, 28.920260937961668 ], [ -82.044198590221498, 28.920266233823398 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hanson Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044124221715961, 28.91924219193519 ], [ -82.044198590221498, 28.920266233823398 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Midora Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046536655734201, 28.919269883440226 ], [ -82.046536297556699, 28.919429419376684 ], [ -82.04653097481355, 28.919668153303853 ], [ -82.046531031807532, 28.919799457159286 ], [ -82.046528376182238, 28.919928374463925 ], [ -82.046520281681566, 28.920028644833167 ], [ -82.046509467275854, 28.920119367133839 ], [ -82.046490516169456, 28.920217253728783 ], [ -82.046474273385854, 28.920303203829661 ], [ -82.046411505085985, 28.920512488324349 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044198590221498, 28.920266233823398 ], [ -82.044024008237557, 28.920277756665826 ], [ -82.043901907266559, 28.920289731592451 ], [ -82.043747245803118, 28.920304105232781 ], [ -82.043625146709246, 28.920323242331094 ], [ -82.043505763209239, 28.920344767731532 ], [ -82.043402662364159, 28.920371060990323 ], [ -82.043234445305742, 28.920416473716667 ], [ -82.043117784087173, 28.920457094998369 ], [ -82.043014689956664, 28.920495324427435 ], [ -82.042898031318643, 28.920550269461554 ], [ -82.042740684802467, 28.920633876839027 ], [ -82.042643025297977, 28.920693589744612 ], [ -82.042499248288237, 28.920789129066257 ], [ -82.042398053013244, 28.920870863419665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dzuro Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045031177879906, 28.920755888082013 ], [ -82.044876234540354, 28.920745395845685 ], [ -82.044767691129294, 28.920740655677658 ], [ -82.044623877613716, 28.920738314443739 ], [ -82.044512624654004, 28.920738351709726 ], [ -82.044382378286357, 28.920738394164747 ], [ -82.044243993013026, 28.920743214083092 ], [ -82.044127316797898, 28.920750412505917 ], [ -82.043991647099091, 28.920762393708809 ], [ -82.043866833971592, 28.920774371283528 ], [ -82.043752875299518, 28.920791119307001 ], [ -82.043636203940395, 28.920810254673889 ], [ -82.043503257602794, 28.92084610745097 ], [ -82.043389304692212, 28.920877179107887 ], [ -82.043283496515599, 28.920920184552735 ], [ -82.043150560670398, 28.920982297389493 ], [ -82.043020342261173, 28.921051570757982 ], [ -82.042914540614547, 28.921108899852992 ], [ -82.042841299497198, 28.921168606117334 ], [ -82.042769946594106, 28.921223823731371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thorne Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042769946594106, 28.921223823731371 ], [ -82.042398053013244, 28.920870863419665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Antepenko Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045031177879906, 28.920755888082013 ], [ -82.044990374489302, 28.921153590128995 ], [ -82.044960658879305, 28.92146872754466 ], [ -82.044944424835407, 28.921576161101079 ], [ -82.044930928862144, 28.921740892220598 ], [ -82.044928297669756, 28.921939041680083 ], [ -82.044926836890653, 28.922111307501812 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gulati Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043984833426762, 28.921499706726724 ], [ -82.043980542026787, 28.92210794278288 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thorne Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045930143544851, 28.921665529725065 ], [ -82.045769333139177, 28.922114297140805 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kellaher Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045769333139177, 28.922114297140805 ], [ -82.044926836890653, 28.922111307501812 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kellaher Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044926836890653, 28.922111307501812 ], [ -82.043980542026787, 28.92210794278288 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kellaher Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043980542026787, 28.92210794278288 ], [ -82.043121977124414, 28.922104884774679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thorne Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043121977124414, 28.922104884774679 ], [ -82.043004340069189, 28.921734351867975 ], [ -82.042901101596712, 28.921428805754928 ], [ -82.042865791227001, 28.921340485729718 ], [ -82.042816921396209, 28.921273657217132 ], [ -82.042769950695273, 28.921223821023215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thorne Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045769333139177, 28.922114297140805 ], [ -82.045656639130186, 28.92244153070029 ], [ -82.045583473027236, 28.922665964161364 ], [ -82.045556363008501, 28.922728043925087 ], [ -82.045523817314617, 28.922768639140198 ], [ -82.045480416816901, 28.92280207735411 ], [ -82.045434298483954, 28.922828353137444 ], [ -82.045380034939811, 28.922847468294552 ], [ -82.04530601067907, 28.922855212957842 ], [ -82.044726080323755, 28.922854846848651 ], [ -82.04401453783926, 28.92285177510465 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042398053013244, 28.920870863419665 ], [ -82.042187122370066, 28.921050359307181 ], [ -82.04207319362132, 28.921143499660285 ], [ -82.041940269119863, 28.921236646658194 ], [ -82.041775272104118, 28.921340922334689 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041775278256097, 28.921340918723615 ], [ -82.041628292483423, 28.921420565960354 ], [ -82.041470941585999, 28.921504170947721 ], [ -82.041370561260592, 28.921549560713324 ], [ -82.041251186166292, 28.921597341815783 ], [ -82.041092158708636, 28.921656734667589 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041092158708636, 28.921656734667589 ], [ -82.040933750146777, 28.921707254873809 ], [ -82.040808941801188, 28.921740715978352 ], [ -82.040694987109788, 28.921771786258009 ], [ -82.04059730963516, 28.921793299900948 ], [ -82.040477922909531, 28.92181243424228 ], [ -82.04034921520001, 28.921830173577149 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laufersky Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041092158708636, 28.921656734667589 ], [ -82.041229612376085, 28.921941124737071 ], [ -82.041384401275664, 28.92224426992416 ], [ -82.041517468607353, 28.922509221948861 ], [ -82.041604365333143, 28.922673920338976 ], [ -82.041626099345933, 28.922735984415912 ], [ -82.041628822381227, 28.922762243990345 ], [ -82.041632183581001, 28.922869627845472 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stewart Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041632183577789, 28.922869619724825 ], [ -82.042158430481791, 28.922871509056471 ], [ -82.042228552070171, 28.922862327267595 ], [ -82.042282816064869, 28.922847986521518 ], [ -82.042326223427935, 28.922826487603949 ], [ -82.04236419961795, 28.922793052088984 ], [ -82.042396749366205, 28.922762008430148 ], [ -82.042421154312606, 28.922716640650194 ], [ -82.042431995480172, 28.922687990302503 ], [ -82.042437407537008, 28.922647403372476 ], [ -82.042437396000238, 28.922618755497322 ], [ -82.042431955106693, 28.922587722739539 ], [ -82.04242107646985, 28.922523267943657 ], [ -82.042366749251713, 28.922382431999409 ], [ -82.042306976551885, 28.9221986268001 ], [ -82.04223634282225, 28.92199333856917 ], [ -82.042192880351834, 28.92187637301539 ], [ -82.042163012013475, 28.921826248003562 ], [ -82.042119571496258, 28.921768965655485 ], [ -82.042073414650105, 28.921699746760634 ], [ -82.041775273129332, 28.92134092143208 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stewart Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04034921520001, 28.921830173577149 ], [ -82.040358565382107, 28.921907962223035 ], [ -82.040426450566457, 28.92203208356468 ], [ -82.04065184772557, 28.922487997063417 ], [ -82.040760473588193, 28.922712372761538 ], [ -82.040812059241873, 28.922786365421103 ], [ -82.04088805606068, 28.922831701065853 ], [ -82.040945052657165, 28.92286033095564 ], [ -82.041010178928644, 28.922867473823086 ], [ -82.041137716223474, 28.922869822913903 ], [ -82.041632183577789, 28.922869619724825 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040349220344439, 28.921830216885805 ], [ -82.039536149014168, 28.921914348369544 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carter Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050402212453534, 28.918912334993898 ], [ -82.050102132651148, 28.918911349440776 ], [ -82.050011511203721, 28.918915100209112 ], [ -82.049944225456287, 28.91892849512028 ], [ -82.049848726122931, 28.918955268741417 ], [ -82.049777106180102, 28.918987763146994 ], [ -82.049709833885345, 28.919029804021079 ], [ -82.049640395736546, 28.919085214966596 ], [ -82.049579647111756, 28.919153992930951 ], [ -82.049534095733719, 28.919226583856496 ], [ -82.049495066400169, 28.919320181448981 ], [ -82.049475567290429, 28.919402312780573 ], [ -82.049469148411859, 28.919600940165243 ], [ -82.049472266176821, 28.920013493859262 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053646801799729, 28.919923002333036 ], [ -82.053145562468657, 28.919925407834992 ], [ -82.05283342592854, 28.919923485672978 ], [ -82.052767663362388, 28.919931782530096 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hess Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052199352567555, 28.918230672663455 ], [ -82.052196446818328, 28.918918219521544 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cichielo Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052199352567555, 28.918230672663455 ], [ -82.050375651926956, 28.918224691675654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hess Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051895349286838, 28.917542121522452 ], [ -82.051948914905466, 28.917542329373873 ], [ -82.052010782861942, 28.917548036232592 ], [ -82.052101976639435, 28.917596702781044 ], [ -82.052163870201682, 28.917653974865978 ], [ -82.052199726687519, 28.917734176125364 ], [ -82.052196507574166, 28.917808661881857 ], [ -82.052199352567555, 28.918230672663455 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hess Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050028169914754, 28.917535992659698 ], [ -82.051895349286838, 28.917542121522452 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lammer Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050375651926956, 28.918224691675654 ], [ -82.050383090567465, 28.918261981712295 ], [ -82.050399402530928, 28.918327866730319 ], [ -82.05040418821595, 28.918446727091876 ], [ -82.050402740936974, 28.918499752844223 ], [ -82.050402212453534, 28.918912334993898 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lammer Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050028169914754, 28.917535992659698 ], [ -82.050044134210495, 28.917583150704662 ], [ -82.050089768140836, 28.917686267253575 ], [ -82.050132133812454, 28.917763600078679 ], [ -82.050190793211371, 28.917866710892486 ], [ -82.050259213078476, 28.917955495032587 ], [ -82.050308099350659, 28.918050014128031 ], [ -82.050347214736888, 28.918138808140675 ], [ -82.050375651926956, 28.918224691675654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "White Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05189520481909, 28.917008004801126 ], [ -82.051895349286838, 28.917542121522452 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lammer Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049952063637392, 28.916739472802121 ], [ -82.049946756086058, 28.917079936297039 ], [ -82.049952235395338, 28.917192139304031 ], [ -82.049971296972714, 28.917330597747668 ], [ -82.049995765834055, 28.917438017927552 ], [ -82.050028169914754, 28.917535992659698 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Truluck Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048364346580897, 28.917869878208769 ], [ -82.047933781205174, 28.917849380418335 ], [ -82.046932512888986, 28.91779004565749 ], [ -82.046128860982677, 28.917743075777441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rohan Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048733451165631, 28.91895218497158 ], [ -82.048284237308394, 28.918785089967102 ], [ -82.047993859621101, 28.918692085564039 ], [ -82.047711637258715, 28.918630114848849 ], [ -82.047383293935241, 28.918584871006757 ], [ -82.046770038291243, 28.918534948582241 ], [ -82.045869360132343, 28.918465851849945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Olson Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048423219304027, 28.919503919506514 ], [ -82.048604547616108, 28.919787792941019 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pardo Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047424493791098, 28.919344850489509 ], [ -82.047389300860232, 28.919540333371597 ], [ -82.047381179658586, 28.919618108671653 ], [ -82.04738392872062, 28.91969688805499 ], [ -82.047397519338347, 28.919747017583383 ], [ -82.047416543793673, 28.919818631586075 ], [ -82.04744642048091, 28.919880690104957 ], [ -82.047579475889194, 28.920121413179778 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sennett Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048423219304027, 28.919503919506514 ], [ -82.048461067227507, 28.919481649120101 ], [ -82.048499045735412, 28.919460151041644 ], [ -82.048553285074192, 28.919398060092522 ], [ -82.048593957143623, 28.919328813342723 ], [ -82.048656286549814, 28.919161677805775 ], [ -82.048733451165631, 28.91895218497158 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sennett Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047424493791098, 28.919344850489509 ], [ -82.047481457484167, 28.919353078537391 ], [ -82.047611712913962, 28.919376906928502 ], [ -82.047698551683993, 28.919395975450367 ], [ -82.047831528411052, 28.91943651319243 ], [ -82.047964506267164, 28.919477051704593 ], [ -82.048079101889442, 28.919523500294062 ], [ -82.048130054232686, 28.919539063145415 ], [ -82.048173473215314, 28.919548596794723 ], [ -82.048206035460368, 28.91954858617903 ], [ -82.048268443266679, 28.919548563179713 ], [ -82.04832813623085, 28.919541380495989 ], [ -82.048376972498957, 28.919527039218409 ], [ -82.048423219304027, 28.919503919506514 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sennett Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046536655734201, 28.919269883440226 ], [ -82.046699956887963, 28.919281727962353 ], [ -82.046979449733769, 28.919303119174156 ], [ -82.047207386252978, 28.919319751824336 ], [ -82.047424493791098, 28.919344850489509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sennett Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046128860982677, 28.917743075777441 ], [ -82.04608342428682, 28.917899033151748 ], [ -82.046057408647314, 28.917976678194162 ], [ -82.046023587175284, 28.918072087561718 ], [ -82.045981957680752, 28.918182682486872 ], [ -82.045959839218469, 28.918235116947489 ], [ -82.045918591802277, 28.918330875270392 ], [ -82.045899336884062, 28.918376943960251 ], [ -82.045884701860871, 28.918415623093441 ], [ -82.045869360132343, 28.918465851849945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sennett Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048733451165631, 28.91895218497158 ], [ -82.048749423616485, 28.918909235392011 ], [ -82.048779238884279, 28.918837604992181 ], [ -82.04882262433506, 28.918773132146082 ], [ -82.048895847290638, 28.91869193535382 ], [ -82.048958216662797, 28.91860596837526 ], [ -82.049028716835593, 28.918503288824535 ], [ -82.049112755700577, 28.918336146145407 ], [ -82.049164559615534, 28.918179964408939 ], [ -82.049202131228768, 28.917980400893502 ], [ -82.049204765470506, 28.917808511672177 ], [ -82.049191138449473, 28.917679601967595 ], [ -82.049166661616468, 28.917557855893822 ], [ -82.049109598930045, 28.917388376573886 ], [ -82.049047111216112, 28.917214124227996 ], [ -82.049011804945962, 28.9171449028611 ], [ -82.04896022405174, 28.917087626514768 ], [ -82.048914082496267, 28.917056607716027 ], [ -82.048848951725688, 28.917037533087697 ], [ -82.048772252275825, 28.917025639432236 ], [ -82.048705137782505, 28.917025646298221 ], [ -82.04818145623608, 28.917023446821265 ], [ -82.047807552691197, 28.917021191942759 ], [ -82.047276163716461, 28.917019847928184 ], [ -82.046508950100915, 28.917018666396544 ], [ -82.046463453979399, 28.917021655879271 ], [ -82.046420045126013, 28.917032365583292 ], [ -82.046378374496669, 28.917047657443685 ], [ -82.046328024407728, 28.917073648960905 ], [ -82.046286365518995, 28.917113390305097 ], [ -82.046256861810789, 28.917154652392693 ], [ -82.046237776448507, 28.91719132817876 ], [ -82.046229119781259, 28.917253973919703 ], [ -82.046215263516984, 28.917334957882247 ], [ -82.046196217647164, 28.917461779336396 ], [ -82.046166750954612, 28.917590130999905 ], [ -82.04612886098306, 28.917743076679727 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vineland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999000233188156, 28.84561162856788 ], [ -81.998990054733952, 28.845600585152852 ], [ -81.998891309800015, 28.845500528413957 ], [ -81.998812141176316, 28.845408709854155 ], [ -81.998747737270094, 28.845322786168559 ], [ -81.998698740575023, 28.845244281381081 ], [ -81.998650261663258, 28.845155400056278 ], [ -81.998606215341212, 28.84505808310028 ], [ -81.998571321639531, 28.844969559212451 ], [ -81.998539282774118, 28.844844569533294 ], [ -81.9984932648984, 28.844636471828153 ], [ -81.998463704018647, 28.844523378164858 ], [ -81.99842474021689, 28.844425453049254 ], [ -81.998397007771032, 28.844364470302981 ], [ -81.998355639368185, 28.844292365539214 ], [ -81.99830926266732, 28.844224335510514 ], [ -81.998237958819118, 28.844137393670799 ], [ -81.998100113030702, 28.843997792185313 ], [ -81.997772791741184, 28.843670915414872 ], [ -81.997730807466738, 28.843624865448952 ], [ -81.997693041414735, 28.843576082459499 ], [ -81.997638696082674, 28.843486864984765 ], [ -81.997614557078734, 28.843434887156935 ], [ -81.997601253039534, 28.843395911768766 ], [ -81.997586079894688, 28.843351998921314 ], [ -81.997573485471236, 28.843297144749844 ], [ -81.997562366799897, 28.843203780153996 ], [ -81.997554007364528, 28.843018701542071 ], [ -81.997554905598136, 28.842886885369179 ], [ -81.997563361873759, 28.842712225105245 ], [ -81.997588269063371, 28.8425052580534 ], [ -81.997595897655827, 28.842467332437387 ], [ -81.997601938087897, 28.842418845289302 ], [ -81.997601951984322, 28.842358983547083 ], [ -81.997594165275899, 28.842255327291696 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sennett Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045869363206208, 28.918465845532854 ], [ -82.045844915849003, 28.918572982443543 ], [ -82.045831397797684, 28.918685191990818 ], [ -82.045831445585108, 28.918795009500091 ], [ -82.045845057161486, 28.918895271645479 ], [ -82.04586409077794, 28.91898837134427 ], [ -82.045890928245669, 28.919068357151833 ], [ -82.045921134534581, 28.919129205026735 ], [ -82.045969998051177, 28.91917932191603 ], [ -82.04601342605784, 28.919207955154896 ], [ -82.046027373713528, 28.919213142256016 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sennett Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046027373713528, 28.919213142256016 ], [ -82.046083985945998, 28.919234193539577 ], [ -82.046151824904641, 28.919238942829978 ], [ -82.046252222944801, 28.919243684651072 ], [ -82.046536655734201, 28.919269883440226 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 156", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035095047586225, 28.839878497714018 ], [ -82.035093787115756, 28.839878485402963 ], [ -82.035002134536285, 28.839877646123512 ], [ -82.033021158701033, 28.839873615412447 ], [ -82.033020747768248, 28.839873614608567 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 156", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031391403291323, 28.839862895679886 ], [ -82.030028553032423, 28.83983988309663 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C Thomas Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030466424044576, 28.837410191545001 ], [ -82.030433973181545, 28.837702409920674 ], [ -82.030466583552467, 28.837965968406774 ], [ -82.030512179833622, 28.838126388520315 ], [ -82.030544738799165, 28.838206596412125 ], [ -82.030668411671954, 28.838332622191366 ], [ -82.030818114017165, 28.838452911498074 ], [ -82.031189130335079, 28.838813796967969 ], [ -82.031286769033755, 28.838916908548498 ], [ -82.031338845454385, 28.838979923771003 ], [ -82.031377924413832, 28.839100237506589 ], [ -82.031397472227127, 28.839191906529354 ], [ -82.031391403291323, 28.839862895679886 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 22nd Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068220305940997, 28.607772109562344 ], [ -82.068217985094563, 28.607051790769081 ], [ -82.068293383083514, 28.606082840055841 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 22nd Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067984972024732, 28.608593674209693 ], [ -82.068046282916228, 28.608545525606992 ], [ -82.068103046832618, 28.608491365129133 ], [ -82.068180240114174, 28.608411131268177 ], [ -82.068218831533258, 28.608362993865793 ], [ -82.068220826578823, 28.607933945070712 ], [ -82.068220305940997, 28.607772109562344 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 101st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067235238056895, 28.608592038338163 ], [ -82.066624087769597, 28.608588326166768 ], [ -82.066537466199193, 28.608590018538759 ], [ -82.066507602054529, 28.608595761965486 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 22nd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066507602054529, 28.608595761965486 ], [ -82.066460797211221, 28.608509454052506 ], [ -82.066436529684012, 28.608462099208417 ], [ -82.066415710849824, 28.608396407123458 ], [ -82.066405274077283, 28.60832001366569 ], [ -82.066401752187502, 28.608228336621064 ], [ -82.066408424182981, 28.607824949960644 ], [ -82.066404920676078, 28.607759249495029 ], [ -82.066411827892097, 28.607730216038831 ], [ -82.066425659661249, 28.607698122102033 ], [ -82.06645161416435, 28.607669075821505 ], [ -82.066477574361102, 28.607650728591256 ], [ -82.066508736585845, 28.607644601949435 ], [ -82.066564139362214, 28.607639991218445 ], [ -82.066986618302536, 28.607645896469688 ], [ -82.067203050652751, 28.607647320201949 ], [ -82.067249800679051, 28.607650352644182 ], [ -82.067324260404817, 28.607662539274202 ], [ -82.06739699693226, 28.607683895396569 ], [ -82.067495716799073, 28.607728158174503 ], [ -82.067604814788908, 28.607752553440157 ], [ -82.067625650429221, 28.607755671597573 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 22nd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066479327963449, 28.609610894708712 ], [ -82.066479258350967, 28.609498620985583 ], [ -82.066478961939268, 28.609027470164737 ], [ -82.066482969069654, 28.608659949281368 ], [ -82.066485546497731, 28.608630151833481 ], [ -82.066495922304242, 28.608609519296586 ], [ -82.066507602054529, 28.608595761965486 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 101st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067984972024732, 28.608593674209693 ], [ -82.067363075707547, 28.608589405823693 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 101st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067363075707547, 28.608589405823693 ], [ -82.067235238056895, 28.608592038338163 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 22nd Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067363075707547, 28.608589405823693 ], [ -82.06736847756089, 28.608491394509141 ], [ -82.067371644901641, 28.608367244373593 ], [ -82.067390009729039, 28.608316622155058 ], [ -82.067466767363058, 28.608197212875044 ], [ -82.067517579426124, 28.608120787592039 ], [ -82.067581378351647, 28.608044359507947 ], [ -82.067606239839293, 28.608001372377231 ], [ -82.067618108896809, 28.607945022555171 ], [ -82.067625650429221, 28.607755671597573 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leelanau Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028309783073908, 28.849713020758543 ], [ -82.029011196793476, 28.848354278438904 ], [ -82.02920900115133, 28.847969307781089 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Interlochen Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026755073207468, 28.847991084138719 ], [ -82.026853379566532, 28.848022681000423 ], [ -82.026965321878293, 28.84805130745201 ], [ -82.027055134096898, 28.848069624782948 ], [ -82.027148851317122, 28.848089087216415 ], [ -82.027267297907201, 28.848107398787459 ], [ -82.027372726580907, 28.848116545404022 ], [ -82.027502886362583, 28.8481233951692 ], [ -82.027600504689872, 28.848132544061858 ], [ -82.027695523158513, 28.848146275312295 ], [ -82.027787936482667, 28.84816000882358 ], [ -82.027871240535248, 28.848176035060966 ], [ -82.027942832920303, 28.848193209541169 ], [ -82.028063887428814, 28.84822870880728 ], [ -82.028177384121449, 28.848273375124894 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlevoix Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025246876742486, 28.8479600020164 ], [ -82.025260229915204, 28.848043796716482 ], [ -82.025237524332184, 28.848341743990119 ], [ -82.025237573256788, 28.848548011052412 ], [ -82.025257821996078, 28.848628640104682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlevoix Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025257821996078, 28.848628640104682 ], [ -82.025283167513038, 28.84871416323185 ], [ -82.025335258161874, 28.848831611358303 ], [ -82.025380831168576, 28.848911817992501 ], [ -82.02548499000352, 28.8490464445367 ], [ -82.025579378355758, 28.84914383284563 ], [ -82.025693289461373, 28.849241216567602 ], [ -82.025813701003827, 28.849307084156198 ], [ -82.02592759993324, 28.849352900017113 ], [ -82.026103330769757, 28.849418757887555 ], [ -82.026293440779767, 28.849451937610869 ], [ -82.02642548112928, 28.849464533935699 ], [ -82.026604450636185, 28.849467365397501 ], [ -82.026845242678277, 28.849473048567436 ], [ -82.027033969797529, 28.849467281302775 ], [ -82.0272292069793, 28.849470107855513 ], [ -82.027434206279509, 28.849470067370774 ], [ -82.027604070316514, 28.849482347351476 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlevoix Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027604070316514, 28.849482347351476 ], [ -82.027756355683479, 28.84950151613921 ], [ -82.027893033276456, 28.849547327569329 ], [ -82.028107816540683, 28.849630363861039 ], [ -82.028309783073908, 28.849713020758543 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlevoix Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028309783073908, 28.849713020758543 ], [ -82.028914886873849, 28.84995965167413 ], [ -82.028953935127916, 28.849962509220095 ], [ -82.029002746277158, 28.849965362901397 ], [ -82.02903202694165, 28.849951033557016 ], [ -82.029064561009548, 28.849930972980481 ], [ -82.029087330846735, 28.849902319993081 ], [ -82.029136117837226, 28.849813499403556 ], [ -82.029549142955389, 28.849002664969291 ], [ -82.029864603126271, 28.848392389540315 ], [ -82.029887366544699, 28.848346546590278 ], [ -82.029887356275637, 28.848306440011623 ], [ -82.029882108272147, 28.848274614122253 ], [ -82.029864558790621, 28.848234824437075 ], [ -82.029822788499729, 28.848215057631329 ], [ -82.029770183567464, 28.848191871605462 ], [ -82.02920900115133, 28.847969307781089 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlevoix Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02920900115133, 28.847969307781089 ], [ -82.028483703615024, 28.847679376890522 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlevoix Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028483703615024, 28.847679376890522 ], [ -82.028157157441569, 28.847545713934828 ], [ -82.027991736949772, 28.847486064495868 ], [ -82.0278669956908, 28.847457439666993 ], [ -82.027736834949437, 28.847435981018858 ], [ -82.027576848060107, 28.847421689792217 ], [ -82.027424998675301, 28.847412169961014 ], [ -82.027294839306066, 28.847395483180762 ], [ -82.027172812935206, 28.847374021481293 ], [ -82.027026376157721, 28.847333465331843 ], [ -82.02678231151269, 28.847238018118546 ], [ -82.026519360824295, 28.847135548724886 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kewadin Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028177384121449, 28.848273375124894 ], [ -82.028460755629425, 28.847722795151768 ], [ -82.028483703615024, 28.847679376890522 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kewadin Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027604066222224, 28.849482367203013 ], [ -82.027612471414201, 28.849420374432967 ], [ -82.027628722053123, 28.849339200690043 ], [ -82.027655821912646, 28.849281898877173 ], [ -82.027871443230339, 28.848866624530736 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kewadin Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027871443230339, 28.848866624530736 ], [ -82.028177384121449, 28.848273375124894 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mancelona Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02637105645195, 28.848727653928979 ], [ -82.026422659074029, 28.848583695674961 ], [ -82.026486828444362, 28.848415614562136 ], [ -82.026504172494114, 28.848380469147312 ], [ -82.026563153569555, 28.84828114377456 ], [ -82.026646423898612, 28.848158895140358 ], [ -82.026755073207468, 28.847991084138719 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mancelona Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026755073207468, 28.847991084138719 ], [ -82.02695481138673, 28.84768497338592 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Petoskey Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02637105645195, 28.848727653928979 ], [ -82.026406693242265, 28.848737901843815 ], [ -82.026495591546436, 28.848759392225109 ], [ -82.026582364827178, 28.84877465524243 ], [ -82.026658727514373, 28.848785333788836 ], [ -82.026726410963335, 28.848792961467478 ], [ -82.026825330898234, 28.848795999352294 ], [ -82.027403228890662, 28.848798939565938 ], [ -82.0276114814246, 28.848797371469214 ], [ -82.027658338269745, 28.848798889714168 ], [ -82.027708667672087, 28.848809575574201 ], [ -82.027781561080999, 28.84883095101166 ], [ -82.027871443230339, 28.848866624530736 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Petoskey Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025257821996078, 28.848628640104682 ], [ -82.025754521513093, 28.848583822356495 ], [ -82.025882937573101, 28.848570047301006 ], [ -82.025933266126245, 28.848570036991557 ], [ -82.025973183277571, 28.848574613229623 ], [ -82.026035661872584, 28.84859293635693 ], [ -82.026120708298876, 28.848634173765703 ], [ -82.026216166299136, 28.848675409150982 ], [ -82.026316830533133, 28.848712060669389 ], [ -82.02637105645195, 28.848727653928979 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brownwood Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02860807841455, 28.845760012288356 ], [ -82.028537709784885, 28.845798496641851 ], [ -82.028489168937668, 28.845825621845798 ], [ -82.028449433582026, 28.845845823632327 ], [ -82.028410353357529, 28.845867077361298 ], [ -82.028345205967284, 28.845893602280853 ], [ -82.028268111517505, 28.845917872943808 ], [ -82.028183878341736, 28.845939287414414 ], [ -82.028091077831206, 28.845957846871709 ], [ -82.027988284827543, 28.845974978131995 ], [ -82.027896913512606, 28.845992109718637 ], [ -82.02777413319464, 28.846009240332414 ], [ -82.027657063468951, 28.84602351660207 ], [ -82.027559338152798, 28.846036850521752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Godleski Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013513117394183, 28.84052267304445 ], [ -82.013592767944075, 28.840521483441666 ], [ -82.013667603220483, 28.840521476276376 ], [ -82.013712069630571, 28.840524336823595 ], [ -82.013757621108198, 28.840533881540654 ], [ -82.013797753334472, 28.840541517486681 ], [ -82.013843305072498, 28.84055297235842 ], [ -82.013919227503123, 28.840583522472716 ], [ -82.014033112769468, 28.840629349368072 ], [ -82.014195806045777, 28.840697132544467 ], [ -82.014369202720374, 28.840767948898439 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Day Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013833115019295, 28.843352471929975 ], [ -82.01401177157372, 28.843474698913568 ], [ -82.014022783055637, 28.843482236597872 ], [ -82.0140360862042, 28.843491321510481 ], [ -82.014051314112294, 28.843501738035776 ], [ -82.014068639991976, 28.843513630524932 ], [ -82.014083100254041, 28.843523484985663 ], [ -82.014098707380498, 28.843534138774544 ], [ -82.014114054192035, 28.843544659046074 ], [ -82.014130140978793, 28.843555656562359 ], [ -82.014147778447551, 28.843567780000694 ], [ -82.014174527250489, 28.843586041820668 ], [ -82.014192020207787, 28.84359798209935 ], [ -82.014209476277316, 28.843609932304801 ], [ -82.014227138352013, 28.843621997080248 ], [ -82.014248042191383, 28.84363631909876 ], [ -82.014267032546954, 28.843649312208942 ], [ -82.014281235600862, 28.843659022304973 ], [ -82.01429050786642, 28.843665365488391 ], [ -82.014299888773124, 28.843671788063176 ], [ -82.014306161158089, 28.843676069777462 ], [ -82.014314037513586, 28.84368146206895 ], [ -82.014320983259623, 28.843686209304742 ], [ -82.014328160633966, 28.843691117127349 ], [ -82.014335621906895, 28.843696223428328 ], [ -82.014343691971348, 28.843701746532904 ], [ -82.014350456312897, 28.843706371071821 ], [ -82.014354460598469, 28.84370910916687 ], [ -82.014362340034083, 28.843714506869031 ], [ -82.014368705690131, 28.843718852634691 ], [ -82.014376264332853, 28.843724027498787 ], [ -82.014381696307041, 28.843727746255471 ], [ -82.014387204123139, 28.843731508314928 ], [ -82.014392331702979, 28.843735022278448 ], [ -82.014400069705204, 28.843740316227493 ], [ -82.01440523623053, 28.843743844623482 ], [ -82.014413429296582, 28.843749497643476 ], [ -82.014421585454528, 28.84375503156226 ], [ -82.014427847601979, 28.843759317783402 ], [ -82.014433660842556, 28.843763292754208 ], [ -82.014437562642044, 28.84376595867268 ], [ -82.014442820386606, 28.843769552926286 ], [ -82.014449339786353, 28.843774016874583 ], [ -82.014456382911661, 28.843778840789472 ], [ -82.014464375095841, 28.843784307049368 ], [ -82.014472770067371, 28.843790049373474 ], [ -82.014480116564769, 28.843795072665866 ], [ -82.014486055872084, 28.843799132438313 ], [ -82.014493726240644, 28.843804383078083 ], [ -82.014504674248357, 28.843811880125234 ], [ -82.014511289992015, 28.843816393687518 ], [ -82.014519375453304, 28.843821962797509 ], [ -82.014523511954877, 28.843824752305402 ], [ -82.014527321524383, 28.843827404696079 ], [ -82.014534545034095, 28.843832309795928 ], [ -82.01454371791381, 28.843838578080472 ], [ -82.014552477760915, 28.843844580226367 ], [ -82.014561586073512, 28.843850801596361 ], [ -82.01457042688962, 28.843856856066527 ], [ -82.014576683923252, 28.843861127844303 ], [ -82.014584129846313, 28.843866219696022 ], [ -82.014590775320571, 28.843870764832008 ], [ -82.01459954337129, 28.843876765169362 ], [ -82.014609211288999, 28.84388338439561 ], [ -82.014619758573446, 28.843890590029627 ], [ -82.014627246523986, 28.843895726989924 ], [ -82.014635447806626, 28.843901337587006 ], [ -82.014642910133333, 28.843906436652201 ], [ -82.014648016205655, 28.843909923538934 ], [ -82.014654911763159, 28.843914647302544 ], [ -82.014661632061845, 28.843919245663347 ], [ -82.014671211845567, 28.843925804439674 ], [ -82.014677317201787, 28.843929974267791 ], [ -82.014685963299044, 28.84393589340451 ], [ -82.014696338411341, 28.843942990773542 ], [ -82.01470127025388, 28.843946362181082 ], [ -82.014708256006784, 28.843951140070953 ], [ -82.014715306329478, 28.843955963069078 ], [ -82.014721967188734, 28.84396051902462 ], [ -82.014730567169551, 28.843966401168661 ], [ -82.014736880587336, 28.843970720755291 ], [ -82.014743035144463, 28.84397492576521 ], [ -82.014746980006294, 28.84397762505548 ], [ -82.01475064506883, 28.84398013128116 ], [ -82.014753657267093, 28.843982194542306 ], [ -82.014756030948703, 28.843983817544341 ], [ -82.014759033922672, 28.843985871783246 ], [ -82.014762086092048, 28.843987958500009 ], [ -82.014764977351589, 28.843989936956675 ], [ -82.014767982375886, 28.843991993902073 ], [ -82.01477101917223, 28.843994071597166 ], [ -82.014773613209059, 28.843995844358794 ], [ -82.014776312811762, 28.84399769290307 ], [ -82.014779120029374, 28.843999612718299 ], [ -82.014781992841108, 28.844001577641922 ], [ -82.014784661696723, 28.844003403631593 ], [ -82.014787580629701, 28.844005401935636 ], [ -82.014789570997635, 28.844006764210526 ], [ -82.014792296223021, 28.844008626286421 ], [ -82.01479496917861, 28.844010454982371 ], [ -82.014797330562416, 28.844012068059595 ], [ -82.014800169552757, 28.8440140086241 ], [ -82.014802629328159, 28.84401569207083 ], [ -82.014805341230854, 28.844017549636341 ], [ -82.014808066456922, 28.844019412614195 ], [ -82.014810112170224, 28.844020811877577 ], [ -82.014812276773341, 28.844022296847587 ], [ -82.014814533616871, 28.844023835946299 ], [ -82.014816892952041, 28.844025451730293 ], [ -82.014818370867516, 28.84402646396348 ], [ -82.014820685106926, 28.844028049073739 ], [ -82.014823126433811, 28.84402971357359 ], [ -82.014825903931779, 28.844031619856334 ], [ -82.014827947595208, 28.844033013705804 ], [ -82.014828728574102, 28.844033547789458 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Day Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013435468959102, 28.843165016150923 ], [ -82.01344856005629, 28.843167269779219 ], [ -82.013459101413218, 28.843169249346083 ], [ -82.013477726644027, 28.843173131111644 ], [ -82.013491301564457, 28.843176304140346 ], [ -82.013503458141528, 28.843179329323952 ], [ -82.013523020229812, 28.843184688972475 ], [ -82.013540850407949, 28.84319007314522 ], [ -82.013559308880843, 28.843196168273273 ], [ -82.013571828413305, 28.843200554996702 ], [ -82.013584583710667, 28.843205413602767 ], [ -82.013595321097185, 28.843209663343504 ], [ -82.013609118733171, 28.843215415131141 ], [ -82.013620376809357, 28.843220363205308 ], [ -82.013636282670561, 28.843227730819329 ], [ -82.013644857722781, 28.843231934745685 ], [ -82.01365360394324, 28.843236340771735 ], [ -82.013663090141918, 28.843241300742363 ], [ -82.013673101101404, 28.843246742493555 ], [ -82.013680058979887, 28.84325064339809 ], [ -82.013689430461824, 28.843256065358808 ], [ -82.013693172297266, 28.843258281965824 ], [ -82.013700842510744, 28.843262936226644 ], [ -82.013706632079732, 28.843266549406529 ], [ -82.0137151847523, 28.843272012048143 ], [ -82.013721809631889, 28.843276374963533 ], [ -82.013727106269116, 28.843279963827818 ], [ -82.01373326791898, 28.843284170688332 ], [ -82.013736826344413, 28.843286605670016 ], [ -82.013745703960424, 28.843292678237486 ], [ -82.013753670446988, 28.843298118375614 ], [ -82.013757464599351, 28.843300720260654 ], [ -82.01376071555822, 28.843302945034004 ], [ -82.01376440619606, 28.843305470232799 ], [ -82.013768498591631, 28.843308267889153 ], [ -82.013772677078833, 28.843311127796181 ], [ -82.013777166108113, 28.843314195203529 ], [ -82.013781906236559, 28.843317435829231 ], [ -82.013786400392007, 28.843320515868047 ], [ -82.013790250914553, 28.843323152034323 ], [ -82.013794247996401, 28.843325883830758 ], [ -82.01379805752353, 28.843328491126979 ], [ -82.013801943917557, 28.843331148944788 ], [ -82.013806634852926, 28.843334357993651 ], [ -82.0138076535967, 28.843335055377661 ], [ -82.013808652867368, 28.843335738326648 ], [ -82.013809829444611, 28.843336543069807 ], [ -82.013810784644946, 28.843337196246942 ], [ -82.013811929450569, 28.843337979337779 ], [ -82.013812786261141, 28.843338564851479 ], [ -82.013813656395556, 28.843339161191558 ], [ -82.013814571625261, 28.843339788205661 ], [ -82.013815548348163, 28.84334045401296 ], [ -82.013816482026073, 28.843341094559854 ], [ -82.013817388031541, 28.843341713454087 ], [ -82.013818367829458, 28.843342383772612 ], [ -82.013819477788857, 28.84334314340682 ], [ -82.013820370470754, 28.843343753279242 ], [ -82.013821189360456, 28.843344313531993 ], [ -82.013821790972898, 28.843344725827588 ], [ -82.013822805616968, 28.843345417798044 ], [ -82.013823560963573, 28.843345936550847 ], [ -82.013824371654195, 28.843346491390513 ], [ -82.013825248962831, 28.843347091339052 ], [ -82.013826209287828, 28.843347748124796 ], [ -82.013826922613617, 28.843348236203258 ], [ -82.013827642088657, 28.843348727890334 ], [ -82.013828523497139, 28.843349332349973 ], [ -82.013829212225318, 28.843349802384672 ], [ -82.013829966546837, 28.843350318430634 ], [ -82.013830632727519, 28.843350774030622 ], [ -82.013831190269428, 28.843351154749715 ], [ -82.013831794956701, 28.843351569751889 ], [ -82.013832478560545, 28.843352037080155 ], [ -82.013833115019295, 28.843352471929975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenster Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013837724911866, 28.84194904002306 ], [ -82.013834114575957, 28.841949027742036 ], [ -82.01382601770959, 28.841949008678732 ], [ -82.013819256144856, 28.841948993996738 ], [ -82.013811785424792, 28.841948973067115 ], [ -82.013804949050524, 28.841948959293987 ], [ -82.013796600084845, 28.841948932132613 ], [ -82.013788741994162, 28.841948910337006 ], [ -82.013780155278894, 28.841948895829969 ], [ -82.013773031962799, 28.841948876669154 ], [ -82.013762961349897, 28.841948846063225 ], [ -82.01375303523352, 28.841948824465589 ], [ -82.01374449360739, 28.84194879731962 ], [ -82.013737057731376, 28.841948785405581 ], [ -82.013728936269629, 28.841948762729604 ], [ -82.013719259176227, 28.841948733887008 ], [ -82.01370942221692, 28.841948714984508 ], [ -82.013698698813442, 28.841948688045882 ], [ -82.013689474676454, 28.841948653743682 ], [ -82.01367855656386, 28.841948634040648 ], [ -82.013668248199906, 28.841948604352766 ], [ -82.013664538452318, 28.841948536133728 ], [ -82.013661512233114, 28.841948417319816 ], [ -82.0136582000857, 28.841948204693374 ], [ -82.013654108056087, 28.841947855893356 ], [ -82.013650742596468, 28.841947460103572 ], [ -82.013647937701435, 28.841947100352254 ], [ -82.013645290617177, 28.841946686447308 ], [ -82.013642875136469, 28.841946280640872 ], [ -82.013640187049262, 28.841945776509093 ], [ -82.013635118300328, 28.841944677082932 ], [ -82.013631388974204, 28.841943756185028 ], [ -82.013628338068855, 28.841942913722747 ], [ -82.013625011475639, 28.841941916992351 ], [ -82.013621438913518, 28.841940765990966 ], [ -82.013618129720314, 28.841939598722742 ], [ -82.013617639846046, 28.841939402066757 ], [ -82.01361571827357, 28.841938674089079 ], [ -82.013611912012607, 28.841937150457124 ], [ -82.013606614575224, 28.841934773385457 ], [ -82.01360340576241, 28.841933214506192 ], [ -82.013599611741654, 28.841931233403226 ], [ -82.013597332450132, 28.841929967684646 ], [ -82.013594641154995, 28.84192839792804 ], [ -82.013592466383372, 28.841927062721815 ], [ -82.013590559096315, 28.841925842082937 ], [ -82.013588508323011, 28.841924496037112 ], [ -82.01358627818702, 28.841922955110125 ], [ -82.013583485379684, 28.841920921577337 ], [ -82.013580483481348, 28.841918617372432 ], [ -82.013578942041022, 28.841917369629286 ], [ -82.013576578628445, 28.841915397412237 ], [ -82.013575415365793, 28.841914390548901 ], [ -82.013573643304511, 28.841912797244213 ], [ -82.013571087178789, 28.84191040366823 ], [ -82.01356788533333, 28.841907194468455 ], [ -82.013565451127391, 28.841904559062531 ], [ -82.01356386247933, 28.841902771744287 ], [ -82.013561864867739, 28.84190040608642 ], [ -82.013560322323741, 28.841898526728471 ], [ -82.013558617816869, 28.841896279244793 ], [ -82.013557362238572, 28.84189459566004 ], [ -82.013555726386471, 28.841892298542906 ], [ -82.013554205314449, 28.841890030288674 ], [ -82.013552310102241, 28.841887027592353 ], [ -82.013551002195115, 28.841884827893065 ], [ -82.013549778326322, 28.841882672398825 ], [ -82.013547682127168, 28.841878645603426 ], [ -82.013546510488425, 28.841876216705217 ], [ -82.013545236320454, 28.841873386290288 ], [ -82.013544316809373, 28.841871191967837 ], [ -82.013543152276497, 28.841868222587209 ], [ -82.013541621716115, 28.841863834815207 ], [ -82.013540240746821, 28.841859222354604 ], [ -82.013539381556242, 28.841855893826828 ], [ -82.013538439229151, 28.841851539384191 ], [ -82.013538066980715, 28.841849545321733 ], [ -82.013537481362917, 28.841845850431405 ], [ -82.013537194137598, 28.841843582059614 ], [ -82.013536842177245, 28.841839931360091 ], [ -82.01353662758747, 28.841836670443989 ], [ -82.013536529805179, 28.841833262440776 ], [ -82.013536418414461, 28.841827572505188 ], [ -82.013536338841092, 28.841822272363043 ], [ -82.013536221235853, 28.841816057285516 ], [ -82.013536103617227, 28.841809735735779 ], [ -82.013536037499875, 28.841805502118895 ], [ -82.013535913747177, 28.841799296967306 ], [ -82.013535803232529, 28.841792420498241 ], [ -82.013535684642704, 28.841786525739639 ], [ -82.013535560739783, 28.841779122324709 ], [ -82.013535441010134, 28.841772309920263 ], [ -82.013535311001064, 28.841765245773228 ], [ -82.013535192286952, 28.841758359379515 ], [ -82.013535028156596, 28.841748876151353 ], [ -82.013534905379132, 28.841742274886943 ], [ -82.013534773283112, 28.841734912076546 ], [ -82.013534641215259, 28.841727773940512 ], [ -82.013534543108776, 28.841721779023867 ], [ -82.013534413104225, 28.841714750066739 ], [ -82.013534288233487, 28.841707799609779 ], [ -82.013534156154847, 28.841700574852261 ], [ -82.013534026159419, 28.841693618079649 ], [ -82.01353390851699, 28.841687104338469 ], [ -82.013533796977939, 28.841680228771665 ], [ -82.013533672120289, 28.841673382079964 ], [ -82.013533613258531, 28.841669801732394 ], [ -82.013533337738906, 28.841654634884502 ], [ -82.013532943429169, 28.84163197258567 ], [ -82.013532676159272, 28.841617214481857 ], [ -82.013532400591956, 28.841601665055759 ], [ -82.013532099324962, 28.841585476798901 ], [ -82.013531811329045, 28.84156887979578 ], [ -82.013531484246727, 28.841551128745959 ], [ -82.013531181767945, 28.841533446269096 ], [ -82.013530952730832, 28.841521202890398 ], [ -82.013530618302937, 28.841502076725632 ], [ -82.013530415002634, 28.841490767231925 ], [ -82.013530185913098, 28.841478104280476 ], [ -82.013529916585597, 28.841463275796574 ], [ -82.013529662699042, 28.84144899862061 ], [ -82.013529398530096, 28.841434445339729 ], [ -82.013529176540246, 28.841421191376565 ], [ -82.013528920605566, 28.841406924126105 ], [ -82.013528736951727, 28.84139701230356 ], [ -82.013528541840728, 28.841385627917415 ], [ -82.013528311810902, 28.841373635379806 ], [ -82.013528108454352, 28.841361872927877 ], [ -82.013527832883881, 28.841346287408921 ], [ -82.013527308687628, 28.841317511090544 ], [ -82.013525876497994, 28.841239377774073 ], [ -82.013513117394183, 28.84052267304445 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tolleson Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013625742707319, 28.839754720597593 ], [ -82.013659162523624, 28.839755294871622 ], [ -82.013754601146488, 28.839754522328878 ], [ -82.0137875746764, 28.839759102857283 ], [ -82.013811001760345, 28.839765975262139 ], [ -82.013907313196924, 28.839802635634477 ], [ -82.013996685262057, 28.839841589383152 ], [ -82.014068702750521, 28.83987137645008 ], [ -82.014166751659971, 28.839910327421695 ], [ -82.014254387548576, 28.839946225058121 ], [ -82.014314257969346, 28.839971429492454 ], [ -82.014370657215082, 28.83999434239184 ], [ -82.014422719450792, 28.840015728102635 ], [ -82.014465236374747, 28.840032530144903 ], [ -82.014497340304288, 28.840047042280627 ], [ -82.014535518468236, 28.840056969164934 ], [ -82.01455807737706, 28.840061551473458 ], [ -82.01457716630857, 28.840065368978529 ], [ -82.014608401338322, 28.840065365765216 ], [ -82.014660492803415, 28.840067487127676 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenster Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013625742707319, 28.839754720597593 ], [ -82.01362540976578, 28.839641931351217 ], [ -82.013627122897987, 28.839469277444639 ], [ -82.013627890518833, 28.839307520786488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenster Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013513117394183, 28.84052267304445 ], [ -82.013513044113637, 28.840518507100445 ], [ -82.013512937239966, 28.84046701245564 ], [ -82.0135155361248, 28.840426522991105 ], [ -82.013519001352321, 28.8403974927419 ], [ -82.013525938361127, 28.840350890637811 ], [ -82.013532874396418, 28.840321095804285 ], [ -82.013541547227263, 28.840289773199526 ], [ -82.013551086819206, 28.840256922003636 ], [ -82.01356062614812, 28.840230182131837 ], [ -82.013576237442123, 28.840180523986458 ], [ -82.013590116057529, 28.840140796794621 ], [ -82.01359792154831, 28.840114821339231 ], [ -82.013603788276981, 28.840089714990125 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenster Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013603788276981, 28.840089714990125 ], [ -82.013606377152797, 28.840075858917128 ], [ -82.013614016531875, 28.840041046282053 ], [ -82.013620085090281, 28.839999364533725 ], [ -82.013623468247857, 28.83996185711392 ], [ -82.013624746594019, 28.839933010237623 ], [ -82.013625742707319, 28.839754720597593 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dees Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012860715523246, 28.839705254085199 ], [ -82.012872307145159, 28.839709228605823 ], [ -82.01291048669556, 28.839724503924554 ], [ -82.012946370843238, 28.839740337066281 ], [ -82.01299348115856, 28.839763197246409 ], [ -82.01303466031861, 28.839787590069051 ], [ -82.013064233310018, 28.839806353546237 ], [ -82.013089912056074, 28.839824012048084 ], [ -82.013129920673151, 28.839854345737976 ], [ -82.013174317323248, 28.839892645479011 ], [ -82.013194693149515, 28.839912140644984 ], [ -82.013213600456581, 28.839931379688696 ], [ -82.013245301185336, 28.839960472538802 ], [ -82.013271511147963, 28.839980712456459 ], [ -82.013302934178668, 28.840001353409182 ], [ -82.013326229862258, 28.840014487920598 ], [ -82.013351004180052, 28.840026682987862 ], [ -82.013370923717559, 28.840035280105941 ], [ -82.013409236494653, 28.840049064658835 ], [ -82.013438379964072, 28.840057314412711 ], [ -82.013472738399017, 28.840064759711691 ], [ -82.01353318905322, 28.840076271027204 ], [ -82.013603788276981, 28.840089714990125 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dees Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012416013114489, 28.839622075415811 ], [ -82.012526177396325, 28.839637880551464 ], [ -82.012605067394048, 28.839649663165339 ], [ -82.012678614076975, 28.839659778743584 ], [ -82.012724804382344, 28.839667988340427 ], [ -82.012765544039596, 28.839676902207888 ], [ -82.012807883650822, 28.839688220567822 ], [ -82.012860715523246, 28.839705254085199 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Torch Lake Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014660492803415, 28.840067487127676 ], [ -82.014664671845054, 28.839999930072192 ], [ -82.014674422948843, 28.839927735483968 ], [ -82.014684172632997, 28.839845227525746 ], [ -82.014701731740786, 28.839767876343142 ], [ -82.014738802059213, 28.839613171058705 ], [ -82.014760263090523, 28.839518629609401 ], [ -82.014775873366418, 28.839473936716789 ], [ -82.014771965708462, 28.839449872595747 ], [ -82.014768058523885, 28.839429247166514 ], [ -82.014754390302315, 28.839400027376453 ], [ -82.014738770063516, 28.839379402262271 ], [ -82.014721198124619, 28.839362215138657 ], [ -82.014680200314459, 28.839346748432138 ], [ -82.014594299681278, 28.839310660503227 ], [ -82.014488875642769, 28.83926941782909 ], [ -82.014330739567455, 28.839202397880126 ], [ -82.014242888024995, 28.839166309020801 ], [ -82.014147226379436, 28.839126783091789 ], [ -82.014043754873128, 28.839085540775944 ], [ -82.013895382340905, 28.839027112019384 ], [ -82.013774342680634, 28.838978994728578 ], [ -82.013610352455146, 28.838915411384942 ], [ -82.013399505817858, 28.838831206415488 ], [ -82.013249182050586, 28.838774496023252 ], [ -82.013124237416477, 28.838724659613881 ], [ -82.013059814108558, 28.838700600089336 ], [ -82.013020769173323, 28.838686852494856 ], [ -82.012993439088419, 28.83868857387969 ], [ -82.012966109208762, 28.838692014154077 ], [ -82.01293096965037, 28.838704049605841 ], [ -82.012911449447344, 28.838716084539818 ], [ -82.012889978304898, 28.838738433017713 ], [ -82.012872411278551, 28.838759060440715 ], [ -82.012864605481568, 28.838783126577614 ], [ -82.012862656587487, 28.838810628172393 ], [ -82.012866573396025, 28.838915480419868 ], [ -82.01286269421017, 28.839126904859626 ], [ -82.012862717111361, 28.839319421999065 ], [ -82.012858837085545, 28.839523971748807 ], [ -82.012860715523246, 28.839705254085199 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Memory Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981779575182117, 28.847216672154016 ], [ -81.981832701553586, 28.847185104077248 ], [ -81.981896715700259, 28.847148507998558 ], [ -81.981956477056116, 28.847115716340827 ], [ -81.982025279110772, 28.84707954853944 ], [ -81.982085794263568, 28.847049092995931 ], [ -81.982150990009345, 28.847017656340565 ], [ -81.982214264770633, 28.846988470652011 ], [ -81.982276267353598, 28.846961100205093 ], [ -81.982337930453298, 28.846935054270141 ], [ -81.982394982156578, 28.846912516768793 ], [ -81.982442236350835, 28.846895954833652 ], [ -81.98251772184787, 28.846873333077184 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Memory Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982517700325133, 28.846873339390516 ], [ -81.982554291829814, 28.846863995373727 ], [ -81.982591427365094, 28.846855555528595 ], [ -81.982641796900836, 28.846845744983664 ], [ -81.982682308954637, 28.846839194980795 ], [ -81.982749092065021, 28.846830944802758 ], [ -81.982802441920398, 28.84682659172999 ], [ -81.982849062304695, 28.846824395187358 ], [ -81.982915003740544, 28.846823834272541 ], [ -81.982960540274519, 28.846825183616222 ], [ -81.983015704826826, 28.846828727674051 ], [ -81.983058999575306, 28.846832867532775 ], [ -81.983172162703241, 28.846844249977146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Image Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982096169061379, 28.847798632845226 ], [ -81.982084290658477, 28.847783243327608 ], [ -81.982060368900648, 28.847752245006617 ], [ -81.982037328589826, 28.847720892193308 ], [ -81.982019773702348, 28.847693014893927 ], [ -81.982010389043197, 28.847676130583519 ], [ -81.982003553595206, 28.847662759292902 ], [ -81.981971672476305, 28.847599262429121 ], [ -81.981942784952096, 28.847541726595328 ], [ -81.981915143235994, 28.847486674971936 ], [ -81.981893807264825, 28.84744418068761 ], [ -81.981882942584605, 28.84742254011201 ], [ -81.981865949434081, 28.847388695917193 ], [ -81.981846926789586, 28.847350810015701 ], [ -81.981809239086289, 28.84727575197677 ], [ -81.981779579281977, 28.847216669447675 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kettle Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982096169061379, 28.847798632845226 ], [ -81.982146944418631, 28.847768257181492 ], [ -81.982197676698064, 28.847737908561907 ], [ -81.98223804864422, 28.847714048835407 ], [ -81.982307820044127, 28.847674595725589 ], [ -81.982393245946454, 28.847629245363745 ], [ -81.982467695244651, 28.847592247961177 ], [ -81.982553754476939, 28.847552270812816 ], [ -81.98263139446594, 28.847518658285708 ], [ -81.982679051071372, 28.847499522944513 ], [ -81.982716290975802, 28.847487262715426 ], [ -81.982756661469594, 28.84747684719337 ], [ -81.982794720392761, 28.847469600260855 ], [ -81.982828079907335, 28.847465210317679 ], [ -81.982875758383543, 28.84746201956073 ], [ -81.982918152185391, 28.847462183788391 ], [ -81.982966552047117, 28.847465773921826 ], [ -81.983028440515213, 28.847471999582034 ], [ -81.983089903686334, 28.847478180947025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kettle Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981329372943009, 28.849060049231408 ], [ -81.981293738220913, 28.849022016573482 ], [ -81.981191869393342, 28.848913294286092 ], [ -81.981091109458106, 28.84880575409753 ], [ -81.981033411974849, 28.848744172577593 ], [ -81.98098608313154, 28.848693267687278 ], [ -81.980963123224939, 28.848660024375434 ], [ -81.980949300621177, 28.848628671789019 ], [ -81.980942369417505, 28.848601522221248 ], [ -81.980939679817453, 28.848564880096312 ], [ -81.980947569925632, 28.848516646650719 ], [ -81.980969936123202, 28.848468461280952 ], [ -81.981000367917787, 28.848431370904141 ], [ -81.981028353839363, 28.848408318249771 ], [ -81.981059478092078, 28.848389553791659 ], [ -81.981110384889689, 28.848360958789407 ], [ -81.981186325312635, 28.848318301241456 ], [ -81.981389838289871, 28.848203982264408 ], [ -81.981572718444355, 28.848101252965883 ], [ -81.981790416979379, 28.847978939097032 ], [ -81.982096169061379, 28.847798632845226 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reading Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980068313467171, 28.848894205834853 ], [ -81.980196067949691, 28.848982471211556 ], [ -81.980291568677444, 28.849062704808748 ], [ -81.980345586887623, 28.849106922128747 ], [ -81.980407589634851, 28.849157675094716 ], [ -81.980482099989743, 28.849218667418313 ], [ -81.980566654602484, 28.849287879360475 ], [ -81.980658392527573, 28.849362974418888 ], [ -81.980712466582517, 28.849400709433141 ], [ -81.980763591401328, 28.849420479092718 ], [ -81.980823029967311, 28.849429216528645 ], [ -81.980861582658974, 28.849427652937067 ], [ -81.980901480090083, 28.84941995655365 ], [ -81.980946836709279, 28.849402662206277 ], [ -81.980976627705431, 28.849385062457245 ], [ -81.981023593532257, 28.849344531230447 ], [ -81.981120719240849, 28.849254170915785 ], [ -81.981211005725939, 28.849170172630767 ], [ -81.981329372943009, 28.849060049231408 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reading Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981329372943009, 28.849060049231408 ], [ -81.981436265106197, 28.848963760995641 ], [ -81.981497365811776, 28.848915573691102 ], [ -81.981543667867825, 28.84888226334251 ], [ -81.981628535142107, 28.848827525806161 ], [ -81.981707788508984, 28.848782240005324 ], [ -81.981796554342054, 28.848732378054201 ], [ -81.981873197878386, 28.848689325007523 ], [ -81.982002342868498, 28.848616780804456 ], [ -81.982099739597246, 28.848562069016442 ], [ -81.982243115902818, 28.848480944652774 ], [ -81.982357995566176, 28.848413409619607 ], [ -81.982425227924665, 28.848373189158391 ], [ -81.982497727503059, 28.848329818500311 ], [ -81.982601251381553, 28.848268682730485 ], [ -81.98270182040892, 28.848214061147758 ], [ -81.982761117368909, 28.848184197964123 ], [ -81.982833408117415, 28.848150016181684 ], [ -81.982899236266107, 28.848120930660695 ], [ -81.982955372407005, 28.848097601487119 ], [ -81.983024075842422, 28.848070835197859 ], [ -81.983078754028256, 28.848050893044423 ], [ -81.983118430410173, 28.848037097288866 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reading Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983118430410173, 28.848037097288866 ], [ -81.983256536373361, 28.847994015104568 ], [ -81.983340860856316, 28.84797111338089 ], [ -81.983452087201414, 28.847944747374797 ], [ -81.983533132077625, 28.84792820908924 ], [ -81.983611084516838, 28.847914381805484 ], [ -81.983705284964458, 28.847900344416328 ], [ -81.983795831275813, 28.84788956474554 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reading Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983795831275813, 28.84788956474554 ], [ -81.983881514347672, 28.847880699120989 ], [ -81.983983844284325, 28.847870421524323 ], [ -81.984087563953068, 28.847866382559506 ], [ -81.984170730154943, 28.847869414259126 ], [ -81.984264687965336, 28.847879621414023 ], [ -81.984368406020323, 28.847899526728753 ], [ -81.984466745521487, 28.84792730395877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reading Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984466737322947, 28.847927302153199 ], [ -81.9845352397695, 28.847952204723349 ], [ -81.984615062213663, 28.847987584335783 ], [ -81.984692117096102, 28.84802638963972 ], [ -81.984838116919732, 28.848100106646562 ], [ -81.984932062335048, 28.848147539774512 ], [ -81.985020986210927, 28.848200854406553 ], [ -81.985080208295983, 28.848250988645489 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pensacola Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978550800143623, 28.848276267183319 ], [ -81.978482327265553, 28.848243179469907 ], [ -81.978367952784836, 28.848187911050431 ], [ -81.978257839331562, 28.848134702287414 ], [ -81.978189840483182, 28.848099903729729 ], [ -81.9781500372968, 28.848070598466279 ], [ -81.978110983818766, 28.848029213240757 ], [ -81.978089297758245, 28.847996335079152 ], [ -81.978074890671834, 28.847966104568755 ], [ -81.978042001599206, 28.847858129244891 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Calgary Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978550800143623, 28.848276267183319 ], [ -81.97856883644549, 28.848247334019877 ], [ -81.978589181615845, 28.848218972382618 ], [ -81.978624086363695, 28.848183230398753 ], [ -81.978663314508694, 28.848154541517935 ], [ -81.97870605755152, 28.848132394000508 ], [ -81.978785231273804, 28.848104163483374 ], [ -81.97889033167813, 28.848065998107568 ], [ -81.97899023610313, 28.848027340980224 ], [ -81.979113339453619, 28.847976414231972 ], [ -81.979221738538115, 28.847928451872683 ], [ -81.9793528715619, 28.847866358308742 ], [ -81.979470001360454, 28.847806954951896 ], [ -81.979608608895845, 28.847731602896253 ], [ -81.979767653450864, 28.847642263531235 ], [ -81.979936174518613, 28.847547604498686 ], [ -81.980088547059083, 28.847462013736653 ], [ -81.9802035494086, 28.847397414846096 ], [ -81.980396805965768, 28.84728885796126 ], [ -81.980534152956949, 28.847211707369528 ], [ -81.980632862110113, 28.847156258733431 ], [ -81.980736882458118, 28.847097827764884 ], [ -81.980783623245969, 28.847071941905945 ], [ -81.980798278599281, 28.847065963523924 ], [ -81.980813859056298, 28.847061741160637 ], [ -81.980825171701198, 28.847059466263239 ], [ -81.980840366290579, 28.84705805542756 ], [ -81.980855704068418, 28.847058195674919 ], [ -81.980867710906963, 28.847059402872635 ], [ -81.980879016596944, 28.847061448211544 ], [ -81.980886406400018, 28.84706328455767 ], [ -81.980897573452395, 28.84706685928413 ], [ -81.980908577373597, 28.847071412086258 ], [ -81.980916867577534, 28.847075603578162 ], [ -81.980925557284181, 28.847080801197855 ], [ -81.98093274767767, 28.847085826262916 ], [ -81.98094104047874, 28.847092601056175 ], [ -81.980950623050958, 28.847102114531626 ], [ -81.980960891741518, 28.847114479391376 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pensacola Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979198111300164, 28.84858871691835 ], [ -81.979193793983384, 28.84858668605937 ], [ -81.979100586076299, 28.848541929805023 ], [ -81.978871836955875, 28.848431395725889 ], [ -81.978550800143623, 28.848276267183319 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pensacola Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979613229305158, 28.848784031636335 ], [ -81.979198111300164, 28.84858871691835 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anna Maria Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985408654930126, 28.848601393958599 ], [ -81.985500192266898, 28.848471159672822 ], [ -81.985597539841649, 28.848344231998357 ], [ -81.985700542860741, 28.848220815729654 ], [ -81.985809040386073, 28.848101101223453 ], [ -81.986716111951282, 28.847140079799086 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anna Maria Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985193515998034, 28.848966305206176 ], [ -81.985235035485232, 28.848886434976528 ], [ -81.985318443022521, 28.848742308018476 ], [ -81.985408654930126, 28.848601393958599 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walnut Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988066278057119, 28.847343456456201 ], [ -81.987985033405266, 28.84759423972816 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walnut Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987022692637993, 28.846805832605661 ], [ -81.987065838195463, 28.846839947580619 ], [ -81.987121029586319, 28.846883583938144 ], [ -81.987198522438305, 28.846944855283134 ], [ -81.987281064281746, 28.847010117062695 ], [ -81.987371152434108, 28.847081339238454 ], [ -81.987419420225478, 28.847116764732657 ], [ -81.987503031969339, 28.847167886435997 ], [ -81.987612434035412, 28.847218840852722 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pigeon Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98735922849859, 28.846025886133603 ], [ -81.987112157871749, 28.845999627928666 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orient Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989057765395515, 28.843080805124679 ], [ -81.989057972360413, 28.843024389316419 ], [ -81.989055268202932, 28.842974265053169 ], [ -81.989046816899602, 28.842924639292409 ], [ -81.989032699362355, 28.842876023647644 ], [ -81.98901306926507, 28.842828914398535 ], [ -81.988988121273664, 28.842783797902086 ], [ -81.988753271269033, 28.842408679419812 ], [ -81.988717970873708, 28.842346177250725 ], [ -81.988688797022874, 28.842281272749236 ], [ -81.988665957689037, 28.84221442791803 ], [ -81.988649617799695, 28.84214612189923 ], [ -81.988639894114243, 28.84207684646238 ], [ -81.988636856250736, 28.842007092469721 ], [ -81.988637668526565, 28.841827835744841 ], [ -81.988641022962767, 28.841761274656612 ], [ -81.9886504687003, 28.841695170654102 ], [ -81.988665940093199, 28.84162995232623 ], [ -81.988687338703159, 28.84156604645376 ], [ -81.988714522028005, 28.841503869887624 ], [ -81.988969085953144, 28.840985116146523 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Castlewood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979664390492715, 28.846166565868245 ], [ -81.979033560735061, 28.845337021722365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ivawood Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976698503723654, 28.846022786735265 ], [ -81.976696224986725, 28.846297114505759 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kilt Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973489341321695, 28.84456946665814 ], [ -81.973649900299208, 28.844751886000928 ], [ -81.973669427800601, 28.844785835504695 ], [ -81.973684631565348, 28.844827939202641 ], [ -81.973698666878605, 28.844874722030475 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Figwood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973060504308506, 28.846292899083917 ], [ -81.973055307111437, 28.84603846843962 ], [ -81.973057945958402, 28.845979900271583 ], [ -81.973068217581925, 28.845921984198313 ], [ -81.973085987514906, 28.8458654943698 ], [ -81.973111019839934, 28.845811179650106 ], [ -81.973142979240734, 28.845759759106141 ], [ -81.973181446377012, 28.845711915695063 ], [ -81.973225905589416, 28.845668286336771 ], [ -81.97327577052414, 28.845629448384553 ], [ -81.973330379009553, 28.845595916917826 ], [ -81.973389003306025, 28.845568138428121 ], [ -81.973450868555148, 28.845546480897944 ], [ -81.973515150730023, 28.845531231995867 ], [ -81.973724622304445, 28.845495979478649 ], [ -81.973935311725683, 28.845466896843075 ], [ -81.974230189321929, 28.845430616140678 ], [ -81.974286253593888, 28.845426224548195 ], [ -81.974342535942625, 28.84542678844047 ], [ -81.974411410584651, 28.845430519100582 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rockingham Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966255478602193, 28.845766445186559 ], [ -81.966300987873453, 28.84576130895632 ], [ -81.966356769614507, 28.845757485433097 ], [ -81.966412709637154, 28.845758560546866 ], [ -81.966871526198759, 28.845787542897607 ], [ -81.967018819018151, 28.845793847474066 ], [ -81.967166282847003, 28.845794175055062 ], [ -81.967313610211491, 28.845788523760564 ], [ -81.96746048645943, 28.845776906146995 ], [ -81.967606596935667, 28.845759345599852 ], [ -81.967751633129723, 28.845735880846622 ], [ -81.967895290628007, 28.845706561444775 ], [ -81.968469190778222, 28.845577094683271 ], [ -81.968526206103675, 28.845566966138424 ], [ -81.968584105279376, 28.845562079273392 ], [ -81.968642268277378, 28.845562484471365 ], [ -81.968711012685787, 28.84556609890717 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nottingham Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965927858984557, 28.837800620679982 ], [ -81.9657487293412, 28.837471217623207 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jeffcoat Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967579369006671, 28.837050405354713 ], [ -81.967566257520474, 28.836977970364625 ], [ -81.967560352254253, 28.836931072413027 ], [ -81.967559546207212, 28.836883890563353 ], [ -81.967563845385854, 28.83683685612009 ], [ -81.967582361147834, 28.836710165798067 ], [ -81.967592402853171, 28.836640543471351 ], [ -81.967585263742038, 28.836590574668531 ], [ -81.967561469344616, 28.836534657442101 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vibrant Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966578063710941, 28.839786177382912 ], [ -81.966680738838207, 28.839753886764722 ], [ -81.966739557992895, 28.839740095142314 ], [ -81.966799725961636, 28.839731982045823 ], [ -81.96686053972897, 28.839729646553764 ], [ -81.967978513118879, 28.839740008249045 ], [ -81.968094664508001, 28.839741084374321 ], [ -81.968166056650475, 28.839729786385934 ], [ -81.968248861972683, 28.839704089335832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "View Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969196006996498, 28.837020584747776 ], [ -81.968948243666503, 28.837104123760749 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "View Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968238714279593, 28.841997684298338 ], [ -81.96848143989773, 28.842202573239103 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Swaying Palm Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968287322248727, 28.836027243107679 ], [ -81.968523598269343, 28.835444877190142 ], [ -81.968536627981265, 28.83539675025207 ], [ -81.968547054676421, 28.835342512275528 ], [ -81.968549155640758, 28.835291001828971 ], [ -81.968547638259878, 28.835239588886193 ], [ -81.968527513905912, 28.835012739513342 ], [ -81.968526227985109, 28.834955050170183 ], [ -81.968532571059669, 28.834897620674159 ], [ -81.968546461926891, 28.834841231501279 ], [ -81.96856770974432, 28.834786647761558 ], [ -81.968614583472728, 28.834685821324133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oakwood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970088360183595, 28.83647446278551 ], [ -81.97018453541321, 28.836466213625677 ], [ -81.970243582615439, 28.83646386267894 ], [ -81.970295045904535, 28.836464428091212 ], [ -81.970344227538405, 28.836467035804056 ], [ -81.97042608355099, 28.836478477071978 ], [ -81.971347001766787, 28.836586096484073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iron Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967403264890578, 28.834752569777091 ], [ -81.967425604117139, 28.834781060148003 ], [ -81.967534260413316, 28.834915887613139 ], [ -81.967580221669081, 28.834986946420528 ], [ -81.967611427042911, 28.835074046489392 ], [ -81.967623552113409, 28.835141276747059 ], [ -81.967621791229419, 28.835224547588844 ], [ -81.967613966876883, 28.835278786121897 ], [ -81.96759833162632, 28.835337607395239 ], [ -81.967565342398984, 28.835400243945202 ], [ -81.967521935801372, 28.835482262242518 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iron Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967403264890578, 28.834752569777091 ], [ -81.967160112784924, 28.834900362694075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iron Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968614583472728, 28.834685821324133 ], [ -81.968508048300109, 28.834634998266498 ], [ -81.968429043574844, 28.834576855761853 ], [ -81.968370251470901, 28.834515623958644 ], [ -81.968334086742502, 28.83446963563912 ], [ -81.968231488830199, 28.834338840850577 ], [ -81.968111892655429, 28.834186373928134 ], [ -81.968042930614217, 28.834101974616253 ], [ -81.967999753447444, 28.834061219725868 ], [ -81.967922160556725, 28.834006104499121 ], [ -81.967827559962572, 28.833946283228929 ], [ -81.96776488432441, 28.833906647866694 ], [ -81.967690489196087, 28.833873200390869 ], [ -81.967622336092276, 28.833861287954878 ], [ -81.967531550088879, 28.833865900295386 ], [ -81.967426701239148, 28.833875947374874 ], [ -81.967351160945981, 28.833896726329908 ], [ -81.967293959432112, 28.833928866154753 ], [ -81.967243072106356, 28.833977443031763 ], [ -81.967202352136411, 28.834054616506087 ], [ -81.967192151339731, 28.834118556959449 ], [ -81.967179926507043, 28.834264042079962 ], [ -81.967172266549412, 28.834355217505692 ], [ -81.967177399510021, 28.834432416602098 ], [ -81.967202797249129, 28.834493751760235 ], [ -81.967291554601672, 28.83461009259732 ], [ -81.967403264890578, 28.834752569777091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iron Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969425915389266, 28.834682908147261 ], [ -81.969275392648512, 28.834718321855707 ], [ -81.96917071546207, 28.834738036750565 ], [ -81.969070214829188, 28.834748055425003 ], [ -81.968949808594047, 28.834748950702135 ], [ -81.968850361751279, 28.834740584034304 ], [ -81.96872700104575, 28.834718390177386 ], [ -81.968614583472728, 28.834685821324133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iron Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970416220759162, 28.834297795832402 ], [ -81.970342989497283, 28.834372032390117 ], [ -81.970270488805781, 28.834428261712773 ], [ -81.97020267730008, 28.834469755546202 ], [ -81.970110696257152, 28.834512715631455 ], [ -81.969989330759887, 28.834550342767102 ], [ -81.969860291103032, 28.834580705396043 ], [ -81.969662141433602, 28.834627326328473 ], [ -81.969425915389266, 28.834682908147261 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iron Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971541445784098, 28.835709183334441 ], [ -81.97156675740473, 28.83557231946012 ], [ -81.971592893039471, 28.835431004668941 ], [ -81.971620162613988, 28.835283546296523 ], [ -81.971648045877131, 28.835169900220748 ], [ -81.971691975094288, 28.835056871091112 ], [ -81.971755657632642, 28.834899562644704 ], [ -81.971826471141583, 28.834715498627478 ], [ -81.971861494351472, 28.834594090540055 ], [ -81.971888068262999, 28.83446284010353 ], [ -81.971902574329832, 28.834341668618816 ], [ -81.971907683016838, 28.834215471114206 ], [ -81.971907749068976, 28.834010022854912 ], [ -81.971904066692687, 28.833936689721252 ], [ -81.971883410667573, 28.833822947686734 ], [ -81.97185160669676, 28.833709720332536 ], [ -81.971807054499862, 28.833614763831754 ], [ -81.971759314802441, 28.833567517979304 ], [ -81.971690496520878, 28.833528941552249 ], [ -81.971626362576899, 28.83351155948807 ], [ -81.971520856015559, 28.833512588336887 ], [ -81.97132240356207, 28.833541354979726 ], [ -81.970933251613673, 28.833597763889777 ], [ -81.970824192215588, 28.833613572130012 ], [ -81.970748350337885, 28.833634899721599 ], [ -81.970707405966991, 28.83365644963753 ], [ -81.970638838040628, 28.833719014223796 ], [ -81.970597492651748, 28.833806540769153 ], [ -81.970578062194264, 28.833910490497946 ], [ -81.970554636677861, 28.834031230392657 ], [ -81.970526586166784, 28.834117366663644 ], [ -81.970471972559608, 28.834222583605758 ], [ -81.970416220759162, 28.834297795832402 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iron Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971347001766787, 28.836586096484073 ], [ -81.971368139845467, 28.836527859752373 ], [ -81.971395679285934, 28.836447981633142 ], [ -81.971417639840439, 28.836368705061012 ], [ -81.971446137658276, 28.836224535917165 ], [ -81.971475017855127, 28.836068381494073 ], [ -81.971511038704463, 28.835873605300609 ], [ -81.971541445784098, 28.835709183334441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iron Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970088360183595, 28.83647446278551 ], [ -81.970093269147782, 28.836515425932248 ], [ -81.970090575792426, 28.836548511143306 ], [ -81.970076688849375, 28.836618223934458 ], [ -81.970054288207734, 28.836734411780093 ], [ -81.970007567727492, 28.836962219545232 ], [ -81.969986873068947, 28.837068040242507 ], [ -81.96998212493169, 28.837133334656894 ], [ -81.969989912804024, 28.837176432403997 ], [ -81.970015975731329, 28.837234682169196 ], [ -81.970059448943928, 28.837286567326768 ], [ -81.970127112269751, 28.837331824090345 ], [ -81.970225447336773, 28.83735950616575 ], [ -81.970317141984779, 28.837369671110704 ], [ -81.970449668515442, 28.837384366448827 ], [ -81.970635856416905, 28.837405008782085 ], [ -81.970759517082428, 28.837415462836368 ], [ -81.970873680722605, 28.837417484459401 ], [ -81.970964951063777, 28.837413665814601 ], [ -81.971013259056079, 28.837405274869987 ], [ -81.971074007413151, 28.837382502907243 ], [ -81.971122932570893, 28.837351047274939 ], [ -81.971162085742819, 28.837312093156083 ], [ -81.971193912378496, 28.837260525903176 ], [ -81.971213330194402, 28.837191004576155 ], [ -81.971240324691024, 28.837045037774985 ], [ -81.971283309647916, 28.836812617091201 ], [ -81.971320308891165, 28.836668943364145 ], [ -81.971347001766787, 28.836586096484073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iron Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969232962995392, 28.836218450901704 ], [ -81.969354424778842, 28.836229937980505 ], [ -81.96951655538416, 28.836244776335246 ], [ -81.969651574927084, 28.83625483516381 ], [ -81.969793405919148, 28.836264923361224 ], [ -81.969867584010117, 28.836274107471972 ], [ -81.96991530368858, 28.836285759743689 ], [ -81.969959135463171, 28.836304674704273 ], [ -81.970001174638341, 28.836331861605391 ], [ -81.970029794769317, 28.83635943980719 ], [ -81.970048128019229, 28.836381894211126 ], [ -81.970060647249412, 28.836403166195737 ], [ -81.970078527578707, 28.83644334452066 ], [ -81.970088360183595, 28.83647446278551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iron Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968287322248727, 28.836027243107679 ], [ -81.96837244997414, 28.836054479483238 ], [ -81.968459204131292, 28.836074553669736 ], [ -81.968593675465073, 28.836100368620162 ], [ -81.96874116175303, 28.836127140205484 ], [ -81.968894612390329, 28.836156302321459 ], [ -81.969046434663795, 28.836185940305871 ], [ -81.969167894427926, 28.836207454895675 ], [ -81.969232962995392, 28.836218450901704 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iron Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967521935801372, 28.835482262242518 ], [ -81.967594368533909, 28.835522579500935 ], [ -81.967641535707216, 28.835552575455687 ], [ -81.967676772083507, 28.835582187749534 ], [ -81.967732283312358, 28.835636442415012 ], [ -81.967776515700393, 28.835683052708983 ], [ -81.967825084784522, 28.835739597531198 ], [ -81.96787799232672, 28.835793851511859 ], [ -81.967935239512656, 28.835841994275977 ], [ -81.968011573527434, 28.835893197678267 ], [ -81.968117402483927, 28.835951282722867 ], [ -81.968205019061429, 28.835995613109258 ], [ -81.968287322248727, 28.836027243107679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iron Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967386202263114, 28.835416645127022 ], [ -81.967345868480436, 28.835388750413635 ], [ -81.967305094147363, 28.83537689951277 ], [ -81.967270393330637, 28.835368486969237 ], [ -81.967223545809034, 28.835355488633123 ], [ -81.967184505522013, 28.835346310754055 ], [ -81.96714026052382, 28.835337515071355 ], [ -81.967096883235698, 28.835329482938938 ], [ -81.967024285181623, 28.835323460280406 ], [ -81.966948805583598, 28.835314274285636 ], [ -81.966873915251597, 28.835304981921688 ], [ -81.966831876671577, 28.835295765304231 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974350223574461, 28.82419210678421 ], [ -81.975129898726252, 28.824298908272652 ], [ -81.975298840269645, 28.82432032329973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965352676682699, 28.822932721390568 ], [ -81.965636137366417, 28.822973107531023 ], [ -81.967569552385172, 28.823247010240955 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972650446853123, 28.826454923757215 ], [ -81.972658159852386, 28.826379324478143 ], [ -81.972666627351643, 28.826344947332178 ], [ -81.972681599949638, 28.826315730009107 ], [ -81.972701779073148, 28.826281356145419 ], [ -81.972729765183871, 28.826249847792877 ], [ -81.972768813015918, 28.82621547865239 ], [ -81.972847557745155, 28.826152467422759 ], [ -81.973118751039678, 28.825974950311327 ], [ -81.973264089178883, 28.825869935236096 ], [ -81.97341159982183, 28.825746776804419 ], [ -81.97359600034811, 28.825550093604658 ], [ -81.97373159697446, 28.825369635851157 ], [ -81.973795602423863, 28.825269379272001 ], [ -81.973895413373228, 28.825084139335839 ], [ -81.974115665073981, 28.824652154599033 ], [ -81.974350223574461, 28.82419210678421 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968025722458364, 28.831137175024217 ], [ -81.968281476751173, 28.831015194861493 ], [ -81.968548380031876, 28.830916898804013 ], [ -81.96888125040833, 28.830793213929319 ], [ -81.969363670207443, 28.830618379890765 ], [ -81.969821793843394, 28.830451940959332 ], [ -81.970163649956035, 28.830327492478318 ], [ -81.97032503512655, 28.830262591812819 ], [ -81.970499440352597, 28.830180887419228 ], [ -81.970704216174582, 28.83006863004859 ], [ -81.970884701447204, 28.829953312786667 ], [ -81.971090355197461, 28.829802093339495 ], [ -81.971309901497406, 28.829604276825751 ], [ -81.971541610595466, 28.829351455998697 ], [ -81.971732855303458, 28.82909175156222 ], [ -81.97183062280466, 28.82892293575091 ], [ -81.971913087043433, 28.828752591762449 ], [ -81.971978198135758, 28.828586826021425 ], [ -81.972010325039449, 28.828482170342198 ], [ -81.972039857492689, 28.82835077690515 ], [ -81.972069415657259, 28.828123888533856 ], [ -81.972071198251442, 28.82795046969591 ], [ -81.972058253632824, 28.827693014879934 ], [ -81.972059153499259, 28.827574602390587 ], [ -81.972067858122003, 28.827463829566288 ], [ -81.9721043520112, 28.827251458040703 ], [ -81.97213648021831, 28.82715138603908 ], [ -81.972167181848576, 28.827052078890407 ], [ -81.972199858523368, 28.826965758170196 ], [ -81.972241520674302, 28.82688555153867 ], [ -81.972281656665558, 28.826845069625534 ], [ -81.972374919847269, 28.826776293214394 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966424497086237, 28.835055004222493 ], [ -81.966406270542549, 28.834990975523567 ], [ -81.966401946251892, 28.834949720935505 ], [ -81.966402390391934, 28.834919926847103 ], [ -81.966405438569311, 28.83488631303906 ], [ -81.966410654565067, 28.834854228281991 ], [ -81.966419774259137, 28.834823673009577 ], [ -81.966432767804079, 28.83478238304739 ], [ -81.966459368286124, 28.834688327722166 ], [ -81.966485976383112, 28.834573741282284 ], [ -81.966519114945385, 28.834379895043526 ], [ -81.966532959239359, 28.834143987420397 ], [ -81.96654094943348, 28.83393298743923 ], [ -81.966549146230605, 28.833735793714627 ], [ -81.966563373549846, 28.833338062656711 ], [ -81.966572749097367, 28.83318403291025 ], [ -81.966594919985894, 28.833036786283365 ], [ -81.966627507899148, 28.832870632569712 ], [ -81.966686135233687, 28.832670110076165 ], [ -81.966759072238176, 28.832479329702469 ], [ -81.966847625895241, 28.832296574656546 ], [ -81.966965462184135, 28.832097211649963 ], [ -81.967118439657781, 28.831885824861118 ], [ -81.967242114849199, 28.831744331657372 ], [ -81.967354719911782, 28.831625754273912 ], [ -81.967507673404242, 28.831489426427645 ], [ -81.967626778050516, 28.831392051016511 ], [ -81.967777768349492, 28.831286088665045 ], [ -81.968025722458364, 28.831137175024217 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965098963989462, 28.847417679311622 ], [ -81.965116939233752, 28.847407182041692 ], [ -81.965148417502533, 28.847391627239404 ], [ -81.965182303629888, 28.84738067391223 ], [ -81.965216663211393, 28.847372827338678 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965216663211393, 28.847372827338678 ], [ -81.965266268518562, 28.847367683497087 ], [ -81.965296637463453, 28.847368646889237 ], [ -81.96532863188169, 28.847372474613401 ], [ -81.965354119620955, 28.847379165473299 ], [ -81.965390991332811, 28.847392067127526 ], [ -81.965422441526002, 28.84740830861514 ], [ -81.965447382061726, 28.847424072003321 ], [ -81.965492861056703, 28.847456742661105 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Coward Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962452537479493, 28.833647585605007 ], [ -81.962472416644417, 28.833461223083567 ], [ -81.962481825363497, 28.833419172750634 ], [ -81.962506810998974, 28.8333620663423 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Umbrella Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960498900905364, 28.834505257541888 ], [ -81.960715365429067, 28.83450388810752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vantage Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959003555405985, 28.833922571462747 ], [ -81.959186318776602, 28.833595619899423 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Victory Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963901453683221, 28.834071975200491 ], [ -81.964088947335512, 28.833715901688659 ], [ -81.964104524487027, 28.833678940103304 ], [ -81.964113157750248, 28.833640254156158 ], [ -81.964114627495604, 28.833600851667832 ], [ -81.964108893415499, 28.833561749528641 ], [ -81.964096103748517, 28.833523966482918 ], [ -81.964076592218106, 28.833488482524171 ], [ -81.9640508636936, 28.833456216333978 ], [ -81.964019585998869, 28.833428005429333 ], [ -81.963983571475453, 28.833404581795815 ], [ -81.963943752395281, 28.833386555639898 ], [ -81.963775856032242, 28.833321260999671 ], [ -81.963611320065723, 28.833249640979435 ], [ -81.963450451884071, 28.833171828314097 ], [ -81.963293551694889, 28.833087969272498 ], [ -81.963140911501128, 28.832998220949886 ], [ -81.962992819201318, 28.83290274675754 ], [ -81.962849546288169, 28.832801729953726 ], [ -81.96279098112106, 28.832753885117214 ], [ -81.962738276036134, 28.832701020535893 ], [ -81.962691981098374, 28.832643689484016 ], [ -81.962652579745765, 28.83258249394175 ], [ -81.962567656506579, 28.83242638186767 ], [ -81.962489119346316, 28.832267699038866 ], [ -81.962417069613593, 28.832106647611685 ], [ -81.962351596357891, 28.831943431542811 ], [ -81.962292784525459, 28.83177826200561 ], [ -81.962240711888555, 28.831611348365922 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wabash Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958790785059961, 28.835151210352155 ], [ -81.959181959849161, 28.835303266545274 ], [ -81.959318515529091, 28.835367682165288 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wolf Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961824261943988, 28.835720541726033 ], [ -81.961927735514621, 28.835462974900619 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcdowell Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962636139597663, 28.835824072353855 ], [ -81.962652832998955, 28.835779985736103 ], [ -81.962671867965739, 28.83573001852584 ], [ -81.962701611445411, 28.835688377169472 ], [ -81.962726596209492, 28.83567766919867 ], [ -81.962764667733282, 28.835672911958579 ], [ -81.962809877798307, 28.835678859855367 ], [ -81.962838669093145, 28.83569484136974 ], [ -81.96285722888743, 28.835712449618132 ], [ -81.962868174434988, 28.835737156920814 ], [ -81.962877692278781, 28.835774038663818 ], [ -81.962880071490488, 28.835806160566861 ], [ -81.962886000042857, 28.835822035598238 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Naragansett Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957452454295222, 28.836829735963413 ], [ -81.957423113481241, 28.836748101245565 ], [ -81.957409997056388, 28.83670492078198 ], [ -81.957401359118435, 28.83666087281377 ], [ -81.957397267146135, 28.836616320090684 ], [ -81.95737594001838, 28.836219627416035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jungle Plum Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958422514964596, 28.835718873998523 ], [ -81.958502155769011, 28.835791626391821 ], [ -81.958537541295982, 28.835821259161463 ], [ -81.958575713191479, 28.835848076678499 ], [ -81.958616383584527, 28.835871877637473 ], [ -81.958942604646367, 28.836045277534122 ], [ -81.959000532587638, 28.83607214697961 ], [ -81.95906161403046, 28.836092905129693 ], [ -81.959125024164706, 28.836107269307089 ], [ -81.959189899203778, 28.836115044347977 ], [ -81.959255360978034, 28.83611612531643 ], [ -81.959320522059869, 28.836110495701572 ], [ -81.959384500107461, 28.836098236444879 ], [ -81.959446422995242, 28.836079510602595 ], [ -81.959505454429419, 28.836054572376284 ], [ -81.959560791902206, 28.836023759893575 ], [ -81.95961168718901, 28.835987489800214 ], [ -81.959657447373232, 28.835946258162334 ], [ -81.960349393384902, 28.835245408966109 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Congaree Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965904588500592, 28.831114814922206 ], [ -81.966028250488023, 28.831115922696757 ], [ -81.966092345597062, 28.831119403749486 ], [ -81.966155696951134, 28.831128661161433 ], [ -81.966217634446565, 28.831143597315883 ], [ -81.966448654180141, 28.831210722864942 ], [ -81.966493132852548, 28.831220155866106 ], [ -81.96653876642209, 28.831223037480601 ], [ -81.96658431913238, 28.831219286192162 ], [ -81.966628557215856, 28.831209008166784 ], [ -81.96667027861676, 28.831192479213858 ], [ -81.966708356028121, 28.83117014750351 ], [ -81.966741759440694, 28.831142618232604 ], [ -81.966812442291115, 28.831075736776505 ], [ -81.966885130847018, 28.831010546702565 ], [ -81.966915475679585, 28.830979163778011 ], [ -81.966939410323391, 28.83094374144002 ], [ -81.966956255094544, 28.830905287403112 ], [ -81.96696553419936, 28.830864887931952 ], [ -81.96696698496136, 28.830823689797302 ], [ -81.966960562955592, 28.830782862379937 ], [ -81.966946451240688, 28.830743562482947 ], [ -81.966925053194359, 28.830706904553942 ], [ -81.966896973053963, 28.830673927295159 ], [ -81.966843602607426, 28.830625332054385 ], [ -81.966785893446314, 28.83058074557761 ], [ -81.96672423280198, 28.830540471130888 ], [ -81.966659034556713, 28.830504775894759 ], [ -81.966488973044278, 28.830419971651487 ], [ -81.96643663771448, 28.830390764404445 ], [ -81.96638784514235, 28.830357133103433 ], [ -81.966292287707716, 28.8302842576968 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Viking Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965319860195223, 28.832547916711786 ], [ -81.965423422657139, 28.832603266609098 ], [ -81.965645129925448, 28.832721758615595 ], [ -81.965731537098804, 28.832767938243766 ], [ -81.965801407578269, 28.83278334220028 ], [ -81.965876359955431, 28.832797619526321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vagabond Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964886054108078, 28.83234142366009 ], [ -81.965024272005692, 28.832395239969269 ], [ -81.965123535003471, 28.832443051097599 ], [ -81.965225674224371, 28.832497578775389 ], [ -81.965319860195223, 28.832547916711786 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Devito Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96542966739861, 28.83004812642967 ], [ -81.965895945345949, 28.830052128205541 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abel Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960498922832826, 28.828482708362856 ], [ -81.961027271488931, 28.828479153154056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Andrus Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967185000974169, 28.830266925180748 ], [ -81.967431466612439, 28.829945488183167 ], [ -81.967478025644766, 28.829884068504111 ], [ -81.967536084053663, 28.829830768753599 ], [ -81.96758843258246, 28.829804753405455 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Watch Hill Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963467397110449, 28.827499694859913 ], [ -81.963616422596843, 28.826476431472589 ], [ -81.963625574970592, 28.826425956991091 ], [ -81.963638959869897, 28.826376219035186 ], [ -81.963656504441943, 28.826327496397298 ], [ -81.963703618954241, 28.82621176907282 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Stephen Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965114148606929, 28.829156196975781 ], [ -81.965142360635454, 28.829083501695461 ], [ -81.965165039842176, 28.829033969939481 ], [ -81.965193645905146, 28.828986877751866 ], [ -81.965227849716925, 28.828942772744991 ], [ -81.965387303933696, 28.828759250976308 ], [ -81.965452283122787, 28.828678979383415 ], [ -81.96551095048909, 28.828595025622089 ], [ -81.96556303950338, 28.828507769503986 ], [ -81.965608314371693, 28.828417613405918 ], [ -81.96564656491617, 28.828324968733607 ], [ -81.965677615795641, 28.828230259533161 ], [ -81.965701328556307, 28.828133917077643 ], [ -81.965717590357571, 28.828036387082566 ], [ -81.965726328323868, 28.82793810895625 ], [ -81.965737676023863, 28.827712804484545 ], [ -81.965743108927327, 28.827643990398659 ], [ -81.965752453839656, 28.827575504846841 ], [ -81.965808341171211, 28.827237662224903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Delfin Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95984179433016, 28.825783211316892 ], [ -81.959947645091532, 28.825783765321397 ], [ -81.959993882045183, 28.825785685663099 ], [ -81.961671479454367, 28.825916482144848 ], [ -81.9617142573358, 28.825918373841773 ], [ -81.961757072139406, 28.825917391681969 ], [ -81.961915293660695, 28.82590844598656 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tuscaloosa Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959837465730203, 28.826423426093367 ], [ -81.959836845125352, 28.826515349514906 ], [ -81.959836726782413, 28.826532570042051 ], [ -81.959835811609935, 28.826668178651421 ], [ -81.95983484328633, 28.826811394606914 ], [ -81.959840378752006, 28.826879458308198 ], [ -81.959871872719319, 28.826952579979007 ], [ -81.959912584043323, 28.827000223192563 ], [ -81.959961376383163, 28.827035655149551 ], [ -81.960042824738466, 28.827067241231187 ], [ -81.960202186266699, 28.827083032874295 ], [ -81.960432200616069, 28.827100966465473 ], [ -81.960711521718366, 28.827122744380805 ], [ -81.960948180894079, 28.827141195154478 ], [ -81.961260352521236, 28.827165533199643 ], [ -81.961426375659016, 28.827178477630124 ], [ -81.961519292239217, 28.82718572182209 ], [ -81.961670504565134, 28.827197508562048 ], [ -81.961728742603469, 28.827202917348686 ], [ -81.96180677127559, 28.82721796748795 ], [ -81.961888130632971, 28.827237096961454 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tuscaloosa Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95984179433016, 28.825783211316892 ], [ -81.959839569681364, 28.82611234403856 ], [ -81.959837465730203, 28.826423426093367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tuscaloosa Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95984612287269, 28.825142995577128 ], [ -81.95984179433016, 28.825783211316892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Socastee Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962672881459824, 28.825944860886974 ], [ -81.962959485777063, 28.826194544946947 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carroll Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961226750703162, 28.845193800884392 ], [ -81.96167117357605, 28.845142862359264 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Turkey Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963508329521559, 28.845240997096642 ], [ -81.963580822095963, 28.845312463182523 ], [ -81.963609052120518, 28.845338279498261 ], [ -81.963639330416527, 28.845362230393039 ], [ -81.963753041574378, 28.845445834530658 ], [ -81.963858913697536, 28.845527372888572 ], [ -81.963960429006235, 28.8456131003039 ], [ -81.964057373376264, 28.845702832658638 ], [ -81.964149543954406, 28.845796384935547 ], [ -81.964190932474168, 28.845835826755557 ], [ -81.964236931134224, 28.84587108940547 ], [ -81.964286996915561, 28.845901758577725 ], [ -81.964340541686042, 28.845927472286938 ], [ -81.964396933222943, 28.845947928088901 ], [ -81.964455511609074, 28.845962887596617 ], [ -81.964515584111197, 28.845972170163066 ], [ -81.964576445671241, 28.845975670030523 ], [ -81.964872134763112, 28.845995975581342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mistletoe Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963473509701018, 28.847383629938932 ], [ -81.963313359548252, 28.847738464137116 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oyster Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962499300614624, 28.847260002775382 ], [ -81.962791674863993, 28.846913521856635 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anchorage Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959989305844488, 28.848827239212252 ], [ -81.960360831469401, 28.849038197420253 ], [ -81.960445779599837, 28.849085676515475 ], [ -81.960528334571379, 28.84913632284939 ], [ -81.961093979413945, 28.849499464652929 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepperidge Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963277974622358, 28.846273699574816 ], [ -81.963488531485638, 28.846115620592368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robertson Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014828728574102, 28.844033547789458 ], [ -82.014890014921036, 28.843964165726167 ], [ -82.014918553372439, 28.843931396367154 ], [ -82.014932759873403, 28.84391353642096 ], [ -82.014945771475922, 28.84389591751518 ], [ -82.014963754291927, 28.843870001375187 ], [ -82.014987717886498, 28.843829413097065 ], [ -82.01499657290627, 28.843812211491738 ], [ -82.015001398340559, 28.843802087102258 ], [ -82.015009745937888, 28.843783895719632 ], [ -82.015018908739265, 28.843761836062242 ], [ -82.015029696831917, 28.843732086776043 ], [ -82.015035062283815, 28.843714278286228 ], [ -82.015039777107901, 28.84369737397633 ], [ -82.015046227682816, 28.843671208208299 ], [ -82.015053977878651, 28.843638930077713 ], [ -82.015067419540102, 28.84358253990743 ], [ -82.015079935796763, 28.843533524384767 ], [ -82.015083221791286, 28.843522247910631 ], [ -82.015085232565482, 28.843515697853643 ], [ -82.015087553742234, 28.843508341101536 ], [ -82.015089257264222, 28.843503144536914 ], [ -82.015090539773595, 28.843499248240828 ], [ -82.015091952400141, 28.843495117331141 ], [ -82.015094098494231, 28.843488900210648 ], [ -82.015095737538829, 28.843484316318932 ], [ -82.015097668554517, 28.84347903310853 ], [ -82.015099302499735, 28.843474626971652 ], [ -82.015101864584835, 28.843467848572022 ], [ -82.01510570930661, 28.843458090619407 ], [ -82.015113847621294, 28.84343863872969 ], [ -82.01511719766053, 28.843431016589008 ], [ -82.015120241407715, 28.843424283252837 ], [ -82.015122011733908, 28.843420473525686 ], [ -82.015124675427728, 28.843414804049377 ], [ -82.015126378152161, 28.84341124787753 ], [ -82.015127880078978, 28.843408147391902 ], [ -82.015129161740973, 28.843405531468342 ], [ -82.01513049565601, 28.843402830722429 ], [ -82.015131909485973, 28.843399990110424 ], [ -82.015133223943792, 28.843397390424865 ], [ -82.015134821172126, 28.843394255641325 ], [ -82.015136567984825, 28.843390858270546 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robertson Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015136566960138, 28.843390859172956 ], [ -82.015141591244287, 28.843381238243644 ], [ -82.015148161627437, 28.843369281979442 ], [ -82.015157433826886, 28.843353144137193 ], [ -82.015158735017863, 28.843350947783808 ], [ -82.015160809756466, 28.843347481802283 ], [ -82.015163701076673, 28.843342692049585 ], [ -82.015166856748948, 28.843337569317395 ], [ -82.015169589283389, 28.84333320005641 ], [ -82.015173016490891, 28.843327814723782 ], [ -82.015176615837134, 28.843322231767452 ], [ -82.015180183437749, 28.843316816643465 ], [ -82.015183506171454, 28.84331183645736 ], [ -82.015186461091517, 28.843307500557501 ], [ -82.015190896558963, 28.843301091900614 ], [ -82.015193112761395, 28.843297930882979 ], [ -82.0151979191603, 28.843291193746424 ], [ -82.015203936645818, 28.843282831425537 ], [ -82.015210225648744, 28.843274084692624 ], [ -82.015213586341133, 28.843269413992822 ], [ -82.015216985969218, 28.843264697271099 ], [ -82.015219767763071, 28.84326084322079 ], [ -82.015223092592663, 28.843256215835314 ], [ -82.015225916392893, 28.843252290498121 ], [ -82.015231235096806, 28.843244903644536 ], [ -82.015234862183277, 28.84323986116522 ], [ -82.015238441114576, 28.843234895387027 ], [ -82.015242284389672, 28.843229542490775 ], [ -82.015246167626913, 28.843224156204776 ], [ -82.015249729138816, 28.843219213888123 ], [ -82.015253768111961, 28.843213592985407 ], [ -82.015257465894052, 28.84320845485335 ], [ -82.015260990520204, 28.843203570288001 ], [ -82.0152643798951, 28.843198847249997 ], [ -82.015267681157212, 28.843194268590473 ], [ -82.015271080780408, 28.843189551867365 ], [ -82.015273009075131, 28.84318685827423 ], [ -82.015275054177536, 28.843184026615539 ], [ -82.015278166910178, 28.843179694305793 ], [ -82.01528130013628, 28.843175345752243 ], [ -82.015284987669446, 28.843170220252791 ], [ -82.015289254101546, 28.843164295247099 ], [ -82.015292361711943, 28.843159983690626 ], [ -82.015295927316004, 28.843155022423847 ], [ -82.015299425296959, 28.843150160417988 ], [ -82.015302559545944, 28.843145810961509 ], [ -82.01530516305273, 28.843142200551441 ], [ -82.015308354677316, 28.843137760857939 ], [ -82.015311109823585, 28.843133934780067 ], [ -82.015314534032711, 28.843129180156271 ], [ -82.015315692853491, 28.843127568511356 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robertson Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015315692853491, 28.843127568511356 ], [ -82.015327764694248, 28.843110952131283 ], [ -82.015358959580468, 28.843067475618426 ], [ -82.015414611563131, 28.842990092265936 ], [ -82.015439665328572, 28.842957756279702 ], [ -82.015463103540327, 28.842929386102682 ], [ -82.015484349152501, 28.842904370937433 ], [ -82.015514945939159, 28.842871526331027 ], [ -82.015540463750554, 28.842845391827673 ], [ -82.015568982011118, 28.842818239187086 ], [ -82.015596348738441, 28.842793530113671 ], [ -82.015604777752642, 28.842786817826958 ], [ -82.015615632285133, 28.842778885353209 ], [ -82.015622560293338, 28.84277441095152 ], [ -82.015631452720072, 28.842769123353946 ], [ -82.015646578590633, 28.842761088444504 ], [ -82.015664130154931, 28.842753054166756 ], [ -82.015703236879105, 28.8427350686603 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Park Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013833115019295, 28.843352471929975 ], [ -82.013835601435034, 28.842595342639356 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Park Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013835601435034, 28.842595342639356 ], [ -82.013837724911866, 28.84194904002306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arango Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014247123251494, 28.842002952991859 ], [ -82.014289019699575, 28.841902072697248 ], [ -82.014316776399156, 28.841842480663381 ], [ -82.014321979076684, 28.841818033040511 ], [ -82.014325448004129, 28.841802753930857 ], [ -82.01432718237038, 28.841790530206733 ], [ -82.014330648442666, 28.841761499942773 ], [ -82.014328900262129, 28.841669825755829 ], [ -82.014325395204395, 28.84139785912485 ], [ -82.014320141983617, 28.841049495243755 ], [ -82.014316660089705, 28.840966988659154 ], [ -82.014318387734377, 28.840911983860515 ], [ -82.014321852774287, 28.84086767392915 ], [ -82.014333994807572, 28.84083253146142 ], [ -82.014369202720374, 28.840767948898439 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Halloy Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01449960313613, 28.842956504908848 ], [ -82.014529185610471, 28.84292302901483 ], [ -82.014561437227272, 28.842886299122643 ], [ -82.014566961014935, 28.842879619682066 ], [ -82.014576977646627, 28.842866305119252 ], [ -82.014586386402428, 28.842851751751301 ], [ -82.014593173054365, 28.842839840606185 ], [ -82.014605481891522, 28.842817042563155 ], [ -82.014621676954036, 28.842788144525688 ], [ -82.014656687386534, 28.842729814008248 ], [ -82.01467995046049, 28.842693496467721 ], [ -82.014703355120403, 28.842658498080556 ], [ -82.014718285539217, 28.842637145249888 ], [ -82.014735744782243, 28.842613111401672 ], [ -82.014753252244745, 28.842589530504018 ], [ -82.014767199274843, 28.84257135118246 ], [ -82.014777357307338, 28.842558283821543 ], [ -82.014804458528246, 28.842524643904447 ], [ -82.014858804981202, 28.842461653604101 ], [ -82.014891618087248, 28.842426076719882 ], [ -82.014907859741939, 28.842409024123135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Halloy Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014907859741939, 28.842409024123135 ], [ -82.014916942236397, 28.842399774523976 ], [ -82.01494835087793, 28.842368279808809 ], [ -82.014987015305678, 28.842331341604854 ], [ -82.015005364979714, 28.842314645184178 ], [ -82.015027740588351, 28.842294569195374 ], [ -82.015065891115, 28.842261916979623 ], [ -82.015096224565809, 28.842237033544716 ], [ -82.015125996579386, 28.842213312333907 ], [ -82.015178239049547, 28.842174023918627 ], [ -82.015212363226198, 28.842149659779416 ], [ -82.015258564573259, 28.842118202199256 ], [ -82.015293674790485, 28.842095444038829 ], [ -82.015339130518086, 28.842067328655396 ], [ -82.015365251242613, 28.842051784490288 ], [ -82.015400734798405, 28.842031541892304 ], [ -82.015431208631298, 28.842014720476314 ], [ -82.015458630970372, 28.842000273355936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenster Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014247123251494, 28.842002952991859 ], [ -82.01421632700017, 28.841993073113457 ], [ -82.014188387109826, 28.841985207793474 ], [ -82.01415359229253, 28.841976500396516 ], [ -82.014112984882772, 28.841967872068881 ], [ -82.014080187802193, 28.841962298165626 ], [ -82.014050078898208, 28.841957870820416 ], [ -82.014012509546774, 28.841953595791832 ], [ -82.013980404634964, 28.841951307094739 ], [ -82.013959580758339, 28.841950162309711 ], [ -82.013908997007832, 28.841949175633179 ], [ -82.013837724911866, 28.84194904002306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenster Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014907859741939, 28.842409024123135 ], [ -82.0146661548373, 28.842243450813349 ], [ -82.014526789641906, 28.842148040816529 ], [ -82.014462494565876, 28.842104889156101 ], [ -82.014429869735395, 28.84208510759964 ], [ -82.014409826373765, 28.842073726135567 ], [ -82.014369040990829, 28.842052721864878 ], [ -82.014337111662911, 28.842037905609011 ], [ -82.014296848463815, 28.842020949011395 ], [ -82.014267607676103, 28.842009874333996 ], [ -82.014247123251494, 28.842002952991859 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Torch Lake Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016444731748479, 28.843160637382415 ], [ -82.016399718160116, 28.843159312626298 ], [ -82.016359371023455, 28.843154733596549 ], [ -82.016315336190203, 28.843147098869313 ], [ -82.016271082328302, 28.843134498760271 ], [ -82.016230734326498, 28.843117314470192 ], [ -82.016179971436088, 28.843087527043206 ], [ -82.016091458822132, 28.843022218294678 ], [ -82.015985587085169, 28.842948996421388 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Torch Lake Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015703236879105, 28.8427350686603 ], [ -82.015671208926534, 28.842679123795136 ], [ -82.015653851057991, 28.842637871360118 ], [ -82.015638225688846, 28.842593563520765 ], [ -82.015629541409908, 28.842543143589186 ], [ -82.015617387763925, 28.842489667025344 ], [ -82.015605231943496, 28.842442304489758 ], [ -82.015591342902397, 28.842385773806445 ], [ -82.015580921777229, 28.842329241836616 ], [ -82.01557571065301, 28.842286459542233 ], [ -82.015549667510356, 28.842200901182814 ], [ -82.015518420298861, 28.842113813076487 ], [ -82.015487175051049, 28.842054228170955 ], [ -82.015458630970372, 28.842000273355936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Torch Lake Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015458630970372, 28.842000273355936 ], [ -82.015417743543139, 28.841933531488081 ], [ -82.015376088381132, 28.841872419181978 ], [ -82.015329225075419, 28.841809779821631 ], [ -82.015289307742535, 28.841760892652658 ], [ -82.01524938758871, 28.841713530370139 ], [ -82.015199058116764, 28.841669226208865 ], [ -82.015146992268697, 28.841621866101402 ], [ -82.015101869440997, 28.841582145966374 ], [ -82.015061949654154, 28.841536313036723 ], [ -82.015016823312294, 28.841478257097599 ], [ -82.01498731806349, 28.84142936692723 ], [ -82.014950867206707, 28.841368253933616 ], [ -82.014919620175021, 28.841291863425603 ], [ -82.014891845363351, 28.841216998345217 ], [ -82.014865806993882, 28.841145189189163 ], [ -82.014836291676133, 28.841044350474423 ], [ -82.014802706124328, 28.840944492984303 ], [ -82.014769918867245, 28.840844109356187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Torch Lake Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014769918867245, 28.840844109356187 ], [ -82.014743909308734, 28.840764383329045 ], [ -82.014728245744465, 28.840713179945755 ], [ -82.014718173648902, 28.84066394571574 ], [ -82.014710340129938, 28.840625542543997 ], [ -82.014701386619876, 28.840580246765509 ], [ -82.014696906617345, 28.840530027536172 ], [ -82.014691307295578, 28.840477837784004 ], [ -82.014684588522556, 28.840422694896684 ], [ -82.014680110364893, 28.840378383068632 ], [ -82.014673393787604, 28.840324222791935 ], [ -82.014667792975715, 28.840275973411597 ], [ -82.014664432054246, 28.840225753160798 ], [ -82.014662190416985, 28.840192273294182 ], [ -82.014659948733566, 28.840150915385571 ], [ -82.014660492803415, 28.840067487127676 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cluster Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985080208295983, 28.848250988645489 ], [ -81.985200148031041, 28.848095912729971 ], [ -81.985260176081852, 28.848022616929097 ], [ -81.985319869442037, 28.847952831034373 ], [ -81.985377223235332, 28.847888465008754 ], [ -81.985437583975056, 28.847823364808953 ], [ -81.985479416777693, 28.847777035045706 ], [ -81.985511430359892, 28.847738605698364 ], [ -81.985549054425221, 28.847689552296401 ], [ -81.985595715172522, 28.84762156677008 ], [ -81.985638788424041, 28.847549618814963 ], [ -81.985670598013996, 28.847488736421322 ], [ -81.985711232784794, 28.847396732621672 ], [ -81.9857400761083, 28.847315822305799 ], [ -81.985771745058258, 28.847204292524832 ], [ -81.985791484976176, 28.847127992009554 ], [ -81.985814982860987, 28.847008244945375 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ewing Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984466745521487, 28.84792730395877 ], [ -81.984526193573032, 28.84780894093474 ], [ -81.984647708921472, 28.847564489557872 ], [ -81.984706078139936, 28.847454867865586 ], [ -81.984744270228219, 28.84737847848502 ], [ -81.984823841126229, 28.847207559185854 ], [ -81.984867524038322, 28.847097356467959 ], [ -81.98492481735552, 28.846941517526577 ], [ -81.985066166306737, 28.84658656614333 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gentle Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983795831275813, 28.84788956474554 ], [ -81.983787750621332, 28.847829475596463 ], [ -81.98378494839838, 28.847753654478232 ], [ -81.983789984900071, 28.847705925804974 ], [ -81.983808117089623, 28.847631219766338 ], [ -81.983863597147462, 28.84743716840584 ], [ -81.983919849132604, 28.847240416507404 ], [ -81.983981366361462, 28.847025240118963 ], [ -81.984037745053271, 28.84682804784887 ], [ -81.984081282481313, 28.846675771726137 ], [ -81.984120310097069, 28.846539260144567 ], [ -81.984142527317374, 28.846461548048719 ], [ -81.984191875379537, 28.846414561785704 ], [ -81.984252551591808, 28.846376490723078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Loyal Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983118430410173, 28.848037097288866 ], [ -81.983086281704331, 28.847963226845359 ], [ -81.983066822184895, 28.847905191667355 ], [ -81.983054722648234, 28.847837901563448 ], [ -81.983053028949499, 28.847773673399153 ], [ -81.983058106204211, 28.847723226110539 ], [ -81.983073722259832, 28.847602871285421 ], [ -81.983089903686334, 28.847478180947025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Loyal Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983089903686334, 28.847478180947025 ], [ -81.983095418231471, 28.84743568122224 ], [ -81.983124597836294, 28.847210807665039 ], [ -81.983172162703241, 28.846844249977146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Loyal Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983172162703241, 28.846844249977146 ], [ -81.983218478431596, 28.846487320605409 ], [ -81.983246095700736, 28.846399979922349 ], [ -81.983296064788107, 28.846280055236125 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Keeley Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982517700325133, 28.846873339390516 ], [ -81.982376605148403, 28.84634355975443 ], [ -81.982282362918539, 28.845989694366903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Image Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981779579281977, 28.847216669447675 ], [ -81.981742344494734, 28.847142518267948 ], [ -81.981720599914141, 28.847099108057652 ], [ -81.981700249655745, 28.847052797120018 ], [ -81.981684692264466, 28.847008392505689 ], [ -81.981675040365033, 28.846973575701131 ], [ -81.981666832141173, 28.846934889102378 ], [ -81.9816623434224, 28.846905719635846 ], [ -81.981657869919331, 28.846871709298501 ], [ -81.981642001684961, 28.846777773439875 ], [ -81.981637279878257, 28.846705379864005 ], [ -81.981638067120684, 28.846584198444244 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reading Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985080208295983, 28.848250988645489 ], [ -81.985113014903916, 28.84828628329868 ], [ -81.985142957518619, 28.84832548551244 ], [ -81.985175376036281, 28.848379982080697 ], [ -81.985194188691182, 28.848412585385272 ], [ -81.98523343087318, 28.848466303102875 ], [ -81.985272237263359, 28.848507671801077 ], [ -81.985325730426453, 28.848552484399846 ], [ -81.985364586221465, 28.848578563501881 ], [ -81.985408654930126, 28.848601393958599 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trappers Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979198111300164, 28.84858871691835 ], [ -81.979212471792579, 28.848592900433736 ], [ -81.979228406666323, 28.848596104287576 ], [ -81.979241536885681, 28.848597416471591 ], [ -81.979255554871031, 28.848597546771067 ], [ -81.979269677659133, 28.848596351597937 ], [ -81.979283619314558, 28.84859382820094 ], [ -81.979298780923244, 28.848589453459308 ], [ -81.979353540471649, 28.848567294060469 ], [ -81.979465213367973, 28.848519754293882 ], [ -81.979578527654866, 28.848468711933066 ], [ -81.97969814691217, 28.848411652954219 ], [ -81.979777704104762, 28.848371833598303 ], [ -81.979872680048558, 28.848322273413938 ], [ -81.980001590953023, 28.848251399451744 ], [ -81.980114025657969, 28.848188244854015 ], [ -81.980238343665121, 28.848118413047423 ], [ -81.980345501574988, 28.848058220649243 ], [ -81.980461527332665, 28.847993046023756 ], [ -81.980569131869188, 28.847932602670721 ], [ -81.980665638019261, 28.847878393465706 ], [ -81.980780430353917, 28.847813912259074 ], [ -81.980899709809719, 28.847746909649008 ], [ -81.9810236854604, 28.847677268353387 ], [ -81.981101686612377, 28.847633426412791 ], [ -81.981106625918912, 28.84763038453406 ], [ -81.981109655723145, 28.847628476584411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trappers Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981109655723145, 28.847628476584411 ], [ -81.981468477849063, 28.847429810980948 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodmill Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981109655723145, 28.847628476584411 ], [ -81.981116343783711, 28.847623464315681 ], [ -81.981122042814334, 28.847618725305871 ], [ -81.981127824943798, 28.847613515303756 ], [ -81.981133830762943, 28.847606818332508 ], [ -81.981140747039518, 28.847597983926207 ], [ -81.981146918412534, 28.847588265154673 ], [ -81.981151060361412, 28.847579762405605 ], [ -81.981154518636131, 28.847571802748401 ], [ -81.981157271954757, 28.84756308054321 ], [ -81.981159088425628, 28.847555099901676 ], [ -81.981160204833145, 28.847547619941409 ], [ -81.981160783272841, 28.847539717626173 ], [ -81.981160742757169, 28.847531527388174 ], [ -81.981159217209353, 28.847517904156174 ], [ -81.981156737999683, 28.84750729900372 ], [ -81.981151156356091, 28.847492315425168 ], [ -81.981122931147254, 28.847435951604044 ], [ -81.981055245410474, 28.847301144726938 ], [ -81.980982258235244, 28.847155772859939 ], [ -81.980966914796269, 28.847125279047827 ], [ -81.980962430479494, 28.847117593468724 ], [ -81.980960891741518, 28.847114479391376 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodmill Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980960891741518, 28.847114479391376 ], [ -81.980764033385071, 28.846716178719429 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Viola Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9846743461123, 28.844583287053304 ], [ -81.984733421656699, 28.844501997805171 ], [ -81.984785663456051, 28.844435615660377 ], [ -81.984843295199326, 28.844372786487025 ], [ -81.984906004263593, 28.844313849510208 ], [ -81.985076180356117, 28.844165241597896 ], [ -81.98511084495992, 28.844135506344358 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Viola Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98511084495992, 28.844135506344358 ], [ -81.985212376932381, 28.844054190927814 ], [ -81.985318454151994, 28.843977507473149 ], [ -81.985428803994949, 28.843905650838288 ], [ -81.985543146667851, 28.843838805955421 ], [ -81.985661188034712, 28.843777143318992 ], [ -81.985782621665706, 28.843720823497318 ], [ -81.985907138061634, 28.84366998901319 ], [ -81.986034418503763, 28.843624770659325 ], [ -81.986401085931902, 28.843503919279513 ], [ -81.986419500695376, 28.843496390503287 ], [ -81.986436395982921, 28.84348647767596 ], [ -81.986451377211992, 28.84347441084622 ], [ -81.986464093860107, 28.843460475108071 ], [ -81.986474245615838, 28.843444993457428 ], [ -81.986481599799774, 28.843428333110172 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Waldo Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98648018714556, 28.843763776286398 ], [ -81.986481599799774, 28.843428333110172 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Waldo Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986481599799774, 28.843428333110172 ], [ -81.986485821120908, 28.843411850199647 ], [ -81.986487297029811, 28.843395003381421 ], [ -81.986489316670102, 28.843018451154499 ], [ -81.986488855849359, 28.843008157592884 ], [ -81.986487366116123, 28.842997937916188 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Waldo Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986487366116123, 28.842997937916188 ], [ -81.986489008796795, 28.842550549133591 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zest Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984655785568734, 28.843832901535755 ], [ -81.984646120164953, 28.84381513130171 ], [ -81.984639982342188, 28.84379618396235 ], [ -81.98463754623549, 28.843776599117529 ], [ -81.984638881446585, 28.843756931693985 ], [ -81.98464394689681, 28.843737741116968 ], [ -81.984652603127969, 28.84371957326557 ], [ -81.984664602057151, 28.843702942425427 ], [ -81.984679604400043, 28.843688322267663 ], [ -81.984803623975083, 28.843591171541551 ], [ -81.984932922324333, 28.843499504612758 ], [ -81.985067178656621, 28.84341354610488 ], [ -81.985206076286175, 28.843333504401034 ], [ -81.985349274962417, 28.843259573445764 ], [ -81.985496428291796, 28.843191930942378 ], [ -81.98564718066298, 28.843130739255113 ], [ -81.98580116724618, 28.843076149018504 ], [ -81.986310022562421, 28.842908434476865 ], [ -81.986330393253368, 28.842903310560118 ], [ -81.986351430698036, 28.842901102963818 ], [ -81.98637259891855, 28.842901870282883 ], [ -81.986393358872917, 28.842905594416127 ], [ -81.986413181777394, 28.842912179665426 ], [ -81.986431562428379, 28.84292145544385 ], [ -81.986448033547717, 28.842933188909385 ], [ -81.986462172957019, 28.84294707955176 ], [ -81.986473624071664, 28.842962773631335 ], [ -81.986482095899859, 28.842979872299715 ], [ -81.986487366116123, 28.842997937916188 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leyton Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98511084495992, 28.844135506344358 ], [ -81.985070007488744, 28.844097935155141 ], [ -81.985020951404309, 28.84405787266596 ], [ -81.984966836080758, 28.844023224331249 ], [ -81.984698708027508, 28.843872164915371 ], [ -81.984682116951021, 28.84386111517253 ], [ -81.984667692652479, 28.843847919088894 ], [ -81.984655785568734, 28.843832901535755 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leyton Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984655785568734, 28.843832901535755 ], [ -81.984292008290311, 28.843645200250869 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quartz Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985841840621262, 28.846508541594808 ], [ -81.986107066591089, 28.846147926669854 ], [ -81.986107059417719, 28.846147923059892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quartz Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986107066591089, 28.846147926669854 ], [ -81.986238516810459, 28.845967035092155 ], [ -81.986354282746063, 28.845807741187606 ], [ -81.986429518114932, 28.845704220033937 ], [ -81.98649764689965, 28.845610471900322 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quartz Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98649764689965, 28.845610471900322 ], [ -81.986534536879773, 28.845562230208802 ], [ -81.986578123685021, 28.845516969498604 ], [ -81.986629739539126, 28.845475050819342 ], [ -81.986683276882928, 28.845441120430312 ], [ -81.986807549109713, 28.845388877506462 ], [ -81.986951395802507, 28.845341467332364 ], [ -81.987079317951853, 28.845299304179154 ], [ -81.987217873005335, 28.845253635561082 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quartz Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987217873005335, 28.845253635561082 ], [ -81.987357537544781, 28.845210210039319 ], [ -81.987462135300817, 28.845185324379084 ], [ -81.987582496309997, 28.84516494532275 ], [ -81.98768210566827, 28.84515245040124 ], [ -81.98784387273993, 28.845122169411187 ], [ -81.987943858091199, 28.845101434468162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neuport Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986107059417719, 28.846147923059892 ], [ -81.985985459595398, 28.846081938223541 ], [ -81.98579620838369, 28.845988404098811 ], [ -81.985600299324588, 28.845901083173267 ], [ -81.985362260768312, 28.84580691065074 ], [ -81.985209155768487, 28.845752871800059 ], [ -81.985087772395573, 28.845699469739433 ], [ -81.985028466827742, 28.845641383450353 ], [ -81.984989791823324, 28.845557665832974 ], [ -81.984984568036225, 28.845496542110109 ], [ -81.984994550589406, 28.845442764869386 ], [ -81.985021780415067, 28.845371809648817 ], [ -81.985055148572201, 28.845296174845593 ], [ -81.985105597765497, 28.845197264238081 ], [ -81.985173205432559, 28.845084661211246 ], [ -81.985219341494968, 28.845017255010852 ], [ -81.985284767928391, 28.844927181373411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neuport Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985284767928391, 28.844927181373411 ], [ -81.985339649819309, 28.844851662553804 ], [ -81.985397669012443, 28.844773318030157 ], [ -81.985459291090848, 28.844704239658199 ], [ -81.985536954409284, 28.844629199652012 ], [ -81.98563283985392, 28.844547348245602 ], [ -81.985729662580852, 28.844474796041091 ], [ -81.985815872094534, 28.844417490717081 ], [ -81.985881051824236, 28.844378214808831 ], [ -81.98595260691522, 28.844338753664648 ], [ -81.986033123043853, 28.8442985787933 ], [ -81.986195779930071, 28.844229803862071 ], [ -81.986345108564947, 28.844178702654101 ], [ -81.98647350814845, 28.844136383115043 ], [ -81.986619970762874, 28.844088109140195 ], [ -81.986815370145848, 28.844024043169615 ], [ -81.986950361711038, 28.843983770258113 ], [ -81.987099512854343, 28.843944734741427 ], [ -81.987223248197481, 28.843916561300869 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neuport Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987223248197481, 28.843916561300869 ], [ -81.987314950731133, 28.843898085401779 ], [ -81.987367675460547, 28.843888375271458 ], [ -81.9874247084975, 28.843878609583861 ], [ -81.987497979867825, 28.843867248312964 ], [ -81.987556422723998, 28.843859918929667 ], [ -81.987609130445222, 28.843854878139993 ], [ -81.987676865915532, 28.843850559662624 ], [ -81.987773275419627, 28.843847875154655 ], [ -81.987904427095089, 28.84384494469845 ], [ -81.988022682497089, 28.843842302596759 ], [ -81.988132238243139, 28.843839853612781 ], [ -81.988235263866301, 28.843837551941679 ], [ -81.988358989710974, 28.843834787314353 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nugget Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985887412853117, 28.845266693200859 ], [ -81.985939864810888, 28.845197277084438 ], [ -81.985997969138239, 28.845131444598675 ], [ -81.986061415259883, 28.8450695539196 ], [ -81.986129858787763, 28.845011937052785 ], [ -81.986202927668799, 28.844958907954883 ], [ -81.986280230385091, 28.844910751707122 ], [ -81.986361342630403, 28.844867729025506 ], [ -81.986445828831393, 28.844830076263335 ], [ -81.986533229850934, 28.844797994582393 ], [ -81.987019584320649, 28.844637695706645 ], [ -81.987162124818667, 28.844594036063004 ], [ -81.98730682887566, 28.844556298311964 ], [ -81.987453380859591, 28.844524564526893 ], [ -81.987601458992373, 28.844498905051825 ], [ -81.987670600380795, 28.844490666187131 ], [ -81.987740239283085, 28.844486872996985 ], [ -81.987864146275186, 28.844484105231611 ], [ -81.987908626199314, 28.844486254959126 ], [ -81.987952146156019, 28.844494632304787 ], [ -81.98799358707673, 28.844509021517457 ], [ -81.988031885249569, 28.84452905436245 ], [ -81.988066056913297, 28.844554216439551 ], [ -81.988081971756046, 28.844567986158946 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barrel Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987612434035739, 28.847218838145796 ], [ -81.987740981778344, 28.847003112234365 ], [ -81.987817534639845, 28.846873502968897 ], [ -81.987858443069129, 28.846797805918147 ], [ -81.987907319507215, 28.84669683868692 ], [ -81.987950034519571, 28.846595879902484 ], [ -81.987990446870526, 28.846484309773903 ], [ -81.988032654411427, 28.846340006827937 ], [ -81.98805683259458, 28.846233467378379 ], [ -81.988083049921997, 28.846067799070532 ], [ -81.988089173137254, 28.846008120176009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barrel Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988089173137254, 28.846008120176009 ], [ -81.988097087985324, 28.845841668825269 ], [ -81.988094387882441, 28.845725379341733 ], [ -81.988082494607056, 28.845630461062957 ], [ -81.988066712250884, 28.845560643694785 ], [ -81.988034131940552, 28.845438870014668 ], [ -81.987990248776072, 28.845274832176276 ], [ -81.987956587933482, 28.845149012432937 ], [ -81.987943858091199, 28.845101434468162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barrel Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987943858091199, 28.845101434468162 ], [ -81.987927110688616, 28.845038839954089 ], [ -81.987918256812435, 28.844999377681425 ], [ -81.987912975669659, 28.844958281655018 ], [ -81.987911611944099, 28.844929840831689 ], [ -81.987912380439894, 28.844896442929894 ], [ -81.987916944826495, 28.844854847015498 ], [ -81.987925356275198, 28.844814205187241 ], [ -81.987937932613846, 28.844773359813967 ], [ -81.987949573935992, 28.844744262385195 ], [ -81.987963682009578, 28.844715036148248 ], [ -81.987981458103391, 28.84468414638738 ], [ -81.987999067608897, 28.844657965746649 ], [ -81.988022894168637, 28.844627485269609 ], [ -81.988046743790349, 28.844601205929383 ], [ -81.988081971756046, 28.844567986158946 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barrel Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988081971756046, 28.844567986158946 ], [ -81.988123335737896, 28.844530927611952 ], [ -81.988159374178224, 28.844498639073475 ], [ -81.988197010454172, 28.844464918706343 ], [ -81.988224651819721, 28.844438646888264 ], [ -81.988250295002757, 28.844410431319925 ], [ -81.988276047391764, 28.844377121333515 ], [ -81.988299220616042, 28.844341078931286 ], [ -81.988317190598053, 28.844307064453826 ], [ -81.988329917061762, 28.844277807377047 ], [ -81.988341609958113, 28.844244386966022 ], [ -81.98835223800161, 28.844202589446613 ], [ -81.98835723945578, 28.844172732559599 ], [ -81.988360771771852, 28.844130040232955 ], [ -81.988360585719832, 28.844054605582247 ], [ -81.988359857321939, 28.843954315945901 ], [ -81.988359246960457, 28.843870290394971 ], [ -81.988358989710974, 28.843834787314353 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barrel Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988358989710974, 28.843834787314353 ], [ -81.98835765499949, 28.843650966585425 ], [ -81.988356244605541, 28.843456929928841 ], [ -81.988355456696027, 28.843348423873781 ], [ -81.988353290730913, 28.84325508547197 ], [ -81.988347479060749, 28.843201552912351 ], [ -81.988336860423118, 28.843144656131958 ], [ -81.988329673715512, 28.843115780785737 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barrel Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98832967781307, 28.843115795223028 ], [ -81.98830745978421, 28.843046987876704 ], [ -81.988271179878637, 28.842965464884923 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barrel Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988271179878637, 28.842965464884923 ], [ -81.988170672147959, 28.8427998249661 ], [ -81.988098826521053, 28.842685065000524 ], [ -81.988016152104933, 28.842543354824954 ], [ -81.987959901854893, 28.842405583749922 ], [ -81.987936099917647, 28.842319240761753 ], [ -81.987919026120963, 28.842221643002922 ], [ -81.987911755908144, 28.842103792048306 ], [ -81.98791270347003, 28.84189181318472 ], [ -81.98791332550023, 28.841754292649707 ], [ -81.987917609070806, 28.841642872573388 ], [ -81.987925416697237, 28.841584689824575 ], [ -81.987940357255397, 28.841514453802191 ], [ -81.987961993901166, 28.84144303545791 ], [ -81.987990789748892, 28.84137107095663 ], [ -81.98804073260014, 28.841268243133612 ], [ -81.98810818685125, 28.841130788117191 ], [ -81.98816061945756, 28.841030026751163 ], [ -81.988187627341986, 28.84099747030238 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quarter Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987873586348329, 28.843124943592986 ], [ -81.988271179878637, 28.842965464884923 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barrel Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988187627341986, 28.84099747030238 ], [ -81.988222432460233, 28.840967744172094 ], [ -81.988271498261739, 28.840939604641985 ], [ -81.988325806729065, 28.840921221296625 ], [ -81.988383567510922, 28.840913182277877 ], [ -81.988443249576619, 28.840915670616841 ], [ -81.988539772926586, 28.840924360952819 ], [ -81.988678216685784, 28.84093682192119 ], [ -81.988772004954981, 28.840945264626388 ], [ -81.988859211900333, 28.840955329966242 ], [ -81.988969085953144, 28.840985116146523 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barrel Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988969085953144, 28.840985116146523 ], [ -81.989046519917906, 28.841020502898722 ], [ -81.989084875111644, 28.841043494123905 ], [ -81.989121587247737, 28.841069688393667 ], [ -81.989166395885917, 28.841108644640109 ], [ -81.989207570387322, 28.841150229899377 ], [ -81.989262766565005, 28.841206191832285 ], [ -81.989285855111788, 28.841243763047878 ], [ -81.989332968403048, 28.841323713033105 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pacific Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98790756359432, 28.840778192706637 ], [ -81.988187627341986, 28.84099747030238 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Plank Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9890577653956, 28.843080804222396 ], [ -81.989928132544748, 28.843083288429799 ], [ -81.99001484660883, 28.843080884908691 ], [ -81.990101160490497, 28.843073187468509 ], [ -81.990187908937571, 28.843064862902001 ], [ -81.990385404562133, 28.843049158250597 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Plank Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988329673715512, 28.843115780785737 ], [ -81.988439050665235, 28.84309286090398 ], [ -81.988504601389991, 28.843082691263895 ], [ -81.988571054177186, 28.843079412585713 ], [ -81.9890577653956, 28.843080804222396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walnut Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988066271908238, 28.847343454651032 ], [ -81.988146816687532, 28.847360319626624 ], [ -81.988213077156303, 28.847359791340192 ], [ -81.98828488497071, 28.847342793715203 ], [ -81.988341490454616, 28.847314656655179 ], [ -81.988390269512109, 28.847274528142869 ], [ -81.988416188443253, 28.847242460634249 ], [ -81.988462013943177, 28.847165396838125 ], [ -81.988517377345886, 28.847063405835453 ], [ -81.988580834019388, 28.846932383800834 ], [ -81.988622417602414, 28.846835672767341 ], [ -81.988676785230496, 28.846690765217904 ], [ -81.988712613842281, 28.846578516852329 ], [ -81.988737967283228, 28.846486761671784 ], [ -81.988758779082119, 28.846399921866439 ], [ -81.988765191054014, 28.846329946751439 ], [ -81.988744391567167, 28.846250924619657 ], [ -81.98870963510771, 28.846197512363023 ], [ -81.988664245736899, 28.846155849927285 ], [ -81.9885604465033, 28.846100534186281 ], [ -81.988451605325324, 28.846053102280521 ], [ -81.98835646456331, 28.846029383192654 ], [ -81.988232885356169, 28.846017922067059 ], [ -81.988089173137254, 28.846008120176009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pigeon Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987022692637993, 28.846805832605661 ], [ -81.98708066543314, 28.846728312986407 ], [ -81.987118007363151, 28.846673006129418 ], [ -81.987161098460064, 28.846602579869639 ], [ -81.987204640663677, 28.84652213803928 ], [ -81.987245567265035, 28.846434731041722 ], [ -81.987274235732841, 28.846363678967055 ], [ -81.987300292365276, 28.846288546407823 ], [ -81.987325023180688, 28.846202336102351 ], [ -81.9873470818968, 28.846102203853757 ], [ -81.98735922849859, 28.846025886133603 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pigeon Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98735922849859, 28.846025886133603 ], [ -81.98737111981869, 28.845876004254631 ], [ -81.987367446415234, 28.845788594784594 ], [ -81.987354260783974, 28.845699271522104 ], [ -81.98733450058532, 28.845612444314568 ], [ -81.987310747485822, 28.845510823409999 ], [ -81.987276796707206, 28.845398381068847 ], [ -81.987251646410797, 28.845333139207199 ], [ -81.987217873005335, 28.845253635561082 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walnut Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987612434035412, 28.847218840852722 ], [ -81.987797385206974, 28.847274362374002 ], [ -81.98801278681681, 28.847329711336709 ], [ -81.988066271908238, 28.847343454651032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walnut Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986107059417719, 28.846147923059892 ], [ -81.986220966915425, 28.846214396944404 ], [ -81.98628812082697, 28.846255823328239 ], [ -81.986413537432014, 28.846337912641179 ], [ -81.986532461647158, 28.846421844593142 ], [ -81.986635110404976, 28.846499476712349 ], [ -81.986749495134816, 28.846589826120585 ], [ -81.986863701746231, 28.846680124884028 ], [ -81.986938914259753, 28.846739592445147 ], [ -81.987022692637993, 28.846805832605661 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gravel Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987223248197481, 28.843916561300869 ], [ -81.987193305658607, 28.843807351358645 ], [ -81.987184464412607, 28.843768266196175 ], [ -81.987179222371452, 28.843728681501055 ], [ -81.987177613317556, 28.843688853532022 ], [ -81.987186489086838, 28.842030918992133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gravel Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987186489086838, 28.842030918992133 ], [ -81.987186682187698, 28.841994903432738 ], [ -81.987183972415409, 28.841907197141168 ], [ -81.987174916068781, 28.84181982048263 ], [ -81.987159548986156, 28.841733130772891 ], [ -81.987137934675161, 28.841647481720244 ], [ -81.98711016123859, 28.841563218913784 ], [ -81.987112637454416, 28.841520226935554 ], [ -81.987122155815413, 28.841486913781022 ], [ -81.987142380915884, 28.841439325357911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fir Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98649764689965, 28.845610471900322 ], [ -81.985887412853117, 28.845266693200859 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fir Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985887412853117, 28.845266693200859 ], [ -81.985284767928391, 28.844927181373411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fir Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985284767928391, 28.844927181373411 ], [ -81.9846743461123, 28.844583287053304 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fir Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9846743461123, 28.844583287053304 ], [ -81.983784208307981, 28.844081799157085 ], [ -81.983762276387267, 28.84406808143537 ], [ -81.983741950642056, 28.844052561096909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fir Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983741950642056, 28.844052561096909 ], [ -81.983573788772247, 28.844206817818534 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fir Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983741950642056, 28.844052561096909 ], [ -81.98371231256337, 28.844023265911456 ], [ -81.983688369993317, 28.843990178117558 ], [ -81.983670738705996, 28.84395414776619 ], [ -81.983659873565472, 28.843916099779619 ], [ -81.983656050083411, 28.843877011391161 ], [ -81.983659369547937, 28.843837887783287 ], [ -81.983669744681677, 28.843799734114363 ], [ -81.983686910919928, 28.843763529353144 ], [ -81.983710427439775, 28.843730204623807 ], [ -81.983820836852118, 28.84360451408735 ], [ -81.983937466914625, 28.843483257238134 ], [ -81.98406008495229, 28.843366671339201 ], [ -81.98418845419593, 28.843254985532308 ], [ -81.98432231943498, 28.843148419934156 ], [ -81.984461418290635, 28.843047183833338 ], [ -81.984605477116645, 28.842951475689798 ], [ -81.984754213048518, 28.842861484940073 ], [ -81.984907331954844, 28.842777385680868 ], [ -81.98506453560924, 28.842699346595531 ], [ -81.985225513493234, 28.842627521027794 ], [ -81.985389947920055, 28.842562047884876 ], [ -81.98555751915751, 28.842503057051911 ], [ -81.986895821705446, 28.842061955376721 ], [ -81.986944341346273, 28.842048138597249 ], [ -81.986994083051641, 28.842038248758818 ], [ -81.987044636898943, 28.842032366125622 ], [ -81.987095588870574, 28.842030541185881 ], [ -81.987186489086838, 28.842030918992133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ukulele Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98351001160519, 28.845478057801991 ], [ -81.983539428100613, 28.845383478965619 ], [ -81.983648857683264, 28.844994768867505 ], [ -81.983663655306188, 28.84493572284083 ], [ -81.983674968612945, 28.844876080864317 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ukulele Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983440551219246, 28.845760712020628 ], [ -81.98351001160519, 28.845478057801991 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zydeco Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983674968612945, 28.844876080864317 ], [ -81.983992532910676, 28.844937236092921 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zydeco Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981485848978778, 28.845123665680074 ], [ -81.981557778909135, 28.845097604370267 ], [ -81.981631394956736, 28.845075492648597 ], [ -81.981836231578669, 28.845023678593726 ], [ -81.982043067301234, 28.84497843960251 ], [ -81.98225162954742, 28.844939836986629 ], [ -81.982461647793045, 28.844907922134201 ], [ -81.982672841268851, 28.844882735605953 ], [ -81.982884933307204, 28.844864310746399 ], [ -81.983097644167898, 28.844852674585255 ], [ -81.983310696163301, 28.844847839717222 ], [ -81.983523805458503, 28.844849810617319 ], [ -81.983575194529209, 28.844853623771108 ], [ -81.983625788570066, 28.844862416637262 ], [ -81.983674968612945, 28.844876080864317 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tambourine Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981776844676375, 28.845689626764088 ], [ -81.981953219985755, 28.845642811044282 ], [ -81.982131380444002, 28.845601565268932 ], [ -81.982311095482444, 28.845565939027455 ], [ -81.982492141707922, 28.845535978302109 ], [ -81.982674283431933, 28.845511720051682 ], [ -81.982857293165935, 28.84549319853031 ], [ -81.983040937275419, 28.845480433555615 ], [ -81.983224980076955, 28.845473444043925 ], [ -81.983409191013436, 28.8454722371835 ], [ -81.983459692202814, 28.845473924437115 ], [ -81.98351001160519, 28.845478057801991 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tambourine Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981112813429533, 28.845923084055215 ], [ -81.981275277749049, 28.845857158217271 ], [ -81.981440235399631, 28.845796225891814 ], [ -81.981607491669749, 28.845740359227648 ], [ -81.981776844676375, 28.845689626764088 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fulcrum Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981485848978778, 28.845123665680074 ], [ -81.981393040256009, 28.84496886033865 ], [ -81.981295787794366, 28.84481618194765 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fulcrum Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981776844676205, 28.845689627666381 ], [ -81.981710799253435, 28.845547370963327 ], [ -81.981640819436493, 28.845406579030872 ], [ -81.981566950315511, 28.845267335783706 ], [ -81.981551072746356, 28.845238522050469 ], [ -81.981485848978778, 28.845123665680074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pickering Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973489341321695, 28.84456946665814 ], [ -81.97356469600355, 28.844522399178587 ], [ -81.973644297016065, 28.844481100936012 ], [ -81.973727573468253, 28.844445869572358 ], [ -81.973813930913607, 28.844416954001442 ], [ -81.973902752373078, 28.844394560725576 ], [ -81.973993406533751, 28.844378851130443 ], [ -81.97408524262552, 28.844369936070336 ], [ -81.974231295704811, 28.844364758802598 ], [ -81.974377452582758, 28.844366604950068 ], [ -81.974523277743586, 28.844375466308954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pickering Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974523277743586, 28.844375466308954 ], [ -81.974659932446414, 28.844390210620666 ], [ -81.97479554651791, 28.844411118253774 ], [ -81.97492976130863, 28.844438134103729 ], [ -81.975062221246304, 28.844471186826247 ], [ -81.975192576909961, 28.844510189740411 ], [ -81.975320484004939, 28.844555039925911 ], [ -81.975445604387488, 28.844605618223252 ], [ -81.975567608113721, 28.844661791038586 ], [ -81.975686170365236, 28.8447234094408 ], [ -81.975800979646422, 28.844790312772041 ], [ -81.975845527630298, 28.844820786278706 ], [ -81.975886384373084, 28.844855041575205 ], [ -81.975923134904804, 28.844892726690812 ], [ -81.975955413450961, 28.844933464399141 ], [ -81.975981176399216, 28.844973340132125 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pickering Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975981176399216, 28.844973340132125 ], [ -81.976001560936581, 28.84501389523637 ], [ -81.976016725569423, 28.845052165666157 ], [ -81.976028284658184, 28.845091400917266 ], [ -81.976060850435289, 28.845224079158118 ], [ -81.976072256452156, 28.845282741032996 ], [ -81.976077857714898, 28.845342048824431 ], [ -81.976077612298241, 28.845401561297816 ], [ -81.97607152439474, 28.845460833616873 ], [ -81.976059635091374, 28.845519419146488 ], [ -81.976042036714674, 28.845576881185369 ], [ -81.975897800829046, 28.845977914236773 ], [ -81.975880045493724, 28.846030965749335 ], [ -81.975864727057612, 28.846084604196886 ], [ -81.975842542075327, 28.846169472028695 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pickering Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975842542075327, 28.846169472028695 ], [ -81.975831965526893, 28.846209925022496 ], [ -81.975816226419724, 28.846282912441865 ], [ -81.975806927162253, 28.84635675279786 ], [ -81.975804123213194, 28.846431002167169 ], [ -81.9758078321114, 28.846505222032533 ], [ -81.975818031428133, 28.846578969357065 ], [ -81.975834659789797, 28.846651803802821 ], [ -81.97602898397686, 28.847360233813273 ], [ -81.976052466973485, 28.847480796026403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oracle Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975184449950845, 28.847757783278436 ], [ -81.975195877211817, 28.847654714975523 ], [ -81.975203724313758, 28.847548806450877 ], [ -81.975203822586053, 28.847442671817173 ], [ -81.975196170921947, 28.847336749594916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oracle Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975196170921947, 28.847336749594916 ], [ -81.975183221506839, 28.847245035906493 ], [ -81.975164457984931, 28.847154105242836 ], [ -81.975135337659438, 28.847032450936695 ], [ -81.975117701025752, 28.8469479160185 ], [ -81.975105088359783, 28.846862688156385 ], [ -81.975097531364696, 28.846776994738679 ], [ -81.975081810675505, 28.846508130747281 ], [ -81.975079529390953, 28.846444460891675 ], [ -81.975080127907063, 28.846380761794553 ], [ -81.97508531995382, 28.846218544343678 ], [ -81.975089172028092, 28.846139050075912 ], [ -81.975095632265294, 28.846059689832817 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oracle Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975095632265294, 28.846059689832817 ], [ -81.975109679744619, 28.84594461861759 ], [ -81.975129215014292, 28.845830169203555 ], [ -81.975154202139194, 28.845716542796019 ], [ -81.975239788639897, 28.845366924854677 ], [ -81.975306289011954, 28.84522398111325 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anvil Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974411410584651, 28.845430519100582 ], [ -81.974428516057714, 28.845239883079866 ], [ -81.974523277743131, 28.844375468113583 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anvil Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974370178411178, 28.846071533972879 ], [ -81.974409573451524, 28.845457916379289 ], [ -81.974411410584651, 28.845430519100582 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ivawood Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972256091589585, 28.846085544892585 ], [ -81.972465179105384, 28.846151239764591 ], [ -81.972582474631309, 28.846189261704552 ], [ -81.972803834831282, 28.846263240826939 ], [ -81.972866094181072, 28.846280481165621 ], [ -81.972930205074931, 28.846291252313737 ], [ -81.972995300528027, 28.846295410627363 ], [ -81.973060504308506, 28.846292899083917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ivawood Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973060504308506, 28.846292899083917 ], [ -81.973099864370255, 28.846288116638444 ], [ -81.973138743388915, 28.846280898760689 ], [ -81.973458918980526, 28.846210971498831 ], [ -81.973650530982056, 28.846172221836763 ], [ -81.973843556646116, 28.846139362432883 ], [ -81.974037763357543, 28.846112429328485 ], [ -81.974370178411178, 28.846071533972879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ivawood Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974370178411178, 28.846071533972879 ], [ -81.974442546164411, 28.846062629387944 ], [ -81.974528951968722, 28.846054148808047 ], [ -81.974615757424189, 28.846049916306214 ], [ -81.974702696082204, 28.846049941756803 ], [ -81.975095632265294, 28.846059689832817 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ivawood Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975095632265294, 28.846059689832817 ], [ -81.975096739078879, 28.846059717107561 ], [ -81.975212568558533, 28.846065119923182 ], [ -81.975327953091934, 28.84607556284017 ], [ -81.97544260984732, 28.846091021445567 ], [ -81.975556258045486, 28.846111456890856 ], [ -81.975842541050497, 28.84616947202851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ivawood Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975842541050497, 28.84616947202851 ], [ -81.976190913152209, 28.846240068530022 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Twig Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972197376009802, 28.847814362069567 ], [ -81.972269406521391, 28.847661914331173 ], [ -81.972338856504763, 28.847508541154991 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wren Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972272495727395, 28.846774541160308 ], [ -81.972371825484558, 28.846816065928088 ], [ -81.972474216131204, 28.846851359924464 ], [ -81.972545349835173, 28.846876473046574 ], [ -81.972617709021478, 28.846898708927057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Twig Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972338856504763, 28.847508541154991 ], [ -81.972380430271429, 28.847413431323893 ], [ -81.972560431451996, 28.846995926121984 ], [ -81.972585871080142, 28.84694585784511 ], [ -81.972617709021478, 28.846898708927057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wren Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972617709021478, 28.846898708927057 ], [ -81.972717557739188, 28.846924193249794 ], [ -81.972793180310603, 28.846937816285447 ], [ -81.972869961691828, 28.846944800344687 ], [ -81.972947151702343, 28.846945075796658 ], [ -81.973023996044077, 28.84693864068436 ], [ -81.973099742451964, 28.846925558018963 ], [ -81.973627762259596, 28.846810236256513 ], [ -81.973782686221583, 28.846778715688039 ], [ -81.973938679939636, 28.846751588477876 ], [ -81.97409558150035, 28.846728884367216 ], [ -81.974253232066786, 28.846710627684736 ], [ -81.974323729720808, 28.846706718874898 ], [ -81.974394309807053, 28.846709257923713 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nuthatch Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972338856504763, 28.847508541154991 ], [ -81.972379929558045, 28.847534501742807 ], [ -81.972425022616321, 28.847554634247388 ], [ -81.972473081231129, 28.847568467444685 ], [ -81.972609653950201, 28.847597801394084 ], [ -81.972683604713339, 28.847610391910756 ], [ -81.972758589185787, 28.847616652920028 ], [ -81.972833908422785, 28.847616525628773 ], [ -81.972908865514043, 28.847610008091053 ], [ -81.972982758408008, 28.847597164229825 ], [ -81.973799239976586, 28.847418841937916 ], [ -81.973942876503443, 28.847389795813672 ], [ -81.974087569485533, 28.847365158407836 ], [ -81.974233151881933, 28.847344963972596 ], [ -81.974321579654529, 28.847336891758719 ], [ -81.974410436471175, 28.847334376871803 ], [ -81.974431045082071, 28.847334440354729 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nuthatch Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974431045082071, 28.847334440354729 ], [ -81.975196169897117, 28.847336749594731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yucca Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974431045082298, 28.847334439452428 ], [ -81.974401012285625, 28.846820733713802 ], [ -81.974394309807053, 28.846709257923713 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yucca Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974394309807053, 28.846709257923713 ], [ -81.974374148727321, 28.846405491797075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enterprise Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968928867179912, 28.847766466295621 ], [ -81.968968004208563, 28.847485991724973 ], [ -81.968977225373749, 28.847395043213972 ], [ -81.968979570935886, 28.847303753845441 ], [ -81.968978643987498, 28.847226733689652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enterprise Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968978643987498, 28.847226733689652 ], [ -81.968977061072437, 28.847095230336681 ], [ -81.968973618703714, 28.847040257446118 ], [ -81.968964641018047, 28.846985772325379 ], [ -81.968950195534973, 28.846932203584366 ], [ -81.968930399990597, 28.846879979844008 ], [ -81.968905412094585, 28.84682951078549 ], [ -81.968876319254591, 28.846777236158172 ], [ -81.968823627288089, 28.846674472018638 ], [ -81.968778398092923, 28.846568990944384 ], [ -81.968740811896623, 28.846461206240971 ], [ -81.968711017148749, 28.846351550153862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enterprise Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968711017148749, 28.846351550153862 ], [ -81.968691884362244, 28.846257057093649 ], [ -81.968678539083498, 28.84616179300561 ], [ -81.96867102015608, 28.846066037615458 ], [ -81.968669350027369, 28.84597006523046 ], [ -81.968673532697139, 28.845874151957421 ], [ -81.968683556792683, 28.845778573898869 ], [ -81.968706884705384, 28.845606686387882 ], [ -81.968711012685787, 28.84556609890717 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enterprise Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968711012685787, 28.84556609890717 ], [ -81.968711744825924, 28.845496916548854 ], [ -81.968704575460166, 28.845428021086231 ], [ -81.968689579206469, 28.845360106409029 ], [ -81.96866690754473, 28.845293863716652 ], [ -81.968613224241935, 28.845161517129025 ], [ -81.968586852562396, 28.845107036021634 ], [ -81.968553282613513, 28.84505571761127 ], [ -81.968512990722189, 28.845008296481662 ], [ -81.96846655468643, 28.844965451296957 ], [ -81.968414641480351, 28.844927793971507 ], [ -81.968357988808833, 28.844895865154463 ], [ -81.968297415360254, 28.844870119795587 ], [ -81.96823378083829, 28.844850928940996 ], [ -81.968167999289363, 28.844838566201972 ], [ -81.968101012458575, 28.844833205944173 ], [ -81.968033777491087, 28.844834928698994 ], [ -81.967967257713795, 28.844843707626673 ], [ -81.967902404186844, 28.84485941753497 ], [ -81.967745148029138, 28.844906584912156 ], [ -81.967643671903971, 28.844933738868388 ], [ -81.967540368299822, 28.844954887457707 ], [ -81.967435692284425, 28.84496993604413 ], [ -81.967330114289922, 28.844978818870629 ], [ -81.967224098591402, 28.844981498151565 ], [ -81.966861660198745, 28.84498002867608 ], [ -81.966781431960001, 28.844976770478016 ], [ -81.966701785653683, 28.844967669942996 ], [ -81.966464111202157, 28.844931631339289 ], [ -81.966419374752491, 28.844928091240963 ], [ -81.966374571669292, 28.844930938537701 ], [ -81.966330877439049, 28.844940101339596 ], [ -81.966289426610558, 28.844955340821262 ], [ -81.966251307668614, 28.844976260243481 ], [ -81.966217510767805, 28.845002308548882 ], [ -81.966188918499711, 28.845032810135454 ], [ -81.966166280271494, 28.845066968458728 ], [ -81.966150184627637, 28.845103889484424 ], [ -81.966141053090894, 28.845142611462599 ], [ -81.966139121708693, 28.845182122968801 ], [ -81.966144443092162, 28.845221392680436 ], [ -81.966214137879746, 28.845524676272802 ], [ -81.96622939831768, 28.845597856245586 ], [ -81.966241652808975, 28.845671473981188 ], [ -81.966255478602477, 28.84576644428423 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enterprise Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966255478602477, 28.84576644428423 ], [ -81.96630778493126, 28.846125737699566 ], [ -81.966325233072581, 28.846269741116974 ], [ -81.966335728599049, 28.846414265221714 ], [ -81.966339252093661, 28.846559052853287 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enterprise Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966339252093661, 28.846559052853287 ], [ -81.966336965273229, 28.846677015269591 ], [ -81.966337172768917, 28.846757557870831 ], [ -81.966358513912382, 28.84690946283829 ], [ -81.966380176070132, 28.846997656048714 ], [ -81.96642195265008, 28.847127626543738 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pasture Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967345340000534, 28.846591423366526 ], [ -81.967502240061464, 28.846580535405803 ], [ -81.967658551430674, 28.846564371336807 ], [ -81.967814047588064, 28.846542955469506 ], [ -81.96796849791275, 28.846516318429988 ], [ -81.968121678956223, 28.846484498065642 ], [ -81.968711017148749, 28.846351550153862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pasture Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966339252093661, 28.846559052853287 ], [ -81.966806256332475, 28.846588552694307 ], [ -81.966985846538691, 28.846596425373637 ], [ -81.96716565520488, 28.846597383495492 ], [ -81.967345340000534, 28.846591423366526 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Inlet Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967436964479205, 28.847299374210838 ], [ -81.96741685047283, 28.847121439091957 ], [ -81.967384755090748, 28.846982605196327 ], [ -81.96736779290849, 28.846875310566507 ], [ -81.967357249536832, 28.846767378660697 ], [ -81.967345340000534, 28.846591423366526 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Underpar Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968306532868922, 28.84722820085539 ], [ -81.968978643987498, 28.847226733689652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Underpar Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968978643987498, 28.847226733689652 ], [ -81.969488650417546, 28.847228202231548 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenwich Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970769205617501, 28.849899579714272 ], [ -81.970848585892085, 28.849958040224315 ], [ -81.970954866233669, 28.850015931743624 ], [ -81.971028179183349, 28.850049752474717 ], [ -81.971058112177246, 28.850062365046799 ], [ -81.971139238680863, 28.850085682759619 ], [ -81.971266134221906, 28.850122953562039 ], [ -81.971410433776242, 28.850161957674302 ], [ -81.971573069832075, 28.850207053374508 ], [ -81.971753111276044, 28.850249109969223 ], [ -81.971940750816756, 28.850277796645141 ], [ -81.972005488418446, 28.850284007204117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlotte Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97029788795416, 28.850395664940702 ], [ -81.970364292141355, 28.850315463747357 ], [ -81.970515322132911, 28.850156212997 ], [ -81.970674163839078, 28.849991233237244 ], [ -81.970769205617501, 28.849899579714272 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlotte Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970769205617501, 28.849899579714272 ], [ -81.970796547662033, 28.849868646506895 ], [ -81.970888988046127, 28.84977355364444 ], [ -81.971016579240398, 28.849641800413345 ], [ -81.971153286044384, 28.849496296074239 ], [ -81.971218390047071, 28.849410364527579 ], [ -81.971283494827532, 28.849317558280699 ], [ -81.971355116833635, 28.849186937756365 ], [ -81.971391838751728, 28.849109103668457 ], [ -81.971449506014991, 28.848970860141094 ], [ -81.971513213029425, 28.848760497463726 ], [ -81.971546638003616, 28.848502857428205 ], [ -81.971564753371723, 28.848215991148752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984142295213829, 28.845942636193616 ], [ -81.984319830585761, 28.845972203161448 ], [ -81.984495964214489, 28.846007681643826 ], [ -81.984670441977684, 28.846049018380885 ], [ -81.984843011802042, 28.846096155602794 ], [ -81.985013426738888, 28.846149022909159 ], [ -81.985181439838414, 28.846207546291534 ], [ -81.985346809274532, 28.846271642719984 ], [ -81.985509297320419, 28.846341215631593 ], [ -81.985668669321711, 28.846416168464607 ], [ -81.985808675428729, 28.846489424520303 ], [ -81.985841840621262, 28.846508541594808 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982282362918539, 28.845989694366903 ], [ -81.982465676425761, 28.845956009259265 ], [ -81.982650352787743, 28.845928697970795 ], [ -81.982836107126744, 28.84590780286781 ], [ -81.983022648418753, 28.845893355489718 ], [ -81.983209692815564, 28.845885379257634 ], [ -81.983396947247911, 28.845883885863127 ], [ -81.983584125822205, 28.845888877074842 ], [ -81.983770934447378, 28.845900346541217 ], [ -81.983957087232596, 28.845918276183372 ], [ -81.984142295213829, 28.845942636193616 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Viola Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984142295213829, 28.845942636193616 ], [ -81.984211442683559, 28.845584368310835 ], [ -81.984238512829151, 28.845462652181777 ], [ -81.984272476712022, 28.845342284902248 ], [ -81.984313244079559, 28.845223563315315 ], [ -81.984360714431432, 28.845106790578072 ], [ -81.984414769848811, 28.844992258114793 ], [ -81.98447527396867, 28.844880252835225 ], [ -81.984542071984222, 28.844771056232535 ], [ -81.984615000893101, 28.844664945286851 ], [ -81.9846743461123, 28.844583287053304 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981314242803819, 28.846290978987231 ], [ -81.981470033324328, 28.846227913199769 ], [ -81.981628333598735, 28.84616989237059 ], [ -81.981788932516324, 28.846116993158319 ], [ -81.9819516138447, 28.846069286807907 ], [ -81.982116163404569, 28.846026833737803 ], [ -81.982282362918539, 28.845989694366903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978935634882433, 28.847567537099675 ], [ -81.979070953107495, 28.847505414688314 ], [ -81.979203727309709, 28.847439174522862 ], [ -81.979333795536917, 28.847368894184029 ], [ -81.980827128582433, 28.846530057341056 ], [ -81.980985875405878, 28.846444727230391 ], [ -81.981148331876128, 28.8463649926552 ], [ -81.981314242803819, 28.846290978987231 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nomad Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978935634882433, 28.847567537099675 ], [ -81.978833546804253, 28.847387573203271 ], [ -81.97878652933953, 28.847310868845199 ], [ -81.978734085840756, 28.847236940004549 ], [ -81.97798888354825, 28.846256987326282 ], [ -81.977955045238076, 28.846210494043618 ], [ -81.977923352184789, 28.846162842544402 ], [ -81.977871360459091, 28.846080939750536 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "View Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969086508994494, 28.837411496894653 ], [ -81.968948243666503, 28.837104123760749 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "View Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968468076543033, 28.840567029797896 ], [ -81.968507526479399, 28.840492847769433 ], [ -81.968553135454655, 28.840421457104153 ], [ -81.968604652269519, 28.840353252947601 ], [ -81.968661787816202, 28.84028861148763 ], [ -81.968825620419409, 28.840116855785691 ], [ -81.968881950957368, 28.840053197557744 ], [ -81.968932830667882, 28.839986075892597 ], [ -81.968977984809996, 28.839915848046434 ], [ -81.969017170405593, 28.839842896546983 ], [ -81.969050176244849, 28.839767610245076 ], [ -81.969076826980881, 28.839690397849861 ], [ -81.969096975960753, 28.839611672587967 ], [ -81.96911051752042, 28.839531858522275 ], [ -81.969166366990521, 28.839093020761002 ], [ -81.969177883663974, 28.839022966473753 ], [ -81.969194496235616, 28.83895371099349 ], [ -81.969216130828059, 28.838885539430446 ], [ -81.969319263540172, 28.838596745331632 ], [ -81.969344210539091, 28.838516376209835 ], [ -81.969362175215991, 28.83843457533257 ], [ -81.969373060095705, 28.838351811880027 ], [ -81.969376797420537, 28.838268559549785 ], [ -81.96937336964433, 28.838185299268254 ], [ -81.969362793039807, 28.838102505652159 ], [ -81.969345134092521, 28.838020652426387 ], [ -81.969320489005938, 28.837940210614637 ], [ -81.969289001122974, 28.837861644031797 ], [ -81.969086508994494, 28.837411496894653 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "View Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967609663947769, 28.841041245836482 ], [ -81.967499509812754, 28.841021843086988 ], [ -81.967422180799758, 28.841011501960974 ], [ -81.967344093494418, 28.841007559766592 ], [ -81.967050475282193, 28.841004837979312 ], [ -81.96700428117218, 28.841007806056158 ], [ -81.966959289040332, 28.841017486673664 ], [ -81.966916746126898, 28.84103361035044 ], [ -81.966877834144697, 28.841055729835986 ], [ -81.966843633409312, 28.841083230026779 ], [ -81.966815092089831, 28.84111534780903 ], [ -81.966793004681477, 28.841151193708136 ], [ -81.966777982280476, 28.841189770829271 ], [ -81.966770442325441, 28.841230006435257 ], [ -81.966756305498976, 28.841357465506373 ], [ -81.96673718935223, 28.841484418048726 ], [ -81.966713114410382, 28.84161071698929 ], [ -81.966684111448515, 28.84173621074553 ], [ -81.966677928359118, 28.841776082147646 ], [ -81.966679250726912, 28.841816309115664 ], [ -81.966688038944383, 28.841855800750665 ], [ -81.966704058684911, 28.841893490466578 ], [ -81.966726874745916, 28.841928358546411 ], [ -81.96675587358223, 28.841959466435892 ], [ -81.966790268425768, 28.841985968475178 ], [ -81.966829128991577, 28.84200715160809 ], [ -81.966871408121477, 28.842022438998509 ], [ -81.96691595919529, 28.842031423420522 ], [ -81.966989920722611, 28.842040788614558 ], [ -81.967067881165505, 28.842052889640325 ], [ -81.967144813411579, 28.842069313321034 ], [ -81.967543743676288, 28.842166354156987 ], [ -81.967617648485941, 28.842180614006985 ], [ -81.967692866237996, 28.842187792829279 ], [ -81.96776852381582, 28.842187812813727 ], [ -81.967843746029473, 28.842180671043071 ], [ -81.967917661761362, 28.842166452126747 ], [ -81.967989412168251, 28.84214531917965 ], [ -81.968058166053524, 28.842117515630228 ], [ -81.968123128065358, 28.842083367929234 ], [ -81.968183543826612, 28.842043268406762 ], [ -81.968238714279593, 28.841997684298338 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "View Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968379517976643, 28.84113815209685 ], [ -81.968332020703357, 28.841143211868733 ], [ -81.968272618961976, 28.841146741206241 ], [ -81.968213126689164, 28.841144721309053 ], [ -81.968154212047949, 28.841137173088448 ], [ -81.967609663947769, 28.841041245836482 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "View Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968238714279593, 28.841997684298338 ], [ -81.968283896117953, 28.841951794633086 ], [ -81.968323751144226, 28.841902225893588 ], [ -81.968357894919293, 28.841849453509543 ], [ -81.968385999358603, 28.84179399082052 ], [ -81.96840779376258, 28.841736369225256 ], [ -81.968423067888693, 28.841677144498288 ], [ -81.968431674004009, 28.841616885962676 ], [ -81.968433530984242, 28.841556174686165 ], [ -81.968428618166783, 28.841495596261311 ], [ -81.968379517976643, 28.84113815209685 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "View Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968379517976643, 28.84113815209685 ], [ -81.968378152922156, 28.841128216474569 ], [ -81.968370430464248, 28.841046631678203 ], [ -81.968369622319045, 28.840964766989472 ], [ -81.968375728331765, 28.84088307626881 ], [ -81.968388718629853, 28.84080201066168 ], [ -81.968408518250982, 28.840722021301975 ], [ -81.96843502046849, 28.840643549389668 ], [ -81.968468076543033, 28.840567029797896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nottingham Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968468076543033, 28.840567029797896 ], [ -81.968392492268393, 28.840538839299121 ], [ -81.968338845208649, 28.840521601621923 ], [ -81.968283491438385, 28.840509247707782 ], [ -81.96764167680594, 28.840396185320021 ], [ -81.967545717954408, 28.840382004969786 ], [ -81.967448941744991, 28.84037311006735 ], [ -81.967351724244224, 28.84036954040387 ], [ -81.966963607188873, 28.840365940939684 ], [ -81.966916830412501, 28.840362009804849 ], [ -81.966871472081991, 28.840351198913105 ], [ -81.966828830501157, 28.8403338135663 ], [ -81.966790122951707, 28.840310353945938 ], [ -81.96675645700698, 28.840281488938984 ], [ -81.966728794668455, 28.840248043495983 ], [ -81.966707922655075, 28.840210973358637 ], [ -81.966694441139964, 28.84017133798725 ], [ -81.96666087325417, 28.840041756571974 ], [ -81.966622065418079, 28.839913314360025 ], [ -81.966578063710941, 28.839786177382912 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nottingham Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967133150668914, 28.837852052930785 ], [ -81.967285540652682, 28.837848944689117 ], [ -81.967437574019726, 28.837839295363278 ], [ -81.967588893096121, 28.837823126523507 ], [ -81.967739136104228, 28.837800476884432 ], [ -81.967887945361539, 28.837771400502465 ], [ -81.968034966257349, 28.837735963166306 ], [ -81.968179849298409, 28.837694255931893 ], [ -81.969086508994494, 28.837411496894653 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nottingham Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965927858984557, 28.837800620679982 ], [ -81.965962445281249, 28.837788539431916 ], [ -81.965998555032144, 28.837780633536394 ], [ -81.966035539525919, 28.837777046295049 ], [ -81.966072737781715, 28.837777838897136 ], [ -81.966852692686729, 28.837840632087232 ], [ -81.966992777833397, 28.8378491166903 ], [ -81.967133150668914, 28.837852052930785 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nottingham Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966578063710941, 28.839786177382912 ], [ -81.966532505280568, 28.839669188248585 ], [ -81.966482549212117, 28.839553597477956 ], [ -81.966428252863068, 28.83943953501274 ], [ -81.966369672566771, 28.839327126282623 ], [ -81.965973188320049, 28.838598530727154 ], [ -81.965923034022524, 28.838500202623017 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nottingham Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965923034022524, 28.838500202623017 ], [ -81.965876392967203, 28.83839481032587 ], [ -81.965836014952529, 28.838287433625695 ], [ -81.965802002342471, 28.838178359487767 ], [ -81.965774453399447, 28.838067878484772 ], [ -81.965769528310091, 28.83802788155862 ], [ -81.965772112682345, 28.837987713302482 ], [ -81.965782135440932, 28.837948460075779 ], [ -81.965799323642372, 28.837911185627672 ], [ -81.965823216835489, 28.83787689139935 ], [ -81.965853165016512, 28.83784650569628 ], [ -81.96588836348181, 28.837820851214445 ], [ -81.965927858984557, 28.837800620679982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iron Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967073690105906, 28.837091831801388 ], [ -81.967076951585724, 28.837108859141267 ], [ -81.967090769807967, 28.837191029344677 ], [ -81.967100816845829, 28.837273624511187 ], [ -81.967107078387869, 28.837356506585071 ], [ -81.967133150668914, 28.837852052930785 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iron Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967046756815563, 28.836443783485354 ], [ -81.967027298401916, 28.836523155601231 ], [ -81.967015506701131, 28.836603689963482 ], [ -81.967011464917761, 28.836684810922407 ], [ -81.967015202969918, 28.836765944618463 ], [ -81.967026693391674, 28.836846512665247 ], [ -81.967073690105906, 28.837091831801388 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zeeland Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967065259573431, 28.839119665136803 ], [ -81.967028772757587, 28.839052148273169 ], [ -81.966821961598924, 28.838672106932897 ], [ -81.966806476096394, 28.838637962510308 ], [ -81.966796300373133, 28.838602305326933 ], [ -81.966791617652078, 28.838565772458136 ], [ -81.966792511749432, 28.838529014488671 ], [ -81.966797062861474, 28.838483757689133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zeeland Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967217164586486, 28.839411447960472 ], [ -81.967142173329279, 28.839265167461136 ], [ -81.967065259573431, 28.839119665136803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beauclair Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966797062861474, 28.838483757689133 ], [ -81.966966863356234, 28.838493675306228 ], [ -81.967136995951833, 28.838496984292917 ], [ -81.967307129619982, 28.838493680958113 ], [ -81.967476931280046, 28.838483770634973 ], [ -81.967646071946106, 28.838467273096192 ], [ -81.967814219554612, 28.838444220747675 ], [ -81.967981049212852, 28.838414656826355 ], [ -81.968146234999367, 28.838378640811943 ], [ -81.968309455090122, 28.838336242112103 ], [ -81.968470390732875, 28.838287543671246 ], [ -81.968503367856499, 28.838279398161198 ], [ -81.968537394946708, 28.838275957519102 ], [ -81.968571610160183, 28.838277309968507 ], [ -81.968605150666605, 28.838283420117584 ], [ -81.968637165967863, 28.8382941352783 ], [ -81.968666849666505, 28.838309180962174 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beauclair Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965923034022524, 28.838500202623017 ], [ -81.965997065479755, 28.838472839065066 ], [ -81.96604983072362, 28.838456009041739 ], [ -81.966104238121517, 28.838443895771828 ], [ -81.966159746568692, 28.838436618221618 ], [ -81.966215802678988, 28.838434249337482 ], [ -81.966271847958765, 28.838436813340856 ], [ -81.966745095638387, 28.838479394810722 ], [ -81.966797062861474, 28.838483757689133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nostalgia Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969232962995392, 28.836218450901704 ], [ -81.969430311807756, 28.835525063579443 ], [ -81.969452886489535, 28.835438679077591 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nostalgia Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969452886489535, 28.835438679077591 ], [ -81.969473023873064, 28.835343414407284 ], [ -81.969488377993244, 28.835247461989738 ], [ -81.969498918066876, 28.835151005890381 ], [ -81.969504625605964, 28.835054236493029 ], [ -81.969503215744254, 28.834987590824824 ], [ -81.96949448102599, 28.834921375697625 ], [ -81.969478506332152, 28.834856218233195 ], [ -81.969425915389266, 28.834682908147261 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yager Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967065259573431, 28.839119665136803 ], [ -81.967256917802416, 28.839118347706684 ], [ -81.967448348685593, 28.839110008195167 ], [ -81.967639219130263, 28.839094664569 ], [ -81.967829199116721, 28.839072340211423 ], [ -81.968017958621374, 28.839043073846742 ], [ -81.968205172741406, 28.839006917736842 ], [ -81.968390515547469, 28.838963934070499 ], [ -81.968419913590566, 28.838958489247027 ], [ -81.968449891538114, 28.838956765668073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yager Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968449891538114, 28.838956765668073 ], [ -81.968571358955742, 28.838959851166845 ], [ -81.968793463804971, 28.838991989006377 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Xyler Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968449891538114, 28.838956765668073 ], [ -81.968466559626179, 28.838922120988187 ], [ -81.968480675281583, 28.83888660949216 ], [ -81.968642928364389, 28.838432280763637 ], [ -81.968655097290636, 28.838391936936887 ], [ -81.968663091585427, 28.838350791788162 ], [ -81.968666849666505, 28.838309180962174 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Xyler Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968666849666505, 28.838309180962174 ], [ -81.968666660736616, 28.838273163519908 ], [ -81.968663293998773, 28.838237267147388 ], [ -81.968662327895117, 28.83818905754773 ], [ -81.968655628174773, 28.838141203020939 ], [ -81.96864327256732, 28.838094230531809 ], [ -81.968625392092108, 28.838048657131495 ], [ -81.9686114526626, 28.838000284790187 ], [ -81.968590522791558, 28.8379539103253 ], [ -81.968562954767577, 28.837910307093438 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tropical Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967578601846938, 28.841541763281164 ], [ -81.96758013980083, 28.841362486116559 ], [ -81.967584219330703, 28.841186123109459 ], [ -81.967587680215232, 28.841146236568139 ], [ -81.967594786139458, 28.841106727168007 ], [ -81.967609663947769, 28.841041245836482 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oday Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96641875248487, 28.83597225981735 ], [ -81.966519550788561, 28.836060284322443 ], [ -81.966584073586617, 28.836132416413694 ], [ -81.966671122117347, 28.836239998507256 ], [ -81.966731158730013, 28.836293276600543 ], [ -81.966795728169302, 28.836342272533546 ], [ -81.966843462157286, 28.836372286047705 ], [ -81.966894487036257, 28.836397756335455 ], [ -81.966948249530915, 28.83641840715088 ], [ -81.967004162531126, 28.836434014574252 ], [ -81.967046756815563, 28.836443783485354 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thistle Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970416220759162, 28.834297795832402 ], [ -81.970764979096344, 28.834586146019994 ], [ -81.970800734632959, 28.83461905915977 ], [ -81.970841185228508, 28.834692822585762 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iron Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967521935801372, 28.835482262242518 ], [ -81.967289128697161, 28.835935790358349 ], [ -81.967108096092915, 28.836290713932524 ], [ -81.967073754687689, 28.83636610864972 ], [ -81.967046756815563, 28.836443783485354 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Regal Manor Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969452886489535, 28.835438679077591 ], [ -81.970007865067146, 28.835483397123831 ], [ -81.970082641209217, 28.83549208859057 ], [ -81.970156380867877, 28.835506045652828 ], [ -81.970228609628805, 28.835525180683224 ], [ -81.970335499174354, 28.835557683805952 ], [ -81.97039736661155, 28.83557441361118 ], [ -81.970460400272543, 28.835587343124917 ], [ -81.970524294798295, 28.835596411823879 ], [ -81.971541445784098, 28.835709183334441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harlow Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960917874090498, 28.847766998140941 ], [ -81.960967425033331, 28.847814804078446 ], [ -81.9610405090189, 28.847880736929781 ], [ -81.961118445390056, 28.847942212851667 ], [ -81.961200881699114, 28.847998956530827 ], [ -81.962028874424519, 28.848530526703712 ], [ -81.962079537125476, 28.848564465004163 ], [ -81.962127628613771, 28.848598064196 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Independence Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961993178384418, 28.846903036426458 ], [ -81.962098318526245, 28.846988322316289 ], [ -81.96220778012929, 28.847069282781494 ], [ -81.962321334711476, 28.847145748114094 ], [ -81.962499300614624, 28.847260002775382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Independence Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962499300614624, 28.847260002775382 ], [ -81.962976279264836, 28.847566218908032 ], [ -81.962993657780743, 28.847577242656474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Independence Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963313359548252, 28.847738464137116 ], [ -81.963419868803712, 28.847777117289066 ], [ -81.96352887262664, 28.847809934919283 ], [ -81.963639962127857, 28.84783679690441 ], [ -81.963752717138391, 28.847857596653895 ], [ -81.964245930817697, 28.84793473432984 ], [ -81.96433395512058, 28.84794131117869 ], [ -81.964457688180701, 28.847939408529342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Independence Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962993657780743, 28.847577242656474 ], [ -81.963096138725916, 28.847637107265683 ], [ -81.963202859686263, 28.847690923898998 ], [ -81.963313359548252, 28.847738464137116 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lancelot Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962563893239746, 28.848084332306833 ], [ -81.962993657780743, 28.847577242656474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lancelot Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962127628613771, 28.848598064196 ], [ -81.962155971621812, 28.848565641506823 ], [ -81.962563893239746, 28.848084332306833 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lancelot Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961602162015438, 28.849064040803299 ], [ -81.961993501620199, 28.848728728926044 ], [ -81.962062943676102, 28.8486652902873 ], [ -81.962127628613771, 28.848598064196 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lancelot Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960571650913394, 28.849947003979267 ], [ -81.961093979413945, 28.849499464652929 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lancelot Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961093979413945, 28.849499464652929 ], [ -81.961602162015438, 28.849064040803299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinfish Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960571650913394, 28.849947003979267 ], [ -81.960719462939508, 28.850041899442012 ], [ -81.96080510755209, 28.85010124292474 ], [ -81.960885572575066, 28.850165960781705 ], [ -81.960960423595552, 28.850235704605783 ], [ -81.961029259003823, 28.850310097126009 ], [ -81.961091706916932, 28.850388736717747 ], [ -81.96114743132641, 28.85047120191582 ], [ -81.961362790547184, 28.850818321405523 ], [ -81.961387474130845, 28.850886157513436 ], [ -81.961405319304532, 28.850955161039863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinfish Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959582969373784, 28.849455850559679 ], [ -81.960003748445615, 28.8496271032379 ], [ -81.960162517321976, 28.84969285088442 ], [ -81.960259681637524, 28.849744829000475 ], [ -81.960363785166635, 28.849808266570289 ], [ -81.960571650913394, 28.849947003979267 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harlow Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963385977857627, 28.849226083102923 ], [ -81.963569318946469, 28.849328098009195 ], [ -81.963750694783613, 28.849432801005737 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harlow Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962127628613771, 28.848598064196 ], [ -81.962283019135938, 28.848706631837285 ], [ -81.962329804563524, 28.848736018626347 ], [ -81.96237975124113, 28.848761046342716 ], [ -81.962789628977774, 28.848942673737771 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harlow Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962789628977774, 28.848942673737771 ], [ -81.963074291638378, 28.849068814323825 ], [ -81.963183130481582, 28.849119477083832 ], [ -81.963289574002403, 28.84917394141759 ], [ -81.963385977857627, 28.849226083102923 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allison Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961630997614606, 28.849942368737537 ], [ -81.961670569022047, 28.849903261474047 ], [ -81.961712201812659, 28.849865852925362 ], [ -81.962789628977774, 28.848942673737771 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dolan Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961801116460265, 28.85065369748559 ], [ -81.961934690895305, 28.850541985758301 ], [ -81.962064865629969, 28.850427202390872 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dolan Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962064865629969, 28.850427202390872 ], [ -81.962167860981893, 28.850338911959508 ], [ -81.963313170073704, 28.849357564373662 ], [ -81.963340840138599, 28.849329372166729 ], [ -81.963362597023064, 28.849297413019617 ], [ -81.963377793704709, 28.849262637788939 ], [ -81.963385977857627, 28.849226083102923 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jujube Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961399662889022, 28.849682719968577 ], [ -81.961630997614606, 28.849942368737537 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jujube Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961630997614606, 28.849942368737537 ], [ -81.961700082662276, 28.850021469220909 ], [ -81.961970551246296, 28.850326999054996 ], [ -81.962016856003842, 28.850377722630029 ], [ -81.962064865629969, 28.850427202390872 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grapeland Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961453187005475, 28.847336899910434 ], [ -81.961474707209874, 28.847357660924335 ], [ -81.961541959431514, 28.847410812476809 ], [ -81.961600513894069, 28.847455520437769 ], [ -81.961664272158117, 28.847501375786401 ], [ -81.962563893239746, 28.848084332306833 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grapeland Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962563893239746, 28.848084332306833 ], [ -81.962658363894931, 28.848144981822838 ], [ -81.962728582861743, 28.848187526997499 ], [ -81.962801335533371, 28.848226636856236 ], [ -81.962876400579802, 28.848262191327109 ], [ -81.963035564109148, 28.848332721544033 ], [ -81.963091347856562, 28.848356234730463 ], [ -81.963148146934742, 28.848377782950173 ], [ -81.963717221083996, 28.848582028609371 ], [ -81.96385087249827, 28.848629996932257 ], [ -81.963930762528037, 28.848641040975544 ], [ -81.964033554893305, 28.84864675216209 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boardroom Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959493278877829, 28.850265615782355 ], [ -81.959478625844085, 28.850011978678339 ], [ -81.959475204539203, 28.849886688903304 ], [ -81.959481309531313, 28.84980571152127 ], [ -81.959495233089612, 28.849704109787822 ], [ -81.959512618182373, 28.849624664307374 ], [ -81.95954215513558, 28.849539873614756 ], [ -81.959582969373784, 28.849455850559679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boardroom Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959582969373784, 28.849455850559679 ], [ -81.95961075642667, 28.849406201423108 ], [ -81.959647224284467, 28.849342805553231 ], [ -81.959747938474337, 28.849193099931089 ], [ -81.959951105206073, 28.848882995742887 ], [ -81.959989305844488, 28.848827239212252 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boardroom Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959989305844488, 28.848827239212252 ], [ -81.96001101216568, 28.848790575064591 ], [ -81.960045745211829, 28.848727940110557 ], [ -81.960097845658382, 28.848630170006025 ], [ -81.960168176620073, 28.848512542827041 ], [ -81.960234160719352, 28.84841172067123 ], [ -81.960307953361152, 28.848315483599499 ], [ -81.96038929787774, 28.84821693429765 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boardroom Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96038929787774, 28.84821693429765 ], [ -81.960458516432524, 28.848147298475865 ], [ -81.960531213205513, 28.848080466201413 ], [ -81.96060724056575, 28.848016572771414 ], [ -81.960917874090498, 28.847766998140941 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boardroom Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960917874090498, 28.847766998140941 ], [ -81.961453187005475, 28.847336899910434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boardroom Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961453187005475, 28.847336899910434 ], [ -81.961993180434092, 28.846903036427037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boardroom Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961993180434092, 28.846903036427037 ], [ -81.962121217639876, 28.846800162774208 ], [ -81.962230958206817, 28.846708345226194 ], [ -81.962336397696845, 28.846612702408677 ], [ -81.962437362856704, 28.846513388577517 ], [ -81.962606363638287, 28.846340243475336 ], [ -81.962621218055105, 28.846324796518694 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Junction Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96038929787774, 28.84821693429765 ], [ -81.960550033804012, 28.848346876628661 ], [ -81.960600345147981, 28.848389673318291 ], [ -81.960662803867024, 28.84843323779857 ], [ -81.961504168549851, 28.848973392391439 ], [ -81.961520162672471, 28.848992390509125 ], [ -81.961554681691297, 28.849021088299828 ], [ -81.961602162015438, 28.849064040803299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boardroom Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958032000872606, 28.849780438002252 ], [ -81.957802255531547, 28.849773589750978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boardroom Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955731309844566, 28.850792831175283 ], [ -81.955524451947653, 28.851581163072964 ], [ -81.955514015170479, 28.851634635648487 ], [ -81.955508784901212, 28.851692694559613 ], [ -81.955508759381942, 28.851752283698062 ], [ -81.955520881223038, 28.851813404459012 ], [ -81.955538213444243, 28.851865356812894 ], [ -81.955555547642021, 28.851912729063063 ], [ -81.955654405868771, 28.852065552680067 ], [ -81.955683888575081, 28.852114455620388 ], [ -81.955711642306071, 28.852146549841425 ], [ -81.955753277025451, 28.852186289347767 ], [ -81.9557949167027, 28.852216860518805 ], [ -81.955843496333898, 28.852248964266646 ], [ -81.955892079888528, 28.852271897869699 ], [ -81.955947607393171, 28.852291778525551 ], [ -81.957095611095568, 28.85264866061679 ], [ -81.957235855334957, 28.852687747159074 ], [ -81.957378032991969, 28.852720976403091 ], [ -81.957521830454056, 28.852748278766132 ], [ -81.957666928980714, 28.852769590079031 ], [ -81.957769022993659, 28.852780338878667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Independence Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959816392919578, 28.846639095784933 ], [ -81.959923500310268, 28.846213223053319 ], [ -81.959936528979199, 28.846178849074796 ], [ -81.95995042463602, 28.846149822419306 ], [ -81.959966704557488, 28.846122134592477 ], [ -81.959988405024887, 28.846099222479239 ], [ -81.960020951584468, 28.846078222869124 ], [ -81.960058919788409, 28.846059135946888 ], [ -81.960099057107229, 28.8460438682175 ], [ -81.960140276120654, 28.846035285983156 ], [ -81.960181492562967, 28.846033388921629 ], [ -81.960593771489386, 28.846047328361578 ], [ -81.960692423793532, 28.846055963449569 ], [ -81.960790025192821, 28.846071259885022 ], [ -81.960886001833245, 28.846093125467959 ], [ -81.960979781923328, 28.846121430103679 ], [ -81.961070809056594, 28.846156005806531 ], [ -81.961158543235072, 28.846196648504783 ], [ -81.961242463943918, 28.846243117138879 ], [ -81.961322074250006, 28.846295134564802 ], [ -81.961396897725209, 28.846352392966839 ], [ -81.961475948734815, 28.846415170140837 ], [ -81.961645094150242, 28.846569918907502 ], [ -81.961842429780774, 28.846745683859432 ], [ -81.961909650385763, 28.846820190101564 ], [ -81.961993178384418, 28.846903036426458 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harlow Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959656060648442, 28.847262242542541 ], [ -81.959784039424392, 28.847277560549838 ], [ -81.960177629640938, 28.847321842024435 ], [ -81.9602506094772, 28.84733372805195 ], [ -81.960322150393168, 28.847351114974593 ], [ -81.96039172157802, 28.847373874510748 ], [ -81.960458799409949, 28.84740183507121 ], [ -81.960522886924878, 28.847434789885575 ], [ -81.960583502544878, 28.847472491584927 ], [ -81.960640198523222, 28.847514657621012 ], [ -81.960692548643152, 28.847560977480718 ], [ -81.960917874090498, 28.847766998140941 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jackpot Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956181131409409, 28.848280843271251 ], [ -81.956249613004118, 28.848283860329669 ], [ -81.956300278548554, 28.848291685364273 ], [ -81.957044467959662, 28.848437782067013 ], [ -81.957120793534216, 28.84845418238455 ], [ -81.957204088135015, 28.848465668213642 ], [ -81.957284782527665, 28.848472569451619 ], [ -81.957951175412546, 28.848502573714335 ], [ -81.958129488093178, 28.84851065087966 ], [ -81.95819641589307, 28.848517004094838 ], [ -81.958259637587602, 28.848529026215463 ], [ -81.958316900073257, 28.848542795127045 ], [ -81.958370258537812, 28.848560000590176 ], [ -81.958444430451195, 28.84860127696437 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oglethorpe Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958444430451195, 28.84860127696437 ], [ -81.958676244477886, 28.848255402588684 ], [ -81.95872573528311, 28.848174056879188 ], [ -81.958768718763608, 28.848093855985056 ], [ -81.958809544046815, 28.847987297158102 ], [ -81.958830390548343, 28.847933062330302 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jaguar Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958748944243069, 28.849816947995151 ], [ -81.958764175899475, 28.849703315396159 ], [ -81.958781567916077, 28.849607824311249 ], [ -81.958806560716823, 28.849493240057903 ], [ -81.958840227704997, 28.849384386291241 ], [ -81.958878230495813, 28.849284129205174 ], [ -81.95892925049489, 28.849180056625464 ], [ -81.958984610900401, 28.849070254805813 ], [ -81.95905841087631, 28.848959503940812 ], [ -81.959277639967283, 28.848625340252543 ], [ -81.959393770462057, 28.848440117574089 ], [ -81.959432842218874, 28.848374238491704 ], [ -81.959467583544367, 28.848288303441894 ], [ -81.959500157990718, 28.848200459352132 ], [ -81.959521882728851, 28.848119295365294 ], [ -81.959531449673051, 28.848061619246685 ], [ -81.959537564769164, 28.847956959020721 ], [ -81.959540190818629, 28.84789813578395 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nutmeg Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958208521960444, 28.847237481279731 ], [ -81.958227729157571, 28.846958327314109 ], [ -81.958232978781098, 28.8468529026092 ], [ -81.958229544517764, 28.846761227250241 ], [ -81.95822957667859, 28.846678720396596 ], [ -81.958168290239882, 28.846228419930597 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dragon Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957495291182695, 28.847197978447888 ], [ -81.957508091789066, 28.847014376763727 ], [ -81.957510146150085, 28.846952842851444 ], [ -81.957505940741044, 28.846891396288076 ], [ -81.957495512267855, 28.846830524329938 ], [ -81.957307486076871, 28.845981902732579 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vineyard Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958138329656791, 28.849176438878175 ], [ -81.958092951732397, 28.849163811405411 ], [ -81.958010084109674, 28.849146607445597 ], [ -81.957920982565213, 28.84913626351819 ], [ -81.957759588023364, 28.849133921036131 ], [ -81.957186903236177, 28.849107383490786 ], [ -81.957004692078542, 28.849084406764977 ], [ -81.956713162511207, 28.849028162714045 ], [ -81.95633183227379, 28.848951262181593 ], [ -81.956278660067042, 28.848930144478476 ], [ -81.956237883312681, 28.848912089606717 ], [ -81.956204306033541, 28.848884755951687 ], [ -81.956173082294939, 28.848851513855344 ], [ -81.956154872365886, 28.848822859710111 ], [ -81.956145770976008, 28.848797645416681 ], [ -81.956131472610281, 28.848755242306908 ], [ -81.956127583864856, 28.848717425404043 ], [ -81.956132813859028, 28.848661276623972 ], [ -81.956181131409409, 28.848280843271251 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Junction Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956200908587249, 28.847681528248103 ], [ -81.956297229205646, 28.847668953480966 ], [ -81.956358404364423, 28.847664390543649 ], [ -81.956426082919592, 28.847667849381526 ], [ -81.956487253337755, 28.847677036623686 ], [ -81.957007831298256, 28.847776865616471 ], [ -81.957135286691823, 28.847799446824091 ], [ -81.957263700255282, 28.847817338932259 ], [ -81.957392847541897, 28.84783051209099 ], [ -81.957522503078422, 28.847838939157782 ], [ -81.957992794125417, 28.847860859599866 ], [ -81.958179631449894, 28.847874036488427 ], [ -81.95835577025305, 28.847890134177135 ], [ -81.958472905238679, 28.847903921561187 ], [ -81.958610863601763, 28.847919243763851 ], [ -81.95872366220334, 28.847933792945437 ], [ -81.958830390548343, 28.847933062330302 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ithaca Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956705737439435, 28.847063271149572 ], [ -81.956727057953799, 28.846968094658994 ], [ -81.956737374425146, 28.846915433085833 ], [ -81.956741836232027, 28.846862138013378 ], [ -81.956740406279394, 28.846808712916985 ], [ -81.956733091539718, 28.846755663090125 ], [ -81.956719965602005, 28.846703488433086 ], [ -81.956701152275173, 28.846652680740842 ], [ -81.956357045460535, 28.84588089655584 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Raccoon Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955731309844566, 28.850792831175283 ], [ -81.956486297234861, 28.850943100421066 ], [ -81.956580486944034, 28.850965018103739 ], [ -81.956672451057884, 28.850993328739619 ], [ -81.956767641526866, 28.851026618369655 ], [ -81.957331574501779, 28.851258849880036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pigeon Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955872506887076, 28.850174201904469 ], [ -81.956640180018653, 28.850319586672956 ], [ -81.956755608118129, 28.850345397314307 ], [ -81.956869118326807, 28.850377120951848 ], [ -81.95698032022932, 28.850414649188789 ], [ -81.957088833666248, 28.850457851977325 ], [ -81.957472846259463, 28.850611444468729 ], [ -81.957545505016313, 28.850643935098379 ], [ -81.957608402876716, 28.850676422610427 ], [ -81.957659368113255, 28.850708907236708 ], [ -81.957700572044601, 28.850742344313314 ], [ -81.957747195638248, 28.85078819519541 ], [ -81.957791645750831, 28.850835955559237 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pomegranate Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958011458072065, 28.852300523795162 ], [ -81.958083065439951, 28.852254709040317 ], [ -81.958352140431728, 28.852072397996551 ], [ -81.958523566844519, 28.85195212950109 ], [ -81.958660273188002, 28.851861452040634 ], [ -81.958794802670667, 28.851790826607029 ], [ -81.958891355410799, 28.851746929245863 ], [ -81.959007434350653, 28.851700172953471 ], [ -81.959119169571736, 28.851666783795849 ], [ -81.959245006252033, 28.851630534003338 ], [ -81.959924077422414, 28.851460759246883 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parsley Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95789655791053, 28.851580843402704 ], [ -81.958022414092085, 28.851492073364813 ], [ -81.958148271210518, 28.851408078208575 ], [ -81.958255681875244, 28.851340310581843 ], [ -81.958363086904839, 28.851281137326179 ], [ -81.958485680066886, 28.851218150120381 ], [ -81.958613694099398, 28.851161846043738 ], [ -81.958733245462057, 28.851110889917894 ], [ -81.958856914470616, 28.851070820359325 ], [ -81.958989258148463, 28.851035527432785 ], [ -81.959302757923211, 28.850955407784429 ], [ -81.959617344054209, 28.850871467370947 ], [ -81.959665075875122, 28.850858112246243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ink Spot Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957791645750831, 28.850835955559237 ], [ -81.957841551084897, 28.8508111433853 ], [ -81.957968701819865, 28.850740134773929 ], [ -81.958095634436859, 28.850673329815056 ], [ -81.958212799809004, 28.850621798633973 ], [ -81.958358169037311, 28.850561682534735 ], [ -81.958492687630226, 28.85051206666596 ], [ -81.958641305202676, 28.850465319822298 ], [ -81.958812051797381, 28.850415907871692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boardroom Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957784466206135, 28.85004749978307 ], [ -81.957802255531547, 28.849773589750978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Unicorn Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965736273500269, 28.834364280851315 ], [ -81.965659066540226, 28.834245186293177 ], [ -81.965588320901219, 28.834118993083937 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Twinkle Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965588320901219, 28.834118993083937 ], [ -81.965627223302121, 28.834100281959618 ], [ -81.965662252960939, 28.834076363518449 ], [ -81.965692521244861, 28.834047846594267 ], [ -81.965717254254528, 28.834015453741269 ], [ -81.965735825617827, 28.833980012218984 ], [ -81.965747763673292, 28.833942421510564 ], [ -81.965752763770965, 28.833903638888682 ], [ -81.96575989463966, 28.833714715494381 ], [ -81.965757487898571, 28.833673441515977 ], [ -81.965747229503151, 28.833633114763771 ], [ -81.965729413175652, 28.833594881241915 ], [ -81.965704546819225, 28.833559831967257 ], [ -81.965673336134117, 28.833528965068773 ], [ -81.96563667642684, 28.833503163228155 ], [ -81.965595607533828, 28.833483160283556 ], [ -81.965551300505552, 28.833469525887512 ], [ -81.965465471086063, 28.833450091604309 ], [ -81.965406744254594, 28.833433726679548 ], [ -81.965350402774817, 28.833411800518601 ], [ -81.965297123898083, 28.833384579480153 ], [ -81.965247545914707, 28.833352389465954 ], [ -81.965202266103972, 28.8333156168225 ], [ -81.965135982509125, 28.833255543833072 ], [ -81.965100085732431, 28.833225745722086 ], [ -81.965061361859483, 28.833198835153986 ], [ -81.964918015504736, 28.833107910136867 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Twinkle Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964559714647606, 28.833839147467341 ], [ -81.965372441451009, 28.834123031393723 ], [ -81.96541479532516, 28.834134481759889 ], [ -81.965458678059548, 28.834139859974435 ], [ -81.965502973775145, 28.834139030403264 ], [ -81.965546557316955, 28.834132017119764 ], [ -81.965588320901219, 28.834118993083937 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcdowell Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964344341021985, 28.834251317023018 ], [ -81.964487702691642, 28.833986335462356 ], [ -81.964524925898033, 28.83391320332186 ], [ -81.964559714647606, 28.833839147467341 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcdowell Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964559714647606, 28.833839147467341 ], [ -81.964595467674044, 28.833755877489612 ], [ -81.964670741313753, 28.833571600925463 ], [ -81.964723230825555, 28.833451978618847 ], [ -81.964782029597146, 28.833334649805245 ], [ -81.964847005334676, 28.833219877915791 ], [ -81.964918015504736, 28.833107910136867 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcdowell Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964918015504736, 28.833107910136867 ], [ -81.964971610144758, 28.833030809274288 ], [ -81.965319860195223, 28.832547916711786 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcdowell Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965319860195223, 28.832547916711786 ], [ -81.965538547194612, 28.832244678378103 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valentine Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961257264845031, 28.831140912774199 ], [ -81.961221359128785, 28.83088201487169 ], [ -81.96107201066873, 28.830071777420198 ], [ -81.961060866025704, 28.830001402267076 ], [ -81.961053866366797, 28.829930612348964 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vertigo Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959208002608833, 28.831784753136564 ], [ -81.9595729406864, 28.831680741517957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Watercress Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958962897832961, 28.830111502386348 ], [ -81.959419813799244, 28.830387097713299 ], [ -81.95951904880792, 28.830442708909366 ], [ -81.959622324536426, 28.830492285705905 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Watercress Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959622324536426, 28.830492285705905 ], [ -81.95971789061845, 28.830531391533796 ], [ -81.959815969241831, 28.830565329623333 ], [ -81.959916200778764, 28.830593976245691 ], [ -81.96001821841989, 28.830617226619282 ], [ -81.960121648174393, 28.830634994909904 ], [ -81.960226109894762, 28.830647215133375 ], [ -81.960331220349602, 28.830653844765774 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tuscaloosa Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962243727872462, 28.83098784256519 ], [ -81.962149240343038, 28.830830993027114 ], [ -81.962017143538773, 28.830569391055786 ], [ -81.961939896545175, 28.830422097164892 ], [ -81.961896909582904, 28.830334346338187 ], [ -81.961857247579644, 28.830235971760235 ], [ -81.961835148309902, 28.830169128807562 ], [ -81.961815855009277, 28.830098482515922 ], [ -81.961798963754703, 28.830018997891298 ], [ -81.961782025304231, 28.82988963906061 ], [ -81.961776307759109, 28.829819663424907 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pineapple Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959991794423772, 28.852142163445343 ], [ -81.960151580330972, 28.852288997955608 ], [ -81.960201455668425, 28.852318702191482 ], [ -81.960261418217172, 28.852337262312886 ], [ -81.960314242729197, 28.852341545829677 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grapeland Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959816392919578, 28.846639095784933 ], [ -81.959851531987269, 28.84664598185914 ], [ -81.959902289606902, 28.846652872585139 ], [ -81.959960856949365, 28.846658619690288 ], [ -81.960502290077955, 28.84668742813043 ], [ -81.96059339569085, 28.846694330449267 ], [ -81.960663675863898, 28.846705810326931 ], [ -81.960726936690762, 28.846723324544215 ], [ -81.96078895219118, 28.846749418396694 ], [ -81.960847333485191, 28.846781351788806 ], [ -81.960901379732974, 28.846818740138929 ], [ -81.960957768150209, 28.846860596464936 ], [ -81.961393635449951, 28.847267527966601 ], [ -81.961453187005475, 28.847336899910434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ink Spot Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959493278877829, 28.850265615782355 ], [ -81.959555755815089, 28.850264106094706 ], [ -81.959636728262453, 28.850268890102331 ], [ -81.959694868012662, 28.850272448200133 ], [ -81.959773691700391, 28.850289449600758 ], [ -81.959849030774336, 28.850309267814442 ], [ -81.95992624916201, 28.850335264632673 ], [ -81.959999990752195, 28.850370428698493 ], [ -81.960076335569227, 28.850410940560071 ], [ -81.960160485309103, 28.850463680030394 ], [ -81.960218606337946, 28.850511061072602 ], [ -81.960262846037082, 28.850546216256607 ], [ -81.960301011321519, 28.850586716694 ], [ -81.960340040178451, 28.850636385701758 ], [ -81.960374729453179, 28.850692164733477 ], [ -81.960460564183578, 28.850874774245163 ], [ -81.960522126896734, 28.850995498263455 ], [ -81.960562012318618, 28.851073433077087 ], [ -81.960821155607732, 28.851543754393596 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boardroom Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957802255531547, 28.849773589750978 ], [ -81.957240004129105, 28.849747976057085 ], [ -81.9570273727943, 28.84972973580944 ], [ -81.956907156523883, 28.849715236971843 ], [ -81.956788040354908, 28.849694888733403 ], [ -81.95628166472234, 28.849600416007966 ], [ -81.9562274329991, 28.84959753263626 ], [ -81.95618513300866, 28.849596563313483 ], [ -81.956147164799532, 28.849606101837391 ], [ -81.956109196213291, 28.849621368186604 ], [ -81.956061462515379, 28.849644271155235 ], [ -81.956031082086071, 28.84966908996514 ], [ -81.956011547612164, 28.849692002136763 ], [ -81.955987663935929, 28.849740697166666 ], [ -81.955977889917349, 28.849769342169157 ], [ -81.955962687236081, 28.849812308591549 ], [ -81.955950736455449, 28.849855276979905 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boardroom Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959924077422414, 28.851460759246883 ], [ -81.959865570913294, 28.85129076187987 ], [ -81.959820056575325, 28.851182839765595 ], [ -81.959760449860795, 28.851051994856203 ], [ -81.959665075875122, 28.850858112246243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boardroom Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959665075875122, 28.850858112246243 ], [ -81.95954261485403, 28.850584963796564 ], [ -81.959519855664553, 28.850534343918511 ], [ -81.959507998067181, 28.850460187072333 ], [ -81.959498913296088, 28.850392575482207 ], [ -81.959493278877829, 28.850265615782355 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boardroom Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957769022993659, 28.852780338878667 ], [ -81.958229070970063, 28.85284021706903 ], [ -81.958270122254746, 28.852845431612245 ], [ -81.958318932330599, 28.852847356037966 ], [ -81.958359067140094, 28.852845458300152 ], [ -81.958398118875053, 28.852837831479295 ], [ -81.958438257884396, 28.852825429984172 ], [ -81.958483824711564, 28.852797750517471 ], [ -81.958733376108327, 28.85261543269548 ], [ -81.958969908953321, 28.852436931694445 ], [ -81.959053450462491, 28.852384434888492 ], [ -81.95912939242821, 28.852347215356875 ], [ -81.959202078799279, 28.85231381425216 ], [ -81.959288866916864, 28.852282328463748 ], [ -81.959379990838542, 28.852254662486061 ], [ -81.959467857319098, 28.852235589922145 ], [ -81.959565483273465, 28.852223205418039 ], [ -81.959818223057113, 28.852199408040082 ], [ -81.959863781779234, 28.852193692017494 ], [ -81.959908256979432, 28.852183199754183 ], [ -81.95994731130385, 28.852167932665289 ], [ -81.959991794423772, 28.852142163445343 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boardroom Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955872506887076, 28.850174201904469 ], [ -81.955731309844566, 28.850792831175283 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boardroom Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955950736455449, 28.849855276979905 ], [ -81.955872506887076, 28.850174201904469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pomegranate Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957769022993659, 28.852780338878667 ], [ -81.957801626017186, 28.852626602625122 ], [ -81.957815753574195, 28.852562625497917 ], [ -81.957833127014879, 28.852518704925959 ], [ -81.957862435130579, 28.852465237192849 ], [ -81.957901507280368, 28.852406997512418 ], [ -81.957941659082948, 28.852360219239628 ], [ -81.958011458072065, 28.852300523795162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parsley Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957471407773298, 28.852004322952872 ], [ -81.957489865748499, 28.851957536140691 ], [ -81.957513747280174, 28.85191361585974 ], [ -81.957535459099617, 28.851869694888691 ], [ -81.95756584825061, 28.851826732195249 ], [ -81.957615763998731, 28.851775181195627 ], [ -81.957689326550366, 28.851722109118356 ], [ -81.95789655791053, 28.851580843402704 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Raccoon Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957331574501779, 28.851258849880036 ], [ -81.95753437250093, 28.851343904060951 ], [ -81.957629806740428, 28.851384042558653 ], [ -81.957701380974527, 28.851418442037513 ], [ -81.957757769379526, 28.851455702427984 ], [ -81.957807648631942, 28.851495826473304 ], [ -81.95789655791053, 28.851580843402704 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ink Spot Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957331574501779, 28.851258849880036 ], [ -81.957355451536898, 28.851220661065074 ], [ -81.957386929602407, 28.851166237669606 ], [ -81.957419493376591, 28.851110861775762 ], [ -81.957456387524275, 28.851069811343319 ], [ -81.957504134559159, 28.851020168970727 ], [ -81.957564895490776, 28.850970530690425 ], [ -81.957669048337124, 28.850909448581298 ], [ -81.957791645750831, 28.850835955559237 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ink Spot Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958812051797381, 28.850415907871692 ], [ -81.959130539293795, 28.850337508132913 ], [ -81.959322541603754, 28.850292683904918 ], [ -81.959427762046815, 28.850272661972561 ], [ -81.959493278877829, 28.850265615782355 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vineyard Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956026754289724, 28.847075273398939 ], [ -81.955974782140572, 28.84686555145608 ], [ -81.955950084736472, 28.846787620219771 ], [ -81.955917578682289, 28.846713125105996 ], [ -81.955885069704422, 28.846643210990347 ], [ -81.955835495929122, 28.846571490258381 ], [ -81.955787989558303, 28.846504024560389 ], [ -81.95573508202267, 28.846439750327907 ], [ -81.955677046815836, 28.846379002400379 ], [ -81.955275165495877, 28.845976337029999 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vineyard Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9561047336191, 28.847346885755581 ], [ -81.956026754289724, 28.847075273398939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vineyard Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956200908587249, 28.847681528248103 ], [ -81.9561047336191, 28.847346885755581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vineyard Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956181131409409, 28.848280843271251 ], [ -81.9562150837411, 28.848018436731618 ], [ -81.956225539213762, 28.847916452506684 ], [ -81.956222968926113, 28.847838528535597 ], [ -81.956217792626489, 28.847767478383286 ], [ -81.956211302217596, 28.847726221942214 ], [ -81.956200908587249, 28.847681528248103 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Junction Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959540190818629, 28.84789813578395 ], [ -81.959656460727032, 28.847907339068254 ], [ -81.959874245801856, 28.847931086191569 ], [ -81.959951467020019, 28.84794256851124 ], [ -81.960008444392699, 28.847956614531022 ], [ -81.960072065951422, 28.847978510757528 ], [ -81.960122383529864, 28.848001444267755 ], [ -81.960176170106422, 28.848032781961795 ], [ -81.960220410064352, 28.848067172918618 ], [ -81.96038929787774, 28.84821693429765 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oglethorpe Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95892110934976, 28.847277809362978 ], [ -81.958926770352519, 28.847224016513614 ], [ -81.958942451215052, 28.847066645606962 ], [ -81.958963331582353, 28.846926084438824 ], [ -81.95904962524385, 28.846406563839572 ], [ -81.959073623752531, 28.846313200515393 ], [ -81.959111695087472, 28.84623586913094 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jaguar Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958812051797381, 28.850415907871692 ], [ -81.958795369292076, 28.850363189165421 ], [ -81.95878562543804, 28.850320214777895 ], [ -81.958771559185124, 28.850229489955272 ], [ -81.958755381494086, 28.849997434552957 ], [ -81.958750004919139, 28.849879019728824 ], [ -81.958748944243069, 28.849816947995151 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boardroom Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958748944243069, 28.849816947995151 ], [ -81.958032000872606, 28.849780438002252 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boardroom Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959991794423772, 28.852142163445343 ], [ -81.960023021373345, 28.85211156022687 ], [ -81.960047763354538, 28.852079481608339 ], [ -81.960064046668421, 28.852047972532915 ], [ -81.960077077418063, 28.852007296871374 ], [ -81.960084904499396, 28.851962035049137 ], [ -81.960086864629446, 28.851941980992727 ], [ -81.960085571832593, 28.85191906205279 ], [ -81.960068447092695, 28.851870704225327 ], [ -81.959924077422414, 28.851460759246883 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oglethorpe Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958032000872606, 28.849780438002252 ], [ -81.958034002616699, 28.84967603374535 ], [ -81.958053582274673, 28.849535088888139 ], [ -81.958077057828262, 28.849415918778551 ], [ -81.958105739479947, 28.84930477268545 ], [ -81.958138329656791, 28.849176438878175 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oglethorpe Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958138329656791, 28.849176438878175 ], [ -81.958181324151354, 28.84907102686342 ], [ -81.958225617009518, 28.848975928591322 ], [ -81.958271210335951, 28.848880829804692 ], [ -81.958327218915045, 28.848778859563446 ], [ -81.958381917900226, 28.848694077816724 ], [ -81.958444430451195, 28.84860127696437 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Junction Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958830390548343, 28.847933062330302 ], [ -81.958913692599211, 28.847927740757353 ], [ -81.959069016258738, 28.847919383172016 ], [ -81.959329335405954, 28.847901891599658 ], [ -81.959429987733898, 28.847894986898886 ], [ -81.959540190818629, 28.84789813578395 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oglethorpe Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958830390548343, 28.847933062330302 ], [ -81.95886138559797, 28.847825849008576 ], [ -81.958909470736344, 28.847343740008579 ], [ -81.95892110934976, 28.847277809362978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harlow Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956026754289724, 28.847075273398939 ], [ -81.956138700833932, 28.847048953613012 ], [ -81.956199879502933, 28.847035222416963 ], [ -81.956274071728004, 28.847026079140988 ], [ -81.956353467733351, 28.84702266715675 ], [ -81.95643416336155, 28.847023839261343 ], [ -81.9565031440805, 28.847027299384798 ], [ -81.956585083092293, 28.847040149445366 ], [ -81.956705737439435, 28.847063271149572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harlow Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956705737439435, 28.847063271149572 ], [ -81.957165552236887, 28.847154105621126 ], [ -81.957259174108614, 28.847170769432562 ], [ -81.957353475808929, 28.847184140880255 ], [ -81.957495291182695, 28.847197978447888 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harlow Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957495291182695, 28.847197978447888 ], [ -81.957560819211466, 28.847201778912602 ], [ -81.958031105359922, 28.847223697414115 ], [ -81.958208521960444, 28.847237481279731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harlow Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958208521960444, 28.847237481279731 ], [ -81.958319150502234, 28.847246110096123 ], [ -81.958474247866974, 28.847260482210967 ], [ -81.958632597107709, 28.847274856050685 ], [ -81.958805052698281, 28.847280637760054 ], [ -81.95892110934976, 28.847277809362978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harlow Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95892110934976, 28.847277809362978 ], [ -81.958997683931642, 28.847277322942983 ], [ -81.959103978276531, 28.84727353496562 ], [ -81.959292711171329, 28.847259268155664 ], [ -81.959427207916946, 28.847253579183366 ], [ -81.959526992687728, 28.847251699991297 ], [ -81.959606170066024, 28.847254588633994 ], [ -81.959656060648442, 28.847262242542541 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Independence Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959656060648442, 28.847262242542541 ], [ -81.959816392919578, 28.846639095784933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alteza Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956201968673511, 28.851606455193462 ], [ -81.956989504663255, 28.85187850373234 ], [ -81.957134249466236, 28.851924279710904 ], [ -81.957281376796459, 28.851963726619395 ], [ -81.957471407773298, 28.852004322952872 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alteza Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957471407773298, 28.852004322952872 ], [ -81.957558175468378, 28.852023447673627 ], [ -81.957624332376596, 28.852040657465714 ], [ -81.957695909779702, 28.85206837357012 ], [ -81.957758810871653, 28.85209513136838 ], [ -81.957806526551181, 28.852120930633848 ], [ -81.957862911245982, 28.852165830794714 ], [ -81.957909535428428, 28.852206907514571 ], [ -81.958011458072065, 28.852300523795162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Turtle Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96255191254852, 28.843848968774207 ], [ -81.964422695682885, 28.843656449463179 ], [ -81.964484188498105, 28.843653105544668 ], [ -81.964545728467712, 28.843655706005737 ], [ -81.964635048759291, 28.843661982533025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quartet Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963038079150152, 28.844441489209128 ], [ -81.963834374762996, 28.844359068186801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quartet Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963834374762996, 28.844359068186801 ], [ -81.964431670231974, 28.844297932173703 ], [ -81.9644946258381, 28.844294581419913 ], [ -81.964598501336823, 28.844294192870738 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yale Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962284893127645, 28.845519630676904 ], [ -81.962321658018098, 28.845434405535432 ], [ -81.962361567200176, 28.845351498386069 ], [ -81.962408493275362, 28.845271488687928 ], [ -81.962462168584111, 28.845194841046748 ], [ -81.962522283462789, 28.845121990279786 ], [ -81.962588489312253, 28.845053358560882 ], [ -81.962660409877344, 28.844989338279827 ], [ -81.962737632021472, 28.844930297454052 ], [ -81.962819709827968, 28.844876574316022 ], [ -81.962919940600784, 28.844816024777376 ], [ -81.962957613364324, 28.844789259228619 ], [ -81.962990139122496, 28.844757691981833 ], [ -81.963016734643531, 28.844722078055486 ], [ -81.963036759112583, 28.844683274467812 ], [ -81.963049734636854, 28.844642214074963 ], [ -81.963055347278896, 28.844599880306589 ], [ -81.963053465508139, 28.844557290928979 ], [ -81.963038079150152, 28.844441489209128 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Twilight Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962621218055105, 28.846324796518694 ], [ -81.962689300091085, 28.846247499537039 ], [ -81.96275096904759, 28.846166136755343 ], [ -81.962805912210641, 28.846081119547343 ], [ -81.962853851706711, 28.8459928791466 ], [ -81.962895535126947, 28.845905816314172 ], [ -81.962934906755919, 28.845817922708267 ], [ -81.962966139391455, 28.845752225383649 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Twilight Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963508329521559, 28.845240997096642 ], [ -81.96357290907342, 28.845190885192242 ], [ -81.963631990086213, 28.845135767577517 ], [ -81.963685080482037, 28.845076108814208 ], [ -81.963731727116013, 28.845012413176242 ], [ -81.963771539349935, 28.844945216534768 ], [ -81.963804179827818, 28.844875088160162 ], [ -81.963829374728647, 28.844802617189874 ], [ -81.963846908640278, 28.844728416236016 ], [ -81.96385663788449, 28.844653113268109 ], [ -81.963858477197405, 28.844577340781658 ], [ -81.963852410999863, 28.844501741214966 ], [ -81.963834374762996, 28.844359068186801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Twilight Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962966139391455, 28.845752225383649 ], [ -81.963016616396501, 28.845677468781648 ], [ -81.963067076835543, 28.845605862106318 ], [ -81.963121330446569, 28.845539031457111 ], [ -81.963181006706364, 28.845476975471534 ], [ -81.963239592516871, 28.845426380254526 ], [ -81.963294708517282, 28.845380701632806 ], [ -81.963382583023886, 28.845320563439667 ], [ -81.963439808597798, 28.845281904373259 ], [ -81.963508329521559, 28.845240997096642 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepperidge Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962966137342121, 28.845752224480773 ], [ -81.962914900157244, 28.845731499713665 ], [ -81.962862651774813, 28.845712829198749 ], [ -81.962284893127645, 28.845519630676904 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepperidge Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964743013886718, 28.84679193727165 ], [ -81.964517041068476, 28.846784698120128 ], [ -81.964431715445471, 28.846777128666091 ], [ -81.964347417870641, 28.846763246897655 ], [ -81.964264751956563, 28.846743148621712 ], [ -81.964184307973923, 28.846716981074493 ], [ -81.96410665875618, 28.846684929385734 ], [ -81.964032361747442, 28.846647221090524 ], [ -81.9639619426042, 28.846604127027227 ], [ -81.963895906471294, 28.846555953219308 ], [ -81.963834723632147, 28.846503045382974 ], [ -81.963778831561697, 28.84644577990429 ], [ -81.963728628777346, 28.846384563837393 ], [ -81.963654274809528, 28.846291060315291 ], [ -81.963574162130328, 28.846201321415581 ], [ -81.963488531485638, 28.846115620592368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepperidge Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963488531485638, 28.846115620592368 ], [ -81.96342009653759, 28.84605349985247 ], [ -81.963348761506197, 28.845993961588803 ], [ -81.963274653433572, 28.845937109596733 ], [ -81.963219899650582, 28.845896854469551 ], [ -81.963139835474465, 28.845842668891457 ], [ -81.963055065316837, 28.845794354180242 ], [ -81.962966137342121, 28.845752224480773 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepperidge Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962284893127645, 28.845519630676904 ], [ -81.961898385645014, 28.845387661308209 ], [ -81.961849585469508, 28.84536807283023 ], [ -81.96180566867011, 28.845342753371114 ], [ -81.961764747530012, 28.84531167803619 ], [ -81.961730720565441, 28.845274643114902 ], [ -81.961703397488563, 28.845233528062103 ], [ -81.961683395919223, 28.845189266944885 ], [ -81.96167117357605, 28.845142862359264 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepperidge Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96167117357605, 28.845142862359264 ], [ -81.961667069283308, 28.845100899435145 ], [ -81.96166933431256, 28.845058828246316 ], [ -81.961677930461789, 28.845017395891087 ], [ -81.961694268819912, 28.844976831956359 ], [ -81.961715973957553, 28.844939595449517 ], [ -81.961740933706935, 28.844905702008237 ], [ -81.961776193219208, 28.844873721674805 ], [ -81.96211361489965, 28.844575874781196 ], [ -81.962174915310229, 28.844522892380272 ], [ -81.962242178030493, 28.844472777351587 ], [ -81.96231161091859, 28.844420752715035 ], [ -81.962364770946692, 28.844382092959076 ], [ -81.962423359638947, 28.844325766638804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepperidge Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962423359638947, 28.844325766638804 ], [ -81.962451968797509, 28.844293561395951 ], [ -81.962480616937938, 28.844252698527896 ], [ -81.962507098203488, 28.844207251332328 ], [ -81.962530543068638, 28.844158554079154 ], [ -81.962551390890127, 28.844090377106767 ], [ -81.962559221882202, 28.844032509866512 ], [ -81.962561845791157, 28.843974641174597 ], [ -81.962559261375588, 28.843923074543778 ], [ -81.96255191254852, 28.843848968774207 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Quartet Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962423359638947, 28.844325766638804 ], [ -81.962473781019057, 28.844358630998492 ], [ -81.962512816182382, 28.844387291024518 ], [ -81.962545345019052, 28.844412510536095 ], [ -81.962573972210677, 28.844429707449358 ], [ -81.962603901343343, 28.844445757887467 ], [ -81.962637736890102, 28.844459519351613 ], [ -81.962675478450777, 28.844466405415517 ], [ -81.962727537544424, 28.844471003583106 ], [ -81.962776995661272, 28.844469871364613 ], [ -81.963038079150152, 28.844441489209128 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepperidge Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964598501336823, 28.844294192870738 ], [ -81.964619669958523, 28.84516505852023 ], [ -81.964613960204147, 28.845226448131584 ], [ -81.964603966233497, 28.845292120763506 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepperidge Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964635048759291, 28.843661982533025 ], [ -81.964610665257297, 28.843839711540387 ], [ -81.96460075229389, 28.844016691828894 ], [ -81.964598017034049, 28.844193871608844 ], [ -81.964598501336823, 28.844294192870738 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepperidge Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964740621123369, 28.842925102845093 ], [ -81.964600635542638, 28.843073933083016 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepperidge Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96255191254852, 28.843848968774207 ], [ -81.962503246024951, 28.843458382819854 ], [ -81.962502176964236, 28.843416364814395 ], [ -81.962506530148005, 28.843377213144912 ], [ -81.96251738913611, 28.84333997347289 ], [ -81.962538008697365, 28.843307512429785 ], [ -81.962558624473999, 28.843279823681527 ], [ -81.962584664872765, 28.843254047525811 ], [ -81.96261287340306, 28.843229227510879 ], [ -81.962652297015111, 28.843208299548756 ], [ -81.962692968053531, 28.843195214769882 ], [ -81.962735455032032, 28.843187849301177 ], [ -81.964378816217007, 28.843018560350924 ], [ -81.964425279226518, 28.843017220104823 ], [ -81.964472145807989, 28.843019453083492 ], [ -81.964517260653494, 28.843031688553957 ], [ -81.964556298905507, 28.843048506123679 ], [ -81.964600635542638, 28.843073933083016 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepperidge Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964600635542638, 28.843073933083016 ], [ -81.964633504258543, 28.843100475869338 ], [ -81.964663860554879, 28.843137916947711 ], [ -81.964682068572515, 28.843176119079498 ], [ -81.964693333774591, 28.843219667355068 ], [ -81.964698522619926, 28.843270089608716 ], [ -81.964692434806281, 28.843310578112717 ], [ -81.964660272889049, 28.843480167191405 ], [ -81.964635048759291, 28.843661982533025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Universal Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963530607177645, 28.831799719363509 ], [ -81.963586721547301, 28.831758631737927 ], [ -81.963765504346696, 28.831581441481394 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Universal Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963154638267284, 28.832034783569213 ], [ -81.96328785991436, 28.831965699617413 ], [ -81.963342077878636, 28.831932969656254 ], [ -81.963397790967079, 28.831896971920493 ], [ -81.963530607177645, 28.831799719363509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Universal Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962852415217611, 28.832158242594414 ], [ -81.963083415904734, 28.832071716247572 ], [ -81.963154638267284, 28.832034783569213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vagabond Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963530607177645, 28.831799719363509 ], [ -81.96373575910664, 28.8318906788015 ], [ -81.963960331719647, 28.831992597155516 ], [ -81.96412171650087, 28.832065838270616 ], [ -81.964225976304348, 28.832110442787418 ], [ -81.964345968941089, 28.832153409197613 ], [ -81.964555418847354, 28.832226323267854 ], [ -81.964705852350178, 28.832278692213809 ], [ -81.964886054108078, 28.83234142366009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ybor Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963154638267284, 28.832034783569213 ], [ -81.96321196636724, 28.832154959632639 ], [ -81.963228002715113, 28.832178571105647 ], [ -81.963248815771721, 28.832209213764578 ], [ -81.963274596040662, 28.832247166472399 ], [ -81.963303626005896, 28.832289903197118 ], [ -81.963331076247613, 28.832325880295162 ], [ -81.963367436689254, 28.832363575103692 ], [ -81.963399277006971, 28.832390211789285 ], [ -81.963442205797847, 28.832419254329935 ], [ -81.963491058597157, 28.832444839919628 ], [ -81.96353432581823, 28.832464476864281 ], [ -81.963585171560226, 28.832487552739643 ], [ -81.963638615553549, 28.832511806810682 ], [ -81.963709455213106, 28.83254395624197 ], [ -81.963768923554682, 28.832570944076309 ], [ -81.963837946784608, 28.832602270045381 ], [ -81.963908118825998, 28.832633368905945 ], [ -81.963993114627797, 28.832666348502805 ], [ -81.964064603583211, 28.832691293894307 ], [ -81.96414513246053, 28.832719326650835 ], [ -81.964245506478221, 28.832754270003178 ], [ -81.964308804049239, 28.832776304947032 ], [ -81.964397574790496, 28.832807207275902 ], [ -81.964525103676849, 28.832851030907353 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Xanthus Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964525103676849, 28.832851030907353 ], [ -81.964585666792416, 28.832757944942319 ], [ -81.964623746384831, 28.832705142887153 ], [ -81.964721579923292, 28.832569485849206 ], [ -81.964886054108078, 28.83234142366009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Xanthus Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964365308887011, 28.833096642865165 ], [ -81.964525103676849, 28.832851030907353 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Venetian Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963335787272015, 28.835224672637114 ], [ -81.96334266910678, 28.835219537677133 ], [ -81.963392006665984, 28.835173052506921 ], [ -81.963442971223827, 28.835098117099037 ], [ -81.963650689326542, 28.834671270933811 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Venetian Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962999064347471, 28.835415840692399 ], [ -81.963144810961936, 28.835345536839036 ], [ -81.963225515556303, 28.835296283928258 ], [ -81.963282788718317, 28.835264213529193 ], [ -81.963335787272015, 28.835224672637114 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wekiva Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962171588691362, 28.834899909962726 ], [ -81.96234215875846, 28.834912379928905 ], [ -81.96244173360131, 28.834922833955137 ], [ -81.962540277511394, 28.834939186907956 ], [ -81.962637341702305, 28.834961363773267 ], [ -81.962732483544315, 28.834989263373096 ], [ -81.962825268613386, 28.835022758365866 ], [ -81.963335787272015, 28.835224672637114 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wekiva Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96180276137946, 28.834872943958526 ], [ -81.962171588691362, 28.834899909962726 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belle Glade Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962182111700542, 28.834286460093164 ], [ -81.962401728005204, 28.834295802841439 ], [ -81.962524098541124, 28.834308033509675 ], [ -81.962645492420506, 28.834326314671117 ], [ -81.962765526441302, 28.834350583962994 ], [ -81.962883816380852, 28.834380764586641 ], [ -81.9629999892922, 28.834416765310813 ], [ -81.963113675310652, 28.834458467837063 ], [ -81.963650689326542, 28.834671270933811 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belle Glade Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963650689326542, 28.834671270933811 ], [ -81.964056627476836, 28.834832130742981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wickham Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962171588691362, 28.834899909962726 ], [ -81.962182111700542, 28.834286460093164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wickham Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962182111700542, 28.834286460093164 ], [ -81.962187791375314, 28.833955456408365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcdowell Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958790785059961, 28.835151210352155 ], [ -81.958805031367362, 28.835111046690919 ], [ -81.958829716884168, 28.835033833865616 ], [ -81.958849399070672, 28.834955515981445 ], [ -81.958895499125305, 28.834743827960558 ], [ -81.958907614243131, 28.834705424036624 ], [ -81.958926647390172, 28.834669259045597 ], [ -81.958952095041425, 28.834636296495383 ], [ -81.958983280533673, 28.834607406000615 ], [ -81.959019377637333, 28.834583356071633 ], [ -81.959059429014317, 28.834564781637617 ], [ -81.959102372861949, 28.834552180446014 ], [ -81.959147070592294, 28.834545881490381 ], [ -81.959192336544874, 28.834546053140727 ], [ -81.959281286529858, 28.834556219340346 ], [ -81.959368907911681, 28.834573112685764 ], [ -81.959454544934985, 28.83459660485417 ], [ -81.959537558255477, 28.834626523316047 ], [ -81.959617325967287, 28.834662643214781 ], [ -81.95969325384732, 28.834704693685598 ], [ -81.959764774327965, 28.834752363268851 ], [ -81.959831349574571, 28.834805290887729 ], [ -81.960226609913903, 28.83514796768895 ], [ -81.960286781226898, 28.835197881282941 ], [ -81.960349393384902, 28.835245408966109 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcdowell Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960349393384902, 28.835245408966109 ], [ -81.960442424789363, 28.835308726031727 ], [ -81.960539782662295, 28.835366780240385 ], [ -81.96064108383257, 28.835419346796044 ], [ -81.960745928725828, 28.835466213531021 ], [ -81.960853906481702, 28.835507198051374 ], [ -81.960964589832756, 28.835542141419463 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcdowell Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960964589832756, 28.835542141419463 ], [ -81.961078269777687, 28.835571066270692 ], [ -81.961193796684782, 28.835593614951836 ], [ -81.961569525049839, 28.835656064228299 ], [ -81.961653915783387, 28.835672773800727 ], [ -81.961736792159016, 28.835694584536107 ], [ -81.96174799535487, 28.835697909118867 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcdowell Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96174799535487, 28.835697909118867 ], [ -81.961824261943988, 28.835720541726033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcdowell Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961824261943988, 28.835720541726033 ], [ -81.961945536073671, 28.83575652946157 ], [ -81.962024412487111, 28.835777060317803 ], [ -81.962104820785697, 28.835792311256174 ], [ -81.962186300884042, 28.835802196425284 ], [ -81.962378779718748, 28.835815974536583 ], [ -81.962571698387734, 28.835823590637666 ], [ -81.962636139597663, 28.835824072353855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcdowell Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962886000042857, 28.835822035598238 ], [ -81.962960564400277, 28.835820190196539 ], [ -81.963027440738671, 28.835813903285832 ], [ -81.963092988426027, 28.835800628507556 ], [ -81.96315626462696, 28.835780558698943 ], [ -81.963216366440903, 28.835753976038241 ], [ -81.963576091582354, 28.835570374122263 ], [ -81.963626322750329, 28.835541477792574 ], [ -81.963672770130046, 28.835508030986496 ], [ -81.963714906873491, 28.835470417948606 ], [ -81.963752248134767, 28.83542906353895 ], [ -81.963784371561545, 28.835384442261482 ], [ -81.963810914227281, 28.835337059314366 ], [ -81.964056627476836, 28.834832130742981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcdowell Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964056627476836, 28.834832130742981 ], [ -81.964230150079118, 28.834475548948355 ], [ -81.964259887147222, 28.834416971824375 ], [ -81.964344341021985, 28.834251317023018 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vapor Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959980566406315, 28.834101381095984 ], [ -81.959910724986685, 28.833936301132134 ], [ -81.95989040646954, 28.833849951437415 ], [ -81.959879862437319, 28.833756388900401 ], [ -81.95986921042406, 28.833592266761485 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Umbrella Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960745002253248, 28.833563658701962 ], [ -81.960715365429067, 28.83450388810752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Umbrella Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961286151490398, 28.834774988722124 ], [ -81.961324769181715, 28.834755798731429 ], [ -81.961359430276929, 28.834731444587888 ], [ -81.961389254305672, 28.834702548633867 ], [ -81.961410365528124, 28.834672515971437 ], [ -81.961425995348378, 28.83463737918278 ], [ -81.961434685682747, 28.834596891521468 ], [ -81.961438170995706, 28.83455487475937 ], [ -81.961452213436331, 28.834122480296717 ], [ -81.961474102338357, 28.833586953368638 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Umbrella Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960715365429067, 28.83450388810752 ], [ -81.960714595229717, 28.834551610033625 ], [ -81.960718920026011, 28.834588281081519 ], [ -81.960731918962566, 28.83462800987688 ], [ -81.960750124204068, 28.834663157370318 ], [ -81.960779608157765, 28.83470212762052 ], [ -81.960800421414817, 28.834723524698955 ], [ -81.960825576559145, 28.83474186602113 ], [ -81.96085593541504, 28.834762502519958 ], [ -81.960901041936268, 28.834780850538376 ], [ -81.960966106969096, 28.834793856361056 ], [ -81.96111793586725, 28.834800012594268 ], [ -81.961154375312717, 28.834799257972392 ], [ -81.961191681958155, 28.834797742043367 ], [ -81.961236830828398, 28.834790688196684 ], [ -81.961286151490398, 28.834774988722124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Umbrella Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961397895792118, 28.834986408078972 ], [ -81.961286151490398, 28.834774988722124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zephyrhills Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961776306732105, 28.829819669740775 ], [ -81.962328342071601, 28.829734892185463 ], [ -81.962367526307446, 28.8297301191215 ], [ -81.96240699656552, 28.829727784163278 ], [ -81.962499678230827, 28.82972517891837 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Velvet Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959805997345626, 28.827751948913217 ], [ -81.960047224091383, 28.827963724047706 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vapor Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95986921042406, 28.833592266761485 ], [ -81.959866832911615, 28.833555608894866 ], [ -81.959860043328462, 28.8335021812224 ], [ -81.959846715729213, 28.833449716163781 ], [ -81.95982700563907, 28.833398834551385 ], [ -81.959755938661615, 28.833243534239493 ], [ -81.95973365532349, 28.833188113233184 ], [ -81.95971683016954, 28.833131220389504 ], [ -81.959705585996431, 28.83307326810192 ], [ -81.959700006655183, 28.833014684090859 ], [ -81.959700129885263, 28.83295589425763 ], [ -81.959705956535515, 28.832897327198715 ], [ -81.959753525383874, 28.832577314483551 ], [ -81.95976254820485, 28.83248918696254 ], [ -81.959763499586117, 28.832400706026736 ], [ -81.959756373178237, 28.832312443737671 ], [ -81.959741210792842, 28.832224971267564 ], [ -81.959718116749087, 28.832138855294421 ], [ -81.959680631071606, 28.83202056681851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vapor Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9595729406864, 28.831680741517957 ], [ -81.959494686900442, 28.831433806776598 ], [ -81.959473177719588, 28.831354758106261 ], [ -81.959458355127964, 28.831274526717305 ], [ -81.959450301939953, 28.831193549353998 ], [ -81.959449059978638, 28.831112270868022 ], [ -81.95945463725343, 28.831031132490629 ], [ -81.959467002834103, 28.83095057995186 ], [ -81.959503017189377, 28.830767282387889 ], [ -81.959519731826902, 28.8307015587813 ], [ -81.959543669773169, 28.830637589628019 ], [ -81.95957459919822, 28.830575991131024 ], [ -81.959622324536426, 28.830492285705905 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vapor Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959680631071606, 28.83202056681851 ], [ -81.9595729406864, 28.831680741517957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcdowell Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965538547194612, 28.832244678378103 ], [ -81.965634672217234, 28.832111383373995 ], [ -81.965688722877019, 28.832031060188807 ], [ -81.965737042226621, 28.831947953703896 ], [ -81.965779446751256, 28.831862379686378 ], [ -81.965815775476869, 28.831774667443291 ], [ -81.965845887925084, 28.831685146286212 ], [ -81.965869673330374, 28.831594159970475 ], [ -81.965887036297005, 28.831502057668455 ], [ -81.965897912172224, 28.831409184950182 ], [ -81.965902263966996, 28.831315898219522 ], [ -81.965904588500592, 28.831114814922206 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcdowell Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965904588500592, 28.831114814922206 ], [ -81.965904793074102, 28.831097223573746 ], [ -81.965909840610664, 28.831007056294489 ], [ -81.965922870233356, 28.830917512728686 ], [ -81.965943801817545, 28.830829137847868 ], [ -81.965972507081801, 28.830742470293941 ], [ -81.966008810612351, 28.830658044184069 ], [ -81.966052489869696, 28.830576371064787 ], [ -81.966103280308602, 28.830497951643348 ], [ -81.966160870258605, 28.830423264959059 ], [ -81.966224908098283, 28.830352764775995 ], [ -81.966292287707716, 28.8302842576968 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcdowell Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966532260311183, 28.829954496921488 ], [ -81.96655253686059, 28.829918756122932 ], [ -81.966635804910339, 28.8297760181078 ], [ -81.96666112840991, 28.829725975152666 ], [ -81.966680016605835, 28.829673773177412 ], [ -81.966692238748522, 28.82962005547332 ], [ -81.966697645035339, 28.829565476178701 ], [ -81.966698511772663, 28.829339412044074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcdowell Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966292287707716, 28.8302842576968 ], [ -81.966309590010994, 28.830266664317339 ], [ -81.966371730333137, 28.830198144153744 ], [ -81.966427476900719, 28.830125483475193 ], [ -81.96647647400907, 28.830049141475598 ], [ -81.966532260311183, 28.829954496921488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodbridge Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965117742359837, 28.831681392420215 ], [ -81.965124881976635, 28.831707091105653 ], [ -81.965169139509101, 28.831774191897818 ], [ -81.965193155630402, 28.831794457643984 ], [ -81.965221992774858, 28.831803014479277 ], [ -81.965256213508553, 28.831799810212207 ], [ -81.965281925855322, 28.831788468528799 ], [ -81.965301422973994, 28.831775421678106 ], [ -81.965317618113119, 28.831751348669787 ], [ -81.965326526930014, 28.831717243722746 ], [ -81.965324756905034, 28.831678536955433 ], [ -81.965279448699988, 28.831603160874153 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodbridge Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963405021278675, 28.831007618403472 ], [ -81.963481630144713, 28.831062259562383 ], [ -81.963562000201449, 28.831112535427916 ], [ -81.963645814885993, 28.831158245595422 ], [ -81.963732737133526, 28.831199206799056 ], [ -81.963822422696879, 28.831235257427053 ], [ -81.963914510926074, 28.831266253007858 ], [ -81.964001177245095, 28.831295258386454 ], [ -81.964085735300387, 28.831328742203571 ], [ -81.964167885932781, 28.831366584376358 ], [ -81.964247344331426, 28.831408653096403 ], [ -81.964323826714562, 28.831454799412217 ], [ -81.964389791205747, 28.831493531339046 ], [ -81.96445924040151, 28.831527214838793 ], [ -81.964531674328697, 28.831555607053328 ], [ -81.964859443771388, 28.831669711518124 ], [ -81.964906555592009, 28.83168324852516 ], [ -81.964955188785865, 28.83169163192861 ], [ -81.965004619956133, 28.8316947334107 ], [ -81.965054112355801, 28.831692509468251 ], [ -81.965102929211625, 28.831684994197488 ], [ -81.965117742359837, 28.831681392420215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodbridge Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965279448699988, 28.831603160874153 ], [ -81.965285176048411, 28.831599072191135 ], [ -81.965322754063763, 28.831563849468459 ], [ -81.965354593115535, 28.831524486368266 ], [ -81.965380115040972, 28.831481700982895 ], [ -81.9653988482264, 28.83143627639787 ], [ -81.965410457329327, 28.831389040848517 ], [ -81.965414721761931, 28.831340859593418 ], [ -81.96542966739861, 28.83004812642967 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodbridge Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96542966739861, 28.83004812642967 ], [ -81.965429808753797, 28.830035980493673 ], [ -81.965434632522246, 28.829960346641112 ], [ -81.965447313258537, 28.829885421315328 ], [ -81.965467746218977, 28.829811836103048 ], [ -81.965495753913274, 28.829740210841084 ], [ -81.965531107624415, 28.829671150012658 ], [ -81.965573501794879, 28.829605235522742 ], [ -81.965622582719774, 28.829543021291652 ], [ -81.965719095625218, 28.829428117120919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Springdale Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965719095625218, 28.829428117120919 ], [ -81.965978646228976, 28.829133216651847 ], [ -81.966052346282211, 28.829043123549642 ], [ -81.966120023369541, 28.828949437699734 ], [ -81.966181457094933, 28.828852472156655 ], [ -81.966236438333283, 28.828752549902678 ], [ -81.966284787674894, 28.82865000114549 ], [ -81.966372187165348, 28.828448394083786 ], [ -81.966404521409615, 28.828366077344139 ], [ -81.966430871095511, 28.828282123215352 ], [ -81.966451133661408, 28.828196868236422 ], [ -81.966465223963866, 28.828110655266013 ], [ -81.966473086574752, 28.828023828974139 ], [ -81.966474693731072, 28.827936737646088 ], [ -81.966471774049779, 28.827770138262547 ], [ -81.966473693565575, 28.827689870267147 ], [ -81.966482256820825, 28.827609938684557 ], [ -81.966497417553214, 28.827530770293951 ], [ -81.96654400294824, 28.827332031269474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Springdale Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96654400294824, 28.827332031269474 ], [ -81.966631128717609, 28.826960334223426 ], [ -81.966636637649373, 28.826920784691964 ], [ -81.966634788678022, 28.826880972566094 ], [ -81.966625627582687, 28.826841949046663 ], [ -81.96660939790155, 28.826804755456948 ], [ -81.966586529676363, 28.826770371808728 ], [ -81.966557631256748, 28.826739709581929 ], [ -81.966523465741375, 28.826713585552259 ], [ -81.96648493971783, 28.826692686598864 ], [ -81.96644307354795, 28.826677570599699 ], [ -81.966398976786365, 28.82666863664959 ], [ -81.965507501793851, 28.826554278668318 ], [ -81.965372819911835, 28.826538180232752 ], [ -81.965237806335907, 28.826524396901334 ], [ -81.964787489174, 28.826482337660433 ], [ -81.964663970164679, 28.826468603685772 ], [ -81.964541171964314, 28.826450545022144 ], [ -81.964419289259681, 28.8264281905969 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Springdale Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962959483728113, 28.826194544044078 ], [ -81.962931022573002, 28.82622540328175 ], [ -81.962908609571997, 28.82625991041197 ], [ -81.962892834220355, 28.826297160584694 ], [ -81.962759686182423, 28.826711687730537 ], [ -81.962722845960258, 28.826837685838317 ], [ -81.96269281290148, 28.826965079889757 ], [ -81.962561801728015, 28.827595390893414 ], [ -81.962538175862633, 28.827698838506965 ], [ -81.962510465960051, 28.827801498162859 ], [ -81.962503119920825, 28.827827826381323 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Springdale Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963703618954241, 28.82621176907282 ], [ -81.96363041475837, 28.826190873470438 ], [ -81.963555888423087, 28.826173990037244 ], [ -81.963480322720571, 28.826161176595633 ], [ -81.96320442177236, 28.826122113500023 ], [ -81.963159821378909, 28.826119009072961 ], [ -81.963115234103498, 28.826122248768119 ], [ -81.963071813712887, 28.826131743573885 ], [ -81.963030688414037, 28.826147249275923 ], [ -81.96299291679577, 28.826168365542525 ], [ -81.962959483728113, 28.826194544044078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Springdale Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964419289259681, 28.8264281905969 ], [ -81.964299073069171, 28.826401709343731 ], [ -81.964180145330573, 28.826371050636972 ], [ -81.964062690476723, 28.826336259644783 ], [ -81.963946897034035, 28.826297393266938 ], [ -81.963703618954241, 28.82621176907282 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Briggs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964442769687452, 28.828674452685497 ], [ -81.9644805949561, 28.828648061140111 ], [ -81.964558202382179, 28.828589747382097 ], [ -81.964630800761242, 28.828526631077128 ], [ -81.96469801085496, 28.828459043280848 ], [ -81.964759472888773, 28.828387338514052 ], [ -81.964814867044154, 28.828311897474958 ], [ -81.964863901165941, 28.828233117110351 ], [ -81.964906315885102, 28.828151411518903 ], [ -81.964941887692135, 28.828067212854339 ], [ -81.964970428939793, 28.827980962301936 ], [ -81.964991791939497, 28.827893115493481 ], [ -81.965005859740899, 28.827804137090837 ], [ -81.965012561503627, 28.827714493571346 ], [ -81.965016785356326, 28.827637854379848 ], [ -81.965024323888002, 28.827561411850947 ], [ -81.965073788941112, 28.827150713653918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zeppelin Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963929283314485, 28.828187468081456 ], [ -81.964109770510504, 28.827978010268886 ], [ -81.96415794037253, 28.827916516354591 ], [ -81.964199594605475, 28.827851437619785 ], [ -81.964234391823055, 28.82778330814622 ], [ -81.964262050063027, 28.827712687295538 ], [ -81.964282341665992, 28.827640152489113 ], [ -81.964295098398139, 28.827566299209156 ], [ -81.964334849495188, 28.827236289464903 ], [ -81.96434921752774, 28.82708303704603 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zeppelin Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96434921752774, 28.82708303704603 ], [ -81.964355459077225, 28.826929694943388 ], [ -81.964357234457907, 28.826805375316045 ], [ -81.96436254891745, 28.826708015805913 ], [ -81.964375682224116, 28.826611229528066 ], [ -81.964396566561376, 28.826515508220552 ], [ -81.964419289259681, 28.8264281905969 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Coronaca Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96434921752774, 28.82708303704603 ], [ -81.965073788941112, 28.827150713653918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Coronaca Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965808341171211, 28.827237662224903 ], [ -81.96654400294824, 28.827332031269474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Coronaca Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965073788941112, 28.827150713653918 ], [ -81.965161386484667, 28.827158893259366 ], [ -81.965282366729909, 28.827171244687676 ], [ -81.965403050188343, 28.827185670338846 ], [ -81.965808341171211, 28.827237662224903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodbridge Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962503119920825, 28.827827826381323 ], [ -81.962483996522096, 28.827910768470272 ], [ -81.9624707051222, 28.827994590129908 ], [ -81.962463294009183, 28.828078971958156 ], [ -81.962461792002401, 28.828163596351395 ], [ -81.962477508981337, 28.829077177257957 ], [ -81.962481202140765, 28.829215389380952 ], [ -81.962499678230827, 28.82972517891837 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodbridge Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962499678230827, 28.82972517891837 ], [ -81.962502743213733, 28.829809773886875 ], [ -81.96250889463596, 28.829882710086942 ], [ -81.96252201002541, 28.829954925478702 ], [ -81.962541996334338, 28.830025911132331 ], [ -81.962568707229622, 28.830095160809137 ], [ -81.962601958459985, 28.830162178184391 ], [ -81.962641510432263, 28.830226487670259 ], [ -81.96268708153292, 28.830287630810538 ], [ -81.962738346076975, 28.830345170791706 ], [ -81.963238905085831, 28.830860621358401 ], [ -81.963291452205098, 28.830912052849406 ], [ -81.963346871389362, 28.830961095790759 ], [ -81.963405021278675, 28.831007618403472 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tuscaloosa Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961776306732105, 28.829819669740775 ], [ -81.96176467378001, 28.829401791193348 ], [ -81.961747005820911, 28.828374273398257 ], [ -81.961744571058972, 28.827837943208305 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valentine Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961053866366797, 28.829930612348964 ], [ -81.961051138758208, 28.829867564570417 ], [ -81.96104070272078, 28.829260444274059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valentine Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96104070272078, 28.829260444274059 ], [ -81.961027271488931, 28.828479153154056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valentine Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961027271488931, 28.828479153154056 ], [ -81.961018073116577, 28.827944039118748 ], [ -81.961018506569985, 28.82790848557978 ], [ -81.9610210261975, 28.827872997611632 ], [ -81.961029563723116, 28.827788091946282 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bryant Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960458395564061, 28.829265588880414 ], [ -81.96104070272078, 28.829260444274059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chambers Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959837465730203, 28.826423426093367 ], [ -81.959943318161592, 28.826423981004634 ], [ -81.959989554372228, 28.826425902250005 ], [ -81.961666986801276, 28.826556683396671 ], [ -81.961704539293365, 28.826558497812943 ], [ -81.96174214485896, 28.826558098870461 ], [ -81.961983997945524, 28.826548395467867 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tuscaloosa Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961888130632971, 28.827237096961454 ], [ -81.96194454051799, 28.827030600649067 ], [ -81.961968276688225, 28.826898539146814 ], [ -81.961982940794599, 28.826754730622348 ], [ -81.961983997945524, 28.826548395467867 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tuscaloosa Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961983997945524, 28.826548395467867 ], [ -81.961953446664623, 28.826256209316629 ], [ -81.961915293660695, 28.82590844598656 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tuscaloosa Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961744571058972, 28.827837943208305 ], [ -81.961752551156067, 28.827729229925151 ], [ -81.961778638690348, 28.827601623836863 ], [ -81.961812920298428, 28.827485171701163 ], [ -81.961857514925015, 28.827338077371952 ], [ -81.961888130632971, 28.827237096961454 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tuscaloosa Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961884995676286, 28.825270540205032 ], [ -81.961874866910165, 28.825092724723323 ], [ -81.961866080135238, 28.825041301448504 ], [ -81.961822178962564, 28.824910191617441 ], [ -81.961756417811728, 28.824794967922323 ], [ -81.961696906117865, 28.824709957986279 ], [ -81.961635586393484, 28.824662875164314 ], [ -81.961551073836702, 28.824631049143736 ], [ -81.961434512803677, 28.824613951295397 ], [ -81.961103119649124, 28.82456762694234 ], [ -81.960756581609985, 28.824519186855756 ], [ -81.96049183823169, 28.824482178729966 ], [ -81.960232235295379, 28.824445888940645 ], [ -81.960110395580557, 28.824434780621743 ], [ -81.960041707682507, 28.824446226773393 ], [ -81.95998011920922, 28.824471411755496 ], [ -81.959947369299826, 28.824492417685168 ], [ -81.959903586685869, 28.824533503911976 ], [ -81.959878963774301, 28.824568501646578 ], [ -81.959857144120605, 28.824619661469871 ], [ -81.959849433143305, 28.824661200572084 ], [ -81.959848488703756, 28.82479309350207 ], [ -81.95984612287269, 28.825142995577128 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amici Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95984612287269, 28.825142995577128 ], [ -81.959951975037271, 28.825143550480373 ], [ -81.959998209659673, 28.825145470819809 ], [ -81.961654793548092, 28.825274628982516 ], [ -81.961690887542673, 28.825276415014969 ], [ -81.961727036598091, 28.825276154616787 ], [ -81.961884995676286, 28.825270540205032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tuscaloosa Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961915293660695, 28.82590844598656 ], [ -81.9618980555815, 28.825555475015701 ], [ -81.961886893463642, 28.82531194860216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tuscaloosa Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961886893463642, 28.82531194860216 ], [ -81.961884995676286, 28.825270540205032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tuscaloosa Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96218764959977, 28.82530246453344 ], [ -81.961886893463642, 28.82531194860216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03714586704983, 28.918286997703014 ], [ -82.037138690347646, 28.917934387749995 ], [ -82.037131756246239, 28.917618252132524 ], [ -82.037127100329258, 28.917312121443828 ], [ -82.037112225355415, 28.916455525107725 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037491440358593, 28.926674065855082 ], [ -82.037494250183684, 28.92657201101327 ], [ -82.037487348446831, 28.926345915832307 ], [ -82.037466747720288, 28.925975762171511 ], [ -82.037446803358833, 28.925694695509872 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037998185606554, 28.922154150324783 ], [ -82.037372484673313, 28.92216844921585 ], [ -82.0372851496127, 28.922182766333211 ], [ -82.037236161930508, 28.922217633560841 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mission Hills Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96917407306735, 28.918125457257442 ], [ -81.969118617990929, 28.918139418348265 ], [ -81.969028465076562, 28.918155877976353 ], [ -81.968936982148804, 28.918165058409325 ], [ -81.968844930200675, 28.918166880419452 ], [ -81.96875307123112, 28.918161331551211 ], [ -81.968673942799612, 28.91819803834094 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mission Hills Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968673942799612, 28.91819803834094 ], [ -81.968798769771155, 28.918224126705233 ], [ -81.968865523007352, 28.918231561824186 ], [ -81.968930692671648, 28.91824629973085 ], [ -81.968993247153605, 28.918268106493873 ], [ -81.96905220204718, 28.918296641723522 ], [ -81.969106628356755, 28.918331450452762 ], [ -81.969110254898425, 28.918334113966313 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hendry Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011230438862185, 28.856511174391564 ], [ -82.011247712081783, 28.856491732882485 ], [ -82.011327277794535, 28.856385944019166 ], [ -82.011388016218305, 28.856297893209383 ], [ -82.011481865607493, 28.856139227151949 ], [ -82.011965245734487, 28.855148237536856 ], [ -82.01203838423524, 28.854994050036545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978042001599206, 28.847858129244891 ], [ -81.978053604438628, 28.847855780638781 ], [ -81.978235331132822, 28.847811638794283 ], [ -81.978414728602303, 28.847760642412648 ], [ -81.978591463719681, 28.847702885289543 ], [ -81.978765206430722, 28.847638479268877 ], [ -81.978935634882433, 28.847567537099675 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985841840621262, 28.846508541594808 ], [ -81.985944937268016, 28.846567964843437 ], [ -81.98607719251288, 28.846651643244165 ], [ -81.986205196257885, 28.846740300902926 ], [ -81.986328705645889, 28.846833768173173 ], [ -81.986716111951523, 28.847140077994467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000756481986372, 28.847327672863763 ], [ -82.000798927842169, 28.847316434615962 ], [ -82.000991117297886, 28.847272535338305 ], [ -82.001185390148848, 28.847235818136493 ], [ -82.001371408875301, 28.847208010969698 ], [ -82.001497687638235, 28.84719600239168 ], [ -82.001670955406055, 28.847190065886128 ], [ -82.001792234113807, 28.847193112046845 ], [ -82.001825598874177, 28.847195579580021 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Justice Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109501111292687, 28.664159737302541 ], [ -82.10950189564322, 28.664884316415826 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110536758278343, 28.664890558427665 ], [ -82.10950189564322, 28.664884316415826 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Mccollum Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11055391218845, 28.66416202431688 ], [ -82.109501111292687, 28.664159737302541 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Court Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108611156098746, 28.664153168229703 ], [ -82.108607528125987, 28.664884822452901 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108607528125987, 28.664884822452901 ], [ -82.107945745858643, 28.664885346420885 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Mccollum Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109501111292687, 28.664159737302541 ], [ -82.109439212159714, 28.664159602864636 ], [ -82.108669893705496, 28.664154024722222 ], [ -82.108611156098746, 28.664153168229703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Law Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107916472920763, 28.663361229685307 ], [ -82.107917284576061, 28.66414613346711 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Mccollum Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108611156098746, 28.664153168229703 ], [ -82.108151701854524, 28.664146464103254 ], [ -82.107917284576061, 28.66414613346711 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Anderson Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107916472920763, 28.663361229685307 ], [ -82.107506180015122, 28.663356895529081 ], [ -82.106876523956018, 28.663349418647407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moyer Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962621218055105, 28.846324796518694 ], [ -81.962737989700244, 28.846402432694479 ], [ -81.963062025799601, 28.846617868351796 ], [ -81.963427670217598, 28.846860966629887 ], [ -81.963752371894429, 28.847071484132311 ], [ -81.963862982752019, 28.847131675186905 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moyer Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957743592633463, 28.845698999727283 ], [ -81.957936540199128, 28.845760282619683 ], [ -81.958181305522302, 28.845836775300302 ], [ -81.958252028260773, 28.845854216304975 ], [ -81.958302946982741, 28.845864486819693 ], [ -81.958360021239415, 28.845873793754649 ], [ -81.958436017146838, 28.845882666192509 ], [ -81.958497955223095, 28.84588697850393 ], [ -81.958553057710546, 28.845888638606095 ], [ -81.958649290199659, 28.845886648884907 ], [ -81.958711715563354, 28.845882018491842 ], [ -81.95877412558103, 28.845874726262043 ], [ -81.958849004664017, 28.845862390320899 ], [ -81.958912299523789, 28.845848821856425 ], [ -81.958978738999491, 28.845831519676778 ], [ -81.959201288523346, 28.845770854090585 ], [ -81.959428943012327, 28.845708795614481 ], [ -81.959547270910292, 28.845677214473056 ], [ -81.95963007223132, 28.845658225071563 ], [ -81.959757583408035, 28.845634827713646 ], [ -81.959848780626473, 28.845622315640647 ], [ -81.959961231050684, 28.845611620767901 ], [ -81.960061077009357, 28.845606440560864 ], [ -81.960166794687083, 28.845605340444436 ], [ -81.960288916790603, 28.845609621033773 ], [ -81.960439088075134, 28.84561763900399 ], [ -81.96071946026872, 28.845632612006536 ], [ -81.960896078752654, 28.845642319094601 ], [ -81.961011364212212, 28.845652270741756 ], [ -81.961124660969091, 28.845666440898846 ], [ -81.961224641392874, 28.84568262287101 ], [ -81.961336487104305, 28.845704905968784 ], [ -81.961430213909992, 28.845727071888373 ], [ -81.961552638825111, 28.845760989472065 ], [ -81.961656637548643, 28.845794400907934 ], [ -81.961774595005195, 28.845837673027901 ], [ -81.961865559403805, 28.845872891522365 ], [ -81.961982678045899, 28.845926400787761 ], [ -81.962072035675519, 28.845969971336203 ], [ -81.962155317334719, 28.846015831069394 ], [ -81.962225585073725, 28.846057869435523 ], [ -81.962386937871969, 28.846162576800385 ], [ -81.962621218055105, 28.846324796518694 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moyer Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95353310915219, 28.84787441456383 ], [ -81.953549081653293, 28.847867093359529 ], [ -81.953583530809965, 28.84779636086931 ], [ -81.953610619661106, 28.847736637570918 ], [ -81.953727593982435, 28.847478744721748 ], [ -81.953763079335658, 28.847402673593901 ], [ -81.953794628327771, 28.847344769934956 ], [ -81.95383986770382, 28.847274123190925 ], [ -81.953902013303278, 28.847193220303005 ], [ -81.953956398634091, 28.847133267174332 ], [ -81.95411101137293, 28.846987766353276 ], [ -81.954412211153397, 28.846708255021472 ], [ -81.954765382323174, 28.846382997341429 ], [ -81.955275165495877, 28.845976337029999 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moyer Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961251145128642, 28.860246560451237 ], [ -81.96112332979672, 28.860304748308053 ], [ -81.961085389641809, 28.860317785543064 ], [ -81.961034681532922, 28.860338626702614 ], [ -81.960968269462043, 28.860363061669851 ], [ -81.960899309125949, 28.860385176038307 ], [ -81.960845569215891, 28.860400214427745 ], [ -81.960779599988484, 28.860416152431977 ], [ -81.96072989001415, 28.860426379963435 ], [ -81.960667459910766, 28.860437115358931 ], [ -81.960610708254976, 28.860444877493777 ], [ -81.960530485696466, 28.860452671509293 ], [ -81.960444228879027, 28.860461052904935 ], [ -81.96036824037634, 28.860471760708624 ], [ -81.960294542661217, 28.860485185082268 ], [ -81.960137017340301, 28.860520060307991 ], [ -81.959952844246629, 28.86056650306837 ], [ -81.959752994835554, 28.860623969745035 ], [ -81.95965030935632, 28.860656447156348 ], [ -81.959516228823063, 28.8607019641547 ], [ -81.959321117548953, 28.86077469679924 ], [ -81.959211694067193, 28.860818987507951 ], [ -81.959102383256692, 28.860865837998631 ], [ -81.958937541913755, 28.86094160923474 ], [ -81.958835617631507, 28.860991667652126 ], [ -81.958746938776628, 28.861037298844348 ], [ -81.958576322271625, 28.861130782799489 ], [ -81.958384534201684, 28.861245376603421 ], [ -81.95830493731134, 28.861296092092314 ], [ -81.958133787229301, 28.861411875762482 ], [ -81.958019629049744, 28.861494563376677 ], [ -81.957879051937937, 28.861601920628555 ], [ -81.957777020613392, 28.861675446231636 ], [ -81.957683715483128, 28.861737381703204 ], [ -81.957589033198389, 28.861795490003534 ], [ -81.957510342943237, 28.861840406196784 ], [ -81.957398300893516, 28.861899428318818 ], [ -81.9573191939417, 28.861937817902785 ], [ -81.95719716309307, 28.8619920319145 ], [ -81.957118286195779, 28.862024005169648 ], [ -81.95699996382389, 28.862067675861361 ], [ -81.956897475610972, 28.862100972326775 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961251236506769, 28.859999231660467 ], [ -81.961280418517532, 28.85996829188575 ], [ -81.96131436387391, 28.859941380213716 ], [ -81.961352362919314, 28.85991905925324 ], [ -81.961393621253251, 28.859901795640539 ], [ -81.961437276338884, 28.859889950284007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961427664119782, 28.860364133679585 ], [ -81.961386050679693, 28.860349036089499 ], [ -81.96134697588532, 28.860329371932458 ], [ -81.96131108308029, 28.860305464968064 ], [ -81.961278963217353, 28.860277708811203 ], [ -81.961251145128642, 28.860246560451237 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961503409487463, 28.860367314377907 ], [ -81.961427664119782, 28.860364133679585 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961682187683934, 28.860308232089732 ], [ -81.961682068753092, 28.860308324090841 ], [ -81.961651172232493, 28.860329312118779 ], [ -81.961617075189423, 28.860346024230832 ], [ -81.961580535145501, 28.860358089139467 ], [ -81.961542363898673, 28.860365238802437 ], [ -81.961503409487463, 28.860367314377907 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96177572424061, 28.86015360469565 ], [ -81.961768595594052, 28.860187129215678 ], [ -81.961756167112327, 28.860219433534034 ], [ -81.961738687262368, 28.860249871818851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961616348711573, 28.859906280049216 ], [ -81.961654134435619, 28.859924593250415 ], [ -81.961688187507519, 28.859947899494184 ], [ -81.96171766411581, 28.859975621269832 ], [ -81.961741833848521, 28.860007071652689 ], [ -81.961760097792435, 28.860041471325356 ], [ -81.96177200337408, 28.860077967888422 ], [ -81.961777255574546, 28.860115656982131 ], [ -81.96177572424061, 28.86015360469565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961251145128642, 28.860246560451237 ], [ -81.961234828386424, 28.860206671864404 ], [ -81.961224918233938, 28.860165183151715 ], [ -81.961221604154261, 28.860122887613436 ], [ -81.961224949507454, 28.860080593976033 ], [ -81.961234890319602, 28.860039110928682 ], [ -81.961251236506769, 28.859999231660467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961536773313199, 28.859886658333409 ], [ -81.961577406101185, 28.85989381318986 ], [ -81.961616348711573, 28.859906280049216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fireside Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990534372932444, 28.859785402193769 ], [ -81.990544811449823, 28.859510379623025 ], [ -81.990565684174314, 28.859463113885887 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bucklin Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991664064721519, 28.860153512682622 ], [ -81.991792089615927, 28.859881170907112 ], [ -81.991796430587897, 28.859865892454433 ], [ -81.991796429792799, 28.859850612830343 ], [ -81.991791226426912, 28.859820817511526 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bureau Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990710627546136, 28.863086313436369 ], [ -81.990691958333457, 28.862819387126596 ], [ -81.990683792443591, 28.862739180743361 ], [ -81.990663553492666, 28.862622100852434 ], [ -81.990630650191861, 28.862456396698096 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Teasdale Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994849625957031, 28.860954239726777 ], [ -81.994922969702031, 28.860692972242425 ], [ -81.994958770713254, 28.860641406028211 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rosebriar Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996665637894822, 28.860580343371108 ], [ -81.996724507414513, 28.86054964848449 ], [ -81.996797794931354, 28.860467795075923 ], [ -81.996840625200861, 28.860417351001352 ], [ -81.996967214219751, 28.860272680362414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rosebriar Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996139063448453, 28.86129710847673 ], [ -81.996267943473299, 28.861069644039322 ], [ -81.996277056304976, 28.86102438020454 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vision Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003714886551364, 28.840269645340634 ], [ -82.004247657447408, 28.840282050890416 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hopewell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010082269962737, 28.953912090799204 ], [ -82.010068449995302, 28.954197274621563 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 43rd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032350630489915, 28.817933112479874 ], [ -82.032337806382287, 28.81863015322509 ], [ -82.032336143237387, 28.819449935142565 ], [ -82.032368708296531, 28.819682227972862 ], [ -82.03235729670412, 28.819864029739819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104389687108451, 28.664883164822591 ], [ -82.104350083271257, 28.664883131927244 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.097804104258756, 28.758826551183535 ], [ -82.099153082683856, 28.7572930535814 ], [ -82.100111961324785, 28.756175157342593 ], [ -82.100124098087875, 28.756160985674818 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099794104481347, 28.756141827780741 ], [ -82.099216632197255, 28.756817475893765 ], [ -82.098544566011768, 28.757622708346407 ], [ -82.098138553840187, 28.758107678437071 ], [ -82.09762886937348, 28.758708556363985 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sandpiper Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021918067402964, 28.906318763211839 ], [ -82.021863199440205, 28.906339910025469 ], [ -82.021819792566276, 28.906355959733702 ], [ -82.021783330874129, 28.906362077643763 ], [ -82.021737317625579, 28.90636437671488 ], [ -82.020748053204343, 28.906350089876199 ], [ -82.020469242647962, 28.906346663796665 ], [ -82.020408469029775, 28.906346672755454 ], [ -82.02034877957729, 28.906342861198095 ], [ -82.020286919429878, 28.906334275873263 ], [ -82.020201181587964, 28.906316144980309 ], [ -82.020131722628193, 28.906294191341416 ], [ -82.020024927782501, 28.906253909267882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Big Cypress Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022138050416245, 28.907834159076842 ], [ -82.021296827848232, 28.907821846600292 ], [ -82.020583514965367, 28.907813663210998 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Audrey Marie Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023179188669971, 28.905089263133615 ], [ -82.022984535372046, 28.90511299991589 ], [ -82.022712021914415, 28.905113949058553 ], [ -82.022600341904194, 28.905125182020424 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Golden Eagle Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022581352204028, 28.905728116025628 ], [ -82.022284405280772, 28.905727521755342 ], [ -82.021991392022898, 28.90572279458268 ], [ -82.021885509457007, 28.905716405954859 ], [ -82.021819306923845, 28.905707821116785 ], [ -82.02178922004164, 28.905701875201036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Julia Isles Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02107999638028, 28.905573467062187 ], [ -82.02109107837542, 28.905513127801342 ], [ -82.021092303574406, 28.905486389815941 ], [ -82.02109728106204, 28.904498535005061 ], [ -82.021091833905189, 28.904388718923013 ], [ -82.021099951704244, 28.904283673931591 ], [ -82.021140626475102, 28.904176237395497 ], [ -82.021216572122455, 28.904080733756977 ], [ -82.021308801213934, 28.904001936330143 ], [ -82.021403744130708, 28.903942238270151 ], [ -82.021493267831218, 28.903913575533529 ], [ -82.021628915821651, 28.903889682307696 ], [ -82.02174828943329, 28.903889663608414 ], [ -82.021970758443416, 28.903894402537691 ], [ -82.022155245780951, 28.90389437312594 ], [ -82.022316725663401, 28.903901132457758 ], [ -82.022365018835728, 28.903911150997384 ], [ -82.022410056784324, 28.90392308111478 ], [ -82.022457810801555, 28.903938831106959 ], [ -82.022494830103668, 28.903955318201472 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Julia Isles Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022494830103668, 28.903955318201472 ], [ -82.022563398177667, 28.903910636050448 ], [ -82.02258097503794, 28.9039034770543 ], [ -82.022603330689179, 28.903898407899995 ], [ -82.022631979515722, 28.903899648386311 ], [ -82.022657159496944, 28.903906037948804 ], [ -82.022675933637984, 28.903916353554539 ], [ -82.022691890478256, 28.903928950629982 ], [ -82.022707411647374, 28.9039469065244 ], [ -82.02271620740062, 28.903965616038686 ], [ -82.022720984273917, 28.90398748876812 ], [ -82.022721425233996, 28.904006868257476 ], [ -82.022715568895322, 28.904029506980333 ], [ -82.022707542977912, 28.904048124515906 ], [ -82.022688446342087, 28.904069142176485 ], [ -82.022653069541079, 28.90410024839181 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Julia Isles Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022888548792977, 28.906174666016586 ], [ -82.022950561727782, 28.906116200360117 ], [ -82.022979114239433, 28.906095976020772 ], [ -82.023004100086268, 28.906084077772395 ], [ -82.023035033107007, 28.906080509445374 ], [ -82.023070724331689, 28.906082889167443 ], [ -82.023104036846078, 28.906086458506469 ], [ -82.023121881961799, 28.9060947864388 ], [ -82.023143297868046, 28.906113822242933 ], [ -82.023154005085658, 28.906136426622229 ], [ -82.023161143602152, 28.906162601089509 ], [ -82.023163522880139, 28.906182826601537 ], [ -82.023159954207557, 28.906200671946241 ], [ -82.023154004509664, 28.906218518592127 ], [ -82.023145676601786, 28.906235173700484 ], [ -82.023128069045129, 28.906248974588799 ], [ -82.023107761107468, 28.906260726807776 ], [ -82.023091595739388, 28.9062719116884 ], [ -82.022996756804247, 28.906315144867261 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Silver Maple Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020583514965367, 28.907813663210998 ], [ -82.020583694220107, 28.907844487480826 ], [ -82.02058248513265, 28.908326920093668 ], [ -82.020605725103536, 28.908397986118498 ], [ -82.020622876684769, 28.908430046715658 ], [ -82.020646323826156, 28.908458691175884 ], [ -82.020688005117734, 28.908496501157472 ], [ -82.02074466484035, 28.908527835800623 ], [ -82.020793501636305, 28.908538884333193 ], [ -82.020844511043322, 28.908543100323204 ], [ -82.021421871785051, 28.908546833444582 ], [ -82.021578149215046, 28.908546809169984 ], [ -82.021717061514394, 28.908535327357953 ], [ -82.021839255843432, 28.908518096797366 ], [ -82.021952553718023, 28.908497452341393 ], [ -82.022025260381184, 28.908466522652422 ], [ -82.022061934171006, 28.908441284053794 ], [ -82.022093183510961, 28.908406901524806 ], [ -82.022114014041648, 28.908375958408762 ], [ -82.022129634845641, 28.90834272428696 ], [ -82.022136139000125, 28.908307199786503 ], [ -82.022142428837995, 28.908271697877307 ], [ -82.022138050416245, 28.907834159076842 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belted Kingfisher Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020585404692042, 28.90708059738056 ], [ -82.020536569578354, 28.907079943240038 ], [ -82.020461688464593, 28.907083965027006 ], [ -82.020377028885278, 28.907098832025646 ], [ -82.020292396788605, 28.907123524088576 ], [ -82.020233145620793, 28.907145879055378 ], [ -82.020164732106025, 28.907178470995508 ], [ -82.020084034411994, 28.907219197090697 ], [ -82.019921260651003, 28.907284157133375 ], [ -82.019760652287189, 28.907331926092148 ], [ -82.019733215724216, 28.907336695031141 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Addison Shore Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018923418490076, 28.907398482509198 ], [ -82.018923395052241, 28.907405094551066 ], [ -82.018926268396513, 28.908307507448459 ], [ -82.018934415786973, 28.908355252325105 ], [ -82.01895613001723, 28.908410158692096 ], [ -82.018983268534981, 28.908445964476019 ], [ -82.019018545152193, 28.908476995083159 ], [ -82.019072814429919, 28.908510409651761 ], [ -82.019121654961836, 28.908531890254089 ], [ -82.019173206689089, 28.908541432163474 ], [ -82.019515063117154, 28.908538997054624 ], [ -82.01956389718292, 28.908524666204134 ], [ -82.019637148475539, 28.908496007907168 ], [ -82.019704964278176, 28.908436314910499 ], [ -82.019740226218545, 28.90838140147395 ], [ -82.019751067100543, 28.908314555009611 ], [ -82.019750971869826, 28.907806051589503 ], [ -82.019752000290467, 28.907434720703527 ], [ -82.019733215724216, 28.907336695031141 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hawks Gully Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017834466494961, 28.906591030056042 ], [ -82.017842796624379, 28.906668410965612 ], [ -82.017841891166938, 28.906692928322059 ], [ -82.017838935070429, 28.906724848393676 ], [ -82.017840421221393, 28.906757418452759 ], [ -82.017850411949127, 28.906782047199634 ], [ -82.017860416906771, 28.906799758927729 ], [ -82.017878188419871, 28.90681734604312 ], [ -82.017907062156127, 28.906828416235054 ], [ -82.017943338268793, 28.906832320318827 ], [ -82.017973692370546, 28.906829058205016 ], [ -82.018001048819812, 28.906817742560584 ], [ -82.018021884332555, 28.906804942572638 ], [ -82.018030345615088, 28.906789663767903 ], [ -82.018037349206807, 28.90677107281574 ], [ -82.018039565767424, 28.906744364508974 ], [ -82.018037063710821, 28.90671995225966 ], [ -82.018032715293288, 28.9066798456786 ], [ -82.018035104184719, 28.906592754666473 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jareds Landing Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020024927782501, 28.906253909267882 ], [ -82.020001493397828, 28.906295165712383 ], [ -82.019942905584571, 28.906369658844365 ], [ -82.019888912320454, 28.906420651843437 ], [ -82.01981512404798, 28.906476048155607 ], [ -82.019713122251886, 28.906537179833759 ], [ -82.019604606088734, 28.906583031036362 ], [ -82.01949825783683, 28.906607874546062 ], [ -82.019335475675163, 28.906628905511184 ], [ -82.019150986247539, 28.906644210584222 ], [ -82.018951697042482, 28.90664921137655 ], [ -82.018922381110386, 28.906648708279974 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Silver Maple Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022140091270643, 28.907096262320849 ], [ -82.022129126386019, 28.906938612789652 ], [ -82.022107386716883, 28.906762908190764 ], [ -82.022072633523479, 28.906636862723705 ], [ -82.022042958530818, 28.906551494733357 ], [ -82.022018637524383, 28.906491910851265 ], [ -82.021989107087791, 28.906430800201804 ], [ -82.021918067402964, 28.906318763211839 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Silver Maple Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020585404692042, 28.90708059738056 ], [ -82.020583514965367, 28.907813663210998 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Silver Maple Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022138050416245, 28.907834159076842 ], [ -82.022137994913138, 28.907828609052306 ], [ -82.022145751142205, 28.907177634243062 ], [ -82.022140091270643, 28.907096262320849 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belted Kingfisher Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022140091270643, 28.907096262320849 ], [ -82.022092774944994, 28.907101246960679 ], [ -82.022028090871785, 28.907100973953931 ], [ -82.021477467326577, 28.907089117686674 ], [ -82.020761204649617, 28.907083496406866 ], [ -82.020621218886447, 28.907081076590874 ], [ -82.020585404692042, 28.90708059738056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belted Kingfisher Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019733215724216, 28.907336695031141 ], [ -82.019595698591885, 28.907360597436597 ], [ -82.019365631634912, 28.907387367511248 ], [ -82.019231877931759, 28.907395577158553 ], [ -82.019109244909657, 28.907397503346115 ], [ -82.018923418490076, 28.907398482509198 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Addison Shore Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018922381110386, 28.906648708279974 ], [ -82.018923418490076, 28.907398482509198 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jareds Landing Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017834466494961, 28.906591030056042 ], [ -82.017768500634844, 28.906588748456706 ], [ -82.017617530058558, 28.906585207167073 ], [ -82.017506836247577, 28.906589041450943 ], [ -82.017412543317377, 28.906594523898594 ], [ -82.017358864472712, 28.906607254801347 ], [ -82.017310720691086, 28.906618995174497 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jareds Landing Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018035104184719, 28.906592754666473 ], [ -82.017834466494961, 28.906591030056042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 52nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016336195841419, 28.906173894469884 ], [ -82.016640665368442, 28.906173928896429 ], [ -82.016763985660475, 28.906175856786298 ], [ -82.016835119477989, 28.906191980409158 ], [ -82.016897885524259, 28.906212255579227 ], [ -82.016985530840003, 28.90624866258614 ], [ -82.017068310255453, 28.906295778604438 ], [ -82.017138915953623, 28.90634932223481 ], [ -82.017209526532838, 28.906420004075532 ], [ -82.017258226318205, 28.906486405384104 ], [ -82.0172870683638, 28.906549795463189 ], [ -82.017307618801027, 28.906606424744133 ], [ -82.017310720691086, 28.906618995174497 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jareds Landing Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018922381110386, 28.906648708279974 ], [ -82.018806474024188, 28.906646716399056 ], [ -82.018669748901189, 28.906639509226448 ], [ -82.018417357601763, 28.906611842334641 ], [ -82.018245887406323, 28.906600404843378 ], [ -82.018039690909816, 28.906592793773193 ], [ -82.018035104184719, 28.906592754666473 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jareds Landing Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020048139109477, 28.90557746119833 ], [ -82.020072634555987, 28.905644780822978 ], [ -82.020092184838717, 28.905724993193427 ], [ -82.020105221656436, 28.905799476009257 ], [ -82.020112838241431, 28.905901652940297 ], [ -82.020109994919267, 28.90597314062105 ], [ -82.020100927411633, 28.906050623168724 ], [ -82.020078514593209, 28.906130906575495 ], [ -82.020055738624109, 28.906199664977841 ], [ -82.020024927782501, 28.906253909267882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jareds Landing Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019863088187407, 28.905122241417274 ], [ -82.019869615058397, 28.90520554064733 ], [ -82.019880477610229, 28.905257105429936 ], [ -82.019894593622681, 28.905307715113459 ], [ -82.019915220384846, 28.905344000780676 ], [ -82.019947785940317, 28.905390786576525 ], [ -82.020004235460348, 28.905481497305821 ], [ -82.02003788993477, 28.90554929203045 ], [ -82.020048139109477, 28.90557746119833 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harbour Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020149282857972, 28.904335631628935 ], [ -82.020169983406007, 28.904567302714803 ], [ -82.020186915340588, 28.90473221509945 ], [ -82.020198198775432, 28.904818141118024 ], [ -82.020190703955976, 28.904904069868895 ], [ -82.020179445148088, 28.904953646475239 ], [ -82.020143023386879, 28.905006198906268 ], [ -82.020103970011249, 28.905045862379325 ], [ -82.020051771335488, 28.905082555571163 ], [ -82.019974780976668, 28.905111978888204 ], [ -82.019886520830156, 28.905122237159347 ], [ -82.019863088187407, 28.905122241417274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Golden Eagle Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02107999638028, 28.905573467062187 ], [ -82.020987519554055, 28.905558223241183 ], [ -82.02086000196789, 28.905546305994871 ], [ -82.020699932385952, 28.905548717474844 ], [ -82.020463892102484, 28.905546364134331 ], [ -82.020249509005779, 28.905546397407793 ], [ -82.020185481192058, 28.905546405837836 ], [ -82.020134476541642, 28.9055540539104 ], [ -82.020048139109477, 28.90557746119833 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Golden Eagle Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02178922004164, 28.905701875201036 ], [ -82.021665812587116, 28.905677484703048 ], [ -82.021161162552289, 28.905586844790943 ], [ -82.02107999638028, 28.905573467062187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Julia Isles Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022581352204028, 28.905728116025628 ], [ -82.022581043363758, 28.905756194688088 ], [ -82.022586259165024, 28.905787706594342 ], [ -82.022597986115443, 28.905818071517835 ], [ -82.022617528448293, 28.905856456591195 ], [ -82.022654002739415, 28.905905724211284 ], [ -82.022796866639013, 28.906076917183171 ], [ -82.022888548792977, 28.906174666016586 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Julia Isles Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022494830103668, 28.903955318201472 ], [ -82.022514464894229, 28.903967278579437 ], [ -82.022553322092563, 28.90399515597171 ], [ -82.022592939790059, 28.904030959918522 ], [ -82.022632015171283, 28.904072016220255 ], [ -82.022653069541079, 28.90410024839181 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Julia Isles Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022653069541079, 28.90410024839181 ], [ -82.022665123921442, 28.90411851615135 ], [ -82.022681409930428, 28.904155086335329 ], [ -82.022693899064052, 28.904192445748951 ], [ -82.022711496428116, 28.904266708319312 ], [ -82.022716941716538, 28.90435503790787 ], [ -82.022716965181715, 28.904460081655245 ], [ -82.022714273378568, 28.904565124042442 ], [ -82.022706152587361, 28.904653456757618 ], [ -82.022692610446384, 28.904756115246457 ], [ -82.022665500111188, 28.904854000995364 ], [ -82.022630253100473, 28.904961436188088 ], [ -82.022605209286937, 28.905085491838189 ], [ -82.022600341904194, 28.905125182020424 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Julia Isles Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022600341904194, 28.905125182020424 ], [ -82.022597409188151, 28.905149091594726 ], [ -82.022587262865244, 28.9052702637651 ], [ -82.022587296097996, 28.905426733974995 ], [ -82.022581681188811, 28.905698324798117 ], [ -82.022581352204028, 28.905728116025628 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Julia Isles Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022996756804247, 28.906315144867261 ], [ -82.023011408837291, 28.906337900186802 ], [ -82.023021398768961, 28.906358144283953 ], [ -82.023025740997824, 28.906370366088268 ], [ -82.023045888735837, 28.906414153954891 ], [ -82.023065659112305, 28.906476738551326 ], [ -82.023077525340483, 28.906528893900695 ], [ -82.023081485624274, 28.90656714164729 ], [ -82.023077547501813, 28.906626251840155 ], [ -82.023046371490793, 28.906876673576971 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Julia Isles Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022888548792977, 28.906174666016586 ], [ -82.022927298039619, 28.906215980329026 ], [ -82.02298361880672, 28.906294742487251 ], [ -82.022996756804247, 28.906315144867261 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Silver Maple Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021918067402964, 28.906318763211839 ], [ -82.021888363635895, 28.906271915189798 ], [ -82.021851888244029, 28.906216152624044 ], [ -82.02182148936771, 28.906159625745833 ], [ -82.021799774706835, 28.906107681166372 ], [ -82.021786009225167, 28.906056308291177 ], [ -82.021774875539634, 28.90600767798604 ], [ -82.021765096084351, 28.905952292863834 ], [ -82.021764000842552, 28.905901682238543 ], [ -82.021767246333894, 28.905856798718133 ], [ -82.021773747223591, 28.905800457304938 ], [ -82.02178922004164, 28.905701875201036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pit Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.1502095820493, 28.671391542067266 ], [ -82.150208098379593, 28.670350578902905 ], [ -82.150218061947911, 28.66867838219714 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wildcat Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034079974140084, 28.853349868642795 ], [ -82.03401977138472, 28.853598635439639 ], [ -82.034000814430215, 28.85367742216016 ], [ -82.033938485433026, 28.853803965937647 ], [ -82.033832762541721, 28.853913811476939 ], [ -82.033770411132522, 28.853971123139488 ], [ -82.033710784209887, 28.854071407271647 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "A Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138063016973462, 28.671672892405464 ], [ -82.138917779681009, 28.671692449742668 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "B Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138054695452283, 28.671932652327779 ], [ -82.138439333433084, 28.67195059746561 ], [ -82.138815322854313, 28.671976190362933 ], [ -82.138931446313748, 28.671973149359065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138091426322077, 28.672198478984118 ], [ -82.138611238832553, 28.672243788737561 ], [ -82.13881915751486, 28.672257330407703 ], [ -82.138925873775477, 28.672260657722006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "D Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13810565811788, 28.67248266380135 ], [ -82.138594264763967, 28.67251119841313 ], [ -82.138836844561425, 28.672532342128537 ], [ -82.138915740329068, 28.672532066812504 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138073095137514, 28.672753143596051 ], [ -82.138471615657863, 28.672784826097281 ], [ -82.138906181339692, 28.672814740914042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138788063974772, 28.670790179882335 ], [ -82.138778969257089, 28.670683580456028 ], [ -82.138766597823832, 28.670497183046059 ], [ -82.138764480414807, 28.670205346741024 ], [ -82.138784406998923, 28.669581762808672 ], [ -82.138785260072936, 28.668718399007492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138931446313748, 28.671973149359065 ], [ -82.138926024286661, 28.671840089855106 ], [ -82.138917779681009, 28.671692449742668 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138925873775477, 28.672260657722006 ], [ -82.138928226765657, 28.672197628367947 ], [ -82.138933184566497, 28.67201579719023 ], [ -82.138931446313748, 28.671973149359065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138915740329068, 28.672532066812504 ], [ -82.138925873775477, 28.672260657722006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138906181339692, 28.672814740914042 ], [ -82.138913165954634, 28.672601022902139 ], [ -82.138915740329068, 28.672532066812504 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "G Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137447460442189, 28.673374018887635 ], [ -82.137532657650183, 28.673377875209344 ], [ -82.137623618872425, 28.673380648272261 ], [ -82.137698482449949, 28.673387731737488 ], [ -82.138300129621442, 28.673431341160487 ], [ -82.138652122670635, 28.673459535906407 ], [ -82.13888086369829, 28.673474586638058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "J Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137436528348758, 28.674396353270811 ], [ -82.137449661610319, 28.674401877630594 ], [ -82.137992866052272, 28.674440290358444 ], [ -82.138599481059103, 28.674491222134439 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137400560699419, 28.674060775541506 ], [ -82.137848173768418, 28.674090917893807 ], [ -82.138202945926679, 28.67411691471434 ], [ -82.138475842381055, 28.674132681997829 ], [ -82.138774796364203, 28.67415528893482 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "H Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137407471729944, 28.673723888582575 ], [ -82.13773207218064, 28.673743809182049 ], [ -82.138121936908618, 28.673776647409831 ], [ -82.138384436264545, 28.673792424516819 ], [ -82.138574174962329, 28.673811713015478 ], [ -82.138728813869761, 28.673819577382066 ], [ -82.138868922321407, 28.67383542577231 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138897372335492, 28.673084271781626 ], [ -82.138906181339692, 28.672814740914042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "F Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137585517912754, 28.673014642471131 ], [ -82.137631055748869, 28.673005910641393 ], [ -82.137857168745768, 28.673020578660054 ], [ -82.138451046880505, 28.673062377983442 ], [ -82.138897372335492, 28.673084271781626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tortoise Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137407471729944, 28.673723888582575 ], [ -82.137426410007947, 28.673510339983501 ], [ -82.137447460442189, 28.673374018887635 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13888086369829, 28.673474586638058 ], [ -82.138881007725274, 28.673467420175545 ], [ -82.138897372335492, 28.673084271781626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138868922321407, 28.67383542577231 ], [ -82.138874863334607, 28.673773001850389 ], [ -82.13888086369829, 28.673474586638058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138774796364203, 28.67415528893482 ], [ -82.138782199910509, 28.674139762198433 ], [ -82.138831889611623, 28.674031268501359 ], [ -82.138861190996494, 28.673916641665105 ], [ -82.138868922321407, 28.67383542577231 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138599481059103, 28.674491222134439 ], [ -82.138707481027836, 28.674285035114998 ], [ -82.138764706275126, 28.674176450758658 ], [ -82.138774796364203, 28.67415528893482 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "K Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137695800381735, 28.674770189021551 ], [ -82.138250265657831, 28.674807826860413 ], [ -82.138297915820814, 28.674810642503211 ], [ -82.138415195008534, 28.674843041625788 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138415195008534, 28.674843041625788 ], [ -82.138599481059103, 28.674491222134439 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13744416713692, 28.675781540320219 ], [ -82.137750836298991, 28.675784668513536 ], [ -82.137811931625905, 28.675801795238428 ], [ -82.137885448007509, 28.675839853372917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138243330065407, 28.675166093662067 ], [ -82.138401587350415, 28.674869022735585 ], [ -82.138415195008534, 28.674843041625788 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137885448007509, 28.675839853372917 ], [ -82.137927984537924, 28.675758030250762 ], [ -82.138072960793565, 28.675485892852389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tortoise Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137400560699419, 28.674060775541506 ], [ -82.137407200492063, 28.673726947759391 ], [ -82.137407471729944, 28.673723888582575 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "L Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137630903185183, 28.675102103125642 ], [ -82.137808504048124, 28.675113383224364 ], [ -82.138046764404734, 28.675138927055961 ], [ -82.138208129977045, 28.675154997312159 ], [ -82.138243330065407, 28.675166093662067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138072960793565, 28.675485892852389 ], [ -82.138243330065407, 28.675166093662067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tortoise Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137436528348758, 28.674396353270811 ], [ -82.137419758850015, 28.674389301320794 ], [ -82.137398942966996, 28.674369840979956 ], [ -82.137395005903528, 28.674340049971185 ], [ -82.137400560699419, 28.674060775541506 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tortoise Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137447460442189, 28.673374018887635 ], [ -82.137458621783267, 28.673301743515726 ], [ -82.13748703496519, 28.673168783385432 ], [ -82.137511635146481, 28.673101145965504 ], [ -82.137527179957772, 28.67306445862539 ], [ -82.137553129864884, 28.673034638350465 ], [ -82.137582989338, 28.673015125966892 ], [ -82.137585517912754, 28.673014642471131 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Putnam Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137627635402126, 28.672276560448655 ], [ -82.137632300482153, 28.671703573375996 ], [ -82.137648382968266, 28.670778396455717 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Providence Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135305512273703, 28.670737122243434 ], [ -82.135365995898923, 28.670711529800339 ], [ -82.135478574279034, 28.670685633802588 ], [ -82.135571676957198, 28.670671216700541 ], [ -82.135750349932863, 28.670679633552552 ], [ -82.136038410478633, 28.670706085106715 ], [ -82.13607188547185, 28.67071049567091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138917779681009, 28.671692449742668 ], [ -82.138917150964048, 28.671681191992267 ], [ -82.138901353088997, 28.671525356478899 ], [ -82.138819266453069, 28.671024272496599 ], [ -82.138801794020353, 28.670912749465209 ], [ -82.138789527117609, 28.670807333522756 ], [ -82.138788063974772, 28.670790179882335 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Providence Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137648382968266, 28.670778396455717 ], [ -82.138118365498855, 28.670786311684321 ], [ -82.138788063974772, 28.670790179882335 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 18th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135305512273703, 28.670737122243434 ], [ -82.135316100921457, 28.670443381971698 ], [ -82.135310034418808, 28.668639613788585 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cape Cod Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136074639697497, 28.672883195617324 ], [ -82.136112200942136, 28.672883768081817 ], [ -82.136346080426051, 28.672874939569734 ], [ -82.136417535553335, 28.672866272447141 ], [ -82.136472747106879, 28.67285666869337 ], [ -82.136506296711914, 28.672842311479901 ], [ -82.136531177204205, 28.672823185098821 ], [ -82.136577650312518, 28.672755335535637 ], [ -82.136729721688127, 28.672497603481887 ], [ -82.136802633692454, 28.67235906031091 ], [ -82.136840352813877, 28.672220551540526 ], [ -82.136869806567546, 28.671972230987716 ], [ -82.136875055573938, 28.671843304184549 ], [ -82.136861382135208, 28.671738272079391 ], [ -82.136834178922967, 28.671635639322272 ], [ -82.136828650867926, 28.671547309311261 ], [ -82.136828541356721, 28.671463750802157 ], [ -82.136863419623069, 28.671222585681022 ], [ -82.1368766940532, 28.671022029125027 ], [ -82.136842213904075, 28.670811716689354 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 18th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135277634705744, 28.672832076175723 ], [ -82.135277408516473, 28.672655874513733 ], [ -82.1352740379224, 28.671762076002128 ], [ -82.135281034543112, 28.671070605054052 ], [ -82.135299035410895, 28.670921612210996 ], [ -82.135303895043407, 28.670782000418317 ], [ -82.135304606345315, 28.670762259399577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Providence Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136842213904075, 28.670811716689354 ], [ -82.136927316648567, 28.670813775145525 ], [ -82.137035555011366, 28.670782629741854 ], [ -82.137192546227467, 28.670770534834666 ], [ -82.137292705433751, 28.670770434864355 ], [ -82.137449718395601, 28.670775050821202 ], [ -82.137648382968266, 28.670778396455717 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Colonial Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136074639697497, 28.672883195617324 ], [ -82.136077162877811, 28.671441988180348 ], [ -82.13607188547185, 28.67071049567091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cape Cod Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135277634705744, 28.672832076175723 ], [ -82.135655219125709, 28.672861304531462 ], [ -82.135877222929182, 28.672880183008619 ], [ -82.136074639697497, 28.672883195617324 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Providence Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13607188547185, 28.67071049567091 ], [ -82.13642915312208, 28.670757549694947 ], [ -82.136553690559992, 28.670768788927653 ], [ -82.136689062624356, 28.670785365299011 ], [ -82.136832566599807, 28.670811482746949 ], [ -82.136842213904075, 28.670811716689354 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hideaway Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134378857042648, 28.670775230481357 ], [ -82.133875815405702, 28.670766235709106 ], [ -82.133664659204328, 28.670759281146815 ], [ -82.133578040880678, 28.670764140303259 ], [ -82.133529358230859, 28.670797612181659 ], [ -82.133505058212037, 28.670847772248791 ], [ -82.133497051608217, 28.670938502335531 ], [ -82.133522775650249, 28.671237862700398 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Owl Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134377449576377, 28.671212013686201 ], [ -82.134269869550891, 28.671208356990949 ], [ -82.133914725810968, 28.671222075352038 ], [ -82.133522775650249, 28.671237862700398 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hideaway Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.1343263660616, 28.672377567061393 ], [ -82.134798277062842, 28.672391162148429 ], [ -82.13486594413888, 28.672383933396052 ], [ -82.134920045597283, 28.672352843249165 ], [ -82.134938927808463, 28.672300302539689 ], [ -82.134938736239263, 28.672149893074664 ], [ -82.134927230184303, 28.670776270477081 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Begonia Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.1343263660616, 28.672377567061393 ], [ -82.134327392289421, 28.672163270414334 ], [ -82.134340043032509, 28.671809083751199 ], [ -82.134353200588379, 28.671513029289411 ], [ -82.134377184786871, 28.671214577471765 ], [ -82.134377449576377, 28.671212013686201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Begonia Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134375122615822, 28.672910392702363 ], [ -82.134385240772431, 28.672869724569527 ], [ -82.13438931941954, 28.672834745275303 ], [ -82.134386638370842, 28.672769427236904 ], [ -82.134359120867856, 28.672589537577913 ], [ -82.1343263660616, 28.672377567061393 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Begonia Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134464810897754, 28.674732742964583 ], [ -82.134460021664808, 28.674611801911642 ], [ -82.134446338097959, 28.674494830865722 ], [ -82.134432698203028, 28.674413671498765 ], [ -82.13443258550906, 28.67432533698253 ], [ -82.134413495606722, 28.674215535771996 ], [ -82.134407948119275, 28.674110493631897 ], [ -82.134421311814677, 28.673976785621694 ], [ -82.134434700863039, 28.673862174524182 ], [ -82.134442633770746, 28.673714148255325 ], [ -82.134455813599857, 28.673434805925798 ], [ -82.134414930948239, 28.673217591005191 ], [ -82.134375122615822, 28.672910392702363 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Daisy Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133848804643875, 28.672899040451302 ], [ -82.13378107884536, 28.672905462068879 ], [ -82.133675529375139, 28.672927051953604 ], [ -82.133588940558113, 28.67295578497783 ], [ -82.13355141043364, 28.672990274581334 ], [ -82.133526772185178, 28.673029856936196 ], [ -82.133486265580856, 28.67310868188703 ], [ -82.133453994485592, 28.673278220071804 ], [ -82.133448919654811, 28.673545617437114 ], [ -82.133457649129639, 28.674025480468785 ], [ -82.133463839738269, 28.674639041676006 ], [ -82.13351484362542, 28.674751687483834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Daisy Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134930925114944, 28.674742419043412 ], [ -82.134936505217595, 28.674637592401247 ], [ -82.134944547537813, 28.674575511264052 ], [ -82.134944416069658, 28.674472852260436 ], [ -82.134944311093648, 28.674391678639971 ], [ -82.134933390334254, 28.674317680238772 ], [ -82.134938693776405, 28.67423172792849 ], [ -82.134954779356519, 28.674109953213311 ], [ -82.134973565027366, 28.673981014015848 ], [ -82.134992279285811, 28.673797163507576 ], [ -82.134986650708612, 28.673630049186183 ], [ -82.134978302678988, 28.673453389082635 ], [ -82.134967308595705, 28.673324478463613 ], [ -82.134969875174022, 28.673214654964141 ], [ -82.134967036457894, 28.673111999523485 ], [ -82.134950688103515, 28.673028454403443 ], [ -82.134934389699652, 28.672985497004237 ], [ -82.13488290450104, 28.672944962904555 ], [ -82.134788126113776, 28.672921181887801 ], [ -82.134674417536999, 28.672911744025452 ], [ -82.134375122615822, 28.672910392702363 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camelia Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133948783324882, 28.674725730207058 ], [ -82.133937483415565, 28.674559792661761 ], [ -82.133950775949145, 28.674368786735986 ], [ -82.133961387500534, 28.674196880379814 ], [ -82.133947763194371, 28.674127659690559 ], [ -82.133955815162878, 28.674072739498573 ], [ -82.1339500354526, 28.673786255864709 ], [ -82.133946849745698, 28.673409045655092 ], [ -82.133922287372656, 28.673253886826988 ], [ -82.133876138039312, 28.673151273011793 ], [ -82.133867896052053, 28.673055785559995 ], [ -82.133848818076004, 28.67295553090338 ], [ -82.133848804643875, 28.672899040451302 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Daisy Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134375122615822, 28.672910392702363 ], [ -82.134200658198338, 28.672893112615764 ], [ -82.134057186424783, 28.672895641385495 ], [ -82.133908295144877, 28.6728933992874 ], [ -82.133848804643875, 28.672899040451302 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Begonia Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134377449576377, 28.671212013686201 ], [ -82.134384456089393, 28.671058886492631 ], [ -82.134378857042648, 28.670775230481357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Owl Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133522775650249, 28.671237862700398 ], [ -82.133477293952126, 28.671239695670931 ], [ -82.133304061322349, 28.671253235060806 ], [ -82.133095636851237, 28.671273750236985 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hideaway Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134927230184303, 28.670776270477081 ], [ -82.134382037995564, 28.67077528780122 ], [ -82.134378857042648, 28.670775230481357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hideaway Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135304606345315, 28.670762259399577 ], [ -82.13518449895723, 28.670771605835071 ], [ -82.135081848002798, 28.670770561656671 ], [ -82.134927230184303, 28.670776270477081 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 18th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135304606345315, 28.670762259399577 ], [ -82.135305512273703, 28.670737122243434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Third Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136530658656909, 28.675600607404608 ], [ -82.136539274505139, 28.67484319912872 ], [ -82.136531218411321, 28.673639946601593 ], [ -82.136534121691341, 28.673373508690183 ], [ -82.136514560285079, 28.673319094242672 ], [ -82.136482001276207, 28.673261827908011 ], [ -82.136420216120811, 28.673213186435667 ], [ -82.136316188069245, 28.67315312758857 ], [ -82.136173165309259, 28.673084512925456 ], [ -82.136085045569843, 28.673053160114545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fourth Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136088803514028, 28.67557876002158 ], [ -82.136089906452568, 28.674015691120758 ], [ -82.136085045569843, 28.673053160114545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fifth Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135661131752002, 28.675593523600146 ], [ -82.135661586419729, 28.674391420351871 ], [ -82.135653053522091, 28.67299195255741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Third Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136085045569843, 28.673053160114545 ], [ -82.136036665564433, 28.673035945915711 ], [ -82.135870948187275, 28.673001732414228 ], [ -82.135698768204236, 28.672993309267184 ], [ -82.135653053522091, 28.67299195255741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Third Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135653053522091, 28.67299195255741 ], [ -82.135277828239012, 28.672982837531446 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 18th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135277828239012, 28.672982837531446 ], [ -82.135277634705744, 28.672832076175723 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "M Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135661131752002, 28.675593523600146 ], [ -82.135796250578792, 28.67559387988485 ], [ -82.136008043749428, 28.675583355014702 ], [ -82.136088803514028, 28.67557876002158 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "M Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136088803514028, 28.67557876002158 ], [ -82.136192549062059, 28.675572857089275 ], [ -82.136266618950344, 28.675575074959955 ], [ -82.136370592833885, 28.67558986843202 ], [ -82.136444672664211, 28.675598961958499 ], [ -82.136521340392505, 28.675601177088456 ], [ -82.136530658656909, 28.675600607404608 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "M Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135287383858369, 28.675589185898495 ], [ -82.135480489017766, 28.675593048224037 ], [ -82.135661131752002, 28.675593523600146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Third Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136544274947354, 28.677153621846365 ], [ -82.136542854569029, 28.677064249196551 ], [ -82.136529148775523, 28.67693295392754 ], [ -82.136498992857639, 28.676641718922596 ], [ -82.136493231825767, 28.67637433424045 ], [ -82.136522242074022, 28.675782224410909 ], [ -82.136535649667309, 28.675681939433012 ], [ -82.136530658656909, 28.675600607404608 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fourth Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136128561823824, 28.677175414010645 ], [ -82.13611492410098, 28.676911882934821 ], [ -82.136114748300443, 28.67677579987058 ], [ -82.13609830594234, 28.676620633411286 ], [ -82.136095517419633, 28.676558563042299 ], [ -82.136098127081411, 28.676482162776335 ], [ -82.136114279504994, 28.676412911685908 ], [ -82.136125019324311, 28.676343666000079 ], [ -82.136114045110517, 28.676231467586263 ], [ -82.136086761277895, 28.676066763474584 ], [ -82.136075751159595, 28.675925916076796 ], [ -82.13607814397227, 28.675682397080486 ], [ -82.136088803514028, 28.67557876002158 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fifth Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135693708394413, 28.677212720591534 ], [ -82.135687335114213, 28.677024517848956 ], [ -82.135692423864228, 28.676771445039112 ], [ -82.135705502331177, 28.676415706062595 ], [ -82.135677870675877, 28.67598122237251 ], [ -82.135680376105441, 28.675823651212173 ], [ -82.135661131752002, 28.675593523600146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Second Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136846946437075, 28.677142584074726 ], [ -82.136872995397269, 28.676961258874343 ], [ -82.13688087444298, 28.676775032410074 ], [ -82.136856140483161, 28.676488565364018 ], [ -82.136845030100147, 28.676273708950035 ], [ -82.136841832862075, 28.675894112314808 ], [ -82.136835618035008, 28.675558404465182 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "M Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136530658656909, 28.675600607404608 ], [ -82.136578510418815, 28.675597681916614 ], [ -82.136647361845718, 28.675583861362028 ], [ -82.136835618035008, 28.675558404465182 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "First Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137185701229569, 28.676401385501507 ], [ -82.13716326184003, 28.6761332515539 ], [ -82.137140728603242, 28.675792923078593 ], [ -82.137133710091092, 28.675518091818038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "M Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136835618035008, 28.675558404465182 ], [ -82.137133710091092, 28.675518091818038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135693708394413, 28.677212720591534 ], [ -82.135741663980525, 28.677206406140083 ], [ -82.135880249493624, 28.677190989747899 ], [ -82.136128561823824, 28.677175414010645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136544274947354, 28.677153621846365 ], [ -82.136701441905203, 28.677147385255964 ], [ -82.136846946437075, 28.677142584074726 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136128561823824, 28.677175414010645 ], [ -82.136358308927569, 28.677161002358201 ], [ -82.136544274947354, 28.677153621846365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135334235820181, 28.677274098209978 ], [ -82.135435070714223, 28.677266301144765 ], [ -82.135509541219534, 28.677241781158596 ], [ -82.135601346022298, 28.677224881211629 ], [ -82.135693708394413, 28.677212720591534 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dogwood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134967272222568, 28.67834197100208 ], [ -82.134931793010267, 28.677696447081324 ], [ -82.134957276936575, 28.677302974893937 ], [ -82.134957086114653, 28.677153999343282 ], [ -82.134952369496261, 28.676852233860544 ], [ -82.134942884360285, 28.676210503621991 ], [ -82.134942169098039, 28.675652803249516 ], [ -82.134933782412631, 28.675578667003389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Birch Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134498750168262, 28.678460783953291 ], [ -82.134472152582276, 28.677303454479095 ], [ -82.1344582114518, 28.676562411771382 ], [ -82.134469502156549, 28.675582663060116 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cedar Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134034921931971, 28.678698183096355 ], [ -82.134024382068731, 28.678665274632142 ], [ -82.134019977996005, 28.678607980960031 ], [ -82.134010162637722, 28.678552602843112 ], [ -82.133991689150136, 28.678502963038984 ], [ -82.133982963640591, 28.678453312745756 ], [ -82.133962285561125, 28.678285664672543 ], [ -82.133953097681314, 28.677873126240062 ], [ -82.133969832792076, 28.677407085657432 ], [ -82.13400379786917, 28.67686845000819 ], [ -82.133973244900091, 28.676685125484124 ], [ -82.133938321074794, 28.676471247802816 ], [ -82.133942157893841, 28.67608161566702 ], [ -82.13396591886827, 28.675592220237533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dogwood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133521281412371, 28.675554349026051 ], [ -82.133519392484502, 28.675672915388468 ], [ -82.13351207394048, 28.675933062824356 ], [ -82.133481922727753, 28.676066788957346 ], [ -82.133469127875799, 28.676223415489325 ], [ -82.133473647675473, 28.676372385022532 ], [ -82.133495541302153, 28.67655953862208 ], [ -82.133508767952335, 28.676742879331869 ], [ -82.133504587913421, 28.676861300837889 ], [ -82.133491835536418, 28.677052305220393 ], [ -82.133462346883391, 28.67770935374454 ], [ -82.133449657233783, 28.67795001781743 ], [ -82.133441202957371, 28.678114280990762 ], [ -82.133437788183983, 28.678635053732723 ], [ -82.133437275435796, 28.678875696824662 ], [ -82.133445830426652, 28.678917724427347 ], [ -82.133487020485504, 28.678950152652863 ], [ -82.133532519980335, 28.67896538634028 ], [ -82.133601834976716, 28.678972959338601 ], [ -82.133662466152444, 28.678965259848315 ], [ -82.133742586439794, 28.678953720736722 ], [ -82.133809698945768, 28.678932646789647 ], [ -82.133878927967189, 28.678873369656081 ], [ -82.133948136082751, 28.67879690581368 ], [ -82.134006531594693, 28.678733818793962 ], [ -82.134034921931971, 28.678698183096355 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dogwood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134498750168262, 28.678460783953291 ], [ -82.134501060833799, 28.678460211399575 ], [ -82.134624478395494, 28.678435260090922 ], [ -82.134843162020317, 28.678389205464953 ], [ -82.134967272222568, 28.67834197100208 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dogwood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134034921931971, 28.678698183096355 ], [ -82.134053019859181, 28.678674564833322 ], [ -82.134124410840442, 28.678611467684359 ], [ -82.134195808010105, 28.678554099389324 ], [ -82.134282392537727, 28.678517724156467 ], [ -82.134392807330016, 28.678487056973321 ], [ -82.134498750168262, 28.678460783953291 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Live Oak Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133948783324882, 28.674725730207058 ], [ -82.134064816959125, 28.67472437540534 ], [ -82.134346971784197, 28.674730397623755 ], [ -82.134464810897754, 28.674732742964583 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Live Oak Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134933782412631, 28.675578667003389 ], [ -82.134623067484625, 28.675583698912227 ], [ -82.134469502156549, 28.675582663060116 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Live Oak Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134469502156549, 28.675582663060116 ], [ -82.134215910179904, 28.675580950480949 ], [ -82.133998061609958, 28.675592188636827 ], [ -82.13396591886827, 28.675592220237533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Live Oak Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13351484362542, 28.674751687483834 ], [ -82.133482735003042, 28.674780066575668 ], [ -82.133457808973134, 28.674838361736391 ], [ -82.133456209007434, 28.674986399771296 ], [ -82.133461669994844, 28.675068287301226 ], [ -82.133476028199965, 28.675124968516485 ], [ -82.133505687820602, 28.675211529877185 ], [ -82.133525309933788, 28.675315602681135 ], [ -82.133521281412371, 28.675554349026051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Live Oak Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13351484362542, 28.674751687483834 ], [ -82.133523760695411, 28.674743805004908 ], [ -82.133575525836548, 28.674726430420403 ], [ -82.133770173227944, 28.67472781407124 ], [ -82.133948783324882, 28.674725730207058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Live Oak Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134464810897754, 28.674732742964583 ], [ -82.1347237737493, 28.67473789848259 ], [ -82.134930925114944, 28.674742419043412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Live Oak Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13396591886827, 28.675592220237533 ], [ -82.133919489668884, 28.67559226677264 ], [ -82.133842676121475, 28.675571869241583 ], [ -82.133771190881049, 28.675529417974388 ], [ -82.133725846494983, 28.675479661013039 ], [ -82.133696560084573, 28.675441492262912 ], [ -82.133668385084505, 28.675425283352823 ], [ -82.133643476621629, 28.67542244378194 ], [ -82.133610998436879, 28.67542820543034 ], [ -82.13358393986249, 28.675438736895501 ], [ -82.133559055605687, 28.675454995125161 ], [ -82.133537440838111, 28.675489396026936 ], [ -82.133521281412371, 28.675554349026051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 18th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135334235820181, 28.677274098209978 ], [ -82.135334452421745, 28.677269871476824 ], [ -82.13531434349396, 28.677187568186774 ], [ -82.135298583644385, 28.677030775861674 ], [ -82.135300632314198, 28.676895527048714 ], [ -82.135331429473453, 28.676646566807431 ], [ -82.13533114247096, 28.676423115643232 ], [ -82.135288649798724, 28.676217347854639 ], [ -82.135286184846777, 28.676029181788536 ], [ -82.135287383858369, 28.675589185898495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hideaway Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133102728401326, 28.672081613522014 ], [ -82.133113095245278, 28.672095751055579 ], [ -82.133126108558372, 28.672111208821633 ], [ -82.133149135988305, 28.672137755483025 ], [ -82.133201929236151, 28.672184368881172 ], [ -82.133292996827791, 28.672272137173234 ], [ -82.13336455332194, 28.672343689745482 ], [ -82.133395989196359, 28.672370399578707 ], [ -82.13342199614732, 28.672385652400802 ], [ -82.133445828666794, 28.672394223776674 ], [ -82.133476151859924, 28.672397058986245 ], [ -82.133540043259131, 28.672400815969564 ], [ -82.133700302300284, 28.672402569087225 ], [ -82.134051132482455, 28.672399359567557 ], [ -82.13420921806194, 28.672394429748195 ], [ -82.134264429571303, 28.672384825089704 ], [ -82.1343263660616, 28.672377567061393 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dove", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131610182418584, 28.671735005568511 ], [ -82.13192861813269, 28.671732570934164 ], [ -82.132325366331415, 28.671736769284397 ], [ -82.132576582897912, 28.671739581361045 ], [ -82.13291615013236, 28.671736195349087 ], [ -82.132945019507687, 28.671734364334132 ], [ -82.132976199387173, 28.671730322150832 ], [ -82.133007165669696, 28.671718363110447 ], [ -82.133042097781896, 28.671706553588304 ], [ -82.13307534756143, 28.671695315973338 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cardinal", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131594195747468, 28.671971579893892 ], [ -82.131655173437025, 28.671965083776065 ], [ -82.131734863418288, 28.671960422936522 ], [ -82.131863070711461, 28.671961826614851 ], [ -82.132284066427729, 28.671959891034401 ], [ -82.13278649100684, 28.671957873936183 ], [ -82.132893909325489, 28.671959297792565 ], [ -82.132937213785354, 28.671953143167737 ], [ -82.132980506672922, 28.671937821752881 ], [ -82.133068730054219, 28.671890665515402 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bluebird", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133102728401326, 28.672081613522014 ], [ -82.133029276718105, 28.672144048080487 ], [ -82.132987725556973, 28.672167007853233 ], [ -82.13295309351075, 28.672180793174466 ], [ -82.132906317826837, 28.672182366442218 ], [ -82.132769449317522, 28.672182498934745 ], [ -82.132343246516569, 28.672178329589808 ], [ -82.131878927083747, 28.672172668140398 ], [ -82.131792299630348, 28.672171224280554 ], [ -82.131736851519818, 28.672165165487183 ], [ -82.131694597938903, 28.67214534419352 ], [ -82.131662092020804, 28.672128186177726 ], [ -82.131637160871264, 28.672108155935874 ], [ -82.131612225812802, 28.672083349651558 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eagle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131638651506933, 28.671566685989838 ], [ -82.131654860234377, 28.671539930636193 ], [ -82.131678653214749, 28.67151794399598 ], [ -82.131695971670609, 28.67151219836013 ], [ -82.131758770453033, 28.67150831629603 ], [ -82.131966672018393, 28.671510025407162 ], [ -82.132269865164858, 28.671515461330699 ], [ -82.132664006844706, 28.671514123609967 ], [ -82.132892483672535, 28.671516765938559 ], [ -82.132958537043862, 28.671518611755953 ], [ -82.132991018698107, 28.671515714260664 ], [ -82.133014829291213, 28.671507097218242 ], [ -82.133086435857408, 28.671464928128092 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flamingo", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131594195747468, 28.671971579893892 ], [ -82.131592551521109, 28.671936303921228 ], [ -82.131589239884718, 28.671885693528463 ], [ -82.1315967321773, 28.671815973951954 ], [ -82.131604254272361, 28.671770127335954 ], [ -82.131610182418584, 28.671735005568511 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flamingo", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131612225812802, 28.672083349651558 ], [ -82.13159809488441, 28.672040389748794 ], [ -82.131595889393921, 28.672007922374657 ], [ -82.131594195747468, 28.671971579893892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flamingo", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131610182418584, 28.671735005568511 ], [ -82.131610703433893, 28.671731922700278 ], [ -82.131613911316265, 28.671699451000293 ], [ -82.131614938754055, 28.671654566223133 ], [ -82.131618151403146, 28.671625914088356 ], [ -82.131626772642321, 28.671593436257975 ], [ -82.131638651506933, 28.671566685989838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hideaway Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133086435857408, 28.671464928128092 ], [ -82.13307534756143, 28.671695315973338 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hideaway Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133068730054219, 28.671890665515402 ], [ -82.133070921612244, 28.671937670344388 ], [ -82.133078547856911, 28.672006399817896 ], [ -82.133083130703866, 28.672033325431617 ], [ -82.133089660147704, 28.672059103183042 ], [ -82.133100079041355, 28.672078001368657 ], [ -82.133102728401326, 28.672081613522014 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hideaway Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13307534756143, 28.671695315973338 ], [ -82.133067360827511, 28.671861275202325 ], [ -82.133068730054219, 28.671890665515402 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hideaway Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133095636851237, 28.671273750236985 ], [ -82.133086435857408, 28.671464928128092 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.133095636851237, 28.671273750236985 ], [ -82.133092103514286, 28.671219894406558 ], [ -82.133090703868078, 28.671139678478575 ], [ -82.133117731119427, 28.670826540243191 ], [ -82.133112002284747, 28.670689339064857 ], [ -82.133113425357351, 28.670410616387628 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valleybrook Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984977617013399, 28.841264954096648 ], [ -81.985285823686056, 28.841079824182547 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valleybrook Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984153101485589, 28.84074820331611 ], [ -81.984246429906435, 28.84074258590363 ], [ -81.984339974062507, 28.840743132417515 ], [ -81.984433209580189, 28.840749839794178 ], [ -81.984525613815876, 28.840762670434621 ], [ -81.98461666878535, 28.840781552414985 ], [ -81.984705864067152, 28.840806379889852 ], [ -81.985021251822843, 28.840905746983726 ], [ -81.985082882451692, 28.840928898411406 ], [ -81.985140947382462, 28.840958341007841 ], [ -81.985194621925572, 28.840993656604823 ], [ -81.985243143745052, 28.841034343620382 ], [ -81.985285823686056, 28.841079824182547 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Piney Woods Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984670048511887, 28.84216191326119 ], [ -81.984824324061577, 28.842090240402939 ], [ -81.984981458282917, 28.84202355575971 ], [ -81.985141243218649, 28.841961947582369 ], [ -81.98530346740462, 28.841905497403374 ], [ -81.985615344825021, 28.841802704465625 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nature Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983487987753961, 28.842970382801695 ], [ -81.9834715623481, 28.842956811884164 ], [ -81.983430589264543, 28.842919195109005 ], [ -81.983394335124572, 28.842877993931545 ], [ -81.983363201784044, 28.842833665049181 ], [ -81.983337534335618, 28.842786699827979 ], [ -81.983317617283802, 28.84273761885601 ], [ -81.983279692869132, 28.842635926764792 ], [ -81.983235642223207, 28.84253616725989 ], [ -81.983185591597831, 28.842438626218993 ], [ -81.9831296844376, 28.842343583161629 ], [ -81.983068080968692, 28.842251310448219 ], [ -81.98300095773952, 28.842162072499637 ], [ -81.982928507114721, 28.842076125039522 ], [ -81.982850936723764, 28.8419937143616 ], [ -81.982250478355041, 28.841389457681071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Timber Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984670048511887, 28.84216191326119 ], [ -81.984636088800585, 28.842107656358809 ], [ -81.984552301596153, 28.841966444643759 ], [ -81.984475742426085, 28.84182208664388 ], [ -81.984406563274817, 28.841674868993788 ], [ -81.98434490147136, 28.841525084004974 ], [ -81.984290879416847, 28.841373029085304 ], [ -81.984244604341768, 28.841219006148481 ], [ -81.984206168093181, 28.841063321014484 ], [ -81.984175646952778, 28.84090628280229 ], [ -81.984153101485589, 28.84074820331611 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Raspberry Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98405297078466, 28.842518463382646 ], [ -81.984008467598642, 28.842467744816542 ], [ -81.983978015047541, 28.842429426320631 ], [ -81.983951805279503, 28.842388748593944 ], [ -81.983930072211777, 28.842346074685391 ], [ -81.983881738082871, 28.842244060765182 ], [ -81.983828591849601, 28.842143919557891 ], [ -81.983423866819294, 28.841426045185639 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valleybrook Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980260671943213, 28.843360614679209 ], [ -81.979989794728496, 28.843403762481316 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tarflower Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980379448425921, 28.844668516456355 ], [ -81.981804309285508, 28.844365376723836 ], [ -81.981984875694749, 28.844329323645916 ], [ -81.982166518641208, 28.84429773996148 ], [ -81.982349095454225, 28.844270650477682 ], [ -81.982532462729978, 28.844248076471757 ], [ -81.982574243613143, 28.8442405547848 ], [ -81.982614226320763, 28.844227495270054 ], [ -81.982651470018737, 28.844209205231532 ], [ -81.982685098325945, 28.84418611505275 ], [ -81.982714319936591, 28.844158768069139 ], [ -81.98273844724055, 28.844127807782669 ], [ -81.982756912503262, 28.844093962719331 ], [ -81.982769281224989, 28.84405802928606 ], [ -81.982775262364427, 28.844020853030312 ], [ -81.982785023714058, 28.843886654230808 ], [ -81.982788207902374, 28.843803266632946 ], [ -81.9827856424928, 28.843719862507427 ], [ -81.982777336943215, 28.843636748893125 ], [ -81.982763321842697, 28.84355423175877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mango Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981150978961921, 28.843847921780963 ], [ -81.980992458951491, 28.84317832288788 ], [ -81.980974125920298, 28.843115092200193 ], [ -81.980949489415963, 28.843053544301188 ], [ -81.98091874402418, 28.842994165285464 ], [ -81.980882132576397, 28.842937424117309 ], [ -81.980839944231718, 28.842883768927077 ], [ -81.980792512192934, 28.842833623472028 ], [ -81.980740211074774, 28.842787383789712 ], [ -81.980683453945247, 28.84274541507023 ], [ -81.980607936751795, 28.842694437358599 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Waterlily Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981859532285227, 28.843700522343518 ], [ -81.981704947426437, 28.843047561534583 ], [ -81.981681367218741, 28.842961825383327 ], [ -81.981651592116393, 28.842877596824518 ], [ -81.981615744664694, 28.842795222475825 ], [ -81.981573972397001, 28.842715041323711 ], [ -81.981526447227239, 28.842637383328395 ], [ -81.981473364742328, 28.842562568066185 ], [ -81.981414943397127, 28.842490903414323 ], [ -81.981351423615337, 28.84242268428422 ], [ -81.981146248814952, 28.842216209556355 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tulip Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982548887969386, 28.842974986241412 ], [ -81.982359931096369, 28.842591067845852 ], [ -81.98230384519357, 28.842490732739343 ], [ -81.982241237334861, 28.842393434185034 ], [ -81.982172318784805, 28.842299500480468 ], [ -81.982097322099165, 28.842209248568885 ], [ -81.982016500340038, 28.842122982969922 ], [ -81.981773442941204, 28.84187838523539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valleybrook Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981314242803819, 28.846290978987231 ], [ -81.981112812404703, 28.845923084055073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valleybrook Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981112812404703, 28.845923084055073 ], [ -81.980907114407813, 28.845547390462805 ], [ -81.980834988242009, 28.845419807571965 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valleybrook Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980834988242009, 28.845419807571965 ], [ -81.980732623457683, 28.845251407561079 ], [ -81.980623839036397, 28.845086156950206 ], [ -81.980508759849101, 28.844924245381002 ], [ -81.98046795575145, 28.844863873057175 ], [ -81.980432663034662, 28.844800865653564 ], [ -81.980403099718288, 28.844735612414112 ], [ -81.980379448425921, 28.844668516456355 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valleybrook Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980379448425921, 28.844668516456355 ], [ -81.980362895226676, 28.84460486672004 ], [ -81.980351663857803, 28.844540322824063 ], [ -81.980345814249091, 28.844475229226695 ], [ -81.9803453776087, 28.844409933319298 ], [ -81.980350356256778, 28.844344783572254 ], [ -81.980375983228598, 28.844128022626187 ], [ -81.980381239039673, 28.844067267789917 ], [ -81.980382666360882, 28.844006349942006 ], [ -81.980380260820311, 28.843945455960288 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valleybrook Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980380260820311, 28.843945455960288 ], [ -81.980372426237523, 28.843873356403101 ], [ -81.980359220163777, 28.843801867026766 ], [ -81.980260671943213, 28.843360614679209 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valleybrook Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980260671943213, 28.843360614679209 ], [ -81.980250015947206, 28.843312890109789 ], [ -81.980245122551992, 28.843277595742688 ], [ -81.980246088477102, 28.843242049539469 ], [ -81.980252893333997, 28.843207001585796 ], [ -81.98026539352297, 28.843173191452639 ], [ -81.980283325263812, 28.843141332590193 ], [ -81.980306310162547, 28.843112097272986 ], [ -81.980354081765029, 28.843056359018274 ], [ -81.980397740864859, 28.842998064577781 ], [ -81.980437111565138, 28.842937448821573 ], [ -81.980467677759734, 28.84288671477368 ], [ -81.980510367797578, 28.842820371134586 ], [ -81.980557168763895, 28.84275621290686 ], [ -81.980607936751795, 28.842694437358599 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valleybrook Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980607936751795, 28.842694437358599 ], [ -81.980656204975048, 28.842641745571669 ], [ -81.980707359829097, 28.842591209112538 ], [ -81.980761277343589, 28.842542950448998 ], [ -81.981104598911358, 28.842250425473654 ], [ -81.981146248814952, 28.842216209556355 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valleybrook Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981146248814952, 28.842216209556355 ], [ -81.981224713157829, 28.842158057709934 ], [ -81.98130734302498, 28.842104565509828 ], [ -81.981393782092937, 28.84205596362581 ], [ -81.981483657613822, 28.842012461639172 ], [ -81.981692926977601, 28.841918911283045 ], [ -81.981733754728921, 28.841899525828158 ], [ -81.981773442941204, 28.84187838523539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valleybrook Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981773442941204, 28.84187838523539 ], [ -81.981835096724055, 28.84184053111894 ], [ -81.981893106418667, 28.841798448018331 ], [ -81.981947098799267, 28.841752406693278 ], [ -81.981996726488489, 28.841702703370093 ], [ -81.982041670192459, 28.841649657835656 ], [ -81.982181973793743, 28.841469405600598 ], [ -81.982215192287256, 28.841428744910917 ], [ -81.982250478355041, 28.841389457681071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valleybrook Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982250478355041, 28.841389457681071 ], [ -81.982315597903138, 28.841325508553037 ], [ -81.982386185098989, 28.8412662274024 ], [ -81.982461809669502, 28.841211975577476 ], [ -81.982542010638426, 28.841163083769818 ], [ -81.982923080982161, 28.84094965705555 ], [ -81.982997988608048, 28.840911853856163 ], [ -81.983076529912509, 28.840880281591687 ], [ -81.98315803813631, 28.840855208286811 ], [ -81.983241821335056, 28.840836846794808 ], [ -81.983327168252814, 28.840825352990681 ], [ -81.984153101485589, 28.84074820331611 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valleybrook Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985285823686056, 28.841079824182547 ], [ -81.985314060853668, 28.84111732293373 ], [ -81.985338314747537, 28.841156924090146 ], [ -81.985358385026771, 28.841198300547678 ], [ -81.985615344825021, 28.841802704465625 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Piney Woods Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980380262869929, 28.843945455960593 ], [ -81.980665056181238, 28.84392977199164 ], [ -81.980755531883403, 28.843922458224171 ], [ -81.980845371457022, 28.84391052462788 ], [ -81.980934270860601, 28.843894011589303 ], [ -81.981150978961921, 28.843847921780963 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Piney Woods Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981150978961921, 28.843847921780963 ], [ -81.981634151060064, 28.843745160290293 ], [ -81.981859532285227, 28.843700522343518 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Piney Woods Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982763321842697, 28.84355423175877 ], [ -81.982767472430169, 28.843553571805124 ], [ -81.982826687831547, 28.843541190079254 ], [ -81.982884036272708, 28.843523245448512 ], [ -81.98293884576475, 28.843499948182089 ], [ -81.982990474070519, 28.843471571269422 ], [ -81.983038316230321, 28.843438447221242 ], [ -81.983081811650663, 28.843400964173235 ], [ -81.983120450673226, 28.843359561337838 ], [ -81.983237037326617, 28.843225555266883 ], [ -81.983359615016639, 28.843095759919272 ], [ -81.983487987753961, 28.842970382801695 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Piney Woods Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981859532285227, 28.843700522343518 ], [ -81.982050220383172, 28.843667839444297 ], [ -81.982763321842697, 28.84355423175877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Piney Woods Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983487987753961, 28.842970382801695 ], [ -81.983621450126194, 28.842850057681417 ], [ -81.983760249639289, 28.842734508463117 ], [ -81.983904165997018, 28.842623918527121 ], [ -81.98405297078466, 28.842518463382646 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Piney Woods Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98405297078466, 28.842518463382646 ], [ -81.984201273997172, 28.84242154060534 ], [ -81.984353706432458, 28.842329718465997 ], [ -81.984510041922903, 28.842243133197126 ], [ -81.984670048511887, 28.84216191326119 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Piney Woods Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985615344825021, 28.841802704465625 ], [ -81.985880230777568, 28.84171539845325 ], [ -81.985941140708988, 28.841691611002023 ], [ -81.985998426705891, 28.84166164592758 ], [ -81.986051284166365, 28.841625924101653 ], [ -81.986098970691202, 28.841584947251413 ], [ -81.986140816511309, 28.841539290912358 ], [ -81.986176233894824, 28.841489596344388 ], [ -81.986204725401763, 28.841436561524848 ], [ -81.986225890870415, 28.841380931345025 ], [ -81.986299727679494, 28.841161235322826 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Badger Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980549167050725, 28.845560276201322 ], [ -81.980834988242009, 28.845419807571965 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kristine Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965163322082986, 28.823982333256371 ], [ -81.965737918405154, 28.824063275515712 ], [ -81.966512136395565, 28.824178063912033 ], [ -81.967527080978527, 28.824327284231106 ], [ -81.967898707151676, 28.82437631206448 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chelsea Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969971964806462, 28.823583560631903 ], [ -81.969930235150798, 28.823845405939448 ], [ -81.969812924432659, 28.824521480768908 ], [ -81.969761030705612, 28.824744854658146 ], [ -81.969750405301127, 28.824790599335216 ], [ -81.969730967341519, 28.824831936952926 ], [ -81.969713151385733, 28.824866145789468 ], [ -81.969677520311564, 28.824924584819531 ], [ -81.969600284974689, 28.825011789065936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "John Michael Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968082913175863, 28.823319737469625 ], [ -81.968052167430088, 28.823543208698556 ], [ -81.968000033336594, 28.823814400660407 ], [ -81.967898707151676, 28.82437631206448 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vivienne Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965352676682699, 28.822932721390568 ], [ -81.965163322082986, 28.823982333256371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vivienne Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965049552901405, 28.823966306684191 ], [ -81.965232760362582, 28.822915436469899 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kristine Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969600284974689, 28.825011789065936 ], [ -81.969664530613557, 28.825055732504271 ], [ -81.969771353777048, 28.825117055850672 ], [ -81.96988864132382, 28.825175826119093 ], [ -81.970096821192001, 28.825261818459804 ], [ -81.970313621275494, 28.825331154857796 ], [ -81.970511403836383, 28.825373981406678 ], [ -81.970740412313233, 28.825438202803873 ], [ -81.970905225030023, 28.825497827093081 ], [ -81.971120342482394, 28.825597188866485 ], [ -81.971290351658084, 28.825693483637338 ], [ -81.971453414786495, 28.825809639243076 ], [ -81.97163425458136, 28.825959863274754 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kristine Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967898707151676, 28.82437631206448 ], [ -81.968223232675541, 28.824419126172916 ], [ -81.968424716186178, 28.824446737411545 ], [ -81.968560686609493, 28.824473855713698 ], [ -81.968724191479723, 28.824522377648982 ], [ -81.968867315814393, 28.824573977854868 ], [ -81.969028466661612, 28.824642177334081 ], [ -81.969153094112102, 28.824706356572992 ], [ -81.969279338265764, 28.824781940350178 ], [ -81.969399103173615, 28.824870350660515 ], [ -81.969541527215256, 28.824971597739822 ], [ -81.969600284974689, 28.825011789065936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kristine Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965049552901405, 28.823966306684191 ], [ -81.965163322082986, 28.823982333256371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kristine Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964963701203189, 28.823954211438103 ], [ -81.965049552901405, 28.823966306684191 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969971964806462, 28.823583560631903 ], [ -81.971030546436893, 28.82373093899027 ], [ -81.972439194604362, 28.823927697962223 ], [ -81.973801984601053, 28.824114229974711 ], [ -81.973999976272239, 28.824141045396168 ], [ -81.974176946150919, 28.824162853180233 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968082913175863, 28.823319737469625 ], [ -81.968414527627047, 28.82336671335365 ], [ -81.969971964806462, 28.823583560631903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965232760362582, 28.822915436469899 ], [ -81.965279211729126, 28.822922252790647 ], [ -81.965352676682699, 28.822932721390568 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021784288502644, 28.565554371439021 ], [ -82.02067394425481, 28.565892311966895 ], [ -82.01997255637886, 28.566112222552885 ], [ -82.017814000307098, 28.566781089132768 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 52nd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017814000307098, 28.566781089132768 ], [ -82.017759077938322, 28.566652664081506 ], [ -82.01772616638182, 28.566490702356024 ], [ -82.017703636754646, 28.566318044714905 ], [ -82.017695711426398, 28.566122961934337 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138851067790483, 28.874814151783117 ], [ -82.137831952577244, 28.873428519316167 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137742332894661, 28.873483472099711 ], [ -82.137831952577244, 28.873428519316167 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.21381296761831, 28.853049531575945 ], [ -82.213772961562029, 28.852861311117344 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.213772961562029, 28.852861311117344 ], [ -82.213284487518109, 28.852936950296311 ], [ -82.212641018069121, 28.853027281712126 ], [ -82.210764593455124, 28.853251825980532 ], [ -82.209927435976425, 28.853370958694889 ], [ -82.207715793684315, 28.85371988853241 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.207754937627939, 28.853908172596313 ], [ -82.209062077651467, 28.853699955892562 ], [ -82.210014594978517, 28.85355299676354 ], [ -82.210566464700307, 28.8534729586754 ], [ -82.210926119269359, 28.853424618129647 ], [ -82.211453212029113, 28.853360997186087 ], [ -82.212073325386072, 28.85328903914786 ], [ -82.212581814315527, 28.853228175119632 ], [ -82.213429774121963, 28.8531080705161 ], [ -82.21381296761831, 28.853049531575945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.207754937627939, 28.853908172596313 ], [ -82.207715793684315, 28.85371988853241 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.207715793684315, 28.85371988853241 ], [ -82.207658106680199, 28.853728988340364 ], [ -82.207093401745865, 28.853817428278415 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203158730239295, 28.854564842210358 ], [ -82.203210001669888, 28.854748570835358 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200803791446035, 28.855253609544516 ], [ -82.200517279401652, 28.855394772369777 ], [ -82.20016032742501, 28.855526517735459 ], [ -82.200082127169907, 28.855557712187419 ], [ -82.200069365783392, 28.85556571279675 ], [ -82.200052685062388, 28.855577991587083 ], [ -82.200040774949628, 28.855588991080847 ], [ -82.200028869385861, 28.855602377148845 ], [ -82.200018054564239, 28.855619646002605 ], [ -82.20001548521526, 28.855637985427268 ], [ -82.200018129958551, 28.855659181043226 ], [ -82.200023005312588, 28.855684338967858 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.203158730239295, 28.854564842210358 ], [ -82.202645720067551, 28.854710838355604 ], [ -82.202300812855057, 28.854810213976247 ], [ -82.201950437148199, 28.854914419668614 ], [ -82.201621953778115, 28.855008947155952 ], [ -82.201156613004471, 28.855149489810049 ], [ -82.200943100317033, 28.855212498805308 ], [ -82.200803791446035, 28.855253609544516 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200023005312588, 28.855684338967858 ], [ -82.2005506756621, 28.855528950747079 ], [ -82.201537488229064, 28.855238138839365 ], [ -82.202600906599329, 28.854928252249671 ], [ -82.202992777589273, 28.854810945303335 ], [ -82.203210001669888, 28.854748570835358 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.198699179678329, 28.856072287608285 ], [ -82.198844022349789, 28.856002714187532 ], [ -82.199028719634768, 28.855930249680782 ], [ -82.199197821849339, 28.855870412100256 ], [ -82.199253749182077, 28.855847411354382 ], [ -82.199413729864787, 28.855783004155697 ], [ -82.199582820717907, 28.855717437410952 ], [ -82.199621875464672, 28.85570457888084 ], [ -82.199658582746849, 28.855686671828504 ], [ -82.199677428317287, 28.855672320017408 ], [ -82.199694641274931, 28.855654247725486 ], [ -82.199707285439601, 28.8556298778079 ], [ -82.199712761757937, 28.855600361826692 ], [ -82.199708283385888, 28.855573725337752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.198699179678329, 28.856072287608285 ], [ -82.199517048547676, 28.855833329196884 ], [ -82.200023005312588, 28.855684338967858 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.200803791446035, 28.855253609544516 ], [ -82.200598194423179, 28.85531428192483 ], [ -82.200075363300741, 28.855469373537652 ], [ -82.199708283385888, 28.855573725337752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.193005090000341, 28.857093185614662 ], [ -82.192993831263991, 28.85689887883046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.188352128897947, 28.857637489442805 ], [ -82.188829714327525, 28.857588598724053 ], [ -82.189377399863488, 28.857529964463193 ], [ -82.189951366978434, 28.857465504647479 ], [ -82.191640342513168, 28.857243219538983 ], [ -82.192229637655259, 28.85717486919582 ], [ -82.192860563739856, 28.857106457859871 ], [ -82.193005090000341, 28.857093185614662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.192993831263991, 28.85689887883046 ], [ -82.192982887853049, 28.856899883356796 ], [ -82.192564458023526, 28.856942917254635 ], [ -82.192148221652403, 28.856987874955397 ], [ -82.191705703944848, 28.857038655051806 ], [ -82.191241906053818, 28.857098964083512 ], [ -82.190509626307872, 28.857198520798075 ], [ -82.189994827194852, 28.857266758165157 ], [ -82.189475462552068, 28.857330011146693 ], [ -82.188684770520837, 28.857407477446205 ], [ -82.188208276628345, 28.857452506995589 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Trce", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000456944577834, 28.933125946131124 ], [ -82.000833022527061, 28.933284142420433 ], [ -82.001043612705232, 28.933369129812732 ], [ -82.001247684672407, 28.933415723370381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Trce", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001247684672407, 28.933415723370381 ], [ -82.001165185077681, 28.933344104149857 ], [ -82.000971967768578, 28.93323353052169 ], [ -82.000525249869895, 28.933014181613913 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000456944577834, 28.933125946131124 ], [ -82.000525249869895, 28.933014181613913 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Saddlebrook Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000332586580356, 28.933075595257911 ], [ -82.000194942038902, 28.933008177332844 ], [ -82.000146094986988, 28.932980483974145 ], [ -82.000107016572613, 28.932948015684865 ], [ -82.000045142515575, 28.932882125405648 ], [ -81.999957215244478, 28.932786631709035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000397235414724, 28.932969465629711 ], [ -82.000332586580356, 28.933075595257911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003950227964708, 28.924942802688495 ], [ -82.003927163987072, 28.924815323318882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ternberry Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984985952119189, 28.909438448926675 ], [ -81.98496926047244, 28.909621381606268 ], [ -81.984928843690668, 28.909922753515374 ], [ -81.984957483846969, 28.910005264662665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ternberry Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984957483846969, 28.910005264662665 ], [ -81.985018704986373, 28.909927348227825 ], [ -81.985039555085407, 28.909833385283804 ], [ -81.985066918176983, 28.909744006738268 ], [ -81.985076045722508, 28.909660355734761 ], [ -81.985103420639163, 28.909489616988449 ], [ -81.985109820207356, 28.909449543049387 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984985952119189, 28.909438448926675 ], [ -81.985109820207356, 28.909449543049387 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008515757307279, 28.925031144858529 ], [ -82.008526957482189, 28.925064870201776 ], [ -82.008539355256502, 28.925107714072556 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008539355256502, 28.925107714072556 ], [ -82.008516831762577, 28.925250500984998 ], [ -82.008503834298793, 28.925621015906891 ], [ -82.00850249442496, 28.92576085375255 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parr Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008499454491641, 28.926077804186487 ], [ -82.008561596462627, 28.926077489207678 ], [ -82.008561919531402, 28.926077490993038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parr Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008561919531402, 28.926077490993038 ], [ -82.008614077191694, 28.926077797363664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Craft Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00041502325054, 28.815270172880769 ], [ -81.99971240966164, 28.814926547271597 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Magnolia Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00041502325054, 28.815270172880769 ], [ -82.000591157724003, 28.814997994874322 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Bobwhite Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999778645170366, 28.81429198853856 ], [ -81.999804376808513, 28.814342540555369 ], [ -81.999818231103291, 28.814403555733112 ], [ -81.999830107104145, 28.814455850974998 ], [ -81.999838023260466, 28.814520349957252 ], [ -81.999838023946992, 28.814583105657249 ], [ -81.999830106056891, 28.814647604602968 ], [ -81.999818229412426, 28.814706875551053 ], [ -81.999796456879864, 28.814759169808017 ], [ -81.999766765640302, 28.814828899386061 ], [ -81.999737074427699, 28.814888168470951 ], [ -81.99971240966164, 28.814926547271597 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986588000232743, 28.809487822938987 ], [ -81.987258465803421, 28.809552729533973 ], [ -81.987316308381352, 28.809564314397814 ], [ -81.987376781130592, 28.809589793273155 ], [ -81.98744513714577, 28.809624536891452 ], [ -81.987502975801164, 28.809668541715602 ], [ -81.987547669703815, 28.809710230861668 ], [ -81.987605342193419, 28.809781836422239 ], [ -81.987624662975563, 28.809839717865664 ], [ -81.987640116128333, 28.809924837916871 ], [ -81.98764005135277, 28.809960472884867 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01625761929219, 28.790544940451909 ], [ -82.016285170048221, 28.790541453466044 ], [ -82.016385584385858, 28.79052370334373 ], [ -82.016496823167159, 28.790498046721311 ], [ -82.016601539562274, 28.790467866569749 ], [ -82.016697943335657, 28.79043461132796 ], [ -82.016794365644458, 28.790395817614538 ], [ -82.016886872403731, 28.790359352267199 ], [ -82.016994685971909, 28.790322596283094 ], [ -82.017132365282279, 28.790284072584633 ], [ -82.017279295963561, 28.790252754396668 ], [ -82.017402402703823, 28.790233929703824 ], [ -82.017543044988486, 28.790220414647841 ], [ -82.017671109397355, 28.790215372837952 ], [ -82.017796871300845, 28.790217102157154 ], [ -82.017938400354836, 28.790226990787151 ], [ -82.017995992943426, 28.790234016104453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bluebird Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037181832084329, 28.797822891563403 ], [ -82.037051957119061, 28.797627430626317 ], [ -82.037017632411988, 28.797575892543698 ], [ -82.036995965454423, 28.797547150685354 ], [ -82.036970058730361, 28.797518491167256 ], [ -82.036935397922079, 28.797487006140354 ], [ -82.036893254533808, 28.797456415491482 ], [ -82.036844142397086, 28.797428517384809 ], [ -82.03678056037306, 28.79739504141282 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spanish Moss Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031359091900185, 28.794419367396568 ], [ -82.031487337694955, 28.794371899226061 ], [ -82.031574602353587, 28.794342162602483 ], [ -82.0316541780779, 28.794318271958979 ], [ -82.031721997302213, 28.794300248993626 ], [ -82.031795062345196, 28.794283160488906 ], [ -82.031881596163203, 28.794265960568367 ], [ -82.0319422894148, 28.794255815420275 ], [ -82.032032833879626, 28.794243564565981 ], [ -82.032097327373577, 28.794236911322205 ], [ -82.032161183233498, 28.794232001463985 ], [ -82.032243374786603, 28.794228119554159 ], [ -82.03232288958047, 28.794226959594404 ], [ -82.032436783914505, 28.794229741864889 ], [ -82.032524581445472, 28.7942354699064 ], [ -82.032613699329517, 28.794244504556126 ], [ -82.032690313730541, 28.794254902787355 ], [ -82.032762930746998, 28.794267037970855 ], [ -82.032847028846788, 28.794283926482205 ], [ -82.03290332767773, 28.79429697138286 ], [ -82.032986472705232, 28.794318856139448 ], [ -82.03304376945519, 28.794335808660112 ], [ -82.03311164706065, 28.794357936998413 ], [ -82.033211799630891, 28.794394803156084 ], [ -82.033288013163613, 28.794426404590777 ], [ -82.033359001894794, 28.794458761575228 ], [ -82.033419631942564, 28.794488754257976 ], [ -82.033479331475647, 28.794520533717648 ], [ -82.03353629222967, 28.794553053710942 ], [ -82.033572478548223, 28.794575538688914 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cedar Waxwing Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02928992257408, 28.794833725905853 ], [ -82.029291177139612, 28.794799372790109 ], [ -82.029302890067115, 28.794604963423733 ], [ -82.029305226585123, 28.794549276697165 ], [ -82.029301207907139, 28.794470271037024 ], [ -82.029295551307982, 28.794428355289313 ], [ -82.029285839590543, 28.794379647785533 ], [ -82.029275191923958, 28.794339383419025 ], [ -82.029258977793077, 28.794290593368196 ], [ -82.029235904002988, 28.794235147495282 ], [ -82.029201818920129, 28.794165330992492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cedar Waxwing Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031594839333493, 28.797493316790607 ], [ -82.031115103405114, 28.797490991809624 ], [ -82.030182734032934, 28.797486468893215 ], [ -82.029968714992833, 28.797484623145117 ], [ -82.029920850934531, 28.797477195715008 ], [ -82.029882288834727, 28.797465353957236 ], [ -82.029811049263657, 28.79742592559775 ], [ -82.029773326822664, 28.797390900515854 ], [ -82.029742607560422, 28.797347283005916 ], [ -82.029716427161816, 28.797274074985744 ], [ -82.029666455397063, 28.797080392584345 ], [ -82.029613354127875, 28.796874585551301 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cardinal Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035935423546007, 28.798984499189061 ], [ -82.035982196339148, 28.799002833720415 ], [ -82.035998705821456, 28.799008024930249 ], [ -82.036028453894815, 28.799015147241509 ], [ -82.03604853470965, 28.799018424611745 ], [ -82.036086684340091, 28.79902155559483 ], [ -82.036138645398154, 28.799024225480601 ], [ -82.03634887124295, 28.799022727495348 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Malachite Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035228726306627, 28.79912669434006 ], [ -82.035235246246927, 28.798907068111625 ], [ -82.035241361933927, 28.798700982074674 ], [ -82.035247711609969, 28.798487019688721 ], [ -82.0352549628536, 28.798242680725981 ], [ -82.035260941477361, 28.798133014883177 ], [ -82.035272407881607, 28.798061223997134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warbler Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034633239228043, 28.797837244089237 ], [ -82.034609621280111, 28.797867630858519 ], [ -82.034585025415524, 28.797905411414789 ], [ -82.034572425750383, 28.797930432075997 ], [ -82.034559837778744, 28.797963071857581 ], [ -82.034544624842681, 28.79802551476455 ], [ -82.034522194033855, 28.798140873767462 ], [ -82.034504890702181, 28.798251748797938 ], [ -82.034488300727176, 28.798398652069558 ], [ -82.03447918389729, 28.79853746424364 ], [ -82.03447644413751, 28.798649153125449 ], [ -82.034477566800717, 28.798753112738567 ], [ -82.034482158688036, 28.798862412270076 ], [ -82.03448523009547, 28.798901333639215 ], [ -82.034487370733061, 28.798916196892545 ], [ -82.034490129674552, 28.79892978051295 ], [ -82.034498159081508, 28.798956233397796 ], [ -82.034507975766672, 28.798978762582813 ], [ -82.034525771579681, 28.799008533535662 ], [ -82.034541719450559, 28.799028895637331 ], [ -82.034560877498507, 28.799048625315901 ], [ -82.034582025220317, 28.799066251204373 ], [ -82.034599370317608, 28.799080220068287 ], [ -82.034615775055187, 28.799087930728813 ], [ -82.034644166842227, 28.799101488974618 ], [ -82.034669879531194, 28.799110761904114 ], [ -82.034689701858042, 28.799116187044032 ], [ -82.034711594099932, 28.799120569490697 ], [ -82.034732119267048, 28.799123223447459 ], [ -82.034775995620777, 28.79912472198118 ], [ -82.034837778603759, 28.79912499064762 ], [ -82.035179532860766, 28.799126479492955 ], [ -82.035228726306627, 28.79912669434006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Atala Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033528824673027, 28.796817316854579 ], [ -82.033540225127467, 28.796773422006073 ], [ -82.033568843566286, 28.796686550350131 ], [ -82.033608359939322, 28.796586602434996 ], [ -82.033639958898718, 28.796518447607095 ], [ -82.033686447560626, 28.796430488801409 ], [ -82.033736259992779, 28.796348513304448 ], [ -82.033792821659929, 28.796266271761962 ], [ -82.033843156536989, 28.796200968124101 ], [ -82.033903194278977, 28.796130377244598 ], [ -82.033977378881559, 28.796052649180453 ], [ -82.034056621758737, 28.795975518964852 ], [ -82.034291593263205, 28.795747503367853 ], [ -82.034382363246081, 28.795659876204535 ], [ -82.034429857153469, 28.795617220192696 ], [ -82.034504848772528, 28.795557074998367 ], [ -82.034616588386086, 28.795475052118139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Milkweed Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032736054674814, 28.797498839135947 ], [ -82.032739343007762, 28.79697082320704 ], [ -82.032740846926458, 28.796798543439763 ], [ -82.032744662727865, 28.796758997792676 ], [ -82.032754670670826, 28.796709364631706 ], [ -82.032768237218022, 28.796666477217411 ], [ -82.032785745038254, 28.796625606438681 ], [ -82.03280942801922, 28.796582761738826 ], [ -82.032832507354527, 28.796548933083859 ], [ -82.032858984819939, 28.796516366855606 ], [ -82.032910654679398, 28.796459561228144 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spider Lily Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029613354127875, 28.796874585551301 ], [ -82.029707641222217, 28.796855710678816 ], [ -82.029741574142676, 28.796849584829662 ], [ -82.029760828175242, 28.796847246419393 ], [ -82.029809992728659, 28.796843246743023 ], [ -82.029942549717518, 28.796832684605356 ], [ -82.030092692301267, 28.796820722646672 ], [ -82.030218178315394, 28.796810724815135 ], [ -82.030281484282682, 28.796804242331064 ], [ -82.030317462079381, 28.796799263632277 ], [ -82.030350190531394, 28.796793905761447 ], [ -82.030397431887593, 28.79678475589251 ], [ -82.03042579223721, 28.796778444314061 ], [ -82.030464897014269, 28.796768706996311 ], [ -82.030496470034421, 28.796759951235078 ], [ -82.030530632129, 28.796749551785453 ], [ -82.030579409884766, 28.796732977287586 ], [ -82.030633175001398, 28.796712249228353 ], [ -82.030675164961465, 28.796694163017232 ], [ -82.030706376713411, 28.796679581957477 ], [ -82.030737829871313, 28.79666385490011 ], [ -82.030784322795341, 28.79663859697936 ], [ -82.0308420422556, 28.796605310475908 ], [ -82.03089713915972, 28.796574883960531 ], [ -82.030963192239611, 28.796540265538955 ], [ -82.031045040081267, 28.796500073573341 ], [ -82.031112206603552, 28.79646921205855 ], [ -82.031172892368872, 28.796442910450811 ], [ -82.031236633794038, 28.796416847239907 ], [ -82.031306360233714, 28.796390110424174 ], [ -82.031579164350376, 28.796289058097098 ], [ -82.031686019325676, 28.796249801152456 ], [ -82.031746759824841, 28.796229320994385 ], [ -82.031812517629675, 28.796209171707879 ], [ -82.031861000827746, 28.796195622268204 ], [ -82.031912014278348, 28.796182536919183 ], [ -82.031964513265365, 28.796170292163335 ], [ -82.032011999778234, 28.796160267332183 ], [ -82.032047468752523, 28.796153811204608 ], [ -82.032085507129821, 28.796148539208829 ], [ -82.032134911881229, 28.796144189435843 ], [ -82.032175135293116, 28.796142700304244 ], [ -82.032218264321088, 28.79614313511733 ], [ -82.0322519841597, 28.796144940916438 ], [ -82.032286704185196, 28.796148154983754 ], [ -82.032317378300291, 28.79615215409606 ], [ -82.032358857121082, 28.79615932771922 ], [ -82.032398444482453, 28.796168125032423 ], [ -82.03243692401675, 28.796178575630066 ], [ -82.032470793106654, 28.796189397246156 ], [ -82.032506843780695, 28.796202676240814 ], [ -82.03254527390871, 28.79621896207405 ], [ -82.032581928285552, 28.796236707353533 ], [ -82.032618666387066, 28.79625686448459 ], [ -82.032654121550493, 28.796278811193847 ], [ -82.032744707400965, 28.796342269284562 ], [ -82.032910654679398, 28.796459561228144 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moon Flower Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030235300294706, 28.796435984388985 ], [ -82.03020245435394, 28.796341067364271 ], [ -82.0301682086928, 28.79623345780395 ], [ -82.030164497552335, 28.796208366201281 ], [ -82.030170299931342, 28.796177637587803 ], [ -82.030197049367459, 28.796108243931823 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buckeye Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031308170257631, 28.795127596945346 ], [ -82.031331647714893, 28.795057290654562 ], [ -82.03133356843567, 28.795050677170671 ], [ -82.031334875688984, 28.795044427457483 ], [ -82.031335720923579, 28.795038024455572 ], [ -82.031336059341044, 28.795032391240955 ], [ -82.031336040409499, 28.79502724174673 ], [ -82.031335643305113, 28.795021431845093 ], [ -82.031334950358513, 28.795016264456997 ], [ -82.031333534769587, 28.795009437879227 ], [ -82.031331659367993, 28.795002990376705 ], [ -82.03132058350279, 28.794968985616929 ], [ -82.031291937821067, 28.794881042765716 ], [ -82.03126556722556, 28.794800078782931 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gallinule Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03001643107487, 28.795508551128023 ], [ -82.030092179492215, 28.795500626852114 ], [ -82.030186750252895, 28.795486142235802 ], [ -82.030243787162263, 28.795474821128661 ], [ -82.030305442907604, 28.795460326457178 ], [ -82.03039617219612, 28.795434568136873 ], [ -82.030477286468113, 28.795406838510964 ], [ -82.030547972391361, 28.795380655892973 ], [ -82.030648677288966, 28.795343352821835 ], [ -82.03090426213214, 28.79524867958806 ], [ -82.031059141979625, 28.795191308420527 ], [ -82.031178137053473, 28.795147228096251 ], [ -82.031213948937747, 28.795133963258689 ], [ -82.031231820752993, 28.795127983216087 ], [ -82.031247734810478, 28.795124613100771 ], [ -82.031258991835116, 28.795123304013746 ], [ -82.031269468570358, 28.795122851396567 ], [ -82.031282516646741, 28.795123308631737 ], [ -82.031294215950751, 28.795124692845292 ], [ -82.031308170257631, 28.795127596945346 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moon Flower Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03001643107487, 28.795508551128023 ], [ -82.030015387957533, 28.795500074126352 ], [ -82.030006210893475, 28.795412786385036 ], [ -82.0299999818359, 28.795339876357023 ], [ -82.029994982683249, 28.795265802078713 ], [ -82.029988650616531, 28.795143558124309 ], [ -82.029972190572408, 28.794819842555828 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fritillary Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030197049367459, 28.796108243931823 ], [ -82.030214521698397, 28.796112323993988 ], [ -82.030225862608603, 28.796113812143723 ], [ -82.03023905323802, 28.796114448106223 ], [ -82.030248578518211, 28.796114188870394 ], [ -82.030256732078286, 28.796113485093009 ], [ -82.030268766537034, 28.796111614680505 ], [ -82.030280661400226, 28.796108744535072 ], [ -82.030291148657028, 28.796105311652969 ], [ -82.030357563020701, 28.796080710920616 ], [ -82.030565884713951, 28.796003545412439 ], [ -82.030969441635449, 28.79585406087153 ], [ -82.031293853410176, 28.795733891107311 ], [ -82.031431426401312, 28.79568293074426 ], [ -82.031447487957877, 28.795675816877075 ], [ -82.031462852304031, 28.795666477161078 ], [ -82.031476451213962, 28.795655447812866 ], [ -82.031487900701563, 28.795643202634302 ], [ -82.031497882704684, 28.795628827428271 ], [ -82.031504672062852, 28.795615180211332 ], [ -82.031509720538978, 28.795599737787803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buckeye Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031509720538978, 28.795599737787803 ], [ -82.031512293143905, 28.795584132608511 ], [ -82.031512278573871, 28.795566082750362 ], [ -82.031510875308157, 28.795555969949689 ], [ -82.031500055848028, 28.795519985475487 ], [ -82.031476645903624, 28.795448115278205 ], [ -82.031426542187774, 28.795294287758267 ], [ -82.031399890464414, 28.795212468478436 ], [ -82.031397220727087, 28.795204429477469 ], [ -82.031392733053039, 28.795193780497694 ], [ -82.031385528255569, 28.795181119073543 ], [ -82.031376517774007, 28.795169177201014 ], [ -82.031368537785013, 28.795160747797819 ], [ -82.031360213948815, 28.795153427414213 ], [ -82.031352226503486, 28.795147492906271 ], [ -82.031343080596557, 28.795141752657045 ], [ -82.031332681013453, 28.795136370006457 ], [ -82.031320286126345, 28.795131306322332 ], [ -82.031308170257631, 28.795127596945346 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fritillary Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031509720538978, 28.795599737787803 ], [ -82.031591060522743, 28.795615132571346 ], [ -82.031615899277767, 28.795617266289184 ], [ -82.03163531913539, 28.795615433771296 ], [ -82.031672081968637, 28.795606487966253 ], [ -82.031833824794006, 28.795565607716171 ], [ -82.031838204301948, 28.795563756968892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sea Oats Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032173075083975, 28.795482092487173 ], [ -82.031989374102579, 28.794918124661265 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cordgrass Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032173075083975, 28.795482092487173 ], [ -82.032215256180308, 28.795475275635575 ], [ -82.032249547612196, 28.795471084533336 ], [ -82.032299414126868, 28.795467109052606 ], [ -82.032344842956959, 28.795465644823725 ], [ -82.032389081094365, 28.795466183992094 ], [ -82.032438060566008, 28.795469047294898 ], [ -82.032469652024815, 28.795472169110646 ], [ -82.032502833636627, 28.795476541151018 ], [ -82.032540823079913, 28.79548294406133 ], [ -82.032575109764736, 28.795490032687443 ], [ -82.032610797228074, 28.795498773109266 ], [ -82.03264786504873, 28.79550937196008 ], [ -82.032677350429552, 28.795518953879686 ], [ -82.0327188264028, 28.79553424550053 ], [ -82.032758375011483, 28.795550912689073 ], [ -82.03278862804946, 28.795565134093984 ], [ -82.032823857553296, 28.795583418328007 ], [ -82.032870098335394, 28.795610491169935 ], [ -82.032911542327966, 28.795638071333851 ], [ -82.033034747990641, 28.795725153945188 ], [ -82.03314291017341, 28.795801601781214 ], [ -82.033256980491473, 28.795870189869657 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sand Pine Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033256980491473, 28.795870189869657 ], [ -82.033265598079453, 28.795859805790172 ], [ -82.033320961253779, 28.795793499566916 ], [ -82.033347083290963, 28.795765340220129 ], [ -82.033381546890141, 28.795725388337814 ], [ -82.033420148508213, 28.795684551180791 ], [ -82.033453656178679, 28.795650571015202 ], [ -82.033664803334673, 28.795445412418932 ], [ -82.033680306998477, 28.795430367094397 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sabal Palm Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031989374102579, 28.794918124661265 ], [ -82.032046970839062, 28.79490687755527 ], [ -82.03207975285649, 28.794901369468867 ], [ -82.03213106239437, 28.794894028089981 ], [ -82.032185073469108, 28.794887962836313 ], [ -82.032232673899642, 28.794884013171778 ], [ -82.032286112303723, 28.794881124151658 ], [ -82.032341336600965, 28.794879843516867 ], [ -82.032403366098663, 28.794880464244766 ], [ -82.032453121499131, 28.794882541447013 ], [ -82.032505708654156, 28.794886270100754 ], [ -82.03254897764775, 28.794890530582297 ], [ -82.032606864794928, 28.79489793036327 ], [ -82.032660332332171, 28.794906519507812 ], [ -82.032725736683972, 28.794919369237469 ], [ -82.032783886990842, 28.794933014688564 ], [ -82.032845256716399, 28.794949757892457 ], [ -82.032892778921621, 28.794964434454265 ], [ -82.03293758581934, 28.794979690930152 ], [ -82.032981840992591, 28.79499616113312 ], [ -82.033065007037706, 28.795031083348444 ], [ -82.033109932599629, 28.795052233644785 ], [ -82.033167927269986, 28.79508208540469 ], [ -82.033217131519066, 28.795109820619615 ], [ -82.033263696309547, 28.795138256645505 ], [ -82.033327733608644, 28.795181167858946 ], [ -82.033513795955812, 28.795312677391536 ], [ -82.033680306998477, 28.795430367094397 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cottontail Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031359082675934, 28.794419349352388 ], [ -82.031171864054016, 28.794032806490407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anhinga Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033572478548223, 28.794575538688914 ], [ -82.033619803171774, 28.794516357139202 ], [ -82.033646788067841, 28.794484175010179 ], [ -82.033682169881175, 28.794443998145539 ], [ -82.033750506297835, 28.794371729702156 ], [ -82.034407974945495, 28.793691095752799 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Key Deer Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029128608071289, 28.796513658442098 ], [ -82.02911073152427, 28.796514876703618 ], [ -82.029053314444269, 28.796516955024153 ], [ -82.02897403461651, 28.796518537099793 ], [ -82.028948188177566, 28.796517992079014 ], [ -82.02892503324216, 28.796515691494889 ], [ -82.028896838765547, 28.796510496434468 ], [ -82.028869873883721, 28.796502916300572 ], [ -82.028843156160789, 28.79649261834458 ], [ -82.028824283187731, 28.79648345747399 ], [ -82.028804935375376, 28.796472187994798 ], [ -82.028791048844141, 28.796462740954578 ], [ -82.028771901755206, 28.796447476891363 ], [ -82.028758923090635, 28.796435315503615 ], [ -82.028747649989143, 28.796423250309068 ], [ -82.028736420468775, 28.796409450859823 ], [ -82.028726131051627, 28.796394732661049 ], [ -82.028713700917635, 28.796373013860812 ], [ -82.028705768778991, 28.796355446572356 ], [ -82.02870118044828, 28.796342963123863 ], [ -82.028695959594032, 28.796324809673713 ], [ -82.028692333569879, 28.796306378883965 ], [ -82.028673928932974, 28.796172359490537 ], [ -82.028647675755636, 28.795980932973322 ], [ -82.028626648855322, 28.795827611835698 ], [ -82.028613603220421, 28.795729831804998 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trumpet Vine Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027208656111213, 28.79606293907586 ], [ -82.02724560098288, 28.796042742601397 ], [ -82.027364881892538, 28.795976876536379 ], [ -82.027431249181632, 28.795942145182295 ], [ -82.027489337553121, 28.79591473138272 ], [ -82.027559454137787, 28.795885092779322 ], [ -82.027616025952952, 28.795863769835982 ], [ -82.027690683596177, 28.795838968463027 ], [ -82.027739894224965, 28.795824604666056 ], [ -82.027804202015702, 28.795808119203173 ], [ -82.027881189057794, 28.795791665455678 ], [ -82.027943708776704, 28.795780856733785 ], [ -82.028012833798329, 28.795771498473201 ], [ -82.028078339486996, 28.795764760321955 ], [ -82.028211573733387, 28.795751587552399 ], [ -82.028274939974864, 28.795746432396395 ], [ -82.028328969009479, 28.795743778520333 ], [ -82.028384467365584, 28.795742712392784 ], [ -82.028418285935004, 28.795742885041367 ], [ -82.028469667625117, 28.795742380959066 ], [ -82.028503734605152, 28.795740673115816 ], [ -82.028536063033002, 28.795738035336694 ], [ -82.028569194314485, 28.79573455642937 ], [ -82.028613603220421, 28.795729831804998 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spoonbill Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025567528680597, 28.795176291063974 ], [ -82.025626943119306, 28.795091368914349 ], [ -82.025648811849038, 28.795058430476253 ], [ -82.025665649210467, 28.795030411467852 ], [ -82.025679506432269, 28.79500518385969 ], [ -82.025694475937058, 28.794975152131713 ], [ -82.025705245117138, 28.794951287582197 ], [ -82.025718459279702, 28.794918562771304 ], [ -82.025726360780567, 28.794896586387313 ], [ -82.02573372740207, 28.79487388103281 ], [ -82.025742811591911, 28.794841743484849 ], [ -82.02575107139667, 28.794806215196868 ], [ -82.025756351109209, 28.794777864455035 ], [ -82.025764599832982, 28.79471771746482 ], [ -82.025769250784009, 28.79469012748805 ], [ -82.025773236802991, 28.794670428359691 ], [ -82.025779588303905, 28.794643544578896 ], [ -82.025788933390842, 28.794610280892137 ], [ -82.02579851608462, 28.794581121781739 ], [ -82.025816944557306, 28.794533806497935 ], [ -82.025824555235687, 28.794516618735244 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crowned Caterpillar Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026567800720002, 28.795570594153897 ], [ -82.026583023224418, 28.795569954215953 ], [ -82.026611935583674, 28.795567706446306 ], [ -82.026648895607238, 28.795563277142961 ], [ -82.026689982029879, 28.795556257401095 ], [ -82.026719256984009, 28.795549868826001 ], [ -82.026741632182294, 28.795544182666969 ], [ -82.026761349246144, 28.795538577321061 ], [ -82.026787091828226, 28.795530391100982 ], [ -82.026804236676156, 28.795524375691446 ], [ -82.026830261503861, 28.795514345983943 ], [ -82.026847312837916, 28.795507162994316 ], [ -82.026866708469527, 28.795498375238108 ], [ -82.026892387410172, 28.795485677446717 ], [ -82.026904700321055, 28.795479136007199 ], [ -82.026917689116246, 28.795471899655062 ], [ -82.026995027641945, 28.795428112585309 ], [ -82.027052426786724, 28.795397929005599 ], [ -82.027122519433519, 28.795363652744552 ], [ -82.027166317935084, 28.795343609249691 ], [ -82.027217063989497, 28.795321655088173 ], [ -82.027269828094148, 28.795300223853442 ], [ -82.027338574740597, 28.795274358200732 ], [ -82.027393632879978, 28.795255263456749 ], [ -82.027436162721742, 28.795241471346628 ], [ -82.027474830297265, 28.795229637102288 ], [ -82.027522569899745, 28.795215938678751 ], [ -82.027550531209926, 28.795208377176749 ], [ -82.027594178222543, 28.795197239399652 ], [ -82.027643387233411, 28.795185643030521 ], [ -82.02771466253806, 28.79517061887347 ], [ -82.027754926051827, 28.795163044049289 ], [ -82.027805300486577, 28.795154480061683 ], [ -82.02788013126559, 28.79514360303801 ], [ -82.027938685386076, 28.795136611896083 ], [ -82.028003526973265, 28.795130091372101 ], [ -82.028130774383044, 28.795117509098546 ], [ -82.028244607095118, 28.795108725461347 ], [ -82.028310628630166, 28.795105883279167 ], [ -82.028390789360145, 28.795104336605085 ], [ -82.028564019552746, 28.795101651915832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morning Glory Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024461959092164, 28.793776822434015 ], [ -82.024538525689522, 28.793780318095806 ], [ -82.024563067897702, 28.793782704910146 ], [ -82.024585153964068, 28.79378584738846 ], [ -82.024610823498534, 28.793790718063217 ], [ -82.024628878099747, 28.793794951239001 ], [ -82.024647015837346, 28.793799899029555 ], [ -82.024663980808768, 28.793805182685265 ], [ -82.024680099774571, 28.793810813878917 ], [ -82.024694662798581, 28.793816434518085 ], [ -82.024707790730162, 28.793821957959882 ], [ -82.024722012861261, 28.793828452095376 ], [ -82.024733455814712, 28.793834081403681 ], [ -82.024751570081051, 28.793843773545849 ], [ -82.024762817602607, 28.793850307003851 ], [ -82.024775674668959, 28.793858291996823 ], [ -82.024786744151228, 28.793865640273037 ], [ -82.024802817380746, 28.793877149126658 ], [ -82.024816753733006, 28.793888016813767 ], [ -82.024829846089773, 28.793899062405213 ], [ -82.024842590312176, 28.793910673807538 ], [ -82.02487027032835, 28.793936218771542 ], [ -82.024896453357087, 28.793959757252814 ], [ -82.024916713459874, 28.793977567099315 ], [ -82.024946972851936, 28.794003537478453 ], [ -82.024975258864799, 28.794027154069433 ], [ -82.025004141014648, 28.794050638809864 ], [ -82.025040612595419, 28.794079412442951 ], [ -82.025069031377541, 28.794101181955568 ], [ -82.02509236851968, 28.794118645636502 ], [ -82.025114428036119, 28.79413482104049 ], [ -82.02514155873051, 28.794154280848375 ], [ -82.025176861678531, 28.794178910331475 ], [ -82.025211191203681, 28.794202133275338 ], [ -82.025235080096479, 28.794217882437021 ], [ -82.025271523892314, 28.794241280031578 ], [ -82.025302767305718, 28.794260751693873 ], [ -82.025364268256823, 28.794297547671206 ], [ -82.02539419183249, 28.794314743016727 ], [ -82.025435550317809, 28.794337770625628 ], [ -82.025474169233178, 28.794358521284487 ], [ -82.02550986626386, 28.794377075334907 ], [ -82.025551406607633, 28.794397927398403 ], [ -82.025590008682471, 28.79441660992584 ], [ -82.025628738668786, 28.794434697794479 ], [ -82.02566566038702, 28.794451344991199 ], [ -82.025700448088855, 28.794466508266503 ], [ -82.025727144742845, 28.794477807517932 ], [ -82.025766248156884, 28.794493837102344 ], [ -82.025824555235687, 28.794516618735244 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Black Bear Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025221649936313, 28.795819315933215 ], [ -82.025256963225274, 28.795802987608717 ], [ -82.025301284843451, 28.795796586689871 ], [ -82.025348392995852, 28.795804537435686 ], [ -82.02541616878375, 28.795827764162585 ], [ -82.025497777387372, 28.79585573088184 ], [ -82.025640122082081, 28.795904513575241 ], [ -82.02573018880824, 28.795932595898165 ], [ -82.025786437036288, 28.795939702043238 ], [ -82.025870088828384, 28.79594005287964 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Black Bear Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024800663081962, 28.795616825808857 ], [ -82.025076088498693, 28.795711217143239 ], [ -82.025123947377438, 28.795727617991091 ], [ -82.025172348912633, 28.795760285617316 ], [ -82.025221649936313, 28.795819315933215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bobcat Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02522956056842, 28.797523726111617 ], [ -82.025221701613816, 28.797518976858115 ], [ -82.025212372253606, 28.797512297823626 ], [ -82.025205191110331, 28.797506222047272 ], [ -82.025196987083547, 28.797497701188576 ], [ -82.025191104676594, 28.797490998971956 ], [ -82.025185015920911, 28.797482373964463 ], [ -82.02517913149326, 28.797471445316042 ], [ -82.025174570765103, 28.797461498144397 ], [ -82.025171070960738, 28.797450243330342 ], [ -82.025168821760843, 28.797438423442866 ], [ -82.025167944829633, 28.797425048623314 ], [ -82.025168177232857, 28.797255251417582 ], [ -82.025168052146952, 28.79672525561563 ], [ -82.025167930096387, 28.796212447022658 ], [ -82.025167871623168, 28.7959603408775 ], [ -82.025169116711979, 28.795897421487648 ], [ -82.025187407955983, 28.79585240361083 ], [ -82.025221649936313, 28.795819315933215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kestrel Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02522956056842, 28.797523726111617 ], [ -82.025242363432866, 28.797530034568087 ], [ -82.025253345518877, 28.797534231941921 ], [ -82.025263627696361, 28.797537270872471 ], [ -82.025274240566588, 28.797539572553021 ], [ -82.025293879007833, 28.797541758002144 ], [ -82.025330966865127, 28.797541903760287 ], [ -82.025581397239804, 28.797541858032414 ], [ -82.025678426275718, 28.797541919593851 ], [ -82.025739934100869, 28.797543521582103 ], [ -82.025756671788528, 28.797542342776531 ], [ -82.025774702693269, 28.797538915167049 ], [ -82.025789769820435, 28.797534183359922 ], [ -82.025802283066682, 28.7975287861174 ], [ -82.025811014565591, 28.79752410961957 ], [ -82.025825174997721, 28.797514585794982 ], [ -82.025834286813676, 28.797506852190569 ], [ -82.025841626559142, 28.797499388705624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kestrel Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025841626559142, 28.797499388705624 ], [ -82.025937426750971, 28.79756011367714 ], [ -82.026001844631807, 28.797569482109779 ], [ -82.026111608256983, 28.797581148329726 ], [ -82.026206131136945, 28.797591195873391 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bobcat Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025168082257295, 28.798002981519026 ], [ -82.025168027712056, 28.797771878566508 ], [ -82.025168002468888, 28.797664924771045 ], [ -82.025168288248437, 28.79763013606312 ], [ -82.025169675991364, 28.797620353843413 ], [ -82.025173096499643, 28.797608107041455 ], [ -82.025177982099152, 28.797596972526168 ], [ -82.02518499523174, 28.797585611146076 ], [ -82.02522956056842, 28.797523726111617 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whitetail Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025841626559142, 28.797499388705624 ], [ -82.02584593582209, 28.797494340370523 ], [ -82.025851002690118, 28.797487571184902 ], [ -82.025855617707464, 28.797480350926673 ], [ -82.025859377452122, 28.797473396106877 ], [ -82.025862167340819, 28.797467301370766 ], [ -82.025864908811045, 28.797460079655291 ], [ -82.025867827770355, 28.797449774705168 ], [ -82.025869713029337, 28.797438951117176 ], [ -82.025870449622261, 28.797426627196817 ], [ -82.025870413327354, 28.797277086957344 ], [ -82.025870334988014, 28.796954313547253 ], [ -82.025870223739503, 28.796495938788858 ], [ -82.025870119909584, 28.796068120815736 ], [ -82.025870088828384, 28.79594005287964 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whitetail Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025870088828384, 28.79594005287964 ], [ -82.025870029060528, 28.795693781082122 ], [ -82.025870005884897, 28.79559828572398 ], [ -82.025870047056458, 28.795573777098504 ], [ -82.025870984261502, 28.795556635689945 ], [ -82.025873135321646, 28.795539564436389 ], [ -82.025877736427134, 28.795517591365144 ], [ -82.025881791441449, 28.795503568672505 ], [ -82.025886585109134, 28.795489992487294 ], [ -82.025898334059335, 28.795463954973147 ], [ -82.025916912183021, 28.795433444326139 ], [ -82.025934508279377, 28.795408461427016 ], [ -82.025945434156426, 28.795392947735095 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sugar Cane Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027393169798515, 28.797616557794278 ], [ -82.027375376488195, 28.797555852815712 ], [ -82.027359666122905, 28.79750073183617 ], [ -82.027353539400167, 28.797472605255752 ], [ -82.027347967428412, 28.797434738103096 ], [ -82.027346370936598, 28.797416649759526 ], [ -82.027343573701188, 28.797357881797687 ], [ -82.02733259060841, 28.797114525773218 ], [ -82.027313950096087, 28.796701616793989 ], [ -82.027302199663623, 28.796441325389129 ], [ -82.027297799702254, 28.796343846717924 ], [ -82.027296500627997, 28.796315065005963 ], [ -82.027294359979138, 28.796283983464171 ], [ -82.0272919550453, 28.796264872052944 ], [ -82.027286651750913, 28.79623583216226 ], [ -82.027281436459546, 28.796214425818615 ], [ -82.027274444460204, 28.796191066316187 ], [ -82.027262483171782, 28.796158891290663 ], [ -82.027249197178435, 28.796129788897794 ], [ -82.027229198955041, 28.796093741814687 ], [ -82.027208656111213, 28.79606293907586 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Passion Flower Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027393169798515, 28.797616557794278 ], [ -82.027362448147045, 28.797623839186173 ], [ -82.027308208279294, 28.797635078220797 ], [ -82.027255272086819, 28.797645069982465 ], [ -82.027194281454641, 28.797655406176762 ], [ -82.027132794722206, 28.797664566727189 ], [ -82.027058765805663, 28.797673938123431 ], [ -82.026988608402434, 28.797681165736311 ], [ -82.026878827030259, 28.797689278019032 ], [ -82.026852034258525, 28.797690522065956 ], [ -82.026827109469068, 28.797690000824449 ], [ -82.026803117402409, 28.7976876242444 ], [ -82.026777926295424, 28.797683085047918 ], [ -82.026757149952317, 28.797677681485158 ], [ -82.026727886589683, 28.797667301491508 ], [ -82.026708887715941, 28.797658627599777 ], [ -82.026687021821445, 28.797646465915214 ], [ -82.02666846657516, 28.797633995002037 ], [ -82.026650513180883, 28.797619629114951 ], [ -82.026636063277195, 28.797606011474475 ], [ -82.026619684352013, 28.797587643526327 ], [ -82.026607083580785, 28.797570570574766 ], [ -82.02659499630127, 28.797550537036777 ], [ -82.02658556525347, 28.797530796241972 ], [ -82.026577895750847, 28.797509653818967 ], [ -82.026573060246847, 28.797491033720149 ], [ -82.026569299942963, 28.797466804641743 ], [ -82.026568345471333, 28.797451284147499 ], [ -82.026568247180322, 28.797332343142926 ], [ -82.026568076446452, 28.79664764317836 ], [ -82.026567966406418, 28.796206332941782 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Purslane Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032285002718808, 28.799161977781825 ], [ -82.032292598054738, 28.79813613638332 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Redbud Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031582495007271, 28.799158903187475 ], [ -82.032285002718808, 28.799161977781825 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Julia Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031590100188097, 28.798132736978889 ], [ -82.032292598054738, 28.79813613638332 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bougainvillea Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031582495007271, 28.799158903187475 ], [ -82.031590100188097, 28.798132736978889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Honeysuckle Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027284917651542, 28.794212939390047 ], [ -82.027271920934155, 28.794072504156794 ], [ -82.027267390038375, 28.794003228167735 ], [ -82.027277056760198, 28.793896020672513 ], [ -82.027309478949235, 28.793589983152863 ], [ -82.027358520103533, 28.793127076132514 ], [ -82.027360962290487, 28.793104028773357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Childers Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027397190754954, 28.792532839436447 ], [ -82.02746938065053, 28.792496415066832 ], [ -82.02750886358136, 28.792484573430521 ], [ -82.027591718789367, 28.792480979353098 ], [ -82.027763056885789, 28.79247440169096 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Childers Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026169417484027, 28.792385956125866 ], [ -82.02619491397283, 28.792375501647324 ], [ -82.026225900849951, 28.792369688531839 ], [ -82.026337129239522, 28.792378426306549 ], [ -82.026580966100923, 28.792402907573383 ], [ -82.026933034995167, 28.792438254817014 ], [ -82.02720660440508, 28.79246571856207 ], [ -82.027297077548823, 28.792474801577558 ], [ -82.027331304643056, 28.792482401359603 ], [ -82.02737263212515, 28.792505521326419 ], [ -82.027397190754954, 28.792532839436447 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Emerson Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026151987479835, 28.792968724625414 ], [ -82.026129861279088, 28.792951776118169 ], [ -82.026104660829247, 28.792916873055532 ], [ -82.026095119837535, 28.792881099031614 ], [ -82.026099366360668, 28.792700117692849 ], [ -82.026104822309151, 28.79249713502189 ], [ -82.026112144470261, 28.792448665900888 ], [ -82.026129894354227, 28.792418132809495 ], [ -82.026169417484027, 28.792385956125866 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Emerson Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026083282617762, 28.793298518478124 ], [ -82.026085955302818, 28.79319908127863 ], [ -82.026089251232818, 28.793076445492694 ], [ -82.026091465698372, 28.793059309251152 ], [ -82.026108616317515, 28.793023975069588 ], [ -82.026151987479835, 28.792968724625414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Skipper Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026151987479835, 28.792968724625414 ], [ -82.026183681104612, 28.792982928299946 ], [ -82.026212430847153, 28.792988720256218 ], [ -82.026363156870644, 28.793003854287331 ], [ -82.026686411044935, 28.793036306679937 ], [ -82.026987346116684, 28.793066520378765 ], [ -82.027182413923569, 28.793086105025132 ], [ -82.027360962290487, 28.793104028773357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tenney Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020880907749003, 28.793149623311301 ], [ -82.021293876336031, 28.793244623593889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zebra Longwing Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021562345601595, 28.795214291197468 ], [ -82.021544746282515, 28.795207947033166 ], [ -82.021516047928614, 28.795194571943107 ], [ -82.0214951254966, 28.795182217976159 ], [ -82.021481885179554, 28.795173050701109 ], [ -82.021465669447352, 28.795160117626232 ], [ -82.021445733125162, 28.795140984424265 ], [ -82.021434782556327, 28.795128483650874 ], [ -82.021423186091241, 28.795113138885068 ], [ -82.021394397243839, 28.795056829030237 ], [ -82.021382357405216, 28.795001234858578 ], [ -82.021353405050448, 28.794797796587396 ], [ -82.02130437761555, 28.794453323525541 ], [ -82.021272112370781, 28.794226613266623 ], [ -82.021239544671261, 28.793997788918496 ], [ -82.021231391920992, 28.793940117913852 ], [ -82.021224610468806, 28.793881058943438 ], [ -82.021220004461881, 28.79382090694229 ], [ -82.021217558999396, 28.793751689977185 ], [ -82.021217700526918, 28.793700909582739 ], [ -82.021219560548175, 28.793648559805746 ], [ -82.021222561059488, 28.793603524907873 ], [ -82.021231452110356, 28.793520830180963 ], [ -82.021245803730196, 28.793432756840268 ], [ -82.021260678403308, 28.793363550784349 ], [ -82.02127251943628, 28.793316951738049 ], [ -82.021293876336031, 28.793244623593889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Opossum Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022009015384967, 28.796404101614556 ], [ -82.022243561360682, 28.796102644317859 ], [ -82.022368280689136, 28.795968529961229 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Atamasco Lily Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021562345601595, 28.795214291197468 ], [ -82.02148356228642, 28.795398778434134 ], [ -82.021460468244598, 28.79545286840289 ], [ -82.021443828997107, 28.795494015508453 ], [ -82.021421238799519, 28.795557895486581 ], [ -82.021405234012533, 28.795611417709736 ], [ -82.021393149205707, 28.795659104978583 ], [ -82.021380134394533, 28.795722692041036 ], [ -82.021371319212065, 28.795780433280012 ], [ -82.021366674025217, 28.795822396042201 ], [ -82.021363392603931, 28.795866229090663 ], [ -82.021361818746158, 28.795904892529126 ], [ -82.021361531529195, 28.795949039125944 ], [ -82.021362512974335, 28.795985575423789 ], [ -82.021364115942788, 28.796010592702487 ], [ -82.021365378806252, 28.796020103788653 ], [ -82.021369654463143, 28.79604090144586 ], [ -82.021376828378777, 28.796063678335404 ], [ -82.021385335390619, 28.796083456636158 ], [ -82.02139437855908, 28.796100227446249 ], [ -82.021407332206508, 28.79611981287476 ], [ -82.021422952141293, 28.796138999974907 ], [ -82.021437063306166, 28.796153478133714 ], [ -82.021455893974604, 28.796169724102192 ], [ -82.021475461724449, 28.796183724098803 ], [ -82.021496705012652, 28.796196274721598 ], [ -82.021513203687732, 28.79620441556429 ], [ -82.021524610729884, 28.796209316981514 ], [ -82.021542582106861, 28.796215932686138 ], [ -82.021582748895042, 28.796227366933653 ], [ -82.021667024357939, 28.796251163263477 ], [ -82.021723214988398, 28.79626770839829 ], [ -82.021766037405968, 28.79628155857305 ], [ -82.021800812382025, 28.796294379544722 ], [ -82.02183274998815, 28.796307462619993 ], [ -82.021865960231182, 28.796322471926743 ], [ -82.021901390786809, 28.796340164356259 ], [ -82.021929924015168, 28.796355760881106 ], [ -82.021957796731982, 28.796372243574378 ], [ -82.022009015384967, 28.796404101614556 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Atamasco Lily Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022009015384967, 28.796404101614556 ], [ -82.022069146630258, 28.796439642374295 ], [ -82.022110699913384, 28.796462976847362 ], [ -82.022184667818195, 28.796502160714173 ], [ -82.022228766370759, 28.796524147594763 ], [ -82.022265984559752, 28.796541937996238 ], [ -82.022311381763956, 28.796562712837336 ], [ -82.02235570414517, 28.796582045939058 ], [ -82.022401116348291, 28.796600906040002 ], [ -82.022440046804647, 28.796616331157889 ], [ -82.022492810981433, 28.796636170863351 ], [ -82.022534217164107, 28.796650898970924 ], [ -82.022574740156884, 28.796664613008772 ], [ -82.022601389088848, 28.796672011281952 ], [ -82.022622529407911, 28.796676098050522 ], [ -82.022646764021232, 28.796678955365465 ], [ -82.022671510409296, 28.796679926759776 ], [ -82.022692448943999, 28.796679227683953 ], [ -82.022716469350215, 28.796676698214767 ], [ -82.02273359887846, 28.796673732239075 ], [ -82.022749772528968, 28.796670011180918 ], [ -82.022769434662322, 28.79666421423433 ], [ -82.022789757119824, 28.796656647742314 ], [ -82.022805504946248, 28.796649575557751 ], [ -82.022819803242569, 28.796642142682678 ], [ -82.022832137898519, 28.796634871640386 ], [ -82.022844605507501, 28.796626617054535 ], [ -82.022857008370593, 28.796617380761951 ], [ -82.022871076243305, 28.796605455304512 ], [ -82.022883037102375, 28.796593857729594 ], [ -82.022896045235512, 28.796579322954685 ], [ -82.022908542826556, 28.796562857313059 ], [ -82.0229156873486, 28.796551945378905 ], [ -82.022924497693737, 28.796537369782168 ], [ -82.022947068960406, 28.796498316698564 ], [ -82.022957987287214, 28.796478453201779 ], [ -82.022974996747223, 28.796446075432275 ], [ -82.022992404062322, 28.796410889598153 ], [ -82.023016557966315, 28.796357937920416 ], [ -82.023041585849938, 28.796296597293246 ], [ -82.023060081646079, 28.796245563953057 ], [ -82.023075564498882, 28.79619772619618 ], [ -82.023084398076477, 28.796167658778156 ], [ -82.023092904588921, 28.796136227116637 ], [ -82.023102560707017, 28.79609670873829 ], [ -82.023113051538786, 28.796047182671064 ], [ -82.023118703311368, 28.796016288355066 ], [ -82.023122992657335, 28.795989892292727 ], [ -82.023130009384531, 28.795937840322022 ], [ -82.023133893747399, 28.795900311591733 ], [ -82.023137834694907, 28.795845019021286 ], [ -82.023139442791106, 28.795801933322704 ], [ -82.023139771446054, 28.79575865654521 ], [ -82.023139218796032, 28.795727836340532 ], [ -82.023135920725636, 28.79566301383635 ], [ -82.023131724105497, 28.795616136676077 ], [ -82.023127080557856, 28.795577239643258 ], [ -82.023117017837237, 28.795512656465803 ], [ -82.023100604157989, 28.795433438822545 ], [ -82.023064871751259, 28.795293455400383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sea Grapes Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024328591954628, 28.797255147670477 ], [ -82.02434080450108, 28.797071974294848 ], [ -82.02434195520253, 28.796727798698335 ], [ -82.024341918004154, 28.796569235312756 ], [ -82.024340789851962, 28.796536282150722 ], [ -82.024337887335221, 28.796506948473684 ], [ -82.024332996356449, 28.79647669658873 ], [ -82.024326851195426, 28.796449241188771 ], [ -82.024318123017366, 28.796418946660427 ], [ -82.024309035182711, 28.796392635904237 ], [ -82.024299918219526, 28.796368840800035 ], [ -82.024289670250994, 28.796344458486299 ], [ -82.024278044338985, 28.796319171391691 ], [ -82.024262749131807, 28.796288929432464 ], [ -82.024242801212893, 28.796253501785994 ], [ -82.02422462171495, 28.79622431241933 ], [ -82.024207524821406, 28.796199039801657 ], [ -82.024185852261127, 28.796169522593065 ], [ -82.024164333944384, 28.796142567019817 ], [ -82.024150975015203, 28.796126847434408 ], [ -82.024136345750193, 28.796110437797978 ], [ -82.024114158331912, 28.796086991426044 ], [ -82.024082167273363, 28.796055885203863 ], [ -82.024045177070022, 28.796023091607445 ], [ -82.024034384441549, 28.796013226675434 ], [ -82.024016657396743, 28.795995893590387 ], [ -82.023997916670396, 28.79597582666965 ], [ -82.023976028835094, 28.795949673284881 ], [ -82.023956622965159, 28.795923425630399 ], [ -82.02393533075832, 28.795890214246747 ], [ -82.023926340673967, 28.795874363956909 ], [ -82.023914961448043, 28.795852223151151 ], [ -82.023905226470404, 28.795830883316778 ], [ -82.023891878769831, 28.795796333338906 ], [ -82.023883623893269, 28.795770067524582 ], [ -82.023876375388937, 28.795741314763809 ], [ -82.023871005627868, 28.795713025470349 ], [ -82.023867298279129, 28.79568433165651 ], [ -82.023865589754692, 28.795661740744425 ], [ -82.023864931686433, 28.795636848755386 ], [ -82.023865196406774, 28.795620496998758 ], [ -82.023866250133921, 28.79560076053221 ], [ -82.023869403509252, 28.795570783359661 ], [ -82.023873055308371, 28.795548060696248 ], [ -82.023892356048378, 28.795443685978896 ], [ -82.023915929193109, 28.79531620770975 ], [ -82.023921275729236, 28.795286610033088 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spanish Moss Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035950112601114, 28.798024815123863 ], [ -82.035954984064489, 28.798023650775185 ], [ -82.03599930302336, 28.798011596970394 ], [ -82.036042943451875, 28.797998383856978 ], [ -82.03609307370769, 28.797980670104632 ], [ -82.036149125863176, 28.797957215175519 ], [ -82.036203271590665, 28.797930553003077 ], [ -82.036246771835536, 28.797905968922009 ], [ -82.036293331052065, 28.797876144295806 ], [ -82.036336508311777, 28.797844793831285 ], [ -82.036382407075919, 28.797806915309128 ], [ -82.036421715442444, 28.797770068048241 ], [ -82.036529734370006, 28.79766409361536 ], [ -82.036668085236471, 28.797528357294606 ], [ -82.036706240176599, 28.797489133565705 ], [ -82.03673765478915, 28.797452738564264 ], [ -82.03676934520648, 28.797411226469013 ], [ -82.03678056037306, 28.79739504141282 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warbler Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035935423546007, 28.798984499189061 ], [ -82.035942254601252, 28.798971024989591 ], [ -82.035950894377265, 28.798947553603391 ], [ -82.035956448143111, 28.798925315578458 ], [ -82.035959768115916, 28.798901111094594 ], [ -82.035960682713181, 28.798879467998709 ], [ -82.035966352356397, 28.798688368549247 ], [ -82.03597305503547, 28.798462472961937 ], [ -82.035977866794227, 28.798300263052404 ], [ -82.035981531006925, 28.798176598409722 ], [ -82.035981194373292, 28.798153555248884 ], [ -82.035979188274396, 28.798131230763456 ], [ -82.035972790738327, 28.798096814633951 ], [ -82.035966515212195, 28.798074802557945 ], [ -82.035950112601114, 28.798024815123863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spanish Moss Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035272407881607, 28.798061223997134 ], [ -82.035317077287161, 28.798067703819434 ], [ -82.035384638049109, 28.798074060465005 ], [ -82.035508694910433, 28.798078964280243 ], [ -82.035585787864605, 28.798077631576813 ], [ -82.035655267866616, 28.798073546937964 ], [ -82.035717525474809, 28.798067546717878 ], [ -82.035784528962907, 28.798058579339301 ], [ -82.03584412487136, 28.798048378584866 ], [ -82.035895610792124, 28.79803784064293 ], [ -82.035950112601114, 28.798024815123863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spanish Moss Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034633239228043, 28.797837244089237 ], [ -82.034648051400012, 28.797846499002983 ], [ -82.034698584157837, 28.797875078796643 ], [ -82.034783434567601, 28.797917894741804 ], [ -82.034844385663035, 28.797944965898811 ], [ -82.034930220548134, 28.797978289178193 ], [ -82.034985665077002, 28.797997009860872 ], [ -82.035100592554159, 28.798029257325005 ], [ -82.035246910574486, 28.798058307012749 ], [ -82.035272407881607, 28.798061223997134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warbler Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035228726306627, 28.79912669434006 ], [ -82.035585446657365, 28.799128246014131 ], [ -82.03569650491599, 28.799128356310838 ], [ -82.035723443036133, 28.799126003334177 ], [ -82.035745480112539, 28.799122310785023 ], [ -82.035792131573231, 28.799108837108506 ], [ -82.035815871009717, 28.799098664603754 ], [ -82.035840523094649, 28.799085277822385 ], [ -82.035865907251974, 28.799067835855944 ], [ -82.035888978511835, 28.799047776878513 ], [ -82.035910673696648, 28.799023694845459 ], [ -82.035929560896037, 28.798996062941498 ], [ -82.035935423546007, 28.798984499189061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spanish Moss Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034616588386086, 28.795475052118139 ], [ -82.034642166687092, 28.795502141255078 ], [ -82.034864069916622, 28.795737154126478 ], [ -82.034916769086976, 28.795793369330948 ], [ -82.034932418421945, 28.79581361056259 ], [ -82.034942581028758, 28.795829601483053 ], [ -82.034950964297323, 28.79584539705084 ], [ -82.034959994770247, 28.795866865293117 ], [ -82.034965514553519, 28.795884367857159 ], [ -82.034969338790049, 28.79590106147559 ], [ -82.034972716902317, 28.795928560398984 ], [ -82.034973073876174, 28.795939416932654 ], [ -82.03497238154155, 28.795958435148364 ], [ -82.034968797569306, 28.795983902020776 ], [ -82.034962442359031, 28.796008170420741 ], [ -82.034954548473209, 28.796028986059596 ], [ -82.034945078612282, 28.796048175227011 ], [ -82.034937722803633, 28.796060578469433 ], [ -82.034922719031343, 28.796081625090757 ], [ -82.034910150040218, 28.796096220463472 ], [ -82.034848846490547, 28.79615617655158 ], [ -82.034701804770989, 28.796298867341285 ], [ -82.03459580848893, 28.796401724143273 ], [ -82.034512679517348, 28.796482610162524 ], [ -82.034474755842197, 28.796522504541201 ], [ -82.034441120743949, 28.796561377325403 ], [ -82.034412767178708, 28.796597174608152 ], [ -82.034390001937012, 28.796628286591062 ], [ -82.034362692696391, 28.796668949774084 ], [ -82.034336816116351, 28.796711603999043 ], [ -82.034315717792197, 28.796750140683809 ], [ -82.034299249786528, 28.796783200984873 ], [ -82.034282723479365, 28.796819733396351 ], [ -82.034263981752019, 28.796866588808388 ], [ -82.034251836940356, 28.79690111880095 ], [ -82.034240419831747, 28.79693695967195 ], [ -82.034232173756152, 28.796965369214352 ], [ -82.034223886623224, 28.796996712183812 ], [ -82.03421515575458, 28.797033832768534 ], [ -82.034204582261054, 28.797087439055179 ], [ -82.034198954019033, 28.797124187118126 ], [ -82.034195055534795, 28.79716933257393 ], [ -82.034194391654907, 28.797207192861872 ], [ -82.034196303850678, 28.797247702603862 ], [ -82.034198976586595, 28.797273765234685 ], [ -82.034201979619525, 28.797294876795863 ], [ -82.034206075162302, 28.797317688945387 ], [ -82.034212877370223, 28.797347855172735 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spanish Moss Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034212877370223, 28.797347855172735 ], [ -82.034219007832434, 28.797372367676864 ], [ -82.03422734572986, 28.79739672172952 ], [ -82.034237239446924, 28.797423698418221 ], [ -82.034250625647005, 28.797455253475899 ], [ -82.034263299224961, 28.797481454387487 ], [ -82.034273453661868, 28.797500510511135 ], [ -82.034286766414553, 28.797523433161274 ], [ -82.034301718321885, 28.797546912130038 ], [ -82.034316099807512, 28.797567648209245 ], [ -82.034337363204656, 28.797595589346027 ], [ -82.034355152920497, 28.797616890324147 ], [ -82.034371549544048, 28.797635105738191 ], [ -82.03440429045915, 28.797668045526972 ], [ -82.034429592295425, 28.797690838854404 ], [ -82.0344594511553, 28.797715700043131 ], [ -82.034501559868644, 28.797748623035297 ], [ -82.034521077563113, 28.797763093055828 ], [ -82.034579328558195, 28.797803558028583 ], [ -82.034633239228043, 28.797837244089237 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cedar Waxwing Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034212877370223, 28.797347855172735 ], [ -82.033752479796902, 28.797438968313269 ], [ -82.033578777457635, 28.797473117094668 ], [ -82.033511362964802, 28.797483990966896 ], [ -82.033477709956813, 28.797487653480086 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Atala Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033477709956813, 28.797487653480086 ], [ -82.033466627936249, 28.797401396907748 ], [ -82.033461506969985, 28.797299909663909 ], [ -82.033460179224718, 28.797218040478512 ], [ -82.033474572576353, 28.797085341135428 ], [ -82.033483935631182, 28.79701864625471 ], [ -82.033492988797576, 28.796966534620577 ], [ -82.033503368777588, 28.796915342120471 ], [ -82.033528824673027, 28.796817316854579 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spider Lily Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032910654679398, 28.796459561228144 ], [ -82.032939227877435, 28.796479756304745 ], [ -82.033073123907698, 28.796574394092474 ], [ -82.033188801214791, 28.796656153801877 ], [ -82.033301709275136, 28.796735952450138 ], [ -82.03333118257359, 28.796754707135385 ], [ -82.033354470924692, 28.796767117342053 ], [ -82.033376388967667, 28.79677710877565 ], [ -82.033404459458524, 28.796787761017644 ], [ -82.033435118005528, 28.796796894938858 ], [ -82.033528824673027, 28.796817316854579 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cedar Waxwing Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033477709956813, 28.797487653480086 ], [ -82.033399160996026, 28.797496202926943 ], [ -82.033313944236014, 28.797500664654368 ], [ -82.033131533223539, 28.797500750862529 ], [ -82.032736055698876, 28.797498838233405 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cedar Waxwing Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032736055698876, 28.797498838233405 ], [ -82.032627466710778, 28.797498313461578 ], [ -82.032093527929021, 28.797495730418959 ], [ -82.031735767252812, 28.79749399920869 ], [ -82.031594839333493, 28.797493316790607 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Julia Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032292598054738, 28.79813613638332 ], [ -82.032687847493165, 28.798138049457581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bougainvillea Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031590100188097, 28.798132736978889 ], [ -82.031594839333493, 28.797493316790607 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Redbud Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031228118365021, 28.799157350335307 ], [ -82.031582495007271, 28.799158903187475 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cedar Waxwing Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029505059277227, 28.796454859155247 ], [ -82.029454532503337, 28.796259021143584 ], [ -82.02939133607147, 28.795993563350461 ], [ -82.029372936041426, 28.795901526847913 ], [ -82.029342129441247, 28.795721030234375 ], [ -82.02931046070978, 28.795467084637917 ], [ -82.029292902000762, 28.7952268674428 ], [ -82.029287736390017, 28.795059770144192 ], [ -82.02928992257408, 28.794833725905853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cedar Waxwing Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029613354127875, 28.796874585551301 ], [ -82.02957577533509, 28.796728935967241 ], [ -82.029505059277227, 28.796454859155247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029881066139311, 28.793787437693421 ], [ -82.03000425200608, 28.793708378433045 ], [ -82.030121105481797, 28.793633379037882 ], [ -82.030250434792507, 28.793550555573397 ], [ -82.030295117914704, 28.79352311370706 ], [ -82.030425990036193, 28.793449075557646 ], [ -82.030481931914295, 28.793420131515436 ], [ -82.030527727704282, 28.793397573547161 ], [ -82.030598199350976, 28.793364779698294 ], [ -82.030669527823136, 28.793333866945577 ], [ -82.030739232507216, 28.793305778754487 ], [ -82.030806153827143, 28.793280309657831 ], [ -82.030890552057642, 28.793251660494452 ], [ -82.030939674622374, 28.793236025092291 ], [ -82.031011740146113, 28.793214736966281 ], [ -82.031067430717883, 28.793199599929888 ], [ -82.031129040689819, 28.793184157462179 ], [ -82.031176204037507, 28.7931732460221 ], [ -82.031246089745096, 28.793158971939622 ], [ -82.031248817193912, 28.79315796344131 ], [ -82.031300387525562, 28.793148460377232 ], [ -82.031347920319803, 28.793140017521978 ], [ -82.031402410232189, 28.793131555930124 ], [ -82.031504641931235, 28.793118329186008 ], [ -82.031601759324559, 28.793108923923754 ], [ -82.031678187851128, 28.793103663134271 ], [ -82.031783015525548, 28.793098726939654 ], [ -82.031884437851403, 28.793095456214701 ], [ -82.032005035682374, 28.793093468585802 ], [ -82.032131320107595, 28.793093603575027 ], [ -82.03222291559257, 28.793095118035652 ], [ -82.032352181996188, 28.793099285463406 ], [ -82.032483436340868, 28.793105955317195 ], [ -82.032618041040834, 28.793115351946206 ], [ -82.032758250754156, 28.793127912428737 ], [ -82.032823265050382, 28.793135037033693 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Key Deer Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028564019552746, 28.795101651915832 ], [ -82.028563882363727, 28.794888160237793 ], [ -82.028563691239384, 28.794763779169461 ], [ -82.028560631058383, 28.794639709986463 ], [ -82.028556048278531, 28.794479571159478 ], [ -82.028550720005043, 28.794293445872068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crowned Caterpillar Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024190876478599, 28.794352168135582 ], [ -82.024375528942954, 28.794453210417064 ], [ -82.024493515332509, 28.794522208587122 ], [ -82.024601855933213, 28.794591824632864 ], [ -82.024675442059404, 28.794642829317233 ], [ -82.024769733216758, 28.794708014646226 ], [ -82.024912038636614, 28.794798499416121 ], [ -82.025116976454569, 28.794917335171526 ], [ -82.025285315266501, 28.795014086830829 ], [ -82.025468223414208, 28.795119213592283 ], [ -82.025567530729262, 28.795176291063608 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crowned Caterpillar Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025567530729262, 28.795176291063608 ], [ -82.025689527201095, 28.795246408115116 ], [ -82.025886722494818, 28.795359746326035 ], [ -82.025925820645355, 28.795382164236571 ], [ -82.025945434156426, 28.795392947735095 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spoonbill Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025824555235687, 28.794516618735244 ], [ -82.02583306302958, 28.794498640379754 ], [ -82.025894262743279, 28.794373501689783 ], [ -82.026025264822422, 28.794105648265873 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026025264822422, 28.794105648265873 ], [ -82.026047571603002, 28.794114510224912 ], [ -82.026162950735738, 28.794154101048484 ], [ -82.026269447060571, 28.794185519395807 ], [ -82.026372015812925, 28.794211259245174 ], [ -82.026490439312738, 28.794233759405625 ], [ -82.026600630218994, 28.794247431000976 ], [ -82.02670876361698, 28.794254243518537 ], [ -82.02681255435067, 28.794254719842591 ], [ -82.026925054249674, 28.794248534431365 ], [ -82.027124304596853, 28.794228241529979 ], [ -82.027284917651542, 28.794212939390047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024845742856755, 28.793183664323259 ], [ -82.024877619525483, 28.793223379368197 ], [ -82.024964858239827, 28.79333270067092 ], [ -82.025052475468556, 28.793439193998207 ], [ -82.025129297361488, 28.793522931072918 ], [ -82.025197328961383, 28.793590491218623 ], [ -82.025276447869402, 28.793662393055435 ], [ -82.025379649567171, 28.793746904800201 ], [ -82.025502835980603, 28.793836018216844 ], [ -82.025590946239291, 28.79389292178033 ], [ -82.025703328859606, 28.793958174426113 ], [ -82.025821424152056, 28.794018752840785 ], [ -82.025927610852676, 28.794066854379597 ], [ -82.026025264822422, 28.794105648265873 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sea Grapes Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024461959092164, 28.793776822434015 ], [ -82.024462124409595, 28.793774108247625 ], [ -82.024463971739038, 28.793740470598525 ], [ -82.024466678072471, 28.793709565002434 ], [ -82.024472424719377, 28.793670334133807 ], [ -82.024479429503472, 28.793636786713698 ], [ -82.024486454264505, 28.793609966032978 ], [ -82.024495381794083, 28.793581363852184 ], [ -82.024507254438191, 28.793549210552197 ], [ -82.024521726513385, 28.793515853109021 ], [ -82.024541464375332, 28.793477116050941 ], [ -82.024561862873611, 28.793442686515949 ], [ -82.024586660332858, 28.79340626028679 ], [ -82.024613014300257, 28.793372395445257 ], [ -82.024644464875948, 28.793336952455775 ], [ -82.024678389606038, 28.793303483282436 ], [ -82.024718419003506, 28.793269053860978 ], [ -82.02476392246966, 28.793235325456155 ], [ -82.024845742856755, 28.793183664323259 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sea Grapes Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024190875454281, 28.794352168135759 ], [ -82.024228937332339, 28.794298140065674 ], [ -82.024306644061824, 28.794187834150637 ], [ -82.024349349618575, 28.794127212939063 ], [ -82.02441193359121, 28.794028378896542 ], [ -82.024429565161881, 28.793987789777155 ], [ -82.024445021136955, 28.79393858575202 ], [ -82.024455671856899, 28.793879765714809 ], [ -82.024461959092164, 28.793776822434015 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sea Grapes Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023921275729236, 28.795286610033088 ], [ -82.023926690805339, 28.795256622545214 ], [ -82.023932708359567, 28.795218271416537 ], [ -82.023935555554942, 28.795197991448848 ], [ -82.02393993388344, 28.795162926823519 ], [ -82.023943808823731, 28.795125908776924 ], [ -82.023946880815402, 28.795089471054752 ], [ -82.023953568922948, 28.794999277426424 ], [ -82.023960115069443, 28.794911009356486 ], [ -82.023965955500799, 28.794836688455757 ], [ -82.023968895005908, 28.794812456340157 ], [ -82.023972996690162, 28.794786297587095 ], [ -82.023978721255602, 28.794757123025764 ], [ -82.023987025981654, 28.794722860781317 ], [ -82.023998833712511, 28.794683193080516 ], [ -82.024008229963485, 28.794656279082908 ], [ -82.024022467263791, 28.794620633473013 ], [ -82.024035293659125, 28.79459232120087 ], [ -82.024048214847951, 28.794566504708513 ], [ -82.024062088761966, 28.79454116717891 ], [ -82.024075825911112, 28.794518052970311 ], [ -82.024102807676286, 28.794477182567608 ], [ -82.024179700594203, 28.794368030926609 ], [ -82.024190875454281, 28.794352168135759 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zebra Longwing Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023921275729236, 28.795286610033088 ], [ -82.023748634138315, 28.795261836702952 ], [ -82.023602451995089, 28.795240860131191 ], [ -82.023556762257812, 28.795234509238799 ], [ -82.023500753688822, 28.795229497293196 ], [ -82.023454396150782, 28.795228052353071 ], [ -82.023406363354596, 28.795229114302359 ], [ -82.023366334071227, 28.795231999374121 ], [ -82.023329543006355, 28.795236273455583 ], [ -82.023291291642963, 28.795242398413759 ], [ -82.023258646558688, 28.795249015994127 ], [ -82.023229633837033, 28.795256003813993 ], [ -82.023156455261017, 28.795273988212912 ], [ -82.023104279250717, 28.795285626748825 ], [ -82.023064871751259, 28.795293455400383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zebra Longwing Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023064871751259, 28.795293455400383 ], [ -82.0230189477127, 28.795302577224493 ], [ -82.022954359711377, 28.79531371876482 ], [ -82.022875307192066, 28.795325407636067 ], [ -82.022793951553766, 28.795335230853237 ], [ -82.022667403523343, 28.795346123367938 ], [ -82.022595834094915, 28.795349943598612 ], [ -82.022502222748557, 28.795352405744836 ], [ -82.022404468371633, 28.795351920633056 ], [ -82.022310526981485, 28.795348509545175 ], [ -82.022197174538903, 28.79534053215642 ], [ -82.022089254442108, 28.795328975243713 ], [ -82.022009162543313, 28.79531786683879 ], [ -82.021922746764176, 28.795303422622659 ], [ -82.021871170562079, 28.795293567497296 ], [ -82.021814207991071, 28.795281594559885 ], [ -82.021748927197635, 28.795266440431455 ], [ -82.021684934789121, 28.79525007697303 ], [ -82.021647770934521, 28.79523987665403 ], [ -82.021594716566568, 28.795224403851353 ], [ -82.021565205747407, 28.795215323003653 ], [ -82.021562345601595, 28.795214291197468 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zebra Longwing Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021293876336031, 28.793244623593889 ], [ -82.021312742381198, 28.793189245775601 ], [ -82.021335624888039, 28.7931294920275 ], [ -82.021389049865377, 28.793011187036843 ], [ -82.021449655599099, 28.792900289819109 ], [ -82.021526744956532, 28.792782026267201 ], [ -82.021610560633249, 28.792673216071091 ], [ -82.021706173627464, 28.792567095596826 ], [ -82.021819881161861, 28.79245272870639 ], [ -82.021988734889277, 28.792283151364114 ], [ -82.022164496550289, 28.792106498579614 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022164496550289, 28.792106498579614 ], [ -82.022238420280488, 28.792149880918632 ], [ -82.022353225688391, 28.792211012421152 ], [ -82.022454334788677, 28.792260162399288 ], [ -82.022575597079125, 28.79231369519913 ], [ -82.022693225837969, 28.792360311345316 ], [ -82.022843948206543, 28.792412841167618 ], [ -82.0229197855368, 28.792435726774627 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Emerson Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026169417484027, 28.792385956125866 ], [ -82.026151141412001, 28.792359211385968 ], [ -82.026126513404549, 28.792323168595139 ], [ -82.026118970248831, 28.792309911419679 ], [ -82.026113942680894, 28.792296221564445 ], [ -82.026111724508638, 28.792285600852001 ], [ -82.026110893355181, 28.792271248814792 ], [ -82.026117309485187, 28.792032493744667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Honeysuckle Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027360962290487, 28.793104028773357 ], [ -82.027409017950575, 28.792650413013757 ], [ -82.027414168974659, 28.792601797175028 ], [ -82.027411156988919, 28.79256394663679 ], [ -82.027397190754954, 28.792532839436447 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027284917651542, 28.794212939390047 ], [ -82.027411241791668, 28.794206943957562 ], [ -82.027506474017159, 28.794206474005676 ], [ -82.027628009063292, 28.794210924490933 ], [ -82.027736381668532, 28.794219700473189 ], [ -82.027838191329508, 28.794231925419751 ], [ -82.027930988963135, 28.794243949079558 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Key Deer Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028613603220421, 28.795729831804998 ], [ -82.028602276841539, 28.795644953586294 ], [ -82.028582841872762, 28.79545722692384 ], [ -82.028570610246277, 28.795281541939961 ], [ -82.028564019552746, 28.795101651915832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trumpet Vine Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026567966406418, 28.796206332941782 ], [ -82.026642407432647, 28.79620631781523 ], [ -82.02668784111836, 28.796206282946489 ], [ -82.026719696972762, 28.796205573032346 ], [ -82.026750365392772, 28.796203983584082 ], [ -82.026781502725527, 28.796201458340441 ], [ -82.026810952784288, 28.796198216978421 ], [ -82.026845491363488, 28.796193342345155 ], [ -82.026875835161576, 28.796188089541818 ], [ -82.02690593699144, 28.79618196424212 ], [ -82.026934297309467, 28.796175339391542 ], [ -82.02696705971897, 28.796166628437696 ], [ -82.02700442177111, 28.796155263784399 ], [ -82.0270402214352, 28.796142881615701 ], [ -82.027059497698744, 28.796135584476055 ], [ -82.02709820452381, 28.796119537435157 ], [ -82.027121423663303, 28.796108974951736 ], [ -82.027151386001691, 28.796094247878312 ], [ -82.027208656111213, 28.79606293907586 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Passion Flower Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026567966406418, 28.796206332941782 ], [ -82.026567942864219, 28.796111916758271 ], [ -82.026567800720002, 28.795570594153897 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Passion Flower Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027896556086063, 28.797417658441095 ], [ -82.027715727639617, 28.797499631793325 ], [ -82.027606209349031, 28.797553521630682 ], [ -82.027576065708971, 28.797565690782818 ], [ -82.027525655510217, 28.79758310998535 ], [ -82.027487728449202, 28.797593944333332 ], [ -82.027424504126955, 28.797609727430775 ], [ -82.027393169798515, 28.797616557794278 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crowned Caterpillar Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025945434156426, 28.795392947735095 ], [ -82.025958045405218, 28.795399880562233 ], [ -82.025989187090488, 28.795416106461506 ], [ -82.026024648707065, 28.795433563203645 ], [ -82.026085248941314, 28.795460998420388 ], [ -82.026129933935607, 28.795479390008236 ], [ -82.026181898154576, 28.795498918029732 ], [ -82.026221145821481, 28.795512393004689 ], [ -82.026249991343946, 28.795521619133563 ], [ -82.026304399798249, 28.795537507619958 ], [ -82.02634541071744, 28.795548212125656 ], [ -82.026362063235709, 28.795551884094543 ], [ -82.026385026011468, 28.795556948036936 ], [ -82.026411683476411, 28.795561631401167 ], [ -82.026433495448643, 28.79556476731128 ], [ -82.026464526516165, 28.795568169453194 ], [ -82.026485048463556, 28.79556974369682 ], [ -82.026510937848627, 28.795570972232181 ], [ -82.026535120479735, 28.795571357425445 ], [ -82.026555498568342, 28.79557111262336 ], [ -82.026567800720002, 28.795570594153897 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cordgrass Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031871990449915, 28.795555049101711 ], [ -82.032057119247582, 28.795509172510684 ], [ -82.032128372810547, 28.795491366005386 ], [ -82.032173075083975, 28.795482092487173 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moon Flower Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030197049367459, 28.796108243931823 ], [ -82.030188696096729, 28.796105465724878 ], [ -82.030179100999561, 28.796101542752922 ], [ -82.030170115234014, 28.796097082771812 ], [ -82.030160410000263, 28.796091278500803 ], [ -82.030148760797744, 28.796082672971014 ], [ -82.030141393908863, 28.79607606062066 ], [ -82.030135084142628, 28.796069453454148 ], [ -82.030129079420234, 28.796062102715521 ], [ -82.030124382957325, 28.796055369776678 ], [ -82.030118678672196, 28.796045474450885 ], [ -82.030114523400314, 28.79603631597799 ], [ -82.030111237694911, 28.7960268054143 ], [ -82.030100500463689, 28.795983053705022 ], [ -82.030086026099639, 28.795919960832368 ], [ -82.030075161994418, 28.795869397590046 ], [ -82.030055884793285, 28.795770962169144 ], [ -82.030044471651024, 28.795705815865553 ], [ -82.03003349062773, 28.795636455666841 ], [ -82.030022537832039, 28.795558177904542 ], [ -82.03001643107487, 28.795508551128023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spanish Moss Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02928992257408, 28.794833725905853 ], [ -82.029423260457065, 28.794837140939691 ], [ -82.029577978076844, 28.794840292324405 ], [ -82.029683394565822, 28.794839168098374 ], [ -82.029795924026985, 28.794834500685688 ], [ -82.029862179473369, 28.794830073233879 ], [ -82.029900878765801, 28.794826908611288 ], [ -82.029955321427849, 28.794821730227323 ], [ -82.029972190572408, 28.794819842555828 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spanish Moss Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034136813157033, 28.79498737127706 ], [ -82.034144821554975, 28.794994303572746 ], [ -82.034200859471994, 28.795044732611469 ], [ -82.034245037969598, 28.795086376941111 ], [ -82.034425383779933, 28.795272551437296 ], [ -82.034616588386086, 28.795475052118139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sand Pine Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033680306998477, 28.795430367094397 ], [ -82.033849861905665, 28.795265833218796 ], [ -82.034136813157033, 28.79498737127706 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sand Pine Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033056045294458, 28.796101371682273 ], [ -82.03312101436606, 28.79602975313891 ], [ -82.033162749642642, 28.795982313988404 ], [ -82.033210375247307, 28.795926360092498 ], [ -82.033256980491473, 28.795870189869657 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sea Oats Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031989374102579, 28.794918124661265 ], [ -82.031980146608291, 28.794889797782552 ], [ -82.031897269249072, 28.794641104316266 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spanish Moss Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033572478548223, 28.794575538688914 ], [ -82.033592071431656, 28.794587109703091 ], [ -82.033687015917877, 28.794650545367993 ], [ -82.033762128287009, 28.794703633573373 ], [ -82.03391822403222, 28.79481411154665 ], [ -82.033966443367959, 28.794849562406565 ], [ -82.034011923469293, 28.794884359745964 ], [ -82.034068463559009, 28.794929567033904 ], [ -82.034115850544097, 28.794969221919299 ], [ -82.034136813157033, 28.79498737127706 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028550720005043, 28.794293445872068 ], [ -82.028555769883027, 28.794293299562121 ], [ -82.028609404762761, 28.794290425491464 ], [ -82.028656590291448, 28.794286791177718 ], [ -82.028779933427018, 28.794272362063907 ], [ -82.028887777383815, 28.794253776399191 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Purslane Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032282812299158, 28.79945762446085 ], [ -82.032285002718808, 28.799161977781825 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spanish Moss Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029972190572408, 28.794819842555828 ], [ -82.030017237095521, 28.794814801522957 ], [ -82.030100745451946, 28.794803694008888 ], [ -82.030182851994979, 28.79479077580649 ], [ -82.030273070177586, 28.7947742618727 ], [ -82.030351178784031, 28.794757971595313 ], [ -82.030462910042388, 28.794731381211275 ], [ -82.030526482173528, 28.794714484963134 ], [ -82.030607979121697, 28.794690899495226 ], [ -82.030695898337385, 28.794662968823161 ], [ -82.0307495022452, 28.794644639998797 ], [ -82.030840514348057, 28.794611439040228 ], [ -82.031015388032316, 28.79454666270173 ], [ -82.031287324226625, 28.794445929656625 ], [ -82.031359091900185, 28.794419367396568 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021395147593424, 28.7915414351606 ], [ -82.021453799391097, 28.791579890020913 ], [ -82.021534725425596, 28.791637759221867 ], [ -82.021621235831844, 28.791704803137215 ], [ -82.021701512562259, 28.791772338819115 ], [ -82.021803223404177, 28.791857541123331 ], [ -82.0219014784862, 28.791933068384154 ], [ -82.021999366753931, 28.79200237508233 ], [ -82.022118433187686, 28.792079465332101 ], [ -82.022164496550289, 28.792106498579614 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Banderos Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958186177512587, 28.952905585803158 ], [ -81.959005010476218, 28.952274956404079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959111348270071, 28.953795466967911 ], [ -81.958702073997358, 28.953407300044336 ], [ -81.958186177512587, 28.952905585803158 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bella Cruz Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956895991458566, 28.951743041270657 ], [ -81.956772217661225, 28.951832945468833 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959717788908108, 28.954538970292322 ], [ -81.959638874604906, 28.954610637213321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paradise Oaks Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110961987416061, 28.688862197260946 ], [ -82.111138836305628, 28.688902723117579 ], [ -82.111371078900532, 28.688951428269355 ], [ -82.111558240753993, 28.688969610691814 ], [ -82.111643153787625, 28.688977180353024 ], [ -82.111688202616079, 28.688972559644494 ], [ -82.111747095176383, 28.688951119885814 ], [ -82.111799041907503, 28.688917462835043 ], [ -82.111837120555862, 28.688877705654395 ], [ -82.111849192278697, 28.688822689735616 ], [ -82.111840446908872, 28.688746299351141 ], [ -82.111828120718286, 28.688697547554693 ], [ -82.11182518730007, 28.688677655392262 ], [ -82.11182371105248, 28.688657762035291 ], [ -82.111830981700493, 28.688611641609398 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Volunteer 3", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111003065666139, 28.688601111717123 ], [ -82.111830981700493, 28.688611641609398 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Volunteer 2", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110995746964861, 28.688365079019036 ], [ -82.111876755376215, 28.688386922153512 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Volunteer 1", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111004271337436, 28.688135326271414 ], [ -82.11206436220219, 28.688141360625632 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peninsular Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111004271337436, 28.688135326271414 ], [ -82.11100459430898, 28.688128162411832 ], [ -82.110999258098971, 28.687998291707608 ], [ -82.110997350144757, 28.687831746622003 ], [ -82.110999028837497, 28.687779795416432 ], [ -82.11101284837585, 28.687740056390972 ], [ -82.111040547466615, 28.687715587927812 ], [ -82.111063061151427, 28.687703345739003 ], [ -82.111090781759742, 28.687700266978766 ], [ -82.111161825293266, 28.687700210014945 ], [ -82.11207225382087, 28.687705766124708 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Patriot Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110542740108002, 28.687236215209353 ], [ -82.111084316576154, 28.687238398414902 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sumter Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111580960626796, 28.687240396943629 ], [ -82.111580626008148, 28.687201756740645 ], [ -82.11158060916496, 28.687185858602444 ], [ -82.111588378018681, 28.686310940407793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Veterans Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111115519183215, 28.686310888707059 ], [ -82.111094575519104, 28.686358073263769 ], [ -82.111091518082944, 28.686369809653897 ], [ -82.111089993171532, 28.686379287166236 ], [ -82.111088479613684, 28.686400499472168 ], [ -82.111089453173079, 28.686439711238304 ], [ -82.111084316576154, 28.687238398414902 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Patriot Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112088568164197, 28.687242439684834 ], [ -82.112745112360287, 28.687269556881507 ], [ -82.113666944925086, 28.68727337571223 ], [ -82.113921658048312, 28.687271634678346 ], [ -82.11397191753224, 28.687279231819474 ], [ -82.114039954969229, 28.687328862654851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seaboard Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11207225382087, 28.687705766124708 ], [ -82.113010695844821, 28.687709386282961 ], [ -82.114051851055734, 28.687716691244997 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Veterans Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112088568164197, 28.687242439684834 ], [ -82.112095244168714, 28.687190638654496 ], [ -82.112096838347426, 28.687060761380767 ], [ -82.112103318511615, 28.686637514550632 ], [ -82.11209799180952, 28.686516811528893 ], [ -82.112094457083856, 28.686451113073907 ], [ -82.112089206826909, 28.68640222192548 ], [ -82.112073563998962, 28.686357924053478 ], [ -82.112051018207211, 28.686339606323106 ], [ -82.112025011904308, 28.686324348524856 ], [ -82.111983412170417, 28.686312158811685 ], [ -82.111896774334653, 28.686310701351452 ], [ -82.111591812129447, 28.686310952036251 ], [ -82.111588378018681, 28.686310940407793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paradise Oaks Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11206436220219, 28.688141360625632 ], [ -82.112723526227299, 28.688148144466005 ], [ -82.113336936375802, 28.688155277129557 ], [ -82.113893158635321, 28.68815634149054 ], [ -82.113953802159585, 28.688154762294996 ], [ -82.113989600738748, 28.688144206706315 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pioneer Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114051851055734, 28.687716691244997 ], [ -82.114062142837184, 28.687392225561663 ], [ -82.11404996259698, 28.687344869741626 ], [ -82.114039954969229, 28.687328862654851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pioneer Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113989600738748, 28.688144206706315 ], [ -82.114000572012088, 28.688140971708304 ], [ -82.114026542416482, 28.688119559370087 ], [ -82.114045560811121, 28.688081344239496 ], [ -82.114050697888317, 28.688024805371075 ], [ -82.11405041328689, 28.687761998430094 ], [ -82.114051851055734, 28.687716691244997 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Patriot Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111580960626796, 28.687240396943629 ], [ -82.112088568164197, 28.687242439684834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Patriot Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111084316576154, 28.687238398414902 ], [ -82.111580960626796, 28.687240396943629 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Veterans Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11207225382087, 28.687705766124708 ], [ -82.112076338622558, 28.68733733784876 ], [ -82.112088568164197, 28.687242439684834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Veterans Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11206436220219, 28.688141360625632 ], [ -82.112071971209303, 28.688118122088305 ], [ -82.112071595616314, 28.687765167945241 ], [ -82.11207225382087, 28.687705766124708 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peninsular Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111003065666139, 28.688601111717123 ], [ -82.111003355274832, 28.688597244095945 ], [ -82.110994601897914, 28.688511685086496 ], [ -82.110995746964861, 28.688365079019036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peninsular Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110995746964861, 28.688365079019036 ], [ -82.110996129227061, 28.688316107463109 ], [ -82.111004271337436, 28.688135326271414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peninsular Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110961987416061, 28.688862197260946 ], [ -82.110993114825675, 28.688745463705288 ], [ -82.110998230441211, 28.688666006698497 ], [ -82.111003065666139, 28.688601111717123 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paradise Oaks Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110104861514245, 28.688817379053578 ], [ -82.110243436806158, 28.688829675090929 ], [ -82.110423125625985, 28.688837602925528 ], [ -82.110717263852649, 28.688848326952698 ], [ -82.110828420203418, 28.688849112864478 ], [ -82.110895960376936, 28.688851619696656 ], [ -82.110951325166923, 28.688859754302374 ], [ -82.110961987416061, 28.688862197260946 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109919908238737, 28.690427411562776 ], [ -82.110092695981763, 28.688926444447588 ], [ -82.110104861514245, 28.688817379053578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Veterans Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111588378018681, 28.686310940407793 ], [ -82.11121060647514, 28.68630973655797 ], [ -82.111115519183215, 28.686310888707059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Veterans Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111115519183215, 28.686310888707059 ], [ -82.111075454529967, 28.686311373397785 ], [ -82.110815542234491, 28.686310058005308 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paradise Oaks Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111876755376215, 28.688386922153512 ], [ -82.111895475673023, 28.688350514936243 ], [ -82.111957787223659, 28.688286291018432 ], [ -82.112020093821712, 28.688217482337613 ], [ -82.112032462874538, 28.688199721547861 ], [ -82.112047776545126, 28.688177732727794 ], [ -82.112062470146526, 28.688147136188544 ], [ -82.11206436220219, 28.688141360625632 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paradise Oaks Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111830981700493, 28.688611641609398 ], [ -82.111833357130081, 28.688596567145325 ], [ -82.111843662910616, 28.68851099166444 ], [ -82.11185573518982, 28.688457505190744 ], [ -82.111869537663026, 28.688400959301035 ], [ -82.111876755376215, 28.688386922153512 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983297757632883, 28.920088899703089 ], [ -81.98359887285747, 28.920088937099777 ], [ -81.984100728831677, 28.920088997028735 ], [ -81.984595242834558, 28.920089056042954 ], [ -81.984969799324048, 28.920089098849665 ], [ -81.98546186429607, 28.920089153502694 ], [ -81.985958826310821, 28.920089206874732 ], [ -81.986340727852422, 28.920089246643464 ], [ -81.986715284909437, 28.920084977032431 ], [ -81.987214693617489, 28.920087179795868 ], [ -81.987714102608749, 28.92008722692578 ], [ -81.987715088170688, 28.920087224310059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heald Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956897475610972, 28.862100972326775 ], [ -81.956956511249928, 28.862253513102896 ], [ -81.956972697499808, 28.862459784965306 ], [ -81.956959782665933, 28.863530053043569 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tutt Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956959782665933, 28.863530053043569 ], [ -81.957409437735535, 28.863527358592613 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Resmondo Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957409437735535, 28.863527358592613 ], [ -81.957411523757159, 28.862587695525033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wartinbee Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957411523757159, 28.862587695525033 ], [ -81.957574694367722, 28.862603695370279 ], [ -81.95780275600282, 28.86265610442878 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Feustel Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957408974721673, 28.863736489900145 ], [ -81.957549824390057, 28.863735292907982 ], [ -81.957636622220946, 28.863701897169932 ], [ -81.957712585009048, 28.863637462325617 ], [ -81.957777705800552, 28.863553925869134 ], [ -81.957799459283038, 28.863410691978146 ], [ -81.95780275600282, 28.86265610442878 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Resmondo Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957408094521369, 28.864132979922143 ], [ -81.957408974721673, 28.863736489900145 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Resmondo Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957408974721673, 28.863736489900145 ], [ -81.957409437735535, 28.863527358592613 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Resmondo Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957411523757159, 28.862587695525033 ], [ -81.957412086067919, 28.862333873099523 ], [ -81.957434889867812, 28.862279449743088 ], [ -81.957486975879419, 28.862239357921574 ], [ -81.957522779714324, 28.862222180355676 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wartinbee Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95780275600282, 28.86265610442878 ], [ -81.958146867428397, 28.862735178999191 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moyer Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956897475610972, 28.862100972326775 ], [ -81.956866196888086, 28.862111133059429 ], [ -81.956765808756515, 28.862139601870162 ], [ -81.956661027121811, 28.862163969119798 ], [ -81.95657157957514, 28.862180338711152 ], [ -81.956466405445482, 28.86219454032619 ], [ -81.956389270886035, 28.86220156952556 ], [ -81.956296855700145, 28.862206273888237 ], [ -81.95618808244123, 28.862206662548985 ], [ -81.956083001391676, 28.862201751293121 ], [ -81.955999881923688, 28.862194158282755 ], [ -81.955916794627612, 28.8621832438509 ], [ -81.955798539248775, 28.862161845664541 ], [ -81.955696090513285, 28.862137540852057 ], [ -81.95557425411485, 28.862101300192911 ], [ -81.955443738235246, 28.862053001765112 ], [ -81.955311808828071, 28.861993229945845 ], [ -81.955172269210564, 28.861916420862023 ], [ -81.955004455737495, 28.861808339140833 ], [ -81.95494228927879, 28.861772789189672 ], [ -81.95486424657841, 28.861733133808965 ], [ -81.95475699167396, 28.861686777967293 ], [ -81.954696938187311, 28.861664593540738 ], [ -81.954639751145763, 28.861645821666361 ], [ -81.954539600610303, 28.861618184541143 ], [ -81.954410363563895, 28.861591820553851 ], [ -81.954347975708103, 28.861582676179623 ], [ -81.954258911600448, 28.861573537136646 ], [ -81.954186669381727, 28.861569453063559 ], [ -81.9541128997096, 28.861568213394783 ], [ -81.954012940354787, 28.861567636943104 ], [ -81.953661485186245, 28.861565612362977 ], [ -81.953485845918053, 28.861563093814592 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heald Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95695318634597, 28.864111933072628 ], [ -81.956963717366349, 28.864180993356857 ], [ -81.956981051939664, 28.864236385015175 ], [ -81.957011827481608, 28.864311643382827 ], [ -81.957145355592175, 28.864605044807867 ], [ -81.957282109602787, 28.864964603111069 ], [ -81.95729464139032, 28.865024601260096 ], [ -81.957298520864398, 28.865089920248625 ], [ -81.957293290662449, 28.865146069839057 ], [ -81.95728805471461, 28.865213677779746 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moyer Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953485845918053, 28.861563093814592 ], [ -81.953471892571969, 28.861549867524207 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966162039779732, 28.847796578795023 ], [ -81.966183616866616, 28.847796926203948 ], [ -81.966399458328993, 28.847800798940103 ], [ -81.966552396756114, 28.847791288917776 ], [ -81.966786685181788, 28.847767472955439 ], [ -81.966928774464705, 28.847757958017819 ], [ -81.967030737627269, 28.847736020061316 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967030737627269, 28.847736020061316 ], [ -81.966927704613184, 28.847715940974709 ], [ -81.966766095160551, 28.847709215890486 ], [ -81.966553512494471, 28.847693883462394 ], [ -81.966438541629998, 28.847688126037905 ], [ -81.966246561743276, 28.847688077922712 ], [ -81.966170448897117, 28.847682903897205 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965537954305148, 28.847540025351787 ], [ -81.965544952989447, 28.847561609404142 ], [ -81.965548721069212, 28.847584052525036 ], [ -81.965550508291486, 28.847621390404655 ], [ -81.965548328918672, 28.847653857521326 ], [ -81.965540509028457, 28.847685558937549 ], [ -81.965530694870267, 28.847710814669924 ], [ -81.965513331243159, 28.847740413968644 ], [ -81.965496186082689, 28.847766384246604 ], [ -81.965471556018869, 28.847793593268872 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964995217240258, 28.847652819418645 ], [ -81.964991513580827, 28.847634184030603 ], [ -81.964990163995211, 28.847615562790612 ], [ -81.964991949501311, 28.84758760169629 ], [ -81.964993974707497, 28.847572115044407 ], [ -81.965000220017501, 28.847545138625563 ], [ -81.965007820207234, 28.847524132215696 ], [ -81.965018672453951, 28.847505514153948 ], [ -81.965031696290069, 28.84748403093284 ], [ -81.965049599256673, 28.84746302629997 ], [ -81.96506912854629, 28.847445365131289 ], [ -81.965086486882456, 28.847428658035195 ], [ -81.965098963989462, 28.847417679311622 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moyer Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963862982752019, 28.847131675186905 ], [ -81.963915164027668, 28.847204367256758 ], [ -81.96399237321782, 28.847250225119925 ], [ -81.964089609806948, 28.847305535437815 ], [ -81.964169859431436, 28.847343754186685 ], [ -81.964245772220536, 28.847375287450589 ], [ -81.964371575768141, 28.847418294102127 ], [ -81.964490873559669, 28.847452703549681 ], [ -81.964604750871914, 28.847478517901195 ], [ -81.964713206698605, 28.847498599284762 ], [ -81.964807561740997, 28.84752154261119 ], [ -81.964850942729328, 28.847533013256179 ], [ -81.964891068650715, 28.84755403214055 ], [ -81.964931866724555, 28.84759068273711 ], [ -81.964995217240258, 28.847652819418645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965021253474831, 28.847722829804738 ], [ -81.965011012933871, 28.84770533322963 ], [ -81.965002344078485, 28.847680023995956 ], [ -81.96499530214578, 28.847653284128359 ], [ -81.964995217240258, 28.847652819418645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moyer Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965098963989462, 28.847417679311622 ], [ -81.964995239315584, 28.847417503439022 ], [ -81.964917146974614, 28.847414618243015 ], [ -81.964797844494328, 28.847390712915097 ], [ -81.964615640832434, 28.847349601997148 ], [ -81.964492146410421, 28.847321070976129 ], [ -81.964380296082822, 28.847290334085052 ], [ -81.964241621972093, 28.847249383980092 ], [ -81.964136425296573, 28.847212114157454 ], [ -81.964059426355419, 28.847183445362415 ], [ -81.963974838729882, 28.847145224481476 ], [ -81.963862982752019, 28.847131675186905 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96592751134591, 28.83527586868097 ], [ -81.965929516729588, 28.835313314955933 ], [ -81.965929942448071, 28.835343109261451 ], [ -81.965929494029481, 28.835385508582572 ], [ -81.965926013480029, 28.835415301897175 ], [ -81.965921449873619, 28.835441721208721 ], [ -81.965891928865815, 28.835508941949879 ], [ -81.965838111522118, 28.835588379166889 ], [ -81.965751634958011, 28.835710971727501 ], [ -81.965541582584592, 28.835984414655897 ], [ -81.965374923110517, 28.836219670149333 ], [ -81.965241234392309, 28.836447295026499 ], [ -81.965102313693308, 28.836754368377843 ], [ -81.965032831663009, 28.836968257623596 ], [ -81.964978961842434, 28.837195902963256 ], [ -81.964945906922594, 28.837452582737008 ], [ -81.964942348793542, 28.837713854815714 ], [ -81.964963080906358, 28.837976660826783 ], [ -81.96499771714555, 28.838184464896685 ], [ -81.965047967759872, 28.838395329128808 ], [ -81.965117316552224, 28.838580224481319 ], [ -81.965198806453003, 28.838778874099816 ], [ -81.965250662680091, 28.838873118164447 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965492861056703, 28.847456742661105 ], [ -81.965516708461891, 28.847499147242154 ], [ -81.965537954305148, 28.847540025351787 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966169774940411, 28.835431454349685 ], [ -81.966113547590552, 28.835470414454214 ], [ -81.966083025306375, 28.835491354725573 ], [ -81.966061762452725, 28.835512358686167 ], [ -81.966035744749888, 28.835543023351107 ], [ -81.965910951225823, 28.835710629666046 ], [ -81.965749503193862, 28.835929080574857 ], [ -81.965504727309693, 28.83625751924512 ], [ -81.965357176234647, 28.836512476983092 ], [ -81.965241860931798, 28.836779254998941 ], [ -81.965152534567963, 28.837052325121398 ], [ -81.965117775034528, 28.837217329171487 ], [ -81.965093424264182, 28.837389977553958 ], [ -81.965082922268863, 28.837658884963922 ], [ -81.965093247845587, 28.837914049319256 ], [ -81.965126142738782, 28.838132549758196 ], [ -81.965171633561113, 28.838319080191937 ], [ -81.965230135992542, 28.838496219150862 ], [ -81.965309042075802, 28.838696490384951 ], [ -81.965705067123366, 28.839424954219353 ], [ -81.965831251291945, 28.839666498781618 ], [ -81.965912962183907, 28.839826171038723 ], [ -81.965987730386274, 28.840026728624228 ], [ -81.966069484164947, 28.840307410980646 ], [ -81.9661158507012, 28.840559814176373 ], [ -81.966136348903703, 28.840774520566931 ], [ -81.966139389406678, 28.841003579152542 ], [ -81.966117477933182, 28.841278033713653 ], [ -81.966044907867015, 28.841640269913647 ], [ -81.965994299653133, 28.841811977818388 ], [ -81.965947405530883, 28.84193878244438 ], [ -81.965858830904807, 28.84215877933369 ], [ -81.965761619333506, 28.8423247645853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oaks Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026699603398853, 28.90959618761239 ], [ -82.026697771437767, 28.910437233787754 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Post Oak Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027856095768769, 28.911281603087783 ], [ -82.026807470055914, 28.911276453585369 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Myrtle Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025695877989989, 28.909592233392445 ], [ -82.025683836137759, 28.911269826547706 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028340332474514, 28.910445394003677 ], [ -82.026811130564667, 28.910435406256642 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Water Oak Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028332185738563, 28.91163990274541 ], [ -82.028088029537187, 28.911638581355955 ], [ -82.028059638266797, 28.911638468050043 ], [ -82.028024473709593, 28.911630453800598 ], [ -82.027989305475913, 28.911620147707971 ], [ -82.027955439533258, 28.911601818115205 ], [ -82.027926782397984, 28.911581198328157 ], [ -82.02790203111482, 28.91155599226833 ], [ -82.027875975505466, 28.911519328196714 ], [ -82.027861639724023, 28.911481516730653 ], [ -82.027855117617648, 28.911445994612734 ], [ -82.027856095768769, 28.911281603087783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "White Oak Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025206525680076, 28.909678111502512 ], [ -82.025198300806423, 28.909687968801318 ], [ -82.025184514375582, 28.909708599645036 ], [ -82.025174459512144, 28.909733323529331 ], [ -82.025166258784751, 28.909762875267877 ], [ -82.025163055840537, 28.909795577818461 ], [ -82.02514538960439, 28.912255155867928 ], [ -82.025148215501076, 28.912288411316464 ], [ -82.025155027912177, 28.912315012498372 ], [ -82.02516975958045, 28.91234804200273 ], [ -82.025186278914816, 28.912373462107258 ], [ -82.025208664681657, 28.912397415806108 ], [ -82.025231679930172, 28.912416326447527 ], [ -82.025242625502656, 28.912423241452249 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Timber Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028246833437734, 28.912427752883193 ], [ -82.028234463764207, 28.912438068679503 ], [ -82.028218187006971, 28.912448386179069 ], [ -82.028196700346243, 28.912456984967289 ], [ -82.028175213681962, 28.912465583752102 ], [ -82.028156329948658, 28.91247131630502 ], [ -82.028134843238433, 28.912475904373135 ], [ -82.028114657253525, 28.912478200337368 ], [ -82.028092009300977, 28.912477433503298 ], [ -82.026996749902949, 28.912471405356033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woods Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028332185738563, 28.91163990274541 ], [ -82.028329042804771, 28.912100573883542 ], [ -82.028326756745315, 28.91229130371066 ], [ -82.028321047065646, 28.912326529661328 ], [ -82.028312580731139, 28.912345806274779 ], [ -82.02830086577444, 28.91236930089287 ], [ -82.028287196201305, 28.912388783397237 ], [ -82.028269855069766, 28.912407016071676 ], [ -82.028246833437734, 28.912427752883193 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woods Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02833461223122, 28.911284193247891 ], [ -82.028332185738563, 28.91163990274541 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woods Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028340332474514, 28.910445394003677 ], [ -82.02833461223122, 28.911284193247891 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woods Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028297703646416, 28.909687558737041 ], [ -82.028311236545491, 28.90970285981707 ], [ -82.028337298397062, 28.909760152136471 ], [ -82.028344646540376, 28.909812827644885 ], [ -82.028340332474514, 28.910445394003677 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Park Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028297703646416, 28.909687558737041 ], [ -82.028280839072153, 28.909668488542415 ], [ -82.028224395110669, 28.909634122609841 ], [ -82.028172294975036, 28.909611215842794 ], [ -82.028111669662167, 28.909605327225368 ], [ -82.026818447684349, 28.909598016024248 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Garden Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026699603398853, 28.90959618761239 ], [ -82.025695877990216, 28.90959223429472 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arbor Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02646137222213, 28.91246854709879 ], [ -82.02567527005823, 28.91246332454898 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oaks Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02668679693457, 28.91127645357685 ], [ -82.026688372697009, 28.912330064734412 ], [ -82.026674555459763, 28.912375198507625 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Post Oak Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02833461223122, 28.911284193247891 ], [ -82.027856095768769, 28.911281603087783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oaks Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026697771437767, 28.910437233787754 ], [ -82.02668679693457, 28.91127645357685 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oaks Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026708142024461, 28.909114523328654 ], [ -82.026699603398853, 28.90959618761239 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Myrtle Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025683836137759, 28.911269826547706 ], [ -82.02567527005823, 28.91246332454898 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Post Oak Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02668679693457, 28.91127645357685 ], [ -82.025683836137759, 28.911269826547706 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Garden Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025695877990216, 28.90959223429472 ], [ -82.025398918797734, 28.909590621002241 ], [ -82.02535835360365, 28.9095935086056 ], [ -82.0253051000049, 28.909607304596225 ], [ -82.025268107509447, 28.909623237835284 ], [ -82.025241157152863, 28.909643007598927 ], [ -82.025219091086157, 28.909663052566611 ], [ -82.025206525680076, 28.909678111502512 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arbor Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02567527005823, 28.91246332454898 ], [ -82.02536243554222, 28.912462156276732 ], [ -82.025321443604497, 28.912456228506116 ], [ -82.025287541863861, 28.912446073964777 ], [ -82.02525498952987, 28.912431053981731 ], [ -82.025242625502656, 28.912423241452249 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Long Key Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003995966834893, 28.865447167689609 ], [ -82.003994301537674, 28.866383142634362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Little Rock Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010414471392153, 28.866395018496039 ], [ -82.01040899546102, 28.868996799652237 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spanish Harbor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01040899546102, 28.868996799652237 ], [ -82.008202675807908, 28.868992606536981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spanish Harbor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012321060831596, 28.869017105694581 ], [ -82.010616019627946, 28.868997191456078 ], [ -82.01040899546102, 28.868996799652237 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seven Mile Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008209077880522, 28.866390828030134 ], [ -82.007311177919163, 28.866389110398064 ], [ -82.006452031263464, 28.86638746182313 ], [ -82.006025711387892, 28.866386643022775 ], [ -82.005075387406379, 28.86638480971353 ], [ -82.00424875371607, 28.866383209191401 ], [ -82.003994301537674, 28.866383142634362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seven Mile Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003994301537674, 28.866383142634362 ], [ -82.003930166497042, 28.866383125255979 ], [ -82.003772753240455, 28.866397037087417 ], [ -82.003659086408092, 28.866419507923684 ], [ -82.003538577863495, 28.866455624347257 ], [ -82.003454140996482, 28.866489255878978 ], [ -82.00338016559725, 28.866525066210322 ], [ -82.003311297974705, 28.866564440499744 ], [ -82.003244470255197, 28.866609072437576 ], [ -82.003188897276573, 28.866651838167815 ], [ -82.003117927777367, 28.866715074716904 ], [ -82.003054944860835, 28.866763020650893 ], [ -82.00298918170418, 28.86679914372003 ], [ -82.002918907106235, 28.866825967692414 ], [ -82.002832507495043, 28.866845323522501 ], [ -82.002774458945055, 28.866850802329751 ], [ -82.002708985933353, 28.86685007157212 ], [ -82.002642574855415, 28.866841802952745 ], [ -82.002586628252061, 28.86682864366642 ], [ -82.002529678020323, 28.866808851537439 ], [ -82.002467225225402, 28.866778538598819 ], [ -82.002415580349592, 28.866745073744568 ], [ -82.002365483141645, 28.866702879063837 ], [ -82.002333659370294, 28.866669110751694 ], [ -82.002309135937395, 28.866637739763409 ], [ -82.002281885731207, 28.866594960076917 ], [ -82.002251383119088, 28.866551843863789 ], [ -82.002212493755707, 28.866509943143104 ], [ -82.002183461396854, 28.866484863945793 ], [ -82.002144659452128, 28.866457315244986 ], [ -82.002108365883956, 28.866436449868726 ], [ -82.002069180765758, 28.866418297739738 ], [ -82.002017974123191, 28.866400417314154 ], [ -82.00197461728014, 28.866389849963532 ], [ -82.001935831114196, 28.866383658728282 ], [ -82.001878883523574, 28.866379857849303 ], [ -82.00133654068452, 28.866379065822571 ], [ -82.001030438323525, 28.866377438348987 ], [ -82.000991078205473, 28.866371890185913 ], [ -82.000944894438106, 28.866359312178346 ], [ -82.000896625732494, 28.866338047681563 ], [ -82.000850361962293, 28.866307529138574 ], [ -82.000815395043176, 28.866274691646847 ], [ -82.000794901563367, 28.866249111360514 ], [ -82.000776159847376, 28.866218479071403 ], [ -82.000760346622457, 28.866181328535877 ], [ -82.000750378097209, 28.866140083340593 ], [ -82.000747682055092, 28.866072881570538 ], [ -82.00074882493945, 28.865448627263813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seven Mile Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010414471392153, 28.866395018496039 ], [ -82.009859447756284, 28.866393967519528 ], [ -82.008323343013529, 28.866391045356544 ], [ -82.008209077880522, 28.866390828030134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trailwinds Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008267265544248, 28.86953827072352 ], [ -82.008318102215725, 28.869644658400343 ], [ -82.008402725230141, 28.869820623414327 ], [ -82.008477013196014, 28.869975096112071 ], [ -82.008534465074575, 28.870095125234943 ], [ -82.008569226889861, 28.870184449391704 ], [ -82.00859000875397, 28.87025882320134 ], [ -82.0086045996742, 28.870338751047022 ], [ -82.00861128286941, 28.870413981967872 ], [ -82.008612123699933, 28.870482781617053 ], [ -82.008619731840312, 28.87069254043606 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trailwinds Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008202675807908, 28.868992606536981 ], [ -82.008202590252253, 28.86902746251301 ], [ -82.008202379797382, 28.869256896559666 ], [ -82.008205948972105, 28.869310864914517 ], [ -82.008219722830702, 28.869395286329063 ], [ -82.008232027093285, 28.869442855058061 ], [ -82.008258963162319, 28.869519007923277 ], [ -82.008267265544248, 28.86953827072352 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 181", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036356344010102, 28.833038088289975 ], [ -82.036210784015807, 28.832963190910625 ], [ -82.036028561405843, 28.832873091869324 ], [ -82.035877575066706, 28.832792152793502 ], [ -82.035622582909014, 28.832656054451167 ], [ -82.035336103661038, 28.832492820485154 ], [ -82.034933465737751, 28.832245403029074 ], [ -82.034622808239448, 28.832045324317633 ], [ -82.034247932653855, 28.831791784680959 ], [ -82.033977189326862, 28.831597807678211 ], [ -82.033751565631277, 28.831425210100839 ], [ -82.033477345725046, 28.831212895329735 ], [ -82.033236101835541, 28.831018908752611 ], [ -82.032998322631073, 28.830809643031376 ], [ -82.032637320814587, 28.830501091749216 ], [ -82.032203422616078, 28.830114631382042 ], [ -82.03206978845239, 28.830015349050949 ], [ -82.031951781226553, 28.829948147239268 ], [ -82.03186327161734, 28.829888579265987 ], [ -82.031405124076457, 28.829627411863747 ], [ -82.031077132938307, 28.829439551484452 ], [ -82.030592957696413, 28.829156996130003 ], [ -82.030041863483589, 28.828849456927038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hinton Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034069000605001, 28.79249100065211 ], [ -82.034154117254658, 28.792573391515631 ], [ -82.034212610854979, 28.792616402049138 ], [ -82.034271189744118, 28.792647408164278 ], [ -82.034332025542454, 28.792669910296354 ], [ -82.034392501188691, 28.792684092262796 ], [ -82.034459498663594, 28.792692087221951 ], [ -82.034626444775895, 28.792708545214353 ], [ -82.034847069523053, 28.792730295983745 ], [ -82.035151822572587, 28.792760338935818 ], [ -82.035272692943082, 28.792772255669345 ], [ -82.035406544884978, 28.79278559191695 ], [ -82.035443548366203, 28.792792657467491 ], [ -82.035489272610789, 28.792808281913548 ], [ -82.035530594502291, 28.792830373450265 ], [ -82.035569270272035, 28.792860600908494 ], [ -82.035599656657197, 28.792894884583053 ], [ -82.035625823562611, 28.792940291247177 ], [ -82.035637848607848, 28.792975822130135 ], [ -82.035648350262889, 28.793041117097381 ], [ -82.035672445876486, 28.793207875439929 ], [ -82.035731992395441, 28.793618980845434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pearl Crescent Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034895380008706, 28.794039232946833 ], [ -82.034954403593517, 28.793986747645434 ], [ -82.034988149332023, 28.793963426955536 ], [ -82.035042618937368, 28.793933383286298 ], [ -82.035189364556246, 28.793857484960089 ], [ -82.035341476470748, 28.793778813196937 ], [ -82.035474902374929, 28.793714956622416 ], [ -82.035578228432712, 28.79367216674752 ], [ -82.035692290874849, 28.793631153381259 ], [ -82.035731992395441, 28.793618980845434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leggett Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036439749491862, 28.793466549617417 ], [ -82.036413406496777, 28.793282517234445 ], [ -82.036348310689689, 28.792832029421916 ], [ -82.036252789254448, 28.792170974051622 ], [ -82.036240930527683, 28.792088903676518 ], [ -82.036228154652619, 28.792029617845454 ], [ -82.03618960880334, 28.791935477000617 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sweet Bay Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035344852390651, 28.794522599546173 ], [ -82.035470553746663, 28.794455594080489 ], [ -82.035585395965143, 28.794394374216729 ], [ -82.035703513277909, 28.794331486837159 ], [ -82.03578637470909, 28.794291222252095 ], [ -82.035862982195198, 28.794258908614719 ], [ -82.035919769691787, 28.794237782450292 ], [ -82.035977401888289, 28.794218663687754 ], [ -82.036063297451193, 28.794194300501513 ], [ -82.036133124086078, 28.794177972048352 ], [ -82.036371111899726, 28.794132339180013 ], [ -82.036856182556022, 28.794040141278092 ], [ -82.036975489665906, 28.79401746493631 ], [ -82.037022136725611, 28.794007140804847 ], [ -82.037072541763308, 28.793987316099795 ], [ -82.037103955341763, 28.793968895066534 ], [ -82.037139258827651, 28.793940406778724 ], [ -82.037174278021325, 28.793898694262751 ], [ -82.037193873006956, 28.793862897847465 ], [ -82.037209791429447, 28.79380881524796 ], [ -82.037212081661394, 28.793761673301162 ], [ -82.03719966366755, 28.793670603514926 ], [ -82.037152865954013, 28.793346760720752 ], [ -82.037150602881667, 28.79333110259336 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zipperer Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034779692736066, 28.791401813125677 ], [ -82.034820172554305, 28.791406996652384 ], [ -82.035107964578913, 28.791446474964186 ], [ -82.035232247065196, 28.791463524132155 ], [ -82.035318184896752, 28.791473946475698 ], [ -82.035395796920781, 28.791477197507781 ], [ -82.035509804998654, 28.791470430692243 ], [ -82.035595054458966, 28.791456184698909 ], [ -82.035681403105741, 28.791433213000431 ], [ -82.035826982273548, 28.791378796533113 ], [ -82.036002233723337, 28.791311216455309 ], [ -82.036336520849886, 28.791183485920218 ], [ -82.03645097353828, 28.791148198783244 ], [ -82.036570601271549, 28.791120000555601 ], [ -82.036641528134126, 28.791107254630816 ], [ -82.036731913686822, 28.791095140527855 ], [ -82.036824647865458, 28.791085816592631 ], [ -82.036925322935204, 28.791072306444661 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Senn Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034108372995433, 28.791282495100276 ], [ -82.034142579358374, 28.791091457043109 ], [ -82.034147983904631, 28.791057588286854 ], [ -82.034154209805834, 28.791007408212185 ], [ -82.034193005504477, 28.790509890195985 ], [ -82.034204572555993, 28.790327907897641 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sweetgum Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033284888809703, 28.79032286805235 ], [ -82.033282763130174, 28.790573720674168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robbs Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03318812684509, 28.789710322496255 ], [ -82.033974942668181, 28.789714690993662 ], [ -82.034620550779138, 28.78971712869679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whitten Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034620550779138, 28.78971712869679 ], [ -82.03462351443082, 28.789099466475125 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cason Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03318812684509, 28.789710322496255 ], [ -82.033189815047166, 28.789091173580548 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Merrit Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033189815047166, 28.789091173580548 ], [ -82.033911903421384, 28.78909552005803 ], [ -82.03462351443082, 28.789099466475125 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "White Ibis Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034940009679502, 28.790331985691783 ], [ -82.034956252511975, 28.790293787568839 ], [ -82.034986081220595, 28.79024869774743 ], [ -82.035036855166567, 28.790199530473554 ], [ -82.035104643048811, 28.790142988766753 ], [ -82.035167021066584, 28.790090960870501 ], [ -82.03521441303819, 28.790049077862058 ], [ -82.035248766233678, 28.790005232923562 ], [ -82.035285759493064, 28.789925964286915 ], [ -82.035320788692886, 28.789826845248349 ], [ -82.035348314943732, 28.789724540245107 ], [ -82.035366349641023, 28.789629848676324 ], [ -82.035378352588367, 28.789523619864521 ], [ -82.035383021800527, 28.789279404850067 ], [ -82.035384388051, 28.789100748252931 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Condrey Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034464972747983, 28.792010932489625 ], [ -82.034568606784021, 28.792040217360565 ], [ -82.034683118711044, 28.792065580678301 ], [ -82.034806566501942, 28.792084066024408 ], [ -82.035000636178211, 28.792103393300909 ], [ -82.035184674536367, 28.792121536310383 ], [ -82.035311426437957, 28.792129447049689 ], [ -82.035425935074599, 28.792128774398204 ], [ -82.035568739599441, 28.792117512043017 ], [ -82.035691941386389, 28.792098288080002 ], [ -82.03579016461471, 28.792076391509493 ], [ -82.035954850127965, 28.792025688389433 ], [ -82.03618960880334, 28.791935477000617 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sweetgum Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032455044861322, 28.790393871350076 ], [ -82.032530582939501, 28.790394086428275 ], [ -82.032652634876214, 28.790387670234082 ], [ -82.032793014877456, 28.79036970810176 ], [ -82.032977748109118, 28.790337476011089 ], [ -82.033092555713154, 28.79032618594583 ], [ -82.033200239692761, 28.790322422784268 ], [ -82.033284888809703, 28.79032286805235 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wood Stork Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032455044861322, 28.790393871350076 ], [ -82.03245780235244, 28.789958231127958 ], [ -82.032452442570843, 28.789908844262484 ], [ -82.03242053804226, 28.789834253878027 ], [ -82.032394506116361, 28.78980117755027 ], [ -82.032343380603692, 28.789758750990256 ], [ -82.032258755746867, 28.789721982500371 ], [ -82.03218616454042, 28.789703321494429 ], [ -82.032080279142988, 28.789701536007442 ], [ -82.031898844480096, 28.789701534576089 ], [ -82.03177941476028, 28.789709071964818 ], [ -82.031648038199748, 28.789738498489516 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hicks Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032115073350582, 28.792174472527318 ], [ -82.031978390589458, 28.792379643207749 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hicks Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02814381828783, 28.792316063954893 ], [ -82.028784932473556, 28.7923192486722 ], [ -82.029240458350813, 28.792319829375394 ], [ -82.029424487439883, 28.792310364043288 ], [ -82.029535207667877, 28.792299540752822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Howell Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028892634484407, 28.79161156648507 ], [ -82.028930728054632, 28.791030982257283 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Currie Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029762688549496, 28.791615757185227 ], [ -82.029958661575009, 28.79161670035753 ], [ -82.030726911263798, 28.791619111175766 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evatt Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029762688549496, 28.791615757185227 ], [ -82.029766564569016, 28.791033899680084 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Knapp Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028930728054632, 28.791030982257283 ], [ -82.029766564569016, 28.791033899680084 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beard Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031420367261006, 28.791609376828873 ], [ -82.032127124602567, 28.791592686221918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wade Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032127124602567, 28.791592686221918 ], [ -82.032123300085104, 28.791447646587219 ], [ -82.032117674645193, 28.791410341753959 ], [ -82.032095563562933, 28.791350580360767 ], [ -82.031971076567118, 28.791111201992084 ], [ -82.031850307383223, 28.790878971672331 ], [ -82.031830017051874, 28.790833972558886 ], [ -82.031822862110502, 28.790809104644385 ], [ -82.031817304850549, 28.790773255210411 ], [ -82.031816792624255, 28.790718225949714 ], [ -82.031819476535276, 28.790390624256602 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031420367261006, 28.791609376828873 ], [ -82.031417729263083, 28.791493531245877 ], [ -82.031410547603926, 28.791443924597878 ], [ -82.03138956296975, 28.791388824183191 ], [ -82.031317676110007, 28.791250590721301 ], [ -82.031200568022214, 28.791025397038759 ], [ -82.0311770397728, 28.790979093811256 ], [ -82.031164398885593, 28.790943789135881 ], [ -82.031157755028659, 28.790911292012925 ], [ -82.031155658733098, 28.790867306517882 ], [ -82.031159976707286, 28.790386951854838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Diver Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028758377675047, 28.790265434053499 ], [ -82.028911899324314, 28.790298692150266 ], [ -82.029168900913803, 28.790355815327381 ], [ -82.029332631722056, 28.790392208144549 ], [ -82.029420631692631, 28.790408821875157 ], [ -82.029512173196906, 28.790420026329627 ], [ -82.029631322795083, 28.790425620565781 ], [ -82.029967963113975, 28.790427241956767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Diver Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028758377675047, 28.790265434053499 ], [ -82.028708260300107, 28.790473777740523 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brown Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029972581528867, 28.789808824250777 ], [ -82.029973910068563, 28.789630845348391 ], [ -82.029976518151798, 28.789210094213338 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glenda Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02748969724415, 28.789624798117952 ], [ -82.028110168014095, 28.789627834048758 ], [ -82.028552400813467, 28.789629996124454 ], [ -82.028689287972668, 28.789631986417337 ], [ -82.028780108624602, 28.789639294427861 ], [ -82.028870857156974, 28.789652560367973 ], [ -82.028980426456499, 28.789675720701901 ], [ -82.029119609842112, 28.789706659001684 ], [ -82.029336801070741, 28.789754933998175 ], [ -82.029478148836361, 28.789785390537503 ], [ -82.02958124475019, 28.7898004363498 ], [ -82.029655460656116, 28.789806498504976 ], [ -82.029726784956139, 28.789808638881997 ], [ -82.029972581528867, 28.789808824250777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Suber Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027482450531963, 28.789033449436317 ], [ -82.027638464867294, 28.789034212578791 ], [ -82.028324611672119, 28.789037567426572 ], [ -82.02874592836109, 28.789039628463922 ], [ -82.02887857046818, 28.789046501862991 ], [ -82.028960729243479, 28.789057089658215 ], [ -82.029075339314829, 28.789079889747139 ], [ -82.029302473482815, 28.789130377002575 ], [ -82.029489092260363, 28.789171856566199 ], [ -82.029604033438815, 28.789194752682825 ], [ -82.029694545589891, 28.78920616386705 ], [ -82.029794513306769, 28.789211933502759 ], [ -82.029976518151798, 28.789210094213338 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penney Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028190159096141, 28.791686352779056 ], [ -82.028205411222132, 28.791459425133418 ], [ -82.028216176219999, 28.791264815640488 ], [ -82.02821021934335, 28.791158148083166 ], [ -82.028195537381833, 28.791066292863352 ], [ -82.028163324064252, 28.790948814592479 ], [ -82.028132454515074, 28.790869453363118 ], [ -82.028097132123136, 28.790796712395785 ], [ -82.028042858863785, 28.79070635125672 ], [ -82.027968219604617, 28.790607530491808 ], [ -82.027848423744544, 28.790477284840389 ], [ -82.027769292604575, 28.790375649642844 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilkerson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028791004467735, 28.792951342972785 ], [ -82.029505736626504, 28.792954248217267 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Koonce Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028817157575276, 28.793758667631998 ], [ -82.028837525105416, 28.793588454707173 ], [ -82.028805111272163, 28.793314676223886 ], [ -82.028793567149904, 28.793140135194999 ], [ -82.028791004467735, 28.792951342972785 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barnes Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029881066139311, 28.793787437693421 ], [ -82.029795396888517, 28.793683860665233 ], [ -82.029739733913402, 28.793616081833981 ], [ -82.029691991423135, 28.793542382112349 ], [ -82.029650712084035, 28.793467428582293 ], [ -82.029610826233338, 28.793382729761742 ], [ -82.029566219295575, 28.793264542588407 ], [ -82.029537144257915, 28.79316163637418 ], [ -82.029515679198738, 28.79305245565471 ], [ -82.029505736626504, 28.792954248217267 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Colson Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026153778819676, 28.790421350587671 ], [ -82.026154518986871, 28.790348780991287 ], [ -82.026166414278407, 28.789027001378464 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rutland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025482469176325, 28.790418586570187 ], [ -82.025496291341, 28.789023713846671 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burch Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026153778819676, 28.790421350587671 ], [ -82.025482469176325, 28.790418586570187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gilmore Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02430689891429, 28.792743362699436 ], [ -82.024412289839077, 28.792576755662221 ], [ -82.024462104230139, 28.792497553629381 ], [ -82.024502072642292, 28.792426065375594 ], [ -82.024531589790953, 28.792358056460444 ], [ -82.02455110153862, 28.792299138298091 ], [ -82.024570374588947, 28.792213475611781 ], [ -82.024613874625047, 28.791977735019369 ], [ -82.024668352467486, 28.791682511976983 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mccook Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024668352467486, 28.791682511976983 ], [ -82.02481579352515, 28.79169768531737 ], [ -82.024945363590248, 28.791703696895851 ], [ -82.02518928461609, 28.791702214798612 ], [ -82.025405656905292, 28.791699825041892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Abney Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0229197855368, 28.792435726774627 ], [ -82.023011409287207, 28.792196073600003 ], [ -82.023065460876822, 28.792040070989291 ], [ -82.023117397942613, 28.791845248479788 ], [ -82.023157747119797, 28.791670198449243 ], [ -82.023186206120911, 28.791485685106259 ], [ -82.023194665427624, 28.791271771384007 ], [ -82.023196527800394, 28.790947273928669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lyall Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021595862030026, 28.79104089842015 ], [ -82.021932032769399, 28.790966317889747 ], [ -82.022041785009975, 28.79094851428081 ], [ -82.022180735018452, 28.790942438747329 ], [ -82.022548214232415, 28.790944188341509 ], [ -82.022961367679656, 28.790946155031275 ], [ -82.023196527800394, 28.790947273928669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dyals Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02524317028157, 28.792790109609157 ], [ -82.025405656905292, 28.791699825041892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sweet Bay Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037150602881667, 28.79333110259336 ], [ -82.037063520259167, 28.792728487490088 ], [ -82.036994924789582, 28.792253797254414 ], [ -82.036939537271664, 28.791846816594266 ], [ -82.036932291895454, 28.791721770580374 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pearl Crescent Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036439749491862, 28.793466549617417 ], [ -82.036758105362594, 28.793406038256371 ], [ -82.037150602881667, 28.79333110259336 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pearl Crescent Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035731992395441, 28.793618980845434 ], [ -82.035802849390009, 28.79359725375846 ], [ -82.035873958267089, 28.793578349905633 ], [ -82.03610135994272, 28.793530867811626 ], [ -82.036386039916664, 28.793476758108326 ], [ -82.036439749491862, 28.793466549617417 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034895380008706, 28.794039232946833 ], [ -82.034973518292929, 28.794104440486088 ], [ -82.035105817123281, 28.794226640547457 ], [ -82.035190407925825, 28.79432593388945 ], [ -82.035273376679157, 28.794426195772164 ], [ -82.035327058122817, 28.794495879399136 ], [ -82.035344852390651, 28.794522599546173 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034407974945495, 28.793691095752799 ], [ -82.034422678336156, 28.793701590503129 ], [ -82.034596168394799, 28.793821870617574 ], [ -82.034773996050689, 28.793945969807428 ], [ -82.034895380008706, 28.794039232946833 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033515031974218, 28.793272813251996 ], [ -82.033539256153546, 28.793279864371932 ], [ -82.033648527078299, 28.793315980888032 ], [ -82.033767081660315, 28.79335922512622 ], [ -82.03385886179602, 28.793396145188265 ], [ -82.033928202212039, 28.793426328611297 ], [ -82.033984474047074, 28.79345206049118 ], [ -82.034073785773032, 28.793495473153612 ], [ -82.034119997233148, 28.793519225073158 ], [ -82.034188470442444, 28.793556496242882 ], [ -82.034227686248144, 28.793578242208262 ], [ -82.034271395989265, 28.793603904890904 ], [ -82.034337246116536, 28.793644610837056 ], [ -82.034407974945495, 28.793691095752799 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032823265050382, 28.793135037033693 ], [ -82.032894486901483, 28.793142843183464 ], [ -82.033005869187264, 28.79315786183906 ], [ -82.033104043339435, 28.793174006941609 ], [ -82.033207895501789, 28.793194107252596 ], [ -82.033323160414369, 28.793220133834222 ], [ -82.033433860970263, 28.793249186875158 ], [ -82.033515031974218, 28.793272813251996 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wood Stork Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032823265050382, 28.793135037033693 ], [ -82.032832512714364, 28.793069287810265 ], [ -82.032847492106441, 28.792962786066866 ], [ -82.032853366780103, 28.792910591283299 ], [ -82.032859507309311, 28.792654870723847 ], [ -82.032860517990386, 28.792610808736519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hicks Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031978390589458, 28.792379643207749 ], [ -82.032076162167826, 28.792432591795482 ], [ -82.032211576295239, 28.792489637990752 ], [ -82.032348631038133, 28.792535040219317 ], [ -82.032470684593477, 28.792565964604769 ], [ -82.03259429984233, 28.792588752355815 ], [ -82.032704653621224, 28.79260216087582 ], [ -82.032860517990386, 28.792610808736519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hicks Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030750259874324, 28.792234600845514 ], [ -82.030996591993556, 28.792228785642642 ], [ -82.031345951936359, 28.79222053485136 ], [ -82.031489476789176, 28.792218555131139 ], [ -82.031564097958466, 28.792224173103691 ], [ -82.031631242168515, 28.792234748244915 ], [ -82.031711231866382, 28.792254545662718 ], [ -82.031790069616818, 28.792282412682873 ], [ -82.031894370587707, 28.792334143587428 ], [ -82.031978390589458, 28.792379643207749 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hicks Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029535207667877, 28.792299540752822 ], [ -82.029565117571906, 28.792296618111699 ], [ -82.029689772859257, 28.7922800719641 ], [ -82.029844607062714, 28.792263105054868 ], [ -82.030004582024404, 28.792252786904388 ], [ -82.030413895092096, 28.792242540461448 ], [ -82.030750259874324, 28.792234600845514 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barnes Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029505736626504, 28.792954248217267 ], [ -82.029501942431409, 28.792916773257623 ], [ -82.02950174875393, 28.792790867248108 ], [ -82.029507986891474, 28.792709947392805 ], [ -82.02952412365994, 28.792602215906761 ], [ -82.029544962449876, 28.792510997550334 ], [ -82.029552969092066, 28.792458062553099 ], [ -82.02954816935177, 28.792395926687494 ], [ -82.029535207667877, 28.792299540752822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilkerson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028081289555757, 28.792948949957594 ], [ -82.028791004467735, 28.792951342972785 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penney Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027930988963135, 28.794243949079558 ], [ -82.027966371199241, 28.794021855701928 ], [ -82.028081289555757, 28.792948949957594 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027930988963135, 28.794243949079558 ], [ -82.027951670757986, 28.794246628402224 ], [ -82.028064836764443, 28.794261290748409 ], [ -82.028170700147712, 28.794275007051166 ], [ -82.028302751494635, 28.794288987732653 ], [ -82.028417311331822, 28.794294593887749 ], [ -82.028480161938504, 28.794295098950027 ], [ -82.028503198913171, 28.794294829849459 ], [ -82.028550720005043, 28.794293445872068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penney Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028081289555757, 28.792948949957594 ], [ -82.028086768417722, 28.792897798530159 ], [ -82.02814381828783, 28.792316063954893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penney Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02814381828783, 28.792316063954893 ], [ -82.028156587664213, 28.792185856684849 ], [ -82.028190159096141, 28.791686352779056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mccook Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026140831974402, 28.791691700075113 ], [ -82.026164860929669, 28.79169143299308 ], [ -82.026405373068584, 28.791690054909985 ], [ -82.026565612113103, 28.79170167240855 ], [ -82.0267233724325, 28.791725713240837 ], [ -82.026874105806613, 28.791744403625255 ], [ -82.027037018334696, 28.791755737624118 ], [ -82.027195693117079, 28.791758050024686 ], [ -82.027341918624273, 28.791752580429083 ], [ -82.027457980524545, 28.791743018323647 ], [ -82.027569776167354, 28.791729379410526 ], [ -82.027717056905075, 28.791705238535123 ], [ -82.027849128837033, 28.791689107672191 ], [ -82.027963198303269, 28.791683229676362 ], [ -82.028190159096141, 28.791686352779056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mccook Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025405656905292, 28.791699825041892 ], [ -82.025712681422249, 28.791696432025642 ], [ -82.026140831974402, 28.791691700075113 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mccook Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023912412245977, 28.791551142970235 ], [ -82.024271160997358, 28.791613812654614 ], [ -82.024515484533907, 28.791657613393529 ], [ -82.024668352467486, 28.791682511976983 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lyall Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023912412245977, 28.791551142970235 ], [ -82.023912044207378, 28.791563451488681 ], [ -82.023893891858279, 28.791683550684422 ], [ -82.0238552099961, 28.791852028198011 ], [ -82.02377926218864, 28.792178336545803 ], [ -82.02368391122539, 28.79257731049988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lyall Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023196527800394, 28.790947273928669 ], [ -82.023286571297376, 28.790947702010694 ], [ -82.023601982688461, 28.790949202037119 ], [ -82.023681742822745, 28.790951972191394 ], [ -82.023731997974991, 28.790962735489138 ], [ -82.023794623067261, 28.790989908841439 ], [ -82.023844391425754, 28.791026914159399 ], [ -82.02388171217892, 28.791071118436829 ], [ -82.023905118267962, 28.791116772394151 ], [ -82.023918915339351, 28.791180082654151 ], [ -82.023918633342333, 28.791343252531796 ], [ -82.023912412245977, 28.791551142970235 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "White Ibis Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033515031974218, 28.793272813251996 ], [ -82.033587147712183, 28.793087959677404 ], [ -82.033657813020554, 28.792910352887716 ], [ -82.033696702843983, 28.792838777374467 ], [ -82.033749789991731, 28.792765406393606 ], [ -82.033817487513801, 28.792694356179084 ], [ -82.033872146373028, 28.792648502603118 ], [ -82.033944473721249, 28.792590634885244 ], [ -82.034069000605001, 28.79249100065211 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "White Ibis Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034069000605001, 28.79249100065211 ], [ -82.034127575869448, 28.792444136319016 ], [ -82.034221009989253, 28.792364691646302 ], [ -82.034281635790421, 28.792302014605504 ], [ -82.03433826124855, 28.792231876401729 ], [ -82.034388435783754, 28.792156072349673 ], [ -82.034464972747983, 28.792010932489625 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Condrey Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03618960880334, 28.791935477000617 ], [ -82.036421919214021, 28.791845895663482 ], [ -82.036634202631433, 28.791766666966012 ], [ -82.036737347841793, 28.791740968760767 ], [ -82.0368200495016, 28.79172845962492 ], [ -82.036932291895454, 28.791721770580374 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sweet Bay Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036932291895454, 28.791721770580374 ], [ -82.036930315425025, 28.791687678113508 ], [ -82.036930262742871, 28.791568680181669 ], [ -82.036942269903761, 28.791216616065181 ], [ -82.03694155596753, 28.791172472392528 ], [ -82.036933996364922, 28.791115647637703 ], [ -82.036925322935204, 28.791072306444661 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zipperer Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036925322935204, 28.791072306444661 ], [ -82.037080164489865, 28.791043803288613 ], [ -82.037618048063223, 28.790934242380221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zipperer Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032853193197326, 28.791295693684564 ], [ -82.033058301340319, 28.791267027102347 ], [ -82.033171275659399, 28.79125315498705 ], [ -82.033313214674621, 28.791244974819747 ], [ -82.033453959082493, 28.791242480267226 ], [ -82.033657156509932, 28.791245704593699 ], [ -82.033830575504666, 28.791254849658554 ], [ -82.034047530456121, 28.791274649134998 ], [ -82.034108372995433, 28.791282495100276 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wood Stork Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032860517990386, 28.792610808736519 ], [ -82.03288389095799, 28.791592440045434 ], [ -82.032884654569756, 28.791511345374332 ], [ -82.03288115179528, 28.791449489933871 ], [ -82.032872175364844, 28.791378268879473 ], [ -82.032853193197326, 28.791295693684564 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beard Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032127124602567, 28.791592686221918 ], [ -82.032508244548751, 28.791583683358002 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beard Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031093306119743, 28.791617099469359 ], [ -82.031420367261006, 28.791609376828873 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Diver Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030726911263798, 28.791619111175766 ], [ -82.030732465891276, 28.791664706535713 ], [ -82.030750259874324, 28.792234600845514 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Currie Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028892634484407, 28.79161156648507 ], [ -82.029762688549496, 28.791615757185227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evatt Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029766564569016, 28.791033899680084 ], [ -82.029768323095951, 28.790769652351063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Knapp Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028586126150941, 28.791029775888816 ], [ -82.028930728054632, 28.791030982257283 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Howell Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02887122581842, 28.791933223923472 ], [ -82.028892634484407, 28.79161156648507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zipperer Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034108372995433, 28.791282495100276 ], [ -82.034207920124629, 28.791295332994366 ], [ -82.034405261069423, 28.791327969441753 ], [ -82.034648402456639, 28.791379376682794 ], [ -82.034746224298956, 28.791396853403512 ], [ -82.034779692736066, 28.791401813125677 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "White Ibis Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034464972747983, 28.792010932489625 ], [ -82.034476597560271, 28.791988886084749 ], [ -82.034565068060004, 28.791817524679043 ], [ -82.034609492577644, 28.791731478017741 ], [ -82.034779692736066, 28.791401813125677 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "White Ibis Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034779692736066, 28.791401813125677 ], [ -82.034803920386068, 28.791354885845596 ], [ -82.034829806214233, 28.791298183385173 ], [ -82.034857750618059, 28.791209585435865 ], [ -82.034870585798004, 28.791133978283984 ], [ -82.034889715997195, 28.790889233645991 ], [ -82.034914786240648, 28.790564362083423 ], [ -82.034928784255186, 28.790384064634516 ], [ -82.034940009679502, 28.790331985691783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sweetgum Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034204572555993, 28.790327907897641 ], [ -82.034940009679502, 28.790331985691783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sweetgum Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033284888809703, 28.79032286805235 ], [ -82.033503778920789, 28.790324019835612 ], [ -82.034162340175655, 28.790327673805653 ], [ -82.034204572555993, 28.790327907897641 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "White Ibis Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035384388051, 28.789100748252931 ], [ -82.035386624813512, 28.788808037205083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Merrit Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03462351443082, 28.789099466475125 ], [ -82.03467933230344, 28.789099777324296 ], [ -82.035384388051, 28.789100748252931 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cason Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033189815047166, 28.789091173580548 ], [ -82.033191922023661, 28.788792935916494 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robbs Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03282814431725, 28.7897083230582 ], [ -82.03318812684509, 28.789710322496255 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whitten Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034619195540202, 28.789999557616479 ], [ -82.034620550779138, 28.78971712869679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sweetgum Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031159976707286, 28.790386951854838 ], [ -82.031801811671556, 28.790390525447226 ], [ -82.031819476535276, 28.790390624256602 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sweetgum Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03086415838105, 28.790385304507119 ], [ -82.031159976707286, 28.790386951854838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Diver Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029967963113975, 28.790427241956767 ], [ -82.029993293747026, 28.79042736371245 ], [ -82.030162397490258, 28.790428177049478 ], [ -82.030245506498446, 28.790433434789449 ], [ -82.030315651741915, 28.79045524193241 ], [ -82.030366830532088, 28.790485047686424 ], [ -82.030424156914719, 28.790542775962976 ], [ -82.03044898391471, 28.790586841303593 ], [ -82.030464519655553, 28.79064176982461 ], [ -82.030466496436304, 28.790716532362449 ], [ -82.030464705667967, 28.790965782357606 ], [ -82.030464905142992, 28.791025663429849 ], [ -82.030469231847562, 28.791058175532637 ], [ -82.030482391192962, 28.791101975438082 ], [ -82.030609116900138, 28.791348244756126 ], [ -82.030702091158687, 28.791529218308941 ], [ -82.030724466613506, 28.791599045174987 ], [ -82.030726911263798, 28.791619111175766 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Diver Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027769292604575, 28.790375649642844 ], [ -82.027890592691492, 28.790309432571281 ], [ -82.027974911992871, 28.790263219901927 ], [ -82.02803255719671, 28.790245710635471 ], [ -82.028113475132272, 28.790239792271503 ], [ -82.028360684450234, 28.790241000802748 ], [ -82.028507304812763, 28.790241717933142 ], [ -82.028634102679632, 28.790248025211149 ], [ -82.028758377675047, 28.790265434053499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penney Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027769292604575, 28.790375649642844 ], [ -82.027728907901903, 28.790323779189514 ], [ -82.027675153029449, 28.790239521039702 ], [ -82.02764110518396, 28.790169988318194 ], [ -82.027579544667603, 28.789995772834843 ], [ -82.027533958487979, 28.78985511661023 ], [ -82.027504943898464, 28.789728984340037 ], [ -82.02748969724415, 28.789624798117952 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brown Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029967963113975, 28.790427241956767 ], [ -82.029972581528867, 28.789808824250777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brown Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029976518151798, 28.789210094213338 ], [ -82.029979339755201, 28.788754734769778 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Suber Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026166414278407, 28.789027001378464 ], [ -82.026841619702068, 28.789030310772919 ], [ -82.027482450531963, 28.789033449436317 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Suber Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025496291341, 28.789023713846671 ], [ -82.025521779369271, 28.789023838217631 ], [ -82.025992912536182, 28.789026150467336 ], [ -82.026166414278407, 28.789027001378464 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penney Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02748969724415, 28.789624798117952 ], [ -82.027481618306382, 28.789503927603274 ], [ -82.027482450531963, 28.789033449436317 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Suber Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025132692596145, 28.789021927348756 ], [ -82.025496291341, 28.789023713846671 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Colson Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026140831974402, 28.791691700075113 ], [ -82.026153778819676, 28.790421350587671 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rutland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025405656905292, 28.791699825041892 ], [ -82.025408336417584, 28.791678105874261 ], [ -82.025471615623232, 28.791249657046308 ], [ -82.025482469176325, 28.790418586570187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02430689891429, 28.792743362699436 ], [ -82.024323695206334, 28.792750925671371 ], [ -82.024429830082425, 28.792809442005467 ], [ -82.024530044226225, 28.792875397964675 ], [ -82.024605754124607, 28.792933406985874 ], [ -82.02467450232453, 28.792993412208645 ], [ -82.024731626861694, 28.793049645982098 ], [ -82.024793944730192, 28.793119128373462 ], [ -82.024845742856755, 28.793183664323259 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02368391122539, 28.79257731049988 ], [ -82.023760664455423, 28.792585791853611 ], [ -82.023839274201606, 28.792596327414156 ], [ -82.023933841200915, 28.792613993885151 ], [ -82.024027239676016, 28.792637006696033 ], [ -82.024119894781833, 28.792665603084131 ], [ -82.024200709239253, 28.792695549515663 ], [ -82.02430689891429, 28.792743362699436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0229197855368, 28.792435726774627 ], [ -82.022970219484691, 28.792450945945451 ], [ -82.023088439298178, 28.792481961556383 ], [ -82.023201447352918, 28.792507541490949 ], [ -82.023304166085083, 28.7925274393744 ], [ -82.023430078291668, 28.792547578725859 ], [ -82.023538433516791, 28.792561234186532 ], [ -82.023645147417497, 28.792573027463384 ], [ -82.02368391122539, 28.79257731049988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029201818920129, 28.794165330992492 ], [ -82.029211726259234, 28.794161926287181 ], [ -82.029286945419145, 28.794132412935213 ], [ -82.029339132494457, 28.79410975115951 ], [ -82.029464228272147, 28.794048425144869 ], [ -82.02959182549175, 28.793973073832149 ], [ -82.029735608200255, 28.793880794249656 ], [ -82.029881066139311, 28.793787437693421 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wood Stork Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032853193197326, 28.791295693684564 ], [ -82.03284411700794, 28.791256205199751 ], [ -82.032804243106227, 28.79114615319742 ], [ -82.03276959136906, 28.791073414205535 ], [ -82.032736378040028, 28.791014800577003 ], [ -82.03269417289124, 28.790950819396805 ], [ -82.032660490650741, 28.790905968842566 ], [ -82.032620024541473, 28.79085771003578 ], [ -82.032576036971477, 28.790802803800823 ], [ -82.032532842272886, 28.790734596365322 ], [ -82.032501156174163, 28.790668552669491 ], [ -82.032479653089766, 28.790607588406527 ], [ -82.03245992075054, 28.790515548055641 ], [ -82.032454681301772, 28.790451096143702 ], [ -82.032455044861322, 28.790393871350076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sweetgum Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031819476535276, 28.790390624256602 ], [ -82.032349246278969, 28.790393570360663 ], [ -82.032455044861322, 28.790393871350076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stover Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020038273693828, 28.791690596252277 ], [ -82.019706592911277, 28.791486842061278 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Botner Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019181298357267, 28.794976571786236 ], [ -82.019189570709116, 28.794106040771275 ], [ -82.019190210746501, 28.794087959233543 ], [ -82.019191502789582, 28.794067157133227 ], [ -82.019193321010476, 28.794050271902037 ], [ -82.019196868105539, 28.794026662398661 ], [ -82.019200788714102, 28.794006749620731 ], [ -82.019205075345042, 28.793988741575607 ], [ -82.019211619698794, 28.793965693804278 ], [ -82.019220402718034, 28.793939877430944 ], [ -82.019233274833482, 28.793908429163348 ], [ -82.01924439478455, 28.793885219251774 ], [ -82.019256195125394, 28.793863380762073 ], [ -82.019271208238763, 28.793838687815885 ], [ -82.019280782857777, 28.793823293948051 ], [ -82.019291529703366, 28.793804476543336 ], [ -82.019302579264348, 28.793782998175029 ], [ -82.019310883252686, 28.793765020254369 ], [ -82.019319220646793, 28.793744856926313 ], [ -82.01932581197174, 28.79372689548104 ], [ -82.019330804824733, 28.793711657435502 ], [ -82.019337969429998, 28.79368616881527 ], [ -82.01934350655965, 28.793661616116623 ], [ -82.019346823028428, 28.793643083053087 ], [ -82.019350025846961, 28.793619154172777 ], [ -82.019351988340546, 28.793595915732169 ], [ -82.019352326252815, 28.793589620247367 ], [ -82.019353193270419, 28.793563722840403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carley Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019181298357267, 28.794976571786236 ], [ -82.018741088603704, 28.794973326702738 ], [ -82.018697649638767, 28.794969992495581 ], [ -82.018655337589763, 28.79496071340672 ], [ -82.018615194335908, 28.794945717921692 ], [ -82.018578208351627, 28.794925375284841 ], [ -82.018545290366205, 28.794900186406878 ], [ -82.018517250938203, 28.794870771530466 ], [ -82.018494780496482, 28.794837854957336 ], [ -82.018478432339478, 28.794802247213067 ], [ -82.01846860901145, 28.794764825088826 ], [ -82.018465552390879, 28.794726510051394 ], [ -82.018475925368108, 28.793635742185831 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hubbs Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017122352512317, 28.79430034245355 ], [ -82.017781101263878, 28.794305208638271 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Craft Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01776778714688, 28.795704517190078 ], [ -82.017781101263878, 28.794305208638271 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Price Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017109004416938, 28.795702249622767 ], [ -82.01776778714688, 28.795704517190078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spartina Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017109004416938, 28.795702249622767 ], [ -82.017122352512317, 28.79430034245355 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nellie Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013980318564734, 28.793859489605637 ], [ -82.014586108872038, 28.793862509651504 ], [ -82.015815445160925, 28.793868628947148 ], [ -82.016205227849213, 28.793870566545461 ], [ -82.016210992694198, 28.793870384523089 ], [ -82.016215708615874, 28.793870071784738 ], [ -82.016220351789485, 28.793869617391401 ], [ -82.016224705064616, 28.793869057460341 ], [ -82.016232271530129, 28.793867827645869 ], [ -82.01626425920054, 28.793862435374553 ], [ -82.016285439545499, 28.793858865202612 ], [ -82.016303414874187, 28.793855834076094 ], [ -82.016324704815958, 28.793852245839155 ], [ -82.016340482008687, 28.793849585810946 ], [ -82.016357378753341, 28.793846737068556 ], [ -82.016370681251743, 28.793844495092717 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dooley Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013860142690945, 28.793295423803446 ], [ -82.013887043953588, 28.793285087909954 ], [ -82.013913169843747, 28.793275051654334 ], [ -82.013940094653876, 28.793264705822519 ], [ -82.013963761278447, 28.793255615420467 ], [ -82.013980274453615, 28.793249326492372 ], [ -82.013989245025968, 28.793246481525859 ], [ -82.013996995755022, 28.793244523651808 ], [ -82.014004569338297, 28.793243034997477 ], [ -82.014011034683264, 28.793242081522813 ], [ -82.014018245758024, 28.793241355357804 ], [ -82.014025169047116, 28.79324098834125 ], [ -82.01403318531996, 28.793240937026944 ], [ -82.014044058417568, 28.79324099100284 ], [ -82.014605511800966, 28.793243787923508 ], [ -82.015934131754449, 28.793250401267979 ], [ -82.015954040291618, 28.793250220378667 ], [ -82.015970279679976, 28.793249658219953 ], [ -82.016001385727577, 28.793247537897326 ], [ -82.016053351339323, 28.793241493761254 ], [ -82.016189298794757, 28.793224607796631 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rowe Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013980318564734, 28.793859489605637 ], [ -82.013980531182966, 28.793808581979977 ], [ -82.013980289869579, 28.793780204255185 ], [ -82.013979355168175, 28.793752411296797 ], [ -82.013978243214069, 28.793732180642124 ], [ -82.013974648434555, 28.793689129827452 ], [ -82.013972703032351, 28.793671568296112 ], [ -82.013969946892686, 28.79365011787398 ], [ -82.013966633413688, 28.793627803090033 ], [ -82.013962037927826, 28.793600942577068 ], [ -82.013955791667229, 28.793569417265459 ], [ -82.013949152363352, 28.793540143263016 ], [ -82.013942096358377, 28.793512357215096 ], [ -82.013931710215203, 28.793475925525399 ], [ -82.01392164941366, 28.793444356368884 ], [ -82.013912681281468, 28.793418559202937 ], [ -82.013904224686385, 28.793395866846392 ], [ -82.013890588744289, 28.793361984502774 ], [ -82.013879951158842, 28.793337472390018 ], [ -82.013871601676627, 28.793319225717966 ], [ -82.013862818897664, 28.793300864493432 ], [ -82.013860142690945, 28.793295423803446 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lock Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016725589029178, 28.792747736283555 ], [ -82.016795046842702, 28.792750608263546 ], [ -82.016828143536856, 28.792752186999238 ], [ -82.016849134976198, 28.792753944018525 ], [ -82.016865216912976, 28.792755763877935 ], [ -82.01688723288531, 28.792758938303571 ], [ -82.01691465648517, 28.792764010547849 ], [ -82.016939171135235, 28.792769625424317 ], [ -82.016990107005114, 28.792782895065621 ], [ -82.017222813182201, 28.792843670262268 ], [ -82.017516637715914, 28.792920409355411 ], [ -82.01755166444255, 28.792929278365524 ], [ -82.017584470294906, 28.792937082010521 ], [ -82.017637139175903, 28.792948611532037 ], [ -82.017684659524519, 28.792957974320107 ], [ -82.017725487711189, 28.792965240051725 ], [ -82.017758464241922, 28.792970590243417 ], [ -82.017787817626214, 28.792974967286696 ], [ -82.017820900550333, 28.792979466568404 ], [ -82.017851353944053, 28.792983206426172 ], [ -82.017879912267048, 28.792986363622305 ], [ -82.017913950640235, 28.792989419059321 ], [ -82.017939060022897, 28.792992051533449 ], [ -82.01800543508196, 28.792996283067385 ], [ -82.018082839803284, 28.792999753410644 ], [ -82.018185191475993, 28.793002287510106 ], [ -82.018275268449358, 28.793002588992643 ], [ -82.01832490340459, 28.793001983427985 ], [ -82.018382641551682, 28.793000589071461 ], [ -82.018443254790014, 28.792998326289574 ], [ -82.018516253730724, 28.792994510780698 ], [ -82.018583508197082, 28.792989938045466 ], [ -82.018608806293557, 28.79298795503831 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fussell Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018475925368108, 28.793635742185831 ], [ -82.018498462227058, 28.793634716012349 ], [ -82.018518875677614, 28.7936337036483 ], [ -82.018535785981229, 28.793632804530219 ], [ -82.018569390430812, 28.79363085743449 ], [ -82.018600959546959, 28.793628833901963 ], [ -82.01863115503663, 28.793626721214384 ], [ -82.018653484867471, 28.793625048083864 ], [ -82.018669992542186, 28.793623749277479 ], [ -82.018706118668504, 28.793620727159279 ], [ -82.018722064995941, 28.793619313827175 ], [ -82.018738881970037, 28.793617770444506 ], [ -82.018774304315329, 28.793614343262934 ], [ -82.018806338237454, 28.793611035629052 ], [ -82.018836540680269, 28.793607739962152 ], [ -82.018938834091614, 28.793595922207118 ], [ -82.018997684004106, 28.79358910092693 ], [ -82.019024761271325, 28.793585964445981 ], [ -82.019077522757811, 28.793579849561041 ], [ -82.019126921480236, 28.793574153784959 ], [ -82.019143685137138, 28.793572389292425 ], [ -82.019164389306411, 28.793570432069547 ], [ -82.01918595393326, 28.793568654286695 ], [ -82.019201807083064, 28.793567517920753 ], [ -82.019214785030641, 28.79356669234058 ], [ -82.019233291183411, 28.793565682835474 ], [ -82.019248550309158, 28.793564995897018 ], [ -82.019265140038385, 28.793564398103978 ], [ -82.019280723920374, 28.793563979104494 ], [ -82.019292888666172, 28.79356374735006 ], [ -82.019307919461383, 28.793563575656947 ], [ -82.01932015389427, 28.793563530669321 ], [ -82.019353193270419, 28.793563722840403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woods Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014572336841852, 28.790576912963513 ], [ -82.014520673850242, 28.790752320752947 ], [ -82.01447262659957, 28.790921322629028 ], [ -82.014465187096746, 28.790958978728963 ], [ -82.014460146507162, 28.790996836704135 ], [ -82.01445708710645, 28.791051572252826 ], [ -82.014456580341658, 28.791099412965757 ], [ -82.014450411133225, 28.791681858730072 ], [ -82.014450030809755, 28.79171781866502 ], [ -82.014450103935928, 28.791728467760542 ], [ -82.0144505773563, 28.791737572055055 ], [ -82.014451247212733, 28.791744961934224 ], [ -82.014452053186446, 28.791751495504222 ], [ -82.014453272115915, 28.7917592471556 ], [ -82.014454598482132, 28.791766140696037 ], [ -82.014456365411192, 28.791773885073489 ], [ -82.014458269521612, 28.791781069100441 ], [ -82.014460880582945, 28.791789626376897 ], [ -82.014464945502255, 28.791800992407914 ], [ -82.014467824731057, 28.791808056328421 ], [ -82.01447126843, 28.791815721132505 ], [ -82.014474999941982, 28.791823268606588 ], [ -82.014479523343439, 28.791831599208464 ], [ -82.014485521954796, 28.791841547508749 ], [ -82.014492942433677, 28.791852521595032 ], [ -82.014501196678779, 28.791863378295623 ], [ -82.014507027934016, 28.791870357098485 ], [ -82.014513402082571, 28.791877435100481 ], [ -82.014520553712629, 28.791884784619576 ], [ -82.014529835049188, 28.791893505438292 ], [ -82.014539834393872, 28.79190201684667 ], [ -82.014555261927242, 28.791913622636901 ], [ -82.014565135026572, 28.791920204910205 ], [ -82.014574595223266, 28.791925967924321 ], [ -82.014584484567763, 28.791931469223108 ], [ -82.014595349044413, 28.791936945156866 ], [ -82.014607004253577, 28.791942206258401 ], [ -82.014617770245025, 28.791946540773981 ], [ -82.014631232255013, 28.791951295490854 ], [ -82.01464404474001, 28.791955171419708 ], [ -82.014654343428248, 28.791957851137482 ], [ -82.014666074078519, 28.791960444987783 ], [ -82.014679394415353, 28.791962821216337 ], [ -82.014697281077886, 28.791965122984429 ], [ -82.014714196547203, 28.79196627800982 ], [ -82.014733279314754, 28.791966526887059 ], [ -82.014745969319165, 28.791966053668357 ], [ -82.014759295335566, 28.791965002902238 ], [ -82.01498205011049, 28.79194266369764 ], [ -82.0151906214966, 28.791921745877911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Graham Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015903077566122, 28.791897508699499 ], [ -82.015907778825863, 28.791451851978291 ], [ -82.015911392331205, 28.791397666999853 ], [ -82.015921050621145, 28.791344059584315 ], [ -82.015936659638243, 28.791291551737665 ], [ -82.015958067380012, 28.791240654757981 ], [ -82.015985065379482, 28.791191864256721 ], [ -82.016240995030543, 28.790782017110146 ], [ -82.016259656425277, 28.790745261892614 ], [ -82.016271225179665, 28.790706308925664 ], [ -82.016275388263765, 28.790666212234186 ], [ -82.016272033037637, 28.790626056789833 ], [ -82.016268070804884, 28.790603835967911 ], [ -82.016261761991728, 28.790568462389814 ], [ -82.01625761929219, 28.790544940451909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Herndon Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0151906214966, 28.791921745877911 ], [ -82.015176870644723, 28.791815347449649 ], [ -82.015173883847552, 28.791764834458984 ], [ -82.015178609597143, 28.791318389124228 ], [ -82.015183127082693, 28.791250657559825 ], [ -82.015195200592629, 28.791183648006463 ], [ -82.015214712545387, 28.791118012977709 ], [ -82.015241472927599, 28.791054391601314 ], [ -82.015275221144961, 28.790993403395785 ], [ -82.015420430406095, 28.790760867892434 ], [ -82.015445788700859, 28.790713319921142 ], [ -82.015464081872082, 28.790663318559805 ], [ -82.015490284414128, 28.790572180242265 ], [ -82.015506989388925, 28.790514308546104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cainsworth Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017463901980804, 28.790777197893021 ], [ -82.01765804750454, 28.790712484256389 ], [ -82.017790067122746, 28.790687894119966 ], [ -82.017947382539489, 28.790681863041005 ], [ -82.018075232604161, 28.790708503808109 ], [ -82.018195421265247, 28.790748500582112 ], [ -82.018284837363296, 28.790788992091734 ], [ -82.018420416909251, 28.790869173909929 ], [ -82.018712068415994, 28.791051903671942 ], [ -82.018952999444295, 28.79120285292294 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hensley Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01851795731298, 28.792354474524736 ], [ -82.018511097755166, 28.792308217432044 ], [ -82.018505391289651, 28.792248457971699 ], [ -82.018502718816492, 28.792170873816467 ], [ -82.018505460584024, 28.792091976085135 ], [ -82.018511764349427, 28.792027876726586 ], [ -82.018521610288886, 28.791964634100324 ], [ -82.018539207370708, 28.791885176787368 ], [ -82.018560783869873, 28.791811868213653 ], [ -82.018592714931088, 28.791726466371689 ], [ -82.018619637488669, 28.791666780210036 ], [ -82.018658993427081, 28.791592214154978 ], [ -82.018692308372408, 28.791537383383442 ], [ -82.018730418857601, 28.791481510697473 ], [ -82.018772579487589, 28.791426316903788 ], [ -82.018858445961143, 28.791319966019483 ], [ -82.018952999444295, 28.79120285292294 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Snell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013065098011737, 28.790267826203781 ], [ -82.013152860528876, 28.79027421200891 ], [ -82.013247140867875, 28.79028293956328 ], [ -82.01331761774891, 28.790290732656043 ], [ -82.013380663465526, 28.790298631974316 ], [ -82.013438356290052, 28.79030663192038 ], [ -82.013474629973118, 28.790312043308941 ], [ -82.013508513991113, 28.79031736377873 ], [ -82.013573365919285, 28.790328181821696 ], [ -82.013612036660263, 28.790335307342698 ], [ -82.013651157090592, 28.790342613272582 ], [ -82.013701495845993, 28.790352636792022 ], [ -82.01376637592692, 28.790367031510648 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zumwalt Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013048110666062, 28.791869667943907 ], [ -82.013558752089324, 28.791927091757369 ], [ -82.013749772606019, 28.791948573012863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Unger Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013749772606019, 28.791948573012863 ], [ -82.01376637592692, 28.790367031510648 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tupelo Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013048110666062, 28.791869667943907 ], [ -82.013065098011737, 28.790267826203781 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leigh Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016370681251743, 28.793844495092717 ], [ -82.01636276273662, 28.793813060427496 ], [ -82.016352769732578, 28.793782087767642 ], [ -82.016237421836777, 28.793460665478253 ], [ -82.016221105977976, 28.793407605835981 ], [ -82.016209858773607, 28.793353534276172 ], [ -82.016189298794757, 28.793224607796631 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spartina Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017106322465892, 28.795983928548903 ], [ -82.017109004416938, 28.795702249622767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Price Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01776778714688, 28.795704517190078 ], [ -82.018081469268211, 28.795705596287124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hubbs Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017781101263878, 28.794305208638271 ], [ -82.018094866478933, 28.794307526577537 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spartina Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017122352512317, 28.79430034245355 ], [ -82.017129686797261, 28.793529915080658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fussell Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016848137258108, 28.792028063777245 ], [ -82.016813039036037, 28.792116473893657 ], [ -82.016782924896489, 28.792210678968917 ], [ -82.016759412466143, 28.792312226282366 ], [ -82.016744011656854, 28.792421571327175 ], [ -82.016730467909767, 28.792656182494945 ], [ -82.016725589029178, 28.792747736283555 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fussell Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016702489534183, 28.793181074021469 ], [ -82.016702045258, 28.793189444833132 ], [ -82.01670114851926, 28.793206240596202 ], [ -82.016699285600595, 28.793241203646389 ], [ -82.016698827272819, 28.793251437736352 ], [ -82.01669877729384, 28.793259402460603 ], [ -82.016698929805358, 28.793265282817583 ], [ -82.016704546955282, 28.793306455874358 ], [ -82.016717973715259, 28.793346202760929 ], [ -82.016738824704433, 28.793383382619069 ], [ -82.016766501441936, 28.793416928271014 ], [ -82.016800209524462, 28.79344587685112 ], [ -82.016838981427725, 28.793469397443427 ], [ -82.016881704277353, 28.793486814931907 ], [ -82.016927151792132, 28.793497629378816 ], [ -82.017129686797261, 28.793529915080658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fussell Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017129686797261, 28.793529915080658 ], [ -82.017222398010205, 28.793544693658031 ], [ -82.017307300681395, 28.793558227933829 ], [ -82.017395744529466, 28.793572325666961 ], [ -82.017441257121092, 28.793579492555825 ], [ -82.017474489851693, 28.793584486370811 ], [ -82.017513092143247, 28.793590015487482 ], [ -82.017537821761223, 28.793593403318784 ], [ -82.017578681623561, 28.793598742651234 ], [ -82.0176174056935, 28.793603502952173 ], [ -82.017658512325013, 28.793608238582248 ], [ -82.017687811397025, 28.793611415576866 ], [ -82.017727845465316, 28.793615489924388 ], [ -82.017773316643755, 28.793619745844321 ], [ -82.017818692497443, 28.793623598426983 ], [ -82.017856063150944, 28.793626476604761 ], [ -82.017884117489828, 28.793628462660593 ], [ -82.017903015333047, 28.79362971628947 ], [ -82.017922528786585, 28.793630940061337 ], [ -82.017951670904139, 28.793632632713518 ], [ -82.017979156660459, 28.793634082847777 ], [ -82.018004485164312, 28.79363529233359 ], [ -82.018034193667887, 28.793636603217376 ], [ -82.018090963719786, 28.793638508867527 ], [ -82.018128221393496, 28.793639506563931 ], [ -82.018165278240986, 28.793640146057552 ], [ -82.018199045964792, 28.793640548656274 ], [ -82.018234738345498, 28.793640738052314 ], [ -82.018294659866669, 28.793640520067381 ], [ -82.01834528664476, 28.793639807893339 ], [ -82.01837781065683, 28.793639097154536 ], [ -82.018414507681527, 28.793638054714972 ], [ -82.018446488734739, 28.79363693979413 ], [ -82.018475925368108, 28.793635742185831 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Botner Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01932870696713, 28.792916146893383 ], [ -82.019320761964991, 28.792845463475079 ], [ -82.01928016888759, 28.79256252075615 ], [ -82.019233564381238, 28.792256708800952 ], [ -82.019227661242368, 28.792197276122369 ], [ -82.019228004451705, 28.792137617167679 ], [ -82.019234591074252, 28.792078240279324 ], [ -82.019247364976223, 28.792019651395464 ], [ -82.019266217303795, 28.791962349739009 ], [ -82.01929098741094, 28.791906823563892 ], [ -82.019363559444201, 28.791795234451282 ], [ -82.019397773492955, 28.791756243984103 ], [ -82.019435260590541, 28.791719663344761 ], [ -82.019475802780249, 28.791685705216487 ], [ -82.019596627260526, 28.791591962470449 ], [ -82.019636016866173, 28.79155919413645 ], [ -82.01967273104826, 28.791524097632106 ], [ -82.019706592911277, 28.791486842061278 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fussell Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019353193270419, 28.793563722840403 ], [ -82.019886715973755, 28.793569659728607 ], [ -82.020084816104443, 28.793549438731588 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Botner Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020429947994472, 28.795560308904506 ], [ -82.020234273576364, 28.795535660750911 ], [ -82.019496351589396, 28.795533062486033 ], [ -82.019446923224123, 28.795532785992815 ], [ -82.019433123239196, 28.795532075972492 ], [ -82.019419766690618, 28.795530806455655 ], [ -82.019376120105193, 28.795522531383984 ], [ -82.019334541346439, 28.795508205775285 ], [ -82.019296103765427, 28.795488199443923 ], [ -82.019261799622541, 28.795463028851302 ], [ -82.01923251447208, 28.795433343773372 ], [ -82.019209004301686, 28.795399910526417 ], [ -82.019191876017032, 28.795363592184412 ], [ -82.019181571774823, 28.79532532629872 ], [ -82.019178357569373, 28.795286100695122 ], [ -82.019179973264116, 28.795116149845711 ], [ -82.019181298357267, 28.794976571786236 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Botner Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019353193270419, 28.793563722840403 ], [ -82.019355053191006, 28.793465973202725 ], [ -82.019350325873205, 28.793204434784979 ], [ -82.01933308658927, 28.792959748772166 ], [ -82.01932870696713, 28.792916146893383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lock Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018608806293557, 28.79298795503831 ], [ -82.018641673908746, 28.792985163456777 ], [ -82.018691063337812, 28.792980510013074 ], [ -82.018781282937226, 28.792970621316531 ], [ -82.018874744298401, 28.792959791915781 ], [ -82.019007736058299, 28.792944379694333 ], [ -82.01902983101445, 28.792941825875683 ], [ -82.019048898188942, 28.792939734446747 ], [ -82.019078454152648, 28.792936786203683 ], [ -82.019099728749268, 28.792934887563955 ], [ -82.019117227817574, 28.792933447807854 ], [ -82.019125800149723, 28.792932750059677 ], [ -82.019271900572164, 28.792920848504743 ], [ -82.019313641641659, 28.792917448289504 ], [ -82.01932870696713, 28.792916146893383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hensley Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018608806293557, 28.79298795503831 ], [ -82.018606519307866, 28.79296607063587 ], [ -82.018599901407626, 28.792907995022045 ], [ -82.018589535940521, 28.792828443944408 ], [ -82.018570416613798, 28.792700797113049 ], [ -82.018529438802844, 28.792431886984804 ], [ -82.01851795731298, 28.792354474524736 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hensley Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018952999444295, 28.79120285292294 ], [ -82.019249566933894, 28.790835502619572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020519091983971, 28.791210811147469 ], [ -82.020672139441743, 28.791255997335433 ], [ -82.020801728666683, 28.791296094166945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019249566933894, 28.790835502619572 ], [ -82.019288994080213, 28.790859191080514 ], [ -82.019386523847487, 28.790909599880553 ], [ -82.019491746319048, 28.790955375068688 ], [ -82.019600913217275, 28.790994384981893 ], [ -82.019701030748465, 28.791023196321472 ], [ -82.01982898226764, 28.791050991274641 ], [ -82.019876338604547, 28.791057739316518 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Botner Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019706592911277, 28.791486842061278 ], [ -82.019747582483546, 28.791433315958102 ], [ -82.019782691597328, 28.79137663878813 ], [ -82.019811610652411, 28.791317310359361 ], [ -82.01983408463694, 28.791255853859049 ], [ -82.019849915376099, 28.791192811239927 ], [ -82.019864740274713, 28.791117066255392 ], [ -82.019876338604547, 28.791057739316518 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lock Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01932870696713, 28.792916146893383 ], [ -82.019336188409625, 28.792915470936961 ], [ -82.019344419614626, 28.792914613512274 ], [ -82.019363864704275, 28.792912277460118 ], [ -82.019375951265573, 28.792910601105689 ], [ -82.019386588438252, 28.792908986306877 ], [ -82.019395021337914, 28.792907611825896 ], [ -82.019403320041263, 28.792906174200951 ], [ -82.019415964728793, 28.792903826445087 ], [ -82.019428793749597, 28.792901246768142 ], [ -82.019439411336364, 28.792898957939929 ], [ -82.019452384710391, 28.792895974004505 ], [ -82.019463355610398, 28.792893284498554 ], [ -82.019473388259016, 28.792890690766622 ], [ -82.019480413659906, 28.792888800351687 ], [ -82.019488782873907, 28.792886460398556 ], [ -82.019495848194438, 28.792884416584073 ], [ -82.019504251177281, 28.792881897064998 ], [ -82.01951472108118, 28.79287862743686 ], [ -82.019522443923464, 28.79287612064325 ], [ -82.019544149738934, 28.792868631141307 ], [ -82.019561744139949, 28.792862067980181 ], [ -82.019576497232961, 28.792856217136734 ], [ -82.019651921586075, 28.792824405508291 ], [ -82.019837680598641, 28.792743875982108 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fussell Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016725589029178, 28.792747736283555 ], [ -82.016703266775281, 28.793166515106762 ], [ -82.016702489534183, 28.793181074021469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woods Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016848137258108, 28.792028063777245 ], [ -82.016877288315882, 28.792037453394194 ], [ -82.017040313201107, 28.792095927264953 ], [ -82.017289492357179, 28.792185930814611 ], [ -82.017446523218467, 28.792236515096665 ], [ -82.017691919114768, 28.79230067701652 ], [ -82.017872865035699, 28.792340418320304 ], [ -82.017983082611707, 28.792354520138833 ], [ -82.018139531302182, 28.792363107320369 ], [ -82.018310290307937, 28.792364055287511 ], [ -82.018411390732453, 28.79236087051757 ], [ -82.01851795731298, 28.792354474524736 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woods Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015903077566122, 28.791897508699499 ], [ -82.016031057874443, 28.79189810339853 ], [ -82.016072388438673, 28.791898324312683 ], [ -82.016104990978647, 28.79189882231076 ], [ -82.016155980963234, 28.791900807030043 ], [ -82.016198951824833, 28.791903623674596 ], [ -82.016239332351617, 28.791907231930246 ], [ -82.016285001588741, 28.791912443881106 ], [ -82.016331292779839, 28.79191896590401 ], [ -82.016373954971257, 28.791926097390803 ], [ -82.016430598377326, 28.791936664159362 ], [ -82.016612757149403, 28.791970800040325 ], [ -82.016667960428492, 28.791981319957376 ], [ -82.016721723741313, 28.791993066265288 ], [ -82.016762609294929, 28.792003206151104 ], [ -82.016794726610769, 28.792011921407457 ], [ -82.016833066968232, 28.792023208413333 ], [ -82.016848137258108, 28.792028063777245 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woods Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0151906214966, 28.791921745877911 ], [ -82.015271476610891, 28.791913636275204 ], [ -82.015317847115753, 28.791909295686416 ], [ -82.015367370469178, 28.791905339127435 ], [ -82.01541433318873, 28.791902232806397 ], [ -82.015461134156737, 28.791899759008242 ], [ -82.01550808885645, 28.791897902359512 ], [ -82.015555558866154, 28.791896658308968 ], [ -82.015597427072294, 28.791896088883252 ], [ -82.015903077566122, 28.791897508699499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Snell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01376637592692, 28.790367031510648 ], [ -82.013846039963568, 28.790384707389173 ], [ -82.013980701128148, 28.790419067964752 ], [ -82.014099691782747, 28.79045313669624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tupelo Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013065098011737, 28.790267826203781 ], [ -82.013070066350934, 28.789797146464704 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010210554674529, 28.798323835333566 ], [ -82.010145497137103, 28.798211155445536 ], [ -82.010102667413548, 28.798132375684226 ], [ -82.010067968853122, 28.798061711652547 ], [ -82.010031914168934, 28.797980782092932 ], [ -82.00999260560711, 28.79788242547755 ], [ -82.009964682637943, 28.7978041201713 ], [ -82.009945163076111, 28.797743244263422 ], [ -82.009926186121092, 28.797678786134099 ], [ -82.009908291523345, 28.79760979290484 ], [ -82.009889312823788, 28.79752551998207 ], [ -82.009868702372501, 28.797407346373966 ], [ -82.009849988789981, 28.797251928772752 ], [ -82.009837784070797, 28.797165746090201 ], [ -82.009828565327496, 28.797113463096348 ], [ -82.009812837817492, 28.797037784468163 ], [ -82.009791961134837, 28.796953033425151 ], [ -82.009762615356635, 28.796858925054085 ], [ -82.009744246775725, 28.796801917246722 ], [ -82.009726355423098, 28.796754887179883 ], [ -82.009689217744736, 28.796662974631737 ], [ -82.009646386941185, 28.796572496220108 ], [ -82.009604754600502, 28.79649261447754 ], [ -82.00952982704068, 28.796354059276158 ], [ -82.009494866094101, 28.796282194115417 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tupelo Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013044246846491, 28.792234038682626 ], [ -82.013048110666062, 28.791869667943907 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zumwalt Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013749772606019, 28.791948573012863 ], [ -82.014078475660938, 28.791985536872239 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013070066350934, 28.789797146464704 ], [ -82.013126450277099, 28.789800252514461 ], [ -82.013228467500781, 28.789808157370011 ], [ -82.013382292780676, 28.789823871374235 ], [ -82.013535939431407, 28.789844172582669 ], [ -82.013672640652743, 28.789866158045427 ], [ -82.013821139363586, 28.789894304134076 ], [ -82.013983922781918, 28.789930365567159 ], [ -82.014118132668841, 28.789964299258621 ], [ -82.014183693278682, 28.789983178209702 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015506989388925, 28.790514308546104 ], [ -82.015602009185713, 28.790533809803474 ], [ -82.01571168711915, 28.790550037588801 ], [ -82.015822104798332, 28.790560492200694 ], [ -82.015943223421658, 28.790565302454993 ], [ -82.016042802435933, 28.790564082162849 ], [ -82.016181485455363, 28.790554578626633 ], [ -82.01625761929219, 28.790544940451909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dooley Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016189298794757, 28.793224607796631 ], [ -82.01622564896698, 28.79322017239166 ], [ -82.016470685734319, 28.793189849932684 ], [ -82.016510867755969, 28.793184878032474 ], [ -82.016539183356727, 28.793181537982985 ], [ -82.016564180372242, 28.79317943899542 ], [ -82.016589455111429, 28.793178220628437 ], [ -82.01662217470944, 28.793177983101902 ], [ -82.016702489534183, 28.793181074021469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leigh Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016379825042478, 28.794158686670809 ], [ -82.016381790053842, 28.793952500689077 ], [ -82.016379264738617, 28.793898256144345 ], [ -82.016370681251743, 28.793844495092717 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rowe Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013979190997219, 28.79413031899745 ], [ -82.013980318564734, 28.793859489605637 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rowe Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013860142690945, 28.793295423803446 ], [ -82.013858623240921, 28.793292366913118 ], [ -82.01385625134688, 28.793287635411836 ], [ -82.013854846656002, 28.793284857325141 ], [ -82.013852164328284, 28.793279604316737 ], [ -82.013850269900686, 28.793275930280295 ], [ -82.013846245408445, 28.793268229425589 ], [ -82.013842765999172, 28.793261678967522 ], [ -82.013838911612055, 28.793254508656332 ], [ -82.013832724345079, 28.793243291695255 ], [ -82.013825878330223, 28.793231171581873 ], [ -82.013823964486306, 28.793227840425917 ], [ -82.013741355186838, 28.793087259839965 ], [ -82.013629975253821, 28.7928978297921 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepper Tree Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042826537783142, 28.896136530674568 ], [ -82.042813286277564, 28.898268002786654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepper Tree Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042826537783142, 28.896136530674568 ], [ -82.041926910308206, 28.896136704935973 ], [ -82.041853126106815, 28.896152006174336 ], [ -82.041805400702728, 28.896201677898137 ], [ -82.041788063633263, 28.896266618946999 ], [ -82.04177947089191, 28.89827714452489 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepper Tree Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043282028668642, 28.898263876863155 ], [ -82.042813286277564, 28.898268002786654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepper Tree Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042813286277564, 28.898268002786654 ], [ -82.04177947089191, 28.89827714452489 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepper Tree Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042829401206831, 28.89529990281158 ], [ -82.042829411693745, 28.895674235995269 ], [ -82.042826537783142, 28.896136530674568 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepper Tree Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04177947089191, 28.89827714452489 ], [ -82.041785646701143, 28.90144358944535 ], [ -82.041791120193153, 28.901482546302834 ], [ -82.041801818480067, 28.901515035692579 ], [ -82.041824498849365, 28.90154124051649 ], [ -82.041856097100563, 28.901562765993475 ], [ -82.041893650942043, 28.901579643703663 ], [ -82.041937320695823, 28.901587635498146 ], [ -82.041980905708883, 28.901591375675228 ], [ -82.042838496380853, 28.901590303716898 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepper Tree Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042813286277564, 28.898268002786654 ], [ -82.042832243001897, 28.900273301161864 ], [ -82.042838496380853, 28.901590303716898 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 222", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045417851268894, 28.901906218304173 ], [ -82.044630394529008, 28.901901639002119 ], [ -82.043357668883814, 28.901896975424457 ], [ -82.043335155736315, 28.901897052948726 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepper Tree Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042838496380853, 28.901590303716898 ], [ -82.042839961846411, 28.901898769231082 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974176946150919, 28.824162853180233 ], [ -81.973954319184131, 28.824592534895618 ], [ -81.973672014100117, 28.825138527498773 ], [ -81.973570033757298, 28.825318992723822 ], [ -81.973439859274521, 28.825499450486777 ], [ -81.973328133321829, 28.825622616970904 ], [ -81.973208566493426, 28.825738285412786 ], [ -81.972991641200053, 28.82590631142449 ], [ -81.972685555738011, 28.826119203427066 ], [ -81.972593142666057, 28.826199971918864 ], [ -81.972547588471642, 28.82623376851684 ], [ -81.972507894178278, 28.82625209531124 ], [ -81.972413035697912, 28.826280438129388 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972138076880057, 28.826655886205074 ], [ -81.972138971985984, 28.826752600361381 ], [ -81.97213625065551, 28.826771151265788 ], [ -81.972131370405762, 28.826793471568209 ], [ -81.972112272188483, 28.826838540634487 ], [ -81.972071474133728, 28.826924858743748 ], [ -81.97200636359338, 28.82709673500662 ], [ -81.971954256996668, 28.827297646636289 ], [ -81.971937742377094, 28.827408416019249 ], [ -81.971918609735383, 28.82758335794805 ], [ -81.971921161965994, 28.827768999470791 ], [ -81.971934984942564, 28.827979090495127 ], [ -81.971919298251393, 28.828240360603893 ], [ -81.971885418324192, 28.828408422927449 ], [ -81.971854467170928, 28.828526066654049 ], [ -81.971822897978882, 28.828617733680701 ], [ -81.971751715294303, 28.828780441047261 ], [ -81.971672173477188, 28.828923284993856 ], [ -81.971581593257952, 28.829075293106573 ], [ -81.971479184265178, 28.829218894541697 ], [ -81.97129173036727, 28.829436584333251 ], [ -81.971085197303424, 28.82963593123355 ], [ -81.970937678133438, 28.829756604792589 ], [ -81.970735495964263, 28.829900184919509 ], [ -81.970534186208155, 28.830022373004784 ], [ -81.970307720940013, 28.830134625324337 ], [ -81.970146334854036, 28.830203346343794 ], [ -81.969715977380176, 28.83035986003831 ], [ -81.969364022067367, 28.830488889709294 ], [ -81.969123583284642, 28.830576115835349 ], [ -81.968681076721765, 28.830734151934845 ], [ -81.968347245168843, 28.830854397393601 ], [ -81.96811036657995, 28.830958048165751 ], [ -81.967997902426347, 28.831016970119332 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iron Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96680926233654, 28.835374535686114 ], [ -81.966873022203771, 28.835386724456072 ], [ -81.966932451220856, 28.835393615584149 ], [ -81.966998387033073, 28.835401271636968 ], [ -81.967099462034724, 28.835405115897807 ], [ -81.967165400892327, 28.835403221845919 ], [ -81.967218758784384, 28.835402471525232 ], [ -81.967253028683174, 28.835402860657606 ], [ -81.967290334311443, 28.835408218626288 ], [ -81.967329372702238, 28.835417012993513 ], [ -81.967386202263114, 28.835416645127022 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iron Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967386202263114, 28.835416645127022 ], [ -81.967423503996557, 28.835431169601005 ], [ -81.96747078239963, 28.835452570260415 ], [ -81.96749940898053, 28.835469767052054 ], [ -81.967521935801372, 28.835482262242518 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967846832562387, 28.831094014627386 ], [ -81.967788226923957, 28.831132534561746 ], [ -81.967606650240597, 28.831250523640112 ], [ -81.967437868400722, 28.831375197165375 ], [ -81.967186198242061, 28.831611962043205 ], [ -81.967087260564725, 28.831720229253275 ], [ -81.966925702554775, 28.831924930504133 ], [ -81.966807996824016, 28.832097745805807 ], [ -81.9667441957438, 28.832204301632579 ], [ -81.966673226511489, 28.832343514688578 ], [ -81.966601597812144, 28.832506220031441 ], [ -81.966533864698263, 28.832701011471951 ], [ -81.966483054197553, 28.832874034404387 ], [ -81.96643154024585, 28.833212645077161 ], [ -81.966416896473632, 28.833559574287111 ], [ -81.96641196404525, 28.833722389993937 ], [ -81.966403752194466, 28.833962078795164 ], [ -81.966396076190179, 28.834220865967676 ], [ -81.966380840454207, 28.834382726242861 ], [ -81.966363997245494, 28.834483468295762 ], [ -81.966340101846484, 28.83459375770099 ], [ -81.966322182412995, 28.834673014626976 ], [ -81.966301010140029, 28.834747018400609 ], [ -81.966291239501615, 28.834781392970463 ], [ -81.96627759837078, 28.83480979058417 ], [ -81.9662645769248, 28.834832706832756 ], [ -81.966249819467208, 28.834856002515458 ], [ -81.966215104715658, 28.834891136869956 ], [ -81.966156149297433, 28.83494122266551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967997902426347, 28.831016970119332 ], [ -81.96790732167679, 28.831064953111877 ], [ -81.967846832562387, 28.831094014627386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972101745109725, 28.826484721502855 ], [ -81.972097668500439, 28.826520088080958 ], [ -81.972099355954199, 28.826555605308954 ], [ -81.972106773041801, 28.826590548405317 ], [ -81.972119768412114, 28.826624204303926 ], [ -81.972138076880057, 28.826655886205074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972138076880057, 28.826655886205074 ], [ -81.972165931984009, 28.826689790301575 ], [ -81.972199844765555, 28.826719104650049 ], [ -81.972238856205522, 28.826743000266386 ], [ -81.972281863096711, 28.826760801402983 ], [ -81.972327649241876, 28.826772004658583 ], [ -81.972374919847269, 28.826776293214394 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972374919847269, 28.826776293214394 ], [ -81.972419187962558, 28.826773948603382 ], [ -81.972462494392502, 28.826765533915538 ], [ -81.972503772540634, 28.826751256396722 ], [ -81.972542005766243, 28.826731467688685 ], [ -81.972576252423551, 28.826706655168316 ], [ -81.972605669053777, 28.826677429943803 ], [ -81.97262953115883, 28.826644511803423 ], [ -81.972647251044648, 28.826608711487566 ], [ -81.972658392295287, 28.826570910720847 ], [ -81.972662680520827, 28.826532040495938 ], [ -81.97266001011451, 28.826493058144141 ], [ -81.972650446853123, 28.826454923757215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972650446853123, 28.826454923757215 ], [ -81.972633186585171, 28.826416715630327 ], [ -81.972609011500268, 28.826381535047275 ], [ -81.972578582781281, 28.82635034417925 ], [ -81.972542732642694, 28.826323996079942 ], [ -81.972502441569588, 28.826303211355313 ], [ -81.972458811502023, 28.826288558455708 ], [ -81.972413035697912, 28.826280438129388 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972413035697912, 28.826280438129388 ], [ -81.972368990679428, 28.826278907930341 ], [ -81.972325211986288, 28.826283433456261 ], [ -81.972282766726465, 28.826293904397204 ], [ -81.972242689506118, 28.826310065523398 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974176946150919, 28.824162853180233 ], [ -81.974350223574461, 28.82419210678421 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Herb Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044008631246825, 28.923273395244991 ], [ -82.04401453783926, 28.92285177510465 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thorne Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04401453783926, 28.92285177510465 ], [ -82.043697650628232, 28.922850405376305 ], [ -82.043534838347185, 28.922850457449012 ], [ -82.043488702709936, 28.9228385366061 ], [ -82.043428994772896, 28.92281229432675 ], [ -82.043374707323977, 28.922771727260464 ], [ -82.043336698121365, 28.922721604204042 ], [ -82.04331277515584, 28.922673597057862 ], [ -82.04326335617165, 28.922535417182537 ], [ -82.043121974043629, 28.922104874850412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caruthers Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017722546907493, 28.788160651035859 ], [ -82.017823187062646, 28.788160980379473 ], [ -82.018123340669291, 28.788161928484936 ], [ -82.018253424541157, 28.788169551646508 ], [ -82.018279343022357, 28.788178492935213 ], [ -82.01833745323195, 28.788212100209368 ], [ -82.018370412107174, 28.788236542318515 ], [ -82.018399901835267, 28.788267096242581 ], [ -82.018425852593694, 28.788302745085211 ], [ -82.018436334049454, 28.7883274454611 ], [ -82.018443278701767, 28.788358002314222 ], [ -82.018444301109596, 28.788692840898033 ], [ -82.018426974210058, 28.788792158125617 ], [ -82.018404267234658, 28.788864259561201 ], [ -82.018361958815788, 28.78894877847452 ], [ -82.018253589973384, 28.789136344729776 ], [ -82.018158726723101, 28.789329269805616 ], [ -82.018140890554051, 28.78936898562635 ], [ -82.018105639386576, 28.789468020872814 ], [ -82.018084552986949, 28.789567621853593 ], [ -82.017995992943426, 28.790234016104453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caulk Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016451113882724, 28.787064711113967 ], [ -82.01646386270329, 28.785792283453628 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rogers Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015654164682331, 28.787028783320014 ], [ -82.016451113882724, 28.787064711113967 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gibson Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015654164682331, 28.787028783320014 ], [ -82.015667772341203, 28.785785130415576 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hill Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013112988638355, 28.785464403171346 ], [ -82.013695900949728, 28.785610795384919 ], [ -82.013863998908903, 28.785649212433299 ], [ -82.014038450818859, 28.785683337244091 ], [ -82.014169256171868, 28.785704186790351 ], [ -82.014363653629843, 28.785725324004371 ], [ -82.014644484443991, 28.785751505983683 ], [ -82.01482760700587, 28.785763474365773 ], [ -82.014928948817285, 28.785766039025283 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Altman Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014502873238982, 28.787050237359267 ], [ -82.014745364646402, 28.78679865012743 ], [ -82.01484941118872, 28.78667258518287 ], [ -82.014897822105695, 28.786604060219307 ], [ -82.014920361893388, 28.786545995761156 ], [ -82.014923098003038, 28.78648922728614 ], [ -82.014924111098736, 28.786364174565083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kelly Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013106048386192, 28.786099125016001 ], [ -82.013284776632176, 28.786138451347011 ], [ -82.01345315686396, 28.786176148829746 ], [ -82.013808718377334, 28.786248691849707 ], [ -82.014203299081274, 28.786305949382118 ], [ -82.014485143435678, 28.78634029933486 ], [ -82.014924111098736, 28.786364174565083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Motz Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013106048386192, 28.786099125016001 ], [ -82.013112988638355, 28.785464403171346 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Delphina Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014183693278682, 28.789983178209702 ], [ -82.014553550036538, 28.788804067900649 ], [ -82.014575454501937, 28.788708716366436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kersey Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014797054348676, 28.790226151570572 ], [ -82.014892469653262, 28.790093647731808 ], [ -82.01491457830511, 28.790060413214661 ], [ -82.014932784182307, 28.790018011595276 ], [ -82.015092632687683, 28.789571790760686 ], [ -82.015235662726141, 28.789128679977303 ], [ -82.015251356526363, 28.789069902485501 ], [ -82.015257328389978, 28.789021721901683 ], [ -82.015253078026902, 28.788973643469436 ], [ -82.015235633578769, 28.788922409249995 ], [ -82.015207102935662, 28.788881972393909 ], [ -82.015157570172761, 28.788830742480936 ], [ -82.015104758385505, 28.78879871232914 ], [ -82.015031816038302, 28.788769640256639 ], [ -82.014974669894642, 28.788754415201922 ], [ -82.014893151185873, 28.788746022278382 ], [ -82.014575454501937, 28.788708716366436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fudge Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016767582544688, 28.788989418786009 ], [ -82.016961288572702, 28.788234649085041 ], [ -82.016978587572808, 28.788158015306138 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caulk Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017722546907493, 28.788160651035859 ], [ -82.017720103280041, 28.788348532028603 ], [ -82.017713610797827, 28.788412704496654 ], [ -82.017535791112451, 28.788959724570834 ], [ -82.01751736708249, 28.788988375311249 ], [ -82.017496774904387, 28.78901225217491 ], [ -82.017469678026529, 28.789038992878993 ], [ -82.017421046455652, 28.789063491270213 ], [ -82.017373206621315, 28.789075293992806 ], [ -82.017325509504133, 28.789082938819377 ], [ -82.017262635520879, 28.789082946490044 ], [ -82.016767582544688, 28.788989418786009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Delphina Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014502873238982, 28.787050237359267 ], [ -82.014476734435149, 28.787028373326148 ], [ -82.014439276503282, 28.787005612627162 ], [ -82.014359485083091, 28.786989678564165 ], [ -82.014146225322762, 28.78696548978375 ], [ -82.013804466032326, 28.786917158132077 ], [ -82.013424247511438, 28.786844679674768 ], [ -82.013379602734517, 28.786838744801859 ], [ -82.013321500784642, 28.786844862467163 ], [ -82.013275467653074, 28.786859910099974 ], [ -82.013217441699879, 28.786893001490618 ], [ -82.013175746235731, 28.786924856095506 ], [ -82.013142874627732, 28.786990031438915 ], [ -82.013127705642248, 28.787042364330585 ], [ -82.013116037139568, 28.787370485576655 ], [ -82.013116043067399, 28.787410976015106 ], [ -82.013132451417079, 28.787459632705446 ], [ -82.013163750223256, 28.787498063011192 ], [ -82.013197500137892, 28.787528383988953 ], [ -82.01324093774781, 28.787552297638207 ], [ -82.013260393514017, 28.787560503295623 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lay Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01646386270329, 28.785792283453628 ], [ -82.016856761042277, 28.785795409922734 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lay Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015667772341203, 28.785785130415576 ], [ -82.015712145704526, 28.785786299442336 ], [ -82.01646386270329, 28.785792283453628 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lay Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015280156142097, 28.785775175720087 ], [ -82.015291340935519, 28.785775759222105 ], [ -82.015314517583164, 28.78577663468926 ], [ -82.015667772341203, 28.785785130415576 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Altman Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014924111098736, 28.786364174565083 ], [ -82.014928948817285, 28.785766039025283 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Motz Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013112988638355, 28.785464403171346 ], [ -82.013116403420284, 28.785024362223108 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Motz Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01310269623778, 28.786405605350037 ], [ -82.013106048386192, 28.786099125016001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rogers Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015073973911669, 28.787002976448523 ], [ -82.015654164682331, 28.787028783320014 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caulk Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016436925193034, 28.787696986706294 ], [ -82.016438622757761, 28.78769268066797 ], [ -82.016446420286798, 28.787651426875769 ], [ -82.016446760003859, 28.787609011765625 ], [ -82.016451113882724, 28.787064711113967 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caruthers Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014528200669915, 28.7876340942071 ], [ -82.015005642898245, 28.787658078938993 ], [ -82.015499954113594, 28.78766948550312 ], [ -82.015760117669885, 28.787680916361833 ], [ -82.015830264370663, 28.787689853222112 ], [ -82.015873192102276, 28.787696723174207 ], [ -82.015924893327224, 28.787715276194756 ], [ -82.016133037351679, 28.787818387236282 ], [ -82.016312011054339, 28.787916367137885 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Delphina Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014528200669915, 28.7876340942071 ], [ -82.014563438599225, 28.787499979701138 ], [ -82.014593803573817, 28.787339606538612 ], [ -82.014601333664174, 28.787224231390386 ], [ -82.01458809342742, 28.787158292534635 ], [ -82.014532414503151, 28.787071203239396 ], [ -82.014502873238982, 28.787050237359267 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Delphina Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014575454501937, 28.788708716366436 ], [ -82.0145818074555, 28.788643682353033 ], [ -82.014582649116434, 28.78845956873856 ], [ -82.014569622733475, 28.788332369076635 ], [ -82.014538367717407, 28.78806192983599 ], [ -82.014530550549182, 28.787978277107555 ], [ -82.014526641270521, 28.787919834632024 ], [ -82.014528200669915, 28.7876340942071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014797054348676, 28.790226151570572 ], [ -82.014882322846503, 28.79026997530589 ], [ -82.014974098146197, 28.790317192808661 ], [ -82.015095765013271, 28.790377299347469 ], [ -82.015241237407906, 28.790437038700297 ], [ -82.015347184422382, 28.790472667824673 ], [ -82.015482046237224, 28.790509189725679 ], [ -82.015506989388925, 28.790514308546104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014183693278682, 28.789983178209702 ], [ -82.014291366828729, 28.790014183637918 ], [ -82.014427380307183, 28.790060631029082 ], [ -82.014560435595342, 28.790113331617295 ], [ -82.014737152044944, 28.790195365404792 ], [ -82.014797054348676, 28.790226151570572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017995992943426, 28.790234016104453 ], [ -82.018031622381827, 28.790238360718362 ], [ -82.018116732678536, 28.790253186583211 ], [ -82.018225246646125, 28.790278692771661 ], [ -82.018337620715585, 28.790313371291358 ], [ -82.01844747649892, 28.790356088757338 ], [ -82.018551426457179, 28.790405416355842 ], [ -82.018659995187832, 28.790467479418822 ], [ -82.018758100847705, 28.790528944648123 ], [ -82.018905767144176, 28.790621462610289 ], [ -82.01905775156041, 28.79071668676638 ], [ -82.019196588014296, 28.790803670808742 ], [ -82.019249566933894, 28.790835502619572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caruthers Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016312011054339, 28.787916367137885 ], [ -82.016453932357138, 28.787994061664726 ], [ -82.016624773148976, 28.788093120354542 ], [ -82.016700228317831, 28.788130927477003 ], [ -82.016757480569922, 28.788150637192807 ], [ -82.016809499524015, 28.788154979294415 ], [ -82.016978587572808, 28.788158015306138 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caruthers Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016978587572808, 28.788158015306138 ], [ -82.016991629565183, 28.788158249248966 ], [ -82.017722546907493, 28.788160651035859 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caulk Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016767582544688, 28.788989418786009 ], [ -82.016282650540106, 28.788897801913301 ], [ -82.016249476152623, 28.78888233553851 ], [ -82.016213700546643, 28.788862858667375 ], [ -82.01619223573104, 28.788847963912271 ], [ -82.016163612449247, 28.788820463741576 ], [ -82.016140193665379, 28.788787234184131 ], [ -82.01611807144036, 28.78873910727496 ], [ -82.016110261531821, 28.788705876845004 ], [ -82.016108305583359, 28.788674362854962 ], [ -82.016112203161299, 28.788641703165773 ], [ -82.016117402844472, 28.788617637867809 ], [ -82.016312011054339, 28.787916367137885 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trujillo Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009138684168406, 28.785386823022801 ], [ -82.009932596827383, 28.785384964485086 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Farrar Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009150575088881, 28.78663498638274 ], [ -82.00928336549336, 28.786593396785161 ], [ -82.009481190941358, 28.786545636488167 ], [ -82.009921108671037, 28.786545137463253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neilson Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009921108671037, 28.786545137463253 ], [ -82.009932596827383, 28.785384964485086 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fort Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009150575088881, 28.78663498638274 ], [ -82.009120759009491, 28.786521784783165 ], [ -82.009138684168406, 28.785386823022801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Britton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011533118046856, 28.789318479725978 ], [ -82.011523730796341, 28.789253014898591 ], [ -82.011467301265981, 28.788687688167236 ], [ -82.011471621105684, 28.788527256419613 ], [ -82.011514963640991, 28.788359179886719 ], [ -82.011588658894567, 28.788179644239083 ], [ -82.011601655840181, 28.788084147708933 ], [ -82.0116146178854, 28.787652509445945 ], [ -82.011616593735894, 28.78749001336239 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gordon Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006397214056534, 28.7889910655847 ], [ -82.00641143004168, 28.788975090431379 ], [ -82.006431591983244, 28.788960192392281 ], [ -82.006452404364737, 28.788945867292345 ], [ -82.006490777447155, 28.788924092851389 ], [ -82.00653240195264, 28.788909193893911 ], [ -82.006574028899038, 28.788901170555459 ], [ -82.006621508898945, 28.788899450517771 ], [ -82.007907393833037, 28.788903263673177 ], [ -82.008523119242952, 28.788903229947287 ], [ -82.008661870492418, 28.788868843800927 ], [ -82.008752922723971, 28.788800082163839 ], [ -82.008783268025184, 28.788700765393997 ], [ -82.008817871222661, 28.787631216308405 ], [ -82.008822197615444, 28.787528081556076 ], [ -82.008879599452982, 28.787456549000371 ], [ -82.008958835639774, 28.787414433251538 ], [ -82.009029660318674, 28.78738174083345 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dadeo Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012188964304741, 28.78680608632979 ], [ -82.01231476653814, 28.78657717573563 ], [ -82.012344024669702, 28.786491228723499 ], [ -82.012350512667865, 28.786350850645409 ], [ -82.012350477129814, 28.786038580462588 ], [ -82.012347207881817, 28.785886743817006 ], [ -82.012334182474461, 28.785723448608756 ], [ -82.012241684641126, 28.785308238499102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cipris Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005126923402514, 28.791849143894929 ], [ -82.005078207561823, 28.791823374465835 ], [ -82.005036577293239, 28.791784986844984 ], [ -82.005009908044613, 28.791748318556436 ], [ -82.004996246711613, 28.791719097556033 ], [ -82.004986615039272, 28.791691300280444 ], [ -82.004979983567665, 28.791664092122208 ], [ -82.004978029931721, 28.791610233988138 ], [ -82.004977354008162, 28.791025229809652 ], [ -82.004977343570957, 28.790785728694622 ], [ -82.004979943743066, 28.790750776591697 ], [ -82.004994902058769, 28.790694626051064 ], [ -82.005015064649712, 28.790659101335322 ], [ -82.005042379907621, 28.79062529439793 ], [ -82.005076852051772, 28.790596071885108 ], [ -82.005110674062394, 28.790573725014497 ], [ -82.005327907478289, 28.790429902658154 ], [ -82.00536302933638, 28.790410420526605 ], [ -82.005397501059733, 28.790397241069318 ], [ -82.005444406729879, 28.790387163332113 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Perdue Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005444406729879, 28.790387163332113 ], [ -82.005433921622441, 28.790333639343089 ], [ -82.005426766340477, 28.790298689367422 ], [ -82.005424162546035, 28.790254570826001 ], [ -82.005431964429505, 28.79020987895969 ], [ -82.00544887302037, 28.79016117509352 ], [ -82.005513257551343, 28.789995011789237 ], [ -82.005563982683697, 28.789862081148542 ], [ -82.005585776340311, 28.789779787557514 ], [ -82.005593244170001, 28.789713681077004 ], [ -82.005595843972714, 28.789655238119117 ], [ -82.0056081793077, 28.789220353085216 ], [ -82.005611426574845, 28.789123520253121 ], [ -82.005621180445317, 28.789076536422037 ], [ -82.005640691442764, 28.78902783333384 ], [ -82.005675160156571, 28.788984859398692 ], [ -82.005707029877158, 28.78895449087398 ], [ -82.00575320877104, 28.788926413696853 ], [ -82.005796784501683, 28.788909223017253 ], [ -82.005842313859716, 28.78889890788297 ], [ -82.005885891366717, 28.788896614377343 ], [ -82.006103129082973, 28.788896606050454 ], [ -82.006187032367492, 28.78889832164883 ], [ -82.006232218355407, 28.788902919841163 ], [ -82.006272886796594, 28.788916653226963 ], [ -82.006300856135653, 28.788926966444599 ], [ -82.006335329132014, 28.788947018064874 ], [ -82.006397214056534, 28.7889910655847 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Downey Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010831208209126, 28.792159137718027 ], [ -82.012277038219011, 28.792008959861992 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deming Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012295029881244, 28.790822927709893 ], [ -82.012304093689323, 28.790225505100569 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yerk Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010810413416763, 28.790977358529844 ], [ -82.010809839851959, 28.790936424214859 ], [ -82.010809784138075, 28.790374499394684 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jans Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010809784138075, 28.790374499394684 ], [ -82.012304093689323, 28.790225505100569 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harrison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010810413416763, 28.790977358529844 ], [ -82.012295029881244, 28.790822927709893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stivender Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010818718819579, 28.791570195949003 ], [ -82.012285983267006, 28.791419313506236 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010935153002777, 28.799492646622802 ], [ -82.010859179452666, 28.799423012734945 ], [ -82.010760281707007, 28.79917855384857 ], [ -82.010682209912133, 28.799028822634867 ], [ -82.010583304939473, 28.798860162367195 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008718248727916, 28.791781888967009 ], [ -82.008139571332904, 28.791804278227549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008139571332904, 28.791804278227549 ], [ -82.008025677911562, 28.791769080598232 ], [ -82.007869575502724, 28.791766223098783 ], [ -82.007777928784975, 28.79177221109807 ], [ -82.007686002961961, 28.791785966164035 ], [ -82.007469194812174, 28.791834870687833 ], [ -82.007265398973615, 28.791912040114923 ], [ -82.00709542395613, 28.791984624814379 ], [ -82.007060736117566, 28.792019004567834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007060736117566, 28.792019004567834 ], [ -82.007127512158775, 28.792015181968253 ], [ -82.007257597616842, 28.791986145689837 ], [ -82.007338250311136, 28.791973917272905 ], [ -82.0074154338825, 28.791964746917895 ], [ -82.007502159116243, 28.791960158896586 ], [ -82.007570390370844, 28.791952454253384 ], [ -82.007681676037663, 28.791929591232662 ], [ -82.007802221654629, 28.791896735421663 ], [ -82.007986072753198, 28.791845540242289 ], [ -82.008080600031562, 28.791827963534519 ], [ -82.008139571332904, 28.791804278227549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007060736117566, 28.792019004567834 ], [ -82.006638397660282, 28.792167995406782 ], [ -82.006358020832195, 28.792268727954834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004629027264698, 28.792683650880626 ], [ -82.004727218301312, 28.7926791599612 ], [ -82.004868523334849, 28.792671067450989 ], [ -82.005179431502725, 28.792668765873469 ], [ -82.005314721377772, 28.792652717393498 ], [ -82.005397214444528, 28.792639998313557 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005386081282126, 28.792532972588187 ], [ -82.005286098277409, 28.792546146105845 ], [ -82.005136497629991, 28.792555317583371 ], [ -82.004902340981431, 28.792554179845769 ], [ -82.004756149568351, 28.79254794018733 ], [ -82.004618720058261, 28.79251530113919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yerk Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010831208209126, 28.792159137718027 ], [ -82.010818718819579, 28.791570195949003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yerk Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010818718819579, 28.791570195949003 ], [ -82.010810413416763, 28.790977358529844 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Downey Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010477312008959, 28.792207648421499 ], [ -82.010831208209126, 28.792159137718027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Downey Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012277038219011, 28.792008959861992 ], [ -82.012647415094577, 28.791970487552849 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deming Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012277038219011, 28.792008959861992 ], [ -82.012285983267006, 28.791419313506236 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deming Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012285983267006, 28.791419313506236 ], [ -82.012295029881244, 28.790822927709893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deming Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012304093689323, 28.790225505100569 ], [ -82.012308956482045, 28.789904958658834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yerk Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010809784138075, 28.790374499394684 ], [ -82.010810960840828, 28.790031579508376 ], [ -82.010807268576087, 28.789941335779165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gordon Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012336235130206, 28.787517241700453 ], [ -82.01233012663387, 28.788203933824605 ], [ -82.012278109116508, 28.788337632295114 ], [ -82.012217428188734, 28.788543906384433 ], [ -82.012200095421548, 28.788643222826479 ], [ -82.012213133290132, 28.788906788502381 ], [ -82.01223049062105, 28.789025200385641 ], [ -82.012213155903098, 28.789116876931672 ], [ -82.012156797752169, 28.789212377153046 ], [ -82.012078754413039, 28.789269680608463 ], [ -82.011931329351853, 28.789296431987854 ], [ -82.011533118046856, 28.789318479725978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trujillo Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008724648602112, 28.785386848776223 ], [ -82.009138684168406, 28.785386823022801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neilson Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009932596827383, 28.785384964485086 ], [ -82.009936329753486, 28.78500813339673 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Farrar Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008711570184516, 28.786772483010314 ], [ -82.009150575088881, 28.78663498638274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Neilson Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009944915353046, 28.787086874437513 ], [ -82.009917532958411, 28.78690610126111 ], [ -82.009921108671037, 28.786545137463253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gordon Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009029660318674, 28.78738174083345 ], [ -82.009455235038899, 28.787241557850923 ], [ -82.009944915353046, 28.787086874437513 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gordon Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009944915353046, 28.787086874437513 ], [ -82.010144643069609, 28.787023782725978 ], [ -82.010361437551424, 28.786970290136669 ], [ -82.011003160305521, 28.786897667454504 ], [ -82.011624740794701, 28.786820353107853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Britton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01161010880196, 28.789846718738367 ], [ -82.011533118046856, 28.789318479725978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gordon Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011624740794701, 28.786820353107853 ], [ -82.011709920472825, 28.786809757611845 ], [ -82.011922380995856, 28.786783001140826 ], [ -82.012004239777738, 28.786779726206529 ], [ -82.012087148114674, 28.786782987498466 ], [ -82.01215686815857, 28.786794993270686 ], [ -82.012188964304741, 28.78680608632979 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gordon Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006358020832195, 28.792268727954834 ], [ -82.006167917065724, 28.791857340230706 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gordon Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006005884131937, 28.791187644018123 ], [ -82.006019343367839, 28.791092231955844 ], [ -82.006040803616031, 28.79100227316507 ], [ -82.006070067433612, 28.790922630218155 ], [ -82.006088927272089, 28.790876791949508 ], [ -82.006134451675052, 28.790779384502105 ], [ -82.006148107484847, 28.790741568900028 ], [ -82.006162415253769, 28.790694583959024 ], [ -82.006178020799013, 28.790629265755289 ], [ -82.006203526039911, 28.790470816650892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Foust Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005634502062421, 28.791191812941708 ], [ -82.006005884131937, 28.791187644018123 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gordon Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006167917065724, 28.791857340230706 ], [ -82.006102198552796, 28.791717338951862 ], [ -82.006042566979687, 28.791565503559909 ], [ -82.006014159165346, 28.791451483803264 ], [ -82.00601151250541, 28.79141542294305 ], [ -82.006006350112258, 28.791378144056075 ], [ -82.006002444188596, 28.791334408164328 ], [ -82.006001355589007, 28.79126183151444 ], [ -82.006005884131937, 28.791187644018123 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gordon Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006203526039911, 28.790470816650892 ], [ -82.006215733510388, 28.79039721082485 ], [ -82.006256695566137, 28.790137081155432 ], [ -82.006310661691586, 28.789804182937871 ], [ -82.00631716065007, 28.789729695767168 ], [ -82.006324953301942, 28.789492486170413 ], [ -82.006335342504997, 28.789183654393259 ], [ -82.006335338922696, 28.789138389817808 ], [ -82.006337939820554, 28.789106876399227 ], [ -82.006345092878519, 28.789080519518045 ], [ -82.006358750537515, 28.789044421891223 ], [ -82.006376310064809, 28.789015772703522 ], [ -82.006397214056534, 28.7889910655847 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cipris Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005444406729879, 28.790387163332113 ], [ -82.00549328646143, 28.790382687073865 ], [ -82.006203526039911, 28.790470816650892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004618720058261, 28.79251530113919 ], [ -82.004540798574666, 28.79242658063632 ], [ -82.0044278326735, 28.792364478375518 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008718248727916, 28.791781888967009 ], [ -82.008725809676349, 28.79158269650183 ], [ -82.00877988690975, 28.79126768934988 ], [ -82.008883935169962, 28.791019395350066 ], [ -82.00906170177349, 28.790816935213911 ], [ -82.009313179392677, 28.79057627167451 ], [ -82.009634035462, 28.790354702420906 ], [ -82.009929819918938, 28.79021327398701 ], [ -82.010092416873292, 28.790135910269942 ], [ -82.010303797911206, 28.790067140182899 ], [ -82.010524935511611, 28.790004097853377 ], [ -82.010772090163698, 28.789946782035802 ], [ -82.010807268576087, 28.789941335779165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01161010880196, 28.789846718738367 ], [ -82.011828071156273, 28.789823589278182 ], [ -82.012244335103134, 28.789800635926287 ], [ -82.012703326969032, 28.789788665011326 ], [ -82.012844789275803, 28.78978875174014 ], [ -82.012994476024517, 28.789792981906142 ], [ -82.013070066350934, 28.789797146464704 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012603574983245, 28.799653055868973 ], [ -82.01200111866082, 28.799652177827038 ], [ -82.01140896124511, 28.799649561141109 ], [ -82.011063879711315, 28.799610417539942 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010647571757815, 28.799478950054855 ], [ -82.010529799765735, 28.799599458811432 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97427282908545, 28.823997999853791 ], [ -81.974176946150919, 28.824162853180233 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974350223574461, 28.82419210678421 ], [ -81.974426173581236, 28.824022140664166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sandalwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980171251007974, 28.812400682546379 ], [ -81.980324814688231, 28.812488324959762 ], [ -81.980392471000883, 28.812499029961185 ], [ -81.980454921676525, 28.812515846422993 ], [ -81.980500890998499, 28.8125334247169 ], [ -81.980539920488383, 28.812555583921892 ], [ -81.980642609844281, 28.812675263241339 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sandalwood Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980337872916252, 28.812236984597195 ], [ -81.980871039950131, 28.812285453567057 ], [ -81.980941098160272, 28.812309851202833 ], [ -81.980977597664946, 28.812329145085524 ], [ -81.980999347681959, 28.812357973391009 ], [ -81.981009026413702, 28.812389959875432 ], [ -81.980999364989017, 28.812425092683448 ], [ -81.980980296256675, 28.812456270230204 ], [ -81.980917648789017, 28.812511427704365 ], [ -81.980845251190729, 28.812560211637425 ], [ -81.980642609844281, 28.812675263241339 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004660926757509, 28.798451823255071 ], [ -82.004594614771818, 28.798304459430661 ], [ -82.004472637589942, 28.797958293242942 ], [ -82.004373460360256, 28.797423824473768 ], [ -82.004400307710327, 28.793821216235784 ], [ -82.004393735504294, 28.793116254346913 ], [ -82.004391034443842, 28.792928909796924 ], [ -82.004427470851553, 28.792839022168863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004198372845892, 28.792815143875721 ], [ -82.004269343950909, 28.792975584227609 ], [ -82.004263470101094, 28.793381097540379 ], [ -82.004257157107659, 28.797616903489097 ], [ -82.004319505371313, 28.797940391827957 ], [ -82.004530679000354, 28.798509177910393 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005037578772374, 28.799641530031277 ], [ -82.004882546229311, 28.799632939383503 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004882546229311, 28.799632939383503 ], [ -82.004881468349524, 28.799771408290411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005028861662183, 28.799765231030342 ], [ -82.005801899509464, 28.799777106083717 ], [ -82.006957587893666, 28.799776103643001 ], [ -82.007803198419708, 28.799763820732672 ], [ -82.007945831733409, 28.799764125455081 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978986331773157, 28.815190972483716 ], [ -81.978772781306574, 28.815758290855335 ], [ -81.978565473566121, 28.816288987771685 ], [ -81.978414698278968, 28.81668273267524 ], [ -81.978260197944167, 28.817123510601284 ], [ -81.978111226142573, 28.817519416440526 ], [ -81.97792245010001, 28.81800640825433 ], [ -81.977774909525692, 28.818338706465653 ], [ -81.977670766806952, 28.818556416563268 ], [ -81.977521065610631, 28.818852425912084 ], [ -81.977325489994954, 28.819215835295623 ], [ -81.976993189833365, 28.819739263686209 ], [ -81.976694614761328, 28.820207343084103 ], [ -81.976693289509001, 28.820209419970862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980171251007974, 28.812400682546379 ], [ -81.980033366479617, 28.812366431119944 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013556090490525, 28.799654444493935 ], [ -82.013559426788788, 28.799784389790407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006358020832195, 28.792268727954834 ], [ -82.006252262518672, 28.792306919967764 ], [ -82.005898803311467, 28.79245674124035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010807268576087, 28.789941335779165 ], [ -82.011012742388246, 28.789909521983848 ], [ -82.011359773289001, 28.789873283681906 ], [ -82.01161010880196, 28.789846718738367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.144817636009833, 28.668621308339723 ], [ -82.144624958539566, 28.668617325300211 ], [ -82.143505217547343, 28.668621579117122 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145068756276871, 28.668671603328594 ], [ -82.144870974731944, 28.668622410223254 ], [ -82.144817636009833, 28.668621308339723 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.146739054461946, 28.66266256986485 ], [ -82.146434305620119, 28.663136671117424 ], [ -82.145782506082455, 28.664077061951822 ], [ -82.145448853757358, 28.664583170493472 ], [ -82.145101351307574, 28.665095405333641 ], [ -82.144608592644701, 28.665804898971203 ], [ -82.144254161225206, 28.66632477986693 ], [ -82.143975797476315, 28.666731509098124 ], [ -82.14363517586051, 28.667220812636025 ], [ -82.143246156521244, 28.667791148679001 ], [ -82.142758587750137, 28.668514381440762 ], [ -82.142625435335773, 28.668696347096752 ], [ -82.142274467240853, 28.669229969642217 ], [ -82.141786868721226, 28.669939448178116 ], [ -82.141418555541918, 28.670463916980321 ], [ -82.141119418032389, 28.670898166574421 ], [ -82.140934409865935, 28.67117338875849 ], [ -82.140787448870327, 28.67139814908143 ], [ -82.140638771403644, 28.671636664348433 ], [ -82.140386368272459, 28.672043359143924 ], [ -82.140140880697388, 28.672440878648004 ], [ -82.139889968951394, 28.672847885857912 ], [ -82.139639726306555, 28.673301879900887 ], [ -82.139163171838732, 28.674221944148638 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143295909572842, 28.668787609231266 ], [ -82.143339744669206, 28.668769066217312 ], [ -82.143373798342168, 28.668750103070746 ], [ -82.143398896638303, 28.668733269821843 ], [ -82.143420532827022, 28.668719495508718 ], [ -82.143441865821643, 28.668700201044697 ], [ -82.143475594442933, 28.66866043946397 ], [ -82.143502399840401, 28.668625268110969 ], [ -82.143505217547343, 28.668621579117122 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139078627307896, 28.674934856792714 ], [ -82.139413236495756, 28.67429762509617 ], [ -82.139791110614567, 28.673577128827077 ], [ -82.140084765420525, 28.673046338489051 ], [ -82.140347799918445, 28.672590070997749 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142171008652966, 28.668615466892327 ], [ -82.141865641251229, 28.668610874700693 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141932446484518, 28.668843325238143 ], [ -82.141889850539727, 28.668900205687432 ], [ -82.141797797171193, 28.669048639472809 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.135310034418808, 28.668639613788585 ], [ -82.135933515423488, 28.668683466596157 ], [ -82.136579542130121, 28.66869507256374 ], [ -82.137191537979746, 28.668705396819149 ], [ -82.137348904818808, 28.668707578052786 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140721122364056, 28.668768108142878 ], [ -82.140952796631055, 28.668782920477547 ], [ -82.141475615683831, 28.668821341314462 ], [ -82.141475616197383, 28.668821723902678 ], [ -82.141932446484518, 28.668843325238143 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142379653894466, 28.668852979190525 ], [ -82.14242251114247, 28.668853399097976 ], [ -82.143131086453621, 28.668855710937599 ], [ -82.143333431600695, 28.668849167448144 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142197334107351, 28.668663316250566 ], [ -82.142238677580636, 28.668710344143236 ], [ -82.14227164219713, 28.668746980494692 ], [ -82.142301567134297, 28.66877674424342 ], [ -82.14234320363461, 28.668817955365583 ], [ -82.142379653894466, 28.668852979190525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141932446484518, 28.668843325238143 ], [ -82.14214011719757, 28.668850636899823 ], [ -82.142379653894466, 28.668852979190525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142171008652966, 28.668615466892327 ], [ -82.142184997060838, 28.668649282524434 ], [ -82.142197334107351, 28.668663316250566 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143505217547343, 28.668621579117122 ], [ -82.143119820113256, 28.668622178519854 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143383158750467, 28.668942678818841 ], [ -82.14334971832325, 28.668879240374178 ], [ -82.143333431600695, 28.668849167448144 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143333431600695, 28.668849167448144 ], [ -82.143507107625993, 28.668843550775843 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143295909572842, 28.668787609231266 ], [ -82.143314982763798, 28.668815103073406 ], [ -82.143333431600695, 28.668849167448144 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966389039094153, 28.835356552885568 ], [ -81.96641725868966, 28.835326254765995 ], [ -81.966439660687641, 28.835292397569198 ], [ -81.966455677418168, 28.835255839250348 ], [ -81.966464903017979, 28.835217506211237 ], [ -81.966467103714564, 28.835178369824764 ], [ -81.966462223749403, 28.835139421819857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96592751134591, 28.83527586868097 ], [ -81.96594737688774, 28.835311582751455 ], [ -81.965973514444713, 28.835344013978627 ], [ -81.966005241817186, 28.835372315889078 ], [ -81.966041730906142, 28.835395749786265 ], [ -81.966082029326941, 28.83541370403119 ], [ -81.966125085267279, 28.835425710006863 ], [ -81.966169774940411, 28.835431454349685 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965908141034831, 28.835188237966154 ], [ -81.965910539165122, 28.835218068851361 ], [ -81.96591702785841, 28.835247423513014 ], [ -81.96592751134591, 28.83527586868097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966057470811592, 28.834967982775165 ], [ -81.966020484348263, 28.834988528872071 ], [ -81.965987589442477, 28.835013902714138 ], [ -81.965959591096166, 28.835043483356838 ], [ -81.965937174485177, 28.835076546906965 ], [ -81.965920888191519, 28.835112284237372 ], [ -81.965911130778125, 28.835149820787642 ], [ -81.965908141034831, 28.835188237966154 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966156149297433, 28.83494122266551 ], [ -81.96612208323819, 28.834946524153786 ], [ -81.966089021643882, 28.834955489957018 ], [ -81.966057470811592, 28.834967982775165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966424497086237, 28.835055004222493 ], [ -81.966397711050277, 28.835023357912064 ], [ -81.966365525232632, 28.834995888075838 ], [ -81.966328767117901, 28.834973300949169 ], [ -81.966288381740185, 28.834956177234989 ], [ -81.966245407386822, 28.834944957174653 ], [ -81.966200948905069, 28.834939929229623 ], [ -81.966156149297433, 28.83494122266551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966169774940411, 28.835431454349685 ], [ -81.966210195030769, 28.835431159748207 ], [ -81.966250144340023, 28.835425735433326 ], [ -81.966288787633786, 28.835415294813146 ], [ -81.966325316983585, 28.835400056173377 ], [ -81.966358968658724, 28.835380338113506 ], [ -81.966389039094153, 28.835356552885568 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966462223749403, 28.835139421819857 ], [ -81.966453638806783, 28.835109982847801 ], [ -81.966440999014921, 28.835081699912553 ], [ -81.966424497086237, 28.835055004222493 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kristine Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97163425458136, 28.825959863274754 ], [ -81.971635553525786, 28.825960940905958 ], [ -81.971668060649606, 28.82605262325567 ], [ -81.971760426293429, 28.826147754190156 ], [ -81.971912642850214, 28.826274986403259 ], [ -81.972013417193338, 28.826358470113007 ], [ -81.972032873327549, 28.826380282069668 ], [ -81.972057050867349, 28.826410236538912 ], [ -81.972080410695497, 28.826440418215487 ], [ -81.972101745109725, 28.826484721502855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972242689506118, 28.826310065523398 ], [ -81.972205822993345, 28.826331615985406 ], [ -81.972173232968558, 28.826357974325191 ], [ -81.972145719975728, 28.826388493077211 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972145719975728, 28.826388493077211 ], [ -81.972125994723029, 28.826418651304273 ], [ -81.97211124023724, 28.826450937947016 ], [ -81.972101745109725, 28.826484721502855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016866154723601, 28.843447197092821 ], [ -82.016875817126987, 28.843411586410706 ], [ -82.016879363358598, 28.843375107539966 ], [ -82.016878147350326, 28.843358322078547 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016790334635076, 28.843552404258048 ], [ -82.016822304721174, 28.843521352077854 ], [ -82.016847835253145, 28.843485928985885 ], [ -82.016866154723601, 28.843447197092821 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026641315675576, 28.844685090611893 ], [ -82.02665237241024, 28.844591014950318 ], [ -82.026693965100193, 28.844368696753023 ], [ -82.026763232377846, 28.84412497680599 ], [ -82.026863819267845, 28.84387208872813 ], [ -82.027216511928103, 28.843094338336332 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bracci Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977515559370843, 28.853791038866675 ], [ -81.97747522737609, 28.853705660482412 ], [ -81.977425139484566, 28.853591631347605 ], [ -81.977401273825464, 28.853543430689029 ], [ -81.977403882116704, 28.853520512575404 ], [ -81.977418653581395, 28.853494799365901 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bracci Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977155585543656, 28.852964465435363 ], [ -81.977102479690174, 28.852939542818159 ], [ -81.976973674120785, 28.852692573305255 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ohara Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978344389000128, 28.852130081817936 ], [ -81.978340445755805, 28.852103151874115 ], [ -81.978336314452989, 28.852088359712653 ], [ -81.978328737025521, 28.852075647709942 ], [ -81.978242194721318, 28.852004815334062 ], [ -81.978070409535647, 28.851875067374952 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.105796200911598, 28.748846022669081 ], [ -82.105733918735396, 28.748959380051954 ], [ -82.105657199344989, 28.749083596307052 ], [ -82.105588150398233, 28.749194260921282 ], [ -82.105473064036815, 28.749374938884252 ], [ -82.10538099260458, 28.749517225017538 ], [ -82.105263338006651, 28.749691133757324 ], [ -82.105148223429296, 28.749844722853904 ], [ -82.105045903843219, 28.749984759947473 ], [ -82.10492822497875, 28.750136093406098 ], [ -82.104802863823735, 28.750291947782806 ], [ -82.104749137536587, 28.750357452166195 ], [ -82.104270695143484, 28.750924417991932 ], [ -82.104007162688134, 28.75123613605885 ], [ -82.103198633560439, 28.752173555585333 ], [ -82.102170049134557, 28.753375246048275 ], [ -82.101392190955778, 28.754276514571622 ], [ -82.101347891864364, 28.754331252248239 ], [ -82.100884888888331, 28.754875714088463 ], [ -82.100349654831518, 28.755497349374096 ], [ -82.099800594270874, 28.756134234550984 ], [ -82.099794104481347, 28.756141827780741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100430147117976, 28.754318016652601 ], [ -82.100150002392667, 28.754322732464551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.1010700813097, 28.753615966541165 ], [ -82.101123394841537, 28.753543010809391 ], [ -82.10123941462605, 28.753390131837357 ], [ -82.101601348557693, 28.752933013399023 ], [ -82.101798781737386, 28.752698330576713 ], [ -82.10201093027608, 28.752443007687447 ], [ -82.102105311634162, 28.752327578557026 ], [ -82.102209215445356, 28.752197626652105 ], [ -82.102322624314567, 28.752036346313229 ], [ -82.10237932024225, 28.75194548737587 ], [ -82.10247972763247, 28.751788035266973 ], [ -82.102576652004245, 28.751612251525497 ], [ -82.102659710136635, 28.751442587738964 ], [ -82.102746224063921, 28.75126070031434 ], [ -82.102813681394508, 28.751094105230536 ], [ -82.102879383641266, 28.750907648731705 ], [ -82.102950252777248, 28.750686045757714 ], [ -82.103012440923109, 28.750450697988242 ], [ -82.103071087201513, 28.75014201343631 ], [ -82.103100618367435, 28.749951525272749 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103100618367435, 28.749951525272749 ], [ -82.103127943964395, 28.749775266736698 ], [ -82.103139418019211, 28.749715142676234 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hummingbird Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043986746378778, 28.79640057412481 ], [ -82.043796068643474, 28.795924701324221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026611593985223, 28.846085624169032 ], [ -82.026638472247171, 28.846053382745275 ], [ -82.026659018218425, 28.846017713428733 ], [ -82.026672681711034, 28.845979571397702 ], [ -82.026679096842344, 28.845939978045511 ], [ -82.026678091831982, 28.845899993628773 ], [ -82.02666969360115, 28.845860688875128 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026402064773478, 28.846169774506027 ], [ -82.026426601760008, 28.84616881348671 ], [ -82.026450946211398, 28.846165946625003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026164692146764, 28.846052160633526 ], [ -82.026192645888798, 28.846085854362673 ], [ -82.026226701884553, 28.846114870559809 ], [ -82.026265867501976, 28.846138363484286 ], [ -82.02630900117542, 28.846155648382858 ], [ -82.02635484567935, 28.846166221448669 ], [ -82.026402064773478, 28.846169774506027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026207330829351, 28.845751150524073 ], [ -82.026177681631552, 28.845781416757216 ], [ -82.026154031841386, 28.845815533045258 ], [ -82.026137013964686, 28.845852586968068 ], [ -82.026127083142256, 28.845891587539221 ], [ -82.026124504976664, 28.845931491709141 ], [ -82.026129348428, 28.845971232260837 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026584660426494, 28.84574133735547 ], [ -82.026547542408721, 28.845717257187779 ], [ -82.026506409424599, 28.845698918465352 ], [ -82.02646239622679, 28.845686827105411 ], [ -82.02641671702402, 28.845681316676686 ], [ -82.026370631984733, 28.845682539197366 ], [ -82.026325412473099, 28.845690460941338 ], [ -82.026282305976153, 28.84570486336866 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brownwood Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02763130951864, 28.8461260552798 ], [ -82.027653534503273, 28.846124071181702 ], [ -82.027717231308785, 28.846114244058029 ], [ -82.027806476245274, 28.846101060608838 ], [ -82.02788954294634, 28.846089737998511 ], [ -82.02797663076386, 28.846081171970905 ], [ -82.028056812469984, 28.846073487036072 ], [ -82.028115347471982, 28.846064921292548 ], [ -82.028166512679221, 28.846055475471488 ], [ -82.02822813586107, 28.846040651558639 ], [ -82.028309512528892, 28.846017809294977 ], [ -82.028388034891805, 28.845990684321887 ], [ -82.028453707647998, 28.845966414136338 ], [ -82.028539073267794, 28.845933712318864 ], [ -82.028630508704126, 28.845881301926827 ], [ -82.028700876820892, 28.845821878613883 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026450946211398, 28.846165946625003 ], [ -82.026496368474071, 28.846155220482871 ], [ -82.02653908234609, 28.846137897377357 ], [ -82.026577861862947, 28.846114474513215 ], [ -82.026611593985223, 28.846085624169032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02666969360115, 28.845860688875128 ], [ -82.026656136007077, 28.845827046280263 ], [ -82.026637156842597, 28.845795501367203 ], [ -82.026613161008015, 28.845766727105367 ], [ -82.026584660426494, 28.84574133735547 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026282305976153, 28.84570486336866 ], [ -82.026242635622495, 28.845725266168667 ], [ -82.026207330829351, 28.845751150524073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brownwood Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024956853318571, 28.844863532744881 ], [ -82.025038410960249, 28.84489638997135 ], [ -82.025074750400535, 28.844915481622362 ], [ -82.025108920763344, 28.844936484740295 ], [ -82.025141463153318, 28.844959397424159 ], [ -82.025171296265512, 28.844988040235329 ], [ -82.025192452592478, 28.84501382069563 ], [ -82.025212524437393, 28.845042943491382 ], [ -82.025233683281797, 28.845074929103557 ], [ -82.025258096728464, 28.84511885253178 ], [ -82.025276002127526, 28.845160866056645 ], [ -82.025293368812001, 28.845221502372265 ], [ -82.025305854107145, 28.845268450690007 ], [ -82.025328646124848, 28.845328608690494 ], [ -82.02536119801627, 28.845390673280082 ], [ -82.02541219085991, 28.845462284491621 ], [ -82.025455588327205, 28.845514798867427 ], [ -82.025501153223431, 28.845562537826805 ], [ -82.025552142103635, 28.845608364687131 ], [ -82.025609637878574, 28.845655146770824 ], [ -82.025653027948607, 28.84568474160767 ], [ -82.025708350790865, 28.845717199942698 ], [ -82.025754996095756, 28.845743929321301 ], [ -82.025818995748793, 28.845774476719246 ], [ -82.025884079610677, 28.845808841540851 ], [ -82.025966519999031, 28.845843204885714 ], [ -82.025999061691451, 28.845861343257855 ], [ -82.026043537573145, 28.845888072040363 ], [ -82.026077165990699, 28.84591193892992 ], [ -82.026101034423945, 28.845937717830857 ], [ -82.026129348428, 28.845971232260837 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026129348428, 28.845971232260837 ], [ -82.026137450655099, 28.84599938068828 ], [ -82.026149287594947, 28.846026484354532 ], [ -82.026164692146764, 28.846052160633526 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Nook Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024956853318571, 28.844863532744881 ], [ -82.024962331472665, 28.844852557912635 ], [ -82.024994460266853, 28.844790272254478 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mapleton Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026839223412168, 28.844722813924829 ], [ -82.026862352711561, 28.844727691820083 ], [ -82.026986005107503, 28.844760136368347 ], [ -82.027096646779441, 28.844809772280517 ], [ -82.027168244985702, 28.844863234326187 ], [ -82.027224653588391, 28.844901421473832 ], [ -82.027300587485286, 28.84494915295215 ], [ -82.027380857626, 28.844981605683341 ], [ -82.02747848002555, 28.845017874384947 ], [ -82.027662880408428, 28.845086594281462 ], [ -82.028090249464498, 28.845216379806523 ], [ -82.028211734293308, 28.845248821862359 ], [ -82.028378773572427, 28.845281257176712 ], [ -82.02852194483286, 28.845298415753643 ], [ -82.028639084611441, 28.845307941551745 ], [ -82.028723759853619, 28.845309056383002 ], [ -82.028834128970487, 28.845365025107821 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Traverse Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026839223412168, 28.844722813924829 ], [ -82.026873428866821, 28.844650399933883 ], [ -82.026887734100001, 28.844605132970909 ], [ -82.026920847483026, 28.844437378804137 ], [ -82.026949016789416, 28.844317050799759 ], [ -82.026970689081139, 28.844242561206823 ], [ -82.026986546322973, 28.844203463898324 ], [ -82.02701188410704, 28.844160427075014 ], [ -82.027025578254253, 28.844146732809634 ], [ -82.027060679899861, 28.844121837644433 ], [ -82.027089344222944, 28.844115207309017 ], [ -82.027126839354111, 28.844112658173675 ], [ -82.027186309193766, 28.844124928704399 ], [ -82.027426207752043, 28.844198543869702 ], [ -82.027627958843595, 28.844259620560916 ], [ -82.027732084228191, 28.844280609035774 ], [ -82.027840551236892, 28.844307324396301 ], [ -82.028070505090511, 28.844377943853384 ], [ -82.028196337633204, 28.844446674897448 ], [ -82.028280947730678, 28.844490584596549 ], [ -82.028395926244457, 28.844530668549716 ], [ -82.02852825599291, 28.844566928462545 ], [ -82.029096211681178, 28.844753795008945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brownwood Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029096211681178, 28.844753795008945 ], [ -82.02909446956447, 28.844757799809969 ], [ -82.029005585062038, 28.844956446730624 ], [ -82.028943585102084, 28.845067594053045 ], [ -82.028910272633851, 28.845136597658321 ], [ -82.028836508542724, 28.845281743572031 ], [ -82.028834128970487, 28.845365025107821 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026584660426494, 28.84574133735547 ], [ -82.026562515613719, 28.845698894422025 ], [ -82.026550358904487, 28.8456610820101 ], [ -82.026540371330483, 28.845629760370716 ], [ -82.026534723612642, 28.845597294677738 ], [ -82.02654251066059, 28.84550867410352 ], [ -82.026558976561802, 28.845430899387484 ], [ -82.026612112897965, 28.844940531865284 ], [ -82.026634189941007, 28.844745718832574 ], [ -82.026641315675576, 28.844685090611893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mapleton Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026641315675576, 28.844685090611893 ], [ -82.02670046713294, 28.844693548270758 ], [ -82.026839223412168, 28.844722813924829 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brownwood Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029485660777098, 28.843842795639578 ], [ -82.029374272545596, 28.84403253464604 ], [ -82.029231503281864, 28.844427523259753 ], [ -82.029096211681178, 28.844753795008945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027216511928103, 28.843094338336332 ], [ -82.027530090537709, 28.843196336218003 ], [ -82.028943203576731, 28.843663928820238 ], [ -82.029485660777098, 28.843842795639578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brownwood Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028834128970487, 28.845365025107821 ], [ -82.028788918088537, 28.84547923849583 ], [ -82.028729431315725, 28.845612487173678 ], [ -82.02860807841455, 28.845760012288356 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leland Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0349637986414, 28.84555036046401 ], [ -82.034896080230396, 28.845811611431085 ], [ -82.034911310018614, 28.845951029157774 ], [ -82.034989445259299, 28.846078971620678 ], [ -82.035080577945706, 28.846155343045989 ], [ -82.035150048577634, 28.846323396012568 ], [ -82.035126412871875, 28.847003320078123 ], [ -82.035025647986799, 28.847069537097386 ], [ -82.034874800799571, 28.847082005563909 ], [ -82.033410562239496, 28.847080142615162 ], [ -82.033122760170528, 28.847118283086768 ], [ -82.032997346759828, 28.84710637567062 ], [ -82.03240225005429, 28.846926276773814 ], [ -82.031897382073851, 28.846732755163508 ], [ -82.031731794745539, 28.846690331752505 ], [ -82.031397885177384, 28.846671171900041 ], [ -82.031170716160716, 28.846598641027956 ], [ -82.031065343059268, 28.846561691907645 ], [ -82.03097091771312, 28.846526109948488 ], [ -82.030918930098196, 28.84650917539971 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020335694590713, 28.847716455714309 ], [ -82.02027350430977, 28.847826886233456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02051928051155, 28.847925012189446 ], [ -82.020708538931132, 28.848008007205379 ], [ -82.022101009789509, 28.848558278429909 ], [ -82.022744292451108, 28.848817597616389 ], [ -82.023034936273248, 28.848933882253839 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023226249294154, 28.84887132516495 ], [ -82.023347403662143, 28.848641329723627 ], [ -82.023404647395537, 28.84852672727957 ], [ -82.023508736153076, 28.848361694248773 ], [ -82.02361153038882, 28.848229895980289 ], [ -82.023722136788223, 28.848107262821873 ], [ -82.023844457207773, 28.847990357202782 ], [ -82.023929041740828, 28.847915855518064 ], [ -82.024026642232371, 28.847843645190441 ], [ -82.024169794911856, 28.84775309292203 ], [ -82.024315549731867, 28.847672851595696 ], [ -82.024401549633694, 28.847632483591919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Torch Lake Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016790334635076, 28.843552404258048 ], [ -82.016856610563181, 28.843537515502099 ], [ -82.016907583747013, 28.843527004738469 ], [ -82.016969405388735, 28.843522222294133 ], [ -82.017036649912143, 28.843527943816717 ], [ -82.017105848879183, 28.843540922318898 ], [ -82.017157910944974, 28.843553141329853 ], [ -82.017215180059324, 28.843565356074286 ], [ -82.017268975382677, 28.843572989308846 ], [ -82.017334920316102, 28.843577564913009 ], [ -82.017449452567604, 28.843583662068124 ], [ -82.017614311266584, 28.843585170013341 ], [ -82.017768754120453, 28.843575983134503 ], [ -82.017985670117469, 28.843560675867607 ], [ -82.018185231750763, 28.843549955120551 ], [ -82.018284145967371, 28.843549942268247 ], [ -82.018436856055132, 28.843548394678844 ], [ -82.018556595110098, 28.843552963506994 ], [ -82.018775251078921, 28.84357279506353 ], [ -82.018882992762769, 28.843588902097938 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016568002599982, 28.843124300597449 ], [ -82.016523274120374, 28.843130932387737 ], [ -82.016480352299212, 28.843143844005244 ], [ -82.016444731748479, 28.843160637382415 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Torch Lake Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015730907707109, 28.842778938433899 ], [ -82.015703236879105, 28.8427350686603 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Torch Lake Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015942176192056, 28.843022377800125 ], [ -82.016014244565682, 28.84307264796626 ], [ -82.016183021573184, 28.843184930680835 ], [ -82.016241704592957, 28.843230983073521 ], [ -82.016273705179131, 28.843265516970312 ], [ -82.016293665721037, 28.843288815828284 ], [ -82.016317029531791, 28.843324871098478 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016317029531791, 28.843324871098478 ], [ -82.016312382835551, 28.843363776384493 ], [ -82.016314992919277, 28.843403645396315 ], [ -82.016324890252903, 28.843442619378663 ], [ -82.016341814387559, 28.843479671535391 ], [ -82.01636532144056, 28.843513826522084 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028486363398486, 28.865477668321859 ], [ -82.028681776229746, 28.865454656115016 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99872755855678, 28.8608358458429 ], [ -81.998818276579698, 28.860816273984145 ], [ -81.998866224104361, 28.860810257884243 ], [ -81.998903117171196, 28.860808996809407 ], [ -81.998938904237605, 28.860811214097925 ], [ -81.998977955800285, 28.860817803070063 ], [ -81.999040437224224, 28.860833083221767 ], [ -81.999129822115634, 28.86086287801912 ], [ -81.999206189891368, 28.860887324708507 ], [ -81.999294706727213, 28.860916355138496 ], [ -81.999400372511118, 28.860948070864662 ], [ -81.999420343139704, 28.860954895102338 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998623799455061, 28.860869999634257 ], [ -81.998664105837747, 28.860861858592678 ], [ -81.99870259193699, 28.860848538292441 ], [ -81.99872755855678, 28.8608358458429 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000084890670621, 28.861120043459959 ], [ -82.000051552358173, 28.861088916517879 ], [ -81.999996010988198, 28.861062942528601 ], [ -81.999905758619292, 28.861017868682776 ], [ -81.99983546568852, 28.860984254992179 ], [ -81.999765171740663, 28.860956751669878 ], [ -81.999591609397555, 28.860897927132278 ], [ -81.999458645455192, 28.860855599416471 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998857632782745, 28.860598853297748 ], [ -81.998848604349689, 28.860559899827329 ], [ -81.998832213508607, 28.860522278085565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997072078702828, 28.860157885309956 ], [ -81.997117874437961, 28.860222812567212 ], [ -81.997689213909624, 28.860397270337049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 86th Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95856932269399, 28.955559438349692 ], [ -81.958421500136097, 28.955448943956096 ], [ -81.958045369940521, 28.955184476942559 ], [ -81.95719438893768, 28.954338508838685 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 136th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958860772617925, 28.955329712730666 ], [ -81.95856932269399, 28.955559438349692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 135th Crossing", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957515313659087, 28.95402571158845 ], [ -81.95719438893768, 28.954338508838685 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037244360994976, 28.870559370781383 ], [ -82.037132344853774, 28.87070359719301 ], [ -82.037077218576087, 28.870805937707797 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kristine Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972242689506118, 28.826310065523398 ], [ -81.972204576574754, 28.82630775043522 ], [ -81.972170744180602, 28.826303159698234 ], [ -81.972129972723664, 28.826295511392512 ], [ -81.97209874374731, 28.826287865057669 ], [ -81.972064910758846, 28.82627792721166 ], [ -81.972036286848535, 28.826264933419601 ], [ -81.972010265117092, 28.826253468675151 ], [ -81.97196949804831, 28.826225957796456 ], [ -81.971913989368616, 28.826180108906254 ], [ -81.97183593121828, 28.826105224378914 ], [ -81.971741394403622, 28.826017350309126 ], [ -81.97163425458136, 28.825959863274754 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Patricia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00986184006878, 28.793837233718154 ], [ -82.011473372189826, 28.793515041674112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Richey Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009845185571876, 28.79456493053927 ], [ -82.011442085496753, 28.794245666966173 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sanborn Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011442085496753, 28.794245666966173 ], [ -82.011526941214512, 28.793895211757125 ], [ -82.011534818265432, 28.793851084846807 ], [ -82.011537232995821, 28.79380646637345 ], [ -82.011534157101309, 28.793761879462014 ], [ -82.01152562665186, 28.793717846866837 ], [ -82.011473372189826, 28.793515041674112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Richey Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009277026649713, 28.794628669777243 ], [ -82.009428225311083, 28.794637729356943 ], [ -82.009468633218901, 28.79463755645909 ], [ -82.009508585366902, 28.794632222799144 ], [ -82.009845185571876, 28.79456493053927 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Patricia Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009455875413181, 28.793918394525065 ], [ -82.00986184006878, 28.793837233718154 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kurtz Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009845185571876, 28.79456493053927 ], [ -82.009853598038049, 28.79443615545798 ], [ -82.009860087109146, 28.794276679298139 ], [ -82.009863319615789, 28.794046536892399 ], [ -82.00986184006878, 28.793837233718154 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sanborn Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011357347983875, 28.794595636651017 ], [ -82.011442085496753, 28.794245666966173 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sanborn Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011473372189826, 28.793515041674112 ], [ -82.011381633015347, 28.793159001496001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009277026649713, 28.794628669777243 ], [ -82.009285527777749, 28.79451043193837 ], [ -82.009297651221459, 28.794275130469178 ], [ -82.009300997500304, 28.794043377438545 ], [ -82.009299246551009, 28.793845511093082 ], [ -82.009294031875129, 28.79371411115654 ], [ -82.009264527332874, 28.79349485630409 ], [ -82.009204997875003, 28.793234861156094 ], [ -82.00916129073201, 28.793103714433027 ], [ -82.009138555322664, 28.793044938245778 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Castro Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008695413347013, 28.793834703712573 ], [ -82.008695406173715, 28.793743918370367 ], [ -82.008690194612896, 28.793655300687192 ], [ -82.008665902091892, 28.793514733428523 ], [ -82.00864161142556, 28.793423059811794 ], [ -82.00858220250818, 28.793204243249129 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cannon Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00858220250818, 28.793204243249129 ], [ -82.008681486159659, 28.793178590144453 ], [ -82.0087300498041, 28.793164836049886 ], [ -82.009012122393131, 28.7930815690776 ], [ -82.009138555322664, 28.793044938245778 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cannon Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00674984924521, 28.794051717632843 ], [ -82.00671287121088, 28.794034325363135 ], [ -82.006669506601028, 28.794000713378111 ], [ -82.006636547731532, 28.793960988660366 ], [ -82.0066139971876, 28.793924319622093 ], [ -82.006600116175562, 28.793864730549583 ], [ -82.006577563039315, 28.793748610115799 ], [ -82.006574089413164, 28.793693605247661 ], [ -82.006577557016556, 28.793646239066774 ], [ -82.006594896585028, 28.793592761826243 ], [ -82.006631319998561, 28.7935362267241 ], [ -82.006676414371711, 28.793499554760071 ], [ -82.006731916039683, 28.793467466076255 ], [ -82.006797827886771, 28.793453712816753 ], [ -82.006872411667544, 28.793441485850067 ], [ -82.007307770613011, 28.793381876829208 ], [ -82.007658137407503, 28.793334493478635 ], [ -82.008065742006238, 28.793279466268817 ], [ -82.008447330894512, 28.793227496340446 ], [ -82.008506302995741, 28.793218325488805 ], [ -82.00858220250818, 28.793204243249129 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cannon Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008695413347013, 28.793834703712573 ], [ -82.008067524972418, 28.793919665550121 ], [ -82.007661650014796, 28.793974691774217 ], [ -82.007281794144802, 28.794025131782604 ], [ -82.007032023779317, 28.7940602850171 ], [ -82.006901938098665, 28.794078626857566 ], [ -82.006844697870022, 28.794077100910233 ], [ -82.006794394910187, 28.794067935647597 ], [ -82.00674984924521, 28.794051717632843 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Castro Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008660158933964, 28.794259165621447 ], [ -82.008664671448059, 28.794081675846314 ], [ -82.00869541462464, 28.793850873165333 ], [ -82.008695413347013, 28.793834703712573 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carla Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006793680413494, 28.794815959607973 ], [ -82.006780214506847, 28.794747287859906 ], [ -82.006737919164323, 28.794496138080437 ], [ -82.006697795260052, 28.794273636627068 ], [ -82.006691287770991, 28.79422302435928 ], [ -82.006691285882781, 28.794191511070977 ], [ -82.006697787362342, 28.794159041949325 ], [ -82.006706459663917, 28.794131347773867 ], [ -82.006722718712922, 28.794096969831681 ], [ -82.00674984924521, 28.794051717632843 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tatman Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007903470416778, 28.794659005317516 ], [ -82.007840975389982, 28.794300866064106 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Schulz Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006793680413494, 28.794815959607973 ], [ -82.006865859737701, 28.794798851238379 ], [ -82.006930904152696, 28.79479120932092 ], [ -82.007040396775849, 28.794775924539874 ], [ -82.007355860615917, 28.794733892494378 ], [ -82.00768867093133, 28.794688037533025 ], [ -82.007903470416778, 28.794659005317516 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Schulz Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00590932015362, 28.795859373899333 ], [ -82.005872239696785, 28.795773133122694 ], [ -82.005856626872514, 28.795736463707442 ], [ -82.005853156169607, 28.795712016568686 ], [ -82.005856624371347, 28.795688334331729 ], [ -82.005880900421147, 28.795556168926435 ], [ -82.005903225571984, 28.795433934445317 ], [ -82.00594766178348, 28.795192329415499 ], [ -82.00595741567264, 28.795137896104894 ], [ -82.00597692737685, 28.795103517230508 ], [ -82.006005111467601, 28.795076777904431 ], [ -82.00604522224549, 28.795057676190421 ], [ -82.006180731767699, 28.795014698203151 ], [ -82.006492941787371, 28.794909642634941 ], [ -82.006650130360157, 28.794858067826851 ], [ -82.006716258673308, 28.79483514619562 ], [ -82.006793680413494, 28.794815959607973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Locklin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005390552719945, 28.796031875057778 ], [ -82.00590932015362, 28.795859373899333 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Locklin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00590932015362, 28.795859373899333 ], [ -82.00642252173995, 28.795687929391157 ], [ -82.006716521343449, 28.795591658087186 ], [ -82.006828396060044, 28.795553837204288 ], [ -82.006897343745692, 28.795530915360271 ], [ -82.00694937799571, 28.795514869876946 ], [ -82.007001413470306, 28.795502262186108 ], [ -82.007049547310203, 28.795490800593264 ], [ -82.007121096427525, 28.795479337889962 ], [ -82.007347453165679, 28.795449532735933 ], [ -82.00771170440116, 28.795400239281513 ], [ -82.008025304463388, 28.795357210517327 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tatman Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008080707308267, 28.79567470171229 ], [ -82.008025304463388, 28.795357210517327 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tatman Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008025304463388, 28.795357210517327 ], [ -82.007903470416778, 28.794659005317516 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laine Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007549046668615, 28.796671080386744 ], [ -82.007505033062898, 28.796104019529558 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laine Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007596870610044, 28.797287214171995 ], [ -82.007549046668615, 28.796671080386744 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Miller Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007596870610044, 28.797287214171995 ], [ -82.007910273190234, 28.797182069573473 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Miller Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006598132460283, 28.797619324474223 ], [ -82.007596870610044, 28.797287214171995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anders Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006598132460283, 28.797619324474223 ], [ -82.006496347367332, 28.797021135133122 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Weber Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006496347367332, 28.797021135133122 ], [ -82.007329163098973, 28.796744731653245 ], [ -82.007549046668615, 28.796671080386744 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Weber Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006175131211663, 28.797127946946219 ], [ -82.006496347367332, 28.797021135133122 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anders Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006646788127, 28.797907891909986 ], [ -82.006598132460283, 28.797619324474223 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Biller Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008192633575504, 28.795991801793253 ], [ -82.008234137861336, 28.795978777335417 ], [ -82.008309642864447, 28.79594947235136 ], [ -82.00836032136452, 28.795926311663152 ], [ -82.008404496345577, 28.795903629548011 ], [ -82.008565858139633, 28.795819472467858 ], [ -82.008685808630077, 28.79575965480295 ], [ -82.008759795351224, 28.795731240238222 ], [ -82.008835138879732, 28.795710593564532 ], [ -82.008874978811335, 28.795702345853336 ], [ -82.008914547452591, 28.795696137373969 ], [ -82.009082036949863, 28.795671775587977 ], [ -82.009285990223688, 28.795641465968682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009285990223688, 28.795641465968682 ], [ -82.009272507411467, 28.795575118839796 ], [ -82.009248800926372, 28.795389704028374 ], [ -82.009238648955687, 28.795161054032864 ], [ -82.009240374524822, 28.795046460169083 ], [ -82.009274267282763, 28.794667043521816 ], [ -82.009277026649713, 28.794628669777243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Biller Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007505033062898, 28.796104019529558 ], [ -82.00776841527636, 28.796065894307286 ], [ -82.007970054886869, 28.79603838125789 ], [ -82.008038624532702, 28.79602779347054 ], [ -82.008083232990458, 28.796020040204905 ], [ -82.008129686067278, 28.796009405739269 ], [ -82.008167087063185, 28.795999138992933 ], [ -82.008192633575504, 28.795991801793253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Biller Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008192633575504, 28.795991801793253 ], [ -82.008195275920059, 28.796027068549648 ], [ -82.008218877949261, 28.796332173538502 ], [ -82.008262555169622, 28.796895829729515 ], [ -82.008290498610734, 28.797252978924149 ], [ -82.008311115372351, 28.797519647288528 ], [ -82.00831165876788, 28.797539701158691 ], [ -82.008310035614926, 28.797559278728198 ], [ -82.008306512676256, 28.797584106960983 ], [ -82.008300280924374, 28.797603444771156 ], [ -82.008294861090008, 28.797617531978247 ], [ -82.00828781583327, 28.797634720524027 ], [ -82.008276705998114, 28.797652865746016 ], [ -82.00826830418319, 28.797665996665547 ], [ -82.008259361380524, 28.797677456531293 ], [ -82.008243642952564, 28.797695601102646 ], [ -82.008223588378655, 28.797713269489467 ], [ -82.008205159169435, 28.797727117392185 ], [ -82.008187001250761, 28.797738816870975 ], [ -82.008167216577164, 28.797749560886928 ], [ -82.008147324146961, 28.797757662934252 ], [ -82.008041192047401, 28.797793972316789 ], [ -82.007779113016994, 28.797880647837882 ], [ -82.007203460202149, 28.798071904395432 ], [ -82.006666453740365, 28.798250488353407 ], [ -82.006363285016477, 28.798351742471542 ], [ -82.006336995155038, 28.798359382531288 ], [ -82.006309893872768, 28.798364875114924 ], [ -82.006286855053972, 28.798367501783112 ], [ -82.006260565807594, 28.798367980172472 ], [ -82.006233733555305, 28.798366787495546 ], [ -82.006211238380672, 28.798364162669358 ], [ -82.006180231544334, 28.79835746333497 ], [ -82.006156760891699, 28.798349602418259 ], [ -82.006137787210747, 28.798341963288625 ], [ -82.006123151751027, 28.798335040421545 ], [ -82.006106618031012, 28.798325969221072 ], [ -82.006092794792124, 28.79831713612289 ], [ -82.006078971490979, 28.798307109263586 ], [ -82.00606379386852, 28.798294934049256 ], [ -82.006049970406139, 28.798281805036048 ], [ -82.006037502140742, 28.798267958630245 ], [ -82.00602151063508, 28.798245517831447 ], [ -82.006007686648914, 28.798222361413128 ], [ -82.005998470377165, 28.79820159143296 ], [ -82.005989475824236, 28.798170089336626 ], [ -82.005986813731042, 28.798155037058841 ], [ -82.005969895224567, 28.798055708420435 ], [ -82.005955092597901, 28.7979666750856 ], [ -82.005885417942878, 28.79755986913025 ], [ -82.00585857773433, 28.797401587334491 ], [ -82.005833364760974, 28.797252616434712 ], [ -82.005814658510303, 28.797142798443229 ], [ -82.005762441872037, 28.796836037467244 ], [ -82.005759242938538, 28.796818085168088 ], [ -82.00575664019641, 28.796800513622937 ], [ -82.005756368735618, 28.796780269341486 ], [ -82.005757180039282, 28.796760580844953 ], [ -82.005759348828704, 28.796745300999223 ], [ -82.005764604524543, 28.796720679394834 ], [ -82.005775226667026, 28.796693957910559 ], [ -82.005786285409371, 28.796671785870764 ], [ -82.005799725837448, 28.796651237905056 ], [ -82.005813818868504, 28.796632615449447 ], [ -82.005829645213538, 28.796616397591656 ], [ -82.005848291549157, 28.796599589513974 ], [ -82.005872791014767, 28.796583178231717 ], [ -82.005899459036371, 28.796567199070992 ], [ -82.005948025391689, 28.796548781925168 ], [ -82.00607716240971, 28.796506423277393 ], [ -82.006255037751643, 28.796447163128423 ], [ -82.006827431148238, 28.796256801308445 ], [ -82.007019041809855, 28.796193288742629 ], [ -82.007069614695737, 28.796178230411638 ], [ -82.00709926375562, 28.796169889856365 ], [ -82.007141814293405, 28.796159860462105 ], [ -82.007172438607384, 28.796152934671642 ], [ -82.007224204174918, 28.796143860365842 ], [ -82.007285455140533, 28.796134784682828 ], [ -82.007339659757989, 28.796127382201519 ], [ -82.007505033062898, 28.796104019529558 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Head Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010239370489231, 28.796700683754526 ], [ -82.010191042945451, 28.796570498722815 ], [ -82.010012498296092, 28.796122297932644 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clymer Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009494866094101, 28.796282194115417 ], [ -82.010012498296092, 28.796122297932644 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009494866094101, 28.796282194115417 ], [ -82.009465853190477, 28.796217982883562 ], [ -82.00944877512724, 28.79617978636653 ], [ -82.009416787528366, 28.796102914961146 ], [ -82.009375853168933, 28.795987607389858 ], [ -82.009356822005643, 28.795928288740487 ], [ -82.009337357900392, 28.795860839373329 ], [ -82.009326241412168, 28.795820494054617 ], [ -82.009308673487183, 28.795754110194114 ], [ -82.009285990223688, 28.795641465968682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clymer Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010012498296092, 28.796122297932644 ], [ -82.010780283792016, 28.795886804687211 ], [ -82.010910369611665, 28.795844013651372 ], [ -82.011004034511771, 28.795827199225851 ], [ -82.011080354160683, 28.795819553555749 ], [ -82.011172286530979, 28.795819546528072 ], [ -82.011229524935544, 28.795813430755565 ], [ -82.011305843057386, 28.795801201208565 ], [ -82.011375224020867, 28.795785917832493 ], [ -82.011448071223796, 28.79575993632562 ], [ -82.011533061484684, 28.795720203468523 ], [ -82.011598972277099, 28.79569880708306 ], [ -82.011701307992169, 28.795672824883493 ], [ -82.011788033390133, 28.795662121839516 ], [ -82.01187649483316, 28.795659059383393 ], [ -82.012256255585712, 28.79566781623809 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sheehan Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010239370489231, 28.796700683754526 ], [ -82.010464664944678, 28.796630924454213 ], [ -82.010598223474091, 28.796589661991341 ], [ -82.010721373395171, 28.796557565854961 ], [ -82.010842790655758, 28.796531581099835 ], [ -82.010980909746436, 28.796504948019322 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sheehan Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010980909746436, 28.796504948019322 ], [ -82.01137355571997, 28.79642611526311 ], [ -82.011510584379238, 28.796397072550977 ], [ -82.011632001051808, 28.796378728773718 ], [ -82.011744745748842, 28.796361912303595 ], [ -82.011857491410524, 28.796354264139989 ], [ -82.011958095841933, 28.796349673019389 ], [ -82.012225263275297, 28.796350125300258 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sheehan Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012225263275297, 28.796350125300258 ], [ -82.012612041534013, 28.79635237487976 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Van Winkle Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012219748359016, 28.797051895923033 ], [ -82.012225263275297, 28.796350125300258 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Snodgrass Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012219748359016, 28.797051895923033 ], [ -82.012578430635386, 28.797048790033966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Snodgrass Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011063739496223, 28.797161679280258 ], [ -82.011261896650993, 28.797145264540415 ], [ -82.011376810618145, 28.797136661060314 ], [ -82.011436436508831, 28.797130926691338 ], [ -82.011500396843346, 28.797119462266771 ], [ -82.011552433509351, 28.797106088565773 ], [ -82.01170528722146, 28.797067878703782 ], [ -82.011755155697927, 28.797058324589528 ], [ -82.011811529209169, 28.797052591221082 ], [ -82.011870070449191, 28.797048765140545 ], [ -82.011961135351953, 28.797049714096541 ], [ -82.012219748359016, 28.797051895923033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mccray Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011063739496223, 28.797161679280258 ], [ -82.011012504873932, 28.796679268860476 ], [ -82.011004906355637, 28.79659905202157 ], [ -82.010995146430702, 28.796558944953979 ], [ -82.010980909746436, 28.796504948019322 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mccray Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011094277490145, 28.797453344127767 ], [ -82.011063739496223, 28.797161679280258 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Head Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010505039312818, 28.79781989002943 ], [ -82.010460886942653, 28.797708103874935 ], [ -82.010441546228833, 28.797645718456501 ], [ -82.01040467339611, 28.797515848511761 ], [ -82.010378644053873, 28.797403165940491 ], [ -82.010365625505116, 28.797305762205003 ], [ -82.010352603901879, 28.797175889645249 ], [ -82.010324399405107, 28.797013551135375 ], [ -82.010304877899898, 28.79692187663052 ], [ -82.010276682009703, 28.79681683496645 ], [ -82.010239370489231, 28.796700683754526 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Head Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010505039312818, 28.79781989002943 ], [ -82.010882119219261, 28.797791503615507 ], [ -82.011176994562106, 28.797766653240792 ], [ -82.01121602250106, 28.797765694686685 ], [ -82.011260472033172, 28.797771420935852 ], [ -82.01129082874948, 28.797780013108724 ], [ -82.011335278262351, 28.797795289410303 ], [ -82.011371056069279, 28.797815340512589 ], [ -82.011405750195522, 28.797845895511891 ], [ -82.011428520301465, 28.79787167730511 ], [ -82.011451288973277, 28.797903189681989 ], [ -82.011462133307958, 28.797927062213677 ], [ -82.011478398341339, 28.797958574196777 ], [ -82.011505504187639, 28.797990085318659 ], [ -82.011527188843203, 28.798009183751081 ], [ -82.011553209928849, 28.798031144872581 ], [ -82.011722345540136, 28.798139040665234 ], [ -82.011970625448456, 28.798299452431365 ], [ -82.012025919256786, 28.798333825051674 ], [ -82.012068203044166, 28.798362470855437 ], [ -82.012093139209952, 28.798381566217248 ], [ -82.012121330643154, 28.798408303888792 ], [ -82.012144100450115, 28.798437905950003 ], [ -82.012159281561424, 28.798465596645649 ], [ -82.012172294468272, 28.798505703342716 ], [ -82.012178803473986, 28.798543901293236 ], [ -82.012176669563274, 28.798843756163588 ], [ -82.012174509653292, 28.798921107083835 ], [ -82.012163673891806, 28.798966945470486 ], [ -82.012147416192278, 28.799004189785556 ], [ -82.012119233187846, 28.799045255489943 ], [ -82.012119232974442, 28.799043344392135 ], [ -82.012087796826677, 28.799077725129461 ], [ -82.012043350510055, 28.799106377259442 ], [ -82.0120010716021, 28.799124525375536 ], [ -82.011956624478785, 28.799136943973465 ], [ -82.011911091592836, 28.799140767217629 ], [ -82.011782079191761, 28.799140777775161 ], [ -82.011709442656269, 28.799136963274059 ], [ -82.011654151395433, 28.799129328753946 ], [ -82.011598858710499, 28.799117872917968 ], [ -82.011527303856042, 28.799094005239926 ], [ -82.011466590570379, 28.799066316276591 ], [ -82.011405875591436, 28.79903194295504 ], [ -82.011332149363355, 28.798980381568807 ], [ -82.011242756634715, 28.798910256274969 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Head Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01146279115062, 28.798706467133041 ], [ -82.011242756634715, 28.798910256274969 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Head Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011242756634715, 28.798910256274969 ], [ -82.011192285396291, 28.798864843172268 ], [ -82.011150000471886, 28.798824739532069 ], [ -82.011108797751831, 28.798778904306584 ], [ -82.011074103456551, 28.798738799159846 ], [ -82.011031816346033, 28.79868627966145 ], [ -82.010978686833965, 28.79860797919094 ], [ -82.010897365258558, 28.798482885978331 ], [ -82.01080628501397, 28.798339650638646 ], [ -82.010728215648086, 28.798219333018007 ], [ -82.010677254241543, 28.798141985105339 ], [ -82.01063496701164, 28.798073231970889 ], [ -82.010594847383558, 28.798004479567489 ], [ -82.010552559062219, 28.797923311486084 ], [ -82.010505039312818, 28.79781989002943 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cipris Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00501130184432, 28.792045427800392 ], [ -82.005126923402514, 28.791849143894929 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cipris Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006167917065724, 28.791857340230706 ], [ -82.005847458348498, 28.791971364384569 ], [ -82.005770492734499, 28.791999061941183 ], [ -82.005721710852171, 28.792008613809813 ], [ -82.00567271038183, 28.79201014229703 ], [ -82.005624144848909, 28.792003842278973 ], [ -82.005456113921809, 28.791953425981252 ], [ -82.005309765821593, 28.791908739346514 ], [ -82.005178592022347, 28.79186825413699 ], [ -82.005139566642029, 28.791855841363699 ], [ -82.005126923402514, 28.791849143894929 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009138555322664, 28.793044938245778 ], [ -82.009107508943742, 28.792964677582461 ], [ -82.00898704941504, 28.792695000615112 ], [ -82.008863769344714, 28.792435268092699 ], [ -82.008817796417034, 28.792319912763865 ], [ -82.008791772725303, 28.792240461998141 ], [ -82.00873972169795, 28.792034196211006 ], [ -82.008719759307041, 28.791843207396191 ], [ -82.008718248727916, 28.791781888967009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Broyhill Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006162800906125, 28.917388221992276 ], [ -82.006461903777961, 28.917389239638091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Broyhill Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003879194775266, 28.917405486398909 ], [ -82.004012628008098, 28.917392075816277 ], [ -82.004094094842443, 28.917386573301791 ], [ -82.004284378631098, 28.917383818874942 ], [ -82.004336345316375, 28.917384847850411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Broyhill Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004336345316375, 28.917384847850411 ], [ -82.004601454053741, 28.917389309230167 ], [ -82.005561863186344, 28.917386526779708 ], [ -82.006162800906125, 28.917388221992276 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kendall Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004336345316375, 28.917384847850411 ], [ -82.00432364438376, 28.91730956146813 ], [ -82.004305668089984, 28.917232556355295 ], [ -82.004272258462024, 28.91715005126435 ], [ -82.004217942089994, 28.917028012599907 ], [ -82.004144869771139, 28.916841687568652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kendall Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004144869771139, 28.916841687568652 ], [ -82.004127285555228, 28.916796653499155 ], [ -82.004015354671637, 28.916526658524806 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Richland Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006162800906125, 28.917388221992276 ], [ -82.006159860180887, 28.917174050257024 ], [ -82.006156717959499, 28.916894903230347 ], [ -82.0061567145884, 28.916815149217882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Richland Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0061567145884, 28.916815149217882 ], [ -82.006153770044122, 28.916549753171584 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thornton Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004144869771139, 28.916841687568652 ], [ -82.004227115736114, 28.916812809149661 ], [ -82.004320694566843, 28.91680730526576 ], [ -82.004918505010096, 28.916804881724779 ], [ -82.005528623105164, 28.916810017226211 ], [ -82.006020937169865, 28.91681274746357 ], [ -82.0061567145884, 28.916815149217882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 27th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05774511221874, 28.87276464770131 ], [ -82.057750951307625, 28.873395033810301 ], [ -82.057734763825337, 28.874290527196337 ], [ -82.057736448219572, 28.874481537403121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 22nd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067625650429221, 28.607755671597573 ], [ -82.067686201108657, 28.607764734656318 ], [ -82.067831647831625, 28.607772303911329 ], [ -82.068220305940997, 28.607772109562344 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 472", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032940212140915, 28.909144130630676 ], [ -82.032926630082031, 28.909144142916375 ], [ -82.031317741079903, 28.909145551044947 ], [ -82.030533809672349, 28.909146416132018 ], [ -82.030296070770973, 28.909146467895035 ], [ -82.029593964859657, 28.909146849261486 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 472", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03560339525454, 28.909139793864991 ], [ -82.035269456013026, 28.909139880290279 ], [ -82.034690134203416, 28.909140028258005 ], [ -82.033828160863962, 28.909143235825699 ], [ -82.032940212140915, 28.909144130630676 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 472", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009274506765294, 28.909080622286332 ], [ -82.009027053101235, 28.909083179811848 ], [ -82.008749912280152, 28.909080349262844 ], [ -82.007837098226958, 28.909074014195944 ], [ -82.00738068758865, 28.909069892869855 ], [ -82.00687030203062, 28.909073929302419 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 472", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012224063728226, 28.909062969831865 ], [ -82.012223396161858, 28.909062969889593 ], [ -82.010991687295203, 28.909066109702582 ], [ -82.010527914012101, 28.909074177922722 ], [ -82.010222957986585, 28.909083098569056 ], [ -82.009815336428403, 28.909084076362941 ], [ -82.009429280808604, 28.909082202953474 ], [ -82.009376982836301, 28.909080622848094 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 472", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01734231695896, 28.909058679138866 ], [ -82.016873229949255, 28.909057787493456 ], [ -82.016423324618472, 28.909061301487824 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 472", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026839455411206, 28.90911714512994 ], [ -82.026708142024461, 28.909114523328654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 472", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036690377927428, 28.909137891702485 ], [ -82.036688303447136, 28.909137895867854 ], [ -82.036177710526275, 28.909138787914927 ], [ -82.036175641173173, 28.909138792071033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 472", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026708142024461, 28.909114523328654 ], [ -82.025395017717415, 28.909092477714804 ], [ -82.024671964453844, 28.909080338657443 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 472", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014477839165295, 28.909044629823335 ], [ -82.013796231503775, 28.90904497815745 ], [ -82.013272052915411, 28.909048103614364 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 472", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024671964453844, 28.909080338657443 ], [ -82.02363781130272, 28.909073879678086 ], [ -82.022632199370037, 28.909076172104495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 472", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029593964859657, 28.909146849261486 ], [ -82.029322380781565, 28.909145992565698 ], [ -82.028828778571807, 28.90914377990341 ], [ -82.028825329984898, 28.909143764385355 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 472", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036175641173173, 28.909138792071033 ], [ -82.03560339525454, 28.909139793864991 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 472", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036925851456374, 28.909137479173651 ], [ -82.036690377927428, 28.909137891702485 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06635687497203, 28.748846970445964 ], [ -82.065602627426657, 28.748847336310703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Busted Oaks Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096090636850846, 28.653866303895466 ], [ -82.09608928312781, 28.652663376279001 ], [ -82.096089273637702, 28.652654082237333 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Busted Oaks Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09612041841946, 28.650243126023213 ], [ -82.096120547484503, 28.64932841613583 ], [ -82.096120550102015, 28.649304346341587 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Old 313", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145561408582694, 28.675950934999804 ], [ -82.145561265758772, 28.675847549685603 ], [ -82.145561167743523, 28.675776599509636 ], [ -82.145560963312505, 28.675628617453867 ], [ -82.145558034187232, 28.675172513026869 ], [ -82.145555416813934, 28.674389509922563 ], [ -82.145555340159959, 28.674366607938389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Old 313", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145555340159959, 28.674366607938389 ], [ -82.145554117671153, 28.674000825855273 ], [ -82.145549516377471, 28.673292535057048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 684", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182892303080138, 28.575196536396508 ], [ -82.182896735388042, 28.57426223672136 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 684", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182896735388042, 28.57426223672136 ], [ -82.182895489476138, 28.573107343145232 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 684", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182895489476138, 28.573107343145232 ], [ -82.182909338091363, 28.57236531912708 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 684", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182909338091363, 28.57236531912708 ], [ -82.182912605313291, 28.571995351042972 ], [ -82.182918554914892, 28.571656278303887 ], [ -82.182933425313891, 28.571561098961752 ], [ -82.182951272177377, 28.571462946008456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 684", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182951272177377, 28.571462946008456 ], [ -82.182941047614563, 28.571039630450926 ], [ -82.182933156910735, 28.570848227697812 ], [ -82.182923289875674, 28.570729835347951 ], [ -82.182910084244696, 28.57067160224328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 127th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.179777014651293, 28.570570986556756 ], [ -82.179956894312113, 28.570581780418042 ], [ -82.180226711785977, 28.570621355465502 ], [ -82.180536774166782, 28.57065711752637 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 125th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182896735388042, 28.57426223672136 ], [ -82.183397917504621, 28.574266510948963 ], [ -82.183769114656045, 28.5742807905497 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 125th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183769114656045, 28.5742807905497 ], [ -82.1843619942602, 28.574300497584872 ], [ -82.184736759864634, 28.57430644829946 ], [ -82.185248344431315, 28.574330245453105 ], [ -82.185545777833696, 28.574336196134578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 125th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185545777833696, 28.574336196134578 ], [ -82.186485667577941, 28.574365945146379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 687 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182909338091363, 28.57236531912708 ], [ -82.184308231977781, 28.572381778821633 ], [ -82.185357187836132, 28.572392434481522 ], [ -82.185650044312069, 28.5723871109759 ], [ -82.185692037474624, 28.572378688151367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 687", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.186241080401857, 28.571513874548803 ], [ -82.186464094695467, 28.571046325177942 ], [ -82.186559272397275, 28.57086191647107 ], [ -82.186606862255232, 28.570760788810084 ], [ -82.186624708136719, 28.570606124276495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 49th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.186624708136719, 28.570606124276495 ], [ -82.186603292981232, 28.57034287487269 ], [ -82.186592615348999, 28.570081249415349 ], [ -82.186608634048895, 28.569819624402403 ], [ -82.186635330149571, 28.569563340172834 ], [ -82.186678044371831, 28.569440537619045 ], [ -82.186704741997275, 28.569376465302447 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 687", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182918904453885, 28.570550420937483 ], [ -82.186624708136719, 28.570606124276495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 688", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182951272177377, 28.571462946008456 ], [ -82.185236014901236, 28.571463796798326 ], [ -82.186241080401857, 28.571513874548803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 686", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.182895489476138, 28.573107343145232 ], [ -82.183795087314422, 28.573108515467879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 686", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183795087314422, 28.573108515467879 ], [ -82.184647048126834, 28.573132128092578 ], [ -82.184785057202092, 28.573146405660378 ], [ -82.184785405276941, 28.5731461272667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 125th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185517932540478, 28.573227312391559 ], [ -82.186221272416432, 28.573231657363465 ], [ -82.18673905762104, 28.573227599533809 ], [ -82.186875103873305, 28.573235722777458 ], [ -82.187128535943984, 28.573295497362267 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 685", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183769114656045, 28.5742807905497 ], [ -82.183795087314422, 28.573108515467879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 49th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185545777833696, 28.574336196134578 ], [ -82.185541874796513, 28.573739656696866 ], [ -82.185517932540478, 28.573227312391559 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 115th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18994683626903, 28.588953263201198 ], [ -82.191872356101769, 28.588950565362779 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 114th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187985193421213, 28.589795032982163 ], [ -82.188017819484699, 28.589773366063547 ], [ -82.188050467915545, 28.589763709270446 ], [ -82.188093328151041, 28.589757344552897 ], [ -82.188334926113171, 28.589766019822594 ], [ -82.188613921560147, 28.589756624948407 ], [ -82.188690135744366, 28.589755617992552 ], [ -82.188752743289342, 28.589755531281806 ], [ -82.188801714802153, 28.589741046728093 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683E", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189934107373375, 28.592515631218742 ], [ -82.189931632672639, 28.592266024583886 ], [ -82.189927748905873, 28.592006588897977 ], [ -82.18994633436256, 28.590694269294755 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 51st Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18994633436256, 28.590694269294755 ], [ -82.189910996376, 28.589784238767503 ], [ -82.189937728091877, 28.589304286723035 ], [ -82.189954035522035, 28.589059140229644 ], [ -82.18994683626903, 28.588953263201198 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 51st Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.190034540163708, 28.587075098246096 ], [ -82.19000780508722, 28.586852221927014 ], [ -82.189990369096677, 28.586615744265124 ], [ -82.189959278335721, 28.586448714514336 ], [ -82.189905164085459, 28.586245608728969 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 51st Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18994683626903, 28.588953263201198 ], [ -82.189937636630944, 28.588820226675477 ], [ -82.189927290604444, 28.588480919178537 ], [ -82.189939802468643, 28.58818248926368 ], [ -82.189988435259693, 28.587907126066945 ], [ -82.190034746134174, 28.587644281559228 ], [ -82.190000230263465, 28.587370285819635 ], [ -82.190034540163708, 28.587075098246096 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 116th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.190034540163708, 28.587075098246096 ], [ -82.19020002216773, 28.587067179413928 ], [ -82.19038670851846, 28.587061918831154 ], [ -82.190590876940547, 28.587072894640603 ], [ -82.190816284299075, 28.587068825436312 ], [ -82.191020458534652, 28.58708355523471 ], [ -82.19122890802339, 28.587109540852406 ], [ -82.191497535568743, 28.587166464096651 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 116th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18898331435804, 28.586164162694775 ], [ -82.189327409409799, 28.586186172323295 ], [ -82.189593127671912, 28.586216555599126 ], [ -82.189813089099715, 28.58623162529064 ], [ -82.189905164085459, 28.586245608728969 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 51st Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.188801714802153, 28.589741046728093 ], [ -82.188858801189852, 28.589697722004239 ], [ -82.188904972941828, 28.589639996581681 ], [ -82.188926625105665, 28.589570292270249 ], [ -82.188940104543576, 28.589498196352018 ], [ -82.188948147430565, 28.58942851180802 ], [ -82.188934166989839, 28.589221909437935 ], [ -82.188955591517399, 28.58902486971029 ], [ -82.188960047972031, 28.588472274089575 ], [ -82.188967724821168, 28.588198369386369 ], [ -82.188980879803836, 28.587943679658459 ], [ -82.188961246375229, 28.587619361079039 ], [ -82.188930745937881, 28.587307068618721 ], [ -82.188965599755136, 28.58700910404399 ], [ -82.188975190650225, 28.586492268164587 ], [ -82.189003158056053, 28.5863019444324 ], [ -82.18898331435804, 28.586164162694775 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 116th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.184852096941555, 28.586174858687251 ], [ -82.184952213796365, 28.586174304168679 ], [ -82.185041052117555, 28.586171109297776 ], [ -82.185149054398892, 28.586167886530113 ], [ -82.185318025783644, 28.586163044998433 ], [ -82.18548353269297, 28.586170507794915 ], [ -82.185621164379768, 28.586174933177844 ], [ -82.185823226535391, 28.586165432267812 ], [ -82.186047964313431, 28.586172813599973 ], [ -82.186356301896168, 28.586169317132075 ], [ -82.18651657681113, 28.586172173050425 ], [ -82.186683808851072, 28.58616886978897 ], [ -82.186875436927721, 28.586170143837066 ], [ -82.186971254023106, 28.586173087592528 ], [ -82.1871506936006, 28.586177454057292 ], [ -82.187349302608155, 28.58618486911363 ], [ -82.187511314790527, 28.58618618477999 ], [ -82.187736038380166, 28.586184336888756 ], [ -82.187938148506547, 28.586202510296076 ], [ -82.188173306644018, 28.586191422648497 ], [ -82.188452011118102, 28.586177198296657 ], [ -82.188778619619541, 28.586161946025026 ], [ -82.18898331435804, 28.586164162694775 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 50th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.1878942618644, 28.592490959695528 ], [ -82.187902164284708, 28.592434920636819 ], [ -82.187903601341091, 28.592353017667659 ], [ -82.187908630544015, 28.592209327351487 ], [ -82.187915334124625, 28.592032144332382 ], [ -82.18792342642935, 28.591799383299556 ], [ -82.187927419197692, 28.591652973841885 ], [ -82.187955984221006, 28.590973457070351 ], [ -82.187968284640235, 28.590714414015981 ], [ -82.187954729725533, 28.590267706082937 ], [ -82.187942315775217, 28.590174696323068 ], [ -82.187944931498478, 28.59011463016666 ], [ -82.187950153367439, 28.589989689288078 ], [ -82.18794456425573, 28.589908010737521 ], [ -82.187947217377157, 28.589869564627286 ], [ -82.187955302628254, 28.58982390582797 ], [ -82.187985193421213, 28.589795032982163 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 49th Plz", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18587982478715, 28.592481365924343 ], [ -82.185883726015774, 28.592385359628576 ], [ -82.185891305461737, 28.592051392830321 ], [ -82.185884174958474, 28.591711440099282 ], [ -82.18587513003105, 28.591521168524025 ], [ -82.185857146347928, 28.591202132402049 ], [ -82.1858696497262, 28.590881131792173 ], [ -82.185886474721912, 28.590542827387026 ], [ -82.185890677830585, 28.590456328623219 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 687", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185692037474624, 28.572378688151367 ], [ -82.185694943490063, 28.572378104888145 ], [ -82.185804458319211, 28.572333866244101 ], [ -82.185884329019586, 28.572253996482047 ], [ -82.185958875228621, 28.572142180136701 ], [ -82.186241080401857, 28.571513874548803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 125th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.184785405276941, 28.5731461272667 ], [ -82.184832646453586, 28.573108334427356 ], [ -82.184908789309276, 28.5730797811723 ], [ -82.184994449544476, 28.573084541219796 ], [ -82.185080110953962, 28.573094059269962 ], [ -82.185194324652727, 28.57316544467216 ], [ -82.185246673416728, 28.573203515613045 ], [ -82.18528474442823, 28.573208275169215 ], [ -82.185517932540478, 28.573227312391559 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 114", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036944871784229, 28.901898577052052 ], [ -82.036242896428107, 28.901904238897448 ], [ -82.036241944880942, 28.901904247269933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019876338604547, 28.791057739316518 ], [ -82.019956530539545, 28.791069165697898 ], [ -82.020092387943166, 28.791082013360899 ], [ -82.020185617331492, 28.791100002976656 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966033645816466, 28.952749088500465 ], [ -81.965782413312454, 28.952761039427035 ], [ -81.965564071204753, 28.952752254659881 ], [ -81.965392043412706, 28.952740569824989 ], [ -81.965206788734463, 28.952711425594089 ], [ -81.96495207152627, 28.95265025503716 ], [ -81.964829529713143, 28.952613111632452 ], [ -81.964734994980532, 28.952583388727053 ], [ -81.964625832297116, 28.952544752660398 ], [ -81.964529051333415, 28.952502159627084 ], [ -81.96432198912261, 28.95239915039085 ], [ -81.964191525383328, 28.952328351510875 ], [ -81.964104804024444, 28.952281290005104 ], [ -81.964052738928856, 28.952245695055719 ], [ -81.963912384747729, 28.952146607297649 ], [ -81.963852750306927, 28.952095112747905 ], [ -81.963734856205036, 28.951998149446247 ], [ -81.963615798660257, 28.951884638591277 ], [ -81.963440523831039, 28.951707097380819 ], [ -81.963373215771909, 28.951639961092742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963262248615749, 28.951717901354662 ], [ -81.963370074851269, 28.951821354310763 ], [ -81.963437004978033, 28.951889978374968 ], [ -81.963490981455621, 28.951944266868164 ], [ -81.963552371901855, 28.952001636880151 ], [ -81.963600472697223, 28.952048981494748 ], [ -81.963670092665168, 28.952109695778631 ], [ -81.96374242310381, 28.952170317823981 ], [ -81.963811834060095, 28.952227810794781 ], [ -81.963875423804268, 28.95227493843371 ], [ -81.963952840059306, 28.952328765674032 ], [ -81.964030481872257, 28.952380264114598 ], [ -81.964108129242419, 28.952427801450064 ], [ -81.964194778403964, 28.952476330962408 ], [ -81.964290458292126, 28.952531218571924 ], [ -81.964389460010764, 28.952574388029547 ], [ -81.96451212389637, 28.952628867601504 ], [ -81.964642668012075, 28.952679388081467 ], [ -81.964737202128319, 28.952711092484162 ], [ -81.96485649591844, 28.95274874130558 ], [ -81.964958910259924, 28.952776486559546 ], [ -81.965066951940159, 28.952803242487672 ], [ -81.965165991868403, 28.952823066385243 ], [ -81.965272296115103, 28.952842816302244 ], [ -81.965368326606125, 28.952858336240141 ], [ -81.965464571835284, 28.952866827311269 ], [ -81.965573417860114, 28.952875640064132 ], [ -81.965696101187064, 28.952877651190768 ], [ -81.965937442680058, 28.952874310284827 ], [ -81.966033402878324, 28.95287002532605 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01125264492542, 28.952733444919325 ], [ -82.011248343511284, 28.952823015779206 ], [ -82.011246068763597, 28.953006753264017 ], [ -82.01122772949391, 28.953267215705679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Madero Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976759131276239, 28.940933156161925 ], [ -81.976662090893669, 28.940798318539468 ], [ -81.976535256705859, 28.940635761666901 ], [ -81.97652687773558, 28.940624757626846 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Enrique Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980564648075969, 28.947123838398728 ], [ -81.980676394664499, 28.947034185690963 ], [ -81.980847266154115, 28.946923758887085 ], [ -81.980957294891212, 28.946873583711962 ], [ -81.981138628027836, 28.946802810187766 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000102485114368, 28.936536649197208 ], [ -82.000102434799913, 28.936555652415723 ], [ -82.000097252422378, 28.937416847968954 ], [ -82.000097251938996, 28.937583164230787 ], [ -82.000099840470497, 28.938079833804942 ], [ -82.000094657998687, 28.938590172169256 ], [ -82.00009206704992, 28.939262269236849 ], [ -82.000089475958887, 28.939626796841015 ], [ -82.000088852754303, 28.940162927168867 ], [ -82.000089472875644, 28.940661144882441 ], [ -82.000089470997878, 28.941291093813255 ], [ -82.000084466461047, 28.94191328294519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00040738177556, 28.952777709647847 ], [ -82.000407431017678, 28.952777880181067 ], [ -82.00041015780036, 28.952787170181548 ], [ -82.000425211532445, 28.952818736876516 ], [ -82.000442576577555, 28.9528523418481 ], [ -82.000462260117715, 28.952883911246932 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99807115805632, 28.953038266128132 ], [ -81.998074130038219, 28.953038183163923 ], [ -81.998620361150984, 28.95302289045706 ], [ -81.999167056111318, 28.952981444406831 ], [ -81.99950710437939, 28.952936584589434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960366904225893, 28.955061167576879 ], [ -81.959781400562818, 28.954481197630184 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963456891821394, 28.937814626512882 ], [ -81.963431184364836, 28.937874153748997 ], [ -81.963395775397387, 28.937968691841913 ], [ -81.963395581324036, 28.937969283693636 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Marino Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969707416073319, 28.934555069958364 ], [ -81.969727454279095, 28.934600061986341 ], [ -81.969733900353134, 28.934612095539332 ], [ -81.969740539361354, 28.934623785361492 ], [ -81.969747571113686, 28.934635819046214 ], [ -81.969754795800299, 28.934647509000015 ], [ -81.969762217423195, 28.934659198997885 ], [ -81.969769835057491, 28.934670545265497 ], [ -81.969777841434322, 28.934681891620421 ], [ -81.969785850889721, 28.934693238877838 ], [ -81.96979425021479, 28.934704240644024 ], [ -81.969802841347587, 28.934715243355257 ], [ -81.969811633620424, 28.934725902337149 ], [ -81.96982061872734, 28.93473656045963 ], [ -81.96982979974463, 28.934747220430243 ], [ -81.969839176773789, 28.934757535767993 ], [ -81.969848746636828, 28.934767851148475 ], [ -81.969858709345814, 28.93477816661678 ], [ -81.969868672157219, 28.934788138310193 ], [ -81.969878606412976, 28.934797555085439 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999887386201735, 28.926847129522571 ], [ -82.000069565486811, 28.926915501424844 ], [ -82.000187082306766, 28.926956426299704 ], [ -82.000354555297108, 28.927005962658011 ], [ -82.000419448572146, 28.927023990595885 ], [ -82.000421841353116, 28.927024655589801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96884565349238, 28.920160222990791 ], [ -81.969226145307744, 28.920159631538226 ], [ -81.969850405273831, 28.920166235795481 ], [ -81.970352261976927, 28.92016850164444 ], [ -81.970856568956137, 28.920166458594156 ], [ -81.971353530264992, 28.920166565864687 ], [ -81.971774430588553, 28.920164368864015 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011748913246137, 28.934288395292246 ], [ -82.012028237735294, 28.934287814999941 ], [ -82.012320452895906, 28.93428491500508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Trce", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00774434714468, 28.929669913988388 ], [ -82.007744464544317, 28.929647522628311 ], [ -82.007744458463364, 28.929561113440876 ], [ -82.00774445172577, 28.929450798846812 ], [ -82.007744442834976, 28.92933903516516 ], [ -82.007748519234823, 28.929258448265372 ], [ -82.007748985124579, 28.92917455554873 ], [ -82.007757677281077, 28.929084625133395 ], [ -82.007765919208865, 28.929053442273979 ], [ -82.007766213489845, 28.929052325216812 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007398143104695, 28.927284026253105 ], [ -82.007412662916366, 28.927284269132443 ], [ -82.007707671412632, 28.927289207351663 ], [ -82.00825505360217, 28.927290987102214 ], [ -82.008556220647833, 28.92730396526753 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016312885634989, 28.93467281917658 ], [ -82.016312896185653, 28.934674744671252 ], [ -82.016315812715945, 28.935356922050367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01634100947696, 28.941333000966594 ], [ -82.016341775084953, 28.941919434681918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016340691575181, 28.952808889449035 ], [ -82.016338212425353, 28.953234239108465 ], [ -82.016332193284228, 28.95371564944281 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016330880957867, 28.955285115422654 ], [ -82.016341117166036, 28.955572011319465 ], [ -82.016318555174692, 28.95652404957513 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961065964948162, 28.934848898395579 ], [ -81.961183392888429, 28.934899978855775 ], [ -81.961281358159042, 28.934940230571829 ], [ -81.961360044947568, 28.934973431545504 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960786378753596, 28.928648672038893 ], [ -81.960566744121436, 28.928779162482574 ], [ -81.960473829539595, 28.92883953564947 ], [ -81.960410538855243, 28.92888570635731 ], [ -81.960345901896602, 28.928930693727974 ], [ -81.960292035185958, 28.92897568064895 ], [ -81.9602422082164, 28.929015933501997 ], [ -81.960186995084101, 28.92905737035235 ], [ -81.960141208057038, 28.929097624367277 ], [ -81.96009137811825, 28.929142614211589 ], [ -81.960041547789089, 28.929191159079256 ], [ -81.959993067406074, 28.929233779862081 ], [ -81.959943236879866, 28.929279954363654 ], [ -81.959914460560711, 28.929310944105733 ], [ -81.959911562919146, 28.929314065179838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Pedro Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953929010689009, 28.922591209229072 ], [ -81.953936231797343, 28.923313348798587 ], [ -81.953942542929909, 28.923826346673675 ], [ -81.953942337526669, 28.923831600670795 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963702655223344, 28.920157839292504 ], [ -81.963703268486015, 28.920157900814722 ], [ -81.963828119817506, 28.920164395912082 ], [ -81.964087611766388, 28.920179542164206 ], [ -81.964364245058434, 28.920179616007562 ], [ -81.964682496566482, 28.920179700257396 ], [ -81.964959129130165, 28.92018192756198 ], [ -81.965441402841122, 28.920177744344226 ], [ -81.965953051525673, 28.92018002911275 ], [ -81.966132204745776, 28.920160255581045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962657392345108, 28.919989750319456 ], [ -81.962724090229116, 28.920004708202836 ], [ -81.962834245289841, 28.92003058506657 ], [ -81.962956639930596, 28.920052157660937 ], [ -81.963079036929358, 28.920075884828123 ], [ -81.963208776982086, 28.92009961209526 ], [ -81.963323831074334, 28.920114720095061 ], [ -81.963451124744438, 28.920134140701535 ], [ -81.963575973488872, 28.920144942691891 ], [ -81.963702655223344, 28.920157839292504 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958779299936424, 28.917928277219264 ], [ -81.958878953799754, 28.917991889939152 ], [ -81.959287671436272, 28.91825047656377 ], [ -81.959794293474829, 28.91856724523706 ], [ -81.960193228449214, 28.918821517696898 ], [ -81.960599506649643, 28.919080100492675 ], [ -81.960905439198484, 28.919280497127367 ], [ -81.961106137496856, 28.919394709518471 ], [ -81.961333763361253, 28.919511083158987 ], [ -81.961383513316775, 28.919534748488804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958738786344142, 28.917755233163884 ], [ -81.958626769784559, 28.91768951778343 ], [ -81.958449801764445, 28.917583969270261 ], [ -81.958449173262622, 28.917583594622464 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carrera Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969580192992026, 28.927062999095199 ], [ -81.969535776946117, 28.927049962557195 ], [ -81.96947313817337, 28.92703491785257 ], [ -81.969413915482363, 28.927020877251692 ], [ -81.969367218615616, 28.927010845682791 ], [ -81.969296604883979, 28.927001811967276 ], [ -81.969247629952434, 28.926995787830425 ], [ -81.969170180571695, 28.926989758024177 ], [ -81.969095009965727, 28.926987736695395 ], [ -81.969072398821183, 28.926988379322211 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Marino Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969486105704789, 28.934271304047662 ], [ -81.969486776324302, 28.934271934904327 ], [ -81.969503378715913, 28.934287750495159 ], [ -81.969519592270672, 28.934303912476366 ], [ -81.969535415964216, 28.934320416336437 ], [ -81.969551042727886, 28.934336922856694 ], [ -81.969566276553408, 28.934353770353034 ], [ -81.969581122568144, 28.934370962435899 ], [ -81.969595773705009, 28.934388154472842 ], [ -81.969609835994248, 28.93440569014858 ], [ -81.969623702278454, 28.934423569552489 ], [ -81.969637180852871, 28.934441449769263 ], [ -81.969653481879391, 28.934467241941633 ], [ -81.969675657012885, 28.934496805228832 ], [ -81.969707416073319, 28.934555069958364 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00069964998319, 28.952377394096853 ], [ -82.000684252651396, 28.952377791128558 ], [ -82.00066335562019, 28.952381237913002 ], [ -82.000638540782305, 28.952386980129699 ], [ -82.000616337820375, 28.95239502228192 ], [ -82.00057976751323, 28.95241340200138 ], [ -82.000543978912802, 28.952434493098291 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000669095959466, 28.953002871112211 ], [ -82.000704243632043, 28.953008147664018 ], [ -82.000728558012668, 28.953011202783479 ], [ -82.000756088523119, 28.953013040700291 ], [ -82.000764765411475, 28.953012692397991 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95685246318773, 28.951901982227501 ], [ -81.957389072611818, 28.952399763413769 ], [ -81.957389678658814, 28.952400359119132 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959638874604906, 28.954610637213321 ], [ -81.9602510089817, 28.955213594332776 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allende Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975037249839204, 28.933754997411018 ], [ -81.975059040706668, 28.933682988452254 ], [ -81.975074079481701, 28.933644571557274 ], [ -81.975089524785446, 28.933613110524568 ], [ -81.975096860330481, 28.933596987888382 ], [ -81.975101446045997, 28.933584895289222 ], [ -81.975106029904168, 28.933571996940518 ], [ -81.975109326284965, 28.933560067416238 ], [ -81.975115202940984, 28.933545392689975 ], [ -81.975119788796945, 28.933528462889157 ], [ -81.975124375286995, 28.933513145488583 ], [ -81.975128960944915, 28.933497022338663 ], [ -81.975132631101545, 28.933483316265264 ], [ -81.975137216561592, 28.933468000668537 ], [ -81.975140885300547, 28.933455906994947 ], [ -81.975144554623455, 28.933441394269675 ], [ -81.975147308393943, 28.933425271680576 ], [ -81.975152813738347, 28.933397860995875 ], [ -81.975162908283849, 28.933343846106563 ], [ -81.975175754440116, 28.933282575474234 ], [ -81.97518767816922, 28.933243878274354 ], [ -81.975198680734323, 28.933214050457892 ], [ -81.975212436237058, 28.933184221346334 ], [ -81.975223987477477, 28.933163128743047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003600160292862, 28.924024500444773 ], [ -82.003600962397002, 28.924027410330741 ], [ -82.003681509474319, 28.92431968465791 ], [ -82.003732740590436, 28.924527252092744 ], [ -82.003769237212765, 28.92470674311777 ], [ -82.003789754283986, 28.924830570987371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003927163987072, 28.924815323318882 ], [ -82.003888659496042, 28.924622102155162 ], [ -82.003836935505248, 28.924376370389595 ], [ -82.003774726856463, 28.924123278819447 ], [ -82.00373644041639, 28.923996978163519 ], [ -82.003735939873593, 28.923995326071658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991723433744426, 28.909118148475702 ], [ -81.991732562252892, 28.909118809529808 ], [ -81.991829485239023, 28.909125832736098 ], [ -81.992147266391555, 28.909150920578067 ], [ -81.992460663452661, 28.909181793855712 ], [ -81.992828850354655, 28.909230026002827 ], [ -81.993278124956746, 28.909297541616819 ], [ -81.993453450431517, 28.909332261870876 ], [ -81.993571796442183, 28.90935540985474 ], [ -81.993649925969137, 28.909383288346369 ], [ -81.99371439863252, 28.90942584020868 ], [ -81.99378088218262, 28.909502076718166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993859480761515, 28.909230831642201 ], [ -81.993819179650373, 28.909276923634952 ], [ -81.993792984055517, 28.909315925124915 ], [ -81.993781120889992, 28.909343622400176 ], [ -81.993781010107966, 28.909344144825383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99430364933292, 28.909508461696987 ], [ -81.994314826314962, 28.909481362569956 ], [ -81.99431580280762, 28.909476893531199 ], [ -81.994323618867568, 28.90944079744542 ], [ -81.994324598522383, 28.909399544430325 ], [ -81.994322197762784, 28.909384875669954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989797328686478, 28.919995685116689 ], [ -81.989796344164077, 28.919995558719332 ], [ -81.989695561909315, 28.919982545215365 ], [ -81.989448171449638, 28.919966600208745 ], [ -81.989212849994445, 28.919958617594027 ], [ -81.988959426621491, 28.919958597632451 ], [ -81.98771988161765, 28.919960526097295 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hill Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014928948817285, 28.785766039025283 ], [ -82.015252803742086, 28.785774845690959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987715088170688, 28.920087224310059 ], [ -81.988340812362324, 28.920085128765074 ], [ -81.988712920835511, 28.920085161847933 ], [ -81.989077686544732, 28.920083038614013 ], [ -81.989324941826851, 28.920089519200964 ], [ -81.989572198075209, 28.920106769143832 ], [ -81.989824986724614, 28.920129654801265 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974309801694019, 28.920015355626621 ], [ -81.974043623840075, 28.920025542599486 ], [ -81.972924973332908, 28.920036485013163 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971774430588553, 28.920164368864015 ], [ -81.971781531570031, 28.920164331562567 ], [ -81.972354797497076, 28.92016462264003 ], [ -81.972859104425282, 28.920162571188119 ], [ -81.973488261310749, 28.920162697328795 ], [ -81.973980329252512, 28.920156332591933 ], [ -81.974230037049935, 28.920149918682799 ], [ -81.974351300701258, 28.920143667420724 ], [ -81.974351547864345, 28.920143653933671 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990217579381593, 28.909121592573474 ], [ -81.990232434160703, 28.909120584901121 ], [ -81.990610954058766, 28.909094898607673 ], [ -81.990878331773601, 28.909087202668402 ], [ -81.991202687585059, 28.909091081973589 ], [ -81.991483214143827, 28.909100741407975 ], [ -81.991723433744426, 28.909118148475702 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993859480761515, 28.909230831642201 ], [ -81.993749324633725, 28.909247427815618 ], [ -81.993666043567444, 28.909247423820631 ], [ -81.993527973218065, 28.90922234854224 ], [ -81.993385520413625, 28.909193414675901 ], [ -81.993269368067828, 28.909170268444868 ], [ -81.993131297781531, 28.909147120067949 ], [ -81.993023909392008, 28.90913361513562 ], [ -81.992758729562922, 28.90909503298716 ], [ -81.99250450423186, 28.909064164684946 ], [ -81.99225904619793, 28.909039081952042 ], [ -81.99198071646326, 28.909013994070659 ], [ -81.991745584158167, 28.908998477191606 ], [ -81.991731367400945, 28.908997551446454 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991731367400945, 28.908997551446454 ], [ -81.991450350645351, 28.908979249385542 ], [ -81.991204891876876, 28.908967664912687 ], [ -81.990968198684968, 28.908967648050581 ], [ -81.990797253203198, 28.908967636265384 ], [ -81.990610966277245, 28.908975336920204 ], [ -81.990407146845342, 28.90898689337136 ], [ -81.99018227488466, 28.908998475023836 ], [ -81.990179269269248, 28.908998704886915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974821035504618, 28.904662460750476 ], [ -81.974910510896876, 28.904606037888755 ], [ -81.974992472141835, 28.904582873184669 ], [ -81.975091993389498, 28.904572588400971 ], [ -81.975277350834986, 28.904551696671454 ], [ -81.975566182342277, 28.904516013296885 ], [ -81.97579156985374, 28.904479996619326 ], [ -81.97585015884097, 28.904469537839507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975829519419221, 28.904351961017117 ], [ -81.975827455193837, 28.904352331488838 ], [ -81.975733055585962, 28.904369235202228 ], [ -81.975414001895743, 28.904412961887761 ], [ -81.975160808399721, 28.904445110035642 ], [ -81.975015626469855, 28.904449202901915 ], [ -81.974914942896831, 28.90443270178055 ], [ -81.974782619273995, 28.904375129219389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974821035504618, 28.904662460750476 ], [ -81.974839962101768, 28.904626198230787 ], [ -81.974852579591172, 28.904584792324201 ], [ -81.974856836227886, 28.904542087340413 ], [ -81.974854756699173, 28.904521117534586 ], [ -81.974854466200185, 28.904518185010154 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974304669462526, 28.904554564112757 ], [ -81.974307641816395, 28.904584532720236 ], [ -81.974320251157607, 28.90462597951025 ], [ -81.97434085009256, 28.904664870717163 ], [ -81.974357103472627, 28.904686860137115 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Old Mill Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979092387253658, 28.908563083633691 ], [ -81.979247062367023, 28.908532603761813 ], [ -81.979361098127157, 28.908506535091053 ], [ -81.979559514255001, 28.908456397831447 ], [ -81.979899334059766, 28.908368155934969 ], [ -81.97990951729345, 28.908365194320549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Old Mill Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978515123373455, 28.908649725456652 ], [ -81.978551470909466, 28.908646875522056 ], [ -81.978676904957183, 28.908634853526525 ], [ -81.978795497418574, 28.908616813806461 ], [ -81.978982509425975, 28.908584735982515 ], [ -81.979092387253658, 28.908563083633691 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969465845286265, 28.909480296750935 ], [ -81.969468096841624, 28.909481454009804 ], [ -81.969511959432239, 28.909499463937166 ], [ -81.96955871177542, 28.909510498843392 ], [ -81.969606930630889, 28.909514221845491 ], [ -81.969632037403784, 28.909512294818086 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969513304155342, 28.909039975434307 ], [ -81.969512095065667, 28.909040260285238 ], [ -81.969468220994216, 28.909058249328414 ], [ -81.969428564731032, 28.909082669996081 ], [ -81.969394329346059, 28.909112778171114 ], [ -81.969378966952974, 28.909130454282693 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mission Hills Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967363232095522, 28.918263190621936 ], [ -81.967413424088221, 28.918259963596011 ], [ -81.967637317062213, 28.918246652153673 ], [ -81.967749230783681, 28.918241404318714 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968942637134973, 28.906830882801589 ], [ -81.968944523059804, 28.906830343664506 ], [ -81.96897428354373, 28.906821843693333 ], [ -81.969016447962403, 28.906801890106088 ], [ -81.969053888057928, 28.906775631057823 ], [ -81.969071030771318, 28.906759811415036 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969126453455203, 28.906669408516606 ], [ -81.969134709912609, 28.906629178751729 ], [ -81.969134722287222, 28.906587784024818 ], [ -81.969126333152403, 28.906547051453302 ], [ -81.969116115806116, 28.90652307503774 ], [ -81.969115969273133, 28.906522731228385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96917407306735, 28.918125457257442 ], [ -81.969151113100565, 28.91815013339048 ], [ -81.969128575701234, 28.918184907217547 ], [ -81.969122961569781, 28.918199711707274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963878111744748, 28.920023431922235 ], [ -81.963674376240661, 28.920012513210903 ], [ -81.963436047095101, 28.91998590555658 ], [ -81.963143420348842, 28.919938046116215 ], [ -81.962871913078317, 28.919887539140365 ], [ -81.962684861797129, 28.919842226213962 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 100", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953588718670986, 28.901529779871993 ], [ -81.953588652340798, 28.901822367323671 ], [ -81.953590740346385, 28.902085143562594 ], [ -81.95360147668697, 28.903156458920002 ], [ -81.953606310045089, 28.903904459633306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963663199917065, 28.903713132923482 ], [ -81.963615811030294, 28.903640608663856 ], [ -81.963535069964777, 28.903522112237937 ], [ -81.963457966358902, 28.903397237502666 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958471129511452, 28.901760867358739 ], [ -81.95837491760669, 28.901754789439249 ], [ -81.958173884962576, 28.901737036459309 ], [ -81.958046231823701, 28.901721074646858 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979047443344911, 28.894405804704625 ], [ -81.979097695366917, 28.894412337100412 ], [ -81.979179677339687, 28.894435133864942 ], [ -81.979226330421682, 28.894452467082985 ], [ -81.979290591356843, 28.894499119635974 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979320092000279, 28.89424727879436 ], [ -81.979255223034897, 28.894277554437217 ], [ -81.979214227740627, 28.894285142727043 ], [ -81.979168917569865, 28.89429462877095 ], [ -81.979115789557753, 28.894293433958087 ], [ -81.979046402129754, 28.894292841117867 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968211217781715, 28.902078759566425 ], [ -81.968091373945498, 28.902322065700918 ], [ -81.967996602323723, 28.902575232614684 ], [ -81.9679327991105, 28.902781933976058 ], [ -81.967909090625298, 28.902895702739919 ], [ -81.967876261143687, 28.903055940394744 ], [ -81.967861655526534, 28.903177722835935 ], [ -81.96784886795362, 28.903305917442808 ], [ -81.967837890503816, 28.903472571149777 ], [ -81.967845119524981, 28.903647238924847 ], [ -81.967852362558872, 28.903780245773749 ], [ -81.967866884069338, 28.903932483247221 ], [ -81.967894151419046, 28.904091133697818 ], [ -81.967923250385383, 28.904212927492374 ], [ -81.967963268667944, 28.904358760216098 ], [ -81.968037864082291, 28.904586326850566 ], [ -81.968298068292938, 28.905270638466241 ], [ -81.968534618299344, 28.90591167605519 ], [ -81.968596489897905, 28.90606392451377 ], [ -81.968651079022735, 28.90620976131094 ], [ -81.968663806215204, 28.906281875053228 ], [ -81.968669245360061, 28.906361998594633 ], [ -81.968654318071643, 28.906470747290914 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968924520768454, 28.906381535051992 ], [ -81.968857262067814, 28.906307133075259 ], [ -81.968814599785276, 28.906244527121157 ], [ -81.968776581775472, 28.906164681122299 ], [ -81.968715084020332, 28.905989112939398 ], [ -81.968581451049744, 28.905646054965214 ], [ -81.968471134173001, 28.905352088257672 ], [ -81.968359682686568, 28.905055097577979 ], [ -81.96822321093272, 28.904694512289392 ], [ -81.968112334119624, 28.90438400959513 ], [ -81.9680498023627, 28.904163656138401 ], [ -81.968007187711677, 28.903948315158292 ], [ -81.967984491339692, 28.903730475941853 ], [ -81.967978846946309, 28.903580244602693 ], [ -81.967984617290981, 28.903327358777773 ], [ -81.9680074539217, 28.903092002363142 ], [ -81.968070142570511, 28.902799068936172 ], [ -81.968141349698826, 28.902566227874456 ], [ -81.968235321577822, 28.9023283844069 ], [ -81.968324015614741, 28.902153338704288 ], [ -81.968325388408047, 28.902150626718889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98407952263311, 28.895243230798457 ], [ -81.984171284048401, 28.895231035410845 ], [ -81.984510040841585, 28.895170298991719 ], [ -81.984694579274205, 28.895140640058006 ], [ -81.984809016426254, 28.895121156255517 ], [ -81.98501019525591, 28.895093312407013 ], [ -81.985350767452189, 28.895057569583972 ], [ -81.985583338069816, 28.89503658129339 ], [ -81.985844980569951, 28.895021075360287 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986451088647485, 28.884116600727157 ], [ -81.986655678022572, 28.884153157363212 ], [ -81.986906187041868, 28.884177880922842 ], [ -81.986910332923912, 28.884178290072914 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986910332923912, 28.884178290072914 ], [ -81.987156709507005, 28.884202606724987 ], [ -81.987417906892816, 28.884224527816709 ], [ -81.987643592443391, 28.88425318800563 ], [ -81.988111537710367, 28.884325531144768 ], [ -81.988494030783457, 28.884403855666307 ], [ -81.988818506187428, 28.884487747745943 ], [ -81.988907085780056, 28.884511480278224 ], [ -81.98890817452066, 28.88451177271472 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rainey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001540895259467, 28.911871270674663 ], [ -82.00154112291321, 28.911871111868667 ], [ -82.001633632257949, 28.911801553956831 ], [ -82.001736232940047, 28.911714235971694 ], [ -82.001833787941777, 28.911613596433956 ], [ -82.001906111217522, 28.911526278597925 ], [ -82.001966662054912, 28.911444880818934 ], [ -82.002040667411251, 28.911326483251294 ], [ -82.002116354834754, 28.911174046445012 ], [ -82.002156719628118, 28.911070448676373 ], [ -82.002202131793084, 28.910913572865006 ], [ -82.002222312971242, 28.910796654695485 ], [ -82.002239129932889, 28.910642737846793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rainey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002239129932889, 28.910642737846793 ], [ -82.002269404805418, 28.910592420839151 ], [ -82.002287903678962, 28.910509541855955 ], [ -82.002316495402766, 28.910386704485337 ], [ -82.00233667941697, 28.910324545835877 ], [ -82.002361907502873, 28.91025498737239 ], [ -82.002417410338111, 28.910141030932643 ], [ -82.002481801649054, 28.910023813438652 ], [ -82.002546918250829, 28.909927915392995 ], [ -82.002625968579565, 28.909830235967352 ], [ -82.002691282339924, 28.909758254151598 ], [ -82.002784068510948, 28.909667437291628 ], [ -82.002861707133192, 28.909602042865384 ], [ -82.002954021849135, 28.90953330963362 ], [ -82.00304988671526, 28.909470824685265 ], [ -82.003159952937338, 28.909408338494256 ], [ -82.003291204833431, 28.909345891488581 ], [ -82.003426243918227, 28.909295862599684 ], [ -82.003565415644943, 28.909252773958539 ], [ -82.003688984376652, 28.909220876735187 ], [ -82.003834558468853, 28.909199004299179 ], [ -82.004019188064447, 28.909186503783101 ], [ -82.004110397540344, 28.909183869417799 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 472", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013272052915411, 28.909048103614364 ], [ -82.012882203161638, 28.909062956426439 ], [ -82.012224063728226, 28.909062969831865 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003875858083859, 28.916461751696417 ], [ -82.00376784675008, 28.916479147888168 ], [ -82.003612552373838, 28.916518371634034 ], [ -82.003550372671057, 28.916541585517606 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011096250989468, 28.916443767604093 ], [ -82.011095360837771, 28.916443764966829 ], [ -82.010951460835187, 28.916443241985807 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012680033153913, 28.916572420116022 ], [ -82.012659914383278, 28.916562890964649 ], [ -82.012476955575238, 28.916503698565247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016967390783506, 28.922955197584013 ], [ -82.016999335857818, 28.92291765366814 ], [ -82.017058286170538, 28.922826205088874 ], [ -82.017088791227152, 28.922756411470392 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016563370356835, 28.923665143672299 ], [ -82.016566726901615, 28.923630648507825 ], [ -82.016584184266677, 28.923529883457114 ], [ -82.016615816885832, 28.923446356876671 ], [ -82.016637006372065, 28.923398886371942 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016191421267081, 28.926383191192951 ], [ -82.016216902855803, 28.926350123615485 ], [ -82.016276498745427, 28.926271454554481 ], [ -82.016365888868279, 28.926140345072096 ], [ -82.016430799565214, 28.926016916952921 ], [ -82.01648357675964, 28.925904537942589 ], [ -82.016536350564266, 28.925757699345514 ], [ -82.016561877606875, 28.925642328815993 ], [ -82.016582295104072, 28.925520964939739 ], [ -82.01659077145986, 28.925267753651358 ], [ -82.016567664919123, 28.925078183214069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Village Campus Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024007358923768, 28.924209429694816 ], [ -82.024227333940047, 28.924209391187251 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alcott Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015495040238378, 28.916744650190612 ], [ -82.015490115894806, 28.916476504405935 ], [ -82.015495859665691, 28.916390215331173 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evelynton Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019857634641966, 28.916392812736664 ], [ -82.019858852554407, 28.916390640734161 ], [ -82.019877339601038, 28.916357688015317 ], [ -82.019954866399672, 28.916185790264279 ], [ -82.019990601091394, 28.916095716055992 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023413440503433, 28.916069145716932 ], [ -82.023433712609517, 28.916109621106546 ], [ -82.023453765703536, 28.916170636410019 ], [ -82.023472054595629, 28.916225496542641 ], [ -82.023486044763999, 28.916286036458828 ], [ -82.02349035354861, 28.916325765648629 ], [ -82.023492519083646, 28.916384415459909 ], [ -82.023492115340019, 28.916395096013218 ], [ -82.023492101067944, 28.916395481296306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Churchill Downs", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012233142650516, 28.912833860620434 ], [ -82.012301341307079, 28.912832353274204 ], [ -82.012497851334075, 28.912827958968645 ], [ -82.01259362018196, 28.912826856868033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lynnhaven Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008305570250869, 28.914660368610313 ], [ -82.008360785080384, 28.914616351375578 ], [ -82.008414350538558, 28.914568189963767 ], [ -82.0084665042436, 28.914512077571494 ], [ -82.00853763102036, 28.914420875508366 ], [ -82.008571205810355, 28.914367343840343 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029905060979601, 28.92732330638221 ], [ -82.02990340046297, 28.92732321200338 ], [ -82.028829105263412, 28.927314704180858 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02989946600816, 28.927449681234059 ], [ -82.029899607545602, 28.927449683910076 ], [ -82.030266301893164, 28.927465760845557 ], [ -82.030772551558158, 28.927474771226585 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047448427024264, 28.927406616016821 ], [ -82.047444262983817, 28.927406632806498 ], [ -82.047438875371085, 28.927406652729122 ], [ -82.04743791435979, 28.927406656673057 ], [ -82.045696661012769, 28.927413169168837 ], [ -82.045441494901183, 28.927412695985211 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039582121020985, 28.927404935645225 ], [ -82.039168703723391, 28.927404578477891 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038267613504203, 28.927496624438742 ], [ -82.038562404209827, 28.927481022041864 ], [ -82.038949909391036, 28.927473272322935 ], [ -82.039168703723391, 28.927404578477891 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032888201010266, 28.927490201445533 ], [ -82.033378036952925, 28.927493036079294 ], [ -82.034024246033482, 28.927494718505287 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034024246033482, 28.927494718505287 ], [ -82.034043964535954, 28.927497180474234 ], [ -82.034276510410933, 28.927497122406479 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03628121380639, 28.927468965169343 ], [ -82.036618164408807, 28.927471685048197 ], [ -82.037042925752246, 28.927472990771648 ], [ -82.037265808053405, 28.927478614618234 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008555562553681, 28.927177292061788 ], [ -82.007892867788357, 28.927160659976114 ], [ -82.007411539420985, 28.927155663225474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00044869007985, 28.926896323023112 ], [ -82.000385678896507, 28.926878838282935 ], [ -82.000261186824488, 28.926841677041281 ], [ -82.000122940248303, 28.926796259638085 ], [ -81.99999393258976, 28.926747918705178 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967641404555778, 28.884554487238798 ], [ -81.967552130902831, 28.884477391113098 ], [ -81.967276612477775, 28.884239545281307 ], [ -81.967148229842238, 28.884126800248367 ], [ -81.967000021302368, 28.883968274674892 ], [ -81.96683407185742, 28.88378485727943 ], [ -81.966664140341962, 28.883568842153679 ], [ -81.966460361850864, 28.883219183028853 ], [ -81.966310736422713, 28.882894848545156 ], [ -81.96618732960566, 28.882543931477162 ], [ -81.966165996409771, 28.882449909009054 ], [ -81.966126896766468, 28.882236792712217 ], [ -81.966094927456851, 28.882001740546581 ], [ -81.966084309743451, 28.881807432673313 ], [ -81.96610580493342, 28.881406297450336 ], [ -81.966155807001584, 28.880942489215791 ], [ -81.966198666292001, 28.880538223816199 ], [ -81.966230812334757, 28.880234241995208 ], [ -81.966248668552367, 28.880071281793185 ], [ -81.966266506326875, 28.879967867172923 ], [ -81.966304522249303, 28.879890011703576 ], [ -81.966376743458682, 28.87980981701104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969217811320689, 28.886207412638814 ], [ -81.969217503944748, 28.886206768325458 ], [ -81.969173740725779, 28.886115359706739 ], [ -81.969059731401842, 28.885931007816449 ], [ -81.968964873860259, 28.885797067298668 ], [ -81.96877244635597, 28.885557714373999 ], [ -81.968609944469122, 28.885403864799223 ], [ -81.968363507300893, 28.885180418821214 ], [ -81.968070629225949, 28.88492633633809 ], [ -81.967776668196834, 28.884671298315389 ], [ -81.967642395666147, 28.884555342859315 ], [ -81.967641404555778, 28.884554487238798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966071109068835, 28.879760775759483 ], [ -81.966091444568747, 28.87981597649847 ], [ -81.966115505296216, 28.879881303804062 ], [ -81.966118051089708, 28.880033772672181 ], [ -81.966017984249689, 28.880893517149882 ], [ -81.965990957222033, 28.881156635855692 ], [ -81.96596382522938, 28.881392494187658 ], [ -81.965948807252815, 28.88155177184538 ], [ -81.965948758187039, 28.881697762398208 ], [ -81.965948700282027, 28.881876843946749 ], [ -81.965963611078251, 28.882043557835217 ], [ -81.965988057625609, 28.882237006617785 ], [ -81.966012752485028, 28.882367648063244 ], [ -81.966036959706386, 28.882503649950294 ], [ -81.966092068692291, 28.882688526477761 ], [ -81.966171416955731, 28.882909709574406 ], [ -81.966239067188141, 28.883077033118163 ], [ -81.966327544888074, 28.883255818372291 ], [ -81.966438150987017, 28.883452946569296 ], [ -81.966530058375255, 28.883597698641776 ], [ -81.966647458772201, 28.883758101989624 ], [ -81.966762424128888, 28.883904235638386 ], [ -81.966915355153404, 28.8840761609083 ], [ -81.967122313200178, 28.884283058910896 ], [ -81.967335284857086, 28.884467429402225 ], [ -81.967514433475571, 28.884622516206903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967514433475571, 28.884622516206903 ], [ -81.967520320685011, 28.884627612926764 ], [ -81.967588034909426, 28.884686233761077 ], [ -81.967803962553319, 28.88487162381665 ], [ -81.968088096924873, 28.88511862263983 ], [ -81.968317098307963, 28.885315956024225 ], [ -81.968495404540889, 28.885472720490746 ], [ -81.968645757234924, 28.885620693382638 ], [ -81.968747282007371, 28.885735097258916 ], [ -81.968812703871933, 28.885818630364671 ], [ -81.968888976322603, 28.885917384162436 ], [ -81.969025088521704, 28.886121055055167 ], [ -81.969089816264798, 28.886247409254302 ], [ -81.969090014017993, 28.886247795484657 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96085033927983, 28.892420924322145 ], [ -81.960829026497322, 28.892310126497225 ], [ -81.960804047737582, 28.892106148883091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bella Cruz Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956895991458566, 28.951743041270657 ], [ -81.956918430523743, 28.951725246266665 ], [ -81.956948134403461, 28.951700970625492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959781400562818, 28.954481197630184 ], [ -81.95971807420824, 28.954538711420408 ], [ -81.959717788908108, 28.954538970292322 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999490344616106, 28.952812743117626 ], [ -81.999350858670056, 28.952828076778868 ], [ -81.999129354432284, 28.952857091131406 ], [ -81.998950265272157, 28.952873671028456 ], [ -81.998695769734155, 28.952890247167019 ], [ -81.998356443016576, 28.952906823502978 ], [ -81.998063587790554, 28.952913425787756 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000084466461047, 28.94191328294519 ], [ -82.000084447990318, 28.941915553115603 ], [ -82.000086230512224, 28.942344805708316 ], [ -82.0000862294401, 28.94270078933743 ], [ -82.000089466193202, 28.942902988783981 ], [ -82.000112128897953, 28.943221950454515 ], [ -82.000134791835606, 28.943503888305358 ], [ -82.000180117557846, 28.94382854617346 ], [ -82.000209256740405, 28.944053528546895 ], [ -82.000261057783334, 28.944352554932387 ], [ -82.000299910598812, 28.944531971481403 ], [ -82.000377614585403, 28.944862324551263 ], [ -82.000487697582699, 28.945292352076084 ], [ -82.000550902776041, 28.945501905113908 ], [ -82.000551702908325, 28.945504559659664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955057407719053, 28.948114096690105 ], [ -81.955078807707125, 28.94817063789726 ], [ -81.9551055738266, 28.948208335618862 ], [ -81.955127629500097, 28.948233817425827 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955674488415909, 28.947812729880731 ], [ -81.955673752223788, 28.947811903137353 ], [ -81.955629385851779, 28.947774163609395 ], [ -81.955571761309074, 28.947742086971591 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955243214690981, 28.94774212744678 ], [ -81.955240113032829, 28.947743456390157 ], [ -81.955200434781361, 28.947760463979364 ], [ -81.955140561140979, 28.947805544140792 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000679867896608, 28.945428471888732 ], [ -82.000604798005739, 28.945195230117065 ], [ -82.000526057029731, 28.94489449496745 ], [ -82.00045145969203, 28.944575531633255 ], [ -82.000407946412352, 28.94437686470151 ], [ -82.000385899026909, 28.944243421838458 ], [ -82.000304339700705, 28.943728005684747 ], [ -82.000279474842898, 28.943512934117983 ], [ -82.000254610110559, 28.943281459749368 ], [ -82.000229703597626, 28.942948499922462 ], [ -82.000223530163822, 28.942512306920857 ], [ -82.000225791988456, 28.941906658679152 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980171251007974, 28.812400682546379 ], [ -81.980206021387431, 28.812263703371869 ], [ -81.980233798510014, 28.812158280573144 ], [ -81.98027721035578, 28.811946670715205 ], [ -81.980358829219242, 28.8115119917287 ], [ -81.980488199264741, 28.81084889418581 ], [ -81.980608884718251, 28.810226284601736 ], [ -81.980690502199153, 28.809795425687295 ], [ -81.980854599660859, 28.808934466593513 ], [ -81.98102737845619, 28.808025380934033 ], [ -81.981146319832533, 28.807420341971333 ], [ -81.981188388533539, 28.807216409248845 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981047882268442, 28.807151443785525 ], [ -81.98099450499025, 28.807424006477106 ], [ -81.980882392169903, 28.807999497386376 ], [ -81.980791277633827, 28.808459891430989 ], [ -81.980675662585156, 28.809043014227697 ], [ -81.98056366431554, 28.809655316336563 ], [ -81.980450298098802, 28.810256715472036 ], [ -81.980341034849843, 28.810830452911592 ], [ -81.980236627485155, 28.811377783897814 ], [ -81.980133841243727, 28.811917581605165 ], [ -81.98009328558328, 28.812123118387731 ], [ -81.980062124614008, 28.812259142525633 ], [ -81.980033366479617, 28.812366431119944 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 103", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028755235046901, 28.932235195193577 ], [ -82.028758901343124, 28.932765501672755 ], [ -82.028756680395418, 28.934243647698533 ], [ -82.028772460618015, 28.934428124728768 ], [ -82.028793475312852, 28.934587234460494 ], [ -82.028796095319493, 28.934630061296954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 105", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034791329932986, 28.931073497118369 ], [ -82.034821160895419, 28.931106285218839 ], [ -82.034841548841783, 28.93113052918676 ], [ -82.034861095513136, 28.931169576407815 ], [ -82.034867636519067, 28.931195454347527 ], [ -82.035046547337217, 28.931967679613997 ], [ -82.035047187169113, 28.931970203167069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 105", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035047187169113, 28.931970203167069 ], [ -82.035135434170755, 28.932318937093854 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 105", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032853082349959, 28.928449628122419 ], [ -82.032850806956063, 28.928649131458396 ], [ -82.032850790986885, 28.928650549869598 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Torch Point Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027083042594143, 28.846689239493145 ], [ -82.027082436507001, 28.846683611930089 ], [ -82.027081223920462, 28.846674760546833 ], [ -82.027079437753414, 28.846667194159252 ], [ -82.027075655538425, 28.846656907709818 ], [ -82.027070752906766, 28.846645553149134 ], [ -82.027067140439428, 28.846637812071069 ], [ -82.027062496160696, 28.846630846275279 ], [ -82.027048562525181, 28.846614848407867 ], [ -82.027041336950816, 28.846608913548803 ], [ -82.027020437278878, 28.846596011045378 ], [ -82.027009056332417, 28.84659138082727 ], [ -82.026995850364514, 28.846587572964644 ], [ -82.026984904733027, 28.846586026741097 ], [ -82.026975386847951, 28.846585074858094 ], [ -82.026962775348167, 28.846585551024695 ], [ -82.026953138100765, 28.846586741237523 ], [ -82.026945523967669, 28.846588286564554 ], [ -82.026936244869702, 28.846591380571866 ], [ -82.026929580999564, 28.846593878548152 ], [ -82.026921848527451, 28.846597566873282 ], [ -82.02690696282545, 28.846605780749528 ], [ -82.026890901344657, 28.846620949826036 ], [ -82.026878408186221, 28.846635523588557 ], [ -82.026871566767909, 28.846649205677565 ], [ -82.026864429074948, 28.846670621487217 ], [ -82.026861454611634, 28.846689359347554 ], [ -82.02686294196333, 28.846714937625404 ], [ -82.026865619266843, 28.846724753291454 ], [ -82.026867206184278, 28.846730670305394 ], [ -82.026870181279506, 28.846738758900159 ], [ -82.026874271491408, 28.846747219028465 ], [ -82.026877804724194, 28.846753727577198 ], [ -82.026879968114997, 28.846757624216284 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Torch Point Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026879968114997, 28.846757624216284 ], [ -82.026884726911803, 28.846763573097327 ], [ -82.026892459738932, 28.846773387781269 ], [ -82.026899895336101, 28.846779039283341 ], [ -82.026910603192547, 28.84678855652972 ], [ -82.026922202930862, 28.846795099601795 ], [ -82.026938112245986, 28.846802175097405 ], [ -82.026956261935908, 28.846805518218115 ], [ -82.026976798109459, 28.846807428912118 ], [ -82.026990029379917, 28.8468058400803 ], [ -82.027007280401904, 28.846801557080337 ], [ -82.027019653919908, 28.846796083986256 ], [ -82.027034111495283, 28.846788802263287 ], [ -82.027059902493392, 28.846764444893328 ], [ -82.027073753959669, 28.846743430189623 ], [ -82.027079962850237, 28.846720983215256 ], [ -82.027082828984888, 28.846707610482039 ], [ -82.027083042594143, 28.846689239493145 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Torch Point Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029168682740789, 28.847156651061294 ], [ -82.029887250588956, 28.847457988504221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maple Hill Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027498708819991, 28.846130331548434 ], [ -82.027519793100993, 28.846159734410289 ], [ -82.027530000202262, 28.846190553345931 ], [ -82.027539787848553, 28.846271604636009 ], [ -82.027542848362884, 28.846371868257805 ], [ -82.027544275270401, 28.846440395398638 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maple Hill Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027639164483261, 28.846443811560306 ], [ -82.027638502517178, 28.846404703951187 ], [ -82.027634218937948, 28.846366157396936 ], [ -82.027622798904389, 28.846317616522196 ], [ -82.027612805183196, 28.846256226525551 ], [ -82.027608309105247, 28.846192572447848 ], [ -82.027614020155326, 28.846159735494094 ], [ -82.02763130951864, 28.8461260552798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brownwood Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026611593985223, 28.846085624169032 ], [ -82.026679672626614, 28.84606598592087 ], [ -82.026741062554592, 28.846055992775632 ], [ -82.026801885634498, 28.84605777660931 ], [ -82.026866130591245, 28.846063487489602 ], [ -82.026928948388601, 28.846074909311039 ], [ -82.026981772717818, 28.846084902895658 ], [ -82.027045157181249, 28.846095969043954 ], [ -82.027123337149334, 28.846107092719613 ], [ -82.027221847504705, 28.84612137042506 ], [ -82.027323212254743, 28.846128509353029 ], [ -82.027431451487232, 28.846131307653497 ], [ -82.027486061432711, 28.846130515423887 ], [ -82.027498708819991, 28.846130331548434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brownwood Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027498708819991, 28.846130331548434 ], [ -82.027520284498252, 28.846130018671843 ], [ -82.02757182733005, 28.84613001924188 ], [ -82.027616789030802, 28.846127351182329 ], [ -82.02763130951864, 28.8461260552798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Torch Point Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027083042594143, 28.846689239493145 ], [ -82.027139410781999, 28.846625617698159 ], [ -82.027217377948233, 28.846644583299522 ], [ -82.027510284164578, 28.846676193628817 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Torch Point Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027510284164578, 28.846676193628817 ], [ -82.027560858453185, 28.84668672971803 ], [ -82.027615645571814, 28.846680408069926 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beadle Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028131921131916, 28.846730984778922 ], [ -82.028176332159859, 28.846668175254013 ], [ -82.028281982926572, 28.846554331419458 ], [ -82.028325764462252, 28.84652197028381 ], [ -82.028424750736164, 28.846474382215067 ], [ -82.028502796981627, 28.846459153274676 ], [ -82.028601783121232, 28.846461058356855 ], [ -82.028685539746121, 28.846491515484022 ], [ -82.028792139464002, 28.846520070254432 ], [ -82.029027500931591, 28.846587697580109 ], [ -82.02940258951115, 28.846631951280372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Torch Point Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027615645571814, 28.846680408069926 ], [ -82.027699678876118, 28.846699395641494 ], [ -82.027772490040462, 28.846697968036871 ], [ -82.027835308025104, 28.846696539696691 ], [ -82.027875282785075, 28.846696540672216 ], [ -82.027930962235374, 28.846700823516805 ], [ -82.028018130113111, 28.846714125730177 ], [ -82.028131921131916, 28.846730984778922 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Farrell Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029168682740789, 28.847156651061294 ], [ -82.029368873013524, 28.846741527249883 ], [ -82.02940258951115, 28.846631951280372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beadle Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02940258951115, 28.846631951280372 ], [ -82.02956273938625, 28.846627737627152 ], [ -82.029746069410734, 28.846621416421804 ], [ -82.029923077366945, 28.846619310105247 ], [ -82.030047405687853, 28.846642491320569 ], [ -82.030133802074332, 28.846684636343738 ], [ -82.030262342632838, 28.846733102658757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Torch Point Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028131921131916, 28.846730984778922 ], [ -82.02849436611119, 28.846884815080113 ], [ -82.029168682740789, 28.847156651061294 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Essex Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029887250588956, 28.847457988504221 ], [ -82.030262342632838, 28.846733102658757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Essex Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030262342632838, 28.846733102658757 ], [ -82.030399999790774, 28.846443652418014 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Torch Point Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029887250588956, 28.847457988504221 ], [ -82.030011577586123, 28.847487491301642 ], [ -82.030249695855943, 28.847594960796119 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brownwood Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02897927610266, 28.845336471964899 ], [ -82.029038763263259, 28.84516515217447 ], [ -82.029072076609168, 28.845024764400382 ], [ -82.029186291654881, 28.844782061509793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brownwood Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029186291654881, 28.844782061509793 ], [ -82.029367131862898, 28.844370417331504 ], [ -82.029486106296972, 28.844070607100708 ], [ -82.029621810878538, 28.84388768964169 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brownwood Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028700876820892, 28.845821878613883 ], [ -82.028810332608842, 28.845686250093895 ], [ -82.028855543068374, 28.845581555127858 ], [ -82.02897927610266, 28.845336471964899 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leland Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028700876820892, 28.845821878613883 ], [ -82.02860807841455, 28.845760012288356 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029485660777098, 28.843842795639578 ], [ -82.029621810878538, 28.84388768964169 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995007358025191, 28.87930317610131 ], [ -81.994887677146266, 28.879103787116847 ], [ -81.994775502863675, 28.878943351597282 ], [ -81.994648828555768, 28.878775111379138 ], [ -81.994552767708996, 28.878662492012765 ], [ -81.994551668817579, 28.878661203479844 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979502805907799, 28.887806491059422 ], [ -81.979502805815912, 28.887812086225914 ], [ -81.979502772673513, 28.887978078865554 ], [ -81.979495884906086, 28.888707888317292 ], [ -81.97949237934786, 28.88938133149826 ], [ -81.979485462357843, 28.890256510404015 ], [ -81.979481944814154, 28.890989287790539 ], [ -81.979478417727634, 28.89176953420445 ], [ -81.979471451473557, 28.892899848045762 ], [ -81.979471387120668, 28.893211354470576 ], [ -81.979468337356266, 28.893957244730732 ], [ -81.979463457392669, 28.894006114345739 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979610876975642, 28.89400856229479 ], [ -81.979604806854539, 28.893958627192596 ], [ -81.979604881189644, 28.893584584201939 ], [ -81.979611509202186, 28.892808018949211 ], [ -81.979615997204604, 28.891928923112836 ], [ -81.97962260374581, 28.89124919072086 ], [ -81.979622719369388, 28.890671989263396 ], [ -81.979624946539886, 28.8903245254795 ], [ -81.979629409982024, 28.889578339975795 ], [ -81.979638205048161, 28.888739118839325 ], [ -81.979640532700643, 28.887848391485978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979463457392669, 28.894006114345739 ], [ -81.979463448145992, 28.894006209085788 ], [ -81.979457530542334, 28.894065467621182 ], [ -81.979442417177779, 28.894118628804268 ], [ -81.979393584122562, 28.894189566414312 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979692427433363, 28.894200602160627 ], [ -81.979647923078787, 28.894133313600456 ], [ -81.979617732227254, 28.894064956178337 ], [ -81.979610894377288, 28.89400870576311 ], [ -81.979610876975642, 28.89400856229479 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993037885812242, 28.891572052894308 ], [ -81.993248382132407, 28.89134092882275 ], [ -81.993327309702494, 28.891253960126207 ], [ -81.993328974874217, 28.891252126736482 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993600907691132, 28.890952944691552 ], [ -81.993865899239509, 28.890664768921862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bigham Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020964231935977, 28.787792362848027 ], [ -82.020965346344624, 28.78771922473128 ], [ -82.02098294949387, 28.787239688297561 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bigham Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020845582257365, 28.791219566983326 ], [ -82.020850619024813, 28.791210662207678 ], [ -82.02087434422431, 28.791160728272093 ], [ -82.020900096952801, 28.791092250587923 ], [ -82.02091883199995, 28.791022634321326 ], [ -82.020930067880613, 28.790956699705134 ], [ -82.020935404445325, 28.790883427451451 ], [ -82.020938767576084, 28.790529397954014 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leland Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030918930098196, 28.84650917539971 ], [ -82.030491704638564, 28.846356855639268 ], [ -82.030156676423857, 28.846244650787416 ], [ -82.029760266221359, 28.846127099542826 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996979865774321, 28.886300826404653 ], [ -81.996982588785158, 28.886300602698267 ], [ -81.997476425471177, 28.886260026138459 ], [ -81.998264575184493, 28.886188467216027 ], [ -81.998673800960646, 28.886151214541048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999472038385093, 28.886067404441857 ], [ -82.000032507438846, 28.886009288147331 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045038580853969, 28.799874566193935 ], [ -82.045347891695869, 28.799969740488617 ], [ -82.045686092871634, 28.800117598573053 ], [ -82.045953412675132, 28.800276791812134 ], [ -82.046134726760869, 28.8004024266769 ], [ -82.046358871635789, 28.800583742937331 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005270849854156, 28.884917919516152 ], [ -82.005494237609227, 28.884822952561688 ], [ -82.005668722547526, 28.884749317473226 ], [ -82.005856349642102, 28.884660956094972 ], [ -82.006051528403958, 28.88455931498558 ], [ -82.006200878118349, 28.884477921328937 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triggerfish Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007562151868498, 28.889321827376939 ], [ -82.007563484646482, 28.889321067571256 ], [ -82.007665311897071, 28.889262957742663 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bachman Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011774078700057, 28.879854003860586 ], [ -82.011688234882214, 28.879911826808815 ], [ -82.011676036479912, 28.879921292050678 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008867326483042, 28.881013841772837 ], [ -82.008866166718462, 28.880921552636256 ], [ -82.008862221098624, 28.880848809325133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lowell Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010996114029084, 28.878936104732524 ], [ -82.010996148869992, 28.878935963970793 ], [ -82.011006983837817, 28.878906981203922 ], [ -82.011017138684764, 28.878883767806162 ], [ -82.011033731644204, 28.878852113780038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961310560461143, 28.87964777647629 ], [ -81.961310544086189, 28.879647702482842 ], [ -81.961292631603229, 28.879570390820053 ], [ -81.961216009656127, 28.879291977055985 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973641058585429, 28.893842755893669 ], [ -81.973622676863059, 28.893739071706094 ], [ -81.973614708397108, 28.893710385121665 ], [ -81.973613903253195, 28.893707487678189 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974763166652878, 28.887961899150767 ], [ -81.974762585909104, 28.887691698795631 ], [ -81.974766003719466, 28.88759262953258 ], [ -81.974766024365678, 28.887592052064029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970572149900747, 28.894364840787581 ], [ -81.97057195919254, 28.894364845257183 ], [ -81.97048442711214, 28.894367184616613 ], [ -81.970209183420963, 28.894385813944865 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96864315323684, 28.89464872519693 ], [ -81.968643715106083, 28.894648725328373 ], [ -81.968704949626414, 28.894648740541445 ], [ -81.968757790820945, 28.894659413539202 ], [ -81.968809579685143, 28.894671325128826 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968759702045787, 28.894442240369958 ], [ -81.96870478885009, 28.894485612837641 ], [ -81.968654116756298, 28.8945105234178 ], [ -81.968633668305998, 28.894516342978935 ], [ -81.968633621138025, 28.894516355600114 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968913657379034, 28.894737435541451 ], [ -81.968958462395278, 28.894788607219876 ], [ -81.96898273542044, 28.894826739512062 ], [ -81.968999334630112, 28.89485597244796 ], [ -81.969020009358445, 28.894892385922198 ], [ -81.969021942129302, 28.894899027294443 ], [ -81.969021980026312, 28.894899159038971 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96917959644361, 28.894873679243766 ], [ -81.969179593374136, 28.894873657587876 ], [ -81.969177667621366, 28.894860645081465 ], [ -81.969175322471074, 28.894809991243033 ], [ -81.969177697336079, 28.894764496937018 ], [ -81.969196536108385, 28.894700091507133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994529833353624, 28.886406042115279 ], [ -81.994695452596673, 28.886429081969744 ], [ -81.994755136272772, 28.886429084377056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bassinger Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995007358025191, 28.87930317610131 ], [ -81.995102326851764, 28.879259223158371 ], [ -81.995102371959788, 28.879259202407134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reedy Creek Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995259700363633, 28.883967514393891 ], [ -81.995360575339959, 28.883988978357191 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cedar Bay Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993348020979369, 28.877397815989628 ], [ -81.9934262191709, 28.877328629584767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bonita Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974391132345175, 28.880242113462675 ], [ -81.974523377444896, 28.880240099478321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96632531164073, 28.879168393014993 ], [ -81.966273285834987, 28.879278779271264 ], [ -81.966203744820774, 28.879355401475323 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966454458968272, 28.879414843072666 ], [ -81.966433726273223, 28.879360705197112 ], [ -81.966430319963692, 28.879315560384601 ], [ -81.966433758009529, 28.879266035707136 ], [ -81.966458337353629, 28.879199162347206 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979541259562708, 28.872087061740107 ], [ -81.979744885228058, 28.872065626038751 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96576000117382, 28.872328196466956 ], [ -81.965816786619456, 28.872264391978238 ], [ -81.965867705958217, 28.872220691081388 ], [ -81.96589626876299, 28.872196657390639 ], [ -81.965934765384759, 28.872170437229499 ], [ -81.965995963509968, 28.872135123089016 ], [ -81.966127468807031, 28.872057494252392 ], [ -81.966386432415291, 28.871916051236692 ], [ -81.966387349005004, 28.871915550688293 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966331931731304, 28.871827566790653 ], [ -81.966331736932503, 28.871827666897385 ], [ -81.966053491430571, 28.871972709632978 ], [ -81.96582278631918, 28.872097177870543 ], [ -81.965773380486254, 28.872114761985891 ], [ -81.965731857795561, 28.872122364117043 ], [ -81.965669579585025, 28.872122348199536 ], [ -81.965626328050632, 28.872125384204253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odessa Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006306842200004, 28.878483627432402 ], [ -82.006230474008674, 28.878229333062347 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008223429031744, 28.877902679931285 ], [ -82.00815078618281, 28.87774686186054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odessa Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003294258599325, 28.877564209748442 ], [ -82.003286169877484, 28.877587656227263 ], [ -82.003277011000421, 28.87761450530758 ], [ -82.003263307226078, 28.877662377211848 ], [ -82.003252057637823, 28.87771074172376 ], [ -82.003243572803299, 28.877757643549398 ], [ -82.003184863807547, 28.87813435396755 ], [ -82.003183972104409, 28.878140829805943 ], [ -82.003182690222317, 28.878162390336698 ], [ -82.003183974276794, 28.878183950818947 ], [ -82.003187811961382, 28.878205275751984 ], [ -82.003194161240387, 28.878226130537907 ], [ -82.003202952399249, 28.878246285992965 ], [ -82.00321408906963, 28.878265522859152 ], [ -82.003227451304724, 28.878283629097204 ], [ -82.003242887378335, 28.878300407105293 ], [ -82.003244762419243, 28.878302217989145 ], [ -82.003446402927537, 28.878494672242624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Countrywind Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003294258599325, 28.877564209748442 ], [ -82.003350717541167, 28.877580512320971 ], [ -82.003377816295213, 28.877588826486836 ], [ -82.0033876085201, 28.877592289322926 ], [ -82.003387722311672, 28.877592329924216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99993773018447, 28.865318955493386 ], [ -81.999349785823824, 28.865321947114843 ], [ -81.99870446200994, 28.865307568025049 ], [ -81.998424541899681, 28.86530756472628 ], [ -81.99758216985353, 28.865306072417408 ], [ -81.99723667922575, 28.865302171945306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986752498433631, 28.865418365097465 ], [ -81.986752711638374, 28.865418365118654 ], [ -81.987588594262618, 28.865417527964393 ], [ -81.987756054464683, 28.865424548952419 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997028377394955, 28.865302167278216 ], [ -81.99266204156585, 28.865298518798614 ], [ -81.991141338181876, 28.865295446321884 ], [ -81.989728985664939, 28.865293908053633 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989182714810397, 28.865293418070941 ], [ -81.98782055966899, 28.865292225710487 ], [ -81.987350687216747, 28.865288121545266 ], [ -81.987073487572502, 28.865288094938588 ], [ -81.98675204287477, 28.865288064273788 ], [ -81.986751838895501, 28.865288064253505 ], [ -81.986586694604071, 28.865288047737458 ], [ -81.984540095154813, 28.865291145846324 ], [ -81.983693522577141, 28.865291785043116 ], [ -81.982327083923607, 28.865290871414295 ], [ -81.980704615821651, 28.865293279157157 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990258821819538, 28.87513397278547 ], [ -81.990353298731137, 28.875198106322937 ], [ -81.990378073498462, 28.875233338520356 ], [ -81.990390603041931, 28.875259851780562 ], [ -81.990416184769884, 28.875325611626401 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990597274381159, 28.875115918681203 ], [ -81.990516217577394, 28.87511296598873 ], [ -81.990479473056524, 28.875104285913288 ], [ -81.990445415674685, 28.875092450669847 ], [ -81.990393434651509, 28.875075090225238 ], [ -81.990328906400691, 28.87504510743981 ], [ -81.990320017088166, 28.875039890581014 ], [ -81.990320001712362, 28.875039880654562 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991011061261219, 28.874954017487486 ], [ -81.991010872624699, 28.874954186205237 ], [ -81.990927018559304, 28.875028704355966 ], [ -81.990875624183062, 28.875064080105879 ], [ -81.990823638181098, 28.875089321134091 ], [ -81.990757377320548, 28.875104186474129 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990961305123321, 28.875261899543627 ], [ -81.990980474471016, 28.875186362798381 ], [ -81.991001089713166, 28.875150865818139 ], [ -81.991033358691169, 28.875113001982243 ], [ -81.991116015902122, 28.875032954376643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984149353225604, 28.872166354912899 ], [ -81.984467296978295, 28.872252952000999 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ardson Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980912810835747, 28.871757177765971 ], [ -81.980879982493377, 28.87166918591652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Colony Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959679074509097, 28.866745304507166 ], [ -81.959725606750524, 28.866767139772904 ], [ -81.959854415132611, 28.866827217601429 ], [ -81.960018043240808, 28.866892368500668 ], [ -81.96014279814969, 28.86693584607384 ], [ -81.960293903255319, 28.8669807804235 ], [ -81.960461205113518, 28.867020361495868 ], [ -81.960581311085591, 28.867044166179124 ], [ -81.960699555766425, 28.867062232463795 ], [ -81.96083176797687, 28.867079483427823 ], [ -81.96099843169155, 28.867094285495522 ], [ -81.961117374481447, 28.867098874813987 ], [ -81.961253786674774, 28.867098914241886 ], [ -81.961344727112433, 28.86709893954788 ], [ -81.961490062105213, 28.867091148409667 ], [ -81.961609976696778, 28.867079003454609 ], [ -81.961759025750609, 28.867059032895387 ], [ -81.961885339394726, 28.867039056622168 ], [ -81.962036918919949, 28.867005744114138 ], [ -81.962148077860633, 28.86698131495357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Colony Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957189232724232, 28.866251859265162 ], [ -81.957294618298505, 28.866266549823585 ], [ -81.957611436427612, 28.866292850347737 ], [ -81.957856464570881, 28.866304044720859 ], [ -81.958062496671516, 28.866307132818541 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957307963164837, 28.865344542483182 ], [ -81.957582978947443, 28.865366271347135 ], [ -81.957992503247723, 28.865380793574118 ], [ -81.958734644200717, 28.865380283711769 ], [ -81.959494664118537, 28.865394169605622 ], [ -81.95968384513553, 28.865397323228269 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959684486974709, 28.865257086500257 ], [ -81.958050603765415, 28.865253503918488 ], [ -81.957839571440118, 28.865250894260576 ], [ -81.957686360579117, 28.865243210797939 ], [ -81.957512911730475, 28.865235522566927 ], [ -81.95728805471461, 28.865213677779746 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004260938600055, 28.848656437533027 ], [ -82.004265880645136, 28.848661647316888 ], [ -82.004312738066616, 28.848716649736883 ], [ -82.004325754768487, 28.848744151672225 ], [ -82.004336384586296, 28.848771653670632 ], [ -82.004341375604369, 28.848798009892015 ], [ -82.004345933311868, 28.848829714092044 ], [ -82.004345499157296, 28.848867146264823 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004598433352371, 28.848697949606336 ], [ -82.004579233553756, 28.848694200176833 ], [ -82.004546693062821, 28.848686753476247 ], [ -82.004518710154585, 28.848680451664993 ], [ -82.0044861705518, 28.848669280230833 ], [ -82.004454606488963, 28.848654765718088 ], [ -82.004397336301125, 28.84862153627558 ], [ -82.00437130518165, 28.848599763442241 ], [ -82.004329996763076, 28.848555958509245 ], [ -82.004329972165621, 28.848555933245351 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998141818424969, 28.848151592553471 ], [ -81.998350960652445, 28.848084960197532 ], [ -81.998555043912987, 28.8480199389756 ], [ -81.99871503653462, 28.847968964084497 ], [ -81.998802069454669, 28.847941235309612 ], [ -81.998885838161172, 28.847914546806916 ], [ -81.998970141799816, 28.84788768591627 ], [ -81.999054491513732, 28.847860810536286 ], [ -81.999152751537949, 28.847829504883677 ], [ -81.999241521354278, 28.847801222723756 ], [ -81.999292218831854, 28.847785068165866 ], [ -81.999326355684872, 28.847774191077658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999878333511177, 28.851948057115873 ], [ -81.999834964882879, 28.852014962076854 ], [ -81.999722308596759, 28.852201668634997 ], [ -81.999623591453442, 28.852396179189057 ], [ -81.999559451350748, 28.852535404661609 ], [ -81.999473163292592, 28.852760367958634 ], [ -81.999392405926045, 28.853019559277783 ], [ -81.999365463276405, 28.8531269370771 ], [ -81.99934268166534, 28.853235800088921 ], [ -81.999328579296545, 28.853305987632819 ], [ -81.999315022069183, 28.853384769636509 ], [ -81.999301462165079, 28.853423732000028 ], [ -81.999280310804664, 28.853459733849348 ], [ -81.999267293284021, 28.853477400001466 ], [ -81.999253734634678, 28.853492678648703 ], [ -81.999242345750375, 28.853504137850603 ], [ -81.999222397814066, 28.853520580425428 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heald Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956959782665933, 28.863530053043569 ], [ -81.956948570975811, 28.864081673741691 ], [ -81.95695318634597, 28.864111933072628 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960565054886501, 28.852972862509958 ], [ -81.960527085895635, 28.85306041827635 ], [ -81.960431530310188, 28.853331594233815 ], [ -81.960355279086556, 28.853595490598082 ], [ -81.960209319538251, 28.854053818440864 ], [ -81.960085950743974, 28.854432703045525 ], [ -81.960002517262183, 28.854765761415024 ], [ -81.95993642880893, 28.855123271036458 ], [ -81.959891636547056, 28.85540461077813 ], [ -81.959864431927286, 28.855629970438947 ], [ -81.959852447268005, 28.85576556703494 ], [ -81.959845830707323, 28.856045362562899 ], [ -81.95986088199848, 28.856392010899697 ], [ -81.959887886301246, 28.856688051612927 ], [ -81.95993764866482, 28.857039484361444 ], [ -81.959977701888135, 28.857250539041289 ], [ -81.960017773302894, 28.857414801093249 ], [ -81.960067602229969, 28.857595299392024 ], [ -81.960133690050981, 28.857802541387102 ], [ -81.960212788260634, 28.858032704830475 ], [ -81.960308156183231, 28.858264784108925 ], [ -81.960389440265942, 28.858454841547726 ], [ -81.960454473185692, 28.858590460828292 ], [ -81.960533604297993, 28.858737546191023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960672123456561, 28.858715194326599 ], [ -81.960531215491216, 28.858426760251053 ], [ -81.960420663425481, 28.85818894793114 ], [ -81.960325639010264, 28.8579372446093 ], [ -81.960210787192793, 28.857595341876269 ], [ -81.960149040580461, 28.857378551208292 ], [ -81.960095973216411, 28.857156988989637 ], [ -81.960059171767753, 28.856951666747925 ], [ -81.960035382390885, 28.8567587622695 ], [ -81.960019159335317, 28.856634614751105 ], [ -81.960000810782404, 28.856393008173189 ], [ -81.959985720363093, 28.85614662846001 ], [ -81.959984714134237, 28.85594131501934 ], [ -81.959995664336262, 28.8556758457621 ], [ -81.960023957838658, 28.855438073391817 ], [ -81.960067453582027, 28.855161153613736 ], [ -81.960112027953429, 28.854898558221425 ], [ -81.960179600235392, 28.854614551608478 ], [ -81.960246733841615, 28.854372424405135 ], [ -81.960353367905782, 28.854050805819835 ], [ -81.960531266599133, 28.85347772842978 ], [ -81.9605389873619, 28.8534530878417 ], [ -81.960539053036157, 28.853452876721587 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961738687262368, 28.860249871818851 ], [ -81.961712796116714, 28.860280821537476 ], [ -81.961682187683934, 28.860308232089732 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961437276338884, 28.859889950284007 ], [ -81.961437323490799, 28.85988994127451 ], [ -81.961470250111134, 28.859885408218446 ], [ -81.961503553530108, 28.859884308838268 ], [ -81.961536773313199, 28.859886658333409 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980704615821651, 28.865293279157157 ], [ -81.979247621093506, 28.865290085317412 ], [ -81.976803516812751, 28.865289684193666 ], [ -81.974955971500833, 28.865291389876347 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974961220003564, 28.865420630517402 ], [ -81.97521373652225, 28.8654201956329 ], [ -81.976207106691007, 28.865419827121237 ], [ -81.977439484367295, 28.865420040367972 ], [ -81.978377397213507, 28.865422114312679 ], [ -81.979428734768518, 28.865420360815609 ], [ -81.979928229116396, 28.865416596464492 ], [ -81.98062441048674, 28.865420670138359 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960539053036157, 28.853452876721587 ], [ -81.96061054483522, 28.853224692091235 ], [ -81.960690814879541, 28.853014710381981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlotte Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966396332845974, 28.859375153029113 ], [ -81.966416681206155, 28.859303208367695 ], [ -81.966498345381055, 28.85902362177298 ], [ -81.966566111195974, 28.858783757415704 ], [ -81.966589230411358, 28.858617741851479 ], [ -81.966589866353601, 28.858597226312149 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97353423433313, 28.85882567834971 ], [ -81.973708655183245, 28.858674333935003 ], [ -81.97381674457236, 28.858575313627487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975250506733062, 28.85781668375213 ], [ -81.975399665762637, 28.857780900544025 ], [ -81.975565095062223, 28.857752282632578 ], [ -81.975744081616355, 28.857730829467037 ], [ -81.975820158369046, 28.857726378611126 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971564753371723, 28.848215991148752 ], [ -81.971735247417257, 28.848214998542101 ], [ -81.97190558716612, 28.848208544932099 ], [ -81.972075545071405, 28.84819664019729 ], [ -81.972244898709249, 28.848179299632257 ], [ -81.972413425654764, 28.848156543946544 ], [ -81.972580899381128, 28.848128405579867 ], [ -81.972747100534761, 28.848094922388352 ], [ -81.972935316397709, 28.848053815340432 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968928867180182, 28.847766465393303 ], [ -81.969093368807009, 28.847787527096472 ], [ -81.969256643902384, 28.847814989276642 ], [ -81.969418380956469, 28.84784879772894 ], [ -81.969788512807071, 28.847933841773191 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977566128466847, 28.847937856675653 ], [ -81.977566162287943, 28.847937852169785 ], [ -81.977684515355861, 28.847923184194844 ], [ -81.977869883696684, 28.847892984980049 ], [ -81.978042001599206, 28.847858129244891 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anna Maria Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98502703042584, 28.849335515626819 ], [ -81.985089198454389, 28.849183300874717 ], [ -81.985158574831644, 28.849033519508403 ], [ -81.985193368376557, 28.848966590318469 ], [ -81.985193515998034, 28.848966305206176 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986716111951523, 28.847140077994467 ], [ -81.986801739139182, 28.847207779306121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shale Trail Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988491494875646, 28.848408006601655 ], [ -81.988540105043057, 28.848333769957904 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990664915649717, 28.849174983583829 ], [ -81.990782394438185, 28.849201053093687 ], [ -81.991003308198472, 28.849244779559182 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Resthaven Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984893877132336, 28.853614720004682 ], [ -81.984991967576789, 28.853603251034595 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984821256040163, 28.855409077330297 ], [ -81.984911046349652, 28.85542488235625 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014177258825484, 28.863341947978313 ], [ -82.014177334697024, 28.863342112190015 ], [ -82.014256699668223, 28.863514752832451 ], [ -82.014307036853779, 28.863633591085676 ], [ -82.01434984683182, 28.863754693059754 ], [ -82.014384996278949, 28.863877688830797 ], [ -82.01441237646975, 28.864002206666669 ], [ -82.014431907376064, 28.86412786580809 ], [ -82.014443527418081, 28.864254280981015 ], [ -82.014447201665831, 28.864381070516682 ], [ -82.014447120137447, 28.86441513519615 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999162645153461, 28.853919057883417 ], [ -81.999213052668807, 28.853976356433577 ], [ -81.999232035770035, 28.854003094576626 ], [ -81.999245051878219, 28.854026967857767 ], [ -81.999255898238744, 28.85405227308167 ], [ -81.999267828914753, 28.854081877796361 ], [ -81.999275422102201, 28.85411768763516 ], [ -81.999303916750463, 28.854407497436057 ], [ -81.99932852039538, 28.85455313235795 ], [ -81.999356288012393, 28.854700575510481 ], [ -81.999395337017731, 28.854845726862546 ], [ -81.999461284382448, 28.855079496435732 ], [ -81.999544587634929, 28.85537056332435 ], [ -81.999625286998238, 28.855663157741422 ], [ -81.999685162932735, 28.85586025747666 ], [ -81.999752846488263, 28.856142920079744 ], [ -81.999773484793991, 28.856268166388105 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9999095120193, 28.856241568553063 ], [ -81.999909486396689, 28.856241416063462 ], [ -81.999895164392498, 28.856156672454411 ], [ -81.999851774946663, 28.855954989148874 ], [ -81.999801446767492, 28.855776986801722 ], [ -81.999673018242618, 28.855314795067784 ], [ -81.999535045933399, 28.854833504043402 ], [ -81.999475172230646, 28.854598206023201 ], [ -81.999445070118853, 28.854406655494138 ], [ -81.999423175551257, 28.854222713235337 ], [ -81.999418620758291, 28.854121871574407 ], [ -81.999421875165908, 28.854088639688779 ], [ -81.999426431187942, 28.854057699665312 ], [ -81.999440097681571, 28.854022748040482 ], [ -81.999456585670274, 28.85399620050006 ], [ -81.999470470327822, 28.853975192196629 ], [ -81.999485886147255, 28.853959800749656 ], [ -81.999506582365754, 28.853936898536915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998394229812561, 28.860448527748467 ], [ -81.998214590081702, 28.86043307061739 ], [ -81.997851797957765, 28.86032764417973 ], [ -81.997727960480262, 28.860296781394354 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998394229812561, 28.860448527748467 ], [ -81.998394192912826, 28.860448562035554 ], [ -81.998367952080642, 28.860472646902871 ], [ -81.998344185418276, 28.860502178107613 ], [ -81.998325633760601, 28.860534474039461 ], [ -81.998312882398707, 28.860568191177268 ], [ -81.99830658535096, 28.860599390972897 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001775478653627, 28.957231246751519 ], [ -82.0016463390741, 28.95725558363538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Trce", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000332586580356, 28.933075595257911 ], [ -82.000456944577834, 28.933125946131124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southern Trce", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000525249869895, 28.933014181613913 ], [ -82.000397235414724, 28.932969465629711 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00390950204357, 28.927132494632779 ], [ -82.00389887675307, 28.927260418734814 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004038172257765, 28.927262226996639 ], [ -82.004040898023277, 28.9271345927264 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parr Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003811140218062, 28.924958312086968 ], [ -82.003950227964708, 28.924942802688495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parr Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003927163987072, 28.924815323318882 ], [ -82.003789754283986, 28.924830570987371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985129854189864, 28.909297200421829 ], [ -81.984999270723563, 28.909278249254061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ternberry Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985109820207356, 28.909449543049387 ], [ -81.985129854189864, 28.909297200421829 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ternberry Forest Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984999270723563, 28.909278249254061 ], [ -81.984985952119189, 28.909438448926675 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997028377394955, 28.865302167278216 ], [ -81.99702673094383, 28.865469497667053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99723858061742, 28.865472667695055 ], [ -81.99723667922575, 28.865302171945306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017474023905763, 28.839682999834992 ], [ -82.017426385221839, 28.839857615671772 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01755914121577, 28.839902671196462 ], [ -82.017606810169866, 28.839726399577302 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962968379559797, 28.86526671233548 ], [ -81.962971288945297, 28.865426329738508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963196224248748, 28.865428641927622 ], [ -81.963191570776218, 28.865269540168722 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980005940084311, 28.812468750879567 ], [ -81.979915285185442, 28.812765390035683 ], [ -81.97984292317156, 28.812969258087723 ], [ -81.979641072599875, 28.813495179967958 ], [ -81.97941567484844, 28.814075597449126 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97954266786455, 28.814160497235711 ], [ -81.97956630120369, 28.814100229201717 ], [ -81.97978098425169, 28.813538327074088 ], [ -81.979904787737766, 28.813218414301982 ], [ -81.980019347779432, 28.812912084311311 ], [ -81.980088783013002, 28.812699714156327 ], [ -81.980145803973116, 28.812492952689389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Colony Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963190137986103, 28.866890868149103 ], [ -81.962977943345408, 28.866887041786857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Colony Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962975376345355, 28.867002671255126 ], [ -81.963190096174344, 28.867005695263892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963190349413395, 28.866295624961658 ], [ -81.963190372088789, 28.866228898724927 ], [ -81.963196224248748, 28.865428641927622 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963190096174344, 28.867005695263892 ], [ -81.963190137986103, 28.866890868149103 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968713624774324, 28.920036024513536 ], [ -81.968716942969948, 28.920159512655875 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96884565349238, 28.920160222990791 ], [ -81.968846337076471, 28.920036055451078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016509287747056, 28.843604777563328 ], [ -82.016547470328675, 28.84361376817796 ], [ -82.016586831720545, 28.84361791776897 ], [ -82.016626464946853, 28.843617115458677 ], [ -82.016665567581484, 28.843611378485623 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010665533616233, 28.847871063201243 ], [ -82.01066557358557, 28.847871065905217 ], [ -82.010702525280934, 28.847868888612325 ], [ -82.010738818597147, 28.847862401945097 ], [ -82.010773808912091, 28.847851720545009 ], [ -82.010806873133689, 28.847837034846318 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004520872602853, 28.849175553170383 ], [ -82.004565268926072, 28.849185391549732 ], [ -82.004610635537517, 28.84918868185256 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999346324859729, 28.853981241471519 ], [ -81.999347338496008, 28.853981306443515 ], [ -81.99938959457748, 28.853978448185028 ], [ -81.99943085962019, 28.85396993877 ], [ -81.999470163025464, 28.85395598031079 ], [ -81.999506582365754, 28.853936898536915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998840179765295, 28.860718350713874 ], [ -81.99884027406577, 28.860718175667724 ], [ -81.99885353066135, 28.860679608599526 ], [ -81.998859410514811, 28.860639647399005 ], [ -81.998857753722092, 28.860599381146979 ], [ -81.998857632782745, 28.860598853297748 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98277785571814, 28.881926821331181 ], [ -81.982778807233956, 28.881925961560565 ], [ -81.982797362769617, 28.881909462662581 ], [ -81.982824125733131, 28.88187577507215 ], [ -81.982844051281546, 28.881838650633902 ], [ -81.982856557001725, 28.88179877231827 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982791589924616, 28.881592717094946 ], [ -81.982791363396331, 28.88159249870878 ], [ -81.982771835797593, 28.881573932239345 ], [ -81.982734929477317, 28.8815484879837 ], [ -81.982693528762738, 28.881529231119497 ], [ -81.982656576953559, 28.881518337351011 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98231377589336, 28.881804457325114 ], [ -81.982315579621869, 28.881813829769577 ], [ -81.982330806114618, 28.881852678570869 ], [ -81.982353454399586, 28.881888779038285 ], [ -81.982382257588455, 28.881920773939619 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Prairie Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000559092883492, 28.85393227646216 ], [ -82.000509877792226, 28.853855770842834 ], [ -82.00033260390822, 28.853761678095797 ], [ -82.000244963267008, 28.853732150797665 ], [ -82.000186848102445, 28.853717622576557 ], [ -82.000127795151357, 28.853708717493255 ], [ -82.000108532069206, 28.853706912801304 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999619450802371, 28.853777613267173 ], [ -81.999619894752712, 28.853755551001559 ], [ -81.999620169565915, 28.853737113295683 ], [ -81.999620169656311, 28.853725004358246 ], [ -81.999619344748979, 28.853705740136302 ], [ -81.999618543364775, 28.853693167410707 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Prairie Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999098288453311, 28.853632173031066 ], [ -81.999034629444282, 28.853628473068088 ], [ -81.999009645194946, 28.853634420856057 ], [ -81.998964435317774, 28.85364750750302 ], [ -81.998862117180863, 28.853686768577173 ], [ -81.998815718062957, 28.853720081238958 ], [ -81.998752377792897, 28.853779200544583 ], [ -81.998715211035901, 28.853809180150819 ], [ -81.998702411789125, 28.853820262127943 ], [ -81.998695699548293, 28.853826973402636 ], [ -81.998691953422735, 28.853831968524396 ], [ -81.998689751857285, 28.853835630957839 ], [ -81.998689095898129, 28.853836674015682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Prairie Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998689095898129, 28.853836674015682 ], [ -81.998702567314609, 28.853836338503299 ], [ -81.998715210616268, 28.853835245946605 ], [ -81.998737170403729, 28.853830468471727 ], [ -81.998768439610885, 28.853814833649096 ], [ -81.9988231610497, 28.853781331602029 ], [ -81.998874531782874, 28.853764580799179 ], [ -81.998900217007247, 28.853765697191207 ], [ -81.998969454556558, 28.853777981799265 ], [ -81.999033110292089, 28.853803667364211 ], [ -81.999093177815126, 28.853832204155747 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999093177815126, 28.853832204155747 ], [ -81.999093286452975, 28.853832409882191 ], [ -81.999106766771931, 28.853857945227269 ], [ -81.999131893064742, 28.853890496082997 ], [ -81.999162645153461, 28.853919057883417 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999222397814066, 28.853520580425428 ], [ -81.999184279254351, 28.853541138283152 ], [ -81.999150420131187, 28.853566833888312 ], [ -81.999121704945864, 28.853596995033271 ], [ -81.999098884966145, 28.8536308358192 ], [ -81.999098288453311, 28.853632173031066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oleander Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069656015513303, 28.60929187281851 ], [ -82.069958279302341, 28.609270660269793 ], [ -82.07017481093088, 28.60925638569287 ], [ -82.070296164526397, 28.6092492474375 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oleander Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0703401606185, 28.608978781613864 ], [ -82.070348629050173, 28.608548578129898 ], [ -82.07034862802044, 28.608548567302339 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chestnut Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069636614130275, 28.607988505344672 ], [ -82.069637491889324, 28.607978316567085 ], [ -82.069656679243536, 28.607849428171832 ], [ -82.069684439369126, 28.607571824200559 ], [ -82.069668576459648, 28.607417159262106 ], [ -82.069652714158707, 28.607230768004701 ], [ -82.06966204931129, 28.607172891620575 ], [ -82.069662067635477, 28.607172768892902 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fig Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070578446340974, 28.607056282254565 ], [ -82.070578446084994, 28.606913514743137 ], [ -82.070571308207946, 28.606768366913492 ], [ -82.070569902684312, 28.60671233315216 ], [ -82.070557251315051, 28.606674082195418 ], [ -82.070541042071596, 28.606644111143854 ], [ -82.070527414708309, 28.606621891678945 ], [ -82.070517818615784, 28.606611258909332 ], [ -82.07051133507467, 28.606606849791863 ], [ -82.070501999297036, 28.606604775593489 ], [ -82.070421402357127, 28.606599424577823 ], [ -82.070200111915454, 28.606589905441002 ], [ -82.069985959023654, 28.606578006439729 ], [ -82.069706151454682, 28.606586130921531 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fig Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069706151454682, 28.606586130921531 ], [ -82.069643114519252, 28.606566141769875 ], [ -82.069605827731237, 28.606545426685173 ], [ -82.06956301571843, 28.606532996979936 ], [ -82.069511918750635, 28.606528854046442 ], [ -82.069304769208784, 28.606535757018083 ], [ -82.06911695454086, 28.606537137538272 ], [ -82.06892775713176, 28.606553707602036 ], [ -82.068760656481189, 28.606563374255138 ], [ -82.068715083741807, 28.606574421875816 ], [ -82.068673653533097, 28.606592374831145 ], [ -82.06864465180476, 28.606621374337905 ], [ -82.068629461104734, 28.606660041837912 ], [ -82.06862393737687, 28.606706996117847 ], [ -82.068633603786111, 28.606755331507941 ], [ -82.068646032856762, 28.606793998734769 ], [ -82.068653981535988, 28.606807790654599 ], [ -82.06866273772269, 28.606819592507829 ], [ -82.068675492600804, 28.606834059680907 ], [ -82.068688436432708, 28.606845053647092 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Apple Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068631198292707, 28.607371637121201 ], [ -82.068632914741997, 28.607334903761757 ], [ -82.068651950655834, 28.607115994411185 ], [ -82.068656710110957, 28.606956570007881 ], [ -82.068659288076375, 28.606912867434307 ], [ -82.068672212870439, 28.606870949028188 ], [ -82.068688436432708, 28.606845053647092 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Apple Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068688436432708, 28.606845053647092 ], [ -82.068719244022475, 28.606830321948916 ], [ -82.068812043368268, 28.606802364252907 ], [ -82.068960760339948, 28.606780949266259 ], [ -82.06917074826471, 28.606743474070882 ], [ -82.06923023495024, 28.606735147058874 ], [ -82.069292998011434, 28.606724150144238 ], [ -82.069347767746081, 28.606712497627178 ], [ -82.069385057309589, 28.60670783714232 ], [ -82.06941419088858, 28.60671016669686 ], [ -82.069452645320453, 28.606718325165538 ], [ -82.069505084747419, 28.60672997852944 ], [ -82.06956684581354, 28.606757945989571 ], [ -82.069622780712919, 28.606799897250454 ], [ -82.069655410038408, 28.606840683662728 ], [ -82.06967284338478, 28.606863490511806 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chestnut Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06967284338478, 28.606863490511806 ], [ -82.069672851523151, 28.606863427343789 ], [ -82.069706151454682, 28.606586130921531 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elderberry Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069656015513303, 28.60929187281851 ], [ -82.068956561359357, 28.609301306203072 ], [ -82.068722918677295, 28.609304797209187 ], [ -82.068689089886689, 28.609305462921409 ], [ -82.06868249178855, 28.609304285058176 ], [ -82.068676209953665, 28.60930199986425 ], [ -82.068668605875914, 28.609297959376068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elderberry Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068668605875914, 28.609297959376068 ], [ -82.068392222173046, 28.609310174260404 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tulip Poplar Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069613055307798, 28.608733345613032 ], [ -82.069497452908777, 28.608704725086984 ], [ -82.069438917417401, 28.608693304002816 ], [ -82.069261885154987, 28.608700440719101 ], [ -82.068994909474696, 28.608716144143809 ], [ -82.068917814298203, 28.608720426576319 ], [ -82.068753631129738, 28.608709003146739 ], [ -82.068660832306009, 28.608694726729585 ], [ -82.068627938504932, 28.608687846584058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chestnut Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069656015513303, 28.60929187281851 ], [ -82.069633236788931, 28.60916628665149 ], [ -82.069623748772145, 28.609111942572259 ], [ -82.069609089772541, 28.608987603825994 ], [ -82.069613054565153, 28.608840869457396 ], [ -82.069613054912395, 28.608734297582902 ], [ -82.069613055307798, 28.608733345613032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Apple Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068668605875914, 28.609297959376068 ], [ -82.068640052789377, 28.609278923434356 ], [ -82.068621016874118, 28.60926226761698 ], [ -82.068610477537177, 28.609249400992056 ], [ -82.068602544462919, 28.609236295748399 ], [ -82.068600648119656, 28.609225947748765 ], [ -82.068599601896707, 28.60920991908862 ], [ -82.068594843287144, 28.60914567299255 ], [ -82.068621016957437, 28.608960075465998 ], [ -82.068627938504932, 28.608687846584058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mimosa Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069647500737929, 28.608356067518095 ], [ -82.069572423916753, 28.608348899494239 ], [ -82.069485574536614, 28.608333433144452 ], [ -82.069377308648171, 28.608322724779931 ], [ -82.069217884575167, 28.608315585625636 ], [ -82.069052511654135, 28.608322722505605 ], [ -82.068914501407164, 28.608319152711072 ], [ -82.068797908842825, 28.608325100765882 ], [ -82.068714627810422, 28.608335807240781 ], [ -82.068653597078622, 28.608364397766323 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chestnut Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069613055307798, 28.608733345613032 ], [ -82.069613055046432, 28.60865844500108 ], [ -82.069640816410086, 28.608444292784164 ], [ -82.069647494657545, 28.608356150536558 ], [ -82.069647500737929, 28.608356067518095 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Apple Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068627938504932, 28.608687846584058 ], [ -82.068628154840709, 28.608679299502704 ], [ -82.068651949745387, 28.608450870826417 ], [ -82.068653597078622, 28.608364397766323 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hazelnut Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069177807097347, 28.60793762420899 ], [ -82.069075491704737, 28.607931704936998 ], [ -82.068797569996434, 28.607914570974067 ], [ -82.068631928227219, 28.607905154029588 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chestnut Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069647500737929, 28.608356067518095 ], [ -82.069660645320624, 28.608182553312794 ], [ -82.069635800511463, 28.608088270383014 ], [ -82.069632884960512, 28.608031852991157 ], [ -82.069636611084135, 28.607988537830511 ], [ -82.069636614130275, 28.607988505344672 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Apple Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068653597078622, 28.608364397766323 ], [ -82.06865359905153, 28.608364286777395 ], [ -82.068656709816807, 28.608201028278636 ], [ -82.068649570158826, 28.608008291811437 ], [ -82.068631928227219, 28.607905154029588 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avocado Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069134509669581, 28.607654451699801 ], [ -82.068970754460636, 28.607668002407671 ], [ -82.068922629177052, 28.60767449004501 ], [ -82.068874505402505, 28.607688008705988 ], [ -82.068843141752012, 28.607693956426495 ], [ -82.068798261927611, 28.607702065703812 ], [ -82.068740944608052, 28.60770909567778 ], [ -82.068694441311877, 28.607714502319777 ], [ -82.06865929461388, 28.607716124262815 ], [ -82.068619766464053, 28.607714602825695 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Apple Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068631928227219, 28.607905154029588 ], [ -82.068631926175172, 28.607905143202519 ], [ -82.068618637269765, 28.60782745286793 ], [ -82.068619766464053, 28.607714602825695 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cherry Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069662067635477, 28.607172768892902 ], [ -82.069500729095253, 28.607168723362836 ], [ -82.069378900750294, 28.607168722725628 ], [ -82.069295142970631, 28.607174433536169 ], [ -82.069144760618045, 28.607222021229205 ], [ -82.069036256831581, 28.607286741207357 ], [ -82.069005270134497, 28.607298218322281 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chestnut Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069662067635477, 28.607172768892902 ], [ -82.069665311664082, 28.607108600867331 ], [ -82.06966064645448, 28.606965062416783 ], [ -82.06967284338478, 28.606863490511806 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Apple Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068619766464053, 28.607714602825695 ], [ -82.068621017563018, 28.607589507050026 ], [ -82.068631193245807, 28.60737173818594 ], [ -82.068631198292707, 28.607371637121201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hazelnut Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069636614130275, 28.607988505344672 ], [ -82.069416230625222, 28.607958356957688 ], [ -82.069305824316217, 28.607945031023821 ], [ -82.069177853112151, 28.607937626892831 ], [ -82.069177807097347, 28.60793762420899 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cherry Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069005270134497, 28.607298218322281 ], [ -82.069005257867985, 28.607298223742507 ], [ -82.068984860741452, 28.607305777564719 ], [ -82.068855417399917, 28.607330522476474 ], [ -82.068745009782447, 28.60735336462303 ], [ -82.068631198292707, 28.607371637121201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grapefruit Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069177807097347, 28.60793762420899 ], [ -82.069158667426194, 28.607818434602841 ], [ -82.06913460724536, 28.607655120285386 ], [ -82.069134509669581, 28.607654451699801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013714337356888, 28.844288770750243 ], [ -82.01380893714537, 28.84437961482412 ], [ -82.014413053926845, 28.844796755073588 ], [ -82.014414112661342, 28.844797486736407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014414067970748, 28.844700914700216 ], [ -82.014119466412581, 28.844516548092336 ], [ -82.013840051857585, 28.844342394366841 ], [ -82.013714337356888, 28.844288770750243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hendry Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010644392981021, 28.858199161245189 ], [ -82.010643513299527, 28.858154448509108 ], [ -82.010639567728873, 28.857981225267039 ], [ -82.010643476856671, 28.857782011457651 ], [ -82.010659992194036, 28.857650165482195 ], [ -82.010675127428698, 28.857575993113986 ], [ -82.010693382295273, 28.857478225244535 ], [ -82.010718942100297, 28.857382681910984 ], [ -82.01076529577729, 28.857234751011518 ], [ -82.010859511429643, 28.857031063982152 ], [ -82.010938016739757, 28.856890797469024 ], [ -82.011058872236788, 28.856711220552661 ], [ -82.011146344681535, 28.85660581557206 ], [ -82.011230438862185, 28.856511174391564 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kiessel Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024491341862912, 28.847451594272936 ], [ -82.024383879267589, 28.847355125114497 ], [ -82.024328768796892, 28.847294267936871 ], [ -82.024281172192119, 28.847236433049463 ], [ -82.024228073118081, 28.847182438415917 ], [ -82.024167088327346, 28.847134614198158 ], [ -82.024147577251227, 28.847120336796706 ], [ -82.024120451077536, 28.847112723341208 ], [ -82.024087822476645, 28.847113887563378 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kiessel Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024087822476645, 28.847113887563378 ], [ -82.024087977061242, 28.847126744492588 ], [ -82.024087977651234, 28.847133883536323 ], [ -82.024089464528984, 28.847142211561422 ], [ -82.024097495350844, 28.847152026353843 ], [ -82.024170365855312, 28.847216272306106 ], [ -82.02420754469216, 28.847250774518038 ], [ -82.024298542163578, 28.847375354428973 ], [ -82.024336266846433, 28.847474949751483 ], [ -82.024356584487791, 28.847511282043662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kiessel Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025156351620737, 28.84797195235706 ], [ -82.025183928886435, 28.847970316887231 ], [ -82.025246876742486, 28.8479600020164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kiessel Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025156351620737, 28.84797195235706 ], [ -82.025147021640223, 28.847955628631251 ], [ -82.025138518689459, 28.847947872147689 ], [ -82.025127079005387, 28.847942151797206 ], [ -82.025024763204115, 28.847924448102404 ], [ -82.024950524328688, 28.847903032612585 ], [ -82.024872001691861, 28.847868769015971 ], [ -82.024806759024273, 28.847834274717062 ], [ -82.024797079996219, 28.847828287843512 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kiessel Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024356584487791, 28.847511282043662 ], [ -82.024401549633694, 28.847632483591919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kiessel Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024533522041779, 28.847574664944482 ], [ -82.024491341862912, 28.847451594272936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024491341862912, 28.847451594272936 ], [ -82.024356584487791, 28.847511282043662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024401549633694, 28.847632483591919 ], [ -82.024533522041779, 28.847574664944482 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cottonwood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071151456128305, 28.607144221813492 ], [ -82.071114336616446, 28.607109957504999 ], [ -82.071081499773811, 28.607089969613885 ], [ -82.071015827035879, 28.607075693384445 ], [ -82.070947297311861, 28.607064270900381 ], [ -82.070795963860931, 28.60706141463373 ], [ -82.070661762394877, 28.607059985906115 ], [ -82.070578446340974, 28.607056282254565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cottonwood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070578446340974, 28.607056282254565 ], [ -82.070381936566704, 28.607047135068253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cottonwood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070381936566704, 28.607047135068253 ], [ -82.069956888271804, 28.607045894173311 ], [ -82.06987380143589, 28.607040859018802 ], [ -82.069824704987425, 28.607047152565244 ], [ -82.069788197662234, 28.607059741644665 ], [ -82.069727770068255, 28.607091212624312 ], [ -82.069687486599861, 28.607123944750771 ], [ -82.069662067635477, 28.607172768892902 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Plum Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071166834890192, 28.607364823603518 ], [ -82.070372139935017, 28.60735419233195 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oleander Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070372139935017, 28.60735419233195 ], [ -82.07037522976762, 28.607197307017927 ], [ -82.070381936566704, 28.607047135068253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pecan Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071170734791053, 28.607735366129358 ], [ -82.070364480731712, 28.607743297453592 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oleander Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070364480731712, 28.607743297453592 ], [ -82.070372139935017, 28.60735419233195 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oleander Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070357542514543, 28.608095795111591 ], [ -82.070364480731712, 28.607743297453592 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crape Myrtle Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071179346773107, 28.60855570059487 ], [ -82.07034862802044, 28.608548567302339 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oleander Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07034862802044, 28.608548567302339 ], [ -82.070357542522956, 28.608095807744348 ], [ -82.070357542514543, 28.608095795111591 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Banana Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071183740533016, 28.608985268524314 ], [ -82.0703401606185, 28.608978781613864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oleander Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070330012560788, 28.609217622000472 ], [ -82.070333619087833, 28.609213139127782 ], [ -82.070343105611073, 28.609192484196093 ], [ -82.070339536490636, 28.609010455000469 ], [ -82.070340159614602, 28.60897880958694 ], [ -82.0703401606185, 28.608978781613864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Papaya Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071186018977116, 28.609645917976049 ], [ -82.070933060665126, 28.609648802901059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Plumeria Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070330012560788, 28.609217622000472 ], [ -82.070424615700674, 28.609274707006101 ], [ -82.07043856344545, 28.60928466891011 ], [ -82.070447861993728, 28.609294964358192 ], [ -82.070462716443316, 28.60931524045224 ], [ -82.070466458495389, 28.609323854983543 ], [ -82.070491271019904, 28.609421840063888 ], [ -82.070512209618272, 28.609589354291128 ], [ -82.070523630670593, 28.609734025231305 ], [ -82.070525534409754, 28.609850143778282 ], [ -82.070546473832422, 28.609905346344707 ], [ -82.070580737965855, 28.609937707420908 ], [ -82.07065116933498, 28.609964357909288 ], [ -82.070748251533388, 28.609971972379984 ], [ -82.070889115999307, 28.609975780658136 ], [ -82.071056031921884, 28.609963467619284 ], [ -82.071098652554696, 28.609950527634801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oleander Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070296164526397, 28.6092492474375 ], [ -82.070309397755537, 28.609241135833916 ], [ -82.070319778650429, 28.609229182620826 ], [ -82.070330012560788, 28.609217622000472 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boxelder Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071170734791053, 28.607735366129358 ], [ -82.071166834918742, 28.607364866013533 ], [ -82.071166834890192, 28.607364823603518 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boxelder Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071098652554696, 28.609950527634801 ], [ -82.07114288673155, 28.609917844487523 ], [ -82.071164663050922, 28.60988518109464 ], [ -82.071176830749906, 28.609855719675373 ], [ -82.071185158392737, 28.609702648586602 ], [ -82.071186015076677, 28.60964619950839 ], [ -82.071186018977116, 28.609645917976049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boxelder Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071186018977116, 28.609645917976049 ], [ -82.071188696988003, 28.609469870802172 ], [ -82.071183740533016, 28.608985268524314 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boxelder Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071183740533016, 28.608985268524314 ], [ -82.071179352286833, 28.608556296137017 ], [ -82.071179346773107, 28.60855570059487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boxelder Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071179346773107, 28.60855570059487 ], [ -82.071178552167211, 28.608478118636778 ], [ -82.071174474104055, 28.608090603210403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boxelder Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071174474104055, 28.608090603210403 ], [ -82.071170736963083, 28.607735554717507 ], [ -82.071170734791053, 28.607735366129358 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boxelder Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071166834890192, 28.607364823603518 ], [ -82.071165153698317, 28.607205110102882 ], [ -82.071151456128305, 28.607144221813492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965318565346706, 28.844479524956512 ], [ -81.965318583706178, 28.844479785727778 ], [ -81.96532413148347, 28.844561192339796 ], [ -81.965413581992095, 28.845171702336213 ], [ -81.965490936884436, 28.845731619508985 ], [ -81.965566828730573, 28.846231058244289 ], [ -81.965582283956337, 28.846429505493617 ], [ -81.965585170963053, 28.846589869490916 ], [ -81.965580177930661, 28.846682500760647 ], [ -81.965576172551053, 28.846782159441826 ], [ -81.965556560793971, 28.846903657145411 ], [ -81.965535695365844, 28.847025884487817 ], [ -81.965508750299918, 28.84716415236257 ], [ -81.965480344277296, 28.847260785649365 ], [ -81.965471657122166, 28.847293251093753 ], [ -81.9654664425139, 28.84732151629353 ], [ -81.965467296296467, 28.847361243241995 ], [ -81.965477210338236, 28.84740527651897 ], [ -81.965492861056703, 28.847456742661105 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965761619333506, 28.8423247645853 ], [ -81.965761612155447, 28.842324778118051 ], [ -81.965751392239412, 28.842342226123943 ], [ -81.965580002535845, 28.842720517691632 ], [ -81.965481682274699, 28.843000116377876 ], [ -81.965408021483015, 28.843270257039528 ], [ -81.965352834405067, 28.843549997543438 ], [ -81.965323296109958, 28.843777381084607 ], [ -81.965306941622657, 28.844011746455319 ], [ -81.965306171599337, 28.844297670923684 ], [ -81.965318565346706, 28.844479524956512 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 144", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01644478643901, 28.858192156331761 ], [ -82.01592924439106, 28.858185262465298 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 69th Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977865985779687, 28.654275579660339 ], [ -81.977863606140119, 28.654037633455378 ], [ -81.977849329205412, 28.653951974207605 ], [ -81.977820775478421, 28.653902004464399 ], [ -81.977768427132744, 28.653849656718858 ], [ -81.97770180193973, 28.653818723502905 ], [ -81.97765183168525, 28.653802066176898 ], [ -81.977559032589866, 28.65379730797099 ], [ -81.97728539263646, 28.653804445294266 ], [ -81.976169416393986, 28.653816339870403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 69th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977865985779687, 28.654275579660339 ], [ -81.976124932171459, 28.654271586273442 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 69th Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977861796564568, 28.654534831611734 ], [ -81.977865985779687, 28.654275579660339 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 68th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977861796564568, 28.654534831611734 ], [ -81.976271058076051, 28.654534824342957 ], [ -81.976232985878056, 28.654527210002438 ], [ -81.976164457240145, 28.654517692622463 ], [ -81.976080699458265, 28.654491041653941 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Farner Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954690742932414, 28.863864308993161 ], [ -81.954653198595423, 28.863872186072498 ], [ -81.954598227666594, 28.863918566674364 ], [ -81.954543258020053, 28.863982983402305 ], [ -81.954461588438804, 28.864067074816568 ], [ -81.954427579868295, 28.864099283649448 ], [ -81.954393059499338, 28.864139172708697 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Farner Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954479552890703, 28.864195387582459 ], [ -81.954590230438882, 28.864043078272093 ], [ -81.954677151340135, 28.86394650066763 ], [ -81.954688565303741, 28.863935964707345 ], [ -81.954695589144322, 28.863918405538687 ], [ -81.954690742932414, 28.863864308993161 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Farner Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954393059499338, 28.864139172708697 ], [ -81.954291435747436, 28.864228013286588 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Farner Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954385101851955, 28.864289661625403 ], [ -81.954479552890703, 28.864195387582459 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954479552890703, 28.864195387582459 ], [ -81.954393059499338, 28.864139172708697 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sembler Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957307963164837, 28.865344542483182 ], [ -81.95728805471461, 28.865213677779746 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sembler Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95728805471461, 28.865213677779746 ], [ -81.957183866922264, 28.865326932434229 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 68th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977860590922148, 28.65478143962385 ], [ -81.97601714296168, 28.654758554634142 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 69th Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977860590922148, 28.65478143962385 ], [ -81.977861796564568, 28.654534831611734 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 67th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977859484232866, 28.655014703008693 ], [ -81.97614625928604, 28.654989951777605 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 69th Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977859484232866, 28.655014703008693 ], [ -81.977860590922148, 28.65478143962385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 69th Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97614625928604, 28.654989951777605 ], [ -81.976279508685764, 28.655067998564839 ], [ -81.976452734995291, 28.655165080699955 ], [ -81.976500325060982, 28.655191730506189 ], [ -81.976553625050357, 28.655210767391665 ], [ -81.976683069532712, 28.655224092222589 ], [ -81.977027617991936, 28.655239321850228 ], [ -81.977341709255853, 28.655241225177182 ], [ -81.977634860415009, 28.655246937545829 ], [ -81.977705294406476, 28.655246937569217 ], [ -81.977743364847015, 28.655235515832612 ], [ -81.977771918307965, 28.655220287357402 ], [ -81.977790954168086, 28.65519934822229 ], [ -81.977817604831529, 28.655174601590506 ], [ -81.977832833511286, 28.65514224186462 ], [ -81.977848062085783, 28.655090844669935 ], [ -81.977859484232866, 28.655014703008693 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 68th Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97614625928604, 28.654989951777605 ], [ -81.976042947637424, 28.654915370672541 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 77th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97601714296168, 28.654758554634142 ], [ -81.976080699458265, 28.654491041653941 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 77th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976080699458265, 28.654491041653941 ], [ -81.976124932171459, 28.654271586273442 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 77th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976124932171459, 28.654271586273442 ], [ -81.976169416393986, 28.653816339870403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 77th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976169416393986, 28.653816339870403 ], [ -81.976150060895861, 28.653789259145711 ], [ -81.976142782289543, 28.653776689220219 ], [ -81.97613522888669, 28.653739823866324 ], [ -81.976137550779995, 28.653460313269655 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 77th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976080699458265, 28.654491041653941 ], [ -81.976030446689578, 28.654492897795603 ], [ -81.975987349041418, 28.654506158012214 ], [ -81.975945356740098, 28.654530468410961 ], [ -81.975902259721437, 28.654590142017941 ], [ -81.975863583465681, 28.654665284237861 ], [ -81.975844797002352, 28.654721642513206 ], [ -81.975844289672978, 28.654725830159421 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 77th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976042947637424, 28.654915370672541 ], [ -81.976024614735081, 28.6548847051397 ], [ -81.976013907049506, 28.654840684604601 ], [ -81.976011527931234, 28.654794285200214 ], [ -81.97601714296168, 28.654758554634142 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 68th Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976042947637424, 28.654915370672541 ], [ -81.975919909310974, 28.65483998827801 ], [ -81.975724031086443, 28.654784023474647 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 77th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975844289672978, 28.654725830159421 ], [ -81.97579560723841, 28.654758088877468 ], [ -81.975764078420283, 28.65477058051858 ], [ -81.975724031086443, 28.654784023474647 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 77th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975844289672978, 28.654725830159421 ], [ -81.975840377601372, 28.654758108691254 ], [ -81.975848112338198, 28.654775789540004 ], [ -81.975858057455966, 28.65479015560717 ], [ -81.975875739039068, 28.654796785542974 ], [ -81.975896734536732, 28.654801205351674 ], [ -81.975923256370308, 28.65480010115229 ], [ -81.975975194639162, 28.654777999657764 ], [ -81.97601714296168, 28.654758554634142 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 68th Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975724031086443, 28.654784023474647 ], [ -81.975602021390344, 28.654752187673392 ], [ -81.975446383366332, 28.654712660413189 ], [ -81.975348800985088, 28.654678074931532 ], [ -81.975249983190366, 28.654633607678022 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 68th Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975249983190366, 28.654633607678022 ], [ -81.975118685653882, 28.654595675352027 ], [ -81.97505009905224, 28.654571951933917 ], [ -81.974958659147944, 28.654527452454328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 68th Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974958659147944, 28.654527452454328 ], [ -81.97486170143992, 28.654482887811731 ], [ -81.974758907705962, 28.654430062925503 ], [ -81.974733209379593, 28.654405793384612 ], [ -81.974711794920879, 28.65437438446833 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 70th Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97512670079324, 28.653813623749151 ], [ -81.974996479196989, 28.653815640591542 ], [ -81.974957032814913, 28.653819584550543 ], [ -81.974891947310979, 28.653843251453281 ], [ -81.974854474709602, 28.653870864008113 ], [ -81.974815027932635, 28.653906364396875 ], [ -81.974783472515242, 28.653953699484799 ], [ -81.974763749229695, 28.654003006592095 ], [ -81.974726274959451, 28.654105565276627 ], [ -81.974704579488403, 28.654188400977123 ], [ -81.97469866388866, 28.654251514604365 ], [ -81.974696690326738, 28.6543165987731 ], [ -81.974711794920879, 28.65437438446833 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 70th Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975461941037125, 28.653813668432235 ], [ -81.97512670079324, 28.653813623749151 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 70th Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976169416393986, 28.653816339870403 ], [ -81.975461941037125, 28.653813668432235 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 78th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975249983190366, 28.654633607678022 ], [ -81.975254257324082, 28.65452820217698 ], [ -81.975268508221831, 28.65437143759334 ], [ -81.975297011258775, 28.654226888741572 ], [ -81.975337728424549, 28.65408233942302 ], [ -81.975380483187038, 28.65396425776332 ], [ -81.975417129938521, 28.653884857180632 ], [ -81.975461941037125, 28.653813668432235 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 78th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974958659147944, 28.654527452454328 ], [ -81.97496868855832, 28.654405769907825 ], [ -81.975008663370062, 28.654205894767202 ], [ -81.975071482459995, 28.653977466753524 ], [ -81.97512670079324, 28.653813623749151 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961514486395416, 28.880899017881998 ], [ -81.961487956874606, 28.880659208310323 ], [ -81.961455205583604, 28.880386694823457 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967163215282923, 28.871563508171008 ], [ -81.967447650703363, 28.871408614196181 ], [ -81.967534166700517, 28.87135584683589 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02028028862874, 28.931004752823569 ], [ -82.020489807116817, 28.93100543383856 ], [ -82.020506210645635, 28.931005945713913 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965174276839903, 28.844431566132819 ], [ -81.965217615604757, 28.844782034961479 ], [ -81.965280796296327, 28.845236490665904 ], [ -81.965365210870331, 28.845789424977017 ], [ -81.965435765947788, 28.846300832398416 ], [ -81.965447872576576, 28.846423068219092 ], [ -81.965447833865355, 28.846539188691054 ], [ -81.965444304156208, 28.846714897459751 ], [ -81.965428201623737, 28.846838540830127 ], [ -81.965401919332962, 28.847041893095724 ], [ -81.965368038172869, 28.847161060945567 ], [ -81.96534849650331, 28.847216060480847 ], [ -81.96533850903532, 28.847244706119962 ], [ -81.96532461754046, 28.847271441470859 ], [ -81.965300308746251, 28.847306576402914 ], [ -81.965275571162053, 28.847330633608642 ], [ -81.965248230457092, 28.847354691940861 ], [ -81.965216663211393, 28.847372827338678 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9656411031673, 28.842278536613314 ], [ -81.965568943328066, 28.842426089491497 ], [ -81.96540535920083, 28.842796867520608 ], [ -81.96531883887063, 28.843073859652304 ], [ -81.965251069640473, 28.843345809968135 ], [ -81.96520412110921, 28.843626933067544 ], [ -81.965178015501294, 28.843851528433824 ], [ -81.965167521270843, 28.844095992112866 ], [ -81.965174276839903, 28.844431566132819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965250662680091, 28.838873118164447 ], [ -81.965531779046387, 28.839384011900066 ], [ -81.965663577024188, 28.839630039819532 ], [ -81.965767624597689, 28.839842445987777 ], [ -81.965871653438995, 28.840106800584614 ], [ -81.965944444085252, 28.84038489833333 ], [ -81.965980806455534, 28.840624789452722 ], [ -81.965999822385086, 28.840849397402067 ], [ -81.965996290772907, 28.841031217658344 ], [ -81.965991039749156, 28.841168727892573 ], [ -81.965963204990189, 28.841382628916637 ], [ -81.965881534067918, 28.841720275759268 ], [ -81.965843316748348, 28.841844025539068 ], [ -81.965775394006741, 28.842003943021837 ], [ -81.9656411031673, 28.842278536613314 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 53rd Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017372368212563, 28.677319322994922 ], [ -82.017218504309085, 28.677316779938742 ], [ -82.015839528659484, 28.677278537060864 ], [ -82.015282134537458, 28.677278597533725 ], [ -82.014271858767728, 28.677265899907677 ], [ -82.01323268641039, 28.677260907811032 ], [ -82.01322971098817, 28.677260892743 ], [ -82.013229117540874, 28.677260890090171 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 56th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015321520474757, 28.671691070711802 ], [ -82.010333610848036, 28.671724042978628 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southfield Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992763002793936, 28.879301551265733 ], [ -81.99268335818681, 28.879135056834521 ], [ -81.992631419583191, 28.878997542230739 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Britton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011616593735894, 28.78749001336239 ], [ -82.011624740794701, 28.786820353107853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0044278326735, 28.792364478375518 ], [ -82.004428425650815, 28.792228448285744 ], [ -82.004432600401287, 28.79080619532936 ], [ -82.004436802719184, 28.789464488022283 ], [ -82.004436880300361, 28.789084445140741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caulk Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016312011054339, 28.787916367137885 ], [ -82.016419206216838, 28.787741957372667 ], [ -82.016436925193034, 28.787696986706294 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013556090490525, 28.799654444493935 ], [ -82.012603574983245, 28.799653055868973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004882546229311, 28.799632939383503 ], [ -82.004333975261773, 28.799629984458726 ], [ -82.004290582687901, 28.799629977467916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gordon Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012188964304741, 28.78680608632979 ], [ -82.012221569530169, 28.786817354387193 ], [ -82.012269611631012, 28.786859156340565 ], [ -82.012303963076363, 28.786905203926597 ], [ -82.012328593532246, 28.78697069088437 ], [ -82.012338664289558, 28.787027433851307 ], [ -82.01233868861047, 28.78724134273617 ], [ -82.012336235130206, 28.787517241700453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Delphina Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013260393514017, 28.787560503295623 ], [ -82.013292899011077, 28.787574211861045 ], [ -82.013371890526471, 28.78758819131221 ], [ -82.013457670221214, 28.787597116221569 ], [ -82.014398594159417, 28.787627582667213 ], [ -82.014528200669915, 28.7876340942071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054699854694448, 28.555165203670519 ], [ -82.054698638064494, 28.554873439801906 ], [ -82.054701204537821, 28.554677988360634 ], [ -82.054709126884632, 28.554527276822768 ], [ -82.054714422579607, 28.554449563589159 ], [ -82.054729427557774, 28.554325048012998 ], [ -82.054742699134039, 28.554204357273239 ], [ -82.054759303416333, 28.554077777383707 ], [ -82.054775885325967, 28.553909989056393 ], [ -82.054785805322865, 28.553751034653718 ], [ -82.054792399683834, 28.553609742330345 ], [ -82.054798962046974, 28.553406635543777 ], [ -82.054798862559409, 28.553212361780588 ], [ -82.054798801644836, 28.553094619775329 ], [ -82.054795404485205, 28.552973936535949 ], [ -82.054795274030838, 28.552723737019836 ], [ -82.054798386415925, 28.552293978778057 ], [ -82.054798162567508, 28.551861277471776 ], [ -82.054797906747709, 28.55136676346411 ], [ -82.054790954235969, 28.550813380144906 ], [ -82.054773693496358, 28.549671292256786 ], [ -82.05473971921927, 28.548437963472633 ], [ -82.054722800555979, 28.547952286218191 ], [ -82.054685491936226, 28.546713069699358 ], [ -82.054641462111476, 28.545370832567432 ], [ -82.054624476621811, 28.544755639076413 ], [ -82.054610824263662, 28.544137500742877 ], [ -82.054607258747339, 28.543687141256189 ], [ -82.054603741306522, 28.543328029128887 ], [ -82.054600212747971, 28.542951256197316 ], [ -82.054600053496401, 28.54264218431446 ], [ -82.054596505263504, 28.542227146304416 ], [ -82.054589689440832, 28.541935737816296 ], [ -82.054589543873163, 28.541653157071231 ], [ -82.054585979043722, 28.541205740884468 ], [ -82.054579089037944, 28.540770098945419 ], [ -82.054575465170942, 28.540207883936311 ], [ -82.054571811033099, 28.539586796857908 ], [ -82.054568202939976, 28.539051073846327 ], [ -82.054564559504641, 28.53845059182812 ], [ -82.054557721303411, 28.538115031179604 ], [ -82.054554060810403, 28.537479227477455 ], [ -82.054550353403911, 28.536752170824467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 237", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.099155270531355, 28.901839078195223 ], [ -82.099153666177401, 28.902104145299024 ], [ -82.099149846534189, 28.903186662344787 ], [ -82.099148708692013, 28.904544070902045 ], [ -82.099161917663565, 28.905707550776139 ], [ -82.099161023811533, 28.907324932713745 ], [ -82.099161830753317, 28.908179437148924 ], [ -82.099150444646384, 28.90894445076939 ], [ -82.099150338726531, 28.909114412710153 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100238479914978, 28.894479883592471 ], [ -82.100131431115727, 28.894479962706345 ], [ -82.099434106201343, 28.894480475077128 ], [ -82.098504521713167, 28.894490180282645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.098088387032575, 28.890719135808315 ], [ -82.098663940571882, 28.891708881411823 ], [ -82.099156714966441, 28.892561629476212 ], [ -82.099909011588807, 28.893862512966461 ], [ -82.100247249963516, 28.894438686310924 ], [ -82.101317438118258, 28.896305502388781 ], [ -82.102378889723383, 28.898131326364933 ], [ -82.102997124767924, 28.89920428563104 ], [ -82.103478297228662, 28.900028844989105 ], [ -82.104522328201114, 28.901826483592199 ], [ -82.105201854782678, 28.903006982662308 ], [ -82.105960125435047, 28.904307826112934 ], [ -82.106520097323425, 28.905275777252371 ], [ -82.10721132576225, 28.906469067025288 ], [ -82.107922997373407, 28.90770588780796 ], [ -82.108468441647759, 28.908666156059038 ], [ -82.10870141693627, 28.909099146935262 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108994692443062, 28.90909395669112 ], [ -82.108648780594123, 28.90849743920209 ], [ -82.107633771194784, 28.906743364684267 ], [ -82.106572120639598, 28.904899652965483 ], [ -82.106160895186321, 28.904192896826697 ], [ -82.104924326371744, 28.902059814460713 ], [ -82.104574369807438, 28.901463167953757 ], [ -82.104046518000473, 28.900554106983407 ], [ -82.10330579012799, 28.899276295792802 ], [ -82.102352186301147, 28.89761692159658 ], [ -82.101798129931623, 28.896664318863628 ], [ -82.100751277963241, 28.894856412148933 ], [ -82.100474260190992, 28.894377544568894 ], [ -82.099911481377234, 28.893399323733199 ], [ -82.099173769576097, 28.89212660916202 ], [ -82.098308505161924, 28.890633236403481 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.092828880406515, 28.880353596513459 ], [ -82.092866848143061, 28.880497036216745 ], [ -82.092954469048479, 28.880835145574864 ], [ -82.093033325086481, 28.881134833723909 ], [ -82.093082968077852, 28.88131413175822 ], [ -82.093155912186944, 28.88151390861081 ], [ -82.0932434810952, 28.881787970724577 ], [ -82.093354365241268, 28.88209788223876 ], [ -82.09349438777042, 28.882441080156063 ], [ -82.093637307788043, 28.882766339997804 ], [ -82.093823978823863, 28.883191483751592 ], [ -82.093963983734056, 28.883511622866134 ], [ -82.094165177735064, 28.883898329809913 ], [ -82.09432262800054, 28.88419283651573 ], [ -82.094491732912033, 28.884500144847966 ], [ -82.094879480263586, 28.885168528483455 ], [ -82.095512135063473, 28.886262008485847 ], [ -82.096001942650901, 28.887109647777244 ], [ -82.09662586942116, 28.888185196053755 ], [ -82.096891191786241, 28.888646144558997 ], [ -82.097308117906408, 28.889355488564149 ], [ -82.097969997059707, 28.890515546487972 ], [ -82.098088166245333, 28.890718756100426 ], [ -82.098088387032575, 28.890719135808315 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.098308505161924, 28.890633236403481 ], [ -82.098086189825878, 28.89024953800973 ], [ -82.097042374166605, 28.88844159814504 ], [ -82.096363038527841, 28.887266176974865 ], [ -82.095893639734754, 28.886456955319119 ], [ -82.095237660252323, 28.885325064612196 ], [ -82.094406751068917, 28.883867932193862 ], [ -82.094272610362893, 28.883599026559569 ], [ -82.094100551118174, 28.883240481976628 ], [ -82.093945969882611, 28.882897294820594 ], [ -82.093803046198502, 28.882566911159426 ], [ -82.093665908081405, 28.882198094393608 ], [ -82.093540431917148, 28.881847201729865 ], [ -82.093414926973608, 28.881463005967962 ], [ -82.093298142961174, 28.881065992314266 ], [ -82.093207616093949, 28.880735571883395 ], [ -82.093163791567704, 28.880551146626537 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.145502912443817, 28.595638068964174 ], [ -82.145505560359439, 28.595635040588704 ], [ -82.145795315183861, 28.595045557199107 ], [ -82.146095277108941, 28.594435958944839 ], [ -82.146379106195894, 28.593844517970929 ], [ -82.146821415478058, 28.592951139300123 ], [ -82.14682249479111, 28.592950183460825 ], [ -82.146861346048311, 28.592877563574842 ], [ -82.147332322613835, 28.59190297577118 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131988623104675, 28.623232538036707 ], [ -82.1323519802405, 28.622488610612095 ], [ -82.132763777127948, 28.62164392322396 ], [ -82.13314652709667, 28.620860422443094 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09087503165695, 28.540663764009857 ], [ -82.090875219308629, 28.540675247188407 ], [ -82.090877887487395, 28.541523718523667 ], [ -82.090892203664424, 28.54237046936861 ], [ -82.090900693298181, 28.54321722487331 ], [ -82.090920811062944, 28.544039974577665 ], [ -82.090923486676701, 28.54489530243745 ], [ -82.090935812549333, 28.545685488619675 ], [ -82.090944248430333, 28.546468821242627 ], [ -82.090946703623771, 28.547067036357117 ], [ -82.09094691257944, 28.547310435807383 ], [ -82.09094313181771, 28.547428710986853 ], [ -82.090937401578017, 28.547536701583425 ], [ -82.090929735998145, 28.54765326487383 ], [ -82.090918177343838, 28.547756117749987 ], [ -82.090904678919813, 28.547862400835886 ], [ -82.090887290347993, 28.547958400625255 ], [ -82.090864102746878, 28.548083544707684 ], [ -82.090833146475404, 28.548205265008455 ], [ -82.090802177932829, 28.548311559656526 ], [ -82.090759575988358, 28.548435003017907 ], [ -82.090726659305716, 28.548532727525231 ], [ -82.090691792520204, 28.548621881903564 ], [ -82.0906375407952, 28.548743619370871 ], [ -82.090589107695692, 28.548856779753351 ], [ -82.09052902729367, 28.548973377639129 ], [ -82.090459247227116, 28.549096837944749 ], [ -82.090368138784299, 28.549251166285604 ], [ -82.090275086480574, 28.549402067820413 ], [ -82.089780729070398, 28.550189157510442 ], [ -82.089338707804018, 28.55089222332877 ], [ -82.089098313060731, 28.551279764307168 ], [ -82.0888601871021, 28.551666981230724 ], [ -82.088229759976187, 28.552663592725487 ], [ -82.087977721041739, 28.55306485030443 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 757", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.084615729002692, 28.533280411318298 ], [ -82.084533722176118, 28.532937084908689 ], [ -82.083680769902898, 28.529504303677129 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 575", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249030832821859, 28.672691911920207 ], [ -82.249027504050972, 28.672631948364188 ], [ -82.249014991707142, 28.672262441580493 ], [ -82.249014574927855, 28.672173094669066 ], [ -82.249009099618533, 28.670999892441646 ], [ -82.249008851011197, 28.670894677753889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 469", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963654058094349, 28.60253957030833 ], [ -81.963649496648756, 28.602403336146498 ], [ -81.963633233598514, 28.602194307762698 ], [ -81.963608797797718, 28.60200690269167 ], [ -81.963531355927287, 28.601581628485242 ], [ -81.963197090928617, 28.59989494186404 ], [ -81.963111468687615, 28.599516515573807 ], [ -81.962540527156136, 28.597411714233779 ], [ -81.961956849079172, 28.59525770775462 ], [ -81.961793165842536, 28.594625193552879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010608418328403, 28.568996103566416 ], [ -82.008099575673498, 28.569772583885602 ], [ -82.006886545217498, 28.570138088212303 ], [ -82.005665063819706, 28.570511112958112 ], [ -82.005372119104663, 28.570602767148873 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 772", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017695711426398, 28.566122961934337 ], [ -82.016998319402234, 28.56611978028004 ], [ -82.015942059156728, 28.566116635460048 ], [ -82.015083731787968, 28.566117544002246 ], [ -82.013869599137138, 28.566116560655846 ], [ -82.013711150117501, 28.566134012729346 ], [ -82.013520621488112, 28.56617812474876 ], [ -82.013344774915964, 28.566243555797787 ], [ -82.013174630296461, 28.566323967763516 ], [ -82.012973100092054, 28.56643457123851 ], [ -82.012652222024158, 28.566635026106123 ], [ -82.012139397349657, 28.566948197628683 ], [ -82.011353382154724, 28.567436993420401 ], [ -82.010778242265914, 28.567781901008512 ], [ -82.010656023429704, 28.567839035663471 ], [ -82.010507442436591, 28.567902516487681 ], [ -82.010322912066371, 28.567955423262354 ], [ -82.010124000205437, 28.567997750757439 ], [ -82.009994585490276, 28.568016801771407 ], [ -82.00984599814926, 28.568018926817299 ], [ -82.009685427447053, 28.568010475176244 ], [ -82.009529648188362, 28.567987211019844 ], [ -82.009371470616131, 28.567947023325843 ], [ -82.009047927949496, 28.567875108220559 ], [ -82.008506292509978, 28.567746080892089 ], [ -82.008324152310308, 28.567722817740787 ], [ -82.008142010959091, 28.567710132554023 ], [ -82.007947889749829, 28.56771649087338 ], [ -82.007789717847075, 28.567739772392699 ], [ -82.007624357885604, 28.567771516293476 ], [ -82.007442220990569, 28.567822302127578 ], [ -82.007257690232592, 28.567904825163229 ], [ -82.007080350691936, 28.568000040925085 ], [ -82.00690540978762, 28.568126992776303 ], [ -82.006718611865196, 28.568319950658402 ], [ -82.006539677648561, 28.568481541481749 ], [ -82.006422467944645, 28.568618032576609 ], [ -82.006272750659619, 28.568782894645551 ], [ -82.00615532536051, 28.568897148086997 ], [ -82.00602591568402, 28.56900082457906 ], [ -82.005872537867134, 28.569089689821592 ], [ -82.00577667816782, 28.569134124881295 ], [ -82.005630486398857, 28.569180676760222 ], [ -82.005441157315218, 28.569229344149388 ], [ -82.005386130030686, 28.569240050540326 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 707", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000958016223265, 28.609967637783321 ], [ -82.000950409845089, 28.609419042444603 ], [ -82.000950404186753, 28.608897369304408 ], [ -82.000941120251738, 28.607682796441374 ], [ -82.000942745010747, 28.607217673798996 ], [ -82.000938108165542, 28.606309576394281 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 707", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000917281054129, 28.59522826322381 ], [ -82.000920365647829, 28.594044221387705 ], [ -82.000920362213449, 28.593644711690679 ], [ -82.000913676809745, 28.593153800023803 ], [ -82.000911164584878, 28.592522101114476 ], [ -82.000908650203627, 28.591271231254151 ], [ -82.000902437599819, 28.590084476286602 ], [ -82.000888561535447, 28.587144477807961 ], [ -82.000883689052756, 28.58613493799221 ], [ -82.000905604806434, 28.584401088050388 ], [ -82.000916851655944, 28.584362880980077 ], [ -82.000940914885774, 28.584326282779791 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000909253158241, 28.613511843531239 ], [ -82.000907507005337, 28.613678425507093 ], [ -82.000887485307317, 28.613823694203973 ], [ -82.000856343097368, 28.613968964700334 ], [ -82.000822972224981, 28.614063193399073 ], [ -82.000791827332023, 28.614143681249843 ], [ -82.000765132546206, 28.614212389041757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.19524123710481, 28.683678292097778 ], [ -82.195242887875366, 28.683740821108174 ], [ -82.195275224070855, 28.684966439245152 ], [ -82.195292605131357, 28.685608816239739 ], [ -82.195314969864711, 28.686444929448029 ], [ -82.195347641842773, 28.687850011545262 ], [ -82.195375816518919, 28.688949601318118 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 478A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087850475982634, 28.555648225122042 ], [ -82.087979886942904, 28.555711482413084 ], [ -82.088124738950413, 28.55576908275976 ], [ -82.088765976246179, 28.556044827040989 ], [ -82.089803165733358, 28.556492481805332 ], [ -82.090973637344092, 28.556999705196674 ], [ -82.091821557183749, 28.557365646027321 ], [ -82.091885996545514, 28.557393682071215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054709879203429, 28.562549384813074 ], [ -82.054709130670886, 28.561100704492965 ], [ -82.054704369875537, 28.560263789991804 ], [ -82.054704049026043, 28.559644700325798 ], [ -82.054703650243198, 28.558872749335265 ], [ -82.05470325739806, 28.558112262582675 ], [ -82.05470688787085, 28.556759435095895 ], [ -82.054702021713325, 28.555719977252284 ], [ -82.054699854694448, 28.555165203670519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 727", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046416688251441, 28.562529571204845 ], [ -82.046412906559922, 28.56148723955755 ], [ -82.046409072062289, 28.560795284773786 ], [ -82.04640491493096, 28.559364621380187 ], [ -82.046408106314928, 28.558591623269731 ], [ -82.046397272571753, 28.558033697162546 ], [ -82.046326589297223, 28.557859175219662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 50", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044603363857135, 28.558523824639444 ], [ -82.044381689286666, 28.558598521897526 ], [ -82.043735718705662, 28.558798210505138 ], [ -82.042390335294016, 28.55920890849082 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 778", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104444905042385, 28.566578463850586 ], [ -82.106226041036933, 28.566550224218265 ], [ -82.107742117411206, 28.566542379195955 ], [ -82.10811208844045, 28.566543882041167 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 132nd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108101939846591, 28.562917629929281 ], [ -82.108409642289601, 28.562928882307677 ], [ -82.112420492554122, 28.562928199744356 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045594766621576, 28.808940268480178 ], [ -82.045582916865158, 28.810786229923995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06882934197202, 28.78451472027713 ], [ -82.068959678229007, 28.784966653092081 ], [ -82.069038199953141, 28.785229777624359 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09762886937348, 28.758708556363985 ], [ -82.096245505552389, 28.760343841352931 ], [ -82.094015254502608, 28.762950722549835 ], [ -82.092648919350964, 28.764546755417463 ], [ -82.091318692730823, 28.766078944641048 ], [ -82.090531154708529, 28.766993424581038 ], [ -82.089622742701607, 28.76808634623173 ], [ -82.089011022935878, 28.768766187163703 ], [ -82.088563448985241, 28.769272373005638 ], [ -82.088349947744376, 28.769510711718784 ], [ -82.088087612177034, 28.769853437942185 ], [ -82.087923008194423, 28.770071326810083 ], [ -82.087804715009625, 28.770243814585132 ], [ -82.087699288591125, 28.770409487823688 ], [ -82.08761957462238, 28.770534312019695 ], [ -82.087564070128224, 28.770625943422907 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087878623434889, 28.770628664684221 ], [ -82.08792855731275, 28.770547724660549 ], [ -82.088028840929667, 28.770391128242292 ], [ -82.088159988768467, 28.770195945070114 ], [ -82.088535475354405, 28.769687541702609 ], [ -82.088980446066373, 28.769145060256577 ], [ -82.089345680508629, 28.768702447244173 ], [ -82.090358454896631, 28.767515171034692 ], [ -82.091527949726668, 28.76615678788982 ], [ -82.093947206247194, 28.763330048747704 ], [ -82.094083842656175, 28.763177534525234 ], [ -82.097579883080542, 28.759105805362694 ], [ -82.097804104258756, 28.758826551183535 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087564070128224, 28.770625943422907 ], [ -82.087480729855812, 28.770763527688576 ], [ -82.087357332625629, 28.770997271059798 ], [ -82.087251940386153, 28.771206048385832 ], [ -82.087131147883341, 28.771473817058553 ], [ -82.087036070953801, 28.771703004288419 ], [ -82.086938432938354, 28.771950341329131 ], [ -82.086884491124664, 28.772106908311823 ], [ -82.086806164375403, 28.772355934710852 ], [ -82.086737985024655, 28.772614739303908 ], [ -82.086661775316642, 28.772894814700816 ], [ -82.086609687206419, 28.77315360628209 ], [ -82.086565653047657, 28.773423030108336 ], [ -82.086521617804067, 28.773688906010964 ], [ -82.08649368791157, 28.773972496742271 ], [ -82.086477818497045, 28.774245446039082 ], [ -82.086462012898451, 28.774596375983371 ], [ -82.086466218674559, 28.774819687055651 ], [ -82.08648663684717, 28.775188318166904 ], [ -82.086580518357437, 28.776829432453859 ], [ -82.086702897550367, 28.778874621203801 ], [ -82.086788604703059, 28.780352687080878 ], [ -82.086931441712508, 28.782801948906553 ], [ -82.087090559938986, 28.785467424989253 ], [ -82.087155916709762, 28.786651295928067 ], [ -82.087208942182968, 28.787519700820265 ], [ -82.087278345493786, 28.788728382331467 ], [ -82.087396713673257, 28.790755843412658 ], [ -82.087535455252052, 28.793081044529647 ], [ -82.087564086896691, 28.793641077453621 ], [ -82.087678307199809, 28.795505489073303 ], [ -82.087833358161816, 28.798071711161484 ], [ -82.087931452772523, 28.799890048891612 ], [ -82.087976280326103, 28.800563501980154 ], [ -82.088098743373578, 28.802640583236851 ], [ -82.088229434366312, 28.804926790423526 ], [ -82.088335529241306, 28.806670683835726 ], [ -82.088482483922959, 28.809141201721886 ], [ -82.088611686989481, 28.811416667065561 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.088893619269896, 28.811406529036109 ], [ -82.088756157003388, 28.8091481121829 ], [ -82.088609173044276, 28.80664923864656 ], [ -82.088368225972218, 28.802470265441823 ], [ -82.088249589587946, 28.800620229450978 ], [ -82.088209129430169, 28.799900504042977 ], [ -82.088200909876832, 28.799694919656126 ], [ -82.088107017137972, 28.798096346240772 ], [ -82.087817069438287, 28.793009968748642 ], [ -82.087674327793465, 28.79072021962029 ], [ -82.087542152562406, 28.788511735835733 ], [ -82.087486502677976, 28.78743090689127 ], [ -82.087368186610462, 28.785463703099229 ], [ -82.087196803484318, 28.782571378353865 ], [ -82.087066171053095, 28.780292250076265 ], [ -82.086923364553144, 28.777881977341881 ], [ -82.086817290463927, 28.776099084416302 ], [ -82.086760260192221, 28.775241313290262 ], [ -82.086752000804452, 28.774982560116769 ], [ -82.086739680786891, 28.774677726524747 ], [ -82.086751479154728, 28.774348066649459 ], [ -82.08676735661669, 28.774085751095214 ], [ -82.086787327750315, 28.773908505823304 ], [ -82.086807269501463, 28.773699359240286 ], [ -82.086831251572889, 28.773507932432672 ], [ -82.086863290700819, 28.773330677649437 ], [ -82.086903337234119, 28.773107339265479 ], [ -82.086951432110382, 28.772883995733778 ], [ -82.087031651028767, 28.772589738648744 ], [ -82.0871199091862, 28.772284840790629 ], [ -82.087252383392752, 28.77193383699953 ], [ -82.08735272891758, 28.771653743981403 ], [ -82.087461141712453, 28.771402004553259 ], [ -82.087577608250882, 28.771157348444689 ], [ -82.087714192463451, 28.770916223588486 ], [ -82.087810598693878, 28.770738928928012 ], [ -82.087878623434889, 28.770628664684221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.201550459098115, 28.605296128978832 ], [ -82.201730139914631, 28.605037331070768 ], [ -82.20189678839246, 28.604788179294999 ], [ -82.202072772064639, 28.604532479618729 ], [ -82.202209426963492, 28.604286122277994 ], [ -82.202403798450575, 28.603970232294198 ], [ -82.202631481007288, 28.6035552796831 ], [ -82.202842199047538, 28.603131758963332 ], [ -82.203074844385711, 28.602638695296072 ], [ -82.203232600557527, 28.602306468569754 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.202940045648901, 28.602351705095003 ], [ -82.202766615982824, 28.602727490886164 ], [ -82.20258869666857, 28.603054835620835 ], [ -82.202432326225065, 28.603334399897268 ], [ -82.202203100471479, 28.603711956130237 ], [ -82.201929786153897, 28.604014596568199 ], [ -82.201769516695521, 28.604237268839377 ], [ -82.201605739846514, 28.604459600512612 ], [ -82.201385743722028, 28.604720176856137 ], [ -82.201209477681005, 28.604931182302177 ], [ -82.20105825986488, 28.605100894693201 ], [ -82.200887389960812, 28.605281639026 ], [ -82.200687771174984, 28.605505396697644 ], [ -82.200518864406561, 28.605695419125038 ], [ -82.200324272032915, 28.605898886979389 ], [ -82.200133983319631, 28.606113004848815 ], [ -82.199882645602301, 28.606388063094702 ], [ -82.199684940018727, 28.606594628708379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 90th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.236996096732256, 28.625233242373142 ], [ -82.237984722560299, 28.625233591796945 ], [ -82.239796638767814, 28.6252106459803 ], [ -82.239971171325692, 28.62521191999231 ], [ -82.240064459800919, 28.625212858945357 ], [ -82.240122289748754, 28.625215442224491 ], [ -82.240192282375702, 28.625212633304557 ], [ -82.240250105193226, 28.625212531192329 ], [ -82.240272872790953, 28.625214236997628 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 90th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.236494369592364, 28.625248443713975 ], [ -82.236757660512012, 28.625246218966041 ], [ -82.236996096732256, 28.625233242373142 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.202766666999395, 28.602378368508496 ], [ -82.202644575337942, 28.602638968977821 ], [ -82.202461313550387, 28.603002133541093 ], [ -82.202323806713906, 28.603243470020367 ], [ -82.202142230312759, 28.60354058761229 ], [ -82.202061515161233, 28.603659507572214 ], [ -82.201999328824513, 28.603734468714627 ], [ -82.201931927835844, 28.603798742134146 ], [ -82.20185930929145, 28.603850801972001 ], [ -82.201785729229414, 28.603898943434189 ], [ -82.201683311247294, 28.603940066763723 ], [ -82.201575595333978, 28.603973459397267 ], [ -82.201488624150386, 28.603989631693089 ], [ -82.20140293618644, 28.603997780240228 ], [ -82.20131333950799, 28.603999058686917 ], [ -82.201231515553289, 28.603991157823327 ], [ -82.201144485409799, 28.603976388775443 ], [ -82.201082125252029, 28.603960437276754 ], [ -82.201023649816207, 28.603938751063588 ], [ -82.200963869329968, 28.603913627033894 ], [ -82.200901474379805, 28.603879339970675 ], [ -82.200841666802589, 28.603840466081873 ], [ -82.200787048904729, 28.603798143895567 ], [ -82.200735022740758, 28.603753527729776 ], [ -82.200681671976611, 28.603695161845714 ], [ -82.200634806371454, 28.603633348473466 ], [ -82.200595726492452, 28.603568085704008 ], [ -82.200561808152827, 28.603485625758424 ], [ -82.200540899056477, 28.603415752326779 ], [ -82.200530386896034, 28.603350447465985 ], [ -82.20052506667659, 28.603283988988238 ], [ -82.200494334442794, 28.602941731818426 ], [ -82.200491532981616, 28.602833441686847 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012604547534067, 28.799779966921395 ], [ -82.013559426788788, 28.799784389790407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 90th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95354505639385, 28.894649054618572 ], [ -81.953545055596209, 28.894985143154408 ], [ -81.953552749329248, 28.895757377919615 ], [ -81.953560443646154, 28.896775906018586 ], [ -81.953578395719688, 28.899698080920345 ], [ -81.953591219368832, 28.901168148450846 ], [ -81.953588718670986, 28.901529779871993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 90th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953537365138232, 28.892742841882374 ], [ -81.95353736401934, 28.892978873587328 ], [ -81.95354505639385, 28.894649054618572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989728985664939, 28.865293908053633 ], [ -81.989686712754121, 28.86529386237034 ], [ -81.989182714810397, 28.865293418070941 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Parkhill Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110594500749457, 28.659308894166585 ], [ -82.109568258962199, 28.659304023445511 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Florida Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110594500746615, 28.659308891459609 ], [ -82.110604640309703, 28.658671559499233 ], [ -82.110603535908325, 28.657618648659401 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sumter Line Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953756765429404, 28.820586176931435 ], [ -81.953833544924422, 28.820779701758489 ], [ -81.953813977298665, 28.820865279095734 ], [ -81.953785422941678, 28.82095093996454 ], [ -81.953794940982306, 28.821055635489945 ], [ -81.953794940855417, 28.821141295332538 ], [ -81.953794940600147, 28.821236473635928 ], [ -81.953785422273413, 28.821303098697797 ], [ -81.95380445728469, 28.821522007294298 ], [ -81.953813974327019, 28.822093076720591 ], [ -81.953823491303126, 28.822521378221293 ], [ -81.953735921471875, 28.825157601044925 ], [ -81.953716884313764, 28.825557349801699 ], [ -81.953742577902446, 28.826509338594093 ], [ -81.953697580885432, 28.828461206931756 ], [ -81.953701372941239, 28.828878396845418 ], [ -81.953697579468042, 28.828906384243417 ], [ -81.953682337052186, 28.828923644667121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045602468076467, 28.806219610466989 ], [ -82.045602635184892, 28.806605020779653 ], [ -82.045602761467237, 28.806898063329577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045602761467237, 28.806898063329577 ], [ -82.045602922659455, 28.807272109001175 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045602430992858, 28.806131176790149 ], [ -82.045602468076467, 28.806219610466989 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barraza Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968685681023032, 28.922291781795952 ], [ -81.968782270466008, 28.922307669417712 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96868568204863, 28.922291781796194 ], [ -81.968685679993882, 28.922291793525559 ], [ -81.968682547766804, 28.922312420181701 ], [ -81.96866367042027, 28.922415454357537 ], [ -81.96864480239195, 28.922487695877003 ], [ -81.968630443418945, 28.922534278054659 ], [ -81.968613811567678, 28.92258480453566 ], [ -81.968603031779224, 28.922621516430883 ], [ -81.968624555342629, 28.922666526192419 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017474023905763, 28.839682999834992 ], [ -82.016510162560621, 28.839364451979801 ], [ -82.015928134761651, 28.839167352147506 ], [ -82.015490630254305, 28.839006775676665 ], [ -82.01507170453398, 28.838843219996328 ], [ -82.014708524663448, 28.838700478878117 ], [ -82.014389264140121, 28.838568144055895 ], [ -82.014053113435907, 28.838428373328984 ], [ -82.01372202993285, 28.838296038087559 ], [ -82.013560369956181, 28.838231525073724 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011815235091603, 28.837814669584475 ], [ -82.012359731627299, 28.83799495522296 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062151445275504, 28.8108575546186 ], [ -82.062182404557092, 28.810805986157 ], [ -82.062185073065635, 28.810781174126227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062235595944273, 28.804661614575625 ], [ -82.062235978376151, 28.805310383936497 ], [ -82.062235981017551, 28.80531486481016 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buenos Aires Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963373215771909, 28.951639961092742 ], [ -81.963262248615749, 28.951717901354662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 202", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045360833716956, 28.945642199997241 ], [ -82.04053834461574, 28.945635539820429 ], [ -82.038505463555481, 28.945617055615184 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 203", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04120307944774, 28.935596848031444 ], [ -82.041184495509, 28.934706947497872 ], [ -82.041178533695032, 28.933726919208453 ], [ -82.041180375365443, 28.933681108287043 ], [ -82.041172918392306, 28.933638570086302 ], [ -82.041159888846153, 28.933609124949793 ], [ -82.041139420494119, 28.933586224589583 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 203", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037478745469528, 28.933553488223971 ], [ -82.037117840757901, 28.933547800388851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036968807633656, 28.934587756262562 ], [ -82.036967729064799, 28.935645535455063 ], [ -82.036955884491405, 28.937031027720515 ], [ -82.036965823079896, 28.937801710915956 ], [ -82.036965938172656, 28.938130061784403 ], [ -82.036969449120321, 28.938316937528214 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038065641103231, 28.945615258103405 ], [ -82.038206587974898, 28.946481124284198 ], [ -82.038363161448686, 28.947417247295274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038573525372456, 28.947420498457276 ], [ -82.03827512918987, 28.945646045241951 ], [ -82.038270070914919, 28.945614914867139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036981252917613, 28.931929821029431 ], [ -82.036980300073296, 28.931982499030177 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036974129209881, 28.932323677996379 ], [ -82.03697301133333, 28.932385444848073 ], [ -82.036973079690583, 28.93257754325996 ], [ -82.036973105587947, 28.932651428512493 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037128927057438, 28.931970386913825 ], [ -82.03717045160893, 28.931144326994165 ], [ -82.037174120335749, 28.931071354744113 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0371256197664, 28.932324428214105 ], [ -82.03712771805057, 28.931994440602377 ], [ -82.037128927057438, 28.931970386913825 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037350977999665, 28.926600062004713 ], [ -82.037349373679518, 28.926674675919941 ], [ -82.037349270745509, 28.926679419312642 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037349270745509, 28.926679419312642 ], [ -82.037346503039828, 28.926808152292878 ], [ -82.037312505404941, 28.927175521028271 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037458463452239, 28.927179176886405 ], [ -82.037462605937364, 28.927124257572434 ], [ -82.037482034199371, 28.926930431178324 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037482034199371, 28.926930431178324 ], [ -82.037485268827112, 28.926898154299437 ], [ -82.037491440358593, 28.926674065855082 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037248793220272, 28.925100416860083 ], [ -82.037253679836269, 28.925183543078408 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03719709668772, 28.924329801352151 ], [ -82.037200085495641, 28.924371142805263 ], [ -82.037225219697078, 28.924699279084095 ], [ -82.037248793220272, 28.925100416860083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037316196640475, 28.923939452179983 ], [ -82.03725700908916, 28.923020060918166 ], [ -82.037250005913478, 28.9227107387992 ], [ -82.037236161930508, 28.922217633560841 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03740275019841, 28.925101361915331 ], [ -82.037316196640475, 28.923939452179983 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036955007270919, 28.916418289311949 ], [ -82.036965456858496, 28.917292562852197 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036911229150135, 28.912755885640806 ], [ -82.036912420736769, 28.912855534979716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037112225355415, 28.916455525107725 ], [ -82.037111775989047, 28.916396654003485 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037111775989047, 28.916396654003485 ], [ -82.037108250528533, 28.915933628047213 ], [ -82.037078580452913, 28.915531094592701 ], [ -82.037079705610438, 28.91285440427253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037081751682919, 28.910253710421369 ], [ -82.037089144045481, 28.909532188262961 ], [ -82.037093109576716, 28.909243526049355 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036924994435424, 28.909240836658533 ], [ -82.036916627937643, 28.910250181979123 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036925851456374, 28.909137479173651 ], [ -82.036924994435424, 28.909240836658533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037093109576716, 28.909243526049355 ], [ -82.037094117434108, 28.909170102235976 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036946594484249, 28.905565604216203 ], [ -82.036947070462446, 28.906577285554466 ], [ -82.036933966857035, 28.908158311091729 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037094117434108, 28.909170102235976 ], [ -82.037099697736025, 28.90863549586717 ], [ -82.037105460255532, 28.907802519485621 ], [ -82.037117339018025, 28.907143593643713 ], [ -82.037117272440071, 28.906957106797019 ], [ -82.037132504054824, 28.905904205200763 ], [ -82.037132842970038, 28.905818224254528 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 181", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037225170731034, 28.836224485071661 ], [ -82.037231552406382, 28.834357901207277 ], [ -82.037226265761092, 28.83412718806624 ], [ -82.037217569064296, 28.834066073532391 ], [ -82.037198455499677, 28.83399426676446 ], [ -82.037175796366, 28.833939706751792 ], [ -82.037153302951111, 28.833884268744992 ], [ -82.037127258208116, 28.833838438558846 ], [ -82.036899851345922, 28.833555836582697 ], [ -82.036523179924387, 28.833151041905364 ], [ -82.036467638038445, 28.833106747014764 ], [ -82.036415569992627, 28.833068562510874 ], [ -82.036356344010102, 28.833038088289975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 35th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.21959647633679, 28.70526239946637 ], [ -82.219602046184477, 28.704633254144298 ], [ -82.21961537930612, 28.703737068369065 ], [ -82.219611940741828, 28.703463976129132 ], [ -82.219598984648798, 28.703440227114484 ], [ -82.219569110318588, 28.703418023154278 ], [ -82.219527801317128, 28.703414043884901 ], [ -82.21918819649261, 28.703402455048664 ], [ -82.21908495084493, 28.703404643696537 ], [ -82.219004619004664, 28.703392636039098 ], [ -82.218933450522925, 28.703372521512922 ], [ -82.218873733801516, 28.703344296445579 ], [ -82.218825488628013, 28.703314029861161 ], [ -82.2187795453993, 28.70328780557962 ], [ -82.218740482710785, 28.703261570204241 ], [ -82.218701381076897, 28.703215106548083 ], [ -82.218664510955492, 28.703138293180828 ], [ -82.218597678632406, 28.702996793380667 ], [ -82.218556238580717, 28.702930103305075 ], [ -82.218519443248695, 28.702889704022159 ], [ -82.218478085121262, 28.702861448344656 ], [ -82.218441336028391, 28.702843301215083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.173993143786902, 28.858753412954115 ], [ -82.174441552127732, 28.858718996916934 ], [ -82.174984899272147, 28.858677786899918 ], [ -82.175506332581875, 28.858636603108298 ], [ -82.176012430361979, 28.858597366360364 ], [ -82.17654482175476, 28.858558093424929 ], [ -82.177208662120563, 28.858507073471092 ], [ -82.178054348462211, 28.858442306452723 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.169661471985933, 28.859083552116989 ], [ -82.169783668170112, 28.859074061925877 ], [ -82.170465042935902, 28.859021124036538 ], [ -82.171188046364094, 28.858966201858731 ], [ -82.171865041170165, 28.858915189752054 ], [ -82.172340472322404, 28.858879863938363 ], [ -82.17280275087704, 28.858842624121433 ], [ -82.173240939109647, 28.858813129119916 ], [ -82.173828100404037, 28.85876608123349 ], [ -82.173873330899852, 28.858762609745966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.173867220757998, 28.858573132767198 ], [ -82.173260335213669, 28.85861634873266 ], [ -82.172765188752138, 28.858653632063472 ], [ -82.170924818205265, 28.858790995558543 ], [ -82.170081320912416, 28.858857644261185 ], [ -82.169706673387793, 28.85888704846419 ], [ -82.169663329370579, 28.85889035738596 ], [ -82.169662146720015, 28.858890447293451 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 222", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053661264291094, 28.901938839530683 ], [ -82.051470031422326, 28.901927763758891 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994548065419224, 28.789136054259991 ], [ -81.994653181193769, 28.789243381585781 ], [ -81.994764272055178, 28.789403378031292 ], [ -81.994826960375363, 28.789532826458856 ], [ -81.994870857043352, 28.789668144579039 ], [ -81.994919725788648, 28.78982141531068 ], [ -81.994987577219192, 28.789965525552425 ], [ -81.995056723395038, 28.790072124815296 ], [ -81.99512865248667, 28.790183013744045 ], [ -81.995347563063973, 28.790401923897821 ], [ -81.995595780242425, 28.790583522197842 ], [ -81.995692451732154, 28.790678737553925 ], [ -81.995777702261606, 28.790779817511535 ], [ -81.995885315672339, 28.790945166314945 ], [ -81.995919744527839, 28.791011746413528 ], [ -81.995957522129217, 28.791096019173043 ], [ -81.996017587027168, 28.79121589428954 ], [ -81.996073726287946, 28.791326901320804 ], [ -81.996132242846613, 28.791392968665839 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004065564982611, 28.792492964398601 ], [ -82.004060411137914, 28.792565115311447 ], [ -82.004057602156422, 28.792614440343744 ], [ -82.00406288300691, 28.792659431369589 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Storms Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000891540190494, 28.790035617288499 ], [ -82.000896554320519, 28.789874453205005 ], [ -82.000894977349873, 28.789745822950628 ], [ -82.000892954876505, 28.789628887584342 ], [ -82.000889049282051, 28.789403050146344 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001583864320253, 28.792250123880571 ], [ -82.002365890646772, 28.792570458283159 ], [ -82.002731762329446, 28.792634912140276 ], [ -82.002996002712464, 28.792663557476434 ], [ -82.003285406739948, 28.792667265501834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dagenais Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000523308928649, 28.791234526700126 ], [ -82.000677414127821, 28.791287064156517 ], [ -82.000718043828428, 28.791295951980814 ], [ -82.000768476022287, 28.791300330935051 ], [ -82.002755011973321, 28.791304885391966 ], [ -82.002834939738705, 28.791304326589042 ], [ -82.002875954438679, 28.791299422796396 ], [ -82.002913969885384, 28.791289739482664 ], [ -82.002958544689818, 28.791271096079686 ], [ -82.003004187550673, 28.791241687140595 ], [ -82.003066427994725, 28.791169902554081 ], [ -82.003084657303447, 28.791128089033883 ], [ -82.003095390399068, 28.791069735326044 ], [ -82.003041689056687, 28.790672960017641 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Storms Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000294771970147, 28.791750449109461 ], [ -82.000498104172394, 28.791291175700909 ], [ -82.000523308928649, 28.791234526700126 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dempsey Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000779535976363, 28.790622085180686 ], [ -82.000974060842552, 28.790666536675342 ], [ -82.003041689056687, 28.790672960017641 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Storms Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000523308928649, 28.791234526700126 ], [ -82.000534810695839, 28.791208675437353 ], [ -82.000733572518442, 28.79076570644045 ], [ -82.000779535976363, 28.790622085180686 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dagenais Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002874532955033, 28.789960815137423 ], [ -82.002849784180455, 28.789913498175682 ], [ -82.002735356844397, 28.789694224052667 ], [ -82.00268175167416, 28.789574762057459 ], [ -82.002636133475562, 28.789433620937764 ], [ -82.002623451810877, 28.789380660696263 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rahilly Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000891540190494, 28.790035617288499 ], [ -82.001173798650044, 28.790036245747299 ], [ -82.001720116126933, 28.790037461316452 ], [ -82.002323486155433, 28.790038804886048 ], [ -82.00259242382073, 28.790038623859409 ], [ -82.00265843042142, 28.790028670453452 ], [ -82.00276023621754, 28.789997169250615 ], [ -82.002874532955033, 28.789960815137423 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Storms Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000779535976363, 28.790622085180686 ], [ -82.000826477408211, 28.790455093073177 ], [ -82.000871812317399, 28.790222100300518 ], [ -82.000891540190494, 28.790035617288499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dagenais Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003041689056687, 28.790672960017641 ], [ -82.002959621420047, 28.79014360364161 ], [ -82.002874532955033, 28.789960815137423 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stella Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000889049282051, 28.789403050146344 ], [ -82.002475256940727, 28.789404452103362 ], [ -82.002573782782605, 28.789388816464584 ], [ -82.002623451810877, 28.789380660696263 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Storms Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000889049282051, 28.789403050146344 ], [ -82.00088222291626, 28.7890494648965 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dagenais Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002623451810877, 28.789380660696263 ], [ -82.002607499832322, 28.789287745134317 ], [ -82.002598400057764, 28.789184342786527 ], [ -82.002597266273128, 28.789041475826924 ], [ -82.002597379154111, 28.789002563536467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reagan Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996386594284019, 28.788382767594626 ], [ -81.996386691590743, 28.788382741430194 ], [ -81.996581032423435, 28.788331310257696 ], [ -81.997083185208766, 28.788225764389551 ], [ -81.997617507058607, 28.788009536698731 ], [ -81.998273002262962, 28.787646855797462 ], [ -81.998390714566739, 28.787601163269127 ], [ -81.998518322073735, 28.787560768242475 ], [ -81.998736238589885, 28.787526204808369 ], [ -81.998875264809669, 28.787524251754359 ], [ -81.999054478678886, 28.787545549713666 ], [ -81.999128906510677, 28.787562045488816 ], [ -81.999198384057948, 28.787582539343134 ], [ -81.999273773608422, 28.787609546102761 ], [ -81.999387158986494, 28.787665948624102 ], [ -81.999609461096028, 28.787797886032067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00443517953228, 28.788965422761592 ], [ -82.00443989636868, 28.787874986089232 ], [ -82.004431372585515, 28.787477719074058 ], [ -82.004417704828697, 28.787181406691058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992331216084537, 28.788248418526692 ], [ -81.992475753252322, 28.788377881788403 ], [ -81.992659416340658, 28.788529323822253 ], [ -81.992891411789302, 28.788674321167218 ], [ -81.993226602000789, 28.788782322232112 ], [ -81.99371306387151, 28.788812873294013 ], [ -81.99410616835408, 28.788896648683714 ], [ -81.994323303711042, 28.78896416480783 ], [ -81.994548065419224, 28.789136054259991 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reagan Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002597379154111, 28.789002563536467 ], [ -82.003306157575111, 28.789052132682095 ], [ -82.003597342189877, 28.789059298593493 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990700440534724, 28.785413889259928 ], [ -81.990703295452576, 28.785731893030512 ], [ -81.990738361893463, 28.785939221149324 ], [ -81.990840862238315, 28.786210846508144 ], [ -81.991014727282803, 28.786615262985908 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flint Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997690432014636, 28.789984648293508 ], [ -81.997235631811193, 28.790110709711566 ], [ -81.996998261302878, 28.790176502950754 ], [ -81.996930302868677, 28.790207235070472 ], [ -81.996884444664246, 28.79023150260975 ], [ -81.996830767764251, 28.790294056019881 ], [ -81.996807961439444, 28.790369262414195 ], [ -81.996806948836948, 28.790446763925246 ], [ -81.996833517488298, 28.79051960475778 ], [ -81.996874335680673, 28.790575294748173 ], [ -81.996992568873964, 28.790727117247098 ], [ -81.997039376443993, 28.790777631653196 ], [ -81.997132008017886, 28.790890801025029 ], [ -81.997172016846463, 28.790928551103185 ], [ -81.997209842313538, 28.790952863866274 ], [ -81.997243031077332, 28.790968305873658 ], [ -81.997274240053585, 28.790978147169813 ], [ -81.997311738279663, 28.790985729196471 ], [ -81.99735370462065, 28.790988830414612 ], [ -81.997395641501114, 28.790983491376657 ], [ -81.99743018600708, 28.79097909329149 ], [ -81.997535591968202, 28.790950186125837 ], [ -81.997807418334602, 28.790874842457885 ], [ -81.997968212158071, 28.790830273532112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flint Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999217995834144, 28.789832608372912 ], [ -81.998436540694385, 28.78986718023053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flint Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999217995834144, 28.789832608372912 ], [ -81.999178028221493, 28.789571040836375 ], [ -81.999127628107914, 28.78909033994071 ], [ -81.999157456955658, 28.788758569228097 ], [ -81.999233784742131, 28.788492373579295 ], [ -81.999308458207693, 28.788299469230402 ], [ -81.999375468579387, 28.788134296513856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flint Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998436540694385, 28.78986718023053 ], [ -81.998352406868861, 28.789870902098649 ], [ -81.998081096794706, 28.789893669957376 ], [ -81.99797362834596, 28.789912273998876 ], [ -81.997906147044432, 28.789926860614514 ], [ -81.997690432014636, 28.789984648293508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flint Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999375468579387, 28.788134296513856 ], [ -81.999514621312642, 28.787921454850395 ], [ -81.999609461096028, 28.787797886032067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flint Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997968212158071, 28.790830273532112 ], [ -81.998254765170103, 28.790756372898766 ], [ -81.998470422458908, 28.790732828936157 ], [ -81.998677238604458, 28.790731877568515 ], [ -81.998909105132469, 28.790712352886047 ], [ -81.998959507681576, 28.790701625722807 ], [ -81.99901371665149, 28.790678963668096 ], [ -81.999040336189054, 28.790662696972383 ], [ -81.999074109520663, 28.790635192911722 ], [ -81.999116954297662, 28.790580708826564 ], [ -81.999145200065229, 28.790504358852246 ], [ -81.999232957188966, 28.790141820601786 ], [ -81.999242517835413, 28.790054164484726 ], [ -81.999238182108186, 28.789954680745172 ], [ -81.999217995834144, 28.789832608372912 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flint Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9978698028889, 28.790582764554426 ], [ -81.997968212158071, 28.790830273532112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baldeschwieler Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998436540694385, 28.78986718023053 ], [ -81.998401224544793, 28.789427936989426 ], [ -81.998418252369163, 28.788767847617848 ], [ -81.998503316609032, 28.78812813507091 ], [ -81.998541331382796, 28.788065486049469 ], [ -81.998668197770101, 28.787966470234274 ], [ -81.99876821865918, 28.78795138819374 ], [ -81.998878121416865, 28.787951714989035 ], [ -81.998950576862214, 28.787961625754868 ], [ -81.999038106351932, 28.787979312747122 ], [ -81.999166146216567, 28.78803378551833 ], [ -81.999375468579387, 28.788134296513856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flint Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998415899444936, 28.790130321758074 ], [ -81.998436540694385, 28.78986718023053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kaplan Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997614020499171, 28.789319753442317 ], [ -81.997588316792573, 28.788685852127035 ], [ -81.997556022878697, 28.788633006593244 ], [ -81.997514921196952, 28.788583097913545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kaplan Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997690432014636, 28.789984648293508 ], [ -81.997631209583218, 28.789800003117968 ], [ -81.997628649252775, 28.789708012170735 ], [ -81.997614020499171, 28.789319753442317 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reid Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996151012967587, 28.789726751205148 ], [ -81.996062747921215, 28.789614136196157 ], [ -81.99600530090855, 28.789519153285234 ], [ -81.995980307430898, 28.789470007090969 ], [ -81.995952775514738, 28.789403623008219 ], [ -81.99591360937697, 28.789300642508369 ], [ -81.995837518660593, 28.789066282111524 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pacillo Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996151012967587, 28.789726751205148 ], [ -81.997614020499171, 28.789319753442317 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reid Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996391461633792, 28.790018939928565 ], [ -81.996151012967587, 28.789726751205148 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trimarche Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995837518660593, 28.789066282111524 ], [ -81.997514921196952, 28.788583097913545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trimarche Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997514921196952, 28.788583097913545 ], [ -81.998004733386239, 28.788451862209804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reid Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995837518660593, 28.789066282111524 ], [ -81.995710958392266, 28.78871196188808 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lindell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001583864320253, 28.792250123880571 ], [ -82.001526761382806, 28.79234283600756 ], [ -82.001479274535598, 28.792536170454198 ], [ -82.001448748569715, 28.792682020553364 ], [ -82.00146570452867, 28.793346822448562 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000294771970147, 28.791750449109461 ], [ -82.001029328278449, 28.792022737486601 ], [ -82.001583864320253, 28.792250123880571 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Henry Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003066062551923, 28.795175868108199 ], [ -82.003090966902121, 28.795086120016393 ], [ -82.003115714267608, 28.794948248854638 ], [ -82.003140460257043, 28.794838657984837 ], [ -82.003218235861894, 28.794545239710807 ], [ -82.003242984499039, 28.794124554672628 ], [ -82.003218238426768, 28.793877092092391 ], [ -82.003126323855426, 28.79366851676296 ], [ -82.002878862239314, 28.793463475492626 ], [ -82.002691497483113, 28.79337155957333 ], [ -82.002211120788431, 28.793337263973488 ], [ -82.00146570452867, 28.793346822448562 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Henry Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003214211215379, 28.795842933869853 ], [ -82.003181335515919, 28.795667085371512 ], [ -82.003152781258905, 28.795556440634719 ], [ -82.003088536643304, 28.795385119552602 ], [ -82.003066062551923, 28.795175868108199 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Henry Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001102104484602, 28.797648382177737 ], [ -82.001118979306113, 28.797735165682489 ], [ -82.001170807563057, 28.797855698297663 ], [ -82.001241923180118, 28.797921992808064 ], [ -82.00138265317301, 28.797966484414093 ], [ -82.001487810051742, 28.797984670935087 ], [ -82.001611080392976, 28.797973624137544 ], [ -82.002128850046134, 28.797895023177247 ], [ -82.002387260022388, 28.797895024897745 ], [ -82.002935672349295, 28.797942114452361 ], [ -82.003071116847366, 28.797925009805862 ], [ -82.003123940796115, 28.797916444154264 ], [ -82.003178193037868, 28.797882180589635 ], [ -82.00322038280575, 28.797825039982175 ], [ -82.003236348135644, 28.797737232030411 ], [ -82.003231025829237, 28.797670711823741 ], [ -82.003197655922918, 28.797307554073523 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Henry Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000428590024953, 28.793962010832544 ], [ -82.0004911506431, 28.794230135194525 ], [ -82.000655003479821, 28.794662112532098 ], [ -82.000836730503252, 28.795165590737099 ], [ -82.000911209031415, 28.795234113261614 ], [ -82.001078973480887, 28.795261539735495 ], [ -82.001188271842864, 28.795251989387271 ], [ -82.001551925308789, 28.795228287708653 ], [ -82.002132030907148, 28.795172867693161 ], [ -82.002627152095556, 28.7951617860266 ], [ -82.003066062551923, 28.795175868108199 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Henry Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00146570452867, 28.793346822448562 ], [ -82.000760891978686, 28.793357214176542 ], [ -82.000660954705694, 28.793361972904972 ], [ -82.000558637971537, 28.793388146158794 ], [ -82.000446803269597, 28.793469047323683 ], [ -82.000394929847204, 28.793607530622005 ], [ -82.000394929832737, 28.793786465675886 ], [ -82.000428590024953, 28.793962010832544 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stenerson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002550120281569, 28.795864776457545 ], [ -82.003069058439337, 28.795850126013125 ], [ -82.003214211215379, 28.795842933869853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stenerson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001046154018056, 28.795960254960349 ], [ -82.002013905714222, 28.795895458264127 ], [ -82.002550120281569, 28.795864776457545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fernandes Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001115552626942, 28.796648868513532 ], [ -82.001046154018056, 28.795960254960349 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rieger Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001115552626942, 28.796648868513532 ], [ -82.002475025711519, 28.796578532244645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fernandes Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001145670930242, 28.797002276440701 ], [ -82.001115552626942, 28.796648868513532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fernandes Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001046154018056, 28.795960254960349 ], [ -82.001020430627392, 28.795585257303159 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trongon Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002475025711519, 28.796578532244645 ], [ -82.002550120281569, 28.795864776457545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trongon Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002452126233024, 28.796882268198647 ], [ -82.002475025711519, 28.796578532244645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rhett Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001267134826492, 28.793953346569914 ], [ -82.001995915296973, 28.793942025309846 ], [ -82.002407346256732, 28.79395720699527 ], [ -82.002473019435286, 28.794002893029884 ], [ -82.002534408745234, 28.794088553369654 ], [ -82.002552968494186, 28.794141377256594 ], [ -82.002555824803309, 28.794165648544045 ], [ -82.002551528096575, 28.794531929122876 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zick Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001339395716641, 28.794548202640904 ], [ -82.001328689046517, 28.794501802127279 ], [ -82.001257306829004, 28.794123469653886 ], [ -82.001267134826492, 28.793953346569914 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rhett Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000428590024953, 28.793962010832544 ], [ -82.001267134826492, 28.793953346569914 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cromer Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001339395716641, 28.794548202640904 ], [ -82.002551528096575, 28.794531929122876 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zick Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001421486590317, 28.794897982199618 ], [ -82.001339395716641, 28.794548202640904 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cromer Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002551528096575, 28.794531929122876 ], [ -82.002837105140927, 28.794530687156602 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parkyn Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999842515873482, 28.797443309453175 ], [ -81.999864246230203, 28.797519983532027 ], [ -81.999886520322235, 28.797643732170286 ], [ -81.999872907714149, 28.797821930805714 ], [ -81.999828236234663, 28.798017946437572 ], [ -81.999765244567726, 28.798086752143032 ], [ -81.999695943970607, 28.798122639624108 ], [ -81.999189806775661, 28.798230300106869 ], [ -81.999110826126952, 28.798224958745056 ], [ -81.999050909126979, 28.798205637959178 ], [ -81.998975720301857, 28.798154813669498 ], [ -81.99893364542595, 28.798086751851763 ], [ -81.99877889138655, 28.797696719371721 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alton Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996828360748523, 28.794145621035202 ], [ -81.997336103815428, 28.794122785011787 ], [ -81.998083258276992, 28.794103749655228 ], [ -81.998511563188771, 28.794203688462606 ], [ -81.998811376433764, 28.794284589517861 ], [ -81.999036797996183, 28.794306394123083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parkyn Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996666991048471, 28.793521235120107 ], [ -81.996648088877066, 28.793417271891531 ], [ -81.996712336231226, 28.793038939834549 ], [ -81.996955044586286, 28.792328672551012 ], [ -81.997067451693454, 28.791991774723371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parkyn Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996666991048471, 28.793521235120107 ], [ -81.99790802003136, 28.793481517925901 ], [ -81.998443401556457, 28.793535056307928 ], [ -81.998925244769708, 28.793634994468182 ], [ -81.999039458195369, 28.793752777106068 ], [ -81.999057304534972, 28.79386699116893 ], [ -81.99903231819475, 28.794259600120295 ], [ -81.999036797996183, 28.794306394123083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grimes Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99876524113516, 28.79563566680574 ], [ -81.998380755310308, 28.794961536110105 ], [ -81.998265409925835, 28.794869259509891 ], [ -81.998124430779868, 28.794825684787263 ], [ -81.997945002872086, 28.794805177840505 ], [ -81.997563077905539, 28.794815430427082 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parkyn Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996823256869206, 28.794827000049061 ], [ -81.996844390684942, 28.794712883208945 ], [ -81.996865807225021, 28.794505871418249 ], [ -81.996837253895748, 28.79417750719913 ], [ -81.996828361772856, 28.794145621035227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Herman Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998008023983104, 28.795881863989294 ], [ -81.99785454955304, 28.795632020926686 ], [ -81.997597568320757, 28.795157319345794 ], [ -81.99756901554926, 28.795096642759251 ], [ -81.997554738901286, 28.794925322089988 ], [ -81.997563077905539, 28.794815430427082 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grimes Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997563077905539, 28.794815430427082 ], [ -81.997278556805512, 28.794823120552152 ], [ -81.996823257893524, 28.794827000049093 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pasqua Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998008023983104, 28.795881863989294 ], [ -81.99876524113516, 28.79563566680574 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pasqua Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997720867534326, 28.796007161583447 ], [ -81.998008023983104, 28.795881863989294 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grimes Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998880585798034, 28.796007335186097 ], [ -81.998852390547341, 28.795879173985654 ], [ -81.99876524113516, 28.79563566680574 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Linton Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997975823414365, 28.796693780061528 ], [ -81.998265156043132, 28.796522504611033 ], [ -81.998643874590286, 28.796401570492712 ], [ -81.999159442679854, 28.796312461843467 ], [ -81.999649784022282, 28.796265480131915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parkyn Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997975823414365, 28.796693780061528 ], [ -81.997347644171896, 28.796190525173742 ], [ -81.997058538456812, 28.795908560523863 ], [ -81.996962171037225, 28.795758653420116 ], [ -81.996819403333959, 28.795487396635568 ], [ -81.996776574065464, 28.795237554097827 ], [ -81.996790853234543, 28.795001987555224 ], [ -81.996823213839264, 28.794827232844831 ], [ -81.996823256869206, 28.794827000049061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parkyn Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999036797996183, 28.794306394123083 ], [ -81.999036826673603, 28.794306684668186 ], [ -81.999064439913951, 28.794595103003946 ], [ -81.999253605507292, 28.794941313820043 ], [ -81.999499880313735, 28.795394600326816 ], [ -81.999628369810821, 28.795880008314914 ], [ -81.999649784022282, 28.796265480131915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Began Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998404125779558, 28.797207741844669 ], [ -81.998472062174187, 28.79714997301506 ], [ -81.998550024281457, 28.797126460577491 ], [ -81.999690595941715, 28.796888466922201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parkyn Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998404125779558, 28.797207741844669 ], [ -81.998065052849071, 28.796822270817799 ], [ -81.997975823414365, 28.796693780061528 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parkyn Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999649784022282, 28.796265480131915 ], [ -81.999653352190464, 28.79650104519407 ], [ -81.999678334739201, 28.796843686895656 ], [ -81.999690595941715, 28.796888466922201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Douglas Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99877889138655, 28.797696719371721 ], [ -81.999842515873482, 28.797443309453175 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parkyn Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99877889138655, 28.797696719371721 ], [ -81.998621846427412, 28.797582505659342 ], [ -81.998481960600827, 28.797425932896036 ], [ -81.998404125779558, 28.797207741844669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parkyn Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999690595941715, 28.796888466922201 ], [ -81.999690651255406, 28.79688866994281 ], [ -81.999842515873482, 28.797443309453175 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997067451693383, 28.791991776527993 ], [ -81.997214381565584, 28.79201313483237 ], [ -81.997340240070656, 28.792013894529379 ], [ -81.997643623747109, 28.791990100124107 ], [ -81.997854801493773, 28.79196035727065 ], [ -81.998220646344649, 28.791871127725933 ], [ -81.999145667040452, 28.791710515868111 ], [ -81.999652969799683, 28.791670936809854 ], [ -82.00009999234851, 28.791717181724476 ], [ -82.000294771970147, 28.791750449109461 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parkyn Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996828361772856, 28.794145621035227 ], [ -81.99682823477184, 28.794145165363915 ], [ -81.996690918627351, 28.793652837232862 ], [ -81.996667092436553, 28.793521788240806 ], [ -81.996666991048471, 28.793521235120107 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reagan Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999609461096028, 28.787797886032067 ], [ -81.99990342325971, 28.787975259236408 ], [ -82.00070054186331, 28.788457103835462 ], [ -82.00110546496218, 28.788701941982133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Henry Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003197655922918, 28.797307554073523 ], [ -82.003178709962768, 28.797132127647895 ], [ -82.003210823773188, 28.796878433694054 ], [ -82.003262205716297, 28.796599050524748 ], [ -82.003284684975029, 28.796374258695348 ], [ -82.003287898716422, 28.796126988789659 ], [ -82.003214211215379, 28.795842933869853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Henry Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003197655922918, 28.797307554073523 ], [ -82.002867440732473, 28.797285969892002 ], [ -82.002772261602217, 28.797271692214441 ], [ -82.002319937537749, 28.79724677798432 ], [ -82.001994178225402, 28.797264549600694 ], [ -82.001804953688918, 28.797272488786504 ], [ -82.001602698541788, 28.797299256347532 ], [ -82.001413924749329, 28.79731973352223 ], [ -82.0012358985053, 28.797353078282459 ], [ -82.001132238639087, 28.797447093259184 ], [ -82.001098489763237, 28.797529054021972 ], [ -82.001102104484602, 28.797648382177737 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019201633168819, 28.801379127492126 ], [ -82.018826865235283, 28.801730093534221 ], [ -82.018565124819204, 28.801831218768097 ], [ -82.018243896187826, 28.80186690921483 ], [ -82.018017848000625, 28.801968034182856 ], [ -82.017577645055852, 28.802241669718722 ], [ -82.016993674555266, 28.802597235726349 ], [ -82.016755727408352, 28.802745950639885 ], [ -82.016541574733893, 28.802855999195877 ], [ -82.016256039463215, 28.802957123622139 ], [ -82.01595960820714, 28.803038776778521 ], [ -82.015620464544853, 28.803062657148814 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010454939769588, 28.798886881864306 ], [ -82.010551251116425, 28.799058245741257 ], [ -82.01063365772103, 28.79919575128292 ], [ -82.010648840969694, 28.799258777604084 ], [ -82.010661861795668, 28.799363821162551 ], [ -82.010647571757815, 28.799478950054855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010647569785846, 28.799930860589797 ], [ -82.010707825138027, 28.800059587280007 ], [ -82.010713470643495, 28.800134035755107 ], [ -82.01072774407892, 28.800609925949701 ], [ -82.010725364633799, 28.800726518405138 ], [ -82.010777712471906, 28.801033468537582 ], [ -82.010813403067161, 28.801145302981173 ], [ -82.010868131252565, 28.801197651062498 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010868131252565, 28.801197651062498 ], [ -82.0108859677227, 28.801154303554426 ], [ -82.010899064808783, 28.801095334667231 ], [ -82.010882408489337, 28.800862148656538 ], [ -82.010851476868766, 28.800602787620473 ], [ -82.010849100180792, 28.800076929203254 ], [ -82.010915979365976, 28.799928123875553 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010859960072978, 28.802496529057219 ], [ -82.010915308245103, 28.802278021936466 ], [ -82.01097777045878, 28.801986538857353 ], [ -82.010998590831832, 28.801778336887089 ], [ -82.010992642830999, 28.801582032113373 ], [ -82.010948028829119, 28.801382752617315 ], [ -82.010868131252565, 28.801197651062498 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007029391103643, 28.802687065243109 ], [ -82.006974643552795, 28.802683533405737 ], [ -82.006810277440039, 28.80264710005995 ], [ -82.00662896677305, 28.802593723631407 ], [ -82.00597658748076, 28.802338700022386 ], [ -82.005795276594966, 28.802262446150809 ], [ -82.005649550594015, 28.802186193465516 ], [ -82.005475865641216, 28.802084523461236 ], [ -82.005302181095615, 28.801940490576929 ], [ -82.00520644162448, 28.801824417594325 ], [ -82.005168316051936, 28.801766804396763 ], [ -82.005141204687561, 28.801728678070418 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Samuel Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010325249356328, 28.801148746360187 ], [ -82.010271712316381, 28.800851313728529 ], [ -82.010236021206168, 28.800562805488443 ], [ -82.010200329993637, 28.800479525456527 ], [ -82.010120023220793, 28.800455729832986 ], [ -82.009081007803402, 28.800456522154747 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010859960072978, 28.802496529057219 ], [ -82.01033702025515, 28.80239970023954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Berry Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009085140126416, 28.8011492198196 ], [ -82.010325249356328, 28.801148746360187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Samuel Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01033702025515, 28.80239970023954 ], [ -82.010372833997224, 28.802168937708725 ], [ -82.010426373097189, 28.801877453705774 ], [ -82.010432323444007, 28.801648432025129 ], [ -82.010417451867383, 28.801493766856989 ], [ -82.010360940855534, 28.801285565044612 ], [ -82.010325249356328, 28.801148746360187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winchell Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009085140126416, 28.8011492198196 ], [ -82.009081007803402, 28.800456522154747 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winchell Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009087213577118, 28.801496746142227 ], [ -82.009085140126416, 28.8011492198196 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winchell Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009081007803402, 28.800456522154747 ], [ -82.009078835723869, 28.800092611596352 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Demarco Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008629660422699, 28.803649173904692 ], [ -82.008644799495769, 28.805125881187966 ], [ -82.008659076766065, 28.805292443485964 ], [ -82.008773290141164, 28.805401898912425 ], [ -82.008935092881941, 28.805449488888144 ], [ -82.00948712884076, 28.805387626231987 ], [ -82.010353254562006, 28.805073543310606 ], [ -82.010512846847604, 28.804983519095828 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012450939819885, 28.802953488809791 ], [ -82.012092981309394, 28.802848398106139 ], [ -82.011428523646515, 28.802650760957913 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seebald Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009360280650284, 28.803649199872492 ], [ -82.009521615829655, 28.803649200360127 ], [ -82.010119045562178, 28.80368128991309 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Demarco Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012223518066904, 28.803517393651003 ], [ -82.012450939819885, 28.802953488809791 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Demarco Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009163300810457, 28.802911636283067 ], [ -82.008964322582614, 28.80290850933407 ], [ -82.00880388842657, 28.802939762408112 ], [ -82.008682001583139, 28.803022061344546 ], [ -82.00863616329859, 28.803164781799971 ], [ -82.008629660422699, 28.803649173904692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eby Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010924909105981, 28.804026184727462 ], [ -82.010903718195365, 28.803752089244771 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seebald Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010903718195365, 28.803752089244771 ], [ -82.011110467674712, 28.803709150620293 ], [ -82.011415668034161, 28.803515961820107 ], [ -82.011537021307404, 28.803411266890418 ], [ -82.011608404735796, 28.8033850941436 ], [ -82.011710721804249, 28.803373197043573 ], [ -82.011820177238206, 28.803382715655761 ], [ -82.012223518066904, 28.803517393651003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dyer Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010512846847604, 28.804983519095828 ], [ -82.010389371191124, 28.80475465656917 ], [ -82.010225054560934, 28.804396867257672 ], [ -82.010142897070196, 28.80414509008704 ], [ -82.01010844341512, 28.80391981588425 ], [ -82.010119045562178, 28.80368128991309 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seebald Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010119045562178, 28.80368128991309 ], [ -82.010677882618722, 28.8037425459829 ], [ -82.010903718195365, 28.803752089244771 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Demarco Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010512846847604, 28.804983519095828 ], [ -82.01053885259428, 28.804968849240552 ], [ -82.010914808797779, 28.804797531213453 ], [ -82.011243175751829, 28.804602417359568 ], [ -82.011652443787639, 28.804278814239293 ], [ -82.012033160064121, 28.803883828555932 ], [ -82.012223518066904, 28.803517393651003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eads Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00946687197154, 28.804750381625773 ], [ -82.009402629132325, 28.804260215694736 ], [ -82.009360280650284, 28.803649199872492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seebald Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008629660422699, 28.803649173904692 ], [ -82.009360280650284, 28.803649199872492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boudreau Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014650593637811, 28.804451917948221 ], [ -82.014823831355642, 28.80446359761595 ], [ -82.014961840413108, 28.80443980457563 ], [ -82.015023884286393, 28.804378771096971 ], [ -82.01507605488699, 28.804297037799223 ], [ -82.015128404464235, 28.80410430207132 ], [ -82.015133163911983, 28.803885392611623 ], [ -82.015068918418208, 28.80374500422047 ], [ -82.014976119978058, 28.803666482199201 ], [ -82.014830973128667, 28.803633168683152 ], [ -82.014288455044635, 28.803609371409269 ], [ -82.013669795459904, 28.803649818429868 ], [ -82.013372362640879, 28.803716441605857 ], [ -82.013220075943593, 28.803816377725862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013145893532851, 28.803080400329318 ], [ -82.012741385049324, 28.803038758055155 ], [ -82.012450939819885, 28.802953488809791 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Janesy Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014001698161906, 28.8044661772905 ], [ -82.014008804559751, 28.804568644916962 ], [ -82.014053062085907, 28.804650021871574 ], [ -82.014127300705809, 28.804701419252535 ], [ -82.014248653897951, 28.804707129666578 ], [ -82.014368578937933, 28.80470427537275 ], [ -82.014434252246588, 28.804699992694559 ], [ -82.014504208354296, 28.804685716447459 ], [ -82.01453990035786, 28.804662873502799 ], [ -82.014577019802559, 28.804612906011268 ], [ -82.014601290495705, 28.804560082203508 ], [ -82.014650593637811, 28.804451917948221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boudreau Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013220075943593, 28.803816377725862 ], [ -82.013365222513968, 28.804073358922881 ], [ -82.013672171943284, 28.804401724534422 ], [ -82.013792737873274, 28.804454537910921 ], [ -82.013902978754828, 28.804475489751404 ], [ -82.014001698161906, 28.8044661772905 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boudreau Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014001698161906, 28.8044661772905 ], [ -82.014002033144266, 28.804466145676791 ], [ -82.014155202005639, 28.80445169631604 ], [ -82.014612059606748, 28.804449320535181 ], [ -82.014650593637811, 28.804451917948221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010521655047583, 28.799674788047902 ], [ -82.010507887398546, 28.799802134192628 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01109400565592, 28.799802137681336 ], [ -82.011085789792716, 28.799698061085017 ], [ -82.011079663574804, 28.799673558356222 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01109400565592, 28.799802137681336 ], [ -82.011302160652008, 28.799766533542055 ], [ -82.012486682584637, 28.799779421353733 ], [ -82.012604547534067, 28.799779966921395 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010647569785846, 28.799930860589797 ], [ -82.010789991649247, 28.79995551122202 ], [ -82.010915979365976, 28.799928123875553 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kate Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011594875564796, 28.801831855349086 ], [ -82.011567381277956, 28.801538570013228 ], [ -82.011428185470692, 28.800992485475415 ], [ -82.011378217812421, 28.800649844448436 ], [ -82.01138178766935, 28.800521353998338 ], [ -82.011431756107982, 28.800482093170292 ], [ -82.011520986298279, 28.800464248299321 ], [ -82.012160584323894, 28.800474622190489 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011594875564796, 28.801831855349086 ], [ -82.012400192771509, 28.801870508526971 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011428523646515, 28.802650760957913 ], [ -82.010932994627581, 28.80250337033403 ], [ -82.010859960072978, 28.802496529057219 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kate Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011428523646515, 28.802650760957913 ], [ -82.011503132375637, 28.802459418894564 ], [ -82.011578086118831, 28.802191730330176 ], [ -82.011599502914393, 28.801881211450695 ], [ -82.011594875564796, 28.801831855349086 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zajac Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012400192771509, 28.801870508526971 ], [ -82.012385495033911, 28.80157737836258 ], [ -82.012309211471418, 28.801198890207669 ], [ -82.012212389748314, 28.80084094035228 ], [ -82.012171314622933, 28.800573945114582 ], [ -82.012160584323894, 28.800474622190489 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zajac Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012379622443433, 28.802225795669159 ], [ -82.012400192771509, 28.801870508526971 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kate Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012160584323894, 28.800474622190489 ], [ -82.012181287170066, 28.800474958813194 ], [ -82.012523929605649, 28.800467822870324 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thornburg Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016972967495661, 28.801133121466506 ], [ -82.017407219711075, 28.800865435734554 ], [ -82.01758568115612, 28.800657234904147 ], [ -82.017633270628011, 28.800454982018024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013865681576874, 28.803014969058875 ], [ -82.013145893532851, 28.803080400329318 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reynolds Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01389917600396, 28.801918774952338 ], [ -82.0138815931263, 28.801878113062845 ], [ -82.013682319145843, 28.80043854461163 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thornburg Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013865681576874, 28.803014969058875 ], [ -82.013814223857523, 28.8026975930287 ], [ -82.013790430308063, 28.802483442403634 ], [ -82.013802328435617, 28.802352572633001 ], [ -82.013956993520367, 28.802215755408447 ], [ -82.014057145799015, 28.802165679920176 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hershey Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013149603306303, 28.801894788197618 ], [ -82.01389917600396, 28.801918774952338 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reynolds Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014057145799015, 28.802165679920176 ], [ -82.013929182411104, 28.801988164344305 ], [ -82.01389917600396, 28.801918774952338 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alfredson Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013149603306303, 28.801894788197618 ], [ -82.012967505911817, 28.800437641865891 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hershey Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0128058282951, 28.801883785753738 ], [ -82.013149603306303, 28.801894788197618 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palladino Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012967505911817, 28.800437641865891 ], [ -82.013682319145843, 28.80043854461163 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palladino Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012570608822088, 28.800424278630604 ], [ -82.012967505911817, 28.800437641865891 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palladino Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013682319145843, 28.80043854461163 ], [ -82.014031101318153, 28.800437766461872 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cree Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014757400358519, 28.802597875389424 ], [ -82.01481640202114, 28.80238183774156 ], [ -82.014834597242867, 28.802149357871052 ], [ -82.014792144598317, 28.801959329051257 ], [ -82.014758949160537, 28.801856042122598 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thornburg Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014057145799015, 28.802165679920176 ], [ -82.014611348079342, 28.801888583856062 ], [ -82.014758949160537, 28.801856042122598 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cree Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014758949160537, 28.801856042122598 ], [ -82.014757777746112, 28.801852185762048 ], [ -82.014642932251562, 28.801540881880435 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Werdebaugh Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015620464544853, 28.803062657148814 ], [ -82.015611500916805, 28.802829172298274 ], [ -82.015618437489309, 28.802329835716723 ], [ -82.015593009515015, 28.802066296633534 ], [ -82.015544463356278, 28.801818939420343 ], [ -82.015496102172875, 28.801680857565909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thornburg Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014758949160537, 28.801856042122598 ], [ -82.015366827201731, 28.801722026938414 ], [ -82.015496102172875, 28.801680857565909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015620464544853, 28.803062657148814 ], [ -82.015537253619115, 28.803068516854221 ], [ -82.015049463080615, 28.803050668291299 ], [ -82.013865681576874, 28.803014969058875 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ryan Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016087239632171, 28.800957468734477 ], [ -82.015942093904954, 28.800652897892672 ], [ -82.015877848551725, 28.800493474639001 ], [ -82.015873089568174, 28.800398295667918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thornburg Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015496102172875, 28.801680857565909 ], [ -82.016300767493789, 28.80142460023626 ], [ -82.016312380280837, 28.801419564000454 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Weaver Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014458735628963, 28.800981253277538 ], [ -82.014371173687323, 28.800402569586399 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Soper Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014458735628963, 28.800981253277538 ], [ -82.016087239632171, 28.800957468734477 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Weaver Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014494902655699, 28.801270594953159 ], [ -82.014458735628963, 28.800981253277538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ryan Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016312380280837, 28.801419564000454 ], [ -82.016161002033797, 28.801095477122029 ], [ -82.016087239632171, 28.800957468734477 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lewis Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014371173687323, 28.800402569586399 ], [ -82.015873089568174, 28.800398295667918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Weaver Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014371173687323, 28.800402569586399 ], [ -82.014323584403073, 28.800128456406441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ryan Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015873089568174, 28.800398295667918 ], [ -82.015875470534468, 28.800129418082022 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bacon Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016972967495661, 28.801133121466506 ], [ -82.016870956978607, 28.80097883557179 ], [ -82.016800269173714, 28.800842335872723 ], [ -82.016756395272083, 28.800622961908555 ], [ -82.016719834209582, 28.800420649784304 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thornburg Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016312380280837, 28.801419564000454 ], [ -82.016972967495661, 28.801133121466506 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 202", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053633315841481, 28.945620358667771 ], [ -82.053535550214747, 28.945606066120785 ], [ -82.053187324641982, 28.945603688193764 ], [ -82.05290605067151, 28.945595752264005 ], [ -82.052352843834356, 28.94558808860749 ], [ -82.051595239439294, 28.945618874908408 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 202", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051595239439294, 28.945618874908408 ], [ -82.051231539725549, 28.945633653074797 ], [ -82.050175796170848, 28.94563655522926 ], [ -82.050175752061151, 28.945636555245539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 202", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050175752061151, 28.945636555245539 ], [ -82.049522043160167, 28.945638353179703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 202", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038505463555481, 28.945617055615184 ], [ -82.038503834569013, 28.94561704073616 ], [ -82.038270070914919, 28.945614914867139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 204", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057880694642066, 28.93836669633869 ], [ -82.057880108948879, 28.938366699295152 ], [ -82.056793301181585, 28.938371927555831 ], [ -82.055669972540343, 28.938372392489583 ], [ -82.054364014812577, 28.938372921227526 ], [ -82.053642317865055, 28.938369245111542 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 204", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059262606522736, 28.93836004867919 ], [ -82.057880694642066, 28.93836669633869 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04295449975973, 28.927408089535376 ], [ -82.042859144011359, 28.927407917426329 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038270070914919, 28.945614914867139 ], [ -82.037677478023355, 28.941967905596655 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 204", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0440857175833, 28.938345911803388 ], [ -82.044085279592181, 28.938345906531399 ], [ -82.04384743209684, 28.938343374772252 ], [ -82.042386603916469, 28.938338779716581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 204", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047073863659264, 28.93835304747375 ], [ -82.047067433340018, 28.938353080375531 ], [ -82.045504865612969, 28.938361017680865 ], [ -82.0440857175833, 28.938345911803388 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 204", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042386603916469, 28.938338779716581 ], [ -82.041217596806177, 28.938335101384684 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 204", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053642317865055, 28.938369245111542 ], [ -82.053586020967245, 28.93837843822417 ], [ -82.053569879989183, 28.938378426540687 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 204", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053569879989183, 28.938378426540687 ], [ -82.053569757926695, 28.938378426588805 ], [ -82.051669405973286, 28.938377002944705 ], [ -82.051310505810093, 28.938376025417796 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037116704724554, 28.934000799205592 ], [ -82.037117840757901, 28.933547800388851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037112913076157, 28.934850005883224 ], [ -82.037115297068652, 28.93456219694831 ], [ -82.037116704724554, 28.934000799205592 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 201", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039116454691595, 28.931082908259128 ], [ -82.039087944413509, 28.931088705547257 ], [ -82.039039696165986, 28.931088719355884 ], [ -82.038971706968269, 28.931088737882721 ], [ -82.038931335092485, 28.931086784206403 ], [ -82.038689831338218, 28.931078602290999 ], [ -82.038438507950488, 28.931073324486022 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 201", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038438507950488, 28.931073324486022 ], [ -82.038438189992476, 28.931073318259457 ], [ -82.0383606040958, 28.931071689785231 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 201", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0383606040958, 28.931071689785231 ], [ -82.038097968610927, 28.931066174512143 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 201", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03759207129545, 28.93106901077519 ], [ -82.03759196462677, 28.931069011706835 ], [ -82.037174120335749, 28.931071354744113 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037174120335749, 28.931071354744113 ], [ -82.037201008190351, 28.929893707005981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037201008190351, 28.929893707005981 ], [ -82.037201016272732, 28.929893358718108 ], [ -82.037202017225951, 28.92984949790873 ], [ -82.037220679037503, 28.929372996482812 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037428137242443, 28.927478361811836 ], [ -82.037587673355404, 28.927514716582067 ], [ -82.037889427983032, 28.927504128696601 ], [ -82.038175984786889, 28.927493544384056 ], [ -82.038267613504203, 28.927496624438742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 106", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037350977999665, 28.926600062004713 ], [ -82.037027448833683, 28.926598645035568 ], [ -82.036835350920214, 28.926597599762665 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 106", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03646083733733, 28.926596618341751 ], [ -82.036360619809756, 28.926596259759791 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 108", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036165378688381, 28.92518939713279 ], [ -82.036164803319835, 28.925189386457454 ], [ -82.035297464316102, 28.925172497476588 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037236161930508, 28.922217633560841 ], [ -82.037201134538975, 28.920970038024805 ], [ -82.03719163844265, 28.920576066706932 ], [ -82.037190111630125, 28.920512744907199 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037190111630125, 28.920512744907199 ], [ -82.037184809915075, 28.920292761221347 ], [ -82.037182810595183, 28.920163247125934 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037175910101567, 28.919652205771378 ], [ -82.037173318461882, 28.919465664015778 ], [ -82.037158340219165, 28.918877025543278 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019201633168819, 28.801379127492126 ], [ -82.019343328323842, 28.801294368364406 ], [ -82.019468250785266, 28.801225959498311 ], [ -82.019640761913891, 28.801178371950989 ], [ -82.019840041156087, 28.801163500952178 ], [ -82.020015526783268, 28.801181348177309 ], [ -82.020253473612343, 28.801193247168001 ], [ -82.02047952366695, 28.801175402757632 ], [ -82.020681777312632, 28.80112186601146 ], [ -82.020988133675075, 28.801059407611554 ], [ -82.021113055245664, 28.801029664905172 ], [ -82.021178129537375, 28.800977586276076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021178129537375, 28.800977586276076 ], [ -82.021118355784978, 28.800922471238206 ], [ -82.021065467053731, 28.800898794399632 ], [ -82.020797777684479, 28.800886895834356 ], [ -82.020461678827374, 28.800800638157575 ], [ -82.020220756986319, 28.800756023024736 ], [ -82.019973888143909, 28.800773867253429 ], [ -82.019688352084401, 28.800872017713846 ], [ -82.01943850705868, 28.801059398604895 ], [ -82.019289790040432, 28.801234881763929 ], [ -82.019201633168819, 28.801379127492126 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boudreau Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013145893532851, 28.803080400329318 ], [ -82.013146315031676, 28.803311932621614 ], [ -82.013162969759691, 28.803537980972216 ], [ -82.013220075943593, 28.803816377725862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021178129537375, 28.800977586276076 ], [ -82.021214145464739, 28.801031493979462 ], [ -82.021239909314673, 28.80104921600072 ], [ -82.021275195949968, 28.801062019874387 ], [ -82.02148370790492, 28.801089625900659 ], [ -82.021683582086411, 28.801151492827106 ], [ -82.021888215278963, 28.801265708149689 ], [ -82.022011946661053, 28.801356128395966 ], [ -82.022154714076777, 28.801508413440249 ], [ -82.022297482219741, 28.801613111298707 ], [ -82.022587774811839, 28.801770156356945 ], [ -82.022873310008151, 28.801865336351923 ], [ -82.022988770787222, 28.801883738116846 ], [ -82.02305385033965, 28.801886354934087 ], [ -82.023091325758472, 28.801876242856242 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023091325758472, 28.801876242856242 ], [ -82.023074432760026, 28.801835197671497 ], [ -82.023015897941903, 28.80176524115015 ], [ -82.022836011164543, 28.801628184191262 ], [ -82.022559043232874, 28.801361207944375 ], [ -82.022484803722563, 28.801255559156878 ], [ -82.022357741301974, 28.801104225692566 ], [ -82.022217829265898, 28.800987155835049 ], [ -82.022079344144657, 28.800912916554005 ], [ -82.021925155793994, 28.800855809080712 ], [ -82.021713860153611, 28.800824399115879 ], [ -82.021532544991572, 28.800821541493491 ], [ -82.021331242334995, 28.800861514912381 ], [ -82.021231303749587, 28.800885786030321 ], [ -82.021197040261612, 28.800912911104227 ], [ -82.021188474293226, 28.800938609344001 ], [ -82.021178129537375, 28.800977586276076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027496717948935, 28.82370528924827 ], [ -82.02736004217175, 28.823634344259091 ], [ -82.027174214854, 28.823566768962742 ], [ -82.027011848491895, 28.823540489330913 ], [ -82.0267866033481, 28.823519840328331 ], [ -82.026564172454769, 28.823485114391374 ], [ -82.026377404990271, 28.82344100181724 ], [ -82.02597427215224, 28.823312792897454 ], [ -82.025153360258429, 28.822920178649969 ], [ -82.024839271370254, 28.822706026003363 ], [ -82.024610844600701, 28.822506150976924 ], [ -82.024389555914183, 28.822220614487648 ], [ -82.0243038971971, 28.821949356522175 ], [ -82.024249279801424, 28.821686463812359 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dunham Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021178129537375, 28.800977586276076 ], [ -82.021169207259888, 28.800905904342557 ], [ -82.021167125208422, 28.80088270531088 ], [ -82.021163306194921, 28.800861524110978 ], [ -82.021160650764259, 28.800839719237707 ], [ -82.021134301082142, 28.800666740957496 ], [ -82.021132050087928, 28.800643888437737 ], [ -82.021132239164658, 28.800620949830691 ], [ -82.021134864253469, 28.800598129059473 ], [ -82.02113990183112, 28.800575624636181 ], [ -82.021147309935245, 28.80055363327093 ], [ -82.021157023042534, 28.800532350774908 ], [ -82.021168955140098, 28.800511962134628 ], [ -82.021183002799688, 28.800492646925264 ], [ -82.021199040054711, 28.800474573897517 ], [ -82.02121692864489, 28.800457904585485 ], [ -82.021236508794473, 28.800442781578003 ], [ -82.021257610482607, 28.800429339344561 ], [ -82.021280048320136, 28.800417697920135 ], [ -82.021303625645672, 28.80040795568593 ], [ -82.021328133503772, 28.800400202002059 ], [ -82.021353356788183, 28.800394502769567 ], [ -82.021379078340942, 28.800390907648318 ], [ -82.021680727705075, 28.800361430608358 ], [ -82.021731807356559, 28.800355433149271 ], [ -82.021782539334183, 28.800347462368251 ], [ -82.021832825297565, 28.800337533620322 ], [ -82.021882564858146, 28.800325664967907 ], [ -82.021931663774978, 28.800311879886468 ], [ -82.021980025759078, 28.800296204558848 ], [ -82.022209235358261, 28.800216828995627 ], [ -82.022257967044851, 28.800201086738664 ], [ -82.02230747049353, 28.800187343864884 ], [ -82.022357642250142, 28.800175628361629 ], [ -82.022408373738287, 28.80016596551031 ], [ -82.02245955842946, 28.80015837608055 ], [ -82.022511085696706, 28.800152875428921 ], [ -82.022562845936903, 28.800149476205078 ], [ -82.022614731594643, 28.800148185644648 ], [ -82.022666626918564, 28.800149006473156 ], [ -82.022718425375402, 28.800151935098636 ], [ -82.022770014285769, 28.800156968832585 ], [ -82.022821284041029, 28.800164094158433 ], [ -82.022872126056654, 28.800173296657295 ], [ -82.022929293908902, 28.800183765848683 ], [ -82.022986904877229, 28.800192132555715 ], [ -82.023044862663838, 28.80019838506362 ], [ -82.023103063799851, 28.800202509854422 ], [ -82.023161408915527, 28.80020450153037 ], [ -82.02321979966591, 28.800204356498387 ], [ -82.023278132584863, 28.800202074775637 ], [ -82.023336305231297, 28.800197659086258 ], [ -82.023394220287585, 28.800191119372158 ], [ -82.023451776338675, 28.800182465576125 ], [ -82.02351665435674, 28.800172441716118 ], [ -82.023581865697736, 28.800164280140912 ], [ -82.023647343781292, 28.800157985372895 ], [ -82.023713018954723, 28.800153565544303 ], [ -82.023778822588994, 28.800151025178092 ], [ -82.023844685030326, 28.800150366992874 ], [ -82.023910536624555, 28.800151591902832 ], [ -82.023976308741254, 28.80015469811508 ], [ -82.024041932749824, 28.800159682934662 ], [ -82.024107336945647, 28.800166540057916 ], [ -82.024172455770554, 28.800175264082704 ], [ -82.024197846166103, 28.800180123146568 ], [ -82.024222612160642, 28.80018704951107 ], [ -82.024246534524281, 28.800195983662025 ], [ -82.024269405290852, 28.80020684713487 ], [ -82.024291023660695, 28.80021954431999 ], [ -82.024311201122927, 28.800233964266397 ], [ -82.024329761455576, 28.800249981584077 ], [ -82.02434654174985, 28.800267455541391 ], [ -82.024361396508681, 28.800286234575985 ], [ -82.024374194572658, 28.800306152685927 ], [ -82.024384825268257, 28.800327037549575 ], [ -82.024393194308956, 28.80034870420986 ], [ -82.024399229944009, 28.80037096590117 ], [ -82.024402877834902, 28.800393626831628 ], [ -82.024404107203182, 28.80041648849808 ], [ -82.024403028594335, 28.800488431833742 ], [ -82.024399700421881, 28.800560321423212 ], [ -82.024394126766396, 28.800632103126922 ], [ -82.024386311708426, 28.800703722805157 ], [ -82.024376260352611, 28.800775124513265 ], [ -82.024363980877538, 28.800846255915289 ], [ -82.024349482486173, 28.800917063772616 ], [ -82.024332775405057, 28.800987491237063 ], [ -82.024239648891026, 28.801216102772088 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avidon Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021723301779204, 28.808767004978662 ], [ -82.021753787318588, 28.808754483386728 ], [ -82.021808306440406, 28.808730152208515 ], [ -82.021861896029932, 28.80870426917847 ], [ -82.021914497696102, 28.808676859571527 ], [ -82.021966056122508, 28.808647953173786 ], [ -82.022381063152466, 28.80840681244727 ], [ -82.022381476984535, 28.808406571464008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spurlock Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020280736859917, 28.809221543713285 ], [ -82.02028062095529, 28.809220807444266 ], [ -82.02027585554147, 28.809190582519417 ], [ -82.020264526915426, 28.809130852070176 ], [ -82.020251336899264, 28.809071416943663 ], [ -82.020236293700833, 28.809012324960662 ], [ -82.020219410649531, 28.80895362033182 ], [ -82.02020069902558, 28.808895346365805 ], [ -82.020188931211749, 28.808864004480316 ], [ -82.020175049034791, 28.808833339630766 ], [ -82.020159102716022, 28.808803462793506 ], [ -82.020141151696563, 28.808774484041297 ], [ -82.020121258488999, 28.808746504423166 ], [ -82.020099494826312, 28.808719627693797 ], [ -82.020075940635252, 28.808693948583549 ], [ -82.020050678915553, 28.808669560919995 ], [ -82.020013621555364, 28.808634365246359 ], [ -82.019978341405661, 28.808597782457444 ], [ -82.019944907116994, 28.808559876608957 ], [ -82.019913381194939, 28.808520723487543 ], [ -82.019883825119507, 28.808480394368388 ], [ -82.019856295250037, 28.808438971355098 ], [ -82.019830841797187, 28.808396527529002 ], [ -82.019807515997897, 28.808353147701279 ], [ -82.019786359867751, 28.808308911270515 ], [ -82.019767415423559, 28.80826390575595 ], [ -82.019750717509837, 28.808218214166253 ], [ -82.019736298922979, 28.808171924924121 ], [ -82.019724187336564, 28.80812512464826 ], [ -82.019714592863835, 28.808083931881679 ], [ -82.019710650804598, 28.808061985520631 ], [ -82.019708984027361, 28.808039814164911 ], [ -82.019709607931134, 28.808017600079243 ], [ -82.019712515377265, 28.807995528238418 ], [ -82.019717684884156, 28.807973780009881 ], [ -82.019725070382762, 28.807952534057389 ], [ -82.019734613509883, 28.807931964534855 ], [ -82.019746235412995, 28.807912243794391 ], [ -82.019759840846277, 28.80789353155787 ], [ -82.019775315098528, 28.807875983038368 ], [ -82.019792534236956, 28.807859743524855 ], [ -82.019811352812994, 28.807844944774583 ], [ -82.019831618205657, 28.807831710425056 ], [ -82.019853162424766, 28.807820149679028 ], [ -82.01987580825778, 28.807810358205931 ], [ -82.019899369269339, 28.807802415435003 ], [ -82.01992365185059, 28.807796387261973 ], [ -82.019948453169548, 28.807792322440026 ], [ -82.020472420300464, 28.807727971789536 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spurlock Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020586079574926, 28.810448613192072 ], [ -82.020460487361873, 28.810186306347681 ], [ -82.020438589118939, 28.810138044931868 ], [ -82.020418777625906, 28.810089089331434 ], [ -82.020401080554237, 28.810039508118862 ], [ -82.020385524551713, 28.80998937528063 ], [ -82.020372130118162, 28.8099387593901 ], [ -82.020360916729572, 28.80988773353225 ], [ -82.02035189976408, 28.809836371694907 ], [ -82.02034509357496, 28.809784746061318 ], [ -82.020292893746003, 28.809310756149181 ], [ -82.02028531252175, 28.809250566787014 ], [ -82.020280736859917, 28.809221543713285 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spurlock Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022698844480672, 28.807261931422659 ], [ -82.022698884432927, 28.807261925100001 ], [ -82.022727820961975, 28.807256625636732 ], [ -82.022770180790545, 28.807250984712425 ], [ -82.022812826875253, 28.807247398290762 ], [ -82.02285563218912, 28.807245878122234 ], [ -82.022898469703691, 28.807246427836755 ], [ -82.022941206242677, 28.807249046553849 ], [ -82.023357817091693, 28.807284715362918 ], [ -82.023383447518057, 28.807287978342906 ], [ -82.023408622522936, 28.80729332753782 ], [ -82.023433123889632, 28.80730071696664 ], [ -82.023456734422098, 28.807310084406776 ], [ -82.023479255359447, 28.807321345977119 ], [ -82.023500486913292, 28.807334405164539 ], [ -82.023520247731255, 28.807349148309001 ], [ -82.023538363628859, 28.8073654482146 ], [ -82.023554677833332, 28.807383161440978 ], [ -82.023569048936608, 28.807402136424336 ], [ -82.023581352942529, 28.807422206258696 ], [ -82.023670023181126, 28.807638369665643 ], [ -82.023735470346054, 28.807835946641948 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brooks Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021723301779204, 28.808767004978662 ], [ -82.021652537309635, 28.808632821536943 ], [ -82.021640722453711, 28.80860894640869 ], [ -82.021630204479919, 28.808584606388827 ], [ -82.021363565800058, 28.807920706959841 ], [ -82.021353828196936, 28.807894369982158 ], [ -82.021345607739534, 28.80786763575562 ], [ -82.021338926977819, 28.807840569243499 ], [ -82.021333800267257, 28.807813241726397 ], [ -82.021304128479983, 28.807625827188978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hoffman Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022381478009365, 28.808406573268464 ], [ -82.022341324283815, 28.808352963462784 ], [ -82.022321563704395, 28.808324768494582 ], [ -82.022303765794291, 28.808295577059038 ], [ -82.022287996139895, 28.808265494716789 ], [ -82.022274312132367, 28.808234630639081 ], [ -82.021970844885857, 28.80748423727659 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tweedle Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021010856181064, 28.808972285630439 ], [ -82.020757101057725, 28.808340458459352 ], [ -82.020740860171998, 28.808302947278239 ], [ -82.020722565398117, 28.808266176293479 ], [ -82.020702262855309, 28.80823023211935 ], [ -82.020679997637984, 28.808195200467818 ], [ -82.020655825084333, 28.80816116434239 ], [ -82.020629801556268, 28.808128204039502 ], [ -82.02060547799725, 28.808097193376099 ], [ -82.020583120171736, 28.808065056335469 ], [ -82.020562795711101, 28.808031887651378 ], [ -82.020544565076449, 28.807997788374699 ], [ -82.020528483606299, 28.807962859557044 ], [ -82.020514599468967, 28.807927208567129 ], [ -82.020502953660653, 28.807890939165457 ], [ -82.020493582056659, 28.807854163233905 ], [ -82.020486513360552, 28.807816990850743 ], [ -82.020472420300806, 28.807727973594144 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avidon Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020280736859917, 28.809221543713285 ], [ -82.020425947972512, 28.809203832848304 ], [ -82.020461268637277, 28.809198612345099 ], [ -82.020496189415908, 28.809191619752308 ], [ -82.020530597618887, 28.809182874937573 ], [ -82.02056438055871, 28.809172407694049 ], [ -82.020597426573232, 28.809160251424121 ], [ -82.020629627075195, 28.809146446748251 ], [ -82.020660876552171, 28.809131040602782 ], [ -82.02069107154108, 28.809114080826102 ], [ -82.02072011267866, 28.809095624279188 ], [ -82.020752979701044, 28.809074619935963 ], [ -82.020787042562645, 28.80905514933615 ], [ -82.020822208047974, 28.809037264826713 ], [ -82.02085838191644, 28.809021015145628 ], [ -82.02089546685356, 28.809006444519827 ], [ -82.020933361446012, 28.808993591763084 ], [ -82.020971964279795, 28.808982491177687 ], [ -82.021010045869247, 28.808972498697301 ], [ -82.021010856181064, 28.808972285630439 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avidon Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022381476984535, 28.808406571464008 ], [ -82.022797202210057, 28.808165014275218 ], [ -82.02281714059157, 28.808152278510114 ], [ -82.022835718164558, 28.808138037909508 ], [ -82.022852792552726, 28.808122403481494 ], [ -82.022868228554174, 28.808105499767702 ], [ -82.022881905311266, 28.808087458525851 ], [ -82.02289371323775, 28.808068421437319 ], [ -82.022903562213941, 28.808048537398616 ], [ -82.022911373391509, 28.808027965229911 ], [ -82.022917085338136, 28.808006863748336 ], [ -82.02292065301468, 28.807985399889116 ], [ -82.022922050847242, 28.80796374238874 ], [ -82.022921265555226, 28.807942059079377 ], [ -82.022918302299672, 28.807920524106127 ], [ -82.022913188778062, 28.807899304391889 ], [ -82.022905959858988, 28.807878566858264 ], [ -82.022779499782203, 28.8075658717501 ], [ -82.022771174467138, 28.807543819719452 ], [ -82.022763913500796, 28.807521478775303 ], [ -82.022757729184121, 28.807498886812912 ], [ -82.022698844480672, 28.807261931422659 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avidon Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021010856181064, 28.808972285630439 ], [ -82.021469302668535, 28.808851988611028 ], [ -82.021527584357671, 28.808835780475569 ], [ -82.021585233596412, 28.808817904039397 ], [ -82.021642191992527, 28.808798382772373 ], [ -82.021698395006098, 28.808777234731608 ], [ -82.021722082767297, 28.808767505950424 ], [ -82.021723301779204, 28.808767004978662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spurlock Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021970844885857, 28.80748423727659 ], [ -82.022603740535729, 28.807285683028397 ], [ -82.022644476371894, 28.807274002334875 ], [ -82.022685878513627, 28.807264306605621 ], [ -82.022698844480672, 28.807261931422659 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spurlock Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021304128479983, 28.807625827188978 ], [ -82.021405338991798, 28.807613396864337 ], [ -82.021477150236578, 28.807603636401538 ], [ -82.021548608686018, 28.807592041556227 ], [ -82.021619653895357, 28.807578620459044 ], [ -82.02169022849418, 28.807563385751937 ], [ -82.021760267940721, 28.807546348273359 ], [ -82.021829714865561, 28.80752752427469 ], [ -82.021898511899394, 28.807506930007406 ], [ -82.021970361375296, 28.807484388940754 ], [ -82.021970844885857, 28.80748423727659 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spurlock Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020472420300464, 28.807727971789536 ], [ -82.020472722507648, 28.807727934750691 ], [ -82.021303879543552, 28.807625857003107 ], [ -82.021304128479983, 28.807625827188978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020586079574926, 28.810448613192072 ], [ -82.020927489731065, 28.810362598600207 ], [ -82.021470007298078, 28.810284080442173 ], [ -82.021694865800683, 28.810266235971067 ], [ -82.022240952342187, 28.810152025062578 ], [ -82.022747778744659, 28.810009261105936 ], [ -82.023179651519087, 28.809845080530994 ], [ -82.023761431924996, 28.809573827481273 ], [ -82.024268258352777, 28.809245465996259 ], [ -82.024432334589108, 28.809116645093248 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bugala Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02541080595023, 28.804906900551487 ], [ -82.025415491289422, 28.804196374491685 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cade Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02541080595023, 28.804906900551487 ], [ -82.025411033369053, 28.804906883366094 ], [ -82.025447827553776, 28.804906120512729 ], [ -82.026519189686141, 28.804911723315723 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hurtt Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026519189686141, 28.804911723315723 ], [ -82.02652393649484, 28.804202566027854 ], [ -82.026523939469698, 28.804202170814825 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trulli Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025415491288996, 28.804196372687059 ], [ -82.025415561974029, 28.804196372674163 ], [ -82.026523939469698, 28.804202170814825 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024561588242847, 28.805271682253792 ], [ -82.024496703931149, 28.805205159024336 ], [ -82.024418182426587, 28.805098082859939 ], [ -82.024293261666145, 28.80486965474239 ], [ -82.024204031940698, 28.80466621163664 ], [ -82.024146925793829, 28.804405661026056 ], [ -82.024139788525545, 28.80425575582591 ], [ -82.024132652926397, 28.803741794048367 ], [ -82.024129084927722, 28.8032528166259 ], [ -82.024133844576411, 28.803063650661091 ], [ -82.024029150220684, 28.80268293737079 ], [ -82.023753134509221, 28.802292705860623 ], [ -82.023524706155172, 28.80209283100691 ], [ -82.023091325758472, 28.801876242856242 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cade Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024561588242847, 28.805271682253792 ], [ -82.024654834901909, 28.805204609622304 ], [ -82.024681921704641, 28.805186193165429 ], [ -82.024710114166808, 28.805169109221154 ], [ -82.024739327273792, 28.805153411942563 ], [ -82.024769471911412, 28.805139146460451 ], [ -82.025163743009088, 28.80496466264545 ], [ -82.025197102324753, 28.80495096765031 ], [ -82.02523131949367, 28.804939029292015 ], [ -82.025266275692829, 28.804928886390837 ], [ -82.02530184902524, 28.804920574158544 ], [ -82.025337917592836, 28.804914122393061 ], [ -82.025374354373795, 28.804909553674914 ], [ -82.02541080595023, 28.804906900551487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trulli Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024998654001706, 28.804194191402598 ], [ -82.025415491288996, 28.804196372687059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hurtt Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026523939469698, 28.804202170814825 ], [ -82.026526230857755, 28.80385977110927 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hurtt Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02651673026368, 28.805278874304019 ], [ -82.026519188681249, 28.80491180181702 ], [ -82.026519189686141, 28.804911723315723 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019001196533424, 28.812704346122587 ], [ -82.019094638026814, 28.812564016059479 ], [ -82.019279178552864, 28.81235329504862 ], [ -82.019458730655657, 28.812106414373481 ], [ -82.01956347017267, 28.811848311022644 ], [ -82.019570876902506, 28.811745386122766 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018593291100856, 28.814002105299888 ], [ -82.018603928213864, 28.813846101648828 ], [ -82.018607434314561, 28.813387021885845 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019811853062308, 28.811073982661338 ], [ -82.019871004261461, 28.810976491359693 ], [ -82.020049464953601, 28.810758772694314 ], [ -82.020324293169111, 28.810569607025108 ], [ -82.020586079574926, 28.810448613192072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025433325887448, 28.806314781905655 ], [ -82.025289062143884, 28.806026073966891 ], [ -82.025128448152287, 28.805815490926857 ], [ -82.024917867109025, 28.805583493952437 ], [ -82.024689439411787, 28.805387187119969 ], [ -82.024561588242847, 28.805271682253792 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024432334589108, 28.809116645093248 ], [ -82.024639456571904, 28.808934949988949 ], [ -82.024885731399181, 28.808702953665922 ], [ -82.025185544941152, 28.808342468959015 ], [ -82.025292621767932, 28.808174718058666 ], [ -82.025385421254029, 28.807989121057968 ], [ -82.025449668170324, 28.807732141063539 ], [ -82.025538900040402, 28.807239595493751 ], [ -82.025563884692033, 28.807014737672453 ], [ -82.02554960957319, 28.806807725740441 ], [ -82.025524625324294, 28.806636403977791 ], [ -82.025474657905519, 28.806425822703158 ], [ -82.025433325887448, 28.806314781905655 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Engdahl Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02604638358504, 28.807048992003658 ], [ -82.026406790967542, 28.807173923042058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gustavsen Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025352367736062, 28.811126746131507 ], [ -82.02507640412685, 28.810385441390384 ], [ -82.025060829781211, 28.8103410893039 ], [ -82.025046964179182, 28.81029630018967 ], [ -82.025034822697336, 28.810251122770207 ], [ -82.025024419689018, 28.810205611182059 ], [ -82.024999892724324, 28.810088084193247 ], [ -82.024988926780281, 28.810040316925253 ], [ -82.024976046185159, 28.809992920849002 ], [ -82.024961266322492, 28.80994595551374 ], [ -82.02494460667431, 28.809899483174757 ], [ -82.024926087745015, 28.809853557966381 ], [ -82.024905732089536, 28.809808241240951 ], [ -82.024883566358739, 28.809763586229192 ], [ -82.024859618229371, 28.809719653380164 ], [ -82.02476402037982, 28.809551956079606 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Horsford Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026248323755553, 28.809068839570884 ], [ -82.026338917557496, 28.80904013617878 ], [ -82.026363000628251, 28.809031362959061 ], [ -82.026386043377144, 28.809020640038529 ], [ -82.026407846055676, 28.809008063100581 ], [ -82.026428215066375, 28.808993743166862 ], [ -82.02644697115791, 28.808977804790995 ], [ -82.026463949426187, 28.808960389667845 ], [ -82.026479000336835, 28.808941649414738 ], [ -82.026491991775671, 28.808921750985018 ], [ -82.026502810070511, 28.808900866742324 ], [ -82.026511359993478, 28.808879183483633 ], [ -82.026517566806277, 28.80885688800204 ], [ -82.026521373190079, 28.808834180621762 ], [ -82.026522749485409, 28.808811256247857 ], [ -82.026525626724947, 28.808381546346833 ], [ -82.026524894858738, 28.808330578547803 ], [ -82.026522019836719, 28.808279670709631 ], [ -82.02651700372752, 28.808228889602759 ], [ -82.026509855772815, 28.808178309214728 ], [ -82.026500582138993, 28.808127996315015 ], [ -82.026489200262134, 28.808078020377817 ], [ -82.026475722455899, 28.808028450878208 ], [ -82.026460168204409, 28.807979354582859 ], [ -82.026343497912407, 28.807635821788157 ], [ -82.026333755583934, 28.807603609322015 ], [ -82.02632624440767, 28.807570936254148 ], [ -82.026320997193736, 28.8075379225861 ], [ -82.026318029336977, 28.807504690127242 ], [ -82.026317352134072, 28.807471359785243 ], [ -82.026318968686525, 28.807438054273888 ], [ -82.026322872875781, 28.807404896308576 ], [ -82.026329049362985, 28.807372007704 ], [ -82.026337478711412, 28.807339509373232 ], [ -82.026348126116957, 28.807307519525214 ], [ -82.026360953702508, 28.807276157271669 ], [ -82.026406790967542, 28.807173923042058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Horsford Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026406790967542, 28.807173923042058 ], [ -82.026492684404772, 28.806982347855271 ], [ -82.026505722802142, 28.806950417090455 ], [ -82.026516501099721, 28.806917838895647 ], [ -82.026524978352555, 28.806884737798175 ], [ -82.026531120787226, 28.806851239226145 ], [ -82.026534906924212, 28.806817470409811 ], [ -82.026536323479874, 28.806783559480131 ], [ -82.026537495839236, 28.806608343051408 ], [ -82.026536509943355, 28.806586257367631 ], [ -82.026533268263847, 28.806564337237013 ], [ -82.026527792361108, 28.806542765824496 ], [ -82.026520130428651, 28.806521717266655 ], [ -82.026510343977122, 28.806501363892874 ], [ -82.026498511930797, 28.806481870810593 ], [ -82.026484731652033, 28.806463396807541 ], [ -82.026469115867854, 28.806446093449956 ], [ -82.026451790620229, 28.806430102376108 ], [ -82.026432899362774, 28.806415550783996 ], [ -82.026395065577432, 28.806390323028307 ], [ -82.026355828750283, 28.806366814430575 ], [ -82.02631529338835, 28.806345085424752 ], [ -82.026273558875445, 28.8063251937388 ], [ -82.026230734837256, 28.806307188075827 ], [ -82.026186929874541, 28.806291116236824 ], [ -82.026142257708244, 28.80627701880351 ], [ -82.026096832057959, 28.806264931846155 ], [ -82.026050770739744, 28.806254886922908 ], [ -82.026004190543247, 28.806246908373662 ], [ -82.025957210306274, 28.806241017831237 ], [ -82.025909951938203, 28.806237230611824 ], [ -82.025862537347038, 28.806235556617914 ], [ -82.025815087414813, 28.806235999436154 ], [ -82.02576772302244, 28.806238558141882 ], [ -82.025720567098148, 28.806243225493962 ], [ -82.025673738471866, 28.806249991545261 ], [ -82.025627361093427, 28.806258836422508 ], [ -82.02558155071678, 28.806269738449398 ], [ -82.025536426167889, 28.806282669633074 ], [ -82.025433325887448, 28.806314781905655 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gustavsen Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02476402037982, 28.809551956079606 ], [ -82.024763699588988, 28.809551393094615 ], [ -82.024656964597654, 28.80936415724743 ], [ -82.024640799484928, 28.809337636677469 ], [ -82.024623010782832, 28.809311932081339 ], [ -82.024603652808054, 28.80928712555907 ], [ -82.024582781923286, 28.809263287480327 ], [ -82.024560462687219, 28.80924049001792 ], [ -82.024432334589108, 28.809116645093248 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Francis Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025816887141502, 28.811101318453474 ], [ -82.02581733279446, 28.811101321077732 ], [ -82.026229484894586, 28.811103464568525 ], [ -82.02625513477949, 28.811102552906782 ], [ -82.026280579253353, 28.811099562355274 ], [ -82.026305602153244, 28.811094515512828 ], [ -82.026329988346433, 28.811087457535869 ], [ -82.026353532948647, 28.811078447113793 ], [ -82.026376032105105, 28.811067562786736 ], [ -82.026397295282848, 28.81105489572472 ], [ -82.026417140149562, 28.811040555142576 ], [ -82.026435397694698, 28.811024662884954 ], [ -82.026451914278695, 28.811007354328346 ], [ -82.026466545486144, 28.810988778382093 ], [ -82.026479168418078, 28.810969092072266 ], [ -82.026489675545918, 28.810948463249694 ], [ -82.026497976760069, 28.810927069687217 ], [ -82.026504000392578, 28.810905091861009 ], [ -82.026507697316376, 28.810882718363672 ], [ -82.026509033772527, 28.810860140491716 ], [ -82.026514994842245, 28.809969740945924 ], [ -82.026514165999657, 28.809916086095836 ], [ -82.026510960390965, 28.809862501176383 ], [ -82.026505382137955, 28.809809067394596 ], [ -82.026497443557659, 28.809755864151128 ], [ -82.026487153894777, 28.809702975358753 ], [ -82.026474528539609, 28.809650480417343 ], [ -82.026459586980465, 28.809598459628202 ], [ -82.026442354852122, 28.809546992389045 ], [ -82.026422853690875, 28.809496156293616 ], [ -82.026248323755553, 28.809068839570884 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Weinsheimer Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025816887141502, 28.811101318453474 ], [ -82.025788974458123, 28.810858002929404 ], [ -82.025783459852533, 28.810799571214382 ], [ -82.025780304608759, 28.810741005519603 ], [ -82.02577951488658, 28.810682375322006 ], [ -82.025783734999223, 28.810052730379859 ], [ -82.025782880991471, 28.810020545112586 ], [ -82.025779889948836, 28.80998845949523 ], [ -82.025774774193593, 28.809956583607242 ], [ -82.025767548096752, 28.809925026625326 ], [ -82.025758239346487, 28.809893894114403 ], [ -82.025746879729738, 28.809863295247769 ], [ -82.025517032853799, 28.809300534715948 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Horsford Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02476402037982, 28.809551956079606 ], [ -82.024797319525135, 28.809537346257031 ], [ -82.024854202138627, 28.80951444449655 ], [ -82.024911921090407, 28.80949322717694 ], [ -82.024970410822419, 28.80947371957356 ], [ -82.025517032853799, 28.809300534715948 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Horsford Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025517032853799, 28.809300534715948 ], [ -82.025517062561065, 28.80930052478508 ], [ -82.026248310438589, 28.809068844084951 ], [ -82.026248323755553, 28.809068839570884 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Francis Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025352367736062, 28.811126746131507 ], [ -82.025398778987395, 28.811113343773556 ], [ -82.025423010787378, 28.811107287553323 ], [ -82.025447717338238, 28.811102971799198 ], [ -82.02547273882746, 28.811100423609439 ], [ -82.025497910317824, 28.811099660158057 ], [ -82.025816887141502, 28.811101318453474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fockler Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023872662704676, 28.81151770074273 ], [ -82.023596635067605, 28.810397944938039 ], [ -82.023592380632834, 28.810375846261898 ], [ -82.023590438397747, 28.81035349725466 ], [ -82.023590825818744, 28.810331086496465 ], [ -82.023593334312366, 28.810310477294308 ], [ -82.023593347606862, 28.810310369917058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fockler Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024546769196036, 28.812126642425056 ], [ -82.024248933608078, 28.812128254651093 ], [ -82.024223706166623, 28.812127380186105 ], [ -82.024198672924058, 28.812124495334839 ], [ -82.02417403981039, 28.812119619912533 ], [ -82.024150009686977, 28.812112795390533 ], [ -82.02412678234495, 28.812104078580184 ], [ -82.024104549382841, 28.812093541633558 ], [ -82.024083494206081, 28.812081271141345 ], [ -82.024063791002732, 28.812067368132748 ], [ -82.024045599620763, 28.812051948076565 ], [ -82.024029072738671, 28.812035136368241 ], [ -82.024014346646325, 28.812017074647677 ], [ -82.024001544316022, 28.811997909970909 ], [ -82.023990767207806, 28.811977800225371 ], [ -82.023982106538512, 28.811956912323289 ], [ -82.023975635085293, 28.811935419496194 ], [ -82.023872662704676, 28.81151770074273 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fockler Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025320877059613, 28.811674515755545 ], [ -82.025362818282389, 28.811689523471593 ], [ -82.025407698494774, 28.811703290863498 ], [ -82.025453314847155, 28.811715036027863 ], [ -82.025499548488469, 28.811724728307194 ], [ -82.025546280568989, 28.811732343360266 ], [ -82.025593391215025, 28.811737859553197 ], [ -82.025640758506611, 28.811741266982601 ], [ -82.025688261547273, 28.811742552135904 ], [ -82.026225035761371, 28.811745086734611 ], [ -82.026250682217054, 28.811746251290682 ], [ -82.026276094577653, 28.811749497516534 ], [ -82.026301059742494, 28.811754795676322 ], [ -82.026325362557969, 28.811762100695539 ], [ -82.026348797086285, 28.811771349451767 ], [ -82.026371160459334, 28.811782464385239 ], [ -82.026392266195984, 28.811795348984639 ], [ -82.026411929860885, 28.811809895008327 ], [ -82.026429984430564, 28.811825977067496 ], [ -82.026446277220955, 28.811843457138291 ], [ -82.026460669888621, 28.811862189073402 ], [ -82.026473036379684, 28.811882010481533 ], [ -82.026483273177377, 28.811902752650813 ], [ -82.026491293154066, 28.811924236940964 ], [ -82.026497027622412, 28.811946282903254 ], [ -82.026500427358059, 28.811968701062206 ], [ -82.026501461576828, 28.811991299231678 ], [ -82.026500196260486, 28.81218041292426 ], [ -82.026498905781864, 28.812202563087844 ], [ -82.026495347013096, 28.812224517882267 ], [ -82.026489544496528, 28.812246099547522 ], [ -82.026481548386897, 28.812267129416277 ], [ -82.026471424208566, 28.81228743693903 ], [ -82.026459253878585, 28.812306853367627 ], [ -82.026445138781739, 28.81232521807102 ], [ -82.026429193624963, 28.812342383950156 ], [ -82.026411550533041, 28.812358208414288 ], [ -82.026392352903585, 28.81237256060049 ], [ -82.026371758481005, 28.812385324080182 ], [ -82.026349938331009, 28.812396392347651 ], [ -82.026327068646538, 28.812405676942529 ], [ -82.026303338941986, 28.812413100229723 ], [ -82.026278943858472, 28.812418600814937 ], [ -82.026254085212798, 28.812422133544157 ], [ -82.026228962777125, 28.81242367040786 ], [ -82.026203787597197, 28.812423199636047 ], [ -82.025566433442947, 28.812385758644755 ], [ -82.025506612787865, 28.812381225584755 ], [ -82.025447033437146, 28.81237467037635 ], [ -82.025387783503362, 28.812366102026889 ], [ -82.025328953148886, 28.812355533152726 ], [ -82.025270627414542, 28.812342980882878 ], [ -82.025212892365531, 28.812328462346251 ], [ -82.025155834067931, 28.812311999183528 ], [ -82.025142470485491, 28.812307635316596 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gustavsen Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025142470485491, 28.812307635316596 ], [ -82.025178142371502, 28.812220162501468 ], [ -82.025190301510662, 28.812187114984958 ], [ -82.025200067269509, 28.812153457036171 ], [ -82.025320877059613, 28.811674515755545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gustavsen Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025320877059613, 28.811674515755545 ], [ -82.025378807682088, 28.811444854532308 ], [ -82.025385781935427, 28.811412717468805 ], [ -82.025390574969819, 28.811380271310092 ], [ -82.025393168373952, 28.811347631555503 ], [ -82.025393552956956, 28.811314913702553 ], [ -82.02539172977292, 28.811282233246867 ], [ -82.025387702949828, 28.811249707487963 ], [ -82.025381487883877, 28.811217449211668 ], [ -82.025373106118622, 28.811185573007183 ], [ -82.025362586368658, 28.811154192560064 ], [ -82.025352383113031, 28.811126786732689 ], [ -82.025352367736062, 28.811126746131507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fockler Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024579016514849, 28.811483220734605 ], [ -82.024614646392806, 28.811483653871353 ], [ -82.024668659220424, 28.811486212296394 ], [ -82.024722512669584, 28.811490666482658 ], [ -82.024776120684578, 28.811497011031772 ], [ -82.024829398232498, 28.811505233326844 ], [ -82.024882261305024, 28.811515321653204 ], [ -82.024934625892513, 28.811527258882446 ], [ -82.024986406960636, 28.811541027886499 ], [ -82.025037523571683, 28.811556606122824 ], [ -82.025087893762461, 28.811573967439916 ], [ -82.025137436594022, 28.811593085686155 ], [ -82.025186074199667, 28.811613930197986 ], [ -82.025233728711513, 28.811636465800369 ], [ -82.02527572119655, 28.811656068099758 ], [ -82.025318787939497, 28.811673769022303 ], [ -82.025320877059613, 28.811674515755545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sanwald Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024579016514849, 28.811483220734605 ], [ -82.024578813673216, 28.811456590877413 ], [ -82.024577773382774, 28.811428054585495 ], [ -82.02457505294764, 28.81139960521153 ], [ -82.024570659557838, 28.81137131764596 ], [ -82.024564606550754, 28.811343268582633 ], [ -82.024264437560007, 28.810125608637108 ], [ -82.024255363620895, 28.810093496974563 ], [ -82.02424411689212, 28.810061924368551 ], [ -82.024230732233121, 28.810031002699027 ], [ -82.024215261920105, 28.810000847452066 ], [ -82.024197760275982, 28.809971565090208 ], [ -82.024178291868395, 28.809943262976464 ], [ -82.024153261306083, 28.809909191545437 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fockler Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024153261306083, 28.809909191545437 ], [ -82.024206745247312, 28.809878132854699 ], [ -82.02429799713191, 28.80982304444337 ], [ -82.024388111425623, 28.809766523299452 ], [ -82.024477059444777, 28.809708584769517 ], [ -82.02452763132078, 28.809676172996113 ], [ -82.024579403171344, 28.809645266046576 ], [ -82.02463231763484, 28.809615897315204 ], [ -82.024686315301309, 28.809588102001292 ], [ -82.024741336759178, 28.809561907183433 ], [ -82.024764019355345, 28.809551956079783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fockler Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023872662704676, 28.81151770074273 ], [ -82.023975804146303, 28.811497979295755 ], [ -82.024007652353674, 28.811492647477895 ], [ -82.024039769304565, 28.811488779154026 ], [ -82.024072070993981, 28.811486383361554 ], [ -82.02410447136738, 28.811485466431382 ], [ -82.024560562291327, 28.811482996605708 ], [ -82.024579016514849, 28.811483220734605 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ava Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022081536119401, 28.810696509160259 ], [ -82.022207587775938, 28.810672578871866 ], [ -82.022326212442195, 28.810646494933728 ], [ -82.022444232170827, 28.810618349208362 ], [ -82.022561593685097, 28.810588155240652 ], [ -82.022678256001697, 28.810555923866655 ], [ -82.02279417301547, 28.810521667728054 ], [ -82.022856956238385, 28.810501890550142 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fockler Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023593347606862, 28.810310369917058 ], [ -82.023593538837304, 28.810308798961689 ], [ -82.023598555980016, 28.810286825041366 ], [ -82.023605835282282, 28.810265347911443 ], [ -82.023615312239954, 28.810244545337703 ], [ -82.023626911079816, 28.81022459508775 ], [ -82.023640534511927, 28.810205662300412 ], [ -82.023656065780216, 28.810187905801538 ], [ -82.023673376857786, 28.810171476298148 ], [ -82.023692320249552, 28.810156509161196 ], [ -82.023712739238846, 28.810143132544784 ], [ -82.023734462762576, 28.81013145655924 ], [ -82.023830954931597, 28.81008379539594 ], [ -82.023926460100441, 28.810034616645975 ], [ -82.024020946510802, 28.809983934753873 ], [ -82.024114385478839, 28.809931767772934 ], [ -82.024153083070686, 28.809909295342031 ], [ -82.024153261306083, 28.809909191545437 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dyson Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023894202299317, 28.813034457563962 ], [ -82.023894364171227, 28.813034456633929 ], [ -82.024420367961923, 28.813031611642558 ], [ -82.024437683928326, 28.813030517714111 ], [ -82.024454689014689, 28.81302744416897 ], [ -82.024471092271099, 28.8130224388808 ], [ -82.024486615051828, 28.813015593032137 ], [ -82.024500989986109, 28.813007020361386 ], [ -82.024513971226185, 28.812996869793377 ], [ -82.024525336493355, 28.812985312806585 ], [ -82.024534892201913, 28.812972548846105 ], [ -82.024542474480853, 28.812958793593385 ], [ -82.024547953273483, 28.812944286183896 ], [ -82.024551235407273, 28.812929272965036 ], [ -82.024552263569802, 28.812914010203244 ], [ -82.024549657289938, 28.812540559710744 ], [ -82.024549658311301, 28.812540546175907 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fockler Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025142470485491, 28.812307635316596 ], [ -82.025099536539344, 28.812293615742774 ], [ -82.025044082773277, 28.812273339079329 ], [ -82.024989555764321, 28.812251201662463 ], [ -82.024936035432646, 28.81222723325525 ], [ -82.024883600675267, 28.812201469937172 ], [ -82.024851043584832, 28.81218586307034 ], [ -82.024817490069339, 28.812171984297756 ], [ -82.024783062054553, 28.812159884126341 ], [ -82.024747879414946, 28.812149604040457 ], [ -82.024712067146297, 28.812141181012116 ], [ -82.024675749217622, 28.812134642990443 ], [ -82.024639054719216, 28.812130013412343 ], [ -82.024602115813536, 28.81212731030033 ], [ -82.024565057489667, 28.81212654355766 ], [ -82.024546769196036, 28.812126642425056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jeffers Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023190746094386, 28.811855964736338 ], [ -82.022856956238385, 28.810501890550142 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ava Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022856956238385, 28.810501890550142 ], [ -82.022909297597323, 28.810485401271428 ], [ -82.023023585691504, 28.810447137138393 ], [ -82.023136993243213, 28.810406891579994 ], [ -82.023249475172832, 28.810364678140527 ], [ -82.023360987426642, 28.810320515778219 ], [ -82.023382220144484, 28.810312804685214 ], [ -82.023404101699597, 28.810306663500896 ], [ -82.023426484577172, 28.810302135560544 ], [ -82.023449216136996, 28.810299249763567 ], [ -82.023472139639168, 28.81029802688926 ], [ -82.023495100390249, 28.81029847598667 ], [ -82.023517939595919, 28.810300592570968 ], [ -82.023593347606862, 28.810310369917058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Priscilla Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023190746094386, 28.811855964736338 ], [ -82.022513209781266, 28.811940815161389 ], [ -82.022495195282502, 28.811941977530829 ], [ -82.022477168033532, 28.811940974354531 ], [ -82.022459463049955, 28.811937825429499 ], [ -82.022442408183508, 28.811932587548778 ], [ -82.022426317976311, 28.811925359916295 ], [ -82.022411492634077, 28.811916274221623 ], [ -82.022398204708608, 28.811905499153582 ], [ -82.022386699096529, 28.811893234986364 ], [ -82.022377193038452, 28.811879709067881 ], [ -82.022369858701396, 28.811865170408762 ], [ -82.022364833423921, 28.811849890582838 ], [ -82.022081536119401, 28.810696509160259 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Priscilla Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022081536119401, 28.810696509160259 ], [ -82.021991807356216, 28.810336541897318 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jeffers Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023283205363114, 28.812234343204025 ], [ -82.023190746094386, 28.811855964736338 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mitchell Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023890780235519, 28.812544111977182 ], [ -82.023890952351678, 28.812544111045401 ], [ -82.024549658311301, 28.812540546175907 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dyson Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024549658311301, 28.812540546175907 ], [ -82.024546769196036, 28.812126642425056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fry Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023235378468158, 28.813038021967312 ], [ -82.023231925681515, 28.812547699823231 ], [ -82.023231925676413, 28.812547676363167 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hills Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023894202299729, 28.813034459368577 ], [ -82.023890780235519, 28.812544111977182 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dyson Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023235378468158, 28.813038021967312 ], [ -82.023894202299317, 28.813034457563962 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mitchell Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023231925676413, 28.812547676363167 ], [ -82.023890780235519, 28.812544111977182 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dyson Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022988882357467, 28.813039355779487 ], [ -82.023235321095783, 28.813038021976869 ], [ -82.023235378468158, 28.813038021967312 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fry Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023231925676413, 28.812547676363167 ], [ -82.023229883177621, 28.812257528834614 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023165730815649, 28.848986210495411 ], [ -82.024770156961324, 28.849628097305647 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024806510727373, 28.849503948913299 ], [ -82.024514935904733, 28.849387874902611 ], [ -82.023402004164126, 28.848941360626384 ], [ -82.023226249294154, 28.84887132516495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02052586429734, 28.8477925346834 ], [ -82.020335694590713, 28.847716455714309 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012709590132118, 28.843605206152862 ], [ -82.012708872709538, 28.843604709045813 ], [ -82.012692940805238, 28.843593669840001 ], [ -82.012490144961475, 28.84345085799912 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 575", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.25047848561681, 28.683749004920031 ], [ -82.250466759578615, 28.683658735334205 ], [ -82.250318560976325, 28.682523476802306 ], [ -82.250192692478592, 28.681599887755453 ], [ -82.250000149956989, 28.680169599089741 ], [ -82.249929723195635, 28.679614792726834 ], [ -82.249781647269202, 28.678527646537844 ], [ -82.249496411365755, 28.676350126194581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 575", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.249014425324404, 28.664264163893094 ], [ -82.249017044411175, 28.663401921696114 ], [ -82.249018038698125, 28.662970081074992 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.229709812203282, 28.640041165014509 ], [ -82.23019140039942, 28.640041212521293 ], [ -82.230194706149348, 28.640041212340353 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 126th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018864120606565, 28.940880093866699 ], [ -82.018991056992078, 28.940820219260619 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 126th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018991056992078, 28.940820219260619 ], [ -82.019146731905039, 28.940611854647681 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 49th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019671912156653, 28.941025857781177 ], [ -82.019691430183286, 28.941490840125518 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 106th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.210374326729507, 28.603248509763475 ], [ -82.210463036306095, 28.603264248426747 ], [ -82.210543335216997, 28.603287732180377 ], [ -82.210616940366023, 28.603308274689699 ], [ -82.210639884825525, 28.603312052481062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97415400073632, 28.823982936433911 ], [ -81.973645299535761, 28.823910504811064 ], [ -81.973047862805885, 28.823831572199392 ], [ -81.972406891856622, 28.823741976243312 ], [ -81.971811878902457, 28.823656649405766 ], [ -81.97124105217415, 28.823577714377254 ], [ -81.970498495548881, 28.823475307257176 ], [ -81.969961536064446, 28.823400634051971 ], [ -81.969192376114336, 28.823293954893391 ], [ -81.968590109343211, 28.823210740733249 ], [ -81.968520205254578, 28.823200802580928 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9865760373889, 28.823637639085003 ], [ -81.986289651551502, 28.823576261989903 ], [ -81.985983917896647, 28.82352510903257 ], [ -81.985678182081301, 28.823484177644467 ], [ -81.985597255094888, 28.823476770012363 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 148", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990989176893095, 28.824312414441323 ], [ -81.989963831168339, 28.823593816810369 ], [ -81.989807811671255, 28.823487029279949 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lawler Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017059352996696, 28.810388576656024 ], [ -82.017275198603045, 28.810093868339443 ], [ -82.017299277047272, 28.810062883646637 ], [ -82.01732523968613, 28.810033103303486 ], [ -82.017353008672885, 28.810004615745004 ], [ -82.017382504111467, 28.80997750489481 ], [ -82.017413631763176, 28.80995185287367 ], [ -82.01744630660896, 28.809927736387412 ], [ -82.017480426213027, 28.809905225827922 ], [ -82.017515889164059, 28.80988438978223 ], [ -82.017552593025499, 28.809865290521543 ], [ -82.017590424090727, 28.809847983099949 ], [ -82.017629271726477, 28.809832520766694 ], [ -82.017669020176314, 28.80981895045559 ], [ -82.017709549584524, 28.809807309175586 ], [ -82.017750741120196, 28.809797634837995 ], [ -82.017792469804277, 28.809789956331954 ], [ -82.01783461270557, 28.80978429532793 ], [ -82.017877043818586, 28.809780667180824 ], [ -82.017919637137666, 28.809779086343287 ], [ -82.017962263581765, 28.809779554636265 ], [ -82.018004799191871, 28.809782072075521 ], [ -82.018047112836271, 28.809786630557106 ], [ -82.018089083627004, 28.809793216562063 ], [ -82.01813058145504, 28.809801812061234 ], [ -82.018171486454094, 28.80981238819653 ], [ -82.018211672610747, 28.80982491520847 ], [ -82.01825102517958, 28.80983935702012 ], [ -82.018289422241878, 28.809855667630153 ], [ -82.018637508314825, 28.81001399563166 ], [ -82.018670039269566, 28.81002989094355 ], [ -82.018701437454368, 28.810047463793914 ], [ -82.018731593240176, 28.810066651938676 ], [ -82.018760396996768, 28.810087388622261 ], [ -82.018787749336838, 28.810109597162327 ], [ -82.01881354984836, 28.810133201779088 ], [ -82.01883771143558, 28.810158116765507 ], [ -82.018860142904131, 28.810184254610544 ], [ -82.018880769450178, 28.810211522387014 ], [ -82.018899515244598, 28.810239824461011 ], [ -82.019142228347391, 28.8106326893733 ], [ -82.019163104805216, 28.810664432532118 ], [ -82.019185875363306, 28.81069515040414 ], [ -82.019210471366534, 28.810724755473633 ], [ -82.019236826208711, 28.810753162029201 ], [ -82.019264864064255, 28.810780290676853 ], [ -82.019286636755353, 28.810799222684455 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lebeau Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018879219910602, 28.8118657713188 ], [ -82.018896512401056, 28.811836888741013 ], [ -82.018925320139829, 28.811784428137564 ], [ -82.018952042853726, 28.811731118734116 ], [ -82.018976642649875, 28.811677021894116 ], [ -82.018999092906171, 28.811622205295571 ], [ -82.019019367000297, 28.811566733909551 ], [ -82.019037440359668, 28.811510676315894 ], [ -82.019053289435931, 28.811454098387376 ], [ -82.019066895803945, 28.811397069605171 ], [ -82.019078244112265, 28.811339659449931 ], [ -82.019087319009131, 28.811281935597631 ], [ -82.019094111290556, 28.811223969332474 ], [ -82.019098610727781, 28.811165830134101 ], [ -82.019101606649443, 28.811133130888411 ], [ -82.019106810379611, 28.811100646994923 ], [ -82.01911420247157, 28.811068493951783 ], [ -82.019123759380676, 28.811036786355373 ], [ -82.019135444243659, 28.811005636999031 ], [ -82.019149218147973, 28.810975155969473 ], [ -82.019165028862787, 28.810945452452788 ], [ -82.01918282313251, 28.810916632928183 ], [ -82.01920253643128, 28.810888797560199 ], [ -82.019224098087065, 28.810862049221122 ], [ -82.019247432303246, 28.810836477249183 ], [ -82.0192724561132, 28.810812177299816 ], [ -82.019286636755353, 28.810799222684455 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lawler Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019286636755353, 28.810799222684455 ], [ -82.01929450398508, 28.810806063827958 ], [ -82.019325661950091, 28.810830407503531 ], [ -82.019358250865551, 28.810853254041231 ], [ -82.019392176466013, 28.8108745357797 ], [ -82.019427342438448, 28.81089419408109 ], [ -82.019463649396442, 28.810912172112609 ], [ -82.019811853062308, 28.811073982661338 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lawler Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018873569770236, 28.812615822273411 ], [ -82.018817926254187, 28.812582598529382 ], [ -82.018751575040611, 28.81254560723778 ], [ -82.018683938447253, 28.812510470332082 ], [ -82.018615079997133, 28.812477223894408 ], [ -82.018545069359291, 28.812445899494609 ], [ -82.01847397620223, 28.812416527800373 ], [ -82.018426883988298, 28.812398641149588 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kincaid Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017563158407825, 28.811574274028096 ], [ -82.017588750346263, 28.811574938552187 ], [ -82.017678062269724, 28.811579434438126 ], [ -82.017767198347627, 28.811586102148958 ], [ -82.017856093017244, 28.811594937181752 ], [ -82.017944675592901, 28.811605933229792 ], [ -82.018032879486114, 28.811619079474465 ], [ -82.018120635035586, 28.811634369609262 ], [ -82.018207880774241, 28.811651788303688 ], [ -82.018294543966093, 28.81167132383813 ], [ -82.018380562119788, 28.811692963589458 ], [ -82.018465869668916, 28.811716686814339 ], [ -82.018550397974096, 28.811742477281516 ], [ -82.018634086591348, 28.811770316051931 ], [ -82.018716867904075, 28.811800179676009 ], [ -82.018798683516778, 28.811832049214644 ], [ -82.018879219910602, 28.8118657713188 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lebeau Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018426883988298, 28.812398641149588 ], [ -82.018429166790924, 28.812393930789696 ], [ -82.018440239139281, 28.81237341079801 ], [ -82.018453199787942, 28.812353764896969 ], [ -82.018467954505667, 28.8123351293473 ], [ -82.018484407010533, 28.812317629582228 ], [ -82.018502442578779, 28.812301384721202 ], [ -82.018549821732506, 28.812260708643468 ], [ -82.018595567550165, 28.812218604406919 ], [ -82.018639623694014, 28.812175127061597 ], [ -82.018681935874696, 28.812130326243459 ], [ -82.018722454926845, 28.812084258806141 ], [ -82.018761131684499, 28.812036976189574 ], [ -82.018797919032892, 28.811988540660984 ], [ -82.018832772929613, 28.811939006366462 ], [ -82.018865649333932, 28.811888435572797 ], [ -82.018879219910602, 28.8118657713188 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Callihan Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016848054902368, 28.811578413363563 ], [ -82.016844280264891, 28.811301375542424 ], [ -82.016842625512623, 28.811267419078625 ], [ -82.016838591921001, 28.811233616290622 ], [ -82.016832196929158, 28.811200098011149 ], [ -82.016823462073461, 28.811166991463168 ], [ -82.016812423233034, 28.81113442386776 ], [ -82.016799121408553, 28.811102517933758 ], [ -82.016783607845554, 28.811071397271032 ], [ -82.016765941984232, 28.811041179172154 ], [ -82.016746189411307, 28.81101198002662 ], [ -82.01672442800637, 28.810983911710913 ], [ -82.016700739745687, 28.810957079784718 ], [ -82.016675214800784, 28.810931588002145 ], [ -82.016631088875499, 28.81089013832737 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Callihan Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016857524717452, 28.812273228448532 ], [ -82.016848054904912, 28.811578429605174 ], [ -82.016848054902368, 28.811578413363563 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lawler Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018426883988298, 28.812398641149588 ], [ -82.018401869169551, 28.812389138577259 ], [ -82.01832882202693, 28.812363760688068 ], [ -82.018254902391391, 28.812340414875635 ], [ -82.01818018915047, 28.812319129100068 ], [ -82.018104751969233, 28.812299921397287 ], [ -82.018028665635171, 28.812282809802788 ], [ -82.017952009033934, 28.812267815058576 ], [ -82.017874852853254, 28.812254947080195 ], [ -82.017797277002558, 28.812244223902933 ], [ -82.017719356266682, 28.812235651832836 ], [ -82.017641166455334, 28.812229239882974 ], [ -82.017562788500811, 28.812224997968258 ], [ -82.017484298211016, 28.812222925176663 ], [ -82.01740577241975, 28.812223028717032 ], [ -82.017327287958608, 28.812225303166016 ], [ -82.017248924734147, 28.812229751220869 ], [ -82.017170758553263, 28.812236365654105 ], [ -82.017092866247637, 28.8122451401406 ], [ -82.017015326697617, 28.812256066550578 ], [ -82.016965023865779, 28.812263126859357 ], [ -82.016914487213356, 28.812268739871094 ], [ -82.016863770015107, 28.812272897458417 ], [ -82.016857524717452, 28.812273228448532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lawler Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016250765677015, 28.812238194097937 ], [ -82.016241239036134, 28.812232588231787 ], [ -82.016221311403783, 28.812218353856885 ], [ -82.016202958196843, 28.812202561008512 ], [ -82.016186338233155, 28.812185345015791 ], [ -82.016171590866449, 28.81216685294007 ], [ -82.016158843157527, 28.812147240867201 ], [ -82.016148202703164, 28.812126676615293 ], [ -82.016139761733911, 28.812105337929498 ], [ -82.016133590965779, 28.812083403459749 ], [ -82.016129743699295, 28.812061059978554 ], [ -82.01612825172154, 28.812038501479297 ], [ -82.016118739091226, 28.811340065341856 ], [ -82.016119585058931, 28.811317813359921 ], [ -82.016122724883388, 28.811295720826081 ], [ -82.016128129904999, 28.811273970912531 ], [ -82.016131670088754, 28.811264119080757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rosenow Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017563158407825, 28.811574274028096 ], [ -82.017559316779156, 28.811293817383177 ], [ -82.017557460502928, 28.811244324064749 ], [ -82.017553249970931, 28.811194942925145 ], [ -82.017546690323073, 28.81114576058534 ], [ -82.017537792846468, 28.811096865470024 ], [ -82.017526572925135, 28.811048340589448 ], [ -82.01751305209072, 28.811000273464472 ], [ -82.017497251874218, 28.810952748908996 ], [ -82.017479200977675, 28.810905849931256 ], [ -82.017458934249774, 28.810859659538611 ], [ -82.017436482440615, 28.810814258031989 ], [ -82.017411887569608, 28.810769726613088 ], [ -82.017385193704399, 28.810726143776353 ], [ -82.017356445936599, 28.810683586211429 ], [ -82.017325696528431, 28.810642127900138 ], [ -82.017292998766365, 28.810601842824063 ], [ -82.017258410033904, 28.810562801355083 ], [ -82.017221991812022, 28.810525072962157 ], [ -82.017183808654224, 28.810488723504715 ], [ -82.01714392716255, 28.810453817939575 ], [ -82.017102418035748, 28.810420415809208 ], [ -82.017059352996696, 28.810388576656024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lawler Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016631088875499, 28.81089013832737 ], [ -82.016631275307816, 28.810889982205698 ], [ -82.016664590322904, 28.810861954318558 ], [ -82.016707979391398, 28.810822708608502 ], [ -82.016749723917286, 28.810782105101133 ], [ -82.016789774734022, 28.810740197942522 ], [ -82.01682807550371, 28.810697039474846 ], [ -82.016864577061313, 28.810652689257914 ], [ -82.016899231265882, 28.810607203242206 ], [ -82.017059343778371, 28.810388589289492 ], [ -82.017059352996696, 28.810388576656024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kincaid Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016848055926872, 28.811578413363449 ], [ -82.017409873506793, 28.811572474852184 ], [ -82.017499330188883, 28.811572618091684 ], [ -82.017563158407825, 28.811574274028096 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Delong Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016006962830218, 28.812846196015176 ], [ -82.016095494606574, 28.812505120712 ], [ -82.016105246104757, 28.812472843954019 ], [ -82.016117204459803, 28.812441148934635 ], [ -82.01613132563341, 28.812410149349443 ], [ -82.016147556367685, 28.812379963406539 ], [ -82.016165837256523, 28.812350700291507 ], [ -82.016186101722383, 28.812322467386128 ], [ -82.016250765677015, 28.812238194097937 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lawler Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016857524717452, 28.812273228448532 ], [ -82.016812924521929, 28.81227559510333 ], [ -82.016762007083102, 28.812276830994392 ], [ -82.016409272388842, 28.812280321854828 ], [ -82.016383630066144, 28.812279532594452 ], [ -82.016358180033293, 28.812276663480976 ], [ -82.016333138465058, 28.812271739754298 ], [ -82.016308718464913, 28.812264801994072 ], [ -82.016285130065938, 28.812255912435919 ], [ -82.016262573057546, 28.812245143242212 ], [ -82.016250765677015, 28.812238194097937 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marja Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015312667935461, 28.811246485691978 ], [ -82.015941246632011, 28.811239851309107 ], [ -82.015979817733168, 28.81124049392621 ], [ -82.016018270305977, 28.811243231711295 ], [ -82.01605645784943, 28.811248055657952 ], [ -82.016094233860841, 28.811254946834513 ], [ -82.016131670088754, 28.811264119080757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lawler Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016131670088754, 28.811264119080757 ], [ -82.016135757120821, 28.811252744086037 ], [ -82.016145542013106, 28.811232215401926 ], [ -82.016157404696131, 28.8112125545032 ], [ -82.016171246842447, 28.811193923816521 ], [ -82.016186953731903, 28.811176477649507 ], [ -82.016204396300523, 28.811160362190648 ], [ -82.016223428066226, 28.811145709193415 ], [ -82.016243894349614, 28.811132639584489 ], [ -82.0162656230534, 28.81112126166029 ], [ -82.016319933276407, 28.811094567769889 ], [ -82.016373110127418, 28.811066161402692 ], [ -82.016425084969512, 28.811036077758061 ], [ -82.01647578814196, 28.811004355644851 ], [ -82.016525154082984, 28.810971037480755 ], [ -82.016573118255749, 28.810936167487974 ], [ -82.016619617148208, 28.810899789888676 ], [ -82.016631088875499, 28.81089013832737 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fortuna Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014391701603103, 28.812272629964653 ], [ -82.01446305433528, 28.812130676644372 ], [ -82.014477458690138, 28.812099472376712 ], [ -82.014489668465842, 28.812067548286496 ], [ -82.014499635529532, 28.812035028898094 ], [ -82.014507321992383, 28.812002030613925 ], [ -82.014512702261129, 28.811968680662769 ], [ -82.014515755864778, 28.811935103565872 ], [ -82.014516467454968, 28.81190142474615 ], [ -82.014507819817965, 28.811254981326513 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marja Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014062726796325, 28.811259678195817 ], [ -82.014507819817965, 28.811254981326513 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Coffman Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014391701603103, 28.812272629964653 ], [ -82.01504250030348, 28.812468391203634 ], [ -82.015059927650398, 28.812472512919459 ], [ -82.015077831095212, 28.812474514152569 ], [ -82.015095874595374, 28.812474359748343 ], [ -82.015113729284678, 28.812472048839389 ], [ -82.015131062205228, 28.812467625674401 ], [ -82.015147553723423, 28.812461174202504 ], [ -82.015162898553427, 28.812452810854641 ], [ -82.015176813954213, 28.812442690858798 ], [ -82.015189041777788, 28.812431002825932 ], [ -82.015199356664354, 28.812417962432747 ], [ -82.015207567066511, 28.812403809714883 ], [ -82.015229855375608, 28.812355156544211 ], [ -82.015249825111368, 28.812305731240372 ], [ -82.015267441455009, 28.812255614113749 ], [ -82.01528267471204, 28.812204896301786 ], [ -82.015295497236352, 28.812153663527798 ], [ -82.015305891627548, 28.812102005123059 ], [ -82.015313831264962, 28.812050011322029 ], [ -82.015319310017787, 28.811997770552306 ], [ -82.015322313559778, 28.811945374851341 ], [ -82.015322838834038, 28.811892914450713 ], [ -82.015312667935461, 28.811246485691978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fortuna Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014248001240688, 28.812552359787535 ], [ -82.014391701603103, 28.812272629964653 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 707", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034127741003616, 28.584445250347464 ], [ -82.031632622727741, 28.584426280359335 ], [ -82.030436028942376, 28.584418723331879 ], [ -82.029960781055763, 28.584415311537295 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 721", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034127741003616, 28.584445250347464 ], [ -82.034130261711752, 28.582692056724202 ], [ -82.034136996741509, 28.581672826127058 ], [ -82.034136742311063, 28.580887364857958 ], [ -82.034140058960304, 28.580223462917484 ], [ -82.034143093963763, 28.578689942189591 ], [ -82.034142876385147, 28.578015576404187 ], [ -82.034142876270138, 28.578015219977882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corder Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019237613838115, 28.814419679172321 ], [ -82.019048813437053, 28.814634528715409 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corder Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019266038221105, 28.815262994284929 ], [ -82.019292436374201, 28.815172802053102 ], [ -82.019297296197806, 28.815152766490236 ], [ -82.019300236003005, 28.815132442451517 ], [ -82.019301235326267, 28.81511197430957 ], [ -82.019300288047191, 28.815091503727949 ], [ -82.019297399315491, 28.815071175075531 ], [ -82.019292590672904, 28.815051130011948 ], [ -82.019285895955221, 28.815031509292726 ], [ -82.019277363340805, 28.815012450062188 ], [ -82.019135266455748, 28.814730326086384 ], [ -82.01912443176488, 28.814711130909643 ], [ -82.019111732607698, 28.814692843709537 ], [ -82.019097264290593, 28.814675605232981 ], [ -82.019081139535146, 28.814659548103723 ], [ -82.019063482330537, 28.814644794116294 ], [ -82.01904887901469, 28.814634574724334 ], [ -82.019048813437053, 28.814634528715409 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maisto Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018465266824137, 28.815241079890107 ], [ -82.019266038221105, 28.815262994284929 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corder Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019286185103226, 28.815874725318309 ], [ -82.019223093608915, 28.815739871082545 ], [ -82.01921145814768, 28.815712236718774 ], [ -82.019202091914366, 28.815683940650565 ], [ -82.019195044111271, 28.815655129948237 ], [ -82.019190350620747, 28.815625947172254 ], [ -82.019188035032286, 28.815596543907716 ], [ -82.019188106591827, 28.815567071741626 ], [ -82.019190569422022, 28.815537678652266 ], [ -82.019195409204272, 28.815508514424955 ], [ -82.019202600350496, 28.815479730651059 ], [ -82.019266038221105, 28.815262994284929 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Constance Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018543152003645, 28.81608493897663 ], [ -82.018739195037327, 28.815979246181158 ], [ -82.018759571289237, 28.815969162857442 ], [ -82.018780745890865, 28.815960450935403 ], [ -82.018802603078697, 28.815953158252618 ], [ -82.018825015818223, 28.815947325429704 ], [ -82.018847863220955, 28.815942985868034 ], [ -82.019286185103226, 28.815874725318309 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corder Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020453274877852, 28.81684007243808 ], [ -82.02026844573551, 28.816795016262436 ], [ -82.019799453425733, 28.816743969173711 ], [ -82.019775132148567, 28.816740349827473 ], [ -82.019751270545285, 28.816734846388925 ], [ -82.019728057140853, 28.816727501240411 ], [ -82.019705674315617, 28.816718372104454 ], [ -82.019684299329882, 28.816707532043722 ], [ -82.019664099200455, 28.816695065852461 ], [ -82.019645232749482, 28.816681069153816 ], [ -82.019627851630617, 28.81666565652052 ], [ -82.019612090080543, 28.816648946136958 ], [ -82.019598071068629, 28.816631071528448 ], [ -82.019585909368715, 28.81661217253756 ], [ -82.019575696191765, 28.816592398935509 ], [ -82.019567515577563, 28.816571905006075 ], [ -82.01956143005178, 28.816550853156674 ], [ -82.019484481951153, 28.816224790661455 ], [ -82.019478054087273, 28.81620275353205 ], [ -82.019469332398955, 28.816181337509516 ], [ -82.019458389663242, 28.816160727556905 ], [ -82.019445321195292, 28.816141100513242 ], [ -82.019379401679203, 28.816051879275847 ], [ -82.019359299101325, 28.816022733822109 ], [ -82.019341285374963, 28.815992545007248 ], [ -82.01932543121346, 28.815961432829649 ], [ -82.019286185103226, 28.815874725318309 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corder Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019048813437053, 28.814634528715409 ], [ -82.019044426909531, 28.814631457845312 ], [ -82.019024119796754, 28.81461964123142 ], [ -82.018516511717664, 28.814351621721062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018543152003645, 28.81608493897663 ], [ -82.018461151391676, 28.815973331287612 ], [ -82.018296969510345, 28.815859116645552 ], [ -82.018175616932751, 28.815759179852435 ], [ -82.018086387911666, 28.815623549755774 ], [ -82.018018574468428, 28.815491489107032 ], [ -82.017982883440652, 28.815323737959034 ], [ -82.017982884091992, 28.815180970828251 ], [ -82.01803285239879, 28.814973959138136 ], [ -82.01811494488345, 28.814824054124504 ], [ -82.018168483895977, 28.814741963164607 ], [ -82.018318390328986, 28.814617043257631 ], [ -82.018436173361195, 28.814484983800945 ], [ -82.018516511717664, 28.814351621721062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rostas Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025690861220795, 28.815398204118377 ], [ -82.025730219178541, 28.815320241765971 ], [ -82.025791360149469, 28.815227706665514 ], [ -82.025819452549769, 28.815184742470628 ], [ -82.025835976943156, 28.815112035766514 ], [ -82.025845891914457, 28.81503437299617 ], [ -82.025854154266995, 28.814964970278279 ], [ -82.025867374182411, 28.814836080939603 ], [ -82.025862985317445, 28.814798924624267 ], [ -82.025849197017237, 28.814768331655017 ], [ -82.025832944846343, 28.814742377918304 ], [ -82.025804582357239, 28.814718757995987 ], [ -82.025765796311674, 28.814699084898631 ], [ -82.025726917092697, 28.814692318451726 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rostas Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024613729400102, 28.817566548457172 ], [ -82.025119222034789, 28.817568833953985 ], [ -82.025145484128771, 28.817567859228628 ], [ -82.025171522354412, 28.817564701851278 ], [ -82.025197108242693, 28.817559393444302 ], [ -82.025222009229651, 28.817551979165565 ], [ -82.025246004026954, 28.817542526728843 ], [ -82.025268875448816, 28.817531120991173 ], [ -82.025290423730638, 28.817517862145774 ], [ -82.025310452186616, 28.817502870236304 ], [ -82.02532878360087, 28.817486278837482 ], [ -82.025345253056486, 28.817468237763514 ], [ -82.025359713056503, 28.817448906750727 ], [ -82.025372035574009, 28.817428459066605 ], [ -82.025382108977169, 28.817407076096377 ], [ -82.025389842128448, 28.817384951853736 ], [ -82.025395170529421, 28.817362283054401 ], [ -82.025398041977752, 28.817339271825585 ], [ -82.025398432960131, 28.817316126605281 ], [ -82.025380316592404, 28.816824629106485 ], [ -82.02537953523013, 28.816770251544011 ], [ -82.025381195357951, 28.816715887972766 ], [ -82.025385293919101, 28.816661625014902 ], [ -82.02539182580729, 28.816607547488339 ], [ -82.025400779768844, 28.816553739309569 ], [ -82.025412143526083, 28.816500286199833 ], [ -82.02542589865304, 28.816447269369785 ], [ -82.02544202160216, 28.816394773640155 ], [ -82.025460489849635, 28.81634288022213 ], [ -82.02548127370008, 28.816291670328081 ], [ -82.025504339359784, 28.816241223366454 ], [ -82.025529653035449, 28.816191619647885 ], [ -82.02555591296462, 28.816140369034759 ], [ -82.025580031391641, 28.816088308535587 ], [ -82.025601976574947, 28.816035506732927 ], [ -82.025621717798259, 28.815982034013608 ], [ -82.025639228444462, 28.815927964372936 ], [ -82.025654489066838, 28.81587336548856 ], [ -82.02565560364701, 28.815868639885533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rostas Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023771794733477, 28.81770259150893 ], [ -82.023935430459787, 28.817653838781364 ], [ -82.024071373515852, 28.817614558577894 ], [ -82.024125951504885, 28.817601488206009 ], [ -82.024181101635961, 28.817590428059031 ], [ -82.024236727609193, 28.817581399808361 ], [ -82.024292730049879, 28.817574419712397 ], [ -82.024349014704995, 28.817569498614851 ], [ -82.024405483222552, 28.817566643751025 ], [ -82.024462038275345, 28.817565863258611 ], [ -82.024613729400102, 28.817566548457172 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Steele Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022994955076427, 28.816902509132543 ], [ -82.023067332646832, 28.816815470301755 ], [ -82.023112889033158, 28.816716320560097 ], [ -82.023123607660935, 28.816630570466835 ], [ -82.023123608336803, 28.816496584657557 ], [ -82.023131233299679, 28.816455570699361 ], [ -82.023147726448855, 28.816413513101981 ], [ -82.023163987351111, 28.816382445676389 ], [ -82.023195962156237, 28.816349201070803 ], [ -82.02323883696377, 28.81630632519072 ], [ -82.023283580228863, 28.816285705363164 ], [ -82.023332628963686, 28.816271490299446 ], [ -82.02344517699477, 28.816250052397915 ], [ -82.023501451627126, 28.816225935010838 ], [ -82.023588815575152, 28.816172830149164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Victor Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023285332653927, 28.818611456478479 ], [ -82.023378881418068, 28.818644865991054 ], [ -82.023402492480443, 28.818654364254741 ], [ -82.023424994363381, 28.818665761160087 ], [ -82.023446191354523, 28.818678957486501 ], [ -82.023465897983101, 28.818693836867808 ], [ -82.023483942094359, 28.81871026940107 ], [ -82.023500166899183, 28.818728114353089 ], [ -82.023514430973066, 28.818747214746406 ], [ -82.023526609281902, 28.818767403675476 ], [ -82.023536595231079, 28.81878850340388 ], [ -82.023626982628898, 28.819007807106125 ], [ -82.023641081417367, 28.819039007485038 ], [ -82.023657314203987, 28.819069390910084 ], [ -82.023675621540775, 28.819098846406447 ], [ -82.0236959368073, 28.819127262098288 ], [ -82.023718182114621, 28.819154535134636 ], [ -82.023742275474646, 28.819180559958276 ], [ -82.023768127729454, 28.819205241840951 ], [ -82.023795642549572, 28.819228489664841 ], [ -82.023824715409134, 28.819250214118167 ], [ -82.023855240759957, 28.819270337619368 ], [ -82.023887102807734, 28.819288781686378 ], [ -82.023920183711084, 28.819305478665282 ], [ -82.023954358458212, 28.819320369024243 ], [ -82.023989503061628, 28.819333393231361 ], [ -82.024025483290941, 28.819344505291266 ], [ -82.024062167990309, 28.819353663719703 ], [ -82.024099417808145, 28.819360831545502 ], [ -82.024137094420723, 28.819365987136763 ], [ -82.024175059503804, 28.819369107057064 ], [ -82.024272671563352, 28.819375161725269 ], [ -82.024461165958371, 28.819367722593189 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022827799673621, 28.81911594391703 ], [ -82.022754879247699, 28.819053556600387 ], [ -82.022533590017034, 28.818910787549946 ], [ -82.022176671323209, 28.818760879897873 ], [ -82.021955381780046, 28.818689495219356 ], [ -82.0217697840325, 28.81860740323178 ], [ -82.021627016954596, 28.818493189364197 ], [ -82.021462833929334, 28.818353990064214 ], [ -82.021402158470011, 28.818271899097024 ], [ -82.021312929023154, 28.818104147163442 ], [ -82.021145177943708, 28.817879288131643 ], [ -82.021063087085821, 28.817793627091248 ], [ -82.020845365514717, 28.817647288771347 ], [ -82.020666907860743, 28.817572335066753 ], [ -82.020492017271422, 28.817525936003793 ], [ -82.020181496932608, 28.817447411508677 ], [ -82.019831716455911, 28.817347472818195 ], [ -82.019596149463467, 28.817254672645582 ], [ -82.019449812935761, 28.817179719154169 ], [ -82.019150001722679, 28.817036949936124 ], [ -82.018985819446527, 28.816876336668795 ], [ -82.018896590561198, 28.816712153534027 ], [ -82.018696717192654, 28.816351665878912 ], [ -82.018543152003645, 28.81608493897663 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Steele Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022827796600694, 28.819115947526761 ], [ -82.023114019843973, 28.818848034464668 ], [ -82.023143525071376, 28.818818949036388 ], [ -82.023171289266912, 28.818788562760187 ], [ -82.023197235606276, 28.81875695595544 ], [ -82.023221300585618, 28.818724212548581 ], [ -82.023243415579344, 28.818690420076052 ], [ -82.023263521184106, 28.818655670584281 ], [ -82.023281567217353, 28.818620053411202 ], [ -82.023285257898351, 28.818611627929805 ], [ -82.023285332653927, 28.818611456478479 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Steele Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023285332653927, 28.818611456478479 ], [ -82.023297505547049, 28.818583663308143 ], [ -82.023339660029464, 28.81853185195601 ], [ -82.023396907555039, 28.818481353627096 ], [ -82.023476138982275, 28.81842144589881 ], [ -82.023665523886791, 28.818251388963727 ], [ -82.023779541535006, 28.818112249646493 ], [ -82.023825922658943, 28.818027221592558 ], [ -82.023839450499679, 28.817975044121116 ], [ -82.023843315528211, 28.817903541728267 ], [ -82.023827856279695, 28.817835905426893 ], [ -82.023771794733477, 28.81770259150893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Steele Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023771794733477, 28.81770259150893 ], [ -82.023745947402418, 28.817638541843582 ], [ -82.023722332961569, 28.817571509658851 ], [ -82.02370242590041, 28.817506839988535 ], [ -82.023694387096143, 28.817418409578469 ], [ -82.02369974623636, 28.817343377996004 ], [ -82.02371582505134, 28.817262985771578 ], [ -82.023747982247102, 28.817155797617968 ], [ -82.023769420229584, 28.817070047458532 ], [ -82.023777459512573, 28.81696285889269 ], [ -82.023769421629154, 28.816855670359349 ], [ -82.023747983928885, 28.816753840218166 ], [ -82.023702428543302, 28.81665201146637 ], [ -82.02362739762161, 28.81654750151742 ], [ -82.023605792796971, 28.816499754933265 ], [ -82.023589881418303, 28.816442992403712 ], [ -82.023581842421819, 28.816325085310492 ], [ -82.023588815575152, 28.816172830149164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Declerk Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022994955076427, 28.816902509132543 ], [ -82.022793974756667, 28.816852263577168 ], [ -82.022548923909852, 28.816792476599257 ], [ -82.022544368553739, 28.816791365688697 ], [ -82.022525980931675, 28.816785867271339 ], [ -82.022502455518833, 28.816776901199788 ], [ -82.022479966554158, 28.816766064468851 ], [ -82.022458707696558, 28.8167534490835 ], [ -82.022438859288442, 28.816739160585641 ], [ -82.022420589381809, 28.816723325272289 ], [ -82.022404053734519, 28.816706073051709 ], [ -82.0223893937643, 28.816687551880744 ], [ -82.022376733474005, 28.816667922351286 ], [ -82.022366180473881, 28.816647346862464 ], [ -82.022357825984628, 28.816626004057504 ], [ -82.022351738686964, 28.816604073485561 ], [ -82.022347971894675, 28.816581741014229 ], [ -82.022346557407317, 28.816559198830642 ], [ -82.022347506533336, 28.816536638222793 ], [ -82.022350814188798, 28.816514251383449 ], [ -82.022370461681035, 28.816410939160953 ], [ -82.022387870451524, 28.816307315093535 ], [ -82.022403037441606, 28.816203419786476 ], [ -82.022415953444423, 28.816099288432071 ], [ -82.022417760091372, 28.816081620009616 ], [ -82.02242191731581, 28.816040945011082 ], [ -82.022426617450193, 28.815994959830459 ], [ -82.022435021276706, 28.81589046917351 ], [ -82.022437292741785, 28.815851806627567 ], [ -82.022437297847191, 28.815851724516527 ], [ -82.022437339703103, 28.815851010782545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Declerk Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022437339703103, 28.815851010782545 ], [ -82.022443054741288, 28.815734915944837 ], [ -82.02244327182882, 28.815310351035752 ], [ -82.02244116288341, 28.815186283730487 ], [ -82.022433805263304, 28.814774392949872 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rish Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024613729400102, 28.817566548457172 ], [ -82.024620553884233, 28.816927623462181 ], [ -82.024619940486929, 28.816889024558584 ], [ -82.024617276992444, 28.816850492788088 ], [ -82.024612571618974, 28.816812112966208 ], [ -82.024596243323757, 28.816727153448319 ], [ -82.024581529007804, 28.816687915490363 ], [ -82.024564853772233, 28.816622191471144 ], [ -82.024541310802846, 28.816448564121092 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orton Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022437339703103, 28.815851010782545 ], [ -82.023620785191881, 28.815857963658917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orton Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023620785191881, 28.815857963658917 ], [ -82.024925992656051, 28.815864815840559 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orton Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024925992656051, 28.815864815840559 ], [ -82.02565560364701, 28.815868639885533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Feulner Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022955708665066, 28.814667713743138 ], [ -82.023288468988383, 28.814669463248659 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Feulner Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023288468988383, 28.814669463248659 ], [ -82.024820051799793, 28.814677506565911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Feulner Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024820051799793, 28.814677506565911 ], [ -82.02519389048571, 28.814679466917664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shaw Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023190813499042, 28.815249262513429 ], [ -82.023288468988383, 28.814669463248659 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tate Gregory Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024832381920021, 28.815257883781577 ], [ -82.024828438010744, 28.815242551529273 ], [ -82.0248232669461, 28.815219402783157 ], [ -82.024819608035529, 28.81519603179899 ], [ -82.024817471540956, 28.815172514369131 ], [ -82.02481686465093, 28.81514892718868 ], [ -82.024820051799793, 28.814677506565911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Horvat Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023190813499042, 28.815249262513429 ], [ -82.024832381920021, 28.815257883781577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shaw Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023141985862509, 28.815539162101413 ], [ -82.023190813499042, 28.815249262513429 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tate Gregory Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024925992656051, 28.815864815840559 ], [ -82.024927273058651, 28.815675333212763 ], [ -82.024926667165659, 28.815651746936766 ], [ -82.024924530637705, 28.81562822951026 ], [ -82.024920870665284, 28.815604856725891 ], [ -82.0249156995623, 28.815581707984638 ], [ -82.024832381920021, 28.815257883781577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004881468349524, 28.799771408290411 ], [ -82.005028861662183, 28.799765231030342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01033702025515, 28.80239970023954 ], [ -82.010276635469282, 28.802341923138773 ], [ -82.010128535356017, 28.802317905795071 ], [ -82.009902381650619, 28.802289886410922 ], [ -82.009744274715658, 28.802281879945635 ], [ -82.0092659508623, 28.802259862822716 ], [ -82.009229331704702, 28.802249282800286 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009225872516737, 28.802361485523161 ], [ -82.009255981601697, 28.802359559909355 ], [ -82.009659607570939, 28.802359561970473 ], [ -82.010028883029022, 28.80236815158128 ], [ -82.010256459419523, 28.802391770077264 ], [ -82.01033702025515, 28.80239970023954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Christopher Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02418734573348, 28.820121483976962 ], [ -82.02556003387302, 28.820129135677057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Christopher Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02556003387302, 28.820129135677057 ], [ -82.025942556894819, 28.820131264659558 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Christopher Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023479193835342, 28.820137205099481 ], [ -82.023517038644087, 28.820128043890147 ], [ -82.023537887807208, 28.820123669585108 ], [ -82.023559027203703, 28.820120562972615 ], [ -82.023580360528143, 28.820118742115003 ], [ -82.023601784300681, 28.820118214248183 ], [ -82.02418734573348, 28.820121483976962 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023479193835342, 28.820137205099481 ], [ -82.02341874538871, 28.819952992542216 ], [ -82.023311670895865, 28.819703148344466 ], [ -82.023093950991594, 28.819389060824594 ], [ -82.022936907149543, 28.819203462694563 ], [ -82.022827799673621, 28.81911594391703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048558460830293, 28.800008951909948 ], [ -82.048453152970438, 28.800041175481297 ], [ -82.048064925673515, 28.800193172815366 ], [ -82.04750141844778, 28.800503262447705 ], [ -82.04721799804453, 28.800703321475151 ], [ -82.046925657445442, 28.800947801947832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046847135292495, 28.80102489518714 ], [ -82.046750052887276, 28.801117693115788 ], [ -82.046695432632475, 28.801173968116007 ], [ -82.046566527566185, 28.801314114697757 ], [ -82.046441922365943, 28.801456151847916 ], [ -82.046358142287275, 28.801565991461775 ], [ -82.046298621368678, 28.801646796388891 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045607426908603, 28.805258144133671 ], [ -82.045605431932572, 28.805606646187641 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045578939606017, 28.811544382099434 ], [ -82.045578898392449, 28.812385690684369 ], [ -82.045578453206133, 28.812569898337841 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045578453206133, 28.812569898337841 ], [ -82.045577784392151, 28.812846191311632 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045566787792495, 28.81693113261171 ], [ -82.045561910275993, 28.818023695585115 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 110", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036911229150135, 28.912755885640806 ], [ -82.036082580478734, 28.912766773638914 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 156", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037212671019105, 28.839881299801654 ], [ -82.036294941558538, 28.839889485267705 ], [ -82.035095047586225, 28.839878497714018 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 156", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033020747768248, 28.839873614608567 ], [ -82.032331262005073, 28.839872211556035 ], [ -82.031711361445659, 28.839868296837963 ], [ -82.031391403291323, 28.839862895679886 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058631988926933, 28.84794290505981 ], [ -82.058945031971049, 28.848023744897986 ], [ -82.05966209006499, 28.848239224090964 ], [ -82.06058942661474, 28.848562098738235 ], [ -82.061046131086172, 28.848733266329383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057941867369948, 28.847773031291872 ], [ -82.058170154226076, 28.84782364285768 ], [ -82.05862814724459, 28.847941913271953 ], [ -82.058631988926933, 28.84794290505981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 43rd Plz", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032103377488909, 28.82299746392766 ], [ -82.032103382641409, 28.822997561375828 ], [ -82.032122421754707, 28.823390028842226 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 507", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026986938695757, 28.814358761673525 ], [ -82.026974729314787, 28.816104517462154 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 507", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026997898636523, 28.813448430472697 ], [ -82.026986173948799, 28.814126623575881 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053723016202994, 28.878668710609936 ], [ -82.053724673447817, 28.879134311721916 ], [ -82.053726411421465, 28.879768238810755 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053723681243156, 28.885507178894105 ], [ -82.053723676840974, 28.885508598213956 ], [ -82.053721382211847, 28.886286137268808 ], [ -82.05372989731751, 28.887354534666379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053726731626497, 28.883853655641239 ], [ -82.053725522083951, 28.884883194283965 ], [ -82.053725408390974, 28.88492159171458 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053725408390974, 28.88492159171458 ], [ -82.053725406702739, 28.884922301825519 ], [ -82.053723681243156, 28.885507178894105 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047506522562401, 28.887333494806708 ], [ -82.046161857387816, 28.887329251345683 ], [ -82.045407445082546, 28.88733184114102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041370271503936, 28.887318159567272 ], [ -82.041205661637449, 28.887317302431278 ], [ -82.041205482221159, 28.887317301583 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041205482221159, 28.887317301583 ], [ -82.040622326892475, 28.887314267368406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040622326892475, 28.887314267368406 ], [ -82.040621880915012, 28.887314265696197 ], [ -82.039999503163074, 28.887311027480418 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037118991550471, 28.886409754691385 ], [ -82.037119867331739, 28.886124378502508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037119867331739, 28.886124378502508 ], [ -82.037143015942675, 28.885611287216715 ], [ -82.037145385136625, 28.88523184034824 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037030368882739, 28.883588467135986 ], [ -82.037029498912261, 28.883940838354391 ], [ -82.037029785080549, 28.884321652464944 ], [ -82.037029785171583, 28.884321912327508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037145357836209, 28.884322799601726 ], [ -82.03714464159215, 28.884067152758192 ], [ -82.037148808457744, 28.883569629340784 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037030368882739, 28.883588467135986 ], [ -82.036370930486527, 28.883601647599843 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035742791278693, 28.883615031433536 ], [ -82.035383176017092, 28.883625852106583 ], [ -82.035372613509651, 28.883626170635342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035372613509651, 28.883626170635342 ], [ -82.034859369671764, 28.883641615824697 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054550353403911, 28.536752170824467 ], [ -82.054553323187463, 28.536046085691499 ], [ -82.054560894756264, 28.534566952003413 ], [ -82.054568509711714, 28.533172444970695 ], [ -82.054567968042846, 28.532120125999295 ], [ -82.054579541188573, 28.530320877997745 ], [ -82.054579315785929, 28.52988302376556 ], [ -82.054586742739573, 28.528124250896372 ], [ -82.054590335420087, 28.527009380278798 ], [ -82.05459398676841, 28.526008570360133 ], [ -82.054601707983863, 28.524820110038991 ], [ -82.05460564701221, 28.524382256510556 ], [ -82.054601342353479, 28.524109977934877 ], [ -82.054601232478191, 28.523896571663496 ], [ -82.054588602313515, 28.523642695327442 ], [ -82.05455930267911, 28.523377787098891 ], [ -82.054538303080491, 28.523046643807763 ], [ -82.054513149385201, 28.522741259789726 ], [ -82.054488018520999, 28.522480029656151 ], [ -82.054475437072242, 28.522318140857031 ], [ -82.054467018307847, 28.522148889919617 ], [ -82.054466863361242, 28.521847175772777 ], [ -82.054462604693256, 28.521625740129956 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106636594629506, 28.746936770167476 ], [ -82.106479308027019, 28.747147907442024 ], [ -82.106258819137068, 28.747705776747331 ], [ -82.105986262548015, 28.748318117806843 ], [ -82.105906663962415, 28.748470973442188 ], [ -82.105830524810983, 28.748617713111436 ], [ -82.10574050932621, 28.748756825344103 ], [ -82.105689905880851, 28.748828815727961 ], [ -82.105688161637843, 28.748831296660605 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106636594629506, 28.746936770167476 ], [ -82.106628408538398, 28.746958648857799 ], [ -82.106531331824499, 28.747213807590711 ], [ -82.106416376034133, 28.747518644006071 ], [ -82.106303960741045, 28.747803160746233 ], [ -82.106181293602845, 28.748085427757772 ], [ -82.106061167593637, 28.748342863478602 ], [ -82.105956346092299, 28.748541592054337 ], [ -82.105889876735802, 28.748670313895264 ], [ -82.10581829259857, 28.748805813401589 ], [ -82.105797003186439, 28.748844562089751 ], [ -82.105796200911598, 28.748846022669081 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108651760453242, 28.741551533514507 ], [ -82.108631039681242, 28.741607086190207 ], [ -82.108035891476689, 28.743196753294807 ], [ -82.107456047252782, 28.744743512576036 ], [ -82.107065222750961, 28.745791243022261 ], [ -82.106636594629506, 28.746936770167476 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106631736761969, 28.747714867004785 ], [ -82.106882092500967, 28.74706003180918 ], [ -82.107408301867906, 28.745644244715212 ], [ -82.107771020482048, 28.744668770901182 ], [ -82.108315096950548, 28.743216846618971 ], [ -82.108884704292123, 28.741699436855427 ], [ -82.108939848465369, 28.7415510175489 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103139418019211, 28.749715142676234 ], [ -82.103209014835855, 28.749350439226795 ], [ -82.103295270320132, 28.748910328699044 ], [ -82.103309843933999, 28.748817358654872 ], [ -82.103310498177919, 28.748813178604252 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.092458918723167, 28.749077746643412 ], [ -82.092353386802102, 28.749041238856602 ], [ -82.09220634217067, 28.748997138024155 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087451558576419, 28.748826518764989 ], [ -82.086232857545369, 28.748830157611934 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buscher Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025555601728371, 28.820838687327122 ], [ -82.02556003387302, 28.820129135677057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kilcrease Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02418734573348, 28.820121483976962 ], [ -82.02418662364262, 28.820221871442488 ], [ -82.02418748783542, 28.820264602862913 ], [ -82.02419069214595, 28.820307249059638 ], [ -82.024196229382071, 28.820349708975083 ], [ -82.024204088254109, 28.820391885161474 ], [ -82.024214247225672, 28.820433676563521 ], [ -82.024226685786275, 28.820474988441791 ], [ -82.024241373179066, 28.820515724253905 ], [ -82.024258275573317, 28.820555787457874 ], [ -82.02427735504078, 28.820595086023992 ], [ -82.024298562382612, 28.82063352792434 ], [ -82.024321853523432, 28.820671024739298 ], [ -82.024347172092263, 28.820707486246729 ], [ -82.024362039946581, 28.820726051369022 ], [ -82.024378597080329, 28.820743470261007 ], [ -82.024396730763286, 28.820759627446222 ], [ -82.024416315971223, 28.82077441286426 ], [ -82.024437219484426, 28.820787722772231 ], [ -82.024459299889813, 28.820799468768097 ], [ -82.024482405529668, 28.8208095687678 ], [ -82.024506378602211, 28.820817956929989 ], [ -82.024531057208264, 28.820824571925723 ], [ -82.024556269207167, 28.820829372278745 ], [ -82.024581845533319, 28.820832322828547 ], [ -82.024607612002114, 28.820833405559544 ], [ -82.025555601728371, 28.820838687327122 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buscher Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025553496105218, 28.821175610012236 ], [ -82.025555601728371, 28.820838687327122 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Osmara Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025100724911837, 28.822344347119405 ], [ -82.025286606052887, 28.822252015347285 ], [ -82.025490995304196, 28.822168797760934 ], [ -82.025516830515997, 28.822156037979987 ], [ -82.025541697139431, 28.822141865355885 ], [ -82.025565499900324, 28.822126337654453 ], [ -82.025695895664498, 28.822035291373126 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pearlman Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028116827280044, 28.822648275963946 ], [ -82.02812238944118, 28.821856385808729 ], [ -82.028123575456888, 28.821835262510813 ], [ -82.028126828120804, 28.821814309330023 ], [ -82.028132120832836, 28.821793679664211 ], [ -82.028139416748331, 28.821773531424736 ], [ -82.028148660577415, 28.821754012601168 ], [ -82.028159783709711, 28.821735267576514 ], [ -82.028172702165975, 28.821717439834597 ], [ -82.028187320693021, 28.821700659326758 ], [ -82.028203527644223, 28.821685055105352 ], [ -82.028221204196271, 28.821670738178067 ], [ -82.028240218206662, 28.82165782045756 ], [ -82.028461730827132, 28.82152034624977 ], [ -82.028480755024319, 28.82150742037231 ], [ -82.028498441752006, 28.8214930943833 ], [ -82.02851465784272, 28.82147747749001 ], [ -82.028529279352185, 28.821460685214081 ], [ -82.028542199757311, 28.821442843901195 ], [ -82.028553322783097, 28.821424087113481 ], [ -82.028562564451263, 28.82140455382428 ], [ -82.028569856154519, 28.821384390222192 ], [ -82.028575142606556, 28.821363747004554 ], [ -82.028578384915875, 28.821342779376831 ], [ -82.028579558535526, 28.821321643443707 ], [ -82.028577887406129, 28.82066588692134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Messina Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027107599255871, 28.82258723893786 ], [ -82.02710761052694, 28.822587240740276 ], [ -82.02712572329942, 28.822590817563885 ], [ -82.027255890484909, 28.822614431656174 ], [ -82.027313738725454, 28.822623635564433 ], [ -82.027371885747485, 28.822631237790315 ], [ -82.027430277242217, 28.822637229321131 ], [ -82.027488850704955, 28.822641604755066 ], [ -82.027547552852837, 28.82264436049325 ], [ -82.027606324255117, 28.822645492035779 ], [ -82.028116827280044, 28.822648275963946 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penno Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026053209978912, 28.822860687008149 ], [ -82.026255563657145, 28.822377591428957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Austin Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026981398825157, 28.823098813202815 ], [ -82.027107599255871, 28.82258723893786 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pearlman Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027496717948935, 28.82370528924827 ], [ -82.027843010540153, 28.823363233346825 ], [ -82.027876574745818, 28.823328429058741 ], [ -82.027908197960159, 28.82329224191319 ], [ -82.027937808484253, 28.823254758547609 ], [ -82.027965336668132, 28.823216063794359 ], [ -82.027990719011171, 28.823176246996123 ], [ -82.028013896111844, 28.823135399299328 ], [ -82.028034815743368, 28.823093619969601 ], [ -82.028053428751093, 28.823051001053429 ], [ -82.028069690081281, 28.823007642717162 ], [ -82.028083564926632, 28.822963646027333 ], [ -82.028095020529506, 28.822919112952167 ], [ -82.028104029255502, 28.822874145458822 ], [ -82.028110571667895, 28.82282884821954 ], [ -82.028114631403795, 28.822783325905821 ], [ -82.0281161992732, 28.822737684992241 ], [ -82.028116827280044, 28.822648275963946 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Messina Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024249279801424, 28.821686463812359 ], [ -82.024314564209561, 28.821675212363477 ], [ -82.024354364727913, 28.821667395922077 ], [ -82.024393647405404, 28.82165776050423 ], [ -82.024914373266228, 28.821517037065753 ], [ -82.024947066109164, 28.821509259618921 ], [ -82.024980282973559, 28.82150344820198 ], [ -82.02501387017999, 28.821499633520684 ], [ -82.02504767404524, 28.821497830039352 ], [ -82.025081538835977, 28.821498047711327 ], [ -82.025115308816282, 28.82150028566231 ], [ -82.025148829272084, 28.821504531288067 ], [ -82.025181945488384, 28.821510768375173 ], [ -82.025214506844776, 28.821518965370423 ], [ -82.025246362719727, 28.821529086209175 ], [ -82.025277366587233, 28.821541083998422 ], [ -82.02530737704258, 28.821554905528263 ], [ -82.025336254726327, 28.821570482249218 ], [ -82.025363868475949, 28.821587747415055 ], [ -82.025390090199167, 28.821606620744358 ], [ -82.025414802047578, 28.821627014735508 ], [ -82.025437886170792, 28.821648834668377 ], [ -82.025459240086263, 28.821671983113173 ], [ -82.025478765407016, 28.821696351811607 ], [ -82.025496368867792, 28.821721828895239 ], [ -82.025511974619803, 28.821748297078493 ], [ -82.025525508862401, 28.821775635466196 ], [ -82.025546131921729, 28.821818612275703 ], [ -82.025568940247609, 28.821860723365411 ], [ -82.025593888739351, 28.821901883023113 ], [ -82.025620926148719, 28.82194200644004 ], [ -82.025649996105017, 28.821981012417524 ], [ -82.025681039163771, 28.822018820659725 ], [ -82.025695895664498, 28.822035291373126 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Messina Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025695895664498, 28.822035291373126 ], [ -82.025695960231189, 28.822035362643621 ], [ -82.025713992806971, 28.822055353578278 ], [ -82.025748787345051, 28.822090537195358 ], [ -82.025785354112884, 28.822124298435241 ], [ -82.02582361829856, 28.822156568734947 ], [ -82.025863498942655, 28.822187281337222 ], [ -82.025904918160549, 28.822216374898129 ], [ -82.025947786796948, 28.822243788978252 ], [ -82.025992020820254, 28.822269467648752 ], [ -82.026037529027349, 28.82229335859148 ], [ -82.026084217141374, 28.822315411293523 ], [ -82.026131989862407, 28.822335582460802 ], [ -82.026180749841231, 28.822353829701999 ], [ -82.02623039665616, 28.82237011694265 ], [ -82.026255563657145, 28.822377591428957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Messina Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026255563657145, 28.822377591428957 ], [ -82.026255585175036, 28.822377596838738 ], [ -82.026356329040382, 28.822407516377858 ], [ -82.026482982349549, 28.822442976495438 ], [ -82.026610320713459, 28.822476485570245 ], [ -82.026738301089765, 28.822508032780966 ], [ -82.02686688965801, 28.82253761001158 ], [ -82.026996042351129, 28.822565207343587 ], [ -82.027107599255871, 28.82258723893786 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024249279801424, 28.821686463812359 ], [ -82.024196822457796, 28.821463948132369 ], [ -82.024132578371564, 28.821299766056185 ], [ -82.024032642243142, 28.821159377687163 ], [ -82.02385061311567, 28.820966640499559 ], [ -82.023743538652226, 28.820827442373396 ], [ -82.023643601435651, 28.820645413930887 ], [ -82.023532957893451, 28.820306341161846 ], [ -82.023479193835342, 28.820137205099481 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955756366301969, 28.94793461513898 ], [ -81.955770846535941, 28.94786356528984 ], [ -81.955791100708339, 28.947824759861913 ], [ -81.955848480408449, 28.947762563905837 ], [ -81.955972342493922, 28.94767989420653 ], [ -81.956209817310807, 28.947526019251683 ], [ -81.956304804399394, 28.947473640592804 ], [ -81.956428655779675, 28.947414719707321 ], [ -81.956627926458538, 28.947332075698437 ], [ -81.956789245947647, 28.947280056505633 ], [ -81.956921252812322, 28.947239208006849 ], [ -81.957109589081426, 28.947192295965902 ], [ -81.957264192023501, 28.947162679781549 ], [ -81.957503112454376, 28.947133088379662 ], [ -81.957713922203311, 28.94711832137595 ], [ -81.957908197528795, 28.947119024971673 ], [ -81.958081333117846, 28.947123717929468 ], [ -81.958095345360817, 28.947124973791873 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964629913010455, 28.942220753444822 ], [ -81.964632308790186, 28.942695233106811 ], [ -81.964632136269145, 28.943198946355363 ], [ -81.964615011805606, 28.943333671341925 ], [ -81.964603939602199, 28.943417066467671 ], [ -81.964586827607945, 28.943476335383281 ], [ -81.964570255016838, 28.943536018591441 ], [ -81.964555306320207, 28.943592453069378 ], [ -81.964533802630868, 28.943655387733305 ], [ -81.964500673926025, 28.943738361045927 ], [ -81.964472515960281, 28.943798042070213 ], [ -81.964447672748932, 28.943850446072215 ], [ -81.964422828464464, 28.943899937466945 ], [ -81.964388050971152, 28.943959616713236 ], [ -81.964354930072915, 28.944016385593571 ], [ -81.96431353200974, 28.944073151357451 ], [ -81.964278759431991, 28.944118272077137 ], [ -81.964238100477488, 28.944170290148151 ], [ -81.964194314577938, 28.944220159010733 ], [ -81.964128084997114, 28.94429438827127 ], [ -81.964023269388662, 28.944408596763214 ], [ -81.963629416011784, 28.944835747749789 ], [ -81.963338300499572, 28.945145834267922 ], [ -81.963268803396915, 28.945229175357849 ], [ -81.96319975214287, 28.945298865744551 ], [ -81.963132988877504, 28.945367064332487 ], [ -81.963066760432426, 28.945431101659434 ], [ -81.962997715725734, 28.945498946753077 ], [ -81.962928665725443, 28.945564141775087 ], [ -81.962859800936442, 28.945624670153851 ], [ -81.962775788654412, 28.945697442912582 ], [ -81.962701509321164, 28.945755519979091 ], [ -81.962626057901048, 28.945812221582788 ], [ -81.962526171397457, 28.945889199850971 ], [ -81.962450330101944, 28.9459455574722 ], [ -81.962373118739706, 28.946000539571099 ], [ -81.962295127028739, 28.94605449008489 ], [ -81.962215769230554, 28.946107408847009 ], [ -81.962135629159647, 28.946158952246588 ], [ -81.962054317008509, 28.946209120171815 ], [ -81.961962031409556, 28.946265470148308 ], [ -81.961880202149942, 28.946312670179807 ], [ -81.961795820391401, 28.946357620919706 ], [ -81.961701210336045, 28.94640481719572 ], [ -81.961616825348941, 28.946449766919425 ], [ -81.961519657954938, 28.94649921084757 ], [ -81.961450619792359, 28.946528423475918 ], [ -81.961373909027742, 28.946564381201178 ], [ -81.961307427961657, 28.94659134868655 ], [ -81.961225605265255, 28.946625054532277 ], [ -81.96114634139235, 28.946652017334856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96114634139235, 28.946652017334856 ], [ -81.961074754305059, 28.946660990605771 ], [ -81.961008278013736, 28.946672214741927 ], [ -81.960964711041655, 28.946684209764641 ], [ -81.96088452573477, 28.946711531256639 ], [ -81.960784704557128, 28.946743162619885 ], [ -81.960679973126105, 28.946779112644965 ], [ -81.960532699195426, 28.946819367532125 ], [ -81.960416518092288, 28.946848116389699 ], [ -81.960287244290043, 28.946879738677577 ], [ -81.960121974803016, 28.946912790190556 ], [ -81.959918546072103, 28.94695007086505 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964595898537382, 28.940580364232503 ], [ -81.964602326810635, 28.94066463112188 ], [ -81.964609953266432, 28.940790561728068 ], [ -81.96461757049515, 28.940943477219566 ], [ -81.964617497048152, 28.941154856583172 ], [ -81.964622480554425, 28.941537140667265 ], [ -81.964625070073623, 28.941775305293749 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959918546072103, 28.94695007086505 ], [ -81.959694894636897, 28.946986061187214 ], [ -81.959545988554552, 28.947009043719031 ], [ -81.959385636026681, 28.947024825930932 ], [ -81.959311244433181, 28.947029922968369 ], [ -81.959181101263425, 28.947040595401173 ], [ -81.959085000916318, 28.947043775544845 ], [ -81.95898445154404, 28.947047019223149 ], [ -81.958882039595636, 28.947049446582266 ], [ -81.958768454008009, 28.947050230057688 ], [ -81.958650213889086, 28.947049375242194 ], [ -81.958545010586093, 28.947046884891112 ], [ -81.958430497210827, 28.947041117150054 ], [ -81.958319708610574, 28.947035350470223 ], [ -81.958214507314494, 28.947027947780537 ], [ -81.958102918587031, 28.947017144977803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958102918587031, 28.947017144977803 ], [ -81.95790076233277, 28.947008195842599 ], [ -81.957818833305993, 28.947007351699384 ], [ -81.95775366111252, 28.947008968830435 ], [ -81.957685613224839, 28.947011347459156 ], [ -81.957627833031751, 28.947015646672135 ], [ -81.957541385357388, 28.947019546087912 ], [ -81.957423142616832, 28.947030156527774 ], [ -81.957312346324713, 28.947045680414384 ], [ -81.957213864086199, 28.94706342778144 ], [ -81.957090747168166, 28.947084916216728 ], [ -81.956973427574567, 28.94711026460368 ], [ -81.956863668638547, 28.94714205137479 ], [ -81.956808029981801, 28.947159302432343 ], [ -81.956732753600221, 28.947182304657201 ], [ -81.956667295952457, 28.947203872662836 ], [ -81.956606559394771, 28.947224792514568 ], [ -81.956551620632467, 28.947243609169998 ], [ -81.956498544748058, 28.947262427309862 ], [ -81.956443604904067, 28.947286156903594 ], [ -81.956395183138866, 28.947307432555316 ], [ -81.956350485445626, 28.947327891925408 ], [ -81.956303925516664, 28.947349166345873 ], [ -81.956259227775618, 28.947372080823449 ], [ -81.956210708976812, 28.947399453167346 ], [ -81.956156699754331, 28.947429656896208 ], [ -81.956115786595277, 28.947454110070222 ], [ -81.956053594511559, 28.947488630352087 ], [ -81.955993037357786, 28.94752602855263 ], [ -81.955888586706806, 28.947593065227341 ], [ -81.955808494636713, 28.947649542204104 ], [ -81.955759136895097, 28.947683101126763 ], [ -81.955694878171002, 28.947725662692115 ], [ -81.955655773160913, 28.947738531789607 ], [ -81.955610741495363, 28.947740438766381 ], [ -81.955571761309074, 28.947742086971591 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964305511808078, 28.938266246785009 ], [ -81.964322316460141, 28.938429560124977 ], [ -81.964372854873773, 28.938824254015266 ], [ -81.964478319374109, 28.939624335013843 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959934372529048, 28.947058403044863 ], [ -81.95996812858904, 28.947052263109054 ], [ -81.960076743924205, 28.947027920084814 ], [ -81.960184682944771, 28.947004218301828 ], [ -81.960296223349403, 28.946975771440368 ], [ -81.960448800984352, 28.9469411568057 ], [ -81.960614652985328, 28.94688681546814 ], [ -81.960842347665832, 28.946810243284673 ], [ -81.961072856577943, 28.946726255589283 ], [ -81.961109982800451, 28.946688749043922 ], [ -81.96114634139235, 28.946652017334856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964478319374109, 28.939624335013843 ], [ -81.964478627320815, 28.939626672938314 ], [ -81.96452532395196, 28.93998093480992 ], [ -81.964562063505582, 28.940267516582981 ], [ -81.964574688259674, 28.940378908060747 ], [ -81.964583874921999, 28.940447769021183 ], [ -81.964595898537382, 28.940580364232503 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964258962010007, 28.93794257435383 ], [ -81.964274935295791, 28.93806551254319 ], [ -81.964305511808078, 28.938266246785009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964625070073623, 28.941775305293749 ], [ -81.964629913010455, 28.942220753444822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 213", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053713731518158, 28.858199304317775 ], [ -82.05374282324226, 28.859658526383747 ], [ -82.053750993326886, 28.861397956753716 ], [ -82.053756007715364, 28.861828549271618 ], [ -82.053756060277465, 28.861833134756324 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 213", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05375641914064, 28.864255773446967 ], [ -82.053754212241358, 28.864476793428199 ], [ -82.053758890663531, 28.865478353204526 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05157330221337, 28.865486734021463 ], [ -82.05157170831022, 28.865486740037092 ], [ -82.050562276601568, 28.865490581342339 ], [ -82.049757911732158, 28.865490876634503 ], [ -82.049645383862909, 28.865492751944039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walker Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053756653255661, 28.853393526377467 ], [ -82.053774517465868, 28.852601827461118 ], [ -82.053795255432888, 28.852369244882816 ], [ -82.053812589238234, 28.852280491889289 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walker Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05385485911836, 28.849290101828917 ], [ -82.053854536720507, 28.848656575549882 ], [ -82.05387481048885, 28.847486765928153 ], [ -82.05387703799191, 28.847287102044227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walker Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053812589238234, 28.852280491889289 ], [ -82.053820345353842, 28.85211930114086 ], [ -82.053850463424709, 28.851562553772723 ], [ -82.053862288467158, 28.85090410487042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053657668615955, 28.926654969276228 ], [ -82.053659538961043, 28.927168724250436 ], [ -82.053640880713488, 28.927379680855687 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053649039741444, 28.923799669757202 ], [ -82.053649054936514, 28.923803320436807 ], [ -82.053649540220746, 28.923918263605401 ], [ -82.053658595424466, 28.925319701761964 ], [ -82.053658345053918, 28.925520457037777 ], [ -82.053658345123452, 28.925520593284244 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053647924416964, 28.934703457111855 ], [ -82.053649075952109, 28.935265531375123 ], [ -82.053649847340495, 28.936778864726772 ], [ -82.05364391633934, 28.937415384408887 ], [ -82.053642317865055, 28.938369245111542 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053642317865055, 28.938369245111542 ], [ -82.05364509519562, 28.939722989337355 ], [ -82.053649936195995, 28.941040047059502 ], [ -82.053652233193986, 28.94201309386408 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 42nd Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030545397806449, 28.912825447284142 ], [ -82.030706394166103, 28.913466500510626 ], [ -82.030774237984687, 28.913760597081296 ], [ -82.030828500405036, 28.91395931125604 ], [ -82.030891819444662, 28.914225587343672 ], [ -82.030973236198392, 28.914591225631156 ], [ -82.031086283582709, 28.91499659924127 ], [ -82.031172229384566, 28.915394029659588 ], [ -82.031271727277201, 28.915799407043444 ], [ -82.03133053557508, 28.916073635814733 ], [ -82.031411936578849, 28.916379652692498 ], [ -82.031422663081884, 28.916423078664664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 105", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035693744592436, 28.934575310795694 ], [ -82.035693800054602, 28.934575530940922 ], [ -82.03572527820684, 28.934698191375784 ], [ -82.035747895158863, 28.934759572123202 ], [ -82.035771931493557, 28.934787043387967 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 216", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053677494447555, 28.90923794939566 ], [ -82.052295321420488, 28.909225646609908 ], [ -82.051401939267294, 28.909240883601377 ], [ -82.048923156947026, 28.909229763996645 ], [ -82.047513676602691, 28.909221506640872 ], [ -82.047511745677312, 28.909221495583871 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 216", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047511745677312, 28.909221495583871 ], [ -82.046504764498209, 28.909215596104435 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 216", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046504764498209, 28.909215596104435 ], [ -82.046431090931648, 28.90921516554538 ], [ -82.045383262649622, 28.909210457199336 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 216", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044219964596863, 28.909205231373356 ], [ -82.044219585180102, 28.909205229691697 ], [ -82.043293786736797, 28.909201070937716 ], [ -82.041238589637487, 28.909193718104611 ], [ -82.041238002054371, 28.909193715575082 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 216", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041238002054371, 28.909193715575082 ], [ -82.041171325234004, 28.909193477629831 ], [ -82.040773985792029, 28.90919187791879 ], [ -82.040384069451108, 28.909189930164494 ], [ -82.040209670108098, 28.909189256146227 ], [ -82.040203151321151, 28.90918923099526 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 222", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042839961846411, 28.901898769231082 ], [ -82.041417589353614, 28.901903686803585 ], [ -82.041263011597891, 28.901903439411111 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 222", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043335155736315, 28.901897052948726 ], [ -82.04333323930976, 28.90189706077517 ], [ -82.042839961846411, 28.901898769231082 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049704667635467, 28.839316125224855 ], [ -82.050371613301181, 28.839545266614838 ], [ -82.05104934957393, 28.839751004766452 ], [ -82.051912653270378, 28.83999928783431 ], [ -82.052244935435752, 28.840095215428331 ], [ -82.052257646467368, 28.840098884763368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052328323697097, 28.83993304723559 ], [ -82.052327822513618, 28.839932903960634 ], [ -82.052004003073108, 28.839840616862993 ], [ -82.051019676970711, 28.839559232427533 ], [ -82.050394620405214, 28.839362932704393 ], [ -82.049931656327189, 28.839208683482777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983694832803096, 28.803042040713454 ], [ -81.98349586225649, 28.803129495497 ], [ -81.983242345990931, 28.803244477225181 ], [ -81.983036135702292, 28.803353278222058 ], [ -81.982812338231639, 28.8034899977892 ], [ -81.982678751604482, 28.803583948258666 ], [ -81.982542742576939, 28.803686471144836 ], [ -81.982431524999598, 28.803778725225541 ], [ -81.982168615690384, 28.803949474690821 ], [ -81.982035694771994, 28.804055317076404 ], [ -81.981883081196074, 28.804148853646403 ], [ -81.981755082660456, 28.80422269682904 ], [ -81.981597548177561, 28.804242389004752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984433511304388, 28.802714974622482 ], [ -81.984422155971131, 28.802720030761055 ], [ -81.984018203928215, 28.802899905088495 ], [ -81.983694832803096, 28.803042040713454 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982635466441778, 28.803767966473345 ], [ -81.982764296801506, 28.803668866845658 ], [ -81.982853947211808, 28.803623695978704 ], [ -81.983014423155907, 28.803520583063015 ], [ -81.983233015293081, 28.803396848584292 ], [ -81.983343175559469, 28.803342621645644 ], [ -81.983651104651145, 28.803202853555113 ], [ -81.98478479163991, 28.802702594681108 ], [ -81.985666927091685, 28.802312309429986 ], [ -81.986669622248399, 28.801865496090976 ], [ -81.987464062668309, 28.801514223397611 ], [ -81.988027790529543, 28.80125971476286 ], [ -81.988369724507351, 28.801109734654645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98845375831381, 28.800932811130657 ], [ -81.987691420649057, 28.801269741365669 ], [ -81.986688389555638, 28.801714416605659 ], [ -81.985676854003827, 28.802163215137824 ], [ -81.984684239120938, 28.802603327980652 ], [ -81.984433511304388, 28.802714974622482 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 521", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051223451662224, 28.801676662772241 ], [ -82.050726455599033, 28.801682769365929 ], [ -82.050352747612678, 28.801684625964281 ], [ -82.050251271453376, 28.801685694517214 ], [ -82.05011505140655, 28.801694418268539 ], [ -82.050007471907279, 28.801717202992393 ], [ -82.049874076527701, 28.801755159459088 ], [ -82.049732080173882, 28.801808281353154 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 521", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046367852740417, 28.804622200546333 ], [ -82.045607426908603, 28.805258144133671 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014699467431129, 28.799660434841048 ], [ -82.014696516200587, 28.799660419805605 ], [ -82.013556090490525, 28.799654444493935 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 133", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008267265544248, 28.86953827072352 ], [ -82.008254871876204, 28.869542685489428 ], [ -82.008243724699412, 28.869547358242755 ], [ -82.008234742425756, 28.869551727699612 ], [ -82.008225161587035, 28.869557043705399 ], [ -82.008217956775127, 28.869561534872226 ], [ -82.008210569547018, 28.869566630591979 ], [ -82.008201579263257, 28.869573594168436 ], [ -82.008194656455103, 28.869579620135791 ], [ -82.008188654131175, 28.869585387992679 ], [ -82.008182576002994, 28.869591839799241 ], [ -82.008177715588658, 28.869597520970753 ], [ -82.00817218489351, 28.869604673835816 ], [ -82.008167456796428, 28.86961150814291 ], [ -82.008162392584978, 28.869619773521265 ], [ -82.008159072867372, 28.869625896734803 ], [ -82.008155561549259, 28.869633183929892 ], [ -82.008151747985622, 28.869642467938395 ], [ -82.008148985021919, 28.869650577992097 ], [ -82.008146549105177, 28.869659402651578 ], [ -82.008144474100462, 28.869669455325436 ], [ -82.008143336875051, 28.869677462426104 ], [ -82.008142658863335, 28.869685285431437 ], [ -82.008142403224781, 28.869693756266877 ], [ -82.008134639638044, 28.869918730626345 ], [ -82.008137878848899, 28.870542633270915 ], [ -82.008136992844427, 28.870856826031051 ], [ -82.008136986854311, 28.870858994265291 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038147988746587, 28.650132218290423 ], [ -82.038122399318993, 28.650132120659908 ], [ -82.037469559931964, 28.650132298640528 ], [ -82.03686415015099, 28.650134921548251 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019579586942271, 28.609891214427591 ], [ -82.01817879025613, 28.609894467744002 ], [ -82.017406810098109, 28.609896164959391 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01134652004859, 28.609909535857252 ], [ -82.011337191497546, 28.609909566356322 ], [ -82.009190050951844, 28.609916789778364 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 36th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970152026151951, 28.714453260839949 ], [ -81.970092436568279, 28.714361275186292 ], [ -81.970003036566638, 28.714282422550259 ], [ -81.969804339337429, 28.714199164562785 ], [ -81.969655314788028, 28.714142195976134 ], [ -81.969516224218609, 28.714098368264725 ], [ -81.969392037885271, 28.714050163905124 ], [ -81.969277780335432, 28.714032618270839 ], [ -81.969178432333081, 28.713988800184286 ], [ -81.969018227890245, 28.713873838458504 ], [ -81.968905266480746, 28.713734718629677 ], [ -81.968744381365582, 28.713508328004803 ], [ -81.9686172706907, 28.713244133031264 ], [ -81.968522932550471, 28.713064546922464 ], [ -81.968443505734314, 28.712867443748046 ], [ -81.968383946444888, 28.712679105889439 ], [ -81.968344243442289, 28.712543327839114 ], [ -81.968344297423556, 28.712363761959022 ], [ -81.968354436262231, 28.71212621036312 ], [ -81.968309634999599, 28.711991485010678 ], [ -81.968230181213386, 28.711877597035265 ], [ -81.968120916948337, 28.711785597833728 ], [ -81.967976867576553, 28.711719868756187 ], [ -81.96779803210805, 28.711693549387654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zientara Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999562981332232, 28.786601630130519 ], [ -81.999614283029373, 28.786611767835524 ], [ -81.999721970852846, 28.786631303304567 ], [ -81.999830030529594, 28.786649162188567 ], [ -81.999938433375547, 28.786665345388897 ], [ -82.000079096838959, 28.786685222102534 ], [ -82.000204735384813, 28.786702205192654 ], [ -82.00033062491363, 28.786717685813418 ], [ -82.000456740838146, 28.786731661257143 ], [ -82.000583059595215, 28.78674412520698 ], [ -82.000632790036164, 28.786749751215361 ], [ -82.000682173266839, 28.786757380342763 ], [ -82.000731108913385, 28.786766995445504 ], [ -82.00077949045631, 28.786778580282352 ], [ -82.000827218545723, 28.786792106882185 ], [ -82.000874193831564, 28.786807549078574 ], [ -82.000920313890788, 28.786824873486758 ], [ -82.000965482445608, 28.786844041308196 ], [ -82.001009607315012, 28.786865015548997 ], [ -82.001052593244992, 28.786887751094703 ], [ -82.001094349078215, 28.786912200123847 ], [ -82.001134788778316, 28.786938310303562 ], [ -82.001175301239925, 28.786967070567762 ], [ -82.001214283502364, 28.786997428822609 ], [ -82.001251651576794, 28.787029322810039 ], [ -82.001287327619522, 28.787062684858014 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zientara Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998738113945919, 28.786431896148851 ], [ -81.998738127261191, 28.786431897051287 ], [ -81.998782396389629, 28.786435167485749 ], [ -81.998843313657659, 28.7864418000879 ], [ -81.998903886754746, 28.786450535954142 ], [ -81.998964023501941, 28.786461365158704 ], [ -81.999023630696001, 28.786474266948119 ], [ -81.999082616157807, 28.786489224178457 ], [ -81.999187936614064, 28.786517025254447 ], [ -81.999293795900272, 28.78654318855104 ], [ -81.99940016226013, 28.786567703239054 ], [ -81.999507002912921, 28.786590567512533 ], [ -81.999562981332232, 28.786601630130519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zientara Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001360674726882, 28.788332896563865 ], [ -82.00110546496218, 28.788701941982133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zientara Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996600724014087, 28.787538797455056 ], [ -81.996621544221995, 28.787509608133295 ], [ -81.996667501937921, 28.787449192164953 ], [ -81.996715453794366, 28.787389992550295 ], [ -81.996765359841788, 28.787332058913542 ], [ -81.996817173985264, 28.78727544268332 ], [ -81.996870857300166, 28.787220192581508 ], [ -81.996926357546982, 28.787166353720362 ], [ -81.996983628631938, 28.787113974821612 ], [ -81.997042624461727, 28.78706310099766 ], [ -81.997103288700842, 28.78701377645843 ], [ -81.997165572184031, 28.7869660427071 ], [ -81.997229421649251, 28.786919942149087 ], [ -81.997294780762275, 28.786875512678197 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zientara Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00145474605138, 28.787277470149089 ], [ -82.00146196103033, 28.787289633310365 ], [ -82.001483930718507, 28.787331182065888 ], [ -82.001503721839271, 28.787373571785405 ], [ -82.001521298540553, 28.787416714043236 ], [ -82.001536619848693, 28.787460515902126 ], [ -82.001549657080957, 28.787504888936173 ], [ -82.001560380530179, 28.787549740207869 ], [ -82.001568768683057, 28.787594977681824 ], [ -82.001574802074643, 28.787640502103994 ], [ -82.001578473531112, 28.787686224145681 ], [ -82.001579769732913, 28.787732044552566 ], [ -82.001578690675871, 28.787777870386368 ], [ -82.001575238404357, 28.787823606001734 ], [ -82.00156942008401, 28.787869153046199 ], [ -82.001561248001892, 28.787914419483382 ], [ -82.001550738542193, 28.787959309667478 ], [ -82.00153791525905, 28.788003730659451 ], [ -82.001522801706756, 28.788047590422515 ], [ -82.001505431682446, 28.788090796017407 ], [ -82.00148584000766, 28.78813325811397 ], [ -82.001464069698372, 28.788174888284303 ], [ -82.001440164795, 28.78821559900269 ], [ -82.001414174459612, 28.788255306352585 ], [ -82.001360674726882, 28.788332896563865 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reagan Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00110546496218, 28.788701941982133 ], [ -82.001212125713053, 28.788766435508876 ], [ -82.001546464333344, 28.788903431549691 ], [ -82.001740476300498, 28.788951714086441 ], [ -82.00194861806439, 28.788985094511204 ], [ -82.002062008238241, 28.788995440348177 ], [ -82.002197657845144, 28.789001215644074 ], [ -82.002523185978319, 28.789002396663456 ], [ -82.002597379154111, 28.789002563536467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reagan Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994548065419224, 28.789136054259991 ], [ -81.995197883856321, 28.788823654223986 ], [ -81.995571058036333, 28.788643288438742 ], [ -81.996037390983162, 28.788475181503287 ], [ -81.996386594284019, 28.788382767594626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995897193308068, 28.759619711518109 ], [ -81.995897149432039, 28.758803263551947 ], [ -81.995850042550074, 28.758296874871249 ], [ -81.995759743067822, 28.757809962190809 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023099913124028, 28.755878384289002 ], [ -82.021005730550684, 28.755861617874938 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998962919548347, 28.755809964080726 ], [ -81.99896054090452, 28.755809960451167 ], [ -81.998715255930833, 28.755809573747431 ], [ -81.998029542990707, 28.755808691466704 ], [ -81.996559848544024, 28.755801195025633 ], [ -81.996220108578683, 28.755786180109101 ], [ -81.995899702425078, 28.755784420902629 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994796061680759, 28.755792338626744 ], [ -81.993564369339708, 28.756129876145049 ], [ -81.99265815622546, 28.756537201552955 ], [ -81.992381006634261, 28.756622216845656 ], [ -81.99208454373445, 28.756654285092935 ], [ -81.991780687708868, 28.756648129129257 ], [ -81.991603615574547, 28.756629629593039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954090872686734, 28.755324685773626 ], [ -81.954030745079592, 28.755323096154335 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 134", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021905300875446, 28.8727436974157 ], [ -82.020610799577952, 28.872724491304677 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 127", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028892909056466, 28.872791469968266 ], [ -82.028881234346258, 28.873680213978485 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 127", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028878935675735, 28.880052562872329 ], [ -82.028878929679564, 28.880053131323447 ], [ -82.028876580210721, 28.880291058752864 ], [ -82.028870990578028, 28.881987633423499 ], [ -82.028870987633667, 28.881988115252902 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 127", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028890912217221, 28.878839306906375 ], [ -82.02889089625701, 28.878840930150172 ], [ -82.028881640261432, 28.879778542402295 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028873872919874, 28.88367627466695 ], [ -82.028196814845415, 28.8836739182033 ], [ -82.027795787440468, 28.883675761836347 ], [ -82.026793708450967, 28.883672469116995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 121", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020549009054264, 28.897764794884903 ], [ -82.020546198057673, 28.898054461283923 ], [ -82.020544437751511, 28.898332087236472 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 121", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020569400550158, 28.890946246596283 ], [ -82.020569402055074, 28.890948732432641 ], [ -82.020569451966196, 28.89121271112257 ], [ -82.020570036599665, 28.891617702062018 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 125B 1", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017641115224265, 28.891424683421068 ], [ -82.017560566436217, 28.891423769621483 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 117", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024686680372312, 28.902944122593247 ], [ -82.024678821771047, 28.90372496573384 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 117", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024678821771047, 28.90372496573384 ], [ -82.02467882075824, 28.903725019871928 ], [ -82.024672501543705, 28.90435298987865 ], [ -82.024669395963045, 28.904893027596273 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 117", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02466605779361, 28.905473696694337 ], [ -82.024664143807144, 28.905806768612059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 117", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024671192520287, 28.907792736629737 ], [ -82.024671192601417, 28.907793085818938 ], [ -82.024671887733078, 28.90895317697602 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 117", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024671887733078, 28.90895317697602 ], [ -82.024671887907317, 28.908953926785266 ], [ -82.024671964453844, 28.909080338657443 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 214", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054956930792045, 28.91651042377902 ], [ -82.0545818672324, 28.916514459129527 ], [ -82.0536603611651, 28.916518494343517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 214", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056995909099612, 28.916511495861009 ], [ -82.056675835005137, 28.91651162960488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Houdek Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003461870828588, 28.786563478866203 ], [ -82.003375882813899, 28.786010446669653 ], [ -82.003362066211508, 28.785916979796255 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Houdek Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003550886349842, 28.787182487210913 ], [ -82.003545194011181, 28.787129701043799 ], [ -82.00352953153677, 28.78700621966113 ], [ -82.003511549176267, 28.78688298284769 ], [ -82.003461870828588, 28.786563478866203 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laveigne Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002003788562178, 28.787179054656949 ], [ -82.003550886349842, 28.787182487210913 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laveigne Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00145474605138, 28.787277470149089 ], [ -82.001606622905442, 28.787208714813769 ], [ -82.001629081635969, 28.787199555289821 ], [ -82.001652294233025, 28.787191991048996 ], [ -82.001676114229696, 28.787186070816826 ], [ -82.001700389013465, 28.787181829784217 ], [ -82.001724971093182, 28.787179297728308 ], [ -82.001749702734998, 28.787178488184722 ], [ -82.002003788562178, 28.787179054656949 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Houdek Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003573066801764, 28.787494987930319 ], [ -82.003569545950242, 28.787377266684693 ], [ -82.003558533517747, 28.787253394513261 ], [ -82.003550886349842, 28.787182487210913 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gagnon Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002360256354422, 28.787868100559574 ], [ -82.002359799369231, 28.787529504481604 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Scardino Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003570400729529, 28.78787078376627 ], [ -82.003573066644947, 28.787523716710101 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mazzio Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002360256354422, 28.787868100559574 ], [ -82.003570400729529, 28.78787078376627 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gagnon Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002358304533146, 28.788550713799854 ], [ -82.002360256354422, 28.787868100559574 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cerny Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001360674726882, 28.788332896563865 ], [ -82.001413318158711, 28.788360192244848 ], [ -82.001467060638447, 28.788385778014803 ], [ -82.001521825343914, 28.788409617780214 ], [ -82.001577542622528, 28.788431679959292 ], [ -82.001634135651756, 28.788451937481923 ], [ -82.001691530681555, 28.788470359668825 ], [ -82.001749651913272, 28.788486924863971 ], [ -82.001808421499504, 28.788501608704522 ], [ -82.001867758519978, 28.788514392241719 ], [ -82.001927586151339, 28.788525261038405 ], [ -82.001987825521653, 28.788534197950671 ], [ -82.002048392637477, 28.788541191248651 ], [ -82.002109210675286, 28.788546231909525 ], [ -82.002170197690191, 28.788549313617594 ], [ -82.002231271737273, 28.788550431861879 ], [ -82.002358304533146, 28.788550713799854 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Scardino Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003563216622283, 28.788553385387505 ], [ -82.003570400729529, 28.78787078376627 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cerny Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002358304533146, 28.788550713799854 ], [ -82.003563216622283, 28.788553385387505 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Scardino Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003560982931589, 28.788765597049117 ], [ -82.003563216622283, 28.788553385387505 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zientara Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001287327619522, 28.787062684858014 ], [ -82.001321236859397, 28.787097449099225 ], [ -82.001353310670225, 28.787133538838521 ], [ -82.001383480425659, 28.787170881892365 ], [ -82.001411683644406, 28.787209398858636 ], [ -82.001437862966185, 28.787249011237439 ], [ -82.001454677425087, 28.787277354653188 ], [ -82.00145474605138, 28.787277470149089 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.083347786946305, 28.725003668390571 ], [ -82.08334825350002, 28.725003378459686 ], [ -82.0833692627305, 28.724990311708645 ], [ -82.083557394638447, 28.724865027180766 ], [ -82.083738922835892, 28.724742659141057 ], [ -82.083876711495265, 28.724641055845222 ], [ -82.08403759891938, 28.724520881887997 ], [ -82.084202605741098, 28.724386152496766 ], [ -82.084413435704661, 28.724210972238382 ], [ -82.085028050460167, 28.723653412549027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.085028050460167, 28.723653412549027 ], [ -82.085875277855081, 28.722891983320444 ], [ -82.087488448084144, 28.721416441764532 ], [ -82.087744392973292, 28.721182897411893 ], [ -82.087746337377155, 28.72118112309315 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dijulio Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001592304675611, 28.785294205101543 ], [ -82.001593222857466, 28.784973801345107 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vandemark Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001592304675611, 28.785294205101543 ], [ -82.003297719560209, 28.785297992413671 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vandemark Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003297719560209, 28.785297992413671 ], [ -82.003660037019515, 28.785298793768344 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carmalt Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001619598521927, 28.785913096988789 ], [ -82.003362066211508, 28.785916979796255 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dijulio Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002005560297349, 28.786560248435933 ], [ -82.001807211480298, 28.78655980699142 ], [ -82.001784370722405, 28.786558701821019 ], [ -82.001761789072759, 28.786555498764223 ], [ -82.001739707231508, 28.786550234814424 ], [ -82.00171837409296, 28.786542964109078 ], [ -82.001698019090838, 28.786533771464537 ], [ -82.001678865513298, 28.786522753427512 ], [ -82.00166112538173, 28.786510031809581 ], [ -82.001644992281072, 28.786495747371141 ], [ -82.00163064135954, 28.786480055309777 ], [ -82.00161823240154, 28.786463127064845 ], [ -82.001607898560863, 28.786445149415123 ], [ -82.001599754554732, 28.786426318162665 ], [ -82.001593891542427, 28.78640683903496 ], [ -82.001590368931616, 28.786386929489726 ], [ -82.001589229741739, 28.786366803375408 ], [ -82.001589883704185, 28.786138526869067 ], [ -82.001590960820067, 28.786104108984446 ], [ -82.001593993217682, 28.786069781319931 ], [ -82.001598973726374, 28.7860356295953 ], [ -82.001605885957403, 28.78600173953031 ], [ -82.001612800232451, 28.785967851269426 ], [ -82.001617777657444, 28.785933698641294 ], [ -82.001619598521927, 28.785913096988789 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dijulio Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003461870828588, 28.786563478866203 ], [ -82.002005560297349, 28.786560248435933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burger Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002003788562178, 28.787179054656949 ], [ -82.002005560297349, 28.786560248435933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dijulio Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001619598521927, 28.785913096988789 ], [ -82.001620810041359, 28.785899370073015 ], [ -82.001621887144665, 28.785864952186945 ], [ -82.001622430862241, 28.785675183736345 ], [ -82.001621550640749, 28.785640761349114 ], [ -82.001618715147998, 28.785606419279173 ], [ -82.001613933605029, 28.785572245050904 ], [ -82.0016072131844, 28.785538325286186 ], [ -82.001600495840862, 28.785504406423261 ], [ -82.001595712260013, 28.785470233096106 ], [ -82.001592875756089, 28.785435891927076 ], [ -82.001591996570525, 28.785401467733781 ], [ -82.001592304675611, 28.785294205101543 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Houdek Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003362066211508, 28.785916979796255 ], [ -82.003358391554613, 28.78589211930019 ], [ -82.00334268353275, 28.785773597895503 ], [ -82.00332875874301, 28.785654905014063 ], [ -82.003316621276824, 28.785536057800321 ], [ -82.003306274201577, 28.785417080617187 ], [ -82.003297719560209, 28.785297992413671 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 507", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026974729314787, 28.816104517462154 ], [ -82.026955484957185, 28.817959468075621 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 747", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075373943241203, 28.639226591187924 ], [ -82.075369507421968, 28.638751281386376 ], [ -82.075368802385057, 28.637765446198472 ], [ -82.07536290069126, 28.636662305385613 ], [ -82.075367254321634, 28.635597508991353 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977206152075055, 28.784512178851205 ], [ -81.977667010785893, 28.784914633474003 ], [ -81.97790426642797, 28.785108922964124 ], [ -81.978326290709518, 28.785454943584181 ], [ -81.978859598323467, 28.785899030422346 ], [ -81.979128352505711, 28.78612107246613 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977206152075055, 28.784512178851205 ], [ -81.977762561776245, 28.784905398799747 ], [ -81.978192995121063, 28.785201470917229 ], [ -81.978744164679554, 28.785576184882206 ], [ -81.979187213141955, 28.78583618037289 ], [ -81.9795373049473, 28.786029711132549 ], [ -81.979702847665195, 28.786119576992149 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980614503685032, 28.785156313426153 ], [ -81.980543946881795, 28.785118580156695 ], [ -81.980111398280712, 28.784870617594191 ], [ -81.979170711111379, 28.784352472428928 ], [ -81.978859943354834, 28.784215524700478 ], [ -81.978351803434478, 28.783971242238227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987574219773336, 28.789085831680321 ], [ -81.986578882932491, 28.788364231717203 ], [ -81.985600357624776, 28.787664827596483 ], [ -81.984592450083071, 28.786932113941287 ], [ -81.984285879906295, 28.786724877214965 ], [ -81.983970910152593, 28.786510240708061 ], [ -81.98351604796045, 28.786210084832426 ], [ -81.98304618275651, 28.785937151949472 ], [ -81.982574510487524, 28.785674326717679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Natalino Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995110356928848, 28.786740579418897 ], [ -81.995626712307669, 28.786741749859498 ], [ -81.995650729064579, 28.786740990006351 ], [ -81.995674607619904, 28.786738605076369 ], [ -81.995698207649085, 28.786734607697415 ], [ -81.995825113929484, 28.786708428441759 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Natalino Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993190390569609, 28.786816014578392 ], [ -81.993232473443655, 28.78681134364707 ], [ -81.993311756972219, 28.786795831473967 ], [ -81.993391471567037, 28.7867821437552 ], [ -81.993471562946226, 28.786770285901262 ], [ -81.993551976827746, 28.786760266931942 ], [ -81.993632659953974, 28.786752094062688 ], [ -81.993713557019063, 28.786745772704236 ], [ -81.993794614765633, 28.786741308267626 ], [ -81.993875774815422, 28.786738700749865 ], [ -81.993956985959699, 28.786737956464638 ], [ -81.995110356928848, 28.786740579418897 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Keckonen Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995825113929484, 28.786708428441759 ], [ -81.995819057486969, 28.786685561800265 ], [ -81.99580865625434, 28.786637159525306 ], [ -81.9958005790767, 28.786588413541875 ], [ -81.995794841310868, 28.786539411375369 ], [ -81.995791451143788, 28.786490240550844 ], [ -81.995790416762432, 28.786440986788602 ], [ -81.995794482656208, 28.785281937011398 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zientara Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996386594284019, 28.788382767594626 ], [ -81.996350524241976, 28.788205985218617 ], [ -81.99634516340717, 28.788174577320046 ], [ -81.99634186955754, 28.788142947509762 ], [ -81.996340654978255, 28.788111204065974 ], [ -81.996341519663432, 28.788079451657151 ], [ -81.996344465655625, 28.788047795854087 ], [ -81.996349480657642, 28.788016343129328 ], [ -81.996356546226849, 28.787985197248286 ], [ -81.996365642896421, 28.787954462878506 ], [ -81.996376736860014, 28.787924241980182 ], [ -81.996389792262832, 28.787894635610993 ], [ -81.996423010702287, 28.787828056570895 ], [ -81.996458432259388, 28.787762365458921 ], [ -81.996496031322167, 28.787697620020744 ], [ -81.996535773060657, 28.787633875294844 ], [ -81.996577621620901, 28.787571186319557 ], [ -81.996600724014087, 28.787538797455056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Keckonen Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996600724014087, 28.787538797455056 ], [ -81.996410421097437, 28.787433192721583 ], [ -81.996363734258068, 28.787406077790337 ], [ -81.996318386218093, 28.787377253897478 ], [ -81.996274457893236, 28.78734677247861 ], [ -81.996232023028909, 28.78731468767608 ], [ -81.996191165612814, 28.787281054534816 ], [ -81.99615195119523, 28.787245936220206 ], [ -81.996114450447678, 28.787209393190803 ], [ -81.996078730968236, 28.787171490416622 ], [ -81.996044857281888, 28.787132295574636 ], [ -81.996012886743259, 28.787091879048415 ], [ -81.995982878755356, 28.787050310319319 ], [ -81.995954886575021, 28.78700766428237 ], [ -81.995928958337416, 28.786964018539329 ], [ -81.995905140129054, 28.786919447984843 ], [ -81.995883475987384, 28.786874033829736 ], [ -81.995864002779925, 28.786827854577488 ], [ -81.995859637915686, 28.786815998932575 ], [ -81.995846755325246, 28.786780995047689 ], [ -81.995831764344857, 28.786733534645794 ], [ -81.99582512109825, 28.786708451902147 ], [ -81.995825113929484, 28.786708428441759 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harter Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992139471559682, 28.785320988573933 ], [ -81.992138030029722, 28.78580830143796 ], [ -81.992138900950977, 28.785869458553798 ], [ -81.992141874655715, 28.785930565263765 ], [ -81.992146950127761, 28.785991565624172 ], [ -81.992154118157103, 28.786052400983849 ], [ -81.992163376703061, 28.786113018105748 ], [ -81.992174715531107, 28.786173360143096 ], [ -81.992188123382448, 28.786233370248858 ], [ -81.992203588997768, 28.786292996989875 ], [ -81.992221098045391, 28.786352182616501 ], [ -81.992240634144636, 28.786410873890475 ], [ -81.992262179890488, 28.786469017573346 ], [ -81.992285715829311, 28.786526559524173 ], [ -81.992343871700399, 28.786662262834668 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harter Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99467213552073, 28.787383146417522 ], [ -81.99499945443452, 28.787383890111521 ], [ -81.995026407909137, 28.787382924753302 ], [ -81.995053165853619, 28.78737991293379 ], [ -81.995079527510086, 28.787374878105776 ], [ -81.995105298265727, 28.787367857257095 ], [ -81.995130284531257, 28.787358902715177 ], [ -81.995154300910983, 28.787348082147169 ], [ -81.995282433908343, 28.787283939481636 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harter Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992493262593143, 28.787010853400727 ], [ -81.9926584130896, 28.787396215763643 ], [ -81.992668209691558, 28.787416309037006 ], [ -81.992680003669363, 28.787435553342078 ], [ -81.99269370080323, 28.787453792572805 ], [ -81.992709191508297, 28.787470882352356 ], [ -81.992726350834957, 28.787486686423826 ], [ -81.99274504358992, 28.787501078455225 ], [ -81.992765119215093, 28.787513941136858 ], [ -81.992786417932308, 28.787525176107231 ], [ -81.992808771768637, 28.787534690418255 ], [ -81.992831998409969, 28.787542409167557 ], [ -81.992855914516738, 28.787548270987415 ], [ -81.992880329578298, 28.787552228946943 ], [ -81.992905050010037, 28.787554251454502 ], [ -81.992929874032029, 28.787554322257535 ], [ -81.992954606008823, 28.78755244044326 ], [ -81.992979051328078, 28.787548621340811 ], [ -81.993003009230847, 28.787542895618426 ], [ -81.993220310691086, 28.787481664133932 ], [ -81.993291761413516, 28.78746260818588 ], [ -81.993363850092791, 28.787445524690675 ], [ -81.993436511178615, 28.78743043439729 ], [ -81.993509669903176, 28.787417346324339 ], [ -81.993583257643849, 28.787406278513934 ], [ -81.993657201681629, 28.787397239082761 ], [ -81.993731429297583, 28.78739023795227 ], [ -81.99380586879748, 28.787385278727854 ], [ -81.993880448486806, 28.787382370429054 ], [ -81.99395509462309, 28.787381513954529 ], [ -81.99467213552073, 28.787383146417522 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winton Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99466519679585, 28.787952929550066 ], [ -81.99467213552073, 28.787383146417522 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sternemann Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995556795512442, 28.788233105013845 ], [ -81.995537472979663, 28.788049542994667 ], [ -81.995537884620347, 28.787786535587351 ], [ -81.995534662953474, 28.787749959272006 ], [ -81.995529227844798, 28.787713584097119 ], [ -81.995521600801112, 28.787677517438549 ], [ -81.995511800256693, 28.787641860355773 ], [ -81.995499853863947, 28.787606714810732 ], [ -81.995485797469371, 28.787572180960993 ], [ -81.995469668968028, 28.787538354452529 ], [ -81.995451516497141, 28.787505336345419 ], [ -81.995431389218481, 28.787473216872023 ], [ -81.995409346536064, 28.787442089874208 ], [ -81.995385450926761, 28.787412041975401 ], [ -81.995359769988426, 28.787383160701506 ], [ -81.99533509278217, 28.787355470512949 ], [ -81.99531205753037, 28.787326703917458 ], [ -81.995290723635804, 28.787296936712398 ], [ -81.995282476923961, 28.787284007156753 ], [ -81.995282433908343, 28.787283939481636 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sternemann Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995282433908343, 28.787283939481636 ], [ -81.99527114742817, 28.787266245597273 ], [ -81.995253380115372, 28.787234712685265 ], [ -81.995237468808071, 28.787202420991736 ], [ -81.995223453447011, 28.78716945172701 ], [ -81.995211372947992, 28.78713589512455 ], [ -81.995122505497065, 28.78686519127411 ], [ -81.99511710657309, 28.786846248790805 ], [ -81.995113248145714, 28.786827019428451 ], [ -81.995110947621839, 28.78680759522393 ], [ -81.995110217286623, 28.786788076334624 ], [ -81.995110356928848, 28.786740579418897 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harter Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992343871700399, 28.786662262834668 ], [ -81.992344413433742, 28.78666352700818 ], [ -81.992493262593143, 28.787010853400727 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028681776229746, 28.865454656115016 ], [ -82.028452653770785, 28.86542109002842 ], [ -82.027995833008077, 28.865400461110816 ], [ -82.026807948861219, 28.865357724488231 ], [ -82.025821798963904, 28.865346258856484 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hickey Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990367774323914, 28.789958819207222 ], [ -81.990036778167038, 28.789701178868533 ], [ -81.989991194041238, 28.78966425457676 ], [ -81.989947306315528, 28.789625763980375 ], [ -81.989905188731839, 28.789585772053222 ], [ -81.989864905813633, 28.789544339256857 ], [ -81.989826516962154, 28.789501531466364 ], [ -81.989790088747966, 28.789457416361891 ], [ -81.989755673401163, 28.789412064329568 ], [ -81.989735027633728, 28.789385406585431 ], [ -81.989712642535721, 28.789359863061616 ], [ -81.98968859594433, 28.789335519483107 ], [ -81.989662970817974, 28.789312458868306 ], [ -81.989635853187849, 28.789290763333614 ], [ -81.989607338304467, 28.789270504168361 ], [ -81.989577525514946, 28.78925175536914 ], [ -81.989546512118892, 28.789234577397778 ], [ -81.989514410779847, 28.78921903161968 ], [ -81.989503663489856, 28.789214528228321 ], [ -81.989503644029398, 28.789214520105968 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hickey Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991347984616127, 28.790881754954412 ], [ -81.991302094107624, 28.790834968802326 ], [ -81.991227846826675, 28.790755927564835 ], [ -81.991155528522299, 28.790675508580737 ], [ -81.990956678265391, 28.790449476458953 ], [ -81.990919894493132, 28.790409247906336 ], [ -81.990887805395857, 28.790376732642859 ], [ -81.990887782863595, 28.790376709181167 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hickey Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991835769570685, 28.791317495010986 ], [ -81.991786151628901, 28.791278355003271 ], [ -81.991701063804229, 28.791208302209622 ], [ -81.991617691923594, 28.791136665909335 ], [ -81.991536071834744, 28.791063481298011 ], [ -81.991456242458, 28.790988781766917 ], [ -81.991378236567726, 28.790912598902271 ], [ -81.991347984616127, 28.790881754954412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hickey Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996132242846613, 28.791392968665839 ], [ -81.99605481914368, 28.79144106959658 ], [ -81.996025659582386, 28.791460297018006 ], [ -81.995997822321357, 28.791480988928534 ], [ -81.995654919260261, 28.79175134545844 ], [ -81.995653641908788, 28.791752342472666 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hickey Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993192428351179, 28.792212048488761 ], [ -81.993178482885028, 28.792204973633808 ], [ -81.993125490271154, 28.792176062575567 ], [ -81.993073571263437, 28.792145675367529 ], [ -81.993022781173593, 28.792113842692512 ], [ -81.992235924633704, 28.791603806859161 ], [ -81.992142859353294, 28.791542124644124 ], [ -81.992051309260773, 28.791478709110557 ], [ -81.991961313279035, 28.791413589137907 ], [ -81.991872913403412, 28.791346794508126 ], [ -81.991835769570685, 28.791317495010986 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hickey Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995653641908788, 28.791752342472666 ], [ -81.99555495698479, 28.791828817463802 ], [ -81.995453507342432, 28.791904776162909 ], [ -81.995350601064615, 28.791979198093351 ], [ -81.995246269907184, 28.792052065206747 ], [ -81.995140541529366, 28.79212335133376 ], [ -81.995082921235934, 28.792162773979829 ], [ -81.995026723583024, 28.792203756754901 ], [ -81.994972001835819, 28.792246261765619 ], [ -81.994918810284119, 28.79229024931405 ], [ -81.994867200145535, 28.792335673385928 ], [ -81.994817220588928, 28.792382494283228 ], [ -81.994768921808358, 28.792430662382483 ], [ -81.994722349900712, 28.792480131669276 ], [ -81.994677549938899, 28.792530857031554 ], [ -81.994634565972135, 28.792582785236334 ], [ -81.994593438976736, 28.792635869366688 ], [ -81.994554208905328, 28.792690056189439 ], [ -81.994539959688197, 28.792708494376519 ], [ -81.994523862673759, 28.792725712557537 ], [ -81.994506054103198, 28.792741569976659 ], [ -81.994486680460767, 28.792755933096927 ], [ -81.994465903594843, 28.792768682819105 ], [ -81.994443894572242, 28.792779713579037 ], [ -81.994420836751033, 28.792788933347929 ], [ -81.994396922707423, 28.792796266339092 ], [ -81.994372349114272, 28.792801651203142 ], [ -81.994347322886895, 28.792805041028302 ], [ -81.994322047866504, 28.7928064123629 ], [ -81.994296738136896, 28.792805750779035 ], [ -81.994271600610674, 28.792803061699558 ], [ -81.994246847320753, 28.792798368593953 ], [ -81.994222679031779, 28.792791709368341 ], [ -81.994199300604421, 28.792783139073151 ], [ -81.994176903582087, 28.792772729902325 ], [ -81.994155677458451, 28.79276056938912 ], [ -81.994135795337129, 28.79274675679622 ], [ -81.994117423150399, 28.792731406725427 ], [ -81.99410071351339, 28.792714646410353 ], [ -81.994064789048821, 28.792676784631308 ], [ -81.994027083248284, 28.792640292473902 ], [ -81.993987661664207, 28.792605234003933 ], [ -81.993946595994657, 28.792571671482797 ], [ -81.993903957937334, 28.792539668074294 ], [ -81.993859825336031, 28.792509277919375 ], [ -81.993825801121673, 28.792487822930237 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996132242846613, 28.791392968665839 ], [ -81.996201789674103, 28.791471488234272 ], [ -81.996373183931354, 28.791630007957071 ], [ -81.996470503352356, 28.791727117618617 ], [ -81.996615889589549, 28.791820364760149 ], [ -81.996670299438847, 28.791853740036828 ], [ -81.996739295110658, 28.791896063901994 ], [ -81.996890319701464, 28.791955611279665 ], [ -81.99700136379461, 28.791982168081859 ], [ -81.997067371797939, 28.791991763893797 ], [ -81.997067451693383, 28.791991776527993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Williamson Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990934830562566, 28.787898186837179 ], [ -81.991452947915107, 28.787613987640469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Williamson Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990585658868724, 28.788089678790193 ], [ -81.990934830562566, 28.787898186837179 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Williamson Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989919642126338, 28.788510160782863 ], [ -81.989938837001006, 28.788489384647107 ], [ -81.989970767667813, 28.788458203981435 ], [ -81.990004459916449, 28.788428493309649 ], [ -81.990039823603041, 28.788400332929662 ], [ -81.990076768585055, 28.788373794116275 ], [ -81.990115197550566, 28.78834894543688 ], [ -81.990155013188399, 28.788325851849624 ], [ -81.990585658868724, 28.788089678790193 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Williamson Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989503644029398, 28.789214520105968 ], [ -81.989808293346613, 28.788664414632095 ], [ -81.989830285171053, 28.78862715615605 ], [ -81.989854401217627, 28.788590930987297 ], [ -81.98988057694622, 28.788555833862841 ], [ -81.989908746793176, 28.788521955007898 ], [ -81.989919642126338, 28.788510160782863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sarakinis Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990585658868724, 28.788089678790193 ], [ -81.990612994701223, 28.788120791605355 ], [ -81.990653119078118, 28.788168190276707 ], [ -81.990691290096123, 28.78821682406732 ], [ -81.990727458594492, 28.788266632520394 ], [ -81.990761578485461, 28.788317549765374 ], [ -81.990793606753655, 28.788369511736494 ], [ -81.990823499359422, 28.78842245075867 ], [ -81.990851220457046, 28.788476299157256 ], [ -81.990876733176208, 28.788530989257474 ], [ -81.990893192146061, 28.788565586907708 ], [ -81.990911577852444, 28.788599424036498 ], [ -81.990931844212199, 28.788632415822452 ], [ -81.990953944117209, 28.78866448195555 ], [ -81.990977820216386, 28.788695543027426 ], [ -81.991003416182437, 28.788725522336645 ], [ -81.991030668517354, 28.78875434859518 ], [ -81.991059508601822, 28.788781947807642 ], [ -81.991089867815603, 28.788808253197264 ], [ -81.991121670367988, 28.78883320069367 ], [ -81.991154836370868, 28.788856727128529 ], [ -81.991231609579515, 28.788907310513903 ], [ -81.991309622365875, 28.788956396095049 ], [ -81.991388840929019, 28.789003963114411 ], [ -81.991450248441495, 28.789039123029479 ], [ -81.991450257659594, 28.789039127541638 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sarakinis Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992847372016087, 28.789288467974558 ], [ -81.992998764418118, 28.789247650855298 ], [ -81.993029948087354, 28.789240268862461 ], [ -81.993061635563976, 28.789234797087378 ], [ -81.993093673205934, 28.789231262591102 ], [ -81.99312591351773, 28.789229680705088 ], [ -81.993158199785995, 28.789230058639632 ], [ -81.993190381443412, 28.78923239819154 ], [ -81.993222300753871, 28.789236684013559 ], [ -81.993253810224147, 28.78924289805202 ], [ -81.99328475928904, 28.789251008718661 ], [ -81.993314999432044, 28.789260979913756 ], [ -81.99334438828302, 28.789272762905682 ], [ -81.993372785520648, 28.789286301744525 ], [ -81.993400055945301, 28.789301533262194 ], [ -81.99342607050356, 28.789318381658575 ], [ -81.993450706287405, 28.789336772036251 ], [ -81.993473843462525, 28.789356611451733 ], [ -81.994061303135979, 28.789896338309418 ], [ -81.994101220325817, 28.789934422252021 ], [ -81.994139478123728, 28.789973803636371 ], [ -81.994176026342416, 28.790014429225131 ], [ -81.994210807624768, 28.790056236757476 ], [ -81.99424377690444, 28.790099171191695 ], [ -81.994274886042447, 28.790143169364978 ], [ -81.994304090996579, 28.790188169017082 ], [ -81.99433134977312, 28.790234106083108 ], [ -81.9943958948339, 28.790350169851749 ], [ -81.9944585122755, 28.790467050100663 ], [ -81.99451918980283, 28.790584722469507 ], [ -81.994577914096354, 28.790703160793242 ], [ -81.994634671836351, 28.790822339809008 ], [ -81.994642789495842, 28.790838718937614 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hickey Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989503644029398, 28.789214520105968 ], [ -81.989481332113456, 28.789205170376981 ], [ -81.989447383662636, 28.789193042402434 ], [ -81.989412688335236, 28.789182688309264 ], [ -81.989377363917853, 28.789174144198856 ], [ -81.989324610788074, 28.78916180174939 ], [ -81.989272492928862, 28.789147516648452 ], [ -81.98922110252505, 28.789131315071316 ], [ -81.989170528687922, 28.789113228607032 ], [ -81.989120864626088, 28.789093284333521 ], [ -81.989072192279622, 28.78907152196027 ], [ -81.989024601782958, 28.789047976686 ], [ -81.988978177123812, 28.789022691829857 ], [ -81.988932998192467, 28.788995710710665 ], [ -81.988889145902775, 28.788967081159068 ], [ -81.988846697070727, 28.788936854614622 ], [ -81.988805726463198, 28.788905085223789 ], [ -81.98876630782263, 28.788871826230537 ], [ -81.988632318650588, 28.788749480067896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991014727282803, 28.786615262985908 ], [ -81.991081468945097, 28.786762158820125 ], [ -81.991248490317489, 28.787182787287897 ], [ -81.991322576879156, 28.787409591514624 ], [ -81.991452947915107, 28.787613987640469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 41st View", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035359885784203, 28.845665481930979 ], [ -82.035303419417204, 28.845879219292172 ], [ -82.035303514422381, 28.846164270300136 ], [ -82.035429603978415, 28.846174981650918 ], [ -82.035437876163471, 28.847181961708209 ], [ -82.035394279997973, 28.847223522298805 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Phillips Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028892310693394, 28.856269957711969 ], [ -82.02890703812426, 28.856218050463934 ], [ -82.028942394136749, 28.856150567822944 ], [ -82.029293070705279, 28.855691137837645 ], [ -82.030062203032372, 28.854730737147701 ], [ -82.030118190471356, 28.85465286777206 ], [ -82.030153550912829, 28.854598360844044 ], [ -82.030177117644101, 28.854543854681381 ], [ -82.030178269156309, 28.85453852902695 ], [ -82.030178427807854, 28.854537790906974 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036903726492142, 28.890838537002278 ], [ -82.036908359125761, 28.891729302261101 ], [ -82.036909103601744, 28.891826523041654 ], [ -82.036909107884725, 28.891827043667369 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037077065636126, 28.891823358441801 ], [ -82.037077037119019, 28.891820979987699 ], [ -82.037075585550582, 28.891698901044588 ], [ -82.037073397280722, 28.891215809488429 ], [ -82.037079320007862, 28.890841056640173 ], [ -82.037077209422037, 28.890576422612522 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036909107884725, 28.891827043667369 ], [ -82.036912859239749, 28.892316782906029 ], [ -82.036921463814849, 28.89264949091088 ], [ -82.036921477314152, 28.892649979051296 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037087011700407, 28.892649542742166 ], [ -82.037085980981615, 28.892572723946955 ], [ -82.037077065636126, 28.891823358441801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036917187900116, 28.897363588533199 ], [ -82.036917457393272, 28.897594894580749 ], [ -82.036918592012881, 28.898318353849145 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037099613143241, 28.893512833283879 ], [ -82.037094272100305, 28.8931907959463 ], [ -82.037090813497869, 28.892932945863883 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037103204517521, 28.893783688148538 ], [ -82.037103054665636, 28.893762799958846 ], [ -82.037102518857438, 28.89368809242298 ], [ -82.037099613143241, 28.893512833283879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037106650600094, 28.894875645303731 ], [ -82.037108885147475, 28.894576127369142 ], [ -82.037103204517521, 28.893783688148538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036941912381621, 28.893972773379303 ], [ -82.036941934511376, 28.893974485035184 ], [ -82.036943848071573, 28.894125035869262 ], [ -82.036945774153352, 28.895088371540645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036918592012881, 28.898318353849145 ], [ -82.036929891117524, 28.89985765967614 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037085616573265, 28.899873312167948 ], [ -82.037081944362598, 28.898318316931331 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037079165755145, 28.901902426041755 ], [ -82.037082220716059, 28.900995181381212 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051535220028228, 28.847309822721567 ], [ -82.051815279530814, 28.847301272204046 ], [ -82.052453028322887, 28.847274290998932 ], [ -82.052819624295296, 28.847261735021945 ], [ -82.053131998400161, 28.847264478774687 ], [ -82.053471489799634, 28.847271209311799 ], [ -82.05387703799191, 28.847287102044227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049058171431597, 28.847329026888993 ], [ -82.049992831187126, 28.847325918474073 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049832543408115, 28.847220839436257 ], [ -82.049081984438928, 28.847224930208178 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05153575914126, 28.847207082426987 ], [ -82.051000683635422, 28.84721372368633 ], [ -82.050216499287671, 28.847216878667648 ], [ -82.049832543408115, 28.847220839436257 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053867323869426, 28.847171378005491 ], [ -82.053446486961931, 28.847158357845984 ], [ -82.052986599422638, 28.847148987806914 ], [ -82.052742377430135, 28.847158301110792 ], [ -82.052742202186039, 28.847158308396832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 44th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031469674694421, 28.878477863487205 ], [ -82.031465296748152, 28.878845227518287 ], [ -82.031466530113647, 28.880049962002463 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 44th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031466530113647, 28.880049962002463 ], [ -82.031466534338009, 28.880053829264906 ], [ -82.031466817456618, 28.880330477481788 ], [ -82.031470393967155, 28.880895351521701 ], [ -82.031472655672928, 28.880954602416409 ], [ -82.031483897312185, 28.881025702078965 ], [ -82.031526578474882, 28.881177775163724 ], [ -82.031535445873445, 28.881200681654786 ], [ -82.031536041957935, 28.881202220843875 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Clarke Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045156480198145, 28.872812030960763 ], [ -82.04545419711917, 28.872813254209358 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Touchette Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993192428351179, 28.792212048488761 ], [ -81.99327812453825, 28.7920832900124 ], [ -81.993327922004681, 28.792010603050805 ], [ -81.993379801738655, 28.791939055796124 ], [ -81.993433729932633, 28.791868692457712 ], [ -81.993489670730582, 28.791799559951649 ], [ -81.99354758827694, 28.791731703389456 ], [ -81.993607446716624, 28.791665166077905 ], [ -81.993669207121954, 28.791599990421361 ], [ -81.993732826468488, 28.791536218823932 ], [ -81.993798265829341, 28.791473892787661 ], [ -81.993865483205141, 28.791413052912077 ], [ -81.993934435572655, 28.791353738894419 ], [ -81.994434678146675, 28.790934222038199 ], [ -81.994453196165097, 28.790920011376471 ], [ -81.994473066163735, 28.790907297707211 ], [ -81.994494132444572, 28.790896178473261 ], [ -81.994516231116023, 28.79088674209396 ], [ -81.994642789495842, 28.790838718937614 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Germakian Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993825801121673, 28.792487822930237 ], [ -81.994036361149725, 28.792222914244245 ], [ -81.994085682132777, 28.79216264462211 ], [ -81.994136867225137, 28.792103593187385 ], [ -81.994189876474863, 28.792045803247255 ], [ -81.99424466993031, 28.791989320815933 ], [ -81.994301206616029, 28.79193418649356 ], [ -81.994359443508202, 28.791880443587221 ], [ -81.994419335534872, 28.791828131794635 ], [ -81.994931884182506, 28.791392609308605 ], [ -81.994949267392556, 28.791376428785455 ], [ -81.994964910380702, 28.791358923597073 ], [ -81.995037174138943, 28.791269997914618 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sarakinis Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995037174138943, 28.791269997914618 ], [ -81.995041906241539, 28.791273088517194 ], [ -81.995084132710076, 28.79129824299628 ], [ -81.995140161244308, 28.791331129898179 ], [ -81.995195053793111, 28.791365473069469 ], [ -81.995248760168465, 28.791401240928678 ], [ -81.995301233255077, 28.791438401894581 ], [ -81.995352427986063, 28.791476922581332 ], [ -81.995402296221499, 28.791516769603145 ], [ -81.995450795967045, 28.791557906867428 ], [ -81.995497883179567, 28.791600299183894 ], [ -81.995543516888731, 28.791643907753134 ], [ -81.995653641908788, 28.791752342472666 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sarakinis Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994642789495842, 28.790838718937614 ], [ -81.994655068408051, 28.790863493361236 ], [ -81.994677473683296, 28.790903826788032 ], [ -81.994701844647466, 28.790943266096978 ], [ -81.99472813726149, 28.79098173639321 ], [ -81.994756301340146, 28.791019164586224 ], [ -81.994786283624904, 28.791055480292282 ], [ -81.994818025735398, 28.791090615834392 ], [ -81.994851470315268, 28.791124503535531 ], [ -81.994886553861804, 28.791157080230075 ], [ -81.994923209798984, 28.791188285459139 ], [ -81.994961369502008, 28.791218057861538 ], [ -81.995000959223873, 28.791246343294365 ], [ -81.995037174138943, 28.791269997914618 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hickey Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993825801121673, 28.792487822930237 ], [ -81.993825778587748, 28.792487808492169 ], [ -81.993814276034229, 28.792480555159027 ], [ -81.993767390948165, 28.792453551227531 ], [ -81.993719254066917, 28.792428314852426 ], [ -81.993669949379466, 28.792404891152103 ], [ -81.993619568044963, 28.79238332073378 ], [ -81.993568197125128, 28.792363643302288 ], [ -81.993515929827637, 28.792345893148998 ], [ -81.993457655090083, 28.792326403920747 ], [ -81.993400115936439, 28.792305286028011 ], [ -81.993343371777385, 28.792282561130282 ], [ -81.993287478950649, 28.792258249082227 ], [ -81.993232497890375, 28.792232378762066 ], [ -81.993192428351179, 28.792212048488761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020523172152679, 28.86052643115697 ], [ -82.020525408329135, 28.861180450590698 ], [ -82.020524231540449, 28.861830191738182 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020611172344601, 28.854985729996169 ], [ -82.020601024601092, 28.855028030644142 ], [ -82.020573719414713, 28.855180442983603 ], [ -82.020541226226428, 28.855440575029586 ], [ -82.020524354697002, 28.855694975125321 ], [ -82.020525777596163, 28.856330965295893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Methvin Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993396942114984, 28.790162190753172 ], [ -81.993171211515246, 28.789954801432796 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Susan Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993803313786401, 28.790622611486178 ], [ -81.994028508767641, 28.790433754939301 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Methvin Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993803313786401, 28.790622611486178 ], [ -81.99356702450801, 28.790329217405493 ], [ -81.993544086284047, 28.790302166726626 ], [ -81.993519666882833, 28.790276140097443 ], [ -81.993493825709137, 28.790251203389012 ], [ -81.993396942114984, 28.790162190753172 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Susan Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993021649634997, 28.791278129698192 ], [ -81.993803313786401, 28.790622611486178 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eury Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993021649634997, 28.791278129698192 ], [ -81.992535166756269, 28.790844915960413 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcdonald Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992535166756269, 28.790844915960413 ], [ -81.992553308534227, 28.790838275047737 ], [ -81.992581293171696, 28.790826043947078 ], [ -81.992608287429888, 28.790812197643923 ], [ -81.99263417453389, 28.79079679658739 ], [ -81.992658838732893, 28.790779908445192 ], [ -81.992682169396971, 28.790761610810911 ], [ -81.993396942114984, 28.790162190753172 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eury Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993250737599951, 28.791482091510382 ], [ -81.993021649634997, 28.791278129698192 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcdonald Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991835769570685, 28.791317495010986 ], [ -81.992245016394648, 28.790969782262543 ], [ -81.99226850289304, 28.790951133709353 ], [ -81.99229336490103, 28.790933921715226 ], [ -81.992319489740169, 28.79091822838345 ], [ -81.992346755514518, 28.790904124086762 ], [ -81.992375042377489, 28.790891671979541 ], [ -81.992404216143029, 28.790880929801595 ], [ -81.992434147747275, 28.790871948074514 ], [ -81.99246469788477, 28.790864762882499 ], [ -81.992494881313036, 28.790857677819677 ], [ -81.992524462583731, 28.790848835009072 ], [ -81.99253508481047, 28.790844945732161 ], [ -81.992535166756269, 28.790844915960413 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986140536188117, 28.879128046730049 ], [ -81.986136166573303, 28.879130951687568 ], [ -81.985978365082644, 28.879235853035318 ], [ -81.985529328453168, 28.879538871090841 ], [ -81.985040842516412, 28.879865916024198 ], [ -81.984629725628736, 28.880140897175352 ], [ -81.984112412402766, 28.880487961070756 ], [ -81.983670946291099, 28.880802990627242 ], [ -81.98333718582802, 28.881053946236005 ], [ -81.983191545490612, 28.881164740541525 ], [ -81.982947289475106, 28.881370313421332 ], [ -81.982828954144708, 28.881467758555271 ], [ -81.982783442141908, 28.881493121805807 ], [ -81.982730347759755, 28.881513141533159 ], [ -81.982656576953559, 28.881518337351011 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95843236302882, 28.821505322611603 ], [ -81.958313169582794, 28.821478292237035 ], [ -81.957836709183127, 28.821369507488605 ], [ -81.957367509873137, 28.821258594810697 ], [ -81.956593570757065, 28.821081547005129 ], [ -81.955476200758795, 28.820827697874861 ], [ -81.954769986512446, 28.820663443215526 ], [ -81.954233075166144, 28.820537586192525 ], [ -81.953734396605768, 28.820404336733798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009628985414466, 28.837090065923739 ], [ -82.010796533837194, 28.837473810897219 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01236088828982, 28.837803983594565 ], [ -82.01213082358862, 28.837728040707557 ], [ -82.011581846631657, 28.83754812534405 ], [ -82.011117327627844, 28.837394971812948 ], [ -82.010890231208805, 28.83731750618584 ], [ -82.010890120532579, 28.837317468297272 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010890120532579, 28.837317468297272 ], [ -82.010638070084084, 28.837231491755158 ], [ -82.010451804181571, 28.837174904479298 ], [ -82.010218707652243, 28.837095428711663 ], [ -82.010216595590947, 28.837094708819031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Entrance Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.193005090000341, 28.857093185614662 ], [ -82.193142762174048, 28.857704789758543 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rutland Ranch Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.19108651874221, 28.858285453021171 ], [ -82.193142762174048, 28.857704789758543 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Manserra Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991347984616127, 28.790881754954412 ], [ -81.991850717743333, 28.790454615133196 ], [ -81.991881251798915, 28.790430011806713 ], [ -81.991913225874313, 28.790406870309138 ], [ -81.991946546754264, 28.79038525560037 ], [ -81.99198111917589, 28.790365224519519 ], [ -81.992016848900604, 28.790346836612635 ], [ -81.992053635545162, 28.790330141500064 ], [ -81.992091374629396, 28.79031518880204 ], [ -81.992129959625487, 28.790302019115554 ], [ -81.992167956652949, 28.79028906593868 ], [ -81.992205135399075, 28.790274382065238 ], [ -81.99224139240593, 28.790258009898604 ], [ -81.992276630361303, 28.79023999454953 ], [ -81.992310754001537, 28.790220382933644 ], [ -81.992343668062801, 28.790199229185067 ], [ -81.992375286499694, 28.79017659195015 ], [ -81.992405519169765, 28.790152531679649 ], [ -81.992700690982915, 28.78990499482466 ], [ -81.992727673443426, 28.789880933399953 ], [ -81.992752925977456, 28.789855454340287 ], [ -81.992776352295337, 28.789828655993542 ], [ -81.992797864301664, 28.789800641219696 ], [ -81.992817381071177, 28.789771515585972 ], [ -81.992834829873061, 28.789741385562337 ], [ -81.992850143097385, 28.789710369349045 ], [ -81.992863262353268, 28.789678582439855 ], [ -81.992874140516676, 28.78964614574291 ], [ -81.992882735585212, 28.789613181068884 ], [ -81.992889012726323, 28.789579813837957 ], [ -81.992892951447558, 28.789546169470992 ], [ -81.992894533304934, 28.789512375193446 ], [ -81.992893755218674, 28.789478560036152 ], [ -81.992890621279216, 28.789444849420878 ], [ -81.992885138649427, 28.789411374183405 ], [ -81.992877331905362, 28.789378257941731 ], [ -81.992867229719934, 28.789345627021014 ], [ -81.992847372016087, 28.789288467974558 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mceldowney Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990887782863595, 28.790376709181167 ], [ -81.991456485249657, 28.789893540700447 ], [ -81.991484419429355, 28.78987093501755 ], [ -81.991513566247008, 28.789849551139046 ], [ -81.991543858095852, 28.7898294395895 ], [ -81.991575224296568, 28.789810649088594 ], [ -81.991607589049039, 28.789793223844192 ], [ -81.991640876553618, 28.789777204454978 ], [ -81.991675008962659, 28.789762627007914 ], [ -81.99184145646268, 28.789695894067101 ], [ -81.991870293115184, 28.789683259829584 ], [ -81.991898075912061, 28.789668912027658 ], [ -81.991924672714788, 28.789652913815861 ], [ -81.991949959578008, 28.789635344591051 ], [ -81.99197381460516, 28.789616285554821 ], [ -81.991996127166303, 28.789595826030315 ], [ -81.99201678867972, 28.789574064363993 ], [ -81.992035705927705, 28.789551104317127 ], [ -81.992052786716968, 28.789527052357933 ], [ -81.992067949096537, 28.789502023978418 ], [ -81.992081124431294, 28.789476135573604 ], [ -81.992092249207232, 28.789449510757301 ], [ -81.992129460978447, 28.78934997601165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sarakinis Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992129460978447, 28.78934997601165 ], [ -81.992140916254627, 28.789353433454039 ], [ -81.99218186310155, 28.789363630211469 ], [ -81.992223381658917, 28.789371847313191 ], [ -81.99226534491568, 28.789378059486513 ], [ -81.992307629957423, 28.789382246873014 ], [ -81.992350112844719, 28.78938439773518 ], [ -81.992392665540535, 28.789384505749265 ], [ -81.992435161031565, 28.789382571810314 ], [ -81.992477473328577, 28.7893785995205 ], [ -81.992519477466075, 28.789372600603009 ], [ -81.992561048477867, 28.789364596706651 ], [ -81.992602061398017, 28.789354607675811 ], [ -81.992847372016087, 28.789288467974558 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hickey Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990887782863595, 28.790376709181167 ], [ -81.990881421582046, 28.790370264420869 ], [ -81.990841313814755, 28.790332583752935 ], [ -81.990799627522989, 28.790296254629936 ], [ -81.990756422110707, 28.790261329388748 ], [ -81.990367774323914, 28.789958819207222 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Armstrong Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990863358003878, 28.789537756863187 ], [ -81.991450257659594, 28.789039127541638 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rebusmen Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990863358003878, 28.789537756863187 ], [ -81.990528270413989, 28.789231698365036 ], [ -81.990486954679213, 28.789192744334954 ], [ -81.990447376281011, 28.789152415290097 ], [ -81.990409587451197, 28.789110773495384 ], [ -81.990373651688287, 28.789067881216589 ], [ -81.990339619175103, 28.78902379891376 ], [ -81.990307538044803, 28.78897859516772 ], [ -81.990277459503417, 28.788932334950164 ], [ -81.990249426561974, 28.788885088646055 ], [ -81.990223482231343, 28.78883692573794 ], [ -81.990199663376274, 28.788787917512558 ], [ -81.990178005836896, 28.788738137061056 ], [ -81.990168292593196, 28.788717642087605 ], [ -81.990156510236545, 28.788698007768186 ], [ -81.990142757082381, 28.788679394721488 ], [ -81.990127144762241, 28.788661955446223 ], [ -81.990109803344879, 28.788645836126271 ], [ -81.990090873143231, 28.7886311658023 ], [ -81.989919642126338, 28.788510160782863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Armstrong Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990367774323914, 28.789958819207222 ], [ -81.990863358003878, 28.789537756863187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sarakinis Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991450257659594, 28.789039127541638 ], [ -81.991469224298058, 28.789049988107109 ], [ -81.991550733550341, 28.78909444851082 ], [ -81.991633330787096, 28.789137323567886 ], [ -81.991716974012249, 28.789178592520535 ], [ -81.991801626350664, 28.789218236415948 ], [ -81.991887244781637, 28.78925623359412 ], [ -81.991973788332217, 28.789292568711435 ], [ -81.992061217054015, 28.789327221010538 ], [ -81.992100659934607, 28.789341284117906 ], [ -81.992129333970723, 28.789349938106938 ], [ -81.992129460978447, 28.78934997601165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Polacheck Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990300363472073, 28.786576087660993 ], [ -81.990279860495576, 28.786538783593286 ], [ -81.990225302603832, 28.786444107887718 ], [ -81.990168731043482, 28.786350354175621 ], [ -81.990110164251846, 28.786257554036869 ], [ -81.990049624762634, 28.786165742660863 ], [ -81.98998713510953, 28.786074952530011 ], [ -81.989972669450793, 28.786056350233203 ], [ -81.989956323153905, 28.786038999303234 ], [ -81.989938233453842, 28.786023045924686 ], [ -81.989918556022516, 28.786008628162762 ], [ -81.989897453703065, 28.785995866036874 ], [ -81.989875108799978, 28.785984869642572 ], [ -81.989851709764849, 28.785975730127333 ], [ -81.989827455292655, 28.78596852690945 ], [ -81.989802551249724, 28.785963321361514 ], [ -81.989777208625384, 28.78596015500586 ], [ -81.989751643531307, 28.785959057635171 ], [ -81.989152974383387, 28.785957674001477 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Polacheck Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990934830562566, 28.787898186837179 ], [ -81.99079997778739, 28.787707360715245 ], [ -81.990781151314792, 28.787679255035759 ], [ -81.990763860292617, 28.787650392418392 ], [ -81.990748142611551, 28.787620840539969 ], [ -81.990734035137947, 28.787590665272472 ], [ -81.990721568592321, 28.78755993429213 ], [ -81.990710771646533, 28.787528715274924 ], [ -81.990677296926947, 28.787426714442397 ], [ -81.990641648738489, 28.78732528912392 ], [ -81.990633053228109, 28.787302368837548 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Polacheck Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990633053228109, 28.787302368837548 ], [ -81.990603838350793, 28.787224470899556 ], [ -81.990563880105356, 28.787124298568088 ], [ -81.990521788343997, 28.787024806416564 ], [ -81.990477575359563, 28.786926031438803 ], [ -81.990431260614841, 28.786828006117446 ], [ -81.990382857426653, 28.786730766543936 ], [ -81.990332385257119, 28.786634347907697 ], [ -81.990300422868444, 28.786576195040698 ], [ -81.990300363472073, 28.786576087660993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Knudson Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990700440534724, 28.785413889259928 ], [ -81.990703645381444, 28.785413949036293 ], [ -81.990762805659216, 28.785413098658086 ], [ -81.990821887249567, 28.785410272179952 ], [ -81.990880804112464, 28.785405474107648 ], [ -81.990939472255832, 28.785398715263455 ], [ -81.990997807688316, 28.785389999251258 ], [ -81.991055726417244, 28.785379345014437 ], [ -81.991113145475239, 28.785366761571147 ], [ -81.991170563495004, 28.785354180810302 ], [ -81.991228482186955, 28.785343523792395 ], [ -81.991286817564642, 28.78533481036223 ], [ -81.991345486666916, 28.785328049537014 ], [ -81.99140440345974, 28.785323253040836 ], [ -81.991463483958171, 28.785320426281896 ], [ -81.991522644177351, 28.785319574668527 ], [ -81.992139471559682, 28.785320988573933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Knudson Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989152974383387, 28.785957674001477 ], [ -81.989154164219102, 28.785558887233162 ], [ -81.989155417236432, 28.785536305112128 ], [ -81.98915902906279, 28.785513921691734 ], [ -81.989164972021797, 28.785491927357871 ], [ -81.989173190783035, 28.78547050888481 ], [ -81.989183618749919, 28.785449849436571 ], [ -81.98919616576913, 28.785430127663634 ], [ -81.989210726325155, 28.785411509582758 ], [ -81.989227173394681, 28.785394153088031 ], [ -81.989245367664566, 28.78537820885413 ], [ -81.98926515446017, 28.785363810410384 ], [ -81.989286364768759, 28.785351082261972 ], [ -81.989308819337339, 28.78534013176931 ], [ -81.989332322526565, 28.785331054561457 ], [ -81.989356677675232, 28.785323926416627 ], [ -81.989381674808939, 28.785318806870407 ], [ -81.989407102930599, 28.785315741923757 ], [ -81.989432743875682, 28.785314757726255 ], [ -81.989885217471837, 28.785315802476415 ], [ -81.989944373407369, 28.785316927622677 ], [ -81.990003435942967, 28.785320027000019 ], [ -81.990062325191644, 28.785325095188746 ], [ -81.990120952048386, 28.78533212586629 ], [ -81.990179234578065, 28.785341109101463 ], [ -81.990237088797414, 28.785352031353892 ], [ -81.990294431747458, 28.785364877278695 ], [ -81.990351774711499, 28.785377723179117 ], [ -81.990409629993124, 28.785388646259971 ], [ -81.990467912578836, 28.785397629370561 ], [ -81.990526539503207, 28.785404659872 ], [ -81.990585427800426, 28.785409726930247 ], [ -81.990644491431368, 28.785412826027329 ], [ -81.990700440534724, 28.785413889259928 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Knudson Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992139471559682, 28.785320988573933 ], [ -81.992592144938897, 28.785322025169997 ], [ -81.992617777507192, 28.785323129225333 ], [ -81.9926431856139, 28.785326311293566 ], [ -81.992668154171852, 28.785331544293527 ], [ -81.992692466046634, 28.785338784000054 ], [ -81.992715916395753, 28.785347969947232 ], [ -81.992738304474685, 28.785359023623148 ], [ -81.992759438758156, 28.785371849372542 ], [ -81.992779140012502, 28.785386337103883 ], [ -81.992797241295449, 28.785402365898619 ], [ -81.992813583859601, 28.785419796792354 ], [ -81.992828033539695, 28.785438482701199 ], [ -81.992840463340713, 28.785458263006952 ], [ -81.992850767777043, 28.78547896987396 ], [ -81.992858859799952, 28.785500423737478 ], [ -81.992864670796763, 28.785522446838272 ], [ -81.992868150591988, 28.785544846980926 ], [ -81.992869270518952, 28.785567434678093 ], [ -81.992868554598346, 28.785809974045243 ], [ -81.99286943903607, 28.785859963212122 ], [ -81.992872384263038, 28.785909891131922 ], [ -81.992877389262574, 28.785959692837839 ], [ -81.992884446872679, 28.78600930065565 ], [ -81.992893544809846, 28.78605865052009 ], [ -81.992904673863379, 28.786107675658968 ], [ -81.992917818676801, 28.786156312909025 ], [ -81.992929976833722, 28.786194996675388 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Knudson Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992929976833722, 28.786194996675388 ], [ -81.992932961845241, 28.786204496399726 ], [ -81.992950083914977, 28.786252162065143 ], [ -81.992969160310707, 28.786299250350435 ], [ -81.993140109826186, 28.786698140870264 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Knudson Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990633053228109, 28.787302368837548 ], [ -81.989958652851257, 28.787672222541097 ], [ -81.989936261346642, 28.787683271494828 ], [ -81.989912809910436, 28.787692454379055 ], [ -81.989888494186047, 28.787699690902119 ], [ -81.989863526203393, 28.787704920624609 ], [ -81.989838115942433, 28.787708098446494 ], [ -81.989812481575598, 28.787709197314712 ], [ -81.989786842297804, 28.78770820822281 ], [ -81.989761415253838, 28.787705138405972 ], [ -81.989736417586315, 28.78770001585271 ], [ -81.989712064387618, 28.787692883890966 ], [ -81.98968856153013, 28.787683800285084 ], [ -81.989666109762311, 28.78767284716163 ], [ -81.989644902661539, 28.787660114767554 ], [ -81.989625118439008, 28.787645713199602 ], [ -81.989606926085813, 28.787629766088603 ], [ -81.989590482300642, 28.787612406087586 ], [ -81.98957592841596, 28.787593784796986 ], [ -81.989449507947953, 28.787414889277887 ], [ -81.989433569914326, 28.787390522827721 ], [ -81.989419554519742, 28.787365254213825 ], [ -81.989407524230373, 28.787339204351863 ], [ -81.989397538439533, 28.787312493254852 ], [ -81.989389640151828, 28.787285244543689 ], [ -81.989383868274288, 28.787257585448145 ], [ -81.989380248398319, 28.787229644099121 ], [ -81.989378798945211, 28.787201551333816 ], [ -81.989379525021164, 28.787173434378996 ], [ -81.98938254310697, 28.787108918251498 ], [ -81.989383265833268, 28.787044350508882 ], [ -81.989382518275917, 28.787013608604131 ], [ -81.989382516236873, 28.787013518372532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Knudson Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989306868153648, 28.786533527172132 ], [ -81.98928718552412, 28.786471329070498 ], [ -81.989265301741057, 28.786409702855774 ], [ -81.989241240359235, 28.786348709886099 ], [ -81.989215022884608, 28.78628841242179 ], [ -81.989186675945106, 28.786228864602645 ], [ -81.98917630582568, 28.786205866477268 ], [ -81.989167765081419, 28.786182291920593 ], [ -81.989161097741999, 28.786158252823498 ], [ -81.989156333497263, 28.786133862880284 ], [ -81.989153493842196, 28.786109243003015 ], [ -81.989152596175231, 28.786084509591774 ], [ -81.989152974383387, 28.785957674001477 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Knudson Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993140109826186, 28.786698140870264 ], [ -81.993140284945397, 28.786698549627687 ], [ -81.993190390569609, 28.786816014578392 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Knudson Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989382516236873, 28.787013518372532 ], [ -81.989381695245982, 28.786979796117937 ], [ -81.989377831343148, 28.786915313729022 ], [ -81.989371679243206, 28.786850971015937 ], [ -81.98936324304087, 28.786786829336037 ], [ -81.989352532976199, 28.786722951851743 ], [ -81.989339557240726, 28.786659400822856 ], [ -81.98932433119559, 28.786596239411963 ], [ -81.989306868153648, 28.786533527172132 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Schau Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993614211499803, 28.786079585685318 ], [ -81.994939959260847, 28.786082602677581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Schau Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992929976833722, 28.786194996675388 ], [ -81.993321460844427, 28.786095408677543 ], [ -81.993353672907347, 28.786088293742981 ], [ -81.993386373396788, 28.786083209032412 ], [ -81.993419401506031, 28.786080177095357 ], [ -81.993452591307644, 28.786079215969639 ], [ -81.993614211499803, 28.786079585685318 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Manion Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993616289223141, 28.785373182786874 ], [ -81.993617523886471, 28.784953686017015 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Manion Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993614211499803, 28.786079585685318 ], [ -81.993616289223141, 28.785373182786874 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arnold Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993616289223141, 28.785373182786874 ], [ -81.99494202807503, 28.785376201559963 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arnold Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99494202807503, 28.785376201559963 ], [ -81.995353336715397, 28.785377134370044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marlatt Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994939959260847, 28.786082602677581 ], [ -81.99494202807503, 28.785376201559963 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marlatt Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99493896759877, 28.7864211581978 ], [ -81.994939959260847, 28.786082602677581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chase Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997215508619902, 28.786465529156924 ], [ -81.99721887870767, 28.785306409842484 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chase Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997364780727594, 28.786830880249582 ], [ -81.9973003041857, 28.786749930498285 ], [ -81.99728285261007, 28.78672634363685 ], [ -81.997267268287416, 28.786701764266894 ], [ -81.997253623935407, 28.786676306984514 ], [ -81.997241982029067, 28.786650086385521 ], [ -81.997232396848744, 28.786623228795616 ], [ -81.997224914480682, 28.786595857833237 ], [ -81.997219566671362, 28.786568100725763 ], [ -81.997216382094223, 28.786540088309625 ], [ -81.997215373034763, 28.786511947811555 ], [ -81.997215508619902, 28.786465529156924 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zientara Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997294780762275, 28.786875512678197 ], [ -81.997361594213331, 28.786832793992986 ], [ -81.997364760242107, 28.786830892881568 ], [ -81.997364780727594, 28.786830880249582 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blackwell Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99666877482457, 28.786534472034194 ], [ -81.99667582085948, 28.78652879936427 ], [ -81.996695648853034, 28.7865142699019 ], [ -81.996716919953613, 28.786501421484566 ], [ -81.996739451840853, 28.786490366896338 ], [ -81.996763050928621, 28.786481199972414 ], [ -81.996787513388995, 28.786474001013236 ], [ -81.996812627200981, 28.786468830468152 ], [ -81.996838177271471, 28.786465733447308 ], [ -81.996863944411118, 28.786464736112311 ], [ -81.997215508619902, 28.786465529156924 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blackwell Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996285277431468, 28.786843129857616 ], [ -81.99666877482457, 28.786534472034194 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allen Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996560162973338, 28.78530492238967 ], [ -81.996561000042689, 28.785017521712238 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Allen Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99666877482457, 28.786534472034194 ], [ -81.996592029235885, 28.786460472154094 ], [ -81.9965807854514, 28.786448024433522 ], [ -81.996571564611401, 28.786434347813106 ], [ -81.996564534683401, 28.786419694945717 ], [ -81.996559830857905, 28.786404338334183 ], [ -81.996557536088062, 28.78638855950301 ], [ -81.996557048074209, 28.786373423167291 ], [ -81.996560162973338, 28.78530492238967 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shamp Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996560162973338, 28.78530492238967 ], [ -81.99721887870767, 28.785306409842484 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shamp Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99721887870767, 28.785306409842484 ], [ -81.997545117769391, 28.785307143732652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flynn Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998000037878398, 28.786537039556208 ], [ -81.997921867196325, 28.786351724597544 ], [ -81.99791425648263, 28.786330859356482 ], [ -81.997908794661555, 28.786309479831029 ], [ -81.997905525770619, 28.786287754754987 ], [ -81.997904475410579, 28.786265859177846 ], [ -81.997906389020585, 28.785606186182321 ], [ -81.997907658598464, 28.785583444270145 ], [ -81.997911320802942, 28.785560903613241 ], [ -81.997917343876367, 28.785538760013125 ], [ -81.997925675576383, 28.785517205661581 ], [ -81.997936247273103, 28.785496426433905 ], [ -81.997948962682443, 28.785476603693198 ], [ -81.997963715278402, 28.785457906169956 ], [ -81.997980377026366, 28.785440498082746 ], [ -81.997998801455978, 28.785424529212722 ], [ -81.998018832879353, 28.785410137610924 ], [ -81.998040294100136, 28.785397446890936 ], [ -81.998062999728674, 28.785386568936282 ], [ -81.99808675618209, 28.785377597584102 ], [ -81.99811135553874, 28.785370609527515 ], [ -81.998136586804875, 28.785365664315673 ], [ -81.998162229769022, 28.785362807963082 ], [ -81.998188062171948, 28.785362061219587 ], [ -81.998213861754593, 28.785363434007348 ], [ -81.999306536553505, 28.785466648165201 ], [ -81.999332278797041, 28.785470161028854 ], [ -81.999357532457779, 28.785475782593721 ], [ -81.999382078349726, 28.785483462329257 ], [ -81.999405699335412, 28.785493133463365 ], [ -81.999428189543963, 28.785504711177975 ], [ -81.999449349249829, 28.785518092608729 ], [ -81.999468994090918, 28.785533161356835 ], [ -81.999486949947368, 28.785549783879556 ], [ -81.999503061135442, 28.785567814904208 ], [ -81.99951718426216, 28.785587095623463 ], [ -81.999529195394786, 28.785607458206908 ], [ -81.99953899006114, 28.785628720387116 ], [ -81.999546480176633, 28.785650698092049 ], [ -81.999566640801021, 28.785725319579974 ], [ -81.999584906596994, 28.785800318223952 ], [ -81.999601267318539, 28.785875657932074 ], [ -81.999615717840712, 28.785951299905548 ], [ -81.999619159154719, 28.785972146990154 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flynn Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999619159154719, 28.785972146990154 ], [ -81.999619163251523, 28.785972173157276 ], [ -81.999628246893153, 28.786027205345356 ], [ -81.999638852423487, 28.786103339964104 ], [ -81.999647526233915, 28.786179664962678 ], [ -81.999649195577319, 28.786205106624244 ], [ -81.999649078629844, 28.786230591590517 ], [ -81.999647175390862, 28.786256021509203 ], [ -81.999643493029581, 28.786281299832631 ], [ -81.999638046909155, 28.786306328208425 ], [ -81.999562981332232, 28.786601630130519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zientara Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997364780727594, 28.786830880249582 ], [ -81.997429801571826, 28.786791823085021 ], [ -81.99749934548025, 28.78675263694597 ], [ -81.997570167557342, 28.786715264446766 ], [ -81.997642204300703, 28.786679742579146 ], [ -81.997715393232696, 28.786646100214135 ], [ -81.997789673924458, 28.786614367125235 ], [ -81.997864981850455, 28.786584569476677 ], [ -81.997941249412676, 28.786556733432811 ], [ -81.998000011247612, 28.786537048578932 ], [ -81.998000037878398, 28.786537039556208 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hall Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998738113945919, 28.786431896148851 ], [ -81.998770124548088, 28.786058000867115 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zientara Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998000037878398, 28.786537039556208 ], [ -81.998018413110387, 28.78653088425585 ], [ -81.998096404321984, 28.786507041794149 ], [ -81.998175157498707, 28.786485229505534 ], [ -81.998234309381544, 28.786470792415194 ], [ -81.998294061418406, 28.786458414388317 ], [ -81.998354316308237, 28.786448116176086 ], [ -81.998414986992756, 28.786439914018395 ], [ -81.998475975147201, 28.786433817838947 ], [ -81.998537188592323, 28.786429838464013 ], [ -81.998598533100505, 28.786427983110734 ], [ -81.998659912395823, 28.786428252680203 ], [ -81.998721231226568, 28.786430648976015 ], [ -81.998738113945919, 28.786431896148851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Groesser Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999619159154719, 28.785972146990154 ], [ -82.000235510175742, 28.785952279249987 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Groesser Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000235510175742, 28.785952279249987 ], [ -82.000247642330535, 28.785951888600145 ], [ -82.000274251130165, 28.785952027667424 ], [ -82.000300747261207, 28.785954163550784 ], [ -82.000326942264536, 28.785958280007893 ], [ -82.000352643583938, 28.785964346359609 ], [ -82.000377664808624, 28.785972317489829 ], [ -82.000711059281841, 28.7860929215183 ], [ -82.000727272055357, 28.786097736280258 ], [ -82.00074405123128, 28.78610067332442 ], [ -82.000761121286899, 28.786101682120833 ], [ -82.000893802894637, 28.786101978978262 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ottley Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000235510175742, 28.785952279249987 ], [ -82.000237349703312, 28.785313181675757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gonzalez Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999849158359723, 28.785311608374336 ], [ -82.000237349703312, 28.785313181675757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gonzalez Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000237349703312, 28.785313181675757 ], [ -82.00089606482905, 28.78531465370801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Budny Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00089606482905, 28.78531465370801 ], [ -82.000896882880667, 28.78503000326398 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Budny Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000893802894637, 28.786101978978262 ], [ -82.00089606482905, 28.78531465370801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Budny Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000892778264401, 28.786458694514838 ], [ -82.000893802894637, 28.786101978978262 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086232857545369, 28.748830157611934 ], [ -82.0859241236153, 28.74883608101025 ], [ -82.082888732384731, 28.748832227438697 ], [ -82.081205292666496, 28.748830374117023 ], [ -82.080545847399947, 28.748831912954472 ], [ -82.080540210949295, 28.748831926201145 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.080540210949295, 28.748831926201145 ], [ -82.079564106666908, 28.7488342031866 ], [ -82.07896938863189, 28.748848868746531 ], [ -82.077575187461832, 28.748843938877723 ], [ -82.075859250575803, 28.748844900475735 ], [ -82.075699819944717, 28.74884325814342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 529", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09161387665057, 28.747653431653692 ], [ -82.091613877605198, 28.747653352248701 ], [ -82.091619770891384, 28.747239969229867 ], [ -82.09162843988436, 28.7470250573237 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 244", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057765124503987, 28.85460064784434 ], [ -82.057135468192811, 28.854591594783756 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053640880713488, 28.927379680855687 ], [ -82.05329038314936, 28.927386344024477 ], [ -82.052035247816534, 28.927389923881616 ], [ -82.051573285551044, 28.927391601189385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050856648118156, 28.927394203340153 ], [ -82.050822141968908, 28.927394328115444 ], [ -82.050822109148825, 28.927394328127708 ], [ -82.050407758434474, 28.927395832062182 ], [ -82.050407721511888, 28.927395832075849 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023377970489719, 28.841632501168984 ], [ -82.023440494075075, 28.841484907576636 ], [ -82.023581337880742, 28.841153325787523 ], [ -82.023677292775133, 28.840795700086765 ], [ -82.023735529322863, 28.840448057547885 ], [ -82.023765428932066, 28.840042628866073 ], [ -82.023760421582978, 28.839834415206255 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024746810026784, 28.842087744953087 ], [ -82.024035092738544, 28.841852117044464 ], [ -82.023889652031855, 28.841803596215748 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023252926526268, 28.841592527381909 ], [ -82.023242676593128, 28.841625325232169 ], [ -82.023190863119339, 28.841765404341565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Webster Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038620503072025, 28.865495145204491 ], [ -82.038598261229382, 28.865655385158004 ], [ -82.038076928881068, 28.866759510330787 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038620503072025, 28.865495145204491 ], [ -82.038418006914654, 28.865499837191113 ], [ -82.037911620946559, 28.865516020086897 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maddox Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038897279732922, 28.867060012324512 ], [ -82.038173941418862, 28.86679747393692 ], [ -82.038076928881068, 28.866759510330787 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Davock Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019352114891433, 28.84692381131519 ], [ -82.019733041382779, 28.846669505427482 ], [ -82.019930976103211, 28.846625311281102 ], [ -82.020240969731574, 28.846432471010282 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Nook Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020240969731574, 28.846432471010282 ], [ -82.020340908129086, 28.84650623444821 ], [ -82.020536024655016, 28.846668038986099 ], [ -82.020607406944862, 28.846718007197513 ], [ -82.020681170872848, 28.846751320254672 ], [ -82.020791768913938, 28.846834042574727 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lapointe Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021865631160367, 28.847901789803672 ], [ -82.021876827618854, 28.847781831003463 ], [ -82.022139777758028, 28.847239114765834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Nook Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020791768913938, 28.846834042574727 ], [ -82.021095196462795, 28.846967852317146 ], [ -82.021299828859782, 28.847048754451677 ], [ -82.021466391273037, 28.847096344495725 ], [ -82.021613917063419, 28.847132036774134 ], [ -82.021832827550753, 28.847184386924269 ], [ -82.022016045781186, 28.847215320720046 ], [ -82.022094567368057, 28.847241495008916 ], [ -82.022139777758028, 28.847239114765834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trillium Rdg", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021865631160367, 28.847901789803672 ], [ -82.022001514789608, 28.847936851863921 ], [ -82.022307643369629, 28.847962460231198 ], [ -82.022786606281372, 28.847976494708384 ], [ -82.022851684940676, 28.847980065286887 ], [ -82.022923537073837, 28.84795618026094 ], [ -82.022958783390806, 28.84793588159221 ], [ -82.023097040227668, 28.847783067659876 ], [ -82.023315289955562, 28.847635015196364 ], [ -82.023665045299055, 28.847460679342866 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brownwood Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020335694590713, 28.847716455714309 ], [ -82.020489659528195, 28.847418570322009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trillium Rdg", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019352114891433, 28.84692381131519 ], [ -82.019411782987561, 28.847002586090056 ], [ -82.019737244024938, 28.847145688676626 ], [ -82.020076916178823, 28.847265739028373 ], [ -82.020138537093942, 28.847299709197106 ], [ -82.020257852698364, 28.847334308914309 ], [ -82.020433773590426, 28.847347832315958 ], [ -82.020489659528195, 28.847418570322009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988369724507351, 28.801109734654645 ], [ -81.988682471026408, 28.80097337612159 ], [ -81.989655650645801, 28.800544875695259 ], [ -81.990015602268642, 28.800402806077344 ], [ -81.990605395597399, 28.80020498448431 ], [ -81.990844779454221, 28.800134715529314 ], [ -81.991183908093689, 28.800043827735955 ], [ -81.991429362632971, 28.799986546932928 ], [ -81.991605723948751, 28.799945794410654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 97th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138135310308201, 28.613328258439108 ], [ -82.138162731373356, 28.613365802278295 ], [ -82.138171911857569, 28.613408734409102 ], [ -82.138157181646847, 28.613773741986293 ], [ -82.13817245696427, 28.613824718613305 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 201", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03916895491075, 28.928144267023757 ], [ -82.03916895493154, 28.928144322966023 ], [ -82.039169025995648, 28.92835494650053 ], [ -82.039169026005695, 28.928354973569366 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Killdeer Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989743227313355, 28.865293923590858 ], [ -81.989745141788532, 28.865215915068031 ], [ -81.989741334433134, 28.865109314803092 ], [ -81.989731817648334, 28.865023655663656 ], [ -81.989691842764827, 28.864955126204681 ], [ -81.989648060284566, 28.864903730283384 ], [ -81.989625217579558, 28.864865658499802 ], [ -81.989619506829712, 28.86482949191274 ], [ -81.989638543014792, 28.864783806147567 ], [ -81.989674710668098, 28.864734313087464 ], [ -81.989708974993917, 28.864713374176649 ], [ -81.989762275317872, 28.864698145601746 ], [ -81.989826997119621, 28.864705760604579 ], [ -81.989874585667295, 28.864724795633045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03703084027623, 28.930390649524281 ], [ -82.037002799593139, 28.931103418275519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037054900722922, 28.929779121024779 ], [ -82.037054875309522, 28.929779769781447 ], [ -82.037043036238032, 28.930080676484312 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95684216774319, 28.895737555903928 ], [ -81.95713123187592, 28.895596463934019 ], [ -81.957138092628483, 28.895593140249193 ], [ -81.957138140828121, 28.895593116804775 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palm Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041693095895525, 28.845030025730487 ], [ -82.041676953587682, 28.845005681912539 ], [ -82.041670026562642, 28.84497118976763 ], [ -82.041667708951337, 28.84493872460596 ], [ -82.04166538676985, 28.844892056249513 ], [ -82.041668690562716, 28.844324540951874 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palm Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041670254497859, 28.843947627441658 ], [ -82.041670203241551, 28.843814953291425 ], [ -82.041670086368541, 28.84352096128336 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Palm Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043877844840836, 28.845057751447374 ], [ -82.043893967078958, 28.845037455234298 ], [ -82.043905481061529, 28.845013102826215 ], [ -82.043916990822993, 28.844978604892361 ], [ -82.04392158052012, 28.844938021317645 ], [ -82.043921557091466, 28.844879178356244 ], [ -82.043923799687491, 28.84472699745001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 107th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127220794489915, 28.912533251374533 ], [ -82.127221112391723, 28.912533253782481 ], [ -82.127556944722826, 28.912535648060473 ], [ -82.128032200332072, 28.912528800062873 ], [ -82.128240715263786, 28.912513666889918 ], [ -82.128284365334196, 28.912515758530844 ], [ -82.128337726432164, 28.912528510578486 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Young Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038301090019843, 28.859137590364206 ], [ -82.040072016473161, 28.8591161755201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bigham Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020868838278574, 28.799693777763061 ], [ -82.020858038343732, 28.799184460179426 ], [ -82.020861146339115, 28.798690882232233 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 19th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13665670716307, 28.882458727219646 ], [ -82.136615713553994, 28.882426031401437 ], [ -82.136521486683364, 28.882393669869547 ], [ -82.136435825153313, 28.882369875986171 ], [ -82.136315900388453, 28.882347984304396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 19th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136299077362438, 28.882426258473188 ], [ -82.136351289233758, 28.882444578502934 ], [ -82.136418155644307, 28.88246015068702 ], [ -82.136453880074839, 28.882464730847524 ], [ -82.136507923251756, 28.882456488016413 ], [ -82.13665670716307, 28.882458727219646 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 19th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136042884698227, 28.882342461619235 ], [ -82.13608104731415, 28.88236311567805 ], [ -82.136184578453609, 28.882396947027871 ], [ -82.136299077362438, 28.882426258473188 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 19th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136315900388453, 28.882347984304396 ], [ -82.136139819946791, 28.882315622776478 ], [ -82.136074147313565, 28.88231847689217 ], [ -82.136042884698227, 28.882342461619235 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002876816653469, 28.957205423396104 ], [ -82.002664516947675, 28.957169735069087 ], [ -82.002362602367214, 28.957140979995561 ], [ -82.002068851932123, 28.957158069575971 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 485A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117541874040867, 28.768089734014133 ], [ -82.117524872488019, 28.769380308697247 ], [ -82.117520011955307, 28.76974659191767 ], [ -82.117503205258004, 28.769793028677153 ], [ -82.117482157582742, 28.769819044316456 ], [ -82.117456892678589, 28.769841348765404 ], [ -82.117427396106876, 28.769850658125893 ], [ -82.117393677134956, 28.769850687213705 ], [ -82.117343620920536, 28.769847015552834 ], [ -82.11720299329491, 28.769851301804245 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Webster Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038076928881068, 28.866759510330787 ], [ -82.037809969834186, 28.867368509600244 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pennsylvania Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037809969834186, 28.867368509600244 ], [ -82.037807026581063, 28.867367481785951 ], [ -82.037378488084045, 28.867217760052444 ], [ -82.037086534840753, 28.867115053411094 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Webster Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037809969834186, 28.867368509600244 ], [ -82.037534755874091, 28.867997159097044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Florida Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037534755874091, 28.867997159097044 ], [ -82.037086785682533, 28.867830443285509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Webster Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037534755874091, 28.867997159097044 ], [ -82.037257528055932, 28.868630407564364 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Georgia Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037257528055932, 28.868630407564364 ], [ -82.037091717475235, 28.868576667112912 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957389678658814, 28.952400359119132 ], [ -81.958316359824693, 28.953312426421277 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Everglades Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005141204687561, 28.801728678070418 ], [ -82.005308177926779, 28.801633770998727 ], [ -82.005487306032023, 28.801596080720692 ], [ -82.005755748816668, 28.801615862435092 ], [ -82.0064367473434, 28.801613041221152 ], [ -82.006688237295833, 28.80161021706348 ], [ -82.007216646094534, 28.801610220023516 ], [ -82.007835478905847, 28.801604571363637 ], [ -82.007911773019387, 28.801593270413452 ], [ -82.007944147368235, 28.801513100068469 ], [ -82.007947186756439, 28.800872166767267 ], [ -82.007947188483882, 28.800340587508636 ], [ -82.007945831733409, 28.799764125455081 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005141204687561, 28.801728678070418 ], [ -82.005064951458849, 28.801585493480861 ], [ -82.005023437814557, 28.80146857316802 ], [ -82.004998867559166, 28.801324542341373 ], [ -82.004993785738336, 28.801211858133286 ], [ -82.00497430170077, 28.800080788539734 ], [ -82.004978725249316, 28.799922630174933 ], [ -82.004995049458472, 28.799845679559184 ], [ -82.005028861662183, 28.799765231030342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007945831733409, 28.799764125455081 ], [ -82.007945848123455, 28.799764125454203 ], [ -82.009897760808926, 28.799768296674319 ], [ -82.010334010791951, 28.799772416296438 ], [ -82.010507887398546, 28.799802134192628 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010529799765735, 28.799599458811432 ], [ -82.010376841810668, 28.799629649394834 ], [ -82.010135154789438, 28.799642708351509 ], [ -82.008547791108271, 28.799636734446075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007945831733409, 28.799764125455081 ], [ -82.007983690336843, 28.799716906337459 ], [ -82.008062213398475, 28.799681214775116 ], [ -82.008547791108271, 28.799636734446075 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Olive Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12274600675876, 28.666783332729249 ], [ -82.122737008980508, 28.667119161917565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Infinity Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006129587666223, 28.839932444640169 ], [ -82.006108564137392, 28.839869195559825 ], [ -82.006071444516081, 28.839823509621098 ], [ -82.00602290321126, 28.839803522730399 ], [ -82.005984356340832, 28.83978067963011 ], [ -82.005974126415765, 28.839748531729217 ], [ -82.005975790488023, 28.83972642784693 ], [ -82.005981265617748, 28.839703322254934 ], [ -82.005995779223241, 28.839680743256526 ], [ -82.006001106680884, 28.83967496196615 ], [ -82.006001698962137, 28.839674318597979 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Infinity Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006264503418379, 28.839779735411636 ], [ -82.006205646906707, 28.839743561620917 ], [ -82.006162817438678, 28.839700730838448 ], [ -82.006127125354354, 28.839655045758498 ], [ -82.00610440363522, 28.839644431024716 ], [ -82.00607430089957, 28.839640768856935 ], [ -82.006050865567815, 28.839642051964216 ], [ -82.006031471291791, 28.839650762700551 ], [ -82.006012794499824, 28.839662275971833 ], [ -82.006001698962137, 28.839674318597979 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cosmos Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006129587666223, 28.839932444640169 ], [ -82.006264503418379, 28.839779735411636 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodbridge Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965117742359837, 28.831681392420215 ], [ -81.965160321534952, 28.831671914793883 ], [ -81.965197440394164, 28.831655496990763 ], [ -81.965235274888087, 28.831634796105927 ], [ -81.965279448699988, 28.831603160874153 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcdowell Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962636139597663, 28.835824072353855 ], [ -81.962886000042857, 28.835822035598238 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Basso Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956045146348359, 28.845526752564552 ], [ -81.955859301223725, 28.845219692820265 ], [ -81.955662996272977, 28.845041234164675 ], [ -81.955544022378376, 28.84491928608546 ], [ -81.955383408199921, 28.844773544708243 ], [ -81.955184127744175, 28.844690264136563 ], [ -81.954946181311882, 28.844559394415072 ], [ -81.954761773283892, 28.844413652437023 ], [ -81.954627927033982, 28.844324422479119 ], [ -81.954526800674572, 28.844330371509894 ], [ -81.954387007890716, 28.844315499267548 ], [ -81.954232341878708, 28.84420544925413 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moyer Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955275165495877, 28.845976337029999 ], [ -81.95550689432153, 28.845792405728961 ], [ -81.95557404534452, 28.845744431565066 ], [ -81.955623796178116, 28.845712185137348 ], [ -81.955695394355374, 28.845670192865335 ], [ -81.95575791984345, 28.845637404701698 ], [ -81.955811781397585, 28.845611825794617 ], [ -81.955894648504383, 28.845576939171316 ], [ -81.95599289617283, 28.845542067457739 ], [ -81.956044872685311, 28.845526832780326 ], [ -81.956045146348359, 28.845526752564552 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenholloway Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001691350984757, 28.87025520627688 ], [ -82.001764771005313, 28.870145859189009 ], [ -82.001810071967583, 28.870086499896075 ], [ -82.001855372834981, 28.870024015009488 ], [ -82.001897590301354, 28.869964731507121 ], [ -82.001910677028775, 28.869946291016841 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98397713318343, 28.809253641311848 ], [ -81.98433471128665, 28.809295368606854 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chitty Chatty Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979035842878176, 28.812172532010404 ], [ -81.979150209976794, 28.812279670370835 ], [ -81.979351176573374, 28.812376911012436 ], [ -81.979526211738659, 28.812399601188304 ], [ -81.979662351433831, 28.812397440116648 ], [ -81.980005940084311, 28.812468750879567 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chitty Chatty Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9775111810618, 28.811990111248157 ], [ -81.977828666705619, 28.811756493548952 ], [ -81.978032336128337, 28.811606737130571 ], [ -81.978253977114775, 28.811522875470438 ], [ -81.978343831112284, 28.811534855549564 ], [ -81.978457645827746, 28.811606738424071 ], [ -81.978577451662517, 28.811714563005154 ], [ -81.978697137517429, 28.811838994490447 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chitty Chatty Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976438918572981, 28.812894634572643 ], [ -81.9775111810618, 28.811990111248157 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chitty Chatty Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975812961239839, 28.814934873874179 ], [ -81.975751094919318, 28.814677891919523 ], [ -81.975732061182882, 28.81452560734818 ], [ -81.975732061289762, 28.814416152575859 ], [ -81.975750031917656, 28.814296347938814 ], [ -81.975851867666591, 28.814146592678462 ], [ -81.975923751267857, 28.813930944350279 ], [ -81.975971674835407, 28.813721286641176 ], [ -81.975959693930108, 28.81347568728215 ], [ -81.976043559403806, 28.813212117490739 ], [ -81.976145393933322, 28.813092313283843 ], [ -81.976438918572981, 28.812894634572643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chitty Chatty Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975833132670672, 28.815690125719463 ], [ -81.975888508011394, 28.815391132591486 ], [ -81.975900406028387, 28.815272160595487 ], [ -81.975894457498327, 28.815206725783547 ], [ -81.975812961239839, 28.814934873874179 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clark Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976952841828265, 28.813396735174702 ], [ -81.976438918572981, 28.812894634572643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sander Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978697137517429, 28.811838994490447 ], [ -81.978864943766922, 28.81168204150384 ], [ -81.97906861314064, 28.811559840996019 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sander Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97906861314064, 28.811559840996019 ], [ -81.979496319374064, 28.811274706437391 ], [ -81.979662650035166, 28.811088010245562 ], [ -81.979761090639201, 28.810992965776553 ], [ -81.979856137041992, 28.810918287687848 ], [ -81.979934211081215, 28.810867370254744 ], [ -81.980025214399916, 28.810825466082491 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Coven Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97906861314064, 28.811559840996019 ], [ -81.979339942388606, 28.811766503232324 ], [ -81.979462410225906, 28.811836922139989 ], [ -81.979590338823513, 28.811891778709718 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Akin Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975800909501075, 28.810956828436549 ], [ -81.976077527104977, 28.810978957564632 ], [ -81.976453724401722, 28.81109513706328 ], [ -81.976785662738678, 28.811305363851293 ], [ -81.977222714811489, 28.81174241436295 ], [ -81.9775111810618, 28.811990111248157 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Akin Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974888076280095, 28.811200247759366 ], [ -81.975031915914641, 28.811095135511316 ], [ -81.975297468294869, 28.811001086233333 ], [ -81.975551955475737, 28.810951296378082 ], [ -81.975800909501075, 28.810956828436549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Akin Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974296114525885, 28.811659426423425 ], [ -81.974484215333021, 28.811476861648735 ], [ -81.974888076280095, 28.811200247759366 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Akin Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972265743962609, 28.813451883223124 ], [ -81.972381925077599, 28.81322506086002 ], [ -81.972691736174184, 28.812815672772683 ], [ -81.97317858113027, 28.812422880427672 ], [ -81.973438601042716, 28.812229251099581 ], [ -81.973704153863224, 28.812102008961517 ], [ -81.973991835850327, 28.811919444496453 ], [ -81.974296114525885, 28.811659426423425 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Akin Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972022320835876, 28.814082564059373 ], [ -81.972121903174667, 28.813828079056929 ], [ -81.972265743962609, 28.813451883223124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Akin Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971558126177428, 28.8146512470061 ], [ -81.971843663850024, 28.814289570896793 ], [ -81.972022320835876, 28.814082564059373 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Akin Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971158372830402, 28.815403153560943 ], [ -81.971339213789662, 28.814946298392247 ], [ -81.971558126177428, 28.8146512470061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Akin Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97086875567679, 28.817631312657557 ], [ -81.970720543390073, 28.817395944444662 ], [ -81.970539228257479, 28.817143485369662 ], [ -81.970435008905554, 28.817032126433588 ], [ -81.970347920449427, 28.816937899750119 ], [ -81.970283674247369, 28.816862233168674 ], [ -81.970266541956306, 28.816807982493629 ], [ -81.970272253397468, 28.816738025848206 ], [ -81.970295097091793, 28.816672352647654 ], [ -81.970349348736505, 28.816583362562255 ], [ -81.970768136729006, 28.816126507307683 ], [ -81.971158372830402, 28.815403153560943 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mckay Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976341720667492, 28.812043475867462 ], [ -81.976186632424174, 28.811804735799097 ], [ -81.975938296698445, 28.811480426257372 ], [ -81.975811143691985, 28.811273802183731 ], [ -81.975774057130664, 28.811146649963185 ], [ -81.975800909501075, 28.810956828436549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclaughlin Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975670460284263, 28.812595714439833 ], [ -81.975594885997936, 28.812493876760286 ], [ -81.975380400313867, 28.812202790946287 ], [ -81.975262944728655, 28.812029160248677 ], [ -81.975201663056538, 28.811875956418884 ], [ -81.975171022647842, 28.811687005965325 ], [ -81.975099527505492, 28.811472520652057 ], [ -81.974956537899914, 28.81129378507093 ], [ -81.974888076280095, 28.811200247759366 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ellie Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974635934943322, 28.812349469160875 ], [ -81.974530706924696, 28.812050756405064 ], [ -81.974449239928248, 28.811850482970296 ], [ -81.974371166560857, 28.811748649533957 ], [ -81.974296114525885, 28.811659426423425 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ellie Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975063364530371, 28.813048851754477 ], [ -81.974924464984809, 28.812919739515227 ], [ -81.974809052924456, 28.812743226842365 ], [ -81.974741163660198, 28.812614236892834 ], [ -81.974635934943322, 28.812349469160875 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Milow Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97402246300814, 28.812678984038268 ], [ -81.974274056546349, 28.812517967303219 ], [ -81.974635934943322, 28.812349469160875 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Milow Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97372150915001, 28.812846988972019 ], [ -81.97402246300814, 28.812678984038268 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greg Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975063364530371, 28.813048851754477 ], [ -81.97529767155261, 28.812871878859731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greg Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974573926225105, 28.813447216726988 ], [ -81.975063364530371, 28.813048851754477 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carmen Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974802354785211, 28.813675644526377 ], [ -81.974573926225105, 28.813447216726988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carmen Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974573926225105, 28.813447216726988 ], [ -81.97431694383539, 28.81317595851041 ], [ -81.974159900159279, 28.812947530997224 ], [ -81.97402246300814, 28.812678984038268 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brock Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972850591427374, 28.813799373328003 ], [ -81.972675106588341, 28.813656605747006 ], [ -81.972478801047501, 28.813540607932811 ], [ -81.972265743962609, 28.813451883223124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brock Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973373168426789, 28.814305283447261 ], [ -81.973318185125535, 28.81427431335964 ], [ -81.973177767721481, 28.814141421071188 ], [ -81.972850591427374, 28.813799373328003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Horton Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972850591427374, 28.813799373328003 ], [ -81.972937834828997, 28.81372290838522 ], [ -81.973083118392935, 28.813566229693876 ], [ -81.973208462748374, 28.813392460712567 ], [ -81.973291075022985, 28.813307000380316 ], [ -81.973402176081692, 28.813224388822132 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Horton Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973402176081692, 28.813224388822132 ], [ -81.973757586940025, 28.812900648321957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Macintyre Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973951974109298, 28.813836856887846 ], [ -81.973692743600921, 28.813529197853889 ], [ -81.973518972657018, 28.81330415179923 ], [ -81.973402176081692, 28.813224388822132 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Macintyre Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97425318425941, 28.814126488084497 ], [ -81.973951974109298, 28.813836856887846 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Couture Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973373168426789, 28.814305283447261 ], [ -81.97384906318689, 28.813942418047663 ], [ -81.973951974109298, 28.813836856887846 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Couture Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973059915322537, 28.814564801259834 ], [ -81.973373168426789, 28.814305283447261 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "John Cramer Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972856821752359, 28.814794261222062 ], [ -81.972339287792451, 28.814306472182736 ], [ -81.972022320835876, 28.814082564059373 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "John Cramer Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972327388069999, 28.815225536051692 ], [ -81.972429573813827, 28.81521432149685 ], [ -81.972530701929671, 28.815196477374123 ], [ -81.972654567054718, 28.815145229765378 ], [ -81.972718679773195, 28.81508464273643 ], [ -81.972764616544794, 28.814999488396285 ], [ -81.97281861806394, 28.814919270407337 ], [ -81.972856821752359, 28.814794261222062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "John Cramer Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971558126177428, 28.8146512470061 ], [ -81.971952622141416, 28.814957847503173 ], [ -81.972223286485146, 28.815213638355559 ], [ -81.972327388069999, 28.815225536051692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ladonna Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972856821752359, 28.814794261222062 ], [ -81.973114284788068, 28.814624211251321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stuck Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972062273287776, 28.815489827421626 ], [ -81.972327388069999, 28.815225536051692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Berman Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97172594775482, 28.815761484187881 ], [ -81.971327147125223, 28.815474427088063 ], [ -81.971263689139107, 28.815438785806275 ], [ -81.971158372830402, 28.815403153560943 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilder Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975833132670672, 28.815690125719463 ], [ -81.976188799555189, 28.815739274970063 ], [ -81.976375724673517, 28.815719938108721 ], [ -81.976710901779427, 28.815661927611323 ], [ -81.97712640271051, 28.815656798164301 ], [ -81.9773286729977, 28.815665511816658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilder Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974242199164593, 28.815874631162767 ], [ -81.974480690469704, 28.815848848072193 ], [ -81.975105922105797, 28.815687707273426 ], [ -81.975325076701296, 28.815649034111257 ], [ -81.975492665254151, 28.815649034133919 ], [ -81.975833132670672, 28.815690125719463 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilder Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973538472033454, 28.816007577871602 ], [ -81.973803890701134, 28.815913304201899 ], [ -81.974242199164593, 28.815874631162767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilder Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973043297255515, 28.816409617400037 ], [ -81.973101308975842, 28.816338716472934 ], [ -81.973281787901641, 28.816158238122632 ], [ -81.973538472033454, 28.816007577871602 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilder Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972877918755813, 28.817014157174139 ], [ -81.97296594828137, 28.816789911153496 ], [ -81.973043297255515, 28.816409617400037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilder Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972521964229799, 28.817273823803021 ], [ -81.972630769744455, 28.817215323090235 ], [ -81.972877918755813, 28.817014157174139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilder Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971952621096221, 28.817687512725367 ], [ -81.972521964229799, 28.817273823803021 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sumner Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974242199164593, 28.815874631162767 ], [ -81.974191368038973, 28.815569622474346 ], [ -81.974171587317883, 28.815413845619982 ], [ -81.974179004850868, 28.815319884958626 ], [ -81.974211149635224, 28.815258069342196 ], [ -81.974280384691554, 28.81521603495905 ], [ -81.974431217092686, 28.815171527531657 ], [ -81.975032074169661, 28.815040477170733 ], [ -81.975529079498742, 28.814991024629915 ], [ -81.975812961239839, 28.814934873874179 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hanes Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973538472033454, 28.816007577871602 ], [ -81.973347387456087, 28.815628653679084 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Minnehan Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972592305606483, 28.81623068192145 ], [ -81.973043297255515, 28.816409617400037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cosentino Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972521964229799, 28.817273823803021 ], [ -81.97235875900283, 28.81706743560424 ], [ -81.971965730874786, 28.816732248797063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gold Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973497639104494, 28.81738633042945 ], [ -81.972877918755813, 28.817014157174139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gold Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973861635648817, 28.817680655013557 ], [ -81.973638632969681, 28.817474947887952 ], [ -81.973557564730172, 28.817416344955589 ], [ -81.973497639104494, 28.81738633042945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lazdowski Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971952621096221, 28.817687512725367 ], [ -81.972059193698229, 28.817834393110399 ], [ -81.972158179820497, 28.817996196043008 ], [ -81.972227826652215, 28.818055931652989 ], [ -81.972337328398183, 28.818083307778089 ], [ -81.972483331679882, 28.818074182934119 ], [ -81.972711462076802, 28.818001181172949 ], [ -81.972893965827595, 28.817891680407147 ], [ -81.973497639104494, 28.81738633042945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lazdowski Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97086875567679, 28.817631312657557 ], [ -81.971142383919371, 28.817538964340354 ], [ -81.971405751104527, 28.817504760849292 ], [ -81.971730684333991, 28.81757658853822 ], [ -81.971952621096221, 28.817687512725367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lazdowski Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970779332176122, 28.820115583261121 ], [ -81.970813238775861, 28.819951414480069 ], [ -81.970884624023725, 28.819565943400441 ], [ -81.970841794529321, 28.819399382163233 ], [ -81.970732339466011, 28.819261373537731 ], [ -81.970418249871329, 28.819042463933204 ], [ -81.97028975823477, 28.818904455260686 ], [ -81.970237411373731, 28.818785482240592 ], [ -81.970232652663071, 28.818609403534868 ], [ -81.970280242326368, 28.818314351512495 ], [ -81.970361145338899, 28.818090682238552 ], [ -81.970492680105764, 28.817886876662662 ], [ -81.970590406121801, 28.817791059235308 ], [ -81.970721024400007, 28.817698577529878 ], [ -81.97086875567679, 28.817631312657557 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lazdowski Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97116938683547, 28.821833168709581 ], [ -81.970374224552884, 28.82087107237939 ], [ -81.970296891056918, 28.820752100219671 ], [ -81.970282041279091, 28.820703679904426 ], [ -81.970282041395649, 28.820646146839 ], [ -81.970303959427554, 28.82058861230373 ], [ -81.970338532833949, 28.820532000012722 ], [ -81.97064786527676, 28.8203178497218 ], [ -81.970779332176122, 28.820115583261121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lesiege Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970666127028394, 28.822384258917616 ], [ -81.97116938683547, 28.821833168709581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lesiege Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97116938683547, 28.821833168709581 ], [ -81.971540585293653, 28.821444376848255 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jay Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970779332176122, 28.820115583261121 ], [ -81.970938610788721, 28.820154048086341 ], [ -81.971234786828092, 28.820269954866262 ], [ -81.971757417023639, 28.820475096699219 ], [ -81.971969062391096, 28.820557508374321 ], [ -81.972185721037633, 28.820610726527036 ], [ -81.972422228970771, 28.820668636810172 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jay Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972422228970771, 28.820668636810172 ], [ -81.972959569981214, 28.820800933544607 ], [ -81.97312753353367, 28.820907490326931 ], [ -81.973242205792474, 28.821024752117836 ], [ -81.973510415176037, 28.821349971501149 ], [ -81.973656705809148, 28.821541411717124 ], [ -81.973699061490606, 28.821674342844378 ], [ -81.973781867074891, 28.82177999060869 ], [ -81.973872286939837, 28.821827579797187 ], [ -81.974074541167226, 28.821889445254012 ], [ -81.974231588052007, 28.821944172589795 ], [ -81.974291073542872, 28.822008418503913 ], [ -81.974343420898506, 28.822191636136363 ], [ -81.974438600248249, 28.822427203071037 ], [ -81.974528989035093, 28.822674983583667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hiles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972422228970771, 28.820668636810172 ], [ -81.972455310579065, 28.820573210821326 ], [ -81.972506627176855, 28.820502755465515 ], [ -81.9726051310667, 28.820412259500905 ], [ -81.972716687029703, 28.820340836430479 ], [ -81.972852350008083, 28.820301450136419 ], [ -81.972928310115321, 28.820267531409247 ], [ -81.973022145003625, 28.82018260325075 ], [ -81.973261031241137, 28.819952309410308 ], [ -81.973318604208643, 28.819897280871619 ], [ -81.973358366231395, 28.819836843939722 ], [ -81.973373316238565, 28.819779589035544 ], [ -81.973372680619363, 28.819705474088408 ], [ -81.973324985634022, 28.819566250856418 ], [ -81.973273755815057, 28.819463410739175 ], [ -81.973199959410152, 28.819386116805653 ], [ -81.973007034749926, 28.819231581969785 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977982813243656, 28.795849365297265 ], [ -81.977979667981487, 28.795799041884006 ], [ -81.977979667841566, 28.795761299033956 ], [ -81.977978095585073, 28.795698394025539 ], [ -81.977978095393453, 28.795646497493109 ], [ -81.977987532304269, 28.79560010571501 ], [ -81.977994608772875, 28.795550568085851 ], [ -81.978008762808372, 28.795475081995111 ], [ -81.978030779777271, 28.795389373982204 ], [ -81.978070096372576, 28.795257273658851 ], [ -81.978199840305095, 28.794722582244724 ], [ -81.978217925932611, 28.794610925733977 ], [ -81.978225003366248, 28.794439509939824 ], [ -81.978220286061244, 28.79430976917191 ], [ -81.978210795640805, 28.794227405386007 ], [ -81.978199875554381, 28.794172805543695 ], [ -81.978185688771745, 28.794113977831902 ], [ -81.978175305717443, 28.7940581464164 ], [ -81.97815073577091, 28.793992627261371 ], [ -81.978117975756462, 28.793910727074405 ], [ -81.978014236129695, 28.793695059063328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981801850082022, 28.80439992355382 ], [ -81.981732928935145, 28.8043063868475 ], [ -81.981597548177561, 28.804242389004752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977883334097839, 28.79373705107443 ], [ -81.978051461494061, 28.794155158283175 ], [ -81.978085327903912, 28.794347523453748 ], [ -81.978081804103255, 28.794574672999605 ], [ -81.978072874639665, 28.794624618183466 ], [ -81.978061584161466, 28.794674192129889 ], [ -81.977848917396898, 28.795543161401771 ], [ -81.977838770055541, 28.795687307839852 ], [ -81.977841478589539, 28.795820067402069 ], [ -81.977871282306879, 28.796013787182439 ], [ -81.977889707943675, 28.79609158493404 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981597548177561, 28.804242389004752 ], [ -81.981513855875875, 28.804230080783384 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981557466089882, 28.805112600986188 ], [ -81.981622160354974, 28.804744528922328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981555698192608, 28.805345127381976 ], [ -81.981678773901692, 28.805034981814583 ], [ -81.98170868825548, 28.804966547356408 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963332469450521, 28.785285612403825 ], [ -81.963284032014201, 28.785242350374222 ], [ -81.963192172363762, 28.785163296991499 ], [ -81.963098661241119, 28.78508575988316 ], [ -81.963003531411857, 28.785009766124251 ], [ -81.962906816665779, 28.784935341887856 ], [ -81.962808549768795, 28.784862511542126 ], [ -81.962694364861036, 28.784779662829269 ], [ -81.962593097098846, 28.784710097871745 ], [ -81.962490379578014, 28.78464220081306 ], [ -81.96238624915965, 28.784575996925032 ], [ -81.962280740657519, 28.784511507869748 ], [ -81.962173890933471, 28.784448755309896 ], [ -81.962065737872933, 28.78438776181094 ], [ -81.961956316289047, 28.784328548132809 ], [ -81.961845668164557, 28.784271134135285 ], [ -81.961733827287716, 28.784215540578259 ], [ -81.961620834616824, 28.784161786419059 ], [ -81.961506728037492, 28.784109889711971 ], [ -81.961391547483558, 28.784059868511953 ], [ -81.961275331864982, 28.784011739069147 ], [ -81.961170756987642, 28.78397655477989 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976336111728585, 28.790710234020995 ], [ -81.976338177247186, 28.790757065365813 ], [ -81.97634667413196, 28.790800202868525 ], [ -81.976355405176321, 28.79082723050389 ], [ -81.976414418608272, 28.790909165542825 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976647709483572, 28.791002227619458 ], [ -81.976710647867478, 28.790995423372188 ], [ -81.976767104810833, 28.790982675337105 ], [ -81.976854340900985, 28.790932928704027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991682262578223, 28.799800372612083 ], [ -81.991430156535699, 28.799854565734876 ], [ -81.991068885185044, 28.799939159035858 ], [ -81.990686390929127, 28.800047614246687 ], [ -81.990381059289035, 28.800139544503264 ], [ -81.989963027166439, 28.800283624702054 ], [ -81.989661480739699, 28.80040173871928 ], [ -81.989257001239139, 28.800575401892559 ], [ -81.988685247817926, 28.800829481898489 ], [ -81.98845375831381, 28.800932811130657 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994729656841457, 28.799583383759622 ], [ -81.994706515070845, 28.799583503741978 ], [ -81.994657055013874, 28.799582168128378 ], [ -81.99458754374848, 28.799580830772772 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994731920062378, 28.799709423378218 ], [ -81.994729656841457, 28.799583383759622 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99458754374848, 28.799580830772772 ], [ -81.994588878656984, 28.799707822295385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991605723948751, 28.799945794410654 ], [ -81.991909689979721, 28.799885657888645 ], [ -81.992200535461222, 28.799837549542211 ], [ -81.992575225582783, 28.799785688959037 ], [ -81.992757555547868, 28.799768132817299 ], [ -81.993004741519755, 28.79974446309064 ], [ -81.99336988087299, 28.799719272155475 ], [ -81.993761906203503, 28.799706303326666 ], [ -81.994378960386413, 28.799708941408383 ], [ -81.994588878656984, 28.799707822295385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994588878656984, 28.799707822295385 ], [ -81.994706514402765, 28.799709158884905 ], [ -81.994718838716608, 28.799709423756926 ], [ -81.994731920062378, 28.799709423378218 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 100", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953606310045089, 28.903904459633306 ], [ -81.953606605187019, 28.903941520736893 ], [ -81.953607751663014, 28.904085751714579 ], [ -81.953621996937429, 28.904729149437941 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 90th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953521974371014, 28.89140875003752 ], [ -81.953524539833552, 28.89161656053891 ], [ -81.953534800269608, 28.892245123368799 ], [ -81.953537365188836, 28.892699227415481 ], [ -81.953537365138232, 28.892742841882374 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 90th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953483107173938, 28.887223197444328 ], [ -81.953507006196972, 28.887246652000343 ], [ -81.953514288017885, 28.887503964470113 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 25th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055158733432009, 28.840837961895186 ], [ -82.055100575340091, 28.840997187337596 ], [ -82.054957629999194, 28.841475702596501 ], [ -82.054913625274153, 28.841579171472432 ], [ -82.05452087690864, 28.841808858206821 ], [ -82.05443644221991, 28.841837988521654 ], [ -82.054392405164506, 28.841880033660495 ], [ -82.054363103267889, 28.84201905547587 ], [ -82.054271572862419, 28.842526647047617 ], [ -82.054169329726733, 28.843625849474993 ], [ -82.053923775131594, 28.844508507100326 ], [ -82.053931296789557, 28.844854416519176 ], [ -82.053949882472338, 28.845300538822709 ], [ -82.053932145173547, 28.846516088396548 ], [ -82.053867323869426, 28.847171378005491 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00250932105682, 28.609926238195019 ], [ -82.00237723492549, 28.609944643893286 ], [ -82.00224862753177, 28.609969184443084 ], [ -82.002088735103285, 28.610015196363001 ], [ -82.002019218699445, 28.610039735239827 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 102", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040660140446022, 28.960097001970684 ], [ -82.040454088437784, 28.96010936879243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999214377366542, 28.799756655958543 ], [ -81.999379480010376, 28.799756108371039 ], [ -82.000113224532441, 28.799762224186132 ], [ -82.000693454457618, 28.799764517746777 ], [ -82.001316180668155, 28.799762224006926 ], [ -82.001842637983685, 28.799765277084362 ], [ -82.002716883699051, 28.799764503217641 ], [ -82.00369781028563, 28.79976907034813 ], [ -82.004425047763888, 28.799772490570067 ], [ -82.004881468349524, 28.799771408290411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004290582687901, 28.799629977467916 ], [ -82.00368087809899, 28.799629876374812 ], [ -82.002472301264646, 28.799607514022362 ], [ -82.001815324843761, 28.799600904823972 ], [ -82.000509590825189, 28.799596419360959 ], [ -81.999049050465388, 28.799591821180989 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963901453683221, 28.834071975200491 ], [ -81.963697596554752, 28.833990177520569 ], [ -81.963455572240775, 28.833890797617265 ], [ -81.963171909665448, 28.833778418959561 ], [ -81.963068677935325, 28.833744012705861 ], [ -81.962991469615432, 28.833721835300395 ], [ -81.962912525875609, 28.833704243802469 ], [ -81.962819700657775, 28.833685882359813 ], [ -81.962736414026466, 28.8336774561025 ], [ -81.962653995340162, 28.83366902913264 ], [ -81.962452537479493, 28.833647585605007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964344341021985, 28.834251317023018 ], [ -81.963901453683221, 28.834071975200491 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965284135790768, 28.834752599243085 ], [ -81.965269251263877, 28.834744692985858 ], [ -81.965160605903733, 28.834681066604301 ], [ -81.965024637806252, 28.834592218939122 ], [ -81.964904286067295, 28.834514265167417 ], [ -81.964815159307477, 28.834455799388699 ], [ -81.964691551812606, 28.834382427394402 ], [ -81.964612177761254, 28.83435032045201 ], [ -81.964531497121214, 28.834336548011283 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958753426442129, 28.832477604144746 ], [ -81.958997766495713, 28.832375892221275 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960745002253248, 28.833563658701962 ], [ -81.960536779916779, 28.833563598643117 ], [ -81.960312290516399, 28.833568306670106 ], [ -81.960136617147114, 28.833578808990509 ], [ -81.959869210424401, 28.833592265859174 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959869210424401, 28.833592265859174 ], [ -81.959492193196084, 28.833611238411393 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962452537479493, 28.833647585605007 ], [ -81.961906471646756, 28.833610784728396 ], [ -81.961474102338357, 28.833586953368638 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961474102338357, 28.833586953368638 ], [ -81.96123843944801, 28.833575261191587 ], [ -81.960957560808808, 28.833564675242869 ], [ -81.960745002253248, 28.833563658701962 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958753426442129, 28.832477604144746 ], [ -81.958714995347052, 28.832414948719016 ], [ -81.958671548386434, 28.832354888582593 ], [ -81.958623311900837, 28.83229773329192 ], [ -81.958570536827168, 28.832243778876318 ], [ -81.958513491527512, 28.832193303324154 ], [ -81.958458307167987, 28.832147866810267 ], [ -81.958429446382155, 28.832120148012862 ], [ -81.958405747412343, 28.832088863982463 ], [ -81.958387771494401, 28.832054752983332 ], [ -81.958375940476913, 28.832018619104769 ], [ -81.958370536828227, 28.831981316019107 ], [ -81.958371684177024, 28.831943724418018 ], [ -81.958379357569015, 28.831906729457774 ], [ -81.958393376299625, 28.831871209027028 ], [ -81.958527172945765, 28.831601132716877 ], [ -81.958581059902386, 28.831484331109568 ], [ -81.958628121156721, 28.831365265292341 ], [ -81.958668236718083, 28.831244242922406 ], [ -81.958701305038616, 28.831121579782568 ], [ -81.958727233793951, 28.830997592559701 ], [ -81.958745960374358, 28.830872604265068 ], [ -81.958757437541394, 28.830746937913418 ], [ -81.958768376080897, 28.830571242915372 ], [ -81.958776271678815, 28.830500443015982 ], [ -81.958791066099479, 28.830430504227113 ], [ -81.958812645383929, 28.830361946241151 ], [ -81.958840852540831, 28.830295281517913 ], [ -81.958875476279957, 28.830231003551226 ], [ -81.958916259207854, 28.830169592285653 ], [ -81.958962897832961, 28.830111502386348 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959186318776602, 28.833595619899423 ], [ -81.959147958309416, 28.833575761989596 ], [ -81.959113685402627, 28.833550765766603 ], [ -81.959084382079496, 28.833521278456644 ], [ -81.959060800181888, 28.833488049207265 ], [ -81.959043539850839, 28.83345193088514 ], [ -81.959033045439455, 28.83341385120044 ], [ -81.958979821409486, 28.833119520202196 ], [ -81.958959421227888, 28.833021748919759 ], [ -81.958933768064512, 28.832924943302675 ], [ -81.958902914107412, 28.832829319917828 ], [ -81.958866933062311, 28.832735096240494 ], [ -81.958802469517479, 28.832578700226382 ], [ -81.958779542641423, 28.832527551288596 ], [ -81.958753426442129, 28.832477604144746 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959492193196084, 28.833611238411393 ], [ -81.959323422919582, 28.833619731410607 ], [ -81.959276387046259, 28.833618585678465 ], [ -81.959230245408392, 28.833610470775646 ], [ -81.959186318776602, 28.833595619899423 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958962897832961, 28.830111502386348 ], [ -81.95901369665421, 28.830058457641687 ], [ -81.959069378502136, 28.830009360157938 ], [ -81.959129548741032, 28.829964552686327 ], [ -81.959193777906222, 28.82992435901928 ], [ -81.959264476084385, 28.829880820619781 ], [ -81.959331590507489, 28.82983308987702 ], [ -81.959394804459151, 28.829781394082296 ], [ -81.959453815563108, 28.829725979480013 ], [ -81.959508342955871, 28.82966711126965 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959508342955871, 28.82966711126965 ], [ -81.959558892094321, 28.829604041594969 ], [ -81.959604294373705, 28.829538004467096 ], [ -81.959644326294665, 28.829469326459652 ], [ -81.959702223389314, 28.829360782592694 ], [ -81.959737589499539, 28.829287741398606 ], [ -81.959766878021824, 28.829212642917579 ], [ -81.959789940238011, 28.82913588141777 ], [ -81.959806655096656, 28.829057852979627 ], [ -81.95981693330657, 28.828978968129057 ], [ -81.959820723491333, 28.828899633793277 ], [ -81.959823825207053, 28.82844111945661 ], [ -81.959827882786229, 28.828375078003042 ], [ -81.959839128099318, 28.828309684748486 ], [ -81.959857459457609, 28.828245546012141 ], [ -81.9598827003785, 28.828183254555171 ], [ -81.959914623154859, 28.828123385978717 ], [ -81.959952930412527, 28.828066496011612 ], [ -81.959997267410188, 28.828013111491114 ], [ -81.960047224091383, 28.827963724047706 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960047224091383, 28.827963724047706 ], [ -81.960103483023829, 28.827917945885076 ], [ -81.960164568138751, 28.827877242809564 ], [ -81.960229886014062, 28.827842006241116 ], [ -81.960298810461481, 28.827812576159115 ], [ -81.960370678430465, 28.827789233883049 ], [ -81.96044479820371, 28.827772204781848 ], [ -81.960520455545591, 28.827761656471655 ], [ -81.960596922929042, 28.827757683479078 ], [ -81.960673464649645, 28.827760329800707 ], [ -81.961029563722448, 28.827788093750907 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961029563722448, 28.827788093750907 ], [ -81.961615624840718, 28.82783378200401 ], [ -81.961680036439972, 28.827837330208958 ], [ -81.961744571058972, 28.827837943208305 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961744571058972, 28.827837943208305 ], [ -81.961744706314121, 28.82783794144218 ], [ -81.962503119920825, 28.827827826381323 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962503119920825, 28.827827826381323 ], [ -81.962548205995262, 28.827827224476909 ], [ -81.962632696103043, 28.827824079982435 ], [ -81.962716871031716, 28.827816913758237 ], [ -81.96297723171709, 28.827788459227065 ], [ -81.963040558771809, 28.827784717634987 ], [ -81.963103963502263, 28.827787285878628 ], [ -81.963166631330793, 28.827796131251517 ], [ -81.963227771274418, 28.827811141652081 ], [ -81.963286598525286, 28.827832124676263 ], [ -81.963342365187899, 28.827858813039764 ], [ -81.963782860753525, 28.828098932992301 ], [ -81.963857263700859, 28.828141671915404 ], [ -81.963929283314485, 28.828187468081456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963929283314485, 28.828187468081456 ], [ -81.964020877466865, 28.828252768337634 ], [ -81.964107627481084, 28.828323008279231 ], [ -81.964189195317488, 28.828397909914358 ], [ -81.964265254209778, 28.82847717991514 ], [ -81.964442769687452, 28.828674452685497 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964442769687452, 28.828674452685497 ], [ -81.964602762499624, 28.82885225059113 ], [ -81.964656813208379, 28.828907523990885 ], [ -81.964715801174748, 28.828958731960618 ], [ -81.964779335091563, 28.829005535123411 ], [ -81.964846991876158, 28.829047618456631 ], [ -81.964918318714666, 28.82908470572956 ], [ -81.964992844337715, 28.829116547776575 ], [ -81.965070067745728, 28.829142932419785 ], [ -81.965114148606631, 28.829156197878103 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965114148606631, 28.829156197878103 ], [ -81.965364540950674, 28.829250406797364 ], [ -81.965466466025447, 28.829286720263035 ], [ -81.965557546138456, 28.829325896604068 ], [ -81.965636696234611, 28.829370800394145 ], [ -81.965719095625218, 28.829428117120919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967740946386598, 28.830633583761454 ], [ -81.967740561289347, 28.830632994461677 ], [ -81.967671615282654, 28.830551616751997 ], [ -81.967618276570363, 28.830498891056838 ], [ -81.967523303442405, 28.830418843312643 ], [ -81.967475160956369, 28.830395721746441 ], [ -81.967333329327573, 28.830345266348335 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965719095625218, 28.829428117120919 ], [ -81.965777895331513, 28.829468515822743 ], [ -81.965849198004165, 28.829521734967514 ], [ -81.965950027178295, 28.829595291469417 ], [ -81.966046521466808, 28.829658343028225 ], [ -81.966139764894237, 28.829720436349227 ], [ -81.966228669246661, 28.829781575677249 ], [ -81.966330587073998, 28.829842718207654 ], [ -81.966434677853712, 28.829899085285316 ], [ -81.966532260311183, 28.829954496921488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966532260311183, 28.829954496921488 ], [ -81.966668132967925, 28.830022718136796 ], [ -81.966818510769841, 28.830092079706152 ], [ -81.967103677984781, 28.830232527347359 ], [ -81.967185000974169, 28.830266925180748 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964531497121214, 28.834336548011283 ], [ -81.964563868885733, 28.834393916254523 ], [ -81.964632961757687, 28.834462627144166 ], [ -81.964717963212962, 28.834535223903487 ], [ -81.964809906543493, 28.834597893432687 ], [ -81.964916594801323, 28.834672407733237 ], [ -81.965050612433984, 28.834750365949748 ], [ -81.965193737429487, 28.834839212734014 ], [ -81.965212427227868, 28.834848790156215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964531497121214, 28.834336548011283 ], [ -81.964475546408011, 28.834306739030357 ], [ -81.964344341021985, 28.834251317023018 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967611625786802, 28.83070081250861 ], [ -81.96765072435123, 28.830773922431508 ], [ -81.967846832562387, 28.831094014627386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967185000974169, 28.830266925180748 ], [ -81.967251143391763, 28.830301319265569 ], [ -81.967301019000971, 28.830326159328752 ], [ -81.967333329327573, 28.830345266348335 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spanish Harbor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020597223715882, 28.867990461561188 ], [ -82.020362999756401, 28.867967840068637 ], [ -82.020073895814917, 28.867982115844118 ], [ -82.019716976368926, 28.868021375451502 ], [ -82.019277966090257, 28.868135586261896 ], [ -82.018896061499731, 28.868303336009241 ], [ -82.018649786710469, 28.868456810251885 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spanish Harbor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018649786710469, 28.868456810251885 ], [ -82.018453481187677, 28.868579350115951 ], [ -82.018245277213452, 28.868766730742568 ], [ -82.017983535533475, 28.869055238131903 ], [ -82.01787348472665, 28.869221799318762 ], [ -82.017700973642917, 28.869394308184344 ], [ -82.017492769927571, 28.869507332454674 ], [ -82.017287541837661, 28.869590611618722 ], [ -82.017064466622998, 28.86963225046027 ], [ -82.016829495564693, 28.869629275088954 ], [ -82.016552882386293, 28.869572762469812 ], [ -82.016413090258069, 28.869522197582032 ], [ -82.016246528314213, 28.869447839210661 ], [ -82.015996684745986, 28.869284250563084 ], [ -82.015726021768614, 28.869111739096603 ], [ -82.015446437023726, 28.868977894452826 ], [ -82.015196593255283, 28.868897585978736 ], [ -82.014881315832426, 28.868826201421157 ], [ -82.014634446239526, 28.868796456653918 ], [ -82.014401336027049, 28.868789412880556 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spanish Harbor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014401336027049, 28.868789412880556 ], [ -82.014182586285401, 28.86880157007873 ], [ -82.013856601050037, 28.8688491582746 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spanish Harbor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013856601050037, 28.8688491582746 ], [ -82.013577231188464, 28.868915662518937 ], [ -82.013285747697225, 28.868972172508279 ], [ -82.012783086757821, 28.868998939462852 ], [ -82.012321060831596, 28.869017105694581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penrose Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014447802096058, 28.865463681405078 ], [ -82.014435110358249, 28.866220734282567 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017861548557931, 28.865312803001451 ], [ -82.017827706523946, 28.865312662945286 ], [ -82.016086795367954, 28.865310894575657 ], [ -82.014446471194987, 28.865307785141976 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014446471194987, 28.865307785141976 ], [ -82.014316365569385, 28.865307537613361 ], [ -82.013651926227396, 28.865308887234374 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penrose Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014436651889582, 28.866731896225222 ], [ -82.014438197147157, 28.866819921174859 ], [ -82.014426868614905, 28.867165033509252 ], [ -82.014398314536962, 28.867336354043836 ], [ -82.014317411510831, 28.867545745349602 ], [ -82.014141330845078, 28.867817001746417 ], [ -82.01393193630841, 28.868112052216489 ], [ -82.013851035254433, 28.868292890739205 ], [ -82.013822480363871, 28.868435657742136 ], [ -82.013827238185357, 28.868711674514401 ], [ -82.013856601050037, 28.8688491582746 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penrose Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013856601050037, 28.8688491582746 ], [ -82.013865307742364, 28.869079298846845 ], [ -82.013853409798969, 28.869269655278888 ], [ -82.013811769271797, 28.869400525771976 ], [ -82.013710641610984, 28.869525445921408 ], [ -82.013609514124951, 28.869596828746801 ], [ -82.013502438631278, 28.869656315197769 ], [ -82.013407259544152, 28.869680108039052 ], [ -82.013240697024202, 28.869727697616813 ], [ -82.013091980800496, 28.869793131091988 ], [ -82.012987878664532, 28.869879385481525 ], [ -82.012901623283867, 28.870013230139559 ], [ -82.012857008020219, 28.8701738423057 ], [ -82.012848083243171, 28.870539684536897 ], [ -82.012848080567892, 28.871137520629571 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sundance Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020540584145564, 28.866522250266282 ], [ -82.019979402816219, 28.866523475060117 ], [ -82.019743676917926, 28.86650308770076 ], [ -82.019519417422813, 28.866478877071099 ], [ -82.019288788621864, 28.866461037209824 ], [ -82.018570148616249, 28.866455973406243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sundance Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017849654925371, 28.866454060460885 ], [ -82.017849336140998, 28.866454059599221 ], [ -82.014748602675596, 28.866452380027287 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sundance Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018577436441319, 28.865469772853398 ], [ -82.018570148616249, 28.866455973406243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017872147848053, 28.865469865619495 ], [ -82.018577349314612, 28.865469772864973 ], [ -82.018577436441319, 28.865469772853398 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sundance Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018570148616249, 28.866455973406243 ], [ -82.017849654925371, 28.866454060460885 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dragonfly Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017849654925371, 28.866454060460885 ], [ -82.017850525304752, 28.86689737460793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dragonfly Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017850525304752, 28.86689737460793 ], [ -82.015405044097037, 28.866939309134558 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dragonfly Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015405044097037, 28.866939309134558 ], [ -82.015372586369011, 28.866967875994543 ], [ -82.015297394630309, 28.867059246901718 ], [ -82.015183179957575, 28.867182025739403 ], [ -82.014999722407936, 28.867361673209633 ], [ -82.014885507662257, 28.86752585487849 ], [ -82.014439355681503, 28.868250396565475 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dragonfly Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014439355681503, 28.868250396565475 ], [ -82.014400733725452, 28.868440235167498 ], [ -82.014398578881043, 28.868599703932009 ], [ -82.014401336027049, 28.868789412880556 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Loblolly Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015536919670367, 28.868595755531157 ], [ -82.015500315726996, 28.868557407172332 ], [ -82.015459178758249, 28.868517103107902 ], [ -82.015407932544207, 28.868489426966981 ], [ -82.015285046223056, 28.868444106842073 ], [ -82.015098536013312, 28.868397042966553 ], [ -82.014934350851973, 28.868367290765249 ], [ -82.014674967262707, 28.868328188704481 ], [ -82.014510245827807, 28.868280253730656 ], [ -82.014439355681503, 28.868250396565475 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinecone Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015405044097037, 28.866939309134558 ], [ -82.014562152860762, 28.866937149237369 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.073273202856328, 28.729735855866487 ], [ -82.073415491667205, 28.729636768437658 ], [ -82.073608861368669, 28.729515652916845 ], [ -82.07379610305631, 28.729402180405636 ], [ -82.074013970966092, 28.729271074087155 ], [ -82.074231850661576, 28.729157431003745 ], [ -82.074469536127708, 28.729032134095768 ], [ -82.074654412437084, 28.728950527278542 ], [ -82.074968041933573, 28.72881063354555 ], [ -82.075225549510137, 28.728696967142188 ], [ -82.07552257311319, 28.728556738363004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.081004142765522, 28.867933915928784 ], [ -82.081003910901373, 28.867933650790224 ], [ -82.080555474629051, 28.867422317524433 ], [ -82.079687073656586, 28.866420655121349 ], [ -82.079071981649292, 28.865731011158012 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07890601593553, 28.865856314636098 ], [ -82.079335158530597, 28.866353846955434 ], [ -82.079937050173484, 28.86703238284516 ], [ -82.080803908632788, 28.868025875001361 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spring Flow Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.080803908632788, 28.868025875001361 ], [ -82.081004142765522, 28.867933915928784 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 89th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956593695710566, 28.91379466885445 ], [ -81.955002425772079, 28.914847574483058 ], [ -81.955109500889591, 28.915011162485666 ], [ -81.955392062240463, 28.915382951593894 ], [ -81.955487239698343, 28.915519770498296 ], [ -81.955514009549162, 28.91558223004499 ], [ -81.955490213674068, 28.915689305831741 ], [ -81.955460470036911, 28.915817201037981 ], [ -81.955429667015252, 28.915997435409718 ], [ -81.9553734122821, 28.916137775279903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 89th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957047104256944, 28.913385046504494 ], [ -81.95705126721279, 28.913445722805026 ], [ -81.957047103489714, 28.913463568908238 ], [ -81.957019739230674, 28.913495691845284 ], [ -81.956975718882887, 28.913527813947329 ], [ -81.956593695710566, 28.91379466885445 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 108th Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957552471774235, 28.913375830692864 ], [ -81.957564002386434, 28.913563625824171 ], [ -81.958033946546792, 28.913578497351374 ], [ -81.958019076332818, 28.913367320892252 ], [ -81.957552471774235, 28.913375830692864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 108th Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957552471774235, 28.913375830692864 ], [ -81.957047104256944, 28.913385046504494 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9553734122821, 28.916137775279903 ], [ -81.955144151324362, 28.91609257496663 ], [ -81.954914889151695, 28.916055337933393 ], [ -81.954685622500349, 28.916028717833807 ], [ -81.954447300360499, 28.916007401579176 ], [ -81.95421501099851, 28.915994050632357 ], [ -81.953994783073469, 28.915993975303351 ], [ -81.953769640028327, 28.916025669592646 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953769640028327, 28.916025669592646 ], [ -81.953973937324278, 28.916084138273707 ], [ -81.954375397949448, 28.91610581411042 ], [ -81.954576126517964, 28.916123114279603 ], [ -81.954700968519006, 28.916133925398476 ], [ -81.954938412353769, 28.916164158307517 ], [ -81.955192981210431, 28.91621162948298 ], [ -81.95534839473126, 28.916240113568453 ], [ -81.955348759787739, 28.916240180459916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 89th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9553734122821, 28.916137775279903 ], [ -81.955348759787739, 28.916240180459916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 107th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956593695710566, 28.91379466885445 ], [ -81.956509985875442, 28.913705716761861 ], [ -81.956477863821576, 28.913570087488715 ], [ -81.956482591747545, 28.913146761905473 ], [ -81.955287033500696, 28.913139063801307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 107th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955287033500696, 28.913139063801307 ], [ -81.954845753463928, 28.913149325826058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 107th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954845753463928, 28.913149325826058 ], [ -81.954460918683736, 28.913151890932831 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 87th Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955287033500696, 28.913139063801307 ], [ -81.95531434369974, 28.913378403594425 ], [ -81.955289597715691, 28.913446931129446 ], [ -81.955236297258281, 28.913490713564087 ], [ -81.955162058656157, 28.913519267230583 ], [ -81.95512208325836, 28.913523074191573 ], [ -81.955053554231313, 28.91351926701919 ], [ -81.955009772624635, 28.913517362936016 ], [ -81.954884237650759, 28.913477718064623 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 108th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954884237650759, 28.913477718064623 ], [ -81.95454558079075, 28.913688093428327 ], [ -81.954202946036233, 28.913695755625984 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 87th Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954884237650759, 28.913477718064623 ], [ -81.954848319481357, 28.913285300154893 ], [ -81.954845754233887, 28.91321346471338 ], [ -81.954845753463928, 28.913149325826058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033070469837142, 28.927392811638168 ], [ -82.033045722187495, 28.927414860680319 ], [ -82.032995276908622, 28.927431993895922 ], [ -82.032952446604327, 28.927448173338504 ], [ -82.03292865221853, 28.927458642076481 ], [ -82.032908664960743, 28.927469112601894 ], [ -82.032888201010266, 28.927490201445533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 515", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037356138658993, 28.800675276530004 ], [ -82.03735627494153, 28.801062195009639 ], [ -82.037356406155808, 28.801437625235639 ], [ -82.037346840702057, 28.801473482986431 ], [ -82.037325300919079, 28.801503016967199 ], [ -82.037298966887747, 28.801517789518982 ], [ -82.037267841297052, 28.801528342345943 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 527 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.097577737497232, 28.754196829074967 ], [ -82.097576312028878, 28.754524521708401 ], [ -82.09757885917324, 28.754618227267116 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Brook Greenway Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09757885917324, 28.754618227267116 ], [ -82.097875425041167, 28.754673555068077 ], [ -82.098257245932274, 28.754733989292767 ], [ -82.098562153054885, 28.754755967174113 ], [ -82.098737956529959, 28.754764208092727 ], [ -82.099060379144362, 28.754764178202436 ], [ -82.099140434357253, 28.75475073867517 ], [ -82.099173742706796, 28.754737298815314 ], [ -82.099222829500448, 28.754709250694049 ], [ -82.099344958642249, 28.754615754878145 ], [ -82.099404563128147, 28.754586538649406 ], [ -82.099440793384602, 28.754576019197053 ], [ -82.099477607038736, 28.754569592217202 ], [ -82.099513253240076, 28.7545684238776 ], [ -82.099891329466956, 28.75455673947307 ], [ -82.099952686960563, 28.75456667413459 ], [ -82.099981904168473, 28.754584203674561 ], [ -82.099988332085985, 28.754615174584803 ], [ -82.099970801053601, 28.754662506719807 ], [ -82.099446656818571, 28.755327326926778 ], [ -82.099388971466993, 28.755434455893518 ], [ -82.099301069339006, 28.755709144435734 ], [ -82.099229647732855, 28.755860223431171 ], [ -82.099147240041702, 28.755953618071771 ], [ -82.099020881924233, 28.75608272126723 ], [ -82.098787391937421, 28.756316206148199 ], [ -82.098545661764163, 28.756607376241686 ], [ -82.098471494737652, 28.756728239136599 ], [ -82.098383592700202, 28.756923267856831 ], [ -82.098298437139832, 28.757066106370267 ], [ -82.098169331317635, 28.757244653153059 ], [ -82.097971551929987, 28.757417707135556 ], [ -82.097889144521474, 28.757497365938132 ], [ -82.097820471406635, 28.757582519870173 ], [ -82.097749051004968, 28.757645698021108 ], [ -82.097600717166969, 28.757730851166226 ], [ -82.097493585227113, 28.75778578771374 ], [ -82.097372720795732, 28.757835231657825 ], [ -82.097315035572421, 28.757887422192976 ], [ -82.097273831552059, 28.757942359329505 ], [ -82.097202411723543, 28.758041247252589 ], [ -82.097078800016902, 28.758263745390565 ], [ -82.097001885062113, 28.758409330168259 ], [ -82.096952439625014, 28.758510965214874 ], [ -82.096875525878502, 28.758618094107835 ], [ -82.096699721607848, 28.758846085253424 ], [ -82.096507436469636, 28.759054848646368 ], [ -82.09634262063193, 28.759225154601566 ], [ -82.096213514854668, 28.759359752178888 ], [ -82.09619428675235, 28.759422930566743 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Steele Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023588815575152, 28.816172830149164 ], [ -82.023599595950671, 28.816150534952538 ], [ -82.023608105781207, 28.816127490319683 ], [ -82.023614281586305, 28.816103874919175 ], [ -82.023618070132528, 28.816079873733884 ], [ -82.023619446873511, 28.816055671741704 ], [ -82.023620785191881, 28.815857963658917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Steele Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023361846926619, 28.817816207445798 ], [ -82.023354414799911, 28.817745944022736 ], [ -82.023342227153108, 28.817696430910338 ], [ -82.023306867215055, 28.817614052327897 ], [ -82.023244807107247, 28.817529712954972 ], [ -82.023079312384894, 28.817306931250918 ], [ -82.023031573074846, 28.817209862325925 ], [ -82.022993382634311, 28.817117567736091 ], [ -82.022980652600125, 28.817065054494922 ], [ -82.022974288748259, 28.816987080628572 ], [ -82.022994955076427, 28.816902509132543 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Steele Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023285332653927, 28.818611456478479 ], [ -82.023275037026266, 28.818452663422093 ], [ -82.023261186726316, 28.818394907083583 ], [ -82.02325435076024, 28.81833331656253 ], [ -82.023259648310074, 28.818274889320769 ], [ -82.023270419163978, 28.818226419957931 ], [ -82.02334028271359, 28.818043701393023 ], [ -82.023364152419674, 28.81795299812309 ], [ -82.023367336419795, 28.817881390286807 ], [ -82.023361846926619, 28.817816207445798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rostas Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023361846926619, 28.817816207445798 ], [ -82.023771794733477, 28.81770259150893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rostas Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02565560364701, 28.815868639885533 ], [ -82.025667474073771, 28.81581831406233 ], [ -82.025678170166998, 28.81576288137979 ], [ -82.025686561999592, 28.815707140531472 ], [ -82.02569263832406, 28.815651169118496 ], [ -82.025696388915691, 28.815595037523217 ], [ -82.025697811747875, 28.815538823344884 ], [ -82.025696903768846, 28.815482601475846 ], [ -82.025693666024921, 28.815426446807599 ], [ -82.025690861220795, 28.815398204118377 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rostas Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025690861220795, 28.815398204118377 ], [ -82.025637679408817, 28.815323746279251 ], [ -82.025564481050381, 28.815230520438387 ], [ -82.025539606887818, 28.815185030531577 ], [ -82.02553253860664, 28.815150572606179 ], [ -82.025543629799245, 28.814999587020051 ], [ -82.025551892349142, 28.814930184319874 ], [ -82.025565111607278, 28.814801295009527 ], [ -82.025577602312552, 28.814757396227645 ], [ -82.02560852504142, 28.81472558952078 ], [ -82.025658886708598, 28.81470085062784 ], [ -82.025726917092697, 28.814692318451726 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005028861662183, 28.799765231030342 ], [ -82.005037578772374, 28.799641530031277 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004881468349524, 28.799771408290411 ], [ -82.004880153418327, 28.799900102450749 ], [ -82.004882130369822, 28.800305700852991 ], [ -82.004879993717353, 28.800574699189252 ], [ -82.004894540973666, 28.801267694463995 ], [ -82.004902461442597, 28.801384069948142 ], [ -82.004942674942356, 28.801524209540883 ], [ -82.004994465313345, 28.801642413548539 ], [ -82.005057130728062, 28.801782108463119 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005057130728062, 28.801782108463119 ], [ -82.005141204687561, 28.801728678070418 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005057130728062, 28.801782108463119 ], [ -82.005115797160826, 28.801878487074607 ], [ -82.005166918314387, 28.801937152863822 ], [ -82.005269193259068, 28.802047698091467 ], [ -82.005347105294561, 28.802119017847509 ], [ -82.005442877936858, 28.802191730113396 ], [ -82.005535673081695, 28.802249758187301 ], [ -82.005616563035204, 28.802293400158248 ], [ -82.005761116813758, 28.802361224423379 ], [ -82.005943600208184, 28.802445905889822 ], [ -82.006574052942327, 28.802688078963602 ], [ -82.006638584495519, 28.802707354080777 ], [ -82.006735801187276, 28.802733335519385 ], [ -82.006867380677164, 28.802760154495534 ], [ -82.007025288586988, 28.802771840356851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007025288586988, 28.802771840356851 ], [ -82.00713378810687, 28.802779565409544 ], [ -82.007238649079298, 28.802773566382715 ], [ -82.007350114701978, 28.802756805077959 ], [ -82.00747331037266, 28.802734178072747 ], [ -82.007544549358528, 28.802714902044507 ], [ -82.007612433445985, 28.802696465298435 ], [ -82.007672775426713, 28.802672161167656 ], [ -82.007815517248474, 28.802600892818738 ], [ -82.007985949737218, 28.802532170974803 ], [ -82.008096006697031, 28.802491139641699 ], [ -82.008205862346614, 28.802457952028668 ], [ -82.008453938629401, 28.802398021044755 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008446313127564, 28.802306518009154 ], [ -82.008298892543621, 28.802321768143514 ], [ -82.008036245407098, 28.802398018842133 ], [ -82.007903227276856, 28.802449699523365 ], [ -82.007640580815192, 28.802574242998293 ], [ -82.007490618092007, 28.802633548667977 ], [ -82.007367766298103, 28.802664896518376 ], [ -82.007105966791954, 28.802692007254965 ], [ -82.007029391103643, 28.802687065243109 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007025288586988, 28.802771840356851 ], [ -82.007029391103643, 28.802687065243109 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008453938629401, 28.802398021044755 ], [ -82.008446313127564, 28.802306518009154 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009229331704702, 28.802249282800286 ], [ -82.009175889424895, 28.802233843960849 ], [ -82.009055487965213, 28.802252982205488 ], [ -82.008859675632777, 28.802265863727072 ], [ -82.008587489829239, 28.802289878513967 ], [ -82.008490369967632, 28.802298046402605 ], [ -82.008446313127564, 28.802306518009154 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008453938629401, 28.802398021044755 ], [ -82.008512399007572, 28.802394632238975 ], [ -82.008571104421719, 28.802393907019031 ], [ -82.008886705767651, 28.802383173506986 ], [ -82.009225872516737, 28.802361485523161 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009225872516737, 28.802361485523161 ], [ -82.009229331704702, 28.802249282800286 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981301360465025, 28.805677382869558 ], [ -81.981233573766559, 28.806185711418514 ], [ -81.981117148036148, 28.806797742936407 ], [ -81.981064596166334, 28.807068329724284 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlene Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980343124169565, 28.807047445660178 ], [ -81.981047882268442, 28.807151443785525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlene Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979288455604433, 28.806852686320639 ], [ -81.979914528887704, 28.806943367292995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dray Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979826685420846, 28.807475783745566 ], [ -81.979914528887704, 28.806943367292995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dray Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97383325908315, 28.800465672715912 ], [ -81.973702448320225, 28.800201510573128 ], [ -81.973654915226547, 28.800058910640146 ], [ -81.97365016310404, 28.799954338017525 ], [ -81.973673929425459, 28.799859271431405 ], [ -81.97375473615773, 28.7997689594504 ], [ -81.974486756130247, 28.799440980848797 ], [ -81.974933571019449, 28.799269861998333 ], [ -81.976140754764842, 28.79889789869933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978374996036948, 28.798494348795881 ], [ -81.978425426447387, 28.798549680405404 ], [ -81.978446936194757, 28.79860834230211 ], [ -81.978497776551293, 28.798844945842852 ], [ -81.978574036558086, 28.799063951103481 ], [ -81.978624877929818, 28.799253625306445 ], [ -81.978656163160537, 28.79955671164317 ], [ -81.978646384318651, 28.79992823814667 ], [ -81.97865224959682, 28.800201994351845 ], [ -81.978699178713896, 28.800534412787083 ], [ -81.978753929592457, 28.800696711364992 ], [ -81.978832146793962, 28.800857053798179 ], [ -81.978906451305761, 28.800986110595495 ], [ -81.97907461696856, 28.801207070794757 ], [ -81.979236915430448, 28.801357637784761 ], [ -81.979430502075175, 28.801500381818521 ], [ -81.979688616290403, 28.801684189660396 ], [ -81.980075788595997, 28.801979456301609 ], [ -81.980243953794059, 28.802165220329172 ], [ -81.980394520466362, 28.802403778560272 ], [ -81.980948222381258, 28.803435025989824 ], [ -81.980987606797953, 28.803508869573676 ], [ -81.981085559219039, 28.803683634184537 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dray Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979914528887704, 28.806943367292995 ], [ -81.980051031215311, 28.80623868414682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dray Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980051031215311, 28.80623868414682 ], [ -81.980185937121149, 28.80554224226708 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dray Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980185937121149, 28.80554224226708 ], [ -81.980376144264923, 28.80456030599883 ], [ -81.980390405079817, 28.804427213479549 ], [ -81.980366637563364, 28.804270353913623 ], [ -81.97985327789597, 28.803467044225901 ], [ -81.979734445760954, 28.803319691411644 ], [ -81.979634085334396, 28.803223376964741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dray Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979634085334396, 28.803223376964741 ], [ -81.979628637503922, 28.803218147239509 ], [ -81.979525299026918, 28.803143817992687 ], [ -81.979178304489352, 28.802934672724835 ], [ -81.979026197848924, 28.802863372698518 ], [ -81.978975978453235, 28.802846632364464 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dray Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978975978453235, 28.802846632364464 ], [ -81.97884081659241, 28.802801579430994 ], [ -81.978498575928583, 28.802763552129203 ], [ -81.978124805575163, 28.802752665785068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dray Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978124805575163, 28.802752665785068 ], [ -81.978008980277707, 28.802749292060625 ], [ -81.977790324942831, 28.802720771869957 ], [ -81.977600191389669, 28.802668484676438 ], [ -81.977400550614576, 28.802578172183825 ], [ -81.977302022924235, 28.80254573007343 ], [ -81.976844409124382, 28.802473598693528 ], [ -81.976597234728004, 28.802392791685627 ], [ -81.976326294175891, 28.802259699170449 ], [ -81.976242989469043, 28.802219712932963 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dray Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976242989469043, 28.802219712932963 ], [ -81.976088626667249, 28.80214561924339 ], [ -81.975798672644657, 28.802055305408533 ], [ -81.9754374181271, 28.801941224561421 ], [ -81.975052397209424, 28.801789118508616 ], [ -81.974714909084469, 28.801617998667925 ], [ -81.974353655114882, 28.801380332430725 ], [ -81.974192041398211, 28.801190200534393 ], [ -81.974151623786014, 28.801108580425492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dray Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974151623786014, 28.801108580425492 ], [ -81.97383325908315, 28.800465672715912 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dray Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977344708088495, 28.798517678703362 ], [ -81.977508903198583, 28.79851782541547 ], [ -81.97787375077688, 28.798422347378374 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dray Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976140754764842, 28.79889789869933 ], [ -81.976922016986961, 28.798657173723097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981221204222692, 28.807057324604365 ], [ -81.981388923717049, 28.806139535623306 ], [ -81.98144497977502, 28.805852740029582 ], [ -81.98148318227949, 28.805641893119766 ], [ -81.981521375989061, 28.805467716139376 ], [ -81.981555698192608, 28.805345127381976 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlene Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981188388533539, 28.807216409248845 ], [ -81.981679980188005, 28.807296144221855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buck Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980185271121982, 28.807538447693922 ], [ -81.979826685420846, 28.807475783745566 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buck Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979826685420846, 28.807475783745566 ], [ -81.979482405512442, 28.807434398439575 ], [ -81.979420825659062, 28.807402546435224 ], [ -81.979365615639111, 28.807351583523921 ], [ -81.979327393267738, 28.807290003905191 ], [ -81.979310405825956, 28.807202942666937 ], [ -81.979288455604433, 28.806852686320639 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buck Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979288455604433, 28.806852686320639 ], [ -81.979206768666842, 28.806635982667448 ], [ -81.979145727412572, 28.806405687942863 ], [ -81.979109657331961, 28.806114352084169 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Teri Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979109657331961, 28.806114352084169 ], [ -81.980051031215311, 28.80623868414682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buck Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979109657331961, 28.806114352084169 ], [ -81.979081912309056, 28.805781395669644 ], [ -81.979084686692019, 28.805714804599194 ], [ -81.979098561069492, 28.805637115019596 ], [ -81.979187350450459, 28.805387397820425 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jean Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979187350450459, 28.805387397820425 ], [ -81.980185937121149, 28.80554224226708 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buck Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979187350450459, 28.805387397820425 ], [ -81.979513449984154, 28.804543059249117 ], [ -81.97952349403073, 28.804452670792543 ], [ -81.979515847000641, 28.804389247930295 ], [ -81.979493490964458, 28.804337656639305 ], [ -81.979453936563814, 28.804272306064693 ], [ -81.979024681256959, 28.803675998252146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brenda Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978699884124651, 28.80391773058766 ], [ -81.979024681256959, 28.803675998252146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brenda Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979024681256959, 28.803675998252146 ], [ -81.979634085334396, 28.803223376964741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marlene Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978975978453235, 28.802846632364464 ], [ -81.979099047264413, 28.802548133373261 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Godinez Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978124805575163, 28.802752665785068 ], [ -81.978143553007214, 28.802613928433704 ], [ -81.978187343781812, 28.802462122451715 ], [ -81.978248652176404, 28.802342428971212 ], [ -81.978382943762284, 28.802190622217406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Godinez Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978382943762284, 28.802190622217406 ], [ -81.978653994544175, 28.801887175618369 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ware Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976242989469043, 28.802219712932963 ], [ -81.976540603847823, 28.801601888962104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ware Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976540603847823, 28.801601888962104 ], [ -81.97661906896964, 28.801248001356278 ], [ -81.976635852018987, 28.801096953596097 ], [ -81.97663585242357, 28.800959334731896 ], [ -81.976622426850682, 28.800804931421375 ], [ -81.976595574401998, 28.800660597376535 ], [ -81.976551938939807, 28.80050954989667 ], [ -81.976424387766045, 28.800237666260575 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ware Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976424387766045, 28.800237666260575 ], [ -81.976303550807202, 28.799962425271652 ], [ -81.976233061959803, 28.799744247202646 ], [ -81.976206209021157, 28.799609982865288 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ware Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976206209021157, 28.799609982865288 ], [ -81.976189426380813, 28.799428726969179 ], [ -81.976169287988981, 28.799220617650207 ], [ -81.976140754764842, 28.79889789869933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Frederick Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975746743880862, 28.801320748051818 ], [ -81.976540603847823, 28.801601888962104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Frederick Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974873855352612, 28.80073948134541 ], [ -81.975003268660345, 28.800930377927116 ], [ -81.975130006656528, 28.801044892248939 ], [ -81.975262024310453, 28.801139471735624 ], [ -81.975409804529249, 28.801208435529677 ], [ -81.975746743880862, 28.801320748051818 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Frederick Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976540603847823, 28.801601888962104 ], [ -81.977200901412402, 28.801813346786382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Frederick Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977200901412402, 28.801813346786382 ], [ -81.977474787659361, 28.801892163070494 ], [ -81.977754585623543, 28.801959155879665 ], [ -81.977957537341766, 28.802016297600929 ], [ -81.978142755365724, 28.802085262735226 ], [ -81.978382943762284, 28.802190622217406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seaman Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975746743880862, 28.801320748051818 ], [ -81.975900924073684, 28.800998877714711 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ruthie Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974151623786014, 28.801108580425492 ], [ -81.974873855352612, 28.80073948134541 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ruthie Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976424387766045, 28.800237666260575 ], [ -81.977087697580757, 28.799986955383645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ruthie Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974873855352612, 28.80073948134541 ], [ -81.975646921377958, 28.800417311457448 ], [ -81.975799285702337, 28.800382562978889 ], [ -81.976139840173403, 28.800329757435801 ], [ -81.976424387766045, 28.800237666260575 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jarboe Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97383325908315, 28.800465672715912 ], [ -81.974560174733568, 28.800114029616925 ], [ -81.974863757071034, 28.799988777229871 ], [ -81.975239517662132, 28.799842296145314 ], [ -81.975507009120989, 28.799757378939663 ], [ -81.975717180590834, 28.799700060710027 ], [ -81.976206209021157, 28.799609982865288 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bednarik Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977200901412402, 28.801813346786382 ], [ -81.977306797487856, 28.801563600201799 ], [ -81.977371913185507, 28.801373080748597 ], [ -81.977422557945872, 28.801197030109506 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bednarik Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977422557945872, 28.801197030109506 ], [ -81.977405676988184, 28.800953455288436 ], [ -81.977388795829427, 28.80082804998468 ], [ -81.977347798028049, 28.800625472151776 ], [ -81.977304389999574, 28.800422894795318 ], [ -81.977270626091141, 28.800302313080866 ], [ -81.977087697580757, 28.799986955383645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bednarik Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977087697580757, 28.799986955383645 ], [ -81.977010169740865, 28.799841690582678 ], [ -81.976971581956818, 28.799728342698618 ], [ -81.976940231553613, 28.799610173184707 ], [ -81.97692334992648, 28.799504060141516 ], [ -81.976918527526408, 28.79942447625325 ], [ -81.97692335167595, 28.799024144476306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bednarik Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97692335167595, 28.799024144476306 ], [ -81.976922016986961, 28.798657173723097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Falk Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97692335167595, 28.799024144476306 ], [ -81.977005430912257, 28.799046151524056 ], [ -81.977640694277511, 28.799015117310777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Donahe Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977422557945872, 28.801197030109506 ], [ -81.978012621162051, 28.801191561694356 ], [ -81.978056708422287, 28.801175453612124 ], [ -81.97808977401003, 28.801145780158627 ], [ -81.978116903931152, 28.801112715742068 ], [ -81.978131317634109, 28.801052519425166 ], [ -81.978137896494772, 28.800993569728139 ], [ -81.978116594051869, 28.800806104558987 ], [ -81.978052685939787, 28.800495083302838 ], [ -81.978005821044775, 28.800226668378254 ], [ -81.977971736396796, 28.800103111858526 ], [ -81.977895045573845, 28.799936951051034 ], [ -81.977707581500454, 28.799647232637657 ], [ -81.9776351520498, 28.79940438032866 ], [ -81.977637902086244, 28.799174677284419 ], [ -81.977640694277511, 28.799015117310777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Alley Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03837683281229, 28.610664646465644 ], [ -82.038399330940749, 28.611517942398439 ], [ -82.038463408914865, 28.611998532040015 ], [ -82.038547512905382, 28.612074624725626 ], [ -82.038931983358793, 28.612074627371918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976967165416028, 28.790715158459236 ], [ -81.977005052931929, 28.790683265456245 ], [ -81.977104808248811, 28.790653531411994 ], [ -81.977220802118978, 28.790621521707063 ], [ -81.977451082397195, 28.790556384646671 ], [ -81.977675858177463, 28.790508677173793 ], [ -81.97793549679983, 28.790469227620434 ], [ -81.978329999860435, 28.790413263600353 ], [ -81.978693309916011, 28.790351795682767 ], [ -81.978906157956885, 28.790308676141137 ], [ -81.979149281747866, 28.790255464981325 ], [ -81.979375892818098, 28.790196748537916 ], [ -81.97985204896608, 28.79004812406405 ], [ -81.980357564285228, 28.789886655064272 ], [ -81.980681423794323, 28.7897939938508 ], [ -81.98093372239137, 28.789733443177976 ], [ -81.981206181834963, 28.789683168604217 ], [ -81.981490113874656, 28.789639334877645 ], [ -81.98157080936717, 28.78964830145355 ], [ -81.981691816682712, 28.789719839027946 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hawkins Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982141903468758, 28.791616938463651 ], [ -81.982079843270895, 28.79141007389352 ], [ -81.981983308184425, 28.7906791535213 ], [ -81.981987832928169, 28.790600642911901 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bissell Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981686795206201, 28.791775532684404 ], [ -81.982141903468758, 28.791616938463651 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Julian Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981686795206201, 28.791775532684404 ], [ -81.981518110619888, 28.791121223014677 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Julian Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981518110619888, 28.791121223014677 ], [ -81.981324785679774, 28.790314909482522 ], [ -81.981272917631628, 28.790225318738393 ], [ -81.981183324836948, 28.790215887850376 ], [ -81.981065442310282, 28.790239464061592 ], [ -81.980612769801098, 28.790366776336388 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pleasant Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980895687178503, 28.791413570241929 ], [ -81.98078723619372, 28.791074070086207 ], [ -81.980669353589917, 28.790574249883441 ], [ -81.980612769801098, 28.790366776336388 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Isabelle Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980895687178503, 28.791413570241929 ], [ -81.981056008378616, 28.791314550525023 ], [ -81.981150314220585, 28.791243820617975 ], [ -81.981258767669402, 28.791206098351523 ], [ -81.981376650554779, 28.791163660913927 ], [ -81.981518110619888, 28.791121223014677 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Julian Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980612769801098, 28.790366776336388 ], [ -81.979877178903038, 28.790593109987746 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Isabelle Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980230824616925, 28.791672910733435 ], [ -81.98054675158167, 28.791573891000642 ], [ -81.980744795704922, 28.79148901547142 ], [ -81.980895687178503, 28.791413570241929 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seymour Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980230824616925, 28.791672910733435 ], [ -81.980065789770435, 28.791144799171789 ], [ -81.979914900771178, 28.790696846522223 ], [ -81.979877178903038, 28.790593109987746 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seymour Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979877178903038, 28.790593109987746 ], [ -81.979797018261763, 28.7903243374897 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Isabelle Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979466941179368, 28.791701201764699 ], [ -81.979716853136992, 28.791724778419393 ], [ -81.979966765479872, 28.79171534888464 ], [ -81.980127087341245, 28.791672910749561 ], [ -81.980230824616925, 28.791672910733435 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Larkin Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979466941179368, 28.791701201764699 ], [ -81.97941978876942, 28.791371130947837 ], [ -81.97930190614143, 28.791055207413507 ], [ -81.979217031794335, 28.790786435667997 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Isabelle Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978797363574728, 28.79170120143613 ], [ -81.979160444135886, 28.791701201448038 ], [ -81.979466941179368, 28.791701201764699 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tupper Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978797363574728, 28.79170120143613 ], [ -81.978693628079768, 28.791389992404739 ], [ -81.978566314464246, 28.791031630021418 ], [ -81.978533307657742, 28.790932609361267 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hosley Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978533307657742, 28.790932609361267 ], [ -81.978820943428758, 28.790871310350248 ], [ -81.979009556307375, 28.790814727011217 ], [ -81.979217031794335, 28.790786435667997 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hosley Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979217031794335, 28.790786435667997 ], [ -81.979490519992567, 28.790710991977949 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tupper Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978533307657742, 28.790932609361267 ], [ -81.978439002624043, 28.79065912192841 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tupper Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978816224555914, 28.792002980463312 ], [ -81.978811509228137, 28.791790791673382 ], [ -81.978797363574728, 28.79170120143613 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98164054676603, 28.789441082912933 ], [ -81.981579776522935, 28.789484918011404 ], [ -81.9815249827532, 28.789506834897566 ], [ -81.981197216096604, 28.78954967272351 ], [ -81.981086632784681, 28.789559634965403 ], [ -81.980966087489548, 28.789579559955449 ], [ -81.980844731085512, 28.789604083815583 ], [ -81.980743811239506, 28.789627936472691 ], [ -81.980644726517539, 28.789653625527613 ], [ -81.980477750805676, 28.789703166338391 ], [ -81.98007682537876, 28.789827021266237 ], [ -81.979571310576361, 28.78999032452279 ], [ -81.979174971696978, 28.790109591906194 ], [ -81.978934599480667, 28.790172895924631 ], [ -81.978687804722213, 28.790226106115977 ], [ -81.978436424799384, 28.790265556639664 ], [ -81.978022654097217, 28.790327942293793 ], [ -81.977810723502088, 28.790356382657016 ], [ -81.977648334004414, 28.790382987515397 ], [ -81.977503377046247, 28.790413263004897 ], [ -81.977398787881853, 28.790436199402329 ], [ -81.977316217028786, 28.790458218177122 ], [ -81.977244657067587, 28.790481153713444 ], [ -81.977161168797707, 28.790505924294536 ], [ -81.977033330485511, 28.790545543842271 ], [ -81.976968504542143, 28.790557300716717 ], [ -81.97691162234436, 28.79054904380369 ], [ -81.976827056392352, 28.790505302216975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Camdyn Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981946190216675, 28.792292574548412 ], [ -81.981714771953563, 28.791908336300946 ], [ -81.981686795206201, 28.791775532684404 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stetson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981500817371554, 28.792641880599156 ], [ -81.981732236658999, 28.79247159343986 ], [ -81.981858862478717, 28.792375534998563 ], [ -81.981946190216675, 28.792292574548412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stetson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981946190216675, 28.792292574548412 ], [ -81.982291133864734, 28.792152852187982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stetson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980618809491631, 28.792943156712855 ], [ -81.981500817371554, 28.792641880599156 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stetson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98026076670358, 28.792999918676443 ], [ -81.980618809491631, 28.792943156712855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leboeuf Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981570671828933, 28.794999701563746 ], [ -81.981470247392181, 28.794554334832501 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leboeuf Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981470247392181, 28.794554334832501 ], [ -81.981378553604401, 28.794213760258781 ], [ -81.981286860285849, 28.794065306143089 ], [ -81.981120939904514, 28.793903751676616 ], [ -81.980950651512586, 28.793746562676457 ], [ -81.980920086759625, 28.793663602356222 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leboeuf Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980920086759625, 28.793663602356222 ], [ -81.980762897842951, 28.793480216309725 ], [ -81.980666836909009, 28.79330119616958 ], [ -81.980631907751174, 28.793082880025729 ], [ -81.980618809491631, 28.792943156712855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fulton Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980920086759625, 28.793663602356222 ], [ -81.981282496383457, 28.793515147085117 ], [ -81.98188069177364, 28.793240068788265 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landon Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982352256357728, 28.794126434328508 ], [ -81.982160136167707, 28.793881919909197 ], [ -81.982055344449705, 28.793672336448054 ], [ -81.981946186441618, 28.793357960348615 ], [ -81.98188069177364, 28.793240068788265 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landon Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98188069177364, 28.793240068788265 ], [ -81.981500817371554, 28.792641880599156 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Saranac Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981470247392181, 28.794554334832501 ], [ -81.981968015424471, 28.794322919654761 ], [ -81.982352256357728, 28.794126434328508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Saranac Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982352256357728, 28.794126434328508 ], [ -81.982753963232142, 28.793908118681195 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brett Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981959509383174, 28.797264101603957 ], [ -81.981887480610098, 28.796909960271748 ], [ -81.981887482416397, 28.796585829634246 ], [ -81.981934979727413, 28.796100858178779 ], [ -81.981988688375253, 28.795988966865433 ], [ -81.982091630181586, 28.795881550367891 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brett Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982091630181586, 28.795881550367891 ], [ -81.982404930492052, 28.795680146863258 ], [ -81.982655570300153, 28.79550559548894 ], [ -81.982955443253559, 28.795317617179712 ], [ -81.983112093473522, 28.795241530511031 ], [ -81.983237414131608, 28.79519677437143 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brett Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983237414131608, 28.79519677437143 ], [ -81.983514908162618, 28.795183346284769 ], [ -81.98416836029196, 28.795196774819171 ], [ -81.984445855276178, 28.795250484132538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Manuel Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982091630181586, 28.795881550367891 ], [ -81.981872321193975, 28.795626437007218 ], [ -81.98173357446359, 28.795451886473359 ], [ -81.98175595349953, 28.795357897373176 ], [ -81.981832040709804, 28.795286286603751 ], [ -81.98221247839615, 28.795022221547562 ], [ -81.982539205683238, 28.794816341304688 ], [ -81.982704806615715, 28.794749206312286 ], [ -81.982848029195878, 28.794722352927558 ], [ -81.982959921401147, 28.794726829137975 ], [ -81.983107620363953, 28.794829768379895 ], [ -81.983183705726915, 28.79501774691769 ], [ -81.983237414131608, 28.79519677437143 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Summerlin Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982141903468758, 28.791616938463651 ], [ -81.982398900814559, 28.791491707860224 ], [ -81.982584225950859, 28.791459004244903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elise Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982584225950859, 28.791459004244903 ], [ -81.982535170782768, 28.7912082719814 ], [ -81.98252972055046, 28.79103930041056 ], [ -81.982507918012104, 28.7908430750254 ], [ -81.982535172003253, 28.790761314521902 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tate Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982535172003253, 28.790761314521902 ], [ -81.982813159748474, 28.790788568738506 ], [ -81.983058442695793, 28.790804921011159 ], [ -81.983216514130461, 28.790859428010247 ], [ -81.983489051455535, 28.79090303368589 ], [ -81.983690727843907, 28.790968441834121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sanford Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983690727843907, 28.790968441834121 ], [ -81.983799743638116, 28.790728611960958 ], [ -81.983897857770472, 28.790434274615837 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elise Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982535172003253, 28.790761314521902 ], [ -81.982540624243157, 28.790243499043964 ], [ -81.982529723522205, 28.79017263982691 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elise Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982529723522205, 28.79017263982691 ], [ -81.982513371894697, 28.789889203792384 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mizell Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982529723522205, 28.79017263982691 ], [ -81.982725949562337, 28.790178090864522 ], [ -81.983069346346127, 28.79022714745356 ], [ -81.98339639022079, 28.790298006458617 ], [ -81.983608968343518, 28.79034161257486 ], [ -81.98375613957316, 28.790385218564587 ], [ -81.983897857770472, 28.790434274615837 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sanford Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983897857770472, 28.790434274615837 ], [ -81.984023226649128, 28.79017264119225 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tate Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983690727843907, 28.790968441834121 ], [ -81.98402867248555, 28.79108835761658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ware Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976140754764842, 28.79889789869933 ], [ -81.976033473693576, 28.798591049105973 ], [ -81.976022203725549, 28.798506528374688 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ware Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976022203725549, 28.798506528374688 ], [ -81.975841893535289, 28.798106464776957 ], [ -81.975791181957334, 28.797976867304357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ware Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975791181957334, 28.797976867304357 ], [ -81.975154458967253, 28.796765406082862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maynard Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975788664922447, 28.796495367615091 ], [ -81.975926420525738, 28.796416055612777 ], [ -81.976112367392389, 28.796314630945297 ], [ -81.976253236160915, 28.796241379996648 ], [ -81.976326487494134, 28.796235745351847 ], [ -81.976467356708469, 28.79628082349539 ], [ -81.977081542506227, 28.796680887126733 ], [ -81.977312565747241, 28.79691754437005 ], [ -81.977588668524774, 28.797221819041066 ], [ -81.977729536100583, 28.797520457481298 ], [ -81.977768979149516, 28.797700767760194 ], [ -81.977723900015434, 28.797852905551842 ], [ -81.97756612750932, 28.797943060021364 ], [ -81.976022203725549, 28.798506528374688 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maynard Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975791181957334, 28.797976867304357 ], [ -81.975548886525132, 28.798117733975332 ], [ -81.975081202415197, 28.798252966052015 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maynard Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975081202415197, 28.798252966052015 ], [ -81.974427571059522, 28.798461449776479 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maynard Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974427571059522, 28.798461449776479 ], [ -81.973565452177567, 28.798737549381482 ], [ -81.973289350547631, 28.798827704381367 ], [ -81.973159750314096, 28.798810798996517 ], [ -81.973058325217679, 28.798731913875326 ], [ -81.972979438975997, 28.798607950065357 ], [ -81.97292309288531, 28.798461448274931 ], [ -81.972894918897083, 28.798343119636076 ], [ -81.972889284803159, 28.798241694951578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ciesco Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972889284803159, 28.798241694951578 ], [ -81.974106390656686, 28.797875440863251 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mathern Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974427571059522, 28.798461449776479 ], [ -81.974106390656686, 28.797875440863251 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mathern Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974106390656686, 28.797875440863251 ], [ -81.973796481949023, 28.797272527604409 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maynard Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972889284803159, 28.798241694951578 ], [ -81.972861111676181, 28.798050114756528 ], [ -81.972872381533946, 28.797886708208193 ], [ -81.972878017036237, 28.797740206248633 ], [ -81.972900556312524, 28.797621877898283 ], [ -81.972945634454788, 28.797542992365944 ], [ -81.973058328843578, 28.797497914708931 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maynard Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973058328843578, 28.797497914708931 ], [ -81.973796481949023, 28.797272527604409 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maynard Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973796481949023, 28.797272527604409 ], [ -81.974196550685278, 28.797047140525702 ], [ -81.974433210166538, 28.796973889094456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maynard Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974433210166538, 28.796973889094456 ], [ -81.974675504245099, 28.796917542237992 ], [ -81.974855816858678, 28.796838656217602 ], [ -81.975154458967253, 28.796765406082862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Danisha Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973058328843578, 28.797497914708931 ], [ -81.97297944336718, 28.797272527314483 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sharpin Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975081202415197, 28.798252966052015 ], [ -81.974433210166538, 28.796973889094456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maynard Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975154458967253, 28.796765406082862 ], [ -81.975498178314837, 28.796635807762328 ], [ -81.975740473001864, 28.796523114966199 ], [ -81.975788664922447, 28.796495367615091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gracie Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976434121695775, 28.797690976503766 ], [ -81.976054169601767, 28.796993024506715 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gracie Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976054169601767, 28.796993024506715 ], [ -81.975788664922447, 28.796495367615091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jana Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976153285958276, 28.797814873116543 ], [ -81.976434121695775, 28.797690976503766 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jana Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976434121695775, 28.797690976503766 ], [ -81.976937973392594, 28.797488612972547 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jana Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976937973392594, 28.797488612972547 ], [ -81.977247719273791, 28.797381235555566 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mindy Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976937973392594, 28.797488612972547 ], [ -81.976760387377027, 28.797265598312769 ], [ -81.976574540895655, 28.797100402176671 ], [ -81.976446513765424, 28.796993024409684 ], [ -81.976330875974199, 28.796914557002285 ], [ -81.976252407404999, 28.796914556684861 ], [ -81.976132639926504, 28.796972375510855 ], [ -81.976054169601767, 28.796993024506715 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maggie Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040184036382868, 28.926288731085162 ], [ -82.038712341630429, 28.926265064157008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Milton Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040184036382868, 28.926288731085162 ], [ -82.040183989826787, 28.927326241179539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Milton Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040183989826787, 28.927326241179539 ], [ -82.040164010020931, 28.927405436964257 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Will O Dell Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038693416050236, 28.925200335195346 ], [ -82.038712341630429, 28.926265064157008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Will O Dell Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038693422716207, 28.923960518421875 ], [ -82.038693416050236, 28.925200335195346 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Earl Roy Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038693416050236, 28.925200335195346 ], [ -82.037509209653081, 28.925201211390757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Earl Roy Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037509209653081, 28.925201211390757 ], [ -82.03740275019841, 28.925101361915331 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jack Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038693422716207, 28.923960518421875 ], [ -82.037316196640475, 28.923939452179983 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilds Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008619731840312, 28.87069254043606 ], [ -82.00861553884657, 28.87154841285793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilds Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00861553884657, 28.87154841285793 ], [ -82.008453684210664, 28.871565752852977 ], [ -82.008413220306238, 28.871727606657302 ], [ -82.008424778880837, 28.872218947743054 ], [ -82.008459460923078, 28.872369241400236 ], [ -82.008598194331796, 28.872409705177198 ], [ -82.011777474006308, 28.872427062497984 ], [ -82.011760133840667, 28.872155379691396 ], [ -82.011760136281751, 28.871583110427082 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilds Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011760136281751, 28.871583110427082 ], [ -82.01176591949752, 28.870721816789327 ], [ -82.011476895047423, 28.870727596996993 ], [ -82.008619731840312, 28.87069254043606 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deerfield Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011760136281751, 28.871583110427082 ], [ -82.00861553884657, 28.87154841285793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 102nd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982698688544559, 28.9598965894175 ], [ -81.982889422575653, 28.959659397246067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Recreation Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038931983358793, 28.612074627371918 ], [ -82.038964023562883, 28.611998534810628 ], [ -82.038968027200227, 28.611794285266512 ], [ -82.038980042363875, 28.611525955542643 ], [ -82.038984048219945, 28.611269641824624 ], [ -82.039108200412272, 28.611233598942878 ], [ -82.039392549014494, 28.611229595937203 ], [ -82.040141466915671, 28.611241614918246 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Recreation Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040141466915671, 28.611241614918246 ], [ -82.040137461371813, 28.612290900228111 ], [ -82.040117437383913, 28.613003773117693 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Recreation Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040117437383913, 28.613003773117693 ], [ -82.039056134797264, 28.613007771414502 ], [ -82.038964022930685, 28.61297573086393 ], [ -82.03892797769889, 28.612867598186437 ], [ -82.038931983358793, 28.612074627371918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Alley Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038358162942842, 28.609956557675041 ], [ -82.03837683281229, 28.610664646465644 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Graceland Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03837683281229, 28.610664646465644 ], [ -82.037434148002191, 28.610660886869905 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crescent Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037414123277657, 28.610284426641691 ], [ -82.037065695636329, 28.610296438270815 ], [ -82.036933533370402, 28.610452629910696 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Graceland Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037434148002191, 28.610660886869905 ], [ -82.037414123277657, 28.610284426641691 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paradise Oaks Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113989600738748, 28.688144206706315 ], [ -82.114144099579121, 28.688270342321843 ], [ -82.114371220585383, 28.688354853769233 ], [ -82.114566650368602, 28.688428800811916 ], [ -82.114862435937781, 28.688428802892687 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Major Dade Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114862435937781, 28.688428802892687 ], [ -82.114873000150695, 28.688175272712112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Major Dade Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114873000150695, 28.688175272712112 ], [ -82.114883562777862, 28.68780026005096 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Major Dade Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114883562777862, 28.68780026005096 ], [ -82.114883563505813, 28.687404119186731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Major Dade Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114883563505813, 28.687404119186731 ], [ -82.114894127793988, 28.687118898236445 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Patriot Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114039954969229, 28.687328862654851 ], [ -82.114325145463638, 28.687203484298106 ], [ -82.114520874118185, 28.687132690232048 ], [ -82.114708273520577, 28.687124363069056 ], [ -82.114894127793988, 28.687118898236445 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Patriot Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114894127793988, 28.687118898236445 ], [ -82.116603090771903, 28.687157690926316 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Timucua Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116578103106605, 28.687420050267615 ], [ -82.116603090771903, 28.687157690926316 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Timucua Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11658226836029, 28.687828163280127 ], [ -82.116578103106605, 28.687420050267615 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Timucua Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116573938230175, 28.688211289707443 ], [ -82.11658226836029, 28.687828163280127 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Timucua Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116586431840958, 28.68841951147078 ], [ -82.116573938230175, 28.688211289707443 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sprague Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114873000150695, 28.688175272712112 ], [ -82.116573938230175, 28.688211289707443 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Micanopy Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114883562777862, 28.68780026005096 ], [ -82.11658226836029, 28.687828163280127 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ft King Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114883563505813, 28.687404119186731 ], [ -82.116578103106605, 28.687420050267615 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paradise Oaks Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114862435937781, 28.688428802892687 ], [ -82.116586431840958, 28.68841951147078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rockledge Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979000292636499, 28.798116442249306 ], [ -81.979426466069469, 28.798098434940758 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rockledge Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979426466069469, 28.798098434940758 ], [ -81.980211477484147, 28.79797939991985 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rockledge Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980211477484147, 28.79797939991985 ], [ -81.98052057002549, 28.798007079388697 ], [ -81.980931156104603, 28.798016305886513 ], [ -81.981028035376639, 28.79801630609121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rockledge Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981028035376639, 28.79801630609121 ], [ -81.981300221323153, 28.797965560356545 ], [ -81.981434008393876, 28.797891748110125 ], [ -81.981480141767875, 28.797748737018686 ], [ -81.981544729195676, 28.797541139096889 ], [ -81.98155856936414, 28.79739812713191 ], [ -81.981710808928412, 28.797315088285604 ], [ -81.98186304972387, 28.797264343042265 ], [ -81.981959509383174, 28.797264101603957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brittany Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979367233549453, 28.799815484262371 ], [ -81.979426466069469, 28.798098434940758 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Loomis Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980197632207478, 28.799427969639606 ], [ -81.980169953674519, 28.799224985836339 ], [ -81.980211477484147, 28.79797939991985 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Annette Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981004965521052, 28.798943575242976 ], [ -81.981028035376639, 28.79801630609121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brett Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978993555121903, 28.799801644363722 ], [ -81.979367233549453, 28.799815484262371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brett Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979367233549453, 28.799815484262371 ], [ -81.979565606194782, 28.799773964936502 ], [ -81.979828565792459, 28.799649407107182 ], [ -81.980197632207478, 28.799427969639606 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brett Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980197632207478, 28.799427969639606 ], [ -81.980359099412624, 28.799381837386516 ], [ -81.981004965521052, 28.798943575242976 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brett Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981004965521052, 28.798943575242976 ], [ -81.981355578697105, 28.798712913041225 ], [ -81.981696965513891, 28.798403822352206 ], [ -81.981936860858795, 28.797841003054103 ], [ -81.982033741422882, 28.797481167427271 ], [ -81.981959509383174, 28.797264101603957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bissell Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979835555393763, 28.792374443077406 ], [ -81.979855149885253, 28.792832991777061 ], [ -81.979768926165789, 28.792958406682654 ], [ -81.979612155387315, 28.793017194840882 ], [ -81.979235907906315, 28.793001518114092 ], [ -81.978424621272907, 28.79296232541401 ], [ -81.978279609365828, 28.792829070949644 ], [ -81.978220820640857, 28.79266054447357 ], [ -81.978193385860621, 28.792484180155615 ], [ -81.978267852366415, 28.792386199185891 ], [ -81.978424623569765, 28.792319572381118 ], [ -81.9786793749238, 28.792311734079814 ], [ -81.979835555393763, 28.792374443077406 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bissell Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979835555393763, 28.792374443077406 ], [ -81.980203965537171, 28.792327412508381 ], [ -81.9805135873859, 28.792268624286915 ], [ -81.980795773530247, 28.792178482352906 ], [ -81.98117594222056, 28.792021713249436 ], [ -81.981575706300418, 28.791821834126264 ], [ -81.981686795206201, 28.791775532684404 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047970964927728, 28.927404662651668 ], [ -82.047942671831422, 28.927762346714161 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Willow Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048851342902381, 28.927768727778236 ], [ -82.048572034204554, 28.92771183066391 ], [ -82.048292726045048, 28.927773897804176 ], [ -82.048077315709961, 28.927845536820321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Way South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047015148781654, 28.927737686439514 ], [ -82.047128939943434, 28.92772734200577 ], [ -82.047284112474557, 28.927722170407208 ], [ -82.047465144414389, 28.927758376971042 ], [ -82.047661694865553, 28.927804929886509 ], [ -82.047810463942341, 28.927848270888468 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Way South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04584317056181, 28.928380478134617 ], [ -82.04587205034629, 28.928182504083249 ], [ -82.046027222233704, 28.928016989867519 ], [ -82.046239291003218, 28.927861819023558 ], [ -82.04640998020767, 28.927779062068382 ], [ -82.046565150879957, 28.927753201683103 ], [ -82.047015148781654, 28.927737686439514 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047929884890408, 28.928009194650318 ], [ -82.047878933043364, 28.928177340727963 ], [ -82.047785828720833, 28.928601473508859 ], [ -82.047666863871683, 28.928803195162978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bent Grass Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047015148781654, 28.927737686439514 ], [ -82.047046181182978, 28.927918718429595 ], [ -82.047128938387942, 28.928037683525595 ], [ -82.047289281989649, 28.928156648719156 ], [ -82.047387557534819, 28.928275612773035 ], [ -82.047449624853769, 28.928368716077834 ], [ -82.047470313966471, 28.928518714428233 ], [ -82.047532381216385, 28.928699748093074 ], [ -82.047666863871683, 28.928803195162978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047666863871683, 28.928803195162978 ], [ -82.047672034825339, 28.928942849585749 ], [ -82.047708241491122, 28.929113536574796 ], [ -82.047796170083558, 28.92922215732515 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Three Lawn Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047796170083558, 28.92922215732515 ], [ -82.047563412878574, 28.929346293478176 ], [ -82.047315138703567, 28.929423878034584 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bellflower Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047315138703567, 28.929423878034584 ], [ -82.047366861134947, 28.929635944345357 ], [ -82.047377205084103, 28.929832493839584 ], [ -82.047335825649014, 28.93003421612438 ], [ -82.04722720543856, 28.930163524640335 ], [ -82.047077205323248, 28.930241108922129 ], [ -82.046911688876762, 28.930277315557614 ], [ -82.046751345560494, 28.930266969949731 ], [ -82.046606519081379, 28.930204901137557 ], [ -82.046487555445168, 28.930137660415625 ], [ -82.046409968995349, 28.930049729420684 ], [ -82.046358246334336, 28.929956626651048 ], [ -82.046337556131391, 28.9298221449151 ], [ -82.04635824732317, 28.9296514580682 ], [ -82.046399627027768, 28.929532493607827 ], [ -82.046513420358565, 28.929366977612386 ], [ -82.046575489260221, 28.92927387571018 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Three Lawn Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047315138703567, 28.929423878034584 ], [ -82.047066864073599, 28.929418703692285 ], [ -82.04680824584517, 28.929392841032257 ], [ -82.046575489260221, 28.92927387571018 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Three Lawn Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046575489260221, 28.92927387571018 ], [ -82.046368595066056, 28.929160083057948 ], [ -82.04627031940251, 28.929030773469272 ], [ -82.046182390290198, 28.928916981568047 ], [ -82.046125495125693, 28.928751464995781 ], [ -82.046060337767457, 28.928647296388526 ], [ -82.045970861709421, 28.928571521239803 ], [ -82.04589924774173, 28.928529757420012 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047796170083558, 28.92922215732515 ], [ -82.04800823737952, 28.929423880857886 ], [ -82.04810651186213, 28.929542844360213 ], [ -82.0481065110896, 28.92968249877212 ], [ -82.048075476651576, 28.929796289951007 ], [ -82.047972027379842, 28.930054908648405 ], [ -82.0477340968677, 28.930551454422861 ], [ -82.047573751852937, 28.930685935237346 ], [ -82.0474030626455, 28.930763518983877 ], [ -82.047242718647325, 28.930794553176305 ], [ -82.046984100047354, 28.930789379571554 ], [ -82.046518585647092, 28.930794550721266 ], [ -82.046244449858392, 28.930789376483386 ], [ -82.046094450977151, 28.930737651881071 ], [ -82.045965141855007, 28.930685928251346 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045965141855007, 28.930685928251346 ], [ -82.045809971400885, 28.930515240284215 ], [ -82.04571686866602, 28.93033420636354 ], [ -82.045732386735338, 28.930060071510233 ], [ -82.045742733828959, 28.929770418917421 ], [ -82.045784114329336, 28.92946525085824 ], [ -82.045753081815221, 28.929154908993496 ], [ -82.045743692702516, 28.928788198917974 ], [ -82.045753977741157, 28.928580308612354 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oak Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045965141855007, 28.930685928251346 ], [ -82.045747900907145, 28.930954890478368 ], [ -82.045432384555397, 28.931218679822834 ], [ -82.045070317152394, 28.93139971187464 ], [ -82.044599630232113, 28.931544536099537 ], [ -82.044403079004468, 28.931611776092474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oak Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044403079004468, 28.931611776092474 ], [ -82.04412894305031, 28.931735911642832 ], [ -82.043968597988268, 28.931834185407777 ], [ -82.043839287193904, 28.932025562144425 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Umbrella Tree Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044403079004468, 28.931611776092474 ], [ -82.044299632351098, 28.931410054080388 ], [ -82.044134116557615, 28.93132729432428 ], [ -82.043937566529038, 28.931347983379471 ], [ -82.043787566266261, 28.931420395651084 ], [ -82.043632393976509, 28.931585910831057 ], [ -82.043627220625069, 28.931766943373077 ], [ -82.043642738062132, 28.931885907691395 ], [ -82.043725495822997, 28.931963493798165 ], [ -82.043839287193904, 28.932025562144425 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oak Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043839287193904, 28.932025562144425 ], [ -82.043699632393697, 28.932294524021511 ], [ -82.043647905888889, 28.932946242311814 ], [ -82.043539283307311, 28.933385892721308 ], [ -82.043580659988137, 28.933711751962861 ], [ -82.043627211916856, 28.933768647449121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Three Lawn Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04569410507591, 28.928407902926207 ], [ -82.045654480641488, 28.9283938097368 ], [ -82.045427817836512, 28.928310523406228 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013476577988442, 28.83819922591433 ], [ -82.013032160769114, 28.838035623869335 ], [ -82.012495682789648, 28.837848479104103 ], [ -82.01236088828982, 28.837803983594565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anthony Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013601586418147, 28.837189386018657 ], [ -82.013605735957199, 28.83792391609397 ], [ -82.013476577988442, 28.83819922591433 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spencer Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013601586418147, 28.837189386018657 ], [ -82.012654786016796, 28.836872312051813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972611610028281, 28.790975075644159 ], [ -81.972686551407449, 28.790921462785342 ], [ -81.972763560580333, 28.790911378814364 ], [ -81.973062431049257, 28.790928796846426 ], [ -81.973330131515752, 28.790945299406125 ], [ -81.973948958454343, 28.790966385130833 ], [ -81.974529282531847, 28.790961802537783 ], [ -81.975099518731199, 28.790942551180979 ], [ -81.975570745213005, 28.790915048544655 ], [ -81.975880616905357, 28.790889378669085 ], [ -81.976230827704399, 28.790852707901916 ], [ -81.976353676593774, 28.790870127092351 ], [ -81.976414418608272, 28.790909165542825 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Catherine Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972211317450373, 28.791066040545253 ], [ -81.972196471226596, 28.791852438006334 ], [ -81.972250643958603, 28.791965850152067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Catherine Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972222800192512, 28.792332806254354 ], [ -81.972239832210121, 28.793048236897565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Catherine Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972239832210121, 28.793048236897565 ], [ -81.972154659553254, 28.793474087694666 ], [ -81.971890628196377, 28.793857354354923 ], [ -81.971609562910587, 28.794163967181024 ], [ -81.971226293332819, 28.794308755682586 ], [ -81.971090019852184, 28.794359857826741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Catherine Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971090019852184, 28.794359857826741 ], [ -81.970493821903133, 28.794445027577282 ], [ -81.970178688982486, 28.79448761219955 ], [ -81.969752833985055, 28.794427993289162 ], [ -81.969185248719143, 28.79437009473083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Catherine Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969185248719143, 28.79437009473083 ], [ -81.968564491815826, 28.794306772002063 ], [ -81.96826234091202, 28.794325786767907 ], [ -81.967836485966913, 28.794393923035443 ], [ -81.967385079653567, 28.794419473415292 ], [ -81.967027360777323, 28.794359853391438 ], [ -81.966541886491115, 28.794232097721011 ], [ -81.966005309286587, 28.793968069092781 ], [ -81.965958994792487, 28.793929474471426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roudell Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965281357522144, 28.79304823035736 ], [ -81.964957707447994, 28.793090814143142 ], [ -81.964761813921484, 28.793082297480698 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roudell Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964761813921484, 28.793082297480698 ], [ -81.964421130580376, 28.792980092136617 ], [ -81.964105998267726, 28.792869370401004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roudell Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964105998267726, 28.792869370401004 ], [ -81.963450181821329, 28.792503138001383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roudell Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96293419203073, 28.788689125809096 ], [ -81.963998973077338, 28.788140290966144 ], [ -81.96453667662702, 28.787838176602772 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amanda Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964316897976914, 28.794239767736375 ], [ -81.964235714401994, 28.793979303426234 ], [ -81.964154531112698, 28.79374590033197 ], [ -81.964042903032862, 28.793448227205353 ], [ -81.964025990812118, 28.793133640201294 ], [ -81.964105998267726, 28.792869370401004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Randall Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963620066104383, 28.794375072479703 ], [ -81.964316897976914, 28.794239767736375 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Randall Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964316897976914, 28.794239767736375 ], [ -81.965023878457927, 28.794063869670708 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mincey Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965023878457927, 28.794063869670708 ], [ -81.964878425056924, 28.793661334243971 ], [ -81.964753266757469, 28.793309538321598 ], [ -81.964761813921484, 28.793082297480698 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deanna Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963620066104383, 28.794375072479703 ], [ -81.963545647993016, 28.79413152254725 ], [ -81.963386662630754, 28.79381355205949 ], [ -81.963281801095874, 28.793478670557924 ], [ -81.963281801600672, 28.793184379297735 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deanna Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963593002995196, 28.795007628106166 ], [ -81.963623448836088, 28.794496847761732 ], [ -81.963620066104383, 28.794375072479703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pagan Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963593002995196, 28.795007628106166 ], [ -81.964303365012299, 28.794882470912114 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pagan Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964303365012299, 28.794882470912114 ], [ -81.965071234441638, 28.794726869146871 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mincey Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965071234441638, 28.794726869146871 ], [ -81.965084765326338, 28.794466405556619 ], [ -81.965023878457927, 28.794063869670708 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Altman Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964222177504922, 28.79598859839507 ], [ -81.964320278296682, 28.795071898869509 ], [ -81.964303365012299, 28.794882470912114 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deanna Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963231051965536, 28.79643848966958 ], [ -81.963305471379513, 28.796184790447292 ], [ -81.96340018745434, 28.795917562003094 ], [ -81.96351181649699, 28.795511643550064 ], [ -81.963559174704315, 28.795213969807442 ], [ -81.963593002995196, 28.795007628106166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pagan Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962507158965906, 28.79633024338181 ], [ -81.962584961292137, 28.795863438147908 ], [ -81.962716886912546, 28.795433842083273 ], [ -81.96281836833198, 28.795132785472159 ], [ -81.96288602187596, 28.795071898021533 ], [ -81.962984119908626, 28.795024540976488 ], [ -81.963207377194337, 28.795017775302231 ], [ -81.963593002995196, 28.795007628106166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mincey Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965030637224089, 28.796448639499737 ], [ -81.965050936510679, 28.795298537815384 ], [ -81.965071234441638, 28.794726869146871 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mincey Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962507158965906, 28.79633024338181 ], [ -81.963231051965536, 28.79643848966958 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mincey Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963231051965536, 28.79643848966958 ], [ -81.963599763027673, 28.796509526139229 ], [ -81.964039510803175, 28.79661438755916 ], [ -81.964269533432955, 28.796675275549166 ], [ -81.964519851205509, 28.79669895531709 ], [ -81.964736343690106, 28.796702337256733 ], [ -81.964878415878403, 28.796651597670166 ], [ -81.965006958101142, 28.796546736400558 ], [ -81.965030637224089, 28.796448639499737 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shauna Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965030637224089, 28.796448639499737 ], [ -81.965477150914111, 28.796452022095071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Auster Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970020091963633, 28.795667251968769 ], [ -81.970426014265286, 28.795569154875942 ], [ -81.970872528340607, 28.795471059045084 ], [ -81.971163438251551, 28.795450763772358 ], [ -81.971339338184578, 28.795386493540679 ], [ -81.97142052192396, 28.795301927100621 ], [ -81.971423906229731, 28.795146323939235 ], [ -81.97126492022241, 28.794753937263213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Waterman Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969932144486563, 28.794902771999908 ], [ -81.970473373333505, 28.794868946020802 ], [ -81.970919887339761, 28.794811441476867 ], [ -81.97126492022241, 28.794753937263213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Broome Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970020091963633, 28.795667251968769 ], [ -81.969959205122279, 28.795433848813573 ], [ -81.969932142695939, 28.795322221233643 ], [ -81.969921995239432, 28.795132792784191 ], [ -81.969932144486563, 28.794902771999908 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Auster Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969373999453992, 28.79589388918761 ], [ -81.970020091963633, 28.795667251968769 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Waterman Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969215016919463, 28.794821588341176 ], [ -81.969712270955156, 28.794882476554214 ], [ -81.969932144486563, 28.794902771999908 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orgovan Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969373999453992, 28.79589388918761 ], [ -81.969282667595067, 28.795687547285084 ], [ -81.969187953452803, 28.795433848447857 ], [ -81.969171041088103, 28.795156469946829 ], [ -81.969215016919463, 28.794821588341176 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Poole Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968599365141486, 28.796201708730631 ], [ -81.968487737149317, 28.795991984203216 ], [ -81.968457293958011, 28.795717989748798 ], [ -81.968420086727846, 28.795098964538017 ], [ -81.968396408805717, 28.794747168776375 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Waterman Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968396408805717, 28.794747168776375 ], [ -81.968724529160909, 28.794747168783946 ], [ -81.969039117205256, 28.794780996205645 ], [ -81.969215016919463, 28.794821588341176 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Auster Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968599365141486, 28.796201708730631 ], [ -81.969373999453992, 28.79589388918761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Auster Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97126492022241, 28.794753937263213 ], [ -81.971090019852184, 28.794359857826741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Auster Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967767226875182, 28.795931095916021 ], [ -81.967801053274542, 28.796137438613744 ], [ -81.967858558362977, 28.796235534679671 ], [ -81.967976951829883, 28.796333631696434 ], [ -81.968146086016901, 28.796337014930845 ], [ -81.968423466261527, 28.796269362665651 ], [ -81.968599365141486, 28.796201708730631 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Waterman Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967615009117978, 28.79484526464211 ], [ -81.968396408805717, 28.794747168776375 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Auster Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967615009117978, 28.79484526464211 ], [ -81.96763868788419, 28.795156468178618 ], [ -81.967669131741346, 28.795325602340718 ], [ -81.967743549690681, 28.795481204229731 ], [ -81.96776722732524, 28.79574166795182 ], [ -81.967767226875182, 28.795931095916021 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Umland Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966972296923785, 28.795931095262233 ], [ -81.966958766640161, 28.795714606318612 ], [ -81.966880966162876, 28.795440611590106 ], [ -81.966843757663398, 28.795217354854024 ], [ -81.966860671638116, 28.794960273804058 ], [ -81.966870819792248, 28.794767462834983 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Waterman Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966870819792248, 28.794767462834983 ], [ -81.967615009117978, 28.79484526464211 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Waterman Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966160456954043, 28.794561121017995 ], [ -81.966471664896631, 28.794669365524424 ], [ -81.966654329733331, 28.794733636668809 ], [ -81.966870819792248, 28.794767462834983 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Patterson Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967767226875182, 28.795931095916021 ], [ -81.967286886189342, 28.795941243756282 ], [ -81.966972296923785, 28.795931095262233 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Patterson Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966972296923785, 28.795931095262233 ], [ -81.966613733147724, 28.795948009026642 ], [ -81.966329586920736, 28.795914181776546 ], [ -81.96617060221557, 28.795707840675426 ], [ -81.966106330971215, 28.795487966927713 ], [ -81.96611648108059, 28.795054988285347 ], [ -81.966160456954043, 28.794561121017995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Waterman Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965958994792487, 28.793929474471426 ], [ -81.965808660261544, 28.794077401268133 ], [ -81.965778215909324, 28.794205941567313 ], [ -81.9657815980636, 28.794327717702735 ], [ -81.966160456954043, 28.794561121017995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Catherine Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965958994792487, 28.793929474471426 ], [ -81.965647591711473, 28.793669973063555 ], [ -81.965392078868163, 28.793380394072898 ], [ -81.965281357522144, 28.79304823035736 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rees Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972239832210121, 28.793048236897565 ], [ -81.973388431920981, 28.793038935366763 ], [ -81.973716975195046, 28.792961980358253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Judith Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972710629565853, 28.79231673942401 ], [ -81.973447631811482, 28.792301941117909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ebling Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973447631811482, 28.792301941117909 ], [ -81.973716975195046, 28.792961980358253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ebling Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973383317784283, 28.79158380056241 ], [ -81.972990425911419, 28.791577661346054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ebling Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973383317784283, 28.79158380056241 ], [ -81.97338331617469, 28.792044216849067 ], [ -81.973447631811482, 28.792301941117909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ebling Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973716975195046, 28.792961980358253 ], [ -81.973929677886602, 28.793394772156244 ], [ -81.974009482492221, 28.793529827819413 ], [ -81.974150678483298, 28.793609633081147 ], [ -81.974236624683741, 28.793603494907948 ], [ -81.974476042235011, 28.793554383474227 ], [ -81.97473387797595, 28.79343774505211 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marusek Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97473387797595, 28.79343774505211 ], [ -81.974690906184719, 28.793339522870085 ], [ -81.974439211438522, 28.79281771795722 ], [ -81.974212071895693, 28.792320467394894 ], [ -81.974107711185653, 28.792013523603398 ], [ -81.974070879327769, 28.791546968087932 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ebling Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97473387797595, 28.79343774505211 ], [ -81.975378468350058, 28.793204467854231 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nicksic Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975378468350058, 28.793204467854231 ], [ -81.97521885598178, 28.792854551170748 ], [ -81.975053107017757, 28.792449384491658 ], [ -81.974856662479723, 28.791982829264281 ], [ -81.974819829826018, 28.79151013550937 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Schaeffer Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97606602913126, 28.792952773603119 ], [ -81.975820473928621, 28.792437108055609 ], [ -81.975624029680176, 28.791976691477611 ], [ -81.975525806309221, 28.791663608731191 ], [ -81.975538085346571, 28.791491720238703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ebling Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975378468350058, 28.793204467854231 ], [ -81.97606602913126, 28.792952773603119 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ebling Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97606602913126, 28.792952773603119 ], [ -81.976483478152844, 28.792823858032005 ], [ -81.976618534585015, 28.792744053043389 ], [ -81.976673785561587, 28.792578303167407 ], [ -81.976508035428751, 28.792191553569083 ], [ -81.976237924552038, 28.791540831548971 ], [ -81.976133562577502, 28.791461025971994 ], [ -81.975777504822432, 28.791485580966381 ], [ -81.975538085346571, 28.791491720238703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ebling Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975538085346571, 28.791491720238703 ], [ -81.974819829826018, 28.79151013550937 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ebling Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974819829826018, 28.79151013550937 ], [ -81.974070879327769, 28.791546968087932 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ebling Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974070879327769, 28.791546968087932 ], [ -81.973383317784283, 28.79158380056241 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hawkins Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984312541585112, 28.797365793320498 ], [ -81.984153683221521, 28.796497351720838 ], [ -81.984185456023198, 28.796327900204059 ], [ -81.984307252394188, 28.795904270465751 ], [ -81.984402570385839, 28.79562361532895 ], [ -81.984445855276178, 28.795250484132538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hawkins Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984100724415242, 28.797810604032364 ], [ -81.98425958656911, 28.797551131179109 ], [ -81.984312541585112, 28.797365793320498 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hawkins Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983044306364178, 28.799981525235367 ], [ -81.983003754991955, 28.799747226544319 ], [ -81.983197505180641, 28.799211042740769 ], [ -81.983490384820612, 28.798350445255366 ], [ -81.98360295426815, 28.798096553702312 ], [ -81.983730044534141, 28.797958874471789 ], [ -81.983941861833685, 28.797884739849536 ], [ -81.984100724415242, 28.797810604032364 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Goodman Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984111311551175, 28.798647272929539 ], [ -81.984206631518219, 28.79834014148614 ], [ -81.984243698557066, 28.798218347173922 ], [ -81.984254289974842, 28.798101849924056 ], [ -81.984217221990491, 28.797964170686011 ], [ -81.984100724415242, 28.797810604032364 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marybeth Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984111311551175, 28.798647272929539 ], [ -81.984868557012661, 28.798668455805448 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marybeth Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984868557012661, 28.798668455805448 ], [ -81.98518628176906, 28.798663159576108 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anthony Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984884440239824, 28.799505124235225 ], [ -81.984873849938694, 28.79922976431962 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anthony Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984873849938694, 28.79922976431962 ], [ -81.984868557012661, 28.798668455805448 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Denaud Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983947151788968, 28.799224468138707 ], [ -81.984873849938694, 28.79922976431962 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Goodman Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983947151788968, 28.799224468138707 ], [ -81.983968334785999, 28.799028538914403 ], [ -81.984111311551175, 28.798647272929539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Denaud Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983581768213639, 28.799229762836937 ], [ -81.983947151788968, 28.799224468138707 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thome Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985578142303908, 28.798541366706303 ], [ -81.985556963171973, 28.798260712696212 ], [ -81.985493417945435, 28.7981283284287 ], [ -81.985376918453312, 28.798038306447875 ], [ -81.984609085312542, 28.79741874747382 ], [ -81.98441845086171, 28.797312839019916 ], [ -81.984312541585112, 28.797365793320498 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thome Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985599322202475, 28.799224470165019 ], [ -81.985578142303908, 28.798541366706303 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thome Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985578142303908, 28.798541366706303 ], [ -81.985779368449116, 28.798541366586214 ], [ -81.985938231613474, 28.798483118340403 ], [ -81.986112980316435, 28.798403687962256 ], [ -81.986250661742801, 28.798371916415153 ], [ -81.986367159744987, 28.798435460174989 ], [ -81.986451886512015, 28.798557253924891 ], [ -81.986668997473132, 28.798816727622782 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carpenter Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985599322202475, 28.799224470165019 ], [ -81.985742298498451, 28.799224470136071 ], [ -81.985911752570132, 28.799182107366544 ], [ -81.986668997473132, 28.798816727622782 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thome Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985631091976401, 28.799859914543784 ], [ -81.985556957446875, 28.799663985645999 ], [ -81.985599322202475, 28.799224470165019 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mir Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985445751297064, 28.80007702427983 ], [ -81.985631091976401, 28.799859914543784 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thome Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98672567452526, 28.79960693800966 ], [ -81.986001770835728, 28.799912869051866 ], [ -81.98587997608422, 28.799955231553589 ], [ -81.985752887027928, 28.799918163717038 ], [ -81.985631091976401, 28.799859914543784 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sigcom Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023657345474462, 28.880136493684319 ], [ -82.022674654909466, 28.88012992318361 ], [ -82.022633071194704, 28.880129922758762 ], [ -82.022580544031499, 28.88014524247513 ], [ -82.022552091680282, 28.880189015943472 ], [ -82.022536772226346, 28.880230598288769 ], [ -82.022538960500682, 28.88029625660381 ], [ -82.022569597705399, 28.88095940704596 ], [ -82.022563032091526, 28.881000989769209 ], [ -82.022517070576427, 28.881044762463699 ], [ -82.022479864606566, 28.88106227134098 ], [ -82.022302585111348, 28.881060082104248 ], [ -82.02116669189796, 28.881051322654059 ], [ -82.020932509377246, 28.881044755087952 ], [ -82.020766174950793, 28.881022868551838 ], [ -82.02060868078371, 28.880964518501955 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triumph Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023657345474462, 28.880136493684319 ], [ -82.023666754509989, 28.881376324508299 ], [ -82.023681845582146, 28.88142914354637 ], [ -82.023719572576326, 28.881481962315814 ], [ -82.023810119885027, 28.881512144992477 ], [ -82.024111943339832, 28.881512145984061 ], [ -82.02620961569221, 28.881519702660398 ], [ -82.026300162608024, 28.881512156644852 ], [ -82.02636052762476, 28.88148952083446 ], [ -82.026383164963875, 28.881383882303815 ], [ -82.026375624110358, 28.880138865851684 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sigcom Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026375624110358, 28.880138865851684 ], [ -82.025115511799143, 28.88012376871718 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sigcom Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025115511799143, 28.88012376871718 ], [ -82.023657345474462, 28.880136493684319 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triumph Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026375624110358, 28.880138865851684 ], [ -82.026368082853594, 28.879444674467337 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triumph Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026368082853594, 28.879444674467337 ], [ -82.026375630213252, 28.878735392745785 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Triumph Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026375630213252, 28.878735392745785 ], [ -82.02637563190909, 28.878267567409953 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crossroads Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026375630213252, 28.878735392745785 ], [ -82.025130608844819, 28.878742931580074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clearway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025123065155384, 28.878267561655814 ], [ -82.025130608844819, 28.878742931580074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clearway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025130608844819, 28.878742931580074 ], [ -82.025130606169995, 28.879429577643879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clearway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025130606169995, 28.879429577643879 ], [ -82.025115511799143, 28.88012376871718 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cornerstone Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026368082853594, 28.879444674467337 ], [ -82.025130606169995, 28.879429577643879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jansen Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022070413877856, 28.753324844567342 ], [ -82.021558420634733, 28.753547445478155 ], [ -82.021303558039307, 28.753634642756094 ], [ -82.021021147802301, 28.753729871585907 ], [ -82.020239589890053, 28.753949883438544 ], [ -82.0198389597508, 28.754077950306815 ], [ -82.019641928700381, 28.754212585641213 ], [ -82.019464599336899, 28.754373491685211 ], [ -82.019182188082652, 28.7547872539762 ], [ -82.018852010049216, 28.755179549547229 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976336111728585, 28.790710234020995 ], [ -81.97625739408241, 28.790731153807901 ], [ -81.976023140539752, 28.790751836541808 ], [ -81.97581002525385, 28.790763781062399 ], [ -81.975369970693649, 28.790800451443037 ], [ -81.975084851735176, 28.790819702973323 ], [ -81.974049805463906, 28.790839871397971 ], [ -81.973812357975092, 28.790834369952062 ], [ -81.973605165885672, 28.790829785370491 ], [ -81.973415392092662, 28.790820618359497 ], [ -81.973137608065031, 28.790806866010517 ], [ -81.972765395226432, 28.790778445832387 ], [ -81.972692052664513, 28.790759194528949 ], [ -81.972645534987905, 28.790698665993521 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99013876570875, 28.783485458310704 ], [ -81.9903546608178, 28.783944196435236 ], [ -81.990537045551633, 28.784276436329129 ], [ -81.990646675474707, 28.784515146874543 ], [ -81.990687344386586, 28.784773306423197 ], [ -81.990686141732027, 28.784941684542932 ], [ -81.990701160828692, 28.785278001657129 ], [ -81.990700440534724, 28.785413889259928 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994590888611683, 28.799816750448901 ], [ -81.994595561153631, 28.800070082997546 ], [ -81.994596896921095, 28.800533936622589 ], [ -81.994602243069963, 28.8006662753948 ], [ -81.994614274352543, 28.800762521039378 ], [ -81.994640619999885, 28.800868143192254 ], [ -81.994677475191324, 28.800969368795034 ], [ -81.994714655858743, 28.801039270625779 ], [ -81.994760727716098, 28.801120441778419 ], [ -81.994824055183784, 28.801228513329061 ], [ -81.994846672934315, 28.801323169486345 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995074593881967, 28.80118501614896 ], [ -81.994984261637754, 28.801145917346975 ], [ -81.994951737161372, 28.801124905760393 ], [ -81.994899428678394, 28.801082170230959 ], [ -81.994865100535762, 28.801036888155565 ], [ -81.994825752218588, 28.800946455967622 ], [ -81.994795400660593, 28.800866239201333 ], [ -81.994746613814442, 28.800717072393802 ], [ -81.994727899197329, 28.800584733094016 ], [ -81.994731424582994, 28.799817311063137 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995074593881967, 28.80118501614896 ], [ -81.99494026677138, 28.801228023379128 ], [ -81.994903090038534, 28.80125490995016 ], [ -81.994846672934315, 28.801323169486345 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994828979418543, 28.801499440014307 ], [ -81.994859873793956, 28.801566361215226 ], [ -81.994923350465072, 28.801629513808233 ], [ -81.9950070305499, 28.801670520786509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995214412482824, 28.801664106740347 ], [ -81.995323325120808, 28.801590864560119 ], [ -81.995349123164175, 28.801557233590177 ], [ -81.995380691605149, 28.801481254595011 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995380691605149, 28.801481254595011 ], [ -81.99538260202516, 28.8013972611163 ], [ -81.995371562009495, 28.801356243414297 ], [ -81.995352867603984, 28.801317438812649 ], [ -81.99532704735141, 28.801281944538811 ], [ -81.995257140221341, 28.801224794984389 ], [ -81.995215034445721, 28.801204758514906 ], [ -81.995122448535781, 28.801184583017864 ], [ -81.995074593881967, 28.80118501614896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017526564864966, 28.824491804973846 ], [ -82.017572254102333, 28.824432009584505 ], [ -82.017598725184058, 28.824344971360414 ], [ -82.017590346923328, 28.82426397212701 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019531755174398, 28.829738426434556 ], [ -82.019725611721327, 28.829767274056938 ], [ -82.020144263501592, 28.830061337188617 ], [ -82.020401324055271, 28.830306721473541 ], [ -82.020633429104294, 28.830469028017294 ], [ -82.020910003917621, 28.830673345295587 ], [ -82.021146471592814, 28.830959791640748 ], [ -82.021304869278936, 28.831294954264642 ], [ -82.021391714510386, 28.831735169839831 ], [ -82.021493725873015, 28.832088484429558 ], [ -82.021680329352066, 28.832455153504689 ], [ -82.021798570991123, 28.832629889562885 ], [ -82.021911393732793, 28.832811311561496 ], [ -82.022000357939035, 28.832988916852553 ], [ -82.02213274183498, 28.833362279884213 ], [ -82.022188068777325, 28.83352985941297 ], [ -82.022236619909989, 28.833714175997628 ], [ -82.022248112779835, 28.833835750197039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022121774893336, 28.83423458575049 ], [ -82.022159890592988, 28.834369870798962 ], [ -82.022068902109254, 28.834756902079278 ], [ -82.022056678665606, 28.835135785642233 ], [ -82.022090627191147, 28.835370722186237 ], [ -82.022376148916493, 28.836608851704739 ], [ -82.022490410563506, 28.837077039644939 ], [ -82.022650120493068, 28.837601930980167 ], [ -82.022918232133975, 28.838139994212685 ], [ -82.023330478397369, 28.83893413998257 ], [ -82.023509628981429, 28.839379864791642 ], [ -82.023598215512678, 28.839855283398961 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023760421582978, 28.839834415206255 ], [ -82.0236288478917, 28.839346823772615 ], [ -82.023440838992343, 28.838845915519286 ], [ -82.022938016781339, 28.83791019950872 ], [ -82.022720737331539, 28.83741181058334 ], [ -82.022594477630889, 28.836914514573962 ], [ -82.022463481727314, 28.836329389479403 ], [ -82.022333710493584, 28.835816149033231 ], [ -82.022204701462698, 28.835281094114201 ], [ -82.022196071614019, 28.834992294834805 ], [ -82.022235614931532, 28.834630026502072 ], [ -82.022279395464736, 28.834470363411103 ], [ -82.022388686576335, 28.834333476675866 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022440637203161, 28.833844495194747 ], [ -82.022321491709292, 28.833607670284071 ], [ -82.022240989028134, 28.833260735905181 ], [ -82.022101195846034, 28.83290009127434 ], [ -82.021986196465221, 28.832690021507648 ], [ -82.02173777995452, 28.832329092164407 ], [ -82.021595650751777, 28.832015892472484 ], [ -82.021540308487559, 28.831844965099723 ], [ -82.021459179971728, 28.831377662366993 ], [ -82.021331904110397, 28.830912972470287 ], [ -82.02120929687888, 28.830670654642315 ], [ -82.021019484534023, 28.830422177732764 ], [ -82.020710362390815, 28.83014910961036 ], [ -82.020364384628408, 28.829952441861423 ], [ -82.02018652107617, 28.829877028336274 ], [ -82.019929483655005, 28.829752921067083 ], [ -82.019745098380596, 28.829586788007237 ], [ -82.019721736141918, 28.829510119455893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019399287949923, 28.829258558479061 ], [ -82.019284694355861, 28.829246547412382 ], [ -82.019175038749822, 28.829200772098496 ], [ -82.018996428821382, 28.829064777916688 ], [ -82.018702105748091, 28.828890521224551 ], [ -82.018535287755469, 28.828784266742755 ], [ -82.018323843571267, 28.828608947069217 ], [ -82.018155962690571, 28.828429377885662 ], [ -82.018005083064295, 28.828216871151405 ], [ -82.017857392287482, 28.827921484994679 ], [ -82.017586447667583, 28.827022579733214 ], [ -82.017331441714148, 28.826230990640074 ], [ -82.017264502371049, 28.825977044951493 ], [ -82.017224127424313, 28.825726286541919 ], [ -82.017208190944444, 28.825404338375964 ], [ -82.017228380271064, 28.825085578153633 ], [ -82.017277259068834, 28.82481888304185 ], [ -82.017318698623001, 28.824677565549557 ], [ -82.017371825638719, 28.824604250922764 ], [ -82.017452056405389, 28.824547178994877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019175830704569, 28.829583358829929 ], [ -82.019187839628032, 28.829610851423602 ], [ -82.019200328578094, 28.829629568100177 ], [ -82.01921056270379, 28.829645186557716 ], [ -82.01923922720006, 28.829675882766267 ], [ -82.019253808175094, 28.829692554520278 ], [ -82.0192942151929, 28.829716323888999 ], [ -82.019352840638987, 28.829738830208392 ], [ -82.019396670578644, 28.829748299292731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019531755174398, 28.829738426434556 ], [ -82.019610318172354, 28.829702028083055 ], [ -82.01967210262039, 28.829645893146054 ], [ -82.01970303769518, 28.829597482669868 ], [ -82.019716653232763, 28.829551580333792 ], [ -82.019721736141918, 28.829510119455893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019721736141918, 28.829510119455893 ], [ -82.01972294563663, 28.829495542495515 ], [ -82.019717401700134, 28.829454008220797 ], [ -82.019704007028722, 28.829413886259559 ], [ -82.019668574860987, 28.829351476766469 ], [ -82.019635298267801, 28.829320577372073 ], [ -82.019582630808699, 28.829289089667096 ], [ -82.019539668435272, 28.829271266048639 ], [ -82.01947367089214, 28.829255213239094 ], [ -82.019427321977787, 28.829254023206392 ], [ -82.019399287949923, 28.829258558479061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019399287949923, 28.829258558479061 ], [ -82.019356933939108, 28.829267221978693 ], [ -82.01931659953101, 28.829281526418516 ], [ -82.019279249893941, 28.829301130595155 ], [ -82.01924577332548, 28.829325566993496 ], [ -82.019216969983276, 28.829354250810976 ], [ -82.019193528321495, 28.829386499811328 ], [ -82.019176004598776, 28.829421542447662 ], [ -82.019164820833211, 28.829458544029421 ], [ -82.019160241237145, 28.829496621162257 ], [ -82.019162376319088, 28.829534865207297 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022248112779835, 28.833835750197039 ], [ -82.022163791396338, 28.833885004353796 ], [ -82.022098492924798, 28.833965155873241 ], [ -82.022080104002313, 28.834002493567926 ], [ -82.022068781921647, 28.834041951467473 ], [ -82.022064822619029, 28.834082499091554 ], [ -82.022068330404977, 28.834123078919696 ], [ -82.022079210795482, 28.834162632559455 ], [ -82.022097181788553, 28.834200127813808 ], [ -82.022121774893336, 28.83423458575049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022121774893336, 28.83423458575049 ], [ -82.022150936149117, 28.834263900706141 ], [ -82.022222804675408, 28.834309001947414 ], [ -82.022263792244942, 28.834323707535923 ], [ -82.022306863921131, 28.834332671395416 ], [ -82.022350990838348, 28.834335678939642 ], [ -82.022388686576335, 28.834333476675866 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022601366793779, 28.834205592593474 ], [ -82.022633259717125, 28.834146347315503 ], [ -82.022634403237632, 28.834049486212233 ], [ -82.022607700349482, 28.83397257152739 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022440637203161, 28.833844495194747 ], [ -82.022397558899058, 28.833827463845275 ], [ -82.02236159556071, 28.833822068403137 ], [ -82.022322033736032, 28.83382296712329 ], [ -82.022283372357577, 28.833827463188605 ], [ -82.022248112779835, 28.833835750197039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023598215512678, 28.839855283398961 ], [ -82.023615019492553, 28.840062527789872 ], [ -82.023607096260804, 28.840299788898388 ], [ -82.023577056835208, 28.840613665905799 ], [ -82.023512446937886, 28.840921209132702 ], [ -82.023408588080699, 28.841236129867582 ], [ -82.023310968355318, 28.841451904915871 ], [ -82.023285725306977, 28.841519755381235 ], [ -82.023252926526268, 28.841592527381909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 102nd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067084686035969, 28.606411901585997 ], [ -82.066924306987431, 28.606408102468748 ], [ -82.066674397412086, 28.60640321240912 ], [ -82.066452881486953, 28.606393294747228 ], [ -82.066171732647305, 28.606388417968628 ], [ -82.065950227144612, 28.606388524491766 ], [ -82.065728718037235, 28.606386124853149 ], [ -82.065643519477831, 28.606381152182053 ], [ -82.065578206526709, 28.606386196782584 ], [ -82.065487335240519, 28.606391252634726 ], [ -82.065365223073513, 28.606393816589204 ], [ -82.065186319931968, 28.60640392660002 ], [ -82.064984687627216, 28.606399010512288 ], [ -82.064856894952285, 28.606399069991586 ], [ -82.064717741825319, 28.60639662890005 ], [ -82.064584269183442, 28.60639669169991 ], [ -82.064513270081363, 28.606391713448634 ], [ -82.064425232099708, 28.606386741345116 ], [ -82.064368436497659, 28.606386767961403 ], [ -82.064311633755821, 28.606381782953882 ], [ -82.064240631128172, 28.606369285351743 ], [ -82.06414122818083, 28.606354295169449 ], [ -82.064053197842682, 28.606361854536264 ], [ -82.063860091656522, 28.606369462712728 ], [ -82.06365846103273, 28.606362037948017 ], [ -82.063442632956551, 28.606364643546865 ], [ -82.063258043706469, 28.606364729529233 ], [ -82.063167168305483, 28.606364770420473 ], [ -82.063053576100174, 28.606364823478184 ], [ -82.063010991320411, 28.60638739792871 ], [ -82.062993973348071, 28.606422491464411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 102nd Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071252188257958, 28.606355801300584 ], [ -82.071044809448935, 28.606250652511957 ], [ -82.070868710264605, 28.606208139515399 ], [ -82.070797707642498, 28.606198152050808 ], [ -82.070749435586251, 28.606205695249763 ], [ -82.070502514061232, 28.606292777322668 ], [ -82.070354881814495, 28.606315543347268 ], [ -82.070193801822711, 28.606326283368514 ], [ -82.069400534132811, 28.606236457099172 ], [ -82.069230160934836, 28.606261602942066 ], [ -82.0691148290244, 28.606290503487379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 109", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962770693794667, 28.957442241957057 ], [ -81.962577510408266, 28.957506339201874 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959565371881453, 28.949250623737534 ], [ -81.959495805578555, 28.949378099331664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961691463013779, 28.950165211134365 ], [ -81.961790477264685, 28.950082300718837 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966033645816466, 28.952749088500465 ], [ -81.966033402878324, 28.95287002532605 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981361276934081, 28.952868805157372 ], [ -81.981842280731598, 28.953034239138585 ], [ -81.981903394065569, 28.953048654350315 ], [ -81.981957039531878, 28.953060025994475 ], [ -81.982025408095893, 28.953079363233542 ], [ -81.982099439954524, 28.953096431934824 ], [ -81.982165795257586, 28.953107053594078 ], [ -81.982265328750955, 28.95312298331476 ], [ -81.982331685113834, 28.953133603990025 ], [ -81.982419153704612, 28.953146880159739 ], [ -81.982491541265219, 28.953157500649983 ], [ -81.982572977583231, 28.953165470449846 ], [ -81.982642352029771, 28.9531707858903 ], [ -81.982747918619523, 28.953176105087195 ], [ -81.982856504260511, 28.953176119113529 ], [ -81.982940958049412, 28.953176129059823 ], [ -81.983043511496859, 28.95317614216215 ], [ -81.983140032601909, 28.953170849848075 ], [ -81.983230519452562, 28.953165555802379 ], [ -81.983333073599027, 28.953154955926347 ], [ -81.983462774474575, 28.95313905477391 ], [ -81.983598508355342, 28.953117847861215 ], [ -81.98371614603748, 28.953093987664353 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983647154924896, 28.952982136506478 ], [ -81.9835412251973, 28.953003005189593 ], [ -81.983362573354526, 28.953026261205501 ], [ -81.9831872318873, 28.953043697619165 ], [ -81.982958958893192, 28.953055306353722 ], [ -81.982767077907582, 28.95305528255701 ], [ -81.982608280525639, 28.953043623245794 ], [ -81.982489185832975, 28.953031968973871 ], [ -81.98225760985197, 28.952999930418095 ], [ -81.982102126701008, 28.952967903514736 ], [ -81.981827551757704, 28.952898032550276 ], [ -81.981642942748664, 28.952839551352923 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98371614603748, 28.953093987664353 ], [ -81.983647154924896, 28.952982136506478 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991985237558808, 28.951509683654336 ], [ -81.991937767680483, 28.951622806539117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Byron Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971727593047873, 28.792339621058577 ], [ -81.972222800192512, 28.792332806254354 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Byron Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970917293858975, 28.792339620565741 ], [ -81.971727593047873, 28.792339621058577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Christi Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970780611786054, 28.793950441234074 ], [ -81.970946575981216, 28.793921153825586 ], [ -81.971171118020635, 28.793833290687814 ], [ -81.971405420877176, 28.793677090754922 ], [ -81.971551861935438, 28.793520888991701 ], [ -81.971669013922522, 28.793320757188585 ], [ -81.9717519971136, 28.793042524689746 ], [ -81.971747116826592, 28.792691072618094 ], [ -81.971727593047873, 28.792339621058577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kathleen Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970780611786054, 28.793950441234074 ], [ -81.970746443032837, 28.793813765837935 ], [ -81.970844070874065, 28.793418381654583 ], [ -81.970931934526149, 28.793047405548332 ], [ -81.970917293858975, 28.792339620565741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Christi Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970297360927916, 28.794004134869724 ], [ -81.970780611786054, 28.793950441234074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kathleen Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970917293858975, 28.792339620565741 ], [ -81.970907532158733, 28.791993049791529 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nancy Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965958994792487, 28.793929474471426 ], [ -81.966172646178549, 28.79367220488562 ], [ -81.966333729384502, 28.793579460426219 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Branham Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966333729384502, 28.793579460426219 ], [ -81.96644600037547, 28.793730779329074 ], [ -81.966646133470633, 28.79382352463325 ], [ -81.966890199703982, 28.79391138721601 ], [ -81.967104977434829, 28.793935794243257 ], [ -81.96743690726295, 28.793921151059241 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Makoski Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96743690726295, 28.793921151059241 ], [ -81.967446670846201, 28.793677086728817 ], [ -81.967471077687392, 28.793535529615767 ], [ -81.967602874374194, 28.793301227968492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Makoski Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967602874374194, 28.793301227968492 ], [ -81.967788365936585, 28.793018114880983 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Louise Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967602874374194, 28.793301227968492 ], [ -81.967739551921142, 28.793345160162172 ], [ -81.968706052566972, 28.793340279607939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Louise Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968706052566972, 28.793340279607939 ], [ -81.969062389538479, 28.793340279939557 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Branham Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96743690726295, 28.793921151059241 ], [ -81.968596272461269, 28.793914766770534 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mustart Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968550970800464, 28.794161077752907 ], [ -81.968596272461269, 28.793914766770534 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mustart Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968596272461269, 28.793914766770534 ], [ -81.968706052566972, 28.793340279607939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thome Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986668997473132, 28.798816727622782 ], [ -81.986886109149381, 28.79902324694282 ], [ -81.986992016959263, 28.799129154499571 ], [ -81.987071448278343, 28.799240357793146 ], [ -81.987029083457756, 28.79943099067766 ], [ -81.98689140261142, 28.799536897913306 ], [ -81.98672567452526, 28.79960693800966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carlson Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987563385260572, 28.800860720353093 ], [ -81.987317110313754, 28.800628723523442 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carlson Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987317110313754, 28.800628723523442 ], [ -81.987149358114408, 28.800443126201884 ], [ -81.987056558959324, 28.800328912467808 ], [ -81.986960191750171, 28.800161160513547 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carlson Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986960191750171, 28.800161160513547 ], [ -81.98672567452526, 28.79960693800966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jernigan Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985393307089595, 28.800850010651612 ], [ -81.986960191750171, 28.800161160513547 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ogden Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985368318957512, 28.801845810584954 ], [ -81.985379027352081, 28.801449632616606 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gatlin Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985379027352081, 28.801449632616606 ], [ -81.985528934693505, 28.801456771764656 ], [ -81.987317110313754, 28.800628723523442 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ogden Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985379027352081, 28.801449632616606 ], [ -81.985393307089595, 28.800850010651612 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ogden Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985393307089595, 28.800850010651612 ], [ -81.985396877831192, 28.800407432233236 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Myers Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983044306364178, 28.799981525235367 ], [ -81.983319159185712, 28.799972514955314 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hawkins Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982999245413339, 28.800806078763177 ], [ -81.983048809737213, 28.800594308722953 ], [ -81.9830938679941, 28.800454630142802 ], [ -81.983075845530152, 28.800152743911035 ], [ -81.983044306364178, 28.799981525235367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mead Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982999245413339, 28.800806078763177 ], [ -81.983292121003359, 28.800900699593573 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hawkins Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98268834295645, 28.801441388629936 ], [ -81.982877587807366, 28.801062905574078 ], [ -81.982999245413339, 28.800806078763177 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Perkins Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98268834295645, 28.801441388629936 ], [ -81.982990231289747, 28.80156304364364 ], [ -81.983098369856421, 28.801594584118085 ], [ -81.983323658254122, 28.801617113310069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Perkins Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983323658254122, 28.801617113310069 ], [ -81.983650724395332, 28.801611126181189 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Livewell Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982778455625976, 28.802274953546355 ], [ -81.983098368257629, 28.802027137252061 ], [ -81.983260577573446, 28.801869435250762 ], [ -81.983319153198451, 28.801779319613484 ], [ -81.983323658254122, 28.801617113310069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hawkins Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982233258138052, 28.801815365464424 ], [ -81.982472064610135, 28.801635135680545 ], [ -81.982580205006755, 28.80150446970352 ], [ -81.98268834295645, 28.801441388629936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ormond Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982233258138052, 28.801815365464424 ], [ -81.982778455625976, 28.802274953546355 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ormond Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982778455625976, 28.802274953546355 ], [ -81.983048803116404, 28.802531780639523 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hawkins Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981791687614248, 28.802036147117338 ], [ -81.982233258138052, 28.801815365464424 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98170868825548, 28.804966547356408 ], [ -81.981756278383173, 28.804850429924134 ], [ -81.981935216347395, 28.804532534516191 ], [ -81.982131692257923, 28.804274387775919 ], [ -81.982635466441778, 28.803767966473345 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981346475479697, 28.804284233305328 ], [ -81.981272629561872, 28.80437530778374 ], [ -81.981267706608293, 28.804451613804734 ], [ -81.981270168235369, 28.804547610203123 ], [ -81.981339089074154, 28.804658376786382 ], [ -81.981420459995761, 28.804706596804099 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981513855875875, 28.804230080783384 ], [ -81.981460018850086, 28.80426077721712 ], [ -81.981346475479697, 28.804284233305328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981085559219039, 28.803683634184537 ], [ -81.98123570887067, 28.804001164413101 ], [ -81.981297245403212, 28.804156237115802 ], [ -81.981346475479697, 28.804284233305328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981420459995761, 28.804706596804099 ], [ -81.981472009940887, 28.80473714358434 ], [ -81.981523700771106, 28.804742066513437 ], [ -81.981622160354974, 28.804744528922328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981622160354974, 28.804744528922328 ], [ -81.981723082033753, 28.804641147712022 ], [ -81.981796926592523, 28.80456237962165 ], [ -81.981801850082022, 28.80439992355382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981420459995761, 28.804706596804099 ], [ -81.981437547848486, 28.804857756249358 ], [ -81.981415393774029, 28.805167901196505 ], [ -81.981404442521679, 28.805258793149328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981801850082022, 28.80439992355382 ], [ -81.981929848946876, 28.804267004166046 ], [ -81.982338457923646, 28.803954397637057 ], [ -81.982635466441778, 28.803767966473345 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981085559219039, 28.803683634184537 ], [ -81.981134728860056, 28.8043785845957 ], [ -81.981144461992912, 28.804545888115719 ], [ -81.981177568420605, 28.804730671791813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010507887398546, 28.799802134192628 ], [ -82.010551709698859, 28.79985965074118 ], [ -82.010647569785846, 28.799930860589797 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010915979365976, 28.799928123875553 ], [ -82.011033750772697, 28.799873347342725 ], [ -82.01109400565592, 28.799802137681336 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010935153002777, 28.799492646622802 ], [ -82.010792730648689, 28.799457039361126 ], [ -82.010647571757815, 28.799478950054855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011063879711315, 28.799610417539942 ], [ -82.010935153002777, 28.799492646622802 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955735917770824, 28.782270027868076 ], [ -81.955621672509665, 28.782201896200856 ], [ -81.955501744447162, 28.78214484298314 ], [ -81.955335243074259, 28.782079640759626 ], [ -81.955094221467903, 28.78200745034653 ], [ -81.954699506511943, 28.781923617673883 ], [ -81.954442185486073, 28.781865400175569 ], [ -81.954289655938169, 28.781831634420229 ], [ -81.954209315625135, 28.781809512155981 ], [ -81.954097321035846, 28.781773877727126 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Albatross Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959333475894965, 28.783557586648371 ], [ -81.95933144088859, 28.779700732772937 ], [ -81.959342961829222, 28.778596921580881 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0349637986414, 28.84555036046401 ], [ -82.035359885784203, 28.845665481930979 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trillium Rdg", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020489659528195, 28.847418570322009 ], [ -82.020606533335524, 28.847379608700063 ], [ -82.020729686405545, 28.847441670916027 ], [ -82.020843600564831, 28.847587282505962 ], [ -82.020892418379702, 28.847636216274662 ], [ -82.02103463386004, 28.847681677438143 ], [ -82.021362998220454, 28.847772099028823 ], [ -82.021841341910658, 28.847900069306906 ], [ -82.021865631160367, 28.847901789803672 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Joyce Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969282978040951, 28.793940710771871 ], [ -81.969945539700149, 28.794019312102773 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corley Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969945539700149, 28.794019312102773 ], [ -81.97001474200782, 28.793729205888585 ], [ -81.970162635182973, 28.793076291527349 ], [ -81.97017484889102, 28.793013028539445 ], [ -81.970177576053999, 28.792954538488349 ], [ -81.970176251100554, 28.792849494486443 ], [ -81.970173374545126, 28.792184615213738 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barraw Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969282978040951, 28.793940710771871 ], [ -81.969301515400204, 28.793860589593866 ], [ -81.969464340819769, 28.793137252065112 ], [ -81.969505041317234, 28.792972532277542 ], [ -81.969509145778261, 28.792840033911055 ], [ -81.969509184521598, 28.792708250154568 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barron Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9673187749665, 28.792649131416113 ], [ -81.967412196360229, 28.792697971036326 ], [ -81.967449456357485, 28.792712304281746 ], [ -81.967477232724605, 28.792721860182191 ], [ -81.967499588993761, 28.792729624577838 ], [ -81.967525334813786, 28.792733808506497 ], [ -81.967559887864581, 28.792737398125389 ], [ -81.96763915986854, 28.792739327416847 ], [ -81.969509184521598, 28.792708250154568 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nancy Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9673187749665, 28.792649131416113 ], [ -81.967377682117387, 28.79257095394706 ], [ -81.967467160556197, 28.792431313750399 ], [ -81.967495638119246, 28.792366862074118 ], [ -81.96753049378168, 28.792270420409672 ], [ -81.96754757523847, 28.792243924489608 ], [ -81.967572790456515, 28.79221170083818 ], [ -81.967596375257727, 28.792191652606206 ], [ -81.967624024501646, 28.792171605348344 ], [ -81.967652484802684, 28.792158720843602 ], [ -81.967689074709455, 28.792150134199968 ], [ -81.967739486387174, 28.792142268201101 ], [ -81.96779639938255, 28.792140849867021 ], [ -81.968142080418517, 28.792137828224529 ], [ -81.969218422192085, 28.792121128904959 ], [ -81.969500275691544, 28.792117407915452 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Joyce Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969945539700149, 28.794019312102773 ], [ -81.970273064941907, 28.794057766604912 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corley Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970173374545126, 28.792184615213738 ], [ -81.970172058742364, 28.791880457693178 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nancy Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969500275691544, 28.792117407915452 ], [ -81.969662889143891, 28.792115261097951 ], [ -81.96982685266785, 28.792116491746707 ], [ -81.969878345598445, 28.79211650329038 ], [ -81.969923060661628, 28.792123675862655 ], [ -81.969978616650721, 28.792132044601427 ], [ -81.970173374545126, 28.792184615213738 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barraw Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969185248719143, 28.79437009473083 ], [ -81.969282978040951, 28.793940710771871 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barraw Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969509184521598, 28.792708250154568 ], [ -81.969509200524115, 28.79265381810535 ], [ -81.969500275691544, 28.792117407915452 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003278902460579, 28.792557941322368 ], [ -82.003192261425284, 28.792557258022416 ], [ -82.002772411610636, 28.792527480309534 ], [ -82.002333366784782, 28.792455865743722 ], [ -82.001583864320253, 28.792250123880571 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004198372845892, 28.792815143875721 ], [ -82.004270340921067, 28.792845144874061 ], [ -82.004368517439644, 28.7928586562705 ], [ -82.004427470851553, 28.792839022168863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004273646686258, 28.789075943303523 ], [ -82.004270246302283, 28.78922047061824 ], [ -82.004268273951993, 28.792207800329368 ], [ -82.00423735227622, 28.792376151158631 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reagan Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004273646686258, 28.789075943303523 ], [ -82.004436880300361, 28.789084445140741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reagan Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00443517953228, 28.788965422761592 ], [ -82.004273647419126, 28.78895691997603 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004436880300361, 28.789084445140741 ], [ -82.00443517953228, 28.788965422761592 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reagan Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003597363886783, 28.788964463593882 ], [ -82.003511897631469, 28.788965417267153 ], [ -82.002831762787494, 28.788975614442805 ], [ -82.002597379154111, 28.789002563536467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004273647419126, 28.78895691997603 ], [ -82.004273646686258, 28.789075943303523 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004309416190139, 28.786621698614862 ], [ -82.004316041341639, 28.787069655042231 ], [ -82.004273647419126, 28.78895691997603 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004427470851553, 28.792839022168863 ], [ -82.004524338094456, 28.792794706927445 ], [ -82.004629027264698, 28.792683650880626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004629027264698, 28.792683650880626 ], [ -82.004618720058261, 28.79251530113919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00406288300691, 28.792659431369589 ], [ -82.004082737254919, 28.792720263959456 ], [ -82.004125689046887, 28.79276266983824 ], [ -82.004198372845892, 28.792815143875721 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00423735227622, 28.792376151158631 ], [ -82.004182380785181, 28.792401919005876 ], [ -82.004065564982611, 28.792492964398601 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0044278326735, 28.792364478375518 ], [ -82.004363956531037, 28.792352057921658 ], [ -82.004298306900111, 28.792355606627286 ], [ -82.00423735227622, 28.792376151158631 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991452947915107, 28.787613987640469 ], [ -81.991453033941767, 28.787614122090798 ], [ -81.991485696420781, 28.787665329609375 ], [ -81.991736337066655, 28.787898121701005 ], [ -81.992331216084537, 28.788248418526692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994548065419224, 28.789136054259991 ], [ -81.994167390619268, 28.788770985226908 ], [ -81.99391606220199, 28.78857443547593 ], [ -81.993642177774888, 28.788448771766966 ], [ -81.993352183249016, 28.788384327799612 ], [ -81.993058965970334, 28.788374659819681 ], [ -81.992727082536291, 28.788364993602048 ], [ -81.992331216084537, 28.788248418526692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Timber Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981789999161904, 28.806731485455053 ], [ -81.981726840753993, 28.807048737711703 ], [ -81.98171115803973, 28.807131535284871 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Timber Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98171115803973, 28.807131535284871 ], [ -81.981679980188005, 28.807296144221855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlene Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981064596166334, 28.807068329724284 ], [ -81.980353092049029, 28.806961818661794 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlene Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98171115803973, 28.807131535284871 ], [ -81.981221204222692, 28.807057324604365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlene Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981047882268442, 28.807151443785525 ], [ -81.981188388533539, 28.807216409248845 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981064596166334, 28.807068329724284 ], [ -81.981047882268442, 28.807151443785525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlene Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981221204222692, 28.807057324604365 ], [ -81.981064596166334, 28.807068329724284 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981188388533539, 28.807216409248845 ], [ -81.981221204222692, 28.807057324604365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002078178223982, 28.957263757567119 ], [ -82.002711959960308, 28.957231555689233 ], [ -82.002876816653469, 28.957205423396104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avalos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0016463390741, 28.95725558363538 ], [ -82.001530180781202, 28.957218611396573 ], [ -82.00116035859449, 28.957325725693817 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0065631044464, 28.956238915211621 ], [ -82.006393363818972, 28.956247715606814 ], [ -82.006180423466347, 28.956300931118662 ], [ -82.006089507047648, 28.956336647635698 ], [ -82.005885701642853, 28.95645893000578 ], [ -82.005637428326878, 28.956577506261585 ], [ -82.005485500375713, 28.956677556270193 ], [ -82.005340436780145, 28.956804296541499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005340436780145, 28.956804296541499 ], [ -82.005789355306547, 28.956662736218139 ], [ -82.006108034075709, 28.956544158562199 ], [ -82.006426714250068, 28.956373704706831 ], [ -82.0065631044464, 28.956238915211621 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Willow Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047942671831422, 28.927762346714161 ], [ -82.047882092972856, 28.927780471667464 ], [ -82.047838855715057, 28.927801393029483 ], [ -82.047810463942341, 28.927848270888468 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Willow Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047929884890408, 28.928009194650318 ], [ -82.048006222940828, 28.928005023520029 ], [ -82.048049460283522, 28.927972945232465 ], [ -82.048080144303086, 28.927917156355875 ], [ -82.048077315709961, 28.927845536820321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Willow Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048077315709961, 28.927845536820321 ], [ -82.048056434059177, 28.927805577955155 ], [ -82.048022961375338, 28.927780472589653 ], [ -82.047989487108765, 28.927772103878652 ], [ -82.047942671831422, 28.927762346714161 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Willow Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047810463942341, 28.927848270888468 ], [ -82.047799802653742, 28.927889260460322 ], [ -82.047815143918157, 28.927940865421967 ], [ -82.047838854870349, 28.927968760553874 ], [ -82.047889064829974, 28.928005023267627 ], [ -82.047929884890408, 28.928009194650318 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045664809726787, 28.928490512400504 ], [ -82.045669092696883, 28.9285186661638 ], [ -82.04569231710289, 28.928549035927055 ], [ -82.045713755333594, 28.928568687928774 ], [ -82.045753977741157, 28.928580308612354 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04589924774173, 28.928529757420012 ], [ -82.045906699012662, 28.928513306982307 ], [ -82.045913845503378, 28.928484723492197 ], [ -82.045910272515812, 28.928452566918864 ], [ -82.045900446256724, 28.928427555918187 ], [ -82.045878115146877, 28.928397184987237 ], [ -82.04584317056181, 28.928380478134617 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04584317056181, 28.928380478134617 ], [ -82.045803975160709, 28.928369493249562 ], [ -82.045765564664066, 28.928368599351742 ], [ -82.045723581677905, 28.928383784628693 ], [ -82.04569410507591, 28.928407902926207 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045753977741157, 28.928580308612354 ], [ -82.04576553570034, 28.928587459925897 ], [ -82.045807546653805, 28.928589233252435 ], [ -82.045847743825362, 28.928575835093774 ], [ -82.045875435086373, 28.928557076993901 ], [ -82.04589924774173, 28.928529757420012 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moyer Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956045146348359, 28.845526752564552 ], [ -81.956284025182669, 28.845493622880138 ], [ -81.95638991128817, 28.84548172517351 ], [ -81.956537437374607, 28.845488864173603 ], [ -81.956644514391684, 28.84548410569862 ], [ -81.956763487737192, 28.845488864881716 ], [ -81.95688246116859, 28.845498381820416 ], [ -81.9569895375123, 28.845515038406305 ], [ -81.957106130783515, 28.845550730288515 ], [ -81.957172755227774, 28.845569765828966 ], [ -81.957284591227221, 28.845598319701512 ], [ -81.95751301964259, 28.845655426867072 ], [ -81.957743592633463, 28.845698999727283 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Moyer Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957743592633463, 28.845698999727283 ], [ -81.957656978548343, 28.845614975887791 ], [ -81.957359544309767, 28.845505521456378 ], [ -81.957016901802703, 28.845415101408914 ], [ -81.956724226162507, 28.84538654787027 ], [ -81.956531490269583, 28.845403203617391 ], [ -81.956134118310828, 28.845472206537703 ], [ -81.956045146348359, 28.845526752564552 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982130696048429, 28.789381369015089 ], [ -81.982068935194292, 28.789327512484412 ], [ -81.982030081076672, 28.789310575364023 ], [ -81.981990232547403, 28.789298621578421 ], [ -81.981918501632862, 28.789284673884467 ], [ -81.981854742962355, 28.78928666660584 ], [ -81.981770060344118, 28.789311572520333 ], [ -81.981702315198064, 28.789359391344718 ], [ -81.981660472666277, 28.789409204183258 ], [ -81.98164054676603, 28.789441082912933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981793133181426, 28.789774812754001 ], [ -81.981845775476032, 28.789790887391888 ], [ -81.981918686082182, 28.789790888218125 ], [ -81.981947547341505, 28.789790887594506 ], [ -81.981994635554059, 28.789780254742436 ], [ -81.982035988582268, 28.789764951631838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98164054676603, 28.789441082912933 ], [ -81.981626599364745, 28.789502849800218 ], [ -81.981618629613322, 28.789570594431677 ], [ -81.981635565153937, 28.789633357190255 ], [ -81.981691816682712, 28.789719839027946 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982132269747865, 28.789697197117199 ], [ -81.982169555533744, 28.789627381035721 ], [ -81.982185495426805, 28.789538715479974 ], [ -81.982169556249758, 28.789452042506898 ], [ -81.982130696048429, 28.789381369015089 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hawkins Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981987832928169, 28.790600642911901 ], [ -81.982006168577911, 28.790560856045843 ], [ -81.982009156155144, 28.79049809330942 ], [ -81.981966319910867, 28.789922267009779 ], [ -81.981988237093759, 28.789825632147092 ], [ -81.982035988582268, 28.789764951631838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hawkins Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981793133181426, 28.789774812754001 ], [ -81.981843781771119, 28.78988042462321 ], [ -81.981866694314988, 28.789989014871654 ], [ -81.981911524112945, 28.790502078328618 ], [ -81.981937427005334, 28.790556871210747 ], [ -81.981987832928169, 28.790600642911901 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981691816682712, 28.789719839027946 ], [ -81.98170147077343, 28.789730128527534 ], [ -81.981748559682572, 28.789755951946429 ], [ -81.981793133181426, 28.789774812754001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982035988582268, 28.789764951631838 ], [ -81.982069065344618, 28.789749876589905 ], [ -81.982108559322128, 28.789722534537439 ], [ -81.982132269747865, 28.789697197117199 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976854340900985, 28.790932928704027 ], [ -81.976889126825156, 28.790897078554853 ], [ -81.976920088544091, 28.790858833901343 ], [ -81.976948941148805, 28.790788774201626 ], [ -81.976967165416028, 28.790715158459236 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976414418608272, 28.790909165542825 ], [ -81.976508493673037, 28.790973569323818 ], [ -81.976584984355497, 28.790999064918317 ], [ -81.976647709483572, 28.791002227619458 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976967165416028, 28.790715158459236 ], [ -81.976957575055394, 28.790677990514492 ], [ -81.976945584723751, 28.790654859450683 ], [ -81.976920089377415, 28.790598402719475 ], [ -81.976881842861204, 28.790545588233858 ], [ -81.976827056392352, 28.790505302216975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976827056392352, 28.790505302216975 ], [ -81.976796247089027, 28.790485488405711 ], [ -81.976708828570594, 28.790459991034712 ], [ -81.976612303513576, 28.790450885257005 ], [ -81.976495746698205, 28.790494593740899 ], [ -81.976390467881089, 28.790598240292493 ], [ -81.976336111728585, 28.790710234020995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972466607672587, 28.791078984428196 ], [ -81.97251359093633, 28.791056609447494 ], [ -81.972574411041066, 28.791020117870953 ], [ -81.972611610028281, 28.790975075644159 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972066199841365, 28.790873686839138 ], [ -81.972084810744022, 28.790928887935014 ], [ -81.972114063252917, 28.790960602208095 ], [ -81.972153335595564, 28.79100317969927 ], [ -81.972211317450373, 28.791066040545253 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972211317450373, 28.791066040545253 ], [ -81.972300722067033, 28.79107789554574 ], [ -81.972365789168478, 28.791082971818291 ], [ -81.972466607672587, 28.791078984428196 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972150455317689, 28.790618199779008 ], [ -81.972084811971968, 28.79067344655903 ], [ -81.972069606331502, 28.790764675429649 ], [ -81.972066199841365, 28.790873686839138 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972611610028281, 28.790975075644159 ], [ -81.972647396340378, 28.790922806489668 ], [ -81.972662601088629, 28.79086806892283 ], [ -81.972674765493622, 28.790810290841268 ], [ -81.972645534987905, 28.790698665993521 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972503363869848, 28.790599313912089 ], [ -81.972446452361467, 28.790563860281523 ], [ -81.972410531878126, 28.79055079824051 ], [ -81.972380675794781, 28.790547066456842 ], [ -81.972344756059528, 28.79054660069708 ], [ -81.972305942667816, 28.790550089172452 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Catherine Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972250643958603, 28.791965850152067 ], [ -81.972222800192512, 28.792332806254354 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Catherine Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972250643958603, 28.791965850152067 ], [ -81.972295662424514, 28.791853892260903 ], [ -81.972377145743536, 28.791182101419473 ], [ -81.972466607672587, 28.791078984428196 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978608928169578, 28.798499173051017 ], [ -81.978645976563172, 28.798464389384868 ], [ -81.978711209916341, 28.798422180539756 ], [ -81.978734234177708, 28.798330086040451 ], [ -81.978718885856281, 28.798241829308818 ], [ -81.97867667584643, 28.798157409454365 ], [ -81.978604173037667, 28.798124015956162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dray Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976922016986961, 28.798657173723097 ], [ -81.977344708088495, 28.798517678703362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dray Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977852635796893, 28.798339694765509 ], [ -81.977827965009865, 28.798344075030219 ], [ -81.977478353729282, 28.798450735155146 ], [ -81.977344708088495, 28.798517678703362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981513855875875, 28.804230080783384 ], [ -81.981417858582375, 28.804119315043607 ], [ -81.98118841482443, 28.803651325133906 ], [ -81.981010472772738, 28.803314996646932 ], [ -81.980550953266672, 28.80242724340556 ], [ -81.980449271868508, 28.802231702997361 ], [ -81.980322169800246, 28.802043984533412 ], [ -81.980130540569135, 28.80184844328063 ], [ -81.979815718206879, 28.80161379510584 ], [ -81.979514585067847, 28.801400656697645 ], [ -81.979320999756439, 28.801261823403944 ], [ -81.979178254016261, 28.80112103339512 ], [ -81.979039419840205, 28.800954823901613 ], [ -81.978916229067764, 28.800726042262578 ], [ -81.97885561173328, 28.800581342429265 ], [ -81.978802816083402, 28.800360382163994 ], [ -81.978791084234686, 28.800158976063045 ], [ -81.978796951102822, 28.799844155671941 ], [ -81.978783264692353, 28.799394413899229 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978783264692353, 28.799394413899229 ], [ -81.978785221938125, 28.799032665383418 ], [ -81.978820420044997, 28.798780417732168 ], [ -81.978849752442628, 28.798528170942557 ], [ -81.978862288382572, 28.79841969057652 ], [ -81.978857466019733, 28.798337998039127 ], [ -81.978850214862362, 28.79825644317166 ], [ -81.978840540025885, 28.798175084624905 ], [ -81.978828449699677, 28.798093976538357 ], [ -81.978813948999388, 28.798013175757944 ], [ -81.978797050211497, 28.797932737325887 ], [ -81.97876402065765, 28.797833130314974 ], [ -81.978716606286397, 28.797697662203824 ], [ -81.978651581336777, 28.797556774689959 ], [ -81.978547270439705, 28.797371182098278 ], [ -81.978447024247728, 28.797162561246477 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978281818866762, 28.79821966978221 ], [ -81.978269922223163, 28.798276363770547 ], [ -81.978258411355384, 28.798330085601972 ], [ -81.978292731431708, 28.798404682636008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978369266332763, 28.798134854781797 ], [ -81.978281818866762, 28.79821966978221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978292731431708, 28.798404682636008 ], [ -81.978374996036948, 28.798494348795881 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978604173037667, 28.798124015956162 ], [ -81.978581135428286, 28.79807290980294 ], [ -81.978578426905443, 28.797955051993526 ], [ -81.978566236104214, 28.797688179330418 ], [ -81.978518822195994, 28.797438916875386 ], [ -81.978447024247728, 28.797162561246477 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978783264692353, 28.799394413899229 ], [ -81.978593850170626, 28.79869310740461 ], [ -81.978584863598428, 28.798578526706436 ], [ -81.978608928169578, 28.798499173051017 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978374996036948, 28.798494348795881 ], [ -81.978446437165985, 28.798525786031192 ], [ -81.978534695136929, 28.798514274033593 ], [ -81.978608928169578, 28.798499173051017 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978604173037667, 28.798124015956162 ], [ -81.97852318456043, 28.798099850817785 ], [ -81.978450275360316, 28.798099849959506 ], [ -81.978372701542639, 28.79813241367723 ], [ -81.978369266332763, 28.798134854781797 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Traverse Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029096211681178, 28.844753795008945 ], [ -82.029186291654881, 28.844782061509793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leland Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029760266221359, 28.846127099542826 ], [ -82.029628340316876, 28.84609230520778 ], [ -82.029476344878944, 28.846052462113118 ], [ -82.029337266732796, 28.846020853255688 ], [ -82.029242440933047, 28.845993458592559 ], [ -82.029139185832662, 28.845961850066686 ], [ -82.029012752566715, 28.84592391845673 ], [ -82.028879996654268, 28.845883881164436 ], [ -82.028700876820892, 28.845821878613883 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leland Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028700876820892, 28.845821878613883 ], [ -82.028760347860668, 28.845944062841721 ], [ -82.028922140050071, 28.846020850513341 ], [ -82.029257191194418, 28.846100928224182 ], [ -82.029760266221359, 28.846127099542826 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brownwood Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027559338152798, 28.846036850521752 ], [ -82.027411274364852, 28.84603495169349 ], [ -82.027284439604841, 28.846027798002503 ], [ -82.027145722993723, 28.846012640361469 ], [ -82.026991761599518, 28.845987493413663 ], [ -82.026910389280758, 28.845967833565037 ], [ -82.026841856725127, 28.845946795163041 ], [ -82.026791031626175, 28.845927502873725 ], [ -82.026748201723493, 28.845906087700229 ], [ -82.02671393735271, 28.845884672666191 ], [ -82.02666969360115, 28.845860688875128 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Nook Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020374220444026, 28.846399160159638 ], [ -82.020329338313999, 28.846374566227134 ], [ -82.020239590781159, 28.846283507706023 ], [ -82.020178577318632, 28.846174554955983 ], [ -82.020021686793626, 28.845845518227883 ], [ -82.02000383998336, 28.845771898922081 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Nook Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020833455944654, 28.846727526360645 ], [ -82.020721620954205, 28.846665660156948 ], [ -82.020490814868552, 28.846522892566725 ], [ -82.020407533427488, 28.84645150799334 ], [ -82.020374220444026, 28.846399160159638 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Davock Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020240969731574, 28.846432471010282 ], [ -82.020374220444026, 28.846399160159638 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brownwood Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020791768913938, 28.846834042574727 ], [ -82.020833455944654, 28.846727526360645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Nook Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022149296575734, 28.847160593693594 ], [ -82.02183520712029, 28.847098726142708 ], [ -82.021457334828725, 28.846999842469213 ], [ -82.021020716195494, 28.846847617759099 ], [ -82.020833455944654, 28.846727526360645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lapointe Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022139777758028, 28.847239114765834 ], [ -82.022149296575734, 28.847160593693594 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Nook Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023672152474248, 28.846856031254475 ], [ -82.023531764156388, 28.84696786522602 ], [ -82.023319991353873, 28.847084457168993 ], [ -82.023079664923102, 28.847153460494372 ], [ -82.022910724029103, 28.847177253350672 ], [ -82.022591875918067, 28.847212943851872 ], [ -82.022377724117817, 28.847203424824833 ], [ -82.022149296575734, 28.847160593693594 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kiessel Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023757813336687, 28.846896483253023 ], [ -82.023672152474248, 28.846856031254475 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Nook Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024509391869103, 28.845819869213866 ], [ -82.024484456103252, 28.845888189907338 ], [ -82.024436607136224, 28.845992043829995 ], [ -82.024360248499605, 28.846128038364959 ], [ -82.024220334294057, 28.846320772828406 ], [ -82.024004754633509, 28.846566330396918 ], [ -82.023789174781342, 28.84676049227016 ], [ -82.023672152474248, 28.846856031254475 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Signature Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027216511928103, 28.843094338336332 ], [ -82.027227274136294, 28.842909311086988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Signature Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027227274136294, 28.842909311086988 ], [ -82.027076869164503, 28.843048840741453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004530679000354, 28.798509177910393 ], [ -82.004552615044801, 28.798568265245972 ], [ -82.004748517457472, 28.798880826162254 ], [ -82.004827885507396, 28.799122616519092 ], [ -82.004856510812914, 28.799249813760344 ], [ -82.004856510715683, 28.799247522788775 ], [ -82.004877332802508, 28.799383889557468 ], [ -82.004886444630344, 28.799528277331245 ], [ -82.004882546229311, 28.799632939383503 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005037578772374, 28.799641530031277 ], [ -82.00503605493742, 28.799512230502259 ], [ -82.005025641748702, 28.799363259031686 ], [ -82.004998313956833, 28.79920970253194 ], [ -82.004955376260114, 28.799065315805009 ], [ -82.004909837669729, 28.798941556006191 ], [ -82.004849963722521, 28.798831220325187 ], [ -82.004682706723841, 28.798500221778742 ], [ -82.004660926757509, 28.798451823255071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Catherine Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963343098034244, 28.789215930091327 ], [ -81.96293419203073, 28.788689125809096 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marilee Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967492361134532, 28.790378919345855 ], [ -81.968281027923695, 28.790682661263038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marilee Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967911661119061, 28.789028089423798 ], [ -81.967884291892403, 28.789135801116508 ], [ -81.967850897434602, 28.789224853317382 ], [ -81.967753494237328, 28.789407596369536 ], [ -81.967731231730568, 28.789489227869655 ], [ -81.967721503442675, 28.789590258509516 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marilee Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967721503442675, 28.789590258509516 ], [ -81.967851388556014, 28.789408461658255 ], [ -81.967946443769492, 28.789269379136023 ], [ -81.967997464533155, 28.789201662707057 ], [ -81.968093438112362, 28.789105993320113 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marilee Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968600758269986, 28.790799895383966 ], [ -81.968840555634301, 28.790895812945035 ], [ -81.969181601180907, 28.791029033304746 ], [ -81.969325479674623, 28.791071663517599 ], [ -81.969474686933324, 28.791071664080004 ], [ -81.96961323673149, 28.790997061490899 ], [ -81.970077396513304, 28.790063360277227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marilee Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967721503442675, 28.789590258509516 ], [ -81.96741775760654, 28.790213726467236 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marilee Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968600758269986, 28.790799895383966 ], [ -81.96854335044344, 28.790726353337615 ], [ -81.968531484098662, 28.790672003311055 ], [ -81.968479808111539, 28.790616037841925 ], [ -81.968423325879598, 28.790611624913229 ], [ -81.968373021976532, 28.790621332817238 ], [ -81.96832801317457, 28.790646042913213 ], [ -81.968281027923695, 28.790682661263038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marilee Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968281027923695, 28.790682661263038 ], [ -81.968289181042849, 28.790740472613386 ], [ -81.968311244544125, 28.790793424672543 ], [ -81.968358017871708, 28.790830490995727 ], [ -81.968413617982264, 28.790839316057976 ], [ -81.968467453264779, 28.790827844041768 ], [ -81.96852128689487, 28.790804898184025 ], [ -81.968600758269986, 28.790799895383966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marilee Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967492361134532, 28.790378919345855 ], [ -81.967489623227436, 28.790297089664023 ], [ -81.967466243382347, 28.790242946094793 ], [ -81.96741775760654, 28.790213726467236 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marilee Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96741775760654, 28.790213726467236 ], [ -81.96732716786542, 28.790219055216557 ], [ -81.967270588386739, 28.790238024338372 ], [ -81.967225919010346, 28.790293658244522 ], [ -81.967252563213663, 28.790373590773434 ], [ -81.96728289426656, 28.790426294172022 ], [ -81.96735180297344, 28.790447213008015 ], [ -81.967405947902705, 28.790431216386462 ], [ -81.967492361134532, 28.790378919345855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972150455317689, 28.790618199779008 ], [ -81.972085143669474, 28.790643679300988 ], [ -81.971997132848543, 28.790641845542925 ], [ -81.971867866954426, 28.790619842707695 ], [ -81.971223370849003, 28.790413569148754 ], [ -81.970751228582344, 28.790227463433983 ], [ -81.970308424661539, 28.79003035702522 ], [ -81.969968298749393, 28.789858002742594 ], [ -81.96957591746893, 28.789638894132178 ], [ -81.969238542467423, 28.789434454152495 ], [ -81.968863580984703, 28.789185091959709 ], [ -81.968547292182222, 28.788995318623375 ], [ -81.96849045121678, 28.7889540641645 ], [ -81.968447362131002, 28.788916476302056 ], [ -81.968409471525902, 28.788878059517842 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970077396513304, 28.790063360277227 ], [ -81.97038268301705, 28.790210960659181 ], [ -81.970828237563964, 28.790398900812161 ], [ -81.971394808242067, 28.790607008541144 ], [ -81.971682677158796, 28.790697769142469 ], [ -81.971960460750694, 28.790775695224308 ], [ -81.972022802125863, 28.790806865101231 ], [ -81.972048472171593, 28.790828867944381 ], [ -81.972066199841365, 28.790873686839138 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965672965074702, 28.788004438361028 ], [ -81.965822985602557, 28.788078361622222 ], [ -81.966035966898076, 28.788165396807031 ], [ -81.966221300779551, 28.788251407809678 ], [ -81.96641687386844, 28.788333322803382 ], [ -81.966566370779603, 28.788385543553751 ], [ -81.966709722055015, 28.78842547671189 ], [ -81.966909932765461, 28.788475129001959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966944089794424, 28.788347606155863 ], [ -81.966748633383631, 28.788293389382297 ], [ -81.966652382423135, 28.788265743025207 ], [ -81.966300144240222, 28.788174611790318 ], [ -81.965672965074702, 28.788004438361028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968297860683663, 28.789061343731003 ], [ -81.96837465749158, 28.788975332500073 ], [ -81.968409471525902, 28.788878059517842 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967915298554075, 28.788636342611099 ], [ -81.967865741529721, 28.788721150091522 ], [ -81.967837467968081, 28.788805506974153 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967837467968081, 28.788805506974153 ], [ -81.967866667887307, 28.788915025076907 ], [ -81.967911661119061, 28.789028089423798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967911661119061, 28.789028089423798 ], [ -81.967995608684632, 28.789078287995604 ], [ -81.968093438112362, 28.789105993320113 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968093438112362, 28.789105993320113 ], [ -81.968193196051487, 28.789097767991148 ], [ -81.968297860683663, 28.789061343731003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968367014181979, 28.788680145040736 ], [ -81.968273902495895, 28.788630243201869 ], [ -81.968188247920722, 28.788599351206482 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968297860683663, 28.789061343731003 ], [ -81.968353850097614, 28.789066827643047 ], [ -81.968395105470748, 28.789075078174399 ], [ -81.968485866901162, 28.789108081745312 ], [ -81.969215623596355, 28.789571053800234 ], [ -81.969589669837532, 28.789798412778104 ], [ -81.969933461685045, 28.789989102044839 ], [ -81.970077396513304, 28.790063360277227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043986746378778, 28.79640057412481 ], [ -82.0441712167421, 28.796322630116112 ], [ -82.044311518295245, 28.796291453404493 ], [ -82.044493391353299, 28.796286257817105 ], [ -82.044908977789163, 28.796308235678705 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044908977789163, 28.796308235678705 ], [ -82.045006102189561, 28.796301577338429 ], [ -82.045118330799568, 28.796309995219225 ], [ -82.045382067827148, 28.796363305441311 ], [ -82.045662638638959, 28.796439060888659 ], [ -82.045836594327625, 28.796475535802504 ], [ -82.046021771108101, 28.796486760038878 ], [ -82.046282701974192, 28.79647834406483 ], [ -82.046529605166029, 28.796439066041735 ], [ -82.046850620466216, 28.796351078059082 ], [ -82.047127224309079, 28.796209002817907 ], [ -82.047200190809505, 28.79615736550684 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047673482284083, 28.795678401787139 ], [ -82.047835721130909, 28.795415960179092 ], [ -82.048092705373122, 28.794951968193555 ], [ -82.048240885782747, 28.794805400542316 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048240885782747, 28.794805400542316 ], [ -82.048749441252326, 28.794302382083849 ], [ -82.048781977795628, 28.794268874885699 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049254824026022, 28.7937782108128 ], [ -82.049399036146525, 28.793609966140522 ], [ -82.049472060587817, 28.793480383104082 ], [ -82.049523834459421, 28.793304932318446 ], [ -82.049546187430735, 28.79301920155909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Adamsville Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04700740024758, 28.795176751681744 ], [ -82.047088328749197, 28.795144718045893 ], [ -82.047312292228739, 28.795049417365725 ], [ -82.047674448223816, 28.794730152379856 ], [ -82.048355872794204, 28.794029679090166 ], [ -82.048941992948585, 28.7934149767615 ], [ -82.049253466770566, 28.793117975670274 ], [ -82.049394403875525, 28.793043194605929 ], [ -82.049546187430735, 28.79301920155909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alsobrook Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046575776263822, 28.796000910134133 ], [ -82.046250555312994, 28.795485114800474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blanchard Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048535538839729, 28.795092929536729 ], [ -82.048240885782747, 28.794805400542316 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Red Fox Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047673482284083, 28.795678401787139 ], [ -82.047862105273168, 28.795736086878541 ], [ -82.048089104413023, 28.795751221467782 ], [ -82.04852040282222, 28.795728524576084 ], [ -82.048921434166743, 28.795728526639799 ], [ -82.049087900933614, 28.795667995154112 ], [ -82.049246800031213, 28.795630162940842 ], [ -82.049163568284982, 28.795380464315983 ], [ -82.049352736725766, 28.794964303232749 ], [ -82.049307337215765, 28.794722171391278 ], [ -82.049095472695825, 28.794533005341286 ], [ -82.048781977795628, 28.794268874885699 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barnhill Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045569414109522, 28.796008470521386 ], [ -82.045477470711688, 28.795809066492442 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Red Fox Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04700740024758, 28.795176751681744 ], [ -82.047294609218582, 28.79547125267392 ], [ -82.047673482284083, 28.795678401787139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Adamsville Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044908977789163, 28.796308235678705 ], [ -82.044980851641427, 28.796122011925494 ], [ -82.045036965996758, 28.796018202377486 ], [ -82.045146390303273, 28.795936837471761 ], [ -82.045477470711688, 28.795809066492442 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Adamsville Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045477470711688, 28.795809066492442 ], [ -82.046250555312994, 28.795485114800474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Adamsville Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046250555312994, 28.795485114800474 ], [ -82.046278246223309, 28.795473510764648 ], [ -82.046568922541496, 28.795335322683453 ], [ -82.046859599605511, 28.795235256672711 ], [ -82.04700740024758, 28.795176751681744 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Coker Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963343098034244, 28.789215930091327 ], [ -81.963675937431844, 28.789025244129093 ], [ -81.964446501892567, 28.788629985598995 ], [ -81.964821802229878, 28.788410396964249 ], [ -81.964873705513739, 28.788342523131583 ], [ -81.964881690803139, 28.78827864319608 ], [ -81.964885683433096, 28.788202785805204 ], [ -81.964849750787991, 28.78813091975335 ], [ -81.96453667662702, 28.787838176602772 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Robert Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962297302930011, 28.790502643688484 ], [ -81.962436672447552, 28.790493128057005 ], [ -81.96256953489349, 28.790437326296349 ], [ -81.962869438147436, 28.790258931732481 ], [ -81.96350026205775, 28.789887627168941 ], [ -81.963672294793341, 28.789796936147823 ], [ -81.963742712951444, 28.789745120824414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gough Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963042680598093, 28.79092918094738 ], [ -81.963132942865315, 28.79126903862787 ], [ -81.963272682413489, 28.791516575104794 ], [ -81.963496265149502, 28.791740156119612 ], [ -81.963711861726324, 28.791903849868323 ], [ -81.964011301836322, 28.792075528633742 ], [ -81.964298766072702, 28.792219258909846 ], [ -81.96463831153882, 28.792364645380957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Howard Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96463831153882, 28.792364645380957 ], [ -81.964666081007536, 28.792303102272115 ], [ -81.964777873363133, 28.792075529346828 ], [ -81.964927027089701, 28.791795317880226 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dominique Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963732701669429, 28.790519918614997 ], [ -81.963763768730999, 28.790654192147606 ], [ -81.963751790573752, 28.790921689702419 ], [ -81.963811678482671, 28.791073406380118 ], [ -81.963915484436455, 28.791213143966964 ], [ -81.964119103411889, 28.791388815686481 ], [ -81.964422536480214, 28.791536539096871 ], [ -81.964927027089701, 28.791795317880226 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cassady Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963042680598093, 28.79092918094738 ], [ -81.963732701669429, 28.790519918614997 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Catherine Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965074168499811, 28.790338363420474 ], [ -81.964836388177062, 28.790340478778404 ], [ -81.964493465720253, 28.790279114420212 ], [ -81.964201080148314, 28.790181652954274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cassady Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963732701669429, 28.790519918614997 ], [ -81.964139069997472, 28.790278895027019 ], [ -81.964201080148314, 28.790181652954274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Catherine Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964201080148314, 28.790181652954274 ], [ -81.9639628401777, 28.78998312096909 ], [ -81.963742712951444, 28.789745120824414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roudell Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963450181821329, 28.792503138001383 ], [ -81.963246003435131, 28.792426313575429 ], [ -81.963009059586895, 28.792257821945686 ], [ -81.962729007254794, 28.79199009507418 ], [ -81.962624684421797, 28.791862916651272 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Coker Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962211460763669, 28.789869607805652 ], [ -81.962817536727798, 28.789536285062812 ], [ -81.963292651325162, 28.789244831889327 ], [ -81.963343098034244, 28.789215930091327 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Catherine Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963742712951444, 28.789745120824414 ], [ -81.963343098034244, 28.789215930091327 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Catherine Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96293419203073, 28.788689125809096 ], [ -81.962689022162408, 28.788420150497917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roudell Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962211460763669, 28.789869607805652 ], [ -81.962145536173622, 28.789688312658281 ], [ -81.962008635368619, 28.789419778011187 ], [ -81.962008635839538, 28.78926708216407 ], [ -81.962045494278783, 28.789214429019651 ], [ -81.96214553768894, 28.789135447891223 ], [ -81.962356155354527, 28.789003814261473 ], [ -81.96293419203073, 28.788689125809096 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965672965074702, 28.788004438361028 ], [ -81.965670274673329, 28.788003386478945 ], [ -81.965622844693442, 28.787982566108532 ], [ -81.965576522577479, 28.78795989535892 ], [ -81.965531400497042, 28.787935416663547 ], [ -81.96548756959649, 28.787909180576627 ], [ -81.965445118970422, 28.787881240358725 ], [ -81.965404132591573, 28.787851650171618 ], [ -81.965337911540757, 28.787800199430109 ], [ -81.965273328886227, 28.787747154689814 ], [ -81.965210436852288, 28.787692556570651 ], [ -81.965149281516091, 28.787636449300287 ], [ -81.965089911004171, 28.787578873497619 ], [ -81.965057440781706, 28.787545580511757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roudell Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96453667662702, 28.787838176602772 ], [ -81.965057440781706, 28.787545580511757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roudell Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962297302930011, 28.790502643688484 ], [ -81.962296650077491, 28.79047826479707 ], [ -81.962273963849924, 28.790230458761453 ], [ -81.962250844129073, 28.789977909128567 ], [ -81.962211460763669, 28.789869607805652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cassady Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962745666065103, 28.791105345255076 ], [ -81.963042680598093, 28.79092918094738 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Howard Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964518355057336, 28.792630488549815 ], [ -81.96463831153882, 28.792364645380957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dominique Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964927027089701, 28.791795317880226 ], [ -81.965193099580304, 28.791931799616375 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roudell Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962370894012508, 28.791335167621018 ], [ -81.962308761093269, 28.790930944465238 ], [ -81.962297302930011, 28.790502643688484 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roudell Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962624684421797, 28.791862916651272 ], [ -81.962381290762792, 28.791402803433563 ], [ -81.962370894012508, 28.791335167621018 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Waxman Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979362870493304, 28.822967562497681 ], [ -81.979315580438566, 28.822974160113873 ], [ -81.978621631214907, 28.823061378560563 ], [ -81.977535837509421, 28.823180606377107 ], [ -81.977149794634457, 28.823173928144062 ], [ -81.976935966596599, 28.823092088186904 ], [ -81.976758057749635, 28.822959386428575 ], [ -81.976709467598667, 28.822905693302392 ], [ -81.976631205236799, 28.82278711534056 ], [ -81.976602278669816, 28.822723358532446 ], [ -81.976566204946963, 28.822589936770566 ], [ -81.976560199112768, 28.822452885750632 ], [ -81.976584489379235, 28.822317411841556 ], [ -81.976702479341839, 28.822027366963006 ], [ -81.976816391204068, 28.821794618819702 ], [ -81.977036055260314, 28.821436551603806 ], [ -81.977215028098882, 28.821190683814727 ], [ -81.977473360562442, 28.820973126461094 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Unnamed", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979362870493304, 28.822967562497681 ], [ -81.979272308400311, 28.822647309903182 ], [ -81.979235732511825, 28.822543454746235 ], [ -81.979126081101398, 28.822338025172179 ], [ -81.97901624220134, 28.822074301770094 ], [ -81.97886582490753, 28.821884483659822 ], [ -81.978520224963958, 28.821683889551796 ], [ -81.978149617931152, 28.821541918946902 ], [ -81.977906922078191, 28.821438025162781 ], [ -81.977762260709412, 28.821343539370389 ], [ -81.977578922263589, 28.821169168201681 ], [ -81.977473360562442, 28.820973126461094 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wright Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981404102234336, 28.822618581840995 ], [ -81.981518275690405, 28.821999409430269 ], [ -81.981574891405572, 28.821876666141431 ], [ -81.981658358390291, 28.821766446050678 ], [ -81.981826191178953, 28.821634243584555 ], [ -81.981960397867795, 28.821551898008689 ], [ -81.982106802977114, 28.821458811030691 ], [ -81.98220847738942, 28.821376459953093 ], [ -81.982293892851629, 28.821243972522886 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985597255094888, 28.823476770012363 ], [ -81.985579681161695, 28.823475160202417 ], [ -81.985324067173721, 28.82345176167075 ], [ -81.984938990288356, 28.82343638229813 ], [ -81.984691300719774, 28.823434649711782 ], [ -81.984468768458839, 28.823439736541168 ], [ -81.984170763418703, 28.823456743526247 ], [ -81.98395596784998, 28.823475461612038 ], [ -81.983717949290721, 28.823500994381337 ], [ -81.983499282213998, 28.823528233580298 ], [ -81.983054781759478, 28.8235877674514 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Waxman Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983054781759478, 28.8235877674514 ], [ -81.983112358546904, 28.823515386964061 ], [ -81.983135388450961, 28.823436426072792 ], [ -81.983089327698792, 28.823332789133424 ], [ -81.983015301829667, 28.823306469323356 ], [ -81.98236880439714, 28.823387074757566 ], [ -81.982253652292655, 28.823375559613776 ], [ -81.982156595121396, 28.823321273712725 ], [ -81.981983464964387, 28.823003298374022 ], [ -81.981904900527852, 28.822890139990967 ], [ -81.98180394190868, 28.82279171593926 ], [ -81.981618308568358, 28.82267895786012 ], [ -81.981477970940844, 28.822630812051443 ], [ -81.981404102234336, 28.822618581840995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Waxman Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981404102234336, 28.822618581840995 ], [ -81.981330347273058, 28.822606368749845 ], [ -81.981255445158638, 28.822603269685295 ], [ -81.981106264639948, 28.822615352308322 ], [ -81.980972549285198, 28.822661633587963 ], [ -81.980297006927685, 28.822837260714849 ], [ -81.979362870493304, 28.822967562497681 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Unnamed", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977473360562442, 28.820973126461094 ], [ -81.977377769543267, 28.820795601708195 ], [ -81.977231432083855, 28.820562809031216 ], [ -81.977121660781251, 28.820476845359316 ], [ -81.976806624784558, 28.820281340159731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979139793622082, 28.815204803595645 ], [ -81.979335892414525, 28.814687799250176 ], [ -81.97954266786455, 28.814160497235711 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97941567484844, 28.814075597449126 ], [ -81.979383440114319, 28.814158604165062 ], [ -81.979191007300187, 28.814665362552148 ], [ -81.978986331773157, 28.815190972483716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979139793622082, 28.815204803595645 ], [ -81.978986331773157, 28.815190972483716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gilson Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962254250335334, 28.792067558107849 ], [ -81.962600217001395, 28.792483273753998 ], [ -81.962616957021481, 28.792580924045179 ], [ -81.962536045030319, 28.792642304869439 ], [ -81.961015464363186, 28.792739955392058 ], [ -81.961012675158941, 28.792739955486532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gilson Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961012675158941, 28.792739955486532 ], [ -81.960230473362543, 28.792856663753064 ], [ -81.959554102288067, 28.793001826701577 ], [ -81.959458613188403, 28.792965945464417 ], [ -81.95941691346691, 28.792871020374804 ], [ -81.959429677319463, 28.792456267804461 ], [ -81.959492095309514, 28.792396779037951 ], [ -81.959999886440812, 28.792285178470699 ], [ -81.960691820340543, 28.792173577554966 ], [ -81.960912233984629, 28.792162417863345 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gilson Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960912233984629, 28.792162417863345 ], [ -81.962254250335334, 28.792067558107849 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gilson Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962254250335334, 28.792067558107849 ], [ -81.962624684421797, 28.791862916651272 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Keisa Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961012675158941, 28.792739955486532 ], [ -81.960912233984629, 28.792162417863345 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harold Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959694976568485, 28.791708364012276 ], [ -81.960270276663735, 28.791594737965955 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harold Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960270276663735, 28.791594737965955 ], [ -81.960623628155588, 28.791548338359085 ], [ -81.960962702708812, 28.791512646854947 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harold Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960962702708812, 28.791512646854947 ], [ -81.961630145433801, 28.791487663318474 ], [ -81.961865713439352, 28.791444834282508 ], [ -81.962370894012508, 28.791335167621018 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Church Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960962702708812, 28.791512646854947 ], [ -81.960944858520634, 28.79105936179953 ], [ -81.960887752587766, 28.790591799732248 ], [ -81.960723571152442, 28.789842272196655 ], [ -81.960637910273235, 28.789774457253742 ], [ -81.960477295061139, 28.789788734425112 ], [ -81.960024005772055, 28.789899378536958 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Estes Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960270276663735, 28.791594737965955 ], [ -81.9601953250489, 28.790805948573436 ], [ -81.960113235081863, 28.790284849923285 ], [ -81.960024005772055, 28.789899378536958 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Estes Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960024005772055, 28.789899378536958 ], [ -81.95990248651492, 28.789679028982956 ], [ -81.959726403667261, 28.789484183140381 ], [ -81.959436299245041, 28.789259029230475 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mann Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962744287721392, 28.794088412530115 ], [ -81.962654383102745, 28.793796223131586 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mann Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962654383102745, 28.793796223131586 ], [ -81.962590740522231, 28.793452760700191 ], [ -81.962573410769934, 28.79323737101198 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Redding Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961288483442544, 28.793890968064847 ], [ -81.961635091212685, 28.793868686333752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Redding Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961635091212685, 28.793868686333752 ], [ -81.962654383102745, 28.793796223131586 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gillespie Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961635091212685, 28.793868686333752 ], [ -81.961635092514953, 28.793531984571313 ], [ -81.961627666713454, 28.793291836309706 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gillespie Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961627666713454, 28.793291836309706 ], [ -81.961600433669147, 28.793026931937511 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kimberly Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961627666713454, 28.793291836309706 ], [ -81.962573410769934, 28.79323737101198 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kimberly Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962573410769934, 28.79323737101198 ], [ -81.963281801600672, 28.793184379297735 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kaolin Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962457028613002, 28.788165631671802 ], [ -81.963417996268689, 28.787641473215466 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kaolin Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963417996268689, 28.787641473215466 ], [ -81.96412011761926, 28.787279092599441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Swicord Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96412011761926, 28.787279092599441 ], [ -81.963528009445398, 28.786411965717051 ], [ -81.963437412819971, 28.786340783742276 ], [ -81.963366230377659, 28.78631489865046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tooke Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963417996268689, 28.787641473215466 ], [ -81.963075027062473, 28.787104371892301 ], [ -81.963058849194852, 28.786991127941743 ], [ -81.96314621098891, 28.786670808733572 ], [ -81.963275633805097, 28.786415201371106 ], [ -81.963366230377659, 28.78631489865046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tooke Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963366230377659, 28.78631489865046 ], [ -81.963534481043155, 28.786101352135454 ], [ -81.963719367201136, 28.785954249088444 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deanna Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963281801600672, 28.793184379297735 ], [ -81.963390048241536, 28.79273110464948 ], [ -81.96344755419328, 28.792626242601013 ], [ -81.963450181821329, 28.792503138001383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Swicord Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964343959336091, 28.787571712969459 ], [ -81.96412011761926, 28.787279092599441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mincey Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961811476775125, 28.796124862733862 ], [ -81.962155343485676, 28.796237650622651 ], [ -81.962507158965906, 28.79633024338181 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Randall Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960790917918814, 28.794480746410247 ], [ -81.960988615475472, 28.794519426462706 ], [ -81.961469968429029, 28.79450653391438 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Randall Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961469968429029, 28.79450653391438 ], [ -81.962226378721368, 28.794450663263735 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Randall Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962226378721368, 28.794450663263735 ], [ -81.963620066104383, 28.794375072479703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hogan Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961811476775125, 28.796124862733862 ], [ -81.962024380120695, 28.795215662275879 ], [ -81.962230675717606, 28.794639764921762 ], [ -81.962226378721368, 28.794450663263735 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Teresa Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961094860691858, 28.795853897763909 ], [ -81.961469968111984, 28.794609679122338 ], [ -81.961469968429029, 28.79450653391438 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mincey Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960442794152812, 28.795542290652708 ], [ -81.960790917918814, 28.794480746410247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mincey Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960790917918814, 28.794480746410247 ], [ -81.960937044399358, 28.793818893522765 ], [ -81.960939880589208, 28.793614760433442 ], [ -81.960876255660793, 28.793492813279009 ], [ -81.96076491248472, 28.793429189446353 ], [ -81.960616454023551, 28.793414904882358 ], [ -81.960478599804858, 28.793434490692047 ], [ -81.960352100145144, 28.793483576323446 ], [ -81.96024000563196, 28.793582946590178 ], [ -81.960197826540067, 28.793715746499775 ], [ -81.960159145362979, 28.794025184243345 ], [ -81.95984970169954, 28.795108216222221 ], [ -81.959905572776876, 28.795284424816639 ], [ -81.960060291999568, 28.795374678645778 ], [ -81.960442794152812, 28.795542290652708 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mincey Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960442794152812, 28.795542290652708 ], [ -81.960789507610784, 28.795727356319908 ], [ -81.961094860691858, 28.795853897763909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mincey Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961094860691858, 28.795853897763909 ], [ -81.961431848843276, 28.795990068044659 ], [ -81.961811476775125, 28.796124862733862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kaolin Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959884783967254, 28.786997811618555 ], [ -81.959974919189364, 28.787347745892578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kaolin Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959974919189364, 28.787347745892578 ], [ -81.959975526912274, 28.787482683519833 ], [ -81.960128678552621, 28.787814326631324 ], [ -81.960308948991255, 28.787983992356079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kaolin Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960308948991255, 28.787983992356079 ], [ -81.960589958341686, 28.788222583540168 ], [ -81.960886874324288, 28.788408156085861 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kaolin Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960886874324288, 28.788408156085861 ], [ -81.961300436388782, 28.788726278975677 ], [ -81.961448895056748, 28.788752790046015 ], [ -81.961613260429289, 28.788699769233979 ], [ -81.962457028613002, 28.788165631671802 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Conley Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960886874324288, 28.788408156085861 ], [ -81.96199501262079, 28.787687078934521 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Conley Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96199501262079, 28.787687078934521 ], [ -81.962185888376652, 28.787512111749304 ], [ -81.96225481670929, 28.787363654423917 ], [ -81.962265421766517, 28.786966002188805 ], [ -81.962344953841679, 28.786610765358294 ], [ -81.962546435834952, 28.786107071311342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Conley Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962546435834952, 28.786107071311342 ], [ -81.962848654806578, 28.785725325463911 ], [ -81.963290048244659, 28.78532401687248 ], [ -81.963332469450521, 28.785285612403825 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Justin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960308948991255, 28.787983992356079 ], [ -81.961476553632522, 28.787206530574565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seth Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957261201624164, 28.787550087736285 ], [ -81.957489142524054, 28.78749108719694 ], [ -81.957769920648602, 28.787462533390748 ], [ -81.958660196202786, 28.787481235805732 ], [ -81.959515377899521, 28.787481236687309 ], [ -81.959852530939173, 28.78742046303022 ], [ -81.959974919189364, 28.787347745892578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seth Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959974919189364, 28.787347745892578 ], [ -81.960105757217406, 28.787307597463936 ], [ -81.960804872223591, 28.786834028388579 ], [ -81.961021922974737, 28.786722570798194 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lapsins Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961953239858019, 28.7858088552479 ], [ -81.962546435834952, 28.786107071311342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Catherine Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962457028613002, 28.788165631671802 ], [ -81.96199501262079, 28.787687078934521 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Catherine Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96199501262079, 28.787687078934521 ], [ -81.961476553632522, 28.787206530574565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Catherine Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961476553632522, 28.787206530574565 ], [ -81.961183796035371, 28.786934187658279 ], [ -81.961021922974737, 28.786722570798194 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964420446071671, 28.786593557997975 ], [ -81.964292608027577, 28.786372911042193 ], [ -81.964224864374103, 28.786276802910749 ], [ -81.964155105759005, 28.786181818490906 ], [ -81.964083357779913, 28.7860879920744 ], [ -81.964009645010435, 28.785995356147986 ], [ -81.963933992024579, 28.785903941393766 ], [ -81.963861041000158, 28.785830577215297 ], [ -81.963781586405517, 28.785741700465191 ], [ -81.963700272483308, 28.785654138740071 ], [ -81.963617126878987, 28.78556792272278 ], [ -81.963554964445265, 28.785500996596788 ], [ -81.963468242477035, 28.785417560450327 ], [ -81.963374211523487, 28.785322892957453 ], [ -81.963332469450521, 28.785285612403825 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Renee Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965074168499811, 28.790338363420474 ], [ -81.965055827148632, 28.79020257308834 ], [ -81.965211629792321, 28.789834884542806 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Renee Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965211629792321, 28.789834884542806 ], [ -81.965691502782704, 28.788700658569294 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Renee Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965691502782704, 28.788700658569294 ], [ -81.965834840718301, 28.788376592917622 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brandy Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965211629792321, 28.789834884542806 ], [ -81.965353135589268, 28.789856848176875 ], [ -81.96578641456621, 28.789899402976079 ], [ -81.966006922394513, 28.789953561593862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brandy Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966006922394513, 28.789953561593862 ], [ -81.966339617426954, 28.790077356050986 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whited Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965691502782704, 28.788700658569294 ], [ -81.965774812015283, 28.788719501149124 ], [ -81.966428599700834, 28.788967088431765 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whited Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966428599700834, 28.788967088431765 ], [ -81.966765163282162, 28.789083143676052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walters Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966006922394513, 28.789953561593862 ], [ -81.966428599700834, 28.788967088431765 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alyssa Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95977321127215, 28.78217851012981 ], [ -81.960427517098609, 28.782166393722932 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alyssa Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960427517098609, 28.782166393722932 ], [ -81.961122212114631, 28.782174472398626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Siverson Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960427517098609, 28.782166393722932 ], [ -81.960431561376339, 28.780381203867762 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Milagros Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959769171368464, 28.782497581823012 ], [ -81.95977321127215, 28.78217851012981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Milagros Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95977321127215, 28.78217851012981 ], [ -81.959773216027443, 28.78038524248085 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sherell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959434989270434, 28.78038383808374 ], [ -81.959773216027443, 28.78038524248085 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sherell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959773216027443, 28.78038524248085 ], [ -81.960431561376339, 28.780381203867762 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sherell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960431561376339, 28.780381203867762 ], [ -81.960746597353165, 28.780377165270927 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Natalino Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992493262593143, 28.787010853400727 ], [ -81.992997744911179, 28.786868696994887 ], [ -81.993075414666919, 28.786847788133972 ], [ -81.993153674239636, 28.786828665840986 ], [ -81.993190390569609, 28.786816014578392 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975380699806948, 28.822508912765908 ], [ -81.975485129042696, 28.82233794515184 ], [ -81.97577023222334, 28.82189457950825 ], [ -81.976395049738755, 28.820924465388071 ], [ -81.976806624784558, 28.820281340159731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sundance Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014274695173555, 28.866449288694351 ], [ -82.012315346780184, 28.866466127007797 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95969428586325, 28.949379056070654 ], [ -81.959565371881453, 28.949250623737534 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.173867220757998, 28.858573132767198 ], [ -82.173873330899852, 28.858762609745966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 38th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165222212098399, 28.860113276682132 ], [ -82.165338542097786, 28.860280109843508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.130046576665563, 28.877669754823845 ], [ -82.130147869247452, 28.877841383106396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119950152923025, 28.879456334305637 ], [ -82.119936274547712, 28.879652900741419 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 231", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10739972957343, 28.877164068217908 ], [ -82.107430495199566, 28.877364736996686 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093090725728715, 28.873882867341553 ], [ -82.093106977910665, 28.873655267070692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091775723099758, 28.873255046733682 ], [ -82.091684705319949, 28.873457609806568 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 229", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086848942127233, 28.871847230887123 ], [ -82.08683908026795, 28.871958186851835 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.079071981649292, 28.865731011158012 ], [ -82.07890601593553, 28.865856314636098 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 219", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061052334575365, 28.848529861467831 ], [ -82.061046131086172, 28.848733266329383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Industrial Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055877551491434, 28.847406725569879 ], [ -82.055830567261737, 28.847301600961679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Walker Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053867323869426, 28.847171378005491 ], [ -82.05387703799191, 28.847287102044227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Village Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038880586285174, 28.846747171919667 ], [ -82.038881830211423, 28.846615481864383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 173 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010890120532579, 28.837317468297272 ], [ -82.010796533837194, 28.837473810897219 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 167", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998219134527986, 28.83121678445417 ], [ -81.998261521638682, 28.831023519626498 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Continental Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986523950410742, 28.823805646537981 ], [ -81.9865760373889, 28.823637639085003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mariposa Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971670433083759, 28.920039989709117 ], [ -81.971774430588553, 28.920164368864015 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 72nd Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983308685572723, 28.919965970408509 ], [ -81.983297757632883, 28.920088899703089 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Hammock Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98771988161765, 28.919960526097295 ], [ -81.987715088170688, 28.920087224310059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008555562553681, 28.927177292061788 ], [ -82.008556220647833, 28.92730396526753 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buffalo Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020303150810179, 28.92740777066113 ], [ -82.020317757451025, 28.927282331443259 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tatonka Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023541450827494, 28.927298542453808 ], [ -82.023561056511284, 28.927422444973498 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 103", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028829105263412, 28.927314704180858 ], [ -82.02877370360001, 28.927437799676795 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sarasota Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017861548557931, 28.865312803001451 ], [ -82.017872147848053, 28.865469865619495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meadow Lawn Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001167309637268, 28.95501338152507 ], [ -82.001308554209203, 28.954988800502317 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000551702908325, 28.945504559659664 ], [ -82.000679867896608, 28.945428471888732 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 142", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020668726964203, 28.861837042332184 ], [ -82.020524231540449, 28.861830191738182 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 144", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02066900869869, 28.858009644776466 ], [ -82.020524830680941, 28.858176184551731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 104", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038270070914919, 28.945614914867139 ], [ -82.038065641103231, 28.945615258103405 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 204", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037109883007233, 28.938312585561636 ], [ -82.036969449120321, 28.938316937528214 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 201", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037174120335749, 28.931071354744113 ], [ -82.037002799593139, 28.931103418275519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 214", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037112225355415, 28.916455525107725 ], [ -82.036955007270919, 28.916418289311949 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 222", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037079165755145, 28.901902426041755 ], [ -82.036944871784229, 28.901898577052052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepper Tree Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037081944362598, 28.898318316931331 ], [ -82.036918592012881, 28.898318353849145 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037120997931396, 28.887308788111117 ], [ -82.036959223731628, 28.887304497181368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037148808457744, 28.883569629340784 ], [ -82.037030368882739, 28.883588467135986 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Clarke Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037035994731554, 28.877676377500322 ], [ -82.037180371719359, 28.877680522409673 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sumter Line Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953734396605768, 28.820404336733798 ], [ -81.953756765429404, 28.820586176931435 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 68th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.188208276628345, 28.857452506995589 ], [ -82.188352128897947, 28.857637489442805 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134967868186138, 28.875062144661957 ], [ -82.134938200297015, 28.87484130939103 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 157", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99462331414756, 28.828499074665995 ], [ -81.994335845489815, 28.828530119169248 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 141", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95843236302882, 28.821505322611603 ], [ -81.95826278293525, 28.821647283674551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jack Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037159911985754, 28.923815432767494 ], [ -82.037316196640475, 28.923939452179983 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 110", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037079705610438, 28.91285440427253 ], [ -82.036911229150135, 28.912755885640806 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 95th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037107044739798, 28.895521970215288 ], [ -82.037042639287108, 28.895401170696481 ], [ -82.037012156695582, 28.895161113221356 ], [ -82.036945774153352, 28.895088371540645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 124", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037077065636126, 28.891823358441801 ], [ -82.037021940300249, 28.891720302759325 ], [ -82.036999081196356, 28.890910585187573 ], [ -82.036903726492142, 28.890838537002278 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037146925013928, 28.880068525256227 ], [ -82.037032822727923, 28.879826790822857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045557091620779, 28.839220581378026 ], [ -82.045516780136182, 28.839019824352054 ], [ -82.045503157548097, 28.838269085435645 ], [ -82.045404565127043, 28.838212181677822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966387349005004, 28.871915550688293 ], [ -81.966331931731304, 28.871827566790653 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045408910160774, 28.837599402114027 ], [ -82.045538035373866, 28.837779946944028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045524285511988, 28.836621857907996 ], [ -82.045406769306553, 28.836640159573182 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glen Hollow Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996848589340615, 28.924492638391079 ], [ -81.996725887957538, 28.924563873364747 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Glen Hollow Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996793617808891, 28.924620447225834 ], [ -81.996848589340615, 28.924492638391079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02702304937003, 28.927307051031544 ], [ -82.02678035024465, 28.927437124679994 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037132842970038, 28.905818224254528 ], [ -82.036946594484249, 28.905565604216203 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023760421582978, 28.839834415206255 ], [ -82.023598215512678, 28.839855283398961 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015941567541418, 28.927375546317595 ], [ -82.015942430414711, 28.927246842826733 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015791514067274, 28.927242896223415 ], [ -82.015789775706565, 28.927375563595813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037220679037503, 28.929372996482812 ], [ -82.037054900722922, 28.929779121024779 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 62nd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999867316483375, 28.926703781786205 ], [ -81.999887386201735, 28.926847129522571 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999887386201735, 28.926847129522571 ], [ -81.99999393258976, 28.926747918705178 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980704615821651, 28.865293279157157 ], [ -81.98062441048674, 28.865420670138359 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980741351552354, 28.86541900062031 ], [ -81.980704615821651, 28.865293279157157 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Schmid Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989743500673427, 28.865417979547942 ], [ -81.989743227313355, 28.865293923590858 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Schmid Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989743227313355, 28.865293923590858 ], [ -81.989636142810042, 28.865418463874001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967846832562387, 28.831094014627386 ], [ -81.968025722458364, 28.831137175024217 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968025722458364, 28.831137175024217 ], [ -81.967997902426347, 28.831016970119332 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maple Hill Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027559338152798, 28.846036850521752 ], [ -82.027498708819991, 28.846130331548434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maple Hill Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02763130951864, 28.8461260552798 ], [ -82.027559338152798, 28.846036850521752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 472", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037081751682919, 28.910253710421369 ], [ -82.037021739538446, 28.909989868813444 ], [ -82.037021742809529, 28.909256361609202 ], [ -82.036925851456374, 28.909137479173651 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029621810878538, 28.84388768964169 ], [ -82.029622140897388, 28.843887798749968 ], [ -82.030322041499758, 28.844118577726999 ], [ -82.031533858869849, 28.844518373406881 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037248030262916, 28.846145688794945 ], [ -82.037040258787897, 28.846077268945404 ], [ -82.036550474783269, 28.845916095702623 ], [ -82.036095929035909, 28.845767321746791 ], [ -82.035637861227627, 28.845618544458432 ], [ -82.035225601313584, 28.845485265432558 ], [ -82.034996365684762, 28.845417440728884 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leland Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034996365684762, 28.845417440728884 ], [ -82.0349637986414, 28.84555036046401 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034996365684762, 28.845417440728884 ], [ -82.034838012980188, 28.845370589862046 ], [ -82.034369379667737, 28.845228015178325 ], [ -82.033745715385152, 28.845042048037509 ], [ -82.033326415490649, 28.844911866135583 ], [ -82.032776744397808, 28.844738285997913 ], [ -82.032399727586352, 28.844614296303114 ], [ -82.031969859357503, 28.844474806266941 ], [ -82.031809209823876, 28.844421375455308 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031809209823876, 28.844421375455308 ], [ -82.031621669997762, 28.844438866461168 ], [ -82.031563661315161, 28.844466057202812 ], [ -82.031533858869849, 28.844518373406881 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.1834409393757, 28.857831539815461 ], [ -82.181714986098754, 28.857966772228533 ], [ -82.17968185413639, 28.858127663199667 ], [ -82.178844932188881, 28.858188568792723 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183456032823941, 28.858022668868653 ], [ -82.183533742357611, 28.858016401711303 ], [ -82.184044219990199, 28.857979057118619 ], [ -82.184497730321965, 28.857943718281103 ], [ -82.185111168742893, 28.85789465546333 ], [ -82.185707081125344, 28.857845614808429 ], [ -82.186324901016647, 28.857796542266595 ], [ -82.18683318278832, 28.857757261030823 ], [ -82.187635039356522, 28.857696354512548 ], [ -82.188352128897947, 28.857637489442805 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183456032823941, 28.858022668868653 ], [ -82.1834409393757, 28.857831539815461 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153105173367138, 28.864608911724581 ], [ -82.15442050818433, 28.863853649307547 ], [ -82.154680063655576, 28.863701610554291 ], [ -82.154908322057423, 28.863581495296977 ], [ -82.155139157975768, 28.863473971908441 ], [ -82.155374107163638, 28.863374352066533 ], [ -82.155614157125669, 28.863277371498167 ], [ -82.155849541530529, 28.863200160758069 ], [ -82.15610264767335, 28.863123586956284 ], [ -82.156434188828484, 28.863037908112624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 33rd Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.156397953544356, 28.862846284263643 ], [ -82.156434188828484, 28.863037908112624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.15099557099694, 28.865824442679767 ], [ -82.151555214541418, 28.8655003240073 ], [ -82.15229203379829, 28.865075353206027 ], [ -82.153105173367138, 28.864608911724581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153150524256986, 28.864353577185568 ], [ -82.153013840810701, 28.864433150349178 ], [ -82.151557824478559, 28.865272731240257 ], [ -82.150894416124032, 28.865654404205404 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.15099557099694, 28.865824442679767 ], [ -82.150894416124032, 28.865654404205404 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.146550378928254, 28.868151996752271 ], [ -82.145454624321701, 28.86878378458767 ], [ -82.144650233531635, 28.869250170566904 ], [ -82.14350527818786, 28.869910881314127 ], [ -82.143155414602134, 28.87011314655669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.146648429694878, 28.868328812661225 ], [ -82.147862226425829, 28.867630299273248 ], [ -82.150257700077702, 28.866251779705859 ], [ -82.15099557099694, 28.865824442679767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.146648429694878, 28.868328812661225 ], [ -82.146550378928254, 28.868151996752271 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137680251674567, 28.873266092783705 ], [ -82.137486686559328, 28.873377518572266 ], [ -82.136506059197671, 28.873942311353542 ], [ -82.134938200297015, 28.87484130939103 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137831952577244, 28.873428519316167 ], [ -82.137680251674567, 28.873266092783705 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 243B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137680251674567, 28.873266092783705 ], [ -82.137742332894661, 28.873483472099711 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068438574744889, 28.853609308231889 ], [ -82.067963690015802, 28.853096696151109 ], [ -82.067215050154275, 28.852377765032472 ], [ -82.066902753203166, 28.852103128259291 ], [ -82.066640978545621, 28.851876959496831 ], [ -82.066379208063111, 28.851658873056323 ], [ -82.066066930656888, 28.851408481021913 ], [ -82.065708740874243, 28.851137905087835 ], [ -82.06541944178133, 28.850927910155022 ], [ -82.065208208746839, 28.850774453571091 ], [ -82.065015347366568, 28.850641189587485 ], [ -82.064744430463719, 28.850463513989443 ], [ -82.064468923660655, 28.850281798588114 ], [ -82.064271475179126, 28.850152578019877 ], [ -82.06400975281673, 28.849995101900447 ], [ -82.063669978622571, 28.849797251115699 ], [ -82.063297237934123, 28.849594377203889 ], [ -82.062947554802378, 28.849403154803205 ], [ -82.062586123949487, 28.849211937780602 ], [ -82.062210013779577, 28.849033659211475 ], [ -82.061842724726574, 28.848865718707405 ], [ -82.061469560331503, 28.848697781647914 ], [ -82.061096403602235, 28.848542773574877 ], [ -82.061052334575365, 28.848529861467831 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061046131086172, 28.848733266329383 ], [ -82.06190703861715, 28.84910300473404 ], [ -82.062692141417386, 28.849490583969214 ], [ -82.063119140967586, 28.849720727371963 ], [ -82.063569102001097, 28.849967020789432 ], [ -82.064069590799747, 28.850269864360758 ], [ -82.064450702986605, 28.850512145717058 ], [ -82.064863962730612, 28.850778657418861 ], [ -82.065304796189153, 28.851093647181678 ], [ -82.065773186009451, 28.851432868009631 ], [ -82.066154349026021, 28.851739801791492 ], [ -82.066586033987491, 28.852095203244577 ], [ -82.066980996392573, 28.852438496179975 ], [ -82.067472423213772, 28.852894890050376 ], [ -82.068101677109965, 28.853537098736876 ], [ -82.068275315910483, 28.853732753163328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068438574744889, 28.853609308231889 ], [ -82.068275315910483, 28.853732753163328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061052334575365, 28.848529861467831 ], [ -82.06070857031655, 28.848400701926117 ], [ -82.060311921859366, 28.848256047949114 ], [ -82.059903806290308, 28.848120169140735 ], [ -82.059515438701453, 28.847999062043012 ], [ -82.059109720411541, 28.847881779892578 ], [ -82.058722461626218, 28.84777569701135 ], [ -82.058670930195206, 28.847764469229855 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058670930195206, 28.847764469229855 ], [ -82.058631988926933, 28.84794290505981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Gulf Atlantic Highway", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041363276962542, 28.847041758306606 ], [ -82.04117888562196, 28.847020259494016 ], [ -82.040931481009693, 28.846990576378829 ], [ -82.0406166605745, 28.846944818352362 ], [ -82.040278407791035, 28.846889083358828 ], [ -82.040123376580468, 28.846870515999811 ], [ -82.039820356148851, 28.846814767749205 ], [ -82.039436296164638, 28.84673732993361 ], [ -82.039107883270319, 28.846668186326028 ], [ -82.038881830211423, 28.846615481864383 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Legion Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041346578225784, 28.847170178560873 ], [ -82.041363276962542, 28.847041758306606 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000332586580356, 28.933075595257911 ], [ -82.000242296406, 28.933261232301081 ], [ -82.000195678753016, 28.933391094050279 ], [ -82.000167191119345, 28.933486783226094 ], [ -82.000142581528365, 28.933595903061168 ], [ -82.000128341690598, 28.933673603218278 ], [ -82.000116100806281, 28.933786322334761 ], [ -82.000107622163938, 28.9338877627778 ], [ -82.000107517950255, 28.934108120254354 ], [ -82.000105030434597, 28.934543914966845 ], [ -82.000105029621352, 28.935193229512979 ], [ -82.000105027511637, 28.93557598278948 ], [ -82.000102485114368, 28.936536649197208 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00024101237446, 28.936533143241274 ], [ -82.00024533475991, 28.935835416233225 ], [ -82.000246335554579, 28.934649444989585 ], [ -82.000248407285838, 28.93406984618581 ], [ -82.000254390563455, 28.933778031500314 ], [ -82.000266930781194, 28.93367895957789 ], [ -82.00028074792958, 28.933604007794955 ], [ -82.000299170408852, 28.933516901206758 ], [ -82.000378240734506, 28.933281902286598 ], [ -82.000420376905524, 28.933196801503151 ], [ -82.000456944577834, 28.933125946131124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00024101237446, 28.936533143241274 ], [ -82.000102485114368, 28.936536649197208 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974955971500833, 28.865291389876347 ], [ -81.973523982271146, 28.865292711731062 ], [ -81.971775360342136, 28.865291908387285 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971767186256187, 28.865421485590133 ], [ -81.971835282615842, 28.865421499909761 ], [ -81.972930451751679, 28.8654217254828 ], [ -81.974298856334471, 28.865421008614764 ], [ -81.974697506129402, 28.865421084470618 ], [ -81.974961220003564, 28.865420630517402 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971767186256187, 28.865421485590133 ], [ -81.971775360342136, 28.865291908387285 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999800910173917, 28.832309960419046 ], [ -82.000386125688024, 28.832715317039515 ], [ -82.001311551679692, 28.833357306613276 ], [ -82.001912233026175, 28.83377505504064 ], [ -82.002252749049788, 28.833997402857285 ], [ -82.002597093755597, 28.834216382338763 ], [ -82.002952916723032, 28.834435358938414 ], [ -82.003320219979784, 28.834650966054724 ], [ -82.003690297140722, 28.83485060215504 ], [ -82.004066306507823, 28.835041749978384 ], [ -82.00429982244458, 28.835157070654539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004369482800485, 28.834985815288743 ], [ -82.00429982244458, 28.835157070654539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990859157644721, 28.82588928099624 ], [ -81.990807848163186, 28.825853318638689 ], [ -81.990639870387028, 28.825742707290981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 149", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990403358710751, 28.825799553950244 ], [ -81.990639870387028, 28.825742707290981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990859157644721, 28.82588928099624 ], [ -81.990696396199226, 28.825822725316655 ], [ -81.990598262207229, 28.825806368574344 ], [ -81.990490587988035, 28.825799553899206 ], [ -81.990403358710751, 28.825799553950244 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967906310222219, 28.823114327112155 ], [ -81.967511356326398, 28.823061375829646 ], [ -81.966952378219432, 28.822980110197495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "John Michael Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968520205254578, 28.823200802580928 ], [ -81.96839642762761, 28.823196125729375 ], [ -81.968279631333317, 28.82320270491595 ], [ -81.968195734308523, 28.823225736378724 ], [ -81.968131577979278, 28.823266861066095 ], [ -81.968082913175863, 28.823319737469625 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982857461475547, 28.823790756502884 ], [ -81.983920696215009, 28.82365391340517 ], [ -81.984163614045102, 28.823633116178268 ], [ -81.984434476978976, 28.823619897557649 ], [ -81.984698890357137, 28.823610461940799 ], [ -81.984965451379082, 28.823614278264056 ], [ -81.985232012624337, 28.823623773195568 ], [ -81.985500719896962, 28.823644627005201 ], [ -81.985760827653209, 28.823673052445784 ], [ -81.986018786154474, 28.823707155392555 ], [ -81.986250947058849, 28.823748826471089 ], [ -81.986523950410742, 28.823805646537981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983054781759478, 28.8235877674514 ], [ -81.982980600487195, 28.82361392952145 ], [ -81.982914806463612, 28.82364134322199 ], [ -81.982884649641392, 28.82367424027326 ], [ -81.982849011754652, 28.823740033909509 ], [ -81.982857461475547, 28.823790756502884 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981908778212201, 28.823916068913785 ], [ -81.982415170728501, 28.823849939353352 ], [ -81.982759838052758, 28.823803321255404 ], [ -81.982857461475547, 28.823790756502884 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983054781759478, 28.8235877674514 ], [ -81.982098520615509, 28.823712205001623 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981908778212201, 28.823916068913785 ], [ -81.982018359104742, 28.823874360892237 ], [ -81.982084152759526, 28.823827757316582 ], [ -81.982111567181065, 28.823770189138852 ], [ -81.982098520615509, 28.823712205001623 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968520205254578, 28.823200802580928 ], [ -81.968004778273112, 28.823127527918675 ], [ -81.967906310222219, 28.823114327112155 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967569552385172, 28.823247010240955 ], [ -81.968082913175863, 28.823319737469625 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967569552385172, 28.823247010240955 ], [ -81.967669177233518, 28.823240724398492 ], [ -81.967782102158438, 28.823215882072923 ], [ -81.967870184386214, 28.823184262786285 ], [ -81.967895027976994, 28.823154902167037 ], [ -81.967906310222219, 28.823114327112155 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966952378219432, 28.822980110197495 ], [ -81.966645454857215, 28.822935487365239 ], [ -81.965922256977905, 28.822833059865896 ], [ -81.965320698035626, 28.822747672969513 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vivienne Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965352676682699, 28.822932721390568 ], [ -81.965320698035626, 28.822747672969513 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vivienne Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965320698035626, 28.822747672969513 ], [ -81.965232760362582, 28.822915436469899 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9602510089817, 28.955213594332776 ], [ -81.960253935800367, 28.955216478022702 ], [ -81.96110627855137, 28.956056453022708 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961462676335756, 28.956146584888831 ], [ -81.960672957924544, 28.955364330294294 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961462676335756, 28.956146584888831 ], [ -81.961389449632549, 28.956103079666665 ], [ -81.961305724773467, 28.956062484870415 ], [ -81.961229612977561, 28.95604726285594 ], [ -81.961156038642585, 28.956044725947038 ], [ -81.96110627855137, 28.956056453022708 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98256639731747, 28.786242473293097 ], [ -81.982345908188222, 28.78613464225311 ], [ -81.982174734974535, 28.786091849011967 ], [ -81.981994036010335, 28.786062949915674 ], [ -81.981787235220011, 28.78606294996824 ], [ -81.981608634156828, 28.786079400055964 ], [ -81.981516985331453, 28.786102899064264 ], [ -81.981455884433174, 28.786133448408552 ], [ -81.98141828396929, 28.786180448366853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98141828396929, 28.786180448366853 ], [ -81.981272582312897, 28.786389597189903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979702847665195, 28.786119576992149 ], [ -81.979852622873452, 28.786185792429436 ], [ -81.979962984307775, 28.786229937531253 ], [ -81.980118730268359, 28.786253297245075 ], [ -81.980482981121071, 28.786269747563686 ], [ -81.980748531685123, 28.786283847586926 ], [ -81.980898932027998, 28.786314397078808 ], [ -81.981021132787049, 28.786344946928939 ], [ -81.981148032019789, 28.786380197483645 ], [ -81.981272582312897, 28.786389597189903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98256639731747, 28.786242473293097 ], [ -81.981526647515906, 28.78564412228171 ], [ -81.980614503685032, 28.785156313426153 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98141828396929, 28.786180448366853 ], [ -81.98124753132727, 28.786023459817976 ], [ -81.981107738447349, 28.785842026303389 ], [ -81.980880134986123, 28.785487202254902 ], [ -81.980755584939232, 28.785318003209607 ], [ -81.980675685614571, 28.7852216543255 ], [ -81.980614503685032, 28.785156313426153 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979702847665195, 28.786119576992149 ], [ -81.981014022093191, 28.786868754674206 ], [ -81.9814207006077, 28.787096817378249 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981272582312897, 28.786389597189903 ], [ -81.981218532238827, 28.786481246716765 ], [ -81.981203716478603, 28.786570713610868 ], [ -81.981216181421829, 28.786650445646803 ], [ -81.98127023132075, 28.786779695277964 ], [ -81.981368931199384, 28.786991193422171 ], [ -81.9814207006077, 28.787096817378249 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966117863719816, 28.920030853647646 ], [ -81.965831488752642, 28.920031661564199 ], [ -81.964585487565444, 28.920033991707729 ], [ -81.964072606162546, 28.920033855194607 ], [ -81.963878111744748, 28.920023431922235 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avenida Los Angelos", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966117863719816, 28.920030853647646 ], [ -81.966132204745776, 28.920160255581045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962684861797129, 28.919842226213962 ], [ -81.962630579772608, 28.919829076365303 ], [ -81.962413379135, 28.919773274481933 ], [ -81.96218411787757, 28.919701541512236 ], [ -81.961951842634846, 28.919619192682731 ], [ -81.961737671842485, 28.919536846815717 ], [ -81.9615446205014, 28.91944919936002 ], [ -81.961455538029639, 28.919405009080169 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961383513316775, 28.919534748488804 ], [ -81.961546707356817, 28.919612375734115 ], [ -81.961877146077384, 28.919748161934606 ], [ -81.962126819944473, 28.919836541342665 ], [ -81.962349568364942, 28.919907680673266 ], [ -81.96247685637573, 28.919944331546386 ], [ -81.962589456732701, 28.919974515954962 ], [ -81.962656306367634, 28.919989507299224 ], [ -81.962657392345108, 28.919989750319456 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961455538029639, 28.919405009080169 ], [ -81.961383513316775, 28.919534748488804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974351547864345, 28.920143653933671 ], [ -81.974479744367571, 28.920137045673435 ], [ -81.974731900130195, 28.920126322835724 ], [ -81.974971815297565, 28.920113445258949 ], [ -81.975223969915575, 28.920107030866777 ], [ -81.975471226947747, 28.920102768885499 ], [ -81.975848230954341, 28.920100682828025 ], [ -81.976097938005765, 28.920096421040867 ], [ -81.976347643550795, 28.920098618329824 ], [ -81.976709144697296, 28.920098681802131 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976706765788478, 28.919970290031547 ], [ -81.976635197280388, 28.919970277541402 ], [ -81.975850789615279, 28.919970139055799 ], [ -81.975147839781314, 28.919983282137768 ], [ -81.974330639173559, 28.920014557485487 ], [ -81.974309801694019, 28.920015355626621 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976706765788478, 28.919970290031547 ], [ -81.976709144697296, 28.920098681802131 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990565634842127, 28.920120994396729 ], [ -81.990425651199914, 28.920088774160259 ], [ -81.990181283241441, 28.92004628515895 ], [ -81.989921827705629, 28.920011760039074 ], [ -81.989797328686478, 28.919995685116689 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989824986724614, 28.920129654801265 ], [ -81.989834141804437, 28.920130483812539 ], [ -81.990078945659249, 28.920162809107111 ], [ -81.990223381470443, 28.920182204791764 ], [ -81.990328648140348, 28.920201597463794 ], [ -81.990454689942368, 28.920228302861982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990565634842127, 28.920120994396729 ], [ -81.990532034265698, 28.920133926414284 ], [ -81.990495332363921, 28.920147139717038 ], [ -81.990471843059467, 28.920167692338826 ], [ -81.990458630130192, 28.920185309625662 ], [ -81.990454689942368, 28.920228302861982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996848589340615, 28.924492638391079 ], [ -81.996030990553407, 28.923791870176363 ], [ -81.995222452885429, 28.92310436823151 ], [ -81.99423593244299, 28.922254938401306 ], [ -81.994047451779778, 28.922096995651678 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993965450243877, 28.922203604501117 ], [ -81.994154878190827, 28.922368594338035 ], [ -81.994441297090404, 28.922605530842414 ], [ -81.994857461579713, 28.922967393899494 ], [ -81.995065545014924, 28.92314617115829 ], [ -81.995408273546417, 28.923436954021525 ], [ -81.995836686005845, 28.923803122003655 ], [ -81.99607659896148, 28.924009897844723 ], [ -81.996377713492663, 28.924268368424393 ], [ -81.996681279676224, 28.924526841091804 ], [ -81.996725887957538, 28.924563873364747 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994047451779778, 28.922096995651678 ], [ -81.993965450243877, 28.922203604501117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000875609039085, 28.865314718931071 ], [ -82.000838116995013, 28.865328918538999 ], [ -82.000793694834115, 28.865355293830273 ], [ -82.000765930233015, 28.865380280449767 ], [ -82.00075066061936, 28.865409432992426 ], [ -82.00074882493945, 28.865448627263813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004147703170531, 28.865320733960782 ], [ -82.004103639203109, 28.865336483901203 ], [ -82.004049452266656, 28.865355990372144 ], [ -82.004019107479905, 28.865381999132893 ], [ -82.003999600432351, 28.865414510521813 ], [ -82.003995966834893, 28.865447167689609 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trailwinds Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008157964039611, 28.865329585615918 ], [ -82.008158552370944, 28.865453631582032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024876937245537, 28.86534447385295 ], [ -82.024876926995347, 28.86534447385479 ], [ -82.023218661256436, 28.865346418989805 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rio Grande Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023224661049582, 28.865493737965956 ], [ -82.023218661256436, 28.865346418989805 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025821798963904, 28.865346258856484 ], [ -82.025595667909741, 28.865343630043576 ], [ -82.024876937245537, 28.86534447385295 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024885063285993, 28.865478953494137 ], [ -82.025527703396591, 28.865477542609984 ], [ -82.025831444168332, 28.865476087683209 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025821798963904, 28.865346258856484 ], [ -82.025831444168332, 28.865476087683209 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958095345360817, 28.947124973791873 ], [ -81.95826473658343, 28.947140152689418 ], [ -81.958444689585917, 28.947153161026804 ], [ -81.958630193529984, 28.947160635272564 ], [ -81.958846617762404, 28.947160702820206 ], [ -81.958956009675092, 28.94716048824332 ], [ -81.959076535835891, 28.947152613807777 ], [ -81.959188066305956, 28.947147902669169 ], [ -81.959331977954804, 28.94713528726237 ], [ -81.959448908141312, 28.947125829682825 ], [ -81.959585851985722, 28.947111482200505 ], [ -81.959621745382663, 28.947106665757289 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "San Juan Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958102918587031, 28.947017144977803 ], [ -81.958095345360817, 28.947124973791873 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959621745382663, 28.947106665757289 ], [ -81.959627981690588, 28.947105829406777 ], [ -81.959725943725999, 28.947092686320275 ], [ -81.959850071614298, 28.947073737535096 ], [ -81.959934372529048, 28.947058403044863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "De Silva Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959918546072103, 28.94695007086505 ], [ -81.959934372529048, 28.947058403044863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968709146871504, 28.921336003116515 ], [ -81.968706974403418, 28.921597462754658 ], [ -81.968706872700949, 28.92193287144103 ], [ -81.968706836227454, 28.922053157418631 ], [ -81.968696036474341, 28.922223598610994 ], [ -81.96868568204863, 28.922291781796194 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968782270466008, 28.922307669417712 ], [ -81.968802383912021, 28.922223623428533 ], [ -81.96881047180257, 28.922185727075814 ], [ -81.968816965320428, 28.922143086981002 ], [ -81.968823960385521, 28.922096903685887 ], [ -81.968829356117439, 28.922059005802236 ], [ -81.968832062829208, 28.922017554952831 ], [ -81.968836122748911, 28.921940572902443 ], [ -81.968840209030688, 28.921783056422864 ], [ -81.968844350006265, 28.921444334534772 ], [ -81.968845468956587, 28.921328659531159 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968709146871504, 28.921336003116515 ], [ -81.968845468956587, 28.921328659531159 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968715548315586, 28.920771547987151 ], [ -81.968715046828436, 28.920991412184641 ], [ -81.968709703561714, 28.921268992420419 ], [ -81.968709146871504, 28.921336003116515 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968845468956587, 28.921328659531159 ], [ -81.968848518838797, 28.921013234653163 ], [ -81.968844112327886, 28.920764080779428 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968715548315586, 28.920771547987151 ], [ -81.968844112327886, 28.920764080779428 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968633621138025, 28.894516355600114 ], [ -81.968568590499402, 28.894534859166168 ], [ -81.968495484459808, 28.894556896915596 ], [ -81.968376432016214, 28.894569734773469 ], [ -81.968253203462666, 28.894582573341772 ], [ -81.968054786623085, 28.894589879044993 ], [ -81.967864727279959, 28.894589833619438 ], [ -81.967707663510538, 28.894582822905718 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967694949146036, 28.894686249553715 ], [ -81.967872594985806, 28.894700320297694 ], [ -81.96800530952072, 28.894701909407264 ], [ -81.968120991315644, 28.894701158282757 ], [ -81.968293523705569, 28.894689519835342 ], [ -81.968399918326199, 28.894681759014929 ], [ -81.968529099170397, 28.894664660148912 ], [ -81.968638593688382, 28.894648724130221 ], [ -81.96864315323684, 28.89464872519693 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967707663510538, 28.894582822905718 ], [ -81.967694949146036, 28.894686249553715 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96522201920699, 28.872331869454332 ], [ -81.965205286334239, 28.872363334726927 ], [ -81.965181066498033, 28.87240301983681 ], [ -81.965158709954395, 28.87243142664277 ], [ -81.965122691765657, 28.872469666798636 ], [ -81.965074259767093, 28.872504625649171 ], [ -81.964950907150168, 28.872571888124259 ], [ -81.96483690510685, 28.872633612797767 ], [ -81.964735249851444, 28.872702338877907 ], [ -81.964685116105599, 28.872733862976375 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964749711932924, 28.872831669708507 ], [ -81.964960956382555, 28.87269536093617 ], [ -81.965137447310539, 28.872599472279923 ], [ -81.965204926597465, 28.872570557458396 ], [ -81.965251641084308, 28.872561431943183 ], [ -81.965293159377197, 28.8725583983177 ], [ -81.965369282732979, 28.872552327440019 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964685116105599, 28.872733862976375 ], [ -81.964749711932924, 28.872831669708507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962378813111997, 28.859831797622931 ], [ -81.96247252382426, 28.859809327589481 ], [ -81.962578405388584, 28.859785675254781 ], [ -81.9627447639986, 28.85975369240974 ], [ -81.962833187491555, 28.85972917513455 ], [ -81.962873391619212, 28.859718299051014 ], [ -81.963039917817667, 28.859638311492184 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963039917817667, 28.859638311492184 ], [ -81.962889836522521, 28.859625739803455 ], [ -81.962772678454229, 28.85964098700013 ], [ -81.962643803275355, 28.859658139209941 ], [ -81.962527508470743, 28.85968102624437 ], [ -81.962416418785082, 28.859708497438767 ], [ -81.962356199240517, 28.859718874216988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962378813111997, 28.859831797622931 ], [ -81.962356199240517, 28.859718874216988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iron Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966389039094153, 28.835356552885568 ], [ -81.96643532844756, 28.83534612566147 ], [ -81.966476108723086, 28.835339261161984 ], [ -81.966523827221607, 28.835336216945073 ], [ -81.966567208450101, 28.835335081817213 ], [ -81.966651424667063, 28.835341703129256 ], [ -81.966781557411082, 28.835369238608745 ], [ -81.96680926233654, 28.835374535686114 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iron Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966831876671577, 28.835295765304231 ], [ -81.966709949768202, 28.835269035862812 ], [ -81.966658764975776, 28.835258327214767 ], [ -81.966602377201454, 28.83524265275727 ], [ -81.966579821802881, 28.83523347970258 ], [ -81.966549459425707, 28.835216664861669 ], [ -81.966521703186174, 28.835199087311096 ], [ -81.966501003758282, 28.835179865705427 ], [ -81.966462223749403, 28.835139421819857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iron Oak Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96680926233654, 28.835374535686114 ], [ -81.966831876671577, 28.835295765304231 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966057470811592, 28.834967982775165 ], [ -81.96600902102027, 28.834976647116864 ], [ -81.965965421366164, 28.834984943626054 ], [ -81.965927679045194, 28.834990090748271 ], [ -81.965889287905128, 28.834989508041552 ], [ -81.965860657838633, 28.834987208908384 ], [ -81.965815112017552, 28.834977456916551 ], [ -81.965750698544667, 28.834959678585935 ], [ -81.96569539489623, 28.834941902550764 ], [ -81.965643995581374, 28.834920689699036 ], [ -81.965552259437132, 28.834882850496363 ], [ -81.965408476184464, 28.834818642336877 ], [ -81.965284135790768, 28.834752599243085 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965212427227868, 28.834848790156215 ], [ -81.965349229032654, 28.834918895109279 ], [ -81.965496915182612, 28.834984251166375 ], [ -81.965613376005848, 28.83503126418195 ], [ -81.96571812753524, 28.835068534600843 ], [ -81.965797501713226, 28.835102931849089 ], [ -81.965847594379824, 28.8351373234152 ], [ -81.965880554581304, 28.835162637007265 ], [ -81.965908141034831, 28.835188237966154 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965284135790768, 28.834752599243085 ], [ -81.965212427227868, 28.834848790156215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959565371881453, 28.949250623737534 ], [ -81.959081222077174, 28.949264567842668 ], [ -81.958330252818769, 28.949299254202526 ], [ -81.958015978193089, 28.949296246206277 ], [ -81.957764566446173, 28.949272888958827 ], [ -81.957613183631508, 28.949252670414619 ], [ -81.957531745557887, 28.949236089370679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957500395893817, 28.949353083280755 ], [ -81.957594387068852, 28.94937279927078 ], [ -81.957682759942273, 28.94938695981207 ], [ -81.957781845684025, 28.949398769590502 ], [ -81.95789164634391, 28.949408225876173 ], [ -81.957961272769808, 28.949415314491404 ], [ -81.958092498260683, 28.949424778235517 ], [ -81.958237115974967, 28.949427179273439 ], [ -81.958443335366553, 28.949417820752672 ], [ -81.95862277295933, 28.949408453647788 ], [ -81.958928085920405, 28.949399124949554 ], [ -81.959075386765093, 28.949389748288059 ], [ -81.959190549887524, 28.949380361679971 ], [ -81.95931642116237, 28.949380399961445 ], [ -81.959420868573389, 28.949378075752698 ], [ -81.959495805578555, 28.949378099331664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956578107409769, 28.949035224034578 ], [ -81.956587551220267, 28.949040340384624 ], [ -81.956646456618301, 28.949070983254263 ], [ -81.956710718963762, 28.949099270138763 ], [ -81.956769627467807, 28.949127556167817 ], [ -81.956841923304736, 28.949158202368235 ], [ -81.956935642997621, 28.949193566284066 ], [ -81.957013295841008, 28.94922185732614 ], [ -81.957077562385336, 28.949245433168372 ], [ -81.957152538776015, 28.949269014209246 ], [ -81.957232875136853, 28.94928788424647 ], [ -81.957385511530163, 28.949327976604394 ], [ -81.957481915852654, 28.949349207486819 ], [ -81.957500395893817, 28.949353083280755 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957531745557887, 28.949236089370679 ], [ -81.957483391297131, 28.949226244465173 ], [ -81.957299870712404, 28.94918425839386 ], [ -81.9571659808243, 28.949144172833954 ], [ -81.957002639786197, 28.949087585595692 ], [ -81.956818539213742, 28.94901071064703 ], [ -81.956636222434526, 28.948917697622647 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956636222434526, 28.948917697622647 ], [ -81.956578107409769, 28.949035224034578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957531745557887, 28.949236089370679 ], [ -81.957500395893817, 28.949353083280755 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974833863245593, 28.95265187849829 ], [ -81.976834245717868, 28.952651184787829 ], [ -81.978555703701204, 28.952657915748947 ], [ -81.979849850449327, 28.952655970074524 ], [ -81.97999147395312, 28.952655991400633 ], [ -81.980086704587549, 28.952653858202023 ], [ -81.980157515408749, 28.952656016213862 ], [ -81.980255186189524, 28.952656030714081 ], [ -81.980333322398934, 28.952660337173022 ], [ -81.980404133021366, 28.952668938322155 ], [ -81.980479827656225, 28.952673244337134 ], [ -81.98055063768183, 28.952679698856436 ], [ -81.980623889926278, 28.952688299343869 ], [ -81.980694699781154, 28.952701194347537 ], [ -81.980760625848603, 28.952711942958768 ], [ -81.980828993521371, 28.952722690986612 ], [ -81.980885152847748, 28.952735584684294 ], [ -81.980951079182276, 28.952750628112053 ], [ -81.98102432826208, 28.952765670745737 ], [ -81.981092695434242, 28.952785009361378 ], [ -81.981153738643201, 28.952800051996892 ], [ -81.981217221648677, 28.952819388053815 ], [ -81.98126361122695, 28.952834429475519 ], [ -81.981314885274514, 28.952853764671403 ], [ -81.981361276934081, 28.952868805157372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cazaras Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974761489717864, 28.952530251226751 ], [ -81.974833863245593, 28.95265187849829 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cazaras Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974833863245593, 28.95265187849829 ], [ -81.974903867774145, 28.952527377180864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000402054391898, 28.952615070599361 ], [ -82.000349952199073, 28.952654786745445 ], [ -82.000311744450215, 28.952679226183335 ], [ -82.000266589454, 28.952698574867277 ], [ -82.000207543050479, 28.952714868346831 ], [ -82.000133194656485, 28.952728597446921 ], [ -81.999925828768625, 28.952757612811286 ], [ -81.999614779829145, 28.952799063150177 ], [ -81.999490344616106, 28.952812743117626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99950710437939, 28.952936584589434 ], [ -81.999921115308283, 28.95288196578927 ], [ -82.000161471658629, 28.952844660246782 ], [ -82.00024630460085, 28.952832225037234 ], [ -82.000323323402014, 28.952834013496567 ], [ -82.000367320221841, 28.952842159435853 ], [ -82.000462260117715, 28.952883911246932 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "El Camino Real", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99950710437939, 28.952936584589434 ], [ -81.999490344616106, 28.952812743117626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000556431949363, 28.951718941141834 ], [ -82.000588077446167, 28.952041799303959 ], [ -82.000606960974707, 28.952212634768991 ], [ -82.000612774677336, 28.95225560010967 ], [ -82.000610459347612, 28.952287168605793 ], [ -82.000604669381445, 28.952316700631467 ], [ -82.000593091447683, 28.952352341178884 ], [ -82.00057109371285, 28.952390020009666 ], [ -82.000543978912802, 28.952434493098291 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000887174563118, 28.952391038134039 ], [ -82.000857072264182, 28.952369652092532 ], [ -82.00081359359686, 28.952342694423432 ], [ -82.000787689159338, 28.952310798457642 ], [ -82.00076437710122, 28.952274346808576 ], [ -82.00074939511039, 28.952229124860107 ], [ -82.000734430421687, 28.952136918754206 ], [ -82.000713937095085, 28.95196143560127 ], [ -82.000694434660673, 28.951727555187055 ], [ -82.000692965548822, 28.951702488610149 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000556431949363, 28.951718941141834 ], [ -82.000692965548822, 28.951702488610149 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003018414878611, 28.922000727418201 ], [ -82.003060591512465, 28.92195560822238 ], [ -82.003110418983312, 28.921914075495053 ], [ -82.003220566941977, 28.921849468049309 ], [ -82.003307111854653, 28.921807933613401 ], [ -82.003401522904809, 28.921768707029006 ], [ -82.003519279124006, 28.921734323391505 ], [ -82.003578377368044, 28.921722991040475 ], [ -82.003588559219637, 28.921722121899947 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003571647283763, 28.921612442766737 ], [ -82.003452922427286, 28.921624498250026 ], [ -82.003400890423919, 28.921636312222905 ], [ -82.003293469932544, 28.921668801627487 ], [ -82.003196120528145, 28.921702768709984 ], [ -82.003081985901588, 28.921751501213134 ], [ -82.003009813972653, 28.921778082390986 ], [ -82.002935962606429, 28.921782513091323 ], [ -82.002859758368615, 28.921778373782523 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003588559219637, 28.921722121899947 ], [ -82.003571647283763, 28.921612442766737 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Miona Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994470952446747, 28.908745688801659 ], [ -81.994359187355997, 28.908791181498529 ], [ -81.994274559862646, 28.908885139518638 ], [ -81.994259946300687, 28.908900809086322 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Miona Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994334537521311, 28.908970095283134 ], [ -81.99435514955735, 28.908943648920335 ], [ -81.994389404876387, 28.908904646762544 ], [ -81.994433734983801, 28.90885146180408 ], [ -81.994470952446747, 28.908745688801659 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Miona Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994334537521311, 28.908970095283134 ], [ -81.994259946300687, 28.908900809086322 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979046402129754, 28.894292841117867 ], [ -81.979044499165965, 28.894292825480523 ], [ -81.979030836994255, 28.894292708746374 ], [ -81.978913523297649, 28.894279161212491 ], [ -81.978781382661779, 28.894245913117199 ], [ -81.978648893921459, 28.894210668047137 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978244719592567, 28.894129532168233 ], [ -81.978325609843921, 28.894217360730341 ], [ -81.978465836503077, 28.894271970718396 ], [ -81.978608653095449, 28.894317385637198 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978648893921459, 28.894210668047137 ], [ -81.978608653095449, 28.894317385637198 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980430704398202, 28.894467922979 ], [ -81.980343898403248, 28.89444332256879 ], [ -81.98015063461682, 28.894404044863016 ], [ -81.979992057782368, 28.894382214434721 ], [ -81.979910291992994, 28.894364758006962 ], [ -81.979843397788741, 28.894334220425961 ], [ -81.979776918590915, 28.894289504135184 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979735449864933, 28.894550337386153 ], [ -81.979816105192342, 28.894521744882706 ], [ -81.979890443419933, 28.894504311024235 ], [ -81.979992034641683, 28.894495603739475 ], [ -81.980068847777233, 28.894499976934252 ], [ -81.980192735570924, 28.894521801232546 ], [ -81.980400937380125, 28.894571412401685 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980400937380125, 28.894571412401685 ], [ -81.980430704398202, 28.894467922979 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98231377589336, 28.881804457325114 ], [ -81.982291597013798, 28.881893744337791 ], [ -81.982247762147693, 28.881970874468468 ], [ -81.982176964321482, 28.882050965049551 ], [ -81.981897146087078, 28.882306065791365 ], [ -81.981465607491785, 28.882753980322565 ], [ -81.981310519858155, 28.882926028492747 ], [ -81.980929540248056, 28.883356148627445 ], [ -81.98068678927018, 28.883646852382597 ], [ -81.980676709035848, 28.883660155357557 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980787384626822, 28.883731394459904 ], [ -81.981205968868622, 28.883231585391414 ], [ -81.981603798970582, 28.88280740122342 ], [ -81.981745397904973, 28.882656118238739 ], [ -81.981981396729452, 28.88241287808891 ], [ -81.982183902025227, 28.882220253969191 ], [ -81.982355611109554, 28.882056923203347 ], [ -81.982423033945452, 28.882024296751041 ], [ -81.98254792084623, 28.881995120066009 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980787384626822, 28.883731394459904 ], [ -81.980676709035848, 28.883660155357557 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983142281135372, 28.882187690707873 ], [ -81.983127274613025, 28.882174270687404 ], [ -81.982926937044795, 28.881994143142219 ], [ -81.98287579184975, 28.881919093081308 ], [ -81.982856557001725, 28.88179877231827 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982639352395623, 28.881992635314138 ], [ -81.982736369894184, 28.882028262632105 ], [ -81.982790225965843, 28.882046493366207 ], [ -81.982868183111165, 28.882101670101758 ], [ -81.982991998106897, 28.882205293596559 ], [ -81.983068515363868, 28.882271189372759 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983068515363868, 28.882271189372759 ], [ -81.983142281135372, 28.882187690707873 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992335216088549, 28.876510751043341 ], [ -81.992306110851686, 28.876414142555408 ], [ -81.992062961310594, 28.876219556613101 ], [ -81.992047162969342, 28.876207781520915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99196240756666, 28.876307516889295 ], [ -81.992191889844477, 28.876491965740001 ], [ -81.992335216088549, 28.876510751043341 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992047162969342, 28.876207781520915 ], [ -81.99150076109332, 28.875800523164166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991421807506768, 28.875902625310069 ], [ -81.991937688177643, 28.876287648492635 ], [ -81.99196240756666, 28.876307516889295 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99196240756666, 28.876307516889295 ], [ -81.992047162969342, 28.876207781520915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bailey Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991421807506768, 28.875902625310069 ], [ -81.99150076109332, 28.875800523164166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990320001712362, 28.875039880654562 ], [ -81.990242871177458, 28.874994613708775 ], [ -81.989959884741864, 28.87482955606599 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98989419058195, 28.874918230268747 ], [ -81.989928708396718, 28.874937567429235 ], [ -81.990195111882542, 28.875090725248281 ], [ -81.990258799268418, 28.875133957444675 ], [ -81.990258821819538, 28.87513397278547 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989959884741864, 28.87482955606599 ], [ -81.98989419058195, 28.874918230268747 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999420343139704, 28.860954895102338 ], [ -81.999459592545804, 28.860968305356884 ], [ -81.999534223128691, 28.86099351610298 ], [ -81.999606252343014, 28.861019491049007 ], [ -81.999651380070915, 28.861030950489244 ], [ -81.999699976361541, 28.861039354723573 ], [ -81.999761085599744, 28.861050507396207 ], [ -81.999834707792374, 28.861064773923456 ], [ -81.999895774006546, 28.86107675936185 ], [ -81.999952274961899, 28.861091027595865 ], [ -82.000029855560371, 28.861111834946417 ], [ -82.000084890670621, 28.861120043459959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999458645455192, 28.860855599416471 ], [ -81.999397218700224, 28.860836046150997 ], [ -81.99916551305904, 28.860761177754267 ], [ -81.999120964659625, 28.860745867120297 ], [ -81.999066727208231, 28.860727244936882 ], [ -81.999021167210373, 28.860710055664015 ], [ -81.998980488178944, 28.860691910877829 ], [ -81.998942522307388, 28.860671379508588 ], [ -81.998904555534978, 28.860643208317263 ], [ -81.998857632782745, 28.860598853297748 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999420343139704, 28.860954895102338 ], [ -81.999458645455192, 28.860855599416471 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997727960480262, 28.860296781394354 ], [ -81.997360322850795, 28.860205162412697 ], [ -81.997164972072923, 28.860150899051405 ], [ -81.997072078702828, 28.860157885309956 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997689213909624, 28.860397270337049 ], [ -81.997974434398202, 28.860484362057491 ], [ -81.998095311831491, 28.860524812457264 ], [ -81.99830658535096, 28.860599390972897 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997727960480262, 28.860296781394354 ], [ -81.997689213909624, 28.860397270337049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Prairie Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000108532069206, 28.853706912801304 ], [ -82.000003210833285, 28.85369705101327 ], [ -81.999703889532285, 28.85369062773005 ], [ -81.999618543364775, 28.853693167410707 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Prairie Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999619450802371, 28.853777613267173 ], [ -81.999973302614492, 28.853791752415127 ], [ -82.000098979688914, 28.853799090466918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Prairie Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000098979688914, 28.853799090466918 ], [ -82.000108532069206, 28.853706912801304 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003960753050421, 28.848346855830727 ], [ -82.003973014802938, 28.84835912779732 ], [ -82.004153940676659, 28.848543618687845 ], [ -82.004260938600055, 28.848656437533027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004329972165621, 28.848555933245351 ], [ -82.004314032997968, 28.848539030776109 ], [ -82.004087551690631, 28.848312141894638 ], [ -82.004046186170086, 28.848269989898505 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004046186170086, 28.848269989898505 ], [ -82.003960753050421, 28.848346855830727 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013684307523079, 28.847312646209922 ], [ -82.013806918463729, 28.847263350398023 ], [ -82.014022745200677, 28.847154466034489 ], [ -82.014190847385748, 28.847050360207412 ], [ -82.014377387767055, 28.846920469809085 ], [ -82.014503189703959, 28.846821142876337 ], [ -82.014607300231972, 28.84672563752482 ], [ -82.014690804349698, 28.846638730500569 ], [ -82.014824191943234, 28.846490699605724 ], [ -82.01516795488601, 28.846059983449098 ], [ -82.015237358814488, 28.845975942413073 ], [ -82.015292664808541, 28.84590431589185 ], [ -82.015340267658857, 28.845843814716098 ], [ -82.015366293919925, 28.845813255291205 ], [ -82.015397525741093, 28.84577887402758 ], [ -82.015431361698361, 28.845752131396292 ], [ -82.015471271970583, 28.845733791268913 ], [ -82.015502400470226, 28.845722424213299 ], [ -82.01553168360924, 28.845713540499933 ], [ -82.015567515358569, 28.845704476499797 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01529556788114, 28.845506123350081 ], [ -82.015301541950265, 28.845559121462994 ], [ -82.01530096999906, 28.845601646313522 ], [ -82.015295009650785, 28.845637935908723 ], [ -82.015287680520444, 28.845662548907185 ], [ -82.015263023794674, 28.845710037238248 ], [ -82.01524350592409, 28.845745849168814 ], [ -82.015224530387854, 28.845775933198457 ], [ -82.015206637205509, 28.845799807437846 ], [ -82.015164345328799, 28.845855677362447 ], [ -82.014784039845466, 28.84633313679797 ], [ -82.014647399860976, 28.846498356923483 ], [ -82.01450967284886, 28.846638748262688 ], [ -82.014353506599861, 28.846779141326596 ], [ -82.014152870122842, 28.846927176670491 ], [ -82.013983682916518, 28.847032237198505 ], [ -82.013852452606756, 28.847099095594825 ], [ -82.013685430356631, 28.847180282323716 ], [ -82.013618781909983, 28.847204920775116 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013684307523079, 28.847312646209922 ], [ -82.013618781909983, 28.847204920775116 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Torch Lake Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015985587085169, 28.842948996421388 ], [ -82.015963898048426, 28.842933996225138 ], [ -82.015904022823335, 28.842890457669352 ], [ -82.015845448973195, 28.84284577301128 ], [ -82.015809003429311, 28.842820566650751 ], [ -82.015783406063093, 28.84279994188347 ], [ -82.015761278135543, 28.842789630990424 ], [ -82.015730907707109, 28.842778938433899 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Torch Lake Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015730907707109, 28.842778938433899 ], [ -82.015736986811589, 28.842820956368659 ], [ -82.015757381591101, 28.842850748257476 ], [ -82.015780813605659, 28.842878630523064 ], [ -82.015832446187915, 28.842928281380296 ], [ -82.015906208841301, 28.842995119567654 ], [ -82.015922261239623, 28.843008486331737 ], [ -82.015942176192056, 28.843022377800125 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Torch Lake Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015985587085169, 28.842948996421388 ], [ -82.015942176192056, 28.843022377800125 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Torch Lake Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018882992762769, 28.843588902097938 ], [ -82.019040765812377, 28.843612486887263 ], [ -82.01920389431713, 28.843646077335467 ], [ -82.019329494634249, 28.843674708282407 ], [ -82.019493274916641, 28.843712883811047 ], [ -82.019682003845759, 28.843771108489943 ], [ -82.019858152439966, 28.843829333788275 ], [ -82.019975294479281, 28.843869426428185 ], [ -82.020160777463801, 28.843955344484545 ], [ -82.020371209070362, 28.844069906874985 ], [ -82.020515928493467, 28.844116804725662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Torch Lake Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020515928493467, 28.844116804725662 ], [ -82.020461951797756, 28.844047760041889 ], [ -82.020371963192375, 28.843993939791314 ], [ -82.020223622187984, 28.843913817584991 ], [ -82.020071216126425, 28.843839844113262 ], [ -82.019915072957346, 28.843772177219474 ], [ -82.019755534972617, 28.843710964820797 ], [ -82.019592939334132, 28.84365633859494 ], [ -82.019427639595349, 28.843608415781837 ], [ -82.019259994428865, 28.843567300087624 ], [ -82.019090360452537, 28.843533078978879 ], [ -82.019030359481306, 28.843523530815098 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Torch Lake Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019030359481306, 28.843523530815098 ], [ -82.019007407722924, 28.843528049072003 ], [ -82.018971249778289, 28.843535279642136 ], [ -82.018938193438274, 28.843545610108265 ], [ -82.018908235148999, 28.843562138091041 ], [ -82.018882992762769, 28.843588902097938 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020522751529299, 28.863344485169563 ], [ -82.020523301229758, 28.86375649771318 ], [ -82.020524979850279, 28.864405011058896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020670273763571, 28.863340476987581 ], [ -82.020668933157694, 28.862901699500306 ], [ -82.020668726964203, 28.861837042332184 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020522751529299, 28.863344485169563 ], [ -82.020670273763571, 28.863340476987581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02066900869869, 28.858009644776466 ], [ -82.020669950078243, 28.857429891448945 ], [ -82.020666285680278, 28.855951641820159 ], [ -82.020668835301166, 28.855674326201715 ], [ -82.020688309913695, 28.855415342895661 ], [ -82.020710403287111, 28.855236574988986 ], [ -82.020759816439963, 28.854982170915715 ], [ -82.020796233921473, 28.854835486812043 ], [ -82.020848264375743, 28.854660150377303 ], [ -82.020856018632173, 28.854637920034417 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020717683284914, 28.854602817533653 ], [ -82.020681667570102, 28.854723201178956 ], [ -82.020634840141284, 28.854887077507016 ], [ -82.020611216381397, 28.854985550431 ], [ -82.020611172344601, 28.854985729996169 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020717683284914, 28.854602817533653 ], [ -82.020856018632173, 28.854637920034417 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02170216219757, 28.852619221719518 ], [ -82.021665309107547, 28.852740594716362 ], [ -82.021613269868425, 28.852871237633995 ], [ -82.021550820778515, 28.85301792783152 ], [ -82.021467550270245, 28.853182954241579 ], [ -82.021351746910767, 28.853388094849585 ], [ -82.021122730976302, 28.853742221308966 ], [ -82.0209353595842, 28.854069985691677 ], [ -82.020788340820374, 28.854408055332033 ], [ -82.020725893663297, 28.854575370003314 ], [ -82.020717683284914, 28.854602817533653 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020856018632173, 28.854637920034417 ], [ -82.020919815447684, 28.854455018687172 ], [ -82.021021799920959, 28.854223869818508 ], [ -82.021069439157017, 28.854127260956204 ], [ -82.021144906361727, 28.853982862688202 ], [ -82.021252904884378, 28.853797205131549 ], [ -82.02142857041251, 28.853525593442683 ], [ -82.021541619831396, 28.853345667211254 ], [ -82.021622446703574, 28.853194389561182 ], [ -82.021707016823711, 28.853015611724025 ], [ -82.02177987059774, 28.852834542905146 ], [ -82.021839710689932, 28.85267181182682 ], [ -82.021841363740506, 28.852666296678553 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02170216219757, 28.852619221719518 ], [ -82.021841363740506, 28.852666296678553 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023034936273248, 28.848933882253839 ], [ -82.022698119055221, 28.849570787604296 ], [ -82.022614290386699, 28.849735552318176 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022739207965728, 28.849801607791992 ], [ -82.022971779850835, 28.849354396881434 ], [ -82.023165730815649, 28.848986210495411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022614290386699, 28.849735552318176 ], [ -82.022739207965728, 28.849801607791992 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026512704261322, 28.844504161392067 ], [ -82.026495484804727, 28.844596675427837 ], [ -82.026442239484709, 28.845066517291965 ], [ -82.026427185657184, 28.84523461166339 ], [ -82.02640986529822, 28.8453714108784 ], [ -82.026397243737236, 28.845512429278799 ], [ -82.026382799983608, 28.845570759797194 ], [ -82.026361659171187, 28.845609200251733 ], [ -82.026344853256887, 28.845630690060482 ], [ -82.026282305976153, 28.84570486336866 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026512704261322, 28.844504161392067 ], [ -82.026520911029635, 28.844549569281043 ], [ -82.026542326336369, 28.844601917885608 ], [ -82.026568500151953, 28.844647127430225 ], [ -82.02660181262884, 28.844670922070051 ], [ -82.026641315675576, 28.844685090611893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reagan Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004273647419126, 28.78895691997603 ], [ -82.003597363886783, 28.788964463593882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reagan Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003597342189877, 28.789059298593493 ], [ -82.004273646686258, 28.789075943303523 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reagan Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003597363886783, 28.788964463593882 ], [ -82.003597342189877, 28.789059298593493 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139407430425095, 28.668603774117585 ], [ -82.138975685036243, 28.66860239422741 ], [ -82.138797025403989, 28.668601620750938 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.139896841807499, 28.668733916669485 ], [ -82.140429549750607, 28.668749464497079 ], [ -82.140721122364056, 28.668768108142878 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140014741328443, 28.668605714059371 ], [ -82.13999634458132, 28.668609257470468 ], [ -82.139956582435445, 28.668628191344101 ], [ -82.13991795609941, 28.668661136353169 ], [ -82.139897129033614, 28.668697489232581 ], [ -82.139896841807499, 28.668733916669485 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137348904818808, 28.668707578052786 ], [ -82.137756761720581, 28.668713229142085 ], [ -82.138785260072936, 28.668718399007492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lowery Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137348904818808, 28.668707578052786 ], [ -82.13735475471465, 28.668598307868375 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030772551558158, 28.927474771226585 ], [ -82.031270089320657, 28.927482765708522 ], [ -82.031557091504283, 28.927484695773959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 106", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031556582437219, 28.927387309392291 ], [ -82.031557091504283, 28.927484695773959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03697519405965, 28.933623414329777 ], [ -82.036968807633656, 28.934587756262562 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037116704724554, 28.934000799205592 ], [ -82.037070598260684, 28.933739467689062 ], [ -82.037045366436885, 28.933687321942056 ], [ -82.037011724172672, 28.933650313549315 ], [ -82.03697519405965, 28.933623414329777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036973105587947, 28.932651428512493 ], [ -82.037013408666596, 28.933066610043014 ], [ -82.03702181741032, 28.933371077877474 ], [ -82.037036957074235, 28.933460232154619 ], [ -82.03706723506555, 28.933509013685693 ], [ -82.037117840757901, 28.933547800388851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037446803358833, 28.925694695509872 ], [ -82.037443889381876, 28.925653629250156 ], [ -82.03740275019841, 28.925101361915331 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037446803358833, 28.925694695509872 ], [ -82.037386942472381, 28.925546854611262 ], [ -82.037366166046795, 28.925374148378197 ], [ -82.037349285504291, 28.925275459952111 ], [ -82.03732721046174, 28.925235204672962 ], [ -82.037296046301464, 28.925200143677287 ], [ -82.037253679836269, 28.925183543078408 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037159911985754, 28.923815432767494 ], [ -82.03719709668772, 28.924329801352151 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03740275019841, 28.925101361915331 ], [ -82.037323607572461, 28.924809208647144 ], [ -82.037299387597244, 28.924480303387686 ], [ -82.03728154083673, 28.924392338080146 ], [ -82.0372560435232, 28.924348994258185 ], [ -82.037226722372083, 28.924324772914126 ], [ -82.03719709668772, 28.924329801352151 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03711172603731, 28.92286033098944 ], [ -82.037120068378329, 28.923184654309559 ], [ -82.037154378626155, 28.923738883535169 ], [ -82.037159911985754, 28.923815432767494 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037086914994447, 28.921990327236351 ], [ -82.037132053478246, 28.922109473037239 ], [ -82.037148681111617, 28.922167670191953 ], [ -82.037174811323865, 28.922192612461913 ], [ -82.037203316510926, 28.9222080529081 ], [ -82.037236161930508, 28.922217633560841 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037182810595183, 28.920163247125934 ], [ -82.037175910101567, 28.919652205771378 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037036579031508, 28.920161707803892 ], [ -82.037046362793049, 28.920535534424843 ], [ -82.037067086729635, 28.921263842068946 ], [ -82.037086914994447, 28.921990327236351 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037036579031508, 28.920161707803892 ], [ -82.037182810595183, 28.920163247125934 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037158340219165, 28.918877025543278 ], [ -82.037156018066085, 28.918785808559843 ], [ -82.037150560055636, 28.918517570065887 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036965456858496, 28.917292562852197 ], [ -82.03696782233493, 28.917484627689053 ], [ -82.036972499175974, 28.917717127395548 ], [ -82.036981826594101, 28.918086496036288 ], [ -82.03698701055994, 28.918293938822085 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037158340219165, 28.918877025543278 ], [ -82.037115833123906, 28.918712713647189 ], [ -82.037065864488994, 28.918598500134873 ], [ -82.037037310773627, 28.918567567239222 ], [ -82.036993909699419, 28.918569960148268 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037150560055636, 28.918517570065887 ], [ -82.03714586704983, 28.918286997703014 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03698701055994, 28.918293938822085 ], [ -82.036993909699419, 28.918569960148268 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03698701055994, 28.918293938822085 ], [ -82.037015896788418, 28.918346277711869 ], [ -82.037053967546996, 28.918427179897272 ], [ -82.037099177179385, 28.918481907232373 ], [ -82.037150560055636, 28.918517570065887 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037079705610438, 28.91285440427253 ], [ -82.037079748165226, 28.912753669137789 ], [ -82.037079748122522, 28.912730190472193 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036908241702491, 28.912505939394542 ], [ -82.036911229150135, 28.912755885640806 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036908241702491, 28.912505939394542 ], [ -82.036936798786385, 28.912563077755596 ], [ -82.036968830020641, 28.912631315226943 ], [ -82.036995288432308, 28.912692590270254 ], [ -82.037024533258517, 28.912716264040284 ], [ -82.037052385146751, 28.912730190668601 ], [ -82.037079748122522, 28.912730190472193 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036933966857035, 28.908158311091729 ], [ -82.036925851456374, 28.909137479173651 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 216", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036933966857035, 28.908158311091729 ], [ -82.036973123085289, 28.908849035338143 ], [ -82.036983356456091, 28.908982069998885 ], [ -82.03700893954003, 28.9090588215149 ], [ -82.037044757657384, 28.909115106151472 ], [ -82.037094117434108, 28.909170102235976 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037107044739798, 28.895521970215288 ], [ -82.037107177386787, 28.895458836308936 ], [ -82.037105082913286, 28.895085861591973 ], [ -82.037106650600094, 28.894875645303731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036941912381621, 28.893972773379303 ], [ -82.036968449907349, 28.894188763144438 ], [ -82.036987679430382, 28.894721770497387 ], [ -82.037019275035902, 28.894800073414945 ], [ -82.037061861521565, 28.894853649449768 ], [ -82.037106650600094, 28.894875645303731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03691519164866, 28.890012617386418 ], [ -82.036907569574211, 28.890604771750251 ], [ -82.036903726492142, 28.890838537002278 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 92nd Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03691519164866, 28.890012617386418 ], [ -82.036949728790717, 28.890142250522388 ], [ -82.036954912230485, 28.890349592213923 ], [ -82.036975646217996, 28.890437714243987 ], [ -82.037011930357011, 28.890505099927648 ], [ -82.037040439976565, 28.890549160546016 ], [ -82.037077209422037, 28.890576422612522 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037148808457744, 28.883569629340784 ], [ -82.037144255011725, 28.882964200291784 ], [ -82.037149279578671, 28.882214838064733 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037033193257713, 28.881932120839974 ], [ -82.037033276735855, 28.882413274587467 ], [ -82.037030368882739, 28.883588467135986 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037149279578671, 28.882214838064733 ], [ -82.03712955530122, 28.88207841641076 ], [ -82.037109831335911, 28.881974858356052 ], [ -82.037088462062314, 28.881938695404752 ], [ -82.037058873921438, 28.881928833135092 ], [ -82.037033193257713, 28.881932120839974 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037149279578671, 28.882214838064733 ], [ -82.037150440756548, 28.882041728611011 ], [ -82.037148528310894, 28.881701979433444 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037033096709237, 28.881381459204782 ], [ -82.037033193257713, 28.881932120839974 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037033096709237, 28.881381459204782 ], [ -82.037067094982632, 28.881496522271554 ], [ -82.037085177120261, 28.881616517099154 ], [ -82.037108188153738, 28.881665831547718 ], [ -82.037131201694436, 28.881687199925281 ], [ -82.037148528310894, 28.881701979433444 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045498604007037, 28.846497821565006 ], [ -82.045500761869661, 28.846211254921343 ], [ -82.045536988152094, 28.844521942576044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spring Lake Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045536988152094, 28.844521942576044 ], [ -82.045402090755431, 28.844519552019342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045536988152094, 28.844521942576044 ], [ -82.04553747436664, 28.844499214233718 ], [ -82.045542830273391, 28.843558231957807 ], [ -82.0455454803853, 28.843025600770808 ], [ -82.045547076091154, 28.842657315917325 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045410987554405, 28.842660500205927 ], [ -82.045410089959333, 28.843025645704834 ], [ -82.045407440313966, 28.84356334965457 ], [ -82.045402090755431, 28.844519552019342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045547076091154, 28.842657315917325 ], [ -82.045410987554405, 28.842660500205927 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045547076091154, 28.842657315917325 ], [ -82.045553115677635, 28.841262991963806 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045421430914331, 28.83992268489212 ], [ -82.045415530830383, 28.840939757537324 ], [ -82.045414611689111, 28.841266639938492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045553115677635, 28.841262991963806 ], [ -82.045414611689111, 28.841266639938492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045553761054919, 28.839919309657986 ], [ -82.045557176467383, 28.839417400562592 ], [ -82.045557091620779, 28.839220581378026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clay Drain Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045553761054919, 28.839919309657986 ], [ -82.045421430914331, 28.83992268489212 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979584200074413, 28.897320155758631 ], [ -81.97957343303618, 28.896820492264624 ], [ -81.979575765300808, 28.895941396624298 ], [ -81.979581993560842, 28.895011522743456 ], [ -81.979585057507165, 28.894788326741025 ], [ -81.979594928831801, 28.894717962402339 ], [ -81.979617240417653, 28.89465691079101 ], [ -81.979668742039692, 28.894598228546329 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979370484991321, 28.894582619982646 ], [ -81.979404762390359, 28.894637251398262 ], [ -81.979432009587043, 28.894685227262492 ], [ -81.979449342367175, 28.894741925031045 ], [ -81.97945924356388, 28.894794259938173 ], [ -81.979459221154883, 28.894901106660313 ], [ -81.97945915628253, 28.895230370250264 ], [ -81.979454111013297, 28.895679565823588 ], [ -81.979451590468884, 28.89589107980396 ], [ -81.979453981647367, 28.896320649656627 ], [ -81.97944894983678, 28.896702246686356 ], [ -81.979446437268678, 28.896878871422409 ], [ -81.979446350210907, 28.897308442635676 ], [ -81.979446206880979, 28.897317598245699 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979446206880979, 28.897317598245699 ], [ -81.979584200074413, 28.897320155758631 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039771313880337, 28.95594792012453 ], [ -82.039890256903888, 28.956660755627873 ], [ -82.040159160653872, 28.958312308113012 ], [ -82.040428059028656, 28.959924918587497 ], [ -82.040454088437784, 28.96010936879243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040660140446022, 28.960097001970684 ], [ -82.040059388579664, 28.956364926007698 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040059388579664, 28.956364926007698 ], [ -82.039968911006014, 28.956272235881325 ], [ -82.039940277534072, 28.956182242564751 ], [ -82.039923914896832, 28.956051342990857 ], [ -82.039895282114259, 28.955989982962965 ], [ -82.039842102497119, 28.955944985939311 ], [ -82.039771313880337, 28.95594792012453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040059388579664, 28.956364926007698 ], [ -82.03997681098825, 28.955851925682285 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039649897561546, 28.955220255100667 ], [ -82.039771313880337, 28.95594792012453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039649897561546, 28.955220255100667 ], [ -82.039725325399161, 28.955319495970134 ], [ -82.039781289060912, 28.955514154345178 ], [ -82.039808052710427, 28.95568204664432 ], [ -82.039839685063328, 28.955786676083729 ], [ -82.039885916179614, 28.955842639784638 ], [ -82.0399224142637, 28.955857239889816 ], [ -82.03997681098825, 28.955851925682285 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039118884422919, 28.951987027876136 ], [ -82.039211522768866, 28.952544468509625 ], [ -82.039454301558763, 28.954037970307105 ], [ -82.03962920463357, 28.955096246626194 ], [ -82.039649897561546, 28.955220255100667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03997681098825, 28.955851925682285 ], [ -82.039957197618307, 28.955730077941112 ], [ -82.03964262268569, 28.953778027788335 ], [ -82.039339586857309, 28.951975980747804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039339586857309, 28.951975980747804 ], [ -82.039118884422919, 28.951987027876136 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038744559629663, 28.948437578551168 ], [ -82.038573525372456, 28.947420498457276 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038440629356984, 28.947883219654862 ], [ -82.038550276271934, 28.94855097142548 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038847443545052, 28.94904938533077 ], [ -82.038781289437154, 28.948977717975318 ], [ -82.038749370010578, 28.94887615604847 ], [ -82.038714549334628, 28.948757183408347 ], [ -82.038697139114404, 28.948629505916912 ], [ -82.038659416244215, 28.948568567697897 ], [ -82.038604282366904, 28.948542452042254 ], [ -82.038550276271934, 28.94855097142548 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038847443545052, 28.94904938533077 ], [ -82.038744559629663, 28.948437578551168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038363161448686, 28.947417247295274 ], [ -82.038415391276118, 28.94772952672314 ], [ -82.038440629356984, 28.947883219654862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038440629356984, 28.947883219654862 ], [ -82.038494192156008, 28.947976333717943 ], [ -82.038543521709272, 28.94809820861197 ], [ -82.038581245037832, 28.948214279618671 ], [ -82.038592851795016, 28.948333251658322 ], [ -82.038621869464748, 28.948405796742264 ], [ -82.038688608697385, 28.948443519792061 ], [ -82.038744559629663, 28.948437578551168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036969449120321, 28.938316937528214 ], [ -82.036987068299808, 28.938922698226584 ], [ -82.037005644027928, 28.93915236834216 ], [ -82.037051885205756, 28.939563003895636 ], [ -82.037186669663924, 28.940383946653895 ], [ -82.037404193295615, 28.941612573915819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037677478023355, 28.941967905596655 ], [ -82.037404193295615, 28.941612573915819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002068851932123, 28.957158069575971 ], [ -82.00196723768498, 28.957163980746575 ], [ -82.001839283451289, 28.957208548078711 ], [ -82.001775478653627, 28.957231246751519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001775477627703, 28.957231246751526 ], [ -82.001879538325042, 28.957266056112239 ], [ -82.002004617663744, 28.957267494809763 ], [ -82.002078178223982, 28.957263757567119 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Talley Ridge Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002078178223982, 28.957263757567119 ], [ -82.002068851932123, 28.957158069575971 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avalos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00116035859449, 28.957325725693817 ], [ -82.000850154015481, 28.957415572574448 ], [ -82.000808812703809, 28.957493114703617 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avalos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000808812703809, 28.957493114703617 ], [ -82.00104280407642, 28.957448639983333 ], [ -82.00117347258319, 28.957413769418732 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Avalos Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00116035859449, 28.957325725693817 ], [ -82.00117347258319, 28.957413769418732 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penrose Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014359455820227, 28.866325753868598 ], [ -82.01434018359555, 28.866336149458412 ], [ -82.014330387277823, 28.866342947503657 ], [ -82.014328036102327, 28.866344751446551 ], [ -82.014325724908147, 28.866346595086721 ], [ -82.014321227588894, 28.866350401458273 ], [ -82.014305036403329, 28.86636708849267 ], [ -82.014292010770802, 28.866385799071658 ], [ -82.014286788546272, 28.866395770954647 ], [ -82.014282470440435, 28.866406073891426 ], [ -82.014276651104026, 28.866427411248175 ], [ -82.014275184707913, 28.866438316635378 ], [ -82.01427481744912, 28.866443798165712 ], [ -82.014274725560526, 28.86644654388428 ], [ -82.014274695173555, 28.866449288694351 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penrose Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014274695173555, 28.866449288694351 ], [ -82.014276650756273, 28.866471166647777 ], [ -82.014282470631528, 28.866492504633321 ], [ -82.014292010202837, 28.86651277932911 ], [ -82.01429495063276, 28.866517622596483 ], [ -82.01429810630529, 28.86652236027254 ], [ -82.014305035698627, 28.866531489979646 ], [ -82.014321226224467, 28.866548177344015 ], [ -82.014340182989073, 28.866562429108889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penrose Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014340182989073, 28.866562429108889 ], [ -82.014361438531466, 28.866573895226882 ], [ -82.014384471072177, 28.866582293329099 ], [ -82.014396476633294, 28.86658527421929 ], [ -82.014408711689811, 28.866587416845157 ], [ -82.014433564822156, 28.866589138610504 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penrose Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014340182989073, 28.866562429108889 ], [ -82.014367172783807, 28.866590975247384 ], [ -82.014389823231681, 28.866616499105906 ], [ -82.014409811637861, 28.866649336400933 ], [ -82.014424088318876, 28.866687883149499 ], [ -82.014436651889582, 28.866731896225222 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penrose Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014436651889582, 28.866731896225222 ], [ -82.014445503287007, 28.86668788366865 ], [ -82.014454069169162, 28.866655047070157 ], [ -82.014469773748047, 28.866625065530265 ], [ -82.014488333414008, 28.866597940388193 ], [ -82.014505105860536, 28.866574108834385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penrose Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014433564822156, 28.866589138610504 ], [ -82.014458417492747, 28.866587417181552 ], [ -82.014464558323695, 28.86658645199066 ], [ -82.014470651974591, 28.866585274763029 ], [ -82.01448265878625, 28.866582294126882 ], [ -82.014505105860536, 28.866574108834385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penrose Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014505105860536, 28.866574108834385 ], [ -82.014505691124455, 28.86657389583069 ], [ -82.014526946666606, 28.866562430784043 ], [ -82.014545902683622, 28.866548178755689 ], [ -82.014562093858757, 28.866531491692847 ], [ -82.014569023878337, 28.866522361472352 ], [ -82.014572259210368, 28.866517275756614 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sundance Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014572259210368, 28.866517275756614 ], [ -82.014595409786878, 28.86649657633054 ], [ -82.014618253523963, 28.86648087208388 ], [ -82.014649660742009, 28.866468023637701 ], [ -82.014683926319606, 28.866459457218927 ], [ -82.014721045135403, 28.866455174630545 ], [ -82.014748602675596, 28.866452380027287 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sundance Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014748602675596, 28.866452380027287 ], [ -82.014699630264516, 28.8664480360328 ], [ -82.014659655627739, 28.866436614320971 ], [ -82.014618253382821, 28.866419482066753 ], [ -82.014592554404913, 28.866400922538688 ], [ -82.014577117017268, 28.866390046865167 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penrose Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014572259210368, 28.866517275756614 ], [ -82.014575119461099, 28.866512781088218 ], [ -82.014584659744472, 28.86649250624815 ], [ -82.01459047902155, 28.866471167976112 ], [ -82.014592434886396, 28.866449290525555 ], [ -82.014590479238194, 28.866427413479073 ], [ -82.014584659303765, 28.866406075506728 ], [ -82.014577117017268, 28.866390046865167 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penrose Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014577117017268, 28.866390046865167 ], [ -82.014575119685347, 28.86638579992913 ], [ -82.014562093134401, 28.866367089304426 ], [ -82.014545903623215, 28.866350401968468 ], [ -82.014536743985062, 28.866342948080494 ], [ -82.01452694686904, 28.866336150232037 ], [ -82.014521828477783, 28.866333009840073 ], [ -82.014519218552437, 28.866331506870839 ], [ -82.014516574807288, 28.86633004902022 ], [ -82.014505690331816, 28.866324684139766 ], [ -82.014483098621994, 28.866316447524991 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penrose Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014483098621994, 28.866316447524991 ], [ -82.014468347410485, 28.866300985360152 ], [ -82.014456804358744, 28.866284165801087 ], [ -82.014448186337162, 28.866264343978358 ], [ -82.014441222627113, 28.86624387864364 ], [ -82.014435110358249, 28.866220734282567 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penrose Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014435110358249, 28.866220734282567 ], [ -82.014428373454919, 28.866248161386043 ], [ -82.014415523883585, 28.866272431050746 ], [ -82.014401246894124, 28.866292418527504 ], [ -82.014385271787944, 28.866307434483641 ], [ -82.014359455820227, 28.866325753868598 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penrose Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014483098621994, 28.866316447524991 ], [ -82.014482658863102, 28.866316286057749 ], [ -82.014458419329841, 28.866311163456864 ], [ -82.014446030664587, 28.8663098717232 ], [ -82.014433566262994, 28.866309440793618 ], [ -82.014408712633127, 28.866311163120344 ], [ -82.014384471398685, 28.866316285259494 ], [ -82.014361440132475, 28.86632468353509 ], [ -82.014359455820227, 28.866325753868598 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00014029619517, 28.92623483875493 ], [ -82.000134271706514, 28.926242164474854 ], [ -82.000044406818205, 28.92635489698533 ], [ -81.999989488680967, 28.926457379528692 ], [ -81.999867316483375, 28.926703781786205 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99999393258976, 28.926747918705178 ], [ -82.000129279437871, 28.926470558031284 ], [ -82.000182531813962, 28.926370999791434 ], [ -82.000224135085318, 28.926300726408201 ], [ -82.000235229211583, 28.926282981888654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000235229211583, 28.926282981888654 ], [ -82.00014029619517, 28.92623483875493 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000750896076369, 28.92570198038247 ], [ -82.000645513644372, 28.92575606139966 ], [ -82.000576937227223, 28.92580001767012 ], [ -82.000513699066531, 28.925845404947626 ], [ -82.000437148400181, 28.925903965701917 ], [ -82.000380537628487, 28.925956649786247 ], [ -82.000312336322821, 28.926024019590905 ], [ -82.000247434312797, 28.926104542131082 ], [ -82.00014029619517, 28.92623483875493 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000235229211583, 28.926282981888654 ], [ -82.00027905389652, 28.926212881733441 ], [ -82.000333971583089, 28.926135288015814 ], [ -82.000408857902826, 28.926057693393929 ], [ -82.000492065942552, 28.925981563158864 ], [ -82.000595242530153, 28.925896646310335 ], [ -82.000710068903871, 28.92582051682534 ], [ -82.000783211321007, 28.925781752288408 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000783211321007, 28.925781752288408 ], [ -82.000750896076369, 28.92570198038247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004065564982611, 28.792492964398601 ], [ -82.003828922743736, 28.792562280201416 ], [ -82.003278902460579, 28.792557941322368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003285406739948, 28.792667265501834 ], [ -82.003485599654496, 28.792669830570468 ], [ -82.003888291728174, 28.792659092582884 ], [ -82.00406288300691, 28.792659431369589 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003278902460579, 28.792557941322368 ], [ -82.003285406739948, 28.792667265501834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005898803311467, 28.79245674124035 ], [ -82.00577522109846, 28.792442994583254 ], [ -82.005577491726044, 28.792496860797105 ], [ -82.005425290477447, 28.792527805509543 ], [ -82.005386081282126, 28.792532972588187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005397214444528, 28.792639998313557 ], [ -82.005470824760238, 28.792628647397247 ], [ -82.005675061238392, 28.792582801769946 ], [ -82.005840268075374, 28.792531229407423 ], [ -82.005898803311467, 28.79245674124035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005397214444528, 28.792639998313557 ], [ -82.005386081282126, 28.792532972588187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.079071981649292, 28.865731011158012 ], [ -82.078667661677557, 28.865270570766278 ], [ -82.076609355504104, 28.862915831395352 ], [ -82.075249458032133, 28.861364838110525 ], [ -82.074101824835708, 28.86005396063948 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.073940875152786, 28.860190774172249 ], [ -82.074303291317221, 28.860605646086022 ], [ -82.074643251735409, 28.860985316940379 ], [ -82.075750454947809, 28.862253586408542 ], [ -82.076908223003258, 28.863578390452489 ], [ -82.077500897933604, 28.864252904094581 ], [ -82.07890601593553, 28.865856314636098 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.073940875152786, 28.860190774172249 ], [ -82.074101824835708, 28.86005396063948 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965471556018869, 28.847793593268872 ], [ -81.965521996256399, 28.847777657969218 ], [ -81.965576232373508, 28.847765258858328 ], [ -81.965616366375698, 28.847759539496224 ], [ -81.965665174462401, 28.847757641801081 ], [ -81.965784478346976, 28.847772950994941 ], [ -81.965877754692741, 28.847783478469783 ], [ -81.966002484736848, 28.847794015650873 ], [ -81.966162039779732, 28.847796578795023 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966170448897117, 28.847682903897205 ], [ -81.96604916171016, 28.847674659598951 ], [ -81.965907079059448, 28.84766411895934 ], [ -81.965796018534107, 28.847647618222634 ], [ -81.965726648332819, 28.847639006073372 ], [ -81.965690206088453, 28.847631739521763 ], [ -81.965666411442953, 28.847624666580682 ], [ -81.965641620889343, 28.847613773919402 ], [ -81.965619499098338, 28.847599635439874 ], [ -81.965594514015436, 28.847582023247526 ], [ -81.965537954305148, 28.847540025351787 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hillsborough Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966162039779732, 28.847796578795023 ], [ -81.966170448897117, 28.847682903897205 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970209183420963, 28.894385813944865 ], [ -81.970140909919905, 28.894351745957294 ], [ -81.970017995522412, 28.894357727830034 ], [ -81.969870042408417, 28.894369714182119 ], [ -81.969741935902633, 28.894378925770919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969756576821197, 28.89448901505682 ], [ -81.969915534630573, 28.894473883176836 ], [ -81.970070318753443, 28.894453887683895 ], [ -81.970147711951128, 28.894439883209003 ], [ -81.970209183420963, 28.894385813944865 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Odell Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.969756576821197, 28.89448901505682 ], [ -81.969741935902633, 28.894378925770919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967997902426347, 28.831016970119332 ], [ -81.96780949992737, 28.830738436694482 ], [ -81.967740946386598, 28.830633583761454 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967333329327573, 28.830345266348335 ], [ -81.967407249026806, 28.830471337671291 ], [ -81.96747641555018, 28.830544694049664 ], [ -81.9675349588302, 28.830603150715774 ], [ -81.967597400226708, 28.830674213542583 ], [ -81.967611625786802, 28.83070081250861 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Deskin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967740946386598, 28.830633583761454 ], [ -81.967611625786802, 28.83070081250861 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958385135720633, 28.917678357409642 ], [ -81.958388542709542, 28.917680504127887 ], [ -81.958585262482927, 28.917804414238947 ], [ -81.958779299936424, 28.917928277219264 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958779299936424, 28.917928277219264 ], [ -81.958870087857264, 28.917832262848652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976693289509001, 28.820209419970862 ], [ -81.976024122512129, 28.821258631338605 ], [ -81.975130854159275, 28.822641660475792 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976806624784558, 28.820281340159731 ], [ -81.976693289509001, 28.820209419970862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winifred Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998791214377533, 28.917758478729482 ], [ -81.998719899636512, 28.917759903608168 ], [ -81.998604984272063, 28.917759901417639 ], [ -81.998497309411007, 28.917804008897662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winifred Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998497309411007, 28.917804008897662 ], [ -81.998601500943536, 28.917854880740681 ], [ -81.99868926718888, 28.917866806489286 ], [ -81.99879332018449, 28.917866959180738 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winifred Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998791214377533, 28.917758478729482 ], [ -81.99879332018449, 28.917866959180738 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96797019593545, 28.906727831594246 ], [ -81.967922716287262, 28.906732141342495 ], [ -81.967832458830287, 28.906739905636631 ], [ -81.967738659047285, 28.906749226383997 ], [ -81.967667867790311, 28.90675855352157 ], [ -81.967602050509825, 28.906795189875325 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967602050509825, 28.906795189875325 ], [ -81.967667845858671, 28.906828629592866 ], [ -81.967788183208398, 28.906844229530545 ], [ -81.967930206897989, 28.906838273238222 ], [ -81.96797536391081, 28.906837554980942 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stillwater Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96797019593545, 28.906727831594246 ], [ -81.96797536391081, 28.906837554980942 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995867775453846, 28.871308186876924 ], [ -81.995832905507001, 28.871279765024656 ], [ -81.995688019613269, 28.871166716175715 ], [ -81.995630979644901, 28.87110950014365 ], [ -81.995609470552594, 28.871084257493969 ], [ -81.99559253008448, 28.871040151449115 ], [ -81.995562300742918, 28.87096919421699 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995801493629344, 28.871404329643632 ], [ -81.995954734926258, 28.87152904450199 ], [ -81.996076572773632, 28.871613107686414 ], [ -81.996190178548872, 28.871641614825243 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Charles Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995801493629344, 28.871404329643632 ], [ -81.995867775453846, 28.871308186876924 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010583304939473, 28.798860162367195 ], [ -82.010491373269545, 28.798703390391911 ], [ -82.010362991573672, 28.798489491016671 ], [ -82.010290129952551, 28.798396292682799 ], [ -82.010210554674529, 28.798323835333566 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010210554674529, 28.798323835333566 ], [ -82.010225953307042, 28.798437550910034 ], [ -82.010249811113368, 28.798517765732264 ], [ -82.010306198232371, 28.798636174957615 ], [ -82.010444987355456, 28.798869173790305 ], [ -82.010454939769588, 28.798886881864306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010583304939473, 28.798860162367195 ], [ -82.010454939769588, 28.798886881864306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Nook Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020515928493467, 28.844116804725662 ], [ -82.020394616812652, 28.844172142885981 ], [ -82.020315718502289, 28.84427928700978 ], [ -82.020253379088928, 28.844370846760341 ], [ -82.020186169229802, 28.844481887074462 ], [ -82.020133570086315, 28.84457149908571 ], [ -82.020068308255446, 28.844704942419241 ], [ -82.020010179881737, 28.844837665560071 ], [ -82.019975653921023, 28.844964620469291 ], [ -82.019948551571304, 28.845047087906533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Nook Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02003205623474, 28.845075892017803 ], [ -82.020272284722594, 28.844483615159131 ], [ -82.020515928493467, 28.844116804725662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Nook Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019948551571304, 28.845047087906533 ], [ -82.02003205623474, 28.845075892017803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961170756987642, 28.78397655477989 ], [ -81.961035143813149, 28.783930926164039 ], [ -81.960915912932919, 28.783888900598345 ], [ -81.960795815939619, 28.783848831795144 ], [ -81.960674895838864, 28.78381073600633 ], [ -81.96055319256547, 28.783774624069238 ], [ -81.960430749126004, 28.783740508626781 ], [ -81.960307608526833, 28.78370840232208 ], [ -81.960183812750259, 28.783678316895742 ], [ -81.960059403779454, 28.783650261381588 ], [ -81.959934424620926, 28.783624246618508 ], [ -81.959808918282079, 28.783600280738593 ], [ -81.959682929818683, 28.783578371874732 ], [ -81.959634183673188, 28.783571140559769 ], [ -81.959585164462467, 28.783565527897441 ], [ -81.959535939780565, 28.783561540223989 ], [ -81.9594865802935, 28.783559185681266 ], [ -81.959437154621597, 28.783558465192115 ], [ -81.959387733432905, 28.783559381484736 ], [ -81.959333475894965, 28.783557586648371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Catherine Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961021922974737, 28.786722570798194 ], [ -81.960965910594226, 28.786610667622753 ], [ -81.960932734634909, 28.786486254149544 ], [ -81.960916146004948, 28.78635769393501 ], [ -81.960907851919671, 28.78620424939815 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Catherine Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960907854220366, 28.785306726476669 ], [ -81.960907855833256, 28.784877169829496 ], [ -81.960907855986179, 28.784653224432756 ], [ -81.960916151816448, 28.784545399372199 ], [ -81.960941034494098, 28.78445001572144 ], [ -81.961170756987642, 28.78397655477989 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tompkins Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959750792809942, 28.786647991390296 ], [ -81.959750793170116, 28.786374280724381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tompkins Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959750793170116, 28.786374280724381 ], [ -81.959759659664286, 28.785257564892301 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tompkins Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959763238560257, 28.784806666874832 ], [ -81.959763240263769, 28.784479044655729 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kayla Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959750793170116, 28.786374280724381 ], [ -81.959890114071968, 28.786363018108332 ], [ -81.960417542314289, 28.786256612703728 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kayla Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960417542314289, 28.786256612703728 ], [ -81.960600683732906, 28.786220292333851 ], [ -81.960744946029052, 28.786204432990814 ], [ -81.960907851919671, 28.78620424939815 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mccullough Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959763238560257, 28.784806666874832 ], [ -81.959828206206126, 28.78480303099764 ], [ -81.960419382848855, 28.78493191309412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mccullough Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960419382848855, 28.78493191309412 ], [ -81.960758398489943, 28.78498514691081 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Guy Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960417542314289, 28.786256612703728 ], [ -81.960418833294568, 28.785286138966132 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mulligan Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964167749097058, 28.783706699619021 ], [ -81.964114608331911, 28.783703378479636 ], [ -81.963991400814521, 28.783686875629947 ], [ -81.96385901670881, 28.783648525169941 ], [ -81.963769873964551, 28.783611462098065 ], [ -81.963480507894232, 28.783466372035651 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mulligan Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963480507894232, 28.783466372035651 ], [ -81.962854337936761, 28.783145775278175 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mulligan Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962854337936761, 28.783145775278175 ], [ -81.962618900054522, 28.783010523535022 ], [ -81.962373441446132, 28.782910337938564 ], [ -81.962148020273631, 28.782815159962208 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mulligan Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962148020273631, 28.782815159962208 ], [ -81.961867497536417, 28.782714974409295 ], [ -81.961622879205052, 28.782656332054188 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grasso Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962854337936761, 28.783145775278175 ], [ -81.962478635479769, 28.783862106116302 ], [ -81.962458598286034, 28.783942254929332 ], [ -81.962473625989716, 28.78403242289151 ], [ -81.962513700267607, 28.78410255291206 ], [ -81.962553775178364, 28.784142626826338 ], [ -81.962814261018764, 28.78427787926768 ], [ -81.962899419640152, 28.784277879303964 ], [ -81.962964541471194, 28.784262851142703 ], [ -81.963034671990229, 28.784232795376308 ], [ -81.96308977518288, 28.784187711918467 ], [ -81.963480507894232, 28.783466372035651 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Merhottein Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961622879205052, 28.782656332054188 ], [ -81.961316469166903, 28.782589741073654 ], [ -81.961246338086411, 28.782559685559207 ], [ -81.96118622554313, 28.78251960998557 ], [ -81.961146150704948, 28.782449479555943 ], [ -81.961116096104746, 28.782359311599119 ], [ -81.961122212114631, 28.782174472398626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Merhottein Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961122212114631, 28.782174472398626 ], [ -81.961126116892842, 28.781457634995512 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Merhottein Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961126116892842, 28.781457634995512 ], [ -81.961131128164482, 28.7808164443056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Merhottein Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961131128164482, 28.7808164443056 ], [ -81.961131129326716, 28.780530913976971 ], [ -81.961131129129669, 28.780380634329163 ], [ -81.961146157153195, 28.780295476377855 ], [ -81.961181223141239, 28.780230355593861 ], [ -81.961236325870303, 28.780180262309074 ], [ -81.961301447730762, 28.780145196327648 ], [ -81.961566943348686, 28.780065048446296 ], [ -81.961737261526523, 28.779979890445922 ], [ -81.961897561589183, 28.779864675989113 ], [ -81.9620628711764, 28.779739444347587 ], [ -81.962203133349888, 28.779579146021238 ], [ -81.962288292225111, 28.779423857115539 ], [ -81.962373452345204, 28.77927858836177 ], [ -81.962438573333785, 28.779223485017354 ], [ -81.962553788937669, 28.779188420661324 ], [ -81.9626589856572, 28.779168382388995 ], [ -81.962774200866676, 28.779188420423431 ], [ -81.962884406347769, 28.77921847718785 ], [ -81.962974573817647, 28.779268569673967 ], [ -81.963024668242184, 28.779338700541576 ], [ -81.9630447048402, 28.779443895227637 ], [ -81.963024668213237, 28.779549090639836 ], [ -81.962989600826674, 28.779639258370935 ], [ -81.962934498512922, 28.779734434742164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Merhottein Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962934498512922, 28.779734434742164 ], [ -81.962789226154982, 28.77995985341672 ], [ -81.962643955026053, 28.780140188661985 ], [ -81.962528738994109, 28.780250393367581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Merhottein Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962528738994109, 28.780250393367581 ], [ -81.962373448595415, 28.780370616912652 ], [ -81.962143018553959, 28.780505867979233 ], [ -81.961892549329335, 28.780636110545661 ], [ -81.961637073449552, 28.780721267957201 ], [ -81.961386604530844, 28.780781378961315 ], [ -81.961131128164482, 28.7808164443056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Danielson Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963480507894232, 28.783466372035651 ], [ -81.963793438430642, 28.78292871768496 ], [ -81.963941316009951, 28.782745481036351 ], [ -81.964079547778667, 28.78261046495146 ], [ -81.964243498983762, 28.782485092277174 ], [ -81.964397805051277, 28.782391867225236 ], [ -81.964558541724344, 28.782305069974132 ], [ -81.964716062598825, 28.782243991266022 ], [ -81.964815718107957, 28.782202200479016 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Danielson Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964815718107957, 28.782202200479016 ], [ -81.965037533443194, 28.782141121943983 ], [ -81.965291496346765, 28.782083259066511 ], [ -81.96548759301804, 28.782041468254828 ], [ -81.965670831546717, 28.782006106480928 ], [ -81.965956940355213, 28.781973960200293 ], [ -81.966239834923101, 28.781957887244577 ], [ -81.966278411753407, 28.781951457095548 ], [ -81.96631055867519, 28.781932169145357 ], [ -81.966500228071268, 28.781810012392061 ], [ -81.966664179291683, 28.781662136639227 ], [ -81.966696326190259, 28.781575339206771 ], [ -81.966699541389673, 28.781462825855662 ], [ -81.966648106123799, 28.781376029380137 ], [ -81.966558095388905, 28.781298876268281 ], [ -81.966426291161497, 28.78124101228876 ], [ -81.966246266762226, 28.781173502982043 ], [ -81.966133752239017, 28.781170289545699 ], [ -81.966014808681919, 28.781183148229374 ], [ -81.965217559920177, 28.78136959831583 ], [ -81.964995744152262, 28.781437106148008 ], [ -81.964709634278393, 28.781527117649411 ], [ -81.964571401480526, 28.781578552080969 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Danielson Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964571401480526, 28.781578552080969 ], [ -81.964323869592263, 28.781668563887717 ], [ -81.96404740446107, 28.781797150494381 ], [ -81.963893097000351, 28.781887161109225 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Danielson Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963893097000351, 28.781887161109225 ], [ -81.963703428579151, 28.782041466378558 ], [ -81.963455896074194, 28.782250420613778 ], [ -81.963272657543328, 28.782459374799981 ], [ -81.96315371201969, 28.782620107699671 ], [ -81.963021908034051, 28.782838706005062 ], [ -81.962854337936761, 28.783145775278175 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tripp Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962148020273631, 28.782815159962208 ], [ -81.963173239136125, 28.78145033238091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caputo Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963173239136125, 28.78145033238091 ], [ -81.96348561259974, 28.781626038606287 ], [ -81.963893097000351, 28.781887161109225 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caputo Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962575068930192, 28.781051342471084 ], [ -81.962877251473813, 28.781244223743631 ], [ -81.963173239136125, 28.78145033238091 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Casteel Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961126116892842, 28.781457634995512 ], [ -81.961287882988657, 28.781459318399861 ], [ -81.961475632649311, 28.781434615437284 ], [ -81.961752314154452, 28.781375327416562 ], [ -81.96204875866971, 28.781281454161871 ], [ -81.96231555895551, 28.781162877408399 ], [ -81.962453527327241, 28.781099299148842 ], [ -81.962575068930192, 28.781051342471084 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Casteel Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962575068930192, 28.781051342471084 ], [ -81.962824456649031, 28.780881258439965 ], [ -81.962982561926864, 28.780757740808049 ], [ -81.963101140074798, 28.780634223891017 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "James Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962528738994109, 28.780250393367581 ], [ -81.962617813889878, 28.780313210226218 ], [ -81.963101140074798, 28.780634223891017 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "James Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963101140074798, 28.780634223891017 ], [ -81.964427508040046, 28.781449606731911 ], [ -81.964571401480526, 28.781578552080969 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "James Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964571401480526, 28.781578552080969 ], [ -81.964815718107957, 28.782202200479016 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959333475894965, 28.783557586648371 ], [ -81.95925333860238, 28.783557586786205 ], [ -81.95912078986818, 28.783554669132879 ], [ -81.958915905441614, 28.783525600077354 ], [ -81.958850253933761, 28.783514800080926 ], [ -81.958808880437857, 28.783507049183012 ], [ -81.958611700297851, 28.78346791580184 ], [ -81.958493266718264, 28.783441344086306 ], [ -81.958375456754951, 28.783412698038603 ], [ -81.958281574746152, 28.783389111361487 ], [ -81.958164131853607, 28.783354662458482 ], [ -81.958043557208057, 28.783317080543938 ], [ -81.957922983431331, 28.783282631357931 ], [ -81.957811804762855, 28.783243483948915 ], [ -81.957710020711588, 28.783205902207335 ], [ -81.957597276809182, 28.783165189516595 ], [ -81.95748140041664, 28.783118212777495 ], [ -81.957346733179676, 28.783060274085926 ], [ -81.95725229522759, 28.783015055330118 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dingman Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95725229522759, 28.783015055330118 ], [ -81.957248940765538, 28.782556315730083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dingman Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957248940765538, 28.782556315730083 ], [ -81.957260690756442, 28.781951811054078 ], [ -81.957245820399535, 28.781919092915473 ], [ -81.957222025505303, 28.781880426589321 ], [ -81.957183358551191, 28.781850683033497 ], [ -81.956737207964906, 28.781633558142232 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dingman Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956737207964906, 28.781633558142232 ], [ -81.956436800321569, 28.781469970009635 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Logan Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955999843157528, 28.781917041321257 ], [ -81.956383158355322, 28.782111692400829 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Logan Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956383158355322, 28.782111692400829 ], [ -81.957248940765538, 28.782556315730083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Atkinson Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956383158355322, 28.782111692400829 ], [ -81.956737207964906, 28.781633558142232 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whittle Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956162364011007, 28.781419008467893 ], [ -81.956257615885676, 28.781404355163662 ], [ -81.95632355864754, 28.781378710218874 ], [ -81.956389501881389, 28.781342075048112 ], [ -81.956444454353402, 28.781298114007047 ], [ -81.956495744211722, 28.781239498168446 ], [ -81.956536043334964, 28.781188209169063 ], [ -81.956572678316462, 28.781125930586402 ], [ -81.956594660018084, 28.781056324085089 ], [ -81.956601986937699, 28.780983053972076 ], [ -81.956601988542417, 28.780448185191212 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whittle Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956601988542417, 28.780448185191212 ], [ -81.956597875682462, 28.779102800660198 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lartigue Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956601988542417, 28.780448185191212 ], [ -81.957261422477075, 28.780448185801859 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lartigue Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957261422477075, 28.780448185801859 ], [ -81.957598466011476, 28.780448185853164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bertucci Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957261422477075, 28.780448185801859 ], [ -81.957259588852835, 28.779101145355003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956297920115347, 28.779100022902806 ], [ -81.956597875682462, 28.779102800660198 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956597875682462, 28.779102800660198 ], [ -81.957259588852835, 28.779101145355003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957259588852835, 28.779101145355003 ], [ -81.95759480595261, 28.779096360756977 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95725229522759, 28.783015055330118 ], [ -81.957180747463354, 28.782985112754144 ], [ -81.957025299114946, 28.782917435670413 ], [ -81.956886567700309, 28.782853511071838 ], [ -81.956739676526226, 28.782789585514408 ], [ -81.956581903790635, 28.782712060213441 ], [ -81.956440452829611, 28.782642695126274 ], [ -81.956288121159034, 28.78256516943582 ], [ -81.956156190650375, 28.782495804432248 ], [ -81.955992977970439, 28.782411478631751 ], [ -81.955842005455565, 28.782325793249125 ], [ -81.955735917770824, 28.782270027868076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954097321035846, 28.781773877727126 ], [ -81.954004389434829, 28.781744308758412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mattson Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955999843157528, 28.781917041321257 ], [ -81.955735917770824, 28.782270027868076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mattson Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956162364011007, 28.781419008467893 ], [ -81.956151764650031, 28.781584209823361 ], [ -81.956133387051423, 28.781682220483138 ], [ -81.95610888376325, 28.781743477865191 ], [ -81.955999843157528, 28.781917041321257 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mattson Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95586998445188, 28.780992067578442 ], [ -81.955923073209675, 28.781036987754145 ], [ -81.955974121267005, 28.781088034861519 ], [ -81.956031294251531, 28.781141124082431 ], [ -81.956072130926401, 28.781202379314891 ], [ -81.95611296916465, 28.7812697612523 ], [ -81.956141555093623, 28.781339184735483 ], [ -81.956162364011007, 28.781419008467893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mattson Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954182356711499, 28.780886399819352 ], [ -81.955423931757934, 28.780884176202164 ], [ -81.955521833762845, 28.780884176080139 ], [ -81.955586359450237, 28.780890851039622 ], [ -81.955670911745315, 28.780910875991641 ], [ -81.955754349982527, 28.780937577654395 ], [ -81.955823326665495, 28.780966502338828 ], [ -81.95586998445188, 28.780992067578442 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Windham Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954097321035846, 28.781773877727126 ], [ -81.954158877169988, 28.781598501343353 ], [ -81.954173171272288, 28.781537245353935 ], [ -81.954179296819333, 28.781484157044112 ], [ -81.954182356711499, 28.780886399819352 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Windham Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954182356711499, 28.780886399819352 ], [ -81.954180843818477, 28.780290358091595 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Windham Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954180843818477, 28.780290358091595 ], [ -81.954180163722583, 28.779705687567624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Windham Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954180163722583, 28.779705687567624 ], [ -81.954182461280539, 28.77910622094134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flaxmayer Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95586998445188, 28.780992067578442 ], [ -81.955894488117096, 28.780949187678754 ], [ -81.955921031803399, 28.78090426650347 ], [ -81.955933283659405, 28.780857303221101 ], [ -81.955935325891033, 28.780791962761004 ], [ -81.955935327192705, 28.780287620183838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flaxmayer Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955935327192705, 28.780287620183838 ], [ -81.955931244782306, 28.779701603193452 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flaxmayer Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955931244782306, 28.779701603193452 ], [ -81.955931281243565, 28.779104476392032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Klamut Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954180843818477, 28.780290358091595 ], [ -81.955935327192705, 28.780287620183838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pelchat Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954180163722583, 28.779705687567624 ], [ -81.955931244782306, 28.779701603193452 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zingale Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953877915397285, 28.779101129931991 ], [ -81.954182461280539, 28.77910622094134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zingale Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954182461280539, 28.77910622094134 ], [ -81.955931281243565, 28.779104476392032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zingale Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955931281243565, 28.779104476392032 ], [ -81.95625182345475, 28.779103333873472 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Catherine Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960907851919671, 28.78620424939815 ], [ -81.960907854220366, 28.785306726476669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Guy Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960418833294568, 28.785286138966132 ], [ -81.960419382848855, 28.78493191309412 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tompkins Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.959759659664286, 28.785257564892301 ], [ -81.959763238560257, 28.784806666874832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035344852390651, 28.794522599546173 ], [ -82.035400811698707, 28.794606634745332 ], [ -82.035459386182978, 28.794705934574495 ], [ -82.03550928676151, 28.794805236605967 ], [ -82.035559732664083, 28.794914564974885 ], [ -82.035600423904484, 28.795026760679349 ], [ -82.035632982481587, 28.795134186135961 ], [ -82.035661192737521, 28.795244381902666 ], [ -82.035689966483375, 28.795339485436021 ], [ -82.035727939600662, 28.795427807508688 ], [ -82.035776750694197, 28.795511353529569 ], [ -82.035841824232691, 28.795594895312941 ], [ -82.035909606280626, 28.795666497862683 ], [ -82.035990938149496, 28.795740486170818 ], [ -82.036072263640307, 28.795795373377345 ], [ -82.036177984244333, 28.795857418506902 ], [ -82.036266059069035, 28.795902643669667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spanish Moss Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03678056037306, 28.79739504141282 ], [ -82.036782718632566, 28.797391928762689 ], [ -82.036801237134284, 28.797363052540849 ], [ -82.036820314535447, 28.797330108543569 ], [ -82.036828905308283, 28.797313970201174 ], [ -82.036846036642615, 28.797278714995191 ], [ -82.036873644634142, 28.79722459415003 ], [ -82.036898226525025, 28.797184807338724 ], [ -82.036927553925878, 28.797144178298105 ], [ -82.036957893835634, 28.797107845791022 ], [ -82.036986606088504, 28.797077555596381 ], [ -82.037021509738594, 28.797045010661083 ], [ -82.037041056787047, 28.797028515658873 ], [ -82.03706035740791, 28.797013300198827 ], [ -82.037097190990693, 28.796986903081645 ], [ -82.037137051953223, 28.796961774693195 ], [ -82.037159667152125, 28.79694893591989 ], [ -82.037194857456612, 28.796930807106222 ], [ -82.037233893314962, 28.796913128402025 ], [ -82.037264125823469, 28.796901058130462 ], [ -82.037300488811439, 28.796888294121672 ], [ -82.03737815986176, 28.796861471721666 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036266059069035, 28.795902643669667 ], [ -82.036331810614243, 28.795963084931117 ], [ -82.036435741414905, 28.796035308412087 ], [ -82.036539671293966, 28.796116338381733 ], [ -82.0366436018803, 28.796216747233959 ], [ -82.036784524158847, 28.796324201333032 ], [ -82.036904309005649, 28.796389378576492 ], [ -82.036981815602829, 28.796426370687012 ], [ -82.037094554411198, 28.796477456430726 ], [ -82.03718439245209, 28.7965355871907 ], [ -82.037223099168685, 28.796581614538251 ], [ -82.03725309185495, 28.796630710284312 ], [ -82.037274230810553, 28.796681794404506 ], [ -82.037320030821036, 28.796755779759685 ], [ -82.03737815986176, 28.796861471721666 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037497945825891, 28.796822718292422 ], [ -82.037469760999116, 28.796709981119555 ], [ -82.037436292286387, 28.796607811450198 ], [ -82.037357024358087, 28.796451035403852 ], [ -82.037320031843961, 28.796403473699172 ], [ -82.037246047360995, 28.79632420388705 ], [ -82.037150924834734, 28.796230841995555 ], [ -82.037059324589308, 28.796170949467037 ], [ -82.036891979333575, 28.796081111344225 ], [ -82.036721110168358, 28.796010648402643 ], [ -82.036544956394749, 28.795954278958622 ], [ -82.036389941397317, 28.795913762758847 ], [ -82.036266059069035, 28.795902643669667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spanish Moss Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03737815986176, 28.796861471721666 ], [ -82.037497945825891, 28.796822718292422 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033248404710989, 28.79973484686688 ], [ -82.03580657280294, 28.799742270838461 ], [ -82.036598229641328, 28.79974749155302 ], [ -82.036599607431626, 28.799747500210803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037343842792978, 28.799752558582991 ], [ -82.037990355017442, 28.799758559263804 ], [ -82.039369662183873, 28.799760122157309 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039836593317546, 28.799758739154946 ], [ -82.041085256951561, 28.799769285800501 ], [ -82.043429459775183, 28.799777440197602 ], [ -82.043531242135856, 28.79977797467296 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039369662183873, 28.799760122157309 ], [ -82.03948212246722, 28.799760249691438 ], [ -82.039690017935726, 28.799760642926127 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036599607431626, 28.799747500210803 ], [ -82.037343842792978, 28.799752558582991 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039836593317546, 28.799758739154946 ], [ -82.03984254186922, 28.799600665021046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03984254186922, 28.799600665021046 ], [ -82.03969104951166, 28.799612995526644 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03969104951166, 28.799612995526644 ], [ -82.039690017935726, 28.799760642926127 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039690017935726, 28.799760642926127 ], [ -82.039836593317546, 28.799758739154946 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03969104951166, 28.799612995526644 ], [ -82.037346826319819, 28.799617361668329 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027682095928824, 28.799709687286065 ], [ -82.028472802055532, 28.799716872343001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 45th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029154769415342, 28.798534485321767 ], [ -82.029154998420793, 28.799370178863555 ], [ -82.029127590245238, 28.799542158993987 ], [ -82.029128163946368, 28.799579760926619 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029456204332959, 28.799722125269806 ], [ -82.029984865792912, 28.799722012019359 ], [ -82.030117987621551, 28.799721814443256 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030519472537975, 28.799721215047033 ], [ -82.031196575697777, 28.799725506375299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031196575697777, 28.799725506375299 ], [ -82.032261714200004, 28.799730603139892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027099056207433, 28.799704620145743 ], [ -82.027496055337352, 28.799707996275277 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027496055337352, 28.799707996275277 ], [ -82.027496075824871, 28.799707996271223 ], [ -82.027676645206682, 28.799709637841847 ], [ -82.027682095928824, 28.799709687286065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031201250516304, 28.799598384891215 ], [ -82.030505388689065, 28.799586621155409 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030505388689065, 28.799586621155409 ], [ -82.029128163946368, 28.799579760926619 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029128163946368, 28.799579760926619 ], [ -82.028336773022488, 28.799574617265879 ], [ -82.02808839223313, 28.799572902777065 ], [ -82.027894827258223, 28.7995729011596 ], [ -82.027701261704735, 28.799574613657864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027701261704735, 28.799574613657864 ], [ -82.027341539065986, 28.799583176517803 ], [ -82.027094871440724, 28.799595165986144 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020863897881227, 28.799810219184639 ], [ -82.022757582227513, 28.799848485663162 ], [ -82.024058295064506, 28.799863796623697 ], [ -82.025022352913268, 28.79983319751117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025022352913268, 28.79983319751117 ], [ -82.025121819123342, 28.799829371870278 ], [ -82.025313100210738, 28.799829373365277 ], [ -82.025760699095571, 28.799791119934948 ], [ -82.026468439586139, 28.799737565832032 ], [ -82.027099056207433, 28.799704620145743 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 507", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027094871440724, 28.799595165986144 ], [ -82.027099056207433, 28.799704620145743 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027094871440724, 28.799595165986144 ], [ -82.026780407091792, 28.799605567366299 ], [ -82.026367397125355, 28.799630149404898 ], [ -82.025919968091216, 28.799659647874361 ], [ -82.025497125020266, 28.799694061576563 ], [ -82.02523653512992, 28.799703894573209 ], [ -82.025030029347647, 28.79971864309287 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025030029347647, 28.79971864309287 ], [ -82.024355418689765, 28.799731931734545 ], [ -82.020868838278574, 28.799693777763061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bigham Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020863897881227, 28.799810219184639 ], [ -82.020868838278574, 28.799693777763061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02019404574223, 28.799684358804068 ], [ -82.019872545323821, 28.799679870490671 ], [ -82.018971836616046, 28.799668462289159 ], [ -82.017612637805129, 28.799651333868812 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013559426788788, 28.799784389790407 ], [ -82.014116140519121, 28.799786963550151 ], [ -82.014594238066962, 28.799786998550658 ], [ -82.014690279566665, 28.799786613339712 ], [ -82.014695724130902, 28.79978659112383 ], [ -82.015808463949725, 28.799782127353257 ], [ -82.016521829379215, 28.799782967412899 ], [ -82.01700383530995, 28.799785547872158 ], [ -82.017598768449162, 28.799793106903035 ], [ -82.018465231110369, 28.799798727782441 ], [ -82.019379554878171, 28.799810209672934 ], [ -82.020202063727567, 28.799810214871222 ], [ -82.020631563315732, 28.799812718633362 ], [ -82.020863897881227, 28.799810219184639 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parr Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007327090836853, 28.926079575510709 ], [ -82.007327905155009, 28.926079275005247 ], [ -82.008218515683694, 28.926072813658624 ], [ -82.008499454491641, 28.926077804186487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parr Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003950227964708, 28.924942802688495 ], [ -82.004170248037497, 28.924925930329348 ], [ -82.004375394619601, 28.924905871126224 ], [ -82.004487193237082, 28.924897273532149 ], [ -82.004536038535548, 28.924895362835255 ], [ -82.004576199254529, 28.924899181056524 ], [ -82.004644581770776, 28.9249096826161 ], [ -82.004707537951717, 28.924923050000022 ], [ -82.004782433600042, 28.924945965974775 ], [ -82.004855158240971, 28.924972701394992 ], [ -82.004943081318402, 28.925022354591039 ], [ -82.005029013384302, 28.925086200906808 ], [ -82.005078919040074, 28.925148547867426 ], [ -82.005156966851274, 28.925266599777853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parr Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005212251450587, 28.92522846324815 ], [ -82.005127522557146, 28.925104761421114 ], [ -82.005029915018156, 28.924996569528744 ], [ -82.004951760046012, 28.924929727336483 ], [ -82.004838872973295, 28.924859064987793 ], [ -82.004749865234501, 28.924815140431701 ], [ -82.004665200437231, 28.924782676644032 ], [ -82.004580536419141, 28.924768355263389 ], [ -82.004441601065238, 28.924764539938167 ], [ -82.004344997759503, 28.924769315843843 ], [ -82.004201719615139, 28.924782690029872 ], [ -82.003927163987072, 28.924815323318882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parr Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005156966851274, 28.925266599777853 ], [ -82.005211754822156, 28.925334616545868 ], [ -82.005266006229036, 28.925397433379779 ], [ -82.005355949619002, 28.925497371167232 ], [ -82.005447320071028, 28.925581604385584 ], [ -82.005535835904325, 28.925655843820351 ], [ -82.005568587863806, 28.925678807829712 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parr Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005568587863806, 28.925678807829712 ], [ -82.005660043784289, 28.925742931435771 ], [ -82.005768546521523, 28.925807177932867 ], [ -82.00588058646143, 28.9258663000649 ], [ -82.005981269392237, 28.925915681379255 ], [ -82.006129000926165, 28.925974804563662 ], [ -82.006278226238081, 28.926021330573356 ], [ -82.006432414005999, 28.926057022337538 ], [ -82.006558049113409, 28.926081293946648 ], [ -82.006649441194384, 28.926090914618719 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parr Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006649441194384, 28.926090914618719 ], [ -82.006747929567368, 28.926101282002524 ], [ -82.006937810314781, 28.926108420199814 ], [ -82.007185285148395, 28.926109703011171 ], [ -82.007256669443052, 28.926101136685695 ], [ -82.007327090836853, 28.926079575510709 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parr Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007327090836853, 28.926079575510709 ], [ -82.007275251533827, 28.926054411286028 ], [ -82.007210895321563, 28.926039784669065 ], [ -82.007101199619868, 28.926038321120252 ], [ -82.006935924105051, 28.92604124619141 ], [ -82.006789662934466, 28.926035395354656 ], [ -82.006658027714224, 28.926023694113422 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parr Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006658027714224, 28.926023694113422 ], [ -82.006516153218271, 28.926001753948245 ], [ -82.006372818056931, 28.925975426735633 ], [ -82.006236794075448, 28.925940323334583 ], [ -82.006091995108989, 28.925887668704309 ], [ -82.005961823337856, 28.925830625466293 ], [ -82.005806786743307, 28.925753107282269 ], [ -82.005702940380999, 28.925690214080465 ], [ -82.005607574696498, 28.925622934420062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parr Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005607574696498, 28.925622934420062 ], [ -82.005494954162586, 28.925532251582968 ], [ -82.005395497369051, 28.925438643836245 ], [ -82.005285800881865, 28.925318709192755 ], [ -82.005242505615016, 28.925268413141151 ], [ -82.005212251450587, 28.92522846324815 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parr Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005212251450587, 28.92522846324815 ], [ -82.005156966851274, 28.925266599777853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parr Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005607574696498, 28.925622934420062 ], [ -82.005568587863806, 28.925678807829712 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parr Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006658027714224, 28.926023694113422 ], [ -82.006649441194384, 28.926090914618719 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023377970489719, 28.841632501168984 ], [ -82.023252926526268, 28.841592527381909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023889652031855, 28.841803596215748 ], [ -82.023393845682975, 28.841638187543648 ], [ -82.023377970489719, 28.841632501168984 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hendry Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010583484688183, 28.848423056691921 ], [ -82.010577773022575, 28.848516331176125 ], [ -82.010581962064336, 28.848615968896819 ], [ -82.010593000852538, 28.848700977028816 ], [ -82.010608229804546, 28.848780926524469 ], [ -82.010623363072924, 28.848835830721544 ], [ -82.010655818653476, 28.8488818152478 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hendry Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010655818653476, 28.8488818152478 ], [ -82.010682468200756, 28.848841841129367 ], [ -82.010697697088176, 28.848784733967268 ], [ -82.010701504115076, 28.84870859260657 ], [ -82.01070150490284, 28.848601992388428 ], [ -82.010705313541933, 28.848417347841387 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hendry Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010583484688183, 28.848423056691921 ], [ -82.010705313541933, 28.848417347841387 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008547791108271, 28.799636734446075 ], [ -82.008512226804712, 28.799636600233967 ], [ -82.007947204430366, 28.7996363389918 ], [ -82.007946852044967, 28.799636339010465 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023003157746388, 28.842463081758588 ], [ -82.023041583468, 28.8424347159098 ], [ -82.023078702710578, 28.842397596991347 ], [ -82.023127245018273, 28.842311936586434 ], [ -82.02318089868416, 28.842196960275352 ], [ -82.023281789668118, 28.841930462535451 ], [ -82.023322622650383, 28.841809818212223 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023190863119339, 28.841765404341565 ], [ -82.023322622650383, 28.841809818212223 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023190863119339, 28.841765404341565 ], [ -82.023168878151367, 28.841844664808082 ], [ -82.023142228767597, 28.84193076011573 ], [ -82.023102256111784, 28.84204555548887 ], [ -82.023055264060631, 28.842172212830569 ], [ -82.023009577870695, 28.842286426228817 ], [ -82.022994348445863, 28.842353050546379 ], [ -82.022992445627793, 28.842406351007874 ], [ -82.023003157746388, 28.842463081758588 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.140014741328443, 28.668605714059371 ], [ -82.139407430425095, 28.668603774117585 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138785260072936, 28.668718399007492 ], [ -82.138810809231259, 28.668686783242897 ], [ -82.138874517044314, 28.66866381353562 ], [ -82.13921167840239, 28.668663815999469 ], [ -82.139326806488924, 28.668647369733321 ], [ -82.139407430425095, 28.668603774117585 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974561303623801, 28.903750753635183 ], [ -81.974547939315897, 28.903668966756456 ], [ -81.974514027802527, 28.903584370718097 ], [ -81.974475386159583, 28.903520597916351 ], [ -81.974367705246621, 28.903392827201301 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974367705246621, 28.903392827201301 ], [ -81.974393426786165, 28.903543248000201 ], [ -81.974407451670118, 28.903631850082824 ], [ -81.974438195896141, 28.90376919571824 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974561303623801, 28.903750753635183 ], [ -81.974438195896141, 28.90376919571824 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008614077191694, 28.926077797363664 ], [ -82.008614485834485, 28.925770719101155 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00850249442496, 28.92576085375255 ], [ -82.008499454491641, 28.926077804186487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Trees Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008614485834485, 28.925770719101155 ], [ -82.00850249442496, 28.92576085375255 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974391132345175, 28.880242113462675 ], [ -81.974421035436336, 28.880481860723989 ], [ -81.974434623903846, 28.880606528919611 ], [ -81.974453646504955, 28.880786340505459 ], [ -81.974455006958621, 28.880864743554309 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974582519172756, 28.88086452509247 ], [ -81.974576230042757, 28.880755196526874 ], [ -81.974554483356769, 28.880575386244494 ], [ -81.974527299067645, 28.880354817052226 ], [ -81.974523377444896, 28.880240099478321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974455006958621, 28.880864743554309 ], [ -81.974582519172756, 28.88086452509247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958870087857264, 28.917832262848652 ], [ -81.958738786344142, 28.917755233163884 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paige Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955084548712506, 28.946498521244575 ], [ -81.955038459830945, 28.94644167759828 ], [ -81.954964715830457, 28.946366397124574 ], [ -81.954887900145295, 28.94631109053087 ], [ -81.954784965907635, 28.946254246601821 ], [ -81.954668206526293, 28.946195865826212 ], [ -81.954537618951392, 28.946135949971534 ], [ -81.954396277904095, 28.946071424127823 ], [ -81.954290270504387, 28.946017652884667 ], [ -81.954177832241015, 28.945968868136031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000783211321007, 28.925781752288408 ], [ -82.000848192912201, 28.92574731243349 ], [ -82.000944715037974, 28.925704854657344 ], [ -82.001019598838752, 28.925677038442078 ], [ -82.001089495113675, 28.925658003346943 ], [ -82.001154393605859, 28.925644827746392 ], [ -82.00123760328168, 28.925625794317842 ], [ -82.001323354462727, 28.925615107960439 ], [ -82.001432308040435, 28.925608224573452 ], [ -82.001526705268986, 28.925615106628225 ], [ -82.001646167489525, 28.925629601082338 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001658549703578, 28.925546216227882 ], [ -82.001615364285257, 28.925539412366987 ], [ -82.00150205483871, 28.92552836551333 ], [ -82.001335787191152, 28.925532093978315 ], [ -82.001207648696578, 28.925546735321529 ], [ -82.001116120358148, 28.925565768767395 ], [ -82.000991307960092, 28.925600906439321 ], [ -82.00091143050264, 28.925627259129254 ], [ -82.000793404494587, 28.925680165507579 ], [ -82.000750896076369, 28.92570198038247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001646167489525, 28.925629601082338 ], [ -82.001658549703578, 28.925546216227882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001646167489525, 28.925629601082338 ], [ -82.001705409908155, 28.92563678917346 ], [ -82.001902599201443, 28.925658473100512 ], [ -82.001988135118353, 28.925657997602034 ], [ -82.002094638530025, 28.925652139615597 ], [ -82.002167573629734, 28.925642206284653 ], [ -82.002234427912157, 28.925634569333194 ], [ -82.002295230947567, 28.925619411793111 ], [ -82.002382537772533, 28.92560382347105 ], [ -82.002390851323142, 28.925601486411448 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002378824438438, 28.925516696949742 ], [ -82.002289343496301, 28.925537940886979 ], [ -82.002172853025854, 28.925555510946403 ], [ -82.002056362446567, 28.925568689432041 ], [ -82.001973155843928, 28.925574546240419 ], [ -82.00183336724244, 28.925571619703149 ], [ -82.001726861586562, 28.92555697912977 ], [ -82.001658549703578, 28.925546216227882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002390851323142, 28.925601486411448 ], [ -82.002378824438438, 28.925516696949742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003151866553239, 28.925183825508558 ], [ -82.003202949063549, 28.925151414949845 ], [ -82.003259527606005, 28.925113347769084 ], [ -82.003356046807255, 28.925059176464483 ], [ -82.003419283721314, 28.925029894730496 ], [ -82.003492426100337, 28.925007895179039 ], [ -82.003559070268139, 28.924987432343116 ], [ -82.003621828656023, 28.924975363620227 ], [ -82.003720490363122, 28.924964004132679 ], [ -82.003811140218062, 28.924958312086968 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003789754283986, 28.924830570987371 ], [ -82.003635835708096, 28.92485525961607 ], [ -82.003492501429989, 28.924884950165147 ], [ -82.003356042133646, 28.924930338559548 ], [ -82.003234563007055, 28.924987439217979 ], [ -82.003133052613435, 28.925057716510853 ], [ -82.003087642122352, 28.925105640106732 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Laurel Manor Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003151866553239, 28.925183825508558 ], [ -82.003087642122352, 28.925105640106732 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999791877713591, 28.917920862593288 ], [ -81.999863102495766, 28.917881912430516 ], [ -81.999929635271016, 28.917870615811733 ], [ -82.000123855219755, 28.917860343732603 ], [ -82.000404065973086, 28.917847464961866 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000383601475065, 28.917664862633803 ], [ -82.000371235609023, 28.917666222378337 ], [ -82.000230829995772, 28.917676025563814 ], [ -82.000025796337795, 28.917685827460328 ], [ -81.999921048275979, 28.91768582722753 ], [ -81.999856417048775, 28.917679945018961 ], [ -81.999793689318935, 28.917657271944378 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Belvedere Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000404065973086, 28.917847464961866 ], [ -82.000383601475065, 28.917664862633803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991116015902122, 28.875032954376643 ], [ -81.991247584392028, 28.874905539081823 ], [ -81.991875013724098, 28.874299718147732 ], [ -81.991970024195211, 28.87420777751662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991863022167109, 28.874134106994624 ], [ -81.99176302187746, 28.874233151068726 ], [ -81.991031849193675, 28.8749355451558 ], [ -81.991011061261219, 28.874954017487486 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991970024195211, 28.87420777751662 ], [ -81.991863022167109, 28.874134106994624 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974514643161555, 28.879613385218121 ], [ -81.974515692455043, 28.879602854654031 ], [ -81.97453697868454, 28.879466814154256 ], [ -81.974589067196575, 28.879196025233426 ], [ -81.974625583279419, 28.879021244563784 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974625583279419, 28.879021244563784 ], [ -81.974511359352604, 28.879224531327392 ], [ -81.974454251565419, 28.879345882746868 ], [ -81.974421415248429, 28.879438681827924 ], [ -81.974398572457901, 28.87953433498582 ], [ -81.974388148484735, 28.879600908425822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canal Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974514643161555, 28.879613385218121 ], [ -81.974388148484735, 28.879600908425822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maple Hill Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027544275270401, 28.846440395398638 ], [ -82.027538701008453, 28.846558295401881 ], [ -82.027525851672209, 28.846629677569567 ], [ -82.027510284164578, 28.846676193628817 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maple Hill Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027615645571814, 28.846680408069926 ], [ -82.027622797468396, 28.846611717707681 ], [ -82.02763279120613, 28.846507496678992 ], [ -82.027639164483261, 28.846443811560306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maple Hill Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027544275270401, 28.846440395398638 ], [ -82.027639164483261, 28.846443811560306 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Nook Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024592867958731, 28.845849978843479 ], [ -82.024593008256147, 28.845849528567953 ], [ -82.024633459455217, 28.845735315622967 ], [ -82.024660063017635, 28.845638349094866 ], [ -82.024684333213784, 28.845555543766164 ], [ -82.024721161722141, 28.8454469266342 ], [ -82.024761355247705, 28.845327671604178 ], [ -82.024808305780297, 28.845210345385674 ], [ -82.024861890390483, 28.845095243950205 ], [ -82.024956853318571, 28.844863532744881 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Nook Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024956853318571, 28.844863532744881 ], [ -82.024859511601747, 28.844888231892991 ], [ -82.024700038936061, 28.845234317306684 ], [ -82.024639452827202, 28.84538631521378 ], [ -82.02453352204202, 28.845742452510486 ], [ -82.024509391869103, 28.845819869213866 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Nook Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024592867958731, 28.845849978843479 ], [ -82.024509391869103, 28.845819869213866 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kiessel Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024763902043944, 28.847909522938487 ], [ -82.024829926399619, 28.847938320861807 ], [ -82.024907693900829, 28.847964422360484 ], [ -82.024983359665796, 28.847982601948438 ], [ -82.025057502482511, 28.847991868793066 ], [ -82.025099475648872, 28.847989563935933 ], [ -82.025138192041553, 28.847983757807434 ], [ -82.025147549020588, 28.847979885220163 ], [ -82.025156351620737, 28.84797195235706 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kiessel Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024797079996219, 28.847828287843512 ], [ -82.024723523026267, 28.847785962975372 ], [ -82.024653568069041, 28.847733139099635 ], [ -82.02459646108494, 28.847668893329629 ], [ -82.024564055483353, 28.847620123124308 ], [ -82.024533522041779, 28.847574664944482 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kiessel Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024763902043944, 28.847909522938487 ], [ -82.024797079996219, 28.847828287843512 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037236161930508, 28.922217633560841 ], [ -82.03727226403123, 28.922231445083554 ], [ -82.037326669273057, 28.922247194241276 ], [ -82.037406846310887, 28.922248625918215 ], [ -82.037893635388741, 28.922240037291328 ], [ -82.038019601940178, 28.922237385642049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038019601940178, 28.922237385642049 ], [ -82.038165664510302, 28.922234311402203 ], [ -82.038363243891041, 28.922225722153886 ], [ -82.038463464687439, 28.922209974180987 ], [ -82.038550801115363, 28.922191361372665 ], [ -82.038602342806442, 28.922167022734783 ], [ -82.038645524345881, 28.922138088344518 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038645524345881, 28.922138088344518 ], [ -82.03859088881903, 28.922121206501551 ], [ -82.038484941216382, 28.92212263855712 ], [ -82.038324587439988, 28.922145545097159 ], [ -82.038124144790672, 28.922151272103751 ], [ -82.037998185606554, 28.922154150324783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038019601940178, 28.922237385642049 ], [ -82.037998185606554, 28.922154150324783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 103", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02874903176135, 28.928943004181768 ], [ -82.028794498756298, 28.928906224328955 ], [ -82.02882114889313, 28.928852924690069 ], [ -82.028828762995502, 28.928765361694264 ], [ -82.028838285933574, 28.927560407105901 ], [ -82.028817347559126, 28.927507107526299 ], [ -82.028786890390251, 28.927469035266157 ], [ -82.02877370360001, 28.927437799676795 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02666326936675, 28.927435886941129 ], [ -82.02678035024465, 28.927437124679994 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02666326936675, 28.927435886941129 ], [ -82.026704682882709, 28.92741428156549 ], [ -82.026770356094119, 28.92737859023655 ], [ -82.026798909158074, 28.927348609527108 ], [ -82.026820953506771, 28.927306194651692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02702304937003, 28.927307051031544 ], [ -82.026820953506771, 28.927306194651692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02678035024465, 28.927437124679994 ], [ -82.026908846988988, 28.927436780163152 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Village Campus Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026816037173376, 28.928353689709454 ], [ -82.026822102021072, 28.928447875481865 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Village Campus Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026816037173376, 28.928353689709454 ], [ -82.026841736143638, 28.928323708649483 ], [ -82.02686457833903, 28.928268029881437 ], [ -82.02686600710652, 28.928175231275258 ], [ -82.026880284634942, 28.927959653075064 ], [ -82.026878857894403, 28.927809747871418 ], [ -82.02688028662628, 28.927619867730023 ], [ -82.026908846988988, 28.927436780163152 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tatonka Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023561056511284, 28.927422444973498 ], [ -82.023561412503895, 28.927487596031952 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tatonka Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023566172705387, 28.928357423865965 ], [ -82.023566550017335, 28.92842617777546 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tatonka Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023566172705387, 28.928357423865965 ], [ -82.023586460840008, 28.928343608965292 ], [ -82.023610676810108, 28.928300559031321 ], [ -82.02360395339727, 28.927570061228469 ], [ -82.023585119561844, 28.927522975477952 ], [ -82.023561412503895, 28.927487596031952 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nielsen Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962934498512922, 28.779734434742164 ], [ -81.963428795571986, 28.780025118961863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nielsen Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963428795571986, 28.780025118961863 ], [ -81.964735399386129, 28.780847149855092 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marnie Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964354666861695, 28.780968291822088 ], [ -81.964735399386129, 28.780847149855092 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marnie Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964735399386129, 28.780847149855092 ], [ -81.965447993738366, 28.780656148565104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marnie Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965447993738366, 28.780656148565104 ], [ -81.966016048814225, 28.780501033662684 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caltieri Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963428795571986, 28.780025118961863 ], [ -81.963820345748189, 28.779525812333713 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caltieri Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963820345748189, 28.779525812333713 ], [ -81.964031625188852, 28.77925500749339 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paxton Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963820345748189, 28.779525812333713 ], [ -81.965398798939106, 28.780498147800664 ], [ -81.965415929095144, 28.780515062487527 ], [ -81.965431606565758, 28.780539289159432 ], [ -81.965442293839928, 28.780579905099213 ], [ -81.965445857533666, 28.780618382527607 ], [ -81.965447993738366, 28.780656148565104 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barley Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957066172085234, 28.783569517116838 ], [ -81.957101634492133, 28.783440968454524 ], [ -81.95714152884058, 28.783316853359587 ], [ -81.957203587673661, 28.783161708382586 ], [ -81.95725229522759, 28.783015055330118 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barley Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956964216180765, 28.784185662467461 ], [ -81.957066172085234, 28.783569517116838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barley Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956684951209454, 28.785369195462501 ], [ -81.956684951412669, 28.785262809907515 ], [ -81.956715980723203, 28.785129829590922 ], [ -81.956773606538576, 28.785001280948077 ], [ -81.95688885877405, 28.784850569144485 ], [ -81.956942052038272, 28.784757482664563 ], [ -81.956964215382314, 28.784651096965085 ], [ -81.956964216180765, 28.784185662467461 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barley Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956928749254075, 28.786065130228643 ], [ -81.95691101873625, 28.785985341940592 ], [ -81.956871124752425, 28.785887822396393 ], [ -81.956786902325206, 28.78578586999026 ], [ -81.956720411149291, 28.785648455965752 ], [ -81.956689382494204, 28.785511042487109 ], [ -81.956684951209454, 28.785369195462501 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barley Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957261201624164, 28.787550087736285 ], [ -81.957203575281284, 28.78744370195999 ], [ -81.9571282201331, 28.787337317733158 ], [ -81.957035132796236, 28.787244230621564 ], [ -81.956990804577316, 28.787133413216495 ], [ -81.956981940116421, 28.787018162329417 ], [ -81.956995238309034, 28.786898479133974 ], [ -81.957043998806526, 28.78676993028575 ], [ -81.957048432708802, 28.78662365215515 ], [ -81.957030701422013, 28.786490670669608 ], [ -81.956928749254075, 28.786065130228643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barley Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957079452001096, 28.790023539067427 ], [ -81.957168106934759, 28.78985952848517 ], [ -81.957216867917907, 28.789717682236013 ], [ -81.957221301598011, 28.789549238828126 ], [ -81.957168108359085, 28.789363065582627 ], [ -81.957083887735081, 28.789194621914039 ], [ -81.957043992516518, 28.789017313568682 ], [ -81.957039560537325, 28.788853303997904 ], [ -81.957075023138117, 28.788671563145211 ], [ -81.957159246061465, 28.788489821557821 ], [ -81.957234602045659, 28.788316945939759 ], [ -81.95727893100586, 28.788170666061749 ], [ -81.957287797267313, 28.787918002040996 ], [ -81.957278932815001, 28.787691934405441 ], [ -81.957261201624164, 28.787550087736285 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jameson Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956964216180765, 28.784185662467461 ], [ -81.956902157682748, 28.784176797235105 ], [ -81.956826802227084, 28.784159066985183 ], [ -81.955390593434217, 28.78344539971685 ], [ -81.955324102663326, 28.78340550530562 ], [ -81.955297505811046, 28.783347880092691 ], [ -81.95530193907274, 28.78326809169824 ], [ -81.95543935507115, 28.783042023527852 ], [ -81.955505846491121, 28.782988830606293 ], [ -81.955594500336261, 28.78294893695508 ], [ -81.955687589091369, 28.782940071692337 ], [ -81.955807272642346, 28.782957802693886 ], [ -81.956942055162159, 28.783538488405771 ], [ -81.957066172085234, 28.783569517116838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Totten Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956684951209454, 28.785369195462501 ], [ -81.957225745845221, 28.785378061204856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morrison Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955457077646372, 28.786020801780538 ], [ -81.955745206446991, 28.786042966463366 ], [ -81.955940246949112, 28.786073995123452 ], [ -81.956117557467081, 28.786096158806107 ], [ -81.956277135349467, 28.78614491852521 ], [ -81.956405685725443, 28.786144918690916 ], [ -81.956543099949371, 28.786144918887793 ], [ -81.956928749254075, 28.786065130228643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042850931043631, 28.796976212590742 ], [ -82.042916843753261, 28.796940519135671 ], [ -82.043212743039717, 28.796788589933524 ], [ -82.043420847120316, 28.796682523477266 ], [ -82.043612691335937, 28.796576463660205 ], [ -82.043742516026526, 28.796509696447238 ], [ -82.043893210228987, 28.79644214465786 ], [ -82.043986746378778, 28.79640057412481 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Connor Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042850931043631, 28.796976212590742 ], [ -82.043124143713698, 28.797343703951359 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Connor Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043124143713698, 28.797343703951359 ], [ -82.043360577179811, 28.797637297947809 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Smedley Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043124143713698, 28.797343703951359 ], [ -82.044197196346275, 28.796774711783222 ], [ -82.04425695427372, 28.796753925849877 ], [ -82.044316712430202, 28.796743534526705 ], [ -82.044407649734651, 28.79673573989195 ], [ -82.04449598756888, 28.796740937528362 ], [ -82.044851938143339, 28.796774715432043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Smedley Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044851938143339, 28.796774715432043 ], [ -82.045215682872197, 28.796798100610811 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vinas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043360577179811, 28.797637297947809 ], [ -82.043413189767179, 28.797608801677086 ], [ -82.043474607104955, 28.797583871247824 ], [ -82.043514131831685, 28.797576270305768 ], [ -82.043556698591274, 28.797572925497491 ], [ -82.043648976429409, 28.797572345836048 ], [ -82.044857131049298, 28.797522987666941 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stricklin Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044867521936723, 28.797829571873603 ], [ -82.044857131049298, 28.797522987666941 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stricklin Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044857131049298, 28.797522987666941 ], [ -82.044851938143339, 28.796774715432043 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047200190809505, 28.79615736550684 ], [ -82.047309596905095, 28.796079941061873 ], [ -82.047469523011571, 28.795942462830038 ], [ -82.047593014586297, 28.795808568388427 ], [ -82.047673482284083, 28.795678401787139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Swallowtail Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047388148833448, 28.797830699069479 ], [ -82.047388150353711, 28.797564157902066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Swallowtail Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047388150353711, 28.797564157902066 ], [ -82.047385346522674, 28.796930068978483 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Swallowtail Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047385346522674, 28.796930068978483 ], [ -82.047390960699559, 28.796604607561676 ], [ -82.047388154762515, 28.796514824859099 ], [ -82.047371321356408, 28.796436265441169 ], [ -82.047334846640098, 28.796363317051071 ], [ -82.04728714972741, 28.79629598038429 ], [ -82.047247870128288, 28.796231448800555 ], [ -82.047200190809505, 28.79615736550684 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grouby Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045584073836778, 28.797555729836613 ], [ -82.047388150353711, 28.797564157902066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cochran Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045584076541871, 28.796924447011506 ], [ -82.047385346522674, 28.796930068978483 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Millsap Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045589684578928, 28.797811048001062 ], [ -82.045584073836778, 28.797555729836613 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Millsap Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045584073836778, 28.797555729836613 ], [ -82.045584076541871, 28.796924447011506 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Millsap Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045584076541871, 28.796924447011506 ], [ -82.045572856632404, 28.796576539906294 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048781977795628, 28.794268874885699 ], [ -82.049227714778382, 28.793809838468359 ], [ -82.049254824026022, 28.7937782108128 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sugarberry Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049254824026022, 28.7937782108128 ], [ -82.049310988284887, 28.793828407049411 ], [ -82.049380018471524, 28.793877302914293 ], [ -82.049457677724646, 28.793908942517881 ], [ -82.04956122224668, 28.793946333998765 ], [ -82.04967339646582, 28.793972221402587 ], [ -82.049794198594967, 28.793998107388056 ], [ -82.049891990820925, 28.794009613356373 ], [ -82.049978279272096, 28.794015365787235 ], [ -82.050055937153928, 28.794015366361901 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sugarberry Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050055937153928, 28.794015366361901 ], [ -82.050855535588624, 28.794023999862063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sugarberry Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050855535588624, 28.794023999862063 ], [ -82.051292726490686, 28.794026878818205 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brennan Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050055937153928, 28.794015366361901 ], [ -82.050064571371152, 28.792836108397967 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brennan Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050064571371152, 28.792836108397967 ], [ -82.050067448821508, 28.79252259882216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marrot Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050855535588624, 28.794023999862063 ], [ -82.050861294137334, 28.79284761860643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leffers Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050064571371152, 28.792836108397967 ], [ -82.050861294137334, 28.79284761860643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leffers Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050861294137334, 28.79284761860643 ], [ -82.051298485543697, 28.792844745313396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Torch Point Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026738474436698, 28.846804080653577 ], [ -82.026794291505141, 28.84677694113973 ], [ -82.026879968114997, 28.846757624216284 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kiessel Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026519360824295, 28.847135548724886 ], [ -82.026560782865857, 28.847086477009139 ], [ -82.026604150975146, 28.84702076819206 ], [ -82.026645782322589, 28.846944364663663 ], [ -82.026694692494488, 28.846853573354878 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035935722286638, 28.845849931888559 ], [ -82.036234241238617, 28.845945552135827 ], [ -82.03656598632945, 28.846057790580407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03656598632945, 28.846057790580407 ], [ -82.036616315464428, 28.846074819038328 ], [ -82.037055107321791, 28.846220082799764 ], [ -82.0372455538525, 28.846284309793031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037248030262916, 28.846145688794945 ], [ -82.037079738826449, 28.846125540684373 ], [ -82.036975208786842, 28.846095052854391 ], [ -82.036740018104496, 28.846023187690019 ], [ -82.036665975466377, 28.846021010337278 ], [ -82.036613710332759, 28.84603625247664 ], [ -82.03656598632945, 28.846057790580407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Preston Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01219457835461, 28.92735024618916 ], [ -82.012207425634912, 28.927878483905733 ], [ -82.012225984605351, 28.927961289536551 ], [ -82.012245971339198, 28.928008402948567 ], [ -82.012274525640009, 28.928041239496203 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012329564261165, 28.927350527682723 ], [ -82.012952251716555, 28.927354316397206 ], [ -82.013681231354369, 28.927359901001278 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009285581088292, 28.927319839062591 ], [ -82.009838074999962, 28.927330873204262 ], [ -82.010472174864475, 28.927339443937726 ], [ -82.011071994854149, 28.927343705910566 ], [ -82.011578782070742, 28.927345819994461 ], [ -82.01205181104649, 28.927350245839676 ], [ -82.01219457835461, 28.92735024618916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Preston Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012285687968088, 28.927224784938662 ], [ -82.01219457835461, 28.92735024618916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01219457835461, 28.92735024618916 ], [ -82.012329564261165, 28.927350527682723 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Preston Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012329564261165, 28.927350527682723 ], [ -82.012285687968088, 28.927224784938662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Preston Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012274525640009, 28.928041239496203 ], [ -82.012275001330735, 28.928192690603375 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Preston Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012274525640009, 28.928041239496203 ], [ -82.012292364311605, 28.928012651423725 ], [ -82.012300111055779, 28.92798682976553 ], [ -82.012301402313597, 28.927959718388816 ], [ -82.012329564261165, 28.927350527682723 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018577436441319, 28.865469772853398 ], [ -82.018899285548372, 28.865469730608908 ], [ -82.019925586213731, 28.865471805754861 ], [ -82.020537551301146, 28.865468789865467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020594230753161, 28.867109694105586 ], [ -82.020625645858757, 28.867066233631249 ], [ -82.020639281387631, 28.866994650993256 ], [ -82.020642126754851, 28.866914500778776 ], [ -82.020641329578169, 28.866280186192249 ], [ -82.020653315815949, 28.865811883553498 ], [ -82.020665191797065, 28.865468162837885 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020665191797065, 28.865468162837885 ], [ -82.02067330567624, 28.865319097493888 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020528811818082, 28.865318741697614 ], [ -82.020537551301146, 28.865468789865467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020597223715882, 28.867990461561188 ], [ -82.020594230753161, 28.867109694105586 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020537551301146, 28.865468789865467 ], [ -82.020540584145564, 28.866522250266282 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020537551301146, 28.865468789865467 ], [ -82.020665191797065, 28.865468162837885 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sarasota Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017867196215931, 28.865213388283905 ], [ -82.017861548557931, 28.865312803001451 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burnsed Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014447119112447, 28.864415135196257 ], [ -82.017820283207485, 28.864419040478154 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014447120137447, 28.86441513519615 ], [ -82.014408836626743, 28.864450261274698 ], [ -82.014386653710076, 28.864506572697302 ], [ -82.014390062664461, 28.865064565040218 ], [ -82.014393474971456, 28.865187425056714 ], [ -82.01444653524284, 28.86521984843392 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sarasota Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017820283207485, 28.864419040478154 ], [ -82.017817045991123, 28.864485370131959 ], [ -82.017815426189784, 28.865056459932312 ], [ -82.017825132374895, 28.865126026300363 ], [ -82.017838075903512, 28.865172943533771 ], [ -82.017867196215931, 28.865213388283905 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burnsed Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017941601457309, 28.864419917366419 ], [ -82.018067267805591, 28.864420824262712 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burnsed Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017820283207485, 28.864419040478154 ], [ -82.017941601457309, 28.864419917366419 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sarasota Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017867196215931, 28.865213388283905 ], [ -82.01790117094707, 28.865185885342431 ], [ -82.017925438031568, 28.865135734012178 ], [ -82.017941601457309, 28.864419917366419 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01444653524284, 28.86521984843392 ], [ -82.014446471194987, 28.865307785141976 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinellas Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01444653524284, 28.86521984843392 ], [ -82.014475383658606, 28.865199369506744 ], [ -82.014495859474621, 28.86516182977407 ], [ -82.014495862086264, 28.864496334829532 ], [ -82.014447119112447, 28.864415135196257 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barberree Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041864749348861, 28.79824926436839 ], [ -82.04197946435869, 28.798289931825654 ], [ -82.042050393013426, 28.798320189962769 ], [ -82.042129445078132, 28.798358594356159 ], [ -82.042246213229532, 28.798407204009976 ], [ -82.042345914717771, 28.798440853969794 ], [ -82.042428940758441, 28.798467135304175 ], [ -82.042519914155747, 28.798509456337193 ], [ -82.04257892554142, 28.798547094277438 ], [ -82.042641061638676, 28.798595789056847 ], [ -82.0427105197667, 28.798659236140224 ], [ -82.042787992522662, 28.798730031830633 ], [ -82.0428558615029, 28.798792166467848 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041864749348861, 28.79824926436839 ], [ -82.041901869072916, 28.798135051045023 ], [ -82.04192614030778, 28.798010844005777 ], [ -82.041944700545457, 28.797938033495438 ], [ -82.041977537168819, 28.797849517495848 ], [ -82.042030361837092, 28.797742442043546 ], [ -82.042083185557786, 28.797666776054843 ], [ -82.042174558821628, 28.797539714268556 ], [ -82.042270213100778, 28.797424073473518 ], [ -82.042337314281113, 28.79735697406031 ], [ -82.042506521566708, 28.797166573736092 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039831733205531, 28.798838880438687 ], [ -82.039941664312877, 28.798838881097424 ], [ -82.040058734508548, 28.798826033374862 ], [ -82.040198646502745, 28.798836028134556 ], [ -82.040351407300875, 28.798851732425575 ], [ -82.040488464920799, 28.798860299361007 ], [ -82.040591257703625, 28.798858872326747 ], [ -82.04071403800117, 28.798838885967584 ], [ -82.040858233781847, 28.798803194720545 ], [ -82.040999574401781, 28.798780353092607 ], [ -82.04112378249765, 28.798760366838216 ], [ -82.041266549388922, 28.798736096145049 ], [ -82.041385046535098, 28.798716110459605 ], [ -82.04147641942339, 28.798680419080934 ], [ -82.041579211036961, 28.798634733793506 ], [ -82.041680576975722, 28.798569061745855 ], [ -82.041739112138373, 28.798506243995696 ], [ -82.041790509615879, 28.798433434378737 ], [ -82.041831911432467, 28.798350628357444 ], [ -82.041864749348861, 28.79824926436839 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039708953002489, 28.798843163059807 ], [ -82.039703242079497, 28.798935961180089 ], [ -82.03969104951166, 28.799612995526644 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03737815986176, 28.796861471721666 ], [ -82.037438052618953, 28.796986540335158 ], [ -82.037501467100228, 28.797125702080336 ], [ -82.037545505222226, 28.797210254811432 ], [ -82.037578974973513, 28.797259577818579 ], [ -82.037630057869379, 28.797338848269778 ], [ -82.037691712521053, 28.797407547931595 ], [ -82.037744557677811, 28.797458632328407 ], [ -82.037802689187387, 28.797511478373632 ], [ -82.037864342724887, 28.797567848760412 ], [ -82.037920710967086, 28.797613648179254 ], [ -82.03799997962372, 28.79766473242589 ], [ -82.038065156969822, 28.797703486809592 ], [ -82.038144426208646, 28.797738718247256 ], [ -82.03820960316358, 28.797770425502474 ], [ -82.038278303208386, 28.797791564770097 ], [ -82.038438603167421, 28.797837365761662 ], [ -82.03865703358872, 28.797883166518549 ], [ -82.038792671192056, 28.797906067904226 ], [ -82.038930071238269, 28.797921922500091 ], [ -82.039039287541428, 28.797950106915383 ], [ -82.039134410385714, 28.797980052948098 ], [ -82.039240101890144, 28.798032900196553 ], [ -82.039303516997336, 28.798071653578219 ], [ -82.0393686945349, 28.798122739228482 ], [ -82.039426824895472, 28.79817206194047 ], [ -82.039513139219466, 28.798247807977663 ], [ -82.039583601194664, 28.798355262150558 ], [ -82.039624115649914, 28.798415154104095 ], [ -82.03964525414824, 28.798485615890407 ], [ -82.039666392665538, 28.798531415679324 ], [ -82.039684006737104, 28.798600115354979 ], [ -82.039694458573535, 28.79870194277072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03984254186922, 28.799600665021046 ], [ -82.039847827263301, 28.799487927738223 ], [ -82.039840585732193, 28.79935106174316 ], [ -82.03984263313059, 28.799222119869736 ], [ -82.039830354195317, 28.799113645669578 ], [ -82.039828452315135, 28.798994698941115 ], [ -82.039831733251447, 28.798901698498891 ], [ -82.039831733205531, 28.798838880438687 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03982605307516, 28.798699816848352 ], [ -82.039824931313021, 28.798672339063998 ], [ -82.039802031050939, 28.798520847487328 ], [ -82.039756232095641, 28.798379924977091 ], [ -82.039671679066359, 28.798226670883309 ], [ -82.039573033115715, 28.798098079165896 ], [ -82.03942682552308, 28.79795891686636 ], [ -82.039296472617863, 28.797862031331146 ], [ -82.039167879981676, 28.797773955344088 ], [ -82.038963541209284, 28.797682354575674 ], [ -82.038762726491811, 28.797610130562212 ], [ -82.038597143369657, 28.797567853156949 ], [ -82.038447411618307, 28.797551998049823 ], [ -82.038329388810922, 28.797550235302648 ], [ -82.038241311633016, 28.797550234488845 ], [ -82.038132097077963, 28.79753085689423 ], [ -82.038022881215824, 28.797499150017146 ], [ -82.037929519518627, 28.797462156557064 ], [ -82.037832634857324, 28.797389933216515 ], [ -82.037758651506962, 28.797305378855995 ], [ -82.037674097589147, 28.797190878693684 ], [ -82.037610682315645, 28.797067572463458 ], [ -82.037549030452524, 28.796933695132171 ], [ -82.037497945825891, 28.796822718292422 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039708953002489, 28.798843163059807 ], [ -82.039831733205531, 28.798838880438687 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041779088065795, 28.798220710561232 ], [ -82.041864749348861, 28.79824926436839 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042506521566708, 28.797166573736092 ], [ -82.042510135897047, 28.797162506800984 ], [ -82.042689231121841, 28.797062349749282 ], [ -82.042850931043631, 28.796976212590742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042506521566708, 28.797166573736092 ], [ -82.042384055497124, 28.79720835607678 ], [ -82.042272593936744, 28.797273205244867 ], [ -82.042177345798024, 28.797356292300933 ], [ -82.042065885117125, 28.797485990472424 ], [ -82.041992926804639, 28.797595423511343 ], [ -82.041930103204308, 28.797743362299773 ], [ -82.041885519254791, 28.797881167054012 ], [ -82.041840933972679, 28.798039237720932 ], [ -82.041779088065795, 28.798220710561232 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041779088065795, 28.798220710561232 ], [ -82.041735552169953, 28.798284449556562 ], [ -82.041662594891378, 28.798367537601006 ], [ -82.041569372938611, 28.798464811559338 ], [ -82.041441699679154, 28.798568164777414 ], [ -82.041311999533832, 28.798630987528462 ], [ -82.041206618015707, 28.798673543267451 ], [ -82.041064758871542, 28.798705967820293 ], [ -82.040955324902129, 28.798730286138845 ], [ -82.040829676999934, 28.798764735824488 ], [ -82.040710110401108, 28.798793107426683 ], [ -82.040604729153955, 28.798813371979932 ], [ -82.040531772610919, 28.798805265442105 ], [ -82.040448684035695, 28.798789052762455 ], [ -82.040357488865837, 28.798754601267106 ], [ -82.040237921858903, 28.79872014807464 ], [ -82.04011024936365, 28.798699883285877 ], [ -82.039984601554991, 28.79869177554102 ], [ -82.039891381098101, 28.798691774591305 ], [ -82.03982605307516, 28.798699816848352 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039831733205531, 28.798838880438687 ], [ -82.03982605307516, 28.798699816848352 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039694458573535, 28.79870194277072 ], [ -82.039708953002489, 28.798843163059807 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03982605307516, 28.798699816848352 ], [ -82.039694458573535, 28.79870194277072 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trailwinds Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008158552370944, 28.865453631582032 ], [ -82.008153430786408, 28.866165199308206 ], [ -82.008165374682434, 28.866279527720753 ], [ -82.00820928084643, 28.866308544253844 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seven Mile Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011311934006002, 28.865907554209716 ], [ -82.011315572647874, 28.866131709576202 ], [ -82.011310115647973, 28.866173352216158 ], [ -82.011300862966237, 28.86620514290335 ], [ -82.011280959273293, 28.866247328965272 ], [ -82.011266256552418, 28.866269729806557 ], [ -82.011248150720448, 28.866292019930079 ], [ -82.011231229292747, 28.86630927871407 ], [ -82.011213978589524, 28.866324255596179 ], [ -82.011196734839956, 28.866337132815286 ], [ -82.011163364038481, 28.866357336188919 ], [ -82.011127057143923, 28.866373663486474 ], [ -82.011098677100691, 28.866383025280324 ], [ -82.011070873863218, 28.866389635900379 ], [ -82.011028336752503, 28.866395251505363 ], [ -82.010428984782166, 28.86639504722141 ], [ -82.010414471392153, 28.866395018496039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seven Mile Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011483334713006, 28.865329093594699 ], [ -82.011429109053083, 28.865347386727077 ], [ -82.011370586848798, 28.865369060208174 ], [ -82.011300514140501, 28.865405014432369 ], [ -82.01125054669788, 28.865456410871218 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trailwinds Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00820928084643, 28.866308544253844 ], [ -82.008209077880522, 28.866390828030134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trailwinds Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00820928084643, 28.866308544253844 ], [ -82.008238749644434, 28.86628464779897 ], [ -82.008269465109535, 28.866168611639218 ], [ -82.008276718728936, 28.865453819859077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trailwinds Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008276718728936, 28.865453819859077 ], [ -82.008278000750465, 28.865327566753351 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seven Mile Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01125054669788, 28.865456410871218 ], [ -82.011249117623308, 28.865543498618951 ], [ -82.011260538350768, 28.865740516608604 ], [ -82.011263394138425, 28.865800478966719 ], [ -82.011283380856469, 28.865857585989772 ], [ -82.011311934006002, 28.865907554209716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01125054669788, 28.865456410871218 ], [ -82.011434718271545, 28.865457308512784 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seven Mile Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011311934006002, 28.865907554209716 ], [ -82.01132621065733, 28.865888995404539 ], [ -82.01134191601767, 28.865859013321803 ], [ -82.011349053604079, 28.865813328225617 ], [ -82.011347627753935, 28.865577762143179 ], [ -82.011353337805772, 28.865554919875485 ], [ -82.011369043258, 28.865526367037091 ], [ -82.01139902355952, 28.865492103283795 ], [ -82.011434718271545, 28.865457308512784 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051845223982468, 28.790386789666904 ], [ -82.051842834231849, 28.789790950921795 ], [ -82.051842836689133, 28.789308985835248 ], [ -82.051817019306043, 28.788973330611675 ], [ -82.051763515355518, 28.78872824195922 ], [ -82.051759349250958, 28.788681366558741 ], [ -82.051760390537382, 28.788632409361892 ], [ -82.05177254899543, 28.788574603497313 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049550825755261, 28.792549454122522 ], [ -82.049552599133094, 28.792536977205209 ], [ -82.049626817047837, 28.792342020179401 ], [ -82.04972608968616, 28.792176567781585 ], [ -82.049785377240852, 28.792113144388562 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051204240105747, 28.791484633474674 ], [ -82.051619056597275, 28.791327213958059 ], [ -82.051683718397143, 28.791300192417523 ], [ -82.051739547712927, 28.791266968971964 ], [ -82.051777755238447, 28.791221595294257 ], [ -82.05180840158279, 28.791176600725347 ], [ -82.051831090921695, 28.79112896176964 ], [ -82.051843722642786, 28.791072821410108 ], [ -82.051847131835459, 28.790862463931749 ], [ -82.051845223982468, 28.790386789666904 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052010568490914, 28.788033132795636 ], [ -82.052019277461824, 28.788013704495352 ], [ -82.052079524254083, 28.787867394110148 ], [ -82.052118253992191, 28.787643624666742 ], [ -82.05212238787756, 28.787317192315101 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05177254899543, 28.788574603497313 ], [ -82.051778290651939, 28.788521488471709 ], [ -82.05179867274731, 28.788431937928031 ], [ -82.051950316473381, 28.788185877544365 ], [ -82.051976067421705, 28.788131515152454 ], [ -82.052010568490914, 28.788033132795636 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05212238787756, 28.787317192315101 ], [ -82.05212255841019, 28.787303667476092 ], [ -82.052088134195472, 28.786989528429618 ], [ -82.052079528425921, 28.786989528988997 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050325184190925, 28.791817082813875 ], [ -82.051204240105747, 28.791484633474674 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Coyne Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050325184190925, 28.791817082813875 ], [ -82.050288395534977, 28.791737538479218 ], [ -82.050243652649385, 28.791622196883598 ], [ -82.050234703225357, 28.791587396150597 ], [ -82.05023151194618, 28.791547312975339 ], [ -82.050237463061876, 28.79071450582061 ], [ -82.050246381990746, 28.790652893533682 ], [ -82.050261259409098, 28.790589584520454 ], [ -82.050285048279875, 28.790550346851976 ], [ -82.050314798002333, 28.79051225293183 ], [ -82.050342767693522, 28.790485343826486 ], [ -82.050380232639043, 28.790458715459287 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Coyne Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050380232639043, 28.790458715459287 ], [ -82.050442382534456, 28.790446440127617 ], [ -82.050665661578776, 28.790422908584741 ], [ -82.051001441601628, 28.790390193580343 ], [ -82.051152721677184, 28.790384340819362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Coyne Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051152721677184, 28.790384340819362 ], [ -82.051845223982468, 28.790386789666904 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mackenzie Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051204240105747, 28.791484633474674 ], [ -82.05118125030792, 28.791434928226341 ], [ -82.051168200121651, 28.791393335571382 ], [ -82.05115458303915, 28.791342295008906 ], [ -82.051152717727248, 28.791284953725921 ], [ -82.051152721677184, 28.790384340819362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pheil Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050380232639043, 28.790458715459287 ], [ -82.05033469143055, 28.790324359723169 ], [ -82.050310897909668, 28.790224422848826 ], [ -82.050306139711907, 28.790124485310542 ], [ -82.050334692798188, 28.790015031497738 ], [ -82.050358488789385, 28.789877023020473 ], [ -82.050363247836657, 28.78972473880896 ], [ -82.050353730486563, 28.789572453515053 ], [ -82.05033469602013, 28.789429686598098 ], [ -82.050306142804516, 28.789282160755267 ], [ -82.050301385038608, 28.789167946804671 ], [ -82.050310903167926, 28.789044215436114 ], [ -82.050329938538908, 28.788891930485924 ], [ -82.050339458012402, 28.78875392271118 ], [ -82.050339457748109, 28.788634950915739 ], [ -82.050334699485589, 28.788577842552453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Machol Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050334699485589, 28.788577842552453 ], [ -82.050525056983702, 28.788563567509858 ], [ -82.050943842531055, 28.788549293331684 ], [ -82.051291244713553, 28.788554054485093 ], [ -82.051548226338454, 28.788554056553842 ], [ -82.051662441968503, 28.788563574513862 ], [ -82.05177254899543, 28.788574603497313 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pheil Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050334699485589, 28.788577842552453 ], [ -82.050272834304053, 28.788316102356369 ], [ -82.050244282653836, 28.788125746371989 ], [ -82.050242430892027, 28.788033209412006 ], [ -82.050249042572133, 28.787944908421164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Causey Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050249042572133, 28.787944908421164 ], [ -82.051738590145376, 28.787954120786537 ], [ -82.051811266058934, 28.787961274877919 ], [ -82.05186231818432, 28.787973471109769 ], [ -82.05190342601594, 28.787984102863582 ], [ -82.051952465560348, 28.788002704441734 ], [ -82.052010568490914, 28.788033132795636 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pheil Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050249042572133, 28.787944908421164 ], [ -82.050348981620601, 28.787488054045994 ], [ -82.050364243163585, 28.787453847164056 ], [ -82.050387054320822, 28.787421429504029 ], [ -82.050420357653749, 28.787394845052237 ], [ -82.050458436665096, 28.787373841449707 ], [ -82.050511544218494, 28.787358536732917 ], [ -82.050563133993066, 28.787350047726942 ], [ -82.051752866263712, 28.787340536961864 ], [ -82.051886116272925, 28.787331019575078 ], [ -82.05212238787756, 28.787317192315101 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pheil Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05212238787756, 28.787317192315101 ], [ -82.052224000393991, 28.78730722733123 ], [ -82.052299386231084, 28.787296055049229 ], [ -82.05237152731209, 28.787264397842257 ], [ -82.052485741419559, 28.7871930155044 ], [ -82.052542848887754, 28.787164462499675 ], [ -82.052623751406273, 28.787145426970312 ], [ -82.053727821359885, 28.787183505208983 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stephanie Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051845223982468, 28.790386789666904 ], [ -82.05248096750671, 28.7903767208565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stephanie Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05248096750671, 28.7903767208565 ], [ -82.053347092483961, 28.79038148479281 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bamboo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053394672352923, 28.792456365996376 ], [ -82.053394673670368, 28.792185107363213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bamboo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053394673670368, 28.792185107363213 ], [ -82.053389916993126, 28.79160928123893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bamboo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053389916993126, 28.79160928123893 ], [ -82.053394678410243, 28.791023936471319 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bamboo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053394678410243, 28.791023936471319 ], [ -82.053404989318622, 28.790548037335011 ], [ -82.0534041988101, 28.790509975379646 ], [ -82.053395474958151, 28.790467370660899 ], [ -82.053385162925437, 28.790433832999241 ], [ -82.053366103776057, 28.790404905047843 ], [ -82.053347092483961, 28.79038148479281 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stephanie Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053347092483961, 28.79038148479281 ], [ -82.053361370186806, 28.79031486057594 ], [ -82.053366128809827, 28.790229199454643 ], [ -82.053361372057296, 28.789800898624588 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stephanie Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053361372057296, 28.789800898624588 ], [ -82.053366134559369, 28.789201277303707 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stephanie Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053366134559369, 28.789201277303707 ], [ -82.053378071552316, 28.788870671471027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valente Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052457164412857, 28.792461118447235 ], [ -82.052471441907869, 28.792175585175496 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valente Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052471441907869, 28.792175585175496 ], [ -82.052480962544976, 28.79159499925785 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valente Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052480962544976, 28.79159499925785 ], [ -82.052495241857542, 28.791028689666721 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Valente Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052495241857542, 28.791028689666721 ], [ -82.052495274938352, 28.790738309144491 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wenk Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052471441907869, 28.792175585175496 ], [ -82.053394673670368, 28.792185107363213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Miragalia Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052480962544976, 28.79159499925785 ], [ -82.053389916993126, 28.79160928123893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zentko Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052495241857542, 28.791028689666721 ], [ -82.053394678410243, 28.791023936471319 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Presenti Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05248096750671, 28.7903767208565 ], [ -82.052485729054212, 28.789810411196079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Presenti Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052485729054212, 28.789810411196079 ], [ -82.052457178961802, 28.789320244185557 ], [ -82.052457459798774, 28.789293768408978 ], [ -82.052461938413074, 28.789267896479156 ], [ -82.052474222221207, 28.789248670708719 ], [ -82.052490491665594, 28.789229825992972 ], [ -82.052513733160438, 28.789214748470506 ], [ -82.052542839413192, 28.789201272108251 ], [ -82.05257200130923, 28.789198784086732 ], [ -82.05267816176989, 28.789199982238294 ], [ -82.053366134559369, 28.789201277303707 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mitchella Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052485729054212, 28.789810411196079 ], [ -82.053361372057296, 28.789800898624588 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Broaderick Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964420446071671, 28.786593557997975 ], [ -81.964501322248466, 28.786542200685062 ], [ -81.964609363608787, 28.786502731239555 ], [ -81.964974256999312, 28.786428399315703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Broaderick Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964974256999312, 28.786428399315703 ], [ -81.966240635659062, 28.786080886256045 ], [ -81.966321090640434, 28.786073663540176 ], [ -81.966393779043116, 28.786074996384915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mulligan Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964974256999312, 28.786428399315703 ], [ -81.965182220943049, 28.78683822660777 ], [ -81.965243841812466, 28.786897566078796 ], [ -81.965330568751611, 28.786934081640421 ], [ -81.965427794979036, 28.7869349458051 ], [ -81.96552792702748, 28.786917276210438 ], [ -81.966205292395628, 28.786740574609695 ], [ -81.966275974223223, 28.78669934395462 ], [ -81.966317205351132, 28.786646333401055 ], [ -81.966346656826602, 28.78656387196455 ], [ -81.966393779043116, 28.786074996384915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mulligan Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966393779043116, 28.786074996384915 ], [ -81.966464463813779, 28.785391747376028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mulligan Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966464463813779, 28.785391747376028 ], [ -81.966529256794047, 28.785050122039152 ], [ -81.966564596975999, 28.784926430744832 ], [ -81.966611718763417, 28.784838079700773 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mulligan Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966611718763417, 28.784838079700773 ], [ -81.966788423600136, 28.784602476806221 ], [ -81.966982799464148, 28.784254962142683 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mulligan Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966982799464148, 28.784254962142683 ], [ -81.96717717423509, 28.783978128182003 ], [ -81.96736565915775, 28.783654174538185 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mulligan Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96736565915775, 28.783654174538185 ], [ -81.967398998293319, 28.783601793042717 ], [ -81.967436341562092, 28.783554042868023 ], [ -81.967457899987494, 28.78353183986998 ], [ -81.967482668505994, 28.783511338644725 ], [ -81.967510904485223, 28.78349232071421 ], [ -81.967543156945965, 28.783474413859278 ], [ -81.967607350909006, 28.783446006176305 ], [ -81.96772791458568, 28.783401750637506 ], [ -81.967773391716634, 28.783383681889386 ], [ -81.967817244540925, 28.783363269141347 ], [ -81.967854541330823, 28.783342000247135 ], [ -81.967998806272334, 28.783254156104245 ], [ -81.968067502431211, 28.783206930955156 ], [ -81.968099608244728, 28.78318092559147 ], [ -81.968127553736366, 28.783154784341221 ], [ -81.968151813883864, 28.783128060631334 ], [ -81.968172608467341, 28.78310050729214 ], [ -81.96820871158549, 28.783045357247122 ], [ -81.968218879157249, 28.783025051769538 ], [ -81.968225620165569, 28.783006265840157 ], [ -81.96823050033089, 28.782979392038055 ], [ -81.968231184686147, 28.782948326585768 ], [ -81.968227848164759, 28.782912846317757 ], [ -81.968219731170322, 28.78286490422796 ], [ -81.968210628919977, 28.782823583210014 ], [ -81.968198992368499, 28.782783625251742 ], [ -81.968185141710194, 28.782746120278773 ], [ -81.968169304135785, 28.782711671217204 ], [ -81.968151802731626, 28.782680910493525 ], [ -81.968132692834274, 28.782653870842179 ], [ -81.968112108721044, 28.782630741085306 ], [ -81.968090149320588, 28.782611630826072 ], [ -81.968061516137155, 28.782592620917605 ], [ -81.96802916703281, 28.782575882282487 ], [ -81.967994863186149, 28.782562325693362 ], [ -81.967960566492039, 28.782552729413073 ], [ -81.967928101319842, 28.782547643870114 ], [ -81.967892296210266, 28.782545940627696 ], [ -81.967853658196631, 28.782547651239913 ], [ -81.967813312211391, 28.782552729459738 ], [ -81.967786831305517, 28.782559012016073 ], [ -81.967760390219212, 28.782569139402504 ], [ -81.967733703618407, 28.78258321589843 ], [ -81.967706235875767, 28.782601521526718 ], [ -81.967657831697167, 28.782641653905166 ], [ -81.967544610214475, 28.782748724650428 ], [ -81.967513080986592, 28.782774177927969 ], [ -81.967483464350863, 28.78279422325426 ], [ -81.967408092975049, 28.782838040643938 ], [ -81.96733111644059, 28.782879015291165 ], [ -81.967252534746791, 28.782917147195942 ], [ -81.967172347893182, 28.782952436357984 ], [ -81.96709055587948, 28.782984882776763 ], [ -81.967007158705584, 28.783014486451506 ], [ -81.966922156371453, 28.783041247381206 ], [ -81.966835548877242, 28.783065165564626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mulligan Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966835548877242, 28.783065165564626 ], [ -81.966767128564754, 28.783115046311138 ], [ -81.966696838437699, 28.783161029708801 ], [ -81.966624678495748, 28.783203115758511 ], [ -81.966550648738774, 28.783241304460791 ], [ -81.966470389433852, 28.783277423194036 ], [ -81.966388042100775, 28.783309190159692 ], [ -81.966303606678991, 28.78333660538059 ], [ -81.966217083106656, 28.783359668875836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mulligan Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966217083106656, 28.783359668875836 ], [ -81.966069829870293, 28.78336555913523 ], [ -81.965716422509175, 28.78338322892764 ], [ -81.965522047000889, 28.783400898926882 ], [ -81.965363014431531, 28.783430349342218 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mulligan Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965363014431531, 28.783430349342218 ], [ -81.965192200938674, 28.783442129204921 ], [ -81.965009605275, 28.783501030068656 ], [ -81.964844682552268, 28.783577600815963 ], [ -81.964650307081556, 28.783665952368047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trabucco Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96736565915775, 28.783654174538185 ], [ -81.967230186769299, 28.783518702395956 ], [ -81.966900340450337, 28.783153517214878 ], [ -81.966835548877242, 28.783065165564626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Braman Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966982799464148, 28.784254962142683 ], [ -81.966517480649316, 28.78374252473046 ], [ -81.966217083106656, 28.783359668875836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Singh Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966611718763417, 28.784838079700773 ], [ -81.965439585297347, 28.783565820876888 ], [ -81.965363014431531, 28.783430349342218 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Skinner Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966464463813779, 28.785391747376028 ], [ -81.966334879727356, 28.785385857195305 ], [ -81.966250340800201, 28.785379850066413 ], [ -81.966163613617269, 28.785350180044116 ], [ -81.966093384267111, 28.78529750510889 ], [ -81.96471207547809, 28.783773122936186 ], [ -81.964675557888441, 28.783727476996383 ], [ -81.964650307081556, 28.783665952368047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964923835311296, 28.787362521282567 ], [ -81.964906555121999, 28.78733792962263 ], [ -81.96482182439307, 28.787216360386445 ], [ -81.964762881177947, 28.787135313555318 ], [ -81.964678150437862, 28.787002691780572 ], [ -81.964593420142052, 28.786866386704251 ], [ -81.964505005177486, 28.786707978416338 ], [ -81.964420446071671, 28.786593557997975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Goldberg Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964131121202485, 28.785943539796314 ], [ -81.964556934068867, 28.785827302791894 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Goldberg Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964556934068867, 28.785827302791894 ], [ -81.965380095127742, 28.785613804826937 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Goldberg Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965380095127742, 28.785613804826937 ], [ -81.96579048974607, 28.785505871175189 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Collopy Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964556934068867, 28.785827302791894 ], [ -81.963645699213487, 28.784776928332498 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Collopy Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963645699213487, 28.784776928332498 ], [ -81.96336587314326, 28.784479972990152 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rodriguez Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965380095127742, 28.785613804826937 ], [ -81.965378108923204, 28.78559902440832 ], [ -81.965372241539768, 28.785582136087214 ], [ -81.965346806822851, 28.785541265531705 ], [ -81.96530942447967, 28.785490766003257 ], [ -81.96416991618338, 28.784230200496765 ], [ -81.964133015927928, 28.784192535282859 ], [ -81.964062625163194, 28.784143844764195 ], [ -81.963995958891402, 28.784103067600341 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ritch Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963645699213487, 28.784776928332498 ], [ -81.963995958891402, 28.784103067600341 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ritch Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963995958891402, 28.784103067600341 ], [ -81.964146342255546, 28.783827051845581 ], [ -81.96415776373955, 28.783802305303077 ], [ -81.964169185473736, 28.7837471020358 ], [ -81.964167749097058, 28.783706699619021 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mulligan Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964650307081556, 28.783665952368047 ], [ -81.964504415989808, 28.783697543706872 ], [ -81.964359697832919, 28.783710381493677 ], [ -81.964245323251305, 28.783711548532228 ], [ -81.964167749097058, 28.783706699619021 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepper Tree Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038455586961931, 28.898282033680104 ], [ -82.037820742176379, 28.898292362333457 ], [ -82.037081944362598, 28.898318316931331 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pepper Tree Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038455586961931, 28.898282033680104 ], [ -82.038472933182703, 28.899462539520091 ], [ -82.038562028372411, 28.899625908981889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 136th Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95571028873637, 28.957336180185273 ], [ -81.956255502952828, 28.957379322792107 ], [ -81.956436293862538, 28.957497603495888 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181847036626564, 28.858151144983406 ], [ -82.182015471906553, 28.858138048180265 ], [ -82.182828285293098, 28.858073295448062 ], [ -82.183456032823941, 28.858022668868653 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 100", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953698945030482, 28.912159017586212 ], [ -81.953709203756276, 28.913367396410884 ], [ -81.953742555471592, 28.913706051721601 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020522800442507, 28.85924877117818 ], [ -82.020522464721637, 28.859411137271746 ], [ -82.020522582349798, 28.860022982526242 ], [ -82.0205225863523, 28.860043801389907 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 144", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019910702410328, 28.858172962081493 ], [ -82.01980670590379, 28.858172416542587 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burgess Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018390172669939, 28.824679773906066 ], [ -82.01838370239409, 28.824663050455616 ], [ -82.018364275598302, 28.824639207674814 ], [ -82.018338668151017, 28.824614481434242 ], [ -82.018270672279897, 28.824578276111634 ], [ -82.018148810370135, 28.824519111241688 ], [ -82.01805460045928, 28.824474942701517 ], [ -82.01790679985973, 28.824417599990959 ], [ -82.017801928574798, 28.824383255164367 ], [ -82.017719748856052, 28.824344619631468 ], [ -82.017676206156551, 28.824316408094031 ], [ -82.017622543758279, 28.824284517289847 ], [ -82.017590346923328, 28.82426397212701 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017590346923328, 28.82426397212701 ], [ -82.017583293991166, 28.824242201192977 ], [ -82.017573682017471, 28.824223160062388 ], [ -82.017525818110343, 28.824160582770737 ], [ -82.017503146343245, 28.824134887826649 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017452056405389, 28.824547178994877 ], [ -82.017526564864966, 28.824491804973846 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burgess Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017526564864966, 28.824491804973846 ], [ -82.017585747218405, 28.824475245645719 ], [ -82.017670072823066, 28.824459608007459 ], [ -82.017744586584712, 28.824455928951433 ], [ -82.017817708266989, 28.824466885482074 ], [ -82.017882111614185, 28.824484775520272 ], [ -82.01794293483762, 28.824508032015384 ], [ -82.018019859736853, 28.824542022094921 ], [ -82.018082473097891, 28.824577801443727 ], [ -82.018154032157739, 28.824611792135485 ], [ -82.018216644998176, 28.824643993766596 ], [ -82.018281046254529, 28.824672616578784 ], [ -82.018329348408216, 28.8246815621007 ], [ -82.018390172669939, 28.824679773906066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022388686576335, 28.834333476675866 ], [ -82.02242572455495, 28.83432691997093 ], [ -82.022468846822548, 28.834313291793247 ], [ -82.022508946977155, 28.834293776532689 ], [ -82.022544995281635, 28.834268876041513 ], [ -82.022576067576068, 28.834239228404002 ], [ -82.022601366793779, 28.834205592593474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022607700349482, 28.83397257152739 ], [ -82.022584257854163, 28.833937909570206 ], [ -82.022554832877105, 28.833906985934988 ], [ -82.022520178750469, 28.833880594526892 ], [ -82.022481186089834, 28.833859411929119 ], [ -82.022440637203161, 28.833844495194747 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tharp Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022601366793779, 28.834205592593474 ], [ -82.022782939559121, 28.83413174614989 ], [ -82.022933836500599, 28.834125661499428 ], [ -82.023143144186889, 28.834129313714815 ], [ -82.023388959303972, 28.834128097844967 ], [ -82.02370900496723, 28.83406847065336 ], [ -82.02387693867982, 28.833971119947382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tharp Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02387693867982, 28.833971119947382 ], [ -82.023285514038747, 28.834027443819174 ], [ -82.023092034209796, 28.834028310664863 ], [ -82.022815796607432, 28.834019790566732 ], [ -82.022607700349482, 28.83397257152739 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Homestead Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01980670590379, 28.858172416542587 ], [ -82.019803569013746, 28.858274518147571 ], [ -82.019809847797944, 28.858301848960124 ], [ -82.019827609998615, 28.858328492390644 ], [ -82.019913005169357, 28.858402274300506 ], [ -82.020069450634509, 28.858533443343248 ], [ -82.020127519232332, 28.858603809307802 ], [ -82.020174656551774, 28.858694670866409 ], [ -82.020198568086442, 28.858778017771709 ], [ -82.020216253192402, 28.858932467155437 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Homestead Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019376643724087, 28.859218779087872 ], [ -82.020216253192402, 28.858932467155437 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Homestead Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01937398145229, 28.859532910376831 ], [ -82.018874585236375, 28.859539056623326 ], [ -82.018845209888951, 28.859533590816241 ], [ -82.018838377621549, 28.859511046762162 ], [ -82.018831546324279, 28.85933683889154 ], [ -82.018837695548726, 28.859316344025956 ], [ -82.018861607016476, 28.859311562199736 ], [ -82.01912127885565, 28.859307767929852 ], [ -82.019376643724087, 28.859218779087872 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Homestead Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020212382245376, 28.859226521471989 ], [ -82.020205396500344, 28.859488508333708 ], [ -82.020190366774628, 28.859522667237094 ], [ -82.020151426826359, 28.859535647099701 ], [ -82.01937398145229, 28.859532910376831 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Homestead Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020216253192402, 28.858932467155437 ], [ -82.020212382245376, 28.859226521471989 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barn Wood Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01937398145229, 28.859532910376831 ], [ -82.019376643724087, 28.859218779087872 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Prairie Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020522800442507, 28.85924877117818 ], [ -82.020212382245376, 28.859226521471989 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Three Lawn Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045402515041062, 28.928409622731586 ], [ -82.045572826377395, 28.928454951288519 ], [ -82.045664809726787, 28.928490512400504 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lakeshore Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04569410507591, 28.928407902926207 ], [ -82.045663105384364, 28.928479307375781 ], [ -82.045664809726787, 28.928490512400504 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bluff Oak Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045441494901183, 28.927412695985211 ], [ -82.045427135187595, 28.927919273356778 ], [ -82.045427817836512, 28.928310523406228 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bluff Oak Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045402515041062, 28.928409622731586 ], [ -82.045340457645864, 28.928483050472039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bluff Oak Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045427817836512, 28.928310523406228 ], [ -82.045402515041062, 28.928409622731586 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037346826319819, 28.799617361668329 ], [ -82.033250653451887, 28.799604713080431 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 511", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031201250516304, 28.799598384891215 ], [ -82.031196575697777, 28.799725506375299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033250653451887, 28.799604713080431 ], [ -82.031201250516304, 28.799598384891215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 513", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033250653451887, 28.799604713080431 ], [ -82.033248404710989, 28.79973484686688 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046925657445442, 28.800947801947832 ], [ -82.046847135292495, 28.80102489518714 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046925657445442, 28.800947801947832 ], [ -82.046785961764527, 28.80079306436518 ], [ -82.046618053206217, 28.800625155243011 ], [ -82.046377816019216, 28.800421080427725 ], [ -82.046142743567259, 28.800240255112509 ], [ -82.045973310669339, 28.800124398241344 ], [ -82.045653802515503, 28.799961244093375 ], [ -82.04534789257022, 28.799835479204003 ], [ -82.045282399269965, 28.799817035890211 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045282399269965, 28.799817035890211 ], [ -82.04496210304157, 28.79973520661822 ], [ -82.044814246881145, 28.799704614197267 ], [ -82.044613704771692, 28.799675722435925 ], [ -82.044448852311945, 28.799662125660326 ], [ -82.044187128816787, 28.799653625427304 ], [ -82.043890182735552, 28.799653854972441 ], [ -82.043692208162312, 28.799652515820814 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043530445392747, 28.799651421179341 ], [ -82.03984254186922, 28.799600665021046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045282399269965, 28.799817035890211 ], [ -82.045038580853969, 28.799874566193935 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043530445392747, 28.799651421179341 ], [ -82.043531242135856, 28.79977797467296 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991605723948751, 28.799945794410654 ], [ -81.991682262578223, 28.799800372612083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056110119888203, 28.60994445192982 ], [ -82.056369194604457, 28.609946362829064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99458754374848, 28.799580830772772 ], [ -81.994396506238616, 28.799579097574551 ], [ -81.99381048318655, 28.799578725833658 ], [ -81.993328347721402, 28.799591932114673 ], [ -81.993028168156584, 28.799612299900616 ], [ -81.99266996637769, 28.799648950567274 ], [ -81.992333931784145, 28.799687753580461 ], [ -81.99196108008006, 28.799746797818461 ], [ -81.991682262578223, 28.799800372612083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oaks Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026786680940361, 28.912369126827148 ], [ -82.026807470055914, 28.911276453585369 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oaks Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026807470055914, 28.911276453585369 ], [ -82.026811130564667, 28.910435406256642 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oaks Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026811130564667, 28.910435406256642 ], [ -82.026818447684349, 28.909598016024248 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oaks Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026818447684349, 28.909598016024248 ], [ -82.026839455411206, 28.90911714512994 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oaks Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026818447684349, 28.909598016024248 ], [ -82.026699603398853, 28.90959618761239 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oaks Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026811130564667, 28.910435406256642 ], [ -82.026697771437767, 28.910437233787754 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oaks Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026807470055914, 28.911276453585369 ], [ -82.02668679693457, 28.91127645357685 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oaks Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026786680940361, 28.912369126827148 ], [ -82.026768354310178, 28.912363383297983 ], [ -82.026749216682333, 28.91236030667266 ], [ -82.026729765851542, 28.912359976978223 ], [ -82.026710507759262, 28.912362402790436 ], [ -82.026691943333631, 28.912367521010761 ], [ -82.026674555459763, 28.912375198507625 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oaks Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026659748728477, 28.912604276550216 ], [ -82.026677457304714, 28.912614913702384 ], [ -82.026696966263188, 28.912622741496627 ], [ -82.026717705457443, 28.912627531166684 ], [ -82.026739068787279, 28.912629142735071 ], [ -82.026760431911981, 28.91262752910389 ], [ -82.026781170496903, 28.91262273743131 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oaks Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026674555459763, 28.912375198507625 ], [ -82.026658378849021, 28.912385270775548 ], [ -82.026643933123069, 28.912397207495371 ], [ -82.02663149364507, 28.912410781130912 ], [ -82.026621297535641, 28.912425732943188 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arbor Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026621297535641, 28.912425732943188 ], [ -82.026577013585708, 28.912431428679831 ], [ -82.026514196213384, 28.91244570430678 ], [ -82.02646137222213, 28.91246854709879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oaks Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026621297535641, 28.912425732943188 ], [ -82.026610558178504, 28.912448700402368 ], [ -82.026604252765523, 28.912472908123281 ], [ -82.026602552620886, 28.912497698370512 ], [ -82.026605503941667, 28.912522397580709 ], [ -82.026613026542194, 28.912546334663549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arbor Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02646137222213, 28.91246854709879 ], [ -82.026613026542194, 28.912546334663549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oaks Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026613026542194, 28.912546334663549 ], [ -82.026621234850936, 28.912562785999651 ], [ -82.026631895362854, 28.912578110000162 ], [ -82.026644812367579, 28.912592025338821 ], [ -82.026659748728477, 28.912604276550216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oaks Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026659748728477, 28.912604276550216 ], [ -82.02668837118803, 28.91273552273627 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oaks Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02668837118803, 28.91273552273627 ], [ -82.026781170496903, 28.91262273743131 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oaks Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026781170496903, 28.91262273743131 ], [ -82.026799894097309, 28.912614508684754 ], [ -82.026817027559431, 28.912603932570313 ], [ -82.026832193591702, 28.912591241982234 ], [ -82.026845058227224, 28.912576716376975 ], [ -82.026855338177995, 28.912560675619382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Timber Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026855338177995, 28.912560675619382 ], [ -82.026996749902949, 28.912471405356033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oaks Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026855338177995, 28.912560675619382 ], [ -82.026865961390484, 28.912535983367356 ], [ -82.026871551935145, 28.912510043444499 ], [ -82.026871940073107, 28.912483643450585 ], [ -82.02686711402346, 28.912457584953682 ], [ -82.026857220320522, 28.912432659152625 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tall Timber Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026996749902949, 28.912471405356033 ], [ -82.026857220320522, 28.912432659152625 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oaks Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026857220320522, 28.912432659152625 ], [ -82.026847608762282, 28.912416611983961 ], [ -82.026835473618419, 28.912401948264336 ], [ -82.026821067317599, 28.912388973019279 ], [ -82.026804689531318, 28.912377956151605 ], [ -82.026786680940361, 28.912369126827148 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North C 475", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119958278182139, 28.890625721015972 ], [ -82.11995827769168, 28.890764224616952 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 92nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11995827769168, 28.890764224616952 ], [ -82.120251983615475, 28.890756892863841 ], [ -82.120644595153294, 28.890756894706453 ], [ -82.120795928641499, 28.890764033241009 ], [ -82.120874451127676, 28.89075546715026 ], [ -82.12094107695701, 28.890748266888671 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 92nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12094107695701, 28.890748266888671 ], [ -82.120887387758643, 28.890670811961328 ], [ -82.120739670046319, 28.890633881849695 ], [ -82.12055964023817, 28.890624648397917 ], [ -82.120370377438462, 28.890629264158179 ], [ -82.120158034543408, 28.890624647067032 ], [ -82.119958278182139, 28.890625721015972 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016261135116054, 28.930699195113483 ], [ -82.016267499024707, 28.931486333727502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016155381852286, 28.929228316097483 ], [ -82.016050004502972, 28.928869578496606 ], [ -82.015949659296155, 28.928494619658316 ], [ -82.015937736620486, 28.928373111650611 ], [ -82.015920011059791, 28.92821113636699 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0157890023021, 28.928223611966075 ], [ -82.015817353370068, 28.928379356616261 ], [ -82.015835073376167, 28.928497723087027 ], [ -82.015874047039119, 28.928659696858613 ], [ -82.015980325306842, 28.929033479373452 ], [ -82.016026336695901, 28.929211473429419 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016155381852286, 28.929228316097483 ], [ -82.016026336695901, 28.929211473429419 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01631056260095, 28.929938358995013 ], [ -82.016303662135698, 28.929844961455576 ], [ -82.01627856509549, 28.929680761157702 ], [ -82.016233964685114, 28.929511662762739 ], [ -82.0161587066533, 28.929239634099858 ], [ -82.016155381852286, 28.929228316097483 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016026336695901, 28.929211473429419 ], [ -82.016033468039168, 28.929239061179935 ], [ -82.01612203396634, 28.929541200662268 ], [ -82.016171640456776, 28.929771703289962 ], [ -82.016192900321698, 28.929874493862503 ], [ -82.016198126180385, 28.929943313089804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01631056260095, 28.929938358995013 ], [ -82.016198126180385, 28.929943313089804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burgess Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019076020408619, 28.824825536213837 ], [ -82.01889057848156, 28.824804341677247 ], [ -82.018721914447909, 28.824775199821595 ], [ -82.018546185606539, 28.824727514433732 ], [ -82.018390172669939, 28.824679773906066 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stony Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018845398296321, 28.825249860051507 ], [ -82.018922224232981, 28.825194545409911 ], [ -82.01899290486557, 28.82513615919374 ], [ -82.019045147500449, 28.825050113358493 ], [ -82.019063585527832, 28.824951777234144 ], [ -82.019076020408619, 28.824825536213837 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stony Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018888414484252, 28.826872419253661 ], [ -82.018916072219099, 28.826777156100572 ], [ -82.018912999308938, 28.826672672780774 ], [ -82.018894562241528, 28.826546678683361 ], [ -82.018894562612132, 28.826426830433512 ], [ -82.018891490221961, 28.826267032876316 ], [ -82.018876125721818, 28.826098016274521 ], [ -82.018845395418353, 28.825990459783302 ], [ -82.018796228208075, 28.825855246377799 ], [ -82.018728621377491, 28.825723105064768 ], [ -82.0187101841139, 28.825587892936873 ], [ -82.01874091417875, 28.825449606405421 ], [ -82.018802375746702, 28.825305174641361 ], [ -82.018845398296321, 28.825249860051507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stony Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018098638779833, 28.827649890887294 ], [ -82.018455112411672, 28.827554629351138 ], [ -82.01856266961093, 28.827523899702246 ], [ -82.018645641869341, 28.82749624288585 ], [ -82.018722467657582, 28.827459367048718 ], [ -82.018783929125519, 28.82740097947984 ], [ -82.018820805410201, 28.827314934909435 ], [ -82.01882695174379, 28.827201232375653 ], [ -82.01883617162612, 28.827102895743234 ], [ -82.018869976438936, 28.826967682966135 ], [ -82.018888414484252, 28.826872419253661 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Creighton Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018888414484252, 28.826872419253661 ], [ -82.018774628537813, 28.826864034916667 ], [ -82.018349822652567, 28.82689104297781 ], [ -82.018293345756902, 28.826881221487589 ], [ -82.018246690592008, 28.826844388090393 ], [ -82.018219679775626, 28.8267707216988 ], [ -82.01818039094556, 28.826625846687111 ], [ -82.018195125488475, 28.826488338350977 ], [ -82.018207403556744, 28.826360651056564 ], [ -82.0182074036816, 28.826264886324445 ], [ -82.018185304525431, 28.82611509961519 ], [ -82.018133738499017, 28.826004600516601 ], [ -82.018072351104308, 28.825916202004581 ], [ -82.017981498046566, 28.82581306982097 ], [ -82.017937298454981, 28.825702570602786 ], [ -82.017907832925715, 28.825572428036285 ], [ -82.017920111027891, 28.825425096584283 ], [ -82.017959399699123, 28.825292499998053 ], [ -82.018025698883207, 28.825199190079672 ], [ -82.018158298036624, 28.825140258580262 ], [ -82.018317907927724, 28.825115704111187 ], [ -82.018477517101488, 28.825123072239471 ], [ -82.01865431405561, 28.825169728036602 ], [ -82.018845398296321, 28.825249860051507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burgess Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028018988876198, 28.828973792362046 ], [ -82.027580143645892, 28.828781842116857 ], [ -82.027378790627935, 28.828698353542581 ], [ -82.027287936315687, 28.828639420042073 ], [ -82.026435418782313, 28.827893739734499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burgess Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026435418782313, 28.827893739734499 ], [ -82.025900568780159, 28.827426387919399 ], [ -82.025817081828279, 28.827360088300345 ], [ -82.025743415739299, 28.82732571048302 ], [ -82.025667294691374, 28.827308522055091 ], [ -82.025566617302658, 28.827301154318118 ], [ -82.025371436812961, 28.827298173668982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burgess Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025371436812961, 28.827298173668982 ], [ -82.0242950506656, 28.827301791917559 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burgess Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0242950506656, 28.827301791917559 ], [ -82.023435218926167, 28.827298687347557 ], [ -82.023375702989327, 28.827292310804463 ], [ -82.02333916210992, 28.827283219854596 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burgess Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02333916210992, 28.827283219854596 ], [ -82.023280720405978, 28.827264544624562 ], [ -82.023216678147207, 28.827232387105898 ], [ -82.023123367764853, 28.827170998715886 ], [ -82.023037424506199, 28.82708505542341 ], [ -82.022968670148046, 28.826977012610232 ], [ -82.022939204844931, 28.826873879982099 ], [ -82.022931838473241, 28.826758471414493 ], [ -82.022929383155329, 28.826633239505572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burgess Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022929383155329, 28.826633239505572 ], [ -82.022929388551702, 28.825376014909029 ], [ -82.022919567819571, 28.825263060998253 ], [ -82.022892556470055, 28.825152562382641 ], [ -82.022850813046546, 28.825027330568442 ], [ -82.02280415833043, 28.824929110156802 ], [ -82.022710848693976, 28.824865266273591 ], [ -82.022578250097453, 28.824821066537183 ], [ -82.022362163877375, 28.824759677550812 ], [ -82.022060134240846, 28.824695832199815 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burgess Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022060134240846, 28.824695832199815 ], [ -82.021323476952617, 28.824511663482308 ], [ -82.021286643941735, 28.824511663679864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burgess Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021286643941735, 28.824511663679864 ], [ -82.021183511717254, 28.82453130726423 ], [ -82.021075468712795, 28.824573049957287 ], [ -82.020964969363277, 28.824634438001379 ], [ -82.020844648345985, 28.824698279893447 ], [ -82.020748883001872, 28.824744934469635 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burgess Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020748883001872, 28.824744934469635 ], [ -82.020650661876431, 28.824803867057053 ], [ -82.020532795469279, 28.824867710112727 ], [ -82.020414928623254, 28.824919274445978 ], [ -82.020316708528028, 28.824931551104349 ], [ -82.020201297665679, 28.824924184199642 ], [ -82.020056421789221, 28.82488980628785 ], [ -82.019818236254338, 28.824830872471495 ], [ -82.019616883669826, 28.824808771653732 ], [ -82.01944253972195, 28.824823503557099 ], [ -82.019233820952735, 28.824828413805186 ], [ -82.019076020408619, 28.824825536213837 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Randolph Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02333916210992, 28.827283219854596 ], [ -82.023301991735977, 28.827380297325959 ], [ -82.023284868110977, 28.827437890930049 ], [ -82.023278641592171, 28.827504825213861 ], [ -82.023309772970336, 28.827713408463971 ], [ -82.02333934770283, 28.827887746649139 ], [ -82.023359583542472, 28.827934444938041 ], [ -82.023403167829088, 28.827984255877265 ], [ -82.023463874461967, 28.82803562401071 ], [ -82.023532364397113, 28.828063643571877 ], [ -82.023591515980172, 28.828074539768753 ], [ -82.02366934560149, 28.828065200305655 ], [ -82.023734722877109, 28.82803873800918 ], [ -82.023779865264245, 28.828012276430705 ], [ -82.023829676547848, 28.827965578869762 ], [ -82.024025807913489, 28.827763223254333 ], [ -82.024246846133082, 28.827531292559744 ], [ -82.024273309029269, 28.827487707350585 ], [ -82.024287318609112, 28.827436340094494 ], [ -82.024295101868589, 28.827400538744875 ], [ -82.0242950506656, 28.827301791917559 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shockoe Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022929383155329, 28.826633239505572 ], [ -82.022836903848159, 28.826631230801471 ], [ -82.022739654057844, 28.826620717650748 ], [ -82.022663430734355, 28.826599690022675 ], [ -82.022274433077158, 28.826347364296886 ], [ -82.022240264007522, 28.826310567281485 ], [ -82.022227122410257, 28.826263255917304 ], [ -82.022221868414846, 28.825516800211478 ], [ -82.022216612258802, 28.825453719739372 ], [ -82.022198213208384, 28.825390638649679 ], [ -82.022140390684754, 28.825209281054676 ], [ -82.022095707398663, 28.825093633796708 ], [ -82.02206153878852, 28.825012153492377 ], [ -82.022051026497252, 28.824954329788081 ], [ -82.022048397965236, 28.824878106760568 ], [ -82.022056283862781, 28.824780857373167 ], [ -82.022060134240846, 28.824695832199815 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shockoe Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022060134240846, 28.824695832199815 ], [ -82.022046144884015, 28.824526131761502 ], [ -82.02200770064718, 28.824309874227115 ], [ -82.021964449847815, 28.824127256410687 ], [ -82.021923601312906, 28.824021532066993 ], [ -82.021868335734709, 28.823951849089521 ], [ -82.021760207949526, 28.82387495676036 ], [ -82.021611229833184, 28.823771633011177 ], [ -82.021464655806824, 28.823663503930774 ], [ -82.021121047547751, 28.82335834027921 ], [ -82.020818289062703, 28.823089218720291 ], [ -82.020676520438514, 28.822966671861813 ], [ -82.020628463358022, 28.822945046087888 ], [ -82.020570794852617, 28.822930628451928 ], [ -82.020515528290147, 28.822928225588022 ], [ -82.020445845344895, 28.822935434398712 ], [ -82.020380967347336, 28.822961864366182 ], [ -82.020263226449373, 28.823050769720396 ], [ -82.020051773862136, 28.823259816429264 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shockoe Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020051773862136, 28.823259816429264 ], [ -82.01987636381277, 28.823461655466936 ], [ -82.019801874707852, 28.823572186233992 ], [ -82.019763427850634, 28.823658688808255 ], [ -82.019753816989351, 28.823730773827723 ], [ -82.019761024681642, 28.823800456335153 ], [ -82.019792261877427, 28.823860528568193 ], [ -82.019837915820219, 28.823906182563451 ], [ -82.019943641428625, 28.823987879767692 ], [ -82.020590010217305, 28.824574180625554 ], [ -82.020683721075741, 28.824670294292858 ], [ -82.020748883001872, 28.824744934469635 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maymont Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020051773862136, 28.823259816429264 ], [ -82.020128684463259, 28.823311624115579 ], [ -82.021260503742539, 28.824336033222963 ], [ -82.021282151023172, 28.824383263096511 ], [ -82.02129198990032, 28.824442300574564 ], [ -82.021286643941735, 28.824511663679864 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cameo Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02537334248062, 28.826708296347462 ], [ -82.025374845015079, 28.826138102910782 ], [ -82.025383622771528, 28.826055201702228 ], [ -82.025406741231649, 28.825993554459046 ], [ -82.025441419618446, 28.825949244761571 ], [ -82.025624437915724, 28.825793199265579 ], [ -82.025653335638495, 28.825750815202756 ], [ -82.025664895190516, 28.825702652342564 ], [ -82.025651410620881, 28.825658344257164 ], [ -82.025620585688046, 28.825615959480746 ], [ -82.025435641285384, 28.825454132799955 ], [ -82.0253971112285, 28.825432941003314 ], [ -82.025343168409805, 28.825423307873859 ], [ -82.025273814281618, 28.825409821959902 ], [ -82.024838422194463, 28.825409819192718 ], [ -82.024782553521675, 28.825419452279078 ], [ -82.024749801980718, 28.825444497176687 ], [ -82.024720904237626, 28.825479173527334 ], [ -82.024709344538437, 28.82551963059257 ], [ -82.024707418711714, 28.825565866135822 ], [ -82.024707413853363, 28.826702504334659 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Semmes Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02438568608035, 28.826712135486613 ], [ -82.024707413853363, 28.826702504334659 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cameo Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025371436812961, 28.827298173668982 ], [ -82.02537334248062, 28.826708296347462 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Semmes Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024707413853363, 28.826702504334659 ], [ -82.02537334248062, 28.826708296347462 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Helena Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026435418782313, 28.827893739734499 ], [ -82.026741904579069, 28.827579888841573 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Helena Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026741904579069, 28.827579888841573 ], [ -82.027007115920796, 28.827327074718703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Helena Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027007115920796, 28.827327074718703 ], [ -82.027222755598459, 28.827133745467936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Judah Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025760382521881, 28.826189392294392 ], [ -82.026184222248986, 28.826573577403661 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Judah Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026184222248986, 28.826573577403661 ], [ -82.027007115920796, 28.827327074718703 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charity Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026184222248986, 28.826573577403661 ], [ -82.026124735882902, 28.826615712881264 ], [ -82.026075163052226, 28.826662805559497 ], [ -82.026045418793586, 28.826717334938827 ], [ -82.026042940772825, 28.826786735562361 ], [ -82.026057812434985, 28.826908186207444 ], [ -82.026075161721238, 28.826962715770986 ], [ -82.026112340571572, 28.827007330648339 ], [ -82.026174306175491, 28.827066817205761 ], [ -82.026741904579069, 28.827579888841573 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Doris Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028018988876198, 28.828973792362046 ], [ -82.028079273427991, 28.828898340877348 ], [ -82.028135105689799, 28.828853676123398 ], [ -82.028205827218457, 28.828812733044316 ], [ -82.028313768271971, 28.828794123478456 ], [ -82.028618980158839, 28.828760626629169 ], [ -82.028708311238972, 28.828734572037447 ], [ -82.028752976258886, 28.828719683708783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Doris Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028752976258886, 28.828719683708783 ], [ -82.028815341876793, 28.828699564611778 ], [ -82.02889341406312, 28.828651521183541 ], [ -82.028971484819209, 28.828583460001951 ], [ -82.029029539728867, 28.828511393114947 ], [ -82.029077583796578, 28.828447335388713 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Broad Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028752976258886, 28.828719683708783 ], [ -82.028737269795613, 28.828653522510841 ], [ -82.028715250199568, 28.82860547826207 ], [ -82.028677214723132, 28.82855943503694 ], [ -82.02834491028203, 28.82832722131274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Broad Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02834491028203, 28.82832722131274 ], [ -82.027518151697919, 28.827724665803981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Broad Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027518151697919, 28.827724665803981 ], [ -82.027289941406707, 28.827548502701603 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arch Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02834491028203, 28.82832722131274 ], [ -82.028270841088229, 28.828393281803283 ], [ -82.028188766569656, 28.82844933186891 ], [ -82.028114696850238, 28.828475355952854 ], [ -82.028022612364339, 28.828473353433516 ], [ -82.027940536104495, 28.828453335151686 ], [ -82.027878479533953, 28.828417301334159 ], [ -82.027273926353544, 28.827976894801854 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bragg Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027049718608268, 28.828181081455973 ], [ -82.027273926353544, 28.827976894801854 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bragg Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027273926353544, 28.827976894801854 ], [ -82.027518151697919, 28.827724665803981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968409471525902, 28.788878059517842 ], [ -81.968400255189508, 28.788786929067502 ], [ -81.968367014181979, 28.788680145040736 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968188247920722, 28.788599351206482 ], [ -81.968039209112703, 28.788595920472943 ], [ -81.967915298554075, 28.788636342611099 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.968367014181979, 28.788680145040736 ], [ -81.96837206218504, 28.788604946486451 ], [ -81.968415271343119, 28.788503279397531 ], [ -81.968509313986289, 28.788371111555307 ], [ -81.968638941548363, 28.788137277405724 ], [ -81.968748235583519, 28.787911068367752 ], [ -81.968834654246635, 28.787674692075047 ], [ -81.96893378158731, 28.787359524981763 ], [ -81.969017658848074, 28.787021481528765 ], [ -81.969101536995069, 28.786716480750592 ], [ -81.969198121625709, 28.786431812857177 ], [ -81.969302332210518, 28.786175103024291 ], [ -81.969414167676959, 28.785936185764864 ], [ -81.969564129394655, 28.785671850721787 ], [ -81.96968613076082, 28.78547360101993 ], [ -81.969815758160138, 28.785275349303895 ], [ -81.969919968633533, 28.785059308061786 ], [ -81.969998761368814, 28.784853431953117 ], [ -81.970097888672811, 28.784591638474758 ], [ -81.970207182010029, 28.784347638099614 ], [ -81.970341893755077, 28.784126512394881 ], [ -81.970537605707307, 28.783869802713088 ], [ -81.970730774980311, 28.783658844044041 ], [ -81.9709163200597, 28.783430092506226 ], [ -81.971066280877494, 28.783201342077874 ], [ -81.971173033808796, 28.783000549463569 ], [ -81.97133570197866, 28.782634548550508 ], [ -81.971570303624091, 28.782226829685971 ], [ -81.972054181709865, 28.781535397033938 ], [ -81.972248650752263, 28.781266237075165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972155313311688, 28.781216440678282 ], [ -81.971701279598165, 28.781863204599137 ], [ -81.971473796776976, 28.782199255265201 ], [ -81.971226231565296, 28.782646752441551 ], [ -81.97107390675005, 28.782982757996006 ], [ -81.970888361754703, 28.783269967121416 ], [ -81.970725692714794, 28.783488551815008 ], [ -81.97058843963697, 28.783651219115555 ], [ -81.97042068712453, 28.783852010478796 ], [ -81.970278351357948, 28.784045179079001 ], [ -81.9701258484059, 28.784281553496719 ], [ -81.970008929534117, 28.784525554815279 ], [ -81.969904719199974, 28.784800057094362 ], [ -81.969803049912443, 28.785069473505807 ], [ -81.96969629794512, 28.785275349513579 ], [ -81.969487877937851, 28.785600684160592 ], [ -81.96936587557316, 28.785804018219906 ], [ -81.96919558109505, 28.786167477525598 ], [ -81.969040535995575, 28.786584312891755 ], [ -81.968910907107372, 28.787095189495716 ], [ -81.968809238857034, 28.787471357838925 ], [ -81.968740611739079, 28.787677233728356 ], [ -81.96864910943053, 28.787913609678263 ], [ -81.968539816457437, 28.788142360454408 ], [ -81.968420354908531, 28.78832790234738 ], [ -81.968318687733912, 28.788472780131311 ], [ -81.968224408935143, 28.788572284020002 ], [ -81.968188247920722, 28.788599351206482 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grand Oaks Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02668837118803, 28.91273552273627 ], [ -82.026662378551364, 28.912810099915152 ], [ -82.026600512154801, 28.912883862034121 ], [ -82.026519610768872, 28.91296238380043 ], [ -82.026436329378143, 28.913033767000957 ], [ -82.026369703678995, 28.913100390952433 ], [ -82.026305458642454, 28.913169394674942 ], [ -82.026248350678884, 28.913278849684705 ], [ -82.026207899127996, 28.913485862353813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045441494901183, 28.927412695985211 ], [ -82.044752055133685, 28.927411419112911 ], [ -82.044750864379367, 28.927411417699311 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penrose Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014446471194987, 28.865307785141976 ], [ -82.014447802096058, 28.865463681405078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994729656841457, 28.799583383759622 ], [ -81.994735594996641, 28.79869425056031 ], [ -81.994730416643719, 28.798374672852106 ], [ -81.994685933911683, 28.79814055610229 ], [ -81.994611017281457, 28.797911121995117 ], [ -81.994552489007361, 28.797768310545607 ], [ -81.994344124326332, 28.797452253180253 ], [ -81.99411234778762, 28.797194725669595 ], [ -81.993822042692841, 28.79698870266045 ], [ -81.993400630748297, 28.796768633465543 ], [ -81.99298624242455, 28.796520469806783 ], [ -81.992623360771546, 28.796265283233971 ], [ -81.992335395451022, 28.796021802119046 ], [ -81.991911643533683, 28.795588686584882 ], [ -81.991710302020607, 28.79534286424526 ], [ -81.991544079232142, 28.795115770440905 ], [ -81.991442174134178, 28.794911960256773 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991314687261635, 28.794962564546335 ], [ -81.991324008846746, 28.794984665510626 ], [ -81.991497255191248, 28.795267947077402 ], [ -81.991799266949755, 28.795654239061221 ], [ -81.992194924925826, 28.796061602184913 ], [ -81.992606971535366, 28.796412776206687 ], [ -81.993089253799639, 28.796731175214379 ], [ -81.993557488954053, 28.796986361175303 ], [ -81.993838430465459, 28.797150243598995 ], [ -81.994098300633084, 28.797367971819213 ], [ -81.994304323993759, 28.797609112238302 ], [ -81.994442453526943, 28.797850251297127 ], [ -81.994524393733869, 28.798044568681227 ], [ -81.994587604154958, 28.798323166665504 ], [ -81.99459930841634, 28.798845245266907 ], [ -81.99458754374848, 28.799580830772772 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991314687261635, 28.794962564546335 ], [ -81.991442174134178, 28.794911960256773 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978014236129695, 28.793695059063328 ], [ -81.977667529322304, 28.792886985679285 ], [ -81.977238921943211, 28.791885083224564 ], [ -81.97686637177604, 28.791040346702061 ], [ -81.976854340900985, 28.790932928704027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976647709483572, 28.791002227619458 ], [ -81.976708967583136, 28.791074602002979 ], [ -81.97679566749494, 28.791237164292738 ], [ -81.977303674681608, 28.792410321831927 ], [ -81.977845549589148, 28.793643086062239 ], [ -81.977883334097839, 28.79373705107443 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977883334097839, 28.79373705107443 ], [ -81.978014236129695, 28.793695059063328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dray Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978281818866762, 28.79821966978221 ], [ -81.978122881325746, 28.79829171348922 ], [ -81.977852635796893, 28.798339694765509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dray Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97787375077688, 28.798422347378374 ], [ -81.977960195916154, 28.79839972528179 ], [ -81.978158053589041, 28.798375884233891 ], [ -81.978292731431708, 28.798404682636008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dray Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977852635796893, 28.798339694765509 ], [ -81.97787375077688, 28.798422347378374 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023322622650383, 28.841809818212223 ], [ -82.023377970489719, 28.841632501168984 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980033366479617, 28.812366431119944 ], [ -81.980005940084311, 28.812468750879567 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980145803973116, 28.812492952689389 ], [ -81.980171251007974, 28.812400682546379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980005940084311, 28.812468750879567 ], [ -81.980145803973116, 28.812492952689389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chitty Chatty Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978697137517429, 28.811838994490447 ], [ -81.978863265904621, 28.811995384020243 ], [ -81.978995523084834, 28.812134760385891 ], [ -81.979035842878176, 28.812172532010404 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chitty Chatty Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980033366479617, 28.812366431119944 ], [ -81.979798490845056, 28.812313165017184 ], [ -81.979615891426093, 28.812292635981184 ], [ -81.979493798457881, 28.812291555347439 ], [ -81.979395475980226, 28.812275348310052 ], [ -81.979291751138618, 28.812239693764742 ], [ -81.979219360068527, 28.812212681819428 ], [ -81.97913508414787, 28.812188911794184 ], [ -81.979035842878176, 28.812172532010404 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlene Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980353092049029, 28.806961818661794 ], [ -81.980029995502704, 28.806913452156255 ], [ -81.979914528887704, 28.806943367292995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlene Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979914528887704, 28.806943367292995 ], [ -81.980023271577735, 28.807000246303247 ], [ -81.980343124169565, 28.807047445660178 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlene Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980353092049029, 28.806961818661794 ], [ -81.980343124169565, 28.807047445660178 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045547268282434, 28.8226057475365 ], [ -82.045544896931489, 28.823018716969905 ], [ -82.045539394966312, 28.824470453892307 ], [ -82.045534091856766, 28.826389013146088 ], [ -82.045528843216857, 28.828434394828889 ], [ -82.045522884233151, 28.828825662786805 ], [ -82.045523278248027, 28.829743115728512 ], [ -82.04551307122874, 28.832986523183067 ], [ -82.045503269901857, 28.835307278562443 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028030607259481, 28.824281452757038 ], [ -82.027954391876264, 28.824175152703159 ], [ -82.027886200324616, 28.824056817799832 ], [ -82.027803967671076, 28.823946506299198 ], [ -82.027708897678622, 28.823855317237228 ], [ -82.027601394687409, 28.823770006416957 ], [ -82.027496717948935, 28.82370528924827 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Causey Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049296846530709, 28.78813578602805 ], [ -82.049770365988181, 28.787940369980582 ], [ -82.049862439576032, 28.787917822056798 ], [ -82.050048464404512, 28.787925339223808 ], [ -82.050249042572133, 28.787944908421164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amador Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049398378744769, 28.788335523503083 ], [ -82.049296846530709, 28.78813578602805 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Amador Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049296846530709, 28.78813578602805 ], [ -82.049037054341625, 28.787675995205319 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elijah Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028329449676136, 28.825125839325651 ], [ -82.028257245779272, 28.825165951762635 ], [ -82.028126875293907, 28.825200047651606 ], [ -82.027898228778298, 28.825242164899041 ], [ -82.027848086614426, 28.825238152487056 ], [ -82.027809978592515, 28.825218096399034 ], [ -82.027627463304128, 28.825057641935445 ], [ -82.027613423277415, 28.825031568009059 ], [ -82.027619441161107, 28.824973404891395 ], [ -82.027745800124436, 28.824656510484417 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elijah Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027745800124436, 28.824656510484417 ], [ -82.027803964822212, 28.824496057502355 ], [ -82.027854107133706, 28.824419842948387 ], [ -82.027936339924523, 28.824349644824604 ], [ -82.028030607259481, 28.824281452757038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gulley Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027745800124436, 28.824656510484417 ], [ -82.027871003545684, 28.824718715807997 ], [ -82.028329449676136, 28.825125839325651 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gulley Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028329449676136, 28.825125839325651 ], [ -82.028802439587324, 28.825554566718335 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028909145594326, 28.825087738703278 ], [ -82.028664616920508, 28.824867660474307 ], [ -82.028324497774292, 28.82456088497641 ], [ -82.028200010076574, 28.82444306612345 ], [ -82.028095528475419, 28.824345253602839 ], [ -82.028030607259481, 28.824281452757038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031310750809652, 28.827052399880113 ], [ -82.031065350536153, 28.826771940192682 ], [ -82.030760622074965, 28.826467210329344 ], [ -82.030536794967176, 28.826267652148697 ], [ -82.030256337171551, 28.826057308060143 ], [ -82.029957001156447, 28.825841568955763 ], [ -82.02964148528693, 28.825647404135999 ], [ -82.029441927930165, 28.82553144412001 ], [ -82.029342150212813, 28.825455935752196 ], [ -82.029147987312172, 28.825280649162675 ], [ -82.028909145594326, 28.825087738703278 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0332377913264, 28.828490492425502 ], [ -82.033181170764252, 28.828480639310907 ], [ -82.033034810164708, 28.828449394103568 ], [ -82.032897496871186, 28.82841321456463 ], [ -82.032566956219753, 28.828311254511377 ], [ -82.032404974648671, 28.828238074821325 ], [ -82.032252859205542, 28.828163250430713 ], [ -82.032129524186473, 28.828090892402098 ], [ -82.032008654354414, 28.82799715710329 ], [ -82.031914097103567, 28.827897665207306 ], [ -82.03182282836967, 28.82777843990559 ], [ -82.031741426649432, 28.82764359331609 ], [ -82.031651803114016, 28.827507922945923 ], [ -82.031510307749031, 28.827319375546569 ], [ -82.031310750809652, 28.827052399880113 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tain Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028909145594326, 28.825087738703278 ], [ -82.029468952907962, 28.824587008993028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sentell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029000910833403, 28.824110825000179 ], [ -82.029114868824109, 28.824239028200598 ], [ -82.029468952907962, 28.824587008993028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sentell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029468952907962, 28.824587008993028 ], [ -82.02961140105144, 28.824676548081964 ], [ -82.029747743387745, 28.824808822575278 ], [ -82.029865772069243, 28.824945164879161 ], [ -82.029971589385568, 28.825142557220659 ], [ -82.030057057192252, 28.825264656236605 ], [ -82.030164910739686, 28.825370474473722 ], [ -82.030272764273022, 28.825453908149889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sentell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030272764273022, 28.825453908149889 ], [ -82.03035212788707, 28.825529202852469 ], [ -82.030816100656821, 28.825854799370518 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sentell Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030816100656821, 28.825854799370518 ], [ -82.031169205320495, 28.826168875180027 ], [ -82.031233228470214, 28.826220557593533 ], [ -82.031287996498875, 28.826242156398735 ], [ -82.0313311934475, 28.826246784479597 ], [ -82.031384420101489, 28.826235986207802 ], [ -82.031797879138111, 28.826071685073902 ], [ -82.031996125250316, 28.825993005823879 ], [ -82.032089994234255, 28.825946380717561 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brodeur Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030816100656821, 28.825854799370518 ], [ -82.030876853272133, 28.825784727873039 ], [ -82.031005674408945, 28.825673650123026 ], [ -82.031155322199567, 28.825581085636387 ], [ -82.031307285265939, 28.825512435246168 ], [ -82.031443047409681, 28.825459982103872 ], [ -82.031602723455251, 28.825415242608702 ], [ -82.031749285441464, 28.825385159430319 ], [ -82.031896673923015, 28.825374554038184 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Licciardello Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030980938016782, 28.824859702885902 ], [ -82.030921923941762, 28.824757953718855 ], [ -82.030905644518356, 28.824686730009855 ], [ -82.030909714506052, 28.824613471556415 ], [ -82.03103181549146, 28.824273633827929 ], [ -82.031066409256056, 28.824226828717173 ], [ -82.031117283448538, 28.824188165075771 ], [ -82.031172228911728, 28.824161710539826 ], [ -82.031249558017691, 28.824145431674058 ], [ -82.032108316819205, 28.824161716407275 ], [ -82.032185645790676, 28.82415561143922 ], [ -82.032244659749338, 28.824149507093697 ], [ -82.03230570918366, 28.824135262518908 ], [ -82.032389143527396, 28.824104738628517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Licciardello Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032389143527396, 28.824104738628517 ], [ -82.033164469489193, 28.823779148672365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paul Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032389143527396, 28.824104738628517 ], [ -82.032252801543692, 28.823799493293564 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shannon Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031310750809652, 28.827052399880113 ], [ -82.031386929901601, 28.826986163089025 ], [ -82.031496151959601, 28.826910862257975 ], [ -82.031593840820037, 28.826853878129544 ], [ -82.031748185454049, 28.826770750973807 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shannon Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031748185454049, 28.826770750973807 ], [ -82.032383098311996, 28.826522488620405 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shannon Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032383098311996, 28.826522488620405 ], [ -82.032438514998645, 28.826489366308429 ], [ -82.032482028559997, 28.826433240614961 ], [ -82.032510406752607, 28.826365764723544 ], [ -82.03251103738009, 28.826307117230886 ], [ -82.032499021848139, 28.826241452754289 ], [ -82.032462392965172, 28.826190578388577 ], [ -82.032409484530888, 28.826145808341533 ], [ -82.032336225063375, 28.826105108841684 ], [ -82.032242616414791, 28.826064408639475 ], [ -82.032173427521229, 28.826015569277356 ], [ -82.032089994234255, 28.825946380717561 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shannon Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032089994234255, 28.825946380717561 ], [ -82.03204522433559, 28.825873120949229 ], [ -82.032006561102364, 28.825795792143506 ], [ -82.03198010621054, 28.82570421846183 ], [ -82.031896673923015, 28.825374554038184 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shannon Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031896673923015, 28.825374554038184 ], [ -82.031823415390463, 28.825071343795354 ], [ -82.031786787655818, 28.82494314138232 ], [ -82.031748123100158, 28.824869881903247 ], [ -82.031699284222256, 28.824821042122043 ], [ -82.031621955509962, 28.824788482884045 ], [ -82.031538521258753, 28.824770167035449 ], [ -82.031426596709508, 28.824770166361624 ], [ -82.031280078806788, 28.824780340641372 ], [ -82.03114780541847, 28.824808830225091 ], [ -82.031070476568757, 28.824831213150375 ], [ -82.030980938016782, 28.824859702885902 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shannon Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030980938016782, 28.824859702885902 ], [ -82.030905643177348, 28.824900401225257 ], [ -82.030787614562399, 28.824987904576279 ], [ -82.030622780921817, 28.825118141608012 ], [ -82.030494576391646, 28.825238203152505 ], [ -82.030388758536262, 28.825339951815177 ], [ -82.030272764273022, 28.825453908149889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ely Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031748185454049, 28.826770750973807 ], [ -82.031815610972885, 28.826863138163112 ], [ -82.032004725496066, 28.827132975825844 ], [ -82.032191536010231, 28.827421263246393 ], [ -82.032265337231152, 28.82754580337361 ], [ -82.032320687671003, 28.82761960556725 ], [ -82.03238065206493, 28.827679569757652 ], [ -82.032465984510438, 28.827741839672459 ], [ -82.032580995347089, 28.827805049053929 ], [ -82.032721679399245, 28.827869626469475 ], [ -82.032888038053912, 28.827933264636119 ], [ -82.033058703607068, 28.827984003971043 ], [ -82.033206306189427, 28.828020905427511 ], [ -82.033342378620475, 28.828048581602175 ], [ -82.033443855895968, 28.82806703270856 ], [ -82.033506126595015, 28.828071644638168 ], [ -82.033549946806531, 28.828064725918285 ], [ -82.033584540452381, 28.828046277028879 ], [ -82.033609910011549, 28.828020907869114 ], [ -82.033626054754777, 28.827986313046758 ], [ -82.033635280011097, 28.827935574907979 ], [ -82.033644505701474, 28.827857161169362 ], [ -82.033662956451138, 28.827575793489206 ], [ -82.033651425638269, 28.827538891892797 ], [ -82.033630669044456, 28.827508910541994 ], [ -82.033591462353726, 28.827481235469314 ], [ -82.033564108830674, 28.827469814391119 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jacqueline Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034326999707019, 28.828503025834333 ], [ -82.034330913923853, 28.828332195366198 ], [ -82.034334557103804, 28.827792687233796 ], [ -82.034353302336726, 28.827727082048529 ], [ -82.034397819772053, 28.827668505731644 ], [ -82.034454054493267, 28.827623988044749 ], [ -82.034522003411269, 28.827602900347969 ], [ -82.034575893837527, 28.82759352900656 ], [ -82.034634470986887, 28.827593529644812 ], [ -82.034682329707564, 28.827601101515938 ], [ -82.034998369739313, 28.827676394165046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jacqueline Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034998369739313, 28.827676394165046 ], [ -82.035273071763953, 28.827742603195265 ], [ -82.035605880660938, 28.827828888360468 ], [ -82.035697519433725, 28.827871734216664 ], [ -82.035809271489384, 28.827921551431345 ], [ -82.036305396312187, 28.828170944979394 ], [ -82.03654564460227, 28.828377473913871 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burgett Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034886042157112, 28.828108263744699 ], [ -82.034998369739313, 28.827676394165046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034326999707019, 28.828503025834333 ], [ -82.033939695685632, 28.828513782459044 ], [ -82.033666690079244, 28.828517778006958 ], [ -82.033440176737955, 28.828510241974609 ], [ -82.0332377913264, 28.828490492425502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Haley Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033114072259878, 28.829039296956342 ], [ -82.0332377913264, 28.828490492425502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melle Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032841711697841, 28.828950234744621 ], [ -82.033114072259878, 28.829039296956342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melle Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033114072259878, 28.829039296956342 ], [ -82.033807116474847, 28.829282957789953 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melle Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033807116474847, 28.829282957789953 ], [ -82.034435872917427, 28.829506954488679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melle Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034435872917427, 28.829506954488679 ], [ -82.034729290361042, 28.8296123002394 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fredda Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033807116474847, 28.829282957789953 ], [ -82.033877851664201, 28.829040623796658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fredda Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033877851664201, 28.829040623796658 ], [ -82.033948944922074, 28.828752740253659 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mack Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033877851664201, 28.829040623796658 ], [ -82.034608784300104, 28.829044557721801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gale Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034435872917427, 28.829506954488679 ], [ -82.034571151091399, 28.829209901582207 ], [ -82.034581631445306, 28.829185013297629 ], [ -82.03458913487718, 28.82916244920229 ], [ -82.034594374831158, 28.829133631777246 ], [ -82.034608784300104, 28.829044557721801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gale Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034608784300104, 28.829044557721801 ], [ -82.034617885694601, 28.828760000848447 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036674199466773, 28.828526598489287 ], [ -82.034326999707019, 28.828503025834333 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chantel Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036673154015247, 28.82902900209945 ], [ -82.036674199466773, 28.828526598489287 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chantel Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036412414146554, 28.829941573549714 ], [ -82.036647078869464, 28.829397756161171 ], [ -82.036669427482096, 28.829334435259398 ], [ -82.036676877497527, 28.829300912532943 ], [ -82.036673154015247, 28.82902900209945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Miller Stachler Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035291251354309, 28.829051343279996 ], [ -82.036006414470108, 28.829055071554375 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Miller Stachler Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036006414470108, 28.829055071554375 ], [ -82.036673154015247, 28.82902900209945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rayma Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035738224549931, 28.829803752954838 ], [ -82.035965438114772, 28.829867075541458 ], [ -82.036073457369071, 28.829889425434104 ], [ -82.036412414146554, 28.829941573549714 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rayma Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036412414146554, 28.829941573549714 ], [ -82.036721572528236, 28.830004897530589 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canova Draney Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036006414470108, 28.829055071554375 ], [ -82.036006413678876, 28.829185438825107 ], [ -82.035998963698304, 28.829222688047732 ], [ -82.035980339669464, 28.829274835489628 ], [ -82.035738224549931, 28.829803752954838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canova Draney Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035738224549931, 28.829803752954838 ], [ -82.035574331879047, 28.830165056007658 ], [ -82.035529633050857, 28.830191129803271 ], [ -82.035477486196513, 28.830206028613976 ], [ -82.035417889644904, 28.830198578250457 ], [ -82.035034236195926, 28.830034685464469 ], [ -82.034985813630001, 28.830004887314921 ], [ -82.034963464710614, 28.82995273958678 ], [ -82.034970914295201, 28.829900593320193 ], [ -82.035276351957236, 28.829215234208796 ], [ -82.03529125086061, 28.82916681073986 ], [ -82.035291251354309, 28.829051343279996 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canova Draney Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035291251354309, 28.829051343279996 ], [ -82.035291252183796, 28.828764534729974 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heather Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034627364763566, 28.825807383997169 ], [ -82.034348599839362, 28.825517896580727 ], [ -82.034321030017281, 28.825482667391963 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heather Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034321030017281, 28.825482667391963 ], [ -82.034298206866765, 28.825449215467366 ], [ -82.034257036569954, 28.825377165530984 ], [ -82.034058042091928, 28.825011768990972 ], [ -82.033869340096956, 28.824661810817229 ], [ -82.033764697343031, 28.824490262464074 ], [ -82.033711517563717, 28.824409636136028 ], [ -82.033663483879067, 28.824349593802037 ], [ -82.033582856814647, 28.824268965992736 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heather Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033582856814647, 28.824268965992736 ], [ -82.033530668336539, 28.824244224743421 ], [ -82.033453470704359, 28.824185898387391 ], [ -82.03338142168532, 28.824117278105515 ], [ -82.033323095963581, 28.824050375175066 ], [ -82.033271630644279, 28.823985185854291 ], [ -82.033227029562426, 28.823904559064765 ], [ -82.033164469489193, 28.823779148672365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aurea Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033582856814647, 28.824268965992736 ], [ -82.033633928975576, 28.824227390508586 ], [ -82.033686277266114, 28.824203595589555 ], [ -82.033745763053588, 28.824170284059353 ], [ -82.033817147889096, 28.824144110458825 ], [ -82.033933741554847, 28.824110798373471 ], [ -82.034052715048233, 28.824089384345573 ], [ -82.034138376206158, 28.824077487891525 ], [ -82.034240692457871, 28.824065591762015 ], [ -82.034312378698488, 28.824056376717742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aurea Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034312378698488, 28.824056376717742 ], [ -82.034635986891317, 28.823996891441244 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Duszynski Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034973863463989, 28.82531035102312 ], [ -82.034959587975393, 28.825253243924433 ], [ -82.034359967522903, 28.824137278507166 ], [ -82.034312378698488, 28.824056376717742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ludmyla Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034321030017281, 28.825482667391963 ], [ -82.034973863463989, 28.82531035102312 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ludmyla Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034973863463989, 28.82531035102312 ], [ -82.0353569584084, 28.825212795859709 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Licciardello Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033164469489193, 28.823779148672365 ], [ -82.03346808322388, 28.823651491639453 ], [ -82.033624978349863, 28.823582214839789 ], [ -82.033663692434899, 28.823569989043399 ], [ -82.033720743953324, 28.823557765072895 ], [ -82.03449502641493, 28.823435514746393 ], [ -82.034564304719339, 28.823427364894947 ], [ -82.034627470092289, 28.82343144012043 ], [ -82.03469878449134, 28.823439590800067 ], [ -82.034780288635019, 28.823447740677352 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whittington Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036926950068462, 28.825648821646947 ], [ -82.036560977028117, 28.825325939750943 ], [ -82.036525266975076, 28.825264234929016 ], [ -82.036501846819036, 28.825183135327805 ], [ -82.036509657018954, 28.825098344224543 ], [ -82.03654201130955, 28.825020248057072 ], [ -82.036569903951062, 28.82493211127327 ], [ -82.036586639055116, 28.824851784220524 ], [ -82.036595564975187, 28.824766993714316 ], [ -82.036597137967206, 28.824693391080114 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whittington Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036597137967206, 28.824693391080114 ], [ -82.03658549848214, 28.824616826968569 ], [ -82.036558647116749, 28.824548020431088 ], [ -82.036516692326714, 28.824477534183846 ], [ -82.03645919413637, 28.824401090483658 ], [ -82.036383677428063, 28.824325572774626 ], [ -82.03630418530264, 28.82426198007909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whittington Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03630418530264, 28.82426198007909 ], [ -82.036222706519311, 28.824210310062977 ], [ -82.036129304329535, 28.82417056352412 ], [ -82.036025965095277, 28.824144727704837 ], [ -82.035944486375087, 28.82412882954829 ], [ -82.035888842266075, 28.824124854040861 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whittington Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035888842266075, 28.824124854040861 ], [ -82.035831209349666, 28.824126842385855 ], [ -82.035735818644142, 28.824132803441035 ], [ -82.035642416260217, 28.824152674808129 ], [ -82.035545039306015, 28.824178508689208 ], [ -82.035467533404145, 28.824200369035193 ], [ -82.035395991215211, 28.824208317814502 ], [ -82.035342334478017, 28.82420633025993 ], [ -82.035288678170758, 28.824196393344149 ], [ -82.035246945100269, 28.824176520744953 ], [ -82.035203224065796, 28.824146711514402 ], [ -82.035167453483169, 28.824108952706592 ], [ -82.034803780698397, 28.823600205089683 ], [ -82.034787882102691, 28.82356045969107 ], [ -82.034781920554153, 28.823518726705199 ], [ -82.034780288635019, 28.823447740677352 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whittington Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034780288635019, 28.823447740677352 ], [ -82.034783908490482, 28.823419362151878 ], [ -82.034801794146333, 28.823391540360923 ], [ -82.035082004675601, 28.823099410937278 ], [ -82.035115789144001, 28.823059665557789 ], [ -82.035149572489203, 28.823025881724668 ], [ -82.035169444545517, 28.823009984291453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whittington Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035169444545517, 28.823009984291453 ], [ -82.035221256847592, 28.822967115906394 ], [ -82.035287121988745, 28.822919421064498 ], [ -82.03535525696725, 28.822894438527591 ], [ -82.035425664482972, 28.822869456274649 ], [ -82.035507427638208, 28.822844473767638 ], [ -82.035596004314343, 28.822837660148394 ], [ -82.035670954267061, 28.822835389513877 ], [ -82.035759530924793, 28.822828575787341 ], [ -82.035850377580473, 28.822808135645737 ], [ -82.035932142635588, 28.822783152881019 ], [ -82.036018447903189, 28.822746815127466 ], [ -82.036113839004884, 28.82270366340817 ], [ -82.036213770780776, 28.822653697093671 ], [ -82.036297805254605, 28.822599189963448 ], [ -82.036370484533919, 28.822549223489816 ], [ -82.036431806498541, 28.822485631506218 ], [ -82.036854250693068, 28.822060921437082 ], [ -82.036920115313109, 28.822015498711107 ], [ -82.036981436553418, 28.821992786484987 ], [ -82.037070013668668, 28.8219837034943 ], [ -82.037151776758904, 28.821979160897719 ], [ -82.03723808233282, 28.821990517512329 ], [ -82.037324387377566, 28.822017771853506 ], [ -82.037390251837252, 28.822065466281362 ], [ -82.037444760951345, 28.822142687313406 ], [ -82.037560590067599, 28.822338010165673 ], [ -82.03758557344149, 28.822406145718187 ], [ -82.037606012682957, 28.82248563806391 ], [ -82.037633268095462, 28.82254923076249 ], [ -82.037669606530059, 28.822592383674117 ], [ -82.037721843292857, 28.822640078955484 ], [ -82.03841457734913, 28.823268458278431 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whittington Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03841457734913, 28.823268458278431 ], [ -82.03864394377527, 28.823450896840715 ], [ -82.038791571794988, 28.8235917111124 ], [ -82.038893774226494, 28.823693914742396 ], [ -82.038936927017517, 28.823764321416125 ], [ -82.038998247896743, 28.823864253685588 ], [ -82.039050486440729, 28.823955101352958 ], [ -82.039120892448935, 28.824134525279273 ], [ -82.039145875402312, 28.824200389410848 ], [ -82.039182213823523, 28.824245813012816 ], [ -82.03924580653873, 28.824298051187579 ], [ -82.039316213631253, 28.824329847387215 ], [ -82.040132666639821, 28.824746147883822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leschak Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035888842266075, 28.824124854040861 ], [ -82.035894199515994, 28.824078096812656 ], [ -82.03589419974368, 28.824024303873511 ], [ -82.035876846974276, 28.823979187541543 ], [ -82.035852553189883, 28.823927130649345 ], [ -82.035246960110669, 28.823075131049599 ], [ -82.035213990368845, 28.823047367309037 ], [ -82.035169444545517, 28.823009984291453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bartelson Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036597137967206, 28.824693391080114 ], [ -82.036650012574825, 28.824690633102058 ], [ -82.036707276231198, 28.824683692635602 ], [ -82.036754127211637, 28.824657664780137 ], [ -82.036792302708633, 28.824631636519044 ], [ -82.036825271969747, 28.82459346185804 ], [ -82.03705432520789, 28.824310620503734 ], [ -82.037080353253373, 28.824286327860619 ], [ -82.03712720498811, 28.824260299874485 ], [ -82.037429088182677, 28.824098975592165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bartelson Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037429088182677, 28.824098975592165 ], [ -82.03751931969235, 28.824026096826827 ], [ -82.037652933597855, 28.823925454736987 ], [ -82.037784812557362, 28.823816136389443 ], [ -82.03797395347307, 28.823654760569777 ], [ -82.038204741046187, 28.823453476445561 ], [ -82.03841457734913, 28.823268458278431 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pierluissi Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037429088182677, 28.824098975592165 ], [ -82.037799926897122, 28.824575045111938 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mabel Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03630418530264, 28.82426198007909 ], [ -82.036326924559773, 28.824207993468267 ], [ -82.036367030058045, 28.824151178946519 ], [ -82.036484004240577, 28.82400524109287 ], [ -82.036579811016836, 28.823896067010615 ], [ -82.03662935887985, 28.823850508007478 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mabel Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03662935887985, 28.823850508007478 ], [ -82.036668934463961, 28.823814742592873 ], [ -82.036733549261228, 28.82377241070731 ], [ -82.036839382302048, 28.823718936892629 ], [ -82.036993119741382, 28.823629816159631 ], [ -82.037132374452398, 28.823541808996119 ], [ -82.037263830239979, 28.823452686740538 ], [ -82.037362980140315, 28.82337582016234 ], [ -82.037469008753391, 28.823271873352283 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Benjamin Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03662935887985, 28.823850508007478 ], [ -82.036565114406201, 28.823793400810136 ], [ -82.036504437495054, 28.823732724005239 ], [ -82.03645089994059, 28.823668479359483 ], [ -82.036286718046753, 28.823422205933259 ], [ -82.036227176863108, 28.82334079544863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Benjamin Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036227176863108, 28.82334079544863 ], [ -82.036046264892903, 28.823084493340801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sherfinski Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036227176863108, 28.82334079544863 ], [ -82.036341391190874, 28.823290827092141 ], [ -82.036484007699414, 28.823226534186873 ], [ -82.036596525997467, 28.823167491543362 ], [ -82.036702359244515, 28.823098422326588 ], [ -82.036784797825447, 28.823036037263158 ], [ -82.036861359209482, 28.822979630615631 ], [ -82.036939649088239, 28.822914609118239 ], [ -82.037005015364301, 28.822857847173672 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sherfinski Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037005015364301, 28.822857847173672 ], [ -82.037212589524842, 28.822632760829556 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Byrd Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037696076218765, 28.823468286405912 ], [ -82.037469008753391, 28.823271873352283 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Byrd Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037469008753391, 28.823271873352283 ], [ -82.037005015364301, 28.822857847173672 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pierluissi Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037799926897122, 28.824575045111938 ], [ -82.037889743213981, 28.824673005721284 ], [ -82.037969402474033, 28.824770546790734 ], [ -82.038044271913179, 28.824851363943669 ], [ -82.038131093986564, 28.824932983504596 ], [ -82.038194989647849, 28.824987407476822 ], [ -82.038221442208069, 28.825009704298292 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pierluissi Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038221442208069, 28.825009704298292 ], [ -82.038292671961926, 28.825071902281515 ], [ -82.038388586764228, 28.825130428165348 ], [ -82.038495881047112, 28.825197081499432 ], [ -82.03859017113146, 28.825247476990924 ], [ -82.038702342930307, 28.825294622685966 ], [ -82.038814514495911, 28.82533526534996 ], [ -82.038918558718933, 28.825364527598033 ], [ -82.039229064509854, 28.825440936213539 ], [ -82.039755363961817, 28.825558830498615 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whittington Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037329043734601, 28.826105598922002 ], [ -82.037259564161033, 28.826020766461678 ], [ -82.037156734779757, 28.825897483874574 ], [ -82.03703248381521, 28.825757025210724 ], [ -82.036926950068462, 28.825648821646947 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whittington Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038992928810273, 28.827280589922292 ], [ -82.038860574305602, 28.827275187360573 ], [ -82.038742957999105, 28.827254894237836 ], [ -82.03859856580101, 28.827229266862378 ], [ -82.038466211816683, 28.827196852413675 ], [ -82.038265116711131, 28.827130913658287 ], [ -82.037904379144422, 28.827013173833532 ], [ -82.03781794310639, 28.826975358410238 ], [ -82.03776121997025, 28.826926737761855 ], [ -82.037688289789685, 28.826805187946469 ], [ -82.03762346348303, 28.826648522545412 ], [ -82.037547832961565, 28.826475650988968 ], [ -82.037418180348411, 28.826240654806114 ], [ -82.037329043734601, 28.826105598922002 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whittington Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039524248201957, 28.827281631110559 ], [ -82.038992928810273, 28.827280589922292 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Delbagno Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036926950068462, 28.825648821646947 ], [ -82.036981445196432, 28.825614076267868 ], [ -82.037034607639725, 28.825568733611778 ], [ -82.037079949998088, 28.825520262029954 ], [ -82.037125294364074, 28.825471791334401 ], [ -82.037164385021882, 28.825407684402407 ], [ -82.037197220356092, 28.825346705647512 ], [ -82.037230056157071, 28.825263835976717 ], [ -82.037248819772259, 28.825184093896574 ], [ -82.037269146137845, 28.825113732692049 ], [ -82.037297292087274, 28.825051189674259 ], [ -82.037342635684794, 28.824983956298773 ], [ -82.037392670500338, 28.824918286236692 ], [ -82.037468762679254, 28.824824357785182 ], [ -82.037505249939741, 28.824782255155124 ], [ -82.037552157530001, 28.824740039591649 ], [ -82.037629209849925, 28.824693235657513 ], [ -82.037713206727645, 28.824639971051969 ], [ -82.037799926897122, 28.824575045111938 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Garchinsky Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037329043734601, 28.826105598922002 ], [ -82.037405731703515, 28.826077171634662 ], [ -82.037454202802962, 28.826047463486603 ], [ -82.037518310315136, 28.825998992970721 ], [ -82.037565217335171, 28.825953650008252 ], [ -82.037621507213629, 28.825883287963794 ], [ -82.037701250310263, 28.825794164992892 ], [ -82.037770049386225, 28.825694097268638 ], [ -82.037807378169092, 28.825626491484336 ], [ -82.0378529194831, 28.825539303336868 ], [ -82.037875685025014, 28.825480049694509 ], [ -82.037912336727587, 28.825387635995625 ], [ -82.037932663997012, 28.825326655995539 ], [ -82.037974879874739, 28.82526724087392 ], [ -82.038168765966489, 28.825082740040624 ], [ -82.038221442208069, 28.825009704298292 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040132666639821, 28.824746147883822 ], [ -82.039968536358188, 28.825060253196003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039968536358188, 28.825060253196003 ], [ -82.039903450250122, 28.825204571980752 ], [ -82.039841195007909, 28.825348889911297 ], [ -82.039798747208678, 28.825456421279714 ], [ -82.039755363961817, 28.825558830498615 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warnell Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038992928810273, 28.827280589922292 ], [ -82.039053578242161, 28.826615502941781 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warnell Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039053578242161, 28.826615502941781 ], [ -82.039106435405557, 28.826016481497639 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warnell Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039106435405557, 28.826016481497639 ], [ -82.03913965941743, 28.825742740548574 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dawn Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03806695300996, 28.826351223543039 ], [ -82.03816825753394, 28.826412888112301 ], [ -82.039053578242161, 28.826615502941781 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Casey Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037757199740156, 28.826600336046802 ], [ -82.03806695300996, 28.826351223543039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Casey Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03806695300996, 28.826351223543039 ], [ -82.038128617697737, 28.826302773266036 ], [ -82.038212304564581, 28.826188255241195 ], [ -82.038318015881487, 28.826042905469823 ], [ -82.038384084913403, 28.825937196062721 ], [ -82.038436940526523, 28.825857913513609 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shari Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038148968288994, 28.825697591174254 ], [ -82.038436940526523, 28.825857913513609 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shari Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038436940526523, 28.825857913513609 ], [ -82.038520627757805, 28.82588434218545 ], [ -82.038643955139889, 28.825919578840072 ], [ -82.038780496863453, 28.82595922123868 ], [ -82.038961084616432, 28.825998862761374 ], [ -82.039106435405557, 28.826016481497639 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040483261839952, 28.824337511360795 ], [ -82.040342072901083, 28.824491468660455 ], [ -82.040228880457747, 28.824621637279304 ], [ -82.040132666639821, 28.824746147883822 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041180924872393, 28.82373976016385 ], [ -82.040912848959948, 28.823939565335909 ], [ -82.040731357402422, 28.824089419609191 ], [ -82.040573175097691, 28.824235942654251 ], [ -82.040483261839952, 28.824337511360795 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brooke Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041180924872393, 28.82373976016385 ], [ -82.041098338633518, 28.823601249822758 ], [ -82.040748476144842, 28.823294834295641 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brooke Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040748476144842, 28.823294834295641 ], [ -82.040622709753464, 28.82316677976543 ], [ -82.0399298471891, 28.822537940827758 ], [ -82.039099784458656, 28.821792479591256 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arlyn Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039785559280816, 28.824224075547765 ], [ -82.039943859738813, 28.824026646939789 ], [ -82.040095047006886, 28.823843447818955 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arlyn Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040095047006886, 28.823843447818955 ], [ -82.040217773845498, 28.823734950867475 ], [ -82.040504193286068, 28.823490048787971 ], [ -82.040648209067101, 28.823366774374175 ], [ -82.040748476144842, 28.823294834295641 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Samantha Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040095047006886, 28.823843447818955 ], [ -82.040012163103853, 28.823770458044304 ], [ -82.039961854925295, 28.823708716861226 ], [ -82.039801790096888, 28.823411448947763 ], [ -82.039726329022344, 28.823294828410795 ], [ -82.039676022247733, 28.823219367510809 ], [ -82.039614282308619, 28.823139333374154 ], [ -82.038594425388766, 28.822224657692626 ], [ -82.038546405748832, 28.822174350283479 ], [ -82.038528111921011, 28.822121758013623 ], [ -82.038534973415025, 28.822002850723131 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Theodore Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038137090715963, 28.821977695077479 ], [ -82.038534973415025, 28.822002850723131 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Theodore Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038534973415025, 28.822002850723131 ], [ -82.038621866137618, 28.821991417573265 ], [ -82.038747634564913, 28.821973124902815 ], [ -82.038836816089258, 28.821950258715823 ], [ -82.038912276480843, 28.821911385780464 ], [ -82.038985450472737, 28.821865652293301 ], [ -82.039099784458656, 28.821792479591256 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Theodore Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039099784458656, 28.821792479591256 ], [ -82.039369615034786, 28.821563814399699 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Noah Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041934879948002, 28.825585435239663 ], [ -82.041865353310868, 28.825434214215001 ], [ -82.04178018216939, 28.825270823963351 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Noah Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04178018216939, 28.825270823963351 ], [ -82.041592458634767, 28.825039645424724 ], [ -82.041489906485808, 28.824933614576135 ], [ -82.041363019112012, 28.82481541883244 ], [ -82.041227441518728, 28.824700697657136 ], [ -82.04109533858508, 28.824612050216576 ], [ -82.040985833760772, 28.824539045548153 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Noah Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040985833760772, 28.824539045548153 ], [ -82.040548917215162, 28.824353409637904 ], [ -82.040483261839952, 28.824337511360795 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Randi Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040985833760772, 28.824539045548153 ], [ -82.041027057361404, 28.824483764143082 ], [ -82.04108931086418, 28.824414397719099 ], [ -82.041190694343882, 28.824329024319972 ], [ -82.041468164791041, 28.824106694149133 ], [ -82.041597585055371, 28.824015713153806 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Randi Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041597585055371, 28.824015713153806 ], [ -82.041886950337187, 28.823797945098278 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shontelle Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042429190919393, 28.824767624167421 ], [ -82.041597585055371, 28.824015713153806 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Keith Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04178018216939, 28.825270823963351 ], [ -82.041871049628071, 28.825230668839627 ], [ -82.041935497402349, 28.82518883530701 ], [ -82.042033865318572, 28.825110820530028 ], [ -82.042154847083665, 28.825013584084481 ], [ -82.042429190919393, 28.824767624167421 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Keith Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042429190919393, 28.824767624167421 ], [ -82.042702092327829, 28.824533056682533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043099894397827, 28.822774367171402 ], [ -82.042966918776528, 28.822810460581913 ], [ -82.042814947184496, 28.822859849889447 ], [ -82.042623082488916, 28.822924436363799 ], [ -82.042419820565357, 28.823006119421755 ], [ -82.042229854359405, 28.82308970195859 ], [ -82.042037990495032, 28.823178984692515 ], [ -82.041874620622039, 28.823268266593555 ], [ -82.041684655230682, 28.8233822435325 ], [ -82.041494690261047, 28.823511417788175 ], [ -82.041329421401542, 28.823631093868183 ], [ -82.041180924872393, 28.82373976016385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043933840739172, 28.822574911014677 ], [ -82.043529213749281, 28.822671789942106 ], [ -82.043099894397827, 28.822774367171402 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045553448075026, 28.821529200855192 ], [ -82.045548027879292, 28.822473382201814 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045548027879292, 28.822473382201814 ], [ -82.04423167210733, 28.822480782177344 ], [ -82.044156216482193, 28.822483139838141 ], [ -82.044087834603161, 28.822490213357938 ], [ -82.044038316485228, 28.822504361210555 ], [ -82.043991155869307, 28.822523224657605 ], [ -82.043933840739172, 28.822574911014677 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045548027879292, 28.822473382201814 ], [ -82.045547268282434, 28.8226057475365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043933840739172, 28.822574911014677 ], [ -82.043965217815426, 28.822593964047904 ], [ -82.044005304147319, 28.822601037938426 ], [ -82.044050105696044, 28.822608112108785 ], [ -82.044439176239123, 28.822605756206599 ], [ -82.045547268282434, 28.8226057475365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hayward Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0439821137754, 28.824102862340069 ], [ -82.044104335301441, 28.823924232801403 ], [ -82.044109036716122, 28.823844319233192 ], [ -82.044085532251131, 28.823783209813048 ], [ -82.044032157126068, 28.823729021656277 ], [ -82.043275805893018, 28.823046458092438 ], [ -82.043209394689086, 28.822972667443551 ], [ -82.043170655457928, 28.822909944807403 ], [ -82.043128224968157, 28.822837999016318 ], [ -82.043099894397827, 28.822774367171402 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hayward Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043099894397827, 28.822774367171402 ], [ -82.043058124773424, 28.822699642940542 ], [ -82.043019385626579, 28.822596335311459 ], [ -82.042934527949782, 28.822242140690989 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hayward Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042934527949782, 28.822242140690989 ], [ -82.042679953721645, 28.821317916447409 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hayward Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042679953721645, 28.821317916447409 ], [ -82.042478877513275, 28.820731283016759 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hayward Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042478877513275, 28.820731283016759 ], [ -82.042454896141905, 28.820664872362418 ], [ -82.042412465744277, 28.820594771541145 ], [ -82.042323918272515, 28.820463792590449 ], [ -82.042229835992003, 28.820347572544911 ], [ -82.042104392911725, 28.820216593950079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hayward Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042104392911725, 28.820216593950079 ], [ -82.041550964398539, 28.819720351577747 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hayward Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041550964398539, 28.819720351577747 ], [ -82.040816751397088, 28.819065458902973 ], [ -82.04072820288313, 28.81896584223788 ], [ -82.040645189623206, 28.818869914322196 ], [ -82.04054188314295, 28.818731555826513 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hayward Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04054188314295, 28.818731555826513 ], [ -82.040484696046391, 28.818637474438436 ], [ -82.040433043088626, 28.818517564596632 ], [ -82.040377700122832, 28.818366293345953 ], [ -82.0403444950514, 28.818226092328018 ], [ -82.040327893471229, 28.818130164560607 ], [ -82.040322606925102, 28.818012210806767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nisbet Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042934527949782, 28.822242140690989 ], [ -82.042805750395431, 28.822267297551154 ], [ -82.042576481058035, 28.822330071145068 ], [ -82.042535540253496, 28.822332800679387 ], [ -82.042491869632627, 28.822324612206508 ], [ -82.042448199621617, 28.82230004681406 ], [ -82.041989661881786, 28.821885177966671 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nisbet Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041989661881786, 28.821885177966671 ], [ -82.041517477871253, 28.821451203453368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nisbet Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041517477871253, 28.821451203453368 ], [ -82.041116258514421, 28.821099109538242 ], [ -82.041091693618611, 28.821063628166776 ], [ -82.041086235200808, 28.821028145593441 ], [ -82.04108623474977, 28.820992664095574 ], [ -82.041102612279047, 28.82095718131114 ], [ -82.041247270451336, 28.820826171435961 ], [ -82.041539317290074, 28.820566882582018 ], [ -82.041659410983712, 28.8204850013881 ], [ -82.041804069473756, 28.820386743827985 ], [ -82.041932352319336, 28.820310321575946 ], [ -82.042104392911725, 28.820216593950079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wightman Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041989661881786, 28.821885177966671 ], [ -82.042516301557512, 28.821410055037543 ], [ -82.042561110271947, 28.821382961969675 ], [ -82.042679953721645, 28.821317916447409 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parris Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041517477871253, 28.821451203453368 ], [ -82.041681437941264, 28.82129296733541 ], [ -82.041958795681325, 28.821046988396027 ], [ -82.042143282803082, 28.820913959564944 ], [ -82.042277567543792, 28.820831130559505 ], [ -82.042367928957034, 28.820785950280644 ], [ -82.042478877513275, 28.820731283016759 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wightman Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042679953721645, 28.821317916447409 ], [ -82.042746938953783, 28.82127665829633 ], [ -82.042849850690317, 28.821239008973745 ], [ -82.042957780252252, 28.821207634464677 ], [ -82.043108382240575, 28.821175005808804 ], [ -82.043284082920877, 28.821156180720934 ], [ -82.04345978360233, 28.821162456737515 ], [ -82.043630465436763, 28.821185048768214 ], [ -82.043766007160059, 28.821220189369949 ], [ -82.043807421482271, 28.821221444810561 ], [ -82.043845071946237, 28.821216424979241 ], [ -82.043870172161277, 28.821198854420977 ], [ -82.043885232411867, 28.821176264815524 ], [ -82.043915352372167, 28.821129829585459 ], [ -82.043996929257489, 28.820977974647818 ], [ -82.044075994675254, 28.820828630687835 ], [ -82.044133725775893, 28.820708150282439 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wightman Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044133725775893, 28.820708150282439 ], [ -82.044429909404826, 28.820148421934054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wightman Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044429909404826, 28.820148421934054 ], [ -82.044581179454383, 28.819875033695372 ], [ -82.044636841928366, 28.819769276710048 ], [ -82.044651684624299, 28.819700626911594 ], [ -82.044646119105522, 28.819630122285428 ], [ -82.044623854230906, 28.819574460658941 ], [ -82.044558916132885, 28.819533641433537 ], [ -82.044466146022714, 28.819513230598837 ], [ -82.044189690407222, 28.819459423118928 ], [ -82.043976320111497, 28.81941118108044 ], [ -82.043787068867076, 28.819381494223158 ], [ -82.043592251752059, 28.819355517357621 ], [ -82.043454950616891, 28.819346240011448 ], [ -82.043278688201212, 28.819344383667367 ], [ -82.043089436797757, 28.819346237854127 ], [ -82.04289276382606, 28.819359224076965 ], [ -82.042655272760356, 28.819394476343497 ], [ -82.042473442475981, 28.819435292683838 ], [ -82.042235951215872, 28.819496519890496 ], [ -82.04197619373582, 28.819570734101898 ], [ -82.041760967131069, 28.819630105741684 ], [ -82.041647787226182, 28.819672778702461 ], [ -82.041550964398539, 28.819720351577747 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Parris Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042478877513275, 28.820731283016759 ], [ -82.042584955258206, 28.82068975749791 ], [ -82.042750961626254, 28.820642965430761 ], [ -82.042963764762106, 28.82060174382444 ], [ -82.043183250831788, 28.82057500545136 ], [ -82.043403850191282, 28.820564978937771 ], [ -82.043624452125357, 28.820586149397915 ], [ -82.043847280316328, 28.820624031354196 ], [ -82.044133725775893, 28.820708150282439 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nisbet Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042104392911725, 28.820216593950079 ], [ -82.042260081048127, 28.820161575684097 ], [ -82.042461663171366, 28.820086916937946 ], [ -82.042648313614194, 28.820042121740052 ], [ -82.042866320594342, 28.81999882065308 ], [ -82.043093287232153, 28.819970452326743 ], [ -82.043297854857784, 28.819962987258471 ], [ -82.043512875977285, 28.81996746694616 ], [ -82.04372341872255, 28.819986880030687 ], [ -82.043930972508363, 28.820022718475457 ], [ -82.04415196650028, 28.820074981523476 ], [ -82.044429909404826, 28.820148421934054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Luty Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041020089967816, 28.820205586998597 ], [ -82.041299084345241, 28.819966623441491 ], [ -82.041399756482846, 28.819876219679184 ], [ -82.041460026749576, 28.819817937606778 ], [ -82.041504732736627, 28.819772900692371 ], [ -82.041550964398539, 28.819720351577747 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Luty Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040550968292919, 28.820618540688361 ], [ -82.041020089967816, 28.820205586998597 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Luty Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040332926419055, 28.820810150590336 ], [ -82.040550968292919, 28.820618540688361 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Monica Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041020089967816, 28.820205586998597 ], [ -82.040323020604006, 28.819561372963307 ], [ -82.040286681553354, 28.819538248402957 ], [ -82.040240429468881, 28.819525033186441 ], [ -82.039599519515775, 28.819521725425787 ], [ -82.039543357921772, 28.819541546363762 ], [ -82.039497105552513, 28.819571279008336 ], [ -82.03944424775159, 28.819617530301485 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramsell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040550968292919, 28.820618540688361 ], [ -82.03944424775159, 28.819617530301485 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ramsell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03944424775159, 28.819617530301485 ], [ -82.039041202378328, 28.819257431641812 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clara Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038746116304821, 28.818923218440499 ], [ -82.039725232537236, 28.818927039388708 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clara Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039725232537236, 28.818927039388708 ], [ -82.040030109003837, 28.818932138394697 ], [ -82.040096207850269, 28.818926959739947 ], [ -82.040137889265722, 28.818919066814747 ], [ -82.040199547802317, 28.818903529089244 ], [ -82.040286117621534, 28.818871960832709 ], [ -82.040445199493504, 28.818799204256123 ], [ -82.040498719636162, 28.81876714118664 ], [ -82.04054188314295, 28.818731555826513 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Krilov Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039725232537236, 28.818927039388708 ], [ -82.039728522472373, 28.818828868987008 ], [ -82.039728522061154, 28.818759490420984 ], [ -82.039714647044732, 28.818692886851824 ], [ -82.039611966755757, 28.818332117212286 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Krilov Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039611966755757, 28.818332117212286 ], [ -82.039595317321073, 28.818035177382274 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Diane Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038556994880082, 28.819221236641596 ], [ -82.038730085709176, 28.819071036561663 ], [ -82.038748891480282, 28.819031448763237 ], [ -82.038754441701059, 28.818987046362594 ], [ -82.038746116304821, 28.818923218440499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arroyo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038746116304821, 28.818923218440499 ], [ -82.038204962773278, 28.818456991213026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arroyo Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038204962773278, 28.818456991213026 ], [ -82.037813668218874, 28.818104546153073 ], [ -82.037780366561975, 28.818062919122923 ], [ -82.037763716010048, 28.818021291129206 ], [ -82.037762281123548, 28.817991112879184 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Davis Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038204962773278, 28.818456991213026 ], [ -82.038235489929107, 28.818409814514304 ], [ -82.038268792521009, 28.818370962646235 ], [ -82.03831319505197, 28.818345986103196 ], [ -82.038377024140203, 28.818332110659128 ], [ -82.039611966755757, 28.818332117212286 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039411989882367, 28.827699681060214 ], [ -82.03937143749414, 28.827796650199637 ], [ -82.03928324244049, 28.827950637161891 ], [ -82.039221375351602, 28.828045814942076 ], [ -82.039169027164235, 28.828107680375769 ], [ -82.0390833665071, 28.828183822554962 ], [ -82.039073512167519, 28.828191522945342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038745254582196, 28.828401265284672 ], [ -82.038676526890526, 28.828432566744429 ], [ -82.038615588338146, 28.828457513734019 ], [ -82.038562626032828, 28.828474949452598 ], [ -82.038480565434952, 28.828497925343314 ], [ -82.038408352295107, 28.828511055156561 ], [ -82.03833613973093, 28.828525825327084 ], [ -82.038260643225414, 28.828532389880241 ], [ -82.038167094118734, 28.82853567138924 ], [ -82.036674199466773, 28.828526598489287 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ely Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033564108830674, 28.827469814391119 ], [ -82.033547641537439, 28.827462784000204 ], [ -82.033487678273829, 28.827453558928536 ], [ -82.03333315604705, 28.827423575640037 ], [ -82.033190165477365, 28.827384367810609 ], [ -82.033040256081918, 28.827333629082631 ], [ -82.032934166964338, 28.827266746466773 ], [ -82.032846526537384, 28.827186025186645 ], [ -82.03275658178579, 28.827075322492455 ], [ -82.032465988887225, 28.826650963295453 ], [ -82.032383098311996, 28.826522488620405 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak Hammock Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987715088170688, 28.920087224310059 ], [ -81.987723628921898, 28.921449460625528 ], [ -81.987720766662122, 28.921719070072371 ], [ -81.987818559948863, 28.922156569096284 ], [ -81.987823706135899, 28.922371029110408 ], [ -81.987790249814182, 28.922582080307684 ], [ -81.987654031169328, 28.923067367629162 ], [ -81.987581226423785, 28.923396153882916 ], [ -81.987663419730467, 28.924495241834443 ], [ -81.987724480579658, 28.924633801329055 ], [ -81.987893571166907, 28.924835771403526 ], [ -81.987893569968605, 28.924974331547656 ], [ -81.987776142749738, 28.925495692507788 ], [ -81.987820764790769, 28.925702358405978 ], [ -81.987931141646456, 28.925897282389528 ], [ -81.987956975412956, 28.926099250974442 ], [ -81.987908172882044, 28.926678912778154 ], [ -81.987811365932103, 28.926895384463389 ], [ -81.987578142620478, 28.927148106631932 ], [ -81.987527197000034, 28.927369775992638 ], [ -81.987534402084691, 28.927661041232394 ], [ -81.987607044794174, 28.927877046715292 ], [ -81.987633807220817, 28.928082521709023 ], [ -81.987586090776105, 28.92828928544359 ], [ -81.987571814564674, 28.928551059817732 ], [ -81.987574161326577, 28.928909577123203 ], [ -81.987605741480806, 28.929173155839941 ], [ -81.987687130737214, 28.929307868864068 ], [ -81.987789100561855, 28.929445388064746 ], [ -81.98782466172247, 28.929557702713677 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jumper Drive North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113311080461145, 28.679005026404042 ], [ -82.115584442072262, 28.679014287399898 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040689668485427, 28.847444131707388 ], [ -82.040641000159823, 28.847445337171248 ], [ -82.040124728614018, 28.847476384003798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041325031669956, 28.847384429374873 ], [ -82.041020029278073, 28.847432131044361 ], [ -82.040689668485427, 28.847444131707388 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 48th Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023227382791035, 28.935270916070682 ], [ -82.023234629101552, 28.935517948517436 ], [ -82.023234627812045, 28.935779183382579 ], [ -82.023234626709268, 28.936074073801603 ], [ -82.023236227451022, 28.936372168885342 ], [ -82.023237829338072, 28.936628595122791 ], [ -82.023241033056877, 28.93706612227707 ], [ -82.023242635614054, 28.937133434026514 ], [ -82.023266675042777, 28.937173500833968 ], [ -82.02330674207343, 28.937207156834269 ], [ -82.023340398226409, 28.937221581517392 ], [ -82.023592016981056, 28.937227992733678 ], [ -82.023782734357823, 28.937229596671401 ], [ -82.023848442921249, 28.937227993653917 ], [ -82.023904537746361, 28.93720074908564 ], [ -82.023936590300963, 28.937176710016669 ], [ -82.023949412337018, 28.937133436482657 ], [ -82.023954220829282, 28.936933104767174 ], [ -82.023952619648924, 28.936683088448664 ], [ -82.023955825838215, 28.936336912922311 ], [ -82.023949417581818, 28.936011572116335 ], [ -82.023945463434998, 28.935661498989234 ], [ -82.023946849808638, 28.935273494278061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bellwether Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028755235046901, 28.932235195193577 ], [ -82.028674874408225, 28.932235139833953 ], [ -82.028294781776879, 28.932235218758368 ], [ -82.027490361844571, 28.932233941289397 ], [ -82.024523491294559, 28.932218431973357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Mccollum Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112704361411943, 28.664173917848849 ], [ -82.113324765969196, 28.664172681329035 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spring Flow Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.081004142765522, 28.867933915928784 ], [ -82.08134859168949, 28.867676131906293 ], [ -82.08199487035715, 28.867248287964959 ], [ -82.082305625248765, 28.867018603248589 ], [ -82.082494781555155, 28.866761896448125 ], [ -82.082564590144955, 28.866484922237856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Catherine Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965281357522144, 28.79304823035736 ], [ -81.965281358140302, 28.792724582309784 ], [ -81.965349496436261, 28.792460554119746 ], [ -81.965472724785798, 28.792233336372522 ], [ -81.965655494563023, 28.79196868139335 ], [ -81.965933766876276, 28.79166181849109 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nancy Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966333729384502, 28.793579460426219 ], [ -81.966705220315092, 28.793386658164184 ], [ -81.966896268049823, 28.793210309388659 ], [ -81.9673187749665, 28.792649131416113 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Saul Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.964488649001368, 28.790757187769842 ], [ -81.964783513165429, 28.790915150281453 ], [ -81.965094173431197, 28.79108364263454 ], [ -81.965399567750623, 28.79125213472031 ], [ -81.965665259446482, 28.791435156768486 ], [ -81.965831246275044, 28.79156906173964 ], [ -81.965933766876276, 28.79166181849109 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Catherine Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965933766876276, 28.79166181849109 ], [ -81.966486826864625, 28.791204312106444 ], [ -81.966555175037044, 28.791087145655673 ], [ -81.966561452044047, 28.790930924256713 ], [ -81.966504262981644, 28.790802600138672 ], [ -81.966384305806912, 28.790701474104061 ], [ -81.965842408158252, 28.790441336860297 ], [ -81.965579479910204, 28.790354857085738 ], [ -81.965308181457686, 28.790333236554389 ], [ -81.965074168499811, 28.790338363420474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 472", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028825329984898, 28.909143764385355 ], [ -82.026839455411206, 28.90911714512994 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Warfield Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034507430634093, 28.864719854464312 ], [ -82.034526548663095, 28.865472605176723 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Connor Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043360577179811, 28.797637297947809 ], [ -82.043561037785153, 28.797919152101336 ], [ -82.043586307684905, 28.797971373527961 ], [ -82.043602309736229, 28.798054759234322 ], [ -82.043605675814703, 28.798811128420152 ], [ -82.043628417860788, 28.798870930955474 ], [ -82.043666320038156, 28.79889956823369 ], [ -82.043729491007483, 28.798924837259442 ], [ -82.044389843073134, 28.799075609533084 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tharp Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02387693867982, 28.833971119947382 ], [ -82.023970576031672, 28.833926557823919 ], [ -82.024078512006881, 28.833867898214073 ], [ -82.024207568278314, 28.833764655433026 ], [ -82.024376511957101, 28.833647334054199 ], [ -82.024636967591704, 28.833515935616759 ], [ -82.024866920526961, 28.833443196645764 ], [ -82.025108604220819, 28.833384537479247 ], [ -82.025366713859583, 28.833361074805623 ], [ -82.025730412438662, 28.833351690670426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Connor Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044389843073134, 28.799075609533084 ], [ -82.044672009436454, 28.799142152069049 ], [ -82.044705700422341, 28.799148048553143 ], [ -82.044744444592069, 28.799151417813246 ], [ -82.045211914692771, 28.799149735433957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Connor Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045211914692771, 28.799149735433957 ], [ -82.045290246316227, 28.799149735811824 ], [ -82.045401427957671, 28.79915563182993 ], [ -82.045513452669809, 28.799161529281886 ], [ -82.045628003921578, 28.799170794132174 ], [ -82.045777087989535, 28.799187641242437 ], [ -82.045884900164509, 28.799204487539001 ], [ -82.046005347344391, 28.799222176790348 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Connor Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046005347344391, 28.799222176790348 ], [ -82.046055042345102, 28.799233126840555 ], [ -82.04611652956153, 28.799243233764972 ], [ -82.046397852241071, 28.799244077452432 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wiggins Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044389843073134, 28.799075609533084 ], [ -82.044405550816421, 28.79896091700838 ], [ -82.044409469902476, 28.798254712263123 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Millican Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045211914692771, 28.799149735433957 ], [ -82.045208361442064, 28.798222082335041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cottrell Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046005347344391, 28.799222176790348 ], [ -82.046020306338576, 28.798223392798572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arthur Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044003497728383, 28.798259930910291 ], [ -82.044409469902476, 28.798254712263123 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arthur Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044409469902476, 28.798254712263123 ], [ -82.045208361442064, 28.798222082335041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arthur Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045208361442064, 28.798222082335041 ], [ -82.046020306338576, 28.798223392798572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arthur Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046020306338576, 28.798223392798572 ], [ -82.046401475955179, 28.798219478503203 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Galloway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994828979418543, 28.801499440014307 ], [ -81.994828997692835, 28.801560457079379 ], [ -81.994820376059579, 28.801604471533995 ], [ -81.994791789373409, 28.801638955879806 ], [ -81.994758665185202, 28.801662097071301 ], [ -81.994718735259767, 28.801677977977384 ], [ -81.994682436044314, 28.801689321289764 ], [ -81.994636606748898, 28.801702026696447 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Galloway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994636606748898, 28.801702026696447 ], [ -81.994588055088073, 28.80170565651899 ], [ -81.994540864978816, 28.801707017967402 ], [ -81.99448550665646, 28.801702026779669 ], [ -81.99443287142779, 28.801692951818836 ], [ -81.994386135755491, 28.801683422323208 ], [ -81.994339852850288, 28.801674347596212 ], [ -81.994308955119493, 28.801670422111432 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Galloway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994308955119493, 28.801670422111432 ], [ -81.994313932766261, 28.801686601687358 ], [ -81.994331356664432, 28.801706515566373 ], [ -81.994356187848169, 28.801729251290556 ], [ -81.994383866245713, 28.801745132265051 ], [ -81.994414721577897, 28.801756476542291 ], [ -81.994450114117868, 28.801765550785785 ], [ -81.994492312938533, 28.80177190302831 ], [ -81.994531790006292, 28.801776895360216 ], [ -81.994587146623005, 28.801776441074352 ], [ -81.994648683729508, 28.801770914217364 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Galloway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994648683729508, 28.801770914217364 ], [ -81.994705576752224, 28.801755115222967 ], [ -81.994755488641431, 28.801736057677211 ], [ -81.994797234184574, 28.80171337069066 ], [ -81.994829190426344, 28.801692824494136 ], [ -81.994855326741884, 28.801677889542759 ], [ -81.994877728587838, 28.801672912359329 ], [ -81.994903865394591, 28.801667934414507 ], [ -81.994938713567663, 28.80166544537715 ], [ -81.9950070305499, 28.801670520786509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Galloway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994636606748898, 28.801702026696447 ], [ -81.994648683729508, 28.801770914217364 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Galloway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99220617279704, 28.80037373733246 ], [ -81.992418852703707, 28.80033796483719 ], [ -81.992768900243618, 28.800294210491217 ], [ -81.99307230723754, 28.800264361953957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Galloway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99307230723754, 28.800264361953957 ], [ -81.993445831807563, 28.800241445983804 ], [ -81.993812608897485, 28.800229864416156 ], [ -81.993869210290555, 28.800246924367439 ], [ -81.993919497884434, 28.800272472960298 ], [ -81.993934457943638, 28.80032370153501 ], [ -81.993931113340778, 28.801088160299795 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Galloway Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993931113340778, 28.801088160299795 ], [ -81.993996023632008, 28.801246926023197 ], [ -81.994079352724128, 28.801440778050228 ], [ -81.994140753584674, 28.801535510947069 ], [ -81.994203033254294, 28.801599543580206 ], [ -81.994308955119493, 28.801670422111432 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whalin Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988616567892876, 28.802341128820313 ], [ -81.989027053079695, 28.802385598467691 ], [ -81.989269924641746, 28.802385598372364 ], [ -81.989509375513151, 28.802347972056179 ], [ -81.989755667577498, 28.802286399378087 ], [ -81.98998485621081, 28.802211144108487 ], [ -81.990224307273422, 28.802111944543391 ], [ -81.990422709711297, 28.802016164076946 ], [ -81.99059655529561, 28.801904195006525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whalin Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99059655529561, 28.801904195006525 ], [ -81.990715868528142, 28.801814711149049 ], [ -81.990828079063675, 28.801728779099061 ], [ -81.990938159303937, 28.801635743807434 ], [ -81.991031955856755, 28.801550239831265 ], [ -81.99117562688464, 28.801444197966507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whalin Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99117562688464, 28.801444197966507 ], [ -81.991370607908863, 28.801334736815182 ], [ -81.991569010008874, 28.801225274694996 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whalin Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991569010008874, 28.801225274694996 ], [ -81.991924764757968, 28.801091868250168 ], [ -81.992321569432391, 28.800927675445056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whalin Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992321569432391, 28.800927675445056 ], [ -81.992389984314997, 28.800903730209548 ], [ -81.992506288231411, 28.800883206513429 ], [ -81.992639696127441, 28.800866102528627 ], [ -81.992749160114727, 28.800859261810746 ], [ -81.992885988965938, 28.800862682669177 ], [ -81.993015976212632, 28.800876365027285 ], [ -81.993108335743813, 28.800886628251597 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Whalin Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993108335743813, 28.800886628251597 ], [ -81.993279370751594, 28.800941359576754 ], [ -81.993539344942619, 28.801009773208808 ], [ -81.993795899449822, 28.801071345749403 ], [ -81.993931113340778, 28.801088160299795 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Guilliams Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993108335743813, 28.800886628251597 ], [ -81.99307230723754, 28.800264361953957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Guice Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992321569432391, 28.800927675445056 ], [ -81.99220617279704, 28.80037373733246 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Guice Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99220617279704, 28.80037373733246 ], [ -81.992135523228001, 28.800043411914466 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lacroix Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991569010008874, 28.801225274694996 ], [ -81.991347380969827, 28.800547748389562 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lacroix Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991347380969827, 28.800547748389562 ], [ -81.991244804120271, 28.800226339793223 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Staley Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99117562688464, 28.801444197966507 ], [ -81.991142221354934, 28.801373493262027 ], [ -81.991111448598161, 28.801325624444402 ], [ -81.991094352620905, 28.801265787362567 ], [ -81.991072127061415, 28.801164919987819 ], [ -81.991058450754238, 28.801091406781293 ], [ -81.991025968929478, 28.800980281219999 ], [ -81.990967840535504, 28.800822996121706 ], [ -81.990913133624773, 28.800667421110401 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kirkland Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990514789189447, 28.800787094091366 ], [ -81.990913133624773, 28.800667421110401 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kirkland Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990913133624773, 28.800667421110401 ], [ -81.991347380969827, 28.800547748389562 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boaz Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990160633064718, 28.800875351550413 ], [ -81.990044959299837, 28.800609303371857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boaz Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990353971446922, 28.801414057879494 ], [ -81.990342403992287, 28.801306646687262 ], [ -81.990324227697329, 28.801225676372813 ], [ -81.990286220277113, 28.801111655616719 ], [ -81.990243256988691, 28.801007549093296 ], [ -81.990193681934059, 28.800918314882903 ], [ -81.990160633064718, 28.800875351550413 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boaz Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99059655529561, 28.801904195006525 ], [ -81.990524119061746, 28.801792230067306 ], [ -81.990489721779269, 28.801737263264926 ], [ -81.990460908927716, 28.801689008251994 ], [ -81.990413460156489, 28.801587567802919 ], [ -81.99038371561943, 28.801513206104211 ], [ -81.990365538937198, 28.80145702231637 ], [ -81.990353971446922, 28.801414057879494 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Erika Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990160633064718, 28.800875351550413 ], [ -81.990001992635143, 28.800926577550907 ], [ -81.989856574423015, 28.80098276167536 ], [ -81.989719417624798, 28.801040598413849 ], [ -81.989567388176013, 28.801111654530011 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Erika Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989567388176013, 28.801111654530011 ], [ -81.989266634764817, 28.801240546734544 ], [ -81.989060072742788, 28.801333085543465 ], [ -81.988865078764036, 28.801417360722361 ], [ -81.988818809951482, 28.801443800920119 ], [ -81.988794022563269, 28.801471892334124 ], [ -81.988779149107273, 28.801501637613388 ], [ -81.98877253891915, 28.801536339085253 ], [ -81.98877088700155, 28.801569388840115 ], [ -81.988775843557178, 28.801592522738908 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Erika Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988775843557178, 28.801592522738908 ], [ -81.988794022111989, 28.801605743141149 ], [ -81.988825418978038, 28.801623920147264 ], [ -81.988861773288932, 28.801638793292401 ], [ -81.98889812863473, 28.801653664623185 ], [ -81.988929525411137, 28.80166358003396 ], [ -81.98897579474054, 28.801680105201914 ], [ -81.989017106524059, 28.801691671740201 ], [ -81.989056767161514, 28.801701586899007 ], [ -81.989107993957603, 28.801714807258325 ], [ -81.989180702802571, 28.80172472236772 ], [ -81.989264979720502, 28.801729679261268 ], [ -81.989347604133116, 28.801726374399294 ], [ -81.98942857670022, 28.801718112052342 ], [ -81.989519463063459, 28.801703239194424 ], [ -81.989583911677357, 28.801688367821981 ], [ -81.989651663954021, 28.801663581165766 ], [ -81.989735940607332, 28.80163053056831 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Erika Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989735940607332, 28.80163053056831 ], [ -81.989978856773121, 28.801524773690559 ], [ -81.990054871438929, 28.801491724076428 ], [ -81.990129232355173, 28.801461979466715 ], [ -81.990175502471047, 28.801450412535718 ], [ -81.990243255384769, 28.801437192322943 ], [ -81.990353971446922, 28.801414057879494 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Todd Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989735940607332, 28.80163053056831 ], [ -81.989712805210758, 28.801513205632101 ], [ -81.989681409280905, 28.801384313309583 ], [ -81.989633487362028, 28.801260376997377 ], [ -81.989567388176013, 28.801111654530011 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ashton Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988325856157104, 28.801605839269815 ], [ -81.988651907167409, 28.801605742863963 ], [ -81.988775843557178, 28.801592522738908 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burgess Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028620502707412, 28.831214549630609 ], [ -82.028631116760764, 28.831048565190049 ], [ -82.028645022410146, 28.830838268622994 ], [ -82.028650236738045, 28.830666208244509 ], [ -82.028643286174585, 28.830475504183564 ], [ -82.028632858419243, 28.830313396781509 ], [ -82.028603313788594, 28.83009962355673 ], [ -82.028578981818825, 28.829924087254362 ], [ -82.028559864219702, 28.829778095043853 ], [ -82.028533795693349, 28.829637317795811 ], [ -82.028499036658175, 28.829510445091614 ], [ -82.028446897207459, 28.829406165230711 ], [ -82.02837042577481, 28.829296671382771 ], [ -82.028292215710138, 28.829202819356624 ], [ -82.028218528627292, 28.829116590866583 ], [ -82.028105991624614, 28.829026750160047 ], [ -82.028018988876198, 28.828973792362046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burgess Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028533091271242, 28.831826407287309 ], [ -82.028561288201274, 28.831691065226156 ], [ -82.028589485671262, 28.831527527840606 ], [ -82.028609223775703, 28.831358350964585 ], [ -82.028620502707412, 28.831214549630609 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powhite Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027427796842062, 28.831093299625831 ], [ -82.027512385318985, 28.831124315940475 ], [ -82.027580056753067, 28.831141234300784 ], [ -82.028183460114931, 28.831175072150007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powhite Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028183460114931, 28.831175072150007 ], [ -82.028620502707412, 28.831214549630609 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Malvern Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028183460114931, 28.831175072150007 ], [ -82.028197216852149, 28.831106860286141 ], [ -82.028211535420141, 28.830927896323097 ], [ -82.028215115468683, 28.830765041640902 ], [ -82.028215116228424, 28.830605764432605 ], [ -82.02820437884624, 28.830448276879299 ], [ -82.028184693760991, 28.83025499748479 ], [ -82.028161429487895, 28.830065297363049 ], [ -82.028125636455158, 28.829789693729335 ], [ -82.028102034268983, 28.829611685761044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mccloy Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027278354935419, 28.831476767562705 ], [ -82.027427796842062, 28.831093299625831 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mccloy Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027427796842062, 28.831093299625831 ], [ -82.027481370119716, 28.830929761942869 ], [ -82.027501438952569, 28.830856172944301 ], [ -82.027509202166598, 28.830777839342307 ], [ -82.027508497934605, 28.830689626244745 ], [ -82.027495682697847, 28.830473327513324 ], [ -82.027475997590514, 28.830290785479164 ], [ -82.027450942799049, 28.830106454321175 ], [ -82.02742946794001, 28.829916753711963 ], [ -82.027407993726982, 28.829796848430767 ], [ -82.027395154262265, 28.829723930938112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dill Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027059783811765, 28.829917214334561 ], [ -82.027395154262265, 28.829723930938112 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dill Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027395154262265, 28.829723930938112 ], [ -82.027453015359939, 28.829684332529599 ], [ -82.027513146424283, 28.829646155683275 ], [ -82.027571368347168, 28.829623249852499 ], [ -82.027641041879477, 28.82960797794734 ], [ -82.027708808145036, 28.829603206547151 ], [ -82.027814751216852, 28.829605116267018 ], [ -82.027981778909563, 28.829607026215449 ], [ -82.028102034268983, 28.829611685761044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dill Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028102034268983, 28.829611685761044 ], [ -82.02841509810807, 28.829603210587983 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burgess Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028410670740215, 28.832812653024597 ], [ -82.028423309439845, 28.832406680535758 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burgess Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028423309439845, 28.832406680535758 ], [ -82.02844226607489, 28.832275569523169 ], [ -82.028469120803365, 28.832120763182086 ], [ -82.028495976013019, 28.831983333475723 ], [ -82.028533091271242, 28.831826407287309 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cowardin Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026282984613559, 28.833246648761985 ], [ -82.026186100573554, 28.832920762563393 ], [ -82.026172008102975, 28.832846777793566 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cowardin Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026172008102975, 28.832846777793566 ], [ -82.026133255297225, 28.832556121996454 ], [ -82.026108594319666, 28.832411675284192 ], [ -82.026085694706225, 28.832304220145943 ], [ -82.026057509819111, 28.832217904359212 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Osborne Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026172008102975, 28.832846777793566 ], [ -82.026251384067322, 28.832832597473256 ], [ -82.026348819146079, 28.832809398721945 ], [ -82.026472546827065, 28.832769188190234 ], [ -82.026596273504708, 28.832721245670307 ], [ -82.026693708621394, 28.832682581115368 ], [ -82.026788050490381, 28.832645463642887 ], [ -82.02688239258849, 28.83261762633942 ], [ -82.026993745976995, 28.832578962478323 ], [ -82.027095821197136, 28.832546484755952 ], [ -82.027230374301908, 28.832518646563852 ], [ -82.027388350717246, 28.832482187474966 ], [ -82.027547424532727, 28.832445959876097 ], [ -82.02766496552249, 28.832430494367859 ], [ -82.02777477306428, 28.832422762182681 ], [ -82.027910871845251, 28.832413483472713 ], [ -82.028033052141424, 28.832411937513164 ], [ -82.028176886523056, 28.832407298440366 ], [ -82.02829597366123, 28.832407298525094 ], [ -82.028423309439845, 28.832406680535758 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chimborazo Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025344290784389, 28.831064772269862 ], [ -82.025060613647312, 28.830526001461937 ], [ -82.025051816697314, 28.830486417891091 ], [ -82.025054016072701, 28.83044463612007 ], [ -82.025060614373345, 28.830398455706245 ], [ -82.025084803792865, 28.83035007680278 ], [ -82.025113391629603, 28.830308294776724 ], [ -82.025141979457175, 28.830270910593995 ], [ -82.025179363641698, 28.83024892089459 ], [ -82.025225545166677, 28.830229129415404 ], [ -82.025887465157112, 28.830015824729937 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chimborazo Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025887465157112, 28.830015824729937 ], [ -82.026241290196864, 28.829913282276085 ], [ -82.026283072642045, 28.829906685717663 ], [ -82.026335850963122, 28.82990888456462 ], [ -82.026386428836389, 28.829913282734104 ], [ -82.02643260991438, 28.829922080474066 ], [ -82.026485386954562, 28.829939672639011 ], [ -82.026535965758413, 28.829968260730055 ], [ -82.026577746823037, 28.830001246532291 ], [ -82.026610733068807, 28.830029834353994 ], [ -82.026637121689959, 28.830071616982973 ], [ -82.026663510409662, 28.830117797456033 ], [ -82.026687699255007, 28.830168375293937 ], [ -82.026700894465264, 28.830223352190337 ], [ -82.026707490937582, 28.830287125151941 ], [ -82.026698694651913, 28.83034649961683 ], [ -82.026674504875956, 28.830390480958833 ], [ -82.026637120863128, 28.830436660145295 ], [ -82.026588740779474, 28.830469646075979 ], [ -82.026531564759267, 28.830498233114962 ], [ -82.026447999697623, 28.830529019574399 ], [ -82.026322652493988, 28.830573001144014 ], [ -82.026175315633154, 28.83062137918057 ], [ -82.026052167165929, 28.830665359181857 ], [ -82.025948811262523, 28.830704942035634 ], [ -82.025885038139222, 28.8307423257314 ], [ -82.025805870337251, 28.830797300948298 ], [ -82.025746496711676, 28.830850078939729 ], [ -82.025693718334367, 28.830896258911128 ], [ -82.025627745574894, 28.830940239665217 ], [ -82.025550778413958, 28.830982020778066 ], [ -82.025469412228304, 28.83102380265343 ], [ -82.025344290784389, 28.831064772269862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chimborazo Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025344290784389, 28.831064772269862 ], [ -82.025264557661785, 28.831110299203932 ], [ -82.025066641230055, 28.831193861691037 ], [ -82.024908307555251, 28.831266430299284 ], [ -82.024851131680151, 28.831334600874236 ], [ -82.024813746526874, 28.831407169351767 ], [ -82.024807149589435, 28.831477538817662 ], [ -82.024807149072387, 28.831545709985868 ], [ -82.024833536364213, 28.83176341683258 ], [ -82.024855527264236, 28.831829388752642 ], [ -82.024890711623456, 28.831919550082898 ], [ -82.024945687962315, 28.831996517013607 ], [ -82.025016057847196, 28.832080081532915 ], [ -82.025077631793735, 28.832132859956239 ], [ -82.025174390772861, 28.832198831842351 ], [ -82.025299737798733, 28.832256008172738 ], [ -82.02543168082228, 28.832295591785542 ], [ -82.025521841800682, 28.832308785937808 ], [ -82.025605406770481, 28.83231318554952 ], [ -82.02570656466898, 28.832308787059837 ], [ -82.025823115855061, 28.832284598924698 ], [ -82.025919874957808, 28.832256012025592 ], [ -82.026057509819111, 28.832217904359212 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chimborazo Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026057509819111, 28.832217904359212 ], [ -82.026221985098445, 28.832157704793577 ], [ -82.026499068168789, 28.832074141767386 ], [ -82.026677193183232, 28.832019167010547 ], [ -82.026769553356658, 28.831992778369631 ], [ -82.026853118850056, 28.83195539494297 ], [ -82.026936683637672, 28.831911413789726 ], [ -82.027037840158869, 28.831863035819033 ], [ -82.02710601134892, 28.831841044998466 ], [ -82.027182979842678, 28.831812457451072 ], [ -82.027275339809947, 28.831790468116846 ], [ -82.027374297366578, 28.831775074189423 ], [ -82.027497445889708, 28.831764080459614 ], [ -82.027924064856904, 28.831781674974486 ], [ -82.028355082821676, 28.831810264567281 ], [ -82.028533091271242, 28.831826407287309 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Libbie Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025887465157112, 28.830015824729937 ], [ -82.025761150312917, 28.829667259517475 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tharp Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025730412438662, 28.833351690670426 ], [ -82.025897804568089, 28.833336155194917 ], [ -82.0260467243682, 28.833312586125103 ], [ -82.026172980869418, 28.833285537357018 ], [ -82.026282984613559, 28.833246648761985 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tharp Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026282984613559, 28.833246648761985 ], [ -82.026445002761918, 28.833205650503245 ], [ -82.026617724973249, 28.833156997525144 ], [ -82.026775850551246, 28.833093748708702 ], [ -82.026929110034956, 28.833028067127906 ], [ -82.027041015066374, 28.832989145062211 ], [ -82.027167514655503, 28.832957520616084 ], [ -82.027301313917022, 28.832921031175477 ], [ -82.027432679023036, 28.832886973803198 ], [ -82.027610266090079, 28.832860214892058 ], [ -82.027792717955833, 28.832835889197707 ], [ -82.027965440717736, 28.832821294804873 ], [ -82.028109409737141, 28.832816039499814 ], [ -82.028269968744084, 28.832811174964274 ], [ -82.028410670740215, 28.832812653024597 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Henrico Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026511529481226, 28.833628580977344 ], [ -82.026765417348059, 28.833547071888589 ], [ -82.026949819429404, 28.833477588265637 ], [ -82.027108833480895, 28.833417458166174 ], [ -82.027247804111738, 28.833365345214336 ], [ -82.02737742009252, 28.833325259021123 ], [ -82.027523071261939, 28.833291853814789 ], [ -82.02765402368027, 28.833269137414739 ], [ -82.027746225180877, 28.833255776560087 ], [ -82.027835753253399, 28.833250432280664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Henrico Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027835753253399, 28.833250432280664 ], [ -82.027968042851398, 28.833235734115263 ], [ -82.028101667283721, 28.833223708184587 ], [ -82.028256674311919, 28.83322370913065 ], [ -82.028496417534669, 28.83321342963896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maury Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027854401290369, 28.834151682214021 ], [ -82.027835503712055, 28.833862799622441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maury Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027835503712055, 28.833862799622441 ], [ -82.027835753253399, 28.833250432280664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dock Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026412678682647, 28.83429206568341 ], [ -82.026709663065859, 28.834204322570603 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dock Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026709663065859, 28.834204322570603 ], [ -82.027835503712055, 28.833862799622441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Swansboro Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026709663065859, 28.834204322570603 ], [ -82.026511529481226, 28.833628580977344 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Swansboro Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026511529481226, 28.833628580977344 ], [ -82.026408029244436, 28.833349575616911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cason Hammock Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972503363869848, 28.790599313912089 ], [ -81.97247070938657, 28.7905493993586 ], [ -81.972456248305861, 28.790519076852959 ], [ -81.972451117468978, 28.790485023386363 ], [ -81.972452986199883, 28.790433360897982 ], [ -81.972477543510678, 28.790217699422424 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cason Hammock Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972477543510678, 28.790217699422424 ], [ -81.972526655900523, 28.78988246382788 ], [ -81.972524520478188, 28.789823743519644 ], [ -81.972522385407245, 28.789771429638659 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cason Hammock Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972522385407245, 28.789771429638659 ], [ -81.972490355731296, 28.78980345883582 ], [ -81.972459394660561, 28.789853637382897 ], [ -81.972440175915921, 28.789915560138919 ], [ -81.972431634815877, 28.789967873635803 ], [ -81.972399605061355, 28.790211294160379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cason Hammock Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972399605061355, 28.790211294160379 ], [ -81.972383590524288, 28.790356491190551 ], [ -81.972373981764676, 28.790409872800378 ], [ -81.972356898860411, 28.790458984026476 ], [ -81.972338749093311, 28.790491012428316 ], [ -81.972325517362719, 28.790517618032649 ], [ -81.972317069985451, 28.790533122553647 ], [ -81.972305942667816, 28.790550089172452 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cason Hammock Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972477543510678, 28.790217699422424 ], [ -81.972399605061355, 28.790211294160379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cason Hammock Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972522385407245, 28.789771429638659 ], [ -81.97255500040967, 28.789555906023683 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cason Hammock Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97255500040967, 28.789555906023683 ], [ -81.972587983917421, 28.789429780112194 ], [ -81.972640572442785, 28.789298312874472 ], [ -81.972712880747878, 28.789145481021333 ], [ -81.972799978422231, 28.789004153913861 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cason Hammock Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972799978422231, 28.789004153913861 ], [ -81.972908441649565, 28.788861182527082 ], [ -81.973056343747871, 28.788688631185217 ], [ -81.973173023782891, 28.788550590566398 ], [ -81.973243688219867, 28.788471709929212 ], [ -81.973302849144048, 28.788396115001902 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hubbard Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972799978422231, 28.789004153913861 ], [ -81.972620271814961, 28.78892797477576 ], [ -81.972489733835147, 28.788878461624808 ], [ -81.972381701740588, 28.788858205086388 ], [ -81.972233158222707, 28.788846952411898 ], [ -81.972098119050699, 28.788853703539139 ], [ -81.971974332133186, 28.788858204701853 ], [ -81.971850545419443, 28.788869457765884 ], [ -81.971729009623644, 28.788867207160273 ], [ -81.971605223092865, 28.7888627055992 ], [ -81.971461180936828, 28.788849202655417 ], [ -81.971339644810243, 28.788833447669859 ], [ -81.971247368104883, 28.788828946177087 ], [ -81.971186599298093, 28.78883119617258 ], [ -81.971130333307812, 28.788851451878582 ], [ -81.9710808184591, 28.788878460125517 ], [ -81.971031303045748, 28.788925723495659 ], [ -81.970963783488173, 28.788999994628423 ], [ -81.970903015631876, 28.78907876702678 ], [ -81.970873756464854, 28.789139534236398 ], [ -81.970862502634944, 28.789227308887494 ], [ -81.970878257079832, 28.789303831218778 ], [ -81.970916518619603, 28.789360097863014 ], [ -81.970986288096725, 28.789416364079432 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hubbard Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970986288096725, 28.789416364079432 ], [ -81.971047056872663, 28.789441120426428 ], [ -81.9711415845603, 28.789463627308617 ], [ -81.971254117553443, 28.789477131981055 ], [ -81.971362149261765, 28.789492885971729 ], [ -81.971515194504263, 28.789499638011726 ], [ -81.971668239766601, 28.789506389878319 ], [ -81.971753765431743, 28.789513141840672 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hubbard Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971753765431743, 28.789513141840672 ], [ -81.971967577842321, 28.789506390362263 ], [ -81.972062105709796, 28.789506390187295 ], [ -81.97215438323073, 28.789506390382435 ], [ -81.972244409017435, 28.789515393336647 ], [ -81.97235244193827, 28.789531147437792 ], [ -81.972458221896957, 28.789549153166163 ], [ -81.97255500040967, 28.789555906023683 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Betzer Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970806235102813, 28.789659433707214 ], [ -81.970986288096725, 28.789416364079432 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barclay Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971758264333531, 28.790019537506709 ], [ -81.971753765431743, 28.789513141840672 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hubbard Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97255500040967, 28.789555906023683 ], [ -81.973585804547, 28.789666188494788 ], [ -81.973646572432287, 28.789657185406142 ], [ -81.973696086869651, 28.789634678767154 ], [ -81.973732098404994, 28.789603169793892 ], [ -81.973768108894461, 28.789571660810676 ], [ -81.973799618328499, 28.789533399828517 ], [ -81.973819874188351, 28.789486136066998 ], [ -81.973833378994016, 28.789418617652089 ], [ -81.973876141254763, 28.789209307208338 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hubbard Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973876141254763, 28.789209307208338 ], [ -81.974023963722431, 28.78857426749477 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Davey Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973876141254763, 28.789209307208338 ], [ -81.973984173998971, 28.789229563453226 ], [ -81.974098957859709, 28.789270075151588 ], [ -81.974283513026435, 28.789342096287516 ], [ -81.974452312493256, 28.789411866512712 ], [ -81.974843926959011, 28.789625677778993 ], [ -81.975021729909685, 28.789715703212838 ], [ -81.975159020467714, 28.789780972265952 ], [ -81.975294059331716, 28.789843990394473 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mccranie Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975080245234295, 28.790323377267175 ], [ -81.975294059331716, 28.789843990394473 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mccranie Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975294059331716, 28.789843990394473 ], [ -81.97562715894351, 28.789326342369954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rowan Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973302849144048, 28.788396115001902 ], [ -81.974023963722431, 28.78857426749477 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rowan Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974679007748094, 28.788811601810124 ], [ -81.974760685921694, 28.788847513928921 ], [ -81.97518234346218, 28.789063716490144 ], [ -81.97562715894351, 28.789326342369954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rowan Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97562715894351, 28.789326342369954 ], [ -81.975761676135676, 28.78938503515008 ], [ -81.97592890626666, 28.789455510660925 ], [ -81.976127192291941, 28.789528374497127 ], [ -81.976265754895067, 28.789573765582464 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rowan Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976265754895067, 28.789573765582464 ], [ -81.976388788944732, 28.789603626781012 ], [ -81.976497487745647, 28.789631101446986 ], [ -81.976634855801265, 28.789656185372095 ], [ -81.976782973556084, 28.789677686123191 ], [ -81.977050541369735, 28.789717104568506 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Skates Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976071049067471, 28.790157870930315 ], [ -81.976265754895067, 28.789573765582464 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Skates Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976265754895067, 28.789573765582464 ], [ -81.976497505219925, 28.789126481534637 ], [ -81.976619632058956, 28.788917628911879 ], [ -81.976770078616099, 28.788717625553417 ], [ -81.976911674848097, 28.788563642120863 ], [ -81.977106369716168, 28.788391957880467 ], [ -81.977173628470524, 28.788354788577813 ], [ -81.977233806838044, 28.788338860317239 ], [ -81.977288674941647, 28.788338859680689 ], [ -81.977352393623377, 28.788344168827699 ], [ -81.97740372182588, 28.788358329365366 ], [ -81.977456821239016, 28.788390188167142 ], [ -81.977495759499831, 28.788420276942748 ], [ -81.977787944408774, 28.788737561123931 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Skates Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977787944408774, 28.788737561123931 ], [ -81.977924086936966, 28.788866302263237 ], [ -81.978037363254373, 28.788968958141933 ], [ -81.978178958538578, 28.789078695376983 ], [ -81.97829223505444, 28.78917781035938 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Skates Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97829223505444, 28.78917781035938 ], [ -81.97853471774603, 28.789324716264034 ], [ -81.978667464756384, 28.789422062797822 ], [ -81.97895596515572, 28.789685783378403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Panigoni Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97704441669498, 28.790055697667096 ], [ -81.977050541369735, 28.789717104568506 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Panigoni Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977050541369735, 28.789717104568506 ], [ -81.977084999031575, 28.789621338864826 ], [ -81.977125351574117, 28.789529284469477 ], [ -81.977178315262762, 28.789422098596585 ], [ -81.977227495358591, 28.789332565830108 ], [ -81.977295591346277, 28.789221596363831 ], [ -81.977352337783216, 28.789135848230039 ], [ -81.977419172232729, 28.78905009906078 ], [ -81.977494834460131, 28.788970654901732 ], [ -81.9776133709763, 28.788871034895333 ], [ -81.977787944408774, 28.788737561123931 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kennard Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977893141778836, 28.789874216026302 ], [ -81.977945194579902, 28.789712853885089 ], [ -81.977976427219758, 28.789639981832021 ], [ -81.97808313503424, 28.789470812742209 ], [ -81.978192445797191, 28.789313355117908 ], [ -81.97829223505444, 28.78917781035938 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rowan Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974023963722431, 28.78857426749477 ], [ -81.974188519848937, 28.788616975939561 ], [ -81.974499090331122, 28.788730452477402 ], [ -81.974679007748094, 28.788811601810124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sprowles Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974679007748094, 28.788811601810124 ], [ -81.974960346056434, 28.788186464654057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heathman Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974581758646394, 28.788033434214903 ], [ -81.974793818444141, 28.788114860171834 ], [ -81.974960346056434, 28.788186464654057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heathman Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974960346056434, 28.788186464654057 ], [ -81.975152433851974, 28.788277975998493 ], [ -81.975379728269118, 28.788407940219713 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heathman Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975379728269118, 28.788407940219713 ], [ -81.975960329528021, 28.788727235301234 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holton Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975379728269118, 28.788407940219713 ], [ -81.975448223887597, 28.788293333613897 ], [ -81.975521459427526, 28.788179758277451 ], [ -81.975594694071745, 28.788086664524727 ], [ -81.975668549145979, 28.78799419073297 ], [ -81.97573247487928, 28.787923439219046 ], [ -81.975815641014108, 28.78782786216323 ], [ -81.975889495767063, 28.787757110555262 ], [ -81.975993141632671, 28.787662155146201 ], [ -81.976101752936231, 28.787567199637152 ], [ -81.976211605901611, 28.787474726525197 ], [ -81.976314630268718, 28.787389699819411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Curren Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975999349297197, 28.787143310309684 ], [ -81.976314630268718, 28.787389699819411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Curren Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976314630268718, 28.787389699819411 ], [ -81.976834083035655, 28.787769369569606 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Curren Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976834083035655, 28.787769369569606 ], [ -81.977165619354082, 28.787995002140782 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sharp Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975811636532669, 28.78902127451833 ], [ -81.975960329528021, 28.788727235301234 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sharp Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975960329528021, 28.788727235301234 ], [ -81.976043971099941, 28.78859298412393 ], [ -81.976147085279294, 28.788457003005576 ], [ -81.976250844000049, 28.788336490287996 ], [ -81.97635266879476, 28.788224354231076 ], [ -81.97644547130605, 28.78813606377058 ], [ -81.976524096042695, 28.788069041016435 ], [ -81.976611742856363, 28.787995572753157 ], [ -81.976686500499042, 28.787938860874373 ], [ -81.976739346687708, 28.787887948845203 ], [ -81.97678059245203, 28.787844126076369 ], [ -81.97680830502695, 28.787807392244975 ], [ -81.976834083035655, 28.787769369569606 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cason Hammock Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973302849144048, 28.788396115001902 ], [ -81.973345577397183, 28.788297514100595 ], [ -81.973412955515997, 28.788103599417578 ], [ -81.973473761092407, 28.787908041186828 ], [ -81.973523062827496, 28.787728915405374 ], [ -81.973559217400563, 28.787612237976276 ], [ -81.973583867053293, 28.787516925072158 ], [ -81.973610160787402, 28.787424896908192 ], [ -81.973631525271685, 28.787342729161679 ], [ -81.973656175341034, 28.787221121905173 ], [ -81.973670301662068, 28.787109392920652 ], [ -81.973678471040373, 28.786992980658425 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cason Hammock Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973678471040373, 28.786992980658425 ], [ -81.973682555582982, 28.786901077153306 ], [ -81.973694810711876, 28.786776495231521 ], [ -81.97371114947174, 28.786664168433951 ], [ -81.973749954881001, 28.786476274500266 ], [ -81.973784674366485, 28.786308804538244 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cason Hammock Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973784674366485, 28.786308804538244 ], [ -81.973921513402018, 28.785694067297911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yancey Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974023963722431, 28.78857426749477 ], [ -81.974074054775286, 28.788402404406948 ], [ -81.97414820565686, 28.788161187757261 ], [ -81.974242154066843, 28.787858925189148 ], [ -81.974306378032082, 28.787663136237896 ], [ -81.974383241373459, 28.787391955904265 ], [ -81.97442933946779, 28.78722532170524 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trifu Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973784674366485, 28.786308804538244 ], [ -81.973921653228928, 28.786330255731833 ], [ -81.974159758196379, 28.786381538727415 ], [ -81.974372220351157, 28.786436485225625 ], [ -81.974559041846945, 28.786498759645852 ], [ -81.974822181343143, 28.786621280306139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trifu Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974822181343143, 28.786621280306139 ], [ -81.974893795188635, 28.786663088896926 ], [ -81.975045724700493, 28.786756927190428 ], [ -81.975202123132391, 28.786851510545826 ], [ -81.97528032203077, 28.786898429950543 ], [ -81.975377695721235, 28.786968475526994 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trifu Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975377695721235, 28.786968475526994 ], [ -81.975398119231059, 28.786995025350024 ], [ -81.975432838687382, 28.787050168510195 ], [ -81.975445092859445, 28.787123691305862 ], [ -81.975432838524966, 28.787193129356606 ], [ -81.975398118062458, 28.787262569610416 ], [ -81.975332763639315, 28.787346304108507 ], [ -81.975212266092967, 28.787442292666498 ], [ -81.975157122209524, 28.787470884937566 ], [ -81.975085640172125, 28.787487224341934 ], [ -81.975014158493309, 28.787489266541925 ], [ -81.974946760933605, 28.787477012298893 ], [ -81.974898052723262, 28.787453612521656 ], [ -81.974847218477194, 28.787428941870633 ], [ -81.97442933946779, 28.78722532170524 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trifu Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97442933946779, 28.78722532170524 ], [ -81.974285796400352, 28.787160567718299 ], [ -81.974110116648276, 28.787094781460837 ], [ -81.973933691035285, 28.78704693824864 ], [ -81.973782681619511, 28.787014792812808 ], [ -81.973678471040373, 28.786992980658425 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Poplaski Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975377695721235, 28.786968475526994 ], [ -81.975786172590432, 28.78681897764805 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Outridge Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973678471040373, 28.786992980658425 ], [ -81.973004495095509, 28.786833742852235 ], [ -81.972240666084829, 28.786698885344112 ], [ -81.972136507601974, 28.786672335763111 ], [ -81.972058898927614, 28.786641700528978 ], [ -81.971985374788559, 28.786596769835327 ], [ -81.971942486293869, 28.786517119033597 ], [ -81.971942486250114, 28.786468104424259 ], [ -81.97195269799343, 28.786419088335748 ], [ -81.971968881632876, 28.786345422266894 ], [ -81.972079324145056, 28.786008582466614 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Outridge Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972079324145056, 28.786008582466614 ], [ -81.972187569113771, 28.785606245815366 ], [ -81.972210034225995, 28.785555186688359 ], [ -81.972234542875341, 28.785522509926704 ], [ -81.972265177980574, 28.78549187545924 ], [ -81.972306025718382, 28.785465325158572 ], [ -81.97236729614302, 28.785448987828435 ], [ -81.97242856533633, 28.785444902996613 ], [ -81.972524555123712, 28.785453071446657 ], [ -81.972640967664503, 28.785471452770143 ], [ -81.973921513402018, 28.785694067297911 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Outridge Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.973921513402018, 28.785694067297911 ], [ -81.974260540969411, 28.785753293785689 ], [ -81.974481114873427, 28.785800267918493 ], [ -81.974655485370874, 28.785850905405294 ], [ -81.974821787373259, 28.785908522361083 ], [ -81.974934511867801, 28.785971822732929 ], [ -81.975010077963162, 28.786051473258915 ], [ -81.975057052429833, 28.78614746205638 ], [ -81.975046839774791, 28.786214859426124 ], [ -81.975003950679266, 28.78630676389168 ], [ -81.974940638043535, 28.786410921572003 ], [ -81.974822181343143, 28.786621280306139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bowden Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972079324145056, 28.786008582466614 ], [ -81.973784674366485, 28.786308804538244 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carmichael Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971398378006711, 28.788112505033027 ], [ -81.971508360154417, 28.788141018043248 ], [ -81.971577823729604, 28.788153117435005 ], [ -81.971687842813282, 28.788162991207152 ], [ -81.971802092787158, 28.788174275191427 ], [ -81.971916343535753, 28.788171454107278 ], [ -81.972030593371926, 28.788164401976079 ], [ -81.972143432888942, 28.788153117603468 ], [ -81.972263325869918, 28.78814042427512 ], [ -81.972347955758465, 28.788137603027966 ], [ -81.972426942471586, 28.788140424544469 ], [ -81.972505931513368, 28.788146065746457 ], [ -81.972646880477853, 28.788171570430272 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carmichael Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972646880477853, 28.788171570430272 ], [ -81.972720201471347, 28.788191937019928 ], [ -81.972787414150773, 28.788222486751213 ], [ -81.972854323056566, 28.788247620699178 ], [ -81.972930490135994, 28.788281472831329 ], [ -81.973023583035243, 28.788312504075318 ], [ -81.97311949653762, 28.788340714283351 ], [ -81.973302849144048, 28.788396115001902 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Freitag Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971280248255354, 28.788448559317949 ], [ -81.971398378006711, 28.788112505033027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Freitag Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971398378006711, 28.788112505033027 ], [ -81.971494103725178, 28.787778487816425 ], [ -81.971561315617635, 28.787593148699717 ], [ -81.971614270784457, 28.787444470262919 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Freitag Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971614270784457, 28.787444470262919 ], [ -81.971705924629205, 28.787118598996599 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mckown Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.971614270784457, 28.787444470262919 ], [ -81.971685556596171, 28.787454654372066 ], [ -81.971756840842687, 28.787466874063792 ], [ -81.97183830848158, 28.787470947052821 ], [ -81.971921814014564, 28.787468910849753 ], [ -81.97201346714759, 28.787460764015695 ], [ -81.972109191777847, 28.787448544918384 ], [ -81.972215101094861, 28.787438360771844 ], [ -81.972292494827556, 28.78743632397871 ], [ -81.972376000867527, 28.787432250972039 ], [ -81.972449322011599, 28.787438361148268 ], [ -81.972512460070675, 28.787436324014045 ], [ -81.97257967150648, 28.787442433772586 ], [ -81.972712058608025, 28.787460765051637 ], [ -81.97282721350183, 28.787487187378503 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mckown Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97282721350183, 28.787487187378503 ], [ -81.973213404806373, 28.787572169929799 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kerry Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972646880477853, 28.788171570430272 ], [ -81.97282721350183, 28.787487187378503 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972305942667816, 28.790550089172452 ], [ -81.972270948971556, 28.790556977440087 ], [ -81.972217086165429, 28.790577656371575 ], [ -81.972184207016539, 28.790594410951098 ], [ -81.972150455317689, 28.790618199779008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972645534987905, 28.790698665993521 ], [ -81.972620922029193, 28.790664623005455 ], [ -81.972585467803668, 28.790638966612239 ], [ -81.972542550513424, 28.790617507150905 ], [ -81.972503363869848, 28.790599313912089 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9950070305499, 28.801670520786509 ], [ -81.995101421136141, 28.801684729437554 ], [ -81.99517793200468, 28.801675493490364 ], [ -81.995214412482824, 28.801664106740347 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994846672934315, 28.801323169486345 ], [ -81.994829060439713, 28.80136254931487 ], [ -81.994819229146671, 28.801403977696108 ], [ -81.994823802704133, 28.80148822858062 ], [ -81.994828979418543, 28.801499440014307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 534", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104251483746594, 28.697851478559702 ], [ -82.103444081349494, 28.697871455975729 ], [ -82.102571041629147, 28.697864943134977 ], [ -82.101507670651969, 28.697861195711454 ], [ -82.100073945597543, 28.697864167169435 ], [ -82.099262723856853, 28.697859021458434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Falk Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977640694277511, 28.799015117310777 ], [ -81.97792396171657, 28.798999313268123 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966909932765461, 28.788475129001959 ], [ -81.966965709162324, 28.788488962547703 ], [ -81.967246269200757, 28.78857087732742 ], [ -81.967402933056647, 28.788625146245369 ], [ -81.967734691362608, 28.788749043534104 ], [ -81.967837467968081, 28.788805506974153 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.967915298554075, 28.788636342611099 ], [ -81.967818655086404, 28.788627194427022 ], [ -81.967736739715704, 28.788604667489505 ], [ -81.967562669362849, 28.788540159816321 ], [ -81.967410101612785, 28.788485891172972 ], [ -81.967290300410099, 28.78844800461766 ], [ -81.96718790618219, 28.788415238322138 ], [ -81.966944089794424, 28.788347606155863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.966944089794424, 28.788347606155863 ], [ -81.966909932765461, 28.788475129001959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bigham Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020801728666683, 28.791296094166945 ], [ -82.020845582257365, 28.791219566983326 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021045517610162, 28.791393117906136 ], [ -82.021140415094379, 28.791442732693916 ], [ -82.021319270184478, 28.791533541536854 ], [ -82.021360379340592, 28.791538757877692 ], [ -82.021395147593424, 28.7915414351606 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020801728666683, 28.791296094166945 ], [ -82.020835280551182, 28.791307055913293 ], [ -82.020881528192106, 28.791321284846568 ], [ -82.021045517610162, 28.791393117906136 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021395147593424, 28.7915414351606 ], [ -82.021392172392183, 28.79151773545216 ], [ -82.021385035815783, 28.791490617512355 ], [ -82.021362200137304, 28.791464926714596 ], [ -82.021282271805049, 28.791416398907209 ], [ -82.021091017265761, 28.791312206959258 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021091017265761, 28.791312206959258 ], [ -82.020845582257365, 28.791219566983326 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021045517610162, 28.791393117906136 ], [ -82.021091017265761, 28.791312206959258 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020185617331492, 28.791100002976656 ], [ -82.020271916700125, 28.791146710552866 ], [ -82.02030788738314, 28.791160545048026 ], [ -82.020481014229574, 28.791202048919192 ], [ -82.020519091983971, 28.791210811147469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020845582257365, 28.791219566983326 ], [ -82.020543364437245, 28.791134830109176 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020543364437245, 28.791134830109176 ], [ -82.020452608448494, 28.791110557572789 ], [ -82.020333359350602, 28.791084174976387 ], [ -82.020286926763234, 28.791076787221481 ], [ -82.020258433589987, 28.791079953033289 ], [ -82.020220442149039, 28.791083119302062 ], [ -82.020185617331492, 28.791100002976656 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020543364437245, 28.791134830109176 ], [ -82.020519091983971, 28.791210811147469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019570876902506, 28.811745386122766 ], [ -82.019596172951339, 28.811679617685208 ], [ -82.01967469599731, 28.811404790850805 ], [ -82.019731804247172, 28.811204917410315 ], [ -82.019811853062308, 28.811073982661338 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018607434314561, 28.813387021885845 ], [ -82.018613088052831, 28.813378041344926 ], [ -82.018668061206057, 28.813319078003499 ], [ -82.018773691579568, 28.813110482257326 ], [ -82.018938795263708, 28.812815785375015 ], [ -82.019001196533424, 28.812704346122587 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lawler Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019001196533424, 28.812704346122587 ], [ -82.01888292344205, 28.812621408125516 ], [ -82.018873569770236, 28.812615822273411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019570876902506, 28.811745386122766 ], [ -82.019523072733264, 28.811794672468075 ], [ -82.019459564145848, 28.811900977980518 ], [ -82.019398817175301, 28.812016947729671 ], [ -82.019332547581712, 28.81211911105234 ], [ -82.019260756833589, 28.812221275097542 ], [ -82.019168255392955, 28.812327580826302 ], [ -82.019099224547659, 28.812402132801022 ], [ -82.019044000204104, 28.812455974843942 ], [ -82.018984634721377, 28.812515340465747 ], [ -82.018873569770236, 28.812615822273411 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018873569770236, 28.812615822273411 ], [ -82.018834147246835, 28.812664444047105 ], [ -82.018773400751442, 28.81274866029386 ], [ -82.018707131954997, 28.812843920624818 ], [ -82.018651906783674, 28.812954368954614 ], [ -82.018603585890318, 28.813066195980927 ], [ -82.018563547669629, 28.813187688348762 ], [ -82.018566937725751, 28.813252500863069 ], [ -82.018576618130069, 28.813316469788941 ], [ -82.018589242196867, 28.813352242025548 ], [ -82.018607434314561, 28.813387021885845 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 123rd Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017500153168854, 28.93544393681028 ], [ -82.017456899129002, 28.935406378851493 ], [ -82.017413304067645, 28.935378222826202 ], [ -82.017306132268189, 28.935353700145377 ], [ -82.016315812715945, 28.935356922050367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016315812715945, 28.935356922050367 ], [ -82.016316254139966, 28.935460204902128 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 123rd Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016316254139966, 28.935460204902128 ], [ -82.017311070335495, 28.935463247059513 ], [ -82.017367266026511, 28.935458689770634 ], [ -82.017424981314676, 28.935451096047778 ], [ -82.017500153168854, 28.93544393681028 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053646801799729, 28.919923002333036 ], [ -82.053646494628708, 28.919978263543474 ], [ -82.053646315605462, 28.920011315601169 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052767663362388, 28.919931782530096 ], [ -82.052712412644965, 28.919937890826638 ], [ -82.052625974515394, 28.919947495828847 ], [ -82.052462702524238, 28.919966702867477 ], [ -82.052303273226073, 28.919985910036232 ], [ -82.052191779706561, 28.920022420011442 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052775142139851, 28.920014421780898 ], [ -82.052919781384176, 28.920006481356278 ], [ -82.053096565601479, 28.920002618343826 ], [ -82.053235675908027, 28.920004550850138 ], [ -82.05348587998057, 28.920005517445965 ], [ -82.053646315605462, 28.920011315601169 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052191779706561, 28.920022420011442 ], [ -82.052294731618673, 28.920044154691059 ], [ -82.052417418599333, 28.920049950762749 ], [ -82.052553630618121, 28.920039326038122 ], [ -82.052648301592527, 28.92002483557658 ], [ -82.052761328293514, 28.920015176042273 ], [ -82.052775142139851, 28.920014421780898 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Oaks Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.052767663362388, 28.919931782530096 ], [ -82.052775142139851, 28.920014421780898 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013560369956181, 28.838231525073724 ], [ -82.013476577988442, 28.83819922591433 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Anthony Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013560369956181, 28.838231525073724 ], [ -82.013674226941163, 28.837954236982895 ], [ -82.013680662454291, 28.837922522069771 ], [ -82.013682960522999, 28.837886669572825 ], [ -82.013683881638926, 28.837529985614694 ], [ -82.01368480168081, 28.837197203759295 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spencer Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01368480168081, 28.837197203759295 ], [ -82.013601586418147, 28.837189386018657 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 81st Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020609639673367, 28.874557626078204 ], [ -82.020353986086377, 28.874565176267264 ], [ -82.019880066443434, 28.874573999763097 ], [ -82.019572063361224, 28.874586353470029 ], [ -82.019315527377017, 28.874618614067622 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020609508947501, 28.874682186212233 ], [ -82.020609639673367, 28.874557626078204 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 81st Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01987722713929, 28.874652408427686 ], [ -82.020219455796266, 28.874656670366999 ], [ -82.020609508947501, 28.874682186212233 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chatham Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954431727562067, 28.552352057843475 ], [ -81.954843698384721, 28.552180406757291 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 90th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.240272872790953, 28.625214236997628 ], [ -82.240320115127702, 28.62521777822403 ], [ -82.240377970558228, 28.625231101844246 ], [ -82.240420643304745, 28.625260565273312 ], [ -82.240429540753482, 28.625280852088011 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carytown Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023075711995617, 28.836231987315617 ], [ -82.02334447191032, 28.836175408453055 ], [ -82.023538262052483, 28.836137217243021 ], [ -82.023720734907656, 28.83609902678208 ], [ -82.023814093314854, 28.836090539974293 ], [ -82.023897549645511, 28.836086297452244 ], [ -82.023968276285686, 28.836089126650407 ], [ -82.024078607747683, 28.836096199730797 ], [ -82.024169137613882, 28.836104687372295 ], [ -82.024279470015358, 28.836120247390795 ], [ -82.02444214003124, 28.836132979319483 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carytown Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02444214003124, 28.836132979319483 ], [ -82.024531254571201, 28.836131565046269 ], [ -82.024668033423907, 28.836125267998764 ], [ -82.024818098487003, 28.836112612587716 ], [ -82.025022405779254, 28.836087301414061 ], [ -82.025232137643627, 28.836056566078867 ], [ -82.025402090861277, 28.836036678922444 ], [ -82.025515996432105, 28.836025831252712 ], [ -82.025597357526152, 28.836014983174941 ], [ -82.025671486048026, 28.836004135483471 ], [ -82.025752613275543, 28.835988247969034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carytown Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025752613275543, 28.835988247969034 ], [ -82.025816268199009, 28.835965615300371 ], [ -82.025957720283273, 28.835924595291235 ], [ -82.026053907245341, 28.835901964542391 ], [ -82.026168483318287, 28.835884990431733 ], [ -82.026300034685562, 28.835866602700428 ], [ -82.02634671344174, 28.835851042576508 ], [ -82.026386319793858, 28.835828411497168 ], [ -82.026408952069744, 28.835791633655408 ], [ -82.026418853739798, 28.835749198963388 ], [ -82.026417439938498, 28.835696861798215 ], [ -82.026351126442904, 28.835253233339557 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carytown Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026351126442904, 28.835253233339557 ], [ -82.026331220138587, 28.835170379132887 ], [ -82.026312292713271, 28.835067767813314 ], [ -82.026292368803851, 28.834963165285789 ], [ -82.026265471589412, 28.834870517842948 ], [ -82.0262256230438, 28.834748979152298 ], [ -82.026175812615477, 28.83462046749019 ], [ -82.026094122868571, 28.834448121390189 ], [ -82.026034848897524, 28.834342272902177 ], [ -82.02595470186445, 28.834174418107345 ], [ -82.025882116859293, 28.833991440077924 ], [ -82.025839775741858, 28.833868951590723 ], [ -82.025804996064181, 28.83376763342822 ], [ -82.02577475130083, 28.833655731247248 ], [ -82.025753581996426, 28.833558950050389 ], [ -82.025731823348494, 28.833440246491357 ], [ -82.025730412438662, 28.833351690670426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Navy Hill Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024436864823443, 28.836718600223179 ], [ -82.024279309195137, 28.836731975657916 ], [ -82.024123240146395, 28.836726029546018 ], [ -82.023977575663039, 28.836712651862616 ], [ -82.02387352883909, 28.836712650809609 ], [ -82.023767996084047, 28.836721568335012 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Navy Hill Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023767996084047, 28.836721568335012 ], [ -82.023690705142457, 28.836726027184028 ], [ -82.023580712657406, 28.836739404524565 ], [ -82.023485585291766, 28.836758726375091 ], [ -82.02339937447276, 28.836779535466945 ], [ -82.023328028586249, 28.83679142541353 ], [ -82.023283437432127, 28.836788452557336 ], [ -82.023246278494625, 28.836775074843192 ], [ -82.023215064832229, 28.836755751727534 ], [ -82.023197228229947, 28.836727511581017 ], [ -82.023183851786726, 28.836687379182138 ], [ -82.023075711995617, 28.836231987315617 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Navy Hill Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023075711995617, 28.836231987315617 ], [ -82.023035554536079, 28.836074580133157 ], [ -82.023000361422973, 28.835947669201722 ], [ -82.022980099263791, 28.835870884384608 ], [ -82.022976900172836, 28.835814361671527 ], [ -82.022988631054446, 28.835761038783708 ], [ -82.023014226503179, 28.835707716311411 ], [ -82.023048353837851, 28.835663992070717 ], [ -82.023093146078537, 28.835627732647065 ], [ -82.02314753615228, 28.835602137789348 ], [ -82.023218988935199, 28.835576542772667 ], [ -82.023309638596388, 28.835554147697088 ], [ -82.023564523682836, 28.835482696178477 ], [ -82.023680768090415, 28.835457102349778 ], [ -82.023774618098216, 28.835445370788523 ], [ -82.023874865242817, 28.835446438197373 ], [ -82.02399857517544, 28.835454970786898 ], [ -82.024151079889904, 28.835485898949575 ], [ -82.024220399344117, 28.835502963062442 ], [ -82.024337710877333, 28.835520026869016 ], [ -82.024478484441673, 28.835527492210058 ], [ -82.024604327871856, 28.835522160817391 ], [ -82.024727163676332, 28.835512245218624 ], [ -82.024948375831968, 28.835487250565286 ], [ -82.025147091475858, 28.835459756622949 ], [ -82.025329560579692, 28.835434762036556 ], [ -82.025489532640336, 28.835413516812913 ], [ -82.025595765075352, 28.835388521402312 ], [ -82.025713245686603, 28.835358528651462 ], [ -82.025836972953556, 28.835328534635714 ], [ -82.025941955775053, 28.83530228858708 ], [ -82.026074433326485, 28.835286042980169 ], [ -82.026218158620026, 28.835267296629116 ], [ -82.026351126442904, 28.835253233339557 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Navy Hill Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026351126442904, 28.835253233339557 ], [ -82.026427788173422, 28.835245235140402 ], [ -82.026515006090875, 28.83524753020756 ], [ -82.026657310043987, 28.835253651252255 ], [ -82.026803439248766, 28.835263598093082 ], [ -82.026938091817357, 28.835270484574661 ], [ -82.027095501905777, 28.835275004234742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Towana Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023767996084047, 28.836721568335012 ], [ -82.023764982691205, 28.837738655812906 ], [ -82.023771698285387, 28.837777272507292 ], [ -82.023786810106031, 28.837804136118102 ], [ -82.023810315830744, 28.83782260503008 ], [ -82.023835500752767, 28.837839395358987 ], [ -82.023865721744414, 28.837844432269293 ], [ -82.023894264847343, 28.837847790267617 ], [ -82.024332479420266, 28.8378427561004 ], [ -82.024361021898883, 28.837834360547955 ], [ -82.024384527601555, 28.83782092919499 ], [ -82.024402997166376, 28.837800781045846 ], [ -82.024418107852199, 28.837777275999517 ], [ -82.024433217630119, 28.837745375886406 ], [ -82.024438254885638, 28.837703400577034 ], [ -82.024438259226031, 28.836779964990296 ], [ -82.024436864823443, 28.836718600223179 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Towana Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024436864823443, 28.836718600223179 ], [ -82.02444214003124, 28.836132979319483 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burgess Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028496417534669, 28.83321342963896 ], [ -82.028410670740215, 28.832812653024597 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burgess Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028579029812079, 28.834393094014025 ], [ -82.028557232120775, 28.834137850160616 ], [ -82.028547501187106, 28.834018648321873 ], [ -82.028537770557747, 28.833904312624732 ], [ -82.028535338317511, 28.833814303437077 ], [ -82.028525608664651, 28.833734024431983 ], [ -82.028523175776613, 28.833614822884986 ], [ -82.028528041903385, 28.833549140206696 ], [ -82.028523176826468, 28.833420207770079 ], [ -82.028515879028419, 28.833325333432825 ], [ -82.028496417534669, 28.83321342963896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Monument Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027095501905777, 28.835275004234742 ], [ -82.027095501892688, 28.835170386204876 ], [ -82.027081915790973, 28.835072561593766 ], [ -82.027050666147915, 28.834940768553118 ], [ -82.027030286891147, 28.834837508856332 ], [ -82.027030286733336, 28.834780444226784 ], [ -82.027052025692768, 28.834738325688694 ], [ -82.027099580056131, 28.834703000087295 ], [ -82.027149851342529, 28.834689413230507 ], [ -82.027857727076892, 28.834470669802357 ], [ -82.027933814859068, 28.834457083775465 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Monument Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027933814859068, 28.834457083775465 ], [ -82.028007091868417, 28.834435885505904 ], [ -82.028132334246507, 28.834418560182108 ], [ -82.028579029812079, 28.834393094014025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Monument Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028579029812079, 28.834393094014025 ], [ -82.029447434554712, 28.834349188831666 ], [ -82.029508494268853, 28.834349189354235 ], [ -82.029582186970174, 28.834357611992591 ], [ -82.02966851224285, 28.834376561809364 ], [ -82.0299043289601, 28.834441834466499 ], [ -82.029971706164503, 28.834456572604896 ], [ -82.030049608847577, 28.834473417114864 ], [ -82.030142251251689, 28.834494472142538 ], [ -82.030287531531911, 28.834519740186732 ], [ -82.030500187831848, 28.834551322908776 ], [ -82.03064336229103, 28.834572378160647 ], [ -82.030790747590487, 28.834587117974916 ], [ -82.030940238731844, 28.834591329936035 ], [ -82.031081307721053, 28.834585013699286 ], [ -82.031209743547748, 28.834570276228195 ], [ -82.031315019886762, 28.834549222321986 ], [ -82.031437138611665, 28.834521851056017 ], [ -82.031573996512478, 28.834479741630425 ], [ -82.031741612574905, 28.834414956329624 ], [ -82.031919346492117, 28.83435705940326 ], [ -82.032087376974232, 28.834325562404409 ], [ -82.033041517448325, 28.834337253118001 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Navy Hill Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027095501905777, 28.835275004234742 ], [ -82.027170064534943, 28.835281386096895 ], [ -82.027227618469098, 28.835282492761973 ], [ -82.027297348302042, 28.835268104387257 ], [ -82.027938190469371, 28.835065562933615 ], [ -82.027981356356307, 28.835032359233207 ], [ -82.028021201391397, 28.834992514306034 ], [ -82.028047765578165, 28.834939388287509 ], [ -82.02806215371929, 28.834877407681454 ], [ -82.028055512693655, 28.834804358218147 ], [ -82.028037804556661, 28.834742377795234 ], [ -82.028011241555447, 28.834679290224614 ], [ -82.027933814859068, 28.834457083775465 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000526578512748, 28.803476278378895 ], [ -82.001111986921202, 28.803631557121133 ], [ -82.0015527273884, 28.803739574723135 ], [ -82.001839161057632, 28.803867844565431 ], [ -82.002045547479511, 28.804004793002587 ], [ -82.002181529777545, 28.804120524903364 ], [ -82.002317514033663, 28.804270974920222 ], [ -82.00249110909914, 28.804512079601409 ], [ -82.002694131526624, 28.804702710116732 ], [ -82.0029087031823, 28.804855415973119 ], [ -82.003037934794676, 28.804982720150694 ], [ -82.003151737241353, 28.805128348620762 ], [ -82.003256858579917, 28.805259509483655 ], [ -82.003374476848748, 28.805377131737092 ], [ -82.003578974126512, 28.80551604757423 ], [ -82.003721967216464, 28.805599626575376 ], [ -82.00389434132984, 28.805713755219486 ], [ -82.004008552262647, 28.805823832761128 ], [ -82.00410169081016, 28.805935572781618 ], [ -82.004301324901135, 28.806207539795849 ], [ -82.004448881616028, 28.80635123891949 ], [ -82.004595321001617, 28.806467652909692 ], [ -82.004736278605236, 28.80655183993909 ], [ -82.004891550574285, 28.806626101860083 ], [ -82.005223313904693, 28.806738939849556 ], [ -82.005529999554227, 28.80687396123378 ], [ -82.005838614929473, 28.807046593797352 ], [ -82.006083577051612, 28.807218262691311 ], [ -82.00677699620951, 28.807850924510454 ], [ -82.007692230095671, 28.808718907826819 ], [ -82.008443514024449, 28.809437405621807 ], [ -82.008859177925274, 28.809854037058784 ], [ -82.009175507846976, 28.810153008436597 ], [ -82.009412754795861, 28.810381577716591 ], [ -82.009588279483523, 28.810572533270403 ], [ -82.009693401267796, 28.810718161158125 ], [ -82.009836135309854, 28.810875363089579 ], [ -82.010113888126853, 28.811144437629068 ], [ -82.010559450161963, 28.811563961656649 ], [ -82.011031051498534, 28.812005669123732 ], [ -82.011208504623227, 28.812134902509939 ], [ -82.011464076761527, 28.812297890351164 ], [ -82.011611632994772, 28.812418443531776 ], [ -82.013038975399482, 28.813773461900809 ], [ -82.013441745279536, 28.814148515139046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01352370052615, 28.814074497209745 ], [ -82.013290690622952, 28.813850617006434 ], [ -82.012523975043621, 28.813130191004273 ], [ -82.011640566224898, 28.812296927023457 ], [ -82.011390781334342, 28.812115614935312 ], [ -82.011203683969555, 28.812001812950552 ], [ -82.011064807153375, 28.811889938882743 ], [ -82.010431182912725, 28.811288137179353 ], [ -82.009939329269983, 28.810825213801767 ], [ -82.009740658368386, 28.810599538424956 ], [ -82.009592138349944, 28.810404724832157 ], [ -82.009296060829072, 28.810110575118415 ], [ -82.008979731873993, 28.809813532260279 ], [ -82.008313316913288, 28.809219446160672 ], [ -82.007654618509434, 28.80859449817056 ], [ -82.007183017025454, 28.808152791266178 ], [ -82.00653396186064, 28.80752687897413 ], [ -82.006216668674895, 28.807202832383442 ], [ -82.005855010285472, 28.806929899040593 ], [ -82.00554509830522, 28.806736918529317 ], [ -82.005332293772625, 28.806594278534856 ], [ -82.004967741948761, 28.806304950585812 ], [ -82.004624578661904, 28.8060751681843 ], [ -82.004471065612293, 28.805921109066912 ], [ -82.004361107675976, 28.805787258600663 ], [ -82.004180578008885, 28.805490751908025 ], [ -82.004073725341243, 28.805339560492602 ], [ -82.003951804866958, 28.805225520225278 ], [ -82.003786327225697, 28.805088810237322 ], [ -82.003523541746489, 28.804955757316815 ], [ -82.003352337869245, 28.804867955815826 ], [ -82.003156265077251, 28.804732544953389 ], [ -82.003000325288966, 28.80458248592198 ], [ -82.002878436756376, 28.804432935086997 ], [ -82.002664706532556, 28.804208288733445 ], [ -82.002405453775864, 28.80401992545157 ], [ -82.00212270107437, 28.803848556945525 ], [ -82.001866070698512, 28.80373822092097 ], [ -82.001612522456938, 28.803641204317003 ], [ -82.001307764414477, 28.803567906517582 ], [ -82.000945141675416, 28.803479177670276 ], [ -82.00059987821497, 28.803384663149689 ], [ -82.000553676152734, 28.803370723258269 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017503146343245, 28.824134887826649 ], [ -82.017460965020248, 28.824103711062072 ], [ -82.017416090730833, 28.824076976684196 ], [ -82.017367716237416, 28.824062018757697 ], [ -82.017310428690308, 28.824060108394544 ], [ -82.017232253052228, 28.824069115792817 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017108238844799, 28.824140175992213 ], [ -82.017086556423479, 28.824162587464144 ], [ -82.01706543087667, 28.824194697784947 ], [ -82.017047895856621, 28.824235046652355 ], [ -82.017039273458764, 28.824285113211925 ], [ -82.017036595662972, 28.824340247322834 ], [ -82.017046483245153, 28.824392010694236 ], [ -82.017062768293314, 28.824429233484004 ], [ -82.017072396355985, 28.824446821931094 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01713197804095, 28.824537411043586 ], [ -82.017183158712839, 28.82456881690176 ], [ -82.017233176092887, 28.82458510289101 ], [ -82.017277961023638, 28.824590338022478 ], [ -82.017339028186328, 28.824589173767389 ], [ -82.017396025249241, 28.824573471082456 ], [ -82.017452056405389, 28.824547178994877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01713197804095, 28.824537411043586 ], [ -82.017149621548199, 28.824579545827046 ], [ -82.017162221526689, 28.824619417328375 ], [ -82.017169781818097, 28.824668271025153 ], [ -82.017164546553772, 28.824716543386963 ], [ -82.017075507210706, 28.825201128372004 ], [ -82.017082676558616, 28.825664924184949 ], [ -82.017147224441018, 28.826064171758233 ], [ -82.01732652566433, 28.826657066837367 ], [ -82.017548859499925, 28.827359934153296 ], [ -82.017713816116455, 28.827897842798315 ], [ -82.017854866632135, 28.828242105299807 ], [ -82.017976791924184, 28.828440533575982 ], [ -82.018215861938202, 28.828741763753335 ], [ -82.018526653408912, 28.829035821530681 ], [ -82.01882070973177, 28.82923664349677 ], [ -82.019081296694935, 28.82938725952096 ], [ -82.019129111159401, 28.829447026424909 ], [ -82.019162376319088, 28.829534865207297 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995214412482824, 28.801664106740347 ], [ -81.995288783279705, 28.801656413606384 ], [ -81.995388119740383, 28.801691133596968 ], [ -81.995633542268834, 28.801786557005322 ], [ -81.995820182063369, 28.801832903143609 ], [ -81.995965811101755, 28.80185508564729 ], [ -81.996148458532886, 28.801864077285572 ], [ -81.996320720405834, 28.801878231414854 ], [ -81.996496246617383, 28.801905236143305 ], [ -81.996642838733848, 28.801930310755566 ], [ -81.996986175551328, 28.80202289461975 ], [ -81.997362302542385, 28.802171416229886 ], [ -81.998256324709644, 28.802656520949547 ], [ -81.9986777789439, 28.802858085532105 ], [ -81.999135881193553, 28.803055790782057 ], [ -81.999368307486691, 28.803144517546158 ], [ -82.000081983389165, 28.803337402838238 ], [ -82.00040528075823, 28.803440200946643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00040528075823, 28.803440200946643 ], [ -82.000479324348177, 28.803463744262377 ], [ -82.000526578512748, 28.803476278378895 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00042916595352, 28.803333155221576 ], [ -81.999931422859262, 28.803182976996986 ], [ -81.999587233434553, 28.803097261814163 ], [ -81.999339375251708, 28.803013357292606 ], [ -81.998853304440004, 28.80280793589662 ], [ -81.998300689111133, 28.802539826428557 ], [ -81.997573511820065, 28.802152128960227 ], [ -81.997314082019059, 28.80202289554229 ], [ -81.996996784024631, 28.801904271484947 ], [ -81.996568579449502, 28.801799149609646 ], [ -81.996234886625061, 28.801752857188323 ], [ -81.995921448496105, 28.801731638930793 ], [ -81.995680341774019, 28.801678595990474 ], [ -81.995507709255136, 28.801603370731261 ], [ -81.99543248344132, 28.801539719025588 ], [ -81.995380691605149, 28.801481254595011 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000553676152734, 28.803370723258269 ], [ -82.00042916595352, 28.803333155221576 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fraser Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00042916595352, 28.803333155221576 ], [ -82.00040528075823, 28.803440200946643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fraser Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000526578512748, 28.803476278378895 ], [ -82.000553676152734, 28.803370723258269 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fraser Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00040528075823, 28.803440200946643 ], [ -82.000363902602231, 28.803578373670192 ], [ -82.000273464919943, 28.80382366236563 ], [ -82.00021523984114, 28.803982233538044 ], [ -82.000210283628519, 28.804023114565652 ], [ -82.000214000131464, 28.804072667750269 ], [ -82.000222671748986, 28.804127177354808 ], [ -82.000242493173076, 28.804179208352831 ], [ -82.000265589713649, 28.804213998885839 ], [ -82.000285720589588, 28.804231310719064 ], [ -82.000309474854078, 28.804244194917384 ], [ -82.000322760567144, 28.804251442333218 ], [ -82.000334838490602, 28.804256675783439 ], [ -82.000347721609188, 28.804264325626587 ], [ -82.000360605754551, 28.804270767272811 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fraser Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000360605754551, 28.804270767272811 ], [ -82.000349333034393, 28.80424419505243 ], [ -82.000341281097732, 28.804220441664175 ], [ -82.000328637715867, 28.804189749480958 ], [ -82.000326132006094, 28.804158174870299 ], [ -82.000326632977291, 28.804117578954749 ], [ -82.000333864380764, 28.804082915762923 ], [ -82.000345679037878, 28.804036386280874 ], [ -82.000418853264179, 28.803798322310904 ], [ -82.000500174319768, 28.803552358569185 ], [ -82.000526578512748, 28.803476278378895 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fraser Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000360605754551, 28.804270767272811 ], [ -82.000411827855274, 28.80430755829164 ], [ -82.000501612315404, 28.804343473232802 ], [ -82.00059538696641, 28.804381382229028 ], [ -82.000663225306226, 28.804403329240824 ], [ -82.000741038487362, 28.804427273038396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fraser Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000741038487362, 28.804427273038396 ], [ -82.00081205055406, 28.804450149357478 ], [ -82.000889405915558, 28.804480337970041 ], [ -82.000970536348817, 28.804515242917262 ], [ -82.001055438853939, 28.804564297863077 ], [ -82.00126109207892, 28.804694482854096 ], [ -82.001479009247845, 28.804826556004812 ], [ -82.001675229404995, 28.804944477086362 ], [ -82.001846920875835, 28.805048248021219 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fraser Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001846920875835, 28.805048248021219 ], [ -82.002022387652985, 28.80514824523312 ], [ -82.002153515893824, 28.805219942564907 ], [ -82.002248796119076, 28.805276544485757 ], [ -82.00235445272429, 28.805322769633133 ], [ -82.002480863450401, 28.805371825892465 ], [ -82.002548785799149, 28.805393522912848 ], [ -82.002599727869125, 28.805399183341486 ], [ -82.002716705807387, 28.805401071158801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zisa Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000741038487362, 28.804427273038396 ], [ -82.000843058068284, 28.804270781468404 ], [ -82.000889984397546, 28.804191211062552 ], [ -82.000918548038939, 28.804134083863854 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zisa Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000918548038939, 28.804134083863854 ], [ -82.001024644309808, 28.803813761165145 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Detwiler Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000918548038939, 28.804134083863854 ], [ -82.001075230175218, 28.804157578921068 ], [ -82.001301754588042, 28.804214210953862 ], [ -82.001422695058253, 28.804256445855255 ], [ -82.001565713300394, 28.804331314437363 ], [ -82.001653058328614, 28.804394664321894 ], [ -82.001735605112387, 28.804461853520081 ], [ -82.001802794836308, 28.804527123566071 ], [ -82.001856546374825, 28.804601991576497 ], [ -82.001895899485746, 28.804662461493276 ], [ -82.001936212374844, 28.80471237524339 ], [ -82.001978446996176, 28.804753647523473 ], [ -82.002043715897557, 28.80479588144178 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Strong Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001879887348949, 28.805000057990732 ], [ -82.002043715897557, 28.80479588144178 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Strong Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002043715897557, 28.80479588144178 ], [ -82.002259989292597, 28.80453760782278 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dalessandro Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003169691519844, 28.805909769214328 ], [ -82.003101274281875, 28.805862889900361 ], [ -82.003030322458613, 28.80580840861748 ], [ -82.00296317136646, 28.805753928137751 ], [ -82.002892219538282, 28.805693111650637 ], [ -82.002825068386869, 28.805629761376832 ], [ -82.00278072352738, 28.805577814149203 ], [ -82.002747781711889, 28.805527134489168 ], [ -82.002730044566391, 28.805476454602388 ], [ -82.002716705807387, 28.805401071158801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dalessandro Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002716705807387, 28.805401071158801 ], [ -82.002707238283733, 28.80532061395887 ], [ -82.002709772860683, 28.805280070348051 ], [ -82.002721175962193, 28.805240793455766 ], [ -82.00274398201995, 28.80520278324305 ], [ -82.002844076093893, 28.805072283106409 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017232253052228, 28.824069115792817 ], [ -82.017108238844799, 28.824140175992213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017072396355985, 28.824446821931094 ], [ -82.017093010507054, 28.824484485422147 ], [ -82.01713197804095, 28.824537411043586 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Okahumpka Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017108238844799, 28.824140175992213 ], [ -82.017001842719637, 28.824185190610663 ], [ -82.016960648409636, 28.824194063459565 ], [ -82.016918186076438, 28.824199344355577 ], [ -82.016856824452205, 28.824203091765789 ], [ -82.016808526597174, 28.82419976078414 ], [ -82.016760230519452, 28.824188102374901 ], [ -82.016713598675963, 28.82417144856862 ], [ -82.01666530261295, 28.824153129279985 ], [ -82.016620335794045, 28.82412981259494 ], [ -82.016583697839465, 28.824111493709715 ], [ -82.016530405034175, 28.824081516223604 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Okahumpka Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016530405034175, 28.824081516223604 ], [ -82.01649376660265, 28.824053204241064 ], [ -82.016440473348368, 28.824013234548577 ], [ -82.016407165716132, 28.823996579987899 ], [ -82.016363865013716, 28.823993249169128 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Okahumpka Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016363865013716, 28.823993249169128 ], [ -82.016362093319444, 28.824005811320948 ], [ -82.016364308024691, 28.824022641835626 ], [ -82.016370065308379, 28.824035930377097 ], [ -82.016375823820411, 28.824050546214771 ], [ -82.016384239160431, 28.82406516264664 ], [ -82.0164050578054, 28.824081993710394 ], [ -82.016483896969504, 28.824136474080834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Okahumpka Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016483896969504, 28.824136474080834 ], [ -82.016550424677547, 28.824172617318066 ], [ -82.016635617233447, 28.824211293814297 ], [ -82.01669154128993, 28.824234290684601 ], [ -82.016734920547009, 28.82424787973995 ], [ -82.016783527491796, 28.824261991499391 ], [ -82.016836315460367, 28.824279762508226 ], [ -82.016852645854328, 28.82428660367178 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Okahumpka Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016530405034175, 28.824081516223604 ], [ -82.016483896969504, 28.824136474080834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Okahumpka Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016363865013716, 28.823993249169128 ], [ -82.016310485428164, 28.823944263562502 ], [ -82.016243651148173, 28.823864530591052 ], [ -82.016195576133697, 28.823795349748767 ], [ -82.016155709808942, 28.823715616348874 ], [ -82.016126397562203, 28.823639399837077 ], [ -82.016105291810732, 28.823565530192671 ], [ -82.016099428878377, 28.823496349916244 ], [ -82.01609356566405, 28.823397856321566 ], [ -82.016092393900607, 28.823325157406146 ], [ -82.016098256505543, 28.82323487168426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Okahumpka Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016098256505543, 28.82323487168426 ], [ -82.016112329872485, 28.822642735076531 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Okahumpka Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016112329872485, 28.822642735076531 ], [ -82.016111157431595, 28.822572381254986 ], [ -82.016102950648573, 28.822471542812082 ], [ -82.016097088452682, 28.822400016519968 ], [ -82.016087707971323, 28.822329663628828 ], [ -82.01607246440679, 28.822256965397862 ], [ -82.016056048673065, 28.822170196685846 ], [ -82.016019459535656, 28.822047897313126 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Okahumpka Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016019459535656, 28.822047897313126 ], [ -82.015981938260964, 28.821961128268502 ], [ -82.015949348351825, 28.821894647082772 ], [ -82.015893066519595, 28.821791462603677 ], [ -82.01583067987319, 28.821678543765639 ], [ -82.015772052319193, 28.821591774306999 ], [ -82.015742738745374, 28.82154252771457 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Okahumpka Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015742738745374, 28.82154252771457 ], [ -82.015666364640609, 28.821457216505426 ], [ -82.015577251746194, 28.821363412310763 ], [ -82.015491654684794, 28.821286023387412 ], [ -82.01503632955378, 28.820930772652321 ], [ -82.014949035175292, 28.820836202682742 ], [ -82.014878368327629, 28.820737476682822 ], [ -82.014758364302224, 28.820529299308546 ], [ -82.014642937116733, 28.820235004922019 ], [ -82.014569749443297, 28.819969213676419 ], [ -82.01454086024259, 28.819678383280763 ], [ -82.014542786534832, 28.819458816849362 ], [ -82.014529305957311, 28.819281622644134 ], [ -82.014486932985974, 28.819160283446163 ], [ -82.014415670180654, 28.819044721039457 ], [ -82.014258412294438, 28.818879218060236 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drew Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015742738745374, 28.82154252771457 ], [ -82.015801806757622, 28.821510294257756 ], [ -82.015876894500366, 28.821473213579072 ], [ -82.015935296629635, 28.821449111750741 ], [ -82.015999261087984, 28.821424082597016 ], [ -82.016577719259715, 28.821236829209063 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drew Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016577719259715, 28.821236829209063 ], [ -82.017841068868009, 28.820810536062826 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drew Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017841068868009, 28.820810536062826 ], [ -82.017877221011346, 28.820796630500954 ], [ -82.017925426026949, 28.820780871857345 ], [ -82.017968069656547, 28.820771602413384 ], [ -82.018018128092578, 28.820767894745511 ], [ -82.018084873901444, 28.820764186721778 ], [ -82.018544360949733, 28.820791895506517 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drew Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018544360949733, 28.820791895506517 ], [ -82.018576849972618, 28.820800835813458 ], [ -82.018621998702841, 28.820821301440294 ], [ -82.018634256372053, 28.820842316408612 ], [ -82.018643011992964, 28.820880842959458 ], [ -82.018641261009108, 28.820928124206397 ], [ -82.01863425631322, 28.821006928329172 ], [ -82.018614992711619, 28.821104994770575 ], [ -82.018574714531638, 28.821231079789275 ], [ -82.018525680728104, 28.821360666907527 ], [ -82.018473143722375, 28.821460484572725 ], [ -82.018431115420412, 28.821534033712133 ], [ -82.018342589728846, 28.82165927408834 ], [ -82.018249653453395, 28.821799477972139 ], [ -82.018156717879023, 28.821945288739446 ], [ -82.018074196622166, 28.822070270098219 ], [ -82.018013082844362, 28.822181596728537 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drew Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018013082844362, 28.822181596728537 ], [ -82.017950888314729, 28.822276523996376 ], [ -82.017883237820953, 28.822384544434545 ], [ -82.017819952753243, 28.822466378368574 ], [ -82.017746846854251, 28.822554758860594 ], [ -82.017674833128012, 28.822631136657765 ], [ -82.017578812930083, 28.822714060958145 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drew Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017578812930083, 28.822714060958145 ], [ -82.017536258958458, 28.822756614649141 ], [ -82.01748824858845, 28.822796986317449 ], [ -82.0174435126346, 28.822836265769336 ], [ -82.017390047875779, 28.822874455391034 ], [ -82.017345311818389, 28.822907187654533 ], [ -82.017287482847934, 28.822943194183701 ], [ -82.017229871803991, 28.822971108752547 ], [ -82.017167163454587, 28.822993444036975 ], [ -82.017088989492549, 28.823020932448809 ], [ -82.016990201191419, 28.823046702594176 ], [ -82.016912887270308, 28.823070754807066 ], [ -82.016833855319831, 28.823096525177107 ], [ -82.01674022016212, 28.823125732323096 ], [ -82.016577003080769, 28.823182427409026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drew Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016577003080769, 28.823182427409026 ], [ -82.016528038503864, 28.823197890601527 ], [ -82.01646189268034, 28.823215929163617 ], [ -82.016403477729682, 28.823228814611348 ], [ -82.016352794949185, 28.823238263146632 ], [ -82.016302970371328, 28.82323826258239 ], [ -82.016207617391757, 28.823238261808935 ], [ -82.016098256505543, 28.82323487168426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Biggs Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016726688135492, 28.82356614019308 ], [ -82.016577003080769, 28.823182427409026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lightbody Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016112329872485, 28.822642735076531 ], [ -82.01617562813648, 28.822632219562546 ], [ -82.016244369702093, 28.822619127301103 ], [ -82.016321838300954, 28.822602760420008 ], [ -82.016944871508457, 28.822403088163263 ], [ -82.017013612987441, 28.822384539245839 ], [ -82.017074715938847, 28.822384539989315 ], [ -82.017125997283671, 28.822392178140589 ], [ -82.017176189685387, 28.822407454452833 ], [ -82.017207832765109, 28.82242273030278 ], [ -82.017241656901874, 28.822442371250947 ], [ -82.017281977011194, 28.822474744783186 ], [ -82.017578812930083, 28.822714060958145 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lennie Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016019459535656, 28.822047897313126 ], [ -82.016100443852409, 28.822022651436782 ], [ -82.017510752938946, 28.821572728474514 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lennie Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017510752938946, 28.821572728474514 ], [ -82.017556644771616, 28.82155654255622 ], [ -82.017599944752973, 28.821536403026258 ], [ -82.017639216061283, 28.82151022212291 ], [ -82.017666404530573, 28.821485048797921 ], [ -82.017697619816872, 28.821454840075468 ], [ -82.017732864012928, 28.821407513127436 ], [ -82.01775401029181, 28.821375290801313 ], [ -82.017782205580659, 28.821336019643734 ], [ -82.017809393009927, 28.821292721600585 ], [ -82.017823491292887, 28.821255463462581 ], [ -82.017844637216683, 28.821209143439408 ], [ -82.017858734637613, 28.821166851313151 ], [ -82.017877868408888, 28.821121538516582 ], [ -82.017886930218424, 28.821050044683229 ], [ -82.017888247947113, 28.820995434041709 ], [ -82.017880889086342, 28.820932230003642 ], [ -82.017869812802687, 28.82087986858653 ], [ -82.017841068868009, 28.820810536062826 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jill Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018013082844362, 28.822181596728537 ], [ -82.01797085357029, 28.822166195192533 ], [ -82.017917471742606, 28.822139504466218 ], [ -82.017876055018021, 28.822111893649978 ], [ -82.01784108148955, 28.82207507845024 ], [ -82.017788618996946, 28.822012491887193 ], [ -82.017710387372105, 28.821914932327569 ], [ -82.017633076465387, 28.821826575258669 ], [ -82.017604544731171, 28.821789760092102 ], [ -82.017584296392712, 28.821750183722063 ], [ -82.017560366681252, 28.821704165318497 ], [ -82.017524632009213, 28.82162271198241 ], [ -82.017510752938946, 28.821572728474514 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kinnaird Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018544360949733, 28.820791895506517 ], [ -82.018569358309875, 28.820505732878523 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cynthia Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016577719259715, 28.821236829209063 ], [ -82.016315201265044, 28.82064081214282 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cynthia Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016315201265044, 28.82064081214282 ], [ -82.016047352293612, 28.820078966478725 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cynthia Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016047352293612, 28.820078966478725 ], [ -82.015780050001652, 28.819508500405778 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cynthia Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015780050001652, 28.819508500405778 ], [ -82.015736043651316, 28.819417224942949 ], [ -82.0156789972052, 28.819301501923078 ], [ -82.015644768720506, 28.819233045660937 ], [ -82.015611801074229, 28.819133251131447 ], [ -82.015589353045726, 28.819057016548612 ], [ -82.015569794432764, 28.8189673724188 ], [ -82.015546976173695, 28.818859797942508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cynthia Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015546976173695, 28.818859797942508 ], [ -82.015525787838854, 28.818807641344115 ], [ -82.015416584719006, 28.818607162721143 ], [ -82.015266634930185, 28.818346377999973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Malone Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016315201265044, 28.82064081214282 ], [ -82.01637928270047, 28.820614038629259 ], [ -82.016572013503122, 28.820547114438234 ], [ -82.016748897061717, 28.820481331467786 ], [ -82.016924320833809, 28.820418472825374 ], [ -82.017105590966736, 28.820351228924498 ], [ -82.017259086139518, 28.820281061087233 ], [ -82.017406734234243, 28.820200660703918 ], [ -82.017561691496994, 28.82011441228255 ], [ -82.017722495931991, 28.820010622049445 ], [ -82.017894995123996, 28.819898060592188 ], [ -82.018085037007793, 28.81977526627557 ], [ -82.018172748169135, 28.819724101248585 ], [ -82.018209295320503, 28.819697788788165 ], [ -82.018229761518654, 28.819675860918618 ], [ -82.018239994096433, 28.819640776893159 ], [ -82.018238532181272, 28.81961153954391 ], [ -82.018231223288836, 28.819583764693299 ], [ -82.018215142273732, 28.819557451816532 ], [ -82.018181521213663, 28.819516519275865 ], [ -82.017752703689439, 28.819132792784213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Malone Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017752703689439, 28.819132792784213 ], [ -82.017265907508971, 28.818667921876024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Malone Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017265907508971, 28.818667921876024 ], [ -82.016878517554488, 28.818296610474331 ], [ -82.016855127893635, 28.818283453077125 ], [ -82.016820042340029, 28.818273219649747 ], [ -82.01678934327316, 28.818271757948377 ], [ -82.01675572103008, 28.818276143554204 ], [ -82.016726484007265, 28.818287838244807 ], [ -82.016700170724945, 28.818303917809491 ], [ -82.016670933453938, 28.818327308227943 ], [ -82.016591992937023, 28.818391627839485 ], [ -82.016533518284604, 28.818438407720429 ], [ -82.016464811553377, 28.818473491222669 ], [ -82.01638148563427, 28.818517346834177 ], [ -82.016286463699188, 28.818564124517067 ], [ -82.016182671948414, 28.818621136230771 ], [ -82.016052566538576, 28.818686918593041 ], [ -82.015978012148864, 28.818727850379009 ], [ -82.01589468641626, 28.818768781303064 ], [ -82.015836211948596, 28.818799479915508 ], [ -82.015777737613604, 28.818824330632943 ], [ -82.015720724619399, 28.81883748722845 ], [ -82.015659326264682, 28.818849181639969 ], [ -82.015546976173695, 28.818859797942508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Spitler Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016047352293612, 28.820078966478725 ], [ -82.016120574484759, 28.820043805082516 ], [ -82.016307016851641, 28.819985369105812 ], [ -82.016492067381989, 28.819918585767528 ], [ -82.01665346517774, 28.819850410895224 ], [ -82.016819036219943, 28.81977806034633 ], [ -82.01697069473245, 28.81970153808415 ], [ -82.017077829049839, 28.819643101523589 ], [ -82.017173831728698, 28.819587448955239 ], [ -82.017267053526353, 28.819524838046529 ], [ -82.017365839899739, 28.819451097301037 ], [ -82.017478540706918, 28.819357877502902 ], [ -82.017584283248055, 28.819275788467376 ], [ -82.017673330651334, 28.819202047806538 ], [ -82.017752703689439, 28.819132792784213 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lynette Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015780050001652, 28.819508500405778 ], [ -82.0159021354591, 28.81945108903691 ], [ -82.016034313894082, 28.819407958172935 ], [ -82.01621240759701, 28.819346738740506 ], [ -82.016382152663226, 28.819277173675026 ], [ -82.016535202774733, 28.819204823113921 ], [ -82.016672946674305, 28.81913247418478 ], [ -82.016773123928473, 28.819068473235838 ], [ -82.016884433849356, 28.818990558168654 ], [ -82.016999916138474, 28.818902902975701 ], [ -82.017137660495763, 28.818792987708569 ], [ -82.017265907508971, 28.818667921876024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Okahumpka Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014258412294438, 28.818879218060236 ], [ -82.014158407916796, 28.818810898813549 ], [ -82.014071502088186, 28.818737846487728 ], [ -82.014000970070498, 28.818666053928403 ], [ -82.013932957107542, 28.818582926269372 ], [ -82.013882576670269, 28.818513653633541 ], [ -82.013833456024045, 28.818440601080102 ], [ -82.013780556912295, 28.81831968855273 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Okahumpka Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013780556912295, 28.81831968855273 ], [ -82.013699949067203, 28.818144616608663 ], [ -82.013630675862217, 28.817999772717659 ], [ -82.01357021961914, 28.817875081043315 ], [ -82.013542510611941, 28.817802029049041 ], [ -82.013529916480081, 28.817750389238647 ], [ -82.013519840710515, 28.817715123407265 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Okahumpka Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013519840710515, 28.817715123407265 ], [ -82.013498428359341, 28.817655926678373 ], [ -82.013479535725821, 28.817582874738541 ], [ -82.013459384740116, 28.817499747720415 ], [ -82.013441752057886, 28.817407803088344 ], [ -82.013431675838874, 28.817327194366353 ], [ -82.013415301807285, 28.81725540270439 ], [ -82.013393891122107, 28.817183610608861 ], [ -82.013371219536964, 28.817130712096706 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Okahumpka Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013371219536964, 28.817130712096706 ], [ -82.013322004349078, 28.817013948743682 ], [ -82.013289283715508, 28.816949623394251 ], [ -82.013206346205038, 28.816827519641198 ], [ -82.01311188836857, 28.816700807889291 ], [ -82.013024342873138, 28.816578704440694 ], [ -82.01292067041345, 28.816440474495213 ], [ -82.012823910245629, 28.816297634849015 ], [ -82.012704109189983, 28.816143278278737 ], [ -82.012637299082968, 28.816046515917613 ], [ -82.012593525874962, 28.815968185701983 ], [ -82.012547449267998, 28.815878335877834 ], [ -82.012505980827854, 28.815786182037773 ], [ -82.012473727568576, 28.815680205796195 ], [ -82.012441473614388, 28.815576532240957 ], [ -82.012402309353604, 28.815500505156546 ], [ -82.012333193717495, 28.815403743735548 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Okahumpka Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012333193717495, 28.815403743735548 ], [ -82.012194964171115, 28.815258601758494 ], [ -82.012084379068071, 28.81514340951162 ], [ -82.011987618386357, 28.815048951114459 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Okahumpka Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011987618386357, 28.815048951114459 ], [ -82.011951399714235, 28.815006047459978 ], [ -82.011915467144064, 28.81494657284231 ], [ -82.01187581717042, 28.814873467318012 ], [ -82.011843602089883, 28.814799123201375 ], [ -82.011818820433078, 28.814738409670472 ], [ -82.011781648875683, 28.814655392935737 ], [ -82.011751912907698, 28.814558746186094 ], [ -82.011734565374852, 28.814489358122128 ], [ -82.011717218978177, 28.814411297047357 ], [ -82.011711024638501, 28.814334475742449 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Okahumpka Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011711024638501, 28.814334475742449 ], [ -82.011702350881961, 28.814266326742924 ], [ -82.011688720740963, 28.814190744007462 ], [ -82.011689960019822, 28.814130030143641 ], [ -82.011694917141142, 28.81403957853221 ], [ -82.011694918446295, 28.813956562359103 ], [ -82.011668363531825, 28.813685061983801 ], [ -82.011612215829942, 28.813471702548494 ], [ -82.011511151968094, 28.813240376247286 ], [ -82.011394365585502, 28.813049473713257 ], [ -82.011223678353417, 28.812858572550379 ], [ -82.011079941224253, 28.812737294106768 ], [ -82.01058969008993, 28.812375805449541 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Youngmann Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015266634930185, 28.818346377999973 ], [ -82.014973021784101, 28.818470525569609 ], [ -82.014775817274028, 28.818558434781551 ], [ -82.014559604538505, 28.818652283750815 ], [ -82.014464565761315, 28.818695050288735 ], [ -82.014426550892821, 28.818714057690872 ], [ -82.014393287859036, 28.818740191947402 ], [ -82.01435883521556, 28.818773456367584 ], [ -82.01430656428677, 28.81882929023897 ], [ -82.014258412294438, 28.818879218060236 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Youngmann Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015818429405968, 28.817313835919521 ], [ -82.015879291132165, 28.817344647512627 ], [ -82.015942434781635, 28.81738382774628 ], [ -82.016023255534222, 28.817440090288809 ], [ -82.016133547254285, 28.817542027966937 ], [ -82.016173652941049, 28.817580462698114 ], [ -82.016207075001844, 28.817615556026247 ], [ -82.0162287987485, 28.817650648882537 ], [ -82.016242168026778, 28.817697439337142 ], [ -82.016247180051906, 28.817737544632902 ], [ -82.016242167568819, 28.817789348624071 ], [ -82.016228797778012, 28.817847836079864 ], [ -82.016208745104933, 28.817887943344317 ], [ -82.016170309582208, 28.81793306142799 ], [ -82.016131874342378, 28.817959798545996 ], [ -82.015266634930185, 28.818346377999973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Youngmann Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013519840710515, 28.817715123407265 ], [ -82.013652384687944, 28.817679784474358 ], [ -82.013754592513521, 28.817651710125954 ], [ -82.0138398174836, 28.817624973668092 ], [ -82.013955123511863, 28.817576512008838 ], [ -82.015026295038069, 28.81706182557933 ], [ -82.015086453448646, 28.817033417195283 ], [ -82.015134915760783, 28.817013364518942 ], [ -82.015178363844996, 28.816999995771212 ], [ -82.015218470558622, 28.816991640601909 ], [ -82.015256906391187, 28.816991640990956 ], [ -82.015302025023374, 28.816996654786021 ], [ -82.015347143897898, 28.817003338741834 ], [ -82.015387251416271, 28.817015036460134 ], [ -82.015430698830897, 28.817040103330964 ], [ -82.015492529034432, 28.817081880768445 ], [ -82.015579425142633, 28.817147053228094 ], [ -82.0157064286512, 28.817235621702796 ], [ -82.015818429405968, 28.817313835919521 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Manisha Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013780556912295, 28.81831968855273 ], [ -82.013922174925682, 28.818259513304181 ], [ -82.014119094934642, 28.818180747567215 ], [ -82.01555423941798, 28.817520688112666 ], [ -82.015645609058211, 28.817479729436574 ], [ -82.015718766335567, 28.817432516100993 ], [ -82.015767456620125, 28.817387630700985 ], [ -82.015818429405968, 28.817313835919521 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Daughtry Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011711024638501, 28.814334475742449 ], [ -82.011799926436439, 28.814326157323332 ], [ -82.012553723435687, 28.814365834961688 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Topping Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011165144076514, 28.815112636187916 ], [ -82.011457758682766, 28.815145302222732 ], [ -82.011557111581155, 28.815158231640797 ], [ -82.011630605714885, 28.815164356943036 ], [ -82.011696614436147, 28.815168439981171 ], [ -82.011744249345966, 28.815163676427836 ], [ -82.011798836118345, 28.815153586854102 ], [ -82.011849727367732, 28.81513373546645 ], [ -82.011888267679694, 28.815111687050077 ], [ -82.011931419864013, 28.815084794639333 ], [ -82.011987618386357, 28.815048951114459 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Topping Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011987618386357, 28.815048951114459 ], [ -82.01206725842475, 28.814998200340806 ], [ -82.012182929652013, 28.814944957002641 ], [ -82.012297681171574, 28.814904565249975 ], [ -82.012398662093801, 28.814874271440019 ], [ -82.012473021559984, 28.81486050116866 ], [ -82.012574004159518, 28.814836633481686 ], [ -82.012656625341862, 28.814822864190795 ], [ -82.01270436193272, 28.814804503375083 ], [ -82.012747510307264, 28.814774209895432 ], [ -82.012959572375479, 28.814602542598934 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Topping Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012959572375479, 28.814602542598934 ], [ -82.01306023035184, 28.814565922224627 ], [ -82.013146413330603, 28.814500019522399 ], [ -82.013245269708634, 28.814418907151918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Topping Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013245269708634, 28.814418907151918 ], [ -82.013498515298153, 28.814201378870965 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Topping Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013498515298153, 28.814201378870965 ], [ -82.013582796693768, 28.814131279421137 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Topping Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01352370052615, 28.814074497209745 ], [ -82.013441745279536, 28.814148515139046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Topping Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013441745279536, 28.814148515139046 ], [ -82.013192801273547, 28.814362878516629 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Topping Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013192801273547, 28.814362878516629 ], [ -82.01299992900941, 28.814523070667324 ], [ -82.012959572375479, 28.814602542598934 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017503146343245, 28.824134887826649 ], [ -82.017497462888343, 28.824034909081767 ], [ -82.017534112168676, 28.823896032848495 ], [ -82.017622838727405, 28.823734975854862 ], [ -82.017750144016873, 28.823570060182426 ], [ -82.018066476844808, 28.823246982465623 ], [ -82.018242967539734, 28.823030953207191 ], [ -82.018454176532117, 28.822739699960614 ], [ -82.018950857156696, 28.822043390422248 ], [ -82.019071411858803, 28.821869795969057 ], [ -82.019263332978525, 28.821484993500437 ], [ -82.019354954212289, 28.821175416601843 ], [ -82.019394497164768, 28.820898627732952 ], [ -82.019405107314213, 28.82059097844532 ], [ -82.019353030286325, 28.820230285605728 ], [ -82.019263339785013, 28.819922634743545 ], [ -82.019086851985506, 28.819556154209213 ], [ -82.018880466091417, 28.819274543273139 ], [ -82.018644184032354, 28.819031507908019 ], [ -82.018200550680632, 28.818611982927365 ], [ -82.017223593449515, 28.817680348934392 ], [ -82.016686412382683, 28.817178847268345 ], [ -82.016534997947389, 28.817008144390595 ], [ -82.016354651141796, 28.816765110097652 ], [ -82.01616958253743, 28.816552649064516 ], [ -82.015951524055538, 28.816371624360563 ], [ -82.015717376607469, 28.816216080514774 ], [ -82.015522357235923, 28.816105442667496 ], [ -82.015338152803437, 28.815962706391623 ], [ -82.01515298448173, 28.815781395300604 ], [ -82.015018929734211, 28.815607798727136 ], [ -82.0147932556375, 28.815261570744703 ], [ -82.01462834119161, 28.815079294039553 ], [ -82.014226177428455, 28.814698346846978 ], [ -82.013905990078044, 28.814441809151845 ], [ -82.013582796693768, 28.814131279421137 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013582796693768, 28.814131279421137 ], [ -82.01352370052615, 28.814074497209745 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013498515298153, 28.814201378870965 ], [ -82.013935886638379, 28.814608653351243 ], [ -82.014167346845653, 28.81479671716011 ], [ -82.014528040489111, 28.815136194967536 ], [ -82.01467848957347, 28.815296289085847 ], [ -82.014793254746976, 28.815464098791015 ], [ -82.014931166168267, 28.815681094504765 ], [ -82.015052683392554, 28.815838295710929 ], [ -82.015186738038111, 28.815972351208682 ], [ -82.015379621660941, 28.816154626884089 ], [ -82.015483779313712, 28.816290609940893 ], [ -82.015598544630109, 28.816464206349199 ], [ -82.015755744712607, 28.816630087707914 ], [ -82.015949593533946, 28.816791147326228 ], [ -82.016189735143499, 28.816939668291333 ], [ -82.016375867849092, 28.817050578682565 ], [ -82.016604435298078, 28.817245391448807 ], [ -82.017541850822894, 28.818135556643551 ], [ -82.018023096239233, 28.818597516454343 ], [ -82.018541954688288, 28.819089372101544 ], [ -82.018695296859249, 28.819238858204741 ], [ -82.018917269566273, 28.819506410248344 ], [ -82.01906274061362, 28.819762540050526 ], [ -82.019172683075126, 28.820018112399108 ], [ -82.019258515936215, 28.820354695498587 ], [ -82.019286482854199, 28.820639197963452 ], [ -82.019276837267768, 28.820922738302198 ], [ -82.019240188315649, 28.821147447246005 ], [ -82.019171713829621, 28.821397231185916 ], [ -82.019069483167655, 28.821637371274651 ], [ -82.018968218909023, 28.821811930404696 ], [ -82.018667316291001, 28.822245917391708 ], [ -82.018406920052485, 28.822603716423835 ], [ -82.018323015630941, 28.822724267765718 ], [ -82.018189923957934, 28.822887254704241 ], [ -82.018025970667182, 28.823061813066364 ], [ -82.017883236692484, 28.823194902916462 ], [ -82.017743393613273, 28.8233144891934 ], [ -82.017583299632577, 28.823476510742687 ], [ -82.017445386691648, 28.823668429172862 ], [ -82.017329654573132, 28.823882529806927 ], [ -82.017293969614627, 28.823973185569187 ], [ -82.017268419075961, 28.824025737374182 ], [ -82.017232253052228, 28.824069115792817 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013441745279536, 28.814148515139046 ], [ -82.013498515298153, 28.814201378870965 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Topping Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013192801273547, 28.814362878516629 ], [ -82.013245269708634, 28.814418907151918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wittman Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013371219536964, 28.817130712096706 ], [ -82.013439492817071, 28.817110307177742 ], [ -82.013512606751675, 28.817087487185329 ], [ -82.013584033370208, 28.817065810540434 ], [ -82.013643079732603, 28.817047222744833 ], [ -82.01373383499228, 28.817014419593953 ], [ -82.013838807061404, 28.816959748423599 ], [ -82.013921909010961, 28.816920385191029 ], [ -82.014026879863124, 28.816865712971811 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wittman Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014026879863124, 28.816865712971811 ], [ -82.014884146115193, 28.816458956649722 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pivanka Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014026879863124, 28.816865712971811 ], [ -82.013995821021965, 28.816788424140871 ], [ -82.013712102998028, 28.816349845037916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pivanka Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013712102998028, 28.816349845037916 ], [ -82.013530102712963, 28.816128322677734 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rich Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013712102998028, 28.816349845037916 ], [ -82.013753925934779, 28.816319326694792 ], [ -82.014501095405095, 28.815966659681173 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rich Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014501095405095, 28.815966659681173 ], [ -82.014789464424723, 28.815825722558586 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shumate Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015046671928403, 28.816692818319691 ], [ -82.014884146115193, 28.816458956649722 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shumate Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014884146115193, 28.816458956649722 ], [ -82.014501095405095, 28.815966659681173 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elin Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012333193717495, 28.815403743735548 ], [ -82.012407581139811, 28.815380236668041 ], [ -82.012449253270191, 28.815356949852411 ], [ -82.012506859006564, 28.815334887878333 ], [ -82.012564463380571, 28.815318955273522 ], [ -82.012613489924789, 28.81530792474689 ], [ -82.012664967419212, 28.815299346465729 ], [ -82.01271889721265, 28.815278510964824 ], [ -82.012786306720912, 28.815249095076187 ], [ -82.012848815435703, 28.815216003580545 ], [ -82.01293706201146, 28.815180459964765 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elin Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01293706201146, 28.815180459964765 ], [ -82.01300815017315, 28.815140014694528 ], [ -82.013095170985522, 28.815093440342878 ], [ -82.01315767820644, 28.815066477195529 ], [ -82.013228766530517, 28.81503706255225 ], [ -82.013292498986701, 28.815001519160418 ], [ -82.013343976288724, 28.814959847487003 ], [ -82.013395453967007, 28.814913274444066 ], [ -82.013434674529236, 28.81487773056914 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Elin Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013434674529236, 28.81487773056914 ], [ -82.013635681508006, 28.814660793439046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Angela Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01351724149194, 28.816110305662001 ], [ -82.013369581739468, 28.815858615596802 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Angela Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013369581739468, 28.815858615596802 ], [ -82.012993440809666, 28.815249096319651 ], [ -82.01293706201146, 28.815180459964765 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tiffany Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013369581739468, 28.815858615596802 ], [ -82.01400961706031, 28.815561161879401 ], [ -82.01403167480612, 28.815542147134096 ], [ -82.01406285880573, 28.815513244872978 ], [ -82.014098606874924, 28.815482820858726 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Noreen Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014349735023444, 28.815707979963861 ], [ -82.014098606874924, 28.815482820858726 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Noreen Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014098606874924, 28.815482820858726 ], [ -82.014042593353267, 28.81541701548068 ], [ -82.013505762003945, 28.814916951819466 ], [ -82.013434674529236, 28.81487773056914 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Okahumpka Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01058969008993, 28.812375805449541 ], [ -82.010153370539754, 28.812033144279038 ], [ -82.010112956892385, 28.812007740717789 ], [ -82.010074853119406, 28.811989265829499 ], [ -82.010033284830158, 28.811974254236901 ], [ -82.009992870769565, 28.811966171397042 ], [ -82.009948992997465, 28.811959242836068 ], [ -82.009900497428461, 28.811959242515314 ], [ -82.009342786896497, 28.811992725035452 ], [ -82.009178979407352, 28.812009055432895 ], [ -82.009113464687402, 28.812019186131575 ], [ -82.009048624046144, 28.812028979292894 ], [ -82.008995267066339, 28.812039785018914 ], [ -82.008942113197222, 28.812053921140603 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landrea Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009072590154787, 28.812624330567175 ], [ -82.00907605474643, 28.812534265308727 ], [ -82.009076054494884, 28.812456902992597 ], [ -82.009069126524665, 28.812403787093277 ], [ -82.009054116159462, 28.812336816708054 ], [ -82.009037950843449, 28.812277928388554 ], [ -82.009014857958888, 28.812207492716819 ], [ -82.008987144712549, 28.812138211377103 ], [ -82.008942113197222, 28.812053921140603 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landrea Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007367304416206, 28.811168208711322 ], [ -82.007250463283142, 28.811258814505223 ], [ -82.007084819826431, 28.811405702325452 ], [ -82.007000435413602, 28.811501023660153 ], [ -82.006983246353613, 28.811547904013725 ], [ -82.006978558533717, 28.811601034097954 ], [ -82.006978558301768, 28.811646350856435 ], [ -82.006991058552387, 28.811685418536594 ], [ -82.007012936697677, 28.811735422691868 ], [ -82.007045752074092, 28.811780739732772 ], [ -82.007389536692671, 28.812180782664168 ], [ -82.00766047585256, 28.812509733562983 ], [ -82.007706158194154, 28.812550995697734 ], [ -82.007752577180824, 28.812577521239895 ], [ -82.007793838168453, 28.812594468103821 ], [ -82.007840258043586, 28.812604046415615 ], [ -82.007902886430358, 28.81261141499926 ], [ -82.008373711207312, 28.812612891645795 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landrea Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008942113197222, 28.812053921140603 ], [ -82.008081305519951, 28.811014355902767 ], [ -82.008037550236821, 28.810979976608809 ], [ -82.007995358116531, 28.810956536834627 ], [ -82.007954729719089, 28.810937784469299 ], [ -82.00791097425045, 28.810928408170074 ], [ -82.007859407414188, 28.810923719772266 ], [ -82.007814089587697, 28.810928407844269 ], [ -82.007760959461407, 28.810939346613598 ], [ -82.007706264778932, 28.81096278605818 ], [ -82.007653134787802, 28.810990913808471 ], [ -82.007456238902748, 28.811101861024603 ], [ -82.007367304416206, 28.811168208711322 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landrea Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008373711207312, 28.812612891645795 ], [ -82.009072590154787, 28.812624330567175 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landrea Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009072590154787, 28.812624330567175 ], [ -82.010203211777537, 28.812673980826176 ], [ -82.010240390539536, 28.812668955961577 ], [ -82.010288622742948, 28.812653883980694 ], [ -82.010331832151778, 28.812631777924373 ], [ -82.010374034716151, 28.812601633239971 ], [ -82.01043834547346, 28.812544356282839 ], [ -82.010506675684027, 28.812469999165668 ], [ -82.01058969008993, 28.812375805449541 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lacourse Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008373711207312, 28.812612891645795 ], [ -82.008378300293515, 28.81250956508002 ], [ -82.008382180471642, 28.812433897083544 ], [ -82.008366659103615, 28.812377632567188 ], [ -82.008331736206998, 28.812313605655046 ], [ -82.008279350469365, 28.81224569796483 ], [ -82.007428418685194, 28.811235897978943 ], [ -82.007367304416206, 28.811168208711322 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 7th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093196886687039, 28.684735615940298 ], [ -82.093229044940841, 28.684450483712506 ], [ -82.093295504393069, 28.684225379958182 ], [ -82.093336237815137, 28.68383948668545 ], [ -82.093302516383474, 28.683509898239464 ], [ -82.093287373440901, 28.683057025170005 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 552", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.095995277752067, 28.657535498920733 ], [ -82.09428419374153, 28.657635424167598 ], [ -82.094157429211734, 28.657652239008293 ], [ -82.094119918047056, 28.657681988628568 ], [ -82.094097927989097, 28.657714327180301 ], [ -82.094079819443465, 28.657759598919309 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 46th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181877334047826, 28.579666927732124 ], [ -82.181828342061067, 28.579545427647467 ], [ -82.181804826201741, 28.579276950625172 ], [ -82.181771229411154, 28.57905200613148 ], [ -82.181798947699761, 28.578906569224031 ], [ -82.18176955341022, 28.578745874960902 ], [ -82.18177543195398, 28.57854402741799 ], [ -82.181773472729461, 28.578359817592784 ], [ -82.181773472806256, 28.57820696157323 ], [ -82.18178523100724, 28.578044307568916 ], [ -82.181799204628973, 28.577907411600005 ], [ -82.181800909426002, 28.577728798617958 ], [ -82.181812667044127, 28.57752303064272 ], [ -82.181820507142362, 28.577334900574581 ], [ -82.181844023437563, 28.577150691025913 ], [ -82.181862671829464, 28.577002722459184 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 121st Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.181877334047826, 28.579666927732124 ], [ -82.181947883536139, 28.579692404176058 ], [ -82.182030072704734, 28.579693196789691 ], [ -82.182251795632936, 28.579704981089954 ], [ -82.1825555983432, 28.579699742513604 ], [ -82.182695192666685, 28.579701971963249 ], [ -82.182837509965779, 28.579696949096434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 674", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147116565398363, 28.616375486215574 ], [ -82.147124944230313, 28.612492022771402 ], [ -82.147116008361849, 28.611787986625679 ], [ -82.147121552602215, 28.610309809550092 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 129th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.17681751853155, 28.568468589762698 ], [ -82.177001653708857, 28.56855404833934 ], [ -82.17714605826049, 28.568637843829329 ], [ -82.17737972547755, 28.568754439703206 ], [ -82.177481565572805, 28.568806911165286 ], [ -82.177570819356959, 28.568833867104519 ], [ -82.177640537008443, 28.56884854136073 ], [ -82.177707455441876, 28.568855529449618 ], [ -82.177843356767539, 28.568855352270099 ], [ -82.178087245621455, 28.568833501316455 ], [ -82.178233586733015, 28.568824080029774 ], [ -82.178393902892012, 28.568836175655147 ], [ -82.178613471152659, 28.568857422667833 ], [ -82.17880171693686, 28.56890024304678 ], [ -82.179017807193731, 28.568924570959595 ], [ -82.179418663488448, 28.568994797813158 ], [ -82.179585985464385, 28.569028418161341 ], [ -82.179788158251426, 28.569065066641215 ], [ -82.179892688335599, 28.569058776586477 ], [ -82.180047598762641, 28.569013073207643 ], [ -82.18023033179422, 28.568992745602941 ], [ -82.180544284486302, 28.568957050387791 ], [ -82.180818879404541, 28.568834399895408 ], [ -82.181206139613025, 28.568900146725174 ], [ -82.181303762777233, 28.568930778768866 ], [ -82.181394459296442, 28.568986032301982 ], [ -82.181906631156778, 28.569347866766332 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 623", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.176347929017368, 28.646132577162216 ], [ -82.176335077297395, 28.645507607327929 ], [ -82.176328745404092, 28.642744772027999 ], [ -82.176319571552881, 28.641808928351146 ], [ -82.176305809658288, 28.640944189061386 ], [ -82.176296635724071, 28.640194137717643 ], [ -82.176305809997231, 28.639962470272422 ], [ -82.176308104840331, 28.639856958167176 ], [ -82.176310398618611, 28.639778970890287 ], [ -82.176317279730313, 28.639700983988899 ], [ -82.176323935407751, 28.639628876091212 ], [ -82.176340578683309, 28.639549309189363 ], [ -82.176373969261462, 28.639453071608234 ], [ -82.176415757159972, 28.639364222286346 ], [ -82.176468025680037, 28.639271657989742 ], [ -82.176530755231155, 28.639166133405862 ], [ -82.176578862042604, 28.639093924824152 ], [ -82.17662489265588, 28.639032819444889 ], [ -82.176703464458384, 28.638934161752175 ], [ -82.176777667676632, 28.638855029901219 ], [ -82.176857219237093, 28.638777231030247 ], [ -82.17693468531067, 28.638706833068092 ], [ -82.177058238333487, 28.63860862652977 ], [ -82.177167159496534, 28.638540038218185 ], [ -82.177278197959041, 28.638482548492238 ], [ -82.177445820388854, 28.638406483467453 ], [ -82.177619749399966, 28.638339660749303 ], [ -82.177789503404583, 28.638283942884815 ], [ -82.178049398334096, 28.63821515575054 ], [ -82.17849795546914, 28.638112824757787 ], [ -82.179068066788204, 28.637971483335438 ], [ -82.17951871334391, 28.637865445741181 ], [ -82.179621412226382, 28.63783756168587 ], [ -82.17969476104507, 28.637813415865086 ], [ -82.179755535737172, 28.637792987082303 ], [ -82.179805826742481, 28.637772571214743 ], [ -82.179864483694175, 28.637741045553906 ], [ -82.179914757862875, 28.63771138073189 ], [ -82.179983854604941, 28.637659559434688 ], [ -82.1800822834754, 28.637579816248781 ], [ -82.180180368891854, 28.637496686078769 ], [ -82.180320980305638, 28.637377861792483 ], [ -82.180666454608414, 28.637081418896607 ], [ -82.180775113704641, 28.63697677341607 ], [ -82.180867104580088, 28.636878329182398 ], [ -82.181137391827065, 28.6365831705969 ], [ -82.181432459958074, 28.636242395167432 ], [ -82.181878195596411, 28.635725678150461 ], [ -82.183115806707974, 28.634313739253091 ], [ -82.183212659889364, 28.634213221416015 ], [ -82.183307203175161, 28.634127835177914 ], [ -82.183416436578881, 28.634042053713241 ], [ -82.183496014992357, 28.633984600351734 ], [ -82.183598628590374, 28.633910465985906 ], [ -82.183715907783352, 28.633828910797167 ], [ -82.183877175616317, 28.633723249763595 ], [ -82.184084510156296, 28.633582378482139 ], [ -82.18425832245471, 28.633454498062424 ], [ -82.1845242528656, 28.633248798793339 ], [ -82.184695928772243, 28.633100574838423 ], [ -82.184875315497507, 28.632941698948812 ], [ -82.185006420111705, 28.632819820134973 ], [ -82.185125056827275, 28.632694864036523 ], [ -82.18528618615035, 28.632511504077694 ], [ -82.185482869745684, 28.632278147595503 ], [ -82.185618856883877, 28.632105922018134 ], [ -82.185782047485915, 28.631904058958909 ], [ -82.186066588225771, 28.631554039610169 ], [ -82.186198411878706, 28.631400317014737 ], [ -82.186334413050332, 28.631237340530525 ], [ -82.18644947619849, 28.631091039777615 ], [ -82.186522686985271, 28.630992895285775 ], [ -82.186608466167897, 28.630887332568321 ], [ -82.18667538791054, 28.630789196611339 ], [ -82.186736005643638, 28.630683669208825 ], [ -82.186796612208539, 28.630570742637875 ], [ -82.186861354101083, 28.630426360342707 ], [ -82.186898829396668, 28.630276466981176 ], [ -82.18691533551592, 28.630124752605802 ], [ -82.186917097997977, 28.629936059979237 ], [ -82.186920812924285, 28.629665967631393 ], [ -82.186933481542013, 28.629420607745136 ], [ -82.186927867535033, 28.629210189751785 ], [ -82.186911751316714, 28.628988222730236 ], [ -82.186906124076827, 28.628770867579377 ], [ -82.186897893060717, 28.628562764039948 ], [ -82.18689235593358, 28.628396280667644 ], [ -82.186886848500691, 28.628245983359339 ], [ -82.186881263314589, 28.62805175139713 ], [ -82.186875575825795, 28.627799710486649 ], [ -82.186880547009707, 28.627647085192326 ], [ -82.186893901988199, 28.627385690678874 ], [ -82.186952865051353, 28.627045768165853 ], [ -82.187110890197872, 28.626004981103677 ], [ -82.187136840261687, 28.625859264997779 ], [ -82.187147040952695, 28.625699697104682 ], [ -82.187123285865468, 28.625604922140202 ], [ -82.18708643033429, 28.625512476956665 ], [ -82.187041713558074, 28.62542004346254 ], [ -82.187004907312456, 28.625355348649464 ], [ -82.186739893810952, 28.625036854513571 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 65th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997579012080962, 28.675397812593914 ], [ -81.997529874456433, 28.675388725133523 ], [ -81.997485653576462, 28.675363131391432 ], [ -81.997460778145211, 28.675324130278145 ], [ -81.997452487428788, 28.675280257810641 ], [ -81.997451106869903, 28.675208352728024 ], [ -81.997460783537335, 28.675101103516283 ], [ -81.997459196248187, 28.674481310352782 ], [ -81.997268734277966, 28.674250755867085 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vermont Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994150141706839, 28.647038021611394 ], [ -81.994142575275092, 28.646634105854623 ], [ -81.994124887314101, 28.646250271104655 ], [ -81.99414766076876, 28.646161009434767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Georgia Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999583922773425, 28.649909898531309 ], [ -81.99958655635217, 28.650276746693418 ], [ -81.999599202686056, 28.650834641873601 ], [ -81.9996307961909, 28.651349869265538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 564B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071372540560347, 28.68303703129304 ], [ -82.071316266499807, 28.683028039984709 ], [ -82.071272770734367, 28.68300099629074 ], [ -82.071252288181327, 28.682967177649434 ], [ -82.071254815245979, 28.682924321929207 ], [ -82.0712726863066, 28.682874695259109 ], [ -82.071298219906396, 28.682813785462489 ], [ -82.071341638222606, 28.682723547811989 ], [ -82.071364593794513, 28.682633320803259 ], [ -82.071377309868339, 28.682525055208508 ], [ -82.071374685569168, 28.682425819106872 ], [ -82.071349003922492, 28.682272465971849 ], [ -82.071361658859701, 28.682073986242177 ], [ -82.071361571776734, 28.68194542846463 ], [ -82.071374269940563, 28.681812353273468 ], [ -82.071343363368555, 28.681496614812293 ], [ -82.07133817598401, 28.681388358521552 ], [ -82.071320208511651, 28.68129364204362 ], [ -82.071276622412284, 28.681133531602697 ], [ -82.071263936713549, 28.681033994820176 ], [ -82.071261178351563, 28.680920895346329 ], [ -82.071255959196264, 28.680833574950174 ], [ -82.071266140512975, 28.680761397590572 ], [ -82.071273754618758, 28.680675689301879 ], [ -82.071280488021372, 28.680286438109608 ], [ -82.071288763265528, 28.680184373811798 ], [ -82.071330141965277, 28.68007403324857 ], [ -82.071379794350364, 28.679994036474181 ], [ -82.071404621229448, 28.679903006275648 ], [ -82.071396345254612, 28.679795424709951 ], [ -82.071332900187002, 28.679621636226681 ], [ -82.071242150222346, 28.679322469410298 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Warnell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074959930103844, 28.792647370477422 ], [ -82.075326031660367, 28.791875035214236 ], [ -82.076360981754164, 28.789645133441862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Warnell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076360981754164, 28.789645133441862 ], [ -82.07648972922334, 28.78936084105781 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 514", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.082853845453997, 28.799868100879124 ], [ -82.081686936971437, 28.799869847183732 ], [ -82.081126934059199, 28.799873729406002 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 56th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013229117540874, 28.677260890090171 ], [ -82.013259851017153, 28.677106977414088 ], [ -82.013252038156409, 28.675414837398165 ], [ -82.013271219990884, 28.675370285695351 ], [ -82.013332478935936, 28.675337491122075 ], [ -82.013434575686176, 28.675330686223024 ], [ -82.013889504755156, 28.675376806564593 ], [ -82.014311704300212, 28.675371290862923 ], [ -82.015328572343535, 28.675382335320855 ], [ -82.015342935840621, 28.673211545836399 ], [ -82.015321520474757, 28.671691070711802 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rutland Ranch Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.193142762174048, 28.857704789758543 ], [ -82.195114687544361, 28.857105746732124 ], [ -82.195339026112066, 28.85705225148094 ], [ -82.195418230196196, 28.857054024736779 ], [ -82.195495660015951, 28.857086534632746 ], [ -82.195568327886264, 28.857171733020181 ], [ -82.195689297280921, 28.85736418643021 ], [ -82.19596242199556, 28.85787017601292 ], [ -82.196115895275511, 28.85815927954604 ], [ -82.196240815883769, 28.858334169757395 ], [ -82.196416670171615, 28.858493450134908 ], [ -82.196802889479898, 28.858725183176702 ], [ -82.196940584732118, 28.858819219862756 ], [ -82.197068204567131, 28.858926690072579 ], [ -82.197108505667302, 28.859010650758208 ], [ -82.197176428118055, 28.859324005988238 ], [ -82.197126495409933, 28.859605968695199 ], [ -82.197041317158551, 28.859796881183506 ], [ -82.197029566641874, 28.859970170380176 ], [ -82.197079497848804, 28.860222763027867 ], [ -82.197170546726468, 28.860519413639242 ], [ -82.197258659403985, 28.860686830382519 ], [ -82.19743782370513, 28.860951170904038 ], [ -82.197516994920065, 28.861334418653577 ], [ -82.197588374772565, 28.861769858548207 ], [ -82.197645480940096, 28.861848379792626 ], [ -82.197831077673868, 28.862119638183653 ], [ -82.19809519748334, 28.86243372535365 ], [ -82.198295069256332, 28.86274067514627 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Industrial Park Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.082853845453997, 28.799868100879124 ], [ -82.082853282423159, 28.799019982143406 ], [ -82.082814973350764, 28.798678676486766 ], [ -82.082752285748981, 28.798400060130241 ], [ -82.082700045596852, 28.798250303668645 ], [ -82.082588600387254, 28.797999546765336 ], [ -82.082445809383984, 28.797738343710876 ], [ -82.082222915423273, 28.797438828860702 ], [ -82.081804990195906, 28.796958212363993 ], [ -82.080572111098988, 28.795546791000532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holland Pkwy", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.079258194934582, 28.792959876819065 ], [ -82.079775225676727, 28.792914887576185 ], [ -82.0801333931974, 28.792892096406092 ], [ -82.080602267376463, 28.792963733532652 ], [ -82.081318601221398, 28.792983273826074 ], [ -82.08177445064635, 28.792944203684122 ], [ -82.082008887174709, 28.792879083837036 ], [ -82.082243326701118, 28.792781403657312 ], [ -82.082474507729117, 28.792625115372203 ], [ -82.082666616483735, 28.792452546504958 ], [ -82.082829420869544, 28.792224622986428 ], [ -82.0829140795895, 28.792029260707718 ], [ -82.082969433815506, 28.791846923029606 ], [ -82.082992225950349, 28.791700400763091 ], [ -82.08292711311509, 28.790257971760731 ], [ -82.082901066913095, 28.789561176962632 ], [ -82.082865252786092, 28.789264876655039 ], [ -82.082829436163109, 28.789089050365948 ], [ -82.082731755333072, 28.788864382434554 ], [ -82.082432199972644, 28.78840527683861 ], [ -82.082256373659021, 28.788141535075344 ], [ -82.082096827448311, 28.787799650226177 ], [ -82.081973097879782, 28.787522885207146 ], [ -82.08169942995832, 28.786617372890742 ], [ -82.081631217526592, 28.786357218308261 ], [ -82.081553072590097, 28.786057662008567 ], [ -82.081546561267828, 28.785920906860127 ], [ -82.081496532301102, 28.785642621967206 ], [ -82.081521058108365, 28.785407198400467 ], [ -82.081575009355106, 28.785282130854025 ], [ -82.081670332865656, 28.785102131883317 ], [ -82.081849446089279, 28.784923021911442 ], [ -82.084061102072738, 28.783863942519137 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Industrial Park Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07858742387819, 28.790962996122992 ], [ -82.078482324632844, 28.790851714889126 ], [ -82.078290674324705, 28.790638424517521 ], [ -82.077956830076985, 28.790354037158671 ], [ -82.077669354373938, 28.790174749185443 ], [ -82.077320053207771, 28.789998551762043 ], [ -82.076360981754164, 28.789645133441862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Industrial Park Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.080572111098988, 28.795546791000532 ], [ -82.080064978025902, 28.794972215170013 ], [ -82.079873326331011, 28.794706374770126 ], [ -82.079678585351488, 28.794375622681386 ], [ -82.079527120554459, 28.794038687695892 ], [ -82.079437478497795, 28.793748119727848 ], [ -82.079258194934582, 28.792959876819065 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Orba Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.080572111098988, 28.795546791000532 ], [ -82.080645110220203, 28.795503709402272 ], [ -82.080793225008875, 28.795450225655713 ], [ -82.080875509494291, 28.795433769255599 ], [ -82.08099893789317, 28.795441998179154 ], [ -82.08138979400016, 28.795511942772386 ], [ -82.081640763996276, 28.795573657951575 ], [ -82.081805334289314, 28.795590115847673 ], [ -82.08203984772689, 28.795586003897075 ], [ -82.082200305208488, 28.795565432921524 ], [ -82.082373105731918, 28.79554074878271 ], [ -82.082648761777094, 28.795544864359488 ], [ -82.082904363710597, 28.795540257192481 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Industrial Park Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.079258194934582, 28.792959876819065 ], [ -82.079233466914431, 28.792842413776519 ], [ -82.079199464202631, 28.792647671286552 ], [ -82.079004726330183, 28.791772877170526 ], [ -82.078865625312417, 28.791420486552763 ], [ -82.078704887097146, 28.791142282825795 ], [ -82.07858742387819, 28.790962996122992 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Esther Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07858742387819, 28.790962996122992 ], [ -82.078676658757018, 28.790918602374273 ], [ -82.078812016324363, 28.790876954741353 ], [ -82.078949342729501, 28.790860291761422 ], [ -82.079077524385283, 28.790856132770667 ], [ -82.079208120923838, 28.790852828550786 ], [ -82.07932741396931, 28.790835310336178 ], [ -82.079421123209215, 28.79080407462056 ], [ -82.079511687597346, 28.790765741280065 ], [ -82.079598128759585, 28.790705161069482 ], [ -82.079665807175346, 28.790621866123814 ], [ -82.079686631528773, 28.79053856964158 ], [ -82.079717870379483, 28.790174149877657 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Patriot Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116603090771903, 28.687157690926316 ], [ -82.116878039834958, 28.687100542919403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Blanton Fields", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116938421557549, 28.687883976960414 ], [ -82.116934350312178, 28.687488048946555 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paradise Oaks Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116586431840958, 28.68841951147078 ], [ -82.116918723506828, 28.688412323272726 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paradise Palms Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116878039834958, 28.687100542919403 ], [ -82.117899431961504, 28.68709706953436 ], [ -82.117979473074087, 28.687110990034263 ], [ -82.11798121255498, 28.687185810626431 ], [ -82.11797947221487, 28.68749205386592 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crandall Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116934350312178, 28.687488048946555 ], [ -82.11797947221487, 28.68749205386592 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paradise Palms Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11797947221487, 28.68749205386592 ], [ -82.117989097381411, 28.687808237249133 ], [ -82.11798298924198, 28.687863825147314 ], [ -82.117928012246168, 28.68789131345239 ], [ -82.116938421557549, 28.687883976960414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Blanton Fields", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116934350312178, 28.687488048946555 ], [ -82.116883260047004, 28.687309344803634 ], [ -82.116878039834958, 28.687100542919403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Blanton Fields", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116918723506828, 28.688412323272726 ], [ -82.116938421557549, 28.687883976960414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Blanton Fields", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116933478198234, 28.689327333373619 ], [ -82.116918723506828, 28.688412323272726 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Horseshoe Pond Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116933478198234, 28.689327333373619 ], [ -82.11760290346632, 28.68932137352105 ], [ -82.117602903784785, 28.688908388073958 ], [ -82.117608867998825, 28.688414893405053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paradise Oaks Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116918723506828, 28.688412323272726 ], [ -82.117608867998825, 28.688414893405053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jumper Creek Bend", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114979454938393, 28.689312129295871 ], [ -82.114968622091126, 28.688653939446354 ], [ -82.114862435937781, 28.688428802892687 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crums Lndg", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114979454938393, 28.689312129295871 ], [ -82.116581620874584, 28.689333294928833 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crums Lndg", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116581620874584, 28.689333294928833 ], [ -82.116933478198234, 28.689327333373619 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jumper Creek Bend", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116577146987211, 28.690119009445667 ], [ -82.115066130864705, 28.690132836853984 ], [ -82.114984871981633, 28.690108458570464 ], [ -82.114963203982811, 28.690046160152956 ], [ -82.114979454938393, 28.689312129295871 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sunny Ridge Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116577146987211, 28.690119009445667 ], [ -82.116581620874584, 28.689333294928833 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Horseshoe Pond Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.116577146987211, 28.690119009445667 ], [ -82.116717294101434, 28.690072792263418 ], [ -82.11682613176886, 28.690062356568678 ], [ -82.116936460380302, 28.690102611478036 ], [ -82.117023002995637, 28.690146280371717 ], [ -82.117173517747986, 28.69015032349969 ], [ -82.117255517549012, 28.690126469416754 ], [ -82.117264463907915, 28.690005703867353 ], [ -82.117240608587736, 28.689871520907172 ], [ -82.117182462909625, 28.689786538956671 ], [ -82.116993114983288, 28.689652354583046 ], [ -82.116931987512046, 28.689583772212885 ], [ -82.116924533741141, 28.689513698273966 ], [ -82.116933478198234, 28.689327333373619 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 552", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.094042541333948, 28.658431572011452 ], [ -82.094068178026134, 28.658035115703537 ], [ -82.094079819443465, 28.657759598919309 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 509", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030683781656265, 28.798262679580823 ], [ -82.03065415077117, 28.798645811522867 ], [ -82.03061532429723, 28.798902255424991 ], [ -82.030576499467784, 28.799097397120814 ], [ -82.030513154250116, 28.799332384888693 ], [ -82.030509492964214, 28.799442437996746 ], [ -82.030505388689065, 28.799586621155409 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039755363961817, 28.825558830498615 ], [ -82.039718014526812, 28.825696344073862 ], [ -82.039684218586245, 28.82588351425175 ], [ -82.039655621729452, 28.826112279333362 ], [ -82.039637424046333, 28.826328046359627 ], [ -82.039629623757406, 28.826572409042889 ], [ -82.039619225057962, 28.826759580557169 ], [ -82.039606225901125, 28.826889560004979 ], [ -82.039591990161, 28.826992656432896 ], [ -82.039572356531878, 28.827120333287805 ], [ -82.039524248201957, 28.827281631110559 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thomas Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037036579031508, 28.920161707803892 ], [ -82.03666430282675, 28.920152192377621 ], [ -82.036483485606965, 28.920142284810012 ], [ -82.036312577360277, 28.920117514458408 ], [ -82.036159007380775, 28.920105128730931 ], [ -82.035945990366656, 28.920102651236665 ], [ -82.034130394158367, 28.920105120162109 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 746A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015423908052796, 28.60015076200764 ], [ -82.015445781037812, 28.600052674147211 ], [ -82.015462604198291, 28.599164420972272 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 22nd Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068293383083514, 28.606082840055841 ], [ -82.068301210410752, 28.605133767082915 ], [ -82.068291426433305, 28.604961564603173 ], [ -82.068234677471494, 28.604943952040095 ], [ -82.067605857417931, 28.604942091121156 ], [ -82.067515391190668, 28.604942090509102 ], [ -82.067499426300316, 28.605043200299075 ], [ -82.067496942494159, 28.606051526468669 ], [ -82.067655446863498, 28.606055440430278 ], [ -82.068125093277871, 28.606061314384082 ], [ -82.068293383083514, 28.606082840055841 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 5th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048879548425575, 28.606417519997045 ], [ -82.048881918039783, 28.6063345651121 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 148", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995332272625092, 28.827354251524998 ], [ -81.995316184925386, 28.827304919921687 ], [ -81.995034085464354, 28.827082948781104 ], [ -81.994695009577157, 28.82684455995344 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Continental Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9865760373889, 28.823637639085003 ], [ -81.986642231594516, 28.823442185671666 ], [ -81.986751363146354, 28.823173851544919 ], [ -81.986821249554225, 28.823001114035204 ], [ -81.986909953064995, 28.822769218413381 ], [ -81.987038981268782, 28.822402444914776 ], [ -81.987248104778999, 28.822009204282313 ], [ -81.987339428071053, 28.821837973571689 ], [ -81.987364161912552, 28.821697184042765 ], [ -81.987373675813629, 28.821552589832816 ], [ -81.987431415874326, 28.821410977789856 ], [ -81.987458293121094, 28.821368385890157 ], [ -81.987495919036405, 28.821311597150192 ], [ -81.987533542880087, 28.821271372096898 ], [ -81.987560417577342, 28.821240612161901 ], [ -81.987598037589422, 28.821214585834273 ], [ -81.987624910973182, 28.821202756342235 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jenks Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989382516236873, 28.787013518372532 ], [ -81.989774771952554, 28.787003331196843 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 157", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995332272625092, 28.827354251524998 ], [ -81.995306533693835, 28.827432536724853 ], [ -81.994629241377197, 28.828190503376376 ], [ -81.994461205719773, 28.82838580113048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.189834183804308, 28.592514984537168 ], [ -82.189698833241337, 28.592493157733678 ], [ -82.188923896923498, 28.592498424914513 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.188923896923498, 28.592498424914513 ], [ -82.1878942618644, 28.592490959695528 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.1878942618644, 28.592490959695528 ], [ -82.18587982478715, 28.592481365924343 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.18587982478715, 28.592481365924343 ], [ -82.183787966437194, 28.592462808826365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183787966437194, 28.592462808826365 ], [ -82.182305306731081, 28.592452256032313 ], [ -82.182150923472705, 28.592477305731098 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 51st Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.188928070138815, 28.592549885953247 ], [ -82.188923896923498, 28.592498424914513 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 50th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.187891483679493, 28.592549397328614 ], [ -82.1878942618644, 28.592490959695528 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 49th Plz", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.185882425895969, 28.592535575932256 ], [ -82.18587982478715, 28.592481365924343 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 683D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.183780377283853, 28.592523289454732 ], [ -82.183787966437194, 28.592462808826365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Miona Shores Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009322249641684, 28.908193154230709 ], [ -82.009320070074097, 28.908163169208361 ], [ -82.009320052842213, 28.907961372085332 ], [ -82.009329503106912, 28.907803546027676 ], [ -82.009352214664759, 28.907686440712197 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Miona Shores Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009322249641684, 28.908193154230709 ], [ -82.00929686908519, 28.908266395395952 ], [ -82.009289415036207, 28.908337198290869 ], [ -82.009285688157732, 28.908452717923716 ], [ -82.009283824285575, 28.908625997128258 ], [ -82.009276370918272, 28.908717294811609 ], [ -82.009268917936282, 28.908825361698174 ], [ -82.009268917331781, 28.908939016934468 ], [ -82.009274506765294, 28.909080622286332 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 472", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009376982836301, 28.909080622848094 ], [ -82.009274506765294, 28.909080622286332 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lynnhaven Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009324248395131, 28.9101395809191 ], [ -82.009324400445124, 28.910058870385125 ], [ -82.009324389417372, 28.909929801217608 ], [ -82.009325330498797, 28.909806431800224 ], [ -82.009325940300627, 28.909802408415239 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lynnhaven Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009274506765294, 28.909080622286332 ], [ -82.009279227775352, 28.909549309719004 ], [ -82.0092992833426, 28.909679005596281 ], [ -82.009325940300627, 28.909802408415239 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marja Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014507819817965, 28.811254981326513 ], [ -82.015312667935461, 28.811246485691978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Big Oak Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996233982833914, 28.819613986695238 ], [ -81.99647346109937, 28.81969068433391 ], [ -81.997382011496967, 28.819994025516436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seminole Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995801794500835, 28.820174161742365 ], [ -81.995979382567668, 28.820233544729007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Seminole Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996233982833914, 28.819613986695238 ], [ -81.995979382567668, 28.820233544729007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 49th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023876558300884, 28.61925376316016 ], [ -82.023718828433744, 28.619300882063989 ], [ -82.023669014073448, 28.619294611977367 ], [ -82.023594286511738, 28.619255903331794 ], [ -82.023400940955796, 28.619142912163305 ], [ -82.0232657186626, 28.619063399655179 ], [ -82.023180315805774, 28.619013180494008 ], [ -82.023129306334013, 28.618970282630237 ], [ -82.023081853209831, 28.61891168525667 ], [ -82.023048630314392, 28.618845760342552 ], [ -82.022980987942859, 28.618665771757492 ], [ -82.022925215167547, 28.618518222123082 ], [ -82.022883681166846, 28.618407297025563 ], [ -82.022844528195321, 28.618340328110524 ], [ -82.022798262074815, 28.618288008920288 ], [ -82.022729465344057, 28.618243020351194 ], [ -82.022506475529269, 28.618146775586538 ], [ -82.022315511811172, 28.618063085958298 ], [ -82.022231298282222, 28.618026471484193 ], [ -82.022163688559488, 28.617992993588977 ], [ -82.022116243712418, 28.617959512498533 ], [ -82.022058115718409, 28.617896731379215 ], [ -82.022026081751974, 28.617839177928232 ], [ -82.022004714606553, 28.617747086647178 ], [ -82.021996310761907, 28.61726046053213 ], [ -82.021997273689252, 28.616187783785552 ], [ -82.021995941975902, 28.615488712183389 ], [ -82.021998194126539, 28.614911038108236 ], [ -82.021999273925587, 28.614409757204879 ], [ -82.021999223755259, 28.614163826145887 ], [ -82.022008698844957, 28.614094755021359 ], [ -82.02204188968085, 28.614031958675493 ], [ -82.02210829284104, 28.613975436504798 ], [ -82.02219841891818, 28.613945073026414 ], [ -82.022307527543319, 28.613941915658611 ], [ -82.022541159539358, 28.613942925198703 ], [ -82.022823892268946, 28.613939032093139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 47th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023729117749951, 28.6175919235889 ], [ -82.023727012836517, 28.617394357513405 ], [ -82.023724217044375, 28.6167886144307 ], [ -82.023726577887942, 28.615452689533377 ], [ -82.02372901881472, 28.614473635467853 ], [ -82.023728966624205, 28.614241198010831 ], [ -82.023728344239117, 28.614142615623116 ], [ -82.023718289430661, 28.614088589687626 ], [ -82.023692739049153, 28.614027504646348 ], [ -82.023640548343948, 28.613987746384378 ], [ -82.023585988117034, 28.613960545468831 ], [ -82.023505339364362, 28.613943814237132 ], [ -82.023353537301404, 28.613941746989312 ], [ -82.022963801978818, 28.613937106310679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 48th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022898010858881, 28.613385076858407 ], [ -82.022897912002151, 28.612928795751223 ], [ -82.022904861869534, 28.612166933100706 ], [ -82.022914333690096, 28.612095769365148 ], [ -82.022938033400308, 28.612001580088563 ], [ -82.022985448176101, 28.611903199173852 ], [ -82.023049470787186, 28.611817374301083 ], [ -82.023113495368619, 28.611750386661594 ], [ -82.023220209435507, 28.611670386517893 ], [ -82.023443667296704, 28.611506000733499 ], [ -82.023492929287556, 28.611463578891073 ], [ -82.023544749669853, 28.611412070030809 ], [ -82.023597262803278, 28.611340072484545 ], [ -82.023625713565906, 28.611291927828066 ], [ -82.02365645039562, 28.611219527860374 ], [ -82.023683030687266, 28.611102130653812 ], [ -82.023682969661749, 28.610829778937926 ], [ -82.023695078354251, 28.610646304834784 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025754625249661, 28.609911524214311 ], [ -82.025754368594292, 28.609911524261452 ], [ -82.02501665238232, 28.609912890349822 ], [ -82.023743700299718, 28.609909950353462 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023607961448405, 28.609910611159101 ], [ -82.023430917622221, 28.609912099844195 ], [ -82.021689474132117, 28.609887838609364 ], [ -82.02146907476147, 28.609888190830393 ], [ -82.021468834466646, 28.609888190866936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 48th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023695078354251, 28.610646304834784 ], [ -82.023737947985126, 28.61053115710493 ], [ -82.023743700299718, 28.609909950353462 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023743700299718, 28.609909950353462 ], [ -82.023607961448405, 28.609910611159101 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 48th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023607961448405, 28.609910611159101 ], [ -82.023615211072894, 28.610349427362312 ], [ -82.023626082288899, 28.610521547964613 ], [ -82.023695078354251, 28.610646304834784 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 49th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022823892268946, 28.613939032093139 ], [ -82.022963801978818, 28.613937106310679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 48th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022963801978818, 28.613937106310679 ], [ -82.022960243550472, 28.613556390504151 ], [ -82.022927034753224, 28.613429485335129 ], [ -82.022898010858881, 28.613385076858407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 48th Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022898010858881, 28.613385076858407 ], [ -82.022870104695457, 28.613425926738426 ], [ -82.022829778860626, 28.613544529696711 ], [ -82.022823892268946, 28.613939032093139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fireside Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990694114753381, 28.858860587423337 ], [ -81.990702255206116, 28.858847018234968 ], [ -81.990718100660075, 28.858818125746033 ], [ -81.990744197317042, 28.858771524437831 ], [ -81.990772158433657, 28.858723992977861 ], [ -81.990799185960299, 28.858685779546963 ], [ -81.990834603332374, 28.858641043027784 ], [ -81.990881203791801, 28.858586986461233 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hawkins Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98326494819203, 28.793005681544461 ], [ -81.98290174391478, 28.792712777255272 ], [ -81.982691386704957, 28.792471090868894 ], [ -81.982306478272875, 28.791960864456538 ], [ -81.98219011005169, 28.791777362690901 ], [ -81.982141903468758, 28.791616938463651 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Summerlin Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987211121138628, 28.793095913964098 ], [ -81.987488421633913, 28.793241102575088 ], [ -81.987693710685136, 28.793382035911449 ], [ -81.987741158573115, 28.793455286460642 ], [ -81.987744846543052, 28.793562357104573 ], [ -81.987728307520996, 28.793633058152572 ], [ -81.987420098666732, 28.794251983027337 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Summerlin Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982584225950859, 28.791459004244903 ], [ -81.982709279816476, 28.791428105363099 ], [ -81.982905819781365, 28.791426299774262 ], [ -81.983123752188376, 28.791468476261468 ], [ -81.983401836362091, 28.791551666403006 ], [ -81.983745233183924, 28.79168248350831 ], [ -81.984181464159434, 28.791928699489983 ], [ -81.984520576434321, 28.792181687361328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Summerlin Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984520576434321, 28.792181687361328 ], [ -81.984813936612994, 28.792316255887329 ], [ -81.985142284611982, 28.792466971853301 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Summerlin Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985142284611982, 28.792466971853301 ], [ -81.98547332414671, 28.792590774909105 ], [ -81.985804363892925, 28.792733417456194 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Summerlin Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985804363892925, 28.792733417456194 ], [ -81.986121946143484, 28.792830305992144 ], [ -81.986474517309048, 28.792905664514741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Summerlin Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986474517309048, 28.792905664514741 ], [ -81.98682708801276, 28.792956800415059 ], [ -81.987029657348785, 28.793023228676276 ], [ -81.987211121138628, 28.793095913964098 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hawkins Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984445855276178, 28.795250484132538 ], [ -81.984441379802604, 28.795035650982456 ], [ -81.984302634454068, 28.794722354377356 ], [ -81.983975572423532, 28.794020460345465 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Frazier Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983975572423532, 28.794020460345465 ], [ -81.984619673663175, 28.793841742476165 ], [ -81.984748544855535, 28.793800558491913 ], [ -81.984902657573329, 28.793736787819171 ], [ -81.98501558597269, 28.79369560268324 ], [ -81.985103271450726, 28.793671689434746 ], [ -81.985188298643806, 28.793655745968621 ], [ -81.985268013362756, 28.793649102910077 ], [ -81.985363670236737, 28.793645117958754 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Frazier Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985363670236737, 28.793645117958754 ], [ -81.985413842428329, 28.793645952660679 ], [ -81.985475102091598, 28.793652515530049 ], [ -81.985548394260519, 28.793667830305711 ], [ -81.985659975516825, 28.793698460503659 ], [ -81.986050506136607, 28.793822073585268 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Frazier Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986050506136607, 28.793822073585268 ], [ -81.986718892594652, 28.794050702072134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Frazier Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986718892594652, 28.794050702072134 ], [ -81.987130208732069, 28.794187441843942 ], [ -81.9872199100041, 28.794212602429731 ], [ -81.987296485515202, 28.794230104679109 ], [ -81.987371965428053, 28.79424432597062 ], [ -81.987420098666732, 28.794251983027337 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Frazier Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987420098666732, 28.794251983027337 ], [ -81.987699049034205, 28.794274954815386 ], [ -81.98786970169381, 28.79427823769047 ], [ -81.98805348037024, 28.794261828537714 ], [ -81.98823616660998, 28.794196194241632 ], [ -81.988354311013282, 28.794102117683451 ], [ -81.988416664498601, 28.794033200808595 ], [ -81.988475736616948, 28.793931467389221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Josephine Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986718892594652, 28.794050702072134 ], [ -81.987211121138628, 28.793095913964098 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shealy Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986050506136607, 28.793822073585268 ], [ -81.986254946779567, 28.793396132474079 ], [ -81.986359277511653, 28.793206796301497 ], [ -81.986432694255626, 28.793061895846222 ], [ -81.986462477922146, 28.792979799171565 ], [ -81.986474517309048, 28.792905664514741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Okefenokee Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985363670236737, 28.793645117958754 ], [ -81.985804363892925, 28.792733417456194 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hawkins Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983975572423532, 28.794020460345465 ], [ -81.983904299285285, 28.793867500679923 ], [ -81.983787931732394, 28.793603436394456 ], [ -81.983725661564193, 28.793446127661948 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Francesca Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983725661564193, 28.793446127661948 ], [ -81.983948781155789, 28.793366535350721 ], [ -81.98406015996683, 28.793330455212431 ], [ -81.984143302149121, 28.793302218159702 ], [ -81.984235856806123, 28.793280256850689 ], [ -81.984337824603159, 28.79325358921032 ], [ -81.984450772177709, 28.793219077153193 ], [ -81.984541757365704, 28.79319084076479 ], [ -81.984631175052129, 28.793143779171174 ], [ -81.984695492336769, 28.793099855604844 ], [ -81.984764517467752, 28.793048087830606 ], [ -81.984825696273333, 28.792996320936446 ], [ -81.984886876640132, 28.792933572860179 ], [ -81.984952763916155, 28.79285513766354 ], [ -81.984993550605793, 28.792795526392791 ], [ -81.985050025225576, 28.792682580212094 ], [ -81.985095518640577, 28.792586889528742 ], [ -81.985142284611982, 28.792466971853301 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hawkins Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983725661564193, 28.793446127661948 ], [ -81.983655552841526, 28.793325071087029 ], [ -81.983559671454543, 28.793223004108118 ], [ -81.983317984399804, 28.793048452397148 ], [ -81.98326494819203, 28.793005681544461 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Winn Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98326494819203, 28.793005681544461 ], [ -81.983331438767024, 28.792941418047633 ], [ -81.983412358696583, 28.792883991328232 ], [ -81.983488059001928, 28.792837005487577 ], [ -81.98362379609712, 28.792791325383519 ], [ -81.983716462939682, 28.792757390743223 ], [ -81.983823486898302, 28.792727373813527 ], [ -81.983989242819987, 28.792677777312491 ], [ -81.984143252568757, 28.792616434706005 ], [ -81.98427246487401, 28.792519853673721 ], [ -81.984371656863104, 28.792420662233557 ], [ -81.984438221416411, 28.792334522506181 ], [ -81.984481291803917, 28.792265348932538 ], [ -81.984520576434321, 28.792181687361328 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982364074559356, 28.7895882779193 ], [ -81.98249777003663, 28.789588278292729 ], [ -81.983211830073415, 28.789663196693116 ], [ -81.983820536269405, 28.789803667077521 ], [ -81.98435900826577, 28.789974571504757 ], [ -81.986072752466171, 28.790569228481171 ], [ -81.986847682162974, 28.790889968438876 ], [ -81.987620177581135, 28.791245670170106 ], [ -81.987786771803613, 28.791328788581531 ], [ -81.988762765304983, 28.791863893868083 ], [ -81.989620454360548, 28.792413494818817 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989685861222213, 28.79229735770684 ], [ -81.989006249401413, 28.791856870678277 ], [ -81.988161083066345, 28.791376931823873 ], [ -81.987208223765919, 28.790906356941882 ], [ -81.986281117695256, 28.790510700670207 ], [ -81.985091797592219, 28.790089289525973 ], [ -81.983792443257599, 28.789660855375431 ], [ -81.983289088916933, 28.789548478946621 ], [ -81.982710817147975, 28.78947590289274 ], [ -81.982373249566436, 28.789459923175983 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Frazier Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988475736616948, 28.793931467389221 ], [ -81.988530334869992, 28.793825352827202 ], [ -81.988603995328887, 28.793703914077671 ], [ -81.988699554613646, 28.793554604681734 ], [ -81.988881355811912, 28.793334214568308 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alaura Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984520576434321, 28.792181687361328 ], [ -81.984574531858712, 28.792127151441289 ], [ -81.984616743092133, 28.792068860526605 ], [ -81.984705184351654, 28.79191409049923 ], [ -81.984771515969754, 28.791785449801097 ], [ -81.984839857203013, 28.791676909232514 ], [ -81.984892118157916, 28.79160052978224 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alaura Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984892118157916, 28.79160052978224 ], [ -81.984940359383259, 28.791526159311257 ], [ -81.985004680304343, 28.791449778464333 ], [ -81.985097142012222, 28.79135731878505 ], [ -81.985169501704661, 28.791278928397265 ], [ -81.985223773379204, 28.791220637718077 ], [ -81.985276034273767, 28.791148277921085 ], [ -81.985308195058295, 28.791091996932973 ], [ -81.985348395478127, 28.791021647039798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Franklin Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984892118157916, 28.79160052978224 ], [ -81.984984107047438, 28.791639502931062 ], [ -81.986264950687655, 28.792159799877407 ], [ -81.986318490893041, 28.792177645905422 ], [ -81.986378894711322, 28.792190002033351 ], [ -81.986435179690247, 28.79219549291555 ], [ -81.986531277589563, 28.792207848077961 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Franklin Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986531277589563, 28.792207848077961 ], [ -81.986910177357245, 28.792270998010963 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eola Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986531277589563, 28.792207848077961 ], [ -81.986825064577246, 28.791620284435353 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Turner Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984979206797689, 28.79085080447291 ], [ -81.985348395478127, 28.791021647039798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Turner Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985348395478127, 28.791021647039798 ], [ -81.986825064577246, 28.791620284435353 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Turner Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986825064577246, 28.791620284435353 ], [ -81.987178434673751, 28.791748992305486 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Emma Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98719282019097, 28.792415538102453 ], [ -81.987402930456341, 28.79250060652252 ], [ -81.987520797254177, 28.792555952852833 ], [ -81.987636614030137, 28.792615399002646 ], [ -81.987747308103792, 28.792676894639346 ], [ -81.98787542452807, 28.792749664368429 ], [ -81.987983041965464, 28.792810135405876 ], [ -81.988074260672818, 28.792858306362401 ], [ -81.988165478747661, 28.792912626522916 ], [ -81.988268997445545, 28.792971047814298 ], [ -81.9883684154847, 28.793024343528703 ], [ -81.988427862131289, 28.793056116440134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Emma Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988427862131289, 28.793056116440134 ], [ -81.988630796916468, 28.793171933161414 ], [ -81.988881355811912, 28.793334214568308 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Frazier Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989091155770126, 28.793096419965853 ], [ -81.989149810390927, 28.7930753638495 ], [ -81.9891912183991, 28.793046378586364 ], [ -81.989261021652325, 28.792967111476177 ], [ -81.989412458597741, 28.792789649352382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclain Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988427862131289, 28.793056116440134 ], [ -81.988486682216433, 28.792986026208339 ], [ -81.988558863492969, 28.792896805343855 ], [ -81.988636054776023, 28.79279655679111 ], [ -81.988715251606521, 28.792686284561995 ], [ -81.988783422276256, 28.792588041001988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclain Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988783422276256, 28.792588041001988 ], [ -81.988971890944939, 28.792348448258231 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Halifax Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987067155231259, 28.792670242783718 ], [ -81.98719282019097, 28.792415538102453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Halifax Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98719282019097, 28.792415538102453 ], [ -81.987478180217892, 28.7918943211689 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Joshua Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987212856371627, 28.79175729959335 ], [ -81.987478180217892, 28.7918943211689 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Joshua Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987478180217892, 28.7918943211689 ], [ -81.987688702571617, 28.791978530186608 ], [ -81.98793230781709, 28.792092814172179 ], [ -81.988137818207079, 28.792210104457833 ], [ -81.988263129496715, 28.792285290872826 ], [ -81.988484679958162, 28.79240558944673 ], [ -81.988635053324714, 28.792491803041433 ], [ -81.988783422276256, 28.792588041001988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Frazier Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988881355811912, 28.793334214568308 ], [ -81.989091155770126, 28.793096419965853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Frazier Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989412458597741, 28.792789649352382 ], [ -81.989707425914034, 28.792469227536362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Frazier Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989707425914034, 28.792469227536362 ], [ -81.989796063328825, 28.792370376879823 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Frazier Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989685861222213, 28.79229735770684 ], [ -81.989620454360548, 28.792413494818817 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Frazier Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989620454360548, 28.792413494818817 ], [ -81.989348571022092, 28.792751790414449 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Frazier Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989348571022092, 28.792751790414449 ], [ -81.989111360584701, 28.793018576330976 ], [ -81.989097754552489, 28.793047561136373 ], [ -81.989091247343381, 28.793073589639601 ], [ -81.989091155770126, 28.793096419965853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Frazier Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989348571022092, 28.792751790414449 ], [ -81.989412458597741, 28.792789649352382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989707425914034, 28.792469227536362 ], [ -81.98981863733917, 28.792540490865004 ], [ -81.990324331572779, 28.79290337131944 ], [ -81.990549084205981, 28.793104711618021 ], [ -81.990736378316754, 28.793317756453273 ], [ -81.990872165428129, 28.793528462315056 ], [ -81.990972835226728, 28.793727460849329 ], [ -81.991057116926953, 28.793999035772888 ], [ -81.99111096274703, 28.794322116253802 ], [ -81.991178855968954, 28.794640514624056 ], [ -81.991314687261635, 28.794962564546335 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989620454360548, 28.792413494818817 ], [ -81.989707425914034, 28.792469227536362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991442174134178, 28.794911960256773 ], [ -81.99143638558499, 28.794900383206354 ], [ -81.991335715589599, 28.794668608524407 ], [ -81.991272504334191, 28.794429809908106 ], [ -81.991244411184525, 28.794158235234672 ], [ -81.991164812720271, 28.793832813393784 ], [ -81.991005613422573, 28.793476956521275 ], [ -81.990797249219938, 28.793174946118732 ], [ -81.990577179122781, 28.792940830031004 ], [ -81.990270485352227, 28.792702030591396 ], [ -81.989796063328825, 28.792370376879823 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989796063328825, 28.792370376879823 ], [ -81.989764791325058, 28.792348515939217 ], [ -81.989685861222213, 28.79229735770684 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melvin Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98886935759856, 28.794149422970062 ], [ -81.988761686168331, 28.794069293946276 ], [ -81.988697832795111, 28.794022970109452 ], [ -81.988636484923049, 28.793995426301677 ], [ -81.98855260055366, 28.793952857922211 ], [ -81.988475736616948, 28.793931467389221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kaden Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98886935759856, 28.794149422970062 ], [ -81.988930390319169, 28.794072028515043 ], [ -81.988976104188595, 28.794013253806515 ], [ -81.989005491410111, 28.793953390450717 ], [ -81.989037056111272, 28.793885909937995 ], [ -81.989074063558078, 28.793822782622204 ], [ -81.989114334102908, 28.793762919229085 ], [ -81.98915242994056, 28.793712852964717 ], [ -81.989210116268566, 28.793649725484393 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kaden Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989210116268566, 28.793649725484393 ], [ -81.989258006480668, 28.793590950852515 ], [ -81.989338550303017, 28.793499524095882 ], [ -81.989408209108333, 28.793432042018257 ], [ -81.989478957020694, 28.793371091836345 ], [ -81.989551881078569, 28.793314494546944 ], [ -81.989617188023615, 28.793269870323588 ], [ -81.989707526251195, 28.793214360688776 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kaden Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989707526251195, 28.793214360688776 ], [ -81.989962217947706, 28.793016269974661 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tinsley Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990454091788138, 28.794428389461331 ], [ -81.990454831611729, 28.794295843308852 ], [ -81.990432716389321, 28.794155253196703 ], [ -81.990396384433026, 28.79402730165874 ], [ -81.990345836269555, 28.79389619008073 ], [ -81.990279490208522, 28.793774557033831 ], [ -81.990200506780724, 28.793657661973416 ], [ -81.990113625956056, 28.793551825031848 ], [ -81.990040960776099, 28.793477581792921 ], [ -81.989957238640528, 28.79339859873205 ], [ -81.989875096596251, 28.79333541163632 ], [ -81.989786635790878, 28.79327064586024 ], [ -81.989707526251195, 28.793214360688776 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Virgil Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990782378768046, 28.794354384095222 ], [ -81.990454091788138, 28.794428389461331 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Virgil Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990454091788138, 28.794428389461331 ], [ -81.990352570111767, 28.794464444000784 ], [ -81.990196102579006, 28.794507833849437 ], [ -81.990073621138109, 28.794541296996602 ], [ -81.9900233353479, 28.794545091079474 ], [ -81.989970749568201, 28.794542228606087 ], [ -81.989924658834227, 28.794510934713749 ], [ -81.989886706377092, 28.794459699398466 ], [ -81.989835579256038, 28.794365506642588 ], [ -81.989779024438519, 28.794259937084796 ], [ -81.989724980745549, 28.794160650502427 ], [ -81.98968225147452, 28.794065134637563 ], [ -81.989633236366046, 28.793996010933107 ], [ -81.989589248179499, 28.793941969769254 ], [ -81.989540232280106, 28.793881643584438 ], [ -81.989477392405618, 28.793828858728688 ], [ -81.989415810463086, 28.793776073943111 ], [ -81.989345428857291, 28.793730829059172 ], [ -81.989266250698549, 28.793683071390728 ], [ -81.989210116268566, 28.793649725484393 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melvin Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991938065545554, 28.798650526320316 ], [ -81.991923444164541, 28.798530284147287 ], [ -81.991882448152396, 28.798413154243391 ], [ -81.99181802652285, 28.798301880699352 ], [ -81.991717426551418, 28.7981399860317 ], [ -81.991626352234718, 28.798029739365369 ], [ -81.991542469505589, 28.79793946578647 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melvin Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991211261654399, 28.797322533956113 ], [ -81.991194611869915, 28.797239283667249 ], [ -81.991169906581675, 28.797155959753734 ], [ -81.991136719226091, 28.797054447349392 ], [ -81.991097676553423, 28.796954886246702 ], [ -81.991058634093463, 28.796876799276138 ], [ -81.990993866190948, 28.796774811895627 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melvin Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990993866190948, 28.796774811895627 ], [ -81.99092237296567, 28.796679267440826 ], [ -81.990826324601898, 28.796544931726306 ], [ -81.990738476735856, 28.796418040593387 ], [ -81.990623298840561, 28.796254058807051 ], [ -81.990510072604778, 28.796101789982838 ], [ -81.990373420501825, 28.795922190113135 ], [ -81.990277115411047, 28.795787712311821 ], [ -81.990195373768103, 28.795672895108314 ], [ -81.990107096461585, 28.795553231947395 ], [ -81.990058291378659, 28.795494665490704 ], [ -81.990006412559111, 28.795443910109977 ], [ -81.989922872254041, 28.795364785400597 ], [ -81.989839977644323, 28.795293495472599 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melvin Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989839977644323, 28.795293495472599 ], [ -81.989729728360814, 28.795200653445054 ], [ -81.989608168919986, 28.79510423187175 ], [ -81.989516415551918, 28.7950300491385 ], [ -81.989422710751697, 28.794957819695451 ], [ -81.989362193886436, 28.794891445239855 ], [ -81.989321198030297, 28.794813358490572 ], [ -81.989250920125443, 28.794672803132801 ], [ -81.989178690243151, 28.794530294971583 ], [ -81.989124029523268, 28.794438543320577 ], [ -81.989075225196714, 28.794344839519887 ], [ -81.989038133840324, 28.794282369333384 ], [ -81.98898347177736, 28.794233565928312 ], [ -81.988917099443725, 28.794186714135041 ], [ -81.98886935759856, 28.794149422970062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Waycross Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991211261654399, 28.797322533956113 ], [ -81.991284528639596, 28.797301271261194 ], [ -81.9914336313023, 28.797250336361429 ], [ -81.991778138232391, 28.797109571132385 ], [ -81.991950392599193, 28.797036410416844 ], [ -81.992236006902218, 28.796897201436114 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Matanzas Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990993866190948, 28.796774811895627 ], [ -81.991094169109616, 28.796735852260415 ], [ -81.99123591960884, 28.796669536256022 ], [ -81.991408340267725, 28.796588300537156 ], [ -81.991489577428283, 28.796527788531872 ], [ -81.991533511303274, 28.796436604490211 ], [ -81.991526051695047, 28.796318896385564 ], [ -81.991473000269323, 28.796227712463434 ], [ -81.991366065414567, 28.796110831670639 ], [ -81.991262447553993, 28.795994780234722 ], [ -81.9911580002737, 28.795866294788613 ], [ -81.991070542410085, 28.795755872902816 ], [ -81.990958588906423, 28.795608189181475 ], [ -81.990872837564154, 28.795491472743365 ], [ -81.990806142404139, 28.795372372752222 ], [ -81.990737064347613, 28.795258038578275 ], [ -81.990696570984369, 28.795172285330526 ], [ -81.990659806729582, 28.795103669062268 ], [ -81.990614214780663, 28.795057248162784 ], [ -81.99055038580471, 28.795041498286235 ], [ -81.990484899252763, 28.795049786785711 ], [ -81.99022958276845, 28.795121904637984 ], [ -81.990062964779341, 28.795168325355323 ], [ -81.989990846712544, 28.795195679899226 ], [ -81.989934478405274, 28.795227179918484 ], [ -81.98988722752749, 28.795260338155014 ], [ -81.989839977644323, 28.795293495472599 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melvin Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991542469505589, 28.79793946578647 ], [ -81.991482551700699, 28.797875553856425 ], [ -81.991433020527126, 28.797817235103178 ], [ -81.991367511559844, 28.797733352774131 ], [ -81.99129484440266, 28.797614719171136 ], [ -81.991251897019296, 28.797497588030375 ], [ -81.991211261654399, 28.797322533956113 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Punta Rassa Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991542469505589, 28.79793946578647 ], [ -81.991604150331753, 28.797905327984328 ], [ -81.991649897143773, 28.797883556253051 ], [ -81.991721136915572, 28.797841151105121 ], [ -81.991785592884611, 28.797803835446722 ], [ -81.991853439780513, 28.797775000803085 ], [ -81.991919591385894, 28.797758038653839 ], [ -81.99200948883707, 28.797739381554109 ], [ -81.992089210247926, 28.797720722886616 ], [ -81.992189285559817, 28.797703762620728 ], [ -81.992308018817752, 28.79768340886185 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Punta Rassa Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992308018817752, 28.79768340886185 ], [ -81.992384346554374, 28.797663053475219 ], [ -81.992467460268315, 28.797634219397136 ], [ -81.992548877585818, 28.797591815290129 ], [ -81.99260485243137, 28.797554499665026 ], [ -81.992667611021119, 28.79749683001879 ], [ -81.992721889899087, 28.797439159877996 ], [ -81.992777864276746, 28.797378097110869 ], [ -81.992837230312645, 28.797301770076615 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Punta Rassa Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992837230312645, 28.797301770076615 ], [ -81.993039078102314, 28.797050735729361 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bishop Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992598063905334, 28.79854845633659 ], [ -81.992574316695737, 28.798400889889301 ], [ -81.992540394779752, 28.798263500048382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bishop Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992540394779752, 28.798263500048382 ], [ -81.992479331489776, 28.798124413215586 ], [ -81.992411485295378, 28.797954795310183 ], [ -81.992336853458298, 28.797764824407842 ], [ -81.992308018817752, 28.79768340886185 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stacey Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992540394779752, 28.798263500048382 ], [ -81.992645558042383, 28.798239753437716 ], [ -81.992764292026706, 28.798202438507062 ], [ -81.992899986420113, 28.798149856347024 ], [ -81.992959353232564, 28.79811084441172 ], [ -81.99304585945481, 28.798058263092713 ], [ -81.993118795633961, 28.797993808382664 ], [ -81.993178162393605, 28.797953100904479 ], [ -81.993279933367589, 28.797841153452108 ], [ -81.993376616920855, 28.797747863690798 ], [ -81.993466515495129, 28.797646093588504 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Everton Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99371415736401, 28.79787846917165 ], [ -81.993612387386605, 28.797759737981739 ], [ -81.993544538989497, 28.797693587041163 ], [ -81.993466515495129, 28.797646093588504 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Everton Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993466515495129, 28.797646093588504 ], [ -81.993393579152638, 28.797581638667975 ], [ -81.993261277058309, 28.797503614427729 ], [ -81.99313406311849, 28.797440856551614 ], [ -81.992989888365074, 28.797373009517305 ], [ -81.992837230312645, 28.797301770076615 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 120th Crossing", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037002799593139, 28.931103418275519 ], [ -82.036354673147983, 28.931088146812179 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 120th Crossing", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035772031937725, 28.931074417877397 ], [ -82.035452393617575, 28.931066886700616 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 10th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06088223345553, 28.620963528101097 ], [ -82.060923204419751, 28.620963509952006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 10th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05988802046673, 28.620968785012831 ], [ -82.06088223345553, 28.620963528101097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 10th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058855561404542, 28.620971639951989 ], [ -82.05988802046673, 28.620968785012831 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 10th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056815230559394, 28.620970089255881 ], [ -82.056959993152105, 28.620970028515114 ], [ -82.05734238409562, 28.62096987061047 ], [ -82.057981532304964, 28.620981651701467 ], [ -82.058781446928478, 28.620979364086324 ], [ -82.058855561404542, 28.620971639951989 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 10th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05473371358562, 28.620975630149164 ], [ -82.055805474109732, 28.62097519992329 ], [ -82.056125571016153, 28.620976873563158 ], [ -82.05643850952336, 28.62097674560621 ], [ -82.056815230559394, 28.620970089255881 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 12th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128520738179063, 28.72520567870566 ], [ -82.128252960324559, 28.724882208636185 ], [ -82.128023828125023, 28.724547345035926 ], [ -82.127710767784393, 28.724070575337464 ], [ -82.127542945099876, 28.723818002244666 ], [ -82.127459050572767, 28.723704494325062 ], [ -82.127410616416185, 28.723610830498085 ], [ -82.127362150370288, 28.723491610134158 ], [ -82.127268470899566, 28.723278722856868 ], [ -82.126997061741903, 28.722605975308699 ], [ -82.126741762001984, 28.721936051770438 ], [ -82.126583497240404, 28.72158976113251 ], [ -82.126363840158021, 28.721087344686733 ], [ -82.126173235631569, 28.720633174436458 ], [ -82.126066714503239, 28.720451534819663 ], [ -82.125976330701846, 28.720295435848744 ], [ -82.125873041718648, 28.720122312836008 ], [ -82.125805260635246, 28.720011628546857 ], [ -82.125756838824572, 28.719926482010752 ], [ -82.125669751837279, 28.719832853180005 ], [ -82.125602053566865, 28.719790321346327 ], [ -82.125521473723424, 28.719750639162129 ], [ -82.125373203950659, 28.719676945631676 ], [ -82.125253931053905, 28.719606062190252 ], [ -82.125157232751462, 28.719555037938616 ], [ -82.12507663872438, 28.719503997027441 ], [ -82.125018597890133, 28.719455777697295 ], [ -82.124963742262025, 28.719376317814103 ], [ -82.124921758184854, 28.719285486729284 ], [ -82.124821627088409, 28.71905840452968 ], [ -82.124301621186248, 28.717891777750477 ], [ -82.124078728105388, 28.717360963141836 ], [ -82.12342313556897, 28.715927525499477 ], [ -82.122925700823814, 28.714755194948708 ], [ -82.122024641980985, 28.71272280115808 ], [ -82.121604786065433, 28.711760529458658 ], [ -82.121104178025533, 28.710593869880274 ], [ -82.121058996177098, 28.710517239320886 ], [ -82.121017048426836, 28.710451963460319 ], [ -82.120965461898265, 28.710409414924545 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 14th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128079998015011, 28.66504125557136 ], [ -82.128089889406681, 28.664965812169594 ], [ -82.128061275327397, 28.664505141347203 ], [ -82.128041396164733, 28.664245631065722 ], [ -82.128055927403281, 28.66396580401716 ], [ -82.12805059647728, 28.663657710181571 ], [ -82.128067660018289, 28.663423653370405 ], [ -82.128087355923768, 28.6633143316764 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 18th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134946467255574, 28.679674910001882 ], [ -82.135182033660257, 28.679622086873561 ], [ -82.135263411536997, 28.679510727997066 ], [ -82.135340505687608, 28.679326558851457 ], [ -82.135357639543372, 28.679069576105515 ], [ -82.135349774278566, 28.67881636736595 ], [ -82.135313982965769, 28.678638034686053 ], [ -82.13527132685762, 28.678304861627062 ], [ -82.135288739386155, 28.678018670125713 ], [ -82.135290616933503, 28.677750137310252 ], [ -82.135288107649629, 28.677526689290882 ], [ -82.135307997626498, 28.6774384666973 ], [ -82.135330115978093, 28.677354159807471 ], [ -82.135334235820181, 28.677274098209978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 20th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.136846946437075, 28.677142584074726 ], [ -82.137035819719046, 28.677136353146867 ], [ -82.137136303359298, 28.677131669112214 ], [ -82.137174399999012, 28.677116350692323 ], [ -82.137209353302183, 28.677082089184921 ], [ -82.137411255366047, 28.676724956987194 ], [ -82.137573734356309, 28.676431427185356 ], [ -82.137734471251179, 28.676130257999599 ], [ -82.137885448007509, 28.675839853372917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 23rd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03308153220047, 28.788700432790826 ], [ -82.03109447105345, 28.788693206956516 ], [ -82.029877367100795, 28.788683866484757 ], [ -82.028804226989365, 28.788687936077334 ], [ -82.027438809365421, 28.788707426884436 ], [ -82.027382031794957, 28.788706394989397 ], [ -82.0272294213636, 28.788724761737097 ], [ -82.027096369674439, 28.788732474500708 ], [ -82.02660123071864, 28.788692217567366 ], [ -82.025754936307109, 28.78871735613053 ], [ -82.025187237168055, 28.788700955539642 ], [ -82.025131033894468, 28.788698466260367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 23rd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025131033894468, 28.788698466260367 ], [ -82.02464252196441, 28.788667598547541 ], [ -82.023312002417981, 28.788671669656861 ], [ -82.020949775216721, 28.788648984708605 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 29th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054561394521357, 28.712222146842954 ], [ -82.048460066120157, 28.712161786966977 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 29th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048460066120157, 28.712161786966977 ], [ -82.048413651336659, 28.712175047641544 ], [ -82.048326514868293, 28.712222266333608 ], [ -82.048299149113632, 28.712256169143853 ], [ -82.048287141081957, 28.712296222244358 ], [ -82.048297401748783, 28.713861224758727 ], [ -82.048278757616103, 28.713907304110005 ], [ -82.04823770724353, 28.713940229961498 ], [ -82.047812127704134, 28.71394366814792 ], [ -82.047442540675974, 28.71393063270537 ], [ -82.047188683288837, 28.713924138262886 ], [ -82.04707295124166, 28.713914304564849 ], [ -82.04683029393486, 28.713911095509584 ], [ -82.046546572203425, 28.713907899886248 ], [ -82.046234478685903, 28.713904057190298 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 34th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037134497048555, 28.71562003280301 ], [ -82.036354143623157, 28.713873499795675 ], [ -82.035541101014871, 28.712038335494508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 36th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044370024781642, 28.602751668798664 ], [ -82.044354979877639, 28.600006824025481 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 37th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041221717455883, 28.931006008492091 ], [ -82.041138153126738, 28.931149258502657 ], [ -82.041158923852635, 28.93197375786794 ], [ -82.041185482241687, 28.932468745704391 ], [ -82.041172654091412, 28.932959584015233 ], [ -82.041182051405173, 28.933211542270307 ], [ -82.041174729759348, 28.93351258855116 ], [ -82.041167305150907, 28.933550221864426 ], [ -82.04115243483011, 28.933571497030229 ], [ -82.041139420494119, 28.933586224589583 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 3rd Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.058876090410635, 28.613695955851558 ], [ -82.058873437190002, 28.615063666563426 ], [ -82.058880799923458, 28.616021664338771 ], [ -82.0588811945169, 28.616729619354793 ], [ -82.05888632628735, 28.617361354330551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 3rd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11056614776092, 28.654027241836502 ], [ -82.110606293732985, 28.653988215838634 ], [ -82.110622328409406, 28.653950981552203 ], [ -82.110628302774188, 28.653899576132776 ], [ -82.110632261449155, 28.653842855791581 ], [ -82.110636213705746, 28.653779045813248 ], [ -82.110642124833916, 28.653667377133917 ], [ -82.110659460387978, 28.653589922935129 ], [ -82.110693914909817, 28.653512351086036 ], [ -82.110766041768599, 28.653431980306095 ], [ -82.1108444502959, 28.653354371847005 ], [ -82.110932303224189, 28.653301682658988 ], [ -82.111013899650786, 28.653268383353677 ], [ -82.111136326142727, 28.653251666355345 ], [ -82.111290141212095, 28.653226615868665 ], [ -82.111456511003851, 28.653198786595802 ], [ -82.111569498547027, 28.653162691157021 ], [ -82.111657363700971, 28.653121077644442 ], [ -82.111726376534378, 28.653065633181512 ], [ -82.111779688213986, 28.653007432275352 ], [ -82.111820440096551, 28.652949240733708 ], [ -82.111858048685036, 28.652885513225467 ], [ -82.11187364987326, 28.65279410929049 ], [ -82.111876677662508, 28.652688869333005 ], [ -82.111879950189248, 28.651630115901952 ], [ -82.111879876009453, 28.651559217718898 ], [ -82.111869786465306, 28.65151934730364 ], [ -82.111844622391004, 28.651475056969776 ], [ -82.111801872513169, 28.651426350570091 ], [ -82.111756629133524, 28.65139536895456 ], [ -82.111703856287306, 28.651366611423452 ], [ -82.111638534925291, 28.651351157329138 ], [ -82.11155815722725, 28.651344575532121 ], [ -82.111467737290994, 28.651344649387134 ], [ -82.111404960759984, 28.651357993823243 ], [ -82.111087436979219, 28.651432230466853 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 42nd Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120806051776256, 28.694302219686151 ], [ -82.123120766424975, 28.694264652909119 ], [ -82.124815547581917, 28.69424536358677 ], [ -82.127170510371954, 28.694204140924644 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 55th Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01320846277612, 28.649944721772549 ], [ -82.013202596224332, 28.6478663109602 ], [ -82.013197724732322, 28.647576350263851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 59th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106259471773981, 28.669434319681883 ], [ -82.107431262804241, 28.66943578658185 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 59th Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107431262804241, 28.66943578658185 ], [ -82.10842770015968, 28.669437034438484 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 62nd Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99694911878872, 28.929461129214374 ], [ -81.996223241414157, 28.929460333884755 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 63rd Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126382194275308, 28.66313593978429 ], [ -82.127928428315983, 28.663116865453361 ], [ -82.128025172728357, 28.663132948971519 ], [ -82.128074776838517, 28.663161321364292 ], [ -82.128099612617376, 28.663202832418925 ], [ -82.128087355923768, 28.6633143316764 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 63rd Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124979350746628, 28.663153245444807 ], [ -82.126382194275308, 28.66313593978429 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 70th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087948507098901, 28.653862044110504 ], [ -82.085553254761606, 28.653842765781533 ], [ -82.084346385748574, 28.65382581744452 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 70th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.084346385748574, 28.65382581744452 ], [ -82.082667071849258, 28.653802236207959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 70th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.082667071849258, 28.653802236207959 ], [ -82.082066315864765, 28.653793799902097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 75th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.055620720697604, 28.646545038391245 ], [ -82.054788182923048, 28.646542010223119 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 75th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056187727885984, 28.646546859042374 ], [ -82.056128211270703, 28.646546883333709 ], [ -82.055620720697604, 28.646545038391245 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 75th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056289397362093, 28.646544401030411 ], [ -82.056187727885984, 28.646546859042374 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 88th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954090872686734, 28.755324685773626 ], [ -81.954090607976397, 28.755286335354498 ], [ -81.95408279308343, 28.75506790941979 ], [ -81.954016992929709, 28.754685369913791 ], [ -81.953981975182984, 28.754337001735003 ], [ -81.953984805757884, 28.754096937290914 ], [ -81.953990443280517, 28.752813440823978 ], [ -81.953997512217697, 28.751675934355141 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Battlefield Pkwy", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124958127188094, 28.659441218484325 ], [ -82.12496397746142, 28.658576890390798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Battlefield Pkwy", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12496397746142, 28.658576890390798 ], [ -82.12495260341565, 28.657682251433993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Battlefield Pkwy", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124979350746628, 28.663153245444807 ], [ -82.124982970498849, 28.662211073786928 ], [ -82.124976997059804, 28.661354150599795 ], [ -82.1249737636806, 28.660715828574876 ], [ -82.124970088864757, 28.659705879974499 ], [ -82.124958127188094, 28.659441218484325 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Battlefield Pkwy", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124922496729837, 28.668604689520343 ], [ -82.124920358519532, 28.666801408198697 ], [ -82.124936575377134, 28.664941221112169 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Battlefield Pkwy", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124936575377134, 28.664941221112169 ], [ -82.124979350746628, 28.663153245444807 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Belt Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.098682733313524, 28.668476038190775 ], [ -82.098055683735268, 28.66846967074326 ], [ -82.097400058578529, 28.66846717462797 ], [ -82.096438483586894, 28.668470821738282 ], [ -82.096085447452296, 28.668462174335282 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Belt Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104309687754665, 28.668512185656034 ], [ -82.103228414560434, 28.668513008200915 ], [ -82.102209009325421, 28.668516147156403 ], [ -82.101106208890187, 28.668505105897328 ], [ -82.099295995787088, 28.668480339196034 ], [ -82.098892537230981, 28.668480631849494 ], [ -82.098682733313524, 28.668476038190775 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Belt Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107738674183906, 28.668521285725252 ], [ -82.107171038281734, 28.668519943187828 ], [ -82.106271577323014, 28.668515127618054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Belt Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109554804553525, 28.668533555712301 ], [ -82.109445063780598, 28.668532435523748 ], [ -82.10845569497782, 28.6685297945176 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Belt Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108436827964098, 28.66852974453807 ], [ -82.107738674183906, 28.668521285725252 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Belt Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.110517065738975, 28.668543372453151 ], [ -82.109554804553525, 28.668533555712301 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Belt Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119168395549622, 28.668583488681247 ], [ -82.119510716257253, 28.668587981482386 ], [ -82.120816541396351, 28.668588789170201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Belt Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118780989300674, 28.668578403549869 ], [ -82.119168395549622, 28.668583488681247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bigham Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020938767576084, 28.790529397954014 ], [ -82.020938786654426, 28.790527439930941 ], [ -82.020947775924441, 28.78958090267292 ], [ -82.020949775216721, 28.788648984708605 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bigham Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020861146339115, 28.798690882232233 ], [ -82.020864439093288, 28.79816784462237 ], [ -82.020864125666705, 28.796828442914368 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bigham Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020864125666705, 28.796828442914368 ], [ -82.02086410728765, 28.796749948034243 ], [ -82.020869505437986, 28.796024342559836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Black Gum Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071174474104055, 28.608090603210403 ], [ -82.071033821996181, 28.608099319608126 ], [ -82.07093134987835, 28.60810403049236 ], [ -82.070630999264225, 28.608101672372463 ], [ -82.070357542514543, 28.608095795111591 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Bradley Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102270301258088, 28.655825678293162 ], [ -82.10227456271582, 28.654686183804444 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Bradley Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102258291898636, 28.657544593283472 ], [ -82.102268455204438, 28.657156289661383 ], [ -82.102267732339115, 28.656770612740303 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Bradley Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102267732339115, 28.656770612740303 ], [ -82.102267410081524, 28.656598651548308 ], [ -82.102269677332657, 28.655992440060746 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Bradley Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102269677332657, 28.655992440060746 ], [ -82.102270301258088, 28.655825678293162 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Bradley Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10227456271582, 28.654686183804444 ], [ -82.102277466557808, 28.653909453902816 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Busted Oaks Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096120550102015, 28.649304346341587 ], [ -82.096120622991506, 28.648784867363233 ], [ -82.096135318211594, 28.648320318556493 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030194024634625, 28.851803288343813 ], [ -82.029153337292499, 28.851390869789622 ], [ -82.028830754333029, 28.851261479240215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020335694590713, 28.847716455714309 ], [ -82.019154949312096, 28.847244340208654 ], [ -82.017718954738399, 28.846668685490108 ], [ -82.017540783536418, 28.846597367026206 ], [ -82.017411922255377, 28.846543524405295 ], [ -82.017290869973408, 28.846487387940766 ], [ -82.017164610274918, 28.846428961047508 ], [ -82.01703444549014, 28.846360220247607 ], [ -82.016886057194668, 28.846277731266539 ], [ -82.016719444775617, 28.846176909426347 ], [ -82.016535908882318, 28.84605775450569 ], [ -82.016097737083186, 28.845752742741464 ], [ -82.015964433780894, 28.845656481821489 ], [ -82.015938399129155, 28.845635953689833 ], [ -82.015913994101894, 28.845616380911537 ], [ -82.015895008820124, 28.845592986251795 ], [ -82.015882532253926, 28.845569877790382 ], [ -82.015841590600076, 28.845494179804174 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037125283265425, 28.854578490240257 ], [ -82.03665355568485, 28.854389165388653 ], [ -82.035376952401691, 28.853873048579974 ], [ -82.034404031384966, 28.853478821215369 ], [ -82.034079974140084, 28.853349868642795 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02027350430977, 28.847826886233456 ], [ -82.020277744423922, 28.84782857744143 ], [ -82.02051928051155, 28.847925012189446 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032436949566261, 28.852696038445664 ], [ -82.031373284779789, 28.852272760721196 ], [ -82.030854408332218, 28.852065260086484 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028830754333029, 28.851261479240215 ], [ -82.028150981084508, 28.850988816386689 ], [ -82.028115554732452, 28.850975641816998 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020608868227342, 28.876082795598382 ], [ -82.020608970795834, 28.876035334496514 ], [ -82.020608834300873, 28.875328867179071 ], [ -82.020609508947501, 28.874682186212233 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020605908101402, 28.879152039738539 ], [ -82.020608173388666, 28.878789702134142 ], [ -82.020606176982795, 28.878124183639322 ], [ -82.020605952456933, 28.877439583839148 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020961607141146, 28.882751102502532 ], [ -82.020864617475965, 28.882596139661025 ], [ -82.020813706143613, 28.882514794920905 ], [ -82.020747248834169, 28.882390625658871 ], [ -82.020710873810941, 28.882277708992444 ], [ -82.020650889216, 28.882060617929511 ], [ -82.020611190551904, 28.881707870050274 ], [ -82.02060868078371, 28.880964518501955 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039999503163074, 28.887311027480418 ], [ -82.039999290939306, 28.887311026640141 ], [ -82.03885302175685, 28.88730506498322 ], [ -82.037120997931396, 28.887308788111117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023688390170634, 28.8836656337742 ], [ -82.023201088631211, 28.883664906912664 ], [ -82.022819062358266, 28.883662750698992 ], [ -82.022624894066567, 28.883653905694288 ], [ -82.022486202762479, 28.883637281709515 ], [ -82.022391637744974, 28.883623981758394 ], [ -82.022225200827933, 28.883584060961752 ], [ -82.022077677669074, 28.883543024412997 ], [ -82.021950325253613, 28.883496438970536 ], [ -82.021790189014837, 28.883428774491072 ], [ -82.021680848233686, 28.883375707441832 ], [ -82.021589282264998, 28.883322002319932 ], [ -82.021476209859543, 28.883247945454425 ], [ -82.021365241972092, 28.883166957594682 ], [ -82.021254273068251, 28.883074871339165 ], [ -82.021158432748607, 28.882986112178028 ], [ -82.021056283213127, 28.882869611753861 ], [ -82.020976834503514, 28.88277308116211 ], [ -82.020961607141146, 28.882751102502532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.059211017983657, 28.887324872857167 ], [ -82.059210594563154, 28.887324874845852 ], [ -82.056852729461184, 28.88733783663152 ], [ -82.056117018132767, 28.887337394514084 ], [ -82.054848761866609, 28.887348010278458 ], [ -82.05372989731751, 28.887354534666379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036370930486527, 28.883601647599843 ], [ -82.036311328979536, 28.883602839091694 ], [ -82.035824681192864, 28.883612566641503 ], [ -82.035742791278693, 28.883615031433536 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02060868078371, 28.880964518501955 ], [ -82.020608675303009, 28.880962682319481 ], [ -82.020608588330234, 28.880937020881341 ], [ -82.020608414241721, 28.880041448836689 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03636565594239, 28.927400827585462 ], [ -82.034267350430895, 28.927398862981835 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031556582437219, 28.927387309392291 ], [ -82.030861200366218, 28.927375164996285 ], [ -82.030512579570271, 28.927358120202513 ], [ -82.029905060979601, 28.92732330638221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050407721511888, 28.927395832075849 ], [ -82.050396987313661, 28.92739587124057 ], [ -82.050395076573082, 28.927395878264146 ], [ -82.048926842055593, 28.927401210512961 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044750864379367, 28.927411417699311 ], [ -82.04295449975973, 28.927408089535376 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.034267350430895, 28.927398862981835 ], [ -82.034079993851549, 28.927398686917122 ], [ -82.033996690525939, 28.927399306766581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057817688564157, 28.927350501154255 ], [ -82.0578119891764, 28.927350539670474 ], [ -82.057809609730398, 28.927350555119293 ], [ -82.055937399999948, 28.92736302224959 ], [ -82.053640880713488, 28.927379680855687 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040661009847952, 28.927405864545353 ], [ -82.040164010020931, 28.927405436964257 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040164010020931, 28.927405436964257 ], [ -82.039582121020985, 28.927404935645225 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051573285551044, 28.927391601189385 ], [ -82.0515731317074, 28.927391602149992 ], [ -82.051559797549189, 28.927391650513478 ], [ -82.051559765754305, 28.927391649623246 ], [ -82.050856648118156, 28.927394203340153 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 466", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047970964927728, 28.927404662651668 ], [ -82.047448427024264, 28.927406616016821 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00074882493945, 28.865448627263813 ], [ -82.001773648923105, 28.865441594677854 ], [ -82.00198520993176, 28.865441593672497 ], [ -82.002505381917331, 28.86544507407206 ], [ -82.002856439930071, 28.865445068819628 ], [ -82.003076480972354, 28.865446544839518 ], [ -82.003385545998469, 28.865447279745716 ], [ -82.003995966834893, 28.865447167689609 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999944550054252, 28.86546208795011 ], [ -82.00074882493945, 28.865448627263813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014447802096058, 28.865463681405078 ], [ -82.015551391296142, 28.865466522715028 ], [ -82.017669742027223, 28.865468413328408 ], [ -82.017872147848053, 28.865469865619495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013653400073778, 28.865461635356525 ], [ -82.014447802096058, 28.865463681405078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000875609039085, 28.865314718931071 ], [ -82.000201507638749, 28.865317612894717 ], [ -81.999961653169862, 28.865318832816243 ], [ -81.99993773018447, 28.865318955493386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004147703170531, 28.865320733960782 ], [ -82.001091055630482, 28.865313793559331 ], [ -82.000875609039085, 28.865314718931071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008157964039611, 28.865329585615918 ], [ -82.008116307291985, 28.865329743121109 ], [ -82.004147703170531, 28.865320733960782 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013651926227396, 28.865308887234374 ], [ -82.013123037327986, 28.865309961259783 ], [ -82.011483334713006, 28.865329093594699 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003995966834893, 28.865447167689609 ], [ -82.005546561480557, 28.865446872316088 ], [ -82.008158552370944, 28.865453631582032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011483334713006, 28.865329093594699 ], [ -82.011192840670844, 28.865332483087716 ], [ -82.008278000750465, 28.865327566753351 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008276718728936, 28.865453819859077 ], [ -82.008622426207623, 28.865454359323564 ], [ -82.008951980563253, 28.865456884865878 ], [ -82.010432096246944, 28.865459330249163 ], [ -82.011109660719725, 28.865455773104006 ], [ -82.01125054669788, 28.865456410871218 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011434718271545, 28.865457308512784 ], [ -82.012340057375496, 28.865461723009822 ], [ -82.012758291890805, 28.865459331128388 ], [ -82.013653400073778, 28.865461635356525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008158552370944, 28.865453631582032 ], [ -82.008276718728936, 28.865453819859077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 466A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008278000750465, 28.865327566753351 ], [ -82.008157964039611, 28.865329585615918 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004138694127377, 28.755825540059099 ], [ -82.003635306459714, 28.755824421539465 ], [ -81.999558750914559, 28.755808166814731 ], [ -81.999273948478972, 28.755810454526259 ], [ -81.998962919548347, 28.755809964080726 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.96661960683052, 28.755541531404475 ], [ -81.964228614109814, 28.75549724912074 ], [ -81.96346018799035, 28.755487180571397 ], [ -81.9620194495416, 28.755460684416978 ], [ -81.96024054741639, 28.755428599198723 ], [ -81.959042297217493, 28.755407207342845 ], [ -81.958216831724002, 28.755393110609909 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.970798764812017, 28.75560999498499 ], [ -81.97074714256064, 28.75560906972979 ], [ -81.96974865283741, 28.755594549146405 ], [ -81.968744717763116, 28.75558089066006 ], [ -81.96661960683052, 28.755541531404475 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958216831724002, 28.755393110609909 ], [ -81.957999348445611, 28.755389396748978 ], [ -81.957378145350063, 28.755378708695492 ], [ -81.956060627922284, 28.755354551100758 ], [ -81.95567132293607, 28.755353672919547 ], [ -81.954090872686734, 28.755324685773626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 472", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016423324618472, 28.909061301487824 ], [ -82.014477839165295, 28.909044629823335 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 472", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022632199370037, 28.909076172104495 ], [ -82.022622681169409, 28.909076194415583 ], [ -82.021536075585175, 28.909059988474368 ], [ -82.020403835700449, 28.909053579444027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 472", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020403835700449, 28.909053579444027 ], [ -82.019286606090162, 28.909056525563585 ], [ -82.018506843995041, 28.909059345732402 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 472", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018506843995041, 28.909059345732402 ], [ -82.01734231695896, 28.909058679138866 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141830777326518, 28.657754371734807 ], [ -82.143462632410788, 28.657759359789019 ], [ -82.145548015698878, 28.657770542511631 ], [ -82.146227857102872, 28.657772662375525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.147144945034341, 28.657775523502945 ], [ -82.149841094488039, 28.657790783160888 ], [ -82.150050402672406, 28.657793390623816 ], [ -82.150232565947249, 28.657792559131579 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.146227857102872, 28.657772662375525 ], [ -82.147144945034341, 28.657775523502945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12495260341565, 28.657682251433993 ], [ -82.125978458317576, 28.657686993343098 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122377424605347, 28.657664294456481 ], [ -82.124228628367135, 28.657677218122224 ], [ -82.12495260341565, 28.657682251433993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13009396589527, 28.657706451949025 ], [ -82.131123763481725, 28.657710964342598 ], [ -82.132098740420076, 28.657711769227078 ], [ -82.133137005049065, 28.657715992823842 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127003606397224, 28.657691731749932 ], [ -82.129066980012681, 28.657704817434457 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129066980012681, 28.657704817434457 ], [ -82.129438807870571, 28.657703580701693 ], [ -82.13009396589527, 28.657706451949025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.125978458317576, 28.657686993343098 ], [ -82.127003606397224, 28.657691731749932 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120849312648943, 28.657651907863652 ], [ -82.121281525187214, 28.657655561348761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121281525187214, 28.657655561348761 ], [ -82.122016129225884, 28.657661772136223 ], [ -82.122377424605347, 28.657664294456481 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997052123465451, 28.625057839165965 ], [ -81.997050694543844, 28.625248685624875 ], [ -81.997036776304142, 28.62570265379869 ], [ -81.997031200261389, 28.626186068166415 ], [ -81.997008915977588, 28.627437545575702 ], [ -81.996983851015457, 28.628595776827478 ], [ -81.996961570899927, 28.629665667217353 ], [ -81.996939283532228, 28.630934321786238 ], [ -81.996919785413795, 28.63193305078487 ], [ -81.996894721814954, 28.633010304548268 ], [ -81.996880790171716, 28.63382499075642 ], [ -81.996861285918669, 28.634958680160537 ], [ -81.996855718470343, 28.635145175161636 ], [ -81.996856273127378, 28.635203332640135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996906853249484, 28.619448096562074 ], [ -81.99693958266559, 28.62064029287588 ], [ -81.996942642250758, 28.620751479231672 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996942642250758, 28.620751479231672 ], [ -81.996959029272702, 28.621347012883611 ], [ -81.996984032811611, 28.622247587027079 ], [ -81.996997926482834, 28.622647569122257 ], [ -81.997014593303703, 28.623315026260158 ], [ -81.99705071920674, 28.624404551102717 ], [ -81.997053486686667, 28.624875695759656 ], [ -81.997052123465451, 28.625057839165965 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017406810098109, 28.609896164959391 ], [ -82.017405777341835, 28.609896166890174 ], [ -82.016701522450106, 28.609897715550428 ], [ -82.014084152966447, 28.609904130389907 ], [ -82.011984692923434, 28.609907387912088 ], [ -82.01134652004859, 28.609909535857252 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036530611727244, 28.609948872087358 ], [ -82.036442514360303, 28.609948510844045 ], [ -82.035077168172251, 28.609943953634634 ], [ -82.032607866104712, 28.609932285340403 ], [ -82.030507906537764, 28.609926071870515 ], [ -82.029923948327763, 28.609920063325553 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043213634859413, 28.609989814480439 ], [ -82.042271657575199, 28.609983969596609 ], [ -82.041511815201545, 28.609976531496866 ], [ -82.040026894930264, 28.609964699539674 ], [ -82.038358162942842, 28.609956557675041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038358162942842, 28.609956557675041 ], [ -82.038124864749449, 28.609955419190022 ], [ -82.036530611727244, 28.609948872087358 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 478A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071238711914631, 28.60270779880916 ], [ -82.069583884724437, 28.602698313138362 ], [ -82.068615618755643, 28.602696318107046 ], [ -82.067893339914406, 28.602691624001348 ], [ -82.067142435340784, 28.602688625619763 ], [ -82.065739537467707, 28.60268643021001 ], [ -82.064994085666569, 28.602681618054056 ], [ -82.063852491741656, 28.60268043066084 ], [ -82.062958730060316, 28.60267567704112 ], [ -82.061528322716171, 28.602672879481293 ], [ -82.060987772269982, 28.602669676035291 ], [ -82.060365258367483, 28.602664784763029 ], [ -82.059732991214062, 28.602661615634286 ], [ -82.058915339504921, 28.602663690774442 ], [ -82.05816804699576, 28.60267619301495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 478A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05816804699576, 28.60267619301495 ], [ -82.058070371156717, 28.602677827800314 ], [ -82.056546814869151, 28.60271191643324 ], [ -82.056234086298218, 28.602714756053178 ], [ -82.054921201227046, 28.602745349218839 ], [ -82.054712036715912, 28.602746338409212 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.097975663507142, 28.653877371827857 ], [ -82.097048859409725, 28.653872654269765 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.093406792373329, 28.653747103188827 ], [ -82.093169757546221, 28.653709253166451 ], [ -82.092936307598123, 28.65366823399982 ], [ -82.092731585724238, 28.653624028657958 ], [ -82.09255200076008, 28.653582971384481 ], [ -82.092368821870394, 28.653535583715197 ], [ -82.092178458947828, 28.653488197933619 ], [ -82.092002457007524, 28.653434468735146 ], [ -82.091837226923545, 28.653380732073558 ], [ -82.091628894196475, 28.653314353512648 ], [ -82.091445696959582, 28.653244790629802 ], [ -82.091215802948923, 28.653159419970187 ], [ -82.091036187576833, 28.653080351654406 ], [ -82.090791914688793, 28.652975986672082 ], [ -82.090554822691544, 28.652868446590457 ], [ -82.090310532448555, 28.652745073965878 ], [ -82.090080599865104, 28.652612190758713 ], [ -82.089847078353159, 28.65247930771077 ], [ -82.089663843992469, 28.652365396279542 ], [ -82.089487798490111, 28.652257815188555 ], [ -82.089279413148645, 28.652124915608447 ], [ -82.08907821572879, 28.651998345415354 ], [ -82.088902174104874, 28.651893930749146 ], [ -82.088672238180834, 28.651751540837754 ], [ -82.08848181472284, 28.651624962765979 ], [ -82.088341699890705, 28.651542698103281 ], [ -82.088219549787027, 28.651469924201297 ], [ -82.088104589795194, 28.651406647145979 ], [ -82.08797885378371, 28.65134021062881 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102277466557808, 28.653909453902816 ], [ -82.100220000020485, 28.653892811018711 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100220000020485, 28.653892811018711 ], [ -82.100096446353064, 28.65389181066303 ], [ -82.098838590908116, 28.653882880904774 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.097048859409725, 28.653872654269765 ], [ -82.096536492828804, 28.653870045724641 ], [ -82.096090636850846, 28.653866303895466 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.096090636850846, 28.653866303895466 ], [ -82.095718323247723, 28.653862511828461 ], [ -82.095622574636664, 28.653861517696004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.095622574636664, 28.653861517696004 ], [ -82.095169043632637, 28.653856813606318 ], [ -82.094624362256525, 28.653851109974131 ], [ -82.094466217094919, 28.653850902624569 ], [ -82.094333343001693, 28.65384149188856 ], [ -82.094157375120631, 28.653828943513716 ], [ -82.093967039094082, 28.653813236689349 ], [ -82.093801845067304, 28.653800679544755 ], [ -82.093618683899038, 28.653775463919168 ], [ -82.093406792373329, 28.653747103188827 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.150218061947911, 28.66867838219714 ], [ -82.150318109024511, 28.668677125856725 ], [ -82.151040551171761, 28.668684348342538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138797025403989, 28.668601620750938 ], [ -82.138101876103264, 28.668599462112642 ], [ -82.13735475471465, 28.668598307868375 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.138785260072936, 28.668718399007492 ], [ -82.139099868428588, 28.668719978532803 ], [ -82.139766002718915, 28.668730097820138 ], [ -82.139896841807499, 28.668733916669485 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.134169614701193, 28.668636624765917 ], [ -82.135310034418808, 28.668639613788585 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13306773631362, 28.668633735598426 ], [ -82.134169614701193, 28.668636624765917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120816541396351, 28.668588789170201 ], [ -82.121811631313221, 28.668596149599139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122460104986601, 28.668603855897967 ], [ -82.122891756475028, 28.668608985385873 ], [ -82.123783503243857, 28.668605728160397 ], [ -82.124127453947906, 28.668607582925997 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.121811631313221, 28.668596149599139 ], [ -82.122460104986601, 28.668603855897967 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124127453947906, 28.668607582925997 ], [ -82.124561358153059, 28.668609921346107 ], [ -82.124922496729837, 28.668604689520343 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caribe Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996142694785405, 28.952210593726683 ], [ -81.996375621329335, 28.952241378607205 ], [ -81.996610735244843, 28.952270238553535 ], [ -81.996812652254221, 28.952291268072706 ], [ -81.996995664640181, 28.952308721960897 ], [ -81.997080961872939, 28.95231353317202 ], [ -81.997160342000498, 28.952314049285839 ], [ -81.997240619916965, 28.952309688483624 ], [ -81.997321546391333, 28.952298149011323 ], [ -81.997398095745282, 28.952276029122505 ], [ -81.997466990101231, 28.95225006075983 ], [ -81.997538072770297, 28.952218323149037 ], [ -81.99759493683986, 28.952184659736258 ], [ -81.997641960671132, 28.952151958859428 ], [ -81.997710857679778, 28.952097135971322 ], [ -81.997714401140072, 28.952093407765314 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Central Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100244173638714, 28.661241828871788 ], [ -82.101046254914081, 28.661233997642597 ], [ -82.1011279235004, 28.661235338533828 ], [ -82.10113406318726, 28.661235855537413 ], [ -82.101147677056659, 28.661240575490698 ], [ -82.101162705291088, 28.661247989665657 ], [ -82.101184073765182, 28.661260222115899 ], [ -82.101194205501429, 28.661267334022966 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Citrus Grove Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.961170756987642, 28.78397655477989 ], [ -81.961382157524639, 28.783551708473674 ], [ -81.96143165215436, 28.783322239714778 ], [ -81.961449650002066, 28.783155763322867 ], [ -81.961622879205052, 28.782656332054188 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Clarke Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04545419711917, 28.872813254209358 ], [ -82.045466194815262, 28.872813303456958 ], [ -82.047453493423916, 28.872820654988619 ], [ -82.047554825977002, 28.872821030314995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016346231112934, 28.938283181379379 ], [ -82.01634630482404, 28.938288964171385 ], [ -82.016347169567467, 28.938356384361047 ], [ -82.016349918283026, 28.938978623822074 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016352827872865, 28.939244049396649 ], [ -82.0163590015365, 28.939785232635867 ], [ -82.016359009849069, 28.93978592920552 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016349918283026, 28.938978623822074 ], [ -82.016352806041084, 28.939242145559668 ], [ -82.016352827872865, 28.939244049396649 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 104", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03776822586633, 28.945603730081817 ], [ -82.037195786337705, 28.945599462519546 ], [ -82.036549911932568, 28.945599637052464 ], [ -82.035030470766216, 28.945590065995177 ], [ -82.035029624474461, 28.945590061700813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 105", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032850790986885, 28.928650549869598 ], [ -82.032844310166752, 28.929218625359045 ], [ -82.032844530415062, 28.929927048411457 ], [ -82.032857624117085, 28.930264117257014 ], [ -82.03286149205455, 28.930884587268313 ], [ -82.032861795403335, 28.930933248838226 ], [ -82.032852502681507, 28.930955624362799 ], [ -82.032837987513474, 28.930968850069551 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 106", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03526433622001, 28.926597125310217 ], [ -82.033887673276709, 28.926586738690993 ], [ -82.033815890984499, 28.926586113113242 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 106", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033815890984499, 28.926586113113242 ], [ -82.033261086666371, 28.926584485091404 ], [ -82.032870791235041, 28.926591102963851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 106", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036835350920214, 28.926597599762665 ], [ -82.03646083733733, 28.926596618341751 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 106", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031573536539753, 28.926602585829134 ], [ -82.03156274646291, 28.926611026579003 ], [ -82.031549782828733, 28.926635755156752 ], [ -82.031545469488847, 28.926668088991175 ], [ -82.031547638985245, 28.926696618158953 ], [ -82.03154765956269, 28.926765568834917 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 114", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028632590407398, 28.901872725099931 ], [ -82.026728523120525, 28.90185348840215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 116", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028607152862307, 28.900714342420301 ], [ -82.028285755142861, 28.900714504512308 ], [ -82.026725809642741, 28.900716788560757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 117", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024664143807144, 28.905806768612059 ], [ -82.024664139848838, 28.905807385784573 ], [ -82.024662043453432, 28.906171909117266 ], [ -82.024671289096531, 28.906932979479691 ], [ -82.024671004691868, 28.907478657651456 ], [ -82.024671192520287, 28.907792736629737 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 117", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024669395963045, 28.904893027596273 ], [ -82.024669393992085, 28.904893371372186 ], [ -82.02466605779361, 28.905473696694337 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 118", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028688508515017, 28.899616301996915 ], [ -82.026725528916671, 28.899602585973049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 120", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026223177776131, 28.898506635690687 ], [ -82.025361942765812, 28.898500413885071 ], [ -82.024986625914892, 28.898500482349608 ], [ -82.02460768094285, 28.89849416755245 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 121", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020582075614314, 28.887317386096399 ], [ -82.020575432575455, 28.887739555434461 ], [ -82.020569825891727, 28.888304616492572 ], [ -82.020569618102982, 28.889199082177782 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 121", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020570112438776, 28.893684308772862 ], [ -82.020570226653561, 28.894276134300057 ], [ -82.020565778786235, 28.894461573763198 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 121", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020565493102509, 28.894591057400781 ], [ -82.020568472131856, 28.895353502739344 ], [ -82.020565718273645, 28.895858988420397 ], [ -82.020556864859842, 28.896955129091328 ], [ -82.020551979889063, 28.897458665099219 ], [ -82.020551978865981, 28.897458676829263 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 121", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020582429814183, 28.88541864862496 ], [ -82.0205824339901, 28.885419037515973 ], [ -82.020590856387471, 28.886354680600554 ], [ -82.020585108950073, 28.886699697751641 ], [ -82.020582075614314, 28.887317386096399 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 121", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020565778786235, 28.894461573763198 ], [ -82.02056547259663, 28.894585744664099 ], [ -82.020565492006341, 28.894590690165028 ], [ -82.020565493102509, 28.894591057400781 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 121", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020570036599665, 28.891617702062018 ], [ -82.020570036602109, 28.891617714694203 ], [ -82.020571820429439, 28.892854767539749 ], [ -82.020570112438776, 28.893684308772862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 121", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020569618102982, 28.889199082177782 ], [ -82.020569315215951, 28.890503992353342 ], [ -82.020569400550158, 28.890946246596283 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 124", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03481309098575, 28.890872852400349 ], [ -82.034783654648507, 28.89087333989168 ], [ -82.034130917676208, 28.890884503772412 ], [ -82.033663923484085, 28.890892526879778 ], [ -82.032723946216677, 28.890895097428238 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 124", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036903726492142, 28.890838537002278 ], [ -82.036603041751889, 28.890841184689474 ], [ -82.035508656176106, 28.890861122826049 ], [ -82.035491599905427, 28.890861426805493 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 124", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035491599905427, 28.890861426805493 ], [ -82.035491209280153, 28.890861433222696 ], [ -82.03535221030819, 28.890863911654488 ], [ -82.034817372485477, 28.89087278093422 ], [ -82.03481309098575, 28.890872852400349 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 125B 1", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017560566436217, 28.891423769621483 ], [ -82.017559675471091, 28.891423759808241 ], [ -82.017281367285349, 28.891420604894485 ], [ -82.017280387121289, 28.891420594188141 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 127", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028870987633667, 28.881988115252902 ], [ -82.02887092426117, 28.882007634745705 ], [ -82.028871054132637, 28.882484612713291 ], [ -82.028864387315636, 28.883610534110893 ], [ -82.028873872919874, 28.88367627466695 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 127", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028881640261432, 28.879778542402295 ], [ -82.028881622299807, 28.879780346106536 ], [ -82.028878935675735, 28.880052562872329 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 127", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028881234346258, 28.873680213978485 ], [ -82.028881225296757, 28.873680861833357 ], [ -82.02887963451164, 28.873801971874425 ], [ -82.028884408596909, 28.875308401205828 ], [ -82.028887691250219, 28.876122224528295 ], [ -82.028881843372176, 28.87713277129912 ], [ -82.028887748735897, 28.878143566295389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 127", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028888438026058, 28.878261674723447 ], [ -82.028891477858906, 28.878781976353928 ], [ -82.028890912217221, 28.878839306906375 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 127", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028887748735897, 28.878143566295389 ], [ -82.028888438026058, 28.878261674723447 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 128", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028873872919874, 28.88367627466695 ], [ -82.028884692233319, 28.883722880750025 ], [ -82.028883470764697, 28.884402364048704 ], [ -82.028881526810636, 28.885504455278973 ], [ -82.028893178477588, 28.887088460338774 ], [ -82.028886468331834, 28.887167462658283 ], [ -82.02886502782556, 28.887220855365854 ], [ -82.028832630834629, 28.887252402062245 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 128", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02677965474065, 28.887291694540178 ], [ -82.025744623873891, 28.887296607808793 ], [ -82.02566318134339, 28.887296623870505 ], [ -82.025233001451724, 28.887292609388911 ], [ -82.023498272733534, 28.887324516327411 ], [ -82.022724035347991, 28.887324645545615 ], [ -82.021937306970443, 28.887322060879175 ], [ -82.021937289541455, 28.887322060881935 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 128", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021937289541455, 28.887322060881935 ], [ -82.021002759243075, 28.887318991477436 ], [ -82.02089503994091, 28.887319008629454 ], [ -82.020582075614314, 28.887317386096399 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 128", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028832630834629, 28.887252402062245 ], [ -82.028792242537577, 28.88727413700261 ], [ -82.028747362046786, 28.88728599719083 ], [ -82.028677793826958, 28.887289961061924 ], [ -82.027510828098059, 28.88728822293821 ], [ -82.02677965474065, 28.887291694540178 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 129", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031718124073763, 28.870944919087833 ], [ -82.031718179520212, 28.871133554437598 ], [ -82.031718397343965, 28.871861147621338 ], [ -82.031712467527072, 28.872543600861221 ], [ -82.031712508229262, 28.87264533092474 ], [ -82.031708403741746, 28.872682919077054 ], [ -82.031702598807698, 28.872714265493524 ], [ -82.031693890447414, 28.87274096752617 ], [ -82.031681119802769, 28.872764768689201 ], [ -82.031662543521179, 28.872783343247367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 134", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031275069681001, 28.872809509272024 ], [ -82.029903205043212, 28.872796643959525 ], [ -82.028892909056466, 28.872791469968266 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 134", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.031662543521179, 28.872783343247367 ], [ -82.031630616408037, 28.872794953293795 ], [ -82.031566181228499, 28.872805401408502 ], [ -82.031474936504637, 28.872811383815574 ], [ -82.031275069681001, 28.872809509272024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 138", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032547376522658, 28.870293357746288 ], [ -82.032489410590699, 28.870295296960954 ], [ -82.031769971725012, 28.870290074578481 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 138", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033043835999322, 28.870276745290258 ], [ -82.032547376522658, 28.870293357746288 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 142", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020524231540449, 28.861830191738182 ], [ -82.01923775372596, 28.861844773986899 ], [ -82.018815243026253, 28.861846022545045 ], [ -82.018510583905226, 28.861828871599709 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 144", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018632718276734, 28.85819435598426 ], [ -82.018632529686968, 28.858194360520887 ], [ -82.018458147757713, 28.858199025982518 ], [ -82.01644478643901, 28.858192156331761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 144", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01980670590379, 28.858172416542587 ], [ -82.019510864470277, 28.858170865616234 ], [ -82.018632718276734, 28.85819435598426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 144", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020524830680941, 28.858176184551731 ], [ -82.019910702410328, 28.858172962081493 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 148", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989807811671255, 28.823487029279949 ], [ -81.987869946312614, 28.822160649928694 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 156", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028676935677865, 28.839827605400952 ], [ -82.026925646678663, 28.839848461950425 ], [ -82.026172084431508, 28.839855614473585 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 156", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030028553032423, 28.83983988309663 ], [ -82.03002843313368, 28.839839880415777 ], [ -82.029932309337653, 28.839838257265612 ], [ -82.028676935677865, 28.839827605400952 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 156", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026172084431508, 28.839855614473585 ], [ -82.025602865359659, 28.839861016326363 ], [ -82.025165045742895, 28.839881600407455 ], [ -82.02502997576309, 28.83989802966002 ], [ -82.024908673000056, 28.839929742288472 ], [ -82.024852783499497, 28.839949139263986 ], [ -82.024811828015913, 28.839973188550331 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 169", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998728656583268, 28.832192507211683 ], [ -81.997984896928983, 28.83303758655077 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 169", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999071232421741, 28.831803264518381 ], [ -81.998728656583268, 28.832192507211683 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 171", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999458024934796, 28.832695681421214 ], [ -81.99924506954936, 28.832935239371373 ], [ -81.9987103859537, 28.83354252778728 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 171", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999800910173917, 28.832309960419046 ], [ -81.999458024934796, 28.832695681421214 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 173 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010796533837194, 28.837473810897219 ], [ -82.010769867418659, 28.83865968735876 ], [ -82.010766088663559, 28.839131342540362 ], [ -82.010777573031589, 28.839191984843797 ], [ -82.010796709347687, 28.839252894559298 ], [ -82.010830998553928, 28.839300325375049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 181", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037225170731034, 28.836224485071661 ], [ -82.037218794578138, 28.838089821429957 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 201", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039168703723391, 28.927404578477891 ], [ -82.03916895491075, 28.928144267023757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 201", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039169026005695, 28.928354973569366 ], [ -82.03916909380176, 28.92855403689903 ], [ -82.03916824681734, 28.928855497391211 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 201", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038097968610927, 28.931066174512143 ], [ -82.03759207129545, 28.93106901077519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 207", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0479933088168, 28.9260969833887 ], [ -82.047986024890989, 28.926108208698381 ], [ -82.047980564941724, 28.926122637413926 ], [ -82.047978752219223, 28.926141874977979 ], [ -82.047976947969545, 28.926181951037549 ], [ -82.047975469325692, 28.926938582555692 ], [ -82.047970964927728, 28.927404662651668 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 207 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04889889541866, 28.926080631937314 ], [ -82.048913483187462, 28.926101465195902 ], [ -82.048920784900218, 28.926128716386906 ], [ -82.048926265588037, 28.926159171378295 ], [ -82.048929928232752, 28.92619924548508 ], [ -82.048928369569595, 28.926766719061785 ], [ -82.048926842055593, 28.927401210512961 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053652233193986, 28.94201309386408 ], [ -82.053652282898256, 28.94203410011761 ], [ -82.053652599584396, 28.942168166229298 ], [ -82.053634467678577, 28.94341552594442 ], [ -82.05363496860349, 28.944396899467694 ], [ -82.053633315841481, 28.945620358667771 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053729764395356, 28.872767243219293 ], [ -82.053726092853125, 28.873743126447405 ], [ -82.053722665424814, 28.875195941676029 ], [ -82.053718785322758, 28.875760925592669 ], [ -82.053719159381885, 28.876494670623412 ], [ -82.053719808406953, 28.877767716388338 ], [ -82.053723016202994, 28.878668710609936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053658345123452, 28.925520593284244 ], [ -82.053657114083023, 28.926502857056288 ], [ -82.053657668615955, 28.926654969276228 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053640426015704, 28.921523871817829 ], [ -82.05364265169348, 28.922676412345769 ], [ -82.053644168099325, 28.922904787160022 ], [ -82.053644169166802, 28.922904869268454 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053646315605462, 28.920011315601169 ], [ -82.053645751288784, 28.92011536312792 ], [ -82.053639818248911, 28.921208934894036 ], [ -82.053640422246886, 28.921522514767165 ], [ -82.053640426015704, 28.921523871817829 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053644169166802, 28.922904869268454 ], [ -82.053647169879326, 28.923356954020768 ], [ -82.053649039741444, 28.923799669757202 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 214", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0536603611651, 28.916518494343517 ], [ -82.052553437044395, 28.916523037988938 ], [ -82.050988067678631, 28.916509661156145 ], [ -82.049538404794774, 28.916502212637784 ], [ -82.049501408061246, 28.916502088938199 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 214", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039044516578244, 28.916450423911488 ], [ -82.038046245230603, 28.916452081466225 ], [ -82.037112225355415, 28.916455525107725 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 214", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04123696366625, 28.916461381306423 ], [ -82.041160305636609, 28.916455097386585 ], [ -82.040547767468283, 28.916441307687592 ], [ -82.040158914107451, 28.916444531892981 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 216", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045383262649622, 28.909210457199336 ], [ -82.045376194216828, 28.909210425263183 ], [ -82.044219964596863, 28.909205231373356 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 216", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040203151321151, 28.90918923099526 ], [ -82.039142628706557, 28.909185134707684 ], [ -82.038382972695686, 28.909180764596577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 216", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038382972695686, 28.909180764596577 ], [ -82.037889272511819, 28.909177924683316 ], [ -82.037094117434108, 28.909170102235976 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 219", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061046131086172, 28.848733266329383 ], [ -82.061009171453989, 28.848869156444003 ], [ -82.060999959054058, 28.848950684711404 ], [ -82.060941796000051, 28.849784979033398 ], [ -82.060862183045785, 28.850888311243896 ], [ -82.060797759284739, 28.85157586176738 ], [ -82.060797831398276, 28.851700866101055 ], [ -82.06080097008649, 28.851790540235417 ], [ -82.060813377014526, 28.851896518488399 ], [ -82.060838134949364, 28.852007923103717 ], [ -82.060878331991546, 28.852130191787314 ], [ -82.060924698352508, 28.852244305380651 ], [ -82.060992677858636, 28.852369277550377 ], [ -82.061054464683949, 28.852461644978582 ], [ -82.061198653678218, 28.852638063883525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 222", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051470031422326, 28.901927763758891 ], [ -82.051469948366773, 28.901927763790255 ], [ -82.050058551975141, 28.901920486368315 ], [ -82.047859352353882, 28.901908810705478 ], [ -82.047533300757209, 28.901908560184356 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 222", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.047533300757209, 28.901908560184356 ], [ -82.047532616829926, 28.901908558618068 ], [ -82.04594461158851, 28.90190733769629 ], [ -82.045512957164874, 28.901906480773562 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 222", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045512957164874, 28.901906480773562 ], [ -82.045417851268894, 28.901906218304173 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 242", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049833729502936, 28.860602501260722 ], [ -82.049775162246732, 28.860623493037348 ], [ -82.049712300765449, 28.86064758034923 ], [ -82.049645547070938, 28.860655649548164 ], [ -82.049573320359286, 28.860666640553255 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 311", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120825654183221, 28.685949996374436 ], [ -82.12082545669864, 28.68577695491674 ], [ -82.120823027445553, 28.683660116650739 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 311", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120823027445553, 28.683660116650739 ], [ -82.120822926106086, 28.683571767774243 ], [ -82.120810875366701, 28.683214908602881 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 314", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109919908238737, 28.690427411562776 ], [ -82.112418680014684, 28.690432302554807 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 318C", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127120098181834, 28.683247887966409 ], [ -82.127129074438855, 28.6826080877027 ], [ -82.127136608505907, 28.68173144141651 ], [ -82.127129783031663, 28.681613128796233 ], [ -82.12708655364554, 28.681542596936687 ], [ -82.12700464560082, 28.681499366826127 ], [ -82.126936388859633, 28.681467514072146 ], [ -82.126911361451064, 28.681399256220931 ], [ -82.126906811025393, 28.681308247791485 ], [ -82.126925013044641, 28.680621129572245 ], [ -82.126925013876686, 28.680402708710883 ], [ -82.126922738947883, 28.680220690883257 ], [ -82.126925013524072, 28.679908984943179 ], [ -82.126937852375434, 28.679599565583647 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 503", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013560164901619, 28.79876775251638 ], [ -82.013560155949122, 28.798769880170049 ], [ -82.013556090490525, 28.799654444493935 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 507", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027074620413956, 28.801528769553844 ], [ -82.027059381431002, 28.802633083082444 ], [ -82.027065173326008, 28.803209096094289 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 507", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027099056207433, 28.799704620145743 ], [ -82.027082060744448, 28.800989577174605 ], [ -82.027080894956043, 28.80107404462882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 514", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103557707217391, 28.799098753098516 ], [ -82.101689864346056, 28.799307430549536 ], [ -82.099497448424003, 28.799517434185045 ], [ -82.096912724519569, 28.799798835585026 ], [ -82.096474230807971, 28.799834724222983 ], [ -82.095980825534483, 28.799849805882999 ], [ -82.09551832771777, 28.799851416024325 ], [ -82.094590867236533, 28.799846489913495 ], [ -82.091207674756703, 28.799854442576109 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 514", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.091207674756703, 28.799854442576109 ], [ -82.087823875161291, 28.799862397481728 ], [ -82.082853845453997, 28.799868100879124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 521", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053925440953847, 28.801667954132146 ], [ -82.052820260531519, 28.801662319197053 ], [ -82.05254702009556, 28.801663810163408 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 521", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05254702009556, 28.801663810163408 ], [ -82.051846041261285, 28.801667635761831 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 521", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051846041261285, 28.801667635761831 ], [ -82.051625569333126, 28.801668839620117 ], [ -82.051223451662224, 28.801676662772241 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 521", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049732080173882, 28.801808281353154 ], [ -82.049615904911363, 28.801857603152616 ], [ -82.049518599505745, 28.801919044206308 ], [ -82.0494397816922, 28.801963764112941 ], [ -82.049286249519525, 28.802072799615182 ], [ -82.048968286980255, 28.802351375764321 ], [ -82.048540386712276, 28.802726071803718 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 521", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048540386712276, 28.802726071803718 ], [ -82.047201313476435, 28.803892135440478 ], [ -82.046367852740417, 28.804622200546333 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 523", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05395803390239, 28.794289936732159 ], [ -82.053965171590022, 28.794940561544021 ], [ -82.053955347678098, 28.795696133678746 ], [ -82.053932487729028, 28.797594055866622 ], [ -82.053929409077497, 28.798229693372967 ], [ -82.05392731066506, 28.7989114160052 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 523", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05392731066506, 28.7989114160052 ], [ -82.053924500323575, 28.799824130622799 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 526", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064739488310295, 28.741466575171522 ], [ -82.064346732295505, 28.741480831810694 ], [ -82.063976325205161, 28.741483820400166 ], [ -82.063570790195101, 28.741486824264832 ], [ -82.063248283952177, 28.741498228975836 ], [ -82.063034060446896, 28.741493668915144 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 526", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065432405039587, 28.741454990586465 ], [ -82.06524718866774, 28.741438192799912 ], [ -82.065103502128153, 28.741449516699102 ], [ -82.064739488310295, 28.741466575171522 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 528", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066438779029738, 28.734135792086974 ], [ -82.065702210466583, 28.734137655823872 ], [ -82.064893172073539, 28.734142092619468 ], [ -82.063939712037168, 28.734150114665635 ], [ -82.063065936408677, 28.734140919435113 ], [ -82.062894606559325, 28.734149069396636 ], [ -82.06284368620976, 28.73414622785695 ], [ -82.062799268891212, 28.734155798400042 ], [ -82.0627687256043, 28.734172810364516 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 528", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0697887700655, 28.734119428698165 ], [ -82.067114667683015, 28.734134081297483 ], [ -82.066438779029738, 28.734135792086974 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 529", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.09162843988436, 28.7470250573237 ], [ -82.091656013063798, 28.746341483653634 ], [ -82.091679699502109, 28.745133572931863 ], [ -82.091682774876404, 28.744957282311653 ], [ -82.091685892092954, 28.744805487008975 ], [ -82.091695490679115, 28.744630771965607 ], [ -82.091694487408134, 28.743482290957495 ], [ -82.091690737945825, 28.742909484547862 ], [ -82.091699377077489, 28.741637841416583 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 533", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065602627426657, 28.748847336310703 ], [ -82.065618557971149, 28.748016189679156 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 542 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104249527561947, 28.683123021271445 ], [ -82.10580685433257, 28.683101477317834 ], [ -82.107419571664707, 28.683098182859503 ], [ -82.107846624922288, 28.683100073020196 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 542 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109155292145033, 28.683102406377287 ], [ -82.109781771876442, 28.683101350687604 ], [ -82.110165144713875, 28.683122444094796 ], [ -82.110282817503432, 28.683128452404933 ], [ -82.110740108923636, 28.683150031233463 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 542 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.107846624922288, 28.683100073020196 ], [ -82.108340058130111, 28.683102256550644 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 542 West", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108340058130111, 28.683102256550644 ], [ -82.108589318527692, 28.683103360505761 ], [ -82.109155292145033, 28.683102406377287 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 542D", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104263238471233, 28.677699782301431 ], [ -82.10478523361256, 28.677697253162396 ], [ -82.105617131875178, 28.677703970617401 ], [ -82.106227392433723, 28.677703619820129 ], [ -82.107245383109287, 28.677705317861417 ], [ -82.107486398206973, 28.677703458067416 ], [ -82.107702244803278, 28.677707486469153 ], [ -82.108108540279218, 28.677711364714192 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 542F", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108186454571467, 28.680600579797559 ], [ -82.108186101074267, 28.679216095724868 ], [ -82.108209862405602, 28.677916525085692 ], [ -82.108198472686581, 28.677839227785853 ], [ -82.108178615613966, 28.677779393696614 ], [ -82.108108540279218, 28.677711364714192 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 542F", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108186558478209, 28.681001669401592 ], [ -82.108186454571467, 28.680600579797559 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 549", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.109875565456761, 28.670313872166954 ], [ -82.109918912471855, 28.670315487631033 ], [ -82.110790253880225, 28.670338455798909 ], [ -82.111170181497485, 28.670354535012919 ], [ -82.111306457158022, 28.670358065751373 ], [ -82.11140141576611, 28.670339779207797 ], [ -82.111444751384312, 28.670316072043246 ], [ -82.111483941136498, 28.670279619199363 ], [ -82.111525159016963, 28.670206747459552 ], [ -82.111553922428271, 28.670071970554623 ], [ -82.11157849775087, 28.669880747157325 ], [ -82.111619291930239, 28.669410900940999 ], [ -82.111668327100475, 28.668921017060374 ], [ -82.11169838929365, 28.668550650862656 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 549", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108770877968936, 28.67027270374653 ], [ -82.109875565456761, 28.670313872166954 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 557", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103297259788178, 28.657289446291049 ], [ -82.103303451902548, 28.655709389478503 ], [ -82.103304047893403, 28.655587837378825 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 557", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103308442962529, 28.654691178979181 ], [ -82.103312243879145, 28.653915897538354 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 557", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103307460803791, 28.654891571051113 ], [ -82.103308442962529, 28.654691178979181 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 557", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103305281491274, 28.65533604907576 ], [ -82.103307460803791, 28.654891571051113 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 557", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103304047893403, 28.655587837378825 ], [ -82.103305281491274, 28.65533604907576 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 557", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.103296176035371, 28.657565779698892 ], [ -82.103297259788178, 28.657289446291049 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 569", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000951420197566, 28.679004436996504 ], [ -82.000935066960309, 28.678254798698497 ], [ -82.000937959890493, 28.677248642670303 ], [ -82.000936720452543, 28.676741418385632 ], [ -82.0009274677912, 28.676382600627718 ], [ -82.000932488489482, 28.675443253900568 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 569", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000987361259931, 28.68243815578834 ], [ -82.000993164972954, 28.682320387112025 ], [ -82.000987355662133, 28.681833949317337 ], [ -82.000972830464164, 28.680774031118336 ], [ -82.000952492951555, 28.679053578884876 ], [ -82.000951420197566, 28.679004436996504 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 569", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.000893674344539, 28.664405931632022 ], [ -82.000883804970428, 28.660335900152795 ], [ -82.000879998153891, 28.659074764323339 ], [ -82.000902207028631, 28.657063001348682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 571", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991069064976656, 28.656966037179767 ], [ -81.991141750413732, 28.657018187122738 ], [ -81.99119509430335, 28.657056459627547 ], [ -81.991302156918323, 28.657116923188191 ], [ -81.991493776402052, 28.657202308338654 ], [ -81.991667224276924, 28.657280214415632 ], [ -81.991792750893893, 28.657334838847166 ], [ -81.99188023721176, 28.657379651529997 ], [ -81.992159630775532, 28.65752156429053 ], [ -81.992289449448592, 28.657603721454251 ], [ -81.992391044048134, 28.657695834116495 ], [ -81.99246441613046, 28.657775498273317 ], [ -81.992520857853648, 28.657837737339786 ], [ -81.992594229030558, 28.657962210459846 ], [ -81.992636555638867, 28.658066766364463 ], [ -81.992676057957468, 28.658198704341562 ], [ -81.992700164006806, 28.658317581054217 ], [ -81.992707083800042, 28.658492452977914 ], [ -81.992701426419444, 28.658686624227901 ], [ -81.992707859873292, 28.659681092815344 ], [ -81.992702413566533, 28.660770903035974 ], [ -81.992684640012214, 28.663253582248597 ], [ -81.992680186171143, 28.663496249363934 ], [ -81.992659289969609, 28.663617613904623 ], [ -81.992636680759304, 28.663700201448233 ], [ -81.992603578316405, 28.663792755574011 ], [ -81.992563212319368, 28.663867508938246 ], [ -81.99246633291601, 28.664020578016366 ], [ -81.992341202892703, 28.664152285327493 ], [ -81.992179750508029, 28.664259072411102 ], [ -81.992002152111084, 28.66434805707669 ], [ -81.991719611603045, 28.664447714954882 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 605", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127003606397224, 28.657691731749932 ], [ -82.127001531855171, 28.657239931586194 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 605", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.126999574298424, 28.65684702300058 ], [ -82.126988164549985, 28.655975951209346 ], [ -82.127007851092287, 28.655901523716221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 605", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127001531855171, 28.657239931586194 ], [ -82.126999783570739, 28.656859399215922 ], [ -82.126999574298424, 28.65684702300058 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 702", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974299917623128, 28.653469467701974 ], [ -81.973860365261956, 28.653469382695409 ], [ -81.973569639939768, 28.653466271282049 ], [ -81.973251222850251, 28.653472314231678 ], [ -81.972219835258997, 28.65347210453038 ], [ -81.97043740315722, 28.653471723614683 ], [ -81.967855470214545, 28.653477237254595 ], [ -81.965581570579531, 28.653479725621857 ], [ -81.963913351883321, 28.653479288067139 ], [ -81.960358870571227, 28.65348439335046 ], [ -81.958317553790295, 28.65347669308926 ], [ -81.95716282576231, 28.65347961318124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 702", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98444986445466, 28.653437201748805 ], [ -81.984350762179531, 28.653437439177683 ], [ -81.982364129454155, 28.653443296233256 ], [ -81.980356729542649, 28.65344301590056 ], [ -81.978058600710753, 28.653451817149783 ], [ -81.976137651030029, 28.653460313287514 ], [ -81.976137550779995, 28.653460313269655 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 702", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986887697373959, 28.65344992500463 ], [ -81.986740399659055, 28.653431714773543 ], [ -81.98444986445466, 28.653437201748805 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 702", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976137550779995, 28.653460313269655 ], [ -81.97606504539219, 28.653460634193465 ], [ -81.974299917623128, 28.653469467701974 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 710", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982920564222141, 28.64617278796803 ], [ -81.982521802229329, 28.646173015080237 ], [ -81.982140798519708, 28.646173764949221 ], [ -81.981954401517186, 28.646174132367666 ], [ -81.981846617898526, 28.646166885512407 ], [ -81.981749899981352, 28.646159194331968 ], [ -81.981675176106862, 28.646152208123802 ], [ -81.981593413489662, 28.646140826525425 ], [ -81.981484606829696, 28.646123122967719 ], [ -81.981387635090258, 28.646093430729284 ], [ -81.98128510683182, 28.646059363115416 ], [ -81.981206654458902, 28.646030373556609 ], [ -81.981143384651574, 28.646002456269589 ], [ -81.981073602053314, 28.645969410954194 ], [ -81.980984812276574, 28.645924701100714 ], [ -81.980900135487673, 28.645874955838195 ], [ -81.980804226682153, 28.645812811708058 ], [ -81.980746929517039, 28.645769276553526 ], [ -81.980694370931474, 28.645728429217627 ], [ -81.980650349555759, 28.645686608575609 ], [ -81.980613562918066, 28.645651192851272 ], [ -81.980578849069303, 28.645613589252569 ], [ -81.980536355750544, 28.645561886406838 ], [ -81.980500664996882, 28.645513796593807 ], [ -81.980455654515396, 28.645450658044883 ], [ -81.980407740880949, 28.645383462149798 ], [ -81.98038024512411, 28.645348759666973 ], [ -81.980354827323637, 28.645328032870772 ], [ -81.980323360540154, 28.645311067018923 ], [ -81.980282197012016, 28.645298772026052 ], [ -81.9802271678045, 28.64529486128276 ], [ -81.980175797458287, 28.645290873459469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 710", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98413803037549, 28.646177271600795 ], [ -81.983544086617101, 28.646172433349903 ], [ -81.982920564222141, 28.64617278796803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 710", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98439818854844, 28.646179391275034 ], [ -81.98413803037549, 28.646177271600795 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 723", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046487959874213, 28.602686888235507 ], [ -82.045358395772737, 28.602722866481884 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 723", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045358395772737, 28.602722866481884 ], [ -82.044696787889578, 28.602733763039428 ], [ -82.044370024781642, 28.602751668798664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 727", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046487959874213, 28.602686888235507 ], [ -82.046487432500953, 28.601769014480961 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 733", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065148362655123, 28.614997776781632 ], [ -82.06514756473284, 28.613702163722959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 733", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06515955787701, 28.62096909744384 ], [ -82.065155561605138, 28.620026163715824 ], [ -82.065157405390394, 28.618585547998119 ], [ -82.065157081025163, 28.618061359189262 ], [ -82.065156711236298, 28.617461856572106 ], [ -82.065156397125349, 28.617368737059884 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 733", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065156397125349, 28.617368737059884 ], [ -82.065155349020415, 28.617057150596313 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 733", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065155349020415, 28.617057150596313 ], [ -82.065152532267405, 28.616220676538742 ], [ -82.065150197822788, 28.615589147935889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 733", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065150197822788, 28.615589147935889 ], [ -82.065148433124691, 28.615112050000825 ], [ -82.065148362655123, 28.614997776781632 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 740", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062896730351412, 28.610036367586254 ], [ -82.062228323636461, 28.610010626636399 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 747", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075434756374548, 28.65017234539393 ], [ -82.075434632050133, 28.649997059602043 ], [ -82.075434459037211, 28.64975511561024 ], [ -82.075433257971653, 28.649235616500082 ], [ -82.075442608063966, 28.648774559423444 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 763", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108492220479675, 28.652713755659889 ], [ -82.108496171989188, 28.651672449263771 ], [ -82.108497518510703, 28.650538093294877 ], [ -82.108496043962973, 28.650274050512532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 763", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108494876548363, 28.653953290505598 ], [ -82.108490909200555, 28.653635753131852 ], [ -82.108492220479675, 28.652713755659889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 763", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108496043962973, 28.650274050512532 ], [ -82.108494438787616, 28.649986427103546 ], [ -82.108493840733232, 28.649405956360415 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Martin Luther King Jr Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102258291898636, 28.657544593283472 ], [ -82.101528102869366, 28.657536373543152 ], [ -82.100184970515329, 28.657518077682326 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Etheredge Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114828157247842, 28.668566963344684 ], [ -82.114843981974715, 28.669479116001209 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062198844717187, 28.809486796887491 ], [ -82.062189253622279, 28.810742298906675 ], [ -82.062185073065635, 28.810781174126227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062235981017551, 28.80531486481016 ], [ -82.062236115386014, 28.805541068620091 ], [ -82.062226326592622, 28.80645995189608 ], [ -82.06222156649585, 28.807145617996447 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06222156649585, 28.807145617996447 ], [ -82.062205267341795, 28.808701350096943 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evans Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062205267341795, 28.808701350096943 ], [ -82.062198732906111, 28.809298777160528 ], [ -82.062198844717187, 28.809486796887491 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grapefruit Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069134509669581, 28.607654451699801 ], [ -82.069123199581938, 28.607577680803463 ], [ -82.06911352710145, 28.607531465056653 ], [ -82.069101704485732, 28.607494921682754 ], [ -82.069078059015467, 28.607443331403044 ], [ -82.069059787337935, 28.607417536347459 ], [ -82.069035067497396, 28.607378844663643 ], [ -82.069020019239446, 28.607341226410799 ], [ -82.069005270134497, 28.607298218322281 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heritage Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018605833031742, 28.832785891077553 ], [ -82.018603575758007, 28.833317578063426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Heritage Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018603575758007, 28.833317578063426 ], [ -82.018594258344024, 28.833785134421557 ], [ -82.01859192048434, 28.833847199967437 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Jasper Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100244176692343, 28.66124181262753 ], [ -82.100228142073703, 28.662022369074144 ], [ -82.10024375889823, 28.662536878078434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Jasper Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10024375889823, 28.662536878078434 ], [ -82.100244094447021, 28.662889781326662 ], [ -82.10024038819634, 28.663566819180868 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Jasper Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.10024038819634, 28.663566819180868 ], [ -82.100225794177391, 28.664017497525688 ], [ -82.100215478530259, 28.66487395913137 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lake Sumter Lndg", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972458328826349, 28.908287874222964 ], [ -81.972259531678986, 28.908340157434552 ], [ -81.972176273416608, 28.90836854449546 ], [ -81.972069227109145, 28.908407390492957 ], [ -81.971957080993931, 28.90845072156209 ], [ -81.971899309561863, 28.908473134258866 ], [ -81.971807554061172, 28.908506002825629 ], [ -81.971714098519456, 28.908541863892584 ], [ -81.971642733474553, 28.90856875892926 ], [ -81.971515437740365, 28.908620813444962 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Lawrence Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104358195954134, 28.667571862042927 ], [ -82.104328429433494, 28.667766459296384 ], [ -82.104317646279341, 28.66787937010432 ], [ -82.10431228729756, 28.667968253964222 ], [ -82.104312406160389, 28.668088361566106 ], [ -82.104309857577618, 28.668266124843221 ], [ -82.104309687754665, 28.668512185656034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lindewood Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020119379482978, 28.848337967289538 ], [ -82.020467848150645, 28.84847935579316 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lowery Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137452255471516, 28.665075979890833 ], [ -82.137481126834871, 28.665062229901213 ], [ -82.137523339953489, 28.665052387077907 ], [ -82.137614450869378, 28.665048376278833 ], [ -82.137701122712045, 28.665048288733857 ], [ -82.140540942179101, 28.665080419972568 ], [ -82.141549988397159, 28.665077961564034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lowery Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142468253373806, 28.66508643301443 ], [ -82.142927462767545, 28.665092272024445 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lowery Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141549988397159, 28.665077961564034 ], [ -82.141761400901103, 28.66507744581542 ], [ -82.142009138149305, 28.665080595056047 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lowery Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142009138149305, 28.665080595056047 ], [ -82.142468253373806, 28.66508643301443 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lowery Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.142927462767545, 28.665092272024445 ], [ -82.143159110065511, 28.665095217673969 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lowery Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.143159110065511, 28.665095217673969 ], [ -82.143328187709173, 28.665097367936497 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "M Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.137133710091092, 28.675518091818038 ], [ -82.137185228679414, 28.675511125395843 ], [ -82.137325549492758, 28.67549837848323 ], [ -82.137452786907545, 28.675473754606816 ], [ -82.137576283443721, 28.675456870072711 ], [ -82.13766723625605, 28.675451048406217 ], [ -82.137778992209888, 28.675455519289262 ], [ -82.137916745060465, 28.675465693571184 ], [ -82.138002773784095, 28.675471909248774 ], [ -82.138072960793565, 28.675485892852389 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104297969344913, 28.653924254807212 ], [ -82.104328564059117, 28.653088795955128 ], [ -82.104340996071812, 28.652043500289423 ], [ -82.104251363988311, 28.647132158801714 ], [ -82.103865230181313, 28.646620389279136 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112194930745474, 28.669104167389442 ], [ -82.11219728944657, 28.669230491982969 ], [ -82.11221846431377, 28.66957417837677 ], [ -82.11220943199865, 28.669974618318008 ], [ -82.112181411929186, 28.670310003961681 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112110505326953, 28.670982725606059 ], [ -82.112078420674948, 28.671304495620284 ], [ -82.112039034804127, 28.6716282089134 ], [ -82.111977213663096, 28.672200543882887 ], [ -82.111902258946557, 28.672878004896429 ], [ -82.111829170290321, 28.673532104707512 ], [ -82.111741049157573, 28.674281317075543 ], [ -82.111656520715243, 28.674855340487554 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111656520715243, 28.674855340487554 ], [ -82.111564743314531, 28.675728023416383 ], [ -82.111480407237053, 28.676483907731079 ], [ -82.111386681202546, 28.677306538706492 ], [ -82.111309834343416, 28.677990672274994 ], [ -82.111199273379725, 28.678996848110959 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.111199273379725, 28.678996848110959 ], [ -82.111079326861017, 28.680078110699643 ], [ -82.110978165729975, 28.681032555895349 ], [ -82.110848820922939, 28.682175559460646 ], [ -82.110740108923636, 28.683150031233463 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112223345041713, 28.66856475045941 ], [ -82.11218725797734, 28.668693253321258 ], [ -82.112194930745474, 28.669104167389442 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North Main Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.112181411929186, 28.670310003961681 ], [ -82.112123342564104, 28.670853972113719 ], [ -82.112110505326953, 28.670982725606059 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Margaret Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019968487054797, 28.851560721128433 ], [ -82.020430623472663, 28.85156023741764 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004136511064146, 28.782226473800574 ], [ -82.004135809248424, 28.781730049954103 ], [ -82.004133420252913, 28.779869021664144 ], [ -82.004120488955209, 28.779551890679997 ], [ -82.004092733816634, 28.779235343835634 ], [ -82.004053927799177, 28.778942263747364 ], [ -82.004000571266033, 28.778639572513516 ], [ -82.003937985861711, 28.778355493515413 ], [ -82.003833104097609, 28.777955885662621 ], [ -82.003738810983975, 28.777655486158928 ], [ -82.003663530590572, 28.777444303525268 ], [ -82.003581098786228, 28.777232418986333 ], [ -82.003460658057577, 28.776957967669983 ], [ -82.003335365863137, 28.776695621789607 ], [ -82.003199451896222, 28.776436401588832 ], [ -82.00302654732306, 28.776132134636061 ], [ -82.002543354798007, 28.775426633552559 ], [ -82.001783908104557, 28.774429827389977 ], [ -82.000954437791719, 28.773341568932981 ], [ -81.999989652371141, 28.772080220331969 ], [ -81.999580343644837, 28.771545557218499 ], [ -81.998559688172108, 28.770208192760272 ], [ -81.998175789981062, 28.769691742407812 ], [ -81.997680587075735, 28.769049709045461 ], [ -81.997308096872246, 28.76855311994721 ], [ -81.997123100510279, 28.768285282200221 ], [ -81.997039299486744, 28.76815575725783 ], [ -81.996961229413316, 28.768025166758964 ], [ -81.996872573391599, 28.767873590776841 ], [ -81.996765394766953, 28.767677706909549 ], [ -81.996638370035711, 28.767427023837058 ], [ -81.996561626607814, 28.767255624944532 ], [ -81.996467681807005, 28.767041086671458 ], [ -81.996404169320144, 28.766882516276524 ], [ -81.996293026673797, 28.766574701282551 ], [ -81.996193794626691, 28.766262221550793 ], [ -81.996123914907727, 28.765991316860877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996123914907727, 28.765991316860877 ], [ -81.996123886238621, 28.765991209484287 ], [ -81.996100117653015, 28.765899065966522 ], [ -81.9960588442611, 28.765725878505496 ], [ -81.996006250922676, 28.765436262901403 ], [ -81.995979467813413, 28.765294471067204 ], [ -81.995958302122446, 28.765141730681314 ], [ -81.995931845380895, 28.764889885018643 ], [ -81.9959186212931, 28.764712659583161 ], [ -81.995906758375256, 28.764387536265385 ], [ -81.995904296765104, 28.764048279326069 ], [ -81.995904294731119, 28.764047949980185 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99589850510668, 28.761244219247281 ], [ -81.995897193308068, 28.759619711518109 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995900013424048, 28.763110975367034 ], [ -81.995899119723148, 28.762004540075829 ], [ -81.995899113831086, 28.761998654258054 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9959013648336, 28.763644421845999 ], [ -81.995900328486911, 28.763501568731883 ], [ -81.995900015385885, 28.7631129893396 ], [ -81.995900013424048, 28.763110975367034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995904294731119, 28.764047949980185 ], [ -81.995901368907411, 28.763644943385575 ], [ -81.9959013648336, 28.763644421845999 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004309416190139, 28.786621698614862 ], [ -82.004180301855271, 28.785581346113176 ], [ -82.004159021476454, 28.785330245174507 ], [ -82.004141996401799, 28.785094132463918 ], [ -82.004139108002562, 28.784977346876733 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995899113831086, 28.761998654258054 ], [ -81.99589850510668, 28.761244219247281 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020540584145564, 28.866522250266282 ], [ -82.02054182107571, 28.866952115486086 ], [ -82.02054792677194, 28.867013739190295 ], [ -82.020563607231068, 28.867064188259569 ], [ -82.020594230753161, 28.867109694105586 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 81st Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019315527377017, 28.874618614067622 ], [ -82.019574153521361, 28.874647662809021 ], [ -82.019857786908204, 28.874652166675954 ], [ -82.01987722713929, 28.874652408427686 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020605952456933, 28.877439583839148 ], [ -82.020608868227342, 28.876082795598382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Starwood Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020608868227342, 28.876082795598382 ], [ -82.019874470178792, 28.876092608443606 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arrowwood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01987722713929, 28.874652408427686 ], [ -82.01986804416002, 28.875605026075558 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arrowwood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01986804416002, 28.875605026075558 ], [ -82.019874470178792, 28.876092608443606 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Arrowwood Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019874470178792, 28.876092608443606 ], [ -82.019870725535171, 28.876671550301118 ], [ -82.019142693123598, 28.876679605987821 ], [ -82.019142697265693, 28.875615768422225 ], [ -82.01986804416002, 28.875605026075558 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122459365455597, 28.66492384669176 ], [ -82.122759949052508, 28.664927718188395 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Old 313", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.141053380312954, 28.675855596398595 ], [ -82.141338881028361, 28.675979707579444 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Palm Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11484385620787, 28.670330802242376 ], [ -82.115202512104489, 28.670331288525592 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Palm Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115202512104489, 28.670331288525592 ], [ -82.116544645876587, 28.670333111003945 ], [ -82.11666131427458, 28.670334427047813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Parker Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.113307987332831, 28.669486835548103 ], [ -82.113984520881431, 28.669483435170807 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Parker Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.114843981974715, 28.669479116001209 ], [ -82.115356649969641, 28.669482817109735 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Parker Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.115356649969641, 28.669482817109735 ], [ -82.11629596450824, 28.669489599279299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Parkhill Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122917633602384, 28.65942137148663 ], [ -82.123324912885508, 28.659424510330307 ], [ -82.12375813873976, 28.659424117941455 ], [ -82.123928336797519, 28.659430115517342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020524736839803, 28.857011023422519 ], [ -82.020524622137529, 28.857086133076848 ], [ -82.020522189954022, 28.857976520307474 ], [ -82.020524830680941, 28.858176184551731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.106151879815926, 28.653934835686247 ], [ -82.106131307938398, 28.653934626090848 ], [ -82.105767573331605, 28.653934909167315 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0547977609707, 28.651537738963771 ], [ -82.054794156336911, 28.650165456991978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054778040864306, 28.640711334144743 ], [ -82.054775169879846, 28.63968280936982 ], [ -82.054774163371249, 28.639235333673764 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 66th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124524299740301, 28.658551106799568 ], [ -82.124692326760282, 28.658552877967978 ], [ -82.12496397746142, 28.658576890390798 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 66th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.124210034101296, 28.658558410800993 ], [ -82.124427576815975, 28.658550087907582 ], [ -82.124524299740301, 28.658551106799568 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 66th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123281605684952, 28.658594933175355 ], [ -82.123585830024538, 28.658592255862544 ], [ -82.124138474273877, 28.658561149563059 ], [ -82.124210034101296, 28.658558410800993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 66th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122845047147891, 28.658598773949436 ], [ -82.123281605684952, 28.658594933175355 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 66th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.122379735351231, 28.658602868308126 ], [ -82.122845047147891, 28.658598773949436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 66th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12174974068779, 28.658605233999932 ], [ -82.121925328605087, 28.658606866502559 ], [ -82.122379735351231, 28.658602868308126 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 81st Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017202168780571, 28.874659036344958 ], [ -82.01702252675733, 28.874661032527513 ], [ -82.016709685746932, 28.874681009248615 ], [ -82.016508544436746, 28.874698910384371 ], [ -82.015751612436134, 28.874847953908102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 66th Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.102270851451863, 28.65938545520072 ], [ -82.102240090564109, 28.65938545566927 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 469", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980175797458287, 28.645290873459469 ], [ -81.98015536135091, 28.645198270853509 ], [ -81.980128700332131, 28.645093252069561 ], [ -81.980093956135079, 28.644974368576261 ], [ -81.980061101677705, 28.644874981236335 ], [ -81.980019729153724, 28.644762792066985 ], [ -81.97997196961532, 28.644646668640384 ], [ -81.979889359091118, 28.644470242213909 ], [ -81.979436963660561, 28.643642913838313 ], [ -81.978820602830609, 28.642521983581481 ], [ -81.978066601775453, 28.641150694263739 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 469", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978066601775453, 28.641150694263739 ], [ -81.977458815495439, 28.640045321387518 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 469", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974775131619708, 28.635159996841498 ], [ -81.974102447370669, 28.633930979833529 ], [ -81.97304726986269, 28.632013718206412 ], [ -81.972823425766919, 28.63160638455194 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 469", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972823425766919, 28.63160638455194 ], [ -81.972661362804942, 28.631311476435577 ], [ -81.971908502116349, 28.629948788759208 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 49th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024336954803573, 28.825274690513627 ], [ -82.023885776604047, 28.825273574883933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Taylor Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068652120490015, 28.80352033346475 ], [ -82.068470004733513, 28.8035209798044 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036912420736769, 28.912855534979716 ], [ -82.036930047858036, 28.914330271937679 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036930047858036, 28.914330271937679 ], [ -82.036939875764872, 28.91515241122827 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037043036238032, 28.930080676484312 ], [ -82.0370430209923, 28.930081072595737 ], [ -82.03703084027623, 28.930390649524281 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06981030648376, 28.789177116435386 ], [ -82.069880951265759, 28.789668591674065 ], [ -82.06994733785956, 28.790107679849843 ], [ -82.069978097766153, 28.79032505825694 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045577784392151, 28.812846191311632 ], [ -82.045574757273897, 28.814097814419529 ], [ -82.045573985520207, 28.814382519599469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.045573985520207, 28.814382519599469 ], [ -82.045572114627447, 28.815071937227945 ], [ -82.045571470665593, 28.815296573762893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118708939266369, 28.650327488426569 ], [ -82.119103540681564, 28.649531270823726 ], [ -82.119552868315438, 28.648610062238436 ], [ -82.120020298940418, 28.647658667458295 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104249527561947, 28.683123021271445 ], [ -82.104253720498221, 28.681786902691524 ], [ -82.104253231934791, 28.681293221621846 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104301539912569, 28.670791965420658 ], [ -82.104301503617805, 28.670316946143654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104300073250769, 28.671069531159876 ], [ -82.104301546588701, 28.670877281833388 ], [ -82.104301539912569, 28.670791965420658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104253231934791, 28.681293221621846 ], [ -82.104252824421053, 28.680881429693187 ], [ -82.104252437615713, 28.680490555560343 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037022421271587, 28.919615143211445 ], [ -82.037027915231249, 28.919811225959197 ], [ -82.037036579031508, 28.920161707803892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064220911259667, 28.744301917228228 ], [ -82.064496873744176, 28.743575817456165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120839811458282, 28.661288857327175 ], [ -82.120838510310051, 28.66187006035403 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120801007897981, 28.679578468114173 ], [ -82.12080182561759, 28.680068518749795 ], [ -82.120808142809594, 28.681385411580692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120808142809594, 28.681385411580692 ], [ -82.120808976177386, 28.681558910971329 ], [ -82.120809616471661, 28.682117231045769 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120794704435397, 28.670812519533872 ], [ -82.120792724842005, 28.671441076724861 ], [ -82.120794264822649, 28.671633145735761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120794264822649, 28.671633145735761 ], [ -82.12079909730592, 28.672235857642779 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120796122120964, 28.67036231142859 ], [ -82.120794704435397, 28.670812519533872 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120839356160801, 28.662740138866415 ], [ -82.120837407226944, 28.663814738022694 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South West Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120843049464995, 28.660358895262959 ], [ -82.120842089212317, 28.659969142205014 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "June Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01926664391307, 28.87097480397237 ], [ -82.019247002653657, 28.871157901950628 ], [ -82.019227509055654, 28.871370139765915 ], [ -82.019227509195304, 28.871530401351968 ], [ -82.019246999483386, 28.871749136675977 ], [ -82.019314134137986, 28.872180110429525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sunshine Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01926664391307, 28.87097480397237 ], [ -82.019092377412974, 28.87094709474486 ], [ -82.018878225064213, 28.87092329856323 ], [ -82.018697386921872, 28.870918538880975 ], [ -82.018473717343497, 28.87093281509226 ], [ -82.01822625381557, 28.870989920934012 ], [ -82.017931200242472, 28.871061303249778 ], [ -82.017637930763527, 28.871113054196609 ], [ -82.017340498759452, 28.871136847170604 ], [ -82.017019271775652, 28.871142793929014 ], [ -82.016814043711236, 28.871124947680958 ], [ -82.016629635559042, 28.871104126469106 ], [ -82.016338151788844, 28.871080330883949 ], [ -82.016123999661133, 28.871062483720561 ], [ -82.015903899692631, 28.871062482634102 ], [ -82.015648108035904, 28.871086275278163 ], [ -82.015413135542317, 28.871110069670589 ], [ -82.015115704293876, 28.871142785120504 ], [ -82.014883705691261, 28.871139809654796 ], [ -82.014720117977035, 28.871139808778974 ], [ -82.012848080567892, 28.871137520629571 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "June Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018649786710469, 28.868456810251885 ], [ -82.018776055748432, 28.868593272094152 ], [ -82.018954515304287, 28.868814562174823 ], [ -82.019061590183028, 28.86900372896066 ], [ -82.019095996982301, 28.869111684811859 ], [ -82.019118387255844, 28.869237632415103 ], [ -82.019118386326355, 28.869518912726768 ], [ -82.019115516661785, 28.869785318054038 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "June Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019115516661785, 28.869785318054038 ], [ -82.019125831266479, 28.869970976286449 ], [ -82.019168660348697, 28.870153004598585 ], [ -82.019268597199812, 28.870420694159016 ], [ -82.019307857225272, 28.870652690629925 ], [ -82.019297149159058, 28.870799264879103 ], [ -82.01926664391307, 28.87097480397237 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stokes Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019115516661785, 28.869785318054038 ], [ -82.018959082808209, 28.869784645513441 ], [ -82.01873520665643, 28.869799373335834 ], [ -82.018549626767623, 28.869837665664964 ], [ -82.018396448967508, 28.869887742065668 ], [ -82.018258000104268, 28.869955493385593 ], [ -82.018134278191866, 28.870017353323405 ], [ -82.017995829089855, 28.870067430064818 ], [ -82.01781024836535, 28.870117506353889 ], [ -82.017642341652135, 28.870167582868348 ], [ -82.017503892425296, 28.870188202524989 ], [ -82.017350714988694, 28.870208821157483 ], [ -82.017197536624991, 28.870217657345272 ], [ -82.017017847583347, 28.87021765671841 ], [ -82.016864669668095, 28.870197035948461 ], [ -82.016687926675203, 28.870170523064324 ], [ -82.016546531687666, 28.870141066083061 ], [ -82.016366842184254, 28.870096878815652 ], [ -82.016198936940668, 28.870032072328559 ], [ -82.016069325523077, 28.869976102022186 ], [ -82.015930876009506, 28.869905405203873 ], [ -82.015783590092767, 28.869817032217281 ], [ -82.015659869999595, 28.86973160607576 ], [ -82.015536149682262, 28.869643233800041 ], [ -82.01543305059478, 28.869575481285054 ], [ -82.015294600829733, 28.869510674943626 ], [ -82.015188554631919, 28.869469434928835 ], [ -82.014973516884979, 28.869448814147916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penrose Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012848080567892, 28.871137520629571 ], [ -82.012847347963188, 28.871881213067674 ], [ -82.012862507208183, 28.871961343393927 ], [ -82.01290798717956, 28.872030646038539 ], [ -82.012996780352907, 28.872084788728969 ], [ -82.013111562788851, 28.872115109072126 ], [ -82.013222013930005, 28.872117276073322 ], [ -82.014885272586127, 28.872106454507186 ], [ -82.015008718337924, 28.872112953333573 ], [ -82.015112672221235, 28.872112953951191 ], [ -82.015249111256779, 28.872121616689167 ], [ -82.015372556953622, 28.872134611761293 ], [ -82.015489503951386, 28.872149771157527 ], [ -82.015656262969742, 28.872164932135007 ], [ -82.015779708131376, 28.872173595781479 ], [ -82.015937804289109, 28.872182259901265 ], [ -82.016098065879447, 28.872180094151414 ], [ -82.016243168167051, 28.872175764439096 ], [ -82.016383939422937, 28.872177930752688 ], [ -82.016505218061297, 28.872162771393882 ], [ -82.016639492008963, 28.872149776813817 ], [ -82.016747776934267, 28.872136783401377 ], [ -82.016873388505317, 28.872128121577394 ], [ -82.016979507040134, 28.87212595677321 ], [ -82.017087792600634, 28.872123791621267 ], [ -82.017213403121701, 28.872121626059467 ], [ -82.017358504958551, 28.872121627101691 ], [ -82.017460292491677, 28.8721194624558 ], [ -82.017581573081884, 28.872123793669548 ], [ -82.017711515036126, 28.872136788490142 ], [ -82.017863113340027, 28.87215194865508 ], [ -82.018032038710814, 28.872167110025607 ], [ -82.01816847703266, 28.872175773417503 ], [ -82.018333071320725, 28.87217794001155 ], [ -82.018499830045286, 28.87218876912511 ], [ -82.018644931866689, 28.87218227310624 ], [ -82.018913479102807, 28.872184440414387 ], [ -82.019060747418436, 28.872186605759172 ], [ -82.019314134137986, 28.872180110429525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Penrose Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019314134137986, 28.872180110429525 ], [ -82.019684469952097, 28.872180111883711 ], [ -82.019994164448931, 28.872134634159185 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02880180097776, 28.799719862439677 ], [ -82.028924473494229, 28.799720977462126 ], [ -82.029142892507636, 28.799722192313247 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029142892507636, 28.799722192313247 ], [ -82.029456204332959, 28.799722125269806 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030117987621551, 28.799721814443256 ], [ -82.030519472537975, 28.799721215047033 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.032261714200004, 28.799730603139892 ], [ -82.032482721820941, 28.799731660396489 ], [ -82.03273241889552, 28.799731812708067 ], [ -82.033248404710989, 28.79973484686688 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017293386176576, 28.799647311043039 ], [ -82.016824932852302, 28.799641408596404 ], [ -82.016154555337394, 28.799668060514634 ], [ -82.014699467431129, 28.799660434841048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017612637805129, 28.799651333868812 ], [ -82.017293386176576, 28.799647311043039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020868838278574, 28.799693777763061 ], [ -82.020512003883482, 28.799688796339669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.963190137986103, 28.866890868149103 ], [ -81.963190349413395, 28.866295624961658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Riverstone Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039448509586251, 28.924356963110391 ], [ -82.039600789414351, 28.924245292477103 ], [ -82.03990972412511, 28.92397270664781 ], [ -82.040098719188606, 28.923801886472337 ], [ -82.040258636819928, 28.923700121852463 ], [ -82.040400383326698, 28.923634701462074 ], [ -82.04072385394737, 28.923638337230024 ], [ -82.04126903062172, 28.923641973929769 ], [ -82.041428948332936, 28.923627436415121 ], [ -82.041439851377859, 28.923849140585357 ], [ -82.041425311768833, 28.924147169505378 ], [ -82.041305372746294, 28.924252568679997 ], [ -82.041174530991853, 28.92425983741159 ], [ -82.041065495212891, 28.924274374662186 ], [ -82.040938287908503, 28.924376140348645 ], [ -82.040938285966348, 28.924666900456032 ], [ -82.040944762906349, 28.924892022953536 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bismarck Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040944762906349, 28.924892022953536 ], [ -82.040550369831422, 28.924887937817939 ], [ -82.040291796199625, 28.924835166065623 ], [ -82.040096546520118, 28.924787671702695 ], [ -82.039898659551582, 28.924703239667373 ], [ -82.039648002470756, 28.924555482454576 ], [ -82.039472737854311, 28.924391374159388 ], [ -82.039448509586251, 28.924356963110391 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bismarck Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039448509586251, 28.924356963110391 ], [ -82.038977823228663, 28.923972371308825 ], [ -82.038693422716207, 28.923960518421875 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Riverstone Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040189572040788, 28.925953508828304 ], [ -82.039618955289228, 28.925960774895284 ], [ -82.039520823233062, 28.925957140021097 ], [ -82.039422690875995, 28.925938966395996 ], [ -82.039342732450862, 28.925909890446601 ], [ -82.039244600391697, 28.925837200026116 ], [ -82.039157373526265, 28.925749972237597 ], [ -82.039091953317879, 28.925604592451784 ], [ -82.039095588697819, 28.925368350709753 ], [ -82.039091956970125, 28.924823176010371 ], [ -82.039106494769513, 28.924717776553443 ], [ -82.039153743949285, 28.924634183411065 ], [ -82.039291855261169, 28.924485169388856 ], [ -82.039437236231734, 28.92436523048886 ], [ -82.039448509586251, 28.924356963110391 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Riverstone Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040944762906349, 28.924892022953536 ], [ -82.04096735754284, 28.925677289884685 ], [ -82.040960088236361, 28.925833573170646 ], [ -82.040876493388907, 28.925928069425026 ], [ -82.040669326384176, 28.925964413506652 ], [ -82.040189572040788, 28.925953508828304 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chickasaw Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040184036382868, 28.926288731085162 ], [ -82.040189572040788, 28.925953508828304 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 529A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087947097115759, 28.741159632209371 ], [ -82.088572953121584, 28.741122820837592 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 529A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.086356851344121, 28.741517706890797 ], [ -82.086376895325188, 28.741496350669212 ], [ -82.086449798208434, 28.741444735888699 ], [ -82.08653303373346, 28.741394906537383 ], [ -82.086665025782807, 28.741363496010734 ], [ -82.086868128584072, 28.741363367004816 ], [ -82.087167708413944, 28.741367651684481 ], [ -82.087413674552153, 28.741282100449414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 529A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.087413674552153, 28.741282100449414 ], [ -82.087490590319462, 28.741255347855592 ], [ -82.087947097115759, 28.741159632209371 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Missouri Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033486306002416, 28.869141687689883 ], [ -82.03301288439954, 28.869149815495877 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021468834466646, 28.609888190866936 ], [ -82.019579586942271, 28.609891214427591 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.131496327621576, 28.668626374400951 ], [ -82.131853726280525, 28.668627565838115 ], [ -82.132607340792049, 28.668631395168124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.13108834571328, 28.668625013210363 ], [ -82.131496327621576, 28.668626374400951 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129333238696987, 28.668617602216305 ], [ -82.130142448820251, 28.668621859016806 ], [ -82.13108834571328, 28.668625013210363 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.129019179015586, 28.668615948949217 ], [ -82.129333238696987, 28.668617602216305 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128958998918534, 28.668615633224192 ], [ -82.129019179015586, 28.668615948949217 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.128462420572518, 28.668614945240858 ], [ -82.128958998918534, 28.668615633224192 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.132607340792049, 28.668631395168124 ], [ -82.13306773631362, 28.668633735598426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 526", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029419629988496, 28.74124455602843 ], [ -82.029314986689243, 28.74124453024438 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Great Birch Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001677169316238, 28.872452132686689 ], [ -82.001730694594343, 28.872151681672293 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Faith Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001756387272678, 28.872067470442168 ], [ -82.001860680351257, 28.871768842487924 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Woodbreeze Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004319757548657, 28.876703178276269 ], [ -82.004607612847764, 28.876927155799024 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trailwinds Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005128163285278, 28.877370080485985 ], [ -82.005414868901966, 28.877209782982888 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Newcastle Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988431445296953, 28.849657035506777 ], [ -81.988533357861684, 28.84955172537904 ], [ -81.988700666077875, 28.849371681841415 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Olympia Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986602113594984, 28.84849353562651 ], [ -81.986870483688534, 28.848708400459326 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Empire Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985795662314175, 28.852511847235672 ], [ -81.985733151558364, 28.852250077244193 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maiden Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986431209607389, 28.852168030327139 ], [ -81.986733354076364, 28.852130262240848 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Castlegate Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986836000165113, 28.851005747026768 ], [ -81.986889865657417, 28.850880453658199 ], [ -81.986985886481349, 28.850714175346102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bella Cruz Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956188936902265, 28.952421153215408 ], [ -81.95685246318773, 28.951901982227501 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bella Cruz Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956188936902265, 28.952421153215408 ], [ -81.956109211029684, 28.952355725404097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956772217661225, 28.951832945468833 ], [ -81.95685246318773, 28.951901982227501 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441 North", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957007407102196, 28.951760062709742 ], [ -81.956948134403461, 28.951700970625492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bella Cruz Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95685246318773, 28.951901982227501 ], [ -81.956961938881108, 28.951806051468509 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bella Cruz Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956961938881108, 28.951806051468509 ], [ -81.957007407102196, 28.951760062709742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.958316359824693, 28.953312426421277 ], [ -81.958399870777811, 28.953394391296154 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 135th Crossing", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.957515313659087, 28.95402571158845 ], [ -81.957562201600084, 28.954011762582532 ], [ -81.957615377931575, 28.953988558939674 ], [ -81.957675322526029, 28.953956653006365 ], [ -81.957722697948498, 28.953929581168445 ], [ -81.9582544662766, 28.95351287291378 ], [ -81.958399870777811, 28.953394391296154 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dynasty Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988032140362776, 28.850106167153815 ], [ -81.988281978163528, 28.850235711748674 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pezzullo Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039073512167519, 28.828191522945342 ], [ -82.039178952008044, 28.828285021695411 ], [ -82.039235791659394, 28.828312494307102 ], [ -82.039282209439918, 28.828328598985511 ], [ -82.039344733396575, 28.82833807249019 ], [ -82.040688834323475, 28.828355567691542 ], [ -82.040758135940521, 28.828347552706344 ], [ -82.040798869866393, 28.828322922948573 ], [ -82.040827290487613, 28.828285030201766 ], [ -82.040846236612666, 28.8282405064964 ], [ -82.040860446182492, 28.82818650996175 ], [ -82.040870867444241, 28.828126829108744 ], [ -82.040870868550471, 28.828063358952988 ], [ -82.040860909192631, 28.828000379907287 ], [ -82.040840953033168, 28.827925994145509 ], [ -82.040817367210778, 28.827847979472402 ], [ -82.040799068505038, 28.827737762554342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pezzullo Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040799068505038, 28.827737762554342 ], [ -82.040834875579804, 28.827123320655392 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pezzullo Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040834875579804, 28.827123320655392 ], [ -82.040858034172587, 28.826681599598103 ], [ -82.040891361779956, 28.826209915237239 ], [ -82.040911870042891, 28.826040723611573 ], [ -82.040942634149872, 28.825922802597557 ], [ -82.040955451566887, 28.825820263161027 ], [ -82.040950324302486, 28.825740794779261 ], [ -82.040907886152041, 28.825669266992794 ], [ -82.040786260464387, 28.825520331115051 ], [ -82.040635014181873, 28.825376774422821 ], [ -82.040478240364379, 28.825273173403978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pezzullo Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040478240364379, 28.825273173403978 ], [ -82.040385339150461, 28.825218473912258 ], [ -82.040146571002566, 28.825114283898021 ], [ -82.039968536358188, 28.825060253196003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crego Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039411989882367, 28.827699681060214 ], [ -82.039512381841107, 28.827723853058586 ], [ -82.039617065703709, 28.827735991466309 ], [ -82.040799068505038, 28.827737762554342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Homan Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040834875579804, 28.827123320655392 ], [ -82.040289329422521, 28.827115924816251 ], [ -82.04023101963891, 28.827106953098578 ], [ -82.040193641079696, 28.827092001957094 ], [ -82.040165981709777, 28.827053875788053 ], [ -82.040147291389076, 28.826989585468887 ], [ -82.040209466353417, 28.82612531565017 ], [ -82.040237666226844, 28.82592279872161 ], [ -82.040304319070799, 28.825681830370613 ], [ -82.040388915828416, 28.825445987234197 ], [ -82.040478240364379, 28.825273173403978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039073512167519, 28.828191522945342 ], [ -82.039019335812128, 28.828233863794321 ], [ -82.038956969459917, 28.828276535381423 ], [ -82.038883115212343, 28.828320846974396 ], [ -82.038809261080686, 28.828368441123601 ], [ -82.038745254582196, 28.828401265284672 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039524248201957, 28.827281631110559 ], [ -82.039493120186748, 28.827442928548685 ], [ -82.039436523773887, 28.827641013167934 ], [ -82.039411989882367, 28.827699681060214 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Upton Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013967005372166, 28.858522460994436 ], [ -82.014341252560328, 28.858532527597969 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Loyola Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016076148053884, 28.858567307649857 ], [ -82.016077979783972, 28.858253453465007 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Overstreet Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016053269929301, 28.859155668674973 ], [ -82.016413792034228, 28.859163906626051 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 213", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053756653255661, 28.853393526377467 ], [ -82.053730441833622, 28.854555225582484 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 213", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053730441833622, 28.854555225582484 ], [ -82.053714572506792, 28.856743488086778 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 213", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053714572506792, 28.856743488086778 ], [ -82.053714358719546, 28.857466724481878 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 213", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053714358719546, 28.857466724481878 ], [ -82.053713731518158, 28.858199304317775 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07552257311319, 28.728556738363004 ], [ -82.075628351629433, 28.728513105773448 ], [ -82.075887054862733, 28.728401436095801 ], [ -82.076790382983503, 28.728006214591531 ], [ -82.077260405702262, 28.727797530053756 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iowa Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07552257311319, 28.728556738363004 ], [ -82.075451172058365, 28.72843377101529 ], [ -82.075374483026778, 28.728289647020791 ], [ -82.075328204004364, 28.728191800927171 ], [ -82.075303082554484, 28.728109822290193 ], [ -82.075289860320382, 28.728046355516661 ], [ -82.075272671198732, 28.72798553293066 ], [ -82.075256992294413, 28.72791222133382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nebraska Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075256992294413, 28.72791222133382 ], [ -82.074972201835692, 28.727974577610624 ], [ -82.074824774894765, 28.728013372544236 ], [ -82.074374731059137, 28.728212526354152 ], [ -82.073964292877577, 28.728406006908212 ], [ -82.073892461329763, 28.72843247119129 ], [ -82.073820627734264, 28.728440031730386 ], [ -82.073741051260882, 28.728424610577804 ], [ -82.073689322865462, 28.728365121984957 ], [ -82.073666044335098, 28.72829787340951 ], [ -82.073669401203318, 28.728220751695133 ], [ -82.073665620231125, 28.728133796674545 ], [ -82.073663457873792, 28.728023710583471 ], [ -82.073673803987745, 28.727935771642013 ], [ -82.073686735674187, 28.727884043413393 ], [ -82.07371518700225, 28.727858179191042 ], [ -82.073753984374292, 28.727834901768354 ], [ -82.073940208092651, 28.72775730873024 ], [ -82.074447153620966, 28.727534877914128 ], [ -82.074967029238053, 28.727309861972525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iowa Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075256992294413, 28.72791222133382 ], [ -82.075194636528266, 28.727708174963141 ], [ -82.075124802582025, 28.727560747241377 ], [ -82.074967029238053, 28.727309861972525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iowa Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074967029238053, 28.727309861972525 ], [ -82.074674869301433, 28.726787725249153 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Iowa Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074674869301433, 28.726787725249153 ], [ -82.074274499052294, 28.726074256216808 ], [ -82.074203739031375, 28.725892015873509 ], [ -82.074161177259754, 28.725703085713455 ], [ -82.074147453884166, 28.72540220555954 ], [ -82.074149445638923, 28.725149215917888 ], [ -82.074151414641776, 28.725126732512834 ], [ -82.074157075729971, 28.725109748585215 ], [ -82.074168451462285, 28.725096570276392 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Monument Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033041517448325, 28.834337253118001 ], [ -82.033877856570101, 28.834335221232116 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Foushee Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033041517448325, 28.834337253118001 ], [ -82.033044074224932, 28.83467637390514 ], [ -82.033057309109921, 28.834714606910449 ], [ -82.033086719306041, 28.834749899927324 ], [ -82.033122010459053, 28.83476901586188 ], [ -82.03316318634036, 28.834780780176853 ], [ -82.033222005703877, 28.83478225122014 ], [ -82.033876385005115, 28.834780784574249 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maxwell Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03388226546484, 28.835132235431942 ], [ -82.033876385005115, 28.834780784574249 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maxwell Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033876385005115, 28.834780784574249 ], [ -82.033877856570101, 28.834335221232116 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Maxwell Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.033877856570101, 28.834335221232116 ], [ -82.033880799925882, 28.834002886254396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Manchester Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025788730882738, 28.836550348013414 ], [ -82.025789710185208, 28.836396694833656 ], [ -82.025791668408175, 28.836333080905955 ], [ -82.025791668760135, 28.836275338654861 ], [ -82.025790689618844, 28.836209767265011 ], [ -82.025790690056624, 28.836160833336542 ], [ -82.025788732950588, 28.836127557509798 ], [ -82.025779924240084, 28.836080581419324 ], [ -82.025769158856804, 28.836044370217291 ], [ -82.025752613275543, 28.835988247969034 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Manchester Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025778810617098, 28.837794903909906 ], [ -82.025788730882738, 28.836550348013414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Venable Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024792437764461, 28.836713915632814 ], [ -82.025126433636373, 28.836695596538945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Venable Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025126433636373, 28.836695596538945 ], [ -82.025182099163246, 28.836689959669986 ], [ -82.025241288781331, 28.836680095730607 ], [ -82.025307524841793, 28.836667412575867 ], [ -82.025377987930398, 28.836654730420765 ], [ -82.025431539921939, 28.836642751517704 ], [ -82.025510458450057, 28.836623022529675 ], [ -82.025579512478501, 28.836606111414259 ], [ -82.025666182578462, 28.836584267703181 ], [ -82.025737350759499, 28.836568062622632 ], [ -82.025788730882738, 28.836550348013414 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Venable Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025788730882738, 28.836550348013414 ], [ -82.025832476751148, 28.836541287029839 ], [ -82.025878982378629, 28.836537059177321 ], [ -82.025955082227739, 28.836532128293406 ], [ -82.026059367969339, 28.836529309791068 ], [ -82.026164357872631, 28.83652719577729 ], [ -82.02624327762048, 28.83652578770873 ], [ -82.026310217518244, 28.836525787661383 ], [ -82.026375747902549, 28.836527901954682 ], [ -82.026445507202695, 28.836529311610249 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Venable Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026445507202695, 28.836529311610249 ], [ -82.026775275137567, 28.836527199190908 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kanawha Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026442710051839, 28.838080839159502 ], [ -82.026440023871061, 28.837795143097782 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kanawha Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026440023871061, 28.837795143097782 ], [ -82.026443610195429, 28.837084932885887 ], [ -82.026445507202695, 28.836529311610249 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Munford Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025126183428156, 28.837793356996769 ], [ -82.025126433636373, 28.836695596538945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hull Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024785768065414, 28.837798314973767 ], [ -82.025126183428156, 28.837793356996769 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hull Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025126183428156, 28.837793356996769 ], [ -82.025778810617098, 28.837794903909906 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hull Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025778810617098, 28.837794903909906 ], [ -82.026440023871061, 28.837795143097782 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Minnesota Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076958723648005, 28.72617115085021 ], [ -82.077018971848972, 28.726276952473569 ], [ -82.077032182614929, 28.726315263176954 ], [ -82.077031147329436, 28.726351097799142 ], [ -82.077020915424015, 28.726378488225798 ], [ -82.07700578093629, 28.726398533777221 ], [ -82.07699089471933, 28.726409544205399 ], [ -82.076973572494424, 28.726419580588942 ], [ -82.075071018342257, 28.72725757298311 ], [ -82.074967029238053, 28.727309861972525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Indiana Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076958723648005, 28.72617115085021 ], [ -82.076826214247689, 28.725936113658864 ], [ -82.076800875467683, 28.72591342538152 ], [ -82.076768822240695, 28.72589874900315 ], [ -82.076733193119964, 28.725893522870049 ], [ -82.076697476067139, 28.725898256642687 ], [ -82.075858582496068, 28.726266356832372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Indiana Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075858582496068, 28.726266356832372 ], [ -82.075272457562775, 28.726524518090489 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Indiana Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075272457562775, 28.726524518090489 ], [ -82.07489815693711, 28.726689378833203 ], [ -82.074674869301433, 28.726787725249153 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kentucky Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075272457562775, 28.726524518090489 ], [ -82.074984286598138, 28.726015476128534 ], [ -82.074910568618151, 28.725894393771217 ], [ -82.07486093072734, 28.725775404229758 ], [ -82.07483455979623, 28.725681152730544 ], [ -82.074818195316354, 28.725579970408678 ], [ -82.074817994567567, 28.725050345257152 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kansas Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075858582496068, 28.726266356832372 ], [ -82.075698195407199, 28.725983428639207 ], [ -82.075503714114973, 28.725640354715782 ], [ -82.075485436920758, 28.725600641732758 ], [ -82.075474380166355, 28.725558908068169 ], [ -82.07547081174512, 28.725516167789621 ], [ -82.075472678612812, 28.725154933453695 ], [ -82.07547101682961, 28.725137260523727 ], [ -82.075465900605536, 28.725120110140342 ], [ -82.075457482840065, 28.725104003762894 ], [ -82.075446020820507, 28.725089429406925 ], [ -82.075431863929538, 28.725076829920869 ], [ -82.07541762265906, 28.725066466442033 ], [ -82.075403178395618, 28.725059948784153 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ohio Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075403178395618, 28.725059948784153 ], [ -82.075377841118353, 28.72505434305944 ], [ -82.075357809190592, 28.725052710054289 ], [ -82.074817994567567, 28.725050345257152 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ohio Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.074817994567567, 28.725050345257152 ], [ -82.074341651249654, 28.725047910461967 ], [ -82.074227253234184, 28.725052032106728 ], [ -82.074194272967986, 28.725067491480804 ], [ -82.074168451462285, 28.725096570276392 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Locomotive Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027465726146048, 28.865477021497941 ], [ -82.02747301686739, 28.865880169163848 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Motorcoach Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02747301686739, 28.865880169163848 ], [ -82.02763771557845, 28.865879793437468 ], [ -82.027663419709768, 28.865878274227427 ], [ -82.02769575485388, 28.86588512525287 ], [ -82.027726171849466, 28.865898552641781 ], [ -82.027747911296487, 28.865917048200171 ], [ -82.027763598784688, 28.86593861641192 ], [ -82.027772617880203, 28.865969596985764 ], [ -82.027773126842803, 28.866457564272299 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Motorcoach Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027773126842803, 28.866457564272299 ], [ -82.027775162187922, 28.866969418789441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Motorcoach Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027775162187922, 28.866969418789441 ], [ -82.027767261189098, 28.868121462862678 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Motorcoach Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027767261189098, 28.868121462862678 ], [ -82.027764865547283, 28.868411063792475 ], [ -82.027753483517515, 28.868446780132746 ], [ -82.027736214414219, 28.868469936695472 ], [ -82.027718329390993, 28.868485787432796 ], [ -82.02769343376464, 28.868496624574153 ], [ -82.027671455057273, 28.868502119493169 ], [ -82.026405074879193, 28.868502344737152 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Motorcoach Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026405074879193, 28.868502344737152 ], [ -82.025187923234483, 28.86850049369129 ], [ -82.025167381517946, 28.868497343878484 ], [ -82.02514656610289, 28.868489811626752 ], [ -82.025126708497311, 28.868479677858485 ], [ -82.025102513948397, 28.868456675326449 ], [ -82.025087276649373, 28.868435201473023 ], [ -82.025081151843452, 28.868417235925886 ], [ -82.025083765086322, 28.86811910461704 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Motorcoach Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025083765086322, 28.86811910461704 ], [ -82.025087441756526, 28.867683954772563 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Motorcoach Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025087441756526, 28.867683954772563 ], [ -82.025090553702526, 28.867344795618081 ], [ -82.025093280696353, 28.867324738730137 ], [ -82.025096872296828, 28.867311145784903 ], [ -82.025112688478117, 28.867288786552685 ], [ -82.025129356594391, 28.867271337497552 ], [ -82.025158525530287, 28.867255972294213 ], [ -82.025187027393812, 28.867245928087467 ], [ -82.026415145577914, 28.867247412545876 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thruway Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027767261189098, 28.868121462862678 ], [ -82.026407547672818, 28.868120341671094 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thruway Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026407547672818, 28.868120341671094 ], [ -82.025083765086322, 28.86811910461704 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Old Railroad Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026411115294394, 28.867685137684187 ], [ -82.025087441756526, 28.867683954772563 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Motorcoach Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026415145577914, 28.867247412545876 ], [ -82.026417460720964, 28.866969542441186 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Motorcoach Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026419386492719, 28.866737628505064 ], [ -82.026416662125527, 28.865971514933534 ], [ -82.026427688718968, 28.865936036968602 ], [ -82.026451660076461, 28.865907751493634 ], [ -82.026484262223946, 28.865888093990314 ], [ -82.026515425261678, 28.865880902075016 ], [ -82.026901941137979, 28.865880175944067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Motorcoach Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026901941137979, 28.865880175944067 ], [ -82.027337385863433, 28.865880844822083 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Motorcoach Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027337385863433, 28.865880844822083 ], [ -82.02747301686739, 28.865880169163848 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boxcar Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027337385863433, 28.865880844822083 ], [ -82.027337650170452, 28.866457598804686 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boxcar Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027337650170452, 28.866457598804686 ], [ -82.027338146659815, 28.866968683070358 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caboose Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026901941137979, 28.865880175944067 ], [ -82.026917579636759, 28.866457411476102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Caboose Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026917579636759, 28.866457411476102 ], [ -82.026901017534229, 28.866968642534843 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Coastline Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027773126842803, 28.866457564272299 ], [ -82.027337650170452, 28.866457598804686 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Coastline Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027337650170452, 28.866457598804686 ], [ -82.026917579636759, 28.866457411476102 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Station Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027775162187922, 28.866969418789441 ], [ -82.027338146659815, 28.866968683070358 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Station Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027338146659815, 28.866968683070358 ], [ -82.026901017534229, 28.866968642534843 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Station Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026901017534229, 28.866968642534843 ], [ -82.026417460720964, 28.866969542441186 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Motorcoach Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026417460720964, 28.866969542441186 ], [ -82.026419386492719, 28.866737628505064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Motorcoach Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026411115294394, 28.867685137684187 ], [ -82.026415145577914, 28.867247412545876 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Motorcoach Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026407547672818, 28.868120341671094 ], [ -82.026411115294394, 28.867685137684187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Motorcoach Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026405074879193, 28.868502344737152 ], [ -82.026407547672818, 28.868120341671094 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Silver Star Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026419386492719, 28.866737628505064 ], [ -82.025224643506903, 28.866737447238673 ], [ -82.025168869541929, 28.866746527340418 ], [ -82.02511741996048, 28.866772035771383 ], [ -82.024978630980257, 28.866891797411526 ], [ -82.024860598181249, 28.866996428070589 ], [ -82.02483638455729, 28.867008533202487 ], [ -82.024819955682602, 28.867014586090203 ], [ -82.024795743629966, 28.86701588342715 ], [ -82.024741118198193, 28.867010259213867 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027465726146048, 28.865477021497941 ], [ -82.028486363398486, 28.865477668321859 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Silvana Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044422683254552, 28.832043660853781 ], [ -82.04436809863661, 28.831977102662275 ], [ -82.044333734020881, 28.831929373584295 ], [ -82.044304142272566, 28.831878780836469 ], [ -82.044293641513363, 28.831832960539948 ], [ -82.044284095999572, 28.831785230651228 ], [ -82.044284096885193, 28.831682136601518 ], [ -82.044337554601199, 28.831327032436004 ], [ -82.044349009285014, 28.831272621390635 ], [ -82.044392920806914, 28.831179073080801 ], [ -82.044441725382114, 28.831095915949696 ], [ -82.044469112612006, 28.831045975176128 ], [ -82.044478834770032, 28.830999611458694 ], [ -82.04448169903479, 28.830944246738451 ], [ -82.044482653358671, 28.830857379467886 ], [ -82.044488382100326, 28.830625415965965 ], [ -82.044503655908272, 28.830559550672241 ], [ -82.044536776692112, 28.830506291138253 ], [ -82.044587660749329, 28.830468864933074 ], [ -82.044667845907682, 28.830401089977112 ], [ -82.044700301863742, 28.830348588556998 ], [ -82.044713665565254, 28.830304677908636 ], [ -82.044719394213828, 28.830257904018438 ], [ -82.044718439649216, 28.830222584396065 ], [ -82.044723214132048, 28.829853160902669 ], [ -82.044712714201239, 28.829809249907953 ], [ -82.044686940324212, 28.829767248659909 ], [ -82.044652575784937, 28.829732883726855 ], [ -82.044621074782242, 28.829702337322434 ], [ -82.04458766359383, 28.829673699009959 ], [ -82.044556163030123, 28.829644107231548 ], [ -82.044535162163683, 28.829602105305401 ], [ -82.044517979348768, 28.829545785218706 ], [ -82.044512252638796, 28.829478009322134 ], [ -82.044501753861695, 28.829049401155711 ], [ -82.044511299406878, 28.829002627832185 ], [ -82.04452657415392, 28.828966353707873 ], [ -82.044559029804816, 28.828931034058623 ], [ -82.04472990077825, 28.828716254439215 ], [ -82.04475567553034, 28.828676161906099 ], [ -82.04476331242077, 28.828625569715612 ], [ -82.04476331344496, 28.828557793756413 ], [ -82.044757586496843, 28.828310556926358 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Silvana Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044757586496843, 28.828310556926358 ], [ -82.044759499038491, 28.827650942066768 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sandra Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04394332459799, 28.828309598373529 ], [ -82.044757586496843, 28.828310556926358 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Piper Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043912775715611, 28.828670429380171 ], [ -82.04394332459799, 28.828309598373529 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Piper Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04394332459799, 28.828309598373529 ], [ -82.043968145286314, 28.828051861478976 ], [ -82.043980555614041, 28.828011768858953 ], [ -82.044003465487251, 28.827976449690311 ], [ -82.044039739995171, 28.827948767876524 ], [ -82.044446394452805, 28.827662394880118 ], [ -82.044488396221752, 28.827646167695413 ], [ -82.044560944935895, 28.827642349949372 ], [ -82.044759499038491, 28.827650942066768 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Piper Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044759499038491, 28.827650942066768 ], [ -82.045138469652088, 28.82764808030409 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Silvana Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044817960334086, 28.834281548608011 ], [ -82.044820418334865, 28.832605858493991 ], [ -82.044814929228536, 28.832499969098947 ], [ -82.044803947876758, 28.832442710452803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Silvana Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044803947876758, 28.832442710452803 ], [ -82.044785907710406, 28.832388589628646 ], [ -82.044765515023343, 28.8323493711768 ], [ -82.044683941232037, 28.832255248309185 ], [ -82.044422683254552, 28.832043660853781 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jolene Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044290374995128, 28.834279687093282 ], [ -82.044817960334086, 28.834281548608011 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jolene Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044817960334086, 28.834281548608011 ], [ -82.045135315742471, 28.834291787670139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlee Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044290373051169, 28.834644414990155 ], [ -82.044290374995128, 28.834279687093282 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Charlee Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044290374995128, 28.834279687093282 ], [ -82.044285479900395, 28.83284351684209 ], [ -82.044297246117139, 28.832786259834847 ], [ -82.044321560964349, 28.832739196650603 ], [ -82.044364725652088, 28.832686053935731 ], [ -82.044536477644073, 28.832550166728105 ], [ -82.044580402692333, 28.832524283305858 ], [ -82.044650996486922, 28.83249839931138 ], [ -82.044725511068876, 28.832473299911296 ], [ -82.044803947876758, 28.832442710452803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grady Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042082966042742, 28.834270593556166 ], [ -82.042116415005083, 28.83338582678309 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Grady Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042116415005083, 28.83338582678309 ], [ -82.042138225465706, 28.832888341033691 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Possehl Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041192117083099, 28.833759795033085 ], [ -82.042082966042742, 28.834270593556166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Possehl Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042082966042742, 28.834270593556166 ], [ -82.042432615410533, 28.834468223845164 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melissa Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040936718240133, 28.83396046332814 ], [ -82.041192117083099, 28.833759795033085 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Melissa Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041192117083099, 28.833759795033085 ], [ -82.041611700405653, 28.83340710819083 ], [ -82.0416512251863, 28.833385824312298 ], [ -82.041690751843575, 28.833379744300675 ], [ -82.041748520658018, 28.833379744795721 ], [ -82.042116415005083, 28.83338582678309 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mila Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040935699993554, 28.833066027098472 ], [ -82.041255326798151, 28.832809770000885 ], [ -82.041307095265438, 28.832764092270825 ], [ -82.041334156617012, 28.832711773757055 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mila Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040393656121907, 28.832551386841843 ], [ -82.039845519140641, 28.832999026408661 ], [ -82.039827246542018, 28.833047749088674 ], [ -82.039827246067887, 28.833087336925487 ], [ -82.039851608159253, 28.833133014591294 ], [ -82.04028707018233, 28.833480168594079 ], [ -82.040335793620969, 28.833495395173415 ], [ -82.04038756181572, 28.833495395305523 ], [ -82.040430195217766, 28.833483214249657 ], [ -82.040935699993554, 28.833066027098472 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nadira Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040935699993554, 28.833066027098472 ], [ -82.040393656121907, 28.832551386841843 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nadira Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040393656121907, 28.832551386841843 ], [ -82.04013786154394, 28.83228036440266 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Esbenshade Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038745254582196, 28.828401265284672 ], [ -82.038790900280816, 28.828519555836785 ], [ -82.038802049637297, 28.828589598867207 ], [ -82.038804462792086, 28.828676504889035 ], [ -82.03879722073512, 28.828769445562575 ], [ -82.038796012757544, 28.828864800011274 ], [ -82.038808139055362, 28.828947111444013 ], [ -82.038832274413267, 28.82901262392356 ], [ -82.038844293630873, 28.829054301745476 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Esbenshade Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038844293630873, 28.829054301745476 ], [ -82.038925371411722, 28.829291916067024 ], [ -82.039018467143194, 28.829474662989938 ], [ -82.039142654195174, 28.829611579996286 ], [ -82.039248502130931, 28.829723912425656 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Esbenshade Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039248502130931, 28.829723912425656 ], [ -82.039383630915268, 28.829928870921773 ], [ -82.039456038319074, 28.830118513469412 ], [ -82.039506118290859, 28.830269689788988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Esbenshade Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039506118290859, 28.830269689788988 ], [ -82.039523357569962, 28.830393571697041 ], [ -82.039530252548133, 28.830621141664679 ], [ -82.039564732361015, 28.830907329329108 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Esbenshade Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039564732361015, 28.830907329329108 ], [ -82.039609240985186, 28.831070378857422 ], [ -82.039723026424355, 28.831273812801399 ], [ -82.039871292136198, 28.831453110742686 ], [ -82.040023005041775, 28.831577241324972 ], [ -82.040136789566986, 28.831653098530428 ], [ -82.040234212535594, 28.831711463782952 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Esbenshade Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040234212535594, 28.831711463782952 ], [ -82.040359011242217, 28.831802099176834 ], [ -82.040507276150862, 28.83197450096689 ], [ -82.040962417167222, 28.832446884628212 ], [ -82.041110682806249, 28.832550325982659 ], [ -82.041334173012189, 28.832711773752127 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Esbenshade Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041334173012189, 28.832711773752127 ], [ -82.041437347949298, 28.832758911687193 ], [ -82.041556419964451, 28.832805506055859 ], [ -82.041665137495656, 28.832846922411544 ], [ -82.041789387543744, 28.832872807949272 ], [ -82.041934344807714, 28.832888340290772 ], [ -82.042138225465706, 28.832888341033691 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Esbenshade Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042138225465706, 28.832888341033691 ], [ -82.042268544601995, 28.832887624244201 ], [ -82.042444565520142, 28.832856563045063 ], [ -82.042615033042836, 28.832806607218501 ], [ -82.04275627139485, 28.83273773528823 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Esbenshade Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04275627139485, 28.83273773528823 ], [ -82.042859812552024, 28.832670434173345 ], [ -82.042989239611998, 28.832613487874386 ], [ -82.043139374709781, 28.83256171779767 ], [ -82.043284332211172, 28.832535833680662 ], [ -82.043424113175647, 28.832530658099628 ], [ -82.043517300108533, 28.832525480916303 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Esbenshade Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043517300108533, 28.832525480916303 ], [ -82.043626019309144, 28.832515127607433 ], [ -82.043765799576022, 28.832473712298949 ], [ -82.043879694873553, 28.832432297005525 ], [ -82.044003944424944, 28.832380527024352 ], [ -82.044112663016762, 28.83230287201533 ], [ -82.044422683254552, 28.832043660853781 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "August Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04275627139485, 28.83273773528823 ], [ -82.042789619512931, 28.832789127545997 ], [ -82.042807573843135, 28.832831023299686 ], [ -82.042815555087174, 28.832888879468467 ], [ -82.042817550033917, 28.832946736601485 ], [ -82.042809567206319, 28.833345746630119 ], [ -82.042831512928686, 28.833377667026635 ], [ -82.042861438483243, 28.83340559763159 ], [ -82.042907324931619, 28.833423553647258 ], [ -82.043386139201601, 28.833425551504469 ], [ -82.043428035345499, 28.833405600869064 ], [ -82.043455967191733, 28.83337168512158 ], [ -82.043475916769495, 28.833335774189038 ], [ -82.043481903084967, 28.833285899058772 ], [ -82.043517300108533, 28.832525480916303 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Balcharan Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.042138225465706, 28.832888341033691 ], [ -82.042132457079447, 28.832609615524451 ], [ -82.042116496682169, 28.832553753152283 ], [ -82.042086571468886, 28.832517842370212 ], [ -82.042044674606572, 28.832491906647491 ], [ -82.041974847554044, 28.832483926348175 ], [ -82.041893050236894, 28.832473951054073 ], [ -82.041803272753043, 28.832453999521395 ], [ -82.041651648140729, 28.832396141814492 ], [ -82.041575836406452, 28.8323502553806 ], [ -82.041519974182947, 28.832313926431418 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Balcharan Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041519974182947, 28.832313926431418 ], [ -82.041443016364624, 28.832266528001146 ], [ -82.041089073043096, 28.831930429130786 ], [ -82.041068253086181, 28.831900685373739 ], [ -82.041062304352948, 28.8318679676747 ], [ -82.041062304848623, 28.831832276898226 ], [ -82.041077176674605, 28.831796585284767 ], [ -82.04112179146081, 28.831698433353608 ], [ -82.041145586706222, 28.831627049185443 ], [ -82.041163433076647, 28.831543768966853 ], [ -82.041169381777252, 28.831460487799621 ], [ -82.041169382394841, 28.831359361671019 ], [ -82.041139640079848, 28.831225516850171 ], [ -82.041074204408204, 28.831100595691684 ], [ -82.041005795648331, 28.830984597404722 ], [ -82.040913592119736, 28.830898341719287 ], [ -82.040827337259756, 28.830818034019046 ], [ -82.040702415995327, 28.830731778881432 ], [ -82.04061021205608, 28.830675266657142 ], [ -82.040532880170332, 28.830586036815532 ], [ -82.04051206041153, 28.830523576188401 ], [ -82.040497188361982, 28.830446243772631 ], [ -82.040497188600568, 28.830371885490383 ], [ -82.040491240262796, 28.830261835468157 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Collerette Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041519974182947, 28.832313926431418 ], [ -82.041579286277212, 28.832242640630948 ], [ -82.041659594084791, 28.832126643609989 ], [ -82.041725030056568, 28.832004696731424 ], [ -82.041778568462874, 28.831867878899104 ], [ -82.041820210384572, 28.831737009971043 ], [ -82.041844004330187, 28.831609114156972 ], [ -82.041852927957152, 28.831481219259913 ], [ -82.041846980711952, 28.831341425649832 ], [ -82.041826159885275, 28.831195684043674 ], [ -82.041772623717492, 28.831002353851058 ], [ -82.041707188889376, 28.830865535167202 ], [ -82.04164472872931, 28.83074656229094 ], [ -82.041555500287004, 28.830633538278573 ], [ -82.041421655700773, 28.830502666484122 ], [ -82.041269965414799, 28.830365847391583 ], [ -82.041127198157881, 28.830246874004441 ], [ -82.041044919288311, 28.830179467343704 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Collerette Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041044919288311, 28.830179467343704 ], [ -82.04098545843091, 28.830102688774272 ], [ -82.040922997099187, 28.829998587385575 ], [ -82.040863511944011, 28.829879614145394 ], [ -82.04082782042785, 28.829751719007206 ], [ -82.040806293856107, 28.829668565098952 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Collerette Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040806293856107, 28.829668565098952 ], [ -82.040795835777502, 28.829266394232068 ], [ -82.040775016124869, 28.82920393273071 ], [ -82.040742298576063, 28.829153368976922 ], [ -82.040688760480748, 28.829117676904527 ], [ -82.040638197255689, 28.829087933749637 ], [ -82.040543018502987, 28.829067113133526 ], [ -82.038942830800679, 28.829058181777171 ], [ -82.038844293630873, 28.829054301745476 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wielenga Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039564732361015, 28.830907329329108 ], [ -82.039474842952671, 28.830914939065156 ], [ -82.039373954803366, 28.830917593710595 ], [ -82.039259792137202, 28.830904318219165 ], [ -82.039150939485083, 28.830885732842781 ], [ -82.039105804845917, 28.830853873469565 ], [ -82.039071291320155, 28.830806084429433 ], [ -82.039065981301391, 28.830752986028582 ], [ -82.039071293321697, 28.830506077017894 ], [ -82.039084568022474, 28.830445014076552 ], [ -82.039140322851821, 28.830375986107622 ], [ -82.039201385953248, 28.830338817091071 ], [ -82.039283689355955, 28.830312267557058 ], [ -82.039358027763811, 28.830296339513776 ], [ -82.039506118290859, 28.830269689788988 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wielenga Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039506118290859, 28.830269689788988 ], [ -82.039588462427901, 28.830256516770877 ], [ -82.039689349935443, 28.830253862868719 ], [ -82.040350226450329, 28.83025634308969 ], [ -82.040491240262796, 28.830261835468157 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wielenga Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040491240262796, 28.830261835468157 ], [ -82.04058937670024, 28.830262378580191 ], [ -82.040852216167508, 28.830262380091767 ], [ -82.040923899370796, 28.830251760252477 ], [ -82.040979653974773, 28.830233175944525 ], [ -82.041044919288311, 28.830179467343704 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brianna Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039248502130931, 28.829723912425656 ], [ -82.039326640182239, 28.829698509983988 ], [ -82.03943283735552, 28.829669305248224 ], [ -82.039496556533081, 28.829661341235855 ], [ -82.040806293856107, 28.829668565098952 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tiedemann Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040234212535594, 28.831711463782952 ], [ -82.040154906998467, 28.831814904062373 ], [ -82.039930783388314, 28.831952823916701 ], [ -82.039879062414073, 28.831970063985011 ], [ -82.039841133711775, 28.831973511874089 ], [ -82.039799757336766, 28.831956271740129 ], [ -82.039748036926937, 28.83192868782384 ], [ -82.039610114917693, 28.831814901532148 ], [ -82.039479090955368, 28.831735595704473 ], [ -82.039365305024276, 28.831663186564636 ], [ -82.039217038740787, 28.831594224959098 ], [ -82.039044637405667, 28.831528711446261 ], [ -82.038889475322222, 28.831473542306881 ], [ -82.038692936472032, 28.831432164678532 ], [ -82.038568806808968, 28.831414923961397 ], [ -82.03846191764994, 28.831414923214666 ], [ -82.038375716213693, 28.83143561104 ], [ -82.038289515545756, 28.831452850190061 ], [ -82.038230898107059, 28.831449402534428 ], [ -82.038175729113036, 28.83143560984103 ], [ -82.038106768820228, 28.831404577845827 ], [ -82.037848166297877, 28.831228726295318 ], [ -82.037627492439938, 28.831073563718991 ], [ -82.037575771249891, 28.831014946796024 ], [ -82.037544739709148, 28.830942537849161 ], [ -82.037544739499054, 28.830849441342195 ], [ -82.0375481888303, 28.830728759441147 ], [ -82.037537844126703, 28.830611527214653 ], [ -82.037514400557768, 28.830487281308478 ], [ -82.037485643304763, 28.830378166741216 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tiedemann Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037485643304763, 28.830378166741216 ], [ -82.037436078233853, 28.83029282822557 ], [ -82.037332982519615, 28.830156113275589 ], [ -82.037234368911299, 28.830039569026457 ], [ -82.037171614898611, 28.829981296896619 ], [ -82.037155925616688, 28.829947679335138 ], [ -82.0371536846162, 28.829909578183795 ], [ -82.037164891812139, 28.829858029916359 ], [ -82.037494355452921, 28.82914308166643 ], [ -82.037519008473126, 28.829107222641831 ], [ -82.037548144483679, 28.829080327722124 ], [ -82.037584004993903, 28.829066879860985 ], [ -82.037622105977292, 28.829057915848722 ], [ -82.038247397090345, 28.829061918451927 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tiedemann Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038247397090345, 28.829061918451927 ], [ -82.038844293630873, 28.829054301745476 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cassandra Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037485643304763, 28.830378166741216 ], [ -82.037564607610292, 28.83034832213146 ], [ -82.037635492645848, 28.830310795631586 ], [ -82.037691486657934, 28.830275055231802 ], [ -82.037737352421431, 28.830229784704038 ], [ -82.037770116156395, 28.830177366065122 ], [ -82.037806452414884, 28.830103503089799 ], [ -82.038222551234767, 28.829210070795217 ], [ -82.038235868357802, 28.829154904495873 ], [ -82.038247397090345, 28.829061918451927 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 108th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954202946036233, 28.913695755625984 ], [ -81.953742555471592, 28.913706051721601 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 89th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954202946036233, 28.913695755625984 ], [ -81.954207213198075, 28.913746652950408 ], [ -81.954203794154196, 28.913804769636542 ], [ -81.954196957444296, 28.91383895533669 ], [ -81.954184991192491, 28.913873141089574 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 89th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954184991192491, 28.913873141089574 ], [ -81.954162769686391, 28.91390561889942 ], [ -81.954137130182417, 28.91393809553723 ], [ -81.954104652102856, 28.913967153734752 ], [ -81.954079012738774, 28.913987665903196 ], [ -81.954058501661478, 28.914013305771732 ], [ -81.954048244851336, 28.914047491194502 ], [ -81.954044826108401, 28.914088515662506 ], [ -81.954044826469826, 28.91414321380708 ], [ -81.954046534301554, 28.914315854477003 ], [ -81.954053372123397, 28.914589345722572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 89th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954053372123397, 28.914589345722572 ], [ -81.954060207419843, 28.914977360082485 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 89th Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954184991192491, 28.913873141089574 ], [ -81.954383197722152, 28.913941987109197 ], [ -81.95439843023486, 28.913954173296212 ], [ -81.954412647061204, 28.913967375122851 ], [ -81.954422802471129, 28.913981592457212 ], [ -81.954427879698784, 28.91400494923689 ], [ -81.954438033164521, 28.91458581446518 ], [ -81.954053372123397, 28.914589345722572 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99462331414756, 28.828499074665995 ], [ -81.994461205719773, 28.82838580113048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994195189733844, 28.828432415572411 ], [ -81.994335845489815, 28.828530119169248 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 157", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994195189733844, 28.828432415572411 ], [ -81.994461205719773, 28.82838580113048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Nook Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019919271739823, 28.84579104169018 ], [ -82.019940411123542, 28.845885865632706 ], [ -82.019969062255925, 28.845979150065972 ], [ -82.020005083642118, 28.846070429415473 ], [ -82.020048295870453, 28.846159258864255 ], [ -82.020098486732635, 28.846245195403704 ], [ -82.020155410202264, 28.846327816782406 ], [ -82.020240969731574, 28.846432471010282 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Nook Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02000383998336, 28.845771898922081 ], [ -82.019986821897859, 28.845701701039349 ], [ -82.019982465302419, 28.845394455599266 ], [ -82.020019511053917, 28.845106821261524 ], [ -82.02003205623474, 28.845075892017803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shady Nook Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019919271739823, 28.84579104169018 ], [ -82.02000383998336, 28.845771898922081 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037032822727923, 28.879826790822857 ], [ -82.037035131905654, 28.880202828739495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037146834416347, 28.880414601994609 ], [ -82.037147647948714, 28.880267457207481 ], [ -82.037146925013928, 28.880068525256227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037146834416347, 28.880414601994609 ], [ -82.037035131905654, 28.880202828739495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036946348338688, 28.905040823357957 ], [ -82.036946594484249, 28.905565604216203 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036946348338688, 28.905040823357957 ], [ -82.037133830298075, 28.905567029702315 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037132842970038, 28.905818224254528 ], [ -82.037133830298075, 28.905567029702315 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Red Maple Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021095782344645, 28.870666687751324 ], [ -82.021115332765916, 28.870668042750918 ], [ -82.021134400909361, 28.8706720722463 ], [ -82.02115251727426, 28.870678677958004 ], [ -82.021156845528182, 28.870680713797068 ], [ -82.021161078480219, 28.870682898530429 ], [ -82.021169237973808, 28.870687697539498 ], [ -82.02118414986063, 28.870698907283149 ], [ -82.021196884879927, 28.87071203294558 ], [ -82.021202336612618, 28.870719215346742 ], [ -82.021207131345591, 28.870726751550517 ], [ -82.021214634966583, 28.870742697704742 ], [ -82.021219213201888, 28.870759483446349 ], [ -82.021220366064355, 28.870768059657895 ], [ -82.021220535630221, 28.870770215233225 ], [ -82.021220654967735, 28.870772371718541 ], [ -82.021220751159049, 28.870776691027029 ], [ -82.021219212875152, 28.870793899076961 ], [ -82.021214635166956, 28.870810683508168 ], [ -82.021207130708802, 28.870826631048544 ], [ -82.02120233589298, 28.870834166909511 ], [ -82.021199689878785, 28.870837804495068 ], [ -82.021196883934422, 28.870841348265479 ], [ -82.021184148989335, 28.870854474198595 ], [ -82.021176942867072, 28.870860337556607 ], [ -82.021173149616558, 28.870863077525094 ], [ -82.021169236405797, 28.870865683970948 ], [ -82.021161077778075, 28.870870483658177 ], [ -82.021156844660027, 28.870872666972335 ], [ -82.021152517205905, 28.870874703225379 ], [ -82.021143605938406, 28.87087831920482 ], [ -82.021134399325163, 28.87088130903048 ], [ -82.021115331714171, 28.87088533800075 ], [ -82.021095781788304, 28.870886692616235 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Red Maple Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021095781788304, 28.870886692616235 ], [ -82.021076231326418, 28.87088533761392 ], [ -82.021057164171609, 28.870881309012677 ], [ -82.02105483814502, 28.870880620907744 ], [ -82.021052527486901, 28.870879894001423 ], [ -82.021047957400356, 28.870878318370053 ], [ -82.021039046752335, 28.870874702386267 ], [ -82.021030485535789, 28.870870482708526 ], [ -82.021022327059342, 28.870865683691033 ], [ -82.021007415166082, 28.870854473929782 ], [ -82.020994680153024, 28.870841347347426 ], [ -82.020984432681118, 28.870826629628997 ], [ -82.020976929089002, 28.870810682559814 ], [ -82.020974265341351, 28.870802370046363 ], [ -82.020973213812439, 28.870798150135023 ], [ -82.020972350890489, 28.870793897712325 ], [ -82.020970812973943, 28.870776690128789 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Red Maple Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020970812973943, 28.870776690128789 ], [ -82.020971198753955, 28.870768058642732 ], [ -82.020971679692494, 28.870763760000042 ], [ -82.02097235129844, 28.87075948208156 ], [ -82.020976929043101, 28.870742696756068 ], [ -82.020984433530529, 28.870726750130544 ], [ -82.020994680323412, 28.870712032027182 ], [ -82.021007415274951, 28.870698906111667 ], [ -82.021022327852094, 28.870687696356956 ], [ -82.021030486472114, 28.87068289758032 ], [ -82.021039048058398, 28.870678677118292 ], [ -82.02104795828744, 28.870675061145842 ], [ -82.021057164885022, 28.87067207132602 ], [ -82.02107623348445, 28.870668042363771 ], [ -82.021095782344645, 28.870666687751324 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Red Maple Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020970812973943, 28.870776690128789 ], [ -82.020609341869971, 28.870782215686599 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020610799577952, 28.872724491304677 ], [ -82.020611152747989, 28.871167358818315 ], [ -82.020609341869971, 28.870782215686599 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 134", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022681426595867, 28.872755211599848 ], [ -82.022680802313289, 28.872755202678871 ], [ -82.021905300875446, 28.8727436974157 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Slash Pine Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021905300875446, 28.8727436974157 ], [ -82.021913426969618, 28.872301022928127 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fern Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021095781788304, 28.870886692616235 ], [ -82.021117451610607, 28.870911448514818 ], [ -82.021130072500313, 28.870933083817249 ], [ -82.02113908594481, 28.870969142975362 ], [ -82.021144495639362, 28.871012413883669 ], [ -82.021148096504504, 28.872189737789938 ], [ -82.021160717293824, 28.872220387989714 ], [ -82.021175141477471, 28.872242023009033 ], [ -82.021196775459615, 28.872265461533072 ], [ -82.021222017039335, 28.87228529390217 ], [ -82.021259879033309, 28.872292505636807 ], [ -82.021913426969618, 28.872301022928127 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mahogany Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021095782344645, 28.870666687751324 ], [ -82.021121556874391, 28.870636372784361 ], [ -82.021137966691413, 28.870618140167185 ], [ -82.021145259467943, 28.870594437370205 ], [ -82.021139794217206, 28.869624443725105 ], [ -82.021147088131713, 28.869586153393765 ], [ -82.021165320939332, 28.869560628081686 ], [ -82.0211890245441, 28.869540571694028 ], [ -82.021216372952622, 28.869524161854649 ], [ -82.021247369241323, 28.86951139946315 ], [ -82.021285658954412, 28.869509576371229 ], [ -82.022381464327353, 28.869505934876518 ], [ -82.022410635981629, 28.869513227997885 ], [ -82.022437985852108, 28.8695241685155 ], [ -82.022459866136998, 28.869540577867689 ], [ -82.022478098369518, 28.869562458469115 ], [ -82.022489037945135, 28.869582513988259 ], [ -82.022496331515015, 28.86960803985712 ], [ -82.022499973603374, 28.870656435707001 ], [ -82.022509090082011, 28.870678315972576 ], [ -82.022529145870976, 28.870703841570293 ], [ -82.022552848621601, 28.870733014582413 ], [ -82.022563789240678, 28.870762187860411 ], [ -82.022563788379017, 28.87079682906591 ], [ -82.022556495657213, 28.870824179045808 ], [ -82.022540085162888, 28.87084788249604 ], [ -82.022516382546144, 28.870867938214953 ], [ -82.022503618860682, 28.870889817515394 ], [ -82.022501796162857, 28.870913520400112 ], [ -82.022505436676639, 28.872191650391638 ], [ -82.022499966451988, 28.872233586689905 ], [ -82.022483557903527, 28.872262758983922 ], [ -82.022461677175372, 28.872280991743505 ], [ -82.022432504612027, 28.872297400319976 ], [ -82.022405154135583, 28.87230651708958 ], [ -82.022381452198147, 28.872311987061096 ], [ -82.021913426969618, 28.872301022928127 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0155181742157, 28.752334511957308 ], [ -82.01558340055783, 28.752355027218709 ], [ -82.015652130147103, 28.752385410725097 ], [ -82.015712052719138, 28.752420367210878 ], [ -82.016212796137765, 28.752981976733608 ], [ -82.016979126187891, 28.75385067331699 ], [ -82.017806320713021, 28.754788534949494 ], [ -82.018046540607045, 28.755018892687108 ], [ -82.018323592927359, 28.755238017695078 ], [ -82.018456588139827, 28.755377192078438 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018576649023032, 28.755189484301493 ], [ -82.018431896502264, 28.755154902876033 ], [ -82.01831351836627, 28.755081860190938 ], [ -82.01803898470385, 28.754852661355518 ], [ -82.017338777208906, 28.75407199940804 ], [ -82.016854633422014, 28.753521455535246 ], [ -82.016077236200232, 28.752652758538929 ], [ -82.015772917813706, 28.75227650837186 ], [ -82.015761521220327, 28.752168452453652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009620122290841, 28.75013936654485 ], [ -82.008129687960988, 28.750047368350273 ], [ -82.006631201974145, 28.749952757021422 ], [ -82.005784416865978, 28.749896433050569 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005267110733854, 28.749866586607087 ], [ -82.005145506636595, 28.749978535294531 ], [ -82.004797907981924, 28.750059480261967 ], [ -82.004354072145844, 28.750146028358046 ], [ -82.003912303227892, 28.750275432401502 ], [ -82.003351168293918, 28.750472884713822 ], [ -82.003051076754716, 28.750607865940012 ], [ -82.002715288925671, 28.750774084367514 ], [ -82.001857408690739, 28.751240385511206 ], [ -82.001291811093495, 28.751477998728888 ], [ -82.000568724501662, 28.751694629471476 ], [ -81.999986746537374, 28.751817412654589 ], [ -81.999339165848397, 28.751893101525059 ], [ -81.998646172204033, 28.751926741451417 ], [ -81.997504076544658, 28.751950288293791 ], [ -81.996666426463733, 28.752118487945442 ], [ -81.996202186659886, 28.752290053053446 ], [ -81.995818684576605, 28.752461618248944 ], [ -81.995340988472577, 28.752762697000492 ], [ -81.994901978877991, 28.753119281685549 ], [ -81.994459604786528, 28.753602018865053 ], [ -81.993837251820182, 28.754372378427782 ], [ -81.993706054101864, 28.754426201891924 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995899702425078, 28.755784420902629 ], [ -81.994796061680759, 28.755792338626744 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995759743067822, 28.757809962190809 ], [ -81.995545502598475, 28.757138909202965 ], [ -81.995267368437666, 28.756516032820031 ], [ -81.994796061680759, 28.755792338626744 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994380279061772, 28.755295689166744 ], [ -81.994342522587644, 28.755231918005983 ], [ -81.994006935565636, 28.754884852613944 ], [ -81.993939334765741, 28.754734613506177 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landstone Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005678509841502, 28.74976700411894 ], [ -82.00559906268758, 28.749662062309469 ], [ -82.005549205945286, 28.7481762097025 ], [ -82.005469132849996, 28.747703780709461 ], [ -82.005237619759598, 28.746968051613432 ], [ -82.005164826411075, 28.746763698595 ], [ -82.005162759807803, 28.74665007457445 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landstone Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004973236319998, 28.746196559473507 ], [ -82.004905160311992, 28.746133178748135 ], [ -82.004848822924956, 28.746070970664693 ], [ -82.004520182293419, 28.745357349880631 ], [ -82.00423614273106, 28.744470020926769 ], [ -82.004148114497482, 28.744011097061943 ], [ -82.004087080674338, 28.743271656446737 ], [ -82.004057738429481, 28.742516957601016 ], [ -82.003970882637873, 28.74194418371561 ], [ -82.003800693673966, 28.741450049029964 ], [ -82.003568299081309, 28.740989950981024 ], [ -82.003379329435603, 28.740704735544568 ], [ -82.003322285398909, 28.740546755071609 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Randy Mcdaniel Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00523147275257, 28.746540676584367 ], [ -82.005365020725776, 28.746399436166165 ], [ -82.005521270223241, 28.746334953631589 ], [ -82.005777967699899, 28.746302712731453 ], [ -82.006231837288439, 28.746325037087001 ], [ -82.006575340044506, 28.74635728112851 ], [ -82.006779954471554, 28.746416806729336 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 446", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127157915030935, 28.787473652086231 ], [ -82.127185103276474, 28.78751129002633 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12542942795136, 28.788442338885048 ], [ -82.125473677431089, 28.788503524377681 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437B", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123694423090882, 28.789454505380547 ], [ -82.123730243533259, 28.789510725567396 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 451", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123256544771451, 28.789755088452601 ], [ -82.123265190094287, 28.789768566556138 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.127157915030935, 28.787473652086231 ], [ -82.127010654329879, 28.787543017786433 ], [ -82.12542942795136, 28.788442338885048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.12542942795136, 28.788442338885048 ], [ -82.123694423090882, 28.789454505380547 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 437", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.123694423090882, 28.789454505380547 ], [ -82.1232692383998, 28.789711995197372 ], [ -82.123256544771451, 28.789755088452601 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012103069482379, 28.847407017876545 ], [ -82.012047192718654, 28.84740464501261 ], [ -82.01185428003123, 28.847401801696368 ], [ -82.011690502416727, 28.847406591046695 ], [ -82.011511540698166, 28.847420928716048 ], [ -82.011340170744006, 28.847442905374233 ], [ -82.011109691538877, 28.847492103548007 ], [ -82.011081763873577, 28.847495622889351 ], [ -82.011048683321135, 28.847499444892879 ], [ -82.011016143448401, 28.847498970065772 ], [ -82.010978452161496, 28.84749306825287 ], [ -82.010952150101204, 28.847488470298668 ], [ -82.010919067178719, 28.847478923704802 ], [ -82.010865760827485, 28.847457197497448 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010490923286085, 28.84743651640272 ], [ -82.010452349941659, 28.847454893757043 ], [ -82.010421980711982, 28.847465209307234 ], [ -82.010389877440517, 28.847475524975202 ], [ -82.010353433767179, 28.847483931666691 ], [ -82.010316122708218, 28.847488518046511 ], [ -82.010282716930078, 28.847488902099499 ], [ -82.010248008467215, 28.847488140307799 ], [ -82.010209558068482, 28.847484911866403 ], [ -82.009991545493307, 28.847444819558589 ], [ -82.009621704128008, 28.847375856916781 ], [ -82.0093443692774, 28.847351044415969 ], [ -82.009024047246285, 28.847335064873732 ], [ -82.008849430193251, 28.847331449168916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012103069482379, 28.847407017876545 ], [ -82.011696712927915, 28.847349226435998 ], [ -82.01123525073092, 28.847308021567752 ], [ -82.010757308897112, 28.84726132311048 ], [ -82.01053207095967, 28.847258575051075 ], [ -82.010150266938069, 28.847277801609522 ], [ -82.009776701768644, 28.847288785772115 ], [ -82.009375670280761, 28.84729427833263 ], [ -82.009095496333828, 28.847299769450967 ], [ -82.008849430193251, 28.847331449168916 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 6th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061870332276612, 28.617391990553159 ], [ -82.063011100172091, 28.61739791230994 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Danford Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018602439818153, 28.754986817538811 ], [ -82.018578932634355, 28.754823592145708 ], [ -82.018469196755518, 28.754684695467525 ], [ -82.018321679206636, 28.754535372775976 ], [ -82.018188288962875, 28.754390070646878 ], [ -82.01805251719459, 28.754249532925751 ], [ -82.017928654977382, 28.754101849908942 ], [ -82.017814320473192, 28.753970841328389 ], [ -82.017702367194246, 28.753854124173369 ], [ -82.017632234361045, 28.753761680431086 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Danford Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017632234361045, 28.753761680431086 ], [ -82.017237883289155, 28.753325323281615 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Danford Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017237883289155, 28.753325323281615 ], [ -82.016847239361383, 28.752884656840866 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Danford Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016847239361383, 28.752884656840866 ], [ -82.016751960963205, 28.752782231437109 ], [ -82.016654298700786, 28.752677424121234 ], [ -82.016539964628507, 28.752548797452651 ], [ -82.016475651647681, 28.752470191275748 ], [ -82.016439921859075, 28.7524082602398 ], [ -82.016411339508053, 28.752322508965644 ], [ -82.016389901413476, 28.752239138986567 ], [ -82.016389901858958, 28.752134332868803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Danford Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016389901858958, 28.752134332868803 ], [ -82.016398597291911, 28.752029048425587 ], [ -82.016421202714312, 28.751924926373974 ], [ -82.016460934263307, 28.751835876481962 ], [ -82.016506620391027, 28.751750835793906 ], [ -82.016582843670434, 28.751660321692029 ], [ -82.016654303601186, 28.751569808101713 ], [ -82.016737674427659, 28.751472147614738 ], [ -82.016806751749471, 28.751376869977975 ], [ -82.01686392000569, 28.751288736467853 ], [ -82.016939810713339, 28.751197050086859 ], [ -82.016998205838235, 28.751170099902939 ], [ -82.017052857046878, 28.75117234647059 ], [ -82.017115743584085, 28.751200795365634 ], [ -82.017390293790442, 28.751375759643995 ], [ -82.01742561684668, 28.75142226264154 ], [ -82.017436795910243, 28.751479496254259 ], [ -82.017420121629485, 28.751536663795552 ], [ -82.017123975372968, 28.751932222066834 ], [ -82.017065096455994, 28.751990749905296 ], [ -82.016992383340266, 28.752048920243471 ], [ -82.016905982596626, 28.752088269797113 ], [ -82.016799051357424, 28.752114787132367 ], [ -82.016698964090509, 28.75212932891181 ], [ -82.016573314363683, 28.752134334272267 ], [ -82.016389901858958, 28.752134332868803 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ostrom Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016847239361383, 28.752884656840866 ], [ -82.017083770646551, 28.752714100424949 ], [ -82.017248570709, 28.75260134399392 ], [ -82.01740898410354, 28.752489474876057 ], [ -82.017533024811684, 28.752385111926799 ], [ -82.017636534205366, 28.752277327108423 ], [ -82.017734300494709, 28.752164772366509 ], [ -82.017840987306343, 28.752005297668216 ], [ -82.017917977564196, 28.751939428654772 ], [ -82.018048006610343, 28.751863296219128 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Padgett Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017237883289155, 28.753325323281615 ], [ -82.017488541800731, 28.753153567984008 ], [ -82.017641778267475, 28.75305526764285 ], [ -82.017800796184872, 28.752942511260805 ], [ -82.01792801063435, 28.752847102168008 ], [ -82.018061008157801, 28.752728562185919 ], [ -82.018156418831495, 28.752618696354848 ], [ -82.018240265596646, 28.752523287083665 ], [ -82.018318329702794, 28.752419203614057 ], [ -82.018460330288917, 28.752203763879869 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Priddy Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017632234361045, 28.753761680431086 ], [ -82.017744392102827, 28.753678877871284 ], [ -82.017889847499447, 28.753575920457791 ], [ -82.018062940252733, 28.753453672320642 ], [ -82.018210988051507, 28.753353360729989 ], [ -82.018344175709245, 28.753249090620145 ], [ -82.018462030084592, 28.753146134343396 ], [ -82.018592994185724, 28.753023470512208 ], [ -82.018694670325559, 28.752898163011036 ], [ -82.018809837255418, 28.752754588009225 ], [ -82.018856581385606, 28.752668116226058 ], [ -82.018870325880755, 28.752594855153983 ], [ -82.0188649560165, 28.752504882975785 ], [ -82.018836725502666, 28.752445857947144 ], [ -82.018797374622025, 28.752400518949543 ], [ -82.018740916073185, 28.752360312783992 ], [ -82.018460330288917, 28.752203763879869 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Priddy Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018460330288917, 28.752203763879869 ], [ -82.018287529599618, 28.752095977198671 ], [ -82.018137826874209, 28.751959105618464 ], [ -82.018048006610343, 28.751863296219128 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Priddy Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018048006610343, 28.751863296219128 ], [ -82.0180018118661, 28.751783739221672 ], [ -82.017951341185352, 28.751672531211437 ], [ -82.017908549902998, 28.75154279219641 ], [ -82.017901361105871, 28.751438540999182 ], [ -82.017913236356634, 28.751358540826576 ], [ -82.017955629230812, 28.751261125660413 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Priddy Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017955629230812, 28.751261125660413 ], [ -82.018006362350931, 28.751204167593254 ], [ -82.01809323693206, 28.751139792363954 ], [ -82.018218862485142, 28.751084168218632 ], [ -82.018367832000607, 28.751041403494945 ], [ -82.018500919028483, 28.751036650855745 ], [ -82.018641928202229, 28.751050910706947 ], [ -82.018780561989701, 28.751077054263597 ], [ -82.019145138872375, 28.751197449743504 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Priddy Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019145138872375, 28.751197449743504 ], [ -82.019410609166059, 28.751291943255559 ], [ -82.019629068209667, 28.75135777159101 ], [ -82.019835954443394, 28.751391047339997 ], [ -82.020001608242481, 28.751397559517894 ], [ -82.020106497164178, 28.751386709606237 ], [ -82.02017738831087, 28.751365008671364 ], [ -82.020233812603422, 28.751337520493198 ], [ -82.020293128298093, 28.751293394923881 ], [ -82.0203365321956, 28.751247823396493 ], [ -82.020367636971741, 28.751186336724974 ], [ -82.020432733250288, 28.751012002055941 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Priddy Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020432733250288, 28.751012002055941 ], [ -82.020498706682645, 28.750912072430459 ], [ -82.020588935436024, 28.750797590251583 ], [ -82.020695657756988, 28.750692568213026 ], [ -82.020865715114653, 28.750571756995008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Priddy Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020865715114653, 28.750571756995008 ], [ -82.020962827042865, 28.750521178470731 ], [ -82.021076785385276, 28.75045667999678 ], [ -82.021172196933108, 28.750419094966588 ], [ -82.021287846164142, 28.750378618494729 ], [ -82.021409278530413, 28.750349706969107 ], [ -82.021519144740381, 28.750335251344968 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Priddy Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021519144740381, 28.750335251344968 ], [ -82.02164346715341, 28.750315014061261 ], [ -82.021770682725744, 28.750262973086837 ], [ -82.021874767497295, 28.750196475022729 ], [ -82.022001981929705, 28.750095283620258 ], [ -82.02236582523409, 28.749736678093036 ], [ -82.022483299471816, 28.749570642902658 ], [ -82.022531129338049, 28.749460634040727 ], [ -82.022556240861064, 28.749335081787972 ], [ -82.022557100665793, 28.749233700317145 ], [ -82.022510840737738, 28.749115160606419 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Priddy Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022510840737738, 28.749115160606419 ], [ -82.022333831363994, 28.748857976376222 ], [ -82.022232191659228, 28.748678613462161 ], [ -82.022159250595735, 28.748489684946499 ], [ -82.022125770161352, 28.748316302625149 ], [ -82.022106639109538, 28.748160855309759 ], [ -82.022105135267367, 28.747972094181861 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leanne Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017955629230812, 28.751261125660413 ], [ -82.017859487010483, 28.751152290146088 ], [ -82.016862666187407, 28.750408758290682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dinapoli Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019145138872375, 28.751197449743504 ], [ -82.019289983378059, 28.750878259204491 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dinapoli Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019289983378059, 28.750878259204491 ], [ -82.01938286298973, 28.750733858379785 ], [ -82.019489300477431, 28.750598948018371 ], [ -82.019629071609884, 28.750435699241137 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dinapoli Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019629071609884, 28.750435699241137 ], [ -82.020059839318705, 28.749944776280124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dinapoli Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020059839318705, 28.749944776280124 ], [ -82.020202652627049, 28.749805672900454 ], [ -82.020427693869607, 28.749591763110057 ], [ -82.020533535434694, 28.749487957245002 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dinapoli Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020533535434694, 28.749487957245002 ], [ -82.020645253244439, 28.749386040802442 ], [ -82.020865199701191, 28.749191822396348 ], [ -82.021001557470996, 28.749073642162823 ], [ -82.021137843664476, 28.748967643153115 ], [ -82.021241679836976, 28.748902746972327 ], [ -82.02133470019082, 28.748850828645942 ], [ -82.02138702015526, 28.748834003239235 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Skoblicki Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019629071609884, 28.750435699241137 ], [ -82.019709489501821, 28.750491700416283 ], [ -82.019982471565399, 28.750705452151692 ], [ -82.020131839822525, 28.750813616293126 ], [ -82.020338380570635, 28.750957428083485 ], [ -82.020432733250288, 28.751012002055941 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Skoblicki Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01789192347897, 28.749906297970874 ], [ -82.017955201122462, 28.749943078582127 ], [ -82.018040905343256, 28.749975217482014 ], [ -82.018182199764965, 28.750007357319252 ], [ -82.018338840947095, 28.750031390312419 ], [ -82.018480334491144, 28.750054021989339 ], [ -82.018629702951173, 28.750077200192589 ], [ -82.018753317043405, 28.750097803710343 ], [ -82.018897534753577, 28.75012870885438 ], [ -82.019070080963516, 28.750167338399667 ], [ -82.019237475785189, 28.750221421536558 ], [ -82.019371391464972, 28.750275502729405 ], [ -82.019538786390655, 28.750373366002787 ], [ -82.019629071609884, 28.750435699241137 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ruter Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01818523967728, 28.749326503332046 ], [ -82.01887470235198, 28.749478284167527 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ruter Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01887470235198, 28.749478284167527 ], [ -82.019049635108317, 28.749521275396127 ], [ -82.019242526822794, 28.749568881145144 ], [ -82.01941377940102, 28.749619577331728 ], [ -82.019566484408401, 28.749675838681284 ], [ -82.019714243556322, 28.749745082257643 ], [ -82.019864475065589, 28.749822363211994 ], [ -82.019984414705874, 28.749892842964758 ], [ -82.020059839318705, 28.749944776280124 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ruter Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020059839318705, 28.749944776280124 ], [ -82.020278696329342, 28.750096244620327 ], [ -82.020541610652643, 28.750278401085193 ], [ -82.020683229315495, 28.750377535343432 ], [ -82.02075484792978, 28.750436610481916 ], [ -82.020812709469112, 28.750490021949769 ], [ -82.020842651435146, 28.750527651447726 ], [ -82.020865715114653, 28.750571756995008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dirksen Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018999110114265, 28.748874236710613 ], [ -82.019213432704078, 28.748917312682327 ], [ -82.019487558995834, 28.748985846347509 ], [ -82.019678558307831, 28.749041687235064 ], [ -82.01983846477269, 28.749098799073678 ], [ -82.019947041012372, 28.749144985428629 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dirksen Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019947041012372, 28.749144985428629 ], [ -82.020027328321248, 28.749185129240455 ], [ -82.020152034632929, 28.749250696835745 ], [ -82.020274170092122, 28.749321407921435 ], [ -82.020410447556884, 28.749407546567536 ], [ -82.020533535434694, 28.749487957245002 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dirksen Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020533535434694, 28.749487957245002 ], [ -82.020770921695572, 28.749643722939066 ], [ -82.020917958390086, 28.749747288744828 ], [ -82.021062437309894, 28.749843821168302 ], [ -82.021178788247937, 28.749920537248027 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dirksen Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021178788247937, 28.749920537248027 ], [ -82.02122545619217, 28.749956018573087 ], [ -82.021292901380235, 28.750003644695298 ], [ -82.021344683534892, 28.750043920897877 ], [ -82.021405735093779, 28.750089630340675 ], [ -82.02145496028804, 28.75013310199936 ], [ -82.021477016177471, 28.750169860917744 ], [ -82.021494276228154, 28.750212053425017 ], [ -82.021507701109684, 28.750266073207719 ], [ -82.021519144740381, 28.750335251344968 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chastain Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019289983378059, 28.750878259204491 ], [ -82.019163404824766, 28.750833188403639 ], [ -82.01907207839109, 28.750800571063422 ], [ -82.018968227018348, 28.75077004149766 ], [ -82.01885848277665, 28.750737299247074 ], [ -82.018759007658048, 28.750712549192766 ], [ -82.018657454777269, 28.750697760938007 ], [ -82.018552184861747, 28.750693036654432 ], [ -82.018428095037578, 28.750690453226973 ], [ -82.018341459655417, 28.750689132614404 ], [ -82.018259510251909, 28.75067937737019 ], [ -82.018165855393818, 28.750655962465178 ], [ -82.018068297108726, 28.75063644961779 ], [ -82.017972690873108, 28.750601328141755 ], [ -82.017851718170078, 28.750544744518926 ], [ -82.017769770404456, 28.750488160432511 ], [ -82.017664407429734, 28.750414016467939 ], [ -82.017594165746715, 28.750355480909732 ], [ -82.017584411564627, 28.750314506911067 ], [ -82.017590264300196, 28.750271581975937 ], [ -82.017621483760408, 28.750220852454561 ], [ -82.01789192347897, 28.749906297970874 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chastain Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01789192347897, 28.749906297970874 ], [ -82.017957606048185, 28.749804102597658 ], [ -82.018004849582582, 28.749727651879656 ], [ -82.018054672492312, 28.749634881415162 ], [ -82.018105353444085, 28.749524930604302 ], [ -82.01814572510203, 28.749428723458227 ], [ -82.01818523967728, 28.749326503332046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chastain Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01818523967728, 28.749326503332046 ], [ -82.018208875894615, 28.749236804048181 ], [ -82.01822819163165, 28.749113699533133 ], [ -82.018245751720073, 28.74900443505971 ], [ -82.018249654210535, 28.748901023897261 ], [ -82.018249655084105, 28.748752736227097 ], [ -82.018241849270154, 28.748571278376925 ], [ -82.018249655077128, 28.748493231894365 ], [ -82.018278465703418, 28.748426960726537 ], [ -82.018325371002163, 28.748376844206707 ], [ -82.018391550470213, 28.748337008044228 ], [ -82.018493712612809, 28.748312593275095 ], [ -82.018898504109018, 28.748296531866963 ], [ -82.019051400286756, 28.748295519765165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chastain Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019051400286756, 28.748295519765165 ], [ -82.019599072501506, 28.748268924033361 ], [ -82.019753782359331, 28.748259380329078 ], [ -82.019895369136478, 28.748227961483391 ], [ -82.019995990606873, 28.74819654286997 ], [ -82.020071555085195, 28.748172283155995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chastain Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020071555085195, 28.748172283155995 ], [ -82.020224277324687, 28.748109047395076 ], [ -82.020575855724431, 28.747965873873198 ], [ -82.020808971983698, 28.747857190170858 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mergaert Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01887470235198, 28.749478284167527 ], [ -82.018907440619159, 28.749316019689889 ], [ -82.018942680853783, 28.749157750349983 ], [ -82.018978625707732, 28.748961419138602 ], [ -82.018999110114265, 28.748874236710613 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mergaert Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018999110114265, 28.748874236710613 ], [ -82.019020134697641, 28.748773539220384 ], [ -82.019044165825093, 28.748635907458652 ], [ -82.019057274090002, 28.748576922682854 ], [ -82.019063827012218, 28.748526675975086 ], [ -82.019061643249813, 28.74846550602264 ], [ -82.019061642461693, 28.748393413162411 ], [ -82.019051400286756, 28.748295519765165 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bogart Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019947041012372, 28.749144985428629 ], [ -82.019994707008109, 28.749054061599136 ], [ -82.020090381751686, 28.748909704432098 ], [ -82.020167519977221, 28.74879239424666 ], [ -82.020207021153198, 28.748733142117235 ], [ -82.020232697370162, 28.748665989413993 ], [ -82.020240598145605, 28.748588961526131 ], [ -82.020234672319276, 28.748521809730676 ], [ -82.020212947317006, 28.748450706215866 ], [ -82.020163570483106, 28.748342077243549 ], [ -82.020104318209434, 28.748237399120818 ], [ -82.020071555085195, 28.748172283155995 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tucker Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021178788247937, 28.749920537248027 ], [ -82.021255412728692, 28.749847297762535 ], [ -82.02136435133697, 28.749740117903595 ], [ -82.021469775536872, 28.749646992160439 ], [ -82.021575201051391, 28.749566167694077 ], [ -82.021670083563677, 28.74949588479263 ], [ -82.021817678348512, 28.749399246764831 ], [ -82.021873904990301, 28.749344778384106 ], [ -82.021894848716414, 28.749281574668395 ], [ -82.021907417121781, 28.74920401900879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barone Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020808971983698, 28.747857190170858 ], [ -82.020649100155509, 28.747536886400848 ], [ -82.020466697065601, 28.746990284067003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barone Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02138702015526, 28.748834003239235 ], [ -82.020808971983698, 28.747857190170858 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barone Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021907417121781, 28.74920401900879 ], [ -82.021829119658292, 28.749194160652152 ], [ -82.021767409133204, 28.749174413845928 ], [ -82.021678546275425, 28.749134917546876 ], [ -82.021599556810287, 28.749085549172534 ], [ -82.021523036052187, 28.749016433951262 ], [ -82.021453920676578, 28.748930038085486 ], [ -82.02138702015526, 28.748834003239235 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barone Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022510840737738, 28.749115160606419 ], [ -82.022441826407885, 28.749146454239746 ], [ -82.022377647956233, 28.749168668803708 ], [ -82.022278931123495, 28.749192458846114 ], [ -82.022174929622551, 28.74920000694306 ], [ -82.02204813577454, 28.749199506203521 ], [ -82.021907417121781, 28.74920401900879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stampeder Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015760339997328, 28.752037823907244 ], [ -82.015830718083507, 28.751887841755366 ], [ -82.016048772090556, 28.751660562192896 ], [ -82.016197602154222, 28.751455202037345 ], [ -82.016309514299437, 28.751212923043152 ], [ -82.016352203702283, 28.751062941051885 ], [ -82.016413351174592, 28.750948723942319 ], [ -82.016497571930699, 28.750833352783083 ], [ -82.016616405772737, 28.750693753896169 ], [ -82.016728317879895, 28.750548386286532 ], [ -82.016800194634527, 28.75047727782702 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stampeder Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01305346908687, 28.746954714693139 ], [ -82.01313099315864, 28.746727370199267 ], [ -82.013243590917583, 28.746457135053383 ], [ -82.013443766734994, 28.746291991552745 ], [ -82.013729015925492, 28.746204416904138 ], [ -82.014097148040605, 28.746295039627782 ], [ -82.014707372034778, 28.746504685684123 ], [ -82.015718256069604, 28.746732390744512 ], [ -82.01674902149, 28.746958453605792 ], [ -82.017074441908534, 28.747135252247745 ], [ -82.017389717686498, 28.747440520427435 ], [ -82.017572378135611, 28.747755798408786 ], [ -82.017725010517083, 28.748198684518524 ], [ -82.01774002345374, 28.748774187540217 ], [ -82.017672221420298, 28.749117221963214 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leanne Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016781472198204, 28.750342719918528 ], [ -82.016533663995546, 28.750183250411116 ], [ -82.016262532321917, 28.750010511790464 ], [ -82.015976230866457, 28.749884372350959 ], [ -82.0158064780274, 28.74983060284756 ], [ -82.015738351110826, 28.749814836848962 ], [ -82.015677262067953, 28.749810332833679 ], [ -82.015618988833964, 28.74981342874494 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Priddy Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022105135267367, 28.747972094181861 ], [ -82.022105457188914, 28.74785728802264 ], [ -82.02212383871381, 28.747701472976633 ], [ -82.022155353663479, 28.747522897478714 ], [ -82.022193869191497, 28.747375836288612 ], [ -82.022252518196424, 28.74720601532756 ], [ -82.022305040288387, 28.747079964273343 ], [ -82.022349684563281, 28.746948659319575 ], [ -82.022379446808188, 28.746802473803783 ], [ -82.022398704726442, 28.746649284315996 ], [ -82.022406928669739, 28.746516237324386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Priddy Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022406928669739, 28.746516237324386 ], [ -82.02239696003852, 28.745736228673362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barone Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020466697065601, 28.746990284067003 ], [ -82.020158911300584, 28.746230587873452 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gosine Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022105135267367, 28.747972094181861 ], [ -82.022996142364946, 28.747970088147813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gosine Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022996142364946, 28.747970088147813 ], [ -82.02397701868108, 28.747963090030471 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gosine Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02397701868108, 28.747963090030471 ], [ -82.024629298197496, 28.74796819791797 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lacharite Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023014296837715, 28.74881723065376 ], [ -82.023014297223185, 28.748533787709167 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lacharite Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023014297223185, 28.748533787709167 ], [ -82.022996142364946, 28.747970088147813 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lacharite Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022996142364946, 28.747970088147813 ], [ -82.022993122713061, 28.747711540741605 ], [ -82.023001370188041, 28.747618905151043 ], [ -82.0230191366377, 28.747531346272837 ], [ -82.023061647947713, 28.747411428753406 ], [ -82.023116212716374, 28.747261690181219 ], [ -82.023164433373296, 28.747106875259316 ], [ -82.023202504296847, 28.746956503224261 ], [ -82.023231056317414, 28.746801687906636 ], [ -82.023244379555564, 28.746689384424005 ], [ -82.023252627910253, 28.746611342069588 ], [ -82.02325326270963, 28.746500307542007 ], [ -82.023250725028788, 28.74641909349991 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flowers Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023014297223185, 28.748533787709167 ], [ -82.02462934685127, 28.748534040748048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Flowers Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02462934685127, 28.748534040748048 ], [ -82.025029861460837, 28.748534941634851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hendren Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02397701868108, 28.747963090030471 ], [ -82.023970049213986, 28.746414467329839 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alder Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014896340130846, 28.745165925034531 ], [ -82.015119734949366, 28.745258597346037 ], [ -82.015317825772897, 28.745337120859091 ], [ -82.015484387426412, 28.745394229048738 ], [ -82.015663894313121, 28.745454988222075 ], [ -82.015834472732621, 28.745504194801285 ], [ -82.016024732781631, 28.745546839978541 ], [ -82.016201370689302, 28.745569668713522 ], [ -82.016372065501642, 28.745600822728981 ], [ -82.01650966048355, 28.745632626419326 ], [ -82.016635377900144, 28.745671116663114 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alder Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016635377900144, 28.745671116663114 ], [ -82.016731629252064, 28.745717650843904 ], [ -82.01684855992643, 28.745780211380051 ], [ -82.017011259678696, 28.74587887010707 ], [ -82.017165303870215, 28.745963681730526 ], [ -82.017333194554013, 28.746027722730101 ], [ -82.01749762414218, 28.746069264526422 ], [ -82.017641282943202, 28.746098689599567 ], [ -82.017864560970608, 28.746110807020521 ], [ -82.018375157019719, 28.746098694146305 ], [ -82.018524009531419, 28.746107349747909 ], [ -82.018634783081438, 28.746122927394627 ], [ -82.018826904819036, 28.746166200005682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alder Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018826904819036, 28.746166200005682 ], [ -82.018922606643457, 28.74618364541838 ], [ -82.019098622618472, 28.746217172898969 ], [ -82.019192017951539, 28.746241121471694 ], [ -82.019310557616677, 28.746267464028421 ], [ -82.019421914106303, 28.746289017936427 ], [ -82.019553626059562, 28.746305782122246 ], [ -82.019619482405375, 28.746310572471135 ], [ -82.019846983372744, 28.746305783722089 ], [ -82.019943971451696, 28.746285429027505 ], [ -82.020044550832921, 28.746257890362919 ], [ -82.020158911300584, 28.746230587873452 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alder Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020158911300584, 28.746230587873452 ], [ -82.020376225028727, 28.746142944796812 ], [ -82.020582175156761, 28.746057931491492 ], [ -82.020784531938205, 28.745976511449584 ], [ -82.021071429615318, 28.745862901679935 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alder Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021071429615318, 28.745862901679935 ], [ -82.021171284946433, 28.745832828560893 ], [ -82.021364063628312, 28.745786132272986 ], [ -82.021463446255268, 28.745763383163961 ], [ -82.021611921492564, 28.745735845058373 ], [ -82.021679136748119, 28.74572828320084 ], [ -82.021861642253441, 28.745728548272506 ], [ -82.022094753563934, 28.745728549813695 ], [ -82.02239696003852, 28.745736228673362 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alder Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02239696003852, 28.745736228673362 ], [ -82.02357437893285, 28.745731351406278 ], [ -82.023667204370739, 28.745736237218921 ], [ -82.023725132735109, 28.745749498812597 ], [ -82.023793529837107, 28.745771134871532 ], [ -82.02387867822307, 28.745810917370378 ], [ -82.024169019765282, 28.745974934347647 ], [ -82.02443001691833, 28.746136363435827 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alder Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02443001691833, 28.746136363435827 ], [ -82.024518440196061, 28.746185210596359 ], [ -82.024573836680844, 28.74623685256751 ], [ -82.024607637836084, 28.746300699513952 ], [ -82.024632050376567, 28.74636501640575 ], [ -82.024634866532523, 28.746467828370925 ], [ -82.024629298197496, 28.74796819791797 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alder Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024629298197496, 28.74796819791797 ], [ -82.02462934685127, 28.748534040748048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018826904819036, 28.746166200005682 ], [ -82.018742145160786, 28.746482929223721 ], [ -82.01868446140594, 28.746704049209733 ], [ -82.018687665444205, 28.746838643755986 ], [ -82.018761373097149, 28.746941192934848 ], [ -82.018895967549284, 28.746995673564836 ], [ -82.019078633272827, 28.747037334620668 ], [ -82.019258093273592, 28.747072586666942 ], [ -82.019437553664588, 28.747098225128994 ], [ -82.019620219344176, 28.74710463621728 ], [ -82.019806088952336, 28.747101432362498 ], [ -82.019972730191384, 28.747091819062259 ], [ -82.020165009763247, 28.747059774674184 ], [ -82.020466697065601, 28.746990284067003 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020466697065601, 28.746990284067003 ], [ -82.020727641548348, 28.746885090251023 ], [ -82.020904053100921, 28.746813848434876 ], [ -82.021092337785575, 28.746735821854461 ], [ -82.021253483097695, 28.746669668254057 ], [ -82.021424805725076, 28.746610300187314 ], [ -82.021594431995339, 28.746557717629727 ], [ -82.021764057572426, 28.746532274922608 ], [ -82.021940469629541, 28.746518705513548 ], [ -82.022406928669739, 28.746516237324386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022406928669739, 28.746516237324386 ], [ -82.022510156489986, 28.746527616291914 ], [ -82.022632577780925, 28.746525653058438 ], [ -82.022701973798405, 28.746515833633286 ], [ -82.022918667393355, 28.746460188352266 ], [ -82.023040073056691, 28.746426104029723 ], [ -82.023134053103462, 28.746417636544201 ], [ -82.023250725028788, 28.74641909349991 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023250725028788, 28.74641909349991 ], [ -82.023970049213986, 28.746414467329839 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cleveland Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023970049213986, 28.746414467329839 ], [ -82.024087111009379, 28.746405997946749 ], [ -82.024162128406005, 28.746389966119757 ], [ -82.02423312728024, 28.746356772765935 ], [ -82.024298851758545, 28.746294987483914 ], [ -82.024365864213252, 28.746215724855741 ], [ -82.02443001691833, 28.746136363435827 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vlasto Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020387577960747, 28.745089435191922 ], [ -82.020604579387324, 28.745207913016511 ], [ -82.020760449530556, 28.745337064042342 ], [ -82.020885146679987, 28.745475121816888 ], [ -82.02097532894787, 28.745612065724529 ], [ -82.02103433724416, 28.745749009705467 ], [ -82.021071429615318, 28.745862901679935 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Vlasto Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018817046582754, 28.744893316079505 ], [ -82.018968408241463, 28.744790469908644 ], [ -82.019096483328852, 28.744738076484865 ], [ -82.019197391904584, 28.744714790145977 ], [ -82.019311882794156, 28.74470314816482 ], [ -82.019416671797657, 28.744697326497263 ], [ -82.019538926600049, 28.744703149525993 ], [ -82.019651477285393, 28.74472449645333 ], [ -82.019760147435221, 28.744755544702905 ], [ -82.019965843613036, 28.744854514206409 ], [ -82.020182614569137, 28.744977444806519 ], [ -82.020387577960747, 28.745089435191922 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bevis Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016635377900144, 28.745671116663114 ], [ -82.016696996797066, 28.745590675511391 ], [ -82.016823656394109, 28.74541941871135 ], [ -82.0169645867404, 28.745278488970563 ], [ -82.017064486915359, 28.745192861952361 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bevis Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017064486915359, 28.745192861952361 ], [ -82.017537228080386, 28.74474509899828 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bevis Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017537228080386, 28.74474509899828 ], [ -82.017678158841221, 28.744623793122532 ], [ -82.017801249627055, 28.74453102980705 ], [ -82.017947531784188, 28.744423995020689 ], [ -82.018075975430392, 28.744347286713165 ], [ -82.018193714793924, 28.744283066901634 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hornstein Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014896340130846, 28.745165925034531 ], [ -82.014971761849324, 28.744879542455429 ], [ -82.015059002304255, 28.744564178676189 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hornstein Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015059002304255, 28.744564178676189 ], [ -82.015218422715506, 28.743959035165606 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hornstein Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015218422715506, 28.743959035165606 ], [ -82.015270917219524, 28.743737066229826 ], [ -82.015311295145565, 28.743582900925002 ], [ -82.015369107051697, 28.743424147230378 ], [ -82.015424166032474, 28.743309441611672 ], [ -82.015494786215328, 28.743202994155354 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hornstein Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015494786215328, 28.743202994155354 ], [ -82.015596173598297, 28.743050802749831 ], [ -82.015742731722966, 28.742912061755089 ], [ -82.015990903604717, 28.742704927623915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wiles Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015059002304255, 28.744564178676189 ], [ -82.015164145839748, 28.744602233017062 ], [ -82.015294797693329, 28.744649344786406 ], [ -82.015389282883845, 28.744685096456021 ], [ -82.015504195613389, 28.744726466423245 ], [ -82.015605319530337, 28.744762218126148 ], [ -82.015692143631313, 28.744791840936934 ], [ -82.015785096344331, 28.744820442489608 ], [ -82.015873451980312, 28.744848532870581 ], [ -82.015969131400198, 28.744871154300004 ], [ -82.016058659240869, 28.744891319326367 ], [ -82.016249005687101, 28.744936486174836 ], [ -82.01637644115489, 28.74496149125163 ], [ -82.016471614508703, 28.744974396169393 ], [ -82.016590176944575, 28.744989721946055 ], [ -82.0166950283582, 28.745000207356966 ], [ -82.016787319026676, 28.745015517079956 ], [ -82.016854639141172, 28.745030477784308 ], [ -82.01690887063377, 28.745052917556478 ], [ -82.016964971031967, 28.74509031940369 ], [ -82.017019201813767, 28.745133329387464 ], [ -82.017064486915359, 28.745192861952361 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bingham Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015218422715506, 28.743959035165606 ], [ -82.015298787123513, 28.74397765057515 ], [ -82.01546708890649, 28.744046842522877 ], [ -82.015641000312698, 28.74412164339109 ], [ -82.015824261633497, 28.744196445709456 ], [ -82.016022483110504, 28.744261897136148 ], [ -82.016209484347087, 28.744312388124762 ], [ -82.016402096397101, 28.744349790917425 ], [ -82.0165722669351, 28.744379711270319 ], [ -82.016757399635978, 28.744407762747667 ], [ -82.016935051311009, 28.744417114214446 ], [ -82.017026682324385, 28.744420854267734 ], [ -82.01712579236974, 28.744430204908078 ], [ -82.017198723507633, 28.744443296057572 ], [ -82.017281003436224, 28.744488177581918 ], [ -82.017342714399987, 28.744519967950783 ], [ -82.017417514213037, 28.744589157980958 ], [ -82.017488575812905, 28.744675179458852 ], [ -82.017537228080386, 28.74474509899828 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zawacki Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015494786215328, 28.743202994155354 ], [ -82.0155584829361, 28.743233470445393 ], [ -82.01579762024231, 28.743357235815903 ], [ -82.015967533438996, 28.743436948959719 ], [ -82.016087102516423, 28.74347890352756 ], [ -82.016181498860419, 28.743514565329651 ], [ -82.016322045351572, 28.743556520022416 ], [ -82.016412245577229, 28.743581692635271 ], [ -82.016580061301298, 28.743619451733149 ], [ -82.016708020525641, 28.743638333276714 ], [ -82.016875836136876, 28.743661407600509 ], [ -82.01701428393045, 28.74367609271351 ], [ -82.017175807531075, 28.743676094110196 ], [ -82.017322645652087, 28.743678193195937 ], [ -82.017421238177121, 28.743688681513085 ], [ -82.017563880477198, 28.743726441561915 ], [ -82.017687645158404, 28.743768395999567 ], [ -82.017786236083779, 28.743829230070965 ], [ -82.017893217883085, 28.743904747421208 ], [ -82.017979224200701, 28.743978167632591 ], [ -82.018033764173907, 28.744057879168722 ], [ -82.018193714793924, 28.744283066901634 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zawacki Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018193714793924, 28.744283066901634 ], [ -82.018233270612953, 28.744335605909615 ], [ -82.018300508578193, 28.744409309842585 ], [ -82.018366455005719, 28.744485600868316 ], [ -82.018436278581092, 28.744560598329105 ], [ -82.018521620824998, 28.744636888563885 ], [ -82.018662562931965, 28.744759728606848 ], [ -82.018817046582754, 28.744893316079505 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Zawacki Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018817046582754, 28.744893316079505 ], [ -82.019309088563332, 28.745320916735029 ], [ -82.019371156480048, 28.745355829967238 ], [ -82.019443567170697, 28.745384277510759 ], [ -82.019519857625298, 28.745403673279899 ], [ -82.019605197773942, 28.745411432299932 ], [ -82.019690539256189, 28.74541531217977 ], [ -82.019755192499161, 28.745406260094931 ], [ -82.019844412214951, 28.745393330865568 ], [ -82.020210345760816, 28.745251097347211 ], [ -82.020269827296119, 28.745214893053546 ], [ -82.020318962882897, 28.745168343283492 ], [ -82.020351289423601, 28.745129552283501 ], [ -82.020387577960747, 28.745089435191922 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 740", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071280248935977, 28.610065602786253 ], [ -82.070819033552795, 28.610051807464917 ], [ -82.069688668197756, 28.610033573149913 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Chestnut Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069688668197756, 28.610033573149913 ], [ -82.069667548595717, 28.609678083268314 ], [ -82.069656015513303, 28.60929187281851 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alder Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011432441336751, 28.745706830095664 ], [ -82.012551240886197, 28.745092623606165 ], [ -82.012842748145985, 28.744961316483273 ], [ -82.012997692436201, 28.744911420482023 ], [ -82.01313296014402, 28.744884213192012 ], [ -82.013254456764059, 28.744870536456919 ], [ -82.013398257609055, 28.744871811750077 ], [ -82.013552203609052, 28.744880247678168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alder Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013552203609052, 28.744880247678168 ], [ -82.013807224408026, 28.744935712812726 ], [ -82.014098492449207, 28.744997669753211 ], [ -82.014506429945087, 28.745082157102551 ], [ -82.014896340130846, 28.745165925034531 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dry Creek Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013552203609052, 28.744880247678168 ], [ -82.01368636911009, 28.744370398190078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dry Creek Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01368636911009, 28.744370398190078 ], [ -82.013978607431056, 28.743294788443091 ], [ -82.014048871603237, 28.743041618609293 ], [ -82.014138094741384, 28.742751643815073 ], [ -82.014266353965851, 28.742457209421449 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dry Creek Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014266353965851, 28.742457209421449 ], [ -82.014381465481563, 28.742258835742252 ], [ -82.014448738534185, 28.742080761820809 ], [ -82.014488408012937, 28.741900389715173 ], [ -82.014504237469794, 28.741753972619726 ], [ -82.014512054585921, 28.74157819562522 ], [ -82.01450414040454, 28.741443650977178 ], [ -82.014440824105591, 28.741138945415077 ], [ -82.014365637442907, 28.74094108421659 ], [ -82.014290450370538, 28.740715521638375 ], [ -82.014239006746834, 28.740521618300249 ], [ -82.014151947633593, 28.740268356370741 ], [ -82.014080717769488, 28.74011402449576 ], [ -82.014001573747592, 28.739979479499731 ], [ -82.013910558091382, 28.73986867663556 ], [ -82.013811627672894, 28.739749960184046 ], [ -82.013677081826501, 28.739623328237915 ], [ -82.013530664935701, 28.739516482517161 ], [ -82.013352590237574, 28.739405679258635 ], [ -82.01323783035977, 28.739346320495429 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dry Creek Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01323783035977, 28.739346320495429 ], [ -82.013075362728429, 28.739267302503087 ], [ -82.012910625270649, 28.739185552280116 ], [ -82.012804517952688, 28.739126625493213 ], [ -82.01268024116105, 28.739046825850302 ], [ -82.012550185800066, 28.738971269316924 ], [ -82.012448998757051, 28.73889989065918 ], [ -82.012302816722865, 28.738812271194742 ], [ -82.01216843859207, 28.738746443511381 ], [ -82.012040870493919, 28.738695596414427 ], [ -82.011901952624115, 28.738651559959141 ], [ -82.01174850788199, 28.738602529263421 ], [ -82.011601872575838, 28.738563939545195 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dry Creek Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011601872575838, 28.738563939545195 ], [ -82.011403937377736, 28.738502651198477 ], [ -82.011219477297203, 28.738488423134285 ], [ -82.011064450679001, 28.738423068743831 ], [ -82.010935262772904, 28.73835163420485 ], [ -82.010822792554961, 28.738272600748054 ], [ -82.0107194413835, 28.738184446747049 ], [ -82.010623688955405, 28.738087175941082 ], [ -82.010535536865049, 28.737976225293917 ], [ -82.010433705620272, 28.737827277791478 ], [ -82.010333395071868, 28.737731525707595 ], [ -82.010123258184677, 28.737599811751689 ], [ -82.009917082313223, 28.737517339727447 ], [ -82.009688413889137, 28.737461108433727 ], [ -82.009343538713523, 28.737382385520743 ], [ -82.009006160530305, 28.737284918203841 ], [ -82.008706267469861, 28.737153713597653 ], [ -82.008421370026213, 28.736981273988995 ], [ -82.008087739451469, 28.736677631242387 ], [ -82.00781783806724, 28.736336502768793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mccarthy Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012421294362753, 28.744258860328557 ], [ -82.012587293126828, 28.744208389069662 ], [ -82.012783781129315, 28.74417976468148 ], [ -82.01368636911009, 28.744370398190078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Braden Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014266353965851, 28.742457209421449 ], [ -82.014032562093746, 28.74238192354003 ], [ -82.013849805123058, 28.742317073155309 ], [ -82.013743689246184, 28.742252223380888 ], [ -82.013667048913007, 28.742169687910572 ], [ -82.013608094864466, 28.742069467000775 ], [ -82.01359040829557, 28.741981035560702 ], [ -82.013596303506802, 28.741886709731926 ], [ -82.013619886104109, 28.741768802723104 ], [ -82.013625780773125, 28.741662686230271 ], [ -82.013619885530389, 28.741503511522009 ], [ -82.013584513592306, 28.74135023175204 ], [ -82.01350787327317, 28.741126207350231 ], [ -82.013389967041974, 28.740743006925339 ], [ -82.013331013004958, 28.740577936783144 ], [ -82.013266163743069, 28.7404423424524 ], [ -82.013189523740891, 28.740324434702849 ], [ -82.013089301930279, 28.740224212774919 ], [ -82.013000870778527, 28.740135781280664 ], [ -82.01293602170324, 28.740070932563455 ], [ -82.012906544995175, 28.739982501155172 ], [ -82.012918336312083, 28.739876385043402 ], [ -82.012971394632785, 28.739770268857821 ], [ -82.013183628715154, 28.739434234320289 ], [ -82.01323783035977, 28.739346320495429 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Byers Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011941409098043, 28.743060411351557 ], [ -82.011681829942347, 28.742445520673861 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Byers Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011681829942347, 28.742445520673861 ], [ -82.010937782828023, 28.740680440311206 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Byers Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010937782828023, 28.740680440311206 ], [ -82.010844061162018, 28.740493518287774 ], [ -82.010795685132933, 28.740339238045184 ], [ -82.010773458119516, 28.74017580450743 ], [ -82.010781855403522, 28.740017021106166 ], [ -82.010833877028588, 28.739873341202426 ], [ -82.010966963439103, 28.739631902928028 ], [ -82.011117320339096, 28.739417481487486 ], [ -82.011266372460952, 28.739204366537777 ], [ -82.011389273592258, 28.739030473853955 ], [ -82.011469028590767, 28.73889972904697 ], [ -82.01150955904636, 28.738833049557638 ], [ -82.011539676340149, 28.738755064758848 ], [ -82.011601872575838, 28.738563939545195 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gershaneck Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011681829942347, 28.742445520673861 ], [ -82.012311938873381, 28.742242678979647 ], [ -82.01234681782573, 28.742221567979865 ], [ -82.012370222640499, 28.742198622619895 ], [ -82.012383991067267, 28.742156400839473 ], [ -82.012378942778597, 28.742105459702216 ], [ -82.011762145419965, 28.740623595136412 ], [ -82.011711631484459, 28.74056279160455 ], [ -82.011647398728698, 28.740530050505303 ], [ -82.011564143615871, 28.740504792945011 ], [ -82.011484520497348, 28.740503213823612 ], [ -82.011377365961266, 28.740516640629103 ], [ -82.011233931457497, 28.740563099682845 ], [ -82.011058691715419, 28.740631698584888 ], [ -82.010937782828023, 28.740680440311206 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Almand Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012685920829867, 28.753068209617478 ], [ -82.012855518925818, 28.753091954563288 ], [ -82.013103130164396, 28.753102131323207 ], [ -82.013238807658979, 28.753098739812213 ], [ -82.013418580779899, 28.753098741314382 ], [ -82.013564434424623, 28.753098742153107 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Almand Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013564434424623, 28.753098742153107 ], [ -82.013693328152101, 28.753085176277487 ], [ -82.013852749371495, 28.753058040994684 ], [ -82.014022346387691, 28.753024123611389 ], [ -82.014188551311832, 28.752976638184407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Almand Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014188551311832, 28.752976638184407 ], [ -82.014306480182938, 28.752936219801136 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cunningham Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014686471819687, 28.755387671540117 ], [ -82.014677057650502, 28.754957683545882 ], [ -82.014648810756171, 28.75486352589818 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cunningham Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014648810756171, 28.75486352589818 ], [ -82.014400863022203, 28.754496309148582 ], [ -82.014363199214415, 28.75442412112136 ], [ -82.014347506247319, 28.754361348393797 ], [ -82.014344368104233, 28.754270330043248 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cunningham Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014344368104233, 28.754270330043248 ], [ -82.014347506798842, 28.7541416473927 ], [ -82.014341230339426, 28.753965885406945 ], [ -82.014331815366432, 28.753796402060505 ], [ -82.014316123525973, 28.753617501834555 ], [ -82.014306709067569, 28.753466849865127 ], [ -82.014303570657233, 28.753303643310975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cunningham Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014303570657233, 28.753303643310975 ], [ -82.01429415413125, 28.753237732581752 ], [ -82.014275322840064, 28.753165544451335 ], [ -82.014250215344575, 28.75309649610432 ], [ -82.014188551311832, 28.752976638184407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cunningham Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014188551311832, 28.752976638184407 ], [ -82.014096424135104, 28.75275752726337 ], [ -82.014065039019897, 28.752663368865239 ], [ -82.014058762259637, 28.752559795928793 ], [ -82.014055624043081, 28.752418558098945 ], [ -82.014033653778981, 28.752299291753832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cunningham Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014033653778981, 28.752299291753832 ], [ -82.014011453415549, 28.752181812016325 ], [ -82.013952710147322, 28.752083907102044 ], [ -82.013868791359158, 28.751980405692215 ], [ -82.013728926384928, 28.751829351038634 ], [ -82.013622628730886, 28.751711863849085 ], [ -82.013516332080513, 28.751625146546367 ], [ -82.013373669472074, 28.751521645782383 ], [ -82.01323380479694, 28.75141255113596 ], [ -82.013110723198324, 28.751337022891857 ], [ -82.013018411733142, 28.751300657829436 ], [ -82.01294008822461, 28.751267089548495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cunningham Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01294008822461, 28.751267089548495 ], [ -82.01249531448984, 28.751099249324959 ], [ -82.012389017256353, 28.751065680414218 ], [ -82.012305097811776, 28.751071274683316 ], [ -82.012226773825944, 28.751093652464764 ], [ -82.012162435753609, 28.751138408348268 ], [ -82.011893892003741, 28.751395758272796 ], [ -82.011770810032274, 28.751516041018203 ], [ -82.011664511282447, 28.751594364488511 ], [ -82.011583389488521, 28.751636324242185 ], [ -82.011474294013823, 28.751683876907201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cunningham Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011474294013823, 28.751683876907201 ], [ -82.011404362228248, 28.751695065703036 ], [ -82.011306455481588, 28.751709052004532 ], [ -82.011107846576877, 28.75170625282777 ], [ -82.010786155656433, 28.751703453400882 ], [ -82.010730209905532, 28.751720237004921 ], [ -82.01070503417732, 28.75174261453682 ], [ -82.010688249720104, 28.751778979202307 ], [ -82.010677060237711, 28.751829331206721 ], [ -82.010677059834478, 28.751888073965119 ], [ -82.010663070609425, 28.75242795123868 ], [ -82.010646288208733, 28.752486695204137 ], [ -82.010615057511984, 28.752537112707866 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gillard Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014354949817147, 28.755391878208322 ], [ -82.014686471819687, 28.755387671540117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gillard Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014686471819687, 28.755387671540117 ], [ -82.015946351846722, 28.755402167205499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gillard Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015946351846722, 28.755402167205499 ], [ -82.0171414438597, 28.755421274291681 ], [ -82.017183592086155, 28.755418639860313 ], [ -82.017217460391535, 28.755407726744593 ], [ -82.017253587148616, 28.755388159212803 ], [ -82.017586827005573, 28.755176059222237 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Catinazzo Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017977077063804, 28.755628930866781 ], [ -82.017586827005573, 28.755176059222237 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Catinazzo Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017586827005573, 28.755176059222237 ], [ -82.017109288022056, 28.754636060039207 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Catinazzo Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017109288022056, 28.754636060039207 ], [ -82.016868837324566, 28.75434511267321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bowling Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01595625821831, 28.754825771498936 ], [ -82.015946351846722, 28.755402167205499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bowling Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015013146212596, 28.754261971301602 ], [ -82.015441013444018, 28.75427022904152 ], [ -82.015530438863593, 28.754278484619462 ], [ -82.015622616148917, 28.754304623788808 ], [ -82.015707913620446, 28.754344522200505 ], [ -82.015771200231967, 28.754388547480985 ], [ -82.015844115943921, 28.754453209492063 ], [ -82.015890891273457, 28.754515119589417 ], [ -82.015923909856369, 28.754582532636118 ], [ -82.015950050490304, 28.754648570405244 ], [ -82.015958305209992, 28.754715983492808 ], [ -82.01595625821831, 28.754825771498936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bowling Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014344368104233, 28.754270330043248 ], [ -82.015013146212596, 28.754261971301602 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bowling Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013780449218757, 28.754224817029154 ], [ -82.013887759584321, 28.754249581707388 ], [ -82.01398819117037, 28.754266092558215 ], [ -82.014074865341257, 28.754275722694725 ], [ -82.01418767929826, 28.754275723370611 ], [ -82.014344368104233, 28.754270330043248 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bowling Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01324939988811, 28.753926271416915 ], [ -82.01334983168411, 28.754014322161499 ], [ -82.013437881067986, 28.75406797760068 ], [ -82.013549319212288, 28.754129887909055 ], [ -82.013663507928143, 28.754184919491326 ], [ -82.013780449218757, 28.754224817029154 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Casamasima Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014648810756171, 28.75486352589818 ], [ -82.014695260035111, 28.754843206365432 ], [ -82.014755853949396, 28.754830077745449 ], [ -82.014816447517063, 28.754821999374073 ], [ -82.01595625821831, 28.754825771498936 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Casamasima Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01595625821831, 28.754825771498936 ], [ -82.016689121943088, 28.754837300635394 ], [ -82.016793200938011, 28.754835133690172 ], [ -82.016856081756217, 28.754806945971975 ], [ -82.01692546728566, 28.754763580458725 ], [ -82.017109288022056, 28.754636060039207 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jelani Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015013146212596, 28.754261971301602 ], [ -82.014983609216017, 28.753452906022051 ], [ -82.01496497299523, 28.753402986289533 ], [ -82.014925702462534, 28.753359057386568 ], [ -82.01487644943208, 28.753320452282296 ], [ -82.014827327765119, 28.753298704261265 ], [ -82.014771950997982, 28.753277188760734 ], [ -82.014714044021773, 28.753269866064688 ], [ -82.014416346937736, 28.75328231028417 ], [ -82.014344250277375, 28.753289176905906 ], [ -82.014303570657233, 28.753303643310975 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hobkirk Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013341869567327, 28.754846024967868 ], [ -82.013183946893363, 28.754774510847565 ], [ -82.013124354209623, 28.754753652851118 ], [ -82.01305284091184, 28.754741734267686 ], [ -82.011574914428678, 28.754756622054355 ], [ -82.011506383167969, 28.754765560408607 ], [ -82.011464666948953, 28.754795357331059 ], [ -82.011434869585059, 28.754837072034476 ], [ -82.011431889717485, 28.754893685527115 ], [ -82.011431889031968, 28.755248267767406 ], [ -82.011446786669694, 28.755289982585165 ], [ -82.011473603821585, 28.75531977954968 ], [ -82.011521278812381, 28.755340637405975 ], [ -82.013148188580388, 28.755337668112173 ], [ -82.013201822284501, 28.755316810659473 ], [ -82.013231619810242, 28.755281055382838 ], [ -82.013255458192219, 28.755230401565122 ], [ -82.013255458438039, 28.755173787407259 ], [ -82.013255458545984, 28.755099295615938 ], [ -82.013270356926981, 28.755015864094084 ], [ -82.013297174093708, 28.754950311816 ], [ -82.013341869567327, 28.754846024967868 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hobkirk Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013341869567327, 28.754846024967868 ], [ -82.01368576394141, 28.75442650682789 ], [ -82.013733439161953, 28.754352014115334 ], [ -82.013780449218757, 28.754224817029154 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Middleton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011375146112059, 28.754148745770973 ], [ -82.010968795784848, 28.754254550071341 ], [ -82.010756053153813, 28.754275936282657 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Middleton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01324939988811, 28.753926271416915 ], [ -82.013187880962462, 28.753958617928177 ], [ -82.013090345864157, 28.754013235985322 ], [ -82.012987794645937, 28.754061166436518 ], [ -82.012875211010751, 28.754101851180266 ], [ -82.012761512832512, 28.754130276127132 ], [ -82.012618275781534, 28.754146437428073 ], [ -82.011797722144081, 28.754139989608991 ], [ -82.011375146112059, 28.754148745770973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Middleton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.013564434424623, 28.753098742153107 ], [ -82.0135637189845, 28.753190964593209 ], [ -82.013563718650275, 28.753261908488589 ], [ -82.013560565454952, 28.753331277230629 ], [ -82.013552681720427, 28.753400644610565 ], [ -82.013540070115383, 28.753466859730949 ], [ -82.013522726929736, 28.753533075291902 ], [ -82.013494349250919, 28.753602442775851 ], [ -82.0134454752815, 28.753685999312861 ], [ -82.01339660089441, 28.753758520476069 ], [ -82.013347727517129, 28.753823158966483 ], [ -82.013305161158243, 28.753876760602047 ], [ -82.01324939988811, 28.753926271416915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rao Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011375146112059, 28.754148745770973 ], [ -82.011354886773788, 28.753403587433215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Middleton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010144840842798, 28.754280434274008 ], [ -82.009616699112257, 28.754283770998892 ], [ -82.009541897762361, 28.754237738617302 ], [ -82.00951393226191, 28.754168813197012 ], [ -82.009513579062499, 28.754134028841037 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Middleton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009503239646492, 28.753427212694817 ], [ -82.009461868559981, 28.752769004548593 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Middleton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009488139278361, 28.752046476561297 ], [ -82.009532767319072, 28.751985296501527 ], [ -82.009559225114458, 28.751808032472891 ], [ -82.009580392496517, 28.751527585907063 ], [ -82.009722595745799, 28.750256480000463 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thurston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008331008341273, 28.752390492876611 ], [ -82.008992970191045, 28.752371512442888 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thurston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009469020334862, 28.752373668486896 ], [ -82.010009214620851, 28.752374986604586 ], [ -82.010086892324651, 28.752379502861544 ], [ -82.010193475993631, 28.752403891560064 ], [ -82.010287412558284, 28.752430988912611 ], [ -82.010387671344319, 28.752463506886517 ], [ -82.010488834830397, 28.752501443145452 ], [ -82.010615057511984, 28.752537112707866 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thurston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010615057511984, 28.752537112707866 ], [ -82.010702155511908, 28.752563703159961 ], [ -82.010768303963147, 28.75257744877695 ], [ -82.010874828225155, 28.752587758062557 ], [ -82.011511530915911, 28.752608472788307 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thurston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011511530915911, 28.752608472788307 ], [ -82.012265736636081, 28.752602154744128 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thurston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012265736636081, 28.752602154744128 ], [ -82.012314511254516, 28.752604864805246 ], [ -82.012381350452017, 28.752622026654752 ], [ -82.012451803916832, 28.752655446139734 ], [ -82.01252586953332, 28.752704221838108 ], [ -82.012571933874995, 28.752742157657373 ], [ -82.012608063895456, 28.752786416869021 ], [ -82.012637869902562, 28.752827966055243 ], [ -82.012664063707305, 28.75288848318927 ], [ -82.012683031552456, 28.752956225813438 ], [ -82.012685920829867, 28.753068209617478 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thurston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012685920829867, 28.753068209617478 ], [ -82.012669184827899, 28.753103349168097 ], [ -82.012645509571328, 28.753146260087949 ], [ -82.012607778055468, 28.753199527230915 ], [ -82.012574484864942, 28.753240958266506 ], [ -82.012528615982234, 28.753283867472692 ], [ -82.012469428875022, 28.753326776902512 ], [ -82.012409501516345, 28.753361549260422 ], [ -82.012335518376133, 28.753384482558477 ], [ -82.012280770101583, 28.753393360584553 ], [ -82.012220104137455, 28.75339853867624 ], [ -82.012119486071498, 28.753398538050536 ], [ -82.011354886773788, 28.753403587433215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thurston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010736920740541, 28.753409211100863 ], [ -82.010125708556899, 28.753415961184761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ragosta Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012265736636081, 28.752602154744128 ], [ -82.0122890366071, 28.752508966721898 ], [ -82.012311955191464, 28.752348541546191 ], [ -82.012337739459753, 28.752159470207502 ], [ -82.012357792336545, 28.75205634069459 ], [ -82.012386440077904, 28.751981856360171 ], [ -82.012426547060571, 28.751904509788748 ], [ -82.012472382723232, 28.75183575730032 ], [ -82.012561190869306, 28.751741220942904 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ragosta Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012561190869306, 28.751741220942904 ], [ -82.012781777722893, 28.751523502873631 ], [ -82.012824749789473, 28.751469073923278 ], [ -82.012867721471849, 28.75141177919436 ], [ -82.012893503437823, 28.751368808485374 ], [ -82.01294008822461, 28.751267089548495 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marbury Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012561190869306, 28.751741220942904 ], [ -82.012633921531915, 28.751779423333531 ], [ -82.012794151456717, 28.751904217149754 ], [ -82.012937431767426, 28.752010523773556 ], [ -82.013049899583777, 28.752098340898307 ], [ -82.013126932546868, 28.75217383366191 ], [ -82.013220913549631, 28.752258569993149 ], [ -82.013282538881285, 28.752334062265792 ], [ -82.013331839582094, 28.75239414855271 ], [ -82.013376519055555, 28.752426502483338 ], [ -82.013421197411986, 28.752449613046565 ], [ -82.013465877519693, 28.752461938179657 ], [ -82.013519801169622, 28.752471181918651 ], [ -82.013556776001977, 28.752472722326221 ], [ -82.013609158590455, 28.752465019726973 ], [ -82.013655379491112, 28.752451153950567 ], [ -82.01370005841197, 28.752429586112289 ], [ -82.013727790486726, 28.752408017162743 ], [ -82.013758603752606, 28.752380285077578 ], [ -82.013794038758718, 28.752351012286191 ], [ -82.01384333975723, 28.7523309851194 ], [ -82.013920372871794, 28.75230633449025 ], [ -82.014033653778981, 28.752299291753832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dean Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014033653778981, 28.752299291753832 ], [ -82.014398487137214, 28.752240080826819 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sapp Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011511530915911, 28.752608472788307 ], [ -82.01151735146675, 28.752497950923473 ], [ -82.011517353855538, 28.751920029306149 ], [ -82.011503539470567, 28.751834837963482 ], [ -82.011474294013823, 28.751683876907201 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thurston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004241073641708, 28.753973585711634 ], [ -82.004794202844522, 28.753598255035527 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thurston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004794202844522, 28.753598255035527 ], [ -82.005193915023526, 28.753320998267618 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thurston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005193915023526, 28.753320998267618 ], [ -82.005812996657326, 28.752892410941467 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thurston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005812996657326, 28.752892410941467 ], [ -82.00589157317026, 28.752830503577851 ], [ -82.006010627424772, 28.752754309130545 ], [ -82.006103489686041, 28.752697164441649 ], [ -82.006172541680641, 28.7526590676678 ], [ -82.006286832224703, 28.752618590547897 ], [ -82.006417792397286, 28.752566208359188 ], [ -82.006617215804098, 28.752499886846984 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lombardi Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006617215804098, 28.752499886846984 ], [ -82.006362529752224, 28.751901549036774 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lombardi Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006362529752224, 28.751901549036774 ], [ -82.006117761610597, 28.751350817555231 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lombardi Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005985476059365, 28.750964107645842 ], [ -82.005988896435525, 28.750897264628481 ], [ -82.005965682670237, 28.750822047287265 ], [ -82.00591368083478, 28.750744044652027 ], [ -82.005823605776527, 28.750633540955587 ], [ -82.00574596747839, 28.75052922305067 ], [ -82.005713534088272, 28.750460126422308 ], [ -82.005694913278901, 28.750394626841782 ], [ -82.005689556230763, 28.750292312169886 ], [ -82.005709008886242, 28.750224965991453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blackstock Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004794202844522, 28.753598255035527 ], [ -82.004366188986225, 28.753109658447269 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blackstock Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004366188986225, 28.753109658447269 ], [ -82.003925004921442, 28.752668473098879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warner Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004241073641708, 28.753973585711634 ], [ -82.003386363429897, 28.753025366530206 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Prieto Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003166686792639, 28.753945719229232 ], [ -82.003127490691966, 28.753707175709138 ], [ -82.002906866359581, 28.75342607533301 ], [ -82.00287534862548, 28.753370552520639 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kornegay Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004366188986225, 28.753109658447269 ], [ -82.005104795499335, 28.752560777691816 ], [ -82.00538142756362, 28.752373995110741 ], [ -82.005537475484658, 28.752272328283535 ], [ -82.005648602369561, 28.752199034474373 ], [ -82.00575263434537, 28.752144654333673 ], [ -82.005859031696914, 28.752095003078765 ], [ -82.005979615375722, 28.752047717086704 ], [ -82.006121477621306, 28.751995702014604 ], [ -82.006362529752224, 28.751901549036774 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mansell Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00287534862548, 28.753370552520639 ], [ -82.003386363429897, 28.753025366530206 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mansell Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003386363429897, 28.753025366530206 ], [ -82.003925004921442, 28.752668473098879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mansell Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003925004921442, 28.752668473098879 ], [ -82.004211472914136, 28.75244943479278 ], [ -82.00459316166112, 28.752179043237518 ], [ -82.004860976826677, 28.751970450198403 ], [ -82.005142136364739, 28.751780156134469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mansell Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005142136364739, 28.751780156134469 ], [ -82.005202139602943, 28.751737297696696 ], [ -82.005305002026944, 28.751682438803112 ], [ -82.005413008620963, 28.751631008470916 ], [ -82.00552444290139, 28.751574435619318 ], [ -82.005654735209333, 28.751514434103004 ], [ -82.00582960166561, 28.751445860615185 ], [ -82.005956464642452, 28.751406431804202 ], [ -82.006117761610597, 28.751350817555231 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mansell Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002207615547647, 28.752903112649939 ], [ -82.002572864300717, 28.753297180970765 ], [ -82.002720097131913, 28.753375743045126 ], [ -82.00287534862548, 28.753370552520639 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mansell Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001842094307207, 28.752449373874011 ], [ -82.001970815091738, 28.752600344382845 ], [ -82.002092597946643, 28.752737351443539 ], [ -82.002170405311503, 28.752845603719749 ], [ -82.002207615547647, 28.752903112649939 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shepler Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002207615547647, 28.752903112649939 ], [ -82.002373378781641, 28.752833765027532 ], [ -82.002545152255792, 28.752767050094274 ], [ -82.002655891843062, 28.752703364837419 ], [ -82.002769009739779, 28.752634449616625 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shepler Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002769009739779, 28.752634449616625 ], [ -82.003238991625324, 28.752311939987234 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shepler Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003238991625324, 28.752311939987234 ], [ -82.003720468999049, 28.75198451534655 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shepler Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003720468999049, 28.75198451534655 ], [ -82.004225199995062, 28.751645194942789 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Shepler Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004225199995062, 28.751645194942789 ], [ -82.004725231406027, 28.751263960060136 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Welborne Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002038079516424, 28.75175744084374 ], [ -82.002545434306541, 28.751483214548379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Welborne Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002545434306541, 28.751483214548379 ], [ -82.00309233896192, 28.751173860230377 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Welborne Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00309233896192, 28.751173860230377 ], [ -82.003230885390622, 28.751096985740954 ], [ -82.003464049478282, 28.75098800934424 ], [ -82.003660886235096, 28.750916203422687 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Welborne Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003660886235096, 28.750916203422687 ], [ -82.004006407246507, 28.750780194776009 ], [ -82.004053716067261, 28.75076667784176 ], [ -82.004098489997489, 28.750761609364208 ], [ -82.004140729952141, 28.750761610161089 ], [ -82.004204088860192, 28.75076161042935 ], [ -82.004239570300044, 28.750768369730213 ], [ -82.004272516879482, 28.750783575693621 ], [ -82.004324049899253, 28.750814832531859 ], [ -82.004357153546579, 28.750840260842736 ], [ -82.004725231406027, 28.751263960060136 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Welborne Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004725231406027, 28.751263960060136 ], [ -82.005091668458604, 28.751701637921499 ], [ -82.005142136364739, 28.751780156134469 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Szymanski Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002769009739779, 28.752634449616625 ], [ -82.002107992884632, 28.751872472361534 ], [ -82.002038079516424, 28.75175744084374 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hinson Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003238991625324, 28.752311939987234 ], [ -82.002545434306541, 28.751483214548379 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dunn Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003720468999049, 28.75198451534655 ], [ -82.00309233896192, 28.751173860230377 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Clair Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004225199995062, 28.751645194942789 ], [ -82.003715797415794, 28.751026026242155 ], [ -82.003660886235096, 28.750916203422687 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stampeder Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012402800619057, 28.748970451962048 ], [ -82.012855752187804, 28.747550586508442 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stampeder Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011939240291696, 28.750318035693148 ], [ -82.012402800619057, 28.748970451962048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Randy Mcdaniel Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006779954471554, 28.746416806729336 ], [ -82.007006888670176, 28.746498653575177 ], [ -82.00771107216741, 28.746743515707003 ], [ -82.007974152480216, 28.746829761530428 ], [ -82.008120483176924, 28.746862004606381 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Randy Mcdaniel Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00835485842893, 28.746888048248596 ], [ -82.008539631001995, 28.746879368409537 ], [ -82.008809967532315, 28.746844647716024 ], [ -82.009146030644644, 28.746762804096296 ], [ -82.009355604833786, 28.746707003235585 ], [ -82.009568899471873, 28.74669584332538 ], [ -82.009934722396338, 28.746747928494798 ], [ -82.010958483567919, 28.747023013149992 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Randy Mcdaniel Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012908298744648, 28.747380438090502 ], [ -82.01100837761625, 28.746868171754933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Randy Mcdaniel Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010958483567919, 28.747023013149992 ], [ -82.012855752187804, 28.747550586508442 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Randy Mcdaniel Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01100837761625, 28.746868171754933 ], [ -82.009735069531658, 28.746525953162035 ], [ -82.009184473453544, 28.746421782400692 ], [ -82.007366512785026, 28.746310164170954 ], [ -82.00679607542898, 28.746279157590752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alder Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01100837761625, 28.746868171754933 ], [ -82.011292731507893, 28.745884900792621 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alder Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010958483567919, 28.747023013149992 ], [ -82.01100837761625, 28.746868171754933 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pettus Pkwy", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011241420447874, 28.745677093461552 ], [ -82.0110254318719, 28.745420885313383 ], [ -82.010831094863065, 28.745097864523771 ], [ -82.010749683671122, 28.74478535002395 ], [ -82.010728674143152, 28.744380918651977 ], [ -82.010736552920932, 28.744013254818174 ], [ -82.010705039567839, 28.743834674735758 ], [ -82.010647263036986, 28.743727001089834 ], [ -82.010534337993505, 28.743608822906051 ], [ -82.010372327744548, 28.743511022532974 ], [ -82.010197218895712, 28.743454987796152 ], [ -82.010057129949502, 28.743384942798158 ], [ -82.009890924546724, 28.743262164018969 ], [ -82.009728101795062, 28.743012676978164 ], [ -82.009675577688355, 28.742757937407372 ], [ -82.009720223182754, 28.74241128265184 ], [ -82.00976224191146, 28.741872918611357 ], [ -82.00972810270062, 28.741649693260154 ], [ -82.00965982155077, 28.7414921231634 ], [ -82.009552148340774, 28.741331925284292 ], [ -82.009412728468931, 28.741185569157171 ], [ -82.009209602449999, 28.741094511199421 ], [ -82.008916613471754, 28.741016781104328 ], [ -82.008394004340559, 28.740980010747663 ], [ -82.007771601116957, 28.740940614113967 ], [ -82.007423486841546, 28.74091938977919 ], [ -82.007129303916344, 28.740842338925546 ], [ -82.006891155247061, 28.740751281798058 ], [ -82.006505782920499, 28.740570313901877 ], [ -82.006130240326499, 28.7403707232708 ], [ -82.00574944253917, 28.740162907100242 ], [ -82.005250470907313, 28.739876997601762 ], [ -82.004927449588777, 28.739611751544544 ], [ -82.004652042184588, 28.739346088321057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leanne Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012402800619057, 28.748970451962048 ], [ -82.014887922645812, 28.749601789094662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leanne Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015618988833964, 28.74981342874494 ], [ -82.015667408902473, 28.749849744642237 ], [ -82.015716393350445, 28.74988042996894 ], [ -82.015774505397559, 28.749908313464964 ], [ -82.01591800308546, 28.749957944268921 ], [ -82.016084157387823, 28.750026997466929 ], [ -82.016289153557551, 28.750132733277262 ], [ -82.016492992453138, 28.750254060978826 ], [ -82.016706773382069, 28.750412004210681 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Randy Mcdaniel Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008120483176924, 28.746862004606381 ], [ -82.008228597628772, 28.746872355644463 ], [ -82.00835485842893, 28.746888048248596 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01541768727428, 28.751847459283773 ], [ -82.01524001373231, 28.75177823522284 ], [ -82.014755453455322, 28.751424041755772 ], [ -82.014289352391785, 28.751117150569151 ], [ -82.013689419192985, 28.750811412826664 ], [ -82.012844898280065, 28.750509134787571 ], [ -82.012268037940814, 28.750366070450184 ], [ -82.011939240291696, 28.750318035693148 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011939240291696, 28.750318035693148 ], [ -82.010869631958343, 28.750223228276344 ], [ -82.009728452030998, 28.750148151706401 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Middleton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008167082892072, 28.747846931477014 ], [ -82.008231088988268, 28.748014627373092 ], [ -82.008301863486508, 28.748148312523387 ], [ -82.00873643866862, 28.748518042632899 ], [ -82.009074712440281, 28.748849414948264 ], [ -82.009327340088831, 28.749130730923895 ], [ -82.009508865222983, 28.749309328781955 ], [ -82.009593772215339, 28.749446937431557 ], [ -82.009637689678414, 28.749602111484009 ], [ -82.009643545657809, 28.749896358412471 ], [ -82.009620122290841, 28.75013936654485 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Middleton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009366690967923, 28.748957800178434 ], [ -82.008998773197746, 28.748621597540037 ], [ -82.008519604094673, 28.748204577371723 ], [ -82.008407365255465, 28.748016831991869 ], [ -82.008372673022578, 28.747806639679492 ], [ -82.008376753798601, 28.747557673311373 ], [ -82.00835485842893, 28.746888048248596 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stampeder Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012855752187804, 28.747550586508442 ], [ -82.012908298744648, 28.747380438090502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stampeder Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016862666187407, 28.750408758290682 ], [ -82.017001750876375, 28.750289860371755 ], [ -82.017177307469254, 28.750107386844697 ], [ -82.01735632458599, 28.749904158075317 ], [ -82.017483451572815, 28.7497234136925 ], [ -82.017629605035239, 28.749432837959038 ], [ -82.017691006370669, 28.749225284467595 ], [ -82.017672221420298, 28.749117221963214 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stampeder Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017672221420298, 28.749117221963214 ], [ -82.017587229108983, 28.749210581346084 ], [ -82.017481721947945, 28.749457051959318 ], [ -82.017377944036795, 28.749637796209569 ], [ -82.017251682150004, 28.749849674119677 ], [ -82.017088232051577, 28.750044255069884 ], [ -82.016874623291926, 28.750258725606226 ], [ -82.016781472198204, 28.750342719918528 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leanne Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016862666187407, 28.750408758290682 ], [ -82.016781472198204, 28.750342719918528 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leanne Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016706773382069, 28.750412004210681 ], [ -82.016800194634527, 28.75047727782702 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stampeder Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016800194634527, 28.75047727782702 ], [ -82.016862666187407, 28.750408758290682 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leanne Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016800194634527, 28.75047727782702 ], [ -82.017815735834333, 28.751215415535903 ], [ -82.017955629230812, 28.751261125660413 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stampeder Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016781472198204, 28.750342719918528 ], [ -82.016706773382069, 28.750412004210681 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stampeder Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016251570455083, 28.751028902620071 ], [ -82.016143378724138, 28.751315602307081 ], [ -82.015954167737505, 28.751602875799925 ], [ -82.015734960107551, 28.751797851425835 ], [ -82.015583822294047, 28.751857843258694 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009728452030998, 28.750148151706401 ], [ -82.009620122290841, 28.75013936654485 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0155181742157, 28.752334511957308 ], [ -82.01556421600597, 28.752328284265833 ], [ -82.01560841512098, 28.752315325985379 ], [ -82.01564951414025, 28.752296005766251 ], [ -82.015686343839661, 28.75227087324939 ], [ -82.015717856454998, 28.752240643429381 ], [ -82.015743155489972, 28.752206176313209 ], [ -82.015761521220327, 28.752168452453652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015440571554024, 28.752326301112046 ], [ -82.015479094872461, 28.752332447134339 ], [ -82.0155181742157, 28.752334511957308 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015208862731953, 28.752152038490333 ], [ -82.015249242167371, 28.752220107835686 ], [ -82.015288141591583, 28.752255667686423 ], [ -82.015346731386231, 28.752294523396102 ], [ -82.015440571554024, 28.752326301112046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01541768727428, 28.751847459283773 ], [ -82.015375580897583, 28.751866472271168 ], [ -82.015336636940916, 28.751890148148004 ], [ -82.015301516487554, 28.751918085011795 ], [ -82.015270815717514, 28.751949808628677 ], [ -82.015245055787133, 28.751984780483411 ], [ -82.01522467398226, 28.75202240692068 ], [ -82.015210016295029, 28.752062049222339 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015583822294047, 28.751857843258694 ], [ -82.015543039515023, 28.751849139327998 ], [ -82.015501412606525, 28.751844477404184 ], [ -82.015459455768024, 28.751843915074037 ], [ -82.01541768727428, 28.751847459283773 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015760339997328, 28.752037823907244 ], [ -82.01574515065694, 28.751999050490092 ], [ -82.015723469166744, 28.751962753319081 ], [ -82.015695796337482, 28.751929770795073 ], [ -82.015662771367488, 28.751900864755676 ], [ -82.015625157078176, 28.751876702878395 ], [ -82.015583822294047, 28.751857843258694 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015761521220327, 28.752168452453652 ], [ -82.01576550885342, 28.752124935867013 ], [ -82.015765114079528, 28.752081278995828 ], [ -82.015760339997328, 28.752037823907244 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015210016295029, 28.752062049222339 ], [ -82.015205471871155, 28.752107004344577 ], [ -82.015208862731953, 28.752152038490333 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Almand Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015208862731953, 28.752152038490333 ], [ -82.015185787755783, 28.752231644389166 ], [ -82.015161559811389, 28.752289330377462 ], [ -82.015103873740728, 28.752364320941275 ], [ -82.014956196340037, 28.752488920428036 ], [ -82.014841924210472, 28.752593400016291 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01187401828561, 28.750431788238856 ], [ -82.012280728367102, 28.750495285969173 ], [ -82.012949338601501, 28.750661419806079 ], [ -82.013706724383738, 28.75095908830496 ], [ -82.014165903468907, 28.751187526472183 ], [ -82.014563936610273, 28.751436731621737 ], [ -82.014983888818776, 28.751733239168477 ], [ -82.015136178963104, 28.751879761573779 ], [ -82.015210016295029, 28.752062049222339 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005678509841502, 28.74976700411894 ], [ -82.005643828214474, 28.749746792248374 ], [ -82.005605919392053, 28.749731739661819 ], [ -82.005565763294271, 28.749722235459078 ], [ -82.005524397930813, 28.749718525317672 ], [ -82.005482892569489, 28.749720705142362 ], [ -82.005442320096876, 28.749728718586088 ], [ -82.005403729285462, 28.749742358506502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005709008886242, 28.750224965991453 ], [ -82.005737061832235, 28.750194982412658 ], [ -82.005760714140067, 28.750162184166829 ], [ -82.005779606189179, 28.750127069939499 ], [ -82.005793450737897, 28.750090173629321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landstone Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005793450737897, 28.750090173629321 ], [ -82.005802418337652, 28.750051614776776 ], [ -82.005806011820027, 28.750012381978863 ], [ -82.005804178013861, 28.749973054655879 ], [ -82.005796944059057, 28.74993421375709 ], [ -82.005784416865978, 28.749896433050569 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005793450737897, 28.750090173629321 ], [ -82.005992435889269, 28.750046454326707 ], [ -82.006708868129479, 28.750067224774376 ], [ -82.008167528153066, 28.750160888886729 ], [ -82.009614265638163, 28.750244768613982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lombardi Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005267110733854, 28.749866586607087 ], [ -82.005248309559903, 28.74990820302671 ], [ -82.005236273745965, 28.749951722603718 ], [ -82.005231238253259, 28.749996295786708 ], [ -82.005233301229453, 28.750041052308099 ], [ -82.005242422561636, 28.750085118606055 ], [ -82.005258424208662, 28.750127634462142 ], [ -82.005280993806792, 28.750167769914626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005280993806792, 28.750167769914626 ], [ -82.005304897873458, 28.750199271671676 ], [ -82.005333711319423, 28.750227402854158 ], [ -82.005366830660734, 28.750251574264247 ], [ -82.005403562226462, 28.750271279639801 ], [ -82.005443136687433, 28.750286106258056 ], [ -82.005484725169765, 28.750295743580079 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Drive Randy Mcdaniel Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00679607542898, 28.746279157590752 ], [ -82.006498454873835, 28.746263034919149 ], [ -82.006111549745185, 28.746240711598059 ], [ -82.005863533080756, 28.746223347618418 ], [ -82.005667601014551, 28.746224586348365 ], [ -82.005453066522634, 28.746265507774037 ], [ -82.005329057862212, 28.746280388494057 ], [ -82.005174669918659, 28.74628684417539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landstone Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004739667611801, 28.746293976573615 ], [ -82.004715576086795, 28.746332567762373 ], [ -82.004698581682192, 28.746373989476499 ], [ -82.004689097271438, 28.74641723540979 ], [ -82.004687353280076, 28.746461254936971 ], [ -82.004693392086679, 28.746504978637624 ], [ -82.004707066992481, 28.746547344276898 ], [ -82.004728045784333, 28.746587322611795 ], [ -82.004755818804838, 28.746623942396049 ], [ -82.004789711333402, 28.746656313976146 ], [ -82.004828899977767, 28.746683650905148 ], [ -82.004872432677587, 28.746705289049171 ], [ -82.004919251834238, 28.74672070272247 ], [ -82.00496822000477, 28.746729517458892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landstone Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00496822000477, 28.746729517458892 ], [ -82.005012142118389, 28.746725768765703 ], [ -82.005054726639969, 28.746715574691315 ], [ -82.005094764714684, 28.746699224616936 ], [ -82.005131119775584, 28.746677182675178 ], [ -82.005162759807803, 28.74665007457445 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landstone Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005162759807803, 28.74665007457445 ], [ -82.005191694377132, 28.746616723374576 ], [ -82.005214765047086, 28.746579992520374 ], [ -82.00523147275257, 28.746540676584367 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landstone Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00523147275257, 28.746540676584367 ], [ -82.005241123875976, 28.746503194828936 ], [ -82.00524477670541, 28.746464895154926 ], [ -82.005242360492915, 28.746426519418449 ], [ -82.005233922046543, 28.746388810948112 ], [ -82.005219624823098, 28.74635250014699 ], [ -82.005199745761615, 28.746318290344931 ], [ -82.005174669918659, 28.74628684417539 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landstone Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005174669918659, 28.74628684417539 ], [ -82.00515583438856, 28.746261579434513 ], [ -82.005132345167681, 28.746239549312723 ], [ -82.005104903542303, 28.746221411531472 ], [ -82.005074328798585, 28.746207707603897 ], [ -82.005041533762395, 28.746198846667891 ], [ -82.005007497546728, 28.74619509327124 ], [ -82.004973236319998, 28.746196559473507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landstone Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004973236319998, 28.746196559473507 ], [ -82.004938857437864, 28.746192681949307 ], [ -82.004904219882206, 28.746193762198356 ], [ -82.004870238086838, 28.746199771702024 ], [ -82.004837809173821, 28.746210551808943 ], [ -82.004807789269549, 28.746225817923452 ], [ -82.004780970903326, 28.746245167018763 ], [ -82.004758062084676, 28.746268088276778 ], [ -82.004739667611801, 28.746293976573615 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landstone Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00496822000477, 28.746729517458892 ], [ -82.005006517304054, 28.746768463254742 ], [ -82.00503523482719, 28.746817102083714 ], [ -82.005104309343537, 28.746980329223113 ], [ -82.005303886159084, 28.747617599954985 ], [ -82.005434004817758, 28.748336864923694 ], [ -82.005453870480068, 28.749589927515274 ], [ -82.005403729285462, 28.749742358506502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005784416865978, 28.749896433050569 ], [ -82.005766126102273, 28.749859380506162 ], [ -82.005742032297348, 28.749825002133676 ], [ -82.005712626934042, 28.74979399920035 ], [ -82.005678509841502, 28.74976700411894 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005403729285462, 28.749742358506502 ], [ -82.005369432697876, 28.749760408378144 ], [ -82.005338114113712, 28.749782261375696 ], [ -82.005310313093233, 28.749807541014494 ], [ -82.00528650859691, 28.749835811775256 ], [ -82.005267110733854, 28.749866586607087 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003016996686185, 28.740162709648502 ], [ -82.002976363410312, 28.740180919630575 ], [ -82.002939567068637, 28.740204634124037 ], [ -82.00290755907811, 28.740233239961832 ], [ -82.002881167048997, 28.740265997504743 ], [ -82.002861073385816, 28.740302059765362 ], [ -82.002847797642659, 28.740340494307734 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003099415987975, 28.740671746040341 ], [ -82.003138816501107, 28.740668174416978 ], [ -82.003177121651674, 28.740659293575806 ], [ -82.003213416111308, 28.740645315730806 ], [ -82.003246832599359, 28.740626574892353 ], [ -82.00327657260749, 28.74060351888571 ], [ -82.003301925480699, 28.740576698649726 ], [ -82.003322285398909, 28.740546755071609 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landstone Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003322285398909, 28.740546755071609 ], [ -82.003340223966916, 28.740511508620575 ], [ -82.003352668666537, 28.740474468442276 ], [ -82.003359397156089, 28.740436296327822 ], [ -82.003360289225114, 28.740397674291732 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landstone Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003360289225114, 28.740397674291732 ], [ -82.003354937526382, 28.740354874303943 ], [ -82.003342045717076, 28.740313341292019 ], [ -82.00332193203711, 28.740274100488534 ], [ -82.003295092995103, 28.74023812054234 ], [ -82.003262191111489, 28.740206289607976 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003360289225114, 28.740397674291732 ], [ -82.00342040919476, 28.740317409695759 ], [ -82.003519002082783, 28.740229382542907 ], [ -82.003680975196801, 28.740119053999571 ], [ -82.003831211741499, 28.740023983808115 ], [ -82.003926988417561, 28.739959173201626 ], [ -82.004032587581193, 28.73987620303593 ], [ -82.004137244688764, 28.739793232809326 ], [ -82.004283387026035, 28.739667835110833 ], [ -82.004488929325234, 28.739494351758708 ], [ -82.004652042184588, 28.739346088321057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004568775638106, 28.739280089241031 ], [ -82.004332154462446, 28.739472340944594 ], [ -82.004034265023023, 28.739727973781452 ], [ -82.003846234005465, 28.739858960221223 ], [ -82.003656327456554, 28.74000520382512 ], [ -82.003528391651173, 28.740086189020577 ], [ -82.003357029390116, 28.74017069575903 ], [ -82.003262191111489, 28.740206289607976 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Landstone Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003099415987975, 28.740671746040341 ], [ -82.003196229862795, 28.740710602988088 ], [ -82.0032725215803, 28.74077867836651 ], [ -82.00348144362593, 28.741114364129267 ], [ -82.003644589368619, 28.741418357284292 ], [ -82.003826516291923, 28.741932445893106 ], [ -82.003935671063431, 28.74247705064413 ], [ -82.003950929370802, 28.743250528087454 ], [ -82.003982620285157, 28.743830343973773 ], [ -82.004095296413752, 28.744471192843296 ], [ -82.004273701547277, 28.74508387392116 ], [ -82.004473233400432, 28.745565097440391 ], [ -82.00472910346339, 28.74613435146189 ], [ -82.004739667611801, 28.746293976573615 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stampeder Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01187401828561, 28.750431788238856 ], [ -82.011939240291696, 28.750318035693148 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Middleton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009722595745799, 28.750256480000463 ], [ -82.009728452030998, 28.750148151706401 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Middleton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009620122290841, 28.75013936654485 ], [ -82.009614265638163, 28.750244768613982 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009614265638163, 28.750244768613982 ], [ -82.009722595745799, 28.750256480000463 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009722595745799, 28.750256480000463 ], [ -82.01187401828561, 28.750431788238856 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993385350884893, 28.754627156114225 ], [ -81.993385266156238, 28.754676924999767 ], [ -81.993392564262592, 28.754726276648675 ], [ -81.993407119989186, 28.754774364257734 ], [ -81.993428683590096, 28.754820362711701 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993929762884719, 28.754569172960924 ], [ -81.993905588236458, 28.754532667262261 ], [ -81.993874899360307, 28.754500184482573 ], [ -81.993838540346616, 28.754472618047252 ], [ -81.993797511238014, 28.754450726158996 ], [ -81.993752940523891, 28.754435110944176 ], [ -81.993706054101864, 28.754426201891924 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993779756612739, 28.754925198354361 ], [ -81.99381882177012, 28.754903365621495 ], [ -81.993853807417864, 28.754876696249678 ], [ -81.993883948960274, 28.754845773088586 ], [ -81.993908587669637, 28.754811271952445 ], [ -81.993927185082185, 28.754773946850076 ], [ -81.993939334765741, 28.754734613506177 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993929762884719, 28.754569172960924 ], [ -81.993990316433027, 28.75442283769069 ], [ -81.994251031666678, 28.754061206266471 ], [ -81.994787600552087, 28.753416997297553 ], [ -81.995298937186035, 28.752947717784448 ], [ -81.996052485907086, 28.752480120304241 ], [ -81.996910320925195, 28.75216894891005 ], [ -81.997948131319916, 28.752044481988378 ], [ -81.998780733594558, 28.752031026550039 ], [ -81.999419902662297, 28.751995703746861 ], [ -82.000202044009271, 28.751879647694345 ], [ -82.001316354107459, 28.751592902659436 ], [ -82.001802745572533, 28.751398797012893 ], [ -82.002844695256584, 28.750851058498451 ], [ -82.003710383811011, 28.750465078063872 ], [ -82.004486824442822, 28.750235275084449 ], [ -82.005048232291983, 28.750127504056472 ], [ -82.005280993806792, 28.750167769914626 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018975927746013, 28.755504999193949 ], [ -82.018991849980338, 28.755469652424932 ], [ -82.019001350544755, 28.755432555640208 ], [ -82.019004198968787, 28.755394608782794 ], [ -82.01900032615886, 28.755356732416956 ], [ -82.018989826073721, 28.755319845395874 ], [ -82.018972953444305, 28.755284842571015 ], [ -82.018950117593661, 28.755252573083848 ], [ -82.018921872506496, 28.7552238197664 ], [ -82.018888903389623, 28.755199280150663 ], [ -82.018852010049216, 28.755179549547229 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.02053196406581, 28.755858875954612 ], [ -82.019887685731305, 28.755802206855289 ], [ -82.01953003435564, 28.755726645116379 ], [ -82.019147196098643, 28.755603228684151 ], [ -82.018975927746013, 28.755504999193949 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Almand Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014889636509309, 28.75265878340748 ], [ -82.015046912224918, 28.752547456098291 ], [ -82.015253668745544, 28.752395483826351 ], [ -82.015440571554024, 28.752326301112046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pettus Pkwy", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004652042184588, 28.739346088321057 ], [ -82.004568775638106, 28.739280089241031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alder Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011292731507893, 28.745884900792621 ], [ -82.011316247277747, 28.745886519722255 ], [ -82.011339726036525, 28.745884527049235 ], [ -82.011362459020674, 28.745878982927263 ], [ -82.011383759979765, 28.745870054719138 ], [ -82.011402985893028, 28.745858011944541 ], [ -82.011419556380531, 28.745843218143786 ], [ -82.011432971223329, 28.745826119903384 ], [ -82.011442825463874, 28.745807233374691 ], [ -82.011448821630438, 28.745787128692566 ], [ -82.011450778716807, 28.745766412764365 ], [ -82.011448637646083, 28.745745710949027 ], [ -82.011442463053868, 28.745725648179086 ], [ -82.011432441336751, 28.745706830095664 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alder Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011241420447874, 28.745677093461552 ], [ -82.011226605709169, 28.745693331012593 ], [ -82.011214958511019, 28.74571146276848 ], [ -82.011206784189554, 28.745731013400352 ], [ -82.011202297038878, 28.745751470382903 ], [ -82.011201614693178, 28.745772297430243 ], [ -82.01120475504257, 28.745792948554843 ], [ -82.011211635763985, 28.745812882380719 ], [ -82.011222076479029, 28.74583157633581 ], [ -82.01123580348245, 28.745848540351446 ], [ -82.011252456917234, 28.745863329709678 ], [ -82.011271600208431, 28.745875556701861 ], [ -82.011292731507893, 28.745884900792621 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alder Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011432441336751, 28.745706830095664 ], [ -82.01142364261618, 28.745691775142451 ], [ -82.011412121627927, 28.745678221972014 ], [ -82.011398200216092, 28.745666549197221 ], [ -82.011382267281007, 28.745657082901243 ], [ -82.011364767915339, 28.745650087528407 ], [ -82.01134619097013, 28.74564575849686 ], [ -82.011327055398823, 28.745644216739592 ], [ -82.011307895760069, 28.745645505326113 ], [ -82.01128924728485, 28.745649588259322 ], [ -82.01127163092481, 28.745656351481081 ], [ -82.011255538799276, 28.745665606058441 ], [ -82.011241420447874, 28.745677093461552 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018502219440066, 28.755568862885191 ], [ -82.018527221035598, 28.755600930385693 ], [ -82.018558094768039, 28.755628742903429 ], [ -82.018593925236289, 28.755651475798047 ], [ -82.018633650070072, 28.755668455039427 ], [ -82.018676091429185, 28.755679177192931 ], [ -82.018719990927082, 28.755683324346524 ], [ -82.018764046942422, 28.755680773536994 ], [ -82.018806953213172, 28.755671600395939 ], [ -82.018847437567828, 28.755656076907204 ], [ -82.018884299646032, 28.755634663342413 ], [ -82.018916446489797, 28.75560799461368 ], [ -82.018942924949755, 28.755576861448173 ], [ -82.018962949946186, 28.755542186942773 ], [ -82.018975927746013, 28.755504999193949 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018852010049216, 28.755179549547229 ], [ -82.018814877795478, 28.755162560216526 ], [ -82.018774977716831, 28.755151466686431 ], [ -82.018733504741519, 28.75514660118602 ], [ -82.018691700902011, 28.755148109427306 ], [ -82.01865081813942, 28.755155946241473 ], [ -82.018612080810811, 28.755169876931685 ], [ -82.018576649023032, 28.755189484301493 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018576649023032, 28.755189484301493 ], [ -82.018539393240076, 28.755219136831922 ], [ -82.01850803224734, 28.755253682052324 ], [ -82.018483382028961, 28.755292221134649 ], [ -82.018466083964412, 28.755333751333932 ], [ -82.018456588139827, 28.755377192078438 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018456588139827, 28.755377192078438 ], [ -82.018453798892935, 28.755416999855552 ], [ -82.018457080200889, 28.755456778507202 ], [ -82.018466373037541, 28.755495812388489 ], [ -82.018481510224859, 28.755533399252695 ], [ -82.018502219440066, 28.755568862885191 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025133506080877, 28.755894725801017 ], [ -82.023099913124028, 28.755878384289002 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dodson Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022070413877856, 28.753324844567342 ], [ -82.022236303343206, 28.753252719617883 ], [ -82.022486825262661, 28.753069989210324 ], [ -82.022648928077516, 28.752869574523377 ], [ -82.022766821728922, 28.752607265945834 ], [ -82.022805137238862, 28.752321379965579 ], [ -82.022784245104688, 28.749898280074039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jansen Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023099913124028, 28.755878384289002 ], [ -82.023104716537844, 28.755570519787614 ], [ -82.023102627422176, 28.755332210696825 ], [ -82.023094266292489, 28.755177520452502 ], [ -82.023071272624961, 28.755072998790315 ], [ -82.023042006219868, 28.754972657688739 ], [ -82.023004379404142, 28.754872317947662 ], [ -82.022952118783337, 28.754763615192189 ], [ -82.022889405599472, 28.754648642102534 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jansen Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022889405599472, 28.754648642102534 ], [ -82.022275847622652, 28.753692345448567 ], [ -82.022070413877856, 28.753324844567342 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alford Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022889405599472, 28.754648642102534 ], [ -82.023031739909953, 28.754576551601584 ], [ -82.023570524325933, 28.754298584323209 ], [ -82.023687204138099, 28.754199065152893 ], [ -82.023793588369898, 28.754082386434437 ], [ -82.023862223376867, 28.753948551055956 ], [ -82.02390683682728, 28.75381471341721 ], [ -82.023923996862933, 28.753677444414731 ], [ -82.023917132974802, 28.753547038926751 ], [ -82.023879384698631, 28.753413200859644 ], [ -82.023824477080311, 28.753286226921045 ], [ -82.023752411672461, 28.753186706191585 ], [ -82.023687208759355, 28.753073459099081 ], [ -82.023646028535865, 28.752929326984148 ], [ -82.023632302396024, 28.752737149899154 ], [ -82.023628872973816, 28.752040510048136 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972178019562548, 28.781267076071199 ], [ -81.972775969759411, 28.781602218942808 ], [ -81.973516084533458, 28.78201861902502 ], [ -81.974187969196265, 28.782393376362798 ], [ -81.974560652059367, 28.782615447513027 ], [ -81.974886095102022, 28.782809759024232 ], [ -81.975216784033321, 28.783022571774204 ], [ -81.975510729728398, 28.783212251596105 ], [ -81.975794179174841, 28.783406553246028 ], [ -81.976124865457365, 28.783642489177094 ], [ -81.976428919042661, 28.783870279842059 ], [ -81.976792088720444, 28.784169322285027 ], [ -81.977206152075055, 28.784512178851205 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979128352505711, 28.78612107246613 ], [ -81.979460104609146, 28.786372724041264 ], [ -81.979817054084975, 28.786639180146746 ], [ -81.980144612564487, 28.786872329244826 ], [ -81.980535169767919, 28.787120286450726 ], [ -81.980871132338791, 28.787342336527004 ], [ -81.981232298636201, 28.787556987606617 ], [ -81.981622865215044, 28.787775342135475 ], [ -81.982378813841137, 28.788167645215566 ], [ -81.982462746782545, 28.788207988753239 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9814207006077, 28.787096817378249 ], [ -81.98221511898592, 28.787542321759393 ], [ -81.982499082247102, 28.787699686604761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965320698035626, 28.822747672969513 ], [ -81.965155525125255, 28.822724227960826 ], [ -81.96450731292154, 28.822630332801932 ], [ -81.963909894379313, 28.822542839231026 ], [ -81.963181867008586, 28.822434005594076 ], [ -81.962833911365223, 28.822384132162906 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Catherine Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.962689022162408, 28.788420150497917 ], [ -81.962457028613002, 28.788165631671802 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.965057440781706, 28.787545580511757 ], [ -81.965002337986533, 28.78747423556381 ], [ -81.964923835311296, 28.787362521282567 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04073161674502, 28.834292262983947 ], [ -82.040243917978515, 28.833976638861351 ], [ -82.0398506041643, 28.833694223012607 ], [ -82.039473019658018, 28.833411801484726 ], [ -82.039183536060889, 28.833181982688703 ], [ -82.038547933723905, 28.832675270365538 ], [ -82.038259240382814, 28.832446141400684 ], [ -82.037999649718387, 28.832231545361026 ], [ -82.037759737963398, 28.832061955029079 ], [ -82.03744981655511, 28.831841832451438 ], [ -82.037275980950255, 28.831722774132956 ], [ -82.037146196399561, 28.831639712098955 ], [ -82.036878763441791, 28.831473589758975 ], [ -82.036575938012888, 28.831293626768126 ], [ -82.036280982651107, 28.831124046579763 ], [ -82.035954565807145, 28.830940627141082 ], [ -82.035604563547864, 28.830771061623299 ], [ -82.035352877924552, 28.830646480726518 ], [ -82.035026475512623, 28.830494220221791 ], [ -82.034696144632193, 28.830348882417095 ], [ -82.034287170409414, 28.830186252599646 ], [ -82.033917522849805, 28.830044385706582 ], [ -82.033225421200669, 28.829777951900141 ], [ -82.032847908964527, 28.829625697487856 ], [ -82.032419273752154, 28.829438828857693 ], [ -82.032159730799307, 28.829314243809932 ], [ -82.031856935297512, 28.829186206085581 ], [ -82.03165244577653, 28.829078918127916 ], [ -82.031188411948833, 28.828840120420292 ], [ -82.030787296247411, 28.828618617890118 ], [ -82.030201351821503, 28.828282896248606 ], [ -82.029796299893277, 28.828037153799361 ], [ -82.029430575648391, 28.82780871525749 ], [ -82.028946869929101, 28.827486814962651 ], [ -82.028569340514991, 28.827216828833361 ], [ -82.028333386028379, 28.827047220742291 ], [ -82.02803844042532, 28.826818762986939 ], [ -82.027656972511608, 28.826503762501474 ], [ -82.027310899037076, 28.826209528707267 ], [ -82.026874369524265, 28.825804516174852 ], [ -82.026339522059942, 28.825295647103157 ], [ -82.025533331920343, 28.824537535192544 ], [ -82.024538389385569, 28.823589021260698 ], [ -82.022346851395525, 28.821512368862681 ], [ -82.021556902200615, 28.820772983657577 ], [ -82.020884997830251, 28.820125514292421 ], [ -82.016933410331589, 28.816386254941513 ], [ -82.015514850312783, 28.815045322836223 ], [ -82.014650769724554, 28.814224269671382 ], [ -82.014349709774251, 28.813939162088133 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018516511717664, 28.814351621721062 ], [ -82.018582511909102, 28.814160189693002 ], [ -82.018593291100856, 28.814002105299888 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049785377240852, 28.792113144388562 ], [ -82.049844664723921, 28.792049720969111 ], [ -82.049952520945951, 28.791980930948579 ], [ -82.050065567290346, 28.791916750669145 ], [ -82.050325184190925, 28.791817082813875 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reader Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049546187430735, 28.79301920155909 ], [ -82.049532465085775, 28.792781457963152 ], [ -82.049535365568971, 28.79265816221 ], [ -82.049550825755261, 28.792549454122522 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043692208162312, 28.799652515820814 ], [ -82.043530445392747, 28.799651421179341 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.043531242135856, 28.79977797467296 ], [ -82.043533337008554, 28.799778025441672 ], [ -82.043692470577184, 28.799777075373648 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999049050465388, 28.799591821180989 ], [ -81.997108863884122, 28.799585715538708 ], [ -81.995749789429809, 28.799586441647868 ], [ -81.995094970220379, 28.799581835070526 ], [ -81.994853712414439, 28.799581381018701 ], [ -81.994729656841457, 28.799583383759622 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994731920062378, 28.799709423378218 ], [ -81.995108839884765, 28.799712472397687 ], [ -81.995744579067122, 28.799710202668074 ], [ -81.996296188733311, 28.79971174707169 ], [ -81.996988303175272, 28.799724752835665 ], [ -81.997428879934589, 28.799737736719795 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997428879934589, 28.799737736719795 ], [ -81.997558994695822, 28.799741572283612 ], [ -81.998348247413929, 28.799758391477994 ], [ -81.998868633243546, 28.799756870628912 ], [ -81.999148775973083, 28.799756872955111 ], [ -81.999214377366542, 28.799756655958543 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981555698192608, 28.805345127381976 ], [ -81.981550775851019, 28.805150671305583 ], [ -81.981557466089882, 28.805112600986188 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981404442521679, 28.805258793149328 ], [ -81.981390777540952, 28.805372202814791 ], [ -81.981301360465025, 28.805677382869558 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981177568420605, 28.804730671791813 ], [ -81.981237406918353, 28.805064671789992 ], [ -81.981246739550841, 28.805480057718103 ], [ -81.981301360464869, 28.805677383771879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978447024247728, 28.797162561246477 ], [ -81.978410223531341, 28.797068135514966 ], [ -81.978373907512847, 28.796997602191681 ], [ -81.978341490991085, 28.796942976360128 ], [ -81.978299772544958, 28.796867942309703 ], [ -81.978271558376136, 28.796811515220892 ], [ -81.978242145543959, 28.796751187232989 ], [ -81.978214532404479, 28.796691459568272 ], [ -81.978187519566006, 28.796631731994953 ], [ -81.978162307042638, 28.796564799740231 ], [ -81.978139196135231, 28.796499668838923 ], [ -81.978119087559492, 28.796434839794966 ], [ -81.978069564119977, 28.796257756413706 ], [ -81.978009547364096, 28.796008987038682 ], [ -81.977988316494489, 28.795885536317705 ], [ -81.977982813243656, 28.795849365297265 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982373249566436, 28.789459923175983 ], [ -81.982315157937464, 28.78945717339549 ], [ -81.982223851832231, 28.789431420113296 ], [ -81.982130696048429, 28.789381369015089 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982132269747865, 28.789697197117199 ], [ -81.982214486576581, 28.789616371554978 ], [ -81.982270674349451, 28.789588278235453 ], [ -81.982364074559356, 28.7895882779193 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Floridas Tpke", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.986284699901773, 28.789677706600429 ], [ -81.986381299705613, 28.789711017261155 ], [ -81.986498898504692, 28.789759129724761 ], [ -81.986763494972465, 28.789859055840356 ], [ -81.987028091472695, 28.789962680922947 ], [ -81.987376686358218, 28.790114415790423 ], [ -81.98770848083899, 28.790266147309108 ], [ -81.988069677387998, 28.790436380776768 ], [ -81.988405672997914, 28.790610310576117 ], [ -81.988804668320512, 28.790817545621639 ], [ -81.989086064787045, 28.790976669382076 ], [ -81.989304462111974, 28.791102486730793 ], [ -81.989594259493117, 28.791280110235991 ], [ -81.98990925584927, 28.791476235160257 ], [ -81.990224253330382, 28.791683458704249 ], [ -81.990602250852106, 28.791935086109437 ], [ -81.990934047761684, 28.792186710213194 ], [ -81.991282646031678, 28.792449433952832 ], [ -81.991593444401076, 28.792704754526984 ], [ -81.991891643454579, 28.792956373221685 ], [ -81.992194043217339, 28.793226492529868 ], [ -81.992836644230081, 28.793833329974532 ], [ -81.993697660562276, 28.794643675393431 ], [ -81.995066908655957, 28.795946137839213 ], [ -81.99636478691987, 28.797167182034922 ], [ -81.998889227200621, 28.79955817166914 ], [ -81.999023597495309, 28.799685247319669 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011079663574804, 28.799673558356222 ], [ -82.011063879711315, 28.799610417539942 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010529799765735, 28.799599458811432 ], [ -82.010521655047583, 28.799674788047902 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 507", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026986173948799, 28.814126623575881 ], [ -82.026986938695757, 28.814358761673525 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Key Deer Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029505059277227, 28.796454859155247 ], [ -82.029298073747839, 28.796494989130192 ], [ -82.029237792360135, 28.796503604485515 ], [ -82.029165818781323, 28.796511125058352 ], [ -82.029128608071289, 28.796513658442098 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fenney Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028887777383815, 28.794253776399191 ], [ -82.028997499234109, 28.794228945349218 ], [ -82.029106619121094, 28.794198052598638 ], [ -82.029201818920129, 28.794165330992492 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Morse Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.977889707943675, 28.79609158493404 ], [ -81.977944434414823, 28.796322655524591 ], [ -81.978014877636198, 28.796563789448676 ], [ -81.978083966458669, 28.79673989793044 ], [ -81.978232982549244, 28.797018964227579 ], [ -81.978358968351699, 28.797319703800607 ], [ -81.978430765565363, 28.797613670809927 ], [ -81.978455149199675, 28.797948277548986 ], [ -81.978434828311435, 28.798053943223028 ], [ -81.978369266332763, 28.798134854781797 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Okahumpka Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016852645854328, 28.82428660367178 ], [ -82.016874991148626, 28.82429596426369 ], [ -82.016901647512498, 28.82430850768208 ], [ -82.016934574588149, 28.824327846534569 ], [ -82.016964365569152, 28.824348753066641 ], [ -82.01699363408953, 28.824370181189561 ], [ -82.017020288987268, 28.824392656299679 ], [ -82.017043286174882, 28.82441617491542 ], [ -82.017072396355985, 28.824446821931094 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994731424582994, 28.799817311063137 ], [ -81.994731920062378, 28.799709423378218 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994588878656984, 28.799707822295385 ], [ -81.994590888611683, 28.799816750448901 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004417704828697, 28.787181406691058 ], [ -82.00441449522971, 28.787111850986175 ], [ -82.004309416190139, 28.786621698614862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037109017085967, 28.935595216811254 ], [ -82.037111122374228, 28.935066206802151 ], [ -82.037112913076157, 28.934850005883224 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 203", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041139420494119, 28.933586224589583 ], [ -82.041102220080731, 28.933576420653083 ], [ -82.041053862099645, 28.933571525837763 ], [ -82.041003644161876, 28.933568268325537 ], [ -82.040886471997908, 28.933566667644676 ], [ -82.040733302921581, 28.933566712573892 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bahama Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039751166897972, 28.933932247292645 ], [ -82.039745992025075, 28.93454081895992 ], [ -82.039730475958393, 28.934575298322766 ], [ -82.039697720421756, 28.934602881957854 ], [ -82.039659791831411, 28.934618398006435 ], [ -82.039620139999968, 28.934620122081132 ], [ -82.03956669521996, 28.934623569916994 ], [ -82.038751242519041, 28.934627014297931 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bahama Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038751242519041, 28.934627014297931 ], [ -82.037708219230737, 28.934633906706001 ], [ -82.037677187536076, 28.934630458585694 ], [ -82.037658224007842, 28.934623562171932 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bahama Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037658224007842, 28.934623562171932 ], [ -82.037618571715115, 28.934687349941392 ], [ -82.03755823100083, 28.934759757590989 ], [ -82.037516854032845, 28.934782169314524 ], [ -82.037435826116962, 28.934814925874381 ], [ -82.037351349987446, 28.934833889060304 ], [ -82.03728928602996, 28.934845957060823 ], [ -82.037241013665493, 28.934849404365629 ], [ -82.037112913076157, 28.934850005883224 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Coquina Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037596940914142, 28.933922537285046 ], [ -82.037592164286977, 28.934552742186693 ], [ -82.037608077599913, 28.934586162378874 ], [ -82.037630359045195, 28.934606851251825 ], [ -82.037658224007842, 28.934623562171932 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Little Torch Ky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038751242519041, 28.934627014297931 ], [ -82.038749132091681, 28.935267297925986 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Little Torch Ky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038749132091681, 28.935267297925986 ], [ -82.03875072219337, 28.9355219265762 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dry Tortugas Isle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040738330046523, 28.933933416862242 ], [ -82.039751166897972, 28.933932247292645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dry Tortugas Isle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.039751166897972, 28.933932247292645 ], [ -82.037596940914142, 28.933922537285046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boca Ciega Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040733302921581, 28.933566712573892 ], [ -82.040738330046523, 28.933933416862242 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Boca Ciega Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040738330046523, 28.933933416862242 ], [ -82.040748802115303, 28.935274827790643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barrier Reef Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.041052032762209, 28.935276005467429 ], [ -82.040748802115303, 28.935274827790643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barrier Reef Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040748802115303, 28.935274827790643 ], [ -82.038749132091681, 28.935267297925986 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993706054101864, 28.754426201891924 ], [ -81.993676637232738, 28.754419677800684 ], [ -81.993646417010453, 28.75441736266708 ], [ -81.99361616385093, 28.754419315511722 ], [ -81.993586649009714, 28.754425486549955 ], [ -81.993558624920382, 28.754435718461099 ], [ -81.993532806012738, 28.75444975039894 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993532806012738, 28.75444975039894 ], [ -81.993499797023617, 28.754465108758975 ], [ -81.993469784106324, 28.7544846665423 ], [ -81.993443449787577, 28.75450797898462 ], [ -81.99342139294005, 28.754534515936452 ], [ -81.993404115163429, 28.754563673919183 ], [ -81.99339200937716, 28.754594789848646 ], [ -81.993385350884893, 28.754627156114225 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993428683590096, 28.754820362711701 ], [ -81.993452034190483, 28.754852074516336 ], [ -81.99348047846307, 28.75488037231586 ], [ -81.993513383391573, 28.754904626349898 ], [ -81.993550016687294, 28.754924296850639 ], [ -81.993589563086203, 28.754938946055464 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993589563086203, 28.754938946055464 ], [ -81.993627643821938, 28.754946804253123 ], [ -81.993666647440349, 28.754949355516469 ], [ -81.993705627461793, 28.754946537935389 ], [ -81.993743637979293, 28.754938419882571 ], [ -81.993779756612739, 28.754925198354361 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993939334765741, 28.754734613506177 ], [ -81.993946279386321, 28.754693196393042 ], [ -81.993946989093942, 28.754651334282752 ], [ -81.993941451593059, 28.754609752864535 ], [ -81.993929762884719, 28.754569172960924 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002963205316831, 28.740633414784295 ], [ -82.002994363113871, 28.740649777071486 ], [ -82.003027975331023, 28.740661786970847 ], [ -82.00306326490356, 28.740669166831008 ], [ -82.003099415987975, 28.740671746040341 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002842142211932, 28.740455611023961 ], [ -82.002852580903465, 28.740497177179375 ], [ -82.002870459806971, 28.740536725773197 ], [ -82.002895314586979, 28.740573229665685 ], [ -82.002926499731601, 28.740605740791796 ], [ -82.002963205316831, 28.740633414784295 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002384775918799, 28.740891591595485 ], [ -82.002509645256893, 28.740810907100368 ], [ -82.002688303390585, 28.740709092075747 ], [ -82.002809330721419, 28.740657223956507 ], [ -82.002890015044741, 28.740641856219344 ], [ -82.002963205316831, 28.740633414784295 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002842142211932, 28.740455611023961 ], [ -82.002801647108072, 28.740503538516744 ], [ -82.002730566786568, 28.740584223467376 ], [ -82.002632592762083, 28.74064953854948 ], [ -82.00247890782822, 28.740732142743294 ], [ -82.002325007914706, 28.740826581638636 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001952537501424, 28.741120193910863 ], [ -82.002077406037657, 28.741072168513373 ], [ -82.002259906388858, 28.740972275071957 ], [ -82.002384775918799, 28.740891591595485 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002325007914706, 28.740826581638636 ], [ -82.002309854812935, 28.740835879339564 ], [ -82.002158090440247, 28.740939616464455 ], [ -82.002035142545566, 28.741029904948068 ], [ -82.001952537501424, 28.741120193910863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002325007914706, 28.740826581638636 ], [ -82.002384775918799, 28.740891591595485 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003262191111489, 28.740206289607976 ], [ -82.003232847466435, 28.740185564698166 ], [ -82.0032001534545, 28.740169191913544 ], [ -82.00316493242525, 28.740157583577471 ], [ -82.003128071366277, 28.740151032027843 ], [ -82.003090498566053, 28.740149702255255 ], [ -82.003053160236831, 28.74015362774794 ], [ -82.003016996686185, 28.740162709648502 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002847797642659, 28.740340494307734 ], [ -82.002840202270022, 28.740378538332344 ], [ -82.002838306310224, 28.740417130693274 ], [ -82.002842142211932, 28.740455611023961 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Almand Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014306480182938, 28.752936219801136 ], [ -82.014405440078207, 28.752936220769996 ], [ -82.0145609489321, 28.752874371944316 ], [ -82.014672277632059, 28.752828426305339 ], [ -82.01477123788878, 28.752771879601578 ], [ -82.014889636509309, 28.75265878340748 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Almand Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014841924210472, 28.752593400016291 ], [ -82.01475710139556, 28.752649948030285 ], [ -82.014645771632317, 28.752724166089475 ], [ -82.014543276783826, 28.752780713961194 ], [ -82.014435481544311, 28.752833727001875 ], [ -82.014357726930399, 28.752870836308055 ], [ -82.014306480182938, 28.752936219801136 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Almand Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014841924210472, 28.752593400016291 ], [ -82.014889636509309, 28.75265878340748 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carla Fink Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001981567811768, 28.744958255192785 ], [ -82.002421444812228, 28.744968587951963 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alder Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009366690967923, 28.748957800178434 ], [ -82.009437731119121, 28.748925180361635 ], [ -82.009614563416932, 28.748855088395452 ], [ -82.010080673056621, 28.748663755243197 ], [ -82.010220450242855, 28.748603373081785 ], [ -82.010421729561244, 28.748460242581093 ], [ -82.010570452774999, 28.748327176445336 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Middleton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009728452030998, 28.750148151706401 ], [ -82.009779689631358, 28.749777782578146 ], [ -82.00977529822616, 28.749580154426265 ], [ -82.009718204384683, 28.749416196268122 ], [ -82.0096450099295, 28.749294690685936 ], [ -82.009476659426682, 28.749121947344673 ], [ -82.009399178326319, 28.748987487253242 ], [ -82.009366690967923, 28.748957800178434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Middleton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008120483176924, 28.746862004606381 ], [ -82.008132791618806, 28.747757089058513 ], [ -82.008167082892072, 28.747846931477014 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Peggy Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007286190017751, 28.748140239843739 ], [ -82.008167082892072, 28.747846931477014 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sophie Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98748335605741, 28.78626167294599 ], [ -81.987499217510262, 28.784935782974525 ], [ -81.987512555775652, 28.784846955870417 ], [ -81.987579342289948, 28.784677640967654 ], [ -81.987693161362515, 28.784516790465588 ], [ -81.987831437606616, 28.784365348721032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sophie Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987831437606616, 28.784365348721032 ], [ -81.987864360430876, 28.784323019625472 ], [ -81.987899164740298, 28.784280690691908 ], [ -81.987942434974286, 28.784241183148303 ], [ -81.98800357754304, 28.784205438945065 ], [ -81.988798427520635, 28.783904435324818 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sophie Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988798427520635, 28.783904435324818 ], [ -81.988910363876414, 28.78385175941521 ], [ -81.989314844237711, 28.783705960296757 ], [ -81.989418315579982, 28.783666453471611 ], [ -81.989471932331071, 28.783650462378585 ], [ -81.989554710048338, 28.783631650206619 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sophie Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989554710048338, 28.783631650206619 ], [ -81.989600803003626, 28.783613777147291 ], [ -81.989669471440038, 28.783590260940816 ], [ -81.989727790585221, 28.783581796316611 ], [ -81.98979363636181, 28.783577092188352 ], [ -81.989856660490361, 28.783571448503928 ], [ -81.989927208097512, 28.783560161379935 ], [ -81.98998740982249, 28.783540407926704 ], [ -81.990056077378057, 28.783514069985262 ], [ -81.99013876570875, 28.783485458310704 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Taupier Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987831437606616, 28.784365348721032 ], [ -81.988105143907433, 28.784550026613715 ], [ -81.988132050417605, 28.784559636850588 ], [ -81.988162802240851, 28.784566363625391 ], [ -81.988197396191083, 28.784571167900271 ], [ -81.988546227734929, 28.784578856196415 ], [ -81.988594277387278, 28.78458077862744 ], [ -81.988651934517208, 28.784590388675326 ], [ -81.988706709677899, 28.784598075622704 ], [ -81.988759563064562, 28.78460864618344 ], [ -81.988826830611885, 28.784618256062604 ], [ -81.98889986471427, 28.784626904520312 ], [ -81.989088214583475, 28.784632670491973 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Taupier Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989088214583475, 28.784632670491973 ], [ -81.989993448663, 28.784636515805662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Taupier Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989993448663, 28.784636515805662 ], [ -81.99044606497705, 28.784635554645881 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rosen Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989088214583475, 28.784632670491973 ], [ -81.989087057207655, 28.784565992059974 ], [ -81.989076438572098, 28.784503239726678 ], [ -81.989058096318374, 28.784439522185121 ], [ -81.989030099073716, 28.784371942843755 ], [ -81.988877561796386, 28.784087145307915 ], [ -81.988798427520635, 28.783904435324818 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Risch Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989993448663, 28.784636515805662 ], [ -81.989991053062411, 28.784583978361841 ], [ -81.989980973954829, 28.784528543911058 ], [ -81.98995241749185, 28.784454632275882 ], [ -81.989554710048338, 28.783631650206619 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 586", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070475873626421, 28.793875120540491 ], [ -82.070326785599462, 28.793856123400072 ], [ -82.070109351837672, 28.793884721151791 ], [ -82.069908912633394, 28.793899678630488 ], [ -82.069708474540917, 28.793908651677803 ], [ -82.069442221484692, 28.793929590971313 ], [ -82.069252752008651, 28.793940573532215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 589", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066423681455348, 28.793465875526913 ], [ -82.066396745982274, 28.795518113424752 ], [ -82.066396745437658, 28.795637778028077 ], [ -82.066384779395321, 28.795724533006307 ], [ -82.066360845804866, 28.795796331657709 ], [ -82.066330929862872, 28.795853171974478 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 589", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066330929862872, 28.795853171974478 ], [ -82.066303984711297, 28.795897343287184 ], [ -82.066277685571521, 28.795934471737077 ], [ -82.066245197350156, 28.795971599572017 ], [ -82.066205748173076, 28.796009500442668 ], [ -82.066167845887421, 28.796042761767737 ], [ -82.066125302772349, 28.796076795901445 ], [ -82.065927283536965, 28.79621989353523 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 589", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065927283536965, 28.79621989353523 ], [ -82.065536925816502, 28.796496714695738 ], [ -82.065509611501398, 28.796529490728499 ], [ -82.065490492074048, 28.796569095134849 ], [ -82.065475468992972, 28.796608699381022 ], [ -82.065467274646124, 28.796660594353142 ], [ -82.065460446279516, 28.796708393077221 ], [ -82.065460444067455, 28.797213690353139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 589", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065460444067455, 28.797213690353139 ], [ -82.06545729935894, 28.797727613390546 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 589", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06545729935894, 28.797727613390546 ], [ -82.065464004615208, 28.798153533736784 ], [ -82.065476581469866, 28.798181202511163 ], [ -82.065502572269565, 28.798200485991881 ], [ -82.065535271642773, 28.798221447257834 ], [ -82.065567969902446, 28.798232347742424 ], [ -82.06559983072529, 28.798240731171738 ], [ -82.065651813550517, 28.79824324712386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 589", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065651813550517, 28.79824324712386 ], [ -82.066247122803262, 28.798233635398685 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 592", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06906428658877, 28.795794605924648 ], [ -82.068744700106819, 28.795829049534095 ], [ -82.068482524914316, 28.79585775379616 ], [ -82.068306465132565, 28.795880717331389 ], [ -82.068195471062168, 28.795892197843401 ], [ -82.068107441816139, 28.795896026043611 ], [ -82.066700878201374, 28.795903671191613 ], [ -82.066568834343471, 28.795899843894311 ], [ -82.066473149359055, 28.79588453311408 ], [ -82.066330929862872, 28.795853171974478 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 592", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066330929862872, 28.795853171974478 ], [ -82.066261559064287, 28.795836022895184 ], [ -82.066192398666018, 28.795804788590051 ], [ -82.065993838871165, 28.795699930383666 ], [ -82.065674804926928, 28.795530372690951 ], [ -82.06550078631885, 28.795445592838242 ], [ -82.065326768036513, 28.795367507913959 ], [ -82.065157211049993, 28.795302808240336 ], [ -82.064965344320825, 28.795244799672481 ], [ -82.064775708128522, 28.795195716346722 ], [ -82.064615076069316, 28.795166712636956 ], [ -82.064432133111083, 28.795144401772827 ], [ -82.064246958877263, 28.795126552739422 ], [ -82.064072939970515, 28.795117627505398 ], [ -82.063852069785582, 28.795119856655123 ], [ -82.06372267203993, 28.795126549000898 ], [ -82.063613351436857, 28.795142165677138 ], [ -82.063508494767618, 28.795164474445006 ], [ -82.063428178141592, 28.795173398586897 ], [ -82.063345630984713, 28.795171166626041 ], [ -82.063240773563663, 28.795166704491269 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 592", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063240773563663, 28.795166704491269 ], [ -82.062678558145308, 28.795171162629227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 590", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062673699534798, 28.794656410258774 ], [ -82.062977459689421, 28.794658134925655 ], [ -82.063015931383504, 28.794663302795364 ], [ -82.063046939840433, 28.794671916414835 ], [ -82.06307392783016, 28.794685697617844 ], [ -82.063222074775439, 28.794811450326353 ], [ -82.063238152726058, 28.794832122984122 ], [ -82.063250211222112, 28.794854517305456 ], [ -82.063256391979053, 28.794876674329025 ], [ -82.06325415966559, 28.795079695571321 ], [ -82.063240773563663, 28.795166704491269 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 599", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063202866162854, 28.793251410183284 ], [ -82.062934882646275, 28.793659612573254 ], [ -82.062906837049326, 28.793689214095544 ], [ -82.062853864364357, 28.793723490216856 ], [ -82.062766613890929, 28.793773346934618 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 599", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062766613890929, 28.793773346934618 ], [ -82.062729220579101, 28.793798275121798 ], [ -82.062702734001277, 28.793826320300219 ], [ -82.062688711455635, 28.793868387107931 ], [ -82.062680921114691, 28.793938497628652 ], [ -82.062673699534798, 28.794656410258774 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 599", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062673699534798, 28.794656410258774 ], [ -82.062678558145308, 28.795171162629227 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 599", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062678558145308, 28.795171162629227 ], [ -82.062677614751635, 28.795469802170214 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 588", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062766613890929, 28.793773346934618 ], [ -82.062733616236898, 28.7937556740441 ], [ -82.062696201793869, 28.793739828547309 ], [ -82.062653505535351, 28.793730144642392 ], [ -82.062598045797174, 28.793723101316413 ], [ -82.06231678159385, 28.793721779705272 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 593", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065927283536965, 28.79621989353523 ], [ -82.065967269089739, 28.796248314210928 ], [ -82.066008062161202, 28.796287068661766 ], [ -82.066038657904329, 28.796333981316263 ], [ -82.066057014811832, 28.796380893562226 ], [ -82.066063133623445, 28.796433924882841 ], [ -82.066067212433822, 28.796499194341084 ], [ -82.066065166423513, 28.797722994364847 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 596", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06638131633909, 28.797727076635876 ], [ -82.066065166423513, 28.797722994364847 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 596", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066065166423513, 28.797722994364847 ], [ -82.06545729935894, 28.797727613390546 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 596", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06545729935894, 28.797727613390546 ], [ -82.063615512532621, 28.797722980460836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 594", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065460444067455, 28.797213690353139 ], [ -82.063613475413817, 28.797215102634155 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 597", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063615516603164, 28.796935669268652 ], [ -82.063613475413817, 28.797215102634155 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 597", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063613475413817, 28.797215102634155 ], [ -82.063615512532621, 28.797722980460836 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 597", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063615512532621, 28.797722980460836 ], [ -82.063611431216557, 28.79800649409373 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 595", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065651813550517, 28.79824324712386 ], [ -82.065654351470727, 28.798739969298577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 595", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065654351470727, 28.798739969298577 ], [ -82.065652733236163, 28.798992416071783 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 598", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066243397366989, 28.798741590759846 ], [ -82.065654351470727, 28.798739969298577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 589", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065090287953225, 28.789304633888708 ], [ -82.065095654792543, 28.789460264042205 ], [ -82.065102808225177, 28.789621262102113 ], [ -82.06511711871596, 28.789767946973246 ], [ -82.06514216260922, 28.789912844660002 ], [ -82.065167205688041, 28.7900148094005 ], [ -82.065194037758332, 28.790106041175203 ], [ -82.065224448561267, 28.790193694469174 ], [ -82.065260225399456, 28.790275982750543 ], [ -82.065304945818752, 28.790369002466264 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 589", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065304945818752, 28.790369002466264 ], [ -82.065485619769333, 28.790762551737476 ], [ -82.065503508038901, 28.790807272607918 ], [ -82.065526762330521, 28.790889560491724 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 589", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065526762330521, 28.790889560491724 ], [ -82.06564124761509, 28.79129384084213 ], [ -82.065651980494238, 28.791342140085696 ], [ -82.065653769645991, 28.791377917720833 ], [ -82.065660924762327, 28.791428005259494 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 589", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065660924762327, 28.791428005259494 ], [ -82.065673447319938, 28.791501348225431 ], [ -82.06569670144529, 28.791615835090255 ], [ -82.06573068849039, 28.79173568825578 ], [ -82.065768254337641, 28.791851963824993 ], [ -82.065798664833821, 28.791934250912711 ], [ -82.065825497881889, 28.79200401652119 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 589", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065825497881889, 28.79200401652119 ], [ -82.06585233078323, 28.792070204455037 ], [ -82.065888107363833, 28.792145336304955 ], [ -82.06592925106203, 28.792234778937306 ], [ -82.0659793383128, 28.792329587803167 ], [ -82.066034791519485, 28.79241545394682 ], [ -82.066066991282099, 28.792487007999384 ], [ -82.066129600483109, 28.792592550977076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 589", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066129600483109, 28.792592550977076 ], [ -82.066170744677947, 28.79264621684651 ], [ -82.066231565682045, 28.792733870493894 ], [ -82.066287019505992, 28.792823313293219 ], [ -82.066324585696705, 28.79290917805638 ], [ -82.06635857373179, 28.79298967759151 ], [ -82.066378250679605, 28.793043342984539 ], [ -82.066387195128073, 28.79308269840303 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 589", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.066387195128073, 28.79308269840303 ], [ -82.066397927510209, 28.793130996671007 ], [ -82.066408660003319, 28.793181084222823 ], [ -82.066412238283718, 28.793241905545855 ], [ -82.066423681455348, 28.793465875526913 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 565", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06946692794061, 28.790950149714117 ], [ -82.06953968856007, 28.791251977715536 ], [ -82.069607059142911, 28.791569973334791 ], [ -82.069674430565897, 28.791904139242739 ], [ -82.069687903996481, 28.791998460099432 ], [ -82.069698683051499, 28.792087391914269 ], [ -82.069712156911208, 28.792208661223782 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 579", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068822846449265, 28.790998654577479 ], [ -82.068898302932354, 28.791284312131282 ], [ -82.068946809592973, 28.791502597639038 ], [ -82.069000705941733, 28.791753221981807 ], [ -82.069033044597603, 28.791912220151207 ], [ -82.069051907588062, 28.79205235415958 ], [ -82.069068077870398, 28.792133200387642 ], [ -82.069073466244689, 28.792224827476407 ], [ -82.069081550712568, 28.792305673276115 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 579", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069081550712568, 28.792305673276115 ], [ -82.069256929264185, 28.793806427388983 ], [ -82.069257921236954, 28.793897635295657 ], [ -82.069252752008651, 28.793940573532215 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 581", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068222001335258, 28.791052826582934 ], [ -82.068225433017588, 28.791121456559512 ], [ -82.068242589549726, 28.791196948987711 ], [ -82.068290629947555, 28.791341072109102 ], [ -82.068328375783025, 28.791474899558796 ], [ -82.068355827209004, 28.791643042572186 ], [ -82.068397004031908, 28.791845499961951 ], [ -82.068424456135872, 28.791982759507384 ], [ -82.0684484753465, 28.792109725380246 ], [ -82.068462200151487, 28.792212669631986 ], [ -82.068469063308527, 28.792298456241337 ], [ -82.068479357899378, 28.792384243836789 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 581", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068479357899378, 28.792384243836789 ], [ -82.06849994668913, 28.792507777210943 ], [ -82.068630338112527, 28.79367105024161 ], [ -82.068616817651602, 28.793772723241279 ], [ -82.068590134909911, 28.793857442085567 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 583", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06764834559128, 28.790900996255441 ], [ -82.067621687962287, 28.790962640997417 ], [ -82.067608359324765, 28.791020952315701 ], [ -82.067601694457579, 28.791109253203061 ], [ -82.067608358581765, 28.791192555002251 ], [ -82.067620020760756, 28.79125586540016 ], [ -82.067638347057709, 28.791320841777001 ], [ -82.067663337615926, 28.791392482038404 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 583", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067663337615926, 28.791392482038404 ], [ -82.067686662397094, 28.791452460731257 ], [ -82.067708320630075, 28.791510772771701 ], [ -82.067736642786258, 28.791639057636466 ], [ -82.067761633588475, 28.791752350419586 ], [ -82.067779960241054, 28.791823990348583 ], [ -82.067801618266955, 28.791982265946199 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 583", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067801618266955, 28.791982265946199 ], [ -82.067819944054932, 28.792057238106992 ], [ -82.067841602295871, 28.79214553937252 ], [ -82.067863261039975, 28.792287153755385 ], [ -82.067873256400006, 28.792403778069392 ], [ -82.067886584461604, 28.792542060731151 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 583", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067886584461604, 28.792542060731151 ], [ -82.067909097697452, 28.792663090224288 ], [ -82.067924134792676, 28.792830660180162 ], [ -82.067995026685466, 28.793500940915425 ], [ -82.067985125478927, 28.793580209449981 ], [ -82.067962776033539, 28.793663135831046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 587", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067281376692662, 28.792546362639122 ], [ -82.067338701229303, 28.793070301714643 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 585", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067079563150401, 28.790093128425394 ], [ -82.067079561140417, 28.79034633448364 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 585", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067079561140417, 28.79034633448364 ], [ -82.0670795592942, 28.790862611553283 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 591", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064740665075064, 28.79015698816379 ], [ -82.064740663570092, 28.790401841526645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 591", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064740663570092, 28.790401841526645 ], [ -82.064735630342895, 28.79092341306767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 591", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064735630342895, 28.79092341306767 ], [ -82.064735627385019, 28.791443308397728 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 591", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064735627385019, 28.791443308397728 ], [ -82.064732272420358, 28.791733443144494 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 587", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067338701229303, 28.793070301714643 ], [ -82.067370455718475, 28.79336053733892 ], [ -82.067360897342468, 28.793428792941754 ], [ -82.067345532785438, 28.793493294176429 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 584", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067338701229303, 28.793070301714643 ], [ -82.066387195128073, 28.79308269840303 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 582", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070093922959344, 28.792128477726063 ], [ -82.069712156911208, 28.792208661223782 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 582", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069712156911208, 28.792208661223782 ], [ -82.069650982214213, 28.792226938980477 ], [ -82.06957816726019, 28.792245142331623 ], [ -82.069494194267847, 28.792259821473348 ], [ -82.06941609368927, 28.792266868529556 ], [ -82.069326837405555, 28.792273914884813 ], [ -82.069229946324256, 28.792276849603191 ], [ -82.069158892161511, 28.792287419176848 ], [ -82.069081550712568, 28.792305673276115 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 582", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069081550712568, 28.792305673276115 ], [ -82.069040860961906, 28.792302099028333 ], [ -82.068966283289939, 28.792305034012152 ], [ -82.068879962599297, 28.79231208039522 ], [ -82.068783658767359, 28.7923203011451 ], [ -82.068694400712758, 28.792332632828725 ], [ -82.068576370519565, 28.792353771927505 ], [ -82.068479357899378, 28.792384243836789 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 582", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068479357899378, 28.792384243836789 ], [ -82.068430151619566, 28.792403683537472 ], [ -82.068325626133671, 28.792441264807078 ], [ -82.068238129924325, 28.792477671706667 ], [ -82.068183518745428, 28.792499398670696 ], [ -82.068135954054739, 28.792515253460863 ], [ -82.068085452705787, 28.792526409552739 ], [ -82.068029666838598, 28.792535805138087 ], [ -82.067960375149653, 28.792539915355398 ], [ -82.067886584461604, 28.792542060731151 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 582", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067886584461604, 28.792542060731151 ], [ -82.067281376692662, 28.792546362639122 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 582", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067281376692662, 28.792546362639122 ], [ -82.06629037899701, 28.792542294625122 ], [ -82.066242551096764, 28.792544002424503 ], [ -82.066196431179648, 28.792562791956495 ], [ -82.066129600483109, 28.792592550977076 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 580", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067801618266955, 28.791982265946199 ], [ -82.065880322238996, 28.791983757565724 ], [ -82.065825497881889, 28.79200401652119 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 578", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067663337615926, 28.791392482038404 ], [ -82.06759667560128, 28.791399117240786 ], [ -82.067518934453858, 28.791405213788877 ], [ -82.067430524387959, 28.791406738124646 ], [ -82.065849805087922, 28.791403680120752 ], [ -82.065735481043077, 28.79141130011724 ], [ -82.065660924762327, 28.791428005259494 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 578", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065660924762327, 28.791428005259494 ], [ -82.06559067096515, 28.791437212787269 ], [ -82.065482443553336, 28.791443309248649 ], [ -82.064735627385019, 28.791443308397728 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 576", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069825232144993, 28.790902204986864 ], [ -82.069549329928648, 28.790928117542592 ], [ -82.06946692794061, 28.790950149714117 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 576", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06946692794061, 28.790950149714117 ], [ -82.068822846449265, 28.790998654577479 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 576", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068822846449265, 28.790998654577479 ], [ -82.068222001335258, 28.791052826582934 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 576", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068222001335258, 28.791052826582934 ], [ -82.068174267343792, 28.791054514264864 ], [ -82.068114537801975, 28.791054514267973 ], [ -82.068054000548543, 28.791048863463875 ], [ -82.06800153722952, 28.791037563749246 ], [ -82.067933735556522, 28.791014156288888 ], [ -82.067833649649131, 28.79097379773609 ], [ -82.067740826007309, 28.790928597310302 ], [ -82.06764834559128, 28.790900996255441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 576", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06764834559128, 28.790900996255441 ], [ -82.067606032672899, 28.790885817735312 ], [ -82.067549531205415, 28.790872095327906 ], [ -82.067488995111958, 28.790866445171766 ], [ -82.067378415291856, 28.79086402287335 ], [ -82.0670795592942, 28.790862611553283 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 576", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0670795592942, 28.790862611553283 ], [ -82.06573407826329, 28.790857561535137 ], [ -82.065659926590513, 28.790862124062812 ], [ -82.065590339934275, 28.790871250061709 ], [ -82.065526762330521, 28.790889560491724 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 576", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065526762330521, 28.790889560491724 ], [ -82.065473980899213, 28.79090319084186 ], [ -82.065418082502148, 28.790913457036751 ], [ -82.065354199678097, 28.790920300943856 ], [ -82.0652732039526, 28.790923723299979 ], [ -82.064735630342895, 28.79092341306767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 574", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067079561140417, 28.79034633448364 ], [ -82.065484250431936, 28.790346495158236 ], [ -82.065379299488939, 28.790348775890525 ], [ -82.065304945818752, 28.790369002466264 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 574", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.065304945818752, 28.790369002466264 ], [ -82.065252672957925, 28.790386421298145 ], [ -82.065204760080519, 28.790393264731897 ], [ -82.065137453754872, 28.790402390312394 ], [ -82.065055319034897, 28.790403531130941 ], [ -82.064740663570092, 28.790401841526645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 586", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067345532785438, 28.793493294176429 ], [ -82.067300225217977, 28.793486821649829 ], [ -82.06717457722263, 28.79347186266784 ], [ -82.067039955514005, 28.793471861989719 ], [ -82.066423681455348, 28.793465875526913 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 586", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067962776033539, 28.793663135831046 ], [ -82.067763925152462, 28.793597513766311 ], [ -82.067653235845739, 28.79356460533613 ], [ -82.067554512401912, 28.793537680449035 ], [ -82.067425873111119, 28.793504772581912 ], [ -82.067345532785438, 28.793493294176429 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 586", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.068590134909911, 28.793857442085567 ], [ -82.068472937904573, 28.793821888408079 ], [ -82.068063087277494, 28.79369623775877 ], [ -82.067962776033539, 28.793663135831046 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 586", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069252752008651, 28.793940573532215 ], [ -82.069235799129274, 28.793941555718472 ], [ -82.069092201547335, 28.793947539453235 ], [ -82.068978519410308, 28.793947538240108 ], [ -82.068852872967156, 28.793923604621771 ], [ -82.068739190535709, 28.793902662348984 ], [ -82.068590134909911, 28.793857442085567 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01632458226868, 28.954602390066633 ], [ -82.016330880957867, 28.955285115422654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 101", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016332193284228, 28.95371564944281 ], [ -82.016323106182213, 28.954442351685554 ], [ -82.01632458226868, 28.954602390066633 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holy Rosary Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017055872944397, 28.954677844553494 ], [ -82.017121219661178, 28.954743191271142 ], [ -82.017183250221493, 28.954824309521381 ], [ -82.017221422592158, 28.954924513274687 ], [ -82.01725005212046, 28.955024717302589 ], [ -82.017264366116535, 28.955282382895728 ], [ -82.017283453089149, 28.955377815881167 ], [ -82.01731685300301, 28.955482791511447 ], [ -82.017378884186797, 28.955582994929561 ], [ -82.017545889802335, 28.955773859016094 ], [ -82.017669951544377, 28.955859749487075 ], [ -82.017803556032135, 28.955955181247564 ], [ -82.017865585779163, 28.955993354609522 ], [ -82.017956247091902, 28.956021984301007 ], [ -82.018056450655919, 28.956045842270893 ], [ -82.018194826915007, 28.956079244095744 ], [ -82.0183809205828, 28.956084016953383 ], [ -82.018567013435799, 28.956084017334884 ], [ -82.018661533180349, 28.956070014570884 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holy Rosary Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01632458226868, 28.954602390066633 ], [ -82.016763350098316, 28.954600042273448 ], [ -82.016873096471542, 28.954614357342354 ], [ -82.016958984917878, 28.954623900317728 ], [ -82.017049645787409, 28.954671617703969 ], [ -82.017055872944397, 28.954677844553494 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Street Joseph Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016332193284228, 28.95371564944281 ], [ -82.016667037242556, 28.953707414082039 ], [ -82.016770600900699, 28.953716661809111 ], [ -82.016866767486178, 28.95374255312699 ], [ -82.016955535426376, 28.953781389557882 ], [ -82.017027661049582, 28.953823924665585 ], [ -82.017103483187796, 28.953886803247695 ], [ -82.017171909087551, 28.953964474872787 ], [ -82.017227389723857, 28.954056942948963 ], [ -82.017260676637221, 28.954151259857966 ], [ -82.017271772846783, 28.954247424713582 ], [ -82.017262525027334, 28.954339891807081 ], [ -82.017238483806821, 28.954432358936714 ], [ -82.017199646727335, 28.954497086043045 ], [ -82.017149714412966, 28.95456736180067 ], [ -82.017101630809535, 28.954619142138657 ], [ -82.017055872944397, 28.954677844553494 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holy Rosary Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018661533180349, 28.956070014570884 ], [ -82.018726162778009, 28.956072107260091 ], [ -82.018833349280385, 28.956063256545541 ], [ -82.018980362179462, 28.956017530847987 ], [ -82.019207952000457, 28.955915675790568 ], [ -82.019367395567485, 28.955814212500318 ], [ -82.01953606302915, 28.955663994204841 ], [ -82.019691553989873, 28.955467656952496 ], [ -82.019807512533689, 28.955239695372942 ], [ -82.019853632626379, 28.955089477068409 ], [ -82.019878671233457, 28.954795628712173 ], [ -82.019823328013103, 28.954662540561298 ], [ -82.019699463333481, 28.954562394924611 ], [ -82.019526843849732, 28.954526815941211 ], [ -82.019352906424146, 28.954554486654654 ], [ -82.019164473501533, 28.954636183861101 ], [ -82.019039291921843, 28.954717880217139 ], [ -82.019192144571647, 28.955003824099133 ], [ -82.019223768349036, 28.955136911297988 ], [ -82.019227721000789, 28.955403088524125 ], [ -82.01912889149547, 28.955636321121894 ], [ -82.019066958542822, 28.955756232483825 ], [ -82.018960224553823, 28.9558616483483 ], [ -82.018840312040382, 28.955952569712725 ], [ -82.018713811758403, 28.95601318299391 ], [ -82.018661533180349, 28.956070014570884 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004652042184588, 28.739346088321057 ], [ -82.004709180849531, 28.73927766261145 ], [ -82.004766277362265, 28.739206971143357 ], [ -82.004828811777259, 28.739128124290321 ], [ -82.004875032706039, 28.739062871396051 ], [ -82.00492941148363, 28.738984023832426 ], [ -82.004974725852264, 28.738910613922965 ], [ -82.005010979329498, 28.738829954102318 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004915816680125, 28.738787357359961 ], [ -82.004860533325655, 28.73889611337038 ], [ -82.004799811180177, 28.738997617537759 ], [ -82.004739994437799, 28.739087340009569 ], [ -82.004676554671448, 28.739159843511551 ], [ -82.004612206678559, 28.739231440172617 ], [ -82.004568775638106, 28.739280089241031 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005010979329498, 28.738829954102318 ], [ -82.004915816680125, 28.738787357359961 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005010979329498, 28.738829954102318 ], [ -82.005041793325034, 28.738769232184218 ], [ -82.005067169739021, 28.738724824440567 ], [ -82.005089826923111, 28.738679509940869 ], [ -82.005099796188787, 28.738630569393194 ], [ -82.005128797611405, 28.738499156755722 ], [ -82.0051451116246, 28.738374993778777 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0051451116246, 28.738374993778777 ], [ -82.005115203112297, 28.738399463933757 ], [ -82.00507623237759, 28.738451122281838 ], [ -82.005032729865093, 28.738535407883766 ], [ -82.004985602588064, 28.738630569289125 ], [ -82.004915816680125, 28.738787357359961 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0051451116246, 28.738374993778777 ], [ -82.005203114250719, 28.738176515887098 ], [ -82.00525386662855, 28.737964442884792 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00525386662855, 28.737964442884792 ], [ -82.00528921827339, 28.737835634101675 ], [ -82.005330654314022, 28.737690611248713 ], [ -82.005363209418078, 28.737513033728369 ], [ -82.00537800763027, 28.737365052109574 ], [ -82.005378007590608, 28.737163795964786 ], [ -82.00537504848387, 28.736995097567313 ], [ -82.005363210044052, 28.736861913128827 ], [ -82.005342491938421, 28.736716890487749 ], [ -82.00533065444526, 28.736580747320293 ], [ -82.005333612988707, 28.736477159516816 ], [ -82.005357291513477, 28.736355814193065 ], [ -82.005398726308513, 28.736219671961372 ], [ -82.005446080710414, 28.736110165221088 ], [ -82.005517111755452, 28.735968102701559 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005517111755452, 28.735968102701559 ], [ -82.005558546157133, 28.735908909715491 ], [ -82.005626618832295, 28.735834919474257 ], [ -82.0057035701046, 28.735755009635614 ], [ -82.005789399032324, 28.735689898449998 ], [ -82.005887066688558, 28.735627746395714 ], [ -82.005958098577722, 28.735589271355817 ], [ -82.006046888066621, 28.735544877257997 ], [ -82.006138637662033, 28.73550936275932 ], [ -82.006336933286036, 28.735444251324086 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006336933286036, 28.735444251324086 ], [ -82.006499714200785, 28.735402818062887 ], [ -82.006686171702754, 28.735352505624711 ], [ -82.006869669947292, 28.735311071930408 ], [ -82.007118279908568, 28.735260759742644 ], [ -82.007340253555967, 28.735222285059962 ], [ -82.007529670659721, 28.735195650109187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007529670659721, 28.735195650109187 ], [ -82.007923303961775, 28.735157176760303 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dry Creek Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00781783806724, 28.736336502768793 ], [ -82.007776602402771, 28.736257781607733 ], [ -82.007712875296349, 28.73611533222099 ], [ -82.007664142012857, 28.735969134698834 ], [ -82.007630404125507, 28.735841680389491 ], [ -82.00760416461722, 28.735732969677631 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dry Creek Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00760416461722, 28.735732969677631 ], [ -82.007529670659721, 28.735195650109187 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cynewski Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00525386662855, 28.737964442884792 ], [ -82.005359033489967, 28.737976389828884 ], [ -82.005433908289604, 28.737996029120822 ], [ -82.005518602211538, 28.73801689700074 ], [ -82.005591022316608, 28.738041445833733 ], [ -82.00566344073809, 28.738072132234883 ], [ -82.005735861094863, 28.738118776194632 ], [ -82.005912614873594, 28.738261160963241 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cynewski Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005912614873594, 28.738261160963241 ], [ -82.00618633558534, 28.738477193917937 ], [ -82.006305397634605, 28.738571708525281 ], [ -82.006406049134327, 28.738647810959183 ], [ -82.006510381921473, 28.738717776460344 ], [ -82.006607350953217, 28.738774239818728 ], [ -82.006732551150392, 28.738834385176272 ], [ -82.006856523958334, 28.738878574680395 ], [ -82.006976813586306, 28.738911716184262 ], [ -82.007104469087921, 28.738939948601487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cynewski Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007104469087921, 28.738939948601487 ], [ -82.007164613935458, 28.738948541360894 ], [ -82.00723826114988, 28.738952223916943 ], [ -82.00733031994011, 28.738953452139164 ], [ -82.007735378728, 28.73894609003715 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cynewski Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007735378728, 28.73894609003715 ], [ -82.007837257567928, 28.738946091158876 ], [ -82.00792440619685, 28.738946091166063 ], [ -82.008010327125419, 28.73895713923379 ], [ -82.00809379490974, 28.738979233624992 ], [ -82.008169896239352, 28.739009920288026 ], [ -82.00823372383455, 28.73904551621624 ], [ -82.008325782940545, 28.739114253818215 ], [ -82.008411703597034, 28.739196493168212 ], [ -82.008487805733253, 28.739322921611308 ], [ -82.008522174531151, 28.739439528772625 ], [ -82.008529538757472, 28.739567183697648 ], [ -82.008516925936021, 28.739735042778342 ], [ -82.008502536207033, 28.739832313175736 ], [ -82.008443618060113, 28.739923143473654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kacanich Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005912614873594, 28.738261160963241 ], [ -82.005523595300176, 28.738663574275833 ], [ -82.005503305074569, 28.738685158554357 ], [ -82.005495905056193, 28.738702425674511 ], [ -82.005492205177489, 28.738723393098233 ], [ -82.005492821596533, 28.738744977564448 ], [ -82.00549652152057, 28.738764094070099 ], [ -82.005506389165561, 28.738791845603817 ], [ -82.005521806259623, 28.738810346323469 ], [ -82.005547089851433, 28.738834397797852 ], [ -82.006403672203149, 28.739510909878415 ], [ -82.006447457229257, 28.739537428281853 ], [ -82.006503576071964, 28.73956702939973 ], [ -82.006559078355224, 28.739592313803591 ], [ -82.00661889775931, 28.739613899377098 ], [ -82.00667193209371, 28.739628699740329 ], [ -82.006723117160931, 28.739638567158998 ], [ -82.006770602097305, 28.7396459677663 ], [ -82.00681068778097, 28.739648434775223 ], [ -82.007034546141199, 28.739652136048708 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kacanich Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007034546141199, 28.739652136048708 ], [ -82.00744896169617, 28.739654606099208 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Froehle Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007034546141199, 28.739652136048708 ], [ -82.007029900005733, 28.73957294472536 ], [ -82.007031191100623, 28.739467088564286 ], [ -82.007035064297142, 28.739393505695993 ], [ -82.00704022831232, 28.739317340317648 ], [ -82.007053136665732, 28.739232138715902 ], [ -82.007069919422818, 28.739137900162721 ], [ -82.007104469087921, 28.738939948601487 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gardner Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007735378728, 28.73894609003715 ], [ -82.007719963686839, 28.738556422290735 ], [ -82.007711537253897, 28.738392933370033 ], [ -82.007708166522121, 28.73827495108879 ], [ -82.007699739129279, 28.738195734697744 ], [ -82.007679513012192, 28.738106405652132 ], [ -82.007645803640642, 28.738028875161206 ], [ -82.007598611083253, 28.737949657984768 ], [ -82.007539620084856, 28.737877183535691 ], [ -82.007477258840069, 28.737818191748133 ], [ -82.007382873062767, 28.737730547274143 ], [ -82.007286801964497, 28.737637846189546 ], [ -82.007246350982655, 28.737597395110011 ], [ -82.00721432792939, 28.737545145738778 ], [ -82.007177247587038, 28.737479413167932 ], [ -82.007153650221269, 28.737411994421393 ], [ -82.007126682974558, 28.737319294512471 ], [ -82.007106457853411, 28.737174345216566 ], [ -82.007099716578807, 28.737056363956189 ], [ -82.007103086135146, 28.736955236739743 ], [ -82.007114885815696, 28.736876019366164 ], [ -82.007145223902995, 28.736798489382814 ], [ -82.007183988318488, 28.736732756886855 ], [ -82.007227810765499, 28.736677137390316 ], [ -82.00727837475425, 28.736623203102173 ], [ -82.007327253142904, 28.736577696581794 ], [ -82.007384558656781, 28.736540616443591 ], [ -82.007553103964867, 28.736461400432397 ], [ -82.007677828715245, 28.736405781289399 ], [ -82.00781783806724, 28.736336502768793 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Burchill Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006602189061056, 28.736048445677373 ], [ -82.006882286947942, 28.735942305800407 ], [ -82.007050346418978, 28.73587842452725 ], [ -82.007177128242461, 28.735834199394873 ], [ -82.007277373646687, 28.735795871185321 ], [ -82.007344205175116, 28.735779163284999 ], [ -82.007405138022435, 28.735765405333627 ], [ -82.007482779532126, 28.735751646541296 ], [ -82.00760416461722, 28.735732969677631 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gaouette Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00760416461722, 28.735732969677631 ], [ -82.007732411587213, 28.735710369954706 ], [ -82.007812018983529, 28.735701525833591 ], [ -82.007919144323338, 28.735685801820857 ], [ -82.008030199892048, 28.73567106014681 ], [ -82.008140274107163, 28.735662216025069 ], [ -82.008242484915471, 28.735667130880795 ], [ -82.008349610925293, 28.735674010650328 ], [ -82.00847246021722, 28.735686787947586 ], [ -82.008706368068999, 28.735733963479085 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roosa Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99013876570875, 28.783485458310704 ], [ -81.990544471437786, 28.783324062690692 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roosa Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990544471437786, 28.783324062690692 ], [ -81.990622609481562, 28.783277892254073 ], [ -81.99071495245434, 28.783253030022092 ], [ -81.990810847431547, 28.783238824308743 ], [ -81.99091384611701, 28.78323882505493 ], [ -81.991451932534105, 28.783264175113029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rawlins Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990544471437786, 28.783324062690692 ], [ -81.990495610843269, 28.783205760342636 ], [ -81.990415330462326, 28.783054377763818 ], [ -81.990348814036878, 28.782921344701634 ], [ -81.990305233622607, 28.782825009513203 ], [ -81.990259361618897, 28.782712619254895 ], [ -81.990224955076059, 28.782586466812084 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Rawlins Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990224955076059, 28.782586466812084 ], [ -81.990062104846245, 28.782109380168862 ], [ -81.9900621045674, 28.782049744373865 ], [ -81.990082748354993, 28.781999283949943 ], [ -81.990114860557895, 28.781976346781676 ], [ -81.990158440356367, 28.781957996918809 ], [ -81.991472732469916, 28.781985523271569 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Good Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990224955076059, 28.782586466812084 ], [ -81.990283676340852, 28.782575872512858 ], [ -81.9903616836487, 28.782574884724472 ], [ -81.991463647657952, 28.782588709343248 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Good Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991463647657952, 28.782588709343248 ], [ -81.991856642005871, 28.782597597406188 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carlene Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991463647657952, 28.782588709343248 ], [ -81.991472732469916, 28.781985523271569 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northcott Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990544471437786, 28.783324062690692 ], [ -81.990855254106648, 28.783886545838143 ], [ -81.990945661315266, 28.7840602710382 ], [ -81.991011250563872, 28.784189677319738 ], [ -81.991052022071187, 28.784281856914138 ], [ -81.991089249186956, 28.784404172662402 ], [ -81.991112294594743, 28.784471535593752 ], [ -81.9911495212327, 28.784519397739054 ], [ -81.991190292839718, 28.784554852380889 ], [ -81.991234611763005, 28.784574350713307 ], [ -81.991282473680783, 28.784592078019642 ], [ -81.991335655072689, 28.784602715267514 ], [ -81.991482789449904, 28.78461335131972 ], [ -81.99157319784878, 28.784609804661407 ], [ -81.991637015674385, 28.784599169495838 ], [ -81.991695514939252, 28.784572579242433 ], [ -81.991743377802663, 28.784530034480287 ], [ -81.991775287470389, 28.784483944424125 ], [ -81.991800106051954, 28.784428991389529 ], [ -81.991808968683955, 28.784366946980612 ], [ -81.991807195991413, 28.784313766254563 ], [ -81.991789469153503, 28.784257039350457 ], [ -81.991463294323268, 28.783624188580273 ], [ -81.991447339391982, 28.783571007835921 ], [ -81.991442021370858, 28.783501872142704 ], [ -81.991451932534105, 28.783264175113029 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roosa Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992222013324294, 28.783409693538189 ], [ -81.992328376273505, 28.783429193325748 ], [ -81.992432965308822, 28.783448692026198 ], [ -81.99255705508871, 28.783461101350543 ], [ -81.993189912323587, 28.783471739324238 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roosa Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993189912323587, 28.783471739324238 ], [ -81.993863540706386, 28.783485920520874 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Truax Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993189912323587, 28.783471739324238 ], [ -81.993191684580736, 28.783391967576371 ], [ -81.993195231587762, 28.783181017402462 ], [ -81.993195233091654, 28.782681117872329 ], [ -81.993189916002308, 28.78253752953529 ], [ -81.993170416269194, 28.782429395122907 ], [ -81.993152688921057, 28.782344305918919 ], [ -81.993143827093974, 28.782275171901382 ], [ -81.993161554072969, 28.78221667303638 ], [ -81.993195235394083, 28.782154627988039 ], [ -81.993243098718708, 28.782110311434433 ], [ -81.993292734429318, 28.782073084441311 ], [ -81.993358324635054, 28.782044721668989 ], [ -81.993415051702911, 28.782041175693728 ], [ -81.993686276086805, 28.782048266649682 ], [ -81.993753637984639, 28.782069539209832 ], [ -81.993805047070794, 28.782103220527695 ], [ -81.993845818526168, 28.782140446527084 ], [ -81.993877727409767, 28.782179446957823 ], [ -81.993900772616982, 28.782237945094835 ], [ -81.993907863600512, 28.782298217347549 ], [ -81.993900772549097, 28.782354942849341 ], [ -81.993883044493984, 28.782420533102641 ], [ -81.993870635519002, 28.782496758281997 ], [ -81.993863540706386, 28.783485920520874 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roosa Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993863540706386, 28.783485920520874 ], [ -81.994113081427301, 28.783484641546416 ], [ -81.994277895902954, 28.783473922965509 ], [ -81.994394901702876, 28.783462778978524 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roosa Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991451932534105, 28.783264175113029 ], [ -81.991548384561739, 28.7832625589092 ], [ -81.991665382894396, 28.783280285943196 ], [ -81.992078424001292, 28.783377785529627 ], [ -81.992222013324294, 28.783409693538189 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Terrill Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992453627255713, 28.784121797379481 ], [ -81.992432875228289, 28.784069371720051 ], [ -81.99241539975543, 28.784030052364063 ], [ -81.99239464787415, 28.783989639212766 ], [ -81.992216615315456, 28.783664159500219 ], [ -81.992202416826757, 28.783633577419192 ], [ -81.992196955659551, 28.783594257834228 ], [ -81.992196956082893, 28.783549476858635 ], [ -81.992208970552852, 28.783479575243771 ], [ -81.992222013324294, 28.783409693538189 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Terrill Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992497769093802, 28.784944044849713 ], [ -81.992494273612067, 28.784614171093565 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Terrill Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992494273612067, 28.784614171093565 ], [ -81.99249310810653, 28.784368221732684 ], [ -81.992484950191695, 28.784285461879886 ], [ -81.992474459357766, 28.784199205424361 ], [ -81.992453627255713, 28.784121797379481 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Armeno Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992494273612067, 28.784614171093565 ], [ -81.993745251021977, 28.784619894384246 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Armeno Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993745251021977, 28.784619894384246 ], [ -81.994071790964298, 28.78462290329151 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcmahan Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.992453627255713, 28.784121797379481 ], [ -81.992535398510128, 28.78410977234007 ], [ -81.992654277003894, 28.784105258370708 ], [ -81.993748261982958, 28.784106764462429 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hennessy Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993745251021977, 28.784619894384246 ], [ -81.993748261982958, 28.784106764462429 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hennessy Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993748261982958, 28.784106764462429 ], [ -81.993748262649234, 28.783837408203262 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roosa Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994394901702876, 28.783462778978524 ], [ -81.994459206627397, 28.783460519587749 ], [ -81.994528996504016, 28.783453918455308 ], [ -81.994606330238966, 28.783438828618337 ], [ -81.994691208475615, 28.783421853202974 ], [ -81.994769486142644, 28.783413365547244 ], [ -81.994871339341699, 28.783404877862726 ], [ -81.994990168664529, 28.783402992082141 ], [ -81.995578660139017, 28.783401106576651 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fallis Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994430394886734, 28.784944788916142 ], [ -81.99442821020105, 28.784620265085945 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fallis Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99442821020105, 28.784620265085945 ], [ -81.994428212426598, 28.78402257189839 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Fallis Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994428212426598, 28.78402257189839 ], [ -81.994428212833569, 28.783925324035632 ], [ -81.994426028193089, 28.78383463319992 ], [ -81.994421657270436, 28.783736292446907 ], [ -81.994414009301778, 28.783647785881588 ], [ -81.994401990271513, 28.78355381561407 ], [ -81.994394901702876, 28.783462778978524 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sims Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99442821020105, 28.784620265085945 ], [ -81.994539664084769, 28.784623542435192 ], [ -81.9946948252325, 28.78462463514839 ], [ -81.99589677593562, 28.784629007423021 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Debellis Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994428212426598, 28.78402257189839 ], [ -81.995899439174877, 28.78402607277069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Debellis Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995899439174877, 28.78402607277069 ], [ -81.996197955595989, 28.784026072754838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclintock Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995901206302278, 28.784950819845825 ], [ -81.99589677593562, 28.784629007423021 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mclintock Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99589677593562, 28.784629007423021 ], [ -81.995899439174877, 28.78402607277069 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roosa Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995578660139017, 28.783401106576651 ], [ -81.996085571901673, 28.783409048616246 ], [ -81.996137539207723, 28.783401109790429 ], [ -81.996189504833637, 28.78338378777373 ], [ -81.996237863562541, 28.783355639661149 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roosa Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996237863562541, 28.783355639661149 ], [ -81.996264252597499, 28.783330532608087 ], [ -81.996291042915161, 28.783284343879632 ], [ -81.996307671917805, 28.783238153956514 ], [ -81.996314138666435, 28.783190116706475 ], [ -81.99631691045596, 28.783130994414854 ], [ -81.996315987864975, 28.78294069259405 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Roosa Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996315987864975, 28.78294069259405 ], [ -81.996298780321681, 28.782145226685643 ], [ -81.996300424504867, 28.782084386345712 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Witte Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.995578660139017, 28.783401106576651 ], [ -81.995584422866088, 28.782251835630266 ], [ -81.995600848088728, 28.782208036012427 ], [ -81.995626399174938, 28.782160585930409 ], [ -81.995650124436494, 28.782127736140026 ], [ -81.995679323918168, 28.782098536389299 ], [ -81.995723124346128, 28.782072986972349 ], [ -81.995765100314657, 28.78205473720978 ], [ -81.995808899985647, 28.782045611700699 ], [ -81.995859999972581, 28.782041961654855 ], [ -81.99590927560601, 28.782043786779628 ], [ -81.99597497640201, 28.782047436872613 ], [ -81.996300424504867, 28.782084386345712 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lynn Keane Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996237863562541, 28.783355639661149 ], [ -81.9963034740056, 28.783412534280984 ], [ -81.996360048558088, 28.783476408923612 ], [ -81.996411148358476, 28.783549409402536 ], [ -81.996447648937533, 28.783622409464776 ], [ -81.996489623709877, 28.783704533869848 ], [ -81.996527947683418, 28.783828633842226 ], [ -81.996546198228813, 28.783916233741188 ], [ -81.996555322799935, 28.784007483258474 ], [ -81.996560796394817, 28.784228308666684 ], [ -81.996558971176938, 28.784425407512959 ], [ -81.996577221065579, 28.784478332353093 ], [ -81.996606421180445, 28.784527607613526 ], [ -81.996646571729585, 28.784567757140184 ], [ -81.996695847466128, 28.78460060806411 ], [ -81.996748771999549, 28.784620683189267 ], [ -81.996818122320889, 28.784637107932028 ], [ -81.996896597993398, 28.784640757888013 ], [ -81.99723240033201, 28.784640758277057 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lynn Keane Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99723240033201, 28.784640758277057 ], [ -81.997668579524273, 28.784646234036106 ], [ -81.997725155335516, 28.7846389335235 ], [ -81.997787205236349, 28.784607909427478 ], [ -81.99784195565509, 28.784565932885396 ], [ -81.997878456289911, 28.78452213334316 ], [ -81.997902181728293, 28.784474683718685 ], [ -81.997914957382591, 28.78441445894104 ], [ -81.997916782070035, 28.784348758738101 ], [ -81.997909483376091, 28.783918059483007 ], [ -81.997874809836517, 28.783720960902283 ], [ -81.997787210159998, 28.783381510426601 ], [ -81.997770785517901, 28.783308511074736 ], [ -81.997756185921588, 28.783240986095652 ], [ -81.997745235916327, 28.783162511589072 ], [ -81.997734287021515, 28.782879636615025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Gavin Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99723240033201, 28.784640758277057 ], [ -81.997233232691698, 28.784210692603672 ], [ -81.99723095153071, 28.783945892083253 ], [ -81.997217254177798, 28.783822623876262 ], [ -81.997183012672508, 28.78370848483987 ], [ -81.997137357928082, 28.783573802542186 ], [ -81.997107682002451, 28.783477926433278 ], [ -81.997082572847887, 28.783391180942132 ], [ -81.997071159040829, 28.783322698605765 ], [ -81.997032353061002, 28.78291636643651 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Steiger Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.996315987864975, 28.78294069259405 ], [ -81.996431469429766, 28.782940514434976 ], [ -81.996685339258903, 28.782938058719139 ], [ -81.996854040487463, 28.782929049685926 ], [ -81.997032353061002, 28.78291636643651 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Steiger Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997032353061002, 28.78291636643651 ], [ -81.99718677673998, 28.782903969370409 ], [ -81.99750316511664, 28.782885764459948 ], [ -81.997734287021515, 28.782879636615025 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Steiger Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997734287021515, 28.782879636615025 ], [ -81.998203307461111, 28.782892816089397 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Steiger Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998203307461111, 28.782892816089397 ], [ -81.999084943870159, 28.782930922380594 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Steiger Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999084943870159, 28.782930922380594 ], [ -81.999277086995107, 28.782938218034573 ], [ -81.99943201623023, 28.782944722801989 ], [ -81.999536683069053, 28.782945906232214 ], [ -81.999604687019456, 28.782946497526904 ], [ -81.999679195817748, 28.782941175037767 ], [ -81.999792732528235, 28.782916930165221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holtz Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998600678427778, 28.784963426668856 ], [ -81.998600679512833, 28.784661373266843 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holtz Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998600679512833, 28.784661373266843 ], [ -81.998602023455703, 28.783517574884183 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holgerson Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998600679512833, 28.784661373266843 ], [ -81.999191061603696, 28.784653528500311 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holgerson Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999191061603696, 28.784653528500311 ], [ -81.99957941845328, 28.784655490453002 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kristen Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999191061603696, 28.784653528500311 ], [ -81.999201531060905, 28.784497688017421 ], [ -81.999199956077334, 28.783578537973419 ], [ -81.999195217611273, 28.78352484119242 ], [ -81.999173106579406, 28.783445876770436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Huchingson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.9981815556919, 28.783496393067715 ], [ -81.998602023455703, 28.783517574884183 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Huchingson Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998602023455703, 28.783517574884183 ], [ -81.998683185021648, 28.783513309630372 ], [ -81.998781746119917, 28.783506690362717 ], [ -81.998892810023378, 28.783491244695139 ], [ -81.999009760112457, 28.783475063598374 ], [ -81.999173106579406, 28.783445876770436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kristen Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999173106579406, 28.783445876770436 ], [ -81.99913728188757, 28.783314133148373 ], [ -81.999104619918285, 28.783195207821645 ], [ -81.999094569841361, 28.78314746988061 ], [ -81.9990903824458, 28.783096381688736 ], [ -81.999084943870159, 28.782930922380594 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Yelland Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.998203307461111, 28.782892816089397 ], [ -81.99820491342895, 28.782795115269931 ], [ -81.998212510831692, 28.782609765476067 ], [ -81.998218587973867, 28.782488223752555 ], [ -81.998241377037033, 28.782422895574175 ], [ -81.998268724499653, 28.782374279227678 ], [ -81.998314302782745, 28.782331739309047 ], [ -81.998359881757736, 28.782304392552675 ], [ -81.99840849831736, 28.78228768050257 ], [ -81.998470788991753, 28.782277046595983 ], [ -81.998528521724765, 28.782277046387758 ], [ -81.998599927650318, 28.782278565808049 ], [ -81.999740906494637, 28.782368203503317 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hannan Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999904063309103, 28.783478391240504 ], [ -81.999984721943662, 28.78346282551647 ], [ -82.000071039035618, 28.783461411123909 ], [ -82.001654471524489, 28.78347274109078 ], [ -82.001698337864255, 28.783479816767372 ], [ -82.001742203311991, 28.783496797138124 ], [ -82.001777579060828, 28.783516608115701 ], [ -82.001812955904199, 28.783540663572214 ], [ -82.001848332900096, 28.783574624629974 ], [ -82.001866727251709, 28.783602925589893 ], [ -82.001883708309308, 28.783639716436994 ], [ -82.001896443081549, 28.783684998096465 ], [ -82.001906347363601, 28.783761410535167 ], [ -82.001920498534346, 28.78386895279332 ], [ -82.001941722133225, 28.784055737162788 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hannan Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001924741076309, 28.784519868977863 ], [ -82.001902099901287, 28.784549584183033 ], [ -82.001873798822601, 28.78457929942828 ], [ -82.001841252238279, 28.784604770211825 ], [ -82.001805876621091, 28.784623165959673 ], [ -82.001763425556604, 28.78463731545525 ], [ -82.001719558941645, 28.784647220459199 ], [ -82.001667202390664, 28.78465005045371 ], [ -82.001606355978367, 28.784651464745707 ], [ -82.000192729165704, 28.784642966611038 ], [ -82.000147446959261, 28.78463447561095 ], [ -82.000096505915792, 28.784617494687417 ], [ -82.000046979368918, 28.784594854435763 ], [ -82.000008773680548, 28.784563723454692 ], [ -81.999971982378497, 28.78452834722227 ], [ -81.999947927455679, 28.784478820949971 ], [ -81.999933775862033, 28.784427879858082 ], [ -81.999932362030776, 28.784058555263208 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hannan Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999932362030776, 28.784058555263208 ], [ -81.999932693073447, 28.783781816258493 ], [ -81.999930993191612, 28.78370783547485 ], [ -81.999925890796334, 28.783643208981907 ], [ -81.999918237128711, 28.783564974676171 ], [ -81.999904063309103, 28.783478391240504 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hannan Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999904063309103, 28.783478391240504 ], [ -81.999792732528235, 28.782916930165221 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hannan Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999792732528235, 28.782916930165221 ], [ -81.999764324462873, 28.782809857808584 ], [ -81.999744766545348, 28.782727372646054 ], [ -81.999736262937702, 28.782655943575527 ], [ -81.999732010887101, 28.782579411023345 ], [ -81.999740906494637, 28.782368203503317 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Macphail Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.999932362030776, 28.784058555263208 ], [ -82.001941722133225, 28.784055737162788 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hannan Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001941722133225, 28.784055737162788 ], [ -82.001951627213487, 28.784181675837974 ], [ -82.001953042021967, 28.784344405555927 ], [ -82.001954456855643, 28.784439211736501 ], [ -82.001944551208908, 28.784485908402246 ], [ -82.001924741076309, 28.784519868977863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ceresini Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001924741076309, 28.784519868977863 ], [ -82.00216119219067, 28.784626120702679 ], [ -82.002202605090361, 28.784638938567415 ], [ -82.002243032569993, 28.784644854625853 ], [ -82.002284445328058, 28.784648799104293 ], [ -82.002612790912238, 28.784648801476752 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ceresini Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002612790912238, 28.784648801476752 ], [ -82.003281314065731, 28.784651763204181 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ceresini Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003281314065731, 28.784651763204181 ], [ -82.003638254232641, 28.784655709284682 ], [ -82.003636282589881, 28.784655709325715 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reece Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.002612790912238, 28.784648801476752 ], [ -82.002617481620135, 28.78434480532594 ], [ -82.002618827207684, 28.784187491272217 ], [ -82.002617483317465, 28.784085303259264 ], [ -82.002609416398997, 28.783981770884811 ], [ -82.002594626023466, 28.783855381162031 ], [ -82.002550256203236, 28.783579742653711 ], [ -82.002500508349911, 28.783247632819322 ], [ -82.002500508246271, 28.783191160549986 ], [ -82.002504542391605, 28.783127965985429 ], [ -82.002513954709372, 28.783066115802193 ], [ -82.00264438053388, 28.782696359055784 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reece Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00264438053388, 28.782696359055784 ], [ -82.00275060393038, 28.782395174829006 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Louise Hall Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003281314065731, 28.784651763204181 ], [ -82.003293892437682, 28.783007654582374 ], [ -82.003287056127633, 28.782981936029792 ], [ -82.003271054025802, 28.78295221858377 ], [ -82.003250480792502, 28.782919643586876 ], [ -82.003224193627261, 28.782892212784525 ], [ -82.003196189971518, 28.782867638735521 ], [ -82.003159044269751, 28.782845351304186 ], [ -82.003103039677768, 28.782819634482763 ], [ -82.00264438053388, 28.782696359055784 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004139108002562, 28.784977346876733 ], [ -82.004134690282399, 28.784798731127101 ], [ -82.004138607116829, 28.783709610283928 ], [ -82.004136511064146, 28.782226473800574 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcneill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.004136511064146, 28.782226473800574 ], [ -82.00368631771282, 28.782213738869519 ], [ -82.002976022658245, 28.782135210018723 ], [ -82.00152687941771, 28.782028121378517 ], [ -82.000916526018017, 28.78196387110107 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Craig Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994255355669708, 28.77006035718243 ], [ -81.994593308962195, 28.769767190742915 ], [ -81.994636049867438, 28.769738697327725 ], [ -81.99468235399705, 28.769720889274893 ], [ -81.994730437400818, 28.769713764705052 ], [ -81.994774959660319, 28.769713765571058 ], [ -81.994826605009266, 28.769722668956657 ], [ -81.994878251947227, 28.769740478186879 ], [ -81.994931677375021, 28.769765411254724 ], [ -81.99497976146661, 28.769804589871807 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Buddy Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.997322139760485, 28.770240427915205 ], [ -81.997104779715627, 28.769953304324183 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993428683590096, 28.754820362711701 ], [ -81.993388378701283, 28.754918700799173 ], [ -81.993270924729231, 28.755059643371307 ], [ -81.993094745836856, 28.755247564719834 ], [ -81.992608489837522, 28.755724417498161 ], [ -81.992197404480024, 28.756067375188159 ], [ -81.991906120973525, 28.7562928823574 ], [ -81.991614838616059, 28.756501945944414 ], [ -81.991444749224442, 28.756602733117578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991603615574547, 28.756629629593039 ], [ -81.991939007583696, 28.75640563534154 ], [ -81.992129281004253, 28.756271740872783 ], [ -81.992321903136087, 28.756121403321373 ], [ -81.992704800744889, 28.755780794252452 ], [ -81.993219245205296, 28.755268706133826 ], [ -81.993404821291506, 28.755071388345446 ], [ -81.993489387557119, 28.754984473077336 ], [ -81.993589563086203, 28.754938946055464 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991603615574547, 28.756629629593039 ], [ -81.991444749224442, 28.756602733117578 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987928900788745, 28.757941202473123 ], [ -81.987913321684076, 28.757944247293381 ], [ -81.987205123467575, 28.758052312592248 ], [ -81.986535980337308, 28.758183422408177 ], [ -81.985938033972715, 28.758327751744904 ], [ -81.985355571670965, 28.75850744647849 ], [ -81.9848163598718, 28.758697327159595 ], [ -81.984268451801839, 28.758911850576045 ], [ -81.983913325452676, 28.759072741384085 ], [ -81.98334657457562, 28.759361186595743 ], [ -81.983007770842292, 28.759577366563004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983082156397288, 28.75965919092301 ], [ -81.983437909386836, 28.759448847252031 ], [ -81.983991598521584, 28.759166957247768 ], [ -81.984482339758884, 28.758950434239566 ], [ -81.984897530913457, 28.758794441979777 ], [ -81.985326580691975, 28.758643696936488 ], [ -81.985830814068933, 28.758484454147208 ], [ -81.986329791784968, 28.758356619529202 ], [ -81.986935517464659, 28.758216103316869 ], [ -81.987531259665047, 28.758110292023797 ], [ -81.987958140178847, 28.758046728499977 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eastport Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983584266909801, 28.760436528773067 ], [ -81.983482712631371, 28.760221614901102 ], [ -81.983082156397288, 28.75965919092301 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eastport Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982955699003142, 28.759737296701385 ], [ -81.983413176093805, 28.760291475496363 ], [ -81.983584266909801, 28.760436528773067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982955699003142, 28.759737296701385 ], [ -81.983082156397288, 28.75965919092301 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eastport Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983082156397288, 28.75965919092301 ], [ -81.983007770842292, 28.759577366563004 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983007770842292, 28.759577366563004 ], [ -81.982874348096615, 28.759638285838623 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eastport Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982874348096615, 28.759638285838623 ], [ -81.982955699003142, 28.759737296701385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dewey Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983584266909801, 28.760436528773067 ], [ -81.98382419304437, 28.760324624490366 ], [ -81.984108840444875, 28.760201028338631 ], [ -81.984333562871456, 28.760084923763056 ], [ -81.984498359571376, 28.760010017144698 ], [ -81.984670646261748, 28.759957582503432 ], [ -81.984842932831938, 28.759946346571265 ], [ -81.985120090643875, 28.75993511126887 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982874348096615, 28.759638285838623 ], [ -81.982584387266513, 28.759786123991347 ], [ -81.982192604151379, 28.759979254331629 ], [ -81.981759434758644, 28.760166866557693 ], [ -81.981193832320244, 28.760376549454207 ], [ -81.980848952366387, 28.760500704760762 ], [ -81.980393711966101, 28.760635896515481 ], [ -81.979997821276953, 28.76072489781852 ], [ -81.979737062514928, 28.760776603960267 ], [ -81.979492708413545, 28.760826294520498 ], [ -81.979276767850706, 28.760861971517958 ], [ -81.979075222439079, 28.760893266050626 ], [ -81.978950039623669, 28.760895770284634 ], [ -81.978861211026285, 28.760882919069555 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978912051771644, 28.761123412754401 ], [ -81.979016953639487, 28.7610442273408 ], [ -81.979135592351426, 28.76100560135167 ], [ -81.979265267433433, 28.760983529978617 ], [ -81.979587220887211, 28.760923936072615 ], [ -81.979870133775918, 28.76087010858409 ], [ -81.980258519487464, 28.760784881852047 ], [ -81.98050959165694, 28.760718665835217 ], [ -81.980785495023781, 28.760638655565241 ], [ -81.981072422441969, 28.760552578198041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97847817596859, 28.760807516562888 ], [ -81.978443540263655, 28.760839591277943 ], [ -81.978415146118351, 28.760876118651623 ], [ -81.978393718872127, 28.760916165586757 ], [ -81.978379805895926, 28.760958709077332 ], [ -81.978373762608811, 28.761002662341166 ], [ -81.978375743397848, 28.761046902581732 ], [ -81.978385697673289, 28.761090299670279 ], [ -81.978403371159757, 28.761131745015206 ], [ -81.978428312391031, 28.761170179881557 ], [ -81.978459884241957, 28.761204622436892 ], [ -81.978497280203499, 28.761234192832966 ], [ -81.97853954498504, 28.76125813568197 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97853954498504, 28.76125813568197 ], [ -81.978578749790699, 28.761270290381312 ], [ -81.978619624423771, 28.761276916968232 ], [ -81.978661171516848, 28.7612778537497 ], [ -81.978702377293644, 28.761273077867646 ], [ -81.978742236306431, 28.761262705856684 ], [ -81.978779775970025, 28.761246990800576 ], [ -81.978814080293887, 28.761226316156709 ], [ -81.97884431223315, 28.761201186399283 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978912051771644, 28.761123412754401 ], [ -81.978914721771304, 28.761073879813367 ], [ -81.978910878082857, 28.761024406839191 ], [ -81.9789005722143, 28.760975656684895 ], [ -81.978883942255209, 28.760928282518066 ], [ -81.978861211026285, 28.760882919069555 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978861211026285, 28.760882919069555 ], [ -81.978839226224011, 28.760850607049647 ], [ -81.978811686169792, 28.760821789605174 ], [ -81.978779292761416, 28.760797201185586 ], [ -81.978742871588764, 28.760777468457789 ], [ -81.978703350892744, 28.760763094334941 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978703350892744, 28.760763094334941 ], [ -81.978664059863604, 28.760755948216953 ], [ -81.978623963826223, 28.760754745541231 ], [ -81.978584212244968, 28.760759520785822 ], [ -81.978545944709666, 28.76077013705504 ], [ -81.978510258266468, 28.7607862900039 ], [ -81.97847817596859, 28.760807516562888 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97884431223315, 28.761201186399283 ], [ -81.978912051771644, 28.761123412754401 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979156965583329, 28.766313661172191 ], [ -81.979112673279374, 28.7663347540052 ], [ -81.979072722795294, 28.766361751795252 ], [ -81.979038119073735, 28.766393975423334 ], [ -81.97900973256391, 28.766430614315833 ], [ -81.978988277325541, 28.766470746833871 ], [ -81.978974293066614, 28.766513363456557 ], [ -81.978968131566376, 28.766557392174857 ], [ -81.978969947825618, 28.766601725457559 ], [ -81.978979696166718, 28.766645248110816 ], [ -81.978997131381661, 28.766686865330673 ], [ -81.97902181489917, 28.766725530242695 ], [ -81.979053125816293, 28.766760270236208 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979053125816293, 28.766760270236208 ], [ -81.979082889444456, 28.766784589045855 ], [ -81.979116752425981, 28.766804309764691 ], [ -81.979153809690317, 28.766818905307371 ], [ -81.979193070790316, 28.766827985571453 ], [ -81.979233486374767, 28.766831307864067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979233486374767, 28.766831307864067 ], [ -81.97927638511176, 28.766827324313446 ], [ -81.979317917080493, 28.766817054947396 ], [ -81.979356904649208, 28.766800790952097 ], [ -81.979392242333532, 28.76677899349033 ], [ -81.979422928142512, 28.766752280625028 ], [ -81.979448091990236, 28.76672140979392 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979448091990236, 28.76672140979392 ], [ -81.979469874147952, 28.766684897281824 ], [ -81.979485649277265, 28.766646060218559 ], [ -81.979495107556701, 28.76660566137561 ], [ -81.979498063230423, 28.766564494197404 ], [ -81.9794944582558, 28.766523367217729 ], [ -81.979484363442978, 28.766483088179978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979484363442978, 28.766483088179978 ], [ -81.979470601764106, 28.766449044225965 ], [ -81.979451625724963, 28.766417005833006 ], [ -81.979427800480636, 28.766387589506756 ], [ -81.979399584496932, 28.76636136129671 ], [ -81.97936752072809, 28.766338825903986 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97936752072809, 28.766338825903986 ], [ -81.979335720333282, 28.76632271335702 ], [ -81.979301480513143, 28.766311114204562 ], [ -81.979265620305313, 28.766304305905273 ], [ -81.979228997507391, 28.766302451317713 ], [ -81.979192488158333, 28.76630559480471 ], [ -81.979156965583329, 28.766313661172191 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979256190270647, 28.763741785835961 ], [ -81.979257690049735, 28.763759189060824 ], [ -81.979277881594911, 28.76435732654225 ], [ -81.979262283615384, 28.765197424704933 ], [ -81.979252404288189, 28.765866487655479 ], [ -81.979249804003274, 28.765994893277316 ], [ -81.97923940549849, 28.766133696894904 ], [ -81.979200490446601, 28.766240295112688 ], [ -81.979156965583329, 28.766313661172191 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97936752072809, 28.766338825903986 ], [ -81.979355335644243, 28.766307331366573 ], [ -81.979349618330374, 28.76624598737304 ], [ -81.979350138642445, 28.766184123700675 ], [ -81.979356376542128, 28.766125899048351 ], [ -81.979378211303214, 28.76591639522767 ], [ -81.979392769802971, 28.765180270077536 ], [ -81.979409928420111, 28.764329774735053 ], [ -81.979405363479501, 28.763866939434397 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979405363479501, 28.763866939434397 ], [ -81.979392592661597, 28.763713695129276 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979392592661597, 28.763713695129276 ], [ -81.979341471381829, 28.763461236042883 ], [ -81.979292755293429, 28.763252043415335 ], [ -81.979235442778801, 28.763062910657894 ], [ -81.979175264628893, 28.762856584671287 ], [ -81.979074967206316, 28.762541362547804 ], [ -81.978991863908632, 28.762234738500773 ], [ -81.978913721626114, 28.761922059714607 ], [ -81.978850434752729, 28.761641160125102 ], [ -81.978823403416555, 28.761518973047114 ], [ -81.978810023967185, 28.761447889968792 ], [ -81.978796827785857, 28.761382024117648 ], [ -81.978800768442596, 28.761330807387939 ], [ -81.97884431223315, 28.761201186399283 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97853954498504, 28.76125813568197 ], [ -81.978596771410722, 28.761318266228667 ], [ -81.978667019238017, 28.761417783176118 ], [ -81.978704651574944, 28.761556606191554 ], [ -81.978795804739889, 28.761995652225128 ], [ -81.978900339681431, 28.762418808655767 ], [ -81.979050869138632, 28.762908868164374 ], [ -81.979200563302172, 28.763373839310393 ], [ -81.979256190270647, 28.763741785835961 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979256190270647, 28.763741785835961 ], [ -81.979405363479501, 28.763866939434397 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982653794892911, 28.758982342796767 ], [ -81.982600772162613, 28.758817735998644 ], [ -81.982527175090567, 28.75860287821617 ], [ -81.982437258355716, 28.75832683477563 ], [ -81.982397900267358, 28.758078249123766 ], [ -81.982401540254884, 28.757744480340499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982401540254884, 28.757744480340499 ], [ -81.98233989623985, 28.757916667021135 ], [ -81.982331609429636, 28.758082391982555 ], [ -81.982354396307841, 28.758283332182902 ], [ -81.982397898140803, 28.758521560674936 ], [ -81.98247419897794, 28.758797986744554 ], [ -81.982541516243387, 28.759029393146324 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holcomb Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98202369582404, 28.757666500685183 ], [ -81.982401540254884, 28.757744480340499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holcomb Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979785703080665, 28.757502549895896 ], [ -81.980964500629184, 28.757495215683697 ], [ -81.981080403527471, 28.757496558464634 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holcomb Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979785703080665, 28.757502549895896 ], [ -81.979775571936273, 28.758118892071597 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holcomb Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979758992968868, 28.758770180895631 ], [ -81.979683223988474, 28.758824415914113 ], [ -81.979455258127075, 28.758889538537112 ], [ -81.979099955036418, 28.758966941431456 ], [ -81.979037807446062, 28.758956583068933 ], [ -81.978986018850506, 28.758919295717146 ], [ -81.97895908809727, 28.758848862882886 ], [ -81.979136588252445, 28.758084415176413 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holcomb Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979136588252445, 28.758084415176413 ], [ -81.979220111347558, 28.757603860731688 ], [ -81.979246127538431, 28.757531746976969 ], [ -81.979319546387444, 28.75748992502141 ], [ -81.979429340109178, 28.757491997351195 ], [ -81.979785703080665, 28.757502549895896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wells Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979136588252445, 28.758084415176413 ], [ -81.979213587974556, 28.758100503707141 ], [ -81.979775571936273, 28.758118892071597 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tippett Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980539922066839, 28.75810127800256 ], [ -81.980536194323108, 28.758277338658463 ], [ -81.98053506057343, 28.758376054791391 ], [ -81.980539598167667, 28.758482714849709 ], [ -81.980548675765249, 28.75858029734243 ], [ -81.980563426786603, 28.758685822856748 ], [ -81.980582715362189, 28.758784539230145 ], [ -81.980893718694773, 28.759815009185989 ], [ -81.980923150847829, 28.75985621500487 ], [ -81.980958470088552, 28.759885647306739 ], [ -81.981008505822217, 28.759900363975092 ], [ -81.981061484700973, 28.759897420875909 ], [ -81.98157950442382, 28.759691392702461 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tippett Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98157950442382, 28.759691392702461 ], [ -81.982069157243103, 28.75946988580419 ], [ -81.98210917596009, 28.759427500248687 ], [ -81.98212475726632, 28.759360957282851 ], [ -81.98210887149186, 28.75929401220338 ], [ -81.981853569900508, 28.758504274699121 ], [ -81.981843356824299, 28.758428252125093 ], [ -81.981839953110381, 28.758376056177497 ], [ -81.981858331773836, 28.758310444802436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Tippett Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981858331773836, 28.758310444802436 ], [ -81.98202369582404, 28.757666500685183 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Josh Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98157950442382, 28.759691392702461 ], [ -81.981503714660619, 28.759509393800005 ], [ -81.981475401204861, 28.759430520098107 ], [ -81.981430907798995, 28.75928895110701 ], [ -81.981234735275834, 28.758659982982994 ], [ -81.981210466768914, 28.758570996601065 ], [ -81.98119428774028, 28.75848201134642 ], [ -81.98118822007406, 28.7584011158837 ], [ -81.981190243034021, 28.758308084473306 ], [ -81.981198332350658, 28.758241344751145 ], [ -81.981219562836841, 28.758171916153426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stout Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980225290105068, 28.758085576846597 ], [ -81.980539922066839, 28.75810127800256 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stout Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980539922066839, 28.75810127800256 ], [ -81.980716610916389, 28.7580969245295 ], [ -81.980817598860554, 28.758100328093541 ], [ -81.980894756847462, 28.758103732706811 ], [ -81.980980993967492, 28.758120753638647 ], [ -81.981219562836841, 28.758171916153426 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stout Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981219562836841, 28.758171916153426 ], [ -81.981369056437899, 28.75819904621488 ], [ -81.981549472989059, 28.758238760480335 ], [ -81.981721945860983, 28.758277339210142 ], [ -81.981858331773836, 28.758310444802436 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holcomb Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979775571936273, 28.758118892071597 ], [ -81.97985895790849, 28.758588154169921 ], [ -81.97983650225153, 28.758676020330384 ], [ -81.97979647333139, 28.758730692981565 ], [ -81.979758992968868, 28.758770180895631 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Compton Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980214323561952, 28.760085778525326 ], [ -81.980016138663345, 28.759403354201584 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Compton Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980016138663345, 28.759403354201584 ], [ -81.979879458532707, 28.758958167151977 ], [ -81.979856027903537, 28.758899590575798 ], [ -81.979826738330701, 28.758844918347656 ], [ -81.979758992968868, 28.758770180895631 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mayr Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979256462459773, 28.760278234700799 ], [ -81.980214323561952, 28.760085778525326 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mayr Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980214323561952, 28.760085778525326 ], [ -81.98062745425122, 28.760004620206786 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ledford Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97933915615765, 28.760632161713474 ], [ -81.979256462459773, 28.760278234700799 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ledford Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979256462459773, 28.760278234700799 ], [ -81.979109807010943, 28.759578133389795 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jello Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978702607549479, 28.759665389487346 ], [ -81.979109807010943, 28.759578133389795 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jello Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979109807010943, 28.759578133389795 ], [ -81.980016138663345, 28.759403354201584 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Holcomb Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981080403527471, 28.757496558464634 ], [ -81.981270597850056, 28.757512815113635 ], [ -81.981579865698578, 28.757568734833388 ], [ -81.98202369582404, 28.757666500685183 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crouch Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980539713947962, 28.756865750009659 ], [ -81.980820111163396, 28.756870634876787 ], [ -81.980879707113075, 28.756880404649976 ], [ -81.980929533854763, 28.756898967003668 ], [ -81.980975452927851, 28.756924369259917 ], [ -81.981006716142687, 28.75695465548224 ], [ -81.981032117840869, 28.756986896193258 ], [ -81.981051657659194, 28.757023044915051 ], [ -81.981068266489629, 28.757067008198597 ], [ -81.981075104237703, 28.757118788690626 ], [ -81.981080403527471, 28.757496558464634 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crouch Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979205142280506, 28.756859886275407 ], [ -81.980539713947962, 28.756865750009659 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carlos Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980539713947962, 28.756865750009659 ], [ -81.980539421811514, 28.756259785517443 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Carlos Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980539421811514, 28.756259785517443 ], [ -81.980539423015287, 28.755906208478915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Remi Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979202710569226, 28.757163850726034 ], [ -81.979205142280506, 28.756859886275407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Remi Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979205142280506, 28.756859886275407 ], [ -81.979203417503271, 28.756800987187912 ], [ -81.9791976351149, 28.756720023084657 ], [ -81.97917932104032, 28.756615925209502 ], [ -81.979169682949305, 28.756562913422265 ], [ -81.97914076742201, 28.756415442164638 ], [ -81.979134020443809, 28.756365322751996 ], [ -81.979134020673413, 28.756308455045538 ], [ -81.97913305730907, 28.756246767004757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Loggins Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978745580826043, 28.756240020119041 ], [ -81.97913305730907, 28.756246767004757 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Loggins Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.97913305730907, 28.756246767004757 ], [ -81.980539421811514, 28.756259785517443 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982401540254884, 28.757744480340499 ], [ -81.982461537060971, 28.757581011609751 ], [ -81.982668010321177, 28.757138576791426 ], [ -81.982759831578505, 28.756930053855733 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilkins Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983192486231047, 28.757098942380445 ], [ -81.982915467208102, 28.757705123540887 ], [ -81.982904804309683, 28.757749908742458 ], [ -81.982904803635932, 28.757803224011656 ], [ -81.982904804025949, 28.757850141845342 ], [ -81.98291120153425, 28.757894928315554 ], [ -81.982928262045476, 28.757937579452385 ], [ -81.982949588485411, 28.757973834595905 ], [ -81.982975180783569, 28.758016487712016 ], [ -81.983005037607057, 28.758061273540569 ], [ -81.983034894776253, 28.75811032281506 ], [ -81.983054087932061, 28.758161507425971 ], [ -81.983073281458132, 28.758210557149329 ], [ -81.983203371436275, 28.758649879645901 ], [ -81.983222565469006, 28.758696797167293 ], [ -81.983246024480437, 28.758718123675848 ], [ -81.983290809642952, 28.758735184872847 ], [ -81.983339860756288, 28.758739449911133 ], [ -81.98337824985046, 28.758733051822521 ], [ -81.983410239062721, 28.75872025639995 ], [ -81.983809046004851, 28.758506993525103 ], [ -81.983830371659863, 28.758472871331854 ], [ -81.983836770037129, 28.758423821193347 ], [ -81.983830372119016, 28.75838543400954 ], [ -81.983813311811701, 28.75832572015533 ], [ -81.983665836625818, 28.757893368320566 ], [ -81.983659761760407, 28.75782668356743 ], [ -81.983657629801456, 28.757775501118513 ], [ -81.983661895264547, 28.757707256612733 ], [ -81.983672559172348, 28.757634747626966 ], [ -81.983691753433106, 28.757570767485053 ], [ -81.983710946316933, 28.757515320562199 ], [ -81.983747863247203, 28.757445805034639 ], [ -81.983761664161904, 28.757356066653696 ], [ -81.983753679970263, 28.757312718323057 ], [ -81.983735426414128, 28.757288762271831 ], [ -81.983668121331618, 28.75725453819333 ], [ -81.983192486231047, 28.757098942380445 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Wilkins Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983192486231047, 28.757098942380445 ], [ -81.982759831578505, 28.756930053855733 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983007770842292, 28.759577366563004 ], [ -81.982860544570698, 28.75938110724417 ], [ -81.982791890253694, 28.759277129784902 ], [ -81.982739658871267, 28.759178603499581 ], [ -81.982683075775697, 28.759061084643843 ], [ -81.982653794892911, 28.758982342796767 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982541516243387, 28.759029393146324 ], [ -81.982588179744937, 28.759135214028596 ], [ -81.98266303400878, 28.759281704199488 ], [ -81.982786988788931, 28.759482928013998 ], [ -81.982874348096615, 28.759638285838623 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barr Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982653794892911, 28.758982342796767 ], [ -81.982541516243387, 28.759029393146324 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 311", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120965461898265, 28.710409414924545 ], [ -82.120822551209628, 28.710359803641445 ], [ -82.120253281447148, 28.710170481032751 ], [ -82.120176350671798, 28.710143432164603 ], [ -82.120103263408552, 28.710112989823845 ], [ -82.120080132811722, 28.710058774048001 ], [ -82.120076170444108, 28.709957085307252 ], [ -82.12009146546356, 28.7098824972262 ], [ -82.120137426777916, 28.709726530131185 ], [ -82.120329195606885, 28.709309426388103 ], [ -82.120567012499905, 28.70881431696413 ], [ -82.120701242739045, 28.708515901486294 ], [ -82.120747236542428, 28.708390440900775 ], [ -82.120762515303298, 28.708302295278667 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cheryl Cooper Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98775049733753, 28.756838473160308 ], [ -81.987634749532432, 28.756838473349717 ], [ -81.987517007337431, 28.756844460135603 ], [ -81.987393277273867, 28.756856434039282 ], [ -81.987219655870547, 28.756882376378911 ], [ -81.987093931565923, 28.756898341673999 ], [ -81.986964214536584, 28.756924284298613 ], [ -81.986814540374468, 28.756950226640779 ], [ -81.986688815651092, 28.756976169393599 ], [ -81.98659302548343, 28.756994130413645 ], [ -81.986483264038753, 28.757014086787521 ], [ -81.986381486902559, 28.757038033934851 ], [ -81.986269731175071, 28.757061980885901 ], [ -81.986144005430347, 28.757085929008024 ], [ -81.986036240745307, 28.757111872106147 ], [ -81.985938454084092, 28.757133823407152 ], [ -81.985854637633494, 28.757153779281897 ], [ -81.985818714675304, 28.757169744714201 ], [ -81.98578878024928, 28.757197683631816 ], [ -81.985770819247648, 28.757231608890482 ], [ -81.985758845650693, 28.7572635388549 ], [ -81.985760841294166, 28.757293473472338 ], [ -81.985772815231201, 28.757325403271974 ], [ -81.98590652194126, 28.757674637075038 ], [ -81.985928473421609, 28.757692597316286 ], [ -81.985954416626043, 28.757708562044545 ], [ -81.985988342793959, 28.757716545696368 ], [ -81.986020273312718, 28.757716545420848 ], [ -81.986064177679808, 28.757712554527824 ], [ -81.986140012134967, 28.757696589555241 ], [ -81.986207863953396, 28.757678628693483 ], [ -81.986357536004135, 28.757646699243317 ], [ -81.986527166709337, 28.757610777975163 ], [ -81.986644909355078, 28.757584834580253 ], [ -81.986810546886588, 28.757552904413433 ], [ -81.986970199726713, 28.757524967121622 ], [ -81.987089937127237, 28.757505010413471 ], [ -81.98719770222803, 28.75748505426008 ], [ -81.987317440563928, 28.757465098252609 ], [ -81.987421214679784, 28.757449133398417 ], [ -81.987534965832438, 28.757437159444397 ], [ -81.987604813257278, 28.757425185849492 ], [ -81.987664683353387, 28.757411217176571 ], [ -81.987700604307079, 28.757393256228443 ], [ -81.987734530431624, 28.757359330372587 ], [ -81.987746503376201, 28.757319418326624 ], [ -81.987748499970024, 28.757269527532404 ], [ -81.98775049733753, 28.756838473160308 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cheryl Cooper Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98775049733753, 28.756838473160308 ], [ -81.987744511417219, 28.756539130333575 ], [ -81.987750498863022, 28.756391453860424 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Willie Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987750498863022, 28.756391453860424 ], [ -81.987819570142619, 28.756399029709659 ], [ -81.987900814368686, 28.756405688966478 ], [ -81.988418918140212, 28.7564070214993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Willie Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988418918140212, 28.7564070214993 ], [ -81.988998287312242, 28.756409686213729 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Willie Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988998287312242, 28.756409686213729 ], [ -81.989580321952275, 28.756401694980042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bickel Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988408329716663, 28.757589828938279 ], [ -81.988411562625842, 28.757255316413318 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bickel Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988411562625842, 28.757255316413318 ], [ -81.988418918140212, 28.7564070214993 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Smart Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988411562625842, 28.757255316413318 ], [ -81.988469298318719, 28.757261624093047 ], [ -81.988526123943601, 28.757265873482268 ], [ -81.988571265735189, 28.757264279339918 ], [ -81.988622250211634, 28.757254189451363 ], [ -81.98905826846358, 28.757125138377859 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Smart Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98905826846358, 28.757125138377859 ], [ -81.989669012865207, 28.756916956277166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Smart Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989669012865207, 28.756916956277166 ], [ -81.990263426581038, 28.756657394021815 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Smart Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990263426581038, 28.756657394021815 ], [ -81.990747772957405, 28.756409647341453 ], [ -81.991216188666115, 28.756111714529997 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Telfort Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98905826846358, 28.757125138377859 ], [ -81.989038841207716, 28.757082992210432 ], [ -81.989016407647583, 28.757030988868863 ], [ -81.989004171915496, 28.756987144220979 ], [ -81.9889970349778, 28.756910668554578 ], [ -81.988998287312242, 28.756409686213729 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jonas Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989669012865207, 28.756916956277166 ], [ -81.989631273984799, 28.756853568205475 ], [ -81.989602724363095, 28.756798506528234 ], [ -81.989587429756739, 28.756745483312244 ], [ -81.989581311309067, 28.756688381428688 ], [ -81.989580321952275, 28.756401694980042 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Jonas Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989580321952275, 28.756401694980042 ], [ -81.989583353120338, 28.756120427254203 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lee Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.990263426581038, 28.756657394021815 ], [ -81.990225746808363, 28.756604768970355 ], [ -81.990202294254587, 28.756559904889471 ], [ -81.99018495938877, 28.75652013754755 ], [ -81.990174762461947, 28.756481389445678 ], [ -81.990169665126558, 28.756429386662226 ], [ -81.990163548460572, 28.756119409187587 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Luellen Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985957773351188, 28.755454727460915 ], [ -81.98596123141229, 28.755736939633071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crockton Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983233554036858, 28.755419377647705 ], [ -81.983903653615698, 28.755423918034474 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crockton Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983903653615698, 28.755423918034474 ], [ -81.984585712343318, 28.75543273707207 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crockton Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984585712343318, 28.75543273707207 ], [ -81.985271200940375, 28.755444880794755 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Crockton Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985271200940375, 28.755444880794755 ], [ -81.985957773351188, 28.755454727460915 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eastport Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984147812257859, 28.761582640132488 ], [ -81.984142594124947, 28.761455324306908 ], [ -81.984108448131579, 28.761332499499328 ], [ -81.984075292498986, 28.76120264213478 ], [ -81.984006220509244, 28.76100371257721 ], [ -81.983903992224185, 28.760826887593261 ], [ -81.983785187191941, 28.760666638808772 ], [ -81.983663618597774, 28.760520205868929 ], [ -81.983584266909801, 28.760436528773067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Eastport Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984124517591241, 28.7623800577962 ], [ -81.984147812257859, 28.761582640132488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Lake Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984124517591241, 28.7623800577962 ], [ -81.984184626426298, 28.762379802321753 ], [ -81.984251081202061, 28.762385530833019 ], [ -81.984323264985932, 28.762400425722259 ], [ -81.984434404761743, 28.762433652971993 ], [ -81.984538668978772, 28.762482920737856 ], [ -81.984589083269711, 28.76249094182614 ], [ -81.984640642604774, 28.762484066667593 ], [ -81.984691056572416, 28.762466880576827 ], [ -81.985454029350876, 28.761880610716759 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Lake Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.98338849111741, 28.762795825149183 ], [ -81.983442862960203, 28.762736162519502 ], [ -81.983527180990265, 28.762658590741069 ], [ -81.983660402329861, 28.762565843381928 ], [ -81.983793624643297, 28.762484899105015 ], [ -81.983901551299155, 28.762437682094795 ], [ -81.984036459169914, 28.762393837464735 ], [ -81.984124517591241, 28.7623800577962 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcpherson Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982609900855792, 28.761712892293879 ], [ -81.982704981234491, 28.76166451779785 ], [ -81.982861781385267, 28.761599463667686 ], [ -81.983096983558497, 28.761559429690532 ], [ -81.983769479012906, 28.761567043453837 ], [ -81.984147812257859, 28.761582640132488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beebe Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985184607512053, 28.761449110992508 ], [ -81.985120090643875, 28.75993511126887 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beebe Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985120090643875, 28.75993511126887 ], [ -81.985100265639019, 28.75947377560756 ], [ -81.985066476922896, 28.75931320618546 ], [ -81.98500256719646, 28.759142512086036 ], [ -81.984976401920107, 28.759075323467016 ], [ -81.984974530983735, 28.759020241259066 ], [ -81.984996947353523, 28.758983078194909 ], [ -81.985038391896154, 28.758942362118198 ], [ -81.985542150415455, 28.758765424100876 ], [ -81.986231470305668, 28.758555149205364 ], [ -81.986536645281546, 28.758475790663407 ], [ -81.986839235331217, 28.75844366120976 ], [ -81.986979797834309, 28.758444665689666 ], [ -81.987095261224098, 28.758464745317692 ], [ -81.987210722912522, 28.758506914494284 ], [ -81.987309895163591, 28.758541292318156 ], [ -81.987409658093711, 28.758560886546366 ], [ -81.987566146527001, 28.758555107383664 ], [ -81.987759923034247, 28.758507918666069 ], [ -81.987874381254684, 28.758440650444857 ], [ -81.987937634860188, 28.758368361535904 ], [ -81.987978336945048, 28.758273225684803 ], [ -81.987984107882895, 28.758170797763857 ], [ -81.987958140178847, 28.758046728499977 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987958140178847, 28.758046728499977 ], [ -81.98857489318226, 28.75793345683207 ], [ -81.989323651507348, 28.75772156687373 ], [ -81.990024694345252, 28.757474144036614 ], [ -81.990538957481817, 28.757244956540482 ], [ -81.991057876398969, 28.756981151756371 ], [ -81.991603615574547, 28.756629629593039 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcpherson Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984147812257859, 28.761582640132488 ], [ -81.984243821288786, 28.761576377628966 ], [ -81.984368006953048, 28.761570117441387 ], [ -81.984593420648565, 28.761546115706548 ], [ -81.985184607512053, 28.761449110992508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcpherson Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982033205105594, 28.762020593260324 ], [ -81.982107277804801, 28.761963821212298 ], [ -81.982183164052174, 28.761918289533405 ], [ -81.982255677288251, 28.761877817562581 ], [ -81.982343368086049, 28.761839033078736 ], [ -81.982498138281997, 28.761772942342585 ], [ -81.982609900855792, 28.761712892293879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcpherson Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981728797172707, 28.763020686264632 ], [ -81.981770299575473, 28.762756118907312 ], [ -81.981798832479683, 28.762561585845535 ], [ -81.981811801432343, 28.762487662538412 ], [ -81.981828661754577, 28.762407255702563 ], [ -81.981840334021683, 28.762346301224635 ], [ -81.981855897866325, 28.762300909540755 ], [ -81.981874054278009, 28.762256814834998 ], [ -81.981899992742527, 28.762203642057106 ], [ -81.981924634547681, 28.762163439913383 ], [ -81.981954463310103, 28.762115454168963 ], [ -81.982033205105594, 28.762020593260324 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dewey Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980506218985553, 28.761745474826736 ], [ -81.980999290980762, 28.761626868160558 ], [ -81.981281197691843, 28.761554604136094 ], [ -81.98152155632809, 28.761474192200371 ], [ -81.981614492435, 28.761433137775366 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dewey Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981614492435, 28.761433137775366 ], [ -81.981857602917188, 28.761301312461498 ], [ -81.982241348974938, 28.761114464006123 ], [ -81.982881690489606, 28.760798232508538 ], [ -81.983354412045074, 28.760588076304078 ], [ -81.983584266909801, 28.760436528773067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Detar Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982033205105594, 28.762020593260324 ], [ -81.981935270856184, 28.761925035521269 ], [ -81.981879620757397, 28.76185589606207 ], [ -81.981825658433635, 28.761791815199942 ], [ -81.981722791162753, 28.761619809584623 ], [ -81.981614492435, 28.761433137775366 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981072422441969, 28.760552578198041 ], [ -81.981088988595502, 28.760547607858538 ], [ -81.981359373692541, 28.760451043520884 ], [ -81.981651832038139, 28.760346201088232 ], [ -81.981969122512353, 28.760219287055662 ], [ -81.982236747982554, 28.760095132220204 ], [ -81.982573350944762, 28.759929591994172 ], [ -81.982955699003142, 28.759737296701385 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Detar Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.981614492435, 28.761433137775366 ], [ -81.981526517955231, 28.761306964556582 ], [ -81.981469796947053, 28.761217252835745 ], [ -81.981329808962414, 28.760975530523019 ], [ -81.981124806390753, 28.760640765470058 ], [ -81.981072422441969, 28.760552578198041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Calendar Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979405363479501, 28.763866939434397 ], [ -81.979527173970695, 28.763893462716812 ], [ -81.979680418928709, 28.763874798087063 ], [ -81.979828337697597, 28.763883060337992 ], [ -81.979930137408658, 28.763900557078632 ], [ -81.980043073191212, 28.763935550426652 ], [ -81.98014328201441, 28.763977701686951 ], [ -81.980228380412768, 28.764003152366598 ], [ -81.980301550118838, 28.764016671707552 ], [ -81.980357221233803, 28.764019058367982 ], [ -81.980403349872589, 28.764013491491792 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Calendar Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980403349872589, 28.764013491491792 ], [ -81.980369946578449, 28.763977702517018 ], [ -81.980306321411049, 28.763950661583916 ], [ -81.98022042812579, 28.763921235226281 ], [ -81.980086019115916, 28.763866358088709 ], [ -81.980002627494187, 28.763832558431357 ], [ -81.979906357957901, 28.763807999232785 ], [ -81.979825806060887, 28.763795229297216 ], [ -81.979737395576507, 28.763783441654489 ], [ -81.979637195747443, 28.763780493974693 ], [ -81.979576291115478, 28.76378245900074 ], [ -81.979536015681447, 28.763773618284176 ], [ -81.979494755722229, 28.763761830437151 ], [ -81.979439259664161, 28.76374507133858 ], [ -81.979392592661597, 28.763713695129276 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Calendar Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.980403349872589, 28.764013491491792 ], [ -81.980875766590529, 28.764077116105327 ], [ -81.981925583681331, 28.764210728668893 ], [ -81.982308129553871, 28.764257652299996 ], [ -81.982408338688884, 28.764275148768213 ], [ -81.982528431933346, 28.764308551995047 ], [ -81.982616711647864, 28.764341159666422 ], [ -81.982689084920011, 28.76437456287784 ], [ -81.982753505389113, 28.764415124013407 ], [ -81.982837808506645, 28.76447477167078 ], [ -81.982992893634545, 28.764618721832861 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979448091990236, 28.76672140979392 ], [ -81.979502368863351, 28.766707630683918 ], [ -81.979572769052453, 28.766706639834844 ], [ -81.979646143043865, 28.766705978745339 ], [ -81.979740341563826, 28.766719530444426 ], [ -81.979823631878276, 28.766738038671207 ], [ -81.980167739514826, 28.766801929737227 ], [ -81.980602855893636, 28.766865709483959 ], [ -81.981061357936625, 28.766914606510497 ], [ -81.981512773746246, 28.766941535906202 ], [ -81.981891199188809, 28.76695429210449 ], [ -81.982347739595014, 28.766958488235534 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982347739595014, 28.766958488235534 ], [ -81.983109992191231, 28.767000323901573 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983109053234216, 28.766887545904609 ], [ -81.982342333776316, 28.766849937902386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982342333776316, 28.766849937902386 ], [ -81.981495376585286, 28.766829813146231 ], [ -81.980882034128868, 28.766784315418455 ], [ -81.980544047588964, 28.766744000988915 ], [ -81.979800839134029, 28.766629489231185 ], [ -81.979586782196122, 28.766562173811511 ], [ -81.979537869282282, 28.766530210817361 ], [ -81.979484363442978, 28.766483088179978 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982347739595014, 28.766958488235534 ], [ -81.982342333776316, 28.766849937902386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pearl Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982342333776316, 28.766849937902386 ], [ -81.982386859098725, 28.766304772894717 ], [ -81.982429011500329, 28.76599778492011 ], [ -81.982470368479781, 28.765717836548923 ], [ -81.98252683711172, 28.765365516171212 ], [ -81.982586487103774, 28.765176232234435 ], [ -81.982625457535391, 28.76507681908307 ], [ -81.982690672822173, 28.7649607047091 ], [ -81.982787701674098, 28.764833455280066 ], [ -81.982896661082037, 28.764714158518686 ], [ -81.982992893634545, 28.764618721832861 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pearl Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.982992893634545, 28.764618721832861 ], [ -81.983739602576421, 28.764139868930634 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Lake Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983739602576421, 28.764139868930634 ], [ -81.983441702483034, 28.763735013265951 ], [ -81.983353727712384, 28.763547331207732 ], [ -81.98331132611554, 28.763393831836748 ], [ -81.983299404645166, 28.763228493330285 ], [ -81.983304581719423, 28.76307342892828 ], [ -81.983326504887202, 28.762967190096781 ], [ -81.983351800454372, 28.762877814186346 ], [ -81.98338849111741, 28.762795825149183 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Myrtle Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006110400602267, 28.786620969689256 ], [ -82.004309416190139, 28.786621698614862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Aurelia Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00694561373021, 28.786150863877811 ], [ -82.006116405797698, 28.78615085921804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Azalea Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006945730204862, 28.785423062557168 ], [ -82.00694561373021, 28.786150863877811 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Azalea Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00694561373021, 28.786150863877811 ], [ -82.006946689895628, 28.786244396823278 ], [ -82.007005425027032, 28.786289651523514 ], [ -82.007770915512353, 28.786286767512905 ], [ -82.007778621894218, 28.78542595656986 ], [ -82.006945730204862, 28.785423062557168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Azalea Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006945730204862, 28.785423062557168 ], [ -82.006126318444814, 28.785418243657155 ], [ -82.006116405797698, 28.78615085921804 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Azalea Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006116405797698, 28.78615085921804 ], [ -82.006110400602267, 28.786620969689256 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993532806012738, 28.75444975039894 ], [ -81.993416070916794, 28.754415392493904 ], [ -81.993292648108621, 28.754357227376779 ], [ -81.992984799892497, 28.754151523452027 ], [ -81.992502456288577, 28.753872049971097 ], [ -81.99218467683832, 28.7537188351377 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.99218467683832, 28.7537188351377 ], [ -81.992759232238072, 28.754143011525318 ], [ -81.993199016288571, 28.754428160199726 ], [ -81.993319602446675, 28.754537397392866 ], [ -81.993385350884893, 28.754627156114225 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beebe Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.985454029350876, 28.761880610716759 ], [ -81.985409677445517, 28.761843807582522 ], [ -81.985364758239541, 28.761792879492422 ], [ -81.985315738094442, 28.76172639949446 ], [ -81.985275447854548, 28.761665964160329 ], [ -81.985242544327804, 28.761602170298442 ], [ -81.985202925076038, 28.761512188625495 ], [ -81.985184607512053, 28.761449110992508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Beebe Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987415901720908, 28.762489759074537 ], [ -81.987386943086463, 28.762393803907599 ], [ -81.987354223856855, 28.762326319202412 ], [ -81.987328149850256, 28.762280818279297 ], [ -81.987294407907342, 28.762236338949279 ], [ -81.987241237473782, 28.762190838142061 ], [ -81.987196247426581, 28.762157606907483 ], [ -81.987145133945859, 28.762131334645268 ], [ -81.987076103825714, 28.762109038953948 ], [ -81.987012708049136, 28.762101370341011 ], [ -81.986857799572434, 28.762106482199524 ], [ -81.986706470078701, 28.762111084426234 ], [ -81.986554116759137, 28.76211415063629 ], [ -81.986420169271966, 28.762108015804774 ], [ -81.9862491067923, 28.762098881342745 ], [ -81.986118928550454, 28.762086600914646 ], [ -81.986001030992242, 28.762069407623152 ], [ -81.985873308728486, 28.762039933554242 ], [ -81.98575049873034, 28.76201045988682 ], [ -81.985632601349167, 28.761971160396236 ], [ -81.985534353859052, 28.761924492794613 ], [ -81.985454029350876, 28.761880610716759 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Botello Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991150323025963, 28.954130816475029 ], [ -81.991160148944118, 28.954120154751706 ], [ -81.991194167720082, 28.954083245171887 ], [ -81.991290591028658, 28.953980910028562 ], [ -81.991390340287779, 28.953840561475097 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcneill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.989458502586942, 28.781497141162408 ], [ -81.989225848889774, 28.781504155236025 ], [ -81.988953682983791, 28.781543504615119 ], [ -81.988524119239045, 28.781654993635019 ], [ -81.987868296349987, 28.781868132889425 ], [ -81.987330520748216, 28.782084551977167 ], [ -81.9866222313305, 28.782346878000151 ], [ -81.985747565345733, 28.782672843706901 ], [ -81.98506127108665, 28.782908434587213 ], [ -81.984562768833896, 28.783039887743165 ], [ -81.984252969858105, 28.783103277203821 ], [ -81.983545709164673, 28.783170218893183 ], [ -81.982722616618304, 28.783126436112401 ], [ -81.981217013320773, 28.782906403724407 ], [ -81.980601397258837, 28.782776184320149 ], [ -81.980111044525259, 28.782622950946173 ], [ -81.979657905262229, 28.78243687988196 ], [ -81.979150039655366, 28.782145735075002 ], [ -81.978714413696011, 28.781837076862274 ], [ -81.978479921442968, 28.781631297265374 ], [ -81.976577977032832, 28.779860505375666 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017094004747364, 28.838451595909135 ], [ -82.017255366977608, 28.838382306107441 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016502421761174, 28.838306136011461 ], [ -82.01653297645305, 28.838276909411416 ], [ -82.016556889905274, 28.83824236809275 ], [ -82.016575489176304, 28.838202513707571 ], [ -82.016586117701422, 28.838161331158883 ], [ -82.01658877446458, 28.838118818644077 ], [ -82.016586118091197, 28.838070993969286 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016586118091197, 28.838070993969286 ], [ -82.016575490180955, 28.838036453095345 ], [ -82.016556891148895, 28.837997927665572 ], [ -82.016527664647185, 28.837954086182435 ], [ -82.016489137940354, 28.837919545860455 ], [ -82.016450611455355, 28.837892976509053 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016450611455355, 28.837892976509053 ], [ -82.016396143971008, 28.837873048176306 ], [ -82.016331047168237, 28.83786241932777 ], [ -82.016287207969981, 28.837859762587552 ], [ -82.01623938125131, 28.837862419076728 ], [ -82.016202183011941, 28.837870389821358 ], [ -82.016145058824435, 28.837900945780483 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016145058824435, 28.837900945780483 ], [ -82.016109188753191, 28.837930171096179 ], [ -82.016074647732992, 28.837966040841202 ], [ -82.016048077534904, 28.838017851635293 ], [ -82.016030807924253, 28.838076305056319 ], [ -82.016028150867754, 28.83813210132719 ], [ -82.016045420526495, 28.838190554434341 ], [ -82.016075974513356, 28.838245022341031 ], [ -82.016114502000946, 28.838284877368459 ], [ -82.016170298077313, 28.838320746721713 ], [ -82.016230080529596, 28.838343331827474 ], [ -82.016291190922715, 28.838351303889144 ], [ -82.01634831566318, 28.838349974500552 ], [ -82.016406769315935, 28.838340675756559 ], [ -82.016455923522784, 28.838326062580986 ], [ -82.016502421761174, 28.838306136011461 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016502421761174, 28.838306136011461 ], [ -82.0165589628932, 28.838301590779324 ], [ -82.016613721530632, 28.838300808354372 ], [ -82.016667696663305, 28.838309413603326 ], [ -82.016741229434857, 28.83832584221911 ], [ -82.016813197262309, 28.838347745278824 ], [ -82.017094004747364, 28.838451595909135 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017255366977608, 28.838382306107441 ], [ -82.017129230957778, 28.838337577904504 ], [ -82.016954786717264, 28.838277342941414 ], [ -82.016832753963811, 28.838231971523541 ], [ -82.016714633163417, 28.838188946431899 ], [ -82.016673956465127, 28.838161567128743 ], [ -82.016637189097452, 28.838133405953922 ], [ -82.016613723032492, 28.838105245007014 ], [ -82.016586118091197, 28.838070993969286 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016160252388531, 28.832332191291094 ], [ -82.016125791736769, 28.832304227482478 ], [ -82.016086591166953, 28.832281616691091 ], [ -82.016043711411541, 28.832264970743278 ], [ -82.015998312756338, 28.832254740062222 ], [ -82.01595162364471, 28.832251201480087 ], [ -82.015904907437843, 28.832254450747435 ], [ -82.015859428230016, 28.832264399942304 ], [ -82.015816416644256, 28.832280779849306 ], [ -82.015777036533507, 28.832303147244115 ], [ -82.015742353488349, 28.832330896886468 ], [ -82.015713306003377, 28.832363277897148 ], [ -82.015690680082386, 28.832399414075727 ], [ -82.015675087969498, 28.832438327609381 ], [ -82.015666951581807, 28.832478965531507 ], [ -82.015666491091935, 28.832520228213721 ], [ -82.015673718969325, 28.832560999120933 ], [ -82.015688439642005, 28.832600175023806 ], [ -82.015710254787535, 28.832636695851413 ], [ -82.015738574110642, 28.832669573376155 ], [ -82.015772631315528, 28.832697917954736 ], [ -82.01581150484094, 28.832720962601666 ], [ -82.015854142797025, 28.832738083743617 ], [ -82.015899391428874, 28.832748818093233 ], [ -82.015946026336977, 28.832752875185673 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015946026336977, 28.832752875185673 ], [ -82.015984004501831, 28.832749824921269 ], [ -82.016021025621754, 28.832741765245636 ], [ -82.016056242545147, 28.832728880587783 ], [ -82.016088849406529, 28.832711465786396 ], [ -82.016118100067217, 28.832689919342947 ], [ -82.016143325189375, 28.832664734302604 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016143325189375, 28.832664734302604 ], [ -82.016165101482613, 28.832636736848482 ], [ -82.016182867055022, 28.83260662328119 ], [ -82.016196360404578, 28.832574836866289 ], [ -82.016205382916013, 28.832541845492884 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016205382916013, 28.832541845492884 ], [ -82.016210829754769, 28.832498473171075 ], [ -82.016208917560505, 28.832454868942218 ], [ -82.016199688564697, 28.832411995614315 ], [ -82.01618334655781, 28.832370799855497 ], [ -82.016160252388531, 28.832332191291094 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015946026336977, 28.832752875185673 ], [ -82.016011581015533, 28.832811483502073 ], [ -82.016092287896015, 28.832951375368996 ], [ -82.016156851442588, 28.833177352809059 ], [ -82.016205274522946, 28.833392570237358 ], [ -82.016242936724126, 28.833610477756125 ], [ -82.016256386833746, 28.833812243955652 ], [ -82.016256385810493, 28.834205013998268 ], [ -82.016253689678891, 28.835660418428439 ], [ -82.016248303293438, 28.83714810470282 ], [ -82.01624227324838, 28.837463592628104 ], [ -82.016240733484523, 28.837669760086985 ], [ -82.016234578927381, 28.837731302659844 ], [ -82.01621457725652, 28.83778822971696 ], [ -82.016185344851323, 28.837846695360721 ], [ -82.016145058824435, 28.837900945780483 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016450611455355, 28.837892976509053 ], [ -82.016411513946608, 28.837851310711002 ], [ -82.016391512839974, 28.837817462980883 ], [ -82.016377666388664, 28.837783614533404 ], [ -82.016376127498745, 28.837745150257383 ], [ -82.016376127816969, 28.837612834119771 ], [ -82.016377668746514, 28.83706664388415 ], [ -82.016383826466992, 28.836200432601114 ], [ -82.016388445827857, 28.835326527408856 ], [ -82.016385373039, 28.834455700767748 ], [ -82.016391529397239, 28.833783348169039 ], [ -82.016383837039371, 28.833663340324645 ], [ -82.016373067625139, 28.833571026465059 ], [ -82.016356143312734, 28.833461788729021 ], [ -82.016319218037708, 28.833266390123303 ], [ -82.016271524534105, 28.833106379451788 ], [ -82.016230189248361, 28.83298573120976 ], [ -82.016191765087058, 28.832884512917023 ], [ -82.016163649087829, 28.832801103186082 ], [ -82.016149591073187, 28.832752368437188 ], [ -82.016142093900669, 28.832708320426701 ], [ -82.016143325189375, 28.832664734302604 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016205382916013, 28.832541845492884 ], [ -82.016240280650905, 28.832505332302318 ], [ -82.01628868427386, 28.832464736407072 ], [ -82.016344893849165, 28.832436632044505 ], [ -82.016433893372096, 28.832413212238123 ], [ -82.016530698687475, 28.832394476241941 ], [ -82.016669662202744, 28.832383546482365 ], [ -82.016910115400734, 28.832377302764833 ], [ -82.0171146559899, 28.832383549121808 ], [ -82.017270793780995, 28.832394479577705 ], [ -82.017408196066754, 28.83239916458999 ], [ -82.017558089162108, 28.832389797166027 ], [ -82.017729841024533, 28.832361694008497 ], [ -82.017898471535077, 28.832321098576337 ], [ -82.018085837792441, 28.83224615417328 ], [ -82.018256028046025, 28.832160279378751 ], [ -82.018390307380855, 28.832072842667284 ], [ -82.018510535531703, 28.831971353324921 ], [ -82.018613586491227, 28.831863619473843 ], [ -82.018699463160985, 28.831754323228878 ], [ -82.018779094985092, 28.831626290435214 ], [ -82.018849357672238, 28.831479521522411 ], [ -82.018896199468102, 28.831335875004058 ], [ -82.018918059800612, 28.831229701982704 ], [ -82.018933673492768, 28.831093861909547 ], [ -82.018933674969631, 28.830968951792087 ], [ -82.018919621920176, 28.830844040860438 ], [ -82.018914939050546, 28.830716008481172 ], [ -82.018922745803309, 28.830592660102408 ], [ -82.018944605482062, 28.830489609051725 ], [ -82.018964904453668, 28.830380312429725 ], [ -82.019019553648178, 28.830219491159472 ], [ -82.019086693343809, 28.830069599629326 ], [ -82.019171009148025, 28.829935321063303 ], [ -82.019252201107577, 28.829838516634553 ], [ -82.01933495467658, 28.829782307690987 ], [ -82.019396670578644, 28.829748299292731 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019396670578644, 28.829748299292731 ], [ -82.019441655211978, 28.829751480016597 ], [ -82.019487310853563, 28.829748191082068 ], [ -82.019531755174398, 28.829738426434556 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meggison Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019162376319088, 28.829534865207297 ], [ -82.019171637065227, 28.829573759745241 ], [ -82.019175830704569, 28.829583358829929 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South Buena Vista Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019175830704569, 28.829583358829929 ], [ -82.019173430137954, 28.829636137875614 ], [ -82.019169117016332, 28.829663134625878 ], [ -82.019162480900107, 28.829695486892703 ], [ -82.019147547756816, 28.829737795458403 ], [ -82.019128467745787, 28.829774295527024 ], [ -82.019102751223556, 28.829812455841214 ], [ -82.019074544730984, 28.829850615586459 ], [ -82.019031407616339, 28.829916980799428 ], [ -82.018984951248001, 28.829993299809004 ], [ -82.018935177217259, 28.830082892203215 ], [ -82.018881254776304, 28.830204838298734 ], [ -82.018838946329225, 28.830323465928053 ], [ -82.018823184129047, 28.830395637356851 ], [ -82.018802444145066, 28.830497674045191 ], [ -82.018788342274846, 28.830607176440726 ], [ -82.018781704907767, 28.830685984921427 ], [ -82.018779215006631, 28.830756497927705 ], [ -82.018780044935454, 28.83081456766033 ], [ -82.018784193056632, 28.830891717155801 ], [ -82.01879082881014, 28.830978820580238 ], [ -82.018794147534976, 28.831059288873615 ], [ -82.018789998513384, 28.831140586484345 ], [ -82.018780043924536, 28.831211928803501 ], [ -82.018768429054589, 28.83126999748935 ], [ -82.018737734598261, 28.831375353271891 ], [ -82.018689619782123, 28.831494809026147 ], [ -82.018639015063769, 28.831591868904653 ], [ -82.018582604666307, 28.831684778914354 ], [ -82.018518727579448, 28.831767735622176 ], [ -82.018438258595225, 28.831850691770441 ], [ -82.018335392165696, 28.831941943004342 ], [ -82.018230037252877, 28.83201909140822 ], [ -82.018130488926047, 28.832082967835184 ], [ -82.01800024502684, 28.832148502051098 ], [ -82.01787829902743, 28.832189980459145 ], [ -82.017741419643713, 28.832228969368266 ], [ -82.017569700327655, 28.832260491381405 ], [ -82.017396319856687, 28.832272934079835 ], [ -82.017267736482367, 28.832269614068696 ], [ -82.017105971904186, 28.832256340997983 ], [ -82.016972411222639, 28.832250532743995 ], [ -82.016888624493731, 28.83225385156728 ], [ -82.016808156370985, 28.832261316950522 ], [ -82.01670611930119, 28.832267952011104 ], [ -82.016595787569031, 28.832282883789453 ], [ -82.016473840749782, 28.832303623185101 ], [ -82.016377610161754, 28.832321043508923 ], [ -82.016288017772339, 28.832340123245512 ], [ -82.016249857453772, 28.832342610791748 ], [ -82.016204231348738, 28.832339291929621 ], [ -82.016160252388531, 28.832332191291094 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Alder Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010570452774999, 28.748327176445336 ], [ -82.010958483567919, 28.747023013149992 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leanne Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010570452774999, 28.748327176445336 ], [ -82.010682459293207, 28.748393950173153 ], [ -82.010855220169034, 28.748484579458424 ], [ -82.011027981772898, 28.748569545545802 ], [ -82.011146932013304, 28.748629021283989 ], [ -82.011251720735657, 28.748665839783314 ], [ -82.011410321672017, 28.748722483464473 ], [ -82.011568922467802, 28.748776295471266 ], [ -82.011724690816578, 28.748815946470089 ], [ -82.01191444528682, 28.748858429620206 ], [ -82.011932720028383, 28.74886294515543 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.088611686989481, 28.811416667065561 ], [ -82.088633630942354, 28.811803125347225 ], [ -82.088760212723798, 28.813961726096991 ], [ -82.088787450743041, 28.814433612254497 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.089062670768087, 28.814432550041253 ], [ -82.089050211420897, 28.814220292747841 ], [ -82.088903077365501, 28.811561914041114 ], [ -82.088893619269896, 28.811406529036109 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.088611686989481, 28.811416667065561 ], [ -82.088893619269896, 28.811406529036109 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118942712305028, 28.714066185213671 ], [ -82.118893923704519, 28.714196163669897 ], [ -82.118523746020699, 28.715185221764973 ], [ -82.117946754018959, 28.716718486425446 ], [ -82.117459119495066, 28.718023675261396 ], [ -82.116945934995485, 28.719392092845627 ], [ -82.116414862249414, 28.720807928078393 ], [ -82.11598591611849, 28.721957301350869 ], [ -82.115429289748391, 28.723445389601242 ], [ -82.114836898033474, 28.725028315382495 ], [ -82.114395147033306, 28.726209298566612 ], [ -82.113922742608722, 28.727471570898963 ], [ -82.113475852115329, 28.728654810795334 ], [ -82.113049397524549, 28.729799658030213 ], [ -82.112490128502913, 28.731289992406268 ], [ -82.111900213844223, 28.732877415016976 ], [ -82.111517134867668, 28.733898064105162 ], [ -82.111185125139741, 28.734783228835511 ], [ -82.110922082122272, 28.735496775058621 ], [ -82.110720290545061, 28.736011621743128 ], [ -82.110526201021358, 28.73654226333322 ], [ -82.110306549132744, 28.73712258826885 ], [ -82.110056264222152, 28.737802259868243 ], [ -82.109857040682186, 28.738330647802915 ], [ -82.109719128173822, 28.738707741374771 ], [ -82.109399848831629, 28.739547741356613 ], [ -82.109177636007274, 28.740141611045757 ], [ -82.108651760453242, 28.741551533514507 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.108939848465369, 28.7415510175489 ], [ -82.109229515159342, 28.740771378242236 ], [ -82.109566669049158, 28.739872669232696 ], [ -82.110074943326751, 28.738520092521643 ], [ -82.110565322866023, 28.737212673207573 ], [ -82.110876905956331, 28.7363749313771 ], [ -82.111328961947237, 28.735173638896114 ], [ -82.111786108803884, 28.733952021104123 ], [ -82.112179385018081, 28.732888471810984 ], [ -82.112567566536427, 28.731856529326183 ], [ -82.112728440588683, 28.73141395170423 ], [ -82.113014477939615, 28.730668778606276 ], [ -82.113633144001312, 28.72900327203098 ], [ -82.11408699728068, 28.727796495931692 ], [ -82.114380657544842, 28.727015194947441 ], [ -82.11511607480881, 28.725064198137741 ], [ -82.115716111121529, 28.723449661625175 ], [ -82.116145071216451, 28.722304802865168 ], [ -82.116671044454975, 28.720900261441866 ], [ -82.117194461305886, 28.719511520527711 ], [ -82.117702534806341, 28.7181543936364 ], [ -82.118284621482474, 28.716589523739231 ], [ -82.118807996789002, 28.715200775808071 ], [ -82.119211774512763, 28.71412389301479 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119211774512763, 28.71412389301479 ], [ -82.118942712305028, 28.714066185213671 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.146889659030236, 28.662909027709933 ], [ -82.14703968912967, 28.66268882212697 ], [ -82.147296887966959, 28.662311110264042 ], [ -82.147874378823019, 28.661471982034367 ], [ -82.148257747809637, 28.660913993165 ], [ -82.148869192506766, 28.660025501179721 ], [ -82.149274390631632, 28.659437462155612 ], [ -82.149803310159044, 28.65865842438803 ], [ -82.150368632453421, 28.657838599451463 ], [ -82.150865991138346, 28.657102483731659 ], [ -82.151013735523037, 28.656883560147943 ], [ -82.15184410876482, 28.655674542630191 ], [ -82.152370175294607, 28.654910348281696 ], [ -82.15294007126252, 28.654079998560743 ], [ -82.153437744717309, 28.653347744635248 ], [ -82.153729132531211, 28.652923442864257 ], [ -82.15440988358047, 28.651931123527465 ], [ -82.155111244884395, 28.650904585045414 ], [ -82.155669391597897, 28.650104132065685 ], [ -82.155843530485583, 28.649830139509969 ], [ -82.156555185823336, 28.64879446343739 ], [ -82.15755137538639, 28.647339615430706 ], [ -82.160233462681788, 28.643439709469131 ], [ -82.161997480270486, 28.640837794474379 ], [ -82.162518163303346, 28.640082552171837 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.162269195126598, 28.63997337945343 ], [ -82.16212341403164, 28.640185391591579 ], [ -82.161924907371827, 28.640475114008748 ], [ -82.161716093361051, 28.640785363856615 ], [ -82.16145570388457, 28.641161779588188 ], [ -82.161012284099812, 28.641814220830458 ], [ -82.160256896077883, 28.64291835516655 ], [ -82.159545306188249, 28.643947211617249 ], [ -82.15892654928804, 28.644861985642052 ], [ -82.158511440125139, 28.645461958841846 ], [ -82.158070571349853, 28.646116666462987 ], [ -82.156899997699071, 28.647823031336056 ], [ -82.156376583027935, 28.648587240865751 ], [ -82.155564374199017, 28.649775751862624 ], [ -82.154816611767856, 28.650870728058226 ], [ -82.154125554586571, 28.651876737904463 ], [ -82.153965688666744, 28.652113979848629 ], [ -82.153692346186602, 28.652506349874592 ], [ -82.153504102570722, 28.652777813600736 ], [ -82.152828508810018, 28.653772401804712 ], [ -82.152593833941154, 28.654105461780254 ], [ -82.152101312496072, 28.654833148204492 ], [ -82.151490145572879, 28.655722804590759 ], [ -82.150780976969514, 28.656758450475259 ], [ -82.150144004454916, 28.6576891591424 ], [ -82.149957930555189, 28.657967723966216 ], [ -82.149654645594723, 28.658407680513982 ], [ -82.14905293450569, 28.659289733740955 ], [ -82.148616196196983, 28.659927129852793 ], [ -82.147992624491721, 28.660837079631943 ], [ -82.147667483598951, 28.661309224389701 ], [ -82.147046320392363, 28.662212733421118 ], [ -82.146812168207376, 28.66255610697738 ], [ -82.146739054461946, 28.66266256986485 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "I 75", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.162269195126598, 28.63997337945343 ], [ -82.162518163303346, 28.640082552171837 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021005730550684, 28.755861617874938 ], [ -82.02053196406581, 28.755858875954612 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 104", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.038065641103231, 28.945615258103405 ], [ -82.03776822586633, 28.945603730081817 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.161488078973306, 28.861711461470428 ], [ -82.16214832996954, 28.861542512517076 ], [ -82.162536550140587, 28.861434685052334 ], [ -82.162882574941065, 28.861330590428345 ], [ -82.163103713712346, 28.861245497174782 ], [ -82.163339126136151, 28.861157242726613 ], [ -82.1635638155783, 28.861059577199107 ], [ -82.163795642501086, 28.86096190176092 ], [ -82.165338542097786, 28.860280109843508 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 56th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.175946598793288, 28.837792741541119 ], [ -82.176066242256795, 28.837846642146925 ], [ -82.176147043679194, 28.837860761904864 ], [ -82.176525033803799, 28.83782897438703 ], [ -82.176715655748609, 28.837820191864093 ], [ -82.177216529186367, 28.837847987120586 ], [ -82.177365199687102, 28.837870553123693 ], [ -82.177520362180985, 28.837910180218021 ], [ -82.177707877341035, 28.837975371141795 ], [ -82.177892190628754, 28.838057634868491 ], [ -82.178047349797666, 28.838094417299679 ], [ -82.178292958551168, 28.838119699782688 ], [ -82.178516004455602, 28.838176307021381 ], [ -82.178713195454279, 28.838230103946824 ], [ -82.179240098295097, 28.838363123564005 ], [ -82.179421121262223, 28.83840840506149 ], [ -82.179621501408221, 28.838436589983807 ], [ -82.179821876790498, 28.838461931458767 ], [ -82.180177417574228, 28.838650426386724 ], [ -82.180598163084838, 28.838933177284574 ], [ -82.181209654104094, 28.839396104286831 ], [ -82.181630380537328, 28.839785312779789 ], [ -82.18190556885942, 28.84009505482177 ], [ -82.182060998887465, 28.840285465440274 ], [ -82.182193749447947, 28.840441765072939 ], [ -82.182294143871388, 28.840572501692048 ], [ -82.182397825058743, 28.840734530156777 ], [ -82.182446536031605, 28.840873871128437 ], [ -82.182602050290711, 28.841112647077967 ], [ -82.182673341001205, 28.84122919874514 ], [ -82.18275751179776, 28.841320127462666 ], [ -82.182926002569317, 28.841587334184606 ], [ -82.183052465404899, 28.841843218567327 ], [ -82.183088090446745, 28.841888691542952 ], [ -82.183133426760051, 28.84194553120884 ], [ -82.183185230382207, 28.842005207068709 ], [ -82.183243467586621, 28.842047804454129 ], [ -82.183301699868522, 28.842087555960266 ], [ -82.183549980454316, 28.842227031350163 ], [ -82.183614654942247, 28.842259258714449 ], [ -82.183757304664667, 28.842337102604983 ], [ -82.18389358901031, 28.842411089525665 ], [ -82.184029456452919, 28.842499101351368 ], [ -82.184175033623035, 28.842595636510179 ], [ -82.184285083193274, 28.842700753833661 ], [ -82.184395145929201, 28.842814405919501 ], [ -82.184492285228359, 28.842928076422737 ], [ -82.184557033805987, 28.842999113933818 ], [ -82.184634716296671, 28.843072979637672 ], [ -82.184728592818217, 28.84316958376613 ], [ -82.184783635173631, 28.843232099533207 ], [ -82.184835421357221, 28.843280394934975 ], [ -82.184903348490209, 28.843320132502555 ], [ -82.185000367429524, 28.843365521109646 ], [ -82.185015178639617, 28.843370038548741 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 614A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.153599917085799, 28.628626722763119 ], [ -82.153614989321326, 28.628568761300141 ], [ -82.153660408413828, 28.628537509993301 ], [ -82.153723545792715, 28.628530753381597 ], [ -82.153796801103567, 28.628534012995349 ], [ -82.15447124525322, 28.628555537085948 ], [ -82.155074929271393, 28.628552622757692 ], [ -82.155948871378541, 28.628542710437785 ], [ -82.156153478105566, 28.628549161567765 ], [ -82.156330290022183, 28.628548959762796 ], [ -82.156529844604748, 28.62855541702212 ], [ -82.1566258255272, 28.628553077973788 ], [ -82.156714238101785, 28.628557432975686 ], [ -82.156848112889705, 28.628559507733637 ], [ -82.156969356991624, 28.628559369038229 ], [ -82.15730784422864, 28.628572349566927 ], [ -82.157396262468154, 28.628581161661927 ], [ -82.15745436176374, 28.628583323318566 ], [ -82.157522566699313, 28.62858770113947 ], [ -82.157557919934007, 28.628580974855172 ], [ -82.157600831472635, 28.628560868991539 ], [ -82.157636156023671, 28.628536311639035 ], [ -82.157661354958464, 28.62849616819522 ], [ -82.157671388392615, 28.628449356879152 ], [ -82.157676324071133, 28.628371350451761 ], [ -82.157676184279183, 28.628277750293709 ], [ -82.157685868184629, 28.627996936316951 ], [ -82.157688174571248, 28.627849845489123 ], [ -82.157695398921192, 28.627613607085909 ], [ -82.15770019140858, 28.627439771709877 ], [ -82.157709834213946, 28.62713221427585 ], [ -82.15770186529852, 28.626869248154552 ], [ -82.157698720122028, 28.626454734314837 ], [ -82.157693341851711, 28.626236337923647 ], [ -82.157690579502557, 28.626078111764006 ], [ -82.157692905826309, 28.62594439351064 ], [ -82.157697664970925, 28.625748272202902 ], [ -82.157704914782613, 28.625529860274085 ], [ -82.157712057788245, 28.625237906157963 ], [ -82.157719235330617, 28.624970466692911 ], [ -82.15772047039647, 28.624925061447644 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 757", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.084513352767118, 28.537595230380134 ], [ -82.084514497436956, 28.537585252388254 ], [ -82.084541516579222, 28.537414703270414 ], [ -82.084574572598484, 28.537244152225252 ], [ -82.08460462917796, 28.537097582075031 ], [ -82.084623378106585, 28.536958638338465 ], [ -82.084813241610519, 28.536317684469264 ], [ -82.084896330196216, 28.536037437918086 ], [ -82.084944474852492, 28.535875137524918 ], [ -82.084982595990866, 28.535726360532411 ], [ -82.085020561001315, 28.535558869775894 ], [ -82.085040659291053, 28.535402545843777 ], [ -82.08504959172113, 28.535259621516467 ], [ -82.085042893539892, 28.535125629320852 ], [ -82.085033959913687, 28.534989403385854 ], [ -82.085002695722594, 28.534817445572685 ], [ -82.084944631988691, 28.534598592041934 ], [ -82.084888801640304, 28.534375270460988 ], [ -82.084817339324744, 28.534069321240651 ], [ -82.084615729002692, 28.533280411318298 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "US 441", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.960672957924544, 28.955364330294294 ], [ -81.960369768481144, 28.955064005228987 ], [ -81.960366904225893, 28.955061167576879 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Reston Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012327294951149, 28.959699565893377 ], [ -82.012351571100098, 28.959710512150945 ], [ -82.012387477324566, 28.959721033298184 ], [ -82.012427538468785, 28.95973010228062 ], [ -82.012492363975667, 28.959730988871808 ], [ -82.012554146424762, 28.95973098424157 ], [ -82.012620994993398, 28.959730977321115 ], [ -82.012707089277157, 28.959730969521392 ], [ -82.012785077564061, 28.959730962408482 ], [ -82.012932956348607, 28.959730949699377 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054462604693256, 28.521625740129956 ], [ -82.054429634947027, 28.521398442398503 ], [ -82.05442963547371, 28.521142649786416 ], [ -82.054429635522055, 28.520625118029212 ], [ -82.054429636206152, 28.519804204385466 ], [ -82.054429636302885, 28.519268825790334 ], [ -82.054441534298604, 28.518346785095673 ], [ -82.054441534870818, 28.516538394476459 ], [ -82.054453433158542, 28.51474784993955 ], [ -82.054465331109199, 28.512951357516386 ], [ -82.054465331576566, 28.512154238016567 ], [ -82.054471280509276, 28.510357745450875 ], [ -82.054471280999351, 28.509542779787598 ], [ -82.054465333408444, 28.507984233066939 ], [ -82.054471282129157, 28.507312035301332 ], [ -82.054483179594129, 28.506407840653239 ], [ -82.054518871990865, 28.504980164235704 ], [ -82.054542667589075, 28.503903458669267 ], [ -82.054572411689477, 28.503058750578884 ], [ -82.054584309257365, 28.501767892539153 ], [ -82.054585279586078, 28.501716081624437 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 110", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.030545397806449, 28.912825447284142 ], [ -82.030473017762361, 28.912827877920702 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035359885784203, 28.845665481930979 ], [ -82.035935722286638, 28.845849931888559 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 674", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.148437019082181, 28.632908911424099 ], [ -82.148457153618835, 28.632226521783814 ], [ -82.148443758138512, 28.631639920957912 ], [ -82.148450248099209, 28.630866591397293 ], [ -82.148448905773435, 28.629912755962131 ], [ -82.148449852474045, 28.628789544710653 ], [ -82.148450902617142, 28.62773987545318 ], [ -82.148445261391544, 28.627320906536141 ], [ -82.148448928539693, 28.626335865024711 ], [ -82.148452511063709, 28.625290651079858 ], [ -82.148449724991323, 28.625105678512785 ], [ -82.148451806080828, 28.624789216509196 ], [ -82.148456004809802, 28.624183034099385 ], [ -82.148460959647736, 28.624113942116381 ], [ -82.14846090011514, 28.624071599079599 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northwest 44th Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.178054348462211, 28.858442306452723 ], [ -82.178055569381769, 28.858665241510241 ], [ -82.178069580319487, 28.859671043815304 ], [ -82.178083735741453, 28.860304755429755 ], [ -82.178001687027134, 28.860567413620981 ], [ -82.177840436975089, 28.860900005712825 ], [ -82.17782153752232, 28.860981029982732 ], [ -82.177821673820858, 28.861062030144062 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West SR 44", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.173873330899852, 28.858762609745966 ], [ -82.173993143786902, 28.858753412954115 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lead Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955013932774392, 28.955686475819462 ], [ -81.95589404241241, 28.956553269453376 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lead Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95589404241241, 28.956553269453376 ], [ -81.95594341039245, 28.956601772121594 ], [ -81.955977888893344, 28.956629490112125 ], [ -81.956067803969987, 28.956683574089027 ], [ -81.956713106927097, 28.957037146641369 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 136th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956713106927097, 28.957037146641369 ], [ -81.956597888517322, 28.95716739390382 ], [ -81.956510065338477, 28.957336012674695 ], [ -81.956436293862538, 28.957497603495888 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Standard Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95589404241241, 28.956553269453376 ], [ -81.955827564027089, 28.95660619581199 ], [ -81.95577807644608, 28.956645594278871 ], [ -81.955699175438852, 28.956666599723601 ], [ -81.954427822374427, 28.956697432368394 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trend Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954416697736093, 28.955865155977648 ], [ -81.954427822374427, 28.956697432368394 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Trend Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954403348220467, 28.955039557487741 ], [ -81.954416697736093, 28.955865155977648 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Raise Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.956318512113043, 28.954802091548409 ], [ -81.956250588982968, 28.954817589705364 ], [ -81.956083010564129, 28.954855829943828 ], [ -81.956022462247347, 28.954869645824015 ], [ -81.955950865969911, 28.954912437844516 ], [ -81.955805430217296, 28.955032580599372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Raise Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955805430217296, 28.955032580599372 ], [ -81.95535774141814, 28.955400592385722 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Raise Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.95535774141814, 28.955400592385722 ], [ -81.955013932774392, 28.955686475819462 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Raise Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.955013932774392, 28.955686475819462 ], [ -81.95489740577996, 28.955781251235432 ], [ -81.954851618609567, 28.955818492330874 ], [ -81.954821813571314, 28.95584273407383 ], [ -81.954739324161594, 28.955857129366837 ], [ -81.954416697736093, 28.955865155977648 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Curve Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954403348220467, 28.955039557487741 ], [ -81.954753236624981, 28.955028785416538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Curve Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954753236624981, 28.955028785416538 ], [ -81.954920172472342, 28.955023726584734 ], [ -81.954993522171065, 28.955047753996816 ], [ -81.955054224809643, 28.955099605601614 ], [ -81.95535774141814, 28.955400592385722 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Precedent Pkwy", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954786121501613, 28.953684462369267 ], [ -81.954733005903734, 28.953804603521665 ], [ -81.954735535155365, 28.953984183871647 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Precedent Pkwy", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954735535155365, 28.953984183871647 ], [ -81.954753236624981, 28.955028785416538 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Blaze Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954735535155365, 28.953984183871647 ], [ -81.955805430217296, 28.955032580599372 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dahill Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011482826687399, 28.747494245391536 ], [ -82.011728863767985, 28.747564182067499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dahill Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011728863767985, 28.747564182067499 ], [ -82.012314465643669, 28.747724279887311 ], [ -82.012508831159906, 28.747777417347578 ], [ -82.012429900751954, 28.748000650587649 ], [ -82.01223947419534, 28.747951778866167 ], [ -82.012022085268001, 28.748575294574628 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dahill Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012022085268001, 28.748575294574628 ], [ -82.011932720028383, 28.74886294515543 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dinsmore Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012022085268001, 28.748575294574628 ], [ -82.011440696532887, 28.748416040655634 ], [ -82.011585622775499, 28.747993903846865 ], [ -82.011728863767985, 28.747564182067499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leanne Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011932720028383, 28.74886294515543 ], [ -82.012155177861843, 28.748917906217027 ], [ -82.012402800619057, 28.748970451962048 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Leanne Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014887922645812, 28.749601789094662 ], [ -82.015618988833964, 28.74981342874494 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Hamilton Court", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014563848261574, 28.750301831950118 ], [ -82.014833356985037, 28.749786148206276 ], [ -82.014867603863863, 28.749683408056029 ], [ -82.014887922645812, 28.749601789094662 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Terrace Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014100239873542, 28.750105787881289 ], [ -82.014563848261574, 28.750301831950118 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Terrace Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014563848261574, 28.750301831950118 ], [ -82.015018067654481, 28.75049381767322 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baltic Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015018067654481, 28.75049381767322 ], [ -82.015293699576063, 28.749994227814614 ], [ -82.016061026623717, 28.750315696106647 ], [ -82.015786363749939, 28.750834224343116 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baltic Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015409470378842, 28.751503013518533 ], [ -82.015191465576905, 28.751410637507494 ], [ -82.014720970183959, 28.751069463768932 ], [ -82.015018067654481, 28.75049381767322 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stampeder Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016706773382069, 28.750412004210681 ], [ -82.016586409372167, 28.75056569126437 ], [ -82.016383354807175, 28.750786049221148 ], [ -82.016258752306399, 28.751009869192945 ], [ -82.016251570455083, 28.751028902620071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Butler Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015786363749939, 28.750834224343116 ], [ -82.016251570455083, 28.751028902620071 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Claver Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01341278962235, 28.75033620449355 ], [ -82.012425413526429, 28.75008617761825 ], [ -82.012389369884147, 28.750063300584632 ], [ -82.012369518369539, 28.750033841555286 ], [ -82.012365035124205, 28.750001181596566 ], [ -82.012374001080957, 28.749964038551646 ], [ -82.012610008207517, 28.749238942753756 ], [ -82.014330040902365, 28.749678193890109 ], [ -82.014100239873542, 28.750105787881289 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Baltic Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.015786363749939, 28.750834224343116 ], [ -82.015409470378842, 28.751503013518533 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Claver Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.014100239873542, 28.750105787881289 ], [ -82.013823841686033, 28.750601059573626 ], [ -82.013455165687148, 28.750444264987351 ], [ -82.01341278962235, 28.75033620449355 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975322199412958, 28.778296696533616 ], [ -81.975278000711683, 28.778280310475001 ], [ -81.975231415364775, 28.778270294203288 ], [ -81.975183617788588, 28.778266900228552 ], [ -81.975135812959167, 28.778270214112819 ], [ -81.975089206035364, 28.778280152313116 ], [ -81.97504497197751, 28.778296464287529 ], [ -81.975004225927307, 28.778318738811269 ], [ -81.974967995095525, 28.778346414343329 ], [ -81.974937192866221, 28.778378793182803 ], [ -81.974912595770405, 28.778415059057554 ], [ -81.974894823909295, 28.778454297702243 ], [ -81.974884325321085, 28.778495519906755 ], [ -81.974881364685132, 28.778537686454055 ], [ -81.974886016648597, 28.778579734318832 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974886016648597, 28.778579734318832 ], [ -81.97489800946731, 28.778617369208177 ], [ -81.974916146089271, 28.778653044191188 ], [ -81.974940033176878, 28.778685985555619 ], [ -81.974969152676053, 28.778715478874688 ], [ -81.975002873051523, 28.778740884501694 ], [ -81.975040462983259, 28.778761651442764 ], [ -81.975081107227297, 28.778777329306937 ], [ -81.975123924296668, 28.778787578074393 ], [ -81.975167985579475, 28.778792175470862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.979053125816293, 28.766760270236208 ], [ -81.979054514701545, 28.766864955451059 ], [ -81.979037754747552, 28.766971682484041 ], [ -81.978844635950452, 28.767502087274778 ], [ -81.978655485497399, 28.76791873911403 ], [ -81.97828115452603, 28.768508667916326 ], [ -81.978039095396213, 28.768957064591323 ], [ -81.977852590003636, 28.769581381984111 ], [ -81.97781422874283, 28.77024405851046 ], [ -81.977884330362798, 28.771012550343308 ], [ -81.978023211149178, 28.772339226998429 ], [ -81.977970299957903, 28.772926508803582 ], [ -81.977642261613497, 28.774489947077107 ], [ -81.977414749574919, 28.775569276286831 ], [ -81.977238955288001, 28.776339539046329 ], [ -81.977074807479042, 28.776790134748328 ], [ -81.976630371721598, 28.777435615292362 ], [ -81.976220327596963, 28.777825813726693 ], [ -81.975914778694204, 28.778053318742131 ], [ -81.975527220700485, 28.77826891924499 ], [ -81.975434631396723, 28.778299341060588 ], [ -81.975322199412958, 28.778296696533616 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975459492352442, 28.778531642163056 ], [ -81.975544538821111, 28.778414533529485 ], [ -81.975627753315834, 28.77835632494449 ], [ -81.97614310102972, 28.778048731488362 ], [ -81.976490433987905, 28.777755674645228 ], [ -81.976826911993129, 28.777393873926716 ], [ -81.97709283847, 28.77699951291855 ], [ -81.977326203651216, 28.776494800800378 ], [ -81.977525197871998, 28.775657234491941 ], [ -81.977991932055176, 28.7734810062882 ], [ -81.978116756056224, 28.772840619614971 ], [ -81.97814570213329, 28.772243649289621 ], [ -81.977937671746929, 28.770331534947271 ], [ -81.977944909378067, 28.769835869361032 ], [ -81.978020889131201, 28.76940532706065 ], [ -81.978221692654685, 28.768877099430377 ], [ -81.978433348343827, 28.768500827836334 ], [ -81.978711938009326, 28.768084758101789 ], [ -81.978874751708773, 28.767757327647132 ], [ -81.979178128747463, 28.766932711590655 ], [ -81.979233486374767, 28.766831307864067 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975274305053517, 28.778772230442289 ], [ -81.975317158108226, 28.778750939016426 ], [ -81.975355703373779, 28.778724004050567 ], [ -81.975388991873842, 28.778692088680362 ], [ -81.975416204055193, 28.778655978657806 ], [ -81.975436669964907, 28.778616563005773 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975459492352442, 28.778531642163056 ], [ -81.975461418895406, 28.778491579700407 ], [ -81.975455507328604, 28.778451820983705 ], [ -81.975441933323395, 28.778413547446011 ], [ -81.975421100239885, 28.778377896386989 ], [ -81.975393627140321, 28.778345927178144 ], [ -81.97536033039286, 28.778318589783879 ], [ -81.975322199412958, 28.778296696533616 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stampeder Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012908298744648, 28.747380438090502 ], [ -82.01305346908687, 28.746954714693139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stansberry Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011920925931278, 28.746650304063479 ], [ -82.012517403007479, 28.746814225084041 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Stansberry Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012517403007479, 28.746814225084041 ], [ -82.01305346908687, 28.746954714693139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dry Creek Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.012517403007479, 28.746814225084041 ], [ -82.012609713578982, 28.746517718378602 ], [ -82.012647852919457, 28.746395206707245 ], [ -82.012772993998723, 28.746168895020528 ], [ -82.012941222335272, 28.746000668214034 ], [ -82.013036812775582, 28.745905077507455 ], [ -82.013120669122372, 28.745821222502261 ], [ -82.013243042018686, 28.745627106393776 ], [ -82.01349290955838, 28.745117476628248 ], [ -82.013552203609052, 28.744880247678168 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Middleton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010756053153813, 28.754275936282657 ], [ -82.010144840842798, 28.754280434274008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thurston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.011354886773788, 28.753403587433215 ], [ -82.010736920740541, 28.753409211100863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thurston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010125708556899, 28.753415961184761 ], [ -82.009503239646492, 28.753427212694817 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Sasser Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010756053153813, 28.754275936282657 ], [ -82.010736920740541, 28.753409211100863 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Erin Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.010144840842798, 28.754280434274008 ], [ -82.010125708556899, 28.753415961184761 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Middleton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009469020334862, 28.752373668486896 ], [ -82.009488139278361, 28.752046476561297 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Middleton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009614265638163, 28.750244768613982 ], [ -82.009514251211741, 28.75106722794645 ], [ -82.009477208689731, 28.75143763040613 ], [ -82.009449503821102, 28.751961069124846 ], [ -82.009458441728611, 28.752010780910602 ], [ -82.009488139278361, 28.752046476561297 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thurston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003882299345918, 28.754215939766549 ], [ -82.004241073641708, 28.753973585711634 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lombardi Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006117761610597, 28.751350817555231 ], [ -82.006062276394204, 28.751240653764278 ], [ -82.006023526074756, 28.751113329914787 ], [ -82.006001382962125, 28.751013684962231 ], [ -82.005985476059365, 28.750964107645842 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005484725169765, 28.750295743580079 ], [ -82.005547236204933, 28.750299690893954 ], [ -82.005607994371218, 28.750283657286332 ], [ -82.005664533755777, 28.750261295836566 ], [ -82.005709008886242, 28.750224965991453 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lombardi Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005484725169765, 28.750295743580079 ], [ -82.005528925525894, 28.750334260269081 ], [ -82.005569852944404, 28.750381425784862 ], [ -82.005602207450281, 28.750431320199485 ], [ -82.005624425504521, 28.750483163970138 ], [ -82.005643117891978, 28.750526780515521 ], [ -82.005672369815045, 28.750571647299406 ], [ -82.005715476179304, 28.750637765001137 ], [ -82.005772937011997, 28.750711195466828 ], [ -82.005825257609018, 28.750778056309986 ], [ -82.00585137594986, 28.750811433939571 ], [ -82.005874677369874, 28.750841211414908 ], [ -82.00592028050508, 28.750912331412799 ], [ -82.005985476059365, 28.750964107645842 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kornegay Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006362529752224, 28.751901549036774 ], [ -82.00644700698318, 28.751874647466501 ], [ -82.006597866094708, 28.751826606238435 ], [ -82.006719764655188, 28.751810048900978 ], [ -82.006823329435818, 28.751799795858862 ], [ -82.006995596805439, 28.751794669335577 ], [ -82.007239265945685, 28.751781084531274 ], [ -82.007713377250212, 28.751784420771326 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mansell Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006117761610597, 28.751350817555231 ], [ -82.006328110051626, 28.751303364429766 ], [ -82.006461574595221, 28.751278052560984 ], [ -82.006607695828322, 28.751257343657205 ], [ -82.006796388080161, 28.751240086820061 ], [ -82.007631692092701, 28.751222834223956 ], [ -82.007703027346224, 28.751235491086018 ], [ -82.007757103130203, 28.75129877068386 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mansell Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007757103130203, 28.75129877068386 ], [ -82.007713377250212, 28.751784420771326 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mansell Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007713377250212, 28.751784420771326 ], [ -82.007673972300253, 28.752409331766867 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thurston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.006617215804098, 28.752499886846984 ], [ -82.006737646043007, 28.75245300352427 ], [ -82.006923097374923, 28.752430861496023 ], [ -82.007673972300253, 28.752409331766867 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thurston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007673972300253, 28.752409331766867 ], [ -82.008331008341273, 28.752390492876611 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Thurston Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008992970191045, 28.752371512442888 ], [ -82.009116595381201, 28.752367968789265 ], [ -82.009469020334862, 28.752373668486896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lorissa Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.007757103130203, 28.75129877068386 ], [ -82.007794385366282, 28.751310676688313 ], [ -82.007865366982259, 28.751316718582508 ], [ -82.008100962738382, 28.751321250303434 ], [ -82.008426702968379, 28.751350630993947 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lorissa Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008426702968379, 28.751350630993947 ], [ -82.00909174128337, 28.751394231142061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lorissa Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00909174128337, 28.751394231142061 ], [ -82.00941548072818, 28.751404955029418 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Dupuis Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008331008341273, 28.752390492876611 ], [ -82.008426702968379, 28.751350630993947 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Waggoner Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008992970191045, 28.752371512442888 ], [ -82.00909174128337, 28.751394231142061 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Middleton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009513579062499, 28.754134028841037 ], [ -82.009503239646492, 28.753427212694817 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Middleton Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009461868559981, 28.752769004548593 ], [ -82.009469020334862, 28.752373668486896 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Houston Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.009513579062499, 28.754134028841037 ], [ -82.00882802911471, 28.754127196088628 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Houston Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00882802911471, 28.754127196088628 ], [ -82.008335524017681, 28.754130353364943 ], [ -82.008291155311099, 28.754121144934942 ], [ -82.00825180998531, 28.75409770484886 ], [ -82.008240507785757, 28.75408347319388 ], [ -82.008231300642734, 28.754056684759366 ], [ -82.008224184341316, 28.754029478437115 ], [ -82.00820389630718, 28.752872216202576 ], [ -82.008211027268032, 28.752849768834253 ], [ -82.008230503684786, 28.752814358085089 ], [ -82.008249979177009, 28.752794173961231 ], [ -82.008277599339579, 28.752779656853452 ], [ -82.008309469264645, 28.752771865390528 ], [ -82.00834912961669, 28.752770095565463 ], [ -82.008811199926171, 28.752772125662304 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Houston Run", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008811199926171, 28.752772125662304 ], [ -82.009461868559981, 28.752769004548593 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Schoenberger Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.00882802911471, 28.754127196088628 ], [ -82.008811199926171, 28.752772125662304 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canopy Oak Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053726411421465, 28.879768238810755 ], [ -82.051694117447298, 28.879760971875182 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canopy Oak Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051694117447298, 28.879760971875182 ], [ -82.050818036088515, 28.879758390083321 ], [ -82.050519862677262, 28.879802187476031 ], [ -82.050292442067018, 28.879872939666797 ], [ -82.050058282830747, 28.879989174424761 ], [ -82.049837600192618, 28.88014078668521 ], [ -82.04946698799678, 28.880347989608566 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Canopy Oak Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04946698799678, 28.880347989608566 ], [ -82.04921374691277, 28.880443417335343 ], [ -82.048894857934158, 28.880563584837283 ], [ -82.048337185591151, 28.880701039578806 ], [ -82.04772290192129, 28.880770657875015 ], [ -82.047474075223448, 28.880776257639038 ], [ -82.047228425468688, 28.880781787270646 ], [ -82.047051619872406, 28.880803221982436 ], [ -82.046876344618951, 28.880849660500068 ], [ -82.046712306593989, 28.880911081264081 ], [ -82.046566244266899, 28.880982986755857 ], [ -82.046416437152288, 28.88107436772118 ], [ -82.046289100770196, 28.881173239931776 ], [ -82.046163262904685, 28.881293084596212 ], [ -82.046083115191479, 28.881392704909342 ], [ -82.046003716931779, 28.881516294543044 ], [ -82.045922820741424, 28.881670594439836 ], [ -82.045828573273965, 28.881956767316044 ], [ -82.045783335249311, 28.882094128897602 ], [ -82.045618694025137, 28.882404818129327 ], [ -82.045425321381344, 28.882661856878737 ], [ -82.045175354205, 28.882914179689426 ], [ -82.045056820455159, 28.883033829595494 ], [ -82.044683806036218, 28.883282327438174 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ives Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051694117447298, 28.879760971875182 ], [ -82.051678717357873, 28.881970401081407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinecrest Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04946698799678, 28.880347989608566 ], [ -82.050610923553677, 28.882268082284977 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinecrest Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050610923553677, 28.882268082284977 ], [ -82.051008451974809, 28.882907369439533 ], [ -82.051177426978413, 28.883074121686796 ], [ -82.051393093425375, 28.883220864767978 ], [ -82.051604314538224, 28.883307577325699 ], [ -82.051851108226003, 28.883360937837541 ], [ -82.05243363076687, 28.883374281266793 ], [ -82.052658191325023, 28.883314252234555 ], [ -82.05284050803256, 28.883191966934049 ], [ -82.052951677946112, 28.88301854588136 ], [ -82.052982805305476, 28.882858464782618 ], [ -82.05297836052506, 28.882427132564693 ], [ -82.052927222935239, 28.882295954304411 ], [ -82.05282717285624, 28.882162550952152 ], [ -82.052702665039519, 28.882075840203601 ], [ -82.052466987583713, 28.881984681390659 ], [ -82.052315798599736, 28.881975786827297 ], [ -82.051678717357873, 28.881970401081407 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Pinecrest Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051678717357873, 28.881970401081407 ], [ -82.05132195047517, 28.881969111907189 ], [ -82.05111295424706, 28.882026918645117 ], [ -82.050821692480184, 28.882155871448244 ], [ -82.050610923553677, 28.882268082284977 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ives Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.04833236906957, 28.874703757665255 ], [ -82.048548683802693, 28.874565796634709 ], [ -82.049022190810177, 28.874199599816009 ], [ -82.049175483361964, 28.87413658029573 ], [ -82.049391797314314, 28.874087187847582 ], [ -82.049579154824812, 28.874085484996201 ], [ -82.04981931367638, 28.874121254173755 ], [ -82.050035625812725, 28.874196197873463 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ives Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050035625812725, 28.874196197873463 ], [ -82.050142317764454, 28.874258734267393 ], [ -82.050338225310597, 28.874425256862075 ], [ -82.050457873285936, 28.874526958044644 ], [ -82.050741794014144, 28.874834704617626 ], [ -82.050980800389738, 28.875155992854747 ], [ -82.051045999122238, 28.875243637015661 ], [ -82.051282496359534, 28.875669271388357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ives Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051282496359534, 28.875669271388357 ], [ -82.051341268757298, 28.875804448348109 ], [ -82.051384788836614, 28.875904544126545 ], [ -82.051496034715072, 28.876296176824173 ], [ -82.05152815285328, 28.876409247432019 ], [ -82.051564599973119, 28.876695827144733 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ives Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051564599973119, 28.876695827144733 ], [ -82.051584190050718, 28.876881940149026 ], [ -82.051582229478271, 28.877320772424916 ], [ -82.0515410871363, 28.877636183763919 ], [ -82.051456844764999, 28.877973143848358 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Ives Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051456844764999, 28.877973143848358 ], [ -82.051435294659299, 28.878076974355452 ], [ -82.051417414102843, 28.878163121981476 ], [ -82.051413743014862, 28.878396302345053 ], [ -82.051456842186965, 28.878602005344945 ], [ -82.051531286164789, 28.878758732221794 ], [ -82.051626891838751, 28.878960006675971 ], [ -82.05167625643719, 28.879172097312384 ], [ -82.051694117447298, 28.879760971875182 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harcourt Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.050035625812725, 28.874196197873463 ], [ -82.050339942524829, 28.873757853409007 ], [ -82.05053242720993, 28.873602625205894 ], [ -82.050720773145784, 28.873509488357822 ], [ -82.050946373498519, 28.873447399090576 ], [ -82.05118025184197, 28.873428772025914 ], [ -82.0521654436331, 28.873420497657833 ], [ -82.052382764436629, 28.873470172763128 ], [ -82.052587667558086, 28.873563310764627 ], [ -82.052744965568721, 28.873689564189306 ], [ -82.052891915951562, 28.873875838939057 ], [ -82.052970565127779, 28.874051766288634 ], [ -82.052993330794308, 28.874209064724518 ], [ -82.05299125891915, 28.874600241261785 ], [ -82.052935375303704, 28.874778236528723 ], [ -82.052827749029987, 28.874972790094269 ], [ -82.052693215895786, 28.87510939101216 ], [ -82.052535916517499, 28.875206666528889 ], [ -82.052285478891747, 28.875306012265224 ], [ -82.051282496359534, 28.875669271388357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Harcourt Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051282496359534, 28.875669271388357 ], [ -82.050445487607064, 28.87597245246095 ], [ -82.050217818175085, 28.876022125070801 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lunetta Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051564599973119, 28.876695827144733 ], [ -82.052424794897021, 28.876638679707046 ], [ -82.052612232946373, 28.876678371989094 ], [ -82.052762182606401, 28.876759963338838 ], [ -82.052885671066377, 28.876876837541964 ], [ -82.052956234719332, 28.876992607913408 ], [ -82.052990413116987, 28.87709955704754 ], [ -82.052995926042357, 28.877200993420054 ], [ -82.052979690969352, 28.877753547342909 ], [ -82.052935379752284, 28.877854475200039 ], [ -82.052860708266593, 28.877964429698274 ], [ -82.052768806188936, 28.878044023873485 ], [ -82.052664595068336, 28.878107205367613 ], [ -82.052543971694334, 28.878150694063432 ], [ -82.052418425941696, 28.878170387251888 ], [ -82.052282213180717, 28.878168745891024 ], [ -82.052153386108628, 28.878139205125091 ], [ -82.051456844764999, 28.877973143848358 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Lunetta Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051456844764999, 28.877973143848358 ], [ -82.050869065278562, 28.877846184814675 ], [ -82.050555792178528, 28.877907707303681 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bertram Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.044683806036218, 28.883282327438174 ], [ -82.044762311943302, 28.883392511456556 ], [ -82.044839923781197, 28.883470719089626 ], [ -82.044928696543664, 28.883526058711809 ], [ -82.045037068384474, 28.883565257781441 ], [ -82.04513621866279, 28.883573328634931 ], [ -82.045505146606914, 28.883579095606954 ], [ -82.04560660085339, 28.883604459741914 ], [ -82.045733420238292, 28.883662105040973 ], [ -82.046089664338282, 28.883859251696652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Las Palmas Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046089664338282, 28.883859251696652 ], [ -82.046446381379354, 28.883476764799184 ], [ -82.04658612839404, 28.883326922690358 ], [ -82.046789620544317, 28.883008475477691 ], [ -82.046922059995524, 28.882801220321195 ], [ -82.04708542875305, 28.882545563084673 ], [ -82.047176729569557, 28.882446335353578 ], [ -82.047296464187411, 28.882357278376055 ], [ -82.047424114343869, 28.882293948550238 ], [ -82.047590356427847, 28.882237545659251 ], [ -82.047728892466026, 28.882216766959274 ], [ -82.048030699909319, 28.882217757447759 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Las Palmas Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048030699909319, 28.882217757447759 ], [ -82.04842952398127, 28.882219586314843 ], [ -82.048583971773553, 28.88225012305287 ], [ -82.048743400435569, 28.882301552412255 ], [ -82.048898330590205, 28.882370338946608 ], [ -82.049048115883522, 28.882459696897929 ], [ -82.04921333085359, 28.882580554750753 ], [ -82.049324545672164, 28.882686626971118 ], [ -82.049414544594143, 28.882806198879617 ], [ -82.049501329999941, 28.882943770982504 ], [ -82.049563155121604, 28.883041773579762 ], [ -82.049665640155112, 28.883204233439262 ], [ -82.049787987133811, 28.883398177162658 ], [ -82.049898449761045, 28.883573282372751 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Las Palmas Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049898449761045, 28.883573282372751 ], [ -82.049969665005648, 28.883653114421772 ], [ -82.050063970904645, 28.883758829475358 ], [ -82.050242794115974, 28.8839239686545 ], [ -82.050437398612914, 28.884065086131784 ], [ -82.05067183484131, 28.884206204780021 ], [ -82.0508721301387, 28.884293833849355 ], [ -82.050964029421195, 28.884334040346733 ], [ -82.051160054744898, 28.88445657516629 ], [ -82.051312551329787, 28.884604520415628 ], [ -82.051401319360366, 28.884739948442114 ], [ -82.051455944878029, 28.884870822747136 ], [ -82.051480981370972, 28.885027872196517 ], [ -82.051484393227838, 28.885415943919092 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Las Palmas Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051484393227838, 28.885415943919092 ], [ -82.051487711183114, 28.886736327140827 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Las Palmas Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051487711183114, 28.886736327140827 ], [ -82.051495256046991, 28.887347166942249 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barragan Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048030699909319, 28.882217757447759 ], [ -82.048030031958177, 28.884010213872131 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barragan Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048030031958177, 28.884010213872131 ], [ -82.048027144314645, 28.885070998923442 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Barragan Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048027144314645, 28.885070998923442 ], [ -82.04802713889778, 28.886258618225796 ], [ -82.04805135477919, 28.886346558705618 ], [ -82.048095189151567, 28.886427182736877 ], [ -82.048162505917702, 28.886517982732325 ], [ -82.048237648890876, 28.886585299371923 ], [ -82.048331579766554, 28.886644788181311 ], [ -82.048430206584101, 28.886687057568281 ], [ -82.048522571910752, 28.886708191826628 ], [ -82.048647812010188, 28.886719934900317 ], [ -82.051487711183114, 28.886736327140827 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Kona Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051487711183114, 28.886736327140827 ], [ -82.052449637959526, 28.886732593243391 ], [ -82.05258695833993, 28.886704411158977 ], [ -82.05270626863809, 28.886649923926235 ], [ -82.052807728948423, 28.88657570749297 ], [ -82.052889460793196, 28.886487400198082 ], [ -82.052953344612774, 28.886381243267028 ], [ -82.052987165114018, 28.886276025553734 ], [ -82.052989983204583, 28.88617362603437 ], [ -82.052978384189856, 28.885860398870932 ], [ -82.052936813487378, 28.885739840649972 ], [ -82.052871962427403, 28.885640070511435 ], [ -82.052789650966673, 28.885558590407712 ], [ -82.052695700724982, 28.885500389582653 ], [ -82.05255934605988, 28.885447178518081 ], [ -82.052435464627933, 28.885421403273057 ], [ -82.052281649088798, 28.885416414852997 ], [ -82.051484393227838, 28.885415943919092 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evenmore Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051484393227838, 28.885415943919092 ], [ -82.051005447896884, 28.885414688260628 ], [ -82.050378324839414, 28.885359209621686 ], [ -82.049333923456345, 28.885151771553716 ], [ -82.049198724317549, 28.885124919170771 ], [ -82.048959345814183, 28.885099323064104 ], [ -82.048643389334288, 28.885087311803304 ], [ -82.048027144314645, 28.885070998923442 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Evenmore Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.048027144314645, 28.885070998923442 ], [ -82.04647327392523, 28.885062515317433 ], [ -82.046398017800129, 28.885047523011906 ], [ -82.046299215237411, 28.885010547782212 ], [ -82.046207687456572, 28.88496144941853 ], [ -82.046135555646728, 28.884907500895135 ], [ -82.046053120613252, 28.884820822152562 ], [ -82.045996141583572, 28.884729293046597 ], [ -82.045973714754908, 28.884660192504395 ], [ -82.045963410736405, 28.884588060662036 ], [ -82.04596239034818, 28.884210944533308 ], [ -82.045977291281091, 28.884104192861638 ], [ -82.046006039299087, 28.884017950326779 ], [ -82.046046949167248, 28.883933918834305 ], [ -82.046089664338282, 28.883859251696652 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Biltmore Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.049898449761045, 28.883573282372751 ], [ -82.049470965172119, 28.883818198709623 ], [ -82.049319523287338, 28.883904963681136 ], [ -82.049213917409986, 28.88394455413496 ], [ -82.049103067561219, 28.883975369715916 ], [ -82.048993136223885, 28.883995147937146 ], [ -82.048864807225343, 28.884005267212704 ], [ -82.048030031958177, 28.884010213872131 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053726411421465, 28.879768238810755 ], [ -82.05372723371562, 28.880068000887469 ], [ -82.053727073588533, 28.880105801040639 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05372989731751, 28.887354534666379 ], [ -82.051495256046991, 28.887347166942249 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075699819944717, 28.74884325814342 ], [ -82.075696493332529, 28.748843223891409 ], [ -82.075037591733022, 28.748836435094336 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075037591733022, 28.748836435094336 ], [ -82.074539789743469, 28.748831306820072 ], [ -82.073909362688326, 28.748833668209823 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 526A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062654343935264, 28.741490059471367 ], [ -82.062666813107683, 28.740786459959086 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 526A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.062666813107683, 28.740786459959086 ], [ -82.062681773142572, 28.739942312430536 ], [ -82.062681537711924, 28.73990976753532 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 526 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.063661275918506, 28.738970963829946 ], [ -82.063215848694568, 28.738819232128222 ], [ -82.063034792754479, 28.738740816018559 ], [ -82.062948565146982, 28.738685145259854 ], [ -82.062882442228755, 28.738616803824012 ], [ -82.062810550220561, 28.738510481683026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 526 East", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064374095433394, 28.739020155051055 ], [ -82.063936455181661, 28.739020359826583 ], [ -82.063842878490703, 28.73901582233124 ], [ -82.063661275918506, 28.738970963829946 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 14th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.070610376797575, 28.736590528090751 ], [ -82.07025312085851, 28.736605588444153 ], [ -82.06913170714455, 28.736583840987326 ], [ -82.068882096711746, 28.736571213288318 ], [ -82.068646961390655, 28.736568141606302 ], [ -82.068531192311923, 28.736549071205875 ], [ -82.068370529460623, 28.736475117612713 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067934517519021, 28.737208932812162 ], [ -82.068304042099598, 28.736589675529032 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.069902996780186, 28.733927265625539 ], [ -82.07017446540624, 28.733465142204437 ], [ -82.07030140709567, 28.733246401518883 ], [ -82.07042312453504, 28.733046526484134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.07042312453504, 28.733046526484134 ], [ -82.070443261600502, 28.733013458573772 ], [ -82.070571912138504, 28.732792163163801 ], [ -82.070700557197782, 28.732565047635227 ], [ -82.070819321685647, 28.732375778768461 ], [ -82.070918286288574, 28.732212717233011 ], [ -82.070990864948882, 28.73209915458018 ], [ -82.071106327772881, 28.731915707153693 ], [ -82.071192111066566, 28.73179631663578 ], [ -82.071199713669074, 28.731784961441008 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104252312637627, 28.695215077892406 ], [ -82.104253447717298, 28.694795655538165 ], [ -82.104252819519132, 28.694162249856365 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "South US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.104252819519132, 28.694162249856365 ], [ -82.104250542633423, 28.693614525144486 ], [ -82.104251807597691, 28.693140231947925 ], [ -82.104251416708991, 28.692745428882123 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.098838590908116, 28.653882880904774 ], [ -82.098283142206213, 28.653878936766489 ], [ -82.097975663507142, 28.653877371827857 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.071280032708884, 28.664741423986779 ], [ -82.071159133002965, 28.664742460409688 ], [ -82.070252081424528, 28.664740474718872 ], [ -82.068813599228079, 28.66473875062238 ], [ -82.067174792926963, 28.664749378504219 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 476", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075383378848215, 28.664733250420436 ], [ -82.075321542646932, 28.66473287477092 ], [ -82.073819068440159, 28.66473614679914 ], [ -82.071768467494195, 28.664737235883823 ], [ -82.071280032708884, 28.664741423986779 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 543", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.079375866281495, 28.726869487600258 ], [ -82.079362559205848, 28.726741415691215 ], [ -82.079362360599831, 28.726478270735555 ], [ -82.079341104509183, 28.724081264070207 ], [ -82.079333681532589, 28.72314558118779 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 567", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.029813720200593, 28.65366579238615 ], [ -82.029808955766825, 28.652273671532939 ], [ -82.029817328899242, 28.650450647181902 ], [ -82.02982609066197, 28.649999790627742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.046449640803303, 28.650152347588168 ], [ -82.045842091894372, 28.650149465583279 ], [ -82.043280952406207, 28.650147829247519 ], [ -82.042320644658361, 28.650143705085252 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 708", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054789478777465, 28.646516128906857 ], [ -82.054432031866, 28.646519158189577 ], [ -82.054098718010422, 28.646510472848433 ], [ -82.05288398576856, 28.64648161790252 ], [ -82.052713359204873, 28.64647741255564 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054789478777465, 28.646516128906857 ], [ -82.05478649494323, 28.645812716753369 ], [ -82.054783009302184, 28.644930745931987 ], [ -82.054782884043931, 28.644689486545953 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054769732219796, 28.636747258148844 ], [ -82.054764689964415, 28.635598164210965 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.061376454737754, 28.613697680717355 ], [ -82.060275819717575, 28.613695349580475 ], [ -82.059688614746051, 28.613692592764419 ], [ -82.059173103694647, 28.61369281549835 ], [ -82.058876090410635, 28.613695955851558 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.06514756473284, 28.613702163722959 ], [ -82.064795924221329, 28.61370233002506 ], [ -82.064363880802304, 28.613700089566159 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 478", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.064363880802304, 28.613700089566159 ], [ -82.064263343665885, 28.613699568150974 ], [ -82.06370482956973, 28.613699825514658 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 762", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0561419067906, 28.595428553837834 ], [ -82.055552000847172, 28.59543712889284 ], [ -82.054715107153342, 28.595435017608146 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 762", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.057465539749813, 28.595420068943696 ], [ -82.056703762533743, 28.595420384802814 ], [ -82.0561419067906, 28.595428553837834 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 721", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.056141852692804, 28.588107093134891 ], [ -82.055805848702434, 28.588107037486441 ], [ -82.054719635864046, 28.588119702690356 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 753 South", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.067228286684951, 28.584513860115496 ], [ -82.067159389111012, 28.584525720836215 ], [ -82.067024056536525, 28.584552563984488 ], [ -82.066905060861941, 28.584585580100889 ], [ -82.066783732255331, 28.584618596344466 ], [ -82.066662406915043, 28.584653671627144 ], [ -82.066445421805952, 28.58472587041231 ], [ -82.066116443631628, 28.584829022651832 ], [ -82.065687139674438, 28.584967236643145 ], [ -82.06541182058632, 28.585049760997947 ], [ -82.065222818901134, 28.585086929041296 ], [ -82.065088500801409, 28.585108023649095 ], [ -82.064973142548752, 28.585128242912386 ], [ -82.06484946950188, 28.585142721678295 ], [ -82.064665116581011, 28.585151046029569 ], [ -82.064233411724473, 28.585184206551421 ], [ -82.063890389044062, 28.585223503767661 ], [ -82.06358937909971, 28.585271019093135 ], [ -82.063482047516203, 28.585299906707043 ], [ -82.063388718220864, 28.585328785976468 ], [ -82.063279057347415, 28.585363854658002 ], [ -82.063204405267072, 28.585403026363263 ], [ -82.063122882131808, 28.585460775934148 ], [ -82.063041129878954, 28.585539051180724 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "SR 471", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.054715729195095, 28.580788496548514 ], [ -82.054715817751742, 28.580738347802416 ], [ -82.054712362585505, 28.579413960529187 ], [ -82.054711835841275, 28.578395294465235 ], [ -82.054713991435833, 28.577206642492889 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 120th Crossing", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036354673147983, 28.931088146812179 ], [ -82.035772031937725, 28.931074417877397 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 201", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03916824681734, 28.928855497391211 ], [ -82.039168243969371, 28.928856113659233 ], [ -82.039166723844289, 28.929396934131134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037441469834263, 28.927404492693245 ], [ -82.037458463452239, 28.927179176886405 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037086914994447, 28.921990327236351 ], [ -82.037088921211293, 28.922063827689723 ], [ -82.037108541117291, 28.92273646382932 ], [ -82.03711172603731, 28.92286033098944 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 214", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.040158914107451, 28.916444531892981 ], [ -82.039549570509791, 28.916449584781184 ], [ -82.039044516578244, 28.916450423911488 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 121", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020551978865981, 28.897458676829263 ], [ -82.020549009054264, 28.897764794884903 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037090813497869, 28.892932945863883 ], [ -82.037087018007938, 28.892649986671827 ], [ -82.037087011700407, 28.892649542742166 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "North US 301", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.036959223731628, 28.887304497181368 ], [ -82.03694867695846, 28.888163165866981 ], [ -82.036947870371378, 28.88826953283078 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 126", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035610291912505, 28.887293202774966 ], [ -82.034972294058846, 28.887293366918602 ], [ -82.034441345269656, 28.887285004256206 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051495256046991, 28.887347166942249 ], [ -82.050552860232628, 28.887344060003986 ], [ -82.049580390877622, 28.887340116461225 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.05372989731751, 28.887354534666379 ], [ -82.053735375030868, 28.887856685837559 ], [ -82.053729593743654, 28.888781205204534 ], [ -82.053719995495598, 28.89039544100233 ], [ -82.053716353556879, 28.891428187278091 ], [ -82.053708729032991, 28.892824135650383 ], [ -82.053705313444382, 28.894298959245731 ], [ -82.053701871333288, 28.89463032627814 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 209", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.053727073588533, 28.880105801040639 ], [ -82.053727071689138, 28.880106096996062 ], [ -82.053721651816957, 28.881385073486669 ], [ -82.053721157778853, 28.881877815558788 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.026793708450967, 28.883672469116995 ], [ -82.02679274681401, 28.883672465694502 ], [ -82.026665814844591, 28.883672049053001 ], [ -82.025834700364058, 28.883670038836549 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 462", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.025834700364058, 28.883670038836549 ], [ -82.024536295108632, 28.883666896316196 ], [ -82.023688390170634, 28.8836656337742 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 81st Boulevard", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.019315527377017, 28.874618614067622 ], [ -82.019081749489985, 28.874632472221368 ], [ -82.018536174063769, 28.874669779238026 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 134", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024694718771272, 28.872761219723767 ], [ -82.024545564198959, 28.872762668275165 ], [ -82.023379131704033, 28.872765564274644 ], [ -82.022681426595867, 28.872755211599848 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0205225863523, 28.860043801389907 ], [ -82.02052264978073, 28.860373717163871 ], [ -82.020523172152679, 28.86052643115697 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 142", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018510583905226, 28.861828871599709 ], [ -82.018185289647121, 28.861822285018018 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 181", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.03721653010038, 28.838752346205705 ], [ -82.037212671019105, 28.839881299801654 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 181", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.037218794578138, 28.838089821429957 ], [ -82.03721653010038, 28.838752346205705 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.001799151818673, 28.836052608147721 ], [ -82.001110895376428, 28.835560334452463 ], [ -82.000452696429733, 28.835102392783277 ], [ -81.99984155962693, 28.834675010929658 ], [ -81.99726351907502, 28.832934911182058 ], [ -81.997071695411435, 28.832801420394173 ], [ -81.997026074834153, 28.832761247688548 ], [ -81.996995663153996, 28.832714380196446 ], [ -81.996988060946506, 28.832680904387274 ], [ -81.996988062915605, 28.83265189157148 ], [ -81.997000735617334, 28.832613951614388 ], [ -81.997031151379744, 28.832564854123511 ], [ -81.997129523369267, 28.832446155010327 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "C 44A", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.003634266055599, 28.837395338279329 ], [ -82.003156390813032, 28.837057767453853 ], [ -82.002675514806825, 28.836704777227965 ], [ -82.002008914729615, 28.836202641125521 ], [ -82.001799151818673, 28.836052608147721 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.028472802055532, 28.799716872343001 ], [ -82.02880180097776, 28.799719862439677 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 507", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.027080894956043, 28.80107404462882 ], [ -82.027074620413956, 28.801528769553844 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020512003883482, 28.799688796339669 ], [ -82.02019404574223, 28.799684358804068 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.008346957846229, 28.755832114437368 ], [ -82.007275226157716, 28.755830420670655 ], [ -82.006047696617912, 28.755829598793465 ], [ -82.005171712300907, 28.755828192928639 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.005171712300907, 28.755828192928639 ], [ -82.004980924997071, 28.755827886643818 ], [ -82.004414295127134, 28.75582615303496 ], [ -82.004138694127377, 28.755825540059099 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 88th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.953997512217697, 28.751675934355141 ], [ -81.954003128490655, 28.750772082662422 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 88th Terrace", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.954003128490655, 28.750772082662422 ], [ -81.954006988941799, 28.75015105219164 ], [ -81.954006668136628, 28.75004492494072 ], [ -81.954017620795398, 28.749991355264193 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Powell Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.020525777596163, 28.856330965295893 ], [ -82.020524736839803, 28.857011023422519 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Riverwood Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024410315000381, 28.93354570091606 ], [ -82.024431712131545, 28.933541906100036 ], [ -82.024452054518335, 28.933534944088954 ], [ -82.024470741220114, 28.933525020549819 ], [ -82.024487220207817, 28.933512428636899 ], [ -82.024501004671663, 28.933497540331654 ], [ -82.024511687402068, 28.933480795453768 ], [ -82.024518952819079, 28.933462688668275 ], [ -82.024522586294978, 28.933443754872368 ], [ -82.024522480494369, 28.933424553393941 ], [ -82.024518638544762, 28.933405651468224 ], [ -82.024511173943992, 28.933387607481009 ], [ -82.024500307207077, 28.933370954473251 ], [ -82.024486359351812, 28.933356184394491 ], [ -82.024469742415334, 28.933343733570116 ], [ -82.024450947282034, 28.933333969811883 ], [ -82.02443052918224, 28.933327181552443 ], [ -82.024409091290153, 28.933323569324731 ], [ -82.024387266905535, 28.933323239838064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Riverwood Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024523491294559, 28.932218431973357 ], [ -82.024522880081918, 28.932200355903728 ], [ -82.024518746107759, 28.932182641277819 ], [ -82.024511212425438, 28.932165815388007 ], [ -82.024500503283505, 28.932150379072326 ], [ -82.024486937450575, 28.932136791806681 ], [ -82.024470918726777, 28.932125458028182 ], [ -82.024452923924244, 28.932116715096708 ], [ -82.024433488674418, 28.932110823253282 ], [ -82.024413191484541, 28.932107957873722 ], [ -82.024392636518016, 28.93210820424855 ], [ -82.024372435611113, 28.932111555044184 ], [ -82.024353190061376, 28.932117910521324 ], [ -82.024335472729462, 28.932127081503648 ], [ -82.02431981098772, 28.932138795008871 ], [ -82.024306671022487, 28.932152702374164 ], [ -82.024296443957667, 28.932168389634352 ], [ -82.024289434212434, 28.932185389843884 ], [ -82.024285850439938, 28.932203196975919 ], [ -82.024285799316274, 28.9322212809845 ], [ -82.024289282365018, 28.932239103581924 ], [ -82.024296195911617, 28.932256134261394 ], [ -82.024306334169182, 28.93227186608804 ], [ -82.024319395363804, 28.932285830788409 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Riverwood Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024410319741591, 28.932331620569581 ], [ -82.024431165287083, 28.932328758476629 ], [ -82.024451135273623, 28.932322771214288 ], [ -82.024469629108197, 28.93231383884828 ], [ -82.024486090593086, 28.932302230017601 ], [ -82.024500024653548, 28.932288293855255 ], [ -82.024511012227038, 28.932272449488075 ], [ -82.024518722866347, 28.932255173431535 ], [ -82.024522924677683, 28.93223698525852 ], [ -82.024523491294559, 28.932218431973357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Riverwood Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024319395363804, 28.932285830788409 ], [ -82.024330176908364, 28.932298717556943 ], [ -82.02434323785792, 28.932309853568338 ], [ -82.024358216726313, 28.932318930612151 ], [ -82.024374698944868, 28.932325697463693 ], [ -82.024392228336566, 28.93232996683723 ], [ -82.024410319741591, 28.932331620569581 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Riverwood Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024387266905535, 28.933323239838064 ], [ -82.024367145023731, 28.933330761989492 ], [ -82.024348735998259, 28.933341137755018 ], [ -82.024332558065296, 28.933354075044711 ], [ -82.02431906665359, 28.933369209658604 ], [ -82.024308641563678, 28.933386115539314 ], [ -82.024301576275931, 28.933404316765969 ], [ -82.024298069688541, 28.933423300951919 ], [ -82.024298220518247, 28.933442533668924 ], [ -82.024302024520992, 28.933461473492059 ], [ -82.024309374611235, 28.933479587241411 ], [ -82.02432006387636, 28.933496364991825 ], [ -82.024333791401247, 28.933511334427976 ], [ -82.02435017073941, 28.933524074140756 ], [ -82.024368740791871, 28.933534225490511 ], [ -82.024388978787584, 28.93354150270336 ], [ -82.024410315000381, 28.93354570091606 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Riverwood Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024422012750904, 28.93242203471149 ], [ -82.024425219599436, 28.932446836411028 ], [ -82.024440065033076, 28.932561634496118 ], [ -82.024457113432931, 28.932764425737513 ], [ -82.024458407508646, 28.932940919696421 ], [ -82.024441867206619, 28.933007031936842 ], [ -82.024404211272937, 28.933109393986271 ], [ -82.024392614960149, 28.933140914085151 ], [ -82.024386707267865, 28.933191071868414 ], [ -82.024387266905535, 28.933323239838064 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Riverwood Circle", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024410319741591, 28.932331620569581 ], [ -82.024422012750904, 28.93242203471149 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenland Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024319395363804, 28.932285830788409 ], [ -82.024306783407908, 28.932307133481018 ], [ -82.024290351254535, 28.932334886447197 ], [ -82.024278992742666, 28.932347572004108 ], [ -82.024252878500718, 28.932372202929951 ], [ -82.024217565193169, 28.932411373237205 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenland Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024217565193169, 28.932411373237205 ], [ -82.024422012750904, 28.93242203471149 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenland Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023796522237006, 28.93240901407647 ], [ -82.022725174762257, 28.932403008838321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brush Hill Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022726057939948, 28.932877907895286 ], [ -82.022725174762257, 28.932403008838321 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brush Hill Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022725174762257, 28.932403008838321 ], [ -82.02272764345183, 28.931554037733683 ], [ -82.022723232293217, 28.931540783753839 ], [ -82.022715518615897, 28.931528146585251 ], [ -82.022713187481031, 28.931524327556481 ], [ -82.0227082846759, 28.931519010240066 ], [ -82.022701331506241, 28.931513437911736 ], [ -82.022695703727507, 28.931508928267856 ], [ -82.022688808284144, 28.931504702152857 ], [ -82.022680338486921, 28.93150069104265 ], [ -82.02266233897906, 28.931500407072996 ], [ -82.021519942736191, 28.931500039617482 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Brush Hill Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021519942736191, 28.931500039617482 ], [ -82.021380125528552, 28.931499039944651 ], [ -82.021376748105837, 28.931499546654898 ], [ -82.021372553345572, 28.931500649908319 ], [ -82.021364877898179, 28.931503893942985 ], [ -82.021358313154167, 28.931506666807675 ], [ -82.021352355554001, 28.931509184228752 ], [ -82.021343421253775, 28.93151576063082 ], [ -82.021338370584147, 28.931519477962883 ], [ -82.021334388502552, 28.931522408328771 ], [ -82.021331172058055, 28.931527775673892 ], [ -82.021326983605249, 28.93153476639705 ], [ -82.021323324219253, 28.931540871887378 ], [ -82.021321605851355, 28.931549240934974 ], [ -82.021321721922646, 28.931560323801349 ], [ -82.021321434991066, 28.932497754610772 ], [ -82.021323207277902, 28.932507564082311 ], [ -82.021327497586526, 28.932517283837679 ], [ -82.021333102446249, 28.932525164513713 ], [ -82.021338731930356, 28.93253308127743 ], [ -82.021347200302316, 28.932540050192799 ], [ -82.021355607587566, 28.932544166964341 ], [ -82.021364240544841, 28.93254839378034 ], [ -82.021372419650632, 28.93255012131042 ], [ -82.021379266344013, 28.932551567530535 ], [ -82.021388268713537, 28.932551522825875 ], [ -82.021518593318433, 28.932550869159716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxford Greens Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.021519942736191, 28.931500039617482 ], [ -82.021518593318433, 28.932550869159716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenland Lane", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.024217565193169, 28.932411373237205 ], [ -82.023796522237006, 28.93240901407647 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Weatherford Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.023796522237006, 28.93240901407647 ], [ -82.023796902992217, 28.932821718955228 ], [ -82.023792855989754, 28.932832361314393 ], [ -82.023783667268319, 28.932847676641888 ], [ -82.023770538836956, 28.932862701207863 ], [ -82.023761348816535, 28.932867659999328 ], [ -82.023741802881361, 28.932874370125006 ], [ -82.023727653735889, 28.932874953641516 ], [ -82.022726057939948, 28.932877907895286 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Weatherford Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.022726057939948, 28.932877907895286 ], [ -82.021778931389662, 28.932878236675393 ], [ -82.021765571266243, 28.93287520075836 ], [ -82.021752534521283, 28.932868560122891 ], [ -82.02173543917641, 28.932856999011943 ], [ -82.021726215239539, 28.932847036427571 ], [ -82.021721050075854, 28.932837813987422 ], [ -82.021718221308916, 28.932823054700872 ], [ -82.021717310797712, 28.932603589773365 ], [ -82.021715238047875, 28.932594267593498 ], [ -82.021709976519631, 28.932585220212829 ], [ -82.021701298099103, 28.932574419308935 ], [ -82.021692159791101, 28.932566756656829 ], [ -82.021678680681788, 28.93255844774097 ], [ -82.021666772621941, 28.932553739634194 ], [ -82.021651447548493, 28.932551709170109 ], [ -82.021518593318433, 28.932550869159716 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Warm Springs Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.051878668200558, 28.7998051558891 ], [ -82.049960317468688, 28.799803500366078 ], [ -82.04988455344818, 28.79980778774571 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East Noble Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.100683540947557, 28.664875785969308 ], [ -82.100215478530259, 28.66487395913137 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 48", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.079541407303367, 28.650164846793899 ], [ -82.077952631735329, 28.650165759299654 ], [ -82.07712627278363, 28.650163759131171 ], [ -82.076529071240799, 28.650176676172901 ], [ -82.076182027751827, 28.650179338355894 ], [ -82.07584897349625, 28.650174585538853 ], [ -82.075683847505687, 28.650174676838887 ], [ -82.075535515548481, 28.650177228373526 ], [ -82.075434756374548, 28.65017234539393 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southeast 70th Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.082066315864765, 28.653793799902097 ], [ -82.08201750293621, 28.653793114505302 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paradise Oaks Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.117608867998825, 28.688414893405053 ], [ -82.11908580864592, 28.688435106900577 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paradise Oaks Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11908580864592, 28.688435106900577 ], [ -82.119772879096999, 28.688441060540633 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Paradise Oaks Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119772879096999, 28.688441060540633 ], [ -82.120367744548076, 28.688444038639599 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cypress View Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.11908580864592, 28.688435106900577 ], [ -82.119088537946482, 28.688337534702981 ], [ -82.119095344929235, 28.688094166819411 ], [ -82.119105688540756, 28.688041874994362 ], [ -82.1191209912826, 28.687964507603461 ], [ -82.119122115943838, 28.687826150591732 ], [ -82.119127359841187, 28.687181639786569 ], [ -82.11913294884485, 28.687155273336572 ], [ -82.119144235216496, 28.68713592474176 ], [ -82.119161702684835, 28.687117918825439 ], [ -82.119185351911554, 28.687106363674154 ], [ -82.119217063517453, 28.68709749492486 ], [ -82.119241249016454, 28.687097764328026 ], [ -82.119677445532005, 28.687108922988404 ], [ -82.119706586615123, 28.687115354481243 ], [ -82.119735526392972, 28.68713103051407 ], [ -82.11976325966414, 28.687154744652464 ], [ -82.119778936091208, 28.687177051816526 ], [ -82.119783383646038, 28.687207977972495 ], [ -82.119783689755408, 28.687288183097166 ], [ -82.119785511809198, 28.687765559085129 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Cypress View Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.119785511809198, 28.687765559085129 ], [ -82.119772879096999, 28.688441060540633 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Oak View Road", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.120367744548076, 28.688444038639599 ], [ -82.120373109425742, 28.687846675384602 ], [ -82.120364176822022, 28.687817726605818 ], [ -82.120345581124965, 28.687793963923809 ], [ -82.120315276296807, 28.687776746244069 ], [ -82.120282906008427, 28.687769859348506 ], [ -82.12024089337568, 28.687770202293901 ], [ -82.119785511809198, 28.687765559085129 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "West Palm Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.118794563712115, 28.670345680702688 ], [ -82.1196768991543, 28.670353011464336 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 71st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.0205225863523, 28.860043801389907 ], [ -82.018558697871299, 28.860081179812539 ], [ -82.01843064891132, 28.86015968095867 ], [ -82.018318193038922, 28.860264640013355 ], [ -82.018154694001851, 28.860330666663383 ], [ -82.017733369958691, 28.860330664682241 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 71st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017733369958691, 28.860330664682241 ], [ -82.016979707160871, 28.86033379056947 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 71st Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016979707160871, 28.86033379056947 ], [ -82.016735441374394, 28.860332986157022 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 52nd Path", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.017733369958691, 28.860330664682241 ], [ -82.01774198427735, 28.8614037070985 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 52nd Plz", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016979707160871, 28.86033379056947 ], [ -82.016994084399016, 28.861393954666788 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 72nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.018185289647121, 28.861822285018018 ], [ -82.018173733062525, 28.861406495811444 ], [ -82.01774198427735, 28.8614037070985 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 72nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.01774198427735, 28.8614037070985 ], [ -82.016994084399016, 28.861393954666788 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Northeast 72nd Avenue", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.016994084399016, 28.861393954666788 ], [ -82.016616652249567, 28.861389774336921 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983109992191231, 28.767000323901573 ], [ -81.983109053234216, 28.766887545904609 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.983109992191231, 28.767000323901573 ], [ -81.983760570179669, 28.767062518816257 ], [ -81.984085565268728, 28.76710537450845 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.984085565268728, 28.76710537450845 ], [ -81.983899853883941, 28.767024126684145 ], [ -81.9837043206483, 28.766958056185484 ], [ -81.983557002650713, 28.766929485294636 ], [ -81.983379326735417, 28.766905378758992 ], [ -81.983109053234216, 28.766887545904609 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 108", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.035297464316102, 28.925172497476588 ], [ -82.035243709920167, 28.925171452045472 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975167985579475, 28.778792175470862 ], [ -81.975204362197559, 28.778789898175429 ], [ -81.975240030906306, 28.778783206895007 ], [ -81.975274305053517, 28.778772230442289 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975436669964907, 28.778616563005773 ], [ -81.97545133031295, 28.778574780353971 ], [ -81.975459492352442, 28.778531642163056 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcneill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975274305053517, 28.778772230442289 ], [ -81.975331499656278, 28.778791752615582 ], [ -81.97542522813032, 28.77885261560775 ], [ -81.975508003028111, 28.778926867799257 ], [ -81.975837880290243, 28.779239704244045 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcneill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975837880290243, 28.779239704244045 ], [ -81.976319918013729, 28.779688871395031 ], [ -81.976577977032832, 28.779860505375666 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcneill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976577977032832, 28.779860505375666 ], [ -81.976525634990693, 28.779778948611565 ], [ -81.976419732979409, 28.779653570527408 ], [ -81.976295573276104, 28.779545234774428 ], [ -81.975895093124549, 28.779160582377134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcneill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975895093124549, 28.779160582377134 ], [ -81.97555425851624, 28.778838008094642 ], [ -81.975518487467838, 28.778797363110307 ], [ -81.975484516321131, 28.778746406785871 ], [ -81.975453429601743, 28.778676861480324 ], [ -81.975436669964907, 28.778616563005773 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.972248650752263, 28.781266237075165 ], [ -81.972526773265542, 28.780881293548571 ], [ -81.97303080609511, 28.78013519912113 ], [ -81.973297488687948, 28.779802074307099 ], [ -81.973677309251542, 28.779440217068498 ], [ -81.974032382666437, 28.779194082202654 ], [ -81.97481202848823, 28.778780506374254 ], [ -81.974945781902235, 28.778759388317916 ], [ -81.975145596480289, 28.778794619314326 ], [ -81.975167985579475, 28.778792175470862 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.974886016648597, 28.778579734318832 ], [ -81.97485412983923, 28.778626686649247 ], [ -81.974813423679038, 28.778674226531599 ], [ -81.974764991147694, 28.778713149645164 ], [ -81.973844071540356, 28.779218721314347 ], [ -81.97354711049735, 28.77944201329106 ], [ -81.973202309579023, 28.779767954178013 ], [ -81.97297423774333, 28.780049897335541 ], [ -81.972155313311688, 28.781216440678282 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nebraska Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076192136968558, 28.727524868108056 ], [ -82.075886557475044, 28.727658371775838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Nebraska Loop", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.075886557475044, 28.727658371775838 ], [ -82.075787170281785, 28.727701389255984 ], [ -82.075698908526491, 28.727751823034367 ], [ -82.075612871727856, 28.727787424912101 ], [ -82.07538771051145, 28.7278805932783 ], [ -82.07536337338486, 28.727888816035495 ], [ -82.075331615249198, 28.727896515013391 ], [ -82.075256992294413, 28.72791222133382 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Illinois Street", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.076096592281701, 28.728030985729795 ], [ -82.075886557475044, 28.727658371775838 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 30th Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.15499495668324, 28.581203434173705 ], [ -82.154988913892112, 28.580672299175397 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Meera Way", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987927185911843, 28.762455450421793 ], [ -81.987415901720908, 28.762489759074537 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Corbin Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.988200690290313, 28.772418281557201 ], [ -81.987918874978959, 28.771592964603123 ], [ -81.987695926262447, 28.77041983828838 ], [ -81.987388873817679, 28.769690693780632 ], [ -81.987043743663719, 28.769078142171658 ], [ -81.986683326734237, 28.768593553757103 ], [ -81.986055421469985, 28.767948771941906 ], [ -81.985438055515317, 28.767511852315646 ], [ -81.984085565268728, 28.76710537450845 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.976772161220666, 28.755662583544645 ], [ -81.975519136144356, 28.755652563058334 ], [ -81.974512897922452, 28.755647129220804 ], [ -81.973895658263885, 28.755640889565978 ], [ -81.972384318026485, 28.755628345279995 ], [ -81.971125032002973, 28.7556158392937 ], [ -81.970799381227707, 28.755610005946505 ], [ -81.970798764812017, 28.75560999498499 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978469805643954, 28.756656898698893 ], [ -81.97835084127783, 28.756488256167884 ], [ -81.978226646523339, 28.756345760962223 ], [ -81.978091992874951, 28.756220259100594 ], [ -81.977944267817605, 28.756103909880572 ], [ -81.977736404485597, 28.755957491623658 ], [ -81.977524620337306, 28.755842448704151 ], [ -81.977303684394698, 28.755756166206211 ], [ -81.977076212002075, 28.755715640599966 ], [ -81.976772161220666, 28.755662583544645 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978703350892744, 28.760763094334941 ], [ -81.978665227131657, 28.760709447307686 ], [ -81.978626463222142, 28.760641860261515 ], [ -81.978603603531297, 28.760557378032633 ], [ -81.978516139756152, 28.760177701265984 ], [ -81.978428675808473, 28.759792061905735 ], [ -81.978398857964009, 28.759528673252916 ], [ -81.978392895963779, 28.759241432037655 ], [ -81.978423707823239, 28.758917414629803 ], [ -81.97848135725306, 28.758660984210717 ], [ -81.978616532674636, 28.758168000889043 ], [ -81.978683126444494, 28.757937413264077 ], [ -81.978723877945043, 28.757731672252746 ], [ -81.978754691014629, 28.757444430475832 ], [ -81.978729382456322, 28.757191513016739 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Bexley Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978614971784268, 28.757056927646087 ], [ -81.978624009654268, 28.757144296039609 ], [ -81.978622345862831, 28.757425551045628 ], [ -81.978601034507832, 28.757645477767351 ], [ -81.978564379566535, 28.757856881443264 ], [ -81.978508117316622, 28.758078513353396 ], [ -81.978389626714772, 28.758505581319181 ], [ -81.978315463754043, 28.758809045973916 ], [ -81.978283069758689, 28.759010220645635 ], [ -81.978263976617342, 28.75926781578222 ], [ -81.978264627010788, 28.759481199623437 ], [ -81.978283550730637, 28.759698499763527 ], [ -81.978327271606446, 28.759939943601871 ], [ -81.978376865302138, 28.760152023333493 ], [ -81.978426459539989, 28.760367365821349 ], [ -81.978443425650781, 28.760438492835231 ], [ -81.978477358492796, 28.760587927498754 ], [ -81.978490408686241, 28.760655140525593 ], [ -81.978488450581551, 28.760715175016951 ], [ -81.97847817596859, 28.760807516562888 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978729382456322, 28.757191513016739 ], [ -81.97867766774155, 28.757049089241665 ], [ -81.978632429121745, 28.756924500792405 ], [ -81.978556088751162, 28.756765404524732 ], [ -81.978469805643954, 28.756656898698893 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "East C 470", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.978469805643954, 28.756656898698893 ], [ -81.978550859197838, 28.756845150573106 ], [ -81.978614971784268, 28.757056927646087 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.994796061680759, 28.755792338626744 ], [ -81.994616964273845, 28.755546367579345 ], [ -81.994380279061772, 28.755295689166744 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Marsh Bend Trail", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.993779756612739, 28.754925198354361 ], [ -81.993871629961149, 28.754943359984271 ], [ -81.993989759974482, 28.75498478090601 ], [ -81.994089478349395, 28.755063021816156 ], [ -81.994175390314837, 28.755152768411396 ], [ -81.994253630529983, 28.755215667034321 ], [ -81.994380279061772, 28.755295689166744 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Mcneill Drive", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.975837880290243, 28.779239704244045 ], [ -81.975895093124549, 28.779160582377134 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "County Road 619", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.16176936403231, 28.657821560140992 ], [ -82.161788452708763, 28.657787974285455 ], [ -82.1618068712244, 28.657758997438005 ], [ -82.161824261188983, 28.657726405259574 ], [ -82.161839587912993, 28.657686576113157 ], [ -82.161853862909993, 28.657631366144049 ], [ -82.16186441726154, 28.657570816979415 ], [ -82.161855244993632, 28.657247495785235 ], [ -82.16186051394439, 28.656440116138526 ], [ -82.161860977448953, 28.65608894916457 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 68th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.161860977448953, 28.65608894916457 ], [ -82.165424726074917, 28.65612533012844 ], [ -82.165814381499374, 28.656104790997663 ], [ -82.165924312348835, 28.656126070350293 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 68th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165939445507519, 28.659644319120996 ], [ -82.165939961216665, 28.659645690038086 ], [ -82.165967282815686, 28.659673012755249 ], [ -82.166018221399895, 28.659694313377759 ], [ -82.167962630676826, 28.659731502988357 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Southwest 68th Place", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -82.165924312348835, 28.656126070350293 ], [ -82.165924526214496, 28.656126110694675 ], [ -82.165965978918109, 28.656181775635545 ], [ -82.165977822453186, 28.656251652312374 ], [ -82.165982535695974, 28.657213108588781 ], [ -82.166011338188937, 28.657528430721001 ], [ -82.165994661640866, 28.65781646489129 ], [ -82.16595979451985, 28.657965029583107 ], [ -82.165926532303104, 28.659610033585128 ], [ -82.165939445507519, 28.659644319120996 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.991444749224442, 28.756602733117578 ], [ -81.991072371953706, 28.75683910347238 ], [ -81.990560700998344, 28.757107255297448 ], [ -81.990131913705298, 28.757300946610485 ], [ -81.989604034417994, 28.757502962697309 ], [ -81.989105092615489, 28.757676205052736 ], [ -81.988461782632953, 28.757837030827631 ], [ -81.987928900788745, 28.757941202473123 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "Central Pwky", "highway": "residential", "maxspeed": "10 mph", "surface": "asphalt" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -81.987958140178847, 28.758046728499977 ], [ -81.987928900788745, 28.757941202473123 ] ] ] } } +] +}